From 787e9d163dea6b9423c21fbcbe4a7b82f06cb4b3 Mon Sep 17 00:00:00 2001 From: Kurt Korbatits Date: Wed, 19 May 2010 11:10:39 +1000 Subject: The documentation for processedUSecs() is ambiguous Task-number:QTBUG-10759 Reviewed-by:Justin McPherson --- src/multimedia/audio/qaudiooutput.cpp | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/multimedia/audio/qaudiooutput.cpp b/src/multimedia/audio/qaudiooutput.cpp index 371773c..cf3b79c 100644 --- a/src/multimedia/audio/qaudiooutput.cpp +++ b/src/multimedia/audio/qaudiooutput.cpp @@ -369,8 +369,17 @@ int QAudioOutput::notifyInterval() const } /*! - Returns the amount of audio data processed since start() + Returns the amount of audio data processed by the class since start() was called in microseconds. + + Note: The amount of audio data played can be determined by subtracting + the microseconds of audio data still in the systems audio buffer. + + \code + qint64 bytesInBuffer = bufferSize() - bytesFree(); + qint64 usInBuffer = (qint64)(1000000) * bytesInBuffer / ( channels() * sampleSize() / 8 ) / frequency(); + qint64 usPlayed = processedUSecs() - usInBuffer; + \endcode */ qint64 QAudioOutput::processedUSecs() const -- cgit v0.12 From 3464049590db1c8198fcee7d369690a7c18756cc Mon Sep 17 00:00:00 2001 From: Kurt Korbatits Date: Wed, 19 May 2010 13:36:07 +1000 Subject: QAudioDeviceInfo::nearestFormat() consistent across all platforms Task-number:QTBUG-10760 Reviewed-by:Justin McPherson --- src/multimedia/audio/qaudiodeviceinfo.cpp | 62 ++++++++++++++++++++++++++++++- 1 file changed, 61 insertions(+), 1 deletion(-) diff --git a/src/multimedia/audio/qaudiodeviceinfo.cpp b/src/multimedia/audio/qaudiodeviceinfo.cpp index 092efc5..ae65b02 100644 --- a/src/multimedia/audio/qaudiodeviceinfo.cpp +++ b/src/multimedia/audio/qaudiodeviceinfo.cpp @@ -43,6 +43,7 @@ #include #include +#include QT_BEGIN_NAMESPACE @@ -238,7 +239,66 @@ QAudioFormat QAudioDeviceInfo::preferredFormat() const QAudioFormat QAudioDeviceInfo::nearestFormat(const QAudioFormat &settings) const { - return isNull() ? QAudioFormat() : d->info->nearestFormat(settings); + if (isFormatSupported(settings)) + return settings; + + QAudioFormat nearest = settings; + + nearest.setCodec(QLatin1String("audio/pcm")); + + if (nearest.sampleType() == QAudioFormat::Unknown) { + QAudioFormat preferred = preferredFormat(); + nearest.setSampleType(preferred.sampleType()); + } + + QMap testFrequencies; + QList frequenciesAvailable = supportedFrequencies(); + QMap testSampleSizes; + QList sampleSizesAvailable = supportedSampleSizes(); + + // Get sorted sampleSizes (equal to and ascending values only) + if (sampleSizesAvailable.contains(settings.sampleSize())) + testSampleSizes.insert(0,settings.sampleSize()); + sampleSizesAvailable.removeAll(settings.sampleSize()); + foreach (int size, sampleSizesAvailable) { + int larger = (size > settings.sampleSize()) ? size : settings.sampleSize(); + int smaller = (size > settings.sampleSize()) ? settings.sampleSize() : size; + if (size >= settings.sampleSize()) { + int diff = larger - smaller; + testSampleSizes.insert(diff, size); + } + } + + // Get sorted frequencies (equal to and ascending values only) + if (frequenciesAvailable.contains(settings.frequency())) + testFrequencies.insert(0,settings.frequency()); + frequenciesAvailable.removeAll(settings.frequency()); + foreach (int frequency, frequenciesAvailable) { + int larger = (frequency > settings.frequency()) ? frequency : settings.frequency(); + int smaller = (frequency > settings.frequency()) ? settings.frequency() : frequency; + if (frequency >= settings.frequency()) { + int diff = larger - smaller; + testFrequencies.insert(diff, frequency); + } + } + + // Try to find nearest + // Check ascending frequencies, ascending sampleSizes + QMapIterator sz(testSampleSizes); + while (sz.hasNext()) { + sz.next(); + nearest.setSampleSize(sz.value()); + QMapIterator i(testFrequencies); + while (i.hasNext()) { + i.next(); + nearest.setFrequency(i.value()); + if (isFormatSupported(nearest)) + return nearest; + } + } + + //Fallback + return preferredFormat(); } /*! -- cgit v0.12 From 5467c3f8eb6f7d2b5c5a72b9c2e0fd94ae325c24 Mon Sep 17 00:00:00 2001 From: Aaron McCarthy Date: Thu, 20 May 2010 14:28:36 +1000 Subject: Fix crash on exit in native wifi plugin on Vista+ when run in debugger. Close the wlanapi handle before main function returns. --- .../bearer/nativewifi/qnativewifiengine.cpp | 91 +++++++++++++++++----- src/plugins/bearer/nativewifi/qnativewifiengine.h | 5 +- 2 files changed, 73 insertions(+), 23 deletions(-) diff --git a/src/plugins/bearer/nativewifi/qnativewifiengine.cpp b/src/plugins/bearer/nativewifi/qnativewifiengine.cpp index 9b6ffa0..1a55402 100644 --- a/src/plugins/bearer/nativewifi/qnativewifiengine.cpp +++ b/src/plugins/bearer/nativewifi/qnativewifiengine.cpp @@ -46,6 +46,7 @@ #include #include +#include #include @@ -79,38 +80,26 @@ void qNotificationCallback(WLAN_NOTIFICATION_DATA *data, QNativeWifiEngine *d) } QNativeWifiEngine::QNativeWifiEngine(QObject *parent) -: QBearerEngineImpl(parent), handle(0) +: QBearerEngineImpl(parent), handle(INVALID_HANDLE_VALUE) { - DWORD clientVersion; - - DWORD result = local_WlanOpenHandle(1, 0, &clientVersion, &handle); - if (result != ERROR_SUCCESS) { -#ifdef BEARER_MANAGEMENT_DEBUG - if (result != ERROR_SERVICE_NOT_ACTIVE) - qDebug("%s: WlanOpenHandle failed with error %ld\n", __FUNCTION__, result); -#endif - - return; - } - - result = local_WlanRegisterNotification(handle, WLAN_NOTIFICATION_SOURCE_ALL, true, - WLAN_NOTIFICATION_CALLBACK(qNotificationCallback), - this, 0, 0); -#ifdef BEARER_MANAGEMENT_DEBUG - if (result != ERROR_SUCCESS) - qDebug("%s: WlanRegisterNotification failed with error %ld\n", __FUNCTION__, result); -#endif + connect(QCoreApplication::instance(), SIGNAL(aboutToQuit()), this, SLOT(closeHandle())); } QNativeWifiEngine::~QNativeWifiEngine() { - local_WlanCloseHandle(handle, 0); + closeHandle(); } void QNativeWifiEngine::scanComplete() { QMutexLocker locker(&mutex); + if (!available()) { + locker.unlock(); + emit updateCompleted(); + return; + } + // enumerate interfaces WLAN_INTERFACE_INFO_LIST *interfaceList; DWORD result = local_WlanEnumInterfaces(handle, 0, &interfaceList); @@ -249,6 +238,9 @@ QString QNativeWifiEngine::getInterfaceFromId(const QString &id) { QMutexLocker locker(&mutex); + if (!available()) + return QString(); + // enumerate interfaces WLAN_INTERFACE_INFO_LIST *interfaceList; DWORD result = local_WlanEnumInterfaces(handle, 0, &interfaceList); @@ -304,6 +296,9 @@ bool QNativeWifiEngine::hasIdentifier(const QString &id) { QMutexLocker locker(&mutex); + if (!available()) + return false; + // enumerate interfaces WLAN_INTERFACE_INFO_LIST *interfaceList; DWORD result = local_WlanEnumInterfaces(handle, 0, &interfaceList); @@ -364,6 +359,12 @@ void QNativeWifiEngine::connectToId(const QString &id) { QMutexLocker locker(&mutex); + if (!available()) { + locker.unlock(); + emit connectionError(id, InterfaceLookupError); + return; + } + WLAN_INTERFACE_INFO_LIST *interfaceList; DWORD result = local_WlanEnumInterfaces(handle, 0, &interfaceList); if (result != ERROR_SUCCESS) { @@ -440,6 +441,12 @@ void QNativeWifiEngine::disconnectFromId(const QString &id) { QMutexLocker locker(&mutex); + if (!available()) { + locker.unlock(); + emit connectionError(id, InterfaceLookupError); + return; + } + QString interface = getInterfaceFromId(id); if (interface.isEmpty()) { @@ -479,6 +486,12 @@ void QNativeWifiEngine::requestUpdate() { QMutexLocker locker(&mutex); + if (!available()) { + locker.unlock(); + emit updateCompleted(); + return; + } + // enumerate interfaces WLAN_INTERFACE_INFO_LIST *interfaceList; DWORD result = local_WlanEnumInterfaces(handle, 0, &interfaceList); @@ -555,6 +568,42 @@ QNetworkConfigurationPrivatePointer QNativeWifiEngine::defaultConfiguration() return QNetworkConfigurationPrivatePointer(); } +bool QNativeWifiEngine::available() +{ + if (handle != INVALID_HANDLE_VALUE) + return true; + + DWORD clientVersion; + + DWORD result = local_WlanOpenHandle(1, 0, &clientVersion, &handle); + if (result != ERROR_SUCCESS) { +#ifdef BEARER_MANAGEMENT_DEBUG + if (result != ERROR_SERVICE_NOT_ACTIVE) + qDebug("%s: WlanOpenHandle failed with error %ld\n", __FUNCTION__, result); +#endif + + return false; + } + + result = local_WlanRegisterNotification(handle, WLAN_NOTIFICATION_SOURCE_ALL, true, + WLAN_NOTIFICATION_CALLBACK(qNotificationCallback), + this, 0, 0); +#ifdef BEARER_MANAGEMENT_DEBUG + if (result != ERROR_SUCCESS) + qDebug("%s: WlanRegisterNotification failed with error %ld\n", __FUNCTION__, result); +#endif + + return handle != INVALID_HANDLE_VALUE; +} + +void QNativeWifiEngine::closeHandle() +{ + if (handle != INVALID_HANDLE_VALUE) { + local_WlanCloseHandle(handle, 0); + handle = INVALID_HANDLE_VALUE; + } +} + bool QNativeWifiEngine::requiresPolling() const { // On Windows XP SP2 and SP3 only connection and disconnection notifications are available. diff --git a/src/plugins/bearer/nativewifi/qnativewifiengine.h b/src/plugins/bearer/nativewifi/qnativewifiengine.h index 3b21985..0e9576b 100644 --- a/src/plugins/bearer/nativewifi/qnativewifiengine.h +++ b/src/plugins/bearer/nativewifi/qnativewifiengine.h @@ -91,12 +91,13 @@ public: QNetworkConfigurationPrivatePointer defaultConfiguration(); - inline bool available() const { return handle != 0; } + bool available(); bool requiresPolling() const; -public Q_SLOTS: +private Q_SLOTS: void scanComplete(); + void closeHandle(); private: Qt::HANDLE handle; -- cgit v0.12 From 2eed3e243d6db81433bfdc2dee76edee1d53ceb9 Mon Sep 17 00:00:00 2001 From: Peter Yard Date: Thu, 20 May 2010 14:51:55 +1000 Subject: Docs: added an intro for qml, Quick for Beginners. --- doc/src/declarative/qml-intro.qdoc | 969 ++++++++++++++++++++++++++++++++++ doc/src/images/qml-dial.png | Bin 0 -> 43754 bytes doc/src/images/qml-intro-anchors1.png | Bin 0 -> 15198 bytes doc/src/images/qml-intro-anchors2.png | Bin 0 -> 15343 bytes doc/src/images/qml-intro-anchors3.png | Bin 0 -> 16745 bytes doc/src/images/qml-intro-helloa.png | Bin 0 -> 18246 bytes 6 files changed, 969 insertions(+) create mode 100644 doc/src/declarative/qml-intro.qdoc create mode 100644 doc/src/images/qml-dial.png create mode 100644 doc/src/images/qml-intro-anchors1.png create mode 100644 doc/src/images/qml-intro-anchors2.png create mode 100644 doc/src/images/qml-intro-anchors3.png create mode 100644 doc/src/images/qml-intro-helloa.png diff --git a/doc/src/declarative/qml-intro.qdoc b/doc/src/declarative/qml-intro.qdoc new file mode 100644 index 0000000..457efa8 --- /dev/null +++ b/doc/src/declarative/qml-intro.qdoc @@ -0,0 +1,969 @@ +/************************************************************************** +** +** +** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the documentation of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** No Commercial Usage +** This file contains pre-release code and may not be distributed. +** You may use this file in accordance with the terms and conditions +** contained in the Technology Preview License Agreement accompanying +** this package. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Nokia gives you certain additional +** rights. These rights are described in the Nokia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** +** +** $QT_END_LICENSE$ +** +*************************************************************************** +*/ + + + +/*! + +\page qml-intro.html +\title Beginning Qt Quick + + +\section1 Overview + + +QML is a high level, scripted language. Its commands, more correctly \e elements, +leverage the power and efficiency of the Qt libraries to make easy to use +commands that perform intuitive functions. Draw a rectangle, display an image at +a position and so on. Behind these elements are complex C++ libraries that +efficiently perform the action. As with any graphical application, always +consider that this ability to easily build graphically rich applications means +that some care may be needed to prevent performance problems. + +The language also allows more flexibility of these commands by using +Javascript rather than C++ to add new layers of logic to your application. +Javascript is easier to learn than C++ and can be embedded into the QML +files or imported from a separate file. + +\bold{In QML the types of various 'objects' are referred to as \l {QML +Elements}{ elements}}. + +An element usually has various \e properties that help define the element. For +example, if we created an element called Circle then the radius of the circle +would be a property. + + +\section1 A First Look + +The basic syntax of an \l {QML Elements}{element} is + + \code + SomeElement { + id: myObject + ... some other things here ... + } + \endcode + +Here we are defining a new object. We specify its 'type' first as SomeElement. +Then within matching braces { ... } we specify the various parts of our +element. + +The \c id is a unique identifier for the element, it must start with a lower +case letter and only contain letters, numbers and underscores. It is this +particular object's name. If this SomeElement \l {QML Elements}{element} was +a Rectangle instead and it was one of many then the \e optional unique id +would allow us to manipulate each element individually. + +Each visual element is ultimately based on, or inherits from, an element +called \l Item. \l Item has certain properties and actions that may be +useful. The properties have default values so you need only specify the +ones you will need. + +Take a simple element such as a \l Rectangle. It has an \c id, we will call +it \e myRectangle, it has a \c width and a \c height. Imagine that we +want a rectangle that is 500 pixels by 400 pixels in the x and y directions +(horizontal by vertical). + +We can implement this \l Rectangle with these properties this way + + \code + import Qt 4.7 + + // This is a comment. And below myRectangle is defined. + Rectangle { + id: myRectangle + width: 500 + height: 400 + } + \endcode + +This is a valid QML script. To run it, copy it and save it to a file, say +myexample.qml, and on the command line run the command + + \code + qml myexample.qml + \endcode + +It will create a very boring rectangle in its own window. + + + +\section1 Hello World! + +We can now add some color and text to make a Hello World QML program. + +\l Rectangle has the property \l {Rectangle::color}{color} to produce a +background color. + +Text is handled by a different element called \l Text. We need to create a +\l Text object inside the \l Rectangle and set its \l {Text::text}{text} +property to "Hello World!". So to set the text to 'Hello world' and the +background colour to light gray, + + \code + import Qt 4.7 + + Rectangle { + id: myRectangle + width: 500 + height: 400 + + Text { text: "Hello World!" } + + color: "lightgray" + } + \endcode + + +\section1 Hello World Again + +From now on we will not always show the import statement for Qt but it +should still be there when you create your QML scripts. + +To make our Hello World example a little nicer set the position of the text +to be at pixel position x = 100, y = 100 within the displayed window. This +position belongs to the \l Text element so we set the position inside its +definition. Note that we separate different QML statements on the same line +with a semi-colon, or we could have simply put each statement on a new line + + \code + Text { + text: "

Hello World

"; color: "darkgreen" + x: 100; y:100 + } + \endcode + +Not only did we reposition the text, but the text was altered by adding +HTML tags to change the font size. The text color was also changed from the +default black to dark green by using a standard string for the color's SVG +name. + +We could also have used a hexadecimal string for the RGB (red-green-blue, as +#rrggbb) values of the color similar to the method used in HTML. For +example, mostly blue with a green tint, + + \code + Text { + text: "

Hello world again

" + color: "#002288" + x: 100; y: 100 + } + \endcode + +All of these changes occurred within the \l Text object which is the scope +of these property changes. + +Other objects may use the information but it belongs to the element where +the property has been defined. + + +\section1 Images + +To add an image to our little application we use the \l Image element. An +\l Image uses a path to an image file, and has properties to control +the aspect ratio, the image size, to tile the area amongst others. The +source of the image, the path to the file, is a URL. Therefore the file can +be local: \e {mydir/myimage1.png}. Or it can be remote: +\e {"http://www.example.com/images/myimage1.png"}. + + \code + Image { + source: "images/qt-logo.png" + } + \endcode + +This displays the image, as we would expect, at the top left of the window. +The position of the default x = 0, y = 0 coordinate. The example here uses +a PNG file, but it could have been one of various supported formats, +including JPG and GIF. + +Let us reposition the image and enlarge it. Place it at the same 'x' offset +as the "Hello world again" text, but put it another 50 pixels below the +text, also make it 150 by 150 pixels in size, + + \code + Image { + source: "images/qt-logo.png" + x: 100; y: 150 + width: 150; height: 150 + } + \endcode + +Adding the Hello World example, with the text and the image example we can +write a simple piece of QML that starts to look a bit better. + + \code + import Qt 4.7 + + Rectangle { + id: myRectangle + width: 500 + height: 400 + + // A light gray background + color: "lightgray" + + // Position and color some text + Text { + text: "

Hello world again

" + color: "darkgreen" + x: 100; y: 100 + } + + // Using the opportunity to resize the image. + Image { + source: "images/qt-logo.png" + x: 100; y: 150 + width: 150; height: 150 + } + + } + \endcode + +The result is still quite simple + +\image qml-intro-helloa.png + + +\section1 Anchors: Aligning Elements + +Using absolute positioning, such as saying x = 100 and y = 150, works well +until the user or developer stretches or increases the size of the window. +Then the positions need to be recalculated. What would be nice would be a +relative means of positioning of objects in a window or rectangle. For +example, we want to place an image at the bottom of a rectangle, we would +like to specify the image's location as the 'bottom of the window', not a +specific coordinate. We can do this with the anchors property, which +objects inherit from Item. + +The anchors property is really a property group. It is a collection of +related properties. It has properties within it which can be used by means +of the dot notation. + +The dot notation uses object \c{id}s and property names to use a particular +object or property. Say I have a rectangle r1, which contains a rectangle +r2, which contains an Item item1, which has an 'x' property I want to +change. I just use the dot notation to identify it: r1.r2.item1.x + +If we want to position an image at the bottom of the rectangle it is +inside. I have to specify that the bottom of the image is also at the +bottom of the rectangle + + \code + import Qt 4.7 + + Rectangle { + id: myWin + width: 500 + height: 400 + + Image { + id: image1 + source: "images/qt-logo.png" + width: 150; height: 150 + anchors.bottom: myWin.bottom + } + } + \endcode + +This places the logo at the bottom left of the window. + +\image qml-intro-anchors1.png "A simple anchor" + +We would like it centered and not touching the bottom of the window, for +aesthetic reasons. For the centering we use the horizontalCenter property, +and to prevent the touching of the image to the bottom of the rectangle, +the bottomMargin property is used. So the new actions for the script are + + \list + \o set the bottom of the image (anchors.bottom) to be the bottom of the window + \o move the image to be in the horizontal center of the window + \o set a margin of 10 pixels so that the image does not touch the bottom window border + \endlist + +Encoded into QML the script becomes + + \code + import Qt 4.7 + + Rectangle { + id: myWin + width: 500 + height: 400 + + Image { + id: image1 + source: "images/qt-logo.png" + width: 150; height: 150 + anchors.bottom: myWin.bottom + anchors.horizontalCenter: myWin.horizontalCenter + anchors.bottomMargin: 10 + } + } + \endcode + + +Run this and resize the window. You will see that now the position of the +image adjusts during the resize. + +\image qml-intro-anchors2.png "Image Centered at the Bottom" + +You can also add another object say a block of descriptive text and place +it above or below the image or to the side. This code places some text just +above the image + + \code + Text { + text: "

The Qt Logo

" + anchors.bottom: image1.top + anchors.horizontalCenter: myWin.horizontalCenter + anchors.bottomMargin: 15 + } + \endcode + +\image qml-intro-anchors3.png + +\note \e anchors is a property group, to be used within the object. When +referencing these properties from another object we use the property +directly, instead of saying: + + \code + myRectangle.anchors.top // Wrong + \endcode + +we use + + \code + myRectangle.top // Correct + \endcode + + + + +\section1 Transformations + +We can transform a graphical object to get additional effects. Rotate a +piece of text by 180 degrees to display upside-down text. Rotate an image +by 90 degrees to lay it on its side. These transformations require +additonal information. + +For rotation, the additional information includes: the origin relative to +the object being rotated, the axis of rotation, and the angle in degrees to +rotate the image through in a clockwise direction. The axis does not have +to be the z-axis, the line between your eyes and the image, it could be +along the vertical y-axis or the horizontal x-axis. We have three +dimensions to play with. For simplicity in this example we will rotate +about the z-axis by 90 degrees in a negative direction, anti-clockwise. + +Rotation of text was also suggested. It could also be useful to scale the +text. We can do both. The \l {Item::transform}{transform} property is a +\e list of \l Transform elements, so using the list syntax + + \code + myList: [ listElement1, listElement2, ... } ] + \endcode + +we can produce a list of transformations. + +The text will be rotated by 45 degrees anti-clockwise and scaled +vertically by a factor of 1.5 and by 1.2 horizontally. + +Using the example above as the basis for this we have, + + \code + import Qt 4.7 + + Rectangle { + id: myWin + width: 500 + height: 400 + + Image { + id: image1 + source: "images/qt-logo.png" + width: 150; height: 150 + anchors.bottom: myWin.bottom + anchors.horizontalCenter: myWin.horizontalCenter + anchors.bottomMargin: 10 + + transform: Rotation { + origin.x: 75; origin.y: 75 + axis{ x: 0; y: 0; z:1 } angle: -90 + } + + } + + Text { + text: "

The Qt Logo -- taking it easy

" + anchors.bottom: image1.top + anchors.horizontalCenter: myWin.horizontalCenter + anchors.bottomMargin: 15 + + transform: [ + Scale { xScale: 1.5; yScale: 1.2 } , + + Rotation { + origin.x: 75; origin.y: 75 + axis{ x: 0; y: 0; z:1 } angle: -45 + } + ] + } + } + \endcode + +The code block in \c image1 starting with \c transform specifies that the +\l {Item::transform}{transform} property will be a Rotation through -90 +degrees, which is anti-clockwise, about the z-axis running through the +center of the image at (75,75), since the image is 150 x 150 pixels. + +The other transformation available is \l Translate. This produces a change +in position of the item. + +\note In a list of transformations the order of the transformations is +important. In the above example try swapping around the Scale transform with +the Rotation transform, remember to remove or add the comma. The results are +acceptable for our little test but not the same. + + +\section1 Animations + +Animation in QML is done by animating properties of objects. Properties +that are numbers, colors, Rectangles, points and directions. In QML these +are \l {QML Basic Types} named as real, int, color, rect, point, size, and +vector3d. There are a number of different ways to do animation. Here we +will look at a few of them. + +\section2 Number Animation + +Previously we have used a rotation transformation to change the orientation +of an image. We could easily animate this rotation so that instead of a +straight rotation counter-clockwise of 90 degrees we could rotate the image +through a full 360 degrees in an animation. The axis of rotation wont +change, the position of the center of the image will not change, only the +angle will change. Therefore, a NumberAnimation of a rotation's angle should +be enough for the task. If we wish for a simple rotation about the center +of the image then we can use the \c rotation property that is inherited +from \l Item. The rotation property is a real number that specifies the +angle in a clockwise direction for the rotation of the object. Here is the +code for our animated rotating image. + + \code + import Qt 4.7 + + Rectangle { + id: mainRec + width: 600 + height: 400 + + Image { + id: image1 + source: "images/qt-logo.png" + x: 200; y: 100 + width: 100; height: 100 + + // Animate a rotation + transformOrigin: Item.Center + NumberAnimation on rotation { + from: 0; to: 360 + duration: 2000 + loops: Animation.Infinite + } + } + } + \endcode + +The \c {transformOrigin: Item.Center} is redundant since this is the default +axis of rotation anyway. But if you change \c Center to \c BottomRight you +will see an interesting variation. + +Also if instead the \l Rotation transformation had been used then we would have +more control over the various parameters. We could vary the axis, to be not +just a different offset from the z-axis but along the y-axis, x-axis or +combination. For example, if the task had been to animate the rotation +about the y-axis passing through the center of the image then the following +code would do it. + + \code + import Qt 4.7 + + Rectangle { + id: mainRec + width: 600 + height: 400 + + Image { + id: image1 + source: "images/qt-logo.png" + x: 200; y: 100 + width: 100; height: 100 + + // Animate a rotation + transform: Rotation { + origin.x: 50; origin.y: 50; axis {x:0; y:1; z:0} angle:0 + NumberAnimation on angle { + from: 0; to: 360; + duration: 3000; + loops: Animation.Infinite + } + } + } + } + \endcode + +Here there is a rectangle 600 by 400 pixels. Placed within that rectangle +is an image 100 by 100 pixels. It is rotated about the center of the image +about the y-axis so that it looks as if it is rotating about an invisible +vertical string holding it up. The time it takes to complete the rotation is 3 +seconds (3,000 milliseconds). The NumberAnimation is applied to the angle +taking it from 0 (no change) to 360 degrees, back where it started. +Strictly speaking it isn't necessary to go from 0 to 360 since the same +location is duplicated, but it makes it easier to read in this example and +it has no visible effect on the animation. The number of loops that the +animation will execute is set to \c {Animation.Infinite} which means that the +animation is in an endless loop. + +To see an interesting variation. Change the axis to \c {axis { x:1; y:1; z:1 +}}. This is a line coming from the center of the image downwards to the +right and out of the screen. Although the change is simple the rotation +seems complex. + +\section2 Sequential Animation + +For a more complex animation we will need two images. The first image will +be placed at the center of a window (Rectangle) and the second image will +be at the upper left of the window. The animation will move the second +image from the top left of the window to the bottom right. In doing so we +will be animating the position and the size of the image. + +First create two images + + \code + import Qt 4.7 + + Rectangle { + id: mainRec + width: 600 + height: 400 + z: 0 + + Image { + id: image1 + source: "images/qt-logo.png" + x: 20; y: 20 ; z: 1 + width: 100; height: 100 + } + + Image { + id: image2 + source: "images/qt-logo.png" + width: 100; height: 100 + x: (mainRec.width - 100)/2; y: (mainRec.height - 100)/2 + z: 2 + } + } + \endcode + +We will add to 'image1' a SequentialAnimation from x = 20 to the target of +x = 450. The 'from' values will be used because we will be repeating the +animation, so the object needs to know where the original position is, both +x and y. The SequentialAnimation of x will set it to repeat by indicating +that the number of animation loops is infinite, meaning that the 'loop' +counter will be set to a value Animation.Infinite that indicates an endless +cycle. Also there will be a NumberAnimation to vary the numeric property +between the x values and over a given duration. After the NumberAnimation +there will be a PauseAnimation that will pause the animation for 500 +milliseconds (half a second) simply for the visual effect. + + \code + SequentialAnimation on x { + loops: Animation.Infinite + NumberAnimation { from: 20; to: 450; easing.type: "InOutQuad"; +duration: 2000 } + PauseAnimation { duration: 500 } + } + \endcode + +A similar block of code is written for the animation of the 'y' value of +the position. + +We will also animate the scale of the object, so as it goes from top left +to bottom right of the window it will become smaller until about midway, +and then become larger. To complete the animation we will set the 'z' +values of the images. 'z' is the stacking order, the z-axis effectively +points out from the screen to your eyes with the default value of 'z' being +0. So if we set the Rectangle to have z with value zero, just to be sure, +and image1 to 1 and image2 to 2 then image2 will be in the foreground and +image1 in the background. When image1 passes image2 it will pass behind it. +The completed code looks like + + \code + Rectangle { + id: mainRec + width: 600 + height: 400 + z: 0 + + Image { + id: image2 + source: "images/qt-logo.png" + width: 100; height: 100 + x: (mainRec.width - 100)/2; y: (mainRec.height - 100)/2 + z: 2 + } + + Image { + id: image1 + source: "images/qt-logo.png" + x: 20; y: 20 ; z: 1 + width: 100; height: 100 + + SequentialAnimation on x { + loops: Animation.Infinite + NumberAnimation { + from: 20; to: 450 + easing.type: "InOutQuad"; duration: 2000 + } + PauseAnimation { duration: 500 } + } + + SequentialAnimation on y { + loops: Animation.Infinite + NumberAnimation { + from: 20; to: 250 + easing.type: "InOutQuad"; duration: 2000 + } + PauseAnimation { duration: 500 } + } + + SequentialAnimation on scale { + loops: Animation.Infinite + NumberAnimation { from: 1; to: 0.5; duration: 1000 } + NumberAnimation { from: 0.5; to: 1; duration: 1000 } + PauseAnimation { duration: 500 } + } + } + } + \endcode + +The \c {easing.type} has many options, expressed as a string. It specifies the +kind of equation that describes the acceleration of the property value, not +necessarily position, over time. + +For example, \e InOutQuad means that at the start and the end of the animation the +'velocity' is low but the acceleration or deceleration is high. Much like a car +accelerating from stop, and decelerating to stop at the end of a journey, +with the maximum speed being in the middle. Examine the \l {PropertyAnimation::easing.type} +{easing} documentation and the various graphs that show the effect. The horizontal +axis, 'progress', can be thought of as time. The vertical axis is the value +of the particular property. + +In discussing animation we need to describe three objects: State, MouseArea +and Signals. Although independent of the animation elements, animation +delivers some of the best examples that illustrate these new elements. + + + +\section2 Animation Summary + +\table + \header + \o Name + \o Description + \row + \o PropertyAnimation + \o a property value on a target object is varied to a specified value over a given time. + + \row + \o NumberAnimation + \o animate a numeric property from one value to another over a given time. + + \row + \o PauseAnimation + \o results in the task waiting for the specified duration, in milliseconds. + + \row + \o SequentialAnimation + \o allows us to list in order the animation events we want to occur, first A then B then C and so on. + + \row + \o ParallelAnimation + \o enables us to run different animations at the same time instead of sequentially. + +\endtable + + + + + +\section1 Using States + +A state is a defined set of values in the configuration of an object and +often depends on the previous state. For example, a glass could be in a +state we call 'HalfFull' if it is being filled with a liquid and has +reached half of its total capacity. We could also have a state called +HalfEmpty which is the state that occurs when the amount of liquid drops to +half of the glass's capacity. Both states represent the same amount of +liquid, but we consider them different. Likewise, states in a program +represent not just values but may include how the current values were +reached. + +When a state changes a \e transition occurs. This is an opportunity to make +changes or take actions that depend on the movement to the new state. For +example, if we had a scene in the country where the state variable has two +states "daylight" and "night". Then when the state changes to "night" at +this transition the sky would be made dark, stars would be shown, the +countryside would be darkened. And when the state changes to "daylight" the +opposite changes would be made: the sky is now blue, the scenery is green, +there is a sun in the sky. + +Here is a simple QML program that shows the change of state in the above +example. We have two rectangles, the top one is the 'sky' and the bottom +one is the 'ground'. We will animate the change from daylight to night. +There will be two states, but we only need to define one since 'daylight' +will be the default state. We will just go to 'night' by clicking and +holding the left mouse button down, releasing the mouse button will reverse +the process + + \code + import Qt 4.7 + + Rectangle { + id: mainRectangle + width: 600 + height: 400 + color: "black" + + Rectangle { + id: sky + width: 600 + height: 200 + y: 0 + color: "lightblue" + } + + Rectangle { + id: ground + width: 600; height: 200 + y: 200 + color: "green" + } + + MouseArea { + id: mousearea + anchors.fill: mainRectangle + } + + states: [ State { + name: "night" + when: mousearea.pressed == true + PropertyChanges { target: sky; color: "darkblue" } + PropertyChanges { target: ground; color: "black" } + }, + State { + name: "daylight" + when: mousearea.pressed == false + PropertyChanges { target: sky; color: "lightblue" } + PropertyChanges { target: ground; color: "green" } + } + ] + + transitions: [ Transition { + from: "daylight"; to: "night" + ColorAnimation { duration: 1000 } + }, + Transition { + from: "night"; to: "daylight" + ColorAnimation { duration: 500 } + } + ] + } + \endcode + +Several new things appear in this sample. Firstly, we use a \l MouseArea +element to detect mouse clicks in the \e mainRectangle. Secondly, we use +the list notation [ thing1 , thing2, ... ] to build a list of states and a +list of transitions. + +\l MouseArea defines a region that will respond to mouse clicks. In this case +we are only concerned with when the mouse is pressed or not pressed, not +the particular button or other details. The area of the MouseArea is the +entire main window, mainRectangle, so that clicking anywhere in this region +will start the animation. Since we are using the 'pressed' mouse state, +then the animation will move from 'daylight' to 'night' only while the mouse +button remains pressed. + +When the button is released the 'daylight' state is entered and the +transition from 'night' to 'daylight' is triggered causing the animation to +run. The transition specifies the duration in milliseconds of the +ColorAnimation, while the state specifies the color of the new state. + +The PropertyChanges command is the way that we nominate which properties +will change in a change of state, and what new value the property will +take. Since, for example, we want the 'sky' region to turn to dark blue and +the 'ground' region to turn to black for the 'night' state, then the +rectangles for those regions are the 'target' and the property in the target +is 'color'. + + +\section1 Signals + +Signals are simply events that can be hooked up to actions we want performed. +In QML they are usually preceded by the word 'on', for example in the animation +using a MouseArea the signal was \l {MouseArea::onPressed}{onPressed}. If +you look at the C++ documentation you will see a lot of talk about +\l {Signals & Slots}{Signals and Slots}. Signals are connected to Slots. The +signal represents an event and the Slot is the function that does something +based on that event. You can also have Signals connected to other Signals, so +that one Signal (event) triggers another Signal (event), and so forth. It is +nice to know this is what happens beneath the QML layer but not essential for +using QML. + +Most elements do not have Signals associated with them. However, a few like +the \l Audio element have many signals. Some of the \l Audio signals are +used to represent events such as when the audio is stopped, play is pressed, +paused, and reaching the end of the media. They allow the developer to connect, + for example, the press of a user interface button (perhaps a MouseArea) to + some QML that will handle this event. + + +\section1 Analyzing An Example: Dial + +In the Qt \e {examples/declarative/toys} folder you will find a folder +\e {dial} which contains the \e dial example. + +\image qml-dial.png "QML Dial example with Slider" + +In essence this small application has a sliding bar that you can slide using +a mouse, and a graphical dial that responds to the position of the slider. + +The code for the example is in two parts: Dial.qml and dial-example.qml. + +\e {Dial.qml} can be found in the \e content sub-directory. It defines a Dial +component similar to an odometer. Eventually, the example will hook up a slider +component so that moving the slider will change the position of a needle on the +dial. + +The code for the Dial, identified by the name of the file, contains four images +in overlapping order: the background (numbers and divisions), the shadow of the +needle, the needle itself, and finally the 'glass' overlay (containing +transparent layers). + +The needle_shadow.png image has a Rotation assigned to the \e transform +attribute of the \l Image. The rotation is set to match the angle of the needle +image angle value \e {needleRotation.angle}. Both the needle and the +needle_shadow have the same default \e x and \e y values but the rotation origin +for the needle is slightly different so that a shadow will be evident as the +needle moves. + +\snippet ../../examples/declarative/toys/dial/content/Dial.qml needle_shadow + +And the needle + +\snippet ../../examples/declarative/toys/dial/content/Dial.qml needle + +The final image is the overlay which simply has a position defined. + +\snippet ../../examples/declarative/toys/dial/content/Dial.qml overlay + +\e {dial-example.qml} in the \e {examples/declarative/toys/dial} directory is the +main file of the example. It defines the visual environment that the Dial +will fit into. Because the \e Dial component and the images live in the \e +content sub-directory we will have to import this into \e dial-example. So the +start of the file looks like + + \code + import Qt 4.7 + import "content" + \endcode + +The visual space is bound by a 300 by 300 pixel \l Rectangle which is given +a gray color. Inside this rectangle is our component \e Dial and a \l Rectangle. +Inside the rectangle called 'container' is another rectangle with the +interesting name 'slider'. + +\snippet ../../examples/declarative/toys/dial/dial-example.qml 0 + +The Dial component, named 'dial, is \e anchored to the center of the main +rectangle. The \c value attribute of 'dial' is set to a value based on the +'slider' horizontal position and the 'container' width. So changes to the +'slider' position will change the Dial \c value which is used in Dial to compute +the rotation of the needle image. Notice this piece of code in Dial where +the change in \c value modifies the position of the needle. + + \code + SpringFollow on angle { + spring: 1.4 + damping: .15 + to: Math.min(Math.max(-130, root.value*2.6 - 130), 133) + } + \endcode + +This is part of the \c needleRotation that rotates the needle and causes the +rotation of its shadow. \l SpringFollow is an element that modifies the value +of that rotation angle \e to and mimics the oscillatory behavior of a spring, +with the appropriate \e spring constant to control the acceleration and the \e +damping to control how quickly the effect dies away. + +The 'container' is light gray with a color gradient defined using +\l GradientStop. The gradient is applied vertically. If you need a horizontal +gradient then you could apply the vertical gradient and then rotate the item +by 90 degrees. + +The 'slider' is dark gray and also has a vertical color gradient. The most +important thing about the 'slider' is that it has a MouseArea defined, which +specifies a \c {drag.target} on itself along the X-axis. With minimum +and maximum values on the X-axis defined. So we can click on the 'slider' and +drag it left and right within the confines of the 'container'. The motion of +the 'slider' will then change the \c value attribute in \e Dial as discussed +already. + +Also notice the use of a \c radius value for a rectangle. This produces rounded +corners. That is how the 'container' and 'slider' are displayed with a +pleasant rounded look. + + + +*/ + + + diff --git a/doc/src/images/qml-dial.png b/doc/src/images/qml-dial.png new file mode 100644 index 0000000..da5c031 Binary files /dev/null and b/doc/src/images/qml-dial.png differ diff --git a/doc/src/images/qml-intro-anchors1.png b/doc/src/images/qml-intro-anchors1.png new file mode 100644 index 0000000..fdb301e Binary files /dev/null and b/doc/src/images/qml-intro-anchors1.png differ diff --git a/doc/src/images/qml-intro-anchors2.png b/doc/src/images/qml-intro-anchors2.png new file mode 100644 index 0000000..84f43bd Binary files /dev/null and b/doc/src/images/qml-intro-anchors2.png differ diff --git a/doc/src/images/qml-intro-anchors3.png b/doc/src/images/qml-intro-anchors3.png new file mode 100644 index 0000000..21ae97b Binary files /dev/null and b/doc/src/images/qml-intro-anchors3.png differ diff --git a/doc/src/images/qml-intro-helloa.png b/doc/src/images/qml-intro-helloa.png new file mode 100644 index 0000000..00b34b0 Binary files /dev/null and b/doc/src/images/qml-intro-helloa.png differ -- cgit v0.12 From c5f58f9a2ea2051289636a3491034136611d9922 Mon Sep 17 00:00:00 2001 From: Kurt Korbatits Date: Thu, 20 May 2010 14:54:22 +1000 Subject: Removed nearest test from qaudiodeviceinfo unit test. Reviewed-by:Justin McPherson --- tests/auto/qaudiodeviceinfo/tst_qaudiodeviceinfo.cpp | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/tests/auto/qaudiodeviceinfo/tst_qaudiodeviceinfo.cpp b/tests/auto/qaudiodeviceinfo/tst_qaudiodeviceinfo.cpp index d3d81e6..7e16ed9 100644 --- a/tests/auto/qaudiodeviceinfo/tst_qaudiodeviceinfo.cpp +++ b/tests/auto/qaudiodeviceinfo/tst_qaudiodeviceinfo.cpp @@ -67,7 +67,6 @@ private slots: void frequencies(); void isformat(); void preferred(); - void nearest(); private: bool available; @@ -190,16 +189,6 @@ void tst_QAudioDeviceInfo::preferred() } } -void tst_QAudioDeviceInfo::nearest() -{ - if(available) { - QAudioFormat format1, format2; - format1.setFrequency(8000); - format2 = device->nearestFormat(format1); - QVERIFY(format2.frequency() == 44100); - } -} - QTEST_MAIN(tst_QAudioDeviceInfo) #include "tst_qaudiodeviceinfo.moc" -- cgit v0.12 From c152b5dc859a47c45c7be70b7869e747ec58d8a9 Mon Sep 17 00:00:00 2001 From: Morten Engvoldsen Date: Thu, 20 May 2010 10:04:58 +0200 Subject: Doc: Updating CSS and JS Fixed bugs on index page, moved JS from template to script file. --- doc/src/template/scripts/functions.js | 17 +++++++++++++++++ doc/src/template/style/style.css | 2 ++ tools/qdoc3/test/qt-html-templates.qdocconf | 14 ++++++-------- 3 files changed, 25 insertions(+), 8 deletions(-) diff --git a/doc/src/template/scripts/functions.js b/doc/src/template/scripts/functions.js index 7d93486..afd1ec3 100755 --- a/doc/src/template/scripts/functions.js +++ b/doc/src/template/scripts/functions.js @@ -33,7 +33,21 @@ $('#bigA').click(function() { $(this).addClass('active') }); +$('.feedclose').click(function() { + $('.bd').show(); + $('.hd').show(); + $('.footer').show(); + $('#feedbackBox').hide(); + $('#blurpage').hide(); +}); +$('.feedback').click(function() { + $('.bd').hide(); + $('.hd').hide(); + $('.footer').hide(); + $('#feedbackBox').show(); + $('#blurpage').show(); +}); var lookupCount = 0; var articleCount = 0; var exampleCount = 0; @@ -131,6 +145,9 @@ else */ // Loads on doc ready $(document).ready(function () { + var pageUrl = window.location.href; + //alert(pageUrl); + $('#pageUrl').attr('foo',pageUrl); var pageTitle = $('title').html(); $('#feedform').append(''); var currentString = $('#pageType').val() ; diff --git a/doc/src/template/style/style.css b/doc/src/template/style/style.css index 5ad90e3..3f35642 100755 --- a/doc/src/template/style/style.css +++ b/doc/src/template/style/style.css @@ -456,6 +456,7 @@ .wrap .content { padding: 30px; + word-wrap:break-word; } .wrap .content li @@ -1067,6 +1068,7 @@ .indexboxcont .sectionlist { display: inline-block; + vertical-align:top; width: 32.5%; padding: 0; } diff --git a/tools/qdoc3/test/qt-html-templates.qdocconf b/tools/qdoc3/test/qt-html-templates.qdocconf index e83e666..50bf0c3 100644 --- a/tools/qdoc3/test/qt-html-templates.qdocconf +++ b/tools/qdoc3/test/qt-html-templates.qdocconf @@ -109,7 +109,7 @@ HTML.postpostheader = " \n" \ "
\n" HTML.footer = " \n" \ - "
\n" \ + "
\n" \ " [+] Documentation Feedback
\n" \ "
\n" \ "
\n" \ @@ -127,14 +127,12 @@ HTML.footer = " \n" \ " href=\"http://qt.nokia.com/about/privacy-policy\">Privacy Policy

\n" \ " \n" \ "
\n" \ - "
\n" \ - " X\n" \ - "
\n" \ - "
\n" \ + "
X
\n" \ + " \n" \ "

\n" \ - " \n" \ - "

\n" \ + " \n" \ + " \n" \ + "

\n" \ "
\n" \ "
\n" \ "
\n" \ -- cgit v0.12 From e61b3eb9903e9a63f107074c0e8d60e3ee689a52 Mon Sep 17 00:00:00 2001 From: Martin Petersson Date: Thu, 20 May 2010 10:12:52 +0200 Subject: Added support for .rc files on VS2010. Reviewed-by: Thierry --- qmake/generators/win32/msbuild_objectmodel.cpp | 39 ++++++++++++++++++++++++-- 1 file changed, 37 insertions(+), 2 deletions(-) diff --git a/qmake/generators/win32/msbuild_objectmodel.cpp b/qmake/generators/win32/msbuild_objectmodel.cpp index 99cdd11..75fc910 100644 --- a/qmake/generators/win32/msbuild_objectmodel.cpp +++ b/qmake/generators/win32/msbuild_objectmodel.cpp @@ -2656,6 +2656,14 @@ bool VCXFilter::outputFileConfig(XmlOutput &xml, XmlOutput &xmlFilter, const QSt xml << tag("ClCompile") << attrTag("Include",Option::fixPathToLocalOS(filename)); + } else if(filename.endsWith(".res")) { + + xmlFilter << tag("CustomBuild") + << attrTag("Include",Option::fixPathToLocalOS(filename)) + << attrTagS("Filter", filtername); + + xml << tag("CustomBuild") + << attrTag("Include",Option::fixPathToLocalOS(filename)); } else { xmlFilter << tag("CustomBuild") @@ -2665,6 +2673,16 @@ bool VCXFilter::outputFileConfig(XmlOutput &xml, XmlOutput &xmlFilter, const QSt xml << tag("CustomBuild") << attrTag("Include",Option::fixPathToLocalOS(filename)); } + } else if(filtername == "Root Files") { + + if (filename.endsWith(".rc")) { + + xmlFilter << tag("ResourceCompile") + << attrTag("Include",Option::fixPathToLocalOS(filename)); + + xml << tag("ResourceCompile") + << attrTag("Include",Option::fixPathToLocalOS(filename)); + } } } @@ -2696,8 +2714,6 @@ bool VCXFilter::outputFileConfig(XmlOutput &xml, XmlOutput &xmlFilter, const QSt << attrTag("Condition", QString("'$(Configuration)|$(Platform)'=='%1'").arg((*Config).Name)) << valueTag(CompilerTool.PrecompiledHeader); } - - //xml << CompilerTool; } } @@ -3023,6 +3039,14 @@ void VCXProject::outputFileConfigs(XmlOutput &xml, xml << tag("ClCompile") << attrTag("Include",Option::fixPathToLocalOS(info.file)); + } else if(info.file.endsWith(".res")) { + + xmlFilter << tag("CustomBuild") + << attrTag("Include",Option::fixPathToLocalOS(info.file)) + << attrTagS("Filter", filtername); + + xml << tag("CustomBuild") + << attrTag("Include",Option::fixPathToLocalOS(info.file)); } else { xmlFilter << tag("CustomBuild") @@ -3033,6 +3057,16 @@ void VCXProject::outputFileConfigs(XmlOutput &xml, << attrTag("Include",Option::fixPathToLocalOS(info.file)); } + } else if(filtername == "Root Files") { + + if (info.file.endsWith(".rc")) { + + xmlFilter << tag("ResourceCompile") + << attrTag("Include",Option::fixPathToLocalOS(info.file)); + + xml << tag("ResourceCompile") + << attrTag("Include",Option::fixPathToLocalOS(info.file)); + } } else { xmlFilter << tag("None") @@ -3329,6 +3363,7 @@ XmlOutput &operator<<(XmlOutput &xml, VCXProject &tool) for (int x = 0; x < tool.ExtraCompilers.count(); ++x) { tool.outputFilter(xml, xmlFilter, tool.ExtraCompilers.at(x)); } + tool.outputFilter(xml, xmlFilter, "Root Files"); xml << import("Project", "$(VCTargetsPath)\\Microsoft.Cpp.targets"); -- cgit v0.12 From e6557220bccbdbbc218dc9eab0eb426ba774435e Mon Sep 17 00:00:00 2001 From: Miikka Heikkinen Date: Thu, 20 May 2010 11:20:21 +0300 Subject: Fix replacement functions in platform_paths.prf Clearing epocroot_prefix at the end of the file caused it to be empty at the time replacement functions were resolved. Reviewed-by: Janne Koskinen --- mkspecs/features/symbian/platform_paths.prf | 2 -- 1 file changed, 2 deletions(-) diff --git a/mkspecs/features/symbian/platform_paths.prf b/mkspecs/features/symbian/platform_paths.prf index f05a885..0e8770d 100644 --- a/mkspecs/features/symbian/platform_paths.prf +++ b/mkspecs/features/symbian/platform_paths.prf @@ -473,5 +473,3 @@ exists($${EPOCROOT}epoc32/include/platform_paths.prf) { STLLIB_USAGE_DEFINES = _WCHAR_T_DECLARED } - -epocroot_prefix = -- cgit v0.12 From a72c6f403435e5cc7aff501b1e1ee990dfb24969 Mon Sep 17 00:00:00 2001 From: Harald Fernengel Date: Thu, 20 May 2010 11:03:12 +0200 Subject: Use QApplication::arguments() to check for command line args Use the Qt way to look up command line args, remove 5 lines of code per example. Also clean up badly indented code. --- demos/deform/main.cpp | 5 +---- demos/pathstroke/main.cpp | 5 +---- examples/draganddrop/fridgemagnets/main.cpp | 6 ++---- examples/script/context2d/main.cpp | 6 +----- examples/widgets/wiggly/main.cpp | 15 ++++++--------- 5 files changed, 11 insertions(+), 26 deletions(-) diff --git a/demos/deform/main.cpp b/demos/deform/main.cpp index 4539973..bef075a 100644 --- a/demos/deform/main.cpp +++ b/demos/deform/main.cpp @@ -50,10 +50,7 @@ int main(int argc, char **argv) QApplication app(argc, argv); - bool smallScreen = false; - for (int i=0; i Date: Thu, 20 May 2010 11:29:20 +0200 Subject: Examples: Fix compilation with namespace. --- demos/spectrum/app/engine.h | 5 ++++- demos/spectrum/app/mainwidget.h | 3 +++ demos/spectrum/app/settingsdialog.h | 2 ++ demos/spectrum/app/spectrograph.h | 2 ++ demos/spectrum/app/spectrumanalyser.h | 3 +++ demos/spectrum/app/tonegenerator.h | 2 ++ demos/spectrum/app/tonegeneratordialog.h | 2 ++ demos/spectrum/app/utils.h | 2 ++ demos/spectrum/app/waveform.h | 2 ++ 9 files changed, 22 insertions(+), 1 deletion(-) diff --git a/demos/spectrum/app/engine.h b/demos/spectrum/app/engine.h index 16088b2..93733fe 100644 --- a/demos/spectrum/app/engine.h +++ b/demos/spectrum/app/engine.h @@ -61,10 +61,13 @@ #include #endif +QT_BEGIN_NAMESPACE class QAudioInput; class QAudioOutput; -class FrequencySpectrum; class QFile; +QT_END_NAMESPACE + +class FrequencySpectrum; /** * This class interfaces with the QtMultimedia audio classes, and also with diff --git a/demos/spectrum/app/mainwidget.h b/demos/spectrum/app/mainwidget.h index 846b97a..c59dbd6 100644 --- a/demos/spectrum/app/mainwidget.h +++ b/demos/spectrum/app/mainwidget.h @@ -50,11 +50,14 @@ class Waveform; class LevelMeter; class SettingsDialog; class ToneGeneratorDialog; + +QT_BEGIN_NAMESPACE class QAudioFormat; class QLabel; class QPushButton; class QMenu; class QAction; +QT_END_NAMESPACE /** * Main application widget, responsible for connecting the various UI diff --git a/demos/spectrum/app/settingsdialog.h b/demos/spectrum/app/settingsdialog.h index 7215a50..fda518b 100644 --- a/demos/spectrum/app/settingsdialog.h +++ b/demos/spectrum/app/settingsdialog.h @@ -42,11 +42,13 @@ #include #include +QT_BEGIN_NAMESPACE class QComboBox; class QCheckBox; class QSlider; class QSpinBox; class QGridLayout; +QT_END_NAMESPACE /** * Dialog used to control settings such as the audio input / output device diff --git a/demos/spectrum/app/spectrograph.h b/demos/spectrum/app/spectrograph.h index 6bfef33..a7790ff 100644 --- a/demos/spectrum/app/spectrograph.h +++ b/demos/spectrum/app/spectrograph.h @@ -41,7 +41,9 @@ #include #include "frequencyspectrum.h" +QT_BEGIN_NAMESPACE class QMouseEvent; +QT_END_NAMESPACE /** * Widget which displays a spectrograph showing the frequency spectrum diff --git a/demos/spectrum/app/spectrumanalyser.h b/demos/spectrum/app/spectrumanalyser.h index caeb1c1..f10da63 100644 --- a/demos/spectrum/app/spectrumanalyser.h +++ b/demos/spectrum/app/spectrumanalyser.h @@ -55,8 +55,11 @@ #include "FFTRealFixLenParam.h" #endif +QT_BEGIN_NAMESPACE class QAudioFormat; class QThread; +QT_END_NAMESPACE + class FFTRealWrapper; class SpectrumAnalyserThreadPrivate; diff --git a/demos/spectrum/app/tonegenerator.h b/demos/spectrum/app/tonegenerator.h index 419f7e4..d387768 100644 --- a/demos/spectrum/app/tonegenerator.h +++ b/demos/spectrum/app/tonegenerator.h @@ -41,8 +41,10 @@ #include #include "spectrum.h" +QT_BEGIN_NAMESPACE class QAudioFormat; class QByteArray; +QT_END_NAMESPACE /** * Generate a sine wave diff --git a/demos/spectrum/app/tonegeneratordialog.h b/demos/spectrum/app/tonegeneratordialog.h index 35d69c2..d6fcffa 100644 --- a/demos/spectrum/app/tonegeneratordialog.h +++ b/demos/spectrum/app/tonegeneratordialog.h @@ -42,10 +42,12 @@ #include #include +QT_BEGIN_NAMESPACE class QCheckBox; class QSlider; class QSpinBox; class QGridLayout; +QT_END_NAMESPACE /** * Dialog which controls the parameters of the tone generator. diff --git a/demos/spectrum/app/utils.h b/demos/spectrum/app/utils.h index 83467cd..548f884 100644 --- a/demos/spectrum/app/utils.h +++ b/demos/spectrum/app/utils.h @@ -41,7 +41,9 @@ #include #include +QT_BEGIN_NAMESPACE class QAudioFormat; +QT_END_NAMESPACE //----------------------------------------------------------------------------- // Miscellaneous utility functions diff --git a/demos/spectrum/app/waveform.h b/demos/spectrum/app/waveform.h index 4de527f..909e5ee 100644 --- a/demos/spectrum/app/waveform.h +++ b/demos/spectrum/app/waveform.h @@ -43,7 +43,9 @@ #include #include +QT_BEGIN_NAMESPACE class QByteArray; +QT_END_NAMESPACE /** * Widget which displays a section of the audio waveform. -- cgit v0.12 From 98972c1b271de1292b4e46484fe689d62a8b8e62 Mon Sep 17 00:00:00 2001 From: Jani Hautakangas Date: Thu, 20 May 2010 12:46:46 +0300 Subject: QRuntimeGraphicsSystem QRuntimeGraphicsSystem is a proxy graphics system which can dynamically switch underlying graphics system on runtime. For example, switch from hardware accelerated graphics system to raster graphics system on low GPU memory situation. This feature is currently supported on Symbian platform. Task-number: QT-3276 Reviewed-by: Jason Barron --- src/corelib/global/qglobal.h | 1 + src/gui/image/qpixmap.cpp | 40 ++- src/gui/image/qpixmap.h | 2 - src/gui/image/qpixmapcache_p.h | 5 +- src/gui/image/qpixmapdata_p.h | 5 +- src/gui/kernel/qapplication.cpp | 13 +- src/gui/kernel/qapplication_s60.cpp | 66 +++- src/gui/kernel/qt_s60_p.h | 1 + src/gui/kernel/qwidget.cpp | 9 +- src/gui/painting/painting.pri | 2 + src/gui/painting/qgraphicssystem_runtime.cpp | 443 +++++++++++++++++++++++++++ src/gui/painting/qgraphicssystem_runtime_p.h | 197 ++++++++++++ src/gui/painting/qgraphicssystemfactory.cpp | 7 + src/gui/painting/qpaintengine_raster.cpp | 20 +- src/gui/painting/qwindowsurface.cpp | 2 - src/gui/painting/qwindowsurface_s60.cpp | 31 +- tools/configure/configureapp.cpp | 19 +- 17 files changed, 821 insertions(+), 42 deletions(-) create mode 100644 src/gui/painting/qgraphicssystem_runtime.cpp create mode 100644 src/gui/painting/qgraphicssystem_runtime_p.h diff --git a/src/corelib/global/qglobal.h b/src/corelib/global/qglobal.h index 8359637..cba50a2 100644 --- a/src/corelib/global/qglobal.h +++ b/src/corelib/global/qglobal.h @@ -2433,6 +2433,7 @@ QT3_SUPPORT Q_CORE_EXPORT const char *qInstallPathSysconf(); #if defined(Q_OS_SYMBIAN) #ifdef SYMBIAN_BUILD_GCE +#define Q_SYMBIAN_SUPPORTS_SURFACES //RWsPointerCursor is fixed, so don't use low performance sprites #define Q_SYMBIAN_FIXED_POINTER_CURSORS #define Q_SYMBIAN_HAS_EXTENDED_BITMAP_TYPE diff --git a/src/gui/image/qpixmap.cpp b/src/gui/image/qpixmap.cpp index 474cd2e..21216f8 100644 --- a/src/gui/image/qpixmap.cpp +++ b/src/gui/image/qpixmap.cpp @@ -635,17 +635,21 @@ void QPixmap::resize_helper(const QSize &s) if (size() == s) return; + // QPixmap.data member may be QRuntimePixmapData so use pixmapData() function to get + // the actual underlaying runtime pixmap data. + QPixmapData *pd = pixmapData(); + // Create new pixmap - QPixmap pm(QSize(w, h), data ? data->type : QPixmapData::PixmapType); + QPixmap pm(QSize(w, h), pd ? pd->type : QPixmapData::PixmapType); bool uninit = false; #if defined(Q_WS_X11) - QX11PixmapData *x11Data = data && data->classId() == QPixmapData::X11Class ? static_cast(data.data()) : 0; + QX11PixmapData *x11Data = pd && pd->classId() == QPixmapData::X11Class ? static_cast(pd) : 0; if (x11Data) { pm.x11SetScreen(x11Data->xinfo.screen()); uninit = x11Data->flags & QX11PixmapData::Uninitialized; } #elif defined(Q_WS_MAC) - QMacPixmapData *macData = data && data->classId() == QPixmapData::MacClass ? static_cast(data.data()) : 0; + QMacPixmapData *macData = pd && pd->classId() == QPixmapData::MacClass ? static_cast(pd) : 0; if (macData) uninit = macData->uninit; #endif @@ -659,7 +663,7 @@ void QPixmap::resize_helper(const QSize &s) #if defined(Q_WS_X11) if (x11Data && x11Data->x11_mask) { - QX11PixmapData *pmData = static_cast(pm.data.data()); + QX11PixmapData *pmData = static_cast(pd); pmData->x11_mask = (Qt::HANDLE)XCreatePixmap(X11->display, RootWindow(x11Data->xinfo.display(), x11Data->xinfo.screen()), @@ -1163,8 +1167,9 @@ QPixmap QPixmap::grabWidget(QWidget * widget, const QRect &rect) Qt::HANDLE QPixmap::handle() const { #if defined(Q_WS_X11) - if (data && data->classId() == QPixmapData::X11Class) - return static_cast(data.constData())->handle(); + const QPixmapData *pd = pixmapData(); + if (pd && pd->classId() == QPixmapData::X11Class) + return static_cast(pd)->handle(); #endif return 0; } @@ -1944,17 +1949,20 @@ void QPixmap::detach() if (!data) return; - QPixmapData::ClassId id = data->classId(); + // QPixmap.data member may be QRuntimePixmapData so use pixmapData() function to get + // the actual underlaying runtime pixmap data. + QPixmapData *pd = pixmapData(); + QPixmapData::ClassId id = pd->classId(); if (id == QPixmapData::RasterClass) { - QRasterPixmapData *rasterData = static_cast(data.data()); + QRasterPixmapData *rasterData = static_cast(pd); rasterData->image.detach(); } if (data->is_cached && data->ref == 1) - QImagePixmapCleanupHooks::executePixmapDataModificationHooks(data.data()); + QImagePixmapCleanupHooks::executePixmapDataModificationHooks(pd); #if defined(Q_WS_MAC) - QMacPixmapData *macData = id == QPixmapData::MacClass ? static_cast(data.data()) : 0; + QMacPixmapData *macData = id == QPixmapData::MacClass ? static_cast(pd) : 0; if (macData) { if (macData->cg_mask) { CGImageRelease(macData->cg_mask); @@ -1969,8 +1977,8 @@ void QPixmap::detach() ++data->detach_no; #if defined(Q_WS_X11) - if (data->classId() == QPixmapData::X11Class) { - QX11PixmapData *d = static_cast(data.data()); + if (pd->classId() == QPixmapData::X11Class) { + QX11PixmapData *d = static_cast(pd); d->flags &= ~QX11PixmapData::Uninitialized; // reset the cache data @@ -2060,9 +2068,15 @@ QPixmap QPixmap::fromImage(const QImage &image, Qt::ImageConversionFlags flags) */ QPixmapData* QPixmap::pixmapData() const { - return data.data(); + if (data) { + QPixmapData* pm = data.data(); + return pm->runtimeData() ? pm->runtimeData() : pm; + } + + return 0; } + /*! \enum QPixmap::HBitmapFormat diff --git a/src/gui/image/qpixmap.h b/src/gui/image/qpixmap.h index 180af3b..82546da 100644 --- a/src/gui/image/qpixmap.h +++ b/src/gui/image/qpixmap.h @@ -271,9 +271,7 @@ private: friend class QX11PaintEngine; friend class QCoreGraphicsPaintEngine; friend class QWidgetPrivate; - friend class QRasterPaintEngine; friend class QRasterBuffer; - friend class QPixmapCacheEntry; #if !defined(QT_NO_DATASTREAM) friend Q_GUI_EXPORT QDataStream &operator>>(QDataStream &, QPixmap &); #endif diff --git a/src/gui/image/qpixmapcache_p.h b/src/gui/image/qpixmapcache_p.h index 86a1b78..0ed083c 100644 --- a/src/gui/image/qpixmapcache_p.h +++ b/src/gui/image/qpixmapcache_p.h @@ -81,8 +81,9 @@ class QPixmapCacheEntry : public QPixmap public: QPixmapCacheEntry(const QPixmapCache::Key &key, const QPixmap &pix) : QPixmap(pix), key(key) { - if (data && data->classId() == QPixmapData::RasterClass) { - QRasterPixmapData *d = static_cast(data.data()); + QPixmapData *pd = pixmapData(); + if (pd && pd->classId() == QPixmapData::RasterClass) { + QRasterPixmapData *d = static_cast(pd); if (!d->image.isNull() && d->image.d->paintEngine && !d->image.d->paintEngine->isActive()) { diff --git a/src/gui/image/qpixmapdata_p.h b/src/gui/image/qpixmapdata_p.h index 827fa18..60ed26a 100644 --- a/src/gui/image/qpixmapdata_p.h +++ b/src/gui/image/qpixmapdata_p.h @@ -73,7 +73,7 @@ public: }; #endif enum ClassId { RasterClass, X11Class, MacClass, DirectFBClass, - OpenGLClass, OpenVGClass, CustomClass = 1024 }; + OpenGLClass, OpenVGClass, RuntimeClass, CustomClass = 1024 }; QPixmapData(PixelType pixelType, int classId); virtual ~QPixmapData(); @@ -133,7 +133,10 @@ public: static QPixmapData *create(int w, int h, PixelType type); + virtual QPixmapData *runtimeData() const { return 0; } + protected: + void setSerialNumber(int serNo); int w; int h; diff --git a/src/gui/kernel/qapplication.cpp b/src/gui/kernel/qapplication.cpp index ec635d4..590b000 100644 --- a/src/gui/kernel/qapplication.cpp +++ b/src/gui/kernel/qapplication.cpp @@ -70,6 +70,10 @@ #include "qmessagebox.h" #include +#ifdef QT_GRAPHICSSYSTEM_RUNTIME +#include "private/qgraphicssystem_runtime_p.h" +#endif + #include "qinputcontext.h" #include "qkeymapper_p.h" @@ -1561,7 +1565,14 @@ QStyle* QApplication::setStyle(const QString& style) void QApplication::setGraphicsSystem(const QString &system) { - QApplicationPrivate::graphics_system_name = system; +#ifdef QT_GRAPHICSSYSTEM_RUNTIME + if (QApplicationPrivate::graphics_system_name == QLatin1String("runtime")) { + QRuntimeGraphicsSystem *r = + static_cast(QApplicationPrivate::graphics_system); + r->setGraphicsSystem(system); + } else +#endif + QApplicationPrivate::graphics_system_name = system; } /*! diff --git a/src/gui/kernel/qapplication_s60.cpp b/src/gui/kernel/qapplication_s60.cpp index f4c7304..1134a9b 100644 --- a/src/gui/kernel/qapplication_s60.cpp +++ b/src/gui/kernel/qapplication_s60.cpp @@ -62,6 +62,10 @@ #include "qpaintengine.h" #include "private/qmenubar_p.h" #include "private/qsoftkeymanager_p.h" +#ifdef QT_GRAPHICSSYSTEM_RUNTIME +#include "private/qgraphicssystem_runtime_p.h" +#endif + #include "apgwgnam.h" // For CApaWindowGroupName #include // For CMdaAudioToneUtility @@ -83,6 +87,10 @@ QT_BEGIN_NAMESPACE +// Goom Events through Window Server +static const int KGoomMemoryLowEvent = 0x10282DBF; +static const int KGoomMemoryGoodEvent = 0x20026790; + #if defined(QT_DEBUG) static bool appNoGrab = false; // Grabbing enabled #endif @@ -855,7 +863,16 @@ void QSymbianControl::Draw(const TRect& controlRect) const const TRect backingStoreRect(TPoint(backingStoreBase.x(), backingStoreBase.y()), controlRect.Size()); if (engine->type() == QPaintEngine::Raster) { - QS60WindowSurface *s60Surface = static_cast(qwidget->windowSurface()); + QS60WindowSurface *s60Surface; +#ifdef QT_GRAPHICSSYSTEM_RUNTIME + if (QApplicationPrivate::graphics_system_name == QLatin1String("runtime")) { + QRuntimeWindowSurface *rtSurface = + static_cast(qwidget->windowSurface()); + s60Surface = static_cast(rtSurface->m_windowSurface); + } else +#endif + s60Surface = static_cast(qwidget->windowSurface()); + CFbsBitmap *bitmap = s60Surface->symbianBitmap(); CWindowGc &gc = SystemGc(); @@ -1738,6 +1755,53 @@ int QApplicationPrivate::symbianProcessWsEvent(const QSymbianEvent *symbianEvent } #endif break; + case KGoomMemoryLowEvent: +#ifdef QT_DEBUG + qDebug() << "QApplicationPrivate::symbianProcessWsEvent - KGoomMemoryLowEvent"; +#endif + if (callSymbianEventFilters(symbianEvent)) + return 1; +#ifdef QT_GRAPHICSSYSTEM_RUNTIME + if(QApplicationPrivate::graphics_system_name == QLatin1String("runtime")) { + bool switchToSwRendering(false); + + foreach (QWidget *w, QApplication::topLevelWidgets()) { + if(w->d_func()->topData()->backingStore) { + switchToSwRendering = true; + break; + } + } + + if (switchToSwRendering) { + QRuntimeGraphicsSystem *gs = + static_cast(QApplicationPrivate::graphics_system); + + uint memoryUsage = gs->memoryUsage(); + uint memoryForFullscreen = ( S60->screenDepth / 8 ) + * S60->screenWidthInPixels + * S60->screenHeightInPixels; + + S60->memoryLimitForHwRendering = memoryUsage - memoryForFullscreen; + gs->setGraphicsSystem(QLatin1String("raster")); + } + } +#endif + break; + case KGoomMemoryGoodEvent: +#ifdef QT_DEBUG + qDebug() << "QApplicationPrivate::symbianProcessWsEvent - KGoomMemoryGoodEvent"; +#endif + if (callSymbianEventFilters(symbianEvent)) + return 1; +#ifdef QT_GRAPHICSSYSTEM_RUNTIME + if(QApplicationPrivate::graphics_system_name == QLatin1String("runtime")) { + QRuntimeGraphicsSystem *gs = + static_cast(QApplicationPrivate::graphics_system); + gs->setGraphicsSystem(QLatin1String("openvg"), S60->memoryLimitForHwRendering); + S60->memoryLimitForHwRendering = 0; + } +#endif + break; default: break; } diff --git a/src/gui/kernel/qt_s60_p.h b/src/gui/kernel/qt_s60_p.h index 58da302..645e969 100644 --- a/src/gui/kernel/qt_s60_p.h +++ b/src/gui/kernel/qt_s60_p.h @@ -123,6 +123,7 @@ public: int supportsPremultipliedAlpha : 1; int avkonComponentsSupportTransparency : 1; int menuBeingConstructed : 1; + int memoryLimitForHwRendering; QApplication::QS60MainApplicationFactory s60ApplicationFactory; // typedef'ed pointer type static inline void updateScreenSize(); static inline RWsSession& wsSession(); diff --git a/src/gui/kernel/qwidget.cpp b/src/gui/kernel/qwidget.cpp index 60f38f2..064bf03 100644 --- a/src/gui/kernel/qwidget.cpp +++ b/src/gui/kernel/qwidget.cpp @@ -248,9 +248,14 @@ QWidgetPrivate::~QWidgetPrivate() QWindowSurface *QWidgetPrivate::createDefaultWindowSurface() { Q_Q(QWidget); + + QWindowSurface *surface; if (QApplicationPrivate::graphicsSystem()) - return QApplicationPrivate::graphicsSystem()->createWindowSurface(q); - return createDefaultWindowSurface_sys(); + surface = QApplicationPrivate::graphicsSystem()->createWindowSurface(q); + else + surface = createDefaultWindowSurface_sys(); + + return surface; } /*! diff --git a/src/gui/painting/painting.pri b/src/gui/painting/painting.pri index ed8ee76..123af1c 100644 --- a/src/gui/painting/painting.pri +++ b/src/gui/painting/painting.pri @@ -118,12 +118,14 @@ embedded { } else { HEADERS += \ painting/qgraphicssystem_raster_p.h \ + painting/qgraphicssystem_runtime_p.h \ painting/qgraphicssystemfactory_p.h \ painting/qgraphicssystemplugin_p.h \ painting/qwindowsurface_raster_p.h \ SOURCES += \ painting/qgraphicssystem_raster.cpp \ + painting/qgraphicssystem_runtime.cpp \ painting/qgraphicssystemfactory.cpp \ painting/qgraphicssystemplugin.cpp \ painting/qwindowsurface_raster.cpp \ diff --git a/src/gui/painting/qgraphicssystem_runtime.cpp b/src/gui/painting/qgraphicssystem_runtime.cpp new file mode 100644 index 0000000..dfa9bd3 --- /dev/null +++ b/src/gui/painting/qgraphicssystem_runtime.cpp @@ -0,0 +1,443 @@ +#include +#include +#include +#include +#include +#include +#include +#include + +QT_BEGIN_NAMESPACE + +#define READBACK(f) \ + m_graphicsSystem->decreaseMemoryUsage(memoryUsage()); \ + f \ + readBackInfo(); \ + m_graphicsSystem->increaseMemoryUsage(memoryUsage()); \ + + +class QDeferredGraphicsSystemChange : public QObject +{ + Q_OBJECT + +public: + QDeferredGraphicsSystemChange(QRuntimeGraphicsSystem *gs, const QString& graphicsSystemName) + : m_graphicsSystem(gs), m_graphicsSystemName(graphicsSystemName) + { + } + + void launch() + { + QTimer::singleShot(0, this, SLOT(doChange())); + } + +private slots: + + void doChange() + { + m_graphicsSystem->setGraphicsSystem(m_graphicsSystemName); + deleteLater(); + } + +private: + + QRuntimeGraphicsSystem *m_graphicsSystem; + QString m_graphicsSystemName; +}; + +QRuntimePixmapData::QRuntimePixmapData(const QRuntimeGraphicsSystem *gs, PixelType type) + : QPixmapData(type, RuntimeClass), m_graphicsSystem(gs) +{ + setSerialNumber((int)this); +} + +QRuntimePixmapData::~QRuntimePixmapData() +{ + m_graphicsSystem->removePixmapData(this); + delete m_data; +} + +void QRuntimePixmapData::readBackInfo() +{ + w = m_data->width(); + h = m_data->height(); + d = m_data->depth(); + is_null = m_data->isNull(); +} + + +QPixmapData *QRuntimePixmapData::createCompatiblePixmapData() const +{ + QRuntimePixmapData *rtData = new QRuntimePixmapData(m_graphicsSystem, pixelType()); + rtData->m_data = m_data->createCompatiblePixmapData(); + return rtData; +} + + +void QRuntimePixmapData::resize(int width, int height) +{ + READBACK( + m_data->resize(width, height); + ) +} + + +void QRuntimePixmapData::fromImage(const QImage &image, + Qt::ImageConversionFlags flags) +{ + READBACK( + m_data->fromImage(image, flags); + ) +} + + +bool QRuntimePixmapData::fromFile(const QString &filename, const char *format, + Qt::ImageConversionFlags flags) +{ + bool success(false); + READBACK( + success = m_data->fromFile(filename, format, flags); + ) + return success; +} + +bool QRuntimePixmapData::fromData(const uchar *buffer, uint len, const char *format, + Qt::ImageConversionFlags flags) +{ + bool success(false); + READBACK( + success = m_data->fromData(buffer, len, format, flags); + ) + return success; +} + + +void QRuntimePixmapData::copy(const QPixmapData *data, const QRect &rect) +{ + if (data->runtimeData()) { + READBACK( + m_data->copy(data->runtimeData(), rect); + ) + } else { + READBACK( + m_data->copy(data, rect); + ) + } +} + +bool QRuntimePixmapData::scroll(int dx, int dy, const QRect &rect) +{ + return m_data->scroll(dx, dy, rect); +} + + +int QRuntimePixmapData::metric(QPaintDevice::PaintDeviceMetric metric) const +{ + return m_data->metric(metric); +} + +void QRuntimePixmapData::fill(const QColor &color) +{ + return m_data->fill(color); +} + +QBitmap QRuntimePixmapData::mask() const +{ + return m_data->mask(); +} + +void QRuntimePixmapData::setMask(const QBitmap &mask) +{ + READBACK( + m_data->setMask(mask); + ) +} + +bool QRuntimePixmapData::hasAlphaChannel() const +{ + return m_data->hasAlphaChannel(); +} + +QPixmap QRuntimePixmapData::transformed(const QTransform &matrix, + Qt::TransformationMode mode) const +{ + return m_data->transformed(matrix, mode); +} + +void QRuntimePixmapData::setAlphaChannel(const QPixmap &alphaChannel) +{ + READBACK( + m_data->setAlphaChannel(alphaChannel); + ) +} + +QPixmap QRuntimePixmapData::alphaChannel() const +{ + return m_data->alphaChannel(); +} + +QImage QRuntimePixmapData::toImage() const +{ + return m_data->toImage(); +} + +QPaintEngine* QRuntimePixmapData::paintEngine() const +{ + return m_data->paintEngine(); +} + +QImage* QRuntimePixmapData::buffer() +{ + return m_data->buffer(); +} + +#if defined(Q_OS_SYMBIAN) +void* QRuntimePixmapData::toNativeType(NativeType type) +{ + return m_data->toNativeType(type); +} + +void QRuntimePixmapData::fromNativeType(void *pixmap, NativeType type) +{ + m_data->fromNativeType(pixmap, type); + readBackInfo(); +} +#endif + +QPixmapData* QRuntimePixmapData::runtimeData() const +{ + return m_data; +} + +uint QRuntimePixmapData::memoryUsage() const +{ + if(is_null || d == 0) + return 0; + return w * h * (d / 8); +} + + +QRuntimeWindowSurface::QRuntimeWindowSurface(const QRuntimeGraphicsSystem *gs, QWidget *window) + : QWindowSurface(window), m_windowSurface(0), m_pendingWindowSurface(0), m_graphicsSystem(gs) +{ + +} + +QRuntimeWindowSurface::~QRuntimeWindowSurface() +{ + m_graphicsSystem->removeWindowSurface(this); + delete m_windowSurface; +} + +QPaintDevice *QRuntimeWindowSurface::paintDevice() +{ + return m_windowSurface->paintDevice(); +} + +void QRuntimeWindowSurface::flush(QWidget *widget, const QRegion ®ion, + const QPoint &offset) +{ + m_windowSurface->flush(widget, region, offset); + + int destroyPolicy = m_graphicsSystem->windowSurfaceDestroyPolicy(); + if(m_pendingWindowSurface && + destroyPolicy == QRuntimeGraphicsSystem::DestroyAfterFirstFlush) { +#ifdef QT_DEBUG + qDebug() << "QRuntimeWindowSurface::flush() - destroy pending window surface"; +#endif + delete m_pendingWindowSurface; + m_pendingWindowSurface = 0; + } +} + +void QRuntimeWindowSurface::setGeometry(const QRect &rect) +{ + m_graphicsSystem->decreaseMemoryUsage(memoryUsage()); + m_windowSurface->setGeometry(rect); + m_graphicsSystem->increaseMemoryUsage(memoryUsage()); +} + +bool QRuntimeWindowSurface::scroll(const QRegion &area, int dx, int dy) +{ + return m_windowSurface->scroll(area, dx, dy); +} + +void QRuntimeWindowSurface::beginPaint(const QRegion &rgn) +{ + m_windowSurface->beginPaint(rgn); +} + +void QRuntimeWindowSurface::endPaint(const QRegion &rgn) +{ + m_windowSurface->endPaint(rgn); +} + +QImage* QRuntimeWindowSurface::buffer(const QWidget *widget) +{ + return m_windowSurface->buffer(widget); +} + +QPixmap QRuntimeWindowSurface::grabWidget(const QWidget *widget, const QRect& rectangle) const +{ + return m_windowSurface->grabWidget(widget, rectangle); +} + +QPoint QRuntimeWindowSurface::offset(const QWidget *widget) const +{ + return m_windowSurface->offset(widget); +} + +uint QRuntimeWindowSurface::memoryUsage() const +{ + QPaintDevice *pdev = m_windowSurface->paintDevice(); + if (pdev && pdev->depth() != 0) + return pdev->width() * pdev->height() * (pdev->depth()/8); + + return 0; +} + +QRuntimeGraphicsSystem::QRuntimeGraphicsSystem() + : m_memoryUsage(0), m_windowSurfaceDestroyPolicy(DestroyImmediately), + m_graphicsSystem(0), m_graphicsSystemChangeMemoryLimit(0) +{ + QApplicationPrivate::graphics_system_name = QLatin1String("runtime"); + +#ifdef Q_OS_SYMBIAN + m_graphicsSystemName = QLatin1String("openvg"); + m_windowSurfaceDestroyPolicy = DestroyAfterFirstFlush; +#else + m_graphicsSystemName = QLatin1String("raster"); +#endif + + m_graphicsSystem = QGraphicsSystemFactory::create(m_graphicsSystemName); +} + + +QPixmapData *QRuntimeGraphicsSystem::createPixmapData(QPixmapData::PixelType type) const +{ + Q_ASSERT(m_graphicsSystem); + QPixmapData *data = m_graphicsSystem->createPixmapData(type); + + QRuntimePixmapData *rtData = new QRuntimePixmapData(this, type); + rtData->m_data = data; + m_pixmapDatas << rtData; + + return rtData; +} + +QWindowSurface *QRuntimeGraphicsSystem::createWindowSurface(QWidget *widget) const +{ + Q_ASSERT(m_graphicsSystem); + QRuntimeWindowSurface *rtSurface = new QRuntimeWindowSurface(this, widget); + rtSurface->m_windowSurface = m_graphicsSystem->createWindowSurface(widget); + widget->setWindowSurface(rtSurface); + m_windowSurfaces << rtSurface; + increaseMemoryUsage(rtSurface->memoryUsage()); + return rtSurface; +} + +/*! + Sets graphics system when resource memory consumption is under /a memoryUsageLimit. +*/ +void QRuntimeGraphicsSystem::setGraphicsSystem(const QString &name, uint memoryUsageLimit) +{ +#ifdef QT_DEBUG + qDebug() << "QRuntimeGraphicsSystem::setGraphicsSystem( "<< name <<", " << memoryUsageLimit << ")"; + qDebug() << " current approximated graphics system memory usage " << memoryUsage() << " bytes"; +#endif + if (memoryUsage() >= memoryUsageLimit) { + m_graphicsSystemChangeMemoryLimit = memoryUsageLimit; + m_pendingGraphicsSystemName = name; + } else { + setGraphicsSystem(name); + } +} + +void QRuntimeGraphicsSystem::setGraphicsSystem(const QString &name) +{ + if (m_graphicsSystemName == name) + return; +#ifdef QT_DEBUG + qDebug() << "QRuntimeGraphicsSystem::setGraphicsSystem( " << name << " )"; + qDebug() << " current approximated graphics system memory usage "<< memoryUsage() << " bytes"; +#endif + delete m_graphicsSystem; + m_graphicsSystem = QGraphicsSystemFactory::create(name); + m_graphicsSystemName = name; + + Q_ASSERT(m_graphicsSystem); + + m_graphicsSystemChangeMemoryLimit = 0; + m_pendingGraphicsSystemName = QString(); + + for (int i = 0; i < m_pixmapDatas.size(); ++i) { + QRuntimePixmapData *proxy = m_pixmapDatas.at(i); + QPixmapData *newData = m_graphicsSystem->createPixmapData(proxy->m_data->pixelType()); + // ### TODO Optimize. Openvg and s60raster graphics systems could switch internal ARGB32_PRE QImage buffers. + newData->fromImage(proxy->m_data->toImage(), Qt::AutoColor | Qt::OrderedAlphaDither); + delete proxy->m_data; + proxy->m_data = newData; + proxy->readBackInfo(); + } + + for (int i = 0; i < m_windowSurfaces.size(); ++i) { + QRuntimeWindowSurface *proxy = m_windowSurfaces.at(i); + QWidget *widget = proxy->m_windowSurface->window(); + + if(m_windowSurfaceDestroyPolicy == DestroyImmediately) { + delete proxy->m_windowSurface; + proxy->m_pendingWindowSurface = 0; + } else { + proxy->m_pendingWindowSurface = proxy->m_windowSurface; + } + + proxy->m_windowSurface = m_graphicsSystem->createWindowSurface(widget); + qt_widget_private(widget)->invalidateBuffer(widget->rect()); + } +} + +void QRuntimeGraphicsSystem::removePixmapData(QRuntimePixmapData *pixmapData) const +{ + int index = m_pixmapDatas.lastIndexOf(pixmapData); + m_pixmapDatas.removeAt(index); + decreaseMemoryUsage(pixmapData->memoryUsage(), true); +} + +void QRuntimeGraphicsSystem::removeWindowSurface(QRuntimeWindowSurface *windowSurface) const +{ + int index = m_windowSurfaces.lastIndexOf(windowSurface); + m_windowSurfaces.removeAt(index); + decreaseMemoryUsage(windowSurface->memoryUsage(), true); +} + +void QRuntimeGraphicsSystem::increaseMemoryUsage(uint amount) const +{ + m_memoryUsage += amount; + + if (m_graphicsSystemChangeMemoryLimit && + m_memoryUsage < m_graphicsSystemChangeMemoryLimit) { + + QRuntimeGraphicsSystem *gs = const_cast(this); + QDeferredGraphicsSystemChange *deferredChange = + new QDeferredGraphicsSystemChange(gs, m_pendingGraphicsSystemName); + deferredChange->launch(); + } +} + +void QRuntimeGraphicsSystem::decreaseMemoryUsage(uint amount, bool persistent) const +{ + m_memoryUsage -= amount; + + if (persistent && m_graphicsSystemChangeMemoryLimit && + m_memoryUsage < m_graphicsSystemChangeMemoryLimit) { + + QRuntimeGraphicsSystem *gs = const_cast(this); + QDeferredGraphicsSystemChange *deferredChange = + new QDeferredGraphicsSystemChange(gs, m_pendingGraphicsSystemName); + deferredChange->launch(); + } +} + +#include "qgraphicssystem_runtime.moc" + +QT_END_NAMESPACE diff --git a/src/gui/painting/qgraphicssystem_runtime_p.h b/src/gui/painting/qgraphicssystem_runtime_p.h new file mode 100644 index 0000000..445f83d --- /dev/null +++ b/src/gui/painting/qgraphicssystem_runtime_p.h @@ -0,0 +1,197 @@ +/**************************************************************************** +** +** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the plugins of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** No Commercial Usage +** This file contains pre-release code and may not be distributed. +** You may use this file in accordance with the terms and conditions +** contained in the Technology Preview License Agreement accompanying +** this package. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Nokia gives you certain additional +** rights. These rights are described in the Nokia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +#ifndef QGRAPHICSSYSTEM_RUNTIME_P_H +#define QGRAPHICSSYSTEM_RUNTIME_P_H + +// +// W A R N I N G +// ------------- +// +// This file is not part of the Qt API. It exists for the convenience +// of other Qt classes. This header file may change from version to +// version without notice, or even be removed. +// +// We mean it. +// + +#include "qgraphicssystem_p.h" + +#include + +QT_BEGIN_NAMESPACE + +class QRuntimeGraphicsSystem; + +class QRuntimePixmapData : public QPixmapData { +public: + QRuntimePixmapData(const QRuntimeGraphicsSystem *gs, PixelType type); + ~QRuntimePixmapData(); + + virtual QPixmapData *createCompatiblePixmapData() const; + virtual void resize(int width, int height); + virtual void fromImage(const QImage &image, + Qt::ImageConversionFlags flags); + + virtual bool fromFile(const QString &filename, const char *format, + Qt::ImageConversionFlags flags); + virtual bool fromData(const uchar *buffer, uint len, const char *format, + Qt::ImageConversionFlags flags); + + virtual void copy(const QPixmapData *data, const QRect &rect); + virtual bool scroll(int dx, int dy, const QRect &rect); + + virtual int metric(QPaintDevice::PaintDeviceMetric metric) const; + virtual void fill(const QColor &color); + virtual QBitmap mask() const; + virtual void setMask(const QBitmap &mask); + virtual bool hasAlphaChannel() const; + virtual QPixmap transformed(const QTransform &matrix, + Qt::TransformationMode mode) const; + virtual void setAlphaChannel(const QPixmap &alphaChannel); + virtual QPixmap alphaChannel() const; + virtual QImage toImage() const; + virtual QPaintEngine *paintEngine() const; + + virtual QImage *buffer(); + + void readBackInfo(); + + QPixmapData *m_data; + +#if defined(Q_OS_SYMBIAN) + void* toNativeType(NativeType type); + void fromNativeType(void* pixmap, NativeType type); +#endif + + virtual QPixmapData *runtimeData() const; + + virtual uint memoryUsage() const; + +private: + const QRuntimeGraphicsSystem *m_graphicsSystem; + +}; + +class QRuntimeWindowSurface : public QWindowSurface { +public: + QRuntimeWindowSurface(const QRuntimeGraphicsSystem *gs, QWidget *window); + ~QRuntimeWindowSurface(); + + virtual QPaintDevice *paintDevice(); + virtual void flush(QWidget *widget, const QRegion ®ion, + const QPoint &offset); + virtual void setGeometry(const QRect &rect); + + virtual bool scroll(const QRegion &area, int dx, int dy); + + virtual void beginPaint(const QRegion &); + virtual void endPaint(const QRegion &); + + virtual QImage* buffer(const QWidget *widget); + virtual QPixmap grabWidget(const QWidget *widget, const QRect& rectangle = QRect()) const; + + virtual QPoint offset(const QWidget *widget) const; + + virtual uint memoryUsage() const; + + QWindowSurface *m_windowSurface; + QWindowSurface *m_pendingWindowSurface; + +private: + const QRuntimeGraphicsSystem *m_graphicsSystem; +}; + +class QRuntimeGraphicsSystem : public QGraphicsSystem +{ +public: + + enum WindowSurfaceDestroyPolicy + { + DestroyImmediately, + DestroyAfterFirstFlush + }; + +public: + QRuntimeGraphicsSystem(); + + QPixmapData *createPixmapData(QPixmapData::PixelType type) const; + QWindowSurface *createWindowSurface(QWidget *widget) const; + + void removePixmapData(QRuntimePixmapData *pixmapData) const; + void removeWindowSurface(QRuntimeWindowSurface *windowSurface) const; + + void setGraphicsSystem(const QString &name, uint memoryUsageLimit); + void setGraphicsSystem(const QString &name); + QString graphicsSystemName() const { return m_graphicsSystemName; } + + void setWindowSurfaceDestroyPolicy(WindowSurfaceDestroyPolicy policy) + { + m_windowSurfaceDestroyPolicy = policy; + } + + int windowSurfaceDestroyPolicy() const { return m_windowSurfaceDestroyPolicy; } + + int memoryUsage() const { return m_memoryUsage; } + +private: + + void increaseMemoryUsage(uint amount) const; + void decreaseMemoryUsage(uint amount, bool persistent = false) const; + +private: + mutable uint m_memoryUsage; + int m_windowSurfaceDestroyPolicy; + QGraphicsSystem *m_graphicsSystem; + mutable QList m_pixmapDatas; + mutable QList m_windowSurfaces; + QString m_graphicsSystemName; + + uint m_graphicsSystemChangeMemoryLimit; + QString m_pendingGraphicsSystemName; + + friend class QRuntimePixmapData; + friend class QRuntimeWindowSurface; +}; + +QT_END_NAMESPACE + +#endif diff --git a/src/gui/painting/qgraphicssystemfactory.cpp b/src/gui/painting/qgraphicssystemfactory.cpp index 3c09894..ee6fbd8 100644 --- a/src/gui/painting/qgraphicssystemfactory.cpp +++ b/src/gui/painting/qgraphicssystemfactory.cpp @@ -46,6 +46,7 @@ #include "qapplication.h" #include "qgraphicssystem_raster_p.h" +#include "qgraphicssystem_runtime_p.h" #include "qdebug.h" QT_BEGIN_NAMESPACE @@ -68,6 +69,10 @@ QGraphicsSystem *QGraphicsSystemFactory::create(const QString& key) if (system.isEmpty()) { system = QLatin1String("openvg"); } +#elif defined (QT_GRAPHICSSYSTEM_RUNTIME) + if (system.isEmpty()) { + system = QLatin1String("runtime"); + } #elif defined (QT_GRAPHICSSYSTEM_RASTER) && !defined(Q_WS_WIN) && !defined(Q_OS_SYMBIAN) if (system.isEmpty()) { system = QLatin1String("raster"); @@ -76,6 +81,8 @@ QGraphicsSystem *QGraphicsSystemFactory::create(const QString& key) if (system == QLatin1String("raster")) return new QRasterGraphicsSystem; + else if (system == QLatin1String("runtime")) + return new QRuntimeGraphicsSystem; else if (system.isEmpty() || system == QLatin1String("native")) return 0; diff --git a/src/gui/painting/qpaintengine_raster.cpp b/src/gui/painting/qpaintengine_raster.cpp index 6f395f6..48974e8 100644 --- a/src/gui/painting/qpaintengine_raster.cpp +++ b/src/gui/painting/qpaintengine_raster.cpp @@ -441,8 +441,9 @@ bool QRasterPaintEngine::begin(QPaintDevice *device) if (device->devType() == QInternal::Pixmap) { QPixmap *pixmap = static_cast(device); - if (pixmap->data->classId() == QPixmapData::RasterClass) - d->device = pixmap->data->buffer(); + QPixmapData *pd = pixmap->pixmapData(); + if (pd->classId() == QPixmapData::RasterClass) + d->device = pd->buffer(); } else { d->device = device; } @@ -2358,8 +2359,9 @@ void QRasterPaintEngine::drawPixmap(const QPointF &pos, const QPixmap &pixmap) qDebug() << " - QRasterPaintEngine::drawPixmap(), pos=" << pos << " pixmap=" << pixmap.size() << "depth=" << pixmap.depth(); #endif - if (pixmap.data->classId() == QPixmapData::RasterClass) { - const QImage &image = static_cast(pixmap.data.data())->image; + QPixmapData *pd = pixmap.pixmapData(); + if (pd->classId() == QPixmapData::RasterClass) { + const QImage &image = static_cast(pd)->image; if (image.depth() == 1) { Q_D(QRasterPaintEngine); QRasterPaintEngineState *s = state(); @@ -2398,8 +2400,9 @@ void QRasterPaintEngine::drawPixmap(const QRectF &r, const QPixmap &pixmap, cons qDebug() << " - QRasterPaintEngine::drawPixmap(), r=" << r << " sr=" << sr << " pixmap=" << pixmap.size() << "depth=" << pixmap.depth(); #endif - if (pixmap.data->classId() == QPixmapData::RasterClass) { - const QImage &image = static_cast(pixmap.data.data())->image; + QPixmapData* pd = pixmap.pixmapData(); + if (pd->classId() == QPixmapData::RasterClass) { + const QImage &image = static_cast(pd)->image; if (image.depth() == 1) { Q_D(QRasterPaintEngine); QRasterPaintEngineState *s = state(); @@ -2703,8 +2706,9 @@ void QRasterPaintEngine::drawTiledPixmap(const QRectF &r, const QPixmap &pixmap, QImage image; - if (pixmap.data->classId() == QPixmapData::RasterClass) { - image = static_cast(pixmap.data.data())->image; + QPixmapData *pd = pixmap.pixmapData(); + if (pd->classId() == QPixmapData::RasterClass) { + image = static_cast(pd)->image; } else { image = pixmap.toImage(); } diff --git a/src/gui/painting/qwindowsurface.cpp b/src/gui/painting/qwindowsurface.cpp index e18ea3f..2fe9036 100644 --- a/src/gui/painting/qwindowsurface.cpp +++ b/src/gui/painting/qwindowsurface.cpp @@ -116,8 +116,6 @@ public: QWindowSurface::QWindowSurface(QWidget *window) : d_ptr(new QWindowSurfacePrivate(window)) { - if (window) - window->setWindowSurface(this); } /*! diff --git a/src/gui/painting/qwindowsurface_s60.cpp b/src/gui/painting/qwindowsurface_s60.cpp index b25dce5..93d4d18 100644 --- a/src/gui/painting/qwindowsurface_s60.cpp +++ b/src/gui/painting/qwindowsurface_s60.cpp @@ -43,10 +43,15 @@ #include #include -#include "qwindowsurface_s60_p.h" +#include #include #include -#include "private/qdrawhelper_p.h" +#include +#include + +#ifdef QT_GRAPHICSSYSTEM_RUNTIME +#include +#endif QT_BEGIN_NAMESPACE @@ -79,13 +84,35 @@ QS60WindowSurface::QS60WindowSurface(QWidget* widget) setStaticContentsSupport(true); } + QS60WindowSurface::~QS60WindowSurface() { +#if defined(QT_GRAPHICSSYSTEM_RUNTIME) && defined(Q_SYMBIAN_SUPPORTS_SURFACES) + if(QApplicationPrivate::graphics_system_name == QLatin1String("runtime")) { + QRuntimeGraphicsSystem *runtimeGraphicsSystem = + static_cast(QApplicationPrivate::graphics_system); + if(runtimeGraphicsSystem->graphicsSystemName() == QLatin1String("openvg")) { + + // Graphics system has been switched from raster to openvg. + // Issue empty redraw to clear the UI surface + + QWidget *w = window(); + RWindow *const window = static_cast(w->winId()->DrawableWindow()); + window->BeginRedraw(); + window->EndRedraw(); + } + } +#endif + delete d_ptr; } void QS60WindowSurface::beginPaint(const QRegion &rgn) { +#ifdef Q_SYMBIAN_SUPPORTS_SURFACES + S60->wsSession().Finish(); +#endif + if (!qt_widget_private(window())->isOpaque) { QS60PixmapData *pixmapData = static_cast(d_ptr->device.data_ptr().data()); pixmapData->beginDataAccess(); diff --git a/tools/configure/configureapp.cpp b/tools/configure/configureapp.cpp index bfa7445..ea89734 100644 --- a/tools/configure/configureapp.cpp +++ b/tools/configure/configureapp.cpp @@ -1135,7 +1135,8 @@ void Configure::parseCmdLine() QString system = configCmdLine.at(i); if (system == QLatin1String("raster") || system == QLatin1String("opengl") - || system == QLatin1String("openvg")) + || system == QLatin1String("openvg") + || system == QLatin1String("runtime")) dictionary["GRAPHICS_SYSTEM"] = configCmdLine.at(i); } @@ -1605,7 +1606,7 @@ bool Configure::displayHelp() "[-no-multimedia] [-multimedia] [-no-audio-backend] [-audio-backend]\n" "[-no-mediaservices] [-mediaservices] [-no-media-backend] [-media-backend]\n" "[-no-script] [-script] [-no-scripttools] [-scripttools]\n" - "[-no-webkit] [-webkit] [-graphicssystem raster|opengl|openvg]\n\n", 0, 7); + "[-no-webkit] [-webkit] [-graphicssystem raster|opengl|openvg|runtime]\n\n", 0, 7); desc("Installation options:\n\n"); @@ -1708,9 +1709,10 @@ bool Configure::displayHelp() #endif desc( "-graphicssystem ", "Specify which graphicssystem should be used.\n" "Available values for :"); - desc("GRAPHICS_SYSTEM", "raster", "", " raster - Software rasterizer", ' '); - desc("GRAPHICS_SYSTEM", "opengl", "", " opengl - Using OpenGL acceleration, experimental!", ' '); - desc("GRAPHICS_SYSTEM", "openvg", "", " openvg - Using OpenVG acceleration, experimental!", ' '); + desc("GRAPHICS_SYSTEM", "raster", "", " raster - Software rasterizer", ' '); + desc("GRAPHICS_SYSTEM", "opengl", "", " opengl - Using OpenGL acceleration, experimental!", ' '); + desc("GRAPHICS_SYSTEM", "openvg", "", " openvg - Using OpenVG acceleration, experimental!", ' '); + desc("GRAPHICS_SYSTEM", "runtime", "", " runtime - Runtime switching of graphics sytems", ' '); desc( "-help, -h, -?", "Display this information.\n"); @@ -3075,9 +3077,10 @@ void Configure::generateConfigfiles() if(dictionary["SQL_SQLITE2"] == "yes") qconfigList += "QT_SQL_SQLITE2"; if(dictionary["SQL_IBASE"] == "yes") qconfigList += "QT_SQL_IBASE"; - if (dictionary["GRAPHICS_SYSTEM"] == "openvg") qconfigList += "QT_GRAPHICSSYSTEM_OPENVG"; - if (dictionary["GRAPHICS_SYSTEM"] == "opengl") qconfigList += "QT_GRAPHICSSYSTEM_OPENGL"; - if (dictionary["GRAPHICS_SYSTEM"] == "raster") qconfigList += "QT_GRAPHICSSYSTEM_RASTER"; + if (dictionary["GRAPHICS_SYSTEM"] == "openvg") qconfigList += "QT_GRAPHICSSYSTEM_OPENVG"; + if (dictionary["GRAPHICS_SYSTEM"] == "opengl") qconfigList += "QT_GRAPHICSSYSTEM_OPENGL"; + if (dictionary["GRAPHICS_SYSTEM"] == "raster") qconfigList += "QT_GRAPHICSSYSTEM_RASTER"; + if (dictionary["GRAPHICS_SYSTEM"] == "runtime") qconfigList += "QT_GRAPHICSSYSTEM_RUNTIME"; if (dictionary.contains("XQMAKESPEC") && dictionary["XQMAKESPEC"].startsWith("symbian")) { // These features are not ported to Symbian (yet) -- cgit v0.12 From 16f44ee07db46ad362a464afc2c6e6567c933870 Mon Sep 17 00:00:00 2001 From: "Bradley T. Hughes" Date: Thu, 20 May 2010 10:52:16 +0200 Subject: QApplication::closeAllWindows() should ignore windows being closed It is very common to display a dialog in response to a close event. Closing the window again will result in QWidget::close() returning true. This confuses QApplication::closeAllWindows(), since the window is still visible even though it was closed (or is closing). Solve this by ignoring windows that have the is_closing flag set in their widget data. Task-number: QTBUG-7635 Reviewed-by: Denis Dzyubenko --- src/gui/kernel/qapplication.cpp | 8 +-- tests/auto/qapplication/tst_qapplication.cpp | 78 ++++++++++++++++++++++++++++ 2 files changed, 83 insertions(+), 3 deletions(-) diff --git a/src/gui/kernel/qapplication.cpp b/src/gui/kernel/qapplication.cpp index 7b62de1..b805a72 100644 --- a/src/gui/kernel/qapplication.cpp +++ b/src/gui/kernel/qapplication.cpp @@ -2218,15 +2218,17 @@ void QApplication::closeAllWindows() { bool did_close = true; QWidget *w; - while((w = activeModalWidget()) && did_close) { - if(!w->isVisible()) + while ((w = activeModalWidget()) && did_close) { + if (!w->isVisible() || w->data->is_closing) break; did_close = w->close(); } QWidgetList list = QApplication::topLevelWidgets(); for (int i = 0; did_close && i < list.size(); ++i) { w = list.at(i); - if (w->isVisible() && w->windowType() != Qt::Desktop) { + if (w->isVisible() + && w->windowType() != Qt::Desktop + && !w->data->is_closing) { did_close = w->close(); list = QApplication::topLevelWidgets(); i = -1; diff --git a/tests/auto/qapplication/tst_qapplication.cpp b/tests/auto/qapplication/tst_qapplication.cpp index 459ac2b..43fbba1 100644 --- a/tests/auto/qapplication/tst_qapplication.cpp +++ b/tests/auto/qapplication/tst_qapplication.cpp @@ -106,6 +106,7 @@ private slots: void lastWindowClosed(); void quitOnLastWindowClosed(); + void closeAllWindows(); void testDeleteLater(); void testDeleteLaterProcessEvents(); @@ -745,6 +746,83 @@ void tst_QApplication::quitOnLastWindowClosed() } } +class PromptOnCloseWidget : public QWidget +{ +public: + void closeEvent(QCloseEvent *event) + { + QMessageBox *messageBox = new QMessageBox(this); + messageBox->setWindowTitle("Unsaved data"); + messageBox->setText("Would you like to save or discard your current data?"); + messageBox->setStandardButtons(QMessageBox::Save|QMessageBox::Discard|QMessageBox::Cancel); + messageBox->setDefaultButton(QMessageBox::Save); + + messageBox->show(); + QTest::qWaitForWindowShown(messageBox); + + // verify that all windows are visible + foreach (QWidget *w, qApp->topLevelWidgets()) + QVERIFY(w->isVisible()); + // flush event queue + qApp->processEvents(); + // close all windows + qApp->closeAllWindows(); + + if (messageBox->standardButton(messageBox->clickedButton()) == QMessageBox::Cancel) + event->ignore(); + else + event->accept(); + + delete messageBox; + } +}; + +void tst_QApplication::closeAllWindows() +{ + int argc = 0; + QApplication app(argc, 0, QApplication::GuiServer); + + // create some windows + new QWidget; + new QWidget; + new QWidget; + + // show all windows + foreach (QWidget *w, app.topLevelWidgets()) { + w->show(); + QTest::qWaitForWindowShown(w); + } + // verify that they are visible + foreach (QWidget *w, app.topLevelWidgets()) + QVERIFY(w->isVisible()); + // empty event queue + app.processEvents(); + // close all windows + app.closeAllWindows(); + // all windows should no longer be visible + foreach (QWidget *w, app.topLevelWidgets()) + QVERIFY(!w->isVisible()); + + // add a window that prompts the user when closed + PromptOnCloseWidget *promptOnCloseWidget = new PromptOnCloseWidget; + // show all windows + foreach (QWidget *w, app.topLevelWidgets()) { + w->show(); + QTest::qWaitForWindowShown(w); + } + // close the last window to open the prompt (eventloop recurses) + promptOnCloseWidget->close(); + // all windows should not be visible, except the one that opened the prompt + foreach (QWidget *w, app.topLevelWidgets()) { + if (w == promptOnCloseWidget) + QVERIFY(w->isVisible()); + else + QVERIFY(!w->isVisible()); + } + + qDeleteAll(app.topLevelWidgets()); +} + bool isPathListIncluded(const QStringList &l, const QStringList &r) { int size = r.count(); -- cgit v0.12 From 65a673f7ab1955e277246e4c88bec46493265cf3 Mon Sep 17 00:00:00 2001 From: Carlos Manuel Duclos Vergara Date: Thu, 20 May 2010 12:17:58 +0200 Subject: QPushButton's click area exceeds the button area by far on Mac OS X The problem is the "rounding" of buttons in OSX. To achieve this we add some padding to the buttons, therefore creating an inner rect for the widget. The common hitButton(...) method found in QAbstractButton just checks the normal rect of the widget. What this patch does is to reimplement hitButton(...) in QPushButton, but only for the Mac case. In this reimplemented method I calculate the inner rect and check if the hit point is inside that rect or not. Task-number: QTBUG-10401 Reviewed-by: Richard Moe Gustavsen --- src/gui/styles/qmacstyle_mac.h | 11 +++++++++++ src/gui/styles/qmacstyle_mac.mm | 33 +++++++++++++++++---------------- src/gui/widgets/qpushbutton.cpp | 34 ++++++++++++++++++++++++++++++++++ src/gui/widgets/qpushbutton.h | 3 +++ src/gui/widgets/qpushbutton_p.h | 3 +++ 5 files changed, 68 insertions(+), 16 deletions(-) diff --git a/src/gui/styles/qmacstyle_mac.h b/src/gui/styles/qmacstyle_mac.h index bcebb1d..e594793 100644 --- a/src/gui/styles/qmacstyle_mac.h +++ b/src/gui/styles/qmacstyle_mac.h @@ -120,6 +120,17 @@ public: bool event(QEvent *e); + // Ideally these wouldn't exist, but since they already exist we need some accessors. + static const int PushButtonLeftOffset; + static const int PushButtonTopOffset; + static const int PushButtonRightOffset; + static const int PushButtonBottomOffset; + static const int MiniButtonH; + static const int SmallButtonH; + static const int BevelButtonW; + static const int BevelButtonH; + static const int PushButtonContentPadding; + protected Q_SLOTS: QIcon standardIconImplementation(StandardPixmap standardIcon, const QStyleOption *opt = 0, const QWidget *widget = 0) const; diff --git a/src/gui/styles/qmacstyle_mac.mm b/src/gui/styles/qmacstyle_mac.mm index e065bcc..0f01bd5 100644 --- a/src/gui/styles/qmacstyle_mac.mm +++ b/src/gui/styles/qmacstyle_mac.mm @@ -108,15 +108,15 @@ extern QRegion qt_mac_convert_mac_region(RgnHandle); //qregion_mac.cpp // The following constants are used for adjusting the size // of push buttons so that they are drawn inside their bounds. -static const int PushButtonLeftOffset = 6; -static const int PushButtonTopOffset = 4; -static const int PushButtonRightOffset = 12; -static const int PushButtonBottomOffset = 12; -static const int MiniButtonH = 26; -static const int SmallButtonH = 30; -static const int BevelButtonW = 50; -static const int BevelButtonH = 22; -static const int PushButtonContentPadding = 6; +const int QMacStyle::PushButtonLeftOffset = 6; +const int QMacStyle::PushButtonTopOffset = 4; +const int QMacStyle::PushButtonRightOffset = 12; +const int QMacStyle::PushButtonBottomOffset = 12; +const int QMacStyle::MiniButtonH = 26; +const int QMacStyle::SmallButtonH = 30; +const int QMacStyle::BevelButtonW = 50; +const int QMacStyle::BevelButtonH = 22; +const int QMacStyle::PushButtonContentPadding = 6; // These colors specify the titlebar gradient colors on // Leopard. Ideally we should get them from the system. @@ -1055,10 +1055,10 @@ HIRect QMacStylePrivate::pushButtonContentBounds(const QStyleOptionButton *btn, // Adjust the bounds to correct for // carbon not calculating the content bounds fully correct if (bdi->kind == kThemePushButton || bdi->kind == kThemePushButtonSmall){ - outerBounds.origin.y += PushButtonTopOffset; - outerBounds.size.height -= PushButtonBottomOffset; + outerBounds.origin.y += QMacStyle::PushButtonTopOffset; + outerBounds.size.height -= QMacStyle::PushButtonBottomOffset; } else if (bdi->kind == kThemePushButtonMini) { - outerBounds.origin.y += PushButtonTopOffset; + outerBounds.origin.y += QMacStyle::PushButtonTopOffset; } HIRect contentBounds; @@ -1074,7 +1074,7 @@ QSize QMacStylePrivate::pushButtonSizeFromContents(const QStyleOptionButton *btn { QSize csz(0, 0); QSize iconSize = btn->icon.isNull() ? QSize(0, 0) - : (btn->iconSize + QSize(PushButtonContentPadding, 0)); + : (btn->iconSize + QSize(QMacStyle::PushButtonContentPadding, 0)); QRect textRect = btn->text.isEmpty() ? QRect(0, 0, 1, 1) : btn->fontMetrics.boundingRect(QRect(), Qt::AlignCenter, btn->text); csz.setWidth(iconSize.width() + textRect.width() @@ -1149,12 +1149,12 @@ void QMacStylePrivate::initHIThemePushButton(const QStyleOptionButton *btn, // Choose the button kind that closest match the button rect, but at the // same time displays the button contents without clipping. bdi->kind = kThemeBevelButton; - if (btn->rect.width() >= BevelButtonW && btn->rect.height() >= BevelButtonH){ + if (btn->rect.width() >= QMacStyle::BevelButtonW && btn->rect.height() >= QMacStyle::BevelButtonH){ if (widget && widget->testAttribute(Qt::WA_MacVariableSize)) { - if (btn->rect.height() <= MiniButtonH){ + if (btn->rect.height() <= QMacStyle::MiniButtonH){ if (contentFitsInPushButton(btn, bdi, kThemePushButtonMini)) bdi->kind = kThemePushButtonMini; - } else if (btn->rect.height() <= SmallButtonH){ + } else if (btn->rect.height() <= QMacStyle::SmallButtonH){ if (contentFitsInPushButton(btn, bdi, kThemePushButtonSmall)) bdi->kind = kThemePushButtonSmall; } else if (contentFitsInPushButton(btn, bdi, kThemePushButton)) { @@ -3470,6 +3470,7 @@ void QMacStyle::drawControl(ControlElement ce, const QStyleOption *opt, QPainter QCommonStyle::drawControl(ce, opt, p, w); break; case CE_PushButtonBevel: + qDebug() << "here"; if (const QStyleOptionButton *btn = ::qstyleoption_cast(opt)) { if (!(btn->state & (State_Raised | State_Sunken | State_On))) break; diff --git a/src/gui/widgets/qpushbutton.cpp b/src/gui/widgets/qpushbutton.cpp index 1a9adcc..7b8c0db 100644 --- a/src/gui/widgets/qpushbutton.cpp +++ b/src/gui/widgets/qpushbutton.cpp @@ -58,6 +58,9 @@ #include "qdebug.h" #include "qlayoutitem.h" #include "qdialogbuttonbox.h" +#ifdef Q_WS_MAC +#include "qmacstyle_mac.h" +#endif // Q_WS_MAC #ifndef QT_NO_ACCESSIBILITY #include "qaccessible.h" @@ -679,6 +682,37 @@ bool QPushButton::event(QEvent *e) return QAbstractButton::event(e); } +#ifdef Q_WS_MAC +/*! \reimp */ +bool QPushButton::hitButton(const QPoint &pos) const +{ + // This is only required if we are using the native style, so check that first. + QMacStyle *macStyle = qobject_cast(style()); + // If this is a flat button we just bail out. + if(isFlat() || (0 == macStyle)) + return QAbstractButton::hitButton(pos); + // Now that we know we are using the native style, let's proceed. + Q_D(const QPushButton); + QPushButtonPrivate *nonConst = const_cast(d); + // In OSX buttons are round, which causes the hit method to be special. + // We cannot simply relay on detecting if something is inside the rect or not, + // we need to check if it is inside the "rounded area" or not. A point might + // be inside the rect but not inside the rounded area. + // Notice this method is only reimplemented for OSX. + return nonConst->hitButton(pos); +} + +bool QPushButtonPrivate::hitButton(const QPoint &pos) +{ + Q_Q(QPushButton); + QRect roundedRect(q->rect().left() + QMacStyle::PushButtonLeftOffset, + q->rect().top() + QMacStyle::PushButtonContentPadding, + q->rect().width() - QMacStyle::PushButtonRightOffset, + q->rect().height() - QMacStyle::PushButtonBottomOffset); + return roundedRect.contains(pos); +} +#endif // Q_WS_MAC + #ifdef QT3_SUPPORT /*! Use one of the constructors that doesn't take the \a name diff --git a/src/gui/widgets/qpushbutton.h b/src/gui/widgets/qpushbutton.h index 2a4823d..cf28753 100644 --- a/src/gui/widgets/qpushbutton.h +++ b/src/gui/widgets/qpushbutton.h @@ -91,6 +91,9 @@ public Q_SLOTS: protected: bool event(QEvent *e); +#ifdef Q_WS_MAC + bool hitButton(const QPoint &pos) const; +#endif // Q_WS_MAC void paintEvent(QPaintEvent *); void keyPressEvent(QKeyEvent *); void focusInEvent(QFocusEvent *); diff --git a/src/gui/widgets/qpushbutton_p.h b/src/gui/widgets/qpushbutton_p.h index f2ee09d..6feb726 100644 --- a/src/gui/widgets/qpushbutton_p.h +++ b/src/gui/widgets/qpushbutton_p.h @@ -69,6 +69,9 @@ public: inline void init() { resetLayoutItemMargins(); } static QPushButtonPrivate* get(QPushButton *b) { return b->d_func(); } +#ifdef Q_WS_MAC + bool hitButton(const QPoint &pos); +#endif #ifndef QT_NO_MENU QPoint adjustedMenuPosition(); #endif -- cgit v0.12 From d88905544477283a17580b210e46c93635cf9920 Mon Sep 17 00:00:00 2001 From: Kent Hansen Date: Thu, 20 May 2010 12:22:29 +0200 Subject: update 4.7.0 changes Mistakenly added something that was fixed for 4.6.3 (it's been moved to changes-4.6.3 in a different branch). --- dist/changes-4.7.0 | 2 -- 1 file changed, 2 deletions(-) diff --git a/dist/changes-4.7.0 b/dist/changes-4.7.0 index a57575e..d6209f4 100644 --- a/dist/changes-4.7.0 +++ b/dist/changes-4.7.0 @@ -54,8 +54,6 @@ QtCore * Significantly improved performance of the type() function - QState * [QTBUG-7741] Added a function to get the out-going transitions - - QStateMachine - * [QTBUG-8842] Reset history states when (re)starting machine - QXmlStreamReader * [QTBUG-9196] fixed crash when parsing - QTimer -- cgit v0.12 From 1dc2235ac930c5444aa83a25432d1bf8b78b18db Mon Sep 17 00:00:00 2001 From: Martin Smith Date: Thu, 20 May 2010 13:49:18 +0200 Subject: doc: Fixed many broken links. --- doc/src/declarative/advtutorial.qdoc | 2 +- doc/src/declarative/integrating.qdoc | 2 +- doc/src/examples/diagramscene.qdoc | 12 ++++++------ doc/src/examples/undoframework.qdoc | 2 +- doc/src/frameworks-technologies/activeqt.qdoc | 6 +++--- doc/src/getting-started/installation.qdoc | 12 ++++++------ doc/src/getting-started/known-issues.qdoc | 2 +- doc/src/porting/porting4.qdoc | 4 ++-- doc/src/widgets-and-layouts/focus.qdoc | 2 +- doc/src/widgets-and-layouts/styles.qdoc | 2 +- src/gui/graphicsview/qgraphicsview.cpp | 2 +- src/gui/image/qimage.cpp | 4 ++-- src/gui/image/qpixmap.cpp | 4 ++-- src/gui/itemviews/qlistwidget.cpp | 4 ++-- src/gui/itemviews/qstandarditemmodel.cpp | 4 ++-- src/gui/itemviews/qtablewidget.cpp | 4 ++-- src/gui/itemviews/qtreewidget.cpp | 4 ++-- src/gui/kernel/qwidget.cpp | 4 ++-- src/gui/math3d/qgenericmatrix.cpp | 4 ++-- src/gui/math3d/qmatrix4x4.cpp | 4 ++-- src/gui/math3d/qquaternion.cpp | 4 ++-- src/gui/math3d/qvector2d.cpp | 4 ++-- src/gui/math3d/qvector3d.cpp | 4 ++-- src/gui/math3d/qvector4d.cpp | 4 ++-- src/gui/painting/qbrush.cpp | 8 ++++---- src/gui/painting/qpaintdevice.qdoc | 3 +-- src/gui/painting/qpaintengine.cpp | 2 +- src/gui/painting/qpen.cpp | 6 +++--- src/gui/painting/qtransform.cpp | 10 +++++----- src/gui/styles/qstyle.cpp | 2 +- 30 files changed, 65 insertions(+), 66 deletions(-) diff --git a/doc/src/declarative/advtutorial.qdoc b/doc/src/declarative/advtutorial.qdoc index 47504ae..62536c6 100644 --- a/doc/src/declarative/advtutorial.qdoc +++ b/doc/src/declarative/advtutorial.qdoc @@ -468,6 +468,6 @@ By following this tutorial you've seen how you can write a fully functional appl \endlist There is so much more to learn about QML that we haven't been able to cover in this tutorial. Check out all the -demos and examples and the \l {Declarative UI Using QML}{documentation} to find out all the things you can do with QML! +demos and examples and the \l {Qt Quick} documentation to see all the things you can do with QML! */ diff --git a/doc/src/declarative/integrating.qdoc b/doc/src/declarative/integrating.qdoc index c6f754b..728eb13 100644 --- a/doc/src/declarative/integrating.qdoc +++ b/doc/src/declarative/integrating.qdoc @@ -81,7 +81,7 @@ of simple and dynamic elements. \section2 Adding QML widgets to a QGraphicsScene -If you have an existing UI based on the \l{The Graphics View Framework}{Graphics View Framework}, +If you have an existing UI based on the \l{Graphics View Framework}, you can integrate QML widgets directly into your QGraphicsScene. Use QDeclarativeComponent to create a QGraphicsObject from a QML file, and place the graphics object into your scene using \l{QGraphicsScene::addItem()}, or diff --git a/doc/src/examples/diagramscene.qdoc b/doc/src/examples/diagramscene.qdoc index 87c973a..a39f89a7 100644 --- a/doc/src/examples/diagramscene.qdoc +++ b/doc/src/examples/diagramscene.qdoc @@ -54,13 +54,13 @@ colors, and it is possible to change the font, style, and underline of the text. - The Qt graphics view framework is designed to manage and - display custom 2D graphics items. The main classes of the - framework are QGraphicsItem, QGraphicsScene and QGraphicsView. The - graphics scene manages the items and provides a surface for them. + The Qt graphics view framework is designed to manage and display + custom 2D graphics items. The main classes of the framework are + QGraphicsItem, QGraphicsScene and QGraphicsView. The graphics + scene manages the items and provides a surface for them. QGraphicsView is a widget that is used to render a scene on the - screen. See the \l{The Graphics View Framework}{overview document} - for a more detailed description of the framework. + screen. See the \l{Graphics View Framework} for a more detailed + description of the framework. In this example we show how to create such custom graphics scenes and items by implementing classes that inherit diff --git a/doc/src/examples/undoframework.qdoc b/doc/src/examples/undoframework.qdoc index adb38b6..aab25fa 100644 --- a/doc/src/examples/undoframework.qdoc +++ b/doc/src/examples/undoframework.qdoc @@ -67,7 +67,7 @@ available through the edit menu. The user can also select a command from the undo view. - We use the \l{The Graphics View Framework}{graphics view + We use the \l{Graphics View Framework}{graphics view framework} to implement the diagram. We only treat the related code briefly as the framework has examples of its own (e.g., the \l{Diagram Scene Example}). diff --git a/doc/src/frameworks-technologies/activeqt.qdoc b/doc/src/frameworks-technologies/activeqt.qdoc index 979d885..5a3b23e 100644 --- a/doc/src/frameworks-technologies/activeqt.qdoc +++ b/doc/src/frameworks-technologies/activeqt.qdoc @@ -71,16 +71,16 @@ \endlist For more information about using ActiveX with Qt, see - \l{Building ActiveX servers and controls with Qt}. + \l{Building ActiveX servers in Qt}. The ActiveQt framework consists of two modules: \list - \o The \l{Using ActiveX controls and COM objects in Qt}{QAxContainer} + \o The \l{Using ActiveX controls and COM in Qt}{QAxContainer} module is a static library implementing QObject and QWidget subclasses, QAxObject and QAxWidget, that act as containers for COM objects and ActiveX controls. - \o The \l{Building ActiveX servers and controls with Qt}{QAxServer} + \o The \l{Building ActiveX servers in Qt}{QAxServer} module is a static library that implements functionality for in-process and executable COM servers. This module provides the QAxAggregated, QAxBindable and QAxFactory diff --git a/doc/src/getting-started/installation.qdoc b/doc/src/getting-started/installation.qdoc index 36abc10..4a96a39 100644 --- a/doc/src/getting-started/installation.qdoc +++ b/doc/src/getting-started/installation.qdoc @@ -959,7 +959,7 @@ applications using Qt for Symbian can start right away.} \l{http://www.microsoft.com/downloads/details.aspx?FamilyID=0baf2b35-c656-4969-ace8-e4c0c0716adb&DisplayLang=en}{here}. \endlist - \sa {Known Issues in %VERSION%} + \sa {Known Issues} */ /*! @@ -969,7 +969,7 @@ applications using Qt for Symbian can start right away.} \brief Setting up the Mac OS X environment for Qt. \previouspage General Qt Requirements - \sa {Known Issues in %VERSION%} + \sa {Known Issues} */ /*! @@ -1108,7 +1108,7 @@ applications using Qt for Symbian can start right away.} distributions; try searching for \c gstreamer or \c libgstreamer in your distribution's package repository to find suitable packages. - \sa {Known Issues in %VERSION%} + \sa {Known Issues} */ /*! @@ -1162,7 +1162,7 @@ applications using Qt for Symbian can start right away.} information on Windows CE Customization can be found \l{Windows CE - Working with Custom SDKs}{here}. - \sa {Known Issues in %VERSION%} + \sa {Known Issues} */ /*! @@ -1172,7 +1172,7 @@ applications using Qt for Symbian can start right away.} \brief Setting up the Embedded Linux environment for Qt. \previouspage General Qt Requirements - \sa {Known Issues in %VERSION%} + \sa {Known Issues} \section1 Building Qt for Embedded Linux with uclibc @@ -1272,5 +1272,5 @@ applications using Qt for Symbian can start right away.} We recommend you to take a look at \l{http://developer.symbian.org/wiki/index.php/Qt_Quick_Start}{Symbian Foundation - Qt Quick Start} to get more information about how to setup the development environment. - \sa {Known Issues in %VERSION%} + \sa {Known Issues} */ diff --git a/doc/src/getting-started/known-issues.qdoc b/doc/src/getting-started/known-issues.qdoc index cedebf9..5b6b2fc 100644 --- a/doc/src/getting-started/known-issues.qdoc +++ b/doc/src/getting-started/known-issues.qdoc @@ -41,7 +41,7 @@ /*! \page known-issues.html - \title Known Issues in this Qt Version + \title Known Issues \ingroup platform-specific \brief A summary of known issues in this Qt version at the time of release. diff --git a/doc/src/porting/porting4.qdoc b/doc/src/porting/porting4.qdoc index 1b6eeb7..75fe844 100644 --- a/doc/src/porting/porting4.qdoc +++ b/doc/src/porting/porting4.qdoc @@ -1000,8 +1000,8 @@ \row \o \c QCanvasView \o Q3CanvasView \endtable - \l{The Graphics View Framework} replaces QCanvas. For more on porting to - Graphics View, see \l{Porting to Graphics View}. + The \l{Graphics View Framework} replaces QCanvas. For more on + porting to Graphics View, see \l{Porting to Graphics View}. \section1 QColor diff --git a/doc/src/widgets-and-layouts/focus.qdoc b/doc/src/widgets-and-layouts/focus.qdoc index 71f41d5..5ccfb63 100644 --- a/doc/src/widgets-and-layouts/focus.qdoc +++ b/doc/src/widgets-and-layouts/focus.qdoc @@ -82,7 +82,7 @@ Pressing \key Tab is by far the most common way to move focus using the keyboard. (Sometimes in data-entry applications Enter does the same as \key{Tab}; this can easily be achieved in Qt by - implementing an \l{Events and Event Filters}{event filter}.) + implementing an \l{The Event System}{event filter}.) Pressing \key Tab, in all window systems in common use today, moves the keyboard focus to the next widget in a circular diff --git a/doc/src/widgets-and-layouts/styles.qdoc b/doc/src/widgets-and-layouts/styles.qdoc index 31dfe40..b031dec 100644 --- a/doc/src/widgets-and-layouts/styles.qdoc +++ b/doc/src/widgets-and-layouts/styles.qdoc @@ -47,7 +47,7 @@ /*! \page style-reference.html - \title Styles and Style Aware Widgets + \title Styles & Style Aware Widgets \ingroup qt-gui-concepts \brief Styles and the styling of widgets. diff --git a/src/gui/graphicsview/qgraphicsview.cpp b/src/gui/graphicsview/qgraphicsview.cpp index 9dfcd2c..a83b528 100644 --- a/src/gui/graphicsview/qgraphicsview.cpp +++ b/src/gui/graphicsview/qgraphicsview.cpp @@ -53,7 +53,7 @@ static const int QGRAPHICSVIEW_PREALLOC_STYLE_OPTIONS = 503; // largest prime < QGraphicsView visualizes the contents of a QGraphicsScene in a scrollable viewport. To create a scene with geometrical items, see QGraphicsScene's - documentation. QGraphicsView is part of \l{The Graphics View Framework}. + documentation. QGraphicsView is part of the \l{Graphics View Framework}. To visualize a scene, you start by constructing a QGraphicsView object, passing the address of the scene you want to visualize to QGraphicsView's diff --git a/src/gui/image/qimage.cpp b/src/gui/image/qimage.cpp index 85be5b1..98f235e 100644 --- a/src/gui/image/qimage.cpp +++ b/src/gui/image/qimage.cpp @@ -4812,7 +4812,7 @@ bool QImageData::doImageIO(const QImage *image, QImageWriter *writer, int qualit or as a BMP image if the stream's version is 1. Note that writing the stream to a file will not produce a valid image file. - \sa QImage::save(), {Format of the QDataStream Operators} + \sa QImage::save(), {Serializing Qt Data Types} */ QDataStream &operator<<(QDataStream &s, const QImage &image) @@ -4838,7 +4838,7 @@ QDataStream &operator<<(QDataStream &s, const QImage &image) Reads an image from the given \a stream and stores it in the given \a image. - \sa QImage::load(), {Format of the QDataStream Operators} + \sa QImage::load(), {Serializing Qt Data Types} */ QDataStream &operator>>(QDataStream &s, QImage &image) diff --git a/src/gui/image/qpixmap.cpp b/src/gui/image/qpixmap.cpp index 474cd2e..48c5d3f 100644 --- a/src/gui/image/qpixmap.cpp +++ b/src/gui/image/qpixmap.cpp @@ -1281,7 +1281,7 @@ bool QPixmap::convertFromImage(const QImage &image, ColorMode mode) image. Note that writing the stream to a file will not produce a valid image file. - \sa QPixmap::save(), {Format of the QDataStream Operators} + \sa QPixmap::save(), {Serializing Qt Data Types} */ QDataStream &operator<<(QDataStream &stream, const QPixmap &pixmap) @@ -1294,7 +1294,7 @@ QDataStream &operator<<(QDataStream &stream, const QPixmap &pixmap) Reads an image from the given \a stream into the given \a pixmap. - \sa QPixmap::load(), {Format of the QDataStream Operators} + \sa QPixmap::load(), {Serializing Qt Data Types} */ QDataStream &operator>>(QDataStream &stream, QPixmap &pixmap) diff --git a/src/gui/itemviews/qlistwidget.cpp b/src/gui/itemviews/qlistwidget.cpp index 125f0c4..da1d5db 100644 --- a/src/gui/itemviews/qlistwidget.cpp +++ b/src/gui/itemviews/qlistwidget.cpp @@ -791,7 +791,7 @@ QListWidgetItem &QListWidgetItem::operator=(const QListWidgetItem &other) This operator uses QListWidgetItem::write(). - \sa {Format of the QDataStream Operators} + \sa {Serializing Qt Data Types} */ QDataStream &operator<<(QDataStream &out, const QListWidgetItem &item) { @@ -806,7 +806,7 @@ QDataStream &operator<<(QDataStream &out, const QListWidgetItem &item) This operator uses QListWidgetItem::read(). - \sa {Format of the QDataStream Operators} + \sa {Serializing Qt Data Types} */ QDataStream &operator>>(QDataStream &in, QListWidgetItem &item) { diff --git a/src/gui/itemviews/qstandarditemmodel.cpp b/src/gui/itemviews/qstandarditemmodel.cpp index 9d52c78..767b5a9 100644 --- a/src/gui/itemviews/qstandarditemmodel.cpp +++ b/src/gui/itemviews/qstandarditemmodel.cpp @@ -1921,7 +1921,7 @@ void QStandardItem::write(QDataStream &out) const This operator uses QStandardItem::read(). - \sa {Format of the QDataStream Operators} + \sa {Serializing Qt Data Types} */ QDataStream &operator>>(QDataStream &in, QStandardItem &item) { @@ -1937,7 +1937,7 @@ QDataStream &operator>>(QDataStream &in, QStandardItem &item) This operator uses QStandardItem::write(). - \sa {Format of the QDataStream Operators} + \sa {Serializing Qt Data Types} */ QDataStream &operator<<(QDataStream &out, const QStandardItem &item) { diff --git a/src/gui/itemviews/qtablewidget.cpp b/src/gui/itemviews/qtablewidget.cpp index f653a41..5bb242e 100644 --- a/src/gui/itemviews/qtablewidget.cpp +++ b/src/gui/itemviews/qtablewidget.cpp @@ -1428,7 +1428,7 @@ void QTableWidgetItem::write(QDataStream &out) const This operator uses QTableWidgetItem::read(). - \sa {Format of the QDataStream Operators} + \sa {Serializing Qt Data Types} */ QDataStream &operator>>(QDataStream &in, QTableWidgetItem &item) { @@ -1443,7 +1443,7 @@ QDataStream &operator>>(QDataStream &in, QTableWidgetItem &item) This operator uses QTableWidgetItem::write(). - \sa {Format of the QDataStream Operators} + \sa {Serializing Qt Data Types} */ QDataStream &operator<<(QDataStream &out, const QTableWidgetItem &item) { diff --git a/src/gui/itemviews/qtreewidget.cpp b/src/gui/itemviews/qtreewidget.cpp index 4c80325..0e06f34 100644 --- a/src/gui/itemviews/qtreewidget.cpp +++ b/src/gui/itemviews/qtreewidget.cpp @@ -2199,7 +2199,7 @@ void QTreeWidgetItem::executePendingSort() const This operator uses QTreeWidgetItem::write(). - \sa {Format of the QDataStream Operators} + \sa {Serializing Qt Data Types} */ QDataStream &operator<<(QDataStream &out, const QTreeWidgetItem &item) { @@ -2214,7 +2214,7 @@ QDataStream &operator<<(QDataStream &out, const QTreeWidgetItem &item) This operator uses QTreeWidgetItem::read(). - \sa {Format of the QDataStream Operators} + \sa {Serializing Qt Data Types} */ QDataStream &operator>>(QDataStream &in, QTreeWidgetItem &item) { diff --git a/src/gui/kernel/qwidget.cpp b/src/gui/kernel/qwidget.cpp index 1f2cd8c..1c7f6ac 100644 --- a/src/gui/kernel/qwidget.cpp +++ b/src/gui/kernel/qwidget.cpp @@ -670,8 +670,8 @@ void QWidget::setAutoFillBackground(bool enabled) (to move the keyboard focus), and passes on most of the other events to one of the more specialized handlers above. - Events and the mechanism used to deliver them are covered in the - \l{Events and Event Filters} document. + Events and the mechanism used to deliver them are covered in + \l{The Event System}. \section1 Groups of Functions and Properties diff --git a/src/gui/math3d/qgenericmatrix.cpp b/src/gui/math3d/qgenericmatrix.cpp index 96405a8b..be30cb6 100644 --- a/src/gui/math3d/qgenericmatrix.cpp +++ b/src/gui/math3d/qgenericmatrix.cpp @@ -252,7 +252,7 @@ QT_BEGIN_NAMESPACE Writes the given \a matrix to the given \a stream and returns a reference to the stream. - \sa {Format of the QDataStream Operators} + \sa {Serializing Qt Data Types} */ /*! @@ -262,7 +262,7 @@ QT_BEGIN_NAMESPACE Reads a NxM matrix from the given \a stream into the given \a matrix and returns a reference to the stream. - \sa {Format of the QDataStream Operators} + \sa {Serializing Qt Data Types} */ #endif diff --git a/src/gui/math3d/qmatrix4x4.cpp b/src/gui/math3d/qmatrix4x4.cpp index 62d740c..16c7f97 100644 --- a/src/gui/math3d/qmatrix4x4.cpp +++ b/src/gui/math3d/qmatrix4x4.cpp @@ -1878,7 +1878,7 @@ QDebug operator<<(QDebug dbg, const QMatrix4x4 &m) Writes the given \a matrix to the given \a stream and returns a reference to the stream. - \sa {Format of the QDataStream Operators} + \sa {Serializing Qt Data Types} */ QDataStream &operator<<(QDataStream &stream, const QMatrix4x4 &matrix) @@ -1896,7 +1896,7 @@ QDataStream &operator<<(QDataStream &stream, const QMatrix4x4 &matrix) Reads a 4x4 matrix from the given \a stream into the given \a matrix and returns a reference to the stream. - \sa {Format of the QDataStream Operators} + \sa {Serializing Qt Data Types} */ QDataStream &operator>>(QDataStream &stream, QMatrix4x4 &matrix) diff --git a/src/gui/math3d/qquaternion.cpp b/src/gui/math3d/qquaternion.cpp index ad71836..2fd66eb 100644 --- a/src/gui/math3d/qquaternion.cpp +++ b/src/gui/math3d/qquaternion.cpp @@ -595,7 +595,7 @@ QDebug operator<<(QDebug dbg, const QQuaternion &q) Writes the given \a quaternion to the given \a stream and returns a reference to the stream. - \sa {Format of the QDataStream Operators} + \sa {Serializing Qt Data Types} */ QDataStream &operator<<(QDataStream &stream, const QQuaternion &quaternion) @@ -612,7 +612,7 @@ QDataStream &operator<<(QDataStream &stream, const QQuaternion &quaternion) Reads a quaternion from the given \a stream into the given \a quaternion and returns a reference to the stream. - \sa {Format of the QDataStream Operators} + \sa {Serializing Qt Data Types} */ QDataStream &operator>>(QDataStream &stream, QQuaternion &quaternion) diff --git a/src/gui/math3d/qvector2d.cpp b/src/gui/math3d/qvector2d.cpp index b67e8a1..6a5cfc8 100644 --- a/src/gui/math3d/qvector2d.cpp +++ b/src/gui/math3d/qvector2d.cpp @@ -434,7 +434,7 @@ QDebug operator<<(QDebug dbg, const QVector2D &vector) Writes the given \a vector to the given \a stream and returns a reference to the stream. - \sa {Format of the QDataStream Operators} + \sa {Serializing Qt Data Types} */ QDataStream &operator<<(QDataStream &stream, const QVector2D &vector) @@ -450,7 +450,7 @@ QDataStream &operator<<(QDataStream &stream, const QVector2D &vector) Reads a 2D vector from the given \a stream into the given \a vector and returns a reference to the stream. - \sa {Format of the QDataStream Operators} + \sa {Serializing Qt Data Types} */ QDataStream &operator>>(QDataStream &stream, QVector2D &vector) diff --git a/src/gui/math3d/qvector3d.cpp b/src/gui/math3d/qvector3d.cpp index 6a592b2..dfcce0e 100644 --- a/src/gui/math3d/qvector3d.cpp +++ b/src/gui/math3d/qvector3d.cpp @@ -585,7 +585,7 @@ QDebug operator<<(QDebug dbg, const QVector3D &vector) Writes the given \a vector to the given \a stream and returns a reference to the stream. - \sa {Format of the QDataStream Operators} + \sa {Serializing Qt Data Types} */ QDataStream &operator<<(QDataStream &stream, const QVector3D &vector) @@ -602,7 +602,7 @@ QDataStream &operator<<(QDataStream &stream, const QVector3D &vector) Reads a 3D vector from the given \a stream into the given \a vector and returns a reference to the stream. - \sa {Format of the QDataStream Operators} + \sa {Serializing Qt Data Types} */ QDataStream &operator>>(QDataStream &stream, QVector3D &vector) diff --git a/src/gui/math3d/qvector4d.cpp b/src/gui/math3d/qvector4d.cpp index f2f3cc6..abff1ba 100644 --- a/src/gui/math3d/qvector4d.cpp +++ b/src/gui/math3d/qvector4d.cpp @@ -538,7 +538,7 @@ QDebug operator<<(QDebug dbg, const QVector4D &vector) Writes the given \a vector to the given \a stream and returns a reference to the stream. - \sa {Format of the QDataStream Operators} + \sa {Serializing Qt Data Types} */ QDataStream &operator<<(QDataStream &stream, const QVector4D &vector) @@ -555,7 +555,7 @@ QDataStream &operator<<(QDataStream &stream, const QVector4D &vector) Reads a 4D vector from the given \a stream into the given \a vector and returns a reference to the stream. - \sa {Format of the QDataStream Operators} + \sa {Serializing Qt Data Types} */ QDataStream &operator>>(QDataStream &stream, QVector4D &vector) diff --git a/src/gui/painting/qbrush.cpp b/src/gui/painting/qbrush.cpp index 96d547b..b468b11 100644 --- a/src/gui/painting/qbrush.cpp +++ b/src/gui/painting/qbrush.cpp @@ -329,8 +329,8 @@ struct QBrushDataPointerDeleter \endtable - For more information about painting in general, see \l{The Paint - System} documentation. + For more information about painting in general, see the \l{Paint + System}. \sa Qt::BrushStyle, QPainter, QColor */ @@ -1013,7 +1013,7 @@ QDebug operator<<(QDebug dbg, const QBrush &b) Writes the given \a brush to the given \a stream and returns a reference to the \a stream. - \sa {Format of the QDataStream Operators} + \sa {Serializing Qt Data Types} */ QDataStream &operator<<(QDataStream &s, const QBrush &b) @@ -1081,7 +1081,7 @@ QDataStream &operator<<(QDataStream &s, const QBrush &b) Reads the given \a brush from the given \a stream and returns a reference to the \a stream. - \sa {Format of the QDataStream Operators} + \sa {Serializing Qt Data Types} */ QDataStream &operator>>(QDataStream &s, QBrush &b) diff --git a/src/gui/painting/qpaintdevice.qdoc b/src/gui/painting/qpaintdevice.qdoc index 8c73cc0..340db39 100644 --- a/src/gui/painting/qpaintdevice.qdoc +++ b/src/gui/painting/qpaintdevice.qdoc @@ -87,8 +87,7 @@ function returns the number of different colors available for the paint device. - \sa QPaintEngine, QPainter, {The Coordinate System}, {The Paint - System} + \sa QPaintEngine, QPainter, {Coordinate System}, {Paint System} */ /*! diff --git a/src/gui/painting/qpaintengine.cpp b/src/gui/painting/qpaintengine.cpp index 6aabde8..a2d0337 100644 --- a/src/gui/painting/qpaintengine.cpp +++ b/src/gui/painting/qpaintengine.cpp @@ -172,7 +172,7 @@ QFont QTextItem::font() const possible to adapt to multiple technologies on each platform and take advantage of each to the fullest. - \sa QPainter, QPaintDevice::paintEngine(), {The Paint System} + \sa QPainter, QPaintDevice::paintEngine(), {Paint System} */ /*! diff --git a/src/gui/painting/qpen.cpp b/src/gui/painting/qpen.cpp index e290cbe..2e43984 100644 --- a/src/gui/painting/qpen.cpp +++ b/src/gui/painting/qpen.cpp @@ -92,7 +92,7 @@ typedef QPenPrivate QPenData; convenience functions to extract and set the color of the pen's brush, respectively. Pens may also be compared and streamed. - For more information about painting in general, see \l{The Paint + For more information about painting in general, see the \l{Paint System} documentation. \tableofcontents @@ -872,7 +872,7 @@ bool QPen::isDetached() Writes the given \a pen to the given \a stream and returns a reference to the \a stream. - \sa {Format of the QDataStream Operators} + \sa {Serializing Qt Data Types} */ QDataStream &operator<<(QDataStream &s, const QPen &p) @@ -918,7 +918,7 @@ QDataStream &operator<<(QDataStream &s, const QPen &p) Reads a pen from the given \a stream into the given \a pen and returns a reference to the \a stream. - \sa {Format of the QDataStream Operators} + \sa {Serializing Qt Data Types} */ QDataStream &operator>>(QDataStream &s, QPen &p) diff --git a/src/gui/painting/qtransform.cpp b/src/gui/painting/qtransform.cpp index aaa241f..423cce9 100644 --- a/src/gui/painting/qtransform.cpp +++ b/src/gui/painting/qtransform.cpp @@ -148,8 +148,8 @@ QT_BEGIN_NAMESPACE coordinate system. The standard coordinate system of a QPaintDevice has its origin located at the top-left position. The \e x values increase to the right; \e y values increase - downward. For a complete description, see the \l {The Coordinate - System}{coordinate system} documentation. + downward. For a complete description, see the \l {Coordinate + System} {coordinate system} documentation. QPainter has functions to translate, scale, shear and rotate the coordinate system without using a QTransform. For example: @@ -223,7 +223,7 @@ QT_BEGIN_NAMESPACE \snippet doc/src/snippets/transform/main.cpp 2 \endtable - \sa QPainter, {The Coordinate System}, {demos/affine}{Affine + \sa QPainter, {Coordinate System}, {demos/affine}{Affine Transformations Demo}, {Transformations Example} */ @@ -1028,7 +1028,7 @@ void QTransform::reset() Writes the given \a matrix to the given \a stream and returns a reference to the stream. - \sa {Format of the QDataStream Operators} + \sa {Serializing Qt Data Types} */ QDataStream & operator<<(QDataStream &s, const QTransform &m) { @@ -1052,7 +1052,7 @@ QDataStream & operator<<(QDataStream &s, const QTransform &m) Reads the given \a matrix from the given \a stream and returns a reference to the stream. - \sa {Format of the QDataStream Operators} + \sa {Serializing Qt Data Types} */ QDataStream & operator>>(QDataStream &s, QTransform &t) { diff --git a/src/gui/styles/qstyle.cpp b/src/gui/styles/qstyle.cpp index 429dafe..4cfa93f 100644 --- a/src/gui/styles/qstyle.cpp +++ b/src/gui/styles/qstyle.cpp @@ -325,7 +325,7 @@ static int unpackControlTypes(QSizePolicy::ControlTypes controls, QSizePolicy::C control over size of header items and row and column sizes. \sa QStyleOption, QStylePainter, {Styles Example}, - {Implementing Styles and Style Aware Widgets}, QStyledItemDelegate + {Styles & Style Aware Widgets}, QStyledItemDelegate */ /*! -- cgit v0.12 From a20f6367824dec6c8e48200cc86f9eb7903b6bcb Mon Sep 17 00:00:00 2001 From: Miikka Heikkinen Date: Thu, 20 May 2010 15:44:29 +0300 Subject: Fix build error on S60 3.1 environments Fixed build error in Symbian environments where SNAP_FUNCTIONALITY_AVAILABLE is not defined. Reviewed-by: Janne Koskinen --- src/plugins/bearer/symbian/qnetworksession_impl.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/bearer/symbian/qnetworksession_impl.h b/src/plugins/bearer/symbian/qnetworksession_impl.h index 9767293..1d30dd5 100644 --- a/src/plugins/bearer/symbian/qnetworksession_impl.h +++ b/src/plugins/bearer/symbian/qnetworksession_impl.h @@ -73,9 +73,9 @@ QT_BEGIN_NAMESPACE class ConnectionProgressNotifier; class SymbianEngine; -class QNetworkSessionPrivateImpl : public QNetworkSessionPrivate, public CActive, +class QNetworkSessionPrivateImpl : public QNetworkSessionPrivate, public CActive #ifdef SNAP_FUNCTIONALITY_AVAILABLE - public MMobilityProtocolResp + , public MMobilityProtocolResp #endif { Q_OBJECT -- cgit v0.12 From d987e048f542a4c85c640b36d116bb408dd029fd Mon Sep 17 00:00:00 2001 From: Martin Smith Date: Thu, 20 May 2010 15:05:08 +0200 Subject: doc: Fixed many broken links. --- doc/src/demos/boxes.qdoc | 2 +- doc/src/examples/drilldown.qdoc | 12 ++++++------ doc/src/examples/mandelbrot.qdoc | 2 +- doc/src/examples/transformations.qdoc | 4 ++-- doc/src/frameworks-technologies/dnd.qdoc | 6 +++--- doc/src/frameworks-technologies/graphicsview.qdoc | 18 ++++++++++-------- doc/src/getting-started/demos.qdoc | 19 +++++++++---------- doc/src/getting-started/how-to-learn-qt.qdoc | 10 +++++----- doc/src/objectmodel/object.qdoc | 6 +++--- doc/src/painting-and-printing/paintsystem.qdoc | 12 ++++++------ doc/src/porting/porting4-canvas.qdoc | 2 +- doc/src/scripting/scripting.qdoc | 8 ++++---- doc/src/sql-programming/qsqldatatype-table.qdoc | 2 +- doc/src/sql-programming/sql-programming.qdoc | 7 ++++--- doc/src/widgets-and-layouts/widgets.qdoc | 14 ++++++-------- doc/src/windows-and-dialogs/mainwindow.qdoc | 3 +-- 16 files changed, 63 insertions(+), 64 deletions(-) diff --git a/doc/src/demos/boxes.qdoc b/doc/src/demos/boxes.qdoc index aeb2513..367eb52 100644 --- a/doc/src/demos/boxes.qdoc +++ b/doc/src/demos/boxes.qdoc @@ -44,7 +44,7 @@ \title Boxes This demo shows Qt's ability to combine advanced OpenGL rendering with the - the \l{The Graphics View Framework}{Graphics View} framework. + the \l{Graphics View Framework}. \image boxes-demo.png diff --git a/doc/src/examples/drilldown.qdoc b/doc/src/examples/drilldown.qdoc index ca994e8..2b87840 100644 --- a/doc/src/examples/drilldown.qdoc +++ b/doc/src/examples/drilldown.qdoc @@ -292,7 +292,7 @@ \codeline \snippet examples/sql/drilldown/view.h 1 - The QGraphicsView class is part of the \l {The Graphics View + The QGraphicsView class is part of the \l {Graphics View Framework} which we will use to display the images of Nokia's Qt offices. To be able to respond to user interaction; i.e., showing the @@ -388,8 +388,8 @@ reason we must create a custom item class is that we want to catch the item's hover events, animating the item when the mouse cursor is hovering over the image (by default, no items accept hover - events). Please see the \l{The Graphics View Framework} - documentation and the \l{Graphics View Examples} for more details. + events). Please see the \l{Graphics View Framework} documentation + and the \l{Graphics View Examples} for more details. \snippet examples/sql/drilldown/view.cpp 5 @@ -399,7 +399,7 @@ function calls the private \c showInformation() function to pop up the associated information window. - \l {The Graphics View Framework} provides the qgraphicsitem_cast() + The \l {Graphics View Framework} provides the qgraphicsitem_cast() function to determine whether the given QGraphicsItem instance is of a given type. Note that if the event is not related to any of our image items, we pass it on to the base class implementation. @@ -456,7 +456,7 @@ borders. Finally, we store the location ID that this particular record is - associated with as well as a z-value. In the \l {The Graphics View + associated with as well as a z-value. In the \l {Graphics View Framework}, an item's z-value determines its position in the item stack. An item of high Z-value will be drawn on top of an item with a lower z-value if they share the same parent item. We also @@ -477,7 +477,7 @@ there is no current mouse grabber item. They are sent when the mouse cursor enters an item, when it moves around inside the item, and when the cursor leaves an item. As we mentioned earlier, none - of the \l {The Graphics View Framework}'s items accept hover + of the \l {Graphics View Framework}'s items accept hover event's by default. The QTimeLine class provides a timeline for controlling diff --git a/doc/src/examples/mandelbrot.qdoc b/doc/src/examples/mandelbrot.qdoc index 7a3c1cd..11173a8 100644 --- a/doc/src/examples/mandelbrot.qdoc +++ b/doc/src/examples/mandelbrot.qdoc @@ -285,7 +285,7 @@ \snippet examples/threads/mandelbrot/mandelbrotwidget.cpp 8 If the pixmap has the right scale factor, we draw the pixmap directly onto - the widget. Otherwise, we scale and translate the \l{The Coordinate + the widget. Otherwise, we scale and translate the \l{Coordinate System}{coordinate system} before we draw the pixmap. By reverse mapping the widget's rectangle using the scaled painter matrix, we also make sure that only the exposed areas of the pixmap are drawn. The calls to diff --git a/doc/src/examples/transformations.qdoc b/doc/src/examples/transformations.qdoc index 0d8de1d..0c246cb 100644 --- a/doc/src/examples/transformations.qdoc +++ b/doc/src/examples/transformations.qdoc @@ -87,7 +87,7 @@ tranformation matrix that you can retrieve using the QPainter::worldTransform() function. A matrix transforms a point in the plane to another point. For more information about the - transformation matrix, see the \l {The Coordinate System} and + transformation matrix, see the \l {Coordinate System} and QTransform documentation. \snippet examples/painting/transformations/renderarea.h 0 @@ -374,7 +374,7 @@ All the tranformation operations operate on QPainter's tranformation matrix. For more information about the - transformation matrix, see the \l {The Coordinate System} and + transformation matrix, see the \l {Coordinate System} and QTransform documentation. The Qt reference documentation provides several painting diff --git a/doc/src/frameworks-technologies/dnd.qdoc b/doc/src/frameworks-technologies/dnd.qdoc index 0e952ad..f728972 100644 --- a/doc/src/frameworks-technologies/dnd.qdoc +++ b/doc/src/frameworks-technologies/dnd.qdoc @@ -58,9 +58,9 @@ This document describes the basic drag and drop mechanism and outlines the approach used to enable it in custom widgets. Drag and drop operations are also supported by Qt's item views and by - the graphics view framework; more information is available in the - \l{Using Drag and Drop with Item Views} and \l{The Graphics View - Framework} documents. + the graphics view framework. More information is available in + \l{Using Drag and Drop with Item Views} and \l{Graphics View + Framework}. \section1 Drag and Drop Classes diff --git a/doc/src/frameworks-technologies/graphicsview.qdoc b/doc/src/frameworks-technologies/graphicsview.qdoc index 681568e..b13f98e 100644 --- a/doc/src/frameworks-technologies/graphicsview.qdoc +++ b/doc/src/frameworks-technologies/graphicsview.qdoc @@ -220,9 +220,10 @@ allow you to map between the three coordinate systems. When rendering, Graphics View's scene coordinates correspond to - QPainter's \e logical coordinates, and view coordinates are the same as - \e device coordinates. In \l{The Coordinate System}, you can read about - the relationship between logical coordinates and device coordinates. + QPainter's \e logical coordinates, and view coordinates are the + same as \e device coordinates. In the \l{Coordinate System} + documentation, you can read about the relationship between + logical coordinates and device coordinates. \img graphicsview-parentchild.png @@ -435,11 +436,12 @@ \section2 Animation - Graphics View supports animation at several levels. You can easily - assemble animation by using the Animation Framework. For that you'll - need your items to inherit from QGraphicsObject and associate - QPropertyAnimation with them. QPropertyAnimation allows to animate any - QObject property. + Graphics View supports animation at several levels. You can + easily assemble animation by using the Animation Framework. + For that you'll need your items to inherit from + QGraphicsObject and associate QPropertyAnimation with + them. QPropertyAnimation allows to animate any QObject + property. Another option is to create a custom item that inherits from QObject and QGraphicsItem. The item can the set up its own timers, and control diff --git a/doc/src/getting-started/demos.qdoc b/doc/src/getting-started/demos.qdoc index f8c70fe..9d39e08 100644 --- a/doc/src/getting-started/demos.qdoc +++ b/doc/src/getting-started/demos.qdoc @@ -126,16 +126,15 @@ \section1 Graphics View \list - \o \l{demos/chip}{40000 Chips} uses the - \l{The Graphics View Framework}{Graphics View} framework to efficiently - display a large number of individual graphical items on a scrolling canvas, - highlighting features such as rotation, zooming, level of detail control, - and item selection. - \o \l{demos/embeddeddialogs}{Embedded Dialogs} showcases Qt 4.4's \e{Widgets on - the Canvas} feature by embedding a multitude of fully-working dialogs into a - scene. + \o \l{demos/chip}{40000 Chips} uses the \l{Graphics View Framework} to + efficiently display a large number of individual graphical items on + a scrolling canvas and highlighting features including rotation, + zooming, level of detail control, and item selection. + \o \l{demos/embeddeddialogs}{Embedded Dialogs} showcases Qt 4.4's + \e{Widgets on the Canvas} feature by embedding several + fully-functional dialogs in a scene. \o \l{demos/boxes}{Boxes} showcases Qt's OpenGL support and the - integration with the Graphics View framework. + integration with the \l{Graphics View Framework}. \endlist \section1 Tools @@ -185,7 +184,7 @@ \o \l{demos/embedded/fluidlauncher}{Fluid Launcher} demo application launcher for embedded screens \o \l{demos/embedded/lightmaps}{Light Maps} demonstrates OpenStreetMap integration with WebKit. \o \l{demos/embedded/raycasting}{Ray Casting} demonstrates the use of ray casting with the - \l{The Graphics View Framework}{Graphics View} framework. + \l{Graphics View Framework}. \o \l{demos/embedded/styledemo}{Embedded Styles} demonstrates the use of styles. \o \l{demos/embedded/weatherinfo}{Weather Info} fetches weather information from the Web. \endlist diff --git a/doc/src/getting-started/how-to-learn-qt.qdoc b/doc/src/getting-started/how-to-learn-qt.qdoc index ce8f521..642421b 100644 --- a/doc/src/getting-started/how-to-learn-qt.qdoc +++ b/doc/src/getting-started/how-to-learn-qt.qdoc @@ -59,11 +59,11 @@ If you want to design your user interfaces using a design tool, then read at least the first few chapters of the \l{Qt Designer manual}. - By now you'll have produced some small working applications and have a - broad feel for Qt programming. You could start work on your own - projects straight away, but we recommend reading a couple of key - overviews to deepen your understanding of Qt: \l{Qt Object Model} - and \l{Signals and Slots}. + By now you'll have produced some small working applications and + have a broad feel for Qt programming. You could start work on your + own projects straight away, but we recommend reading a couple of + key overviews to deepen your understanding of Qt: The Qt \l{Object + Model} and \l{Signals and Slots}. \beginfloatleft \inlineimage qtdemo-small.png diff --git a/doc/src/objectmodel/object.qdoc b/doc/src/objectmodel/object.qdoc index f81577d..8ae91ec 100644 --- a/doc/src/objectmodel/object.qdoc +++ b/doc/src/objectmodel/object.qdoc @@ -59,11 +59,11 @@ communication called \l{signals and slots} \o queryable and designable \l{Qt's Property System}{object properties} - \o powerful \l{events and event filters} + \o powerful \l{The Event System}{events and event filters} \o contextual \l{i18n}{string translation for internationalization} \o sophisticated interval driven \l timers that make it possible to elegantly integrate many tasks in an event-driven GUI - \o hierarchical and queryable \l{Object Trees and Object Ownership}{object + \o hierarchical and queryable \l{Object Trees & Ownership}{object trees} that organize object ownership in a natural way \o guarded pointers (QPointer) that are automatically set to 0 when the referenced object is destroyed, unlike normal C++ @@ -113,7 +113,7 @@ \o might have a unique \l{QObject::objectName()}. If we copy a Qt Object, what name should we give the copy? - \o has a location in an \l{Object Trees and Object Ownership} + \o has a location in an \l{Object Trees & Ownership} {object hierarchy}. If we copy a Qt Object, where should the copy be located? diff --git a/doc/src/painting-and-printing/paintsystem.qdoc b/doc/src/painting-and-printing/paintsystem.qdoc index 44c84a2..c106f35 100644 --- a/doc/src/painting-and-printing/paintsystem.qdoc +++ b/doc/src/painting-and-printing/paintsystem.qdoc @@ -89,7 +89,7 @@ \o \l{Classes for Painting} \o \l{Paint Devices and Backends} \o \l{Drawing and Filling} - \o \l{The Coordinate System} + \o \l{Coordinate System} \o \l{Reading and Writing Image Files} \o \l{Styling} \o \l{Printing with Qt} @@ -339,10 +339,10 @@ Normally, QPainter draws in a "natural" coordinate system, but it is able to perform view and world transformations using the - QTransform class. For more information, see \l {The Coordinate - System} documentation which also describes the rendering process, - i.e. the relation between the logical representation and the - rendered pixels, and the benefits of anti-aliased painting. + QTransform class. For more information, see \l {Coordinate + System}, which also describes the rendering process, i.e. the + relation between the logical representation and the rendered + pixels, and the benefits of anti-aliased painting. \table 100% \row \o @@ -568,5 +568,5 @@ \endtable For more information about widget styling and appearance, see the - documentation about \l{Implementing Styles and Style Aware Widgets}. + \l{Styles & Style Aware Widgets}. */ diff --git a/doc/src/porting/porting4-canvas.qdoc b/doc/src/porting/porting4-canvas.qdoc index b69f53b..592f430 100644 --- a/doc/src/porting/porting4-canvas.qdoc +++ b/doc/src/porting/porting4-canvas.qdoc @@ -56,7 +56,7 @@ number of custom-made 2D graphical items, and a view widget for visualizing the items, with support for zooming and rotation. Graphics View was introduced in Qt 4.2, replacing its predecessor, QCanvas. For - more on Graphics View, see \l{The Graphics View Framework}. + more on Graphics View, see \l{Graphics View Framework}. This document walks through the steps needed, class by class and function by function, to port a QCanvas application to Graphics View. diff --git a/doc/src/scripting/scripting.qdoc b/doc/src/scripting/scripting.qdoc index 2c22989..1f203a6 100644 --- a/doc/src/scripting/scripting.qdoc +++ b/doc/src/scripting/scripting.qdoc @@ -362,7 +362,7 @@ By default, the script engine does not take ownership of the QObject that is passed to QScriptEngine::newQObject(); the object is managed according to Qt's object ownership (see - \l{Object Trees and Object Ownership}). This mode is appropriate + \l{Object Trees & Ownership}). This mode is appropriate when, for example, you are wrapping C++ objects that are part of your application's core; that is, they should persist regardless of what happens in the scripting environment. Another way of stating @@ -627,9 +627,9 @@ To completely understand how to make C++ objects available to Qt Script, some basic knowledge of the Qt meta-object system is very - helpful. We recommend that you read the \l{Qt Object Model}. The - information in this document and the documents it links to are very - useful for understanding how to implement application objects. + helpful. We recommend that you read about the Qt \l{Object Model} + and \l{The Meta-Object System}, which are useful for understanding + how to implement application objects. However, this knowledge is not essential in the simplest cases. To make an object available in QtScript, it must derive from diff --git a/doc/src/sql-programming/qsqldatatype-table.qdoc b/doc/src/sql-programming/qsqldatatype-table.qdoc index fb5fb49..329222b 100644 --- a/doc/src/sql-programming/qsqldatatype-table.qdoc +++ b/doc/src/sql-programming/qsqldatatype-table.qdoc @@ -46,7 +46,7 @@ \ingroup qt-sql - \section1 Data Types for Qt Supported Database Systems + \section1 Recommended Data Types for Qt-Supported Database Systems This table shows the recommended data types for extracting data from the databases supported in Qt. Note that types used in Qt are not diff --git a/doc/src/sql-programming/sql-programming.qdoc b/doc/src/sql-programming/sql-programming.qdoc index b34810c..936e555 100644 --- a/doc/src/sql-programming/sql-programming.qdoc +++ b/doc/src/sql-programming/sql-programming.qdoc @@ -73,7 +73,7 @@ \endlist \o \l{Executing SQL Statements} \list - \o \l{Recommended Use of Data Types in Databases} + \o \l{Data Types for Qt-supported Database Systems} \endlist \o \l{Using the SQL Model Classes} \o \l{Presenting Data in a Table View} @@ -240,8 +240,9 @@ QVariant::toString() and QVariant::toInt() to convert variants to QString and \c int. - For an overview of the recommended types used with Qt supported - Databases, please refer to \l{Recommended Use of Data Types in Databases}{this table}. + For an overview of the recommended types for use with Qt-supported + Databases, please refer to \l{Data Types for Qt-supported Database + Systems} {this table}. You can iterate back and forth using QSqlQuery::next(), QSqlQuery::previous(), QSqlQuery::first(), QSqlQuery::last(), and diff --git a/doc/src/widgets-and-layouts/widgets.qdoc b/doc/src/widgets-and-layouts/widgets.qdoc index 9fe2d69..c93a380 100644 --- a/doc/src/widgets-and-layouts/widgets.qdoc +++ b/doc/src/widgets-and-layouts/widgets.qdoc @@ -48,11 +48,10 @@ \section1 Widgets Widgets are the primary elements for creating user interfaces in Qt. - \l{Widget Classes}{Widgets} can display data and status information, + \l{The Widget Classes}{Widgets} can display data and status information, receive user input, and provide a container for other widgets that should be grouped together. A widget that is not embedded in a - parent widget is called a \l{Application Windows and - Dialogs}{window}. + parent widget is called a \l{Window and Dialog Widgets} {window}. \image parent-child-widgets.png A parent widget containing various child widgets. @@ -82,11 +81,10 @@ \section1 Widget Styles - \l{Implementing Styles and Style Aware Widgets}{Styles} draw on - behalf of widgets and encapsulate the look and feel of a GUI. Qt's - built-in widgets use the QStyle class to perform nearly all of their - drawing, ensuring that they look exactly like the equivalent native - widgets. + \l{Styles & Style Aware Widgets}{Styles} draw on behalf of + widgets and encapsulate the look and feel of a GUI. Qt's built-in + widgets use the QStyle class to perform nearly all of their drawing, + ensuring that they look exactly like the equivalent native widgets. \table \row diff --git a/doc/src/windows-and-dialogs/mainwindow.qdoc b/doc/src/windows-and-dialogs/mainwindow.qdoc index c1e66d9..db9a636 100644 --- a/doc/src/windows-and-dialogs/mainwindow.qdoc +++ b/doc/src/windows-and-dialogs/mainwindow.qdoc @@ -49,7 +49,6 @@ \title Window and Dialog Widgets \brief Windows and Dialogs in Qt. \ingroup qt-gui-concepts - \ingroup frameworks-technologies A \l{Widgets Tutorial}{widget} that is not embedded in a parent widget is called a window. Usually, windows have a frame and a title bar, although it is also possible to create @@ -81,7 +80,7 @@ \section1 Main Windows and Dialogs - \l{The Application Main Window} provides the framework for building the + The \l{Application Main Window} provides the framework for building the application's main user interface, and are created by subclassing QMainWindow. QMainWindow has its own layout to which you can add a \l{QMenuBar}{menu bar}, \l{QToolBar}{tool bars}, \l{QDockWidget}{dockable widgets} and a -- cgit v0.12 From 8846348738a3cab1a4b59b27f81e27bc17da02ff Mon Sep 17 00:00:00 2001 From: Jens Bache-Wiig Date: Thu, 20 May 2010 16:45:53 +0200 Subject: Improve look and feel of itemviews on mac These fixes are neccessary and requested by Qt Creator and should go into 4.7.0. The fixes involved is: - positioning of disclosure arrow in treeviews - spacing between icon and text label - added 2 pixel spacing between item view items Note that native cocoa views tend to use 3 pixel spacing. We considered this and decided on leaving it at 2 which is what you see in finder list views, XCode among other places. It also makes the change a bit less radical. Reviewed-by:cduclos Task-number:QTBUG-10190 --- src/gui/styles/qmacstyle_mac.mm | 31 +++++++++++++++++++++++++------ 1 file changed, 25 insertions(+), 6 deletions(-) diff --git a/src/gui/styles/qmacstyle_mac.mm b/src/gui/styles/qmacstyle_mac.mm index 0f01bd5..e82e638 100644 --- a/src/gui/styles/qmacstyle_mac.mm +++ b/src/gui/styles/qmacstyle_mac.mm @@ -132,6 +132,8 @@ static const QColor titlebarSeparatorLineInactive(131, 131, 131); static const QColor mainWindowGradientBegin(240, 240, 240); static const QColor mainWindowGradientEnd(200, 200, 200); +static const int DisclosureOffset = 4; + #if (MAC_OS_X_VERSION_MAX_ALLOWED <= MAC_OS_X_VERSION_10_5) enum { kThemePushButtonTextured = 31, @@ -3100,7 +3102,7 @@ void QMacStyle::drawPrimitive(PrimitiveElement pe, const QStyleOption *opt, QPai else bi.value = opt->direction == Qt::LeftToRight ? kThemeDisclosureRight : kThemeDisclosureLeft; bi.adornment = kThemeAdornmentNone; - HIRect hirect = qt_hirectForQRect(opt->rect); + HIRect hirect = qt_hirectForQRect(opt->rect.adjusted(DisclosureOffset,0,-DisclosureOffset,0)); HIThemeDrawButton(&hirect, &bi, cg, kHIThemeOrientationNormal, 0); break; } @@ -4353,6 +4355,15 @@ QRect QMacStyle::subElementRect(SubElement sr, const QStyleOption *opt, int controlSize = getControlSize(opt, widget); switch (sr) { + case SE_ItemViewItemText: + if (const QStyleOptionViewItemV4 *vopt = qstyleoption_cast(opt)) { + int fw = proxy()->pixelMetric(PM_FocusFrameHMargin, opt, widget); + // We add the focusframeargin between icon and text in commonstyle + rect = QCommonStyle::subElementRect(sr, opt, widget); + if (vopt->features & QStyleOptionViewItemV2::HasDecoration) + rect.adjust(-fw, 0, 0, 0); + } + break; case SE_ToolBoxTabContents: rect = QCommonStyle::subElementRect(sr, opt, widget); break; @@ -4370,9 +4381,9 @@ QRect QMacStyle::subElementRect(SubElement sr, const QStyleOption *opt, case SE_HeaderLabel: if (qstyleoption_cast(opt)) { rect = QWindowsStyle::subElementRect(sr, opt, widget); - if (widget && widget->height() <= qt_mac_aqua_get_metric(kThemeMetricListHeaderHeight)){ - // We need to allow the text a bit more space when the header is as - // small as kThemeMetricListHeaderHeight, otherwise it gets clipped: + if (widget && widget->height() <= 22){ + // We need to allow the text a bit more space when the header is + // small, otherwise it gets clipped: rect.setY(0); rect.setHeight(widget->height()); } @@ -4399,8 +4410,9 @@ QRect QMacStyle::subElementRect(SubElement sr, const QStyleOption *opt, HIRect outRect; HIThemeGetButtonShape(&inRect, &bdi, &shape); ptrHIShapeGetBounds(shape, &outRect); - rect = QRect(int(outRect.origin.x), int(outRect.origin.y), - int(contentRect.origin.x - outRect.origin.x), int(outRect.size.height)); + rect = QRect(int(outRect.origin.x + DisclosureOffset), int(outRect.origin.y), + int(contentRect.origin.x - outRect.origin.x + DisclosureOffset), + int(outRect.size.height)); break; } case SE_TabWidgetLeftCorner: @@ -5789,6 +5801,13 @@ QSize QMacStyle::sizeFromContents(ContentsType ct, const QStyleOption *opt, sz = sz.expandedTo(QSize(sz.width(), minimumSize)); } break; + case CT_ItemViewItem: + if (const QStyleOptionViewItemV4 *vopt = qstyleoption_cast(opt)) { + sz = QCommonStyle::sizeFromContents(ct, vopt, csz, widget); + sz.setHeight(sz.height() + 2); + } + break; + default: sz = QWindowsStyle::sizeFromContents(ct, opt, csz, widget); } -- cgit v0.12 From 83245ed872b6265d872a8ab0235c9dbd1f2daf4b Mon Sep 17 00:00:00 2001 From: Kim Motoyoshi Kalland Date: Thu, 20 May 2010 17:32:12 +0200 Subject: Removed a change from the 4.7.0 change log. The change belongs in the 4.6.3 change log. --- dist/changes-4.7.0 | 6 ------ 1 file changed, 6 deletions(-) diff --git a/dist/changes-4.7.0 b/dist/changes-4.7.0 index d6209f4..34d002c 100644 --- a/dist/changes-4.7.0 +++ b/dist/changes-4.7.0 @@ -164,12 +164,6 @@ QtNetwork * [QTBUG-2515] Do not make OpenSSL prompt for a password * [QTBUG-6504, QTBUG-8924, QTBUG-5645] Fix memleak -QtOpenGL --------- - - QGLWidget - * [QTBUG-7865] Fixed bug where GL widgets were not fully updated on - Windows Vista/7 with Aero disabled. - QtScript -------- - Updated src/3rdparty/javascriptcore to a more recent version -- cgit v0.12 From be9d25dc7f06ce8d7a9bb7524bb9b11609c9ec90 Mon Sep 17 00:00:00 2001 From: David Boddie Date: Thu, 20 May 2010 18:46:39 +0200 Subject: qdoc: Propagate the language information into the XML as before. Reviewed-by: Trust Me --- tools/qdoc3/htmlgenerator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/qdoc3/htmlgenerator.cpp b/tools/qdoc3/htmlgenerator.cpp index e352364..2774833 100644 --- a/tools/qdoc3/htmlgenerator.cpp +++ b/tools/qdoc3/htmlgenerator.cpp @@ -1781,7 +1781,7 @@ void HtmlGenerator::generateHeader(const QString& title, { out() << QString("\n").arg(outputEncoding); out() << "\n"; - out() << "\n"; + out() << QString("\n").arg(naturalLanguage); out() << "\n"; out() << " \n"; QString shortVersion; -- cgit v0.12 From bb0048d2e8536f1db5144ee99d122e2b3b102e04 Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen Date: Thu, 6 May 2010 21:54:07 +0200 Subject: simplify arcane conditional, once again Reviewed-by: joerg --- qmake/generators/metamakefile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qmake/generators/metamakefile.cpp b/qmake/generators/metamakefile.cpp index 9c64544..ad8750b 100644 --- a/qmake/generators/metamakefile.cpp +++ b/qmake/generators/metamakefile.cpp @@ -476,7 +476,7 @@ MetaMakefileGenerator::createMakefileGenerator(QMakeProject *proj, bool noIO) mkfile = new NmakeMakefileGenerator; } else if(gen == "MSBUILD") { // Visual Studio >= v11.0 - if(proj->first("TEMPLATE").indexOf(QRegExp("^vc.*")) != -1 || proj->first("TEMPLATE").indexOf(QRegExp("^ce.*")) != -1) + if (proj->first("TEMPLATE").startsWith("vc")) mkfile = new VcxprojGenerator; else mkfile = new NmakeMakefileGenerator; -- cgit v0.12 From 3201b70f0364911382cf3657141be95e34f1d61c Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen Date: Thu, 6 May 2010 15:15:13 +0200 Subject: unify QMAKE_QMAKE path separator fixing the value of the variable in Option is only ever accessed via the project variable, so there is no point in early fixing. as it happens, this fixes mingw+sh generating makefiles with the wrong separator, as the fixing is delayed to a point where QMAKE_DIR_SEP was read back into Option. Reviewed-by: joerg --- qmake/option.cpp | 1 - qmake/project.cpp | 13 ++++++------- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/qmake/option.cpp b/qmake/option.cpp index 13e855c..d63158c 100644 --- a/qmake/option.cpp +++ b/qmake/option.cpp @@ -558,7 +558,6 @@ void Option::applyHostMode() Option::dir_sep = "/"; Option::obj_ext = ".o"; } - Option::qmake_abslocation = Option::fixPathToTargetOS(Option::qmake_abslocation); } bool Option::postProcessProject(QMakeProject *project) diff --git a/qmake/project.cpp b/qmake/project.cpp index 998d173..c3595fe 100644 --- a/qmake/project.cpp +++ b/qmake/project.cpp @@ -3099,13 +3099,12 @@ QStringList &QMakeProject::values(const QString &_var, QMap Date: Thu, 20 May 2010 11:52:59 +0200 Subject: use qtPrepareTool for qdoc Reviewed-by: joerg --- tools/qdoc3/qdoc3.pro | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/tools/qdoc3/qdoc3.pro b/tools/qdoc3/qdoc3.pro index e394799..81ff93a 100644 --- a/tools/qdoc3/qdoc3.pro +++ b/tools/qdoc3/qdoc3.pro @@ -115,20 +115,7 @@ SOURCES += apigenerator.cpp \ ### Documentation for qdoc3 ### -win32:!win32-g++ { - unixstyle = false -} else :win32-g++:isEmpty(QMAKE_SH) { - unixstyle = false -} else { - unixstyle = true -} - -$$unixstyle { - QDOC = cd $$PWD/doc && $$[QT_INSTALL_BINS]/qdoc3 -} else { - QDOC = cd $$PWD/doc && $$[QT_INSTALL_BINS]/qdoc3.exe - QDOC = $$replace(QDOC, "/", "\\") -} +qtPrepareTool(QDOC, qdoc3) docs.commands = $$QDOC qdoc-manual.qdocconf -- cgit v0.12 From 79893e1f90b04317fde14069684534ba29d74f5b Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen Date: Fri, 14 May 2010 20:04:45 +0200 Subject: deprecate undocumented -E option Reviewed-by: joerg --- qmake/option.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/qmake/option.cpp b/qmake/option.cpp index d63158c..8db3797 100644 --- a/qmake/option.cpp +++ b/qmake/option.cpp @@ -304,6 +304,7 @@ Option::parseCommandLine(int argc, char **argv, int skip) } else if(opt == "nodependheuristics") { Option::mkfile::do_dep_heuristics = false; } else if(opt == "E") { + fprintf(stderr, "-E is deprecated. Use -d instead.\n"); Option::mkfile::do_preprocess = true; } else if(opt == "cache") { Option::mkfile::cachefile = argv[++x]; -- cgit v0.12 From f8efbfb774679aa81648974e049605981532ec17 Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen Date: Fri, 14 May 2010 20:06:30 +0200 Subject: close scope while inside assignment only if the last char is a closing brace the code assumed it anyway and would make a mess if it was wrong Reviewed-by: joerg --- qmake/project.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qmake/project.cpp b/qmake/project.cpp index c3595fe..214b013 100644 --- a/qmake/project.cpp +++ b/qmake/project.cpp @@ -1046,7 +1046,7 @@ QMakeProject::parse(const QString &t, QMap &place, int num SKIP_WS(d, d_off, s.length()); QString vals = s.mid(d_off); // vals now contains the space separated list of values int rbraces = vals.count('}'), lbraces = vals.count('{'); - if(scope_blocks.count() > 1 && rbraces - lbraces == 1) { + if(scope_blocks.count() > 1 && rbraces - lbraces == 1 && vals.endsWith('}')) { debug_msg(1, "Project Parser: %s:%d : Leaving block %d", parser.file.toLatin1().constData(), parser.line_no, scope_blocks.count()); ScopeBlock sb = scope_blocks.pop(); -- cgit v0.12 From 044eb6966ade14a7367bb687cfac976007ad820c Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen Date: Fri, 14 May 2010 20:07:05 +0200 Subject: clarify wording of warning message Reviewed-by: joerg --- qmake/project.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qmake/project.cpp b/qmake/project.cpp index 214b013..2be68be 100644 --- a/qmake/project.cpp +++ b/qmake/project.cpp @@ -1073,7 +1073,7 @@ QMakeProject::parse(const QString &t, QMap &place, int num } if(vals.contains('=') && numLines > 1) - warn_msg(WarnParser, "Detected possible line continuation: {%s} %s:%d", + warn_msg(WarnParser, "Possible accidental line continuation: {%s} at %s:%d", var.toLatin1().constData(), parser.file.toLatin1().constData(), parser.line_no); QStringList &varlist = place[var]; // varlist is the list in the symbol table -- cgit v0.12 From d56e75982111a2c1caf0271eafd4d41ba9f9aefd Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen Date: Tue, 18 May 2010 12:21:06 +0200 Subject: fix irix build Task-number: QTBUG-10611 Reviewed-by: joerg --- src/corelib/corelib.pro | 1 + src/gui/gui.pro | 1 + src/opengl/opengl.pro | 1 + 3 files changed, 3 insertions(+) diff --git a/src/corelib/corelib.pro b/src/corelib/corelib.pro index 83fa044..e39d326 100644 --- a/src/corelib/corelib.pro +++ b/src/corelib/corelib.pro @@ -3,6 +3,7 @@ QPRO_PWD = $$PWD QT = DEFINES += QT_BUILD_CORE_LIB QT_NO_USING_NAMESPACE win32-msvc*|win32-icc:QMAKE_LFLAGS += /BASE:0x67000000 +irix-cc*:QMAKE_CXXFLAGS += -no_prelink -ptused include(../qbase.pri) include(animation/animation.pri) diff --git a/src/gui/gui.pro b/src/gui/gui.pro index a6370b2..7f1cb78 100644 --- a/src/gui/gui.pro +++ b/src/gui/gui.pro @@ -3,6 +3,7 @@ QPRO_PWD = $$PWD QT = core DEFINES += QT_BUILD_GUI_LIB QT_NO_USING_NAMESPACE win32-msvc*|win32-icc:QMAKE_LFLAGS += /BASE:0x65000000 +irix-cc*:QMAKE_CXXFLAGS += -no_prelink -ptused !win32:!embedded:!mac:!symbian:CONFIG += x11 diff --git a/src/opengl/opengl.pro b/src/opengl/opengl.pro index 15795d2..d6011cf 100644 --- a/src/opengl/opengl.pro +++ b/src/opengl/opengl.pro @@ -5,6 +5,7 @@ DEFINES += QT_BUILD_OPENGL_LIB DEFINES += QT_NO_USING_NAMESPACE win32-msvc*|win32-icc:QMAKE_LFLAGS += /BASE:0x63000000 solaris-cc*:QMAKE_CXXFLAGS_RELEASE -= -O2 +irix-cc*:QMAKE_CXXFLAGS += -no_prelink -ptused unix:QMAKE_PKGCONFIG_REQUIRES = QtCore QtGui -- cgit v0.12 From af2df9e88705eeda2df5cdd46c5f7ec195facb8a Mon Sep 17 00:00:00 2001 From: Aaron McCarthy Date: Fri, 21 May 2010 08:34:00 +1000 Subject: Fix formating of license header. --- doc/src/declarative/qml-intro.qdoc | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/doc/src/declarative/qml-intro.qdoc b/doc/src/declarative/qml-intro.qdoc index 457efa8..64a4949 100644 --- a/doc/src/declarative/qml-intro.qdoc +++ b/doc/src/declarative/qml-intro.qdoc @@ -1,5 +1,4 @@ -/************************************************************************** -** +/**************************************************************************** ** ** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). ** All rights reserved. @@ -38,8 +37,7 @@ ** ** $QT_END_LICENSE$ ** -*************************************************************************** -*/ +****************************************************************************/ -- cgit v0.12 From 4ada24963ccd8a5a1d57a90739b627f6684693e9 Mon Sep 17 00:00:00 2001 From: Lorn Potter Date: Fri, 21 May 2010 14:20:55 +1000 Subject: add bytes and activeTime to corelwan. Task-number: QTBUG-10875 --- src/plugins/bearer/corewlan/qcorewlanengine.h | 6 ++ src/plugins/bearer/corewlan/qcorewlanengine.mm | 104 +++++++++++++++++++++++-- 2 files changed, 102 insertions(+), 8 deletions(-) diff --git a/src/plugins/bearer/corewlan/qcorewlanengine.h b/src/plugins/bearer/corewlan/qcorewlanengine.h index 3c24c54..4d90648 100644 --- a/src/plugins/bearer/corewlan/qcorewlanengine.h +++ b/src/plugins/bearer/corewlan/qcorewlanengine.h @@ -78,6 +78,10 @@ public: QNetworkSession::State sessionStateForId(const QString &id); + quint64 bytesWritten(const QString &id); + quint64 bytesReceived(const QString &id); + quint64 startTime(const QString &id); + QNetworkConfigurationManager::Capabilities capabilities() const; QNetworkSessionPrivate *createSessionBackend(); @@ -100,6 +104,8 @@ private: bool scanning; QScanThread *scanThread; + quint64 getBytes(const QString &interfaceName,bool b); + protected: void startNetworkChangeLoop(); diff --git a/src/plugins/bearer/corewlan/qcorewlanengine.mm b/src/plugins/bearer/corewlan/qcorewlanengine.mm index 3206833..90d093a 100644 --- a/src/plugins/bearer/corewlan/qcorewlanengine.mm +++ b/src/plugins/bearer/corewlan/qcorewlanengine.mm @@ -67,6 +67,9 @@ #include #include "private/qcore_mac_p.h" +#include +#include + @interface QNSListener : NSObject { NSNotificationCenter *center; @@ -157,7 +160,7 @@ void QScanThread::quit() void QScanThread::run() { - NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; + QMacCocoaAutoReleasePool pool; QStringList found; mutex.lock(); CWInterface *currentInterface = [CWInterface interfaceWithName:qt_mac_QStringToNSString(interfaceName)]; @@ -167,6 +170,7 @@ void QScanThread::run() NSError *err = nil; NSDictionary *parametersDict = [NSDictionary dictionaryWithObjectsAndKeys: [NSNumber numberWithBool:YES], kCWScanKeyMerge, + [NSNumber numberWithInt:kCWScanTypeFast], kCWScanKeyScanType, [NSNumber numberWithInteger:100], kCWScanKeyRestTime, nil]; NSArray* apArray = [currentInterface scanForNetworksWithParameters:parametersDict error:&err]; @@ -204,11 +208,9 @@ void QScanThread::run() found.append(foundNetwork(id, networkSsid, state, interfaceName, purpose)); - } //end row -// [parametersDict release]; - - } //end error - } // endwifi power + } + } + } // add known configurations that are not around. QMapIterator > i(userProfiles); while (i.hasNext()) { @@ -248,7 +250,6 @@ void QScanThread::run() } } emit networksChanged(); - [pool release]; } QStringList QScanThread::foundNetwork(const QString &id, const QString &name, const QNetworkConfiguration::StateFlags state, const QString &interfaceName, const QNetworkConfiguration::Purpose purpose) @@ -426,6 +427,7 @@ QCoreWlanEngine::~QCoreWlanEngine() void QCoreWlanEngine::initialize() { QMutexLocker locker(&mutex); + QMacCocoaAutoReleasePool pool; if([[CWInterface supportedInterfaces] count] > 0 && !listener) { listener = [[QNSListener alloc] init]; @@ -659,7 +661,6 @@ bool QCoreWlanEngine::isWifiReady(const QString &wifiDeviceName) QNetworkSession::State QCoreWlanEngine::sessionStateForId(const QString &id) { QMutexLocker locker(&mutex); - QNetworkConfigurationPrivatePointer ptr = accessPointConfigurations.value(id); if (!ptr) @@ -823,5 +824,92 @@ void QCoreWlanEngine::networksChanged() } +quint64 QCoreWlanEngine::bytesWritten(const QString &id) +{ + QMutexLocker locker(&mutex); + const QString interfaceStr = getInterfaceFromId(id); + return getBytes(interfaceStr,false); + return Q_UINT64_C(0); +} + +quint64 QCoreWlanEngine::bytesReceived(const QString &id) +{ + QMutexLocker locker(&mutex); + const QString interfaceStr = getInterfaceFromId(id); + return getBytes(interfaceStr,true); + return Q_UINT64_C(0); +} + +quint64 QCoreWlanEngine::startTime(const QString &id) +{ + QMutexLocker locker(&mutex); + QMacCocoaAutoReleasePool pool; + quint64 timestamp = 0; + + NSString *filePath = @"/Library/Preferences/SystemConfiguration/com.apple.airport.preferences.plist"; + NSDictionary* plistDict = [[[NSDictionary alloc] initWithContentsOfFile:filePath] autorelease]; + NSString *input = @"KnownNetworks"; + NSString *timeStampStr = @"_timeStamp"; + + NSString *ssidStr = @"SSID_STR"; + + for (id key in plistDict) { + if ([input isEqualToString:key]) { + + NSDictionary *knownNetworksDict = [plistDict objectForKey:key]; + for (id networkKey in knownNetworksDict) { + bool isFound = false; + NSDictionary *itemDict = [knownNetworksDict objectForKey:networkKey]; + NSInteger dictSize = [itemDict count]; + id objects[dictSize]; + id keys[dictSize]; + + [itemDict getObjects:objects andKeys:keys]; + bool ok = false; + for(int i = 0; i < dictSize; i++) { + if([ssidStr isEqualToString:keys[i]]) { + const QString ident = QString::number(qHash(QLatin1String("corewlan:") + qt_mac_NSStringToQString(objects[i]))); + if(ident == id) { + ok = true; + } + } + if(ok && [timeStampStr isEqualToString:keys[i]]) { + timestamp = (quint64)[objects[i] timeIntervalSince1970]; + isFound = true; + break; + } + } + if(isFound) + break; + } + } + } + return timestamp; +} + +quint64 QCoreWlanEngine::getBytes(const QString &interfaceName, bool b) +{ + struct ifaddrs *ifAddressList, *ifAddress; + struct if_data *if_data; + + quint64 bytes = 0; + ifAddressList = nil; + if(getifaddrs(&ifAddressList) == 0) { + for(ifAddress = ifAddressList; ifAddress; ifAddress = ifAddress->ifa_next) { + if(interfaceName == ifAddress->ifa_name) { + if_data = (struct if_data*)ifAddress->ifa_data; + if(b) { + bytes = if_data->ifi_ibytes; + break; + } else { + bytes = if_data->ifi_obytes; + break; + } + } + } + freeifaddrs(ifAddressList); + } + return bytes; +} QT_END_NAMESPACE -- cgit v0.12 From 7fc31eb7c73968c4bafda3dba143c9b1e369ab69 Mon Sep 17 00:00:00 2001 From: Lorn Potter Date: Fri, 21 May 2010 14:24:51 +1000 Subject: remove dead code that will never get called. --- src/plugins/bearer/corewlan/qcorewlanengine.mm | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/plugins/bearer/corewlan/qcorewlanengine.mm b/src/plugins/bearer/corewlan/qcorewlanengine.mm index 90d093a..a9cb65b 100644 --- a/src/plugins/bearer/corewlan/qcorewlanengine.mm +++ b/src/plugins/bearer/corewlan/qcorewlanengine.mm @@ -829,7 +829,6 @@ quint64 QCoreWlanEngine::bytesWritten(const QString &id) QMutexLocker locker(&mutex); const QString interfaceStr = getInterfaceFromId(id); return getBytes(interfaceStr,false); - return Q_UINT64_C(0); } quint64 QCoreWlanEngine::bytesReceived(const QString &id) @@ -837,7 +836,6 @@ quint64 QCoreWlanEngine::bytesReceived(const QString &id) QMutexLocker locker(&mutex); const QString interfaceStr = getInterfaceFromId(id); return getBytes(interfaceStr,true); - return Q_UINT64_C(0); } quint64 QCoreWlanEngine::startTime(const QString &id) -- cgit v0.12 From d98c38aacd14daf4aa202fa3d24ea67caf184652 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Trond=20Kjern=C3=A5sen?= Date: Fri, 21 May 2010 09:03:30 +0200 Subject: Typo. --- dist/changes-4.6.3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/changes-4.6.3 b/dist/changes-4.6.3 index 08db0bb..9383600 100644 --- a/dist/changes-4.6.3 +++ b/dist/changes-4.6.3 @@ -107,7 +107,7 @@ QtGui * [QTBUG-8606] Fixed QPixmap::load() to not modify referenced copies. - QPainter - * [QTBUG-8140] Speed up custom bitmap bruses under X11 without Xrender support. + * [QTBUG-8140] Speed up custom bitmap brushes under X11 without Xrender support. * [QTBUG-8032] Fixed drawing pixmaps onto bitmaps on X11 without Xrender support. - QImageReader -- cgit v0.12 From 1c51d8c798ca981206dafc06595a198dc1d42798 Mon Sep 17 00:00:00 2001 From: Aleksandar Sasha Babic Date: Fri, 21 May 2010 09:41:19 +0200 Subject: Fixing the compile issue. We have to explicitely specify the include path to the MW headers for Symbian. The compiler always gets confused if the private headers get in the way. Reviewed-by: TrustMe --- tests/auto/qhttpnetworkconnection/qhttpnetworkconnection.pro | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/auto/qhttpnetworkconnection/qhttpnetworkconnection.pro b/tests/auto/qhttpnetworkconnection/qhttpnetworkconnection.pro index 0021bc1..7746642 100644 --- a/tests/auto/qhttpnetworkconnection/qhttpnetworkconnection.pro +++ b/tests/auto/qhttpnetworkconnection/qhttpnetworkconnection.pro @@ -4,3 +4,7 @@ INCLUDEPATH += $$QT_SOURCE_TREE/src/3rdparty/zlib requires(contains(QT_CONFIG,private_tests)) QT = core network + +symbian: { + INCLUDEPATH += $$MW_LAYER_SYSTEMINCLUDE +} -- cgit v0.12 From 1564d012dd12e891a8e9112b288c94fae00dd745 Mon Sep 17 00:00:00 2001 From: Aleksandar Sasha Babic Date: Fri, 21 May 2010 09:44:51 +0200 Subject: Fixing the compile issue. Private headers have to be included in consistent and proper way: not like "name_p.h" or "../name_p.h" but --- src/network/access/qhttpnetworkconnectionchannel_p.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/network/access/qhttpnetworkconnectionchannel_p.h b/src/network/access/qhttpnetworkconnectionchannel_p.h index 51cb5e8..41a896d 100644 --- a/src/network/access/qhttpnetworkconnectionchannel_p.h +++ b/src/network/access/qhttpnetworkconnectionchannel_p.h @@ -65,7 +65,7 @@ #include #include -#include "qhttpnetworkconnection_p.h" +#include #ifndef QT_NO_HTTP -- cgit v0.12 From 1f1ff85bb9841d1b040b25af9a5c99a5c1f87e58 Mon Sep 17 00:00:00 2001 From: Jason McDonald Date: Fri, 21 May 2010 17:54:17 +1000 Subject: Add missing license header. Reviewed-by: Trust Me --- src/gui/painting/qgraphicssystem_runtime.cpp | 41 ++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/src/gui/painting/qgraphicssystem_runtime.cpp b/src/gui/painting/qgraphicssystem_runtime.cpp index dfa9bd3..ceb16ed 100644 --- a/src/gui/painting/qgraphicssystem_runtime.cpp +++ b/src/gui/painting/qgraphicssystem_runtime.cpp @@ -1,3 +1,44 @@ +/**************************************************************************** +** +** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the QtGui module of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** No Commercial Usage +** This file contains pre-release code and may not be distributed. +** You may use this file in accordance with the terms and conditions +** contained in the Technology Preview License Agreement accompanying +** this package. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Nokia gives you certain additional +** rights. These rights are described in the Nokia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + #include #include #include -- cgit v0.12 From d53b25d397e54551aff15b79e3807e7ce4612886 Mon Sep 17 00:00:00 2001 From: Morten Engvoldsen Date: Fri, 21 May 2010 09:55:14 +0200 Subject: Doc: Changes to the HTMLGenerator, style and js Replacing tables with lists in the HTML generator Adding img to search box Moving JS from template to script files --- doc/src/template/scripts/functions.js | 17 ++++++++--------- doc/src/template/style/style.css | 17 +++++++++++++---- tools/qdoc3/htmlgenerator.cpp | 20 ++++++++++---------- tools/qdoc3/test/assistant.qdocconf | 1 + tools/qdoc3/test/designer.qdocconf | 1 + tools/qdoc3/test/linguist.qdocconf | 1 + tools/qdoc3/test/qdeclarative.qdocconf | 1 + tools/qdoc3/test/qmake.qdocconf | 1 + tools/qdoc3/test/qt-build-docs.qdocconf | 1 + tools/qdoc3/test/qt-build-docs_zh_CN.qdocconf | 1 + tools/qdoc3/test/qt-defines.qdocconf | 1 + tools/qdoc3/test/qt-html-templates.qdocconf | 1 - tools/qdoc3/test/qt.qdocconf | 1 + tools/qdoc3/test/qt_zh_CN.qdocconf | 1 + 14 files changed, 41 insertions(+), 24 deletions(-) diff --git a/doc/src/template/scripts/functions.js b/doc/src/template/scripts/functions.js index afd1ec3..7ae2421 100755 --- a/doc/src/template/scripts/functions.js +++ b/doc/src/template/scripts/functions.js @@ -54,8 +54,6 @@ var exampleCount = 0; var qturl = ""; // change from "http://doc.qt.nokia.com/4.6/" to 0 so we can have relative links function processNokiaData(response){ -$('.sidebar .search form input').addClass('loading'); - // debug $('.content').prepend('
  • handling search results
  • '); // debuging var propertyTags = response.getElementsByTagName('page'); for (var i=0; i< propertyTags.length; i++) { @@ -64,7 +62,6 @@ $('.sidebar .search form input').addClass('loading'); if(propertyTags[i].getElementsByTagName('pageType')[0].firstChild.nodeValue == 'APIPage'){ lookupCount++; - //$('.live001').css('display','block'); for (var j=0; j< propertyTags[i].getElementsByTagName('pageWords').length; j++){ @@ -79,7 +76,6 @@ $('.sidebar .search form input').addClass('loading'); if(propertyTags[i].getElementsByTagName('pageType')[0].firstChild.nodeValue == 'Article'){ articleCount++; - //$('.live002').css('display','block'); for (var j=0; j< propertyTags[i].getElementsByTagName('pageWords').length; j++){ @@ -93,7 +89,6 @@ $('.sidebar .search form input').addClass('loading'); } if(propertyTags[i].getElementsByTagName('pageType')[0].firstChild.nodeValue == 'Example'){ exampleCount++; - //$('.live003').css('display','block'); for (var j=0; j< propertyTags[i].getElementsByTagName('pageWords').length; j++){ @@ -105,10 +100,11 @@ $('.sidebar .search form input').addClass('loading'); } } + if(i==propertyTags.length){$('#pageType').removeClass('loading');} + } - if(lookupCount == 0){$('#ul001').prepend('
  • Found no result
  • ');$('#ul001 li').css('display','block');$('.sidebar .search form input').removeClass('loading'); -} + if(lookupCount == 0){$('#ul001').prepend('
  • Found no result
  • ');$('#ul001 li').css('display','block');$('.sidebar .search form input').removeClass('loading');} if(articleCount == 0){$('#ul002').prepend('
  • Found no result
  • ');$('#ul002 li').css('display','block');} if(exampleCount == 0){$('#ul003').prepend('
  • Found no result
  • ');$('#ul003 li').css('display','block');} // reset count variables; @@ -117,7 +113,6 @@ $('.sidebar .search form input').addClass('loading'); exampleCount = 0; } - //build regular expression object to find empty string or any number of blank var blankRE=/^\s*$/; function CheckEmptyAndLoadList() @@ -147,7 +142,7 @@ else $(document).ready(function () { var pageUrl = window.location.href; //alert(pageUrl); - $('#pageUrl').attr('foo',pageUrl); + //$('#pageUrl').attr('foo',pageUrl); var pageTitle = $('title').html(); $('#feedform').append(''); var currentString = $('#pageType').val() ; @@ -159,6 +154,7 @@ else $('#pageType').keyup(function () { var searchString = $('#pageType').val() ; if ((searchString == null) || (searchString.length < 3)) { + $('#pageType').removeClass('loading'); $('.liveResult').remove(); // replaces removeResults(); CheckEmptyAndLoadList(); $('.report').remove(); @@ -167,6 +163,7 @@ else } if (this.timer) clearTimeout(this.timer); this.timer = setTimeout(function () { + $('#pageType').addClass('loading'); // debug$('.content').prepend('
  • new search started
  • ');// debug // debug$('.content').prepend('

    Search string ' +searchString +'

    '); // debug @@ -179,6 +176,8 @@ else success: function (response, textStatus) { $('.liveResult').remove(); // replaces removeResults(); + $('#pageType').removeClass('loading'); + processNokiaData(response); } diff --git a/doc/src/template/style/style.css b/doc/src/template/style/style.css index 3f35642..82acd3e 100755 --- a/doc/src/template/style/style.css +++ b/doc/src/template/style/style.css @@ -998,17 +998,17 @@ .rightAlign { - text-align:right; + /*text-align:right; */ } .leftAlign { - text-align:left; + /*text-align:left; */ } .topAlign{ - vertical-align:top + /*vertical-align:top*/ } .functionIndex a{ @@ -1140,7 +1140,16 @@ /* end of screen media */ - +.flowList{ +display:inline-block; +width:260px; +} +.flowList dl{ +padding:0px; +} +.wrap .content .flowList p{ +padding:0px; +} } /* end of screen media */ diff --git a/tools/qdoc3/htmlgenerator.cpp b/tools/qdoc3/htmlgenerator.cpp index 6394b6e..0e8d021 100644 --- a/tools/qdoc3/htmlgenerator.cpp +++ b/tools/qdoc3/htmlgenerator.cpp @@ -2479,19 +2479,19 @@ void HtmlGenerator::generateCompactList(const Node *relative, out() << "

    \n"; } - out() << "\n"; + out() << "
    \n"; for (k = 0; k < numRows; k++) { if (++numTableRows % 2 == 1) - out() << "
    "; + out() << "
    "; + out() << "
    "; //break; // out() << "
    \n"; for (i = 0; i < NumColumns; i++) { if (currentOffset[i] >= firstOffset[i + 1]) { // this column is finished - out() << "\n"; // check why? + out() << "
    \n
    \n"; // check why? } else { while ((currentParagraphNo[i] < NumParagraphs) && @@ -2506,7 +2506,7 @@ void HtmlGenerator::generateCompactList(const Node *relative, currentParagraphNo[i] = NumParagraphs - 1; } #endif - out() << "\n"; + out() << "

    \n"; - out() << "\n"; + out() << "

    \n"; currentOffset[i]++; currentOffsetInParagraph[i]++; } } - out() << "\n"; + out() << "\n"; } - out() << "
    \n

    "; + out() << "

    "; if (currentOffsetInParagraph[i] == 0) { // start a new paragraph if (includeAlphabet) { @@ -2517,9 +2517,9 @@ void HtmlGenerator::generateCompactList(const Node *relative, << paragraphName[currentParagraphNo[i]] << ""; } - out() << "

    "; + out() << "

    "; if ((currentParagraphNo[i] < NumParagraphs) && !paragraphName[currentParagraphNo[i]].isEmpty()) { NodeMap::Iterator it; @@ -2545,15 +2545,15 @@ void HtmlGenerator::generateCompactList(const Node *relative, out() << ")"; } } - out() << "

    \n"; + out() << "
    \n"; } void HtmlGenerator::generateFunctionIndex(const Node *relative, diff --git a/tools/qdoc3/test/assistant.qdocconf b/tools/qdoc3/test/assistant.qdocconf index 3711ec4..167bb19 100644 --- a/tools/qdoc3/test/assistant.qdocconf +++ b/tools/qdoc3/test/assistant.qdocconf @@ -30,6 +30,7 @@ qhp.Assistant.extraFiles = images/bg_l.png \ images/page.png \ images/page_bg.png \ images/sprites-combined.png \ + images/spinner.gif \ images/stylesheet-coffee-plastique.png \ images/taskmenuextension-example.png \ images/coloreditorfactoryimage.png \ diff --git a/tools/qdoc3/test/designer.qdocconf b/tools/qdoc3/test/designer.qdocconf index 39da68b..48e3ea1 100644 --- a/tools/qdoc3/test/designer.qdocconf +++ b/tools/qdoc3/test/designer.qdocconf @@ -30,6 +30,7 @@ qhp.Designer.extraFiles = images/bg_l.png \ images/page.png \ images/page_bg.png \ images/sprites-combined.png \ + images/spinner.gif \ images/stylesheet-coffee-plastique.png \ images/taskmenuextension-example.png \ images/coloreditorfactoryimage.png \ diff --git a/tools/qdoc3/test/linguist.qdocconf b/tools/qdoc3/test/linguist.qdocconf index dba4fb5..8974bd7 100644 --- a/tools/qdoc3/test/linguist.qdocconf +++ b/tools/qdoc3/test/linguist.qdocconf @@ -30,6 +30,7 @@ qhp.Linguist.extraFiles = images/bg_l.png \ images/page.png \ images/page_bg.png \ images/sprites-combined.png \ + images/spinner.gif \ images/stylesheet-coffee-plastique.png \ images/taskmenuextension-example.png \ images/coloreditorfactoryimage.png \ diff --git a/tools/qdoc3/test/qdeclarative.qdocconf b/tools/qdoc3/test/qdeclarative.qdocconf index f744879..0f2e381 100644 --- a/tools/qdoc3/test/qdeclarative.qdocconf +++ b/tools/qdoc3/test/qdeclarative.qdocconf @@ -41,6 +41,7 @@ qhp.Qml.extraFiles = images/bg_l.png \ images/page.png \ images/page_bg.png \ images/sprites-combined.png \ + images/spinner.png \ images/stylesheet-coffee-plastique.png \ images/taskmenuextension-example.png \ images/coloreditorfactoryimage.png \ diff --git a/tools/qdoc3/test/qmake.qdocconf b/tools/qdoc3/test/qmake.qdocconf index b7f4115..ea58059 100644 --- a/tools/qdoc3/test/qmake.qdocconf +++ b/tools/qdoc3/test/qmake.qdocconf @@ -30,6 +30,7 @@ qhp.qmake.extraFiles = images/bg_l.png \ images/page.png \ images/page_bg.png \ images/sprites-combined.png \ + images/spinner.gif \ images/stylesheet-coffee-plastique.png \ images/taskmenuextension-example.png \ images/coloreditorfactoryimage.png \ diff --git a/tools/qdoc3/test/qt-build-docs.qdocconf b/tools/qdoc3/test/qt-build-docs.qdocconf index d3c855f..bd363a6 100644 --- a/tools/qdoc3/test/qt-build-docs.qdocconf +++ b/tools/qdoc3/test/qt-build-docs.qdocconf @@ -36,6 +36,7 @@ qhp.Qt.extraFiles = index.html \ images/page.png \ images/page_bg.png \ images/sprites-combined.png \ + images/spinner.gif \ images/stylesheet-coffee-plastique.png \ images/taskmenuextension-example.png \ images/coloreditorfactoryimage.png \ diff --git a/tools/qdoc3/test/qt-build-docs_zh_CN.qdocconf b/tools/qdoc3/test/qt-build-docs_zh_CN.qdocconf index e9bc00c..caf5f73 100644 --- a/tools/qdoc3/test/qt-build-docs_zh_CN.qdocconf +++ b/tools/qdoc3/test/qt-build-docs_zh_CN.qdocconf @@ -44,6 +44,7 @@ qhp.Qt.extraFiles = index.html \ images/page.png \ images/page_bg.png \ images/sprites-combined.png \ + images/spinner.gif \ images/stylesheet-coffee-plastique.png \ images/taskmenuextension-example.png \ images/coloreditorfactoryimage.png \ diff --git a/tools/qdoc3/test/qt-defines.qdocconf b/tools/qdoc3/test/qt-defines.qdocconf index f3291df..3e71d07 100644 --- a/tools/qdoc3/test/qt-defines.qdocconf +++ b/tools/qdoc3/test/qt-defines.qdocconf @@ -34,6 +34,7 @@ extraimages.HTML = qt-logo \ page.png \ page_bg.png \ sprites-combined.png \ + spinner.gif \ taskmenuextension-example.png \ coloreditorfactoryimage.png \ dynamiclayouts-example.png \ diff --git a/tools/qdoc3/test/qt-html-templates.qdocconf b/tools/qdoc3/test/qt-html-templates.qdocconf index 50bf0c3..09f0c96 100644 --- a/tools/qdoc3/test/qt-html-templates.qdocconf +++ b/tools/qdoc3/test/qt-html-templates.qdocconf @@ -130,7 +130,6 @@ HTML.footer = " \n" \ "
    X
    \n" \ "
    \n" \ "

    \n" \ - " \n" \ " \n" \ "

    \n" \ "
    \n" \ diff --git a/tools/qdoc3/test/qt.qdocconf b/tools/qdoc3/test/qt.qdocconf index 83a35a9..267d536 100644 --- a/tools/qdoc3/test/qt.qdocconf +++ b/tools/qdoc3/test/qt.qdocconf @@ -40,6 +40,7 @@ qhp.Qt.extraFiles = index.html \ images/page.png \ images/page_bg.png \ images/sprites-combined.png \ + images/spinner.gif \ images/stylesheet-coffee-plastique.png \ images/taskmenuextension-example.png \ images/coloreditorfactoryimage.png \ diff --git a/tools/qdoc3/test/qt_zh_CN.qdocconf b/tools/qdoc3/test/qt_zh_CN.qdocconf index 9275b5c..db02478 100644 --- a/tools/qdoc3/test/qt_zh_CN.qdocconf +++ b/tools/qdoc3/test/qt_zh_CN.qdocconf @@ -46,6 +46,7 @@ qhp.Qt.extraFiles = index.html \ images/page.png \ images/page_bg.png \ images/sprites-combined.png \ + images/spinner.gif \ images/stylesheet-coffee-plastique.png \ images/taskmenuextension-example.png \ images/coloreditorfactoryimage.png \ -- cgit v0.12 From 24b811e53b30546279346ab7b16799be119ab8c4 Mon Sep 17 00:00:00 2001 From: Shane Kearns Date: Thu, 20 May 2010 11:25:47 +0200 Subject: Enable QTouchEvent for S60 5.0 Symbian OS doesn't support advanced pointer events before Symbian^3 Advanced pointer events are required for multitouch, and are used to generate QTouchEvents. This change enables sending of a single touch point QTouchEvent on touchscreen phones based on earlier Symbian OS versions. i.e. S60 5th edition On devices without advanced pointers, or where the hardware does not support pressure detection, the pressure is set to 1.0 in the touch event. This is consistent with the Mac port. Task-number: QTBUG-5668 Reviewed-by: Bradley T. Hughes --- src/gui/kernel/qapplication_p.h | 3 ++- src/gui/kernel/qapplication_s60.cpp | 53 +++++++++++++++++++++++++++++-------- src/gui/kernel/qt_s60_p.h | 1 + 3 files changed, 45 insertions(+), 12 deletions(-) diff --git a/src/gui/kernel/qapplication_p.h b/src/gui/kernel/qapplication_p.h index 01abe54..e30b6be 100644 --- a/src/gui/kernel/qapplication_p.h +++ b/src/gui/kernel/qapplication_p.h @@ -581,7 +581,8 @@ public: void _q_readRX71MultiTouchEvents(); #endif -#if defined(Q_WS_S60) +#if defined(Q_OS_SYMBIAN) + int pressureSupported; int maxTouchPressure; QList appAllTouchPoints; #endif diff --git a/src/gui/kernel/qapplication_s60.cpp b/src/gui/kernel/qapplication_s60.cpp index 803241e..7e270aa 100644 --- a/src/gui/kernel/qapplication_s60.cpp +++ b/src/gui/kernel/qapplication_s60.cpp @@ -416,25 +416,44 @@ void QSymbianControl::HandleLongTapEventL( const TPoint& aPenEventLocation, cons void QSymbianControl::translateAdvancedPointerEvent(const TAdvancedPointerEvent *event) { QApplicationPrivate *d = QApplicationPrivate::instance(); + QPointF screenPos = qwidget->mapToGlobal(QPoint(event->iPosition.iX, event->iPosition.iY)); + qreal pressure; + if(d->pressureSupported + && event->Pressure() > 0) //workaround for misconfigured HAL + pressure = event->Pressure() / qreal(d->maxTouchPressure); + else + pressure = qreal(1.0); + processTouchEvent(event->PointerNumber(), event->iType, screenPos, pressure); +} +#endif +void QSymbianControl::processTouchEvent(int pointerNumber, TPointerEvent::TType type, QPointF screenPos, qreal pressure) +{ QRect screenGeometry = qApp->desktop()->screenGeometry(qwidget); - while (d->appAllTouchPoints.count() <= event->PointerNumber()) - d->appAllTouchPoints.append(QTouchEvent::TouchPoint(d->appAllTouchPoints.count())); + QApplicationPrivate *d = QApplicationPrivate::instance(); + + QList points = d->appAllTouchPoints; + while (points.count() <= pointerNumber) + points.append(QTouchEvent::TouchPoint(points.count())); Qt::TouchPointStates allStates = 0; - for (int i = 0; i < d->appAllTouchPoints.count(); ++i) { - QTouchEvent::TouchPoint &touchPoint = d->appAllTouchPoints[i]; + for (int i = 0; i < points.count(); ++i) { + QTouchEvent::TouchPoint &touchPoint = points[i]; - if (touchPoint.id() == event->PointerNumber()) { + if (touchPoint.id() == pointerNumber) { Qt::TouchPointStates state; - switch (event->iType) { + switch (type) { case TPointerEvent::EButton1Down: +#ifdef QT_SYMBIAN_SUPPORTS_ADVANCED_POINTER case TPointerEvent::EEnterHighPressure: +#endif state = Qt::TouchPointPressed; break; case TPointerEvent::EButton1Up: +#ifdef QT_SYMBIAN_SUPPORTS_ADVANCED_POINTER case TPointerEvent::EExitCloseProximity: +#endif state = Qt::TouchPointReleased; break; case TPointerEvent::EDrag: @@ -445,16 +464,15 @@ void QSymbianControl::translateAdvancedPointerEvent(const TAdvancedPointerEvent state = Qt::TouchPointStationary; break; } - if (event->PointerNumber() == 0) + if (pointerNumber == 0) state |= Qt::TouchPointPrimary; touchPoint.setState(state); - QPointF screenPos = qwidget->mapToGlobal(QPoint(event->iPosition.iX, event->iPosition.iY)); touchPoint.setScreenPos(screenPos); touchPoint.setNormalizedPos(QPointF(screenPos.x() / screenGeometry.width(), screenPos.y() / screenGeometry.height())); - touchPoint.setPressure(event->Pressure() / qreal(d->maxTouchPressure)); + touchPoint.setPressure(pressure); } else if (touchPoint.state() != Qt::TouchPointReleased) { // all other active touch points should be marked as stationary touchPoint.setState(Qt::TouchPointStationary); @@ -466,13 +484,14 @@ void QSymbianControl::translateAdvancedPointerEvent(const TAdvancedPointerEvent if ((allStates & Qt::TouchPointStateMask) == Qt::TouchPointReleased) { // all touch points released d->appAllTouchPoints.clear(); + } else { + d->appAllTouchPoints = points; } QApplicationPrivate::translateRawTouchEvent(qwidget, QTouchEvent::TouchScreen, - d->appAllTouchPoints); + points); } -#endif void QSymbianControl::HandlePointerEventL(const TPointerEvent& pEvent) { @@ -546,6 +565,13 @@ void QSymbianControl::HandlePointerEvent(const TPointerEvent& pEvent) qt_symbian_move_cursor_sprite(); #endif +//Generate single touch event for S60 5.0 (has touchscreen, does not have advanced pointers) +#ifndef QT_SYMBIAN_SUPPORTS_ADVANCED_POINTER + if (S60->hasTouchscreen) { + processTouchEvent(0, pEvent.iType, QPointF(globalPos), 1.0); + } +#endif + sendMouseEvent(receiver, type, globalPos, button, modifiers); } @@ -2047,8 +2073,13 @@ TUint QApplicationPrivate::resolveS60ScanCode(TInt scanCode, TUint keysym) void QApplicationPrivate::initializeMultitouch_sys() { #ifdef QT_SYMBIAN_SUPPORTS_ADVANCED_POINTER + if (HAL::Get(HALData::EPointer3DPressureSupported, pressureSupported) != KErrNone) + pressureSupported = 0; if (HAL::Get(HALData::EPointer3DMaxPressure, maxTouchPressure) != KErrNone) maxTouchPressure = KMaxTInt; +#else + pressureSupported = 0; + maxTouchPressure = KMaxTInt; #endif } diff --git a/src/gui/kernel/qt_s60_p.h b/src/gui/kernel/qt_s60_p.h index 232e9b3..fe3fa57 100644 --- a/src/gui/kernel/qt_s60_p.h +++ b/src/gui/kernel/qt_s60_p.h @@ -217,6 +217,7 @@ private: const QPoint &globalPos, Qt::MouseButton button, Qt::KeyboardModifiers modifiers); + void processTouchEvent(int pointerNumber, TPointerEvent::TType type, QPointF screenPos, qreal pressure); void HandleLongTapEventL( const TPoint& aPenEventLocation, const TPoint& aPenEventScreenLocation ); #ifdef QT_SYMBIAN_SUPPORTS_ADVANCED_POINTER void translateAdvancedPointerEvent(const TAdvancedPointerEvent *event); -- cgit v0.12 From 9ad82755f62b7fb5e303bf5f8ee2bb8e4afb7f8d Mon Sep 17 00:00:00 2001 From: Martin Smith Date: Fri, 21 May 2010 10:34:42 +0200 Subject: qdoc: Changed number of columns to 1. Oila! --- tools/qdoc3/htmlgenerator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/qdoc3/htmlgenerator.cpp b/tools/qdoc3/htmlgenerator.cpp index 0e8d021..1872d87 100644 --- a/tools/qdoc3/htmlgenerator.cpp +++ b/tools/qdoc3/htmlgenerator.cpp @@ -2332,7 +2332,7 @@ void HtmlGenerator::generateCompactList(const Node *relative, QString commonPrefix) { const int NumParagraphs = 37; // '0' to '9', 'A' to 'Z', '_' - const int NumColumns = 3; // number of columns in the result + const int NumColumns = 1; // number of columns in the result if (classMap.isEmpty()) return; -- cgit v0.12 From 04ad0950378fb4255064c10d5a4d64c1074035ed Mon Sep 17 00:00:00 2001 From: Martin Smith Date: Fri, 21 May 2010 10:53:55 +0200 Subject: qdoc: Fixed html error, but the problem is still there. --- tools/qdoc3/htmlgenerator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/qdoc3/htmlgenerator.cpp b/tools/qdoc3/htmlgenerator.cpp index 1872d87..cf8ea7c 100644 --- a/tools/qdoc3/htmlgenerator.cpp +++ b/tools/qdoc3/htmlgenerator.cpp @@ -2482,7 +2482,7 @@ void HtmlGenerator::generateCompactList(const Node *relative, out() << "
    \n"; for (k = 0; k < numRows; k++) { if (++numTableRows % 2 == 1) - out() << "
    "; else out() << "
    "; //break; -- cgit v0.12 From 12fb78962525202e3f9b509fd3f45c143e5dc5bd Mon Sep 17 00:00:00 2001 From: Joerg Bornemann Date: Fri, 21 May 2010 11:29:14 +0200 Subject: changes-4.6.3 updated --- dist/changes-4.6.3 | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/dist/changes-4.6.3 b/dist/changes-4.6.3 index 9383600..1a49403 100644 --- a/dist/changes-4.6.3 +++ b/dist/changes-4.6.3 @@ -120,6 +120,11 @@ QtGui - qDrawPixmaps() * [QTBUG-8455] Fixed qDrawPixmaps() to draw on integer coordinates under Mac OS X. + - QCommonStyle + * [QTBUG-7137] Fixed a bug that led to missing text pixels in QTabBar when using + small font sizes. + + QtDBus ------ @@ -230,6 +235,12 @@ Qt for Windows - [QTBUG-6007] On Windows we query if there is a touch screen and do not try to enable gestures otherwise. + - QLocalSocket + * [QTBUG-7815] Pipe handle leak fixed, when closing a QLocalSocket that still has + unwritten data. + * [QTBUG-9681] Fixed closing state for local sockets with unwritten data. + * [QTBUG-8418] Detection of Windows mobile 6.5 fixed. + Qt for Mac OS X --------------- @@ -249,7 +260,16 @@ DirectFB Qt for Windows CE ----------------- - - +- Core changes + * [QTBUG-8754] Fixed menu handling on Windows mobile. + * [QTBUG-7943] Fixed a crash when receiving a certain type of + WM_SETTINGSCHANGE message. + +- QWindowsMobileStyle + * [QTBUG-8419] Huge performance penalty for QTabWidget fixed for + Windows mobile 6.5. + * [QTBUG-8757] QTabBar scroll button size has been fixed. + Qt for Symbian -------------- -- cgit v0.12 From 5f21450a61ba2459e6dc5b08b236b15a067bf81f Mon Sep 17 00:00:00 2001 From: Aleksandar Sasha Babic Date: Fri, 21 May 2010 13:01:00 +0200 Subject: Fixing the race condition in event dispatcher implementation on Symbian platform New socket related requests are comming into QSelectThread by interrupting the select call by writing to pipe. One of the criteria is that m_mutex (from QSelectThread) could be locked, meaninig that QSelectThread is in m_waitCond.wait() call. However, the m_mutex can be locked by other contenders trying to post new requests in burst. This would trigger writing to pipe in false situations, making QSelectThread to hang in waitCond as no wakeAll will come until some next request (in future) kicks in. Task-number: QT-3358 Reviewed-by: Janne Anttila --- src/corelib/kernel/qeventdispatcher_symbian.cpp | 46 +++++++++++++++++++------ src/corelib/kernel/qeventdispatcher_symbian_p.h | 20 +++++++++++ 2 files changed, 56 insertions(+), 10 deletions(-) diff --git a/src/corelib/kernel/qeventdispatcher_symbian.cpp b/src/corelib/kernel/qeventdispatcher_symbian.cpp index 6448b06..0f85a9e 100644 --- a/src/corelib/kernel/qeventdispatcher_symbian.cpp +++ b/src/corelib/kernel/qeventdispatcher_symbian.cpp @@ -100,25 +100,40 @@ static inline int qt_socket_select(int nfds, fd_set *readfds, fd_set *writefds, class QSelectMutexGrabber { public: - QSelectMutexGrabber(int fd, QMutex *mutex) - : m_mutex(mutex) + QSelectMutexGrabber(int fd, QMutex *threadMutex, QMutex *selectCallMutex) + : m_threadMutex(threadMutex), m_selectCallMutex(selectCallMutex), bHasThreadLock(false) { - if (m_mutex->tryLock()) + // see if selectThread is waiting m_waitCond + // if yes ... dont write to pipe + if (m_threadMutex->tryLock()) { + bHasThreadLock = true; return; + } + + // still check that SelectThread + // is in select call + if (m_selectCallMutex->tryLock()) { + m_selectCallMutex->unlock(); + return; + } char dummy = 0; qt_pipe_write(fd, &dummy, 1); - m_mutex->lock(); + m_threadMutex->lock(); + bHasThreadLock = true; } ~QSelectMutexGrabber() { - m_mutex->unlock(); + if(bHasThreadLock) + m_threadMutex->unlock(); } private: - QMutex *m_mutex; + QMutex *m_threadMutex; + QMutex *m_selectCallMutex; + bool bHasThreadLock; }; /* @@ -400,7 +415,12 @@ void QSelectThread::run() int ret; int savedSelectErrno; - ret = qt_socket_select(maxfd, &readfds, &writefds, &exceptionfds, 0); + { + // helps fighting the race condition between + // selctthread and new socket requests (cancel, restart ...) + QMutexLocker locker(&m_selectCallMutex); + ret = qt_socket_select(maxfd, &readfds, &writefds, &exceptionfds, 0); + } savedSelectErrno = errno; char buffer; @@ -495,7 +515,9 @@ void QSelectThread::requestSocketEvents ( QSocketNotifier *notifier, TRequestSta start(); } - QSelectMutexGrabber lock(m_pipeEnds[1], &m_mutex); + QMutexLocker locker(&m_grabberMutex); + + QSelectMutexGrabber lock(m_pipeEnds[1], &m_mutex, &m_selectCallMutex); Q_ASSERT(!m_AOStatuses.contains(notifier)); @@ -506,7 +528,9 @@ void QSelectThread::requestSocketEvents ( QSocketNotifier *notifier, TRequestSta void QSelectThread::cancelSocketEvents ( QSocketNotifier *notifier ) { - QSelectMutexGrabber lock(m_pipeEnds[1], &m_mutex); + QMutexLocker locker(&m_grabberMutex); + + QSelectMutexGrabber lock(m_pipeEnds[1], &m_mutex, &m_selectCallMutex); m_AOStatuses.remove(notifier); @@ -515,7 +539,9 @@ void QSelectThread::cancelSocketEvents ( QSocketNotifier *notifier ) void QSelectThread::restart() { - QSelectMutexGrabber lock(m_pipeEnds[1], &m_mutex); + QMutexLocker locker(&m_grabberMutex); + + QSelectMutexGrabber lock(m_pipeEnds[1], &m_mutex, &m_selectCallMutex); m_waitCond.wakeAll(); } diff --git a/src/corelib/kernel/qeventdispatcher_symbian_p.h b/src/corelib/kernel/qeventdispatcher_symbian_p.h index 8a9c9a0..7021314 100644 --- a/src/corelib/kernel/qeventdispatcher_symbian_p.h +++ b/src/corelib/kernel/qeventdispatcher_symbian_p.h @@ -211,6 +211,26 @@ private: QMutex m_mutex; QWaitCondition m_waitCond; bool m_quit; + + // to protect when several + // requests like: + // requestSocketEvents + // cancelSocketEvents + // kick in the same time + // all will fight for m_mutex + // + // TODO: fix more elegantely + // + QMutex m_grabberMutex; + + // this one will tell + // if selectthread is + // really in select call + // and will prevent + // writing to pipe that + // causes later in locking + // of the thread in waitcond + QMutex m_selectCallMutex; }; class Q_CORE_EXPORT CQtActiveScheduler : public CActiveScheduler -- cgit v0.12 From 7afeed5e37c172a2a60b2d4610207243d238b0cb Mon Sep 17 00:00:00 2001 From: Janne Anttila Date: Wed, 19 May 2010 13:46:47 +0300 Subject: Fixed qsslkey test deployment for Symbian and fixed compiler warnings. Reviewed-by: Aleksandar Sasha Babic --- tests/auto/qsslkey/qsslkey.pro | 6 +++++- tests/auto/qsslkey/tst_qsslkey.cpp | 8 ++++---- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/tests/auto/qsslkey/qsslkey.pro b/tests/auto/qsslkey/qsslkey.pro index 32138f8..a78e184 100644 --- a/tests/auto/qsslkey/qsslkey.pro +++ b/tests/auto/qsslkey/qsslkey.pro @@ -17,7 +17,11 @@ win32 { wince*|symbian: { keyFiles.sources = keys keyFiles.path = . - DEPLOYMENT += keyFiles + + passphraseFiles.sources = rsa-without-passphrase.pem rsa-with-passphrase.pem + passphraseFiles.path = . + + DEPLOYMENT += keyFiles passphraseFiles } wince*: { diff --git a/tests/auto/qsslkey/tst_qsslkey.cpp b/tests/auto/qsslkey/tst_qsslkey.cpp index 3c8ae11..0e39919 100644 --- a/tests/auto/qsslkey/tst_qsslkey.cpp +++ b/tests/auto/qsslkey/tst_qsslkey.cpp @@ -50,7 +50,7 @@ #ifdef Q_OS_SYMBIAN // In Symbian OS test data is located in applications private dir // Current path (C:\private\) contains only ascii chars -#define SRCDIR QDir::currentPath().toAscii() +#define SRCDIR "." #endif class tst_QSslKey : public QObject @@ -167,9 +167,9 @@ void tst_QSslKey::emptyConstructor() QCOMPARE(key, key2); } -Q_DECLARE_METATYPE(QSsl::KeyAlgorithm); -Q_DECLARE_METATYPE(QSsl::KeyType); -Q_DECLARE_METATYPE(QSsl::EncodingFormat); +Q_DECLARE_METATYPE(QSsl::KeyAlgorithm) +Q_DECLARE_METATYPE(QSsl::KeyType) +Q_DECLARE_METATYPE(QSsl::EncodingFormat) void tst_QSslKey::createPlainTestRows() { -- cgit v0.12 From ddcdae43cf00b49522418c2ae65022de14186ef7 Mon Sep 17 00:00:00 2001 From: Janne Anttila Date: Wed, 19 May 2010 14:04:09 +0300 Subject: Removed double EINTR loop from nativeWrite and nativeRead. qt_safe_write and and qt_safe_read already contain EINTR_LOOP. It seems that this loop has been added to code due to merge/clean-up errors in commits: 4aafbd6222e7aeafd59a4a4356ba8c53b2bfa1d1 f0a8feed9e9b4de10df76faa350201edaef98f1d Reviewed-by: Aleksandar Sasha Babic Reviewed-by: Markus Goetz --- src/network/socket/qnativesocketengine_unix.cpp | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/src/network/socket/qnativesocketengine_unix.cpp b/src/network/socket/qnativesocketengine_unix.cpp index 354c944..6550a50 100644 --- a/src/network/socket/qnativesocketengine_unix.cpp +++ b/src/network/socket/qnativesocketengine_unix.cpp @@ -848,11 +848,7 @@ qint64 QNativeSocketEnginePrivate::nativeWrite(const char *data, qint64 len) // Symbian does not support signals natively and Open C returns EINTR when moving to offline writtenBytes = ::write(socketDescriptor, data, len); #else - // loop while ::write() returns -1 and errno == EINTR, in case - // of an interrupting signal. - do { - writtenBytes = qt_safe_write(socketDescriptor, data, len); - } while (writtenBytes < 0 && errno == EINTR); + writtenBytes = qt_safe_write(socketDescriptor, data, len); #endif if (writtenBytes < 0) { @@ -896,9 +892,7 @@ qint64 QNativeSocketEnginePrivate::nativeRead(char *data, qint64 maxSize) #ifdef Q_OS_SYMBIAN r = ::read(socketDescriptor, data, maxSize); #else - do { - r = qt_safe_read(socketDescriptor, data, maxSize); - } while (r == -1 && errno == EINTR); + r = qt_safe_read(socketDescriptor, data, maxSize); #endif if (r < 0) { -- cgit v0.12 From 17555ab77041d5b68972eab608fe98799e0789e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Trond=20Kjern=C3=A5sen?= Date: Fri, 21 May 2010 13:24:54 +0200 Subject: Call eglTerminate() when the last QEglContext is destroyed to free mem. We never called eglTerminate() to free memory allocated by eglInitialize() since it was a fixed allocation that would be used for the lifetime of an application. The new behavior is to call eglTerminate() when the last EGL context in the app is destroyed. Task-number: QT-3383 Reviewed-by: Rhys Weatherley --- src/gui/egl/qegl.cpp | 37 +++++++++++++++++++++++++++++++++---- 1 file changed, 33 insertions(+), 4 deletions(-) diff --git a/src/gui/egl/qegl.cpp b/src/gui/egl/qegl.cpp index ee19216..c16aeb1 100644 --- a/src/gui/egl/qegl.cpp +++ b/src/gui/egl/qegl.cpp @@ -42,11 +42,40 @@ #include #include #include +#include #include #include "qegl_p.h" QT_BEGIN_NAMESPACE + +/* + QEglContextTracker is used to track the EGL contexts that we + create internally in Qt, so that we can call eglTerminate() to + free additional EGL resources when the last context is destroyed. +*/ + +class QEglContextTracker +{ +public: + static void ref() { contexts.ref(); } + static void deref() { + if (!contexts.deref()) { + eglTerminate(QEglContext::display()); + displayOpen = 0; + } + } + static void setDisplayOpened() { displayOpen = 1; } + static bool displayOpened() { return displayOpen; } + +private: + static QAtomicInt contexts; + static QAtomicInt displayOpen; +}; + +QAtomicInt QEglContextTracker::contexts = 0; +QAtomicInt QEglContextTracker::displayOpen = 0; + // Current GL and VG contexts. These are used to determine if // we can avoid an eglMakeCurrent() after a call to lazyDoneCurrent(). // If a background thread modifies the value, the worst that will @@ -65,6 +94,7 @@ QEglContext::QEglContext() , ownsContext(true) , sharing(false) { + QEglContextTracker::ref(); } QEglContext::~QEglContext() @@ -75,6 +105,7 @@ QEglContext::~QEglContext() currentGLContext = 0; if (currentVGContext == this) currentVGContext = 0; + QEglContextTracker::deref(); } bool QEglContext::isValid() const @@ -361,11 +392,9 @@ QEglProperties QEglContext::configProperties(EGLConfig cfg) const EGLDisplay QEglContext::display() { - static bool openedDisplay = false; - - if (!openedDisplay) { + if (!QEglContextTracker::displayOpened()) { dpy = eglGetDisplay(nativeDisplay()); - openedDisplay = true; + QEglContextTracker::setDisplayOpened(); if (dpy == EGL_NO_DISPLAY) { qWarning("QEglContext::display(): Falling back to EGL_DEFAULT_DISPLAY"); dpy = eglGetDisplay(EGLNativeDisplayType(EGL_DEFAULT_DISPLAY)); -- cgit v0.12 From 38b3258d6d00988f63a8384632b1ba99bb84c892 Mon Sep 17 00:00:00 2001 From: Thiago Macieira Date: Fri, 21 May 2010 13:19:12 +0200 Subject: tst_bic: Add the Qt 4.5 and 4.6 baselines for x86-64 --- .../bic/data/Qt3Support.4.5.0.linux-gcc-amd64.txt | 24426 ++++++++++++++++++ .../bic/data/Qt3Support.4.6.0.linux-gcc-amd64.txt | 25521 +++++++++++++++++++ .../auto/bic/data/QtCore.4.5.0.linux-gcc-amd64.txt | 2343 ++ .../auto/bic/data/QtCore.4.6.0.linux-gcc-amd64.txt | 2624 ++ .../auto/bic/data/QtDBus.4.5.0.linux-gcc-amd64.txt | 2997 +++ .../auto/bic/data/QtDBus.4.6.0.linux-gcc-amd64.txt | 2894 +++ .../bic/data/QtDesigner.4.5.0.linux-gcc-amd64.txt | 4460 ++++ .../bic/data/QtDesigner.4.6.0.linux-gcc-amd64.txt | 4741 ++++ .../auto/bic/data/QtGui.4.5.0.linux-gcc-amd64.txt | 15618 ++++++++++++ .../auto/bic/data/QtGui.4.6.0.linux-gcc-amd64.txt | 16713 ++++++++++++ .../auto/bic/data/QtHelp.4.5.0.linux-gcc-amd64.txt | 6357 +++++ .../auto/bic/data/QtHelp.4.6.0.linux-gcc-amd64.txt | 5492 ++++ .../data/QtMultimedia.4.6.0.linux-gcc-amd64.txt | 17011 ++++++++++++ .../bic/data/QtNetwork.4.5.0.linux-gcc-amd64.txt | 3013 +++ .../bic/data/QtNetwork.4.6.0.linux-gcc-amd64.txt | 3294 +++ .../bic/data/QtOpenGL.4.5.0.linux-gcc-amd64.txt | 15777 ++++++++++++ .../bic/data/QtOpenGL.4.6.0.linux-gcc-amd64.txt | 16928 ++++++++++++ .../bic/data/QtScript.4.5.0.linux-gcc-amd64.txt | 2525 ++ .../bic/data/QtScript.4.6.0.linux-gcc-amd64.txt | 2811 ++ .../data/QtScriptTools.4.5.0.linux-gcc-amd64.txt | 15825 ++++++++++++ .../data/QtScriptTools.4.6.0.linux-gcc-amd64.txt | 16925 ++++++++++++ .../auto/bic/data/QtSql.4.5.0.linux-gcc-amd64.txt | 2735 ++ .../auto/bic/data/QtSql.4.6.0.linux-gcc-amd64.txt | 3016 +++ .../auto/bic/data/QtSvg.4.5.0.linux-gcc-amd64.txt | 15808 ++++++++++++ .../auto/bic/data/QtSvg.4.6.0.linux-gcc-amd64.txt | 16905 ++++++++++++ .../auto/bic/data/QtTest.4.5.0.linux-gcc-amd64.txt | 2404 ++ .../auto/bic/data/QtTest.4.6.0.linux-gcc-amd64.txt | 2812 ++ .../bic/data/QtWebKit.4.5.0.linux-gcc-amd64.txt | 3607 +++ .../bic/data/QtWebKit.4.6.0.linux-gcc-amd64.txt | 5837 +++++ .../auto/bic/data/QtXml.4.5.0.linux-gcc-amd64.txt | 2783 ++ .../auto/bic/data/QtXml.4.6.0.linux-gcc-amd64.txt | 3064 +++ .../data/QtXmlPatterns.4.5.0.linux-gcc-amd64.txt | 3270 +++ .../data/QtXmlPatterns.4.6.0.linux-gcc-amd64.txt | 3561 +++ .../auto/bic/data/phonon.4.5.0.linux-gcc-amd64.txt | 1931 ++ .../auto/bic/data/phonon.4.6.0.linux-gcc-amd64.txt | 1980 ++ 35 files changed, 278008 insertions(+) create mode 100644 tests/auto/bic/data/Qt3Support.4.5.0.linux-gcc-amd64.txt create mode 100644 tests/auto/bic/data/Qt3Support.4.6.0.linux-gcc-amd64.txt create mode 100644 tests/auto/bic/data/QtCore.4.5.0.linux-gcc-amd64.txt create mode 100644 tests/auto/bic/data/QtCore.4.6.0.linux-gcc-amd64.txt create mode 100644 tests/auto/bic/data/QtDBus.4.5.0.linux-gcc-amd64.txt create mode 100644 tests/auto/bic/data/QtDBus.4.6.0.linux-gcc-amd64.txt create mode 100644 tests/auto/bic/data/QtDesigner.4.5.0.linux-gcc-amd64.txt create mode 100644 tests/auto/bic/data/QtDesigner.4.6.0.linux-gcc-amd64.txt create mode 100644 tests/auto/bic/data/QtGui.4.5.0.linux-gcc-amd64.txt create mode 100644 tests/auto/bic/data/QtGui.4.6.0.linux-gcc-amd64.txt create mode 100644 tests/auto/bic/data/QtHelp.4.5.0.linux-gcc-amd64.txt create mode 100644 tests/auto/bic/data/QtHelp.4.6.0.linux-gcc-amd64.txt create mode 100644 tests/auto/bic/data/QtMultimedia.4.6.0.linux-gcc-amd64.txt create mode 100644 tests/auto/bic/data/QtNetwork.4.5.0.linux-gcc-amd64.txt create mode 100644 tests/auto/bic/data/QtNetwork.4.6.0.linux-gcc-amd64.txt create mode 100644 tests/auto/bic/data/QtOpenGL.4.5.0.linux-gcc-amd64.txt create mode 100644 tests/auto/bic/data/QtOpenGL.4.6.0.linux-gcc-amd64.txt create mode 100644 tests/auto/bic/data/QtScript.4.5.0.linux-gcc-amd64.txt create mode 100644 tests/auto/bic/data/QtScript.4.6.0.linux-gcc-amd64.txt create mode 100644 tests/auto/bic/data/QtScriptTools.4.5.0.linux-gcc-amd64.txt create mode 100644 tests/auto/bic/data/QtScriptTools.4.6.0.linux-gcc-amd64.txt create mode 100644 tests/auto/bic/data/QtSql.4.5.0.linux-gcc-amd64.txt create mode 100644 tests/auto/bic/data/QtSql.4.6.0.linux-gcc-amd64.txt create mode 100644 tests/auto/bic/data/QtSvg.4.5.0.linux-gcc-amd64.txt create mode 100644 tests/auto/bic/data/QtSvg.4.6.0.linux-gcc-amd64.txt create mode 100644 tests/auto/bic/data/QtTest.4.5.0.linux-gcc-amd64.txt create mode 100644 tests/auto/bic/data/QtTest.4.6.0.linux-gcc-amd64.txt create mode 100644 tests/auto/bic/data/QtWebKit.4.5.0.linux-gcc-amd64.txt create mode 100644 tests/auto/bic/data/QtWebKit.4.6.0.linux-gcc-amd64.txt create mode 100644 tests/auto/bic/data/QtXml.4.5.0.linux-gcc-amd64.txt create mode 100644 tests/auto/bic/data/QtXml.4.6.0.linux-gcc-amd64.txt create mode 100644 tests/auto/bic/data/QtXmlPatterns.4.5.0.linux-gcc-amd64.txt create mode 100644 tests/auto/bic/data/QtXmlPatterns.4.6.0.linux-gcc-amd64.txt create mode 100644 tests/auto/bic/data/phonon.4.5.0.linux-gcc-amd64.txt create mode 100644 tests/auto/bic/data/phonon.4.6.0.linux-gcc-amd64.txt diff --git a/tests/auto/bic/data/Qt3Support.4.5.0.linux-gcc-amd64.txt b/tests/auto/bic/data/Qt3Support.4.5.0.linux-gcc-amd64.txt new file mode 100644 index 0000000..fc448c7 --- /dev/null +++ b/tests/auto/bic/data/Qt3Support.4.5.0.linux-gcc-amd64.txt @@ -0,0 +1,24426 @@ +Class QSysInfo + size=1 align=1 + base size=0 base align=1 +QSysInfo (0x7fea180a7460) 0 empty + +Class QBool + size=1 align=1 + base size=1 base align=1 +QBool (0x7fea180be150) 0 + +Class qIsNull(double)::U + size=8 align=8 + base size=8 base align=8 +qIsNull(double)::U (0x7fea180d5540) 0 + +Class qIsNull(float)::U + size=4 align=4 + base size=4 base align=4 +qIsNull(float)::U (0x7fea180d57e0) 0 + +Class QFlag + size=4 align=4 + base size=4 base align=4 +QFlag (0x7fea1810c620) 0 + +Class QIncompatibleFlag + size=4 align=4 + base size=4 base align=4 +QIncompatibleFlag (0x7fea1810ce00) 0 + +Class QInternal + size=1 align=1 + base size=0 base align=1 +QInternal (0x7fea16e8a540) 0 empty + +Class QGenericArgument + size=16 align=8 + base size=16 base align=8 +QGenericArgument (0x7fea16e8a850) 0 + +Class QGenericReturnArgument + size=16 align=8 + base size=16 base align=8 +QGenericReturnArgument (0x7fea16ea53f0) 0 + QGenericArgument (0x7fea16ea5460) 0 + +Class QMetaObject + size=32 align=8 + base size=32 base align=8 +QMetaObject (0x7fea16ea5cb0) 0 + +Class QMetaObjectExtraData + size=16 align=8 + base size=16 base align=8 +QMetaObjectExtraData (0x7fea16ccccb0) 0 + +Class QLatin1Char + size=1 align=1 + base size=1 base align=1 +QLatin1Char (0x7fea16cd5700) 0 + +Class QChar + size=2 align=2 + base size=2 base align=2 +QChar (0x7fea16cdc2a0) 0 + +Class QBasicAtomicInt + size=4 align=4 + base size=4 base align=4 +QBasicAtomicInt (0x7fea16d49380) 0 + +Class QAtomicInt + size=4 align=4 + base size=4 base align=4 +QAtomicInt (0x7fea16d86d20) 0 + QBasicAtomicInt (0x7fea16d86d90) 0 + +Class __locale_struct + size=232 align=8 + base size=232 base align=8 +__locale_struct (0x7fea16daa1c0) 0 + +Class QByteArray::Data + size=32 align=8 + base size=32 base align=8 +QByteArray::Data (0x7fea16c217e0) 0 + +Class QByteArray + size=8 align=8 + base size=8 base align=8 +QByteArray (0x7fea16bde540) 0 + +Class QByteRef + size=16 align=8 + base size=12 base align=8 +QByteRef (0x7fea16c77a80) 0 + +Class QString::Null + size=1 align=1 + base size=0 base align=1 +QString::Null (0x7fea16b81700) 0 empty + +Class QString::Data + size=32 align=8 + base size=32 base align=8 +QString::Data (0x7fea16b91ee0) 0 + +Class QString + size=8 align=8 + base size=8 base align=8 +QString (0x7fea16b005b0) 0 + +Class QLatin1String + size=8 align=8 + base size=8 base align=8 +QLatin1String (0x7fea16a6a000) 0 + +Class QCharRef + size=16 align=8 + base size=12 base align=8 +QCharRef (0x7fea168ff620) 0 + +Class QConstString + size=8 align=8 + base size=8 base align=8 +QConstString (0x7fea16848ee0) 0 + QString (0x7fea16848f50) 0 + +Class QStringRef + size=16 align=8 + base size=16 base align=8 +QStringRef (0x7fea16869bd0) 0 + +Vtable for std::exception +std::exception::_ZTVSt9exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9exception) +16 std::exception::~exception +24 std::exception::~exception +32 std::exception::what + +Class std::exception + size=8 align=8 + base size=8 base align=8 +std::exception (0x7fea16723620) 0 nearly-empty + vptr=((& std::exception::_ZTVSt9exception) + 16u) + +Vtable for std::bad_exception +std::bad_exception::_ZTVSt13bad_exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13bad_exception) +16 std::bad_exception::~bad_exception +24 std::bad_exception::~bad_exception +32 std::bad_exception::what + +Class std::bad_exception + size=8 align=8 + base size=8 base align=8 +std::bad_exception (0x7fea16745000) 0 nearly-empty + vptr=((& std::bad_exception::_ZTVSt13bad_exception) + 16u) + std::exception (0x7fea16745070) 0 nearly-empty + primary-for std::bad_exception (0x7fea16745000) + +Vtable for std::bad_alloc +std::bad_alloc::_ZTVSt9bad_alloc: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9bad_alloc) +16 std::bad_alloc::~bad_alloc +24 std::bad_alloc::~bad_alloc +32 std::bad_alloc::what + +Class std::bad_alloc + size=8 align=8 + base size=8 base align=8 +std::bad_alloc (0x7fea167458c0) 0 nearly-empty + vptr=((& std::bad_alloc::_ZTVSt9bad_alloc) + 16u) + std::exception (0x7fea16745930) 0 nearly-empty + primary-for std::bad_alloc (0x7fea167458c0) + +Class std::nothrow_t + size=1 align=1 + base size=0 base align=1 +std::nothrow_t (0x7fea167580e0) 0 empty + +Class QListData::Data + size=32 align=8 + base size=32 base align=8 +QListData::Data (0x7fea16758620) 0 + +Class QListData + size=8 align=8 + base size=8 base align=8 +QListData (0x7fea167585b0) 0 + +Vtable for QObjectData +QObjectData::_ZTV11QObjectData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QObjectData) +16 __cxa_pure_virtual +24 __cxa_pure_virtual + +Class QObjectData + size=40 align=8 + base size=40 base align=8 +QObjectData (0x7fea1665dbd0) 0 + vptr=((& QObjectData::_ZTV11QObjectData) + 16u) + +Vtable for QObject +QObject::_ZTV7QObject: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QObject) +16 QObject::metaObject +24 QObject::qt_metacast +32 QObject::qt_metacall +40 QObject::~QObject +48 QObject::~QObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObject + size=16 align=8 + base size=16 base align=8 +QObject (0x7fea1665dee0) 0 + vptr=((& QObject::_ZTV7QObject) + 16u) + +Vtable for QObjectUserData +QObjectUserData::_ZTV15QObjectUserData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QObjectUserData) +16 QObjectUserData::~QObjectUserData +24 QObjectUserData::~QObjectUserData + +Class QObjectUserData + size=8 align=8 + base size=8 base align=8 +QObjectUserData (0x7fea164eb3f0) 0 nearly-empty + vptr=((& QObjectUserData::_ZTV15QObjectUserData) + 16u) + +Vtable for QIODevice +QIODevice::_ZTV9QIODevice: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QIODevice) +16 QIODevice::metaObject +24 QIODevice::qt_metacast +32 QIODevice::qt_metacall +40 QIODevice::~QIODevice +48 QIODevice::~QIODevice +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QIODevice::isSequential +120 QIODevice::open +128 QIODevice::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QIODevice::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 __cxa_pure_virtual +224 QIODevice::readLineData +232 __cxa_pure_virtual + +Class QIODevice + size=16 align=8 + base size=16 base align=8 +QIODevice (0x7fea164eb930) 0 + vptr=((& QIODevice::_ZTV9QIODevice) + 16u) + QObject (0x7fea164eb9a0) 0 + primary-for QIODevice (0x7fea164eb930) + +Vtable for QDataStream +QDataStream::_ZTV11QDataStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QDataStream) +16 QDataStream::~QDataStream +24 QDataStream::~QDataStream + +Class QDataStream + size=40 align=8 + base size=40 base align=8 +QDataStream (0x7fea165622a0) 0 + vptr=((& QDataStream::_ZTV11QDataStream) + 16u) + +Class QHashData::Node + size=16 align=8 + base size=16 base align=8 +QHashData::Node (0x7fea163e9150) 0 + +Class QHashData + size=40 align=8 + base size=40 base align=8 +QHashData (0x7fea163e90e0) 0 + +Class QHashDummyValue + size=1 align=1 + base size=0 base align=1 +QHashDummyValue (0x7fea163f8ee0) 0 empty + +Class QMapData::Node + size=16 align=8 + base size=16 base align=8 +QMapData::Node (0x7fea1630c690) 0 + +Class QMapData + size=128 align=8 + base size=128 base align=8 +QMapData (0x7fea1630c620) 0 + +Vtable for QSystemLocale +QSystemLocale::_ZTV13QSystemLocale: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSystemLocale) +16 QSystemLocale::~QSystemLocale +24 QSystemLocale::~QSystemLocale +32 QSystemLocale::query +40 QSystemLocale::fallbackLocale + +Class QSystemLocale + size=8 align=8 + base size=8 base align=8 +QSystemLocale (0x7fea1621ee00) 0 nearly-empty + vptr=((& QSystemLocale::_ZTV13QSystemLocale) + 16u) + +Class QLocale::Data + size=4 align=2 + base size=4 base align=2 +QLocale::Data (0x7fea1627d3f0) 0 + +Class QLocale + size=8 align=8 + base size=8 base align=8 +QLocale (0x7fea162420e0) 0 + +Class QTextCodec::ConverterState + size=32 align=8 + base size=32 base align=8 +QTextCodec::ConverterState (0x7fea160cce70) 0 + +Vtable for QTextCodec +QTextCodec::_ZTV10QTextCodec: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextCodec) +16 __cxa_pure_virtual +24 QTextCodec::aliases +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QTextCodec::~QTextCodec +64 QTextCodec::~QTextCodec + +Class QTextCodec + size=8 align=8 + base size=8 base align=8 +QTextCodec (0x7fea160b3a80) 0 nearly-empty + vptr=((& QTextCodec::_ZTV10QTextCodec) + 16u) + +Class QTextEncoder + size=40 align=8 + base size=40 base align=8 +QTextEncoder (0x7fea161373f0) 0 + +Class QTextDecoder + size=40 align=8 + base size=40 base align=8 +QTextDecoder (0x7fea16140230) 0 + +Class _IO_marker + size=24 align=8 + base size=24 base align=8 +_IO_marker (0x7fea1614a2a0) 0 + +Class _IO_FILE + size=216 align=8 + base size=216 base align=8 +_IO_FILE (0x7fea1614a310) 0 + +Vtable for QTextStream +QTextStream::_ZTV11QTextStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTextStream) +16 QTextStream::~QTextStream +24 QTextStream::~QTextStream + +Class QTextStream + size=16 align=8 + base size=16 base align=8 +QTextStream (0x7fea1614a3f0) 0 + vptr=((& QTextStream::_ZTV11QTextStream) + 16u) + +Class QTextStreamManipulator + size=40 align=8 + base size=38 base align=8 +QTextStreamManipulator (0x7fea15fe2ee0) 0 + +Vtable for QTextIStream +QTextIStream::_ZTV12QTextIStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextIStream) +16 QTextIStream::~QTextIStream +24 QTextIStream::~QTextIStream + +Class QTextIStream + size=16 align=8 + base size=16 base align=8 +QTextIStream (0x7fea1600c1c0) 0 + vptr=((& QTextIStream::_ZTV12QTextIStream) + 16u) + QTextStream (0x7fea1600c230) 0 + primary-for QTextIStream (0x7fea1600c1c0) + +Vtable for QTextOStream +QTextOStream::_ZTV12QTextOStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextOStream) +16 QTextOStream::~QTextOStream +24 QTextOStream::~QTextOStream + +Class QTextOStream + size=16 align=8 + base size=16 base align=8 +QTextOStream (0x7fea16024070) 0 + vptr=((& QTextOStream::_ZTV12QTextOStream) + 16u) + QTextStream (0x7fea160240e0) 0 + primary-for QTextOStream (0x7fea16024070) + +Class wait + size=4 align=4 + base size=4 base align=4 +wait (0x7fea16030ee0) 0 + +Class timespec + size=16 align=8 + base size=16 base align=8 +timespec (0x7fea1603c230) 0 + +Class timeval + size=16 align=8 + base size=16 base align=8 +timeval (0x7fea1603c2a0) 0 + +Class __pthread_internal_list + size=16 align=8 + base size=16 base align=8 +__pthread_internal_list (0x7fea1603c3f0) 0 + +Class random_data + size=48 align=8 + base size=48 base align=8 +random_data (0x7fea1603c9a0) 0 + +Class drand48_data + size=24 align=8 + base size=24 base align=8 +drand48_data (0x7fea1603ca10) 0 + +Class QVectorData + size=16 align=4 + base size=16 base align=4 +QVectorData (0x7fea1603ca80) 0 + +Class QDebug::Stream + size=40 align=8 + base size=34 base align=8 +QDebug::Stream (0x7fea15db9230) 0 + +Class QDebug + size=8 align=8 + base size=8 base align=8 +QDebug (0x7fea15db91c0) 0 + +Class QNoDebug + size=1 align=1 + base size=0 base align=1 +QNoDebug (0x7fea15e56070) 0 empty + +Vtable for QFile +QFile::_ZTV5QFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QFile) +16 QFile::metaObject +24 QFile::qt_metacast +32 QFile::qt_metacall +40 QFile::~QFile +48 QFile::~QFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QFile::fileEngine + +Class QFile + size=16 align=8 + base size=16 base align=8 +QFile (0x7fea15e68620) 0 + vptr=((& QFile::_ZTV5QFile) + 16u) + QIODevice (0x7fea15e68690) 0 + primary-for QFile (0x7fea15e68620) + QObject (0x7fea15e68700) 0 + primary-for QIODevice (0x7fea15e68690) + +Vtable for QTemporaryFile +QTemporaryFile::_ZTV14QTemporaryFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QTemporaryFile) +16 QTemporaryFile::metaObject +24 QTemporaryFile::qt_metacast +32 QTemporaryFile::qt_metacall +40 QTemporaryFile::~QTemporaryFile +48 QTemporaryFile::~QTemporaryFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QTemporaryFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QTemporaryFile::fileEngine + +Class QTemporaryFile + size=16 align=8 + base size=16 base align=8 +QTemporaryFile (0x7fea15cd1850) 0 + vptr=((& QTemporaryFile::_ZTV14QTemporaryFile) + 16u) + QFile (0x7fea15cd18c0) 0 + primary-for QTemporaryFile (0x7fea15cd1850) + QIODevice (0x7fea15cd1930) 0 + primary-for QFile (0x7fea15cd18c0) + QObject (0x7fea15cd19a0) 0 + primary-for QIODevice (0x7fea15cd1930) + +Class QFileInfo + size=8 align=8 + base size=8 base align=8 +QFileInfo (0x7fea15cf3f50) 0 + +Class QRegExp + size=8 align=8 + base size=8 base align=8 +QRegExp (0x7fea15d4f770) 0 + +Class QStringMatcher + size=1048 align=8 + base size=1048 base align=8 +QStringMatcher (0x7fea15d9c5b0) 0 + +Class QStringList + size=8 align=8 + base size=8 base align=8 +QStringList (0x7fea15bad070) 0 + QList (0x7fea15bad0e0) 0 + +Class QDir + size=8 align=8 + base size=8 base align=8 +QDir (0x7fea15c3ecb0) 0 + +Class QAbstractFileEngine::ExtensionOption + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionOption (0x7fea15ad5e70) 0 empty + +Class QAbstractFileEngine::ExtensionReturn + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionReturn (0x7fea15ad5ee0) 0 empty + +Class QAbstractFileEngine::MapExtensionOption + size=24 align=8 + base size=20 base align=8 +QAbstractFileEngine::MapExtensionOption (0x7fea15ad5f50) 0 + QAbstractFileEngine::ExtensionOption (0x7fea15aeb000) 0 empty + +Class QAbstractFileEngine::MapExtensionReturn + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::MapExtensionReturn (0x7fea15aeb1c0) 0 + QAbstractFileEngine::ExtensionReturn (0x7fea15aeb230) 0 empty + +Class QAbstractFileEngine::UnMapExtensionOption + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::UnMapExtensionOption (0x7fea15aeb2a0) 0 + QAbstractFileEngine::ExtensionOption (0x7fea15aeb310) 0 empty + +Vtable for QAbstractFileEngine +QAbstractFileEngine::_ZTV19QAbstractFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractFileEngine) +16 QAbstractFileEngine::~QAbstractFileEngine +24 QAbstractFileEngine::~QAbstractFileEngine +32 QAbstractFileEngine::open +40 QAbstractFileEngine::close +48 QAbstractFileEngine::flush +56 QAbstractFileEngine::size +64 QAbstractFileEngine::pos +72 QAbstractFileEngine::seek +80 QAbstractFileEngine::isSequential +88 QAbstractFileEngine::remove +96 QAbstractFileEngine::copy +104 QAbstractFileEngine::rename +112 QAbstractFileEngine::link +120 QAbstractFileEngine::mkdir +128 QAbstractFileEngine::rmdir +136 QAbstractFileEngine::setSize +144 QAbstractFileEngine::caseSensitive +152 QAbstractFileEngine::isRelativePath +160 QAbstractFileEngine::entryList +168 QAbstractFileEngine::fileFlags +176 QAbstractFileEngine::setPermissions +184 QAbstractFileEngine::fileName +192 QAbstractFileEngine::ownerId +200 QAbstractFileEngine::owner +208 QAbstractFileEngine::fileTime +216 QAbstractFileEngine::setFileName +224 QAbstractFileEngine::handle +232 QAbstractFileEngine::beginEntryList +240 QAbstractFileEngine::endEntryList +248 QAbstractFileEngine::read +256 QAbstractFileEngine::readLine +264 QAbstractFileEngine::write +272 QAbstractFileEngine::extension +280 QAbstractFileEngine::supportsExtension + +Class QAbstractFileEngine + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngine (0x7fea15ac8e00) 0 + vptr=((& QAbstractFileEngine::_ZTV19QAbstractFileEngine) + 16u) + +Vtable for QAbstractFileEngineHandler +QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QAbstractFileEngineHandler) +16 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +24 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +32 __cxa_pure_virtual + +Class QAbstractFileEngineHandler + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngineHandler (0x7fea15b1b000) 0 nearly-empty + vptr=((& QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler) + 16u) + +Vtable for QAbstractFileEngineIterator +QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QAbstractFileEngineIterator) +16 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +24 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QAbstractFileEngineIterator::currentFileInfo +64 QAbstractFileEngineIterator::entryInfo + +Class QAbstractFileEngineIterator + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngineIterator (0x7fea15b1b1c0) 0 + vptr=((& QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator) + 16u) + +Vtable for QFSFileEngine +QFSFileEngine::_ZTV13QFSFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QFSFileEngine) +16 QFSFileEngine::~QFSFileEngine +24 QFSFileEngine::~QFSFileEngine +32 QFSFileEngine::open +40 QFSFileEngine::close +48 QFSFileEngine::flush +56 QFSFileEngine::size +64 QFSFileEngine::pos +72 QFSFileEngine::seek +80 QFSFileEngine::isSequential +88 QFSFileEngine::remove +96 QFSFileEngine::copy +104 QFSFileEngine::rename +112 QFSFileEngine::link +120 QFSFileEngine::mkdir +128 QFSFileEngine::rmdir +136 QFSFileEngine::setSize +144 QFSFileEngine::caseSensitive +152 QFSFileEngine::isRelativePath +160 QFSFileEngine::entryList +168 QFSFileEngine::fileFlags +176 QFSFileEngine::setPermissions +184 QFSFileEngine::fileName +192 QFSFileEngine::ownerId +200 QFSFileEngine::owner +208 QFSFileEngine::fileTime +216 QFSFileEngine::setFileName +224 QFSFileEngine::handle +232 QFSFileEngine::beginEntryList +240 QFSFileEngine::endEntryList +248 QFSFileEngine::read +256 QFSFileEngine::readLine +264 QFSFileEngine::write +272 QFSFileEngine::extension +280 QFSFileEngine::supportsExtension + +Class QFSFileEngine + size=16 align=8 + base size=16 base align=8 +QFSFileEngine (0x7fea15b1ba10) 0 + vptr=((& QFSFileEngine::_ZTV13QFSFileEngine) + 16u) + QAbstractFileEngine (0x7fea15b1ba80) 0 + primary-for QFSFileEngine (0x7fea15b1ba10) + +Vtable for QProcess +QProcess::_ZTV8QProcess: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QProcess) +16 QProcess::metaObject +24 QProcess::qt_metacast +32 QProcess::qt_metacall +40 QProcess::~QProcess +48 QProcess::~QProcess +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QProcess::isSequential +120 QIODevice::open +128 QProcess::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QProcess::atEnd +168 QIODevice::reset +176 QProcess::bytesAvailable +184 QProcess::bytesToWrite +192 QProcess::canReadLine +200 QProcess::waitForReadyRead +208 QProcess::waitForBytesWritten +216 QProcess::readData +224 QIODevice::readLineData +232 QProcess::writeData +240 QProcess::setupChildProcess + +Class QProcess + size=16 align=8 + base size=16 base align=8 +QProcess (0x7fea15b32d20) 0 + vptr=((& QProcess::_ZTV8QProcess) + 16u) + QIODevice (0x7fea15b32d90) 0 + primary-for QProcess (0x7fea15b32d20) + QObject (0x7fea15b32e00) 0 + primary-for QIODevice (0x7fea15b32d90) + +Class QResource + size=8 align=8 + base size=8 base align=8 +QResource (0x7fea15b6e230) 0 + +Vtable for QDirIterator +QDirIterator::_ZTV12QDirIterator: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QDirIterator) +16 QDirIterator::~QDirIterator +24 QDirIterator::~QDirIterator + +Class QDirIterator + size=16 align=8 + base size=16 base align=8 +QDirIterator (0x7fea15b6ecb0) 0 + vptr=((& QDirIterator::_ZTV12QDirIterator) + 16u) + +Vtable for QBuffer +QBuffer::_ZTV7QBuffer: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QBuffer) +16 QBuffer::metaObject +24 QBuffer::qt_metacast +32 QBuffer::qt_metacall +40 QBuffer::~QBuffer +48 QBuffer::~QBuffer +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QBuffer::connectNotify +104 QBuffer::disconnectNotify +112 QIODevice::isSequential +120 QBuffer::open +128 QBuffer::close +136 QBuffer::pos +144 QBuffer::size +152 QBuffer::seek +160 QBuffer::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QBuffer::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QBuffer::readData +224 QIODevice::readLineData +232 QBuffer::writeData + +Class QBuffer + size=16 align=8 + base size=16 base align=8 +QBuffer (0x7fea15ba0a80) 0 + vptr=((& QBuffer::_ZTV7QBuffer) + 16u) + QIODevice (0x7fea15ba0af0) 0 + primary-for QBuffer (0x7fea15ba0a80) + QObject (0x7fea15ba0b60) 0 + primary-for QIODevice (0x7fea15ba0af0) + +Vtable for QFileSystemWatcher +QFileSystemWatcher::_ZTV18QFileSystemWatcher: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFileSystemWatcher) +16 QFileSystemWatcher::metaObject +24 QFileSystemWatcher::qt_metacast +32 QFileSystemWatcher::qt_metacall +40 QFileSystemWatcher::~QFileSystemWatcher +48 QFileSystemWatcher::~QFileSystemWatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QFileSystemWatcher + size=16 align=8 + base size=16 base align=8 +QFileSystemWatcher (0x7fea159c6690) 0 + vptr=((& QFileSystemWatcher::_ZTV18QFileSystemWatcher) + 16u) + QObject (0x7fea159c6700) 0 + primary-for QFileSystemWatcher (0x7fea159c6690) + +Class QUrl + size=8 align=8 + base size=8 base align=8 +QUrl (0x7fea159d9bd0) 0 + +Class QMetaType + size=1 align=1 + base size=0 base align=1 +QMetaType (0x7fea15a633f0) 0 empty + +Class QVariant::PrivateShared + size=16 align=8 + base size=12 base align=8 +QVariant::PrivateShared (0x7fea15936930) 0 + +Class QVariant::Private::Data + size=8 align=8 + base size=8 base align=8 +QVariant::Private::Data (0x7fea15936c40) 0 + +Class QVariant::Private + size=16 align=8 + base size=12 base align=8 +QVariant::Private (0x7fea15936a10) 0 + +Class QVariant::Handler + size=72 align=8 + base size=72 base align=8 +QVariant::Handler (0x7fea15946930) 0 + +Class QVariant + size=16 align=8 + base size=16 base align=8 +QVariant (0x7fea15905af0) 0 + +Class QVariantComparisonHelper + size=8 align=8 + base size=8 base align=8 +QVariantComparisonHelper (0x7fea157e9cb0) 0 + +Vtable for QSettings +QSettings::_ZTV9QSettings: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QSettings) +16 QSettings::metaObject +24 QSettings::qt_metacast +32 QSettings::qt_metacall +40 QSettings::~QSettings +48 QSettings::~QSettings +56 QSettings::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSettings + size=16 align=8 + base size=16 base align=8 +QSettings (0x7fea15810cb0) 0 + vptr=((& QSettings::_ZTV9QSettings) + 16u) + QObject (0x7fea15810d20) 0 + primary-for QSettings (0x7fea15810cb0) + +Class QXmlStreamStringRef + size=16 align=8 + base size=16 base align=8 +QXmlStreamStringRef (0x7fea15893070) 0 + +Class QXmlStreamAttribute + size=80 align=8 + base size=73 base align=8 +QXmlStreamAttribute (0x7fea156b0850) 0 + +Class QXmlStreamAttributes + size=8 align=8 + base size=8 base align=8 +QXmlStreamAttributes (0x7fea156d9380) 0 + QVector (0x7fea156d93f0) 0 + +Class QXmlStreamNamespaceDeclaration + size=40 align=8 + base size=40 base align=8 +QXmlStreamNamespaceDeclaration (0x7fea156d9850) 0 + +Class QXmlStreamNotationDeclaration + size=56 align=8 + base size=56 base align=8 +QXmlStreamNotationDeclaration (0x7fea157181c0) 0 + +Class QXmlStreamEntityDeclaration + size=88 align=8 + base size=88 base align=8 +QXmlStreamEntityDeclaration (0x7fea15739070) 0 + +Vtable for QXmlStreamEntityResolver +QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QXmlStreamEntityResolver) +16 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +24 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +32 QXmlStreamEntityResolver::resolveEntity +40 QXmlStreamEntityResolver::resolveUndeclaredEntity + +Class QXmlStreamEntityResolver + size=8 align=8 + base size=8 base align=8 +QXmlStreamEntityResolver (0x7fea157529a0) 0 nearly-empty + vptr=((& QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver) + 16u) + +Class QXmlStreamReader + size=8 align=8 + base size=8 base align=8 +QXmlStreamReader (0x7fea15752b60) 0 + +Class QXmlStreamWriter + size=8 align=8 + base size=8 base align=8 +QXmlStreamWriter (0x7fea15790a10) 0 + +Class QPoint + size=8 align=4 + base size=8 base align=4 +QPoint (0x7fea155ce150) 0 + +Class QPointF + size=16 align=8 + base size=16 base align=8 +QPointF (0x7fea15604d90) 0 + +Class QLine + size=16 align=4 + base size=16 base align=4 +QLine (0x7fea15641bd0) 0 + +Class QLineF + size=32 align=8 + base size=32 base align=8 +QLineF (0x7fea1567da80) 0 + +Class QSize + size=8 align=4 + base size=8 base align=4 +QSize (0x7fea154d8540) 0 + +Class QSizeF + size=16 align=8 + base size=16 base align=8 +QSizeF (0x7fea15524380) 0 + +Class QRect + size=16 align=4 + base size=16 base align=4 +QRect (0x7fea1556f9a0) 0 + +Class QRectF + size=32 align=8 + base size=32 base align=8 +QRectF (0x7fea15427380) 0 + +Class QSharedData + size=4 align=4 + base size=4 base align=4 +QSharedData (0x7fea152ca150) 0 + +Vtable for QtSharedPointer::ExternalRefCountData +QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN15QtSharedPointer20ExternalRefCountDataE) +16 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +24 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +32 QtSharedPointer::ExternalRefCountData::destroy + +Class QtSharedPointer::ExternalRefCountData + size=16 align=8 + base size=16 base align=8 +QtSharedPointer::ExternalRefCountData (0x7fea152faaf0) 0 + vptr=((& QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE) + 16u) + +Class QLinkedListData + size=32 align=8 + base size=32 base align=8 +QLinkedListData (0x7fea15380c40) 0 + +Class QBitArray + size=8 align=8 + base size=8 base align=8 +QBitArray (0x7fea1524cb60) 0 + +Class QBitRef + size=16 align=8 + base size=12 base align=8 +QBitRef (0x7fea150c1930) 0 + +Class QByteArrayMatcher + size=1040 align=8 + base size=1040 base align=8 +QByteArrayMatcher (0x7fea150dc310) 0 + +Class QCryptographicHash + size=8 align=8 + base size=8 base align=8 +QCryptographicHash (0x7fea150efa10) 0 + +Class QTextBoundaryFinder + size=48 align=8 + base size=48 base align=8 +QTextBoundaryFinder (0x7fea1511c460) 0 + +Class QDate + size=4 align=4 + base size=4 base align=4 +QDate (0x7fea151317e0) 0 + +Class QTime + size=4 align=4 + base size=4 base align=4 +QTime (0x7fea15159770) 0 + +Class QDateTime + size=8 align=8 + base size=8 base align=8 +QDateTime (0x7fea15178d20) 0 + +Vtable for QTimeLine +QTimeLine::_ZTV9QTimeLine: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTimeLine) +16 QTimeLine::metaObject +24 QTimeLine::qt_metacast +32 QTimeLine::qt_metacall +40 QTimeLine::~QTimeLine +48 QTimeLine::~QTimeLine +56 QObject::event +64 QObject::eventFilter +72 QTimeLine::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTimeLine::valueForTime + +Class QTimeLine + size=16 align=8 + base size=16 base align=8 +QTimeLine (0x7fea14fab1c0) 0 + vptr=((& QTimeLine::_ZTV9QTimeLine) + 16u) + QObject (0x7fea14fab230) 0 + primary-for QTimeLine (0x7fea14fab1c0) + +Vtable for QRunnable +QRunnable::_ZTV9QRunnable: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QRunnable) +16 __cxa_pure_virtual +24 QRunnable::~QRunnable +32 QRunnable::~QRunnable + +Class QRunnable + size=16 align=8 + base size=12 base align=8 +QRunnable (0x7fea14fd3070) 0 + vptr=((& QRunnable::_ZTV9QRunnable) + 16u) + +Class QMutex + size=8 align=8 + base size=8 base align=8 +QMutex (0x7fea14fde700) 0 + +Class QMutexLocker + size=8 align=8 + base size=8 base align=8 +QMutexLocker (0x7fea14fef2a0) 0 + +Vtable for QtConcurrent::Exception +QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent9ExceptionE) +16 QtConcurrent::Exception::~Exception +24 QtConcurrent::Exception::~Exception +32 std::exception::what +40 QtConcurrent::Exception::raise +48 QtConcurrent::Exception::clone + +Class QtConcurrent::Exception + size=8 align=8 + base size=8 base align=8 +QtConcurrent::Exception (0x7fea150055b0) 0 nearly-empty + vptr=((& QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE) + 16u) + std::exception (0x7fea15005620) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7fea150055b0) + +Vtable for QtConcurrent::UnhandledException +QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent18UnhandledExceptionE) +16 QtConcurrent::UnhandledException::~UnhandledException +24 QtConcurrent::UnhandledException::~UnhandledException +32 std::exception::what +40 QtConcurrent::UnhandledException::raise +48 QtConcurrent::UnhandledException::clone + +Class QtConcurrent::UnhandledException + size=8 align=8 + base size=8 base align=8 +QtConcurrent::UnhandledException (0x7fea15005850) 0 nearly-empty + vptr=((& QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE) + 16u) + QtConcurrent::Exception (0x7fea150058c0) 0 nearly-empty + primary-for QtConcurrent::UnhandledException (0x7fea15005850) + std::exception (0x7fea15005930) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7fea150058c0) + +Class QtConcurrent::internal::ExceptionHolder + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionHolder (0x7fea15005b60) 0 + +Class QtConcurrent::internal::ExceptionStore + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionStore (0x7fea15005ee0) 0 + +Class QtConcurrent::ResultItem + size=16 align=8 + base size=16 base align=8 +QtConcurrent::ResultItem (0x7fea15005f50) 0 + +Class QtConcurrent::ResultIteratorBase + size=16 align=8 + base size=12 base align=8 +QtConcurrent::ResultIteratorBase (0x7fea1501be70) 0 + +Vtable for QtConcurrent::ResultStoreBase +QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent15ResultStoreBaseE) +16 QtConcurrent::ResultStoreBase::~ResultStoreBase +24 QtConcurrent::ResultStoreBase::~ResultStoreBase + +Class QtConcurrent::ResultStoreBase + size=48 align=8 + base size=44 base align=8 +QtConcurrent::ResultStoreBase (0x7fea15020a10) 0 + vptr=((& QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE) + 16u) + +Vtable for QFutureInterfaceBase +QFutureInterfaceBase::_ZTV20QFutureInterfaceBase: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QFutureInterfaceBase) +16 QFutureInterfaceBase::~QFutureInterfaceBase +24 QFutureInterfaceBase::~QFutureInterfaceBase + +Class QFutureInterfaceBase + size=16 align=8 + base size=16 base align=8 +QFutureInterfaceBase (0x7fea15061e70) 0 + vptr=((& QFutureInterfaceBase::_ZTV20QFutureInterfaceBase) + 16u) + +Vtable for QThread +QThread::_ZTV7QThread: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QThread) +16 QThread::metaObject +24 QThread::qt_metacast +32 QThread::qt_metacall +40 QThread::~QThread +48 QThread::~QThread +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QThread::run + +Class QThread + size=16 align=8 + base size=16 base align=8 +QThread (0x7fea14f43e00) 0 + vptr=((& QThread::_ZTV7QThread) + 16u) + QObject (0x7fea14f43e70) 0 + primary-for QThread (0x7fea14f43e00) + +Vtable for QThreadPool +QThreadPool::_ZTV11QThreadPool: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QThreadPool) +16 QThreadPool::metaObject +24 QThreadPool::qt_metacast +32 QThreadPool::qt_metacall +40 QThreadPool::~QThreadPool +48 QThreadPool::~QThreadPool +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QThreadPool + size=16 align=8 + base size=16 base align=8 +QThreadPool (0x7fea14f76cb0) 0 + vptr=((& QThreadPool::_ZTV11QThreadPool) + 16u) + QObject (0x7fea14f76d20) 0 + primary-for QThreadPool (0x7fea14f76cb0) + +Class QWaitCondition + size=8 align=8 + base size=8 base align=8 +QWaitCondition (0x7fea14d91540) 0 + +Class QtConcurrent::ThreadEngineSemaphore + size=24 align=8 + base size=24 base align=8 +QtConcurrent::ThreadEngineSemaphore (0x7fea14d91a80) 0 + +Vtable for QtConcurrent::ThreadEngineBase +QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent16ThreadEngineBaseE) +16 QtConcurrent::ThreadEngineBase::run +24 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +32 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +40 QtConcurrent::ThreadEngineBase::start +48 QtConcurrent::ThreadEngineBase::finish +56 QtConcurrent::ThreadEngineBase::threadFunction +64 QtConcurrent::ThreadEngineBase::shouldStartThread +72 QtConcurrent::ThreadEngineBase::shouldThrottleThread +80 __cxa_pure_virtual + +Class QtConcurrent::ThreadEngineBase + size=64 align=8 + base size=64 base align=8 +QtConcurrent::ThreadEngineBase (0x7fea14dae460) 0 + vptr=((& QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE) + 16u) + QRunnable (0x7fea14dae4d0) 0 + primary-for QtConcurrent::ThreadEngineBase (0x7fea14dae460) + +VTT for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTTN12QtConcurrent12ThreadEngineIvEE: 2u entries +0 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 24u) +8 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 136u) + +Class std::input_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::input_iterator_tag (0x7fea14df0850) 0 empty + +Class std::output_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::output_iterator_tag (0x7fea14df08c0) 0 empty + +Class std::forward_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::forward_iterator_tag (0x7fea14df0930) 0 empty + std::input_iterator_tag (0x7fea14df09a0) 0 empty + +Class std::bidirectional_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::bidirectional_iterator_tag (0x7fea14df0a10) 0 empty + std::forward_iterator_tag (0x7fea14df0a80) 0 empty + std::input_iterator_tag (0x7fea14df0af0) 0 empty + +Class std::random_access_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::random_access_iterator_tag (0x7fea14df0b60) 0 empty + std::bidirectional_iterator_tag (0x7fea14df0bd0) 0 empty + std::forward_iterator_tag (0x7fea14df0c40) 0 empty + std::input_iterator_tag (0x7fea14df0cb0) 0 empty + +Class std::__true_type + size=1 align=1 + base size=0 base align=1 +std::__true_type (0x7fea14e032a0) 0 empty + +Class std::__false_type + size=1 align=1 + base size=0 base align=1 +std::__false_type (0x7fea14e03310) 0 empty + +Class lconv + size=96 align=8 + base size=96 base align=8 +lconv (0x7fea14be0620) 0 + +Class sched_param + size=4 align=4 + base size=4 base align=4 +sched_param (0x7fea14be0a80) 0 + +Class __sched_param + size=4 align=4 + base size=4 base align=4 +__sched_param (0x7fea14be0af0) 0 + +Class tm + size=56 align=8 + base size=56 base align=8 +tm (0x7fea14be0bd0) 0 + +Class itimerspec + size=32 align=8 + base size=32 base align=8 +itimerspec (0x7fea14be0cb0) 0 + +Class _pthread_cleanup_buffer + size=32 align=8 + base size=32 base align=8 +_pthread_cleanup_buffer (0x7fea14be0d20) 0 + +Class __pthread_cleanup_frame + size=24 align=8 + base size=24 base align=8 +__pthread_cleanup_frame (0x7fea14be0e70) 0 + +Class __pthread_cleanup_class + size=24 align=8 + base size=24 base align=8 +__pthread_cleanup_class (0x7fea14be0ee0) 0 + +Vtable for __cxxabiv1::__forced_unwind +__cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN10__cxxabiv115__forced_unwindE) +16 __cxxabiv1::__forced_unwind::~__forced_unwind +24 __cxxabiv1::__forced_unwind::~__forced_unwind +32 __cxa_pure_virtual + +Class __cxxabiv1::__forced_unwind + size=8 align=8 + base size=8 base align=8 +__cxxabiv1::__forced_unwind (0x7fea14aeba80) 0 nearly-empty + vptr=((& __cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE) + 16u) + +Class std::locale + size=8 align=8 + base size=8 base align=8 +std::locale (0x7fea1479d5b0) 0 + +Vtable for std::locale::facet +std::locale::facet::_ZTVNSt6locale5facetE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTINSt6locale5facetE) +16 std::locale::facet::~facet +24 std::locale::facet::~facet + +Class std::locale::facet + size=16 align=8 + base size=12 base align=8 +std::locale::facet (0x7fea1483fcb0) 0 + vptr=((& std::locale::facet::_ZTVNSt6locale5facetE) + 16u) + +Class std::locale::id + size=8 align=8 + base size=8 base align=8 +std::locale::id (0x7fea148542a0) 0 + +Class std::locale::_Impl + size=40 align=8 + base size=40 base align=8 +std::locale::_Impl (0x7fea148548c0) 0 + +Vtable for std::ios_base::failure +std::ios_base::failure::_ZTVNSt8ios_base7failureE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTINSt8ios_base7failureE) +16 std::ios_base::failure::~failure +24 std::ios_base::failure::~failure +32 std::ios_base::failure::what + +Class std::ios_base::failure + size=16 align=8 + base size=16 base align=8 +std::ios_base::failure (0x7fea146e2070) 0 + vptr=((& std::ios_base::failure::_ZTVNSt8ios_base7failureE) + 16u) + std::exception (0x7fea146e20e0) 0 nearly-empty + primary-for std::ios_base::failure (0x7fea146e2070) + +Class std::ios_base::_Callback_list + size=24 align=8 + base size=24 base align=8 +std::ios_base::_Callback_list (0x7fea146f0310) 0 + +Class std::ios_base::_Words + size=16 align=8 + base size=16 base align=8 +std::ios_base::_Words (0x7fea146f0d90) 0 + +Class std::ios_base::Init + size=1 align=1 + base size=0 base align=1 +std::ios_base::Init (0x7fea146f84d0) 0 empty + +Vtable for std::ios_base +std::ios_base::_ZTVSt8ios_base: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt8ios_base) +16 std::ios_base::~ios_base +24 std::ios_base::~ios_base + +Class std::ios_base + size=216 align=8 + base size=216 base align=8 +std::ios_base (0x7fea146e2000) 0 + vptr=((& std::ios_base::_ZTVSt8ios_base) + 16u) + +Class std::ctype_base + size=1 align=1 + base size=0 base align=1 +std::ctype_base (0x7fea1476e930) 0 empty + +Class std::__num_base + size=1 align=1 + base size=0 base align=1 +std::__num_base (0x7fea144941c0) 0 empty + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSo: 2u entries +0 ((& std::basic_ostream >::_ZTVSo) + 24u) +8 ((& std::basic_ostream >::_ZTVSo) + 64u) + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSt13basic_ostreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 24u) +8 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 64u) + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSi: 2u entries +0 ((& std::basic_istream >::_ZTVSi) + 24u) +8 ((& std::basic_istream >::_ZTVSi) + 64u) + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSt13basic_istreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 24u) +8 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 64u) + +Construction vtable for std::basic_istream > (0x7fea141c7310 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd0_Si: 10u entries +0 24u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISi) +24 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +32 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +40 -24u +48 (int (*)(...))-0x00000000000000018 +56 (int (*)(...))(& _ZTISi) +64 std::basic_istream >::_ZTv0_n24_NSiD1Ev +72 std::basic_istream >::_ZTv0_n24_NSiD0Ev + +Construction vtable for std::basic_ostream > (0x7fea141c7460 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd16_So: 10u entries +0 8u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISo) +24 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +32 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +40 -8u +48 (int (*)(...))-0x00000000000000008 +56 (int (*)(...))(& _ZTISo) +64 std::basic_ostream >::_ZTv0_n24_NSoD1Ev +72 std::basic_ostream >::_ZTv0_n24_NSoD0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSd: 7u entries +0 ((& std::basic_iostream >::_ZTVSd) + 24u) +8 ((& std::basic_iostream >::_ZTCSd0_Si) + 24u) +16 ((& std::basic_iostream >::_ZTCSd0_Si) + 64u) +24 ((& std::basic_iostream >::_ZTCSd16_So) + 24u) +32 ((& std::basic_iostream >::_ZTCSd16_So) + 64u) +40 ((& std::basic_iostream >::_ZTVSd) + 104u) +48 ((& std::basic_iostream >::_ZTVSd) + 64u) + +Construction vtable for std::basic_istream > (0x7fea141c7620 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E: 10u entries +0 24u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +24 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +32 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +40 -24u +48 (int (*)(...))-0x00000000000000018 +56 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +64 std::basic_istream >::_ZTv0_n24_NSt13basic_istreamIwSt11char_traitsIwEED1Ev +72 std::basic_istream >::_ZTv0_n24_NSt13basic_istreamIwSt11char_traitsIwEED0Ev + +Construction vtable for std::basic_ostream > (0x7fea141c7770 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE16_St13basic_ostreamIwS1_E: 10u entries +0 8u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +24 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +32 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +40 -8u +48 (int (*)(...))-0x00000000000000008 +56 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +64 std::basic_ostream >::_ZTv0_n24_NSt13basic_ostreamIwSt11char_traitsIwEED1Ev +72 std::basic_ostream >::_ZTv0_n24_NSt13basic_ostreamIwSt11char_traitsIwEED0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSt14basic_iostreamIwSt11char_traitsIwEE: 7u entries +0 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 24u) +8 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 24u) +16 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 64u) +24 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE16_St13basic_ostreamIwS1_E) + 24u) +32 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE16_St13basic_ostreamIwS1_E) + 64u) +40 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 104u) +48 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 64u) + +Class QtConcurrent::BlockSizeManager + size=96 align=8 + base size=92 base align=8 +QtConcurrent::BlockSizeManager (0x7fea14233230) 0 + +Vtable for QFutureWatcherBase +QFutureWatcherBase::_ZTV18QFutureWatcherBase: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFutureWatcherBase) +16 QFutureWatcherBase::metaObject +24 QFutureWatcherBase::qt_metacast +32 QFutureWatcherBase::qt_metacall +40 QFutureWatcherBase::~QFutureWatcherBase +48 QFutureWatcherBase::~QFutureWatcherBase +56 QFutureWatcherBase::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QFutureWatcherBase::connectNotify +104 QFutureWatcherBase::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QFutureWatcherBase + size=16 align=8 + base size=16 base align=8 +QFutureWatcherBase (0x7fea13dbebd0) 0 + vptr=((& QFutureWatcherBase::_ZTV18QFutureWatcherBase) + 16u) + QObject (0x7fea13dbec40) 0 + primary-for QFutureWatcherBase (0x7fea13dbebd0) + +Vtable for QFactoryInterface +QFactoryInterface::_ZTV17QFactoryInterface: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QFactoryInterface) +16 QFactoryInterface::~QFactoryInterface +24 QFactoryInterface::~QFactoryInterface +32 __cxa_pure_virtual + +Class QFactoryInterface + size=8 align=8 + base size=8 base align=8 +QFactoryInterface (0x7fea13cd7e00) 0 nearly-empty + vptr=((& QFactoryInterface::_ZTV17QFactoryInterface) + 16u) + +Vtable for QTextCodecFactoryInterface +QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QTextCodecFactoryInterface) +16 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +24 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QTextCodecFactoryInterface + size=8 align=8 + base size=8 base align=8 +QTextCodecFactoryInterface (0x7fea13cf8ee0) 0 nearly-empty + vptr=((& QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface) + 16u) + QFactoryInterface (0x7fea13cf8f50) 0 nearly-empty + primary-for QTextCodecFactoryInterface (0x7fea13cf8ee0) + +Vtable for QTextCodecPlugin +QTextCodecPlugin::_ZTV16QTextCodecPlugin: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QTextCodecPlugin) +16 QTextCodecPlugin::metaObject +24 QTextCodecPlugin::qt_metacast +32 QTextCodecPlugin::qt_metacall +40 QTextCodecPlugin::~QTextCodecPlugin +48 QTextCodecPlugin::~QTextCodecPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 QTextCodecPlugin::keys +160 QTextCodecPlugin::create +168 (int (*)(...))-0x00000000000000010 +176 (int (*)(...))(& _ZTI16QTextCodecPlugin) +184 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD1Ev +192 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD0Ev +200 QTextCodecPlugin::_ZThn16_NK16QTextCodecPlugin4keysEv +208 QTextCodecPlugin::_ZThn16_N16QTextCodecPlugin6createERK7QString + +Class QTextCodecPlugin + size=24 align=8 + base size=24 base align=8 +QTextCodecPlugin (0x7fea13cfde00) 0 + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 16u) + QObject (0x7fea13d037e0) 0 + primary-for QTextCodecPlugin (0x7fea13cfde00) + QTextCodecFactoryInterface (0x7fea13d03850) 16 nearly-empty + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 184u) + QFactoryInterface (0x7fea13d038c0) 16 nearly-empty + primary-for QTextCodecFactoryInterface (0x7fea13d03850) + +Class QLibraryInfo + size=1 align=1 + base size=0 base align=1 +QLibraryInfo (0x7fea13d1a700) 0 empty + +Vtable for QTranslator +QTranslator::_ZTV11QTranslator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTranslator) +16 QTranslator::metaObject +24 QTranslator::qt_metacast +32 QTranslator::qt_metacall +40 QTranslator::~QTranslator +48 QTranslator::~QTranslator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTranslator::translate +120 QTranslator::isEmpty + +Class QTranslator + size=16 align=8 + base size=16 base align=8 +QTranslator (0x7fea13b5d000) 0 + vptr=((& QTranslator::_ZTV11QTranslator) + 16u) + QObject (0x7fea13b5d070) 0 + primary-for QTranslator (0x7fea13b5d000) + +Class __exception + size=40 align=8 + base size=40 base align=8 +__exception (0x7fea13b72f50) 0 + +Vtable for QMimeData +QMimeData::_ZTV9QMimeData: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QMimeData) +16 QMimeData::metaObject +24 QMimeData::qt_metacast +32 QMimeData::qt_metacall +40 QMimeData::~QMimeData +48 QMimeData::~QMimeData +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMimeData::hasFormat +120 QMimeData::formats +128 QMimeData::retrieveData + +Class QMimeData + size=16 align=8 + base size=16 base align=8 +QMimeData (0x7fea13bdd150) 0 + vptr=((& QMimeData::_ZTV9QMimeData) + 16u) + QObject (0x7fea13bdd1c0) 0 + primary-for QMimeData (0x7fea13bdd150) + +Vtable for QEventLoop +QEventLoop::_ZTV10QEventLoop: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QEventLoop) +16 QEventLoop::metaObject +24 QEventLoop::qt_metacast +32 QEventLoop::qt_metacall +40 QEventLoop::~QEventLoop +48 QEventLoop::~QEventLoop +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QEventLoop + size=16 align=8 + base size=16 base align=8 +QEventLoop (0x7fea13bf59a0) 0 + vptr=((& QEventLoop::_ZTV10QEventLoop) + 16u) + QObject (0x7fea13bf5a10) 0 + primary-for QEventLoop (0x7fea13bf59a0) + +Vtable for QEvent +QEvent::_ZTV6QEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QEvent) +16 QEvent::~QEvent +24 QEvent::~QEvent + +Class QEvent + size=24 align=8 + base size=20 base align=8 +QEvent (0x7fea13c34310) 0 + vptr=((& QEvent::_ZTV6QEvent) + 16u) + +Vtable for QTimerEvent +QTimerEvent::_ZTV11QTimerEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTimerEvent) +16 QTimerEvent::~QTimerEvent +24 QTimerEvent::~QTimerEvent + +Class QTimerEvent + size=24 align=8 + base size=24 base align=8 +QTimerEvent (0x7fea13a4dee0) 0 + vptr=((& QTimerEvent::_ZTV11QTimerEvent) + 16u) + QEvent (0x7fea13a4df50) 0 + primary-for QTimerEvent (0x7fea13a4dee0) + +Vtable for QChildEvent +QChildEvent::_ZTV11QChildEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QChildEvent) +16 QChildEvent::~QChildEvent +24 QChildEvent::~QChildEvent + +Class QChildEvent + size=32 align=8 + base size=32 base align=8 +QChildEvent (0x7fea13a50380) 0 + vptr=((& QChildEvent::_ZTV11QChildEvent) + 16u) + QEvent (0x7fea13a503f0) 0 + primary-for QChildEvent (0x7fea13a50380) + +Vtable for QCustomEvent +QCustomEvent::_ZTV12QCustomEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QCustomEvent) +16 QCustomEvent::~QCustomEvent +24 QCustomEvent::~QCustomEvent + +Class QCustomEvent + size=24 align=8 + base size=20 base align=8 +QCustomEvent (0x7fea13a64620) 0 + vptr=((& QCustomEvent::_ZTV12QCustomEvent) + 16u) + QEvent (0x7fea13a64690) 0 + primary-for QCustomEvent (0x7fea13a64620) + +Vtable for QDynamicPropertyChangeEvent +QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QDynamicPropertyChangeEvent) +16 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent +24 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent + +Class QDynamicPropertyChangeEvent + size=32 align=8 + base size=32 base align=8 +QDynamicPropertyChangeEvent (0x7fea13a64e00) 0 + vptr=((& QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent) + 16u) + QEvent (0x7fea13a64e70) 0 + primary-for QDynamicPropertyChangeEvent (0x7fea13a64e00) + +Vtable for QCoreApplication +QCoreApplication::_ZTV16QCoreApplication: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QCoreApplication) +16 QCoreApplication::metaObject +24 QCoreApplication::qt_metacast +32 QCoreApplication::qt_metacall +40 QCoreApplication::~QCoreApplication +48 QCoreApplication::~QCoreApplication +56 QCoreApplication::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCoreApplication::notify +120 QCoreApplication::compressEvent + +Class QCoreApplication + size=16 align=8 + base size=16 base align=8 +QCoreApplication (0x7fea13a72230) 0 + vptr=((& QCoreApplication::_ZTV16QCoreApplication) + 16u) + QObject (0x7fea13a722a0) 0 + primary-for QCoreApplication (0x7fea13a72230) + +Vtable for QSharedMemory +QSharedMemory::_ZTV13QSharedMemory: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSharedMemory) +16 QSharedMemory::metaObject +24 QSharedMemory::qt_metacast +32 QSharedMemory::qt_metacall +40 QSharedMemory::~QSharedMemory +48 QSharedMemory::~QSharedMemory +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSharedMemory + size=16 align=8 + base size=16 base align=8 +QSharedMemory (0x7fea13a9fa80) 0 + vptr=((& QSharedMemory::_ZTV13QSharedMemory) + 16u) + QObject (0x7fea13a9faf0) 0 + primary-for QSharedMemory (0x7fea13a9fa80) + +Class QModelIndex + size=24 align=8 + base size=24 base align=8 +QModelIndex (0x7fea13abc850) 0 + +Class QPersistentModelIndex + size=8 align=8 + base size=8 base align=8 +QPersistentModelIndex (0x7fea13ae5310) 0 + +Vtable for QAbstractItemModel +QAbstractItemModel::_ZTV18QAbstractItemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractItemModel) +16 QAbstractItemModel::metaObject +24 QAbstractItemModel::qt_metacast +32 QAbstractItemModel::qt_metacall +40 QAbstractItemModel::~QAbstractItemModel +48 QAbstractItemModel::~QAbstractItemModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractItemModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractItemModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractItemModel + size=16 align=8 + base size=16 base align=8 +QAbstractItemModel (0x7fea13af25b0) 0 + vptr=((& QAbstractItemModel::_ZTV18QAbstractItemModel) + 16u) + QObject (0x7fea13af2620) 0 + primary-for QAbstractItemModel (0x7fea13af25b0) + +Vtable for QAbstractTableModel +QAbstractTableModel::_ZTV19QAbstractTableModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractTableModel) +16 QAbstractTableModel::metaObject +24 QAbstractTableModel::qt_metacast +32 QAbstractTableModel::qt_metacall +40 QAbstractTableModel::~QAbstractTableModel +48 QAbstractTableModel::~QAbstractTableModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractTableModel::index +120 QAbstractTableModel::parent +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractTableModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractTableModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractTableModel + size=16 align=8 + base size=16 base align=8 +QAbstractTableModel (0x7fea13946930) 0 + vptr=((& QAbstractTableModel::_ZTV19QAbstractTableModel) + 16u) + QAbstractItemModel (0x7fea139469a0) 0 + primary-for QAbstractTableModel (0x7fea13946930) + QObject (0x7fea13946a10) 0 + primary-for QAbstractItemModel (0x7fea139469a0) + +Vtable for QAbstractListModel +QAbstractListModel::_ZTV18QAbstractListModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractListModel) +16 QAbstractListModel::metaObject +24 QAbstractListModel::qt_metacast +32 QAbstractListModel::qt_metacall +40 QAbstractListModel::~QAbstractListModel +48 QAbstractListModel::~QAbstractListModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractListModel::index +120 QAbstractListModel::parent +128 __cxa_pure_virtual +136 QAbstractListModel::columnCount +144 QAbstractListModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractListModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractListModel + size=16 align=8 + base size=16 base align=8 +QAbstractListModel (0x7fea13953ee0) 0 + vptr=((& QAbstractListModel::_ZTV18QAbstractListModel) + 16u) + QAbstractItemModel (0x7fea13953f50) 0 + primary-for QAbstractListModel (0x7fea13953ee0) + QObject (0x7fea13953230) 0 + primary-for QAbstractItemModel (0x7fea13953f50) + +Vtable for QSignalMapper +QSignalMapper::_ZTV13QSignalMapper: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSignalMapper) +16 QSignalMapper::metaObject +24 QSignalMapper::qt_metacast +32 QSignalMapper::qt_metacall +40 QSignalMapper::~QSignalMapper +48 QSignalMapper::~QSignalMapper +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSignalMapper + size=16 align=8 + base size=16 base align=8 +QSignalMapper (0x7fea13993000) 0 + vptr=((& QSignalMapper::_ZTV13QSignalMapper) + 16u) + QObject (0x7fea13993070) 0 + primary-for QSignalMapper (0x7fea13993000) + +Vtable for QObjectCleanupHandler +QObjectCleanupHandler::_ZTV21QObjectCleanupHandler: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QObjectCleanupHandler) +16 QObjectCleanupHandler::metaObject +24 QObjectCleanupHandler::qt_metacast +32 QObjectCleanupHandler::qt_metacall +40 QObjectCleanupHandler::~QObjectCleanupHandler +48 QObjectCleanupHandler::~QObjectCleanupHandler +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObjectCleanupHandler + size=24 align=8 + base size=24 base align=8 +QObjectCleanupHandler (0x7fea139ab3f0) 0 + vptr=((& QObjectCleanupHandler::_ZTV21QObjectCleanupHandler) + 16u) + QObject (0x7fea139ab460) 0 + primary-for QObjectCleanupHandler (0x7fea139ab3f0) + +Class QBasicTimer + size=4 align=4 + base size=4 base align=4 +QBasicTimer (0x7fea139bb540) 0 + +Vtable for QSocketNotifier +QSocketNotifier::_ZTV15QSocketNotifier: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSocketNotifier) +16 QSocketNotifier::metaObject +24 QSocketNotifier::qt_metacast +32 QSocketNotifier::qt_metacall +40 QSocketNotifier::~QSocketNotifier +48 QSocketNotifier::~QSocketNotifier +56 QSocketNotifier::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSocketNotifier + size=32 align=8 + base size=25 base align=8 +QSocketNotifier (0x7fea139c6930) 0 + vptr=((& QSocketNotifier::_ZTV15QSocketNotifier) + 16u) + QObject (0x7fea139c69a0) 0 + primary-for QSocketNotifier (0x7fea139c6930) + +Vtable for QTimer +QTimer::_ZTV6QTimer: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QTimer) +16 QTimer::metaObject +24 QTimer::qt_metacast +32 QTimer::qt_metacall +40 QTimer::~QTimer +48 QTimer::~QTimer +56 QObject::event +64 QObject::eventFilter +72 QTimer::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTimer + size=32 align=8 + base size=29 base align=8 +QTimer (0x7fea139e4cb0) 0 + vptr=((& QTimer::_ZTV6QTimer) + 16u) + QObject (0x7fea139e4d20) 0 + primary-for QTimer (0x7fea139e4cb0) + +Vtable for QAbstractEventDispatcher +QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QAbstractEventDispatcher) +16 QAbstractEventDispatcher::metaObject +24 QAbstractEventDispatcher::qt_metacast +32 QAbstractEventDispatcher::qt_metacall +40 QAbstractEventDispatcher::~QAbstractEventDispatcher +48 QAbstractEventDispatcher::~QAbstractEventDispatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 QAbstractEventDispatcher::startingUp +208 QAbstractEventDispatcher::closingDown + +Class QAbstractEventDispatcher + size=16 align=8 + base size=16 base align=8 +QAbstractEventDispatcher (0x7fea13a052a0) 0 + vptr=((& QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher) + 16u) + QObject (0x7fea13a05310) 0 + primary-for QAbstractEventDispatcher (0x7fea13a052a0) + +Class QMetaMethod + size=16 align=8 + base size=12 base align=8 +QMetaMethod (0x7fea13a20150) 0 + +Class QMetaEnum + size=16 align=8 + base size=12 base align=8 +QMetaEnum (0x7fea13a3b5b0) 0 + +Class QMetaProperty + size=32 align=8 + base size=32 base align=8 +QMetaProperty (0x7fea13847310) 0 + +Class QMetaClassInfo + size=16 align=8 + base size=12 base align=8 +QMetaClassInfo (0x7fea138479a0) 0 + +Class QSystemSemaphore + size=8 align=8 + base size=8 base align=8 +QSystemSemaphore (0x7fea1385b4d0) 0 + +Vtable for QLibrary +QLibrary::_ZTV8QLibrary: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QLibrary) +16 QLibrary::metaObject +24 QLibrary::qt_metacast +32 QLibrary::qt_metacall +40 QLibrary::~QLibrary +48 QLibrary::~QLibrary +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QLibrary + size=32 align=8 + base size=25 base align=8 +QLibrary (0x7fea1385be00) 0 + vptr=((& QLibrary::_ZTV8QLibrary) + 16u) + QObject (0x7fea1385be70) 0 + primary-for QLibrary (0x7fea1385be00) + +Vtable for QPluginLoader +QPluginLoader::_ZTV13QPluginLoader: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QPluginLoader) +16 QPluginLoader::metaObject +24 QPluginLoader::qt_metacast +32 QPluginLoader::qt_metacall +40 QPluginLoader::~QPluginLoader +48 QPluginLoader::~QPluginLoader +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QPluginLoader + size=32 align=8 + base size=25 base align=8 +QPluginLoader (0x7fea138a28c0) 0 + vptr=((& QPluginLoader::_ZTV13QPluginLoader) + 16u) + QObject (0x7fea138a2930) 0 + primary-for QPluginLoader (0x7fea138a28c0) + +Class QUuid + size=16 align=4 + base size=16 base align=4 +QUuid (0x7fea138c4070) 0 + +Class QSemaphore + size=8 align=8 + base size=8 base align=8 +QSemaphore (0x7fea138e39a0) 0 + +Class QThreadStorageData + size=4 align=4 + base size=4 base align=4 +QThreadStorageData (0x7fea138e3ee0) 0 + +Class QReadWriteLock + size=8 align=8 + base size=8 base align=8 +QReadWriteLock (0x7fea138f2690) 0 + +Class QReadLocker + size=8 align=8 + base size=8 base align=8 +QReadLocker (0x7fea138f2d20) 0 + +Class QWriteLocker + size=8 align=8 + base size=8 base align=8 +QWriteLocker (0x7fea139250e0) 0 + +Class QColor + size=16 align=4 + base size=14 base align=4 +QColor (0x7fea1393fe70) 0 + +Class QFont + size=16 align=8 + base size=12 base align=8 +QFont (0x7fea137960e0) 0 + +Class QPolygon + size=8 align=8 + base size=8 base align=8 +QPolygon (0x7fea137d0ee0) 0 + QVector (0x7fea137d0f50) 0 + +Class QPolygonF + size=8 align=8 + base size=8 base align=8 +QPolygonF (0x7fea13837070) 0 + QVector (0x7fea138370e0) 0 + +Class QRegion::QRegionData + size=32 align=8 + base size=32 base align=8 +QRegion::QRegionData (0x7fea1366e5b0) 0 + +Class QRegion + size=8 align=8 + base size=8 base align=8 +QRegion (0x7fea1364dcb0) 0 + +Class QMatrix + size=48 align=8 + base size=48 base align=8 +QMatrix (0x7fea13681e00) 0 + +Class QPainterPath::Element + size=24 align=8 + base size=24 base align=8 +QPainterPath::Element (0x7fea136ba850) 0 + +Class QPainterPath + size=8 align=8 + base size=8 base align=8 +QPainterPath (0x7fea136ba7e0) 0 + +Class QPainterPathPrivate + size=16 align=8 + base size=16 base align=8 +QPainterPathPrivate (0x7fea136fdbd0) 0 + +Class QPainterPathStroker + size=8 align=8 + base size=8 base align=8 +QPainterPathStroker (0x7fea13705770) 0 + +Class QTransform + size=88 align=8 + base size=88 base align=8 +QTransform (0x7fea1356a310) 0 + +Vtable for QPaintDevice +QPaintDevice::_ZTV12QPaintDevice: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QPaintDevice) +16 QPaintDevice::~QPaintDevice +24 QPaintDevice::~QPaintDevice +32 QPaintDevice::devType +40 __cxa_pure_virtual +48 QPaintDevice::metric + +Class QPaintDevice + size=16 align=8 + base size=10 base align=8 +QPaintDevice (0x7fea135e2620) 0 + vptr=((& QPaintDevice::_ZTV12QPaintDevice) + 16u) + +Class QImageTextKeyLang + size=16 align=8 + base size=16 base align=8 +QImageTextKeyLang (0x7fea13607f50) 0 + +Vtable for QImage +QImage::_ZTV6QImage: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QImage) +16 QImage::~QImage +24 QImage::~QImage +32 QImage::devType +40 QImage::paintEngine +48 QImage::metric + +Class QImage + size=24 align=8 + base size=24 base align=8 +QImage (0x7fea136357e0) 0 + vptr=((& QImage::_ZTV6QImage) + 16u) + QPaintDevice (0x7fea13635850) 0 + primary-for QImage (0x7fea136357e0) + +Vtable for QPixmap +QPixmap::_ZTV7QPixmap: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QPixmap) +16 QPixmap::~QPixmap +24 QPixmap::~QPixmap +32 QPixmap::devType +40 QPixmap::paintEngine +48 QPixmap::metric + +Class QPixmap + size=24 align=8 + base size=24 base align=8 +QPixmap (0x7fea134d8230) 0 + vptr=((& QPixmap::_ZTV7QPixmap) + 16u) + QPaintDevice (0x7fea134d82a0) 0 + primary-for QPixmap (0x7fea134d8230) + +Class QBrush + size=8 align=8 + base size=8 base align=8 +QBrush (0x7fea135243f0) 0 + +Class QBrushData + size=112 align=8 + base size=112 base align=8 +QBrushData (0x7fea13348000) 0 + +Class QGradient + size=64 align=8 + base size=64 base align=8 +QGradient (0x7fea133571c0) 0 + +Class QLinearGradient + size=64 align=8 + base size=64 base align=8 +QLinearGradient (0x7fea13368cb0) 0 + QGradient (0x7fea13368d20) 0 + +Class QRadialGradient + size=64 align=8 + base size=64 base align=8 +QRadialGradient (0x7fea13393150) 0 + QGradient (0x7fea133931c0) 0 + +Class QConicalGradient + size=64 align=8 + base size=64 base align=8 +QConicalGradient (0x7fea13393700) 0 + QGradient (0x7fea13393770) 0 + +Class QPen + size=8 align=8 + base size=8 base align=8 +QPen (0x7fea13393a80) 0 + +Class QTextOption::Tab + size=16 align=8 + base size=14 base align=8 +QTextOption::Tab (0x7fea133bd230) 0 + +Class QTextOption + size=32 align=8 + base size=32 base align=8 +QTextOption (0x7fea133bd1c0) 0 + +Class QTextLength + size=16 align=8 + base size=16 base align=8 +QTextLength (0x7fea1341a620) 0 + +Class QTextFormat + size=16 align=8 + base size=12 base align=8 +QTextFormat (0x7fea134359a0) 0 + +Class QTextCharFormat + size=16 align=8 + base size=12 base align=8 +QTextCharFormat (0x7fea132e0a10) 0 + QTextFormat (0x7fea132e0a80) 0 + +Class QTextBlockFormat + size=16 align=8 + base size=12 base align=8 +QTextBlockFormat (0x7fea1314a690) 0 + QTextFormat (0x7fea1314a700) 0 + +Class QTextListFormat + size=16 align=8 + base size=12 base align=8 +QTextListFormat (0x7fea1316bcb0) 0 + QTextFormat (0x7fea1316bd20) 0 + +Class QTextImageFormat + size=16 align=8 + base size=12 base align=8 +QTextImageFormat (0x7fea1317d1c0) 0 + QTextCharFormat (0x7fea1317d230) 0 + QTextFormat (0x7fea1317d2a0) 0 + +Class QTextFrameFormat + size=16 align=8 + base size=12 base align=8 +QTextFrameFormat (0x7fea131878c0) 0 + QTextFormat (0x7fea13187930) 0 + +Class QTextTableFormat + size=16 align=8 + base size=12 base align=8 +QTextTableFormat (0x7fea131bd7e0) 0 + QTextFrameFormat (0x7fea131bd850) 0 + QTextFormat (0x7fea131bd8c0) 0 + +Class QTextTableCellFormat + size=16 align=8 + base size=12 base align=8 +QTextTableCellFormat (0x7fea131d8690) 0 + QTextCharFormat (0x7fea131d8700) 0 + QTextFormat (0x7fea131d8770) 0 + +Vtable for QTextObject +QTextObject::_ZTV11QTextObject: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTextObject) +16 QTextObject::metaObject +24 QTextObject::qt_metacast +32 QTextObject::qt_metacall +40 QTextObject::~QTextObject +48 QTextObject::~QTextObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTextObject + size=16 align=8 + base size=16 base align=8 +QTextObject (0x7fea131eeb60) 0 + vptr=((& QTextObject::_ZTV11QTextObject) + 16u) + QObject (0x7fea131eebd0) 0 + primary-for QTextObject (0x7fea131eeb60) + +Vtable for QTextBlockGroup +QTextBlockGroup::_ZTV15QTextBlockGroup: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QTextBlockGroup) +16 QTextBlockGroup::metaObject +24 QTextBlockGroup::qt_metacast +32 QTextBlockGroup::qt_metacall +40 QTextBlockGroup::~QTextBlockGroup +48 QTextBlockGroup::~QTextBlockGroup +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTextBlockGroup::blockInserted +120 QTextBlockGroup::blockRemoved +128 QTextBlockGroup::blockFormatChanged + +Class QTextBlockGroup + size=16 align=8 + base size=16 base align=8 +QTextBlockGroup (0x7fea132073f0) 0 + vptr=((& QTextBlockGroup::_ZTV15QTextBlockGroup) + 16u) + QTextObject (0x7fea13207460) 0 + primary-for QTextBlockGroup (0x7fea132073f0) + QObject (0x7fea132074d0) 0 + primary-for QTextObject (0x7fea13207460) + +Vtable for QTextFrameLayoutData +QTextFrameLayoutData::_ZTV20QTextFrameLayoutData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QTextFrameLayoutData) +16 QTextFrameLayoutData::~QTextFrameLayoutData +24 QTextFrameLayoutData::~QTextFrameLayoutData + +Class QTextFrameLayoutData + size=8 align=8 + base size=8 base align=8 +QTextFrameLayoutData (0x7fea13218cb0) 0 nearly-empty + vptr=((& QTextFrameLayoutData::_ZTV20QTextFrameLayoutData) + 16u) + +Class QTextFrame::iterator + size=32 align=8 + base size=28 base align=8 +QTextFrame::iterator (0x7fea13223700) 0 + +Vtable for QTextFrame +QTextFrame::_ZTV10QTextFrame: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextFrame) +16 QTextFrame::metaObject +24 QTextFrame::qt_metacast +32 QTextFrame::qt_metacall +40 QTextFrame::~QTextFrame +48 QTextFrame::~QTextFrame +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTextFrame + size=16 align=8 + base size=16 base align=8 +QTextFrame (0x7fea13218e00) 0 + vptr=((& QTextFrame::_ZTV10QTextFrame) + 16u) + QTextObject (0x7fea13218e70) 0 + primary-for QTextFrame (0x7fea13218e00) + QObject (0x7fea13218ee0) 0 + primary-for QTextObject (0x7fea13218e70) + +Vtable for QTextBlockUserData +QTextBlockUserData::_ZTV18QTextBlockUserData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QTextBlockUserData) +16 QTextBlockUserData::~QTextBlockUserData +24 QTextBlockUserData::~QTextBlockUserData + +Class QTextBlockUserData + size=8 align=8 + base size=8 base align=8 +QTextBlockUserData (0x7fea13057850) 0 nearly-empty + vptr=((& QTextBlockUserData::_ZTV18QTextBlockUserData) + 16u) + +Class QTextBlock::iterator + size=24 align=8 + base size=20 base align=8 +QTextBlock::iterator (0x7fea130601c0) 0 + +Class QTextBlock + size=16 align=8 + base size=12 base align=8 +QTextBlock (0x7fea130579a0) 0 + +Class QTextFragment + size=16 align=8 + base size=16 base align=8 +QTextFragment (0x7fea13099310) 0 + +Class QFontMetrics + size=8 align=8 + base size=8 base align=8 +QFontMetrics (0x7fea130b64d0) 0 + +Class QFontMetricsF + size=8 align=8 + base size=8 base align=8 +QFontMetricsF (0x7fea130cd930) 0 + +Class QFontDatabase + size=8 align=8 + base size=8 base align=8 +QFontDatabase (0x7fea130d8850) 0 + +Vtable for QAbstractUndoItem +QAbstractUndoItem::_ZTV17QAbstractUndoItem: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAbstractUndoItem) +16 __cxa_pure_virtual +24 __cxa_pure_virtual +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QAbstractUndoItem + size=8 align=8 + base size=8 base align=8 +QAbstractUndoItem (0x7fea130ef850) 0 nearly-empty + vptr=((& QAbstractUndoItem::_ZTV17QAbstractUndoItem) + 16u) + +Vtable for QTextDocument +QTextDocument::_ZTV13QTextDocument: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QTextDocument) +16 QTextDocument::metaObject +24 QTextDocument::qt_metacast +32 QTextDocument::qt_metacall +40 QTextDocument::~QTextDocument +48 QTextDocument::~QTextDocument +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTextDocument::clear +120 QTextDocument::createObject +128 QTextDocument::loadResource + +Class QTextDocument + size=16 align=8 + base size=16 base align=8 +QTextDocument (0x7fea131042a0) 0 + vptr=((& QTextDocument::_ZTV13QTextDocument) + 16u) + QObject (0x7fea13104310) 0 + primary-for QTextDocument (0x7fea131042a0) + +Class QTextTableCell + size=16 align=8 + base size=12 base align=8 +QTextTableCell (0x7fea12f632a0) 0 + +Vtable for QTextTable +QTextTable::_ZTV10QTextTable: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextTable) +16 QTextTable::metaObject +24 QTextTable::qt_metacast +32 QTextTable::qt_metacall +40 QTextTable::~QTextTable +48 QTextTable::~QTextTable +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTextTable + size=16 align=8 + base size=16 base align=8 +QTextTable (0x7fea12f7c3f0) 0 + vptr=((& QTextTable::_ZTV10QTextTable) + 16u) + QTextFrame (0x7fea12f7c460) 0 + primary-for QTextTable (0x7fea12f7c3f0) + QTextObject (0x7fea12f7c4d0) 0 + primary-for QTextFrame (0x7fea12f7c460) + QObject (0x7fea12f7c540) 0 + primary-for QTextObject (0x7fea12f7c4d0) + +Class QTextDocumentWriter + size=8 align=8 + base size=8 base align=8 +QTextDocumentWriter (0x7fea12f97bd0) 0 + +Class QKeySequence + size=8 align=8 + base size=8 base align=8 +QKeySequence (0x7fea12fa32a0) 0 + +Vtable for QMimeSource +QMimeSource::_ZTV11QMimeSource: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMimeSource) +16 QMimeSource::~QMimeSource +24 QMimeSource::~QMimeSource +32 __cxa_pure_virtual +40 QMimeSource::provides +48 __cxa_pure_virtual + +Class QMimeSource + size=8 align=8 + base size=8 base align=8 +QMimeSource (0x7fea12fbfe70) 0 nearly-empty + vptr=((& QMimeSource::_ZTV11QMimeSource) + 16u) + +Vtable for QDrag +QDrag::_ZTV5QDrag: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QDrag) +16 QDrag::metaObject +24 QDrag::qt_metacast +32 QDrag::qt_metacall +40 QDrag::~QDrag +48 QDrag::~QDrag +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QDrag + size=16 align=8 + base size=16 base align=8 +QDrag (0x7fea12fbff50) 0 + vptr=((& QDrag::_ZTV5QDrag) + 16u) + QObject (0x7fea12feb000) 0 + primary-for QDrag (0x7fea12fbff50) + +Vtable for QInputEvent +QInputEvent::_ZTV11QInputEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QInputEvent) +16 QInputEvent::~QInputEvent +24 QInputEvent::~QInputEvent + +Class QInputEvent + size=24 align=8 + base size=24 base align=8 +QInputEvent (0x7fea12fff770) 0 + vptr=((& QInputEvent::_ZTV11QInputEvent) + 16u) + QEvent (0x7fea12fff7e0) 0 + primary-for QInputEvent (0x7fea12fff770) + +Vtable for QMouseEvent +QMouseEvent::_ZTV11QMouseEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMouseEvent) +16 QMouseEvent::~QMouseEvent +24 QMouseEvent::~QMouseEvent + +Class QMouseEvent + size=48 align=8 + base size=48 base align=8 +QMouseEvent (0x7fea12fffd20) 0 + vptr=((& QMouseEvent::_ZTV11QMouseEvent) + 16u) + QInputEvent (0x7fea12fffd90) 0 + primary-for QMouseEvent (0x7fea12fffd20) + QEvent (0x7fea12fffe00) 0 + primary-for QInputEvent (0x7fea12fffd90) + +Vtable for QHoverEvent +QHoverEvent::_ZTV11QHoverEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QHoverEvent) +16 QHoverEvent::~QHoverEvent +24 QHoverEvent::~QHoverEvent + +Class QHoverEvent + size=40 align=8 + base size=36 base align=8 +QHoverEvent (0x7fea13020b60) 0 + vptr=((& QHoverEvent::_ZTV11QHoverEvent) + 16u) + QEvent (0x7fea13020bd0) 0 + primary-for QHoverEvent (0x7fea13020b60) + +Vtable for QWheelEvent +QWheelEvent::_ZTV11QWheelEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QWheelEvent) +16 QWheelEvent::~QWheelEvent +24 QWheelEvent::~QWheelEvent + +Class QWheelEvent + size=56 align=8 + base size=52 base align=8 +QWheelEvent (0x7fea12e36230) 0 + vptr=((& QWheelEvent::_ZTV11QWheelEvent) + 16u) + QInputEvent (0x7fea12e362a0) 0 + primary-for QWheelEvent (0x7fea12e36230) + QEvent (0x7fea12e36310) 0 + primary-for QInputEvent (0x7fea12e362a0) + +Vtable for QTabletEvent +QTabletEvent::_ZTV12QTabletEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTabletEvent) +16 QTabletEvent::~QTabletEvent +24 QTabletEvent::~QTabletEvent + +Class QTabletEvent + size=120 align=8 + base size=120 base align=8 +QTabletEvent (0x7fea12e4e070) 0 + vptr=((& QTabletEvent::_ZTV12QTabletEvent) + 16u) + QInputEvent (0x7fea12e4e0e0) 0 + primary-for QTabletEvent (0x7fea12e4e070) + QEvent (0x7fea12e4e150) 0 + primary-for QInputEvent (0x7fea12e4e0e0) + +Vtable for QKeyEvent +QKeyEvent::_ZTV9QKeyEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QKeyEvent) +16 QKeyEvent::~QKeyEvent +24 QKeyEvent::~QKeyEvent + +Class QKeyEvent + size=40 align=8 + base size=39 base align=8 +QKeyEvent (0x7fea12e69380) 0 + vptr=((& QKeyEvent::_ZTV9QKeyEvent) + 16u) + QInputEvent (0x7fea12e693f0) 0 + primary-for QKeyEvent (0x7fea12e69380) + QEvent (0x7fea12e69460) 0 + primary-for QInputEvent (0x7fea12e693f0) + +Vtable for QFocusEvent +QFocusEvent::_ZTV11QFocusEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFocusEvent) +16 QFocusEvent::~QFocusEvent +24 QFocusEvent::~QFocusEvent + +Class QFocusEvent + size=24 align=8 + base size=24 base align=8 +QFocusEvent (0x7fea12e8ccb0) 0 + vptr=((& QFocusEvent::_ZTV11QFocusEvent) + 16u) + QEvent (0x7fea12e8cd20) 0 + primary-for QFocusEvent (0x7fea12e8ccb0) + +Vtable for QPaintEvent +QPaintEvent::_ZTV11QPaintEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QPaintEvent) +16 QPaintEvent::~QPaintEvent +24 QPaintEvent::~QPaintEvent + +Class QPaintEvent + size=56 align=8 + base size=49 base align=8 +QPaintEvent (0x7fea12e98770) 0 + vptr=((& QPaintEvent::_ZTV11QPaintEvent) + 16u) + QEvent (0x7fea12e987e0) 0 + primary-for QPaintEvent (0x7fea12e98770) + +Vtable for QUpdateLaterEvent +QUpdateLaterEvent::_ZTV17QUpdateLaterEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QUpdateLaterEvent) +16 QUpdateLaterEvent::~QUpdateLaterEvent +24 QUpdateLaterEvent::~QUpdateLaterEvent + +Class QUpdateLaterEvent + size=32 align=8 + base size=32 base align=8 +QUpdateLaterEvent (0x7fea12ea6380) 0 + vptr=((& QUpdateLaterEvent::_ZTV17QUpdateLaterEvent) + 16u) + QEvent (0x7fea12ea63f0) 0 + primary-for QUpdateLaterEvent (0x7fea12ea6380) + +Vtable for QMoveEvent +QMoveEvent::_ZTV10QMoveEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QMoveEvent) +16 QMoveEvent::~QMoveEvent +24 QMoveEvent::~QMoveEvent + +Class QMoveEvent + size=40 align=8 + base size=36 base align=8 +QMoveEvent (0x7fea12ea67e0) 0 + vptr=((& QMoveEvent::_ZTV10QMoveEvent) + 16u) + QEvent (0x7fea12ea6850) 0 + primary-for QMoveEvent (0x7fea12ea67e0) + +Vtable for QResizeEvent +QResizeEvent::_ZTV12QResizeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QResizeEvent) +16 QResizeEvent::~QResizeEvent +24 QResizeEvent::~QResizeEvent + +Class QResizeEvent + size=40 align=8 + base size=36 base align=8 +QResizeEvent (0x7fea12ea6e70) 0 + vptr=((& QResizeEvent::_ZTV12QResizeEvent) + 16u) + QEvent (0x7fea12ea6ee0) 0 + primary-for QResizeEvent (0x7fea12ea6e70) + +Vtable for QCloseEvent +QCloseEvent::_ZTV11QCloseEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QCloseEvent) +16 QCloseEvent::~QCloseEvent +24 QCloseEvent::~QCloseEvent + +Class QCloseEvent + size=24 align=8 + base size=20 base align=8 +QCloseEvent (0x7fea12eb73f0) 0 + vptr=((& QCloseEvent::_ZTV11QCloseEvent) + 16u) + QEvent (0x7fea12eb7460) 0 + primary-for QCloseEvent (0x7fea12eb73f0) + +Vtable for QIconDragEvent +QIconDragEvent::_ZTV14QIconDragEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QIconDragEvent) +16 QIconDragEvent::~QIconDragEvent +24 QIconDragEvent::~QIconDragEvent + +Class QIconDragEvent + size=24 align=8 + base size=20 base align=8 +QIconDragEvent (0x7fea12eb7620) 0 + vptr=((& QIconDragEvent::_ZTV14QIconDragEvent) + 16u) + QEvent (0x7fea12eb7690) 0 + primary-for QIconDragEvent (0x7fea12eb7620) + +Vtable for QShowEvent +QShowEvent::_ZTV10QShowEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QShowEvent) +16 QShowEvent::~QShowEvent +24 QShowEvent::~QShowEvent + +Class QShowEvent + size=24 align=8 + base size=20 base align=8 +QShowEvent (0x7fea12eb7850) 0 + vptr=((& QShowEvent::_ZTV10QShowEvent) + 16u) + QEvent (0x7fea12eb78c0) 0 + primary-for QShowEvent (0x7fea12eb7850) + +Vtable for QHideEvent +QHideEvent::_ZTV10QHideEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QHideEvent) +16 QHideEvent::~QHideEvent +24 QHideEvent::~QHideEvent + +Class QHideEvent + size=24 align=8 + base size=20 base align=8 +QHideEvent (0x7fea12eb7a80) 0 + vptr=((& QHideEvent::_ZTV10QHideEvent) + 16u) + QEvent (0x7fea12eb7af0) 0 + primary-for QHideEvent (0x7fea12eb7a80) + +Vtable for QContextMenuEvent +QContextMenuEvent::_ZTV17QContextMenuEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QContextMenuEvent) +16 QContextMenuEvent::~QContextMenuEvent +24 QContextMenuEvent::~QContextMenuEvent + +Class QContextMenuEvent + size=48 align=8 + base size=41 base align=8 +QContextMenuEvent (0x7fea12eb7cb0) 0 + vptr=((& QContextMenuEvent::_ZTV17QContextMenuEvent) + 16u) + QInputEvent (0x7fea12eb7d20) 0 + primary-for QContextMenuEvent (0x7fea12eb7cb0) + QEvent (0x7fea12eb7d90) 0 + primary-for QInputEvent (0x7fea12eb7d20) + +Class QInputMethodEvent::Attribute + size=32 align=8 + base size=32 base align=8 +QInputMethodEvent::Attribute (0x7fea12ed3850) 0 + +Vtable for QInputMethodEvent +QInputMethodEvent::_ZTV17QInputMethodEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QInputMethodEvent) +16 QInputMethodEvent::~QInputMethodEvent +24 QInputMethodEvent::~QInputMethodEvent + +Class QInputMethodEvent + size=56 align=8 + base size=56 base align=8 +QInputMethodEvent (0x7fea12ed3770) 0 + vptr=((& QInputMethodEvent::_ZTV17QInputMethodEvent) + 16u) + QEvent (0x7fea12ed37e0) 0 + primary-for QInputMethodEvent (0x7fea12ed3770) + +Vtable for QDropEvent +QDropEvent::_ZTV10QDropEvent: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QDropEvent) +16 QDropEvent::~QDropEvent +24 QDropEvent::~QDropEvent +32 QDropEvent::format +40 QDropEvent::encodedData +48 QDropEvent::provides +56 (int (*)(...))-0x00000000000000018 +64 (int (*)(...))(& _ZTI10QDropEvent) +72 QDropEvent::_ZThn24_N10QDropEventD1Ev +80 QDropEvent::_ZThn24_N10QDropEventD0Ev +88 QDropEvent::_ZThn24_NK10QDropEvent6formatEi +96 QDropEvent::_ZThn24_NK10QDropEvent8providesEPKc +104 QDropEvent::_ZThn24_NK10QDropEvent11encodedDataEPKc + +Class QDropEvent + size=80 align=8 + base size=80 base align=8 +QDropEvent (0x7fea12f0b200) 0 + vptr=((& QDropEvent::_ZTV10QDropEvent) + 16u) + QEvent (0x7fea12f08f50) 0 + primary-for QDropEvent (0x7fea12f0b200) + QMimeSource (0x7fea12f0d000) 24 nearly-empty + vptr=((& QDropEvent::_ZTV10QDropEvent) + 72u) + +Vtable for QDragMoveEvent +QDragMoveEvent::_ZTV14QDragMoveEvent: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QDragMoveEvent) +16 QDragMoveEvent::~QDragMoveEvent +24 QDragMoveEvent::~QDragMoveEvent +32 QDropEvent::format +40 QDropEvent::encodedData +48 QDropEvent::provides +56 (int (*)(...))-0x00000000000000018 +64 (int (*)(...))(& _ZTI14QDragMoveEvent) +72 QDragMoveEvent::_ZThn24_N14QDragMoveEventD1Ev +80 QDragMoveEvent::_ZThn24_N14QDragMoveEventD0Ev +88 QDropEvent::_ZThn24_NK10QDropEvent6formatEi +96 QDropEvent::_ZThn24_NK10QDropEvent8providesEPKc +104 QDropEvent::_ZThn24_NK10QDropEvent11encodedDataEPKc + +Class QDragMoveEvent + size=96 align=8 + base size=96 base align=8 +QDragMoveEvent (0x7fea12f25cb0) 0 + vptr=((& QDragMoveEvent::_ZTV14QDragMoveEvent) + 16u) + QDropEvent (0x7fea12f24900) 0 + primary-for QDragMoveEvent (0x7fea12f25cb0) + QEvent (0x7fea12f25d20) 0 + primary-for QDropEvent (0x7fea12f24900) + QMimeSource (0x7fea12f25d90) 24 nearly-empty + vptr=((& QDragMoveEvent::_ZTV14QDragMoveEvent) + 72u) + +Vtable for QDragEnterEvent +QDragEnterEvent::_ZTV15QDragEnterEvent: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QDragEnterEvent) +16 QDragEnterEvent::~QDragEnterEvent +24 QDragEnterEvent::~QDragEnterEvent +32 QDropEvent::format +40 QDropEvent::encodedData +48 QDropEvent::provides +56 (int (*)(...))-0x00000000000000018 +64 (int (*)(...))(& _ZTI15QDragEnterEvent) +72 QDragEnterEvent::_ZThn24_N15QDragEnterEventD1Ev +80 QDragEnterEvent::_ZThn24_N15QDragEnterEventD0Ev +88 QDropEvent::_ZThn24_NK10QDropEvent6formatEi +96 QDropEvent::_ZThn24_NK10QDropEvent8providesEPKc +104 QDropEvent::_ZThn24_NK10QDropEvent11encodedDataEPKc + +Class QDragEnterEvent + size=96 align=8 + base size=96 base align=8 +QDragEnterEvent (0x7fea12d36460) 0 + vptr=((& QDragEnterEvent::_ZTV15QDragEnterEvent) + 16u) + QDragMoveEvent (0x7fea12d364d0) 0 + primary-for QDragEnterEvent (0x7fea12d36460) + QDropEvent (0x7fea12f34280) 0 + primary-for QDragMoveEvent (0x7fea12d364d0) + QEvent (0x7fea12d36540) 0 + primary-for QDropEvent (0x7fea12f34280) + QMimeSource (0x7fea12d365b0) 24 nearly-empty + vptr=((& QDragEnterEvent::_ZTV15QDragEnterEvent) + 72u) + +Vtable for QDragResponseEvent +QDragResponseEvent::_ZTV18QDragResponseEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QDragResponseEvent) +16 QDragResponseEvent::~QDragResponseEvent +24 QDragResponseEvent::~QDragResponseEvent + +Class QDragResponseEvent + size=24 align=8 + base size=21 base align=8 +QDragResponseEvent (0x7fea12d36770) 0 + vptr=((& QDragResponseEvent::_ZTV18QDragResponseEvent) + 16u) + QEvent (0x7fea12d367e0) 0 + primary-for QDragResponseEvent (0x7fea12d36770) + +Vtable for QDragLeaveEvent +QDragLeaveEvent::_ZTV15QDragLeaveEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QDragLeaveEvent) +16 QDragLeaveEvent::~QDragLeaveEvent +24 QDragLeaveEvent::~QDragLeaveEvent + +Class QDragLeaveEvent + size=24 align=8 + base size=20 base align=8 +QDragLeaveEvent (0x7fea12d36bd0) 0 + vptr=((& QDragLeaveEvent::_ZTV15QDragLeaveEvent) + 16u) + QEvent (0x7fea12d36c40) 0 + primary-for QDragLeaveEvent (0x7fea12d36bd0) + +Vtable for QHelpEvent +QHelpEvent::_ZTV10QHelpEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QHelpEvent) +16 QHelpEvent::~QHelpEvent +24 QHelpEvent::~QHelpEvent + +Class QHelpEvent + size=40 align=8 + base size=36 base align=8 +QHelpEvent (0x7fea12d36e00) 0 + vptr=((& QHelpEvent::_ZTV10QHelpEvent) + 16u) + QEvent (0x7fea12d36e70) 0 + primary-for QHelpEvent (0x7fea12d36e00) + +Vtable for QStatusTipEvent +QStatusTipEvent::_ZTV15QStatusTipEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QStatusTipEvent) +16 QStatusTipEvent::~QStatusTipEvent +24 QStatusTipEvent::~QStatusTipEvent + +Class QStatusTipEvent + size=32 align=8 + base size=32 base align=8 +QStatusTipEvent (0x7fea12d48e70) 0 + vptr=((& QStatusTipEvent::_ZTV15QStatusTipEvent) + 16u) + QEvent (0x7fea12d48ee0) 0 + primary-for QStatusTipEvent (0x7fea12d48e70) + +Vtable for QWhatsThisClickedEvent +QWhatsThisClickedEvent::_ZTV22QWhatsThisClickedEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QWhatsThisClickedEvent) +16 QWhatsThisClickedEvent::~QWhatsThisClickedEvent +24 QWhatsThisClickedEvent::~QWhatsThisClickedEvent + +Class QWhatsThisClickedEvent + size=32 align=8 + base size=32 base align=8 +QWhatsThisClickedEvent (0x7fea12d4d380) 0 + vptr=((& QWhatsThisClickedEvent::_ZTV22QWhatsThisClickedEvent) + 16u) + QEvent (0x7fea12d4d3f0) 0 + primary-for QWhatsThisClickedEvent (0x7fea12d4d380) + +Vtable for QActionEvent +QActionEvent::_ZTV12QActionEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QActionEvent) +16 QActionEvent::~QActionEvent +24 QActionEvent::~QActionEvent + +Class QActionEvent + size=40 align=8 + base size=40 base align=8 +QActionEvent (0x7fea12d4d850) 0 + vptr=((& QActionEvent::_ZTV12QActionEvent) + 16u) + QEvent (0x7fea12d4d8c0) 0 + primary-for QActionEvent (0x7fea12d4d850) + +Vtable for QFileOpenEvent +QFileOpenEvent::_ZTV14QFileOpenEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QFileOpenEvent) +16 QFileOpenEvent::~QFileOpenEvent +24 QFileOpenEvent::~QFileOpenEvent + +Class QFileOpenEvent + size=32 align=8 + base size=32 base align=8 +QFileOpenEvent (0x7fea12d4dee0) 0 + vptr=((& QFileOpenEvent::_ZTV14QFileOpenEvent) + 16u) + QEvent (0x7fea12d4df50) 0 + primary-for QFileOpenEvent (0x7fea12d4dee0) + +Vtable for QToolBarChangeEvent +QToolBarChangeEvent::_ZTV19QToolBarChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QToolBarChangeEvent) +16 QToolBarChangeEvent::~QToolBarChangeEvent +24 QToolBarChangeEvent::~QToolBarChangeEvent + +Class QToolBarChangeEvent + size=24 align=8 + base size=21 base align=8 +QToolBarChangeEvent (0x7fea12d61230) 0 + vptr=((& QToolBarChangeEvent::_ZTV19QToolBarChangeEvent) + 16u) + QEvent (0x7fea12d612a0) 0 + primary-for QToolBarChangeEvent (0x7fea12d61230) + +Vtable for QShortcutEvent +QShortcutEvent::_ZTV14QShortcutEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QShortcutEvent) +16 QShortcutEvent::~QShortcutEvent +24 QShortcutEvent::~QShortcutEvent + +Class QShortcutEvent + size=40 align=8 + base size=40 base align=8 +QShortcutEvent (0x7fea12d61770) 0 + vptr=((& QShortcutEvent::_ZTV14QShortcutEvent) + 16u) + QEvent (0x7fea12d617e0) 0 + primary-for QShortcutEvent (0x7fea12d61770) + +Vtable for QClipboardEvent +QClipboardEvent::_ZTV15QClipboardEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QClipboardEvent) +16 QClipboardEvent::~QClipboardEvent +24 QClipboardEvent::~QClipboardEvent + +Class QClipboardEvent + size=24 align=8 + base size=20 base align=8 +QClipboardEvent (0x7fea12d6d620) 0 + vptr=((& QClipboardEvent::_ZTV15QClipboardEvent) + 16u) + QEvent (0x7fea12d6d690) 0 + primary-for QClipboardEvent (0x7fea12d6d620) + +Vtable for QWindowStateChangeEvent +QWindowStateChangeEvent::_ZTV23QWindowStateChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QWindowStateChangeEvent) +16 QWindowStateChangeEvent::~QWindowStateChangeEvent +24 QWindowStateChangeEvent::~QWindowStateChangeEvent + +Class QWindowStateChangeEvent + size=24 align=8 + base size=24 base align=8 +QWindowStateChangeEvent (0x7fea12d6da80) 0 + vptr=((& QWindowStateChangeEvent::_ZTV23QWindowStateChangeEvent) + 16u) + QEvent (0x7fea12d6daf0) 0 + primary-for QWindowStateChangeEvent (0x7fea12d6da80) + +Vtable for QMenubarUpdatedEvent +QMenubarUpdatedEvent::_ZTV20QMenubarUpdatedEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QMenubarUpdatedEvent) +16 QMenubarUpdatedEvent::~QMenubarUpdatedEvent +24 QMenubarUpdatedEvent::~QMenubarUpdatedEvent + +Class QMenubarUpdatedEvent + size=32 align=8 + base size=32 base align=8 +QMenubarUpdatedEvent (0x7fea12d6d7e0) 0 + vptr=((& QMenubarUpdatedEvent::_ZTV20QMenubarUpdatedEvent) + 16u) + QEvent (0x7fea12d6dcb0) 0 + primary-for QMenubarUpdatedEvent (0x7fea12d6d7e0) + +Class QTextInlineObject + size=16 align=8 + base size=16 base align=8 +QTextInlineObject (0x7fea12d7ba10) 0 + +Class QTextLayout::FormatRange + size=24 align=8 + base size=24 base align=8 +QTextLayout::FormatRange (0x7fea12d8bcb0) 0 + +Class QTextLayout + size=8 align=8 + base size=8 base align=8 +QTextLayout (0x7fea12d8ba10) 0 + +Class QTextLine + size=16 align=8 + base size=16 base align=8 +QTextLine (0x7fea12da6a80) 0 + +Vtable for QTextList +QTextList::_ZTV9QTextList: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTextList) +16 QTextList::metaObject +24 QTextList::qt_metacast +32 QTextList::qt_metacall +40 QTextList::~QTextList +48 QTextList::~QTextList +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTextBlockGroup::blockInserted +120 QTextBlockGroup::blockRemoved +128 QTextBlockGroup::blockFormatChanged + +Class QTextList + size=16 align=8 + base size=16 base align=8 +QTextList (0x7fea12dd8310) 0 + vptr=((& QTextList::_ZTV9QTextList) + 16u) + QTextBlockGroup (0x7fea12dd8380) 0 + primary-for QTextList (0x7fea12dd8310) + QTextObject (0x7fea12dd83f0) 0 + primary-for QTextBlockGroup (0x7fea12dd8380) + QObject (0x7fea12dd8460) 0 + primary-for QTextObject (0x7fea12dd83f0) + +Class QFontInfo + size=8 align=8 + base size=8 base align=8 +QFontInfo (0x7fea12dfb1c0) 0 + +Class QTextDocumentFragment + size=8 align=8 + base size=8 base align=8 +QTextDocumentFragment (0x7fea12dfbcb0) 0 + +Class QTextCursor + size=8 align=8 + base size=8 base align=8 +QTextCursor (0x7fea12e07700) 0 + +Class QPalette + size=16 align=8 + base size=12 base align=8 +QPalette (0x7fea12e1bbd0) 0 + +Class QColorGroup + size=16 align=8 + base size=12 base align=8 +QColorGroup (0x7fea12c814d0) 0 + QPalette (0x7fea12c81540) 0 + +Class QAbstractTextDocumentLayout::Selection + size=24 align=8 + base size=24 base align=8 +QAbstractTextDocumentLayout::Selection (0x7fea12cb8a10) 0 + +Class QAbstractTextDocumentLayout::PaintContext + size=64 align=8 + base size=64 base align=8 +QAbstractTextDocumentLayout::PaintContext (0x7fea12cb8a80) 0 + +Vtable for QAbstractTextDocumentLayout +QAbstractTextDocumentLayout::_ZTV27QAbstractTextDocumentLayout: 24u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QAbstractTextDocumentLayout) +16 QAbstractTextDocumentLayout::metaObject +24 QAbstractTextDocumentLayout::qt_metacast +32 QAbstractTextDocumentLayout::qt_metacall +40 QAbstractTextDocumentLayout::~QAbstractTextDocumentLayout +48 QAbstractTextDocumentLayout::~QAbstractTextDocumentLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 QAbstractTextDocumentLayout::resizeInlineObject +176 QAbstractTextDocumentLayout::positionInlineObject +184 QAbstractTextDocumentLayout::drawInlineObject + +Class QAbstractTextDocumentLayout + size=16 align=8 + base size=16 base align=8 +QAbstractTextDocumentLayout (0x7fea12cb87e0) 0 + vptr=((& QAbstractTextDocumentLayout::_ZTV27QAbstractTextDocumentLayout) + 16u) + QObject (0x7fea12cb8850) 0 + primary-for QAbstractTextDocumentLayout (0x7fea12cb87e0) + +Vtable for QTextObjectInterface +QTextObjectInterface::_ZTV20QTextObjectInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QTextObjectInterface) +16 QTextObjectInterface::~QTextObjectInterface +24 QTextObjectInterface::~QTextObjectInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QTextObjectInterface + size=8 align=8 + base size=8 base align=8 +QTextObjectInterface (0x7fea12d03150) 0 nearly-empty + vptr=((& QTextObjectInterface::_ZTV20QTextObjectInterface) + 16u) + +Vtable for QSyntaxHighlighter +QSyntaxHighlighter::_ZTV18QSyntaxHighlighter: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QSyntaxHighlighter) +16 QSyntaxHighlighter::metaObject +24 QSyntaxHighlighter::qt_metacast +32 QSyntaxHighlighter::qt_metacall +40 QSyntaxHighlighter::~QSyntaxHighlighter +48 QSyntaxHighlighter::~QSyntaxHighlighter +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual + +Class QSyntaxHighlighter + size=16 align=8 + base size=16 base align=8 +QSyntaxHighlighter (0x7fea12d0d2a0) 0 + vptr=((& QSyntaxHighlighter::_ZTV18QSyntaxHighlighter) + 16u) + QObject (0x7fea12d0d310) 0 + primary-for QSyntaxHighlighter (0x7fea12d0d2a0) + +Vtable for QUndoGroup +QUndoGroup::_ZTV10QUndoGroup: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QUndoGroup) +16 QUndoGroup::metaObject +24 QUndoGroup::qt_metacast +32 QUndoGroup::qt_metacall +40 QUndoGroup::~QUndoGroup +48 QUndoGroup::~QUndoGroup +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QUndoGroup + size=16 align=8 + base size=16 base align=8 +QUndoGroup (0x7fea12d23c40) 0 + vptr=((& QUndoGroup::_ZTV10QUndoGroup) + 16u) + QObject (0x7fea12d23cb0) 0 + primary-for QUndoGroup (0x7fea12d23c40) + +Class QDesktopServices + size=1 align=1 + base size=0 base align=1 +QDesktopServices (0x7fea12b2f7e0) 0 empty + +Class QSizePolicy + size=4 align=4 + base size=4 base align=4 +QSizePolicy (0x7fea12b2f930) 0 + +Class QCursor + size=8 align=8 + base size=8 base align=8 +QCursor (0x7fea12bfc690) 0 + +Class QWidgetData + size=88 align=8 + base size=88 base align=8 +QWidgetData (0x7fea12bfce70) 0 + +Vtable for QWidget +QWidget::_ZTV7QWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QWidget) +16 QWidget::metaObject +24 QWidget::qt_metacast +32 QWidget::qt_metacall +40 QWidget::~QWidget +48 QWidget::~QWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI7QWidget) +464 QWidget::_ZThn16_N7QWidgetD1Ev +472 QWidget::_ZThn16_N7QWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWidget + size=40 align=8 + base size=40 base align=8 +QWidget (0x7fea12bf9a00) 0 + vptr=((& QWidget::_ZTV7QWidget) + 16u) + QObject (0x7fea12bfcee0) 0 + primary-for QWidget (0x7fea12bf9a00) + QPaintDevice (0x7fea12bfcf50) 16 + vptr=((& QWidget::_ZTV7QWidget) + 464u) + +Vtable for QFrame +QFrame::_ZTV6QFrame: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QFrame) +16 QFrame::metaObject +24 QFrame::qt_metacast +32 QFrame::qt_metacall +40 QFrame::~QFrame +48 QFrame::~QFrame +56 QFrame::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QFrame::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFrame::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI6QFrame) +464 QFrame::_ZThn16_N6QFrameD1Ev +472 QFrame::_ZThn16_N6QFrameD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFrame + size=40 align=8 + base size=40 base align=8 +QFrame (0x7fea12978cb0) 0 + vptr=((& QFrame::_ZTV6QFrame) + 16u) + QWidget (0x7fea1297d400) 0 + primary-for QFrame (0x7fea12978cb0) + QObject (0x7fea12978d20) 0 + primary-for QWidget (0x7fea1297d400) + QPaintDevice (0x7fea12978d90) 16 + vptr=((& QFrame::_ZTV6QFrame) + 464u) + +Vtable for QAbstractScrollArea +QAbstractScrollArea::_ZTV19QAbstractScrollArea: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractScrollArea) +16 QAbstractScrollArea::metaObject +24 QAbstractScrollArea::qt_metacast +32 QAbstractScrollArea::qt_metacall +40 QAbstractScrollArea::~QAbstractScrollArea +48 QAbstractScrollArea::~QAbstractScrollArea +56 QAbstractScrollArea::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractScrollArea::mousePressEvent +168 QAbstractScrollArea::mouseReleaseEvent +176 QAbstractScrollArea::mouseDoubleClickEvent +184 QAbstractScrollArea::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractScrollArea::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractScrollArea::paintEvent +256 QWidget::moveEvent +264 QAbstractScrollArea::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractScrollArea::dragEnterEvent +312 QAbstractScrollArea::dragMoveEvent +320 QAbstractScrollArea::dragLeaveEvent +328 QAbstractScrollArea::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QAbstractScrollArea::scrollContentsBy +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI19QAbstractScrollArea) +480 QAbstractScrollArea::_ZThn16_N19QAbstractScrollAreaD1Ev +488 QAbstractScrollArea::_ZThn16_N19QAbstractScrollAreaD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractScrollArea + size=40 align=8 + base size=40 base align=8 +QAbstractScrollArea (0x7fea129a3310) 0 + vptr=((& QAbstractScrollArea::_ZTV19QAbstractScrollArea) + 16u) + QFrame (0x7fea129a3380) 0 + primary-for QAbstractScrollArea (0x7fea129a3310) + QWidget (0x7fea12999700) 0 + primary-for QFrame (0x7fea129a3380) + QObject (0x7fea129a33f0) 0 + primary-for QWidget (0x7fea12999700) + QPaintDevice (0x7fea129a3460) 16 + vptr=((& QAbstractScrollArea::_ZTV19QAbstractScrollArea) + 480u) + +Class QItemSelectionRange + size=16 align=8 + base size=16 base align=8 +QItemSelectionRange (0x7fea129c7230) 0 + +Vtable for QItemSelectionModel +QItemSelectionModel::_ZTV19QItemSelectionModel: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QItemSelectionModel) +16 QItemSelectionModel::metaObject +24 QItemSelectionModel::qt_metacast +32 QItemSelectionModel::qt_metacall +40 QItemSelectionModel::~QItemSelectionModel +48 QItemSelectionModel::~QItemSelectionModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QItemSelectionModel::select +120 QItemSelectionModel::select +128 QItemSelectionModel::clear +136 QItemSelectionModel::reset + +Class QItemSelectionModel + size=16 align=8 + base size=16 base align=8 +QItemSelectionModel (0x7fea1282d700) 0 + vptr=((& QItemSelectionModel::_ZTV19QItemSelectionModel) + 16u) + QObject (0x7fea1282d770) 0 + primary-for QItemSelectionModel (0x7fea1282d700) + +Class QItemSelection + size=8 align=8 + base size=8 base align=8 +QItemSelection (0x7fea1286fbd0) 0 + QList (0x7fea1286fc40) 0 + +Vtable for QValidator +QValidator::_ZTV10QValidator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QValidator) +16 QValidator::metaObject +24 QValidator::qt_metacast +32 QValidator::qt_metacall +40 QValidator::~QValidator +48 QValidator::~QValidator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 QValidator::fixup + +Class QValidator + size=16 align=8 + base size=16 base align=8 +QValidator (0x7fea128a94d0) 0 + vptr=((& QValidator::_ZTV10QValidator) + 16u) + QObject (0x7fea128a9540) 0 + primary-for QValidator (0x7fea128a94d0) + +Vtable for QIntValidator +QIntValidator::_ZTV13QIntValidator: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QIntValidator) +16 QIntValidator::metaObject +24 QIntValidator::qt_metacast +32 QIntValidator::qt_metacall +40 QIntValidator::~QIntValidator +48 QIntValidator::~QIntValidator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QIntValidator::validate +120 QValidator::fixup +128 QIntValidator::setRange + +Class QIntValidator + size=24 align=8 + base size=24 base align=8 +QIntValidator (0x7fea128c3310) 0 + vptr=((& QIntValidator::_ZTV13QIntValidator) + 16u) + QValidator (0x7fea128c3380) 0 + primary-for QIntValidator (0x7fea128c3310) + QObject (0x7fea128c33f0) 0 + primary-for QValidator (0x7fea128c3380) + +Vtable for QDoubleValidator +QDoubleValidator::_ZTV16QDoubleValidator: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QDoubleValidator) +16 QDoubleValidator::metaObject +24 QDoubleValidator::qt_metacast +32 QDoubleValidator::qt_metacall +40 QDoubleValidator::~QDoubleValidator +48 QDoubleValidator::~QDoubleValidator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QDoubleValidator::validate +120 QValidator::fixup +128 QDoubleValidator::setRange + +Class QDoubleValidator + size=40 align=8 + base size=36 base align=8 +QDoubleValidator (0x7fea128dc2a0) 0 + vptr=((& QDoubleValidator::_ZTV16QDoubleValidator) + 16u) + QValidator (0x7fea128dc310) 0 + primary-for QDoubleValidator (0x7fea128dc2a0) + QObject (0x7fea128dc380) 0 + primary-for QValidator (0x7fea128dc310) + +Vtable for QRegExpValidator +QRegExpValidator::_ZTV16QRegExpValidator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QRegExpValidator) +16 QRegExpValidator::metaObject +24 QRegExpValidator::qt_metacast +32 QRegExpValidator::qt_metacall +40 QRegExpValidator::~QRegExpValidator +48 QRegExpValidator::~QRegExpValidator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QRegExpValidator::validate +120 QValidator::fixup + +Class QRegExpValidator + size=24 align=8 + base size=24 base align=8 +QRegExpValidator (0x7fea128f7b60) 0 + vptr=((& QRegExpValidator::_ZTV16QRegExpValidator) + 16u) + QValidator (0x7fea128f7bd0) 0 + primary-for QRegExpValidator (0x7fea128f7b60) + QObject (0x7fea128f7c40) 0 + primary-for QValidator (0x7fea128f7bd0) + +Vtable for QAbstractSpinBox +QAbstractSpinBox::_ZTV16QAbstractSpinBox: 68u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QAbstractSpinBox) +16 QAbstractSpinBox::metaObject +24 QAbstractSpinBox::qt_metacast +32 QAbstractSpinBox::qt_metacall +40 QAbstractSpinBox::~QAbstractSpinBox +48 QAbstractSpinBox::~QAbstractSpinBox +56 QAbstractSpinBox::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractSpinBox::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractSpinBox::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QAbstractSpinBox::wheelEvent +200 QAbstractSpinBox::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QAbstractSpinBox::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractSpinBox::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractSpinBox::validate +456 QAbstractSpinBox::fixup +464 QAbstractSpinBox::stepBy +472 QAbstractSpinBox::clear +480 QAbstractSpinBox::stepEnabled +488 (int (*)(...))-0x00000000000000010 +496 (int (*)(...))(& _ZTI16QAbstractSpinBox) +504 QAbstractSpinBox::_ZThn16_N16QAbstractSpinBoxD1Ev +512 QAbstractSpinBox::_ZThn16_N16QAbstractSpinBoxD0Ev +520 QWidget::_ZThn16_NK7QWidget7devTypeEv +528 QWidget::_ZThn16_NK7QWidget11paintEngineEv +536 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractSpinBox + size=40 align=8 + base size=40 base align=8 +QAbstractSpinBox (0x7fea1290b7e0) 0 + vptr=((& QAbstractSpinBox::_ZTV16QAbstractSpinBox) + 16u) + QWidget (0x7fea128fa700) 0 + primary-for QAbstractSpinBox (0x7fea1290b7e0) + QObject (0x7fea1290b850) 0 + primary-for QWidget (0x7fea128fa700) + QPaintDevice (0x7fea1290b8c0) 16 + vptr=((& QAbstractSpinBox::_ZTV16QAbstractSpinBox) + 504u) + +Class QIcon + size=8 align=8 + base size=8 base align=8 +QIcon (0x7fea1275a7e0) 0 + +Vtable for QAbstractSlider +QAbstractSlider::_ZTV15QAbstractSlider: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QAbstractSlider) +16 QAbstractSlider::metaObject +24 QAbstractSlider::qt_metacast +32 QAbstractSlider::qt_metacall +40 QAbstractSlider::~QAbstractSlider +48 QAbstractSlider::~QAbstractSlider +56 QAbstractSlider::event +64 QObject::eventFilter +72 QAbstractSlider::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QAbstractSlider::wheelEvent +200 QAbstractSlider::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractSlider::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractSlider::sliderChange +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI15QAbstractSlider) +472 QAbstractSlider::_ZThn16_N15QAbstractSliderD1Ev +480 QAbstractSlider::_ZThn16_N15QAbstractSliderD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractSlider + size=40 align=8 + base size=40 base align=8 +QAbstractSlider (0x7fea12797380) 0 + vptr=((& QAbstractSlider::_ZTV15QAbstractSlider) + 16u) + QWidget (0x7fea1279a380) 0 + primary-for QAbstractSlider (0x7fea12797380) + QObject (0x7fea127973f0) 0 + primary-for QWidget (0x7fea1279a380) + QPaintDevice (0x7fea12797460) 16 + vptr=((& QAbstractSlider::_ZTV15QAbstractSlider) + 472u) + +Vtable for QSlider +QSlider::_ZTV7QSlider: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QSlider) +16 QSlider::metaObject +24 QSlider::qt_metacast +32 QSlider::qt_metacall +40 QSlider::~QSlider +48 QSlider::~QSlider +56 QSlider::event +64 QObject::eventFilter +72 QAbstractSlider::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QSlider::sizeHint +136 QSlider::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QSlider::mousePressEvent +168 QSlider::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QSlider::mouseMoveEvent +192 QAbstractSlider::wheelEvent +200 QAbstractSlider::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QSlider::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractSlider::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractSlider::sliderChange +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI7QSlider) +472 QSlider::_ZThn16_N7QSliderD1Ev +480 QSlider::_ZThn16_N7QSliderD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSlider + size=40 align=8 + base size=40 base align=8 +QSlider (0x7fea127cf1c0) 0 + vptr=((& QSlider::_ZTV7QSlider) + 16u) + QAbstractSlider (0x7fea127cf230) 0 + primary-for QSlider (0x7fea127cf1c0) + QWidget (0x7fea127cd380) 0 + primary-for QAbstractSlider (0x7fea127cf230) + QObject (0x7fea127cf2a0) 0 + primary-for QWidget (0x7fea127cd380) + QPaintDevice (0x7fea127cf310) 16 + vptr=((& QSlider::_ZTV7QSlider) + 472u) + +Vtable for QStyle +QStyle::_ZTV6QStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QStyle) +16 QStyle::metaObject +24 QStyle::qt_metacast +32 QStyle::qt_metacall +40 QStyle::~QStyle +48 QStyle::~QStyle +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QStyle::polish +120 QStyle::unpolish +128 QStyle::polish +136 QStyle::unpolish +144 QStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QStyle::standardPalette +192 __cxa_pure_virtual +200 __cxa_pure_virtual +208 __cxa_pure_virtual +216 __cxa_pure_virtual +224 __cxa_pure_virtual +232 __cxa_pure_virtual +240 __cxa_pure_virtual +248 __cxa_pure_virtual +256 __cxa_pure_virtual +264 __cxa_pure_virtual +272 __cxa_pure_virtual + +Class QStyle + size=16 align=8 + base size=16 base align=8 +QStyle (0x7fea127f7770) 0 + vptr=((& QStyle::_ZTV6QStyle) + 16u) + QObject (0x7fea127f77e0) 0 + primary-for QStyle (0x7fea127f7770) + +Vtable for QTabBar +QTabBar::_ZTV7QTabBar: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QTabBar) +16 QTabBar::metaObject +24 QTabBar::qt_metacast +32 QTabBar::qt_metacall +40 QTabBar::~QTabBar +48 QTabBar::~QTabBar +56 QTabBar::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QTabBar::sizeHint +136 QTabBar::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTabBar::mousePressEvent +168 QTabBar::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QTabBar::mouseMoveEvent +192 QTabBar::wheelEvent +200 QTabBar::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTabBar::paintEvent +256 QWidget::moveEvent +264 QTabBar::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QTabBar::showEvent +344 QTabBar::hideEvent +352 QWidget::x11Event +360 QTabBar::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QTabBar::tabSizeHint +456 QTabBar::tabInserted +464 QTabBar::tabRemoved +472 QTabBar::tabLayoutChange +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI7QTabBar) +496 QTabBar::_ZThn16_N7QTabBarD1Ev +504 QTabBar::_ZThn16_N7QTabBarD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTabBar + size=40 align=8 + base size=40 base align=8 +QTabBar (0x7fea126a84d0) 0 + vptr=((& QTabBar::_ZTV7QTabBar) + 16u) + QWidget (0x7fea12645e80) 0 + primary-for QTabBar (0x7fea126a84d0) + QObject (0x7fea126a8540) 0 + primary-for QWidget (0x7fea12645e80) + QPaintDevice (0x7fea126a85b0) 16 + vptr=((& QTabBar::_ZTV7QTabBar) + 496u) + +Vtable for QTabWidget +QTabWidget::_ZTV10QTabWidget: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTabWidget) +16 QTabWidget::metaObject +24 QTabWidget::qt_metacast +32 QTabWidget::qt_metacall +40 QTabWidget::~QTabWidget +48 QTabWidget::~QTabWidget +56 QTabWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QTabWidget::sizeHint +136 QTabWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QTabWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTabWidget::paintEvent +256 QWidget::moveEvent +264 QTabWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QTabWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QTabWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QTabWidget::tabInserted +456 QTabWidget::tabRemoved +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI10QTabWidget) +480 QTabWidget::_ZThn16_N10QTabWidgetD1Ev +488 QTabWidget::_ZThn16_N10QTabWidgetD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTabWidget + size=40 align=8 + base size=40 base align=8 +QTabWidget (0x7fea126daaf0) 0 + vptr=((& QTabWidget::_ZTV10QTabWidget) + 16u) + QWidget (0x7fea126dd180) 0 + primary-for QTabWidget (0x7fea126daaf0) + QObject (0x7fea126dab60) 0 + primary-for QWidget (0x7fea126dd180) + QPaintDevice (0x7fea126dabd0) 16 + vptr=((& QTabWidget::_ZTV10QTabWidget) + 480u) + +Vtable for QRubberBand +QRubberBand::_ZTV11QRubberBand: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QRubberBand) +16 QRubberBand::metaObject +24 QRubberBand::qt_metacast +32 QRubberBand::qt_metacall +40 QRubberBand::~QRubberBand +48 QRubberBand::~QRubberBand +56 QRubberBand::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QRubberBand::paintEvent +256 QRubberBand::moveEvent +264 QRubberBand::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QRubberBand::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QRubberBand::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI11QRubberBand) +464 QRubberBand::_ZThn16_N11QRubberBandD1Ev +472 QRubberBand::_ZThn16_N11QRubberBandD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QRubberBand + size=40 align=8 + base size=40 base align=8 +QRubberBand (0x7fea1252e4d0) 0 + vptr=((& QRubberBand::_ZTV11QRubberBand) + 16u) + QWidget (0x7fea1252d200) 0 + primary-for QRubberBand (0x7fea1252e4d0) + QObject (0x7fea1252e540) 0 + primary-for QWidget (0x7fea1252d200) + QPaintDevice (0x7fea1252e5b0) 16 + vptr=((& QRubberBand::_ZTV11QRubberBand) + 464u) + +Class QStyleOption + size=56 align=8 + base size=56 base align=8 +QStyleOption (0x7fea125517e0) 0 + +Class QStyleOptionFocusRect + size=72 align=8 + base size=72 base align=8 +QStyleOptionFocusRect (0x7fea1255f540) 0 + QStyleOption (0x7fea1255f5b0) 0 + +Class QStyleOptionFrame + size=64 align=8 + base size=64 base align=8 +QStyleOptionFrame (0x7fea12569540) 0 + QStyleOption (0x7fea125695b0) 0 + +Class QStyleOptionFrameV2 + size=72 align=8 + base size=68 base align=8 +QStyleOptionFrameV2 (0x7fea125754d0) 0 + QStyleOptionFrame (0x7fea12575540) 0 + QStyleOption (0x7fea125755b0) 0 + +Class QStyleOptionFrameV3 + size=72 align=8 + base size=72 base align=8 +QStyleOptionFrameV3 (0x7fea125a5d90) 0 + QStyleOptionFrameV2 (0x7fea125a5e00) 0 + QStyleOptionFrame (0x7fea125a5e70) 0 + QStyleOption (0x7fea125a5ee0) 0 + +Class QStyleOptionTabWidgetFrame + size=96 align=8 + base size=92 base align=8 +QStyleOptionTabWidgetFrame (0x7fea125c8690) 0 + QStyleOption (0x7fea125c8700) 0 + +Class QStyleOptionTabBarBase + size=96 align=8 + base size=92 base align=8 +QStyleOptionTabBarBase (0x7fea125d6e00) 0 + QStyleOption (0x7fea125d6e70) 0 + +Class QStyleOptionTabBarBaseV2 + size=96 align=8 + base size=93 base align=8 +QStyleOptionTabBarBaseV2 (0x7fea125e81c0) 0 + QStyleOptionTabBarBase (0x7fea125e8230) 0 + QStyleOption (0x7fea125e82a0) 0 + +Class QStyleOptionHeader + size=112 align=8 + base size=108 base align=8 +QStyleOptionHeader (0x7fea125f1850) 0 + QStyleOption (0x7fea125f18c0) 0 + +Class QStyleOptionButton + size=88 align=8 + base size=88 base align=8 +QStyleOptionButton (0x7fea1260ba10) 0 + QStyleOption (0x7fea1260ba80) 0 + +Class QStyleOptionTab + size=96 align=8 + base size=96 base align=8 +QStyleOptionTab (0x7fea124583f0) 0 + QStyleOption (0x7fea12458460) 0 + +Class QStyleOptionTabV2 + size=104 align=8 + base size=104 base align=8 +QStyleOptionTabV2 (0x7fea124a2380) 0 + QStyleOptionTab (0x7fea124a23f0) 0 + QStyleOption (0x7fea124a2460) 0 + +Class QStyleOptionTabV3 + size=128 align=8 + base size=124 base align=8 +QStyleOptionTabV3 (0x7fea124acd90) 0 + QStyleOptionTabV2 (0x7fea124ace00) 0 + QStyleOptionTab (0x7fea124ace70) 0 + QStyleOption (0x7fea124acee0) 0 + +Class QStyleOptionToolBar + size=80 align=8 + base size=80 base align=8 +QStyleOptionToolBar (0x7fea124cb3f0) 0 + QStyleOption (0x7fea124cb460) 0 + +Class QStyleOptionProgressBar + size=88 align=8 + base size=85 base align=8 +QStyleOptionProgressBar (0x7fea124febd0) 0 + QStyleOption (0x7fea124fec40) 0 + +Class QStyleOptionProgressBarV2 + size=96 align=8 + base size=94 base align=8 +QStyleOptionProgressBarV2 (0x7fea12323380) 0 + QStyleOptionProgressBar (0x7fea123233f0) 0 + QStyleOption (0x7fea12323460) 0 + +Class QStyleOptionMenuItem + size=128 align=8 + base size=128 base align=8 +QStyleOptionMenuItem (0x7fea12323c40) 0 + QStyleOption (0x7fea12323cb0) 0 + +Class QStyleOptionQ3ListViewItem + size=80 align=8 + base size=76 base align=8 +QStyleOptionQ3ListViewItem (0x7fea1233ee70) 0 + QStyleOption (0x7fea1233eee0) 0 + +Class QStyleOptionQ3DockWindow + size=64 align=8 + base size=58 base align=8 +QStyleOptionQ3DockWindow (0x7fea12389310) 0 + QStyleOption (0x7fea12389380) 0 + +Class QStyleOptionDockWidget + size=72 align=8 + base size=67 base align=8 +QStyleOptionDockWidget (0x7fea123952a0) 0 + QStyleOption (0x7fea12395310) 0 + +Class QStyleOptionDockWidgetV2 + size=72 align=8 + base size=68 base align=8 +QStyleOptionDockWidgetV2 (0x7fea123a3690) 0 + QStyleOptionDockWidget (0x7fea123a3700) 0 + QStyleOption (0x7fea123a3770) 0 + +Class QStyleOptionViewItem + size=104 align=8 + base size=97 base align=8 +QStyleOptionViewItem (0x7fea123abe70) 0 + QStyleOption (0x7fea123abee0) 0 + +Class QStyleOptionViewItemV2 + size=104 align=8 + base size=104 base align=8 +QStyleOptionViewItemV2 (0x7fea123c6a10) 0 + QStyleOptionViewItem (0x7fea123c6a80) 0 + QStyleOption (0x7fea123c6af0) 0 + +Class QStyleOptionViewItemV3 + size=120 align=8 + base size=120 base align=8 +QStyleOptionViewItemV3 (0x7fea1240e460) 0 + QStyleOptionViewItemV2 (0x7fea1240e4d0) 0 + QStyleOptionViewItem (0x7fea1240e540) 0 + QStyleOption (0x7fea1240e5b0) 0 + +Class QStyleOptionViewItemV4 + size=184 align=8 + base size=184 base align=8 +QStyleOptionViewItemV4 (0x7fea12419d20) 0 + QStyleOptionViewItemV3 (0x7fea12419d90) 0 + QStyleOptionViewItemV2 (0x7fea12419e00) 0 + QStyleOptionViewItem (0x7fea12419e70) 0 + QStyleOption (0x7fea12419ee0) 0 + +Class QStyleOptionToolBox + size=72 align=8 + base size=72 base align=8 +QStyleOptionToolBox (0x7fea1223a460) 0 + QStyleOption (0x7fea1223a4d0) 0 + +Class QStyleOptionToolBoxV2 + size=80 align=8 + base size=80 base align=8 +QStyleOptionToolBoxV2 (0x7fea1224b930) 0 + QStyleOptionToolBox (0x7fea1224b9a0) 0 + QStyleOption (0x7fea1224ba10) 0 + +Class QStyleOptionRubberBand + size=64 align=8 + base size=61 base align=8 +QStyleOptionRubberBand (0x7fea1225f620) 0 + QStyleOption (0x7fea1225f690) 0 + +Class QStyleOptionComplex + size=64 align=8 + base size=64 base align=8 +QStyleOptionComplex (0x7fea1226a700) 0 + QStyleOption (0x7fea1226a770) 0 + +Class QStyleOptionSlider + size=120 align=8 + base size=113 base align=8 +QStyleOptionSlider (0x7fea12272ee0) 0 + QStyleOptionComplex (0x7fea12272f50) 0 + QStyleOption (0x7fea12272310) 0 + +Class QStyleOptionSpinBox + size=80 align=8 + base size=73 base align=8 +QStyleOptionSpinBox (0x7fea12289cb0) 0 + QStyleOptionComplex (0x7fea12289d20) 0 + QStyleOption (0x7fea12289d90) 0 + +Class QStyleOptionQ3ListView + size=112 align=8 + base size=105 base align=8 +QStyleOptionQ3ListView (0x7fea1229a1c0) 0 + QStyleOptionComplex (0x7fea1229a230) 0 + QStyleOption (0x7fea1229a2a0) 0 + +Class QStyleOptionToolButton + size=128 align=8 + base size=128 base align=8 +QStyleOptionToolButton (0x7fea122cfe00) 0 + QStyleOptionComplex (0x7fea122cfe70) 0 + QStyleOption (0x7fea122cfee0) 0 + +Class QStyleOptionComboBox + size=112 align=8 + base size=112 base align=8 +QStyleOptionComboBox (0x7fea12124070) 0 + QStyleOptionComplex (0x7fea121240e0) 0 + QStyleOption (0x7fea12124150) 0 + +Class QStyleOptionTitleBar + size=88 align=8 + base size=88 base align=8 +QStyleOptionTitleBar (0x7fea12132b60) 0 + QStyleOptionComplex (0x7fea12132bd0) 0 + QStyleOption (0x7fea12132c40) 0 + +Class QStyleOptionGroupBox + size=112 align=8 + base size=108 base align=8 +QStyleOptionGroupBox (0x7fea121493f0) 0 + QStyleOptionComplex (0x7fea12149460) 0 + QStyleOption (0x7fea121494d0) 0 + +Class QStyleOptionSizeGrip + size=72 align=8 + base size=68 base align=8 +QStyleOptionSizeGrip (0x7fea1215f000) 0 + QStyleOptionComplex (0x7fea1215f070) 0 + QStyleOption (0x7fea1215f0e0) 0 + +Class QStyleOptionGraphicsItem + size=144 align=8 + base size=144 base align=8 +QStyleOptionGraphicsItem (0x7fea1215ff50) 0 + QStyleOption (0x7fea1215f700) 0 + +Class QStyleHintReturn + size=8 align=4 + base size=8 base align=4 +QStyleHintReturn (0x7fea121782a0) 0 + +Class QStyleHintReturnMask + size=16 align=8 + base size=16 base align=8 +QStyleHintReturnMask (0x7fea12178700) 0 + QStyleHintReturn (0x7fea12178770) 0 + +Class QStyleHintReturnVariant + size=24 align=8 + base size=24 base align=8 +QStyleHintReturnVariant (0x7fea12178930) 0 + QStyleHintReturn (0x7fea121789a0) 0 + +Vtable for QAbstractItemDelegate +QAbstractItemDelegate::_ZTV21QAbstractItemDelegate: 21u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QAbstractItemDelegate) +16 QAbstractItemDelegate::metaObject +24 QAbstractItemDelegate::qt_metacast +32 QAbstractItemDelegate::qt_metacall +40 QAbstractItemDelegate::~QAbstractItemDelegate +48 QAbstractItemDelegate::~QAbstractItemDelegate +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAbstractItemDelegate::createEditor +136 QAbstractItemDelegate::setEditorData +144 QAbstractItemDelegate::setModelData +152 QAbstractItemDelegate::updateEditorGeometry +160 QAbstractItemDelegate::editorEvent + +Class QAbstractItemDelegate + size=16 align=8 + base size=16 base align=8 +QAbstractItemDelegate (0x7fea12178e00) 0 + vptr=((& QAbstractItemDelegate::_ZTV21QAbstractItemDelegate) + 16u) + QObject (0x7fea12178e70) 0 + primary-for QAbstractItemDelegate (0x7fea12178e00) + +Vtable for QAbstractItemView +QAbstractItemView::_ZTV17QAbstractItemView: 103u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAbstractItemView) +16 QAbstractItemView::metaObject +24 QAbstractItemView::qt_metacast +32 QAbstractItemView::qt_metacall +40 QAbstractItemView::~QAbstractItemView +48 QAbstractItemView::~QAbstractItemView +56 QAbstractItemView::event +64 QObject::eventFilter +72 QAbstractItemView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QAbstractItemView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QAbstractItemView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractScrollArea::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QAbstractScrollArea::scrollContentsBy +464 QAbstractItemView::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 __cxa_pure_virtual +496 __cxa_pure_virtual +504 __cxa_pure_virtual +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QAbstractItemView::reset +536 QAbstractItemView::setRootIndex +544 QAbstractItemView::doItemsLayout +552 QAbstractItemView::selectAll +560 QAbstractItemView::dataChanged +568 QAbstractItemView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QAbstractItemView::selectionChanged +592 QAbstractItemView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QAbstractItemView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 __cxa_pure_virtual +688 __cxa_pure_virtual +696 __cxa_pure_virtual +704 __cxa_pure_virtual +712 __cxa_pure_virtual +720 __cxa_pure_virtual +728 QAbstractItemView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 (int (*)(...))-0x00000000000000010 +776 (int (*)(...))(& _ZTI17QAbstractItemView) +784 QAbstractItemView::_ZThn16_N17QAbstractItemViewD1Ev +792 QAbstractItemView::_ZThn16_N17QAbstractItemViewD0Ev +800 QWidget::_ZThn16_NK7QWidget7devTypeEv +808 QWidget::_ZThn16_NK7QWidget11paintEngineEv +816 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractItemView + size=40 align=8 + base size=40 base align=8 +QAbstractItemView (0x7fea121bd4d0) 0 + vptr=((& QAbstractItemView::_ZTV17QAbstractItemView) + 16u) + QAbstractScrollArea (0x7fea121bd540) 0 + primary-for QAbstractItemView (0x7fea121bd4d0) + QFrame (0x7fea121bd5b0) 0 + primary-for QAbstractScrollArea (0x7fea121bd540) + QWidget (0x7fea121be000) 0 + primary-for QFrame (0x7fea121bd5b0) + QObject (0x7fea121bd620) 0 + primary-for QWidget (0x7fea121be000) + QPaintDevice (0x7fea121bd690) 16 + vptr=((& QAbstractItemView::_ZTV17QAbstractItemView) + 784u) + +Vtable for QListView +QListView::_ZTV9QListView: 103u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QListView) +16 QListView::metaObject +24 QListView::qt_metacast +32 QListView::qt_metacall +40 QListView::~QListView +48 QListView::~QListView +56 QListView::event +64 QObject::eventFilter +72 QListView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QListView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QListView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QListView::paintEvent +256 QWidget::moveEvent +264 QListView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QListView::dragMoveEvent +320 QListView::dragLeaveEvent +328 QListView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QListView::scrollContentsBy +464 QAbstractItemView::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QListView::visualRect +496 QListView::scrollTo +504 QListView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QListView::reset +536 QListView::setRootIndex +544 QListView::doItemsLayout +552 QAbstractItemView::selectAll +560 QListView::dataChanged +568 QListView::rowsInserted +576 QListView::rowsAboutToBeRemoved +584 QListView::selectionChanged +592 QListView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QListView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QListView::moveCursor +688 QListView::horizontalOffset +696 QListView::verticalOffset +704 QListView::isIndexHidden +712 QListView::setSelection +720 QListView::visualRegionForSelection +728 QListView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QListView::startDrag +760 QListView::viewOptions +768 (int (*)(...))-0x00000000000000010 +776 (int (*)(...))(& _ZTI9QListView) +784 QListView::_ZThn16_N9QListViewD1Ev +792 QListView::_ZThn16_N9QListViewD0Ev +800 QWidget::_ZThn16_NK7QWidget7devTypeEv +808 QWidget::_ZThn16_NK7QWidget11paintEngineEv +816 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QListView + size=40 align=8 + base size=40 base align=8 +QListView (0x7fea1202bcb0) 0 + vptr=((& QListView::_ZTV9QListView) + 16u) + QAbstractItemView (0x7fea1202bd20) 0 + primary-for QListView (0x7fea1202bcb0) + QAbstractScrollArea (0x7fea1202bd90) 0 + primary-for QAbstractItemView (0x7fea1202bd20) + QFrame (0x7fea1202be00) 0 + primary-for QAbstractScrollArea (0x7fea1202bd90) + QWidget (0x7fea1220e680) 0 + primary-for QFrame (0x7fea1202be00) + QObject (0x7fea1202be70) 0 + primary-for QWidget (0x7fea1220e680) + QPaintDevice (0x7fea1202bee0) 16 + vptr=((& QListView::_ZTV9QListView) + 784u) + +Vtable for QUndoView +QUndoView::_ZTV9QUndoView: 103u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QUndoView) +16 QUndoView::metaObject +24 QUndoView::qt_metacast +32 QUndoView::qt_metacall +40 QUndoView::~QUndoView +48 QUndoView::~QUndoView +56 QListView::event +64 QObject::eventFilter +72 QListView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QListView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QListView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QListView::paintEvent +256 QWidget::moveEvent +264 QListView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QListView::dragMoveEvent +320 QListView::dragLeaveEvent +328 QListView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QListView::scrollContentsBy +464 QAbstractItemView::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QListView::visualRect +496 QListView::scrollTo +504 QListView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QListView::reset +536 QListView::setRootIndex +544 QListView::doItemsLayout +552 QAbstractItemView::selectAll +560 QListView::dataChanged +568 QListView::rowsInserted +576 QListView::rowsAboutToBeRemoved +584 QListView::selectionChanged +592 QListView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QListView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QListView::moveCursor +688 QListView::horizontalOffset +696 QListView::verticalOffset +704 QListView::isIndexHidden +712 QListView::setSelection +720 QListView::visualRegionForSelection +728 QListView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QListView::startDrag +760 QListView::viewOptions +768 (int (*)(...))-0x00000000000000010 +776 (int (*)(...))(& _ZTI9QUndoView) +784 QUndoView::_ZThn16_N9QUndoViewD1Ev +792 QUndoView::_ZThn16_N9QUndoViewD0Ev +800 QWidget::_ZThn16_NK7QWidget7devTypeEv +808 QWidget::_ZThn16_NK7QWidget11paintEngineEv +816 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QUndoView + size=40 align=8 + base size=40 base align=8 +QUndoView (0x7fea12079380) 0 + vptr=((& QUndoView::_ZTV9QUndoView) + 16u) + QListView (0x7fea120793f0) 0 + primary-for QUndoView (0x7fea12079380) + QAbstractItemView (0x7fea12079460) 0 + primary-for QListView (0x7fea120793f0) + QAbstractScrollArea (0x7fea120794d0) 0 + primary-for QAbstractItemView (0x7fea12079460) + QFrame (0x7fea12079540) 0 + primary-for QAbstractScrollArea (0x7fea120794d0) + QWidget (0x7fea12070580) 0 + primary-for QFrame (0x7fea12079540) + QObject (0x7fea120795b0) 0 + primary-for QWidget (0x7fea12070580) + QPaintDevice (0x7fea12079620) 16 + vptr=((& QUndoView::_ZTV9QUndoView) + 784u) + +Vtable for QCompleter +QCompleter::_ZTV10QCompleter: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QCompleter) +16 QCompleter::metaObject +24 QCompleter::qt_metacast +32 QCompleter::qt_metacall +40 QCompleter::~QCompleter +48 QCompleter::~QCompleter +56 QCompleter::event +64 QCompleter::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCompleter::pathFromIndex +120 QCompleter::splitPath + +Class QCompleter + size=16 align=8 + base size=16 base align=8 +QCompleter (0x7fea12097070) 0 + vptr=((& QCompleter::_ZTV10QCompleter) + 16u) + QObject (0x7fea120970e0) 0 + primary-for QCompleter (0x7fea12097070) + +Vtable for QUndoCommand +QUndoCommand::_ZTV12QUndoCommand: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QUndoCommand) +16 QUndoCommand::~QUndoCommand +24 QUndoCommand::~QUndoCommand +32 QUndoCommand::undo +40 QUndoCommand::redo +48 QUndoCommand::id +56 QUndoCommand::mergeWith + +Class QUndoCommand + size=16 align=8 + base size=16 base align=8 +QUndoCommand (0x7fea120bc000) 0 + vptr=((& QUndoCommand::_ZTV12QUndoCommand) + 16u) + +Vtable for QUndoStack +QUndoStack::_ZTV10QUndoStack: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QUndoStack) +16 QUndoStack::metaObject +24 QUndoStack::qt_metacast +32 QUndoStack::qt_metacall +40 QUndoStack::~QUndoStack +48 QUndoStack::~QUndoStack +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QUndoStack + size=16 align=8 + base size=16 base align=8 +QUndoStack (0x7fea120bc930) 0 + vptr=((& QUndoStack::_ZTV10QUndoStack) + 16u) + QObject (0x7fea120bc9a0) 0 + primary-for QUndoStack (0x7fea120bc930) + +Vtable for QSystemTrayIcon +QSystemTrayIcon::_ZTV15QSystemTrayIcon: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSystemTrayIcon) +16 QSystemTrayIcon::metaObject +24 QSystemTrayIcon::qt_metacast +32 QSystemTrayIcon::qt_metacall +40 QSystemTrayIcon::~QSystemTrayIcon +48 QSystemTrayIcon::~QSystemTrayIcon +56 QSystemTrayIcon::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSystemTrayIcon + size=16 align=8 + base size=16 base align=8 +QSystemTrayIcon (0x7fea120e0460) 0 + vptr=((& QSystemTrayIcon::_ZTV15QSystemTrayIcon) + 16u) + QObject (0x7fea120e04d0) 0 + primary-for QSystemTrayIcon (0x7fea120e0460) + +Vtable for QDialog +QDialog::_ZTV7QDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QDialog) +16 QDialog::metaObject +24 QDialog::qt_metacast +32 QDialog::qt_metacall +40 QDialog::~QDialog +48 QDialog::~QDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI7QDialog) +488 QDialog::_ZThn16_N7QDialogD1Ev +496 QDialog::_ZThn16_N7QDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDialog + size=40 align=8 + base size=40 base align=8 +QDialog (0x7fea120fe690) 0 + vptr=((& QDialog::_ZTV7QDialog) + 16u) + QWidget (0x7fea120fd380) 0 + primary-for QDialog (0x7fea120fe690) + QObject (0x7fea120fe700) 0 + primary-for QWidget (0x7fea120fd380) + QPaintDevice (0x7fea120fe770) 16 + vptr=((& QDialog::_ZTV7QDialog) + 488u) + +Vtable for QAbstractPageSetupDialog +QAbstractPageSetupDialog::_ZTV24QAbstractPageSetupDialog: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QAbstractPageSetupDialog) +16 QAbstractPageSetupDialog::metaObject +24 QAbstractPageSetupDialog::qt_metacast +32 QAbstractPageSetupDialog::qt_metacall +40 QAbstractPageSetupDialog::~QAbstractPageSetupDialog +48 QAbstractPageSetupDialog::~QAbstractPageSetupDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractPageSetupDialog::done +456 QDialog::accept +464 QDialog::reject +472 __cxa_pure_virtual +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI24QAbstractPageSetupDialog) +496 QAbstractPageSetupDialog::_ZThn16_N24QAbstractPageSetupDialogD1Ev +504 QAbstractPageSetupDialog::_ZThn16_N24QAbstractPageSetupDialogD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractPageSetupDialog + size=40 align=8 + base size=40 base align=8 +QAbstractPageSetupDialog (0x7fea11f204d0) 0 + vptr=((& QAbstractPageSetupDialog::_ZTV24QAbstractPageSetupDialog) + 16u) + QDialog (0x7fea11f20540) 0 + primary-for QAbstractPageSetupDialog (0x7fea11f204d0) + QWidget (0x7fea120fdd80) 0 + primary-for QDialog (0x7fea11f20540) + QObject (0x7fea11f205b0) 0 + primary-for QWidget (0x7fea120fdd80) + QPaintDevice (0x7fea11f20620) 16 + vptr=((& QAbstractPageSetupDialog::_ZTV24QAbstractPageSetupDialog) + 496u) + +Vtable for QColorDialog +QColorDialog::_ZTV12QColorDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QColorDialog) +16 QColorDialog::metaObject +24 QColorDialog::qt_metacast +32 QColorDialog::qt_metacall +40 QColorDialog::~QColorDialog +48 QColorDialog::~QColorDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QColorDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QColorDialog::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QColorDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI12QColorDialog) +488 QColorDialog::_ZThn16_N12QColorDialogD1Ev +496 QColorDialog::_ZThn16_N12QColorDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QColorDialog + size=40 align=8 + base size=40 base align=8 +QColorDialog (0x7fea11f36a80) 0 + vptr=((& QColorDialog::_ZTV12QColorDialog) + 16u) + QDialog (0x7fea11f36af0) 0 + primary-for QColorDialog (0x7fea11f36a80) + QWidget (0x7fea11f34680) 0 + primary-for QDialog (0x7fea11f36af0) + QObject (0x7fea11f36b60) 0 + primary-for QWidget (0x7fea11f34680) + QPaintDevice (0x7fea11f36bd0) 16 + vptr=((& QColorDialog::_ZTV12QColorDialog) + 488u) + +Vtable for QFontDialog +QFontDialog::_ZTV11QFontDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFontDialog) +16 QFontDialog::metaObject +24 QFontDialog::qt_metacast +32 QFontDialog::qt_metacall +40 QFontDialog::~QFontDialog +48 QFontDialog::~QFontDialog +56 QWidget::event +64 QFontDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QFontDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFontDialog::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QFontDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11QFontDialog) +488 QFontDialog::_ZThn16_N11QFontDialogD1Ev +496 QFontDialog::_ZThn16_N11QFontDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFontDialog + size=40 align=8 + base size=40 base align=8 +QFontDialog (0x7fea11f82e00) 0 + vptr=((& QFontDialog::_ZTV11QFontDialog) + 16u) + QDialog (0x7fea11f82e70) 0 + primary-for QFontDialog (0x7fea11f82e00) + QWidget (0x7fea11f69900) 0 + primary-for QDialog (0x7fea11f82e70) + QObject (0x7fea11f82ee0) 0 + primary-for QWidget (0x7fea11f69900) + QPaintDevice (0x7fea11f82f50) 16 + vptr=((& QFontDialog::_ZTV11QFontDialog) + 488u) + +Vtable for QMessageBox +QMessageBox::_ZTV11QMessageBox: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMessageBox) +16 QMessageBox::metaObject +24 QMessageBox::qt_metacast +32 QMessageBox::qt_metacall +40 QMessageBox::~QMessageBox +48 QMessageBox::~QMessageBox +56 QMessageBox::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QMessageBox::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QMessageBox::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QMessageBox::resizeEvent +272 QMessageBox::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QMessageBox::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QMessageBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11QMessageBox) +488 QMessageBox::_ZThn16_N11QMessageBoxD1Ev +496 QMessageBox::_ZThn16_N11QMessageBoxD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMessageBox + size=40 align=8 + base size=40 base align=8 +QMessageBox (0x7fea11ff52a0) 0 + vptr=((& QMessageBox::_ZTV11QMessageBox) + 16u) + QDialog (0x7fea11ff5310) 0 + primary-for QMessageBox (0x7fea11ff52a0) + QWidget (0x7fea11fb7b00) 0 + primary-for QDialog (0x7fea11ff5310) + QObject (0x7fea11ff5380) 0 + primary-for QWidget (0x7fea11fb7b00) + QPaintDevice (0x7fea11ff53f0) 16 + vptr=((& QMessageBox::_ZTV11QMessageBox) + 488u) + +Vtable for QProgressDialog +QProgressDialog::_ZTV15QProgressDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QProgressDialog) +16 QProgressDialog::metaObject +24 QProgressDialog::qt_metacast +32 QProgressDialog::qt_metacall +40 QProgressDialog::~QProgressDialog +48 QProgressDialog::~QProgressDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QProgressDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QProgressDialog::resizeEvent +272 QProgressDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QProgressDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QProgressDialog::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI15QProgressDialog) +488 QProgressDialog::_ZThn16_N15QProgressDialogD1Ev +496 QProgressDialog::_ZThn16_N15QProgressDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QProgressDialog + size=40 align=8 + base size=40 base align=8 +QProgressDialog (0x7fea11e71bd0) 0 + vptr=((& QProgressDialog::_ZTV15QProgressDialog) + 16u) + QDialog (0x7fea11e71c40) 0 + primary-for QProgressDialog (0x7fea11e71bd0) + QWidget (0x7fea11e88100) 0 + primary-for QDialog (0x7fea11e71c40) + QObject (0x7fea11e71cb0) 0 + primary-for QWidget (0x7fea11e88100) + QPaintDevice (0x7fea11e71d20) 16 + vptr=((& QProgressDialog::_ZTV15QProgressDialog) + 488u) + +Vtable for QErrorMessage +QErrorMessage::_ZTV13QErrorMessage: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QErrorMessage) +16 QErrorMessage::metaObject +24 QErrorMessage::qt_metacast +32 QErrorMessage::qt_metacall +40 QErrorMessage::~QErrorMessage +48 QErrorMessage::~QErrorMessage +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QErrorMessage::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QErrorMessage::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI13QErrorMessage) +488 QErrorMessage::_ZThn16_N13QErrorMessageD1Ev +496 QErrorMessage::_ZThn16_N13QErrorMessageD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QErrorMessage + size=40 align=8 + base size=40 base align=8 +QErrorMessage (0x7fea11eaa7e0) 0 + vptr=((& QErrorMessage::_ZTV13QErrorMessage) + 16u) + QDialog (0x7fea11eaa850) 0 + primary-for QErrorMessage (0x7fea11eaa7e0) + QWidget (0x7fea11e88a00) 0 + primary-for QDialog (0x7fea11eaa850) + QObject (0x7fea11eaa8c0) 0 + primary-for QWidget (0x7fea11e88a00) + QPaintDevice (0x7fea11eaa930) 16 + vptr=((& QErrorMessage::_ZTV13QErrorMessage) + 488u) + +Vtable for QPrintPreviewDialog +QPrintPreviewDialog::_ZTV19QPrintPreviewDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QPrintPreviewDialog) +16 QPrintPreviewDialog::metaObject +24 QPrintPreviewDialog::qt_metacast +32 QPrintPreviewDialog::qt_metacall +40 QPrintPreviewDialog::~QPrintPreviewDialog +48 QPrintPreviewDialog::~QPrintPreviewDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QPrintPreviewDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QPrintPreviewDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI19QPrintPreviewDialog) +488 QPrintPreviewDialog::_ZThn16_N19QPrintPreviewDialogD1Ev +496 QPrintPreviewDialog::_ZThn16_N19QPrintPreviewDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPrintPreviewDialog + size=48 align=8 + base size=48 base align=8 +QPrintPreviewDialog (0x7fea11ec63f0) 0 + vptr=((& QPrintPreviewDialog::_ZTV19QPrintPreviewDialog) + 16u) + QDialog (0x7fea11ec6460) 0 + primary-for QPrintPreviewDialog (0x7fea11ec63f0) + QWidget (0x7fea11ec2480) 0 + primary-for QDialog (0x7fea11ec6460) + QObject (0x7fea11ec64d0) 0 + primary-for QWidget (0x7fea11ec2480) + QPaintDevice (0x7fea11ec6540) 16 + vptr=((& QPrintPreviewDialog::_ZTV19QPrintPreviewDialog) + 488u) + +Vtable for QFileDialog +QFileDialog::_ZTV11QFileDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFileDialog) +16 QFileDialog::metaObject +24 QFileDialog::qt_metacast +32 QFileDialog::qt_metacall +40 QFileDialog::~QFileDialog +48 QFileDialog::~QFileDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QFileDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFileDialog::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QFileDialog::done +456 QFileDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11QFileDialog) +488 QFileDialog::_ZThn16_N11QFileDialogD1Ev +496 QFileDialog::_ZThn16_N11QFileDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFileDialog + size=40 align=8 + base size=40 base align=8 +QFileDialog (0x7fea11edea80) 0 + vptr=((& QFileDialog::_ZTV11QFileDialog) + 16u) + QDialog (0x7fea11edeaf0) 0 + primary-for QFileDialog (0x7fea11edea80) + QWidget (0x7fea11ec2d80) 0 + primary-for QDialog (0x7fea11edeaf0) + QObject (0x7fea11edeb60) 0 + primary-for QWidget (0x7fea11ec2d80) + QPaintDevice (0x7fea11edebd0) 16 + vptr=((& QFileDialog::_ZTV11QFileDialog) + 488u) + +Vtable for QAbstractPrintDialog +QAbstractPrintDialog::_ZTV20QAbstractPrintDialog: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QAbstractPrintDialog) +16 QAbstractPrintDialog::metaObject +24 QAbstractPrintDialog::qt_metacast +32 QAbstractPrintDialog::qt_metacall +40 QAbstractPrintDialog::~QAbstractPrintDialog +48 QAbstractPrintDialog::~QAbstractPrintDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDialog::done +456 QDialog::accept +464 QDialog::reject +472 __cxa_pure_virtual +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI20QAbstractPrintDialog) +496 QAbstractPrintDialog::_ZThn16_N20QAbstractPrintDialogD1Ev +504 QAbstractPrintDialog::_ZThn16_N20QAbstractPrintDialogD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractPrintDialog + size=40 align=8 + base size=40 base align=8 +QAbstractPrintDialog (0x7fea11d72070) 0 + vptr=((& QAbstractPrintDialog::_ZTV20QAbstractPrintDialog) + 16u) + QDialog (0x7fea11d720e0) 0 + primary-for QAbstractPrintDialog (0x7fea11d72070) + QWidget (0x7fea11d70200) 0 + primary-for QDialog (0x7fea11d720e0) + QObject (0x7fea11d72150) 0 + primary-for QWidget (0x7fea11d70200) + QPaintDevice (0x7fea11d721c0) 16 + vptr=((& QAbstractPrintDialog::_ZTV20QAbstractPrintDialog) + 496u) + +Vtable for QUnixPrintWidget +QUnixPrintWidget::_ZTV16QUnixPrintWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QUnixPrintWidget) +16 QUnixPrintWidget::metaObject +24 QUnixPrintWidget::qt_metacast +32 QUnixPrintWidget::qt_metacall +40 QUnixPrintWidget::~QUnixPrintWidget +48 QUnixPrintWidget::~QUnixPrintWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI16QUnixPrintWidget) +464 QUnixPrintWidget::_ZThn16_N16QUnixPrintWidgetD1Ev +472 QUnixPrintWidget::_ZThn16_N16QUnixPrintWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QUnixPrintWidget + size=48 align=8 + base size=48 base align=8 +QUnixPrintWidget (0x7fea11dd0150) 0 + vptr=((& QUnixPrintWidget::_ZTV16QUnixPrintWidget) + 16u) + QWidget (0x7fea11d9d580) 0 + primary-for QUnixPrintWidget (0x7fea11dd0150) + QObject (0x7fea11dd01c0) 0 + primary-for QWidget (0x7fea11d9d580) + QPaintDevice (0x7fea11dd0230) 16 + vptr=((& QUnixPrintWidget::_ZTV16QUnixPrintWidget) + 464u) + +Vtable for QPrintDialog +QPrintDialog::_ZTV12QPrintDialog: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QPrintDialog) +16 QPrintDialog::metaObject +24 QPrintDialog::qt_metacast +32 QPrintDialog::qt_metacall +40 QPrintDialog::~QPrintDialog +48 QPrintDialog::~QPrintDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QPrintDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QPrintDialog::done +456 QPrintDialog::accept +464 QDialog::reject +472 QPrintDialog::exec +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI12QPrintDialog) +496 QPrintDialog::_ZThn16_N12QPrintDialogD1Ev +504 QPrintDialog::_ZThn16_N12QPrintDialogD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPrintDialog + size=40 align=8 + base size=40 base align=8 +QPrintDialog (0x7fea11de4070) 0 + vptr=((& QPrintDialog::_ZTV12QPrintDialog) + 16u) + QAbstractPrintDialog (0x7fea11de40e0) 0 + primary-for QPrintDialog (0x7fea11de4070) + QDialog (0x7fea11de4150) 0 + primary-for QAbstractPrintDialog (0x7fea11de40e0) + QWidget (0x7fea11d9dc80) 0 + primary-for QDialog (0x7fea11de4150) + QObject (0x7fea11de41c0) 0 + primary-for QWidget (0x7fea11d9dc80) + QPaintDevice (0x7fea11de4230) 16 + vptr=((& QPrintDialog::_ZTV12QPrintDialog) + 496u) + +Vtable for QWizard +QWizard::_ZTV7QWizard: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QWizard) +16 QWizard::metaObject +24 QWizard::qt_metacast +32 QWizard::qt_metacall +40 QWizard::~QWizard +48 QWizard::~QWizard +56 QWizard::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWizard::setVisible +128 QWizard::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWizard::paintEvent +256 QWidget::moveEvent +264 QWizard::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QWizard::done +456 QDialog::accept +464 QDialog::reject +472 QWizard::validateCurrentPage +480 QWizard::nextId +488 QWizard::initializePage +496 QWizard::cleanupPage +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI7QWizard) +520 QWizard::_ZThn16_N7QWizardD1Ev +528 QWizard::_ZThn16_N7QWizardD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWizard + size=40 align=8 + base size=40 base align=8 +QWizard (0x7fea11dfbbd0) 0 + vptr=((& QWizard::_ZTV7QWizard) + 16u) + QDialog (0x7fea11dfbc40) 0 + primary-for QWizard (0x7fea11dfbbd0) + QWidget (0x7fea11df8580) 0 + primary-for QDialog (0x7fea11dfbc40) + QObject (0x7fea11dfbcb0) 0 + primary-for QWidget (0x7fea11df8580) + QPaintDevice (0x7fea11dfbd20) 16 + vptr=((& QWizard::_ZTV7QWizard) + 520u) + +Vtable for QWizardPage +QWizardPage::_ZTV11QWizardPage: 68u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QWizardPage) +16 QWizardPage::metaObject +24 QWizardPage::qt_metacast +32 QWizardPage::qt_metacall +40 QWizardPage::~QWizardPage +48 QWizardPage::~QWizardPage +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QWizardPage::initializePage +456 QWizardPage::cleanupPage +464 QWizardPage::validatePage +472 QWizardPage::isComplete +480 QWizardPage::nextId +488 (int (*)(...))-0x00000000000000010 +496 (int (*)(...))(& _ZTI11QWizardPage) +504 QWizardPage::_ZThn16_N11QWizardPageD1Ev +512 QWizardPage::_ZThn16_N11QWizardPageD0Ev +520 QWidget::_ZThn16_NK7QWidget7devTypeEv +528 QWidget::_ZThn16_NK7QWidget11paintEngineEv +536 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWizardPage + size=40 align=8 + base size=40 base align=8 +QWizardPage (0x7fea11c51f50) 0 + vptr=((& QWizardPage::_ZTV11QWizardPage) + 16u) + QWidget (0x7fea11c2d780) 0 + primary-for QWizardPage (0x7fea11c51f50) + QObject (0x7fea11c6a000) 0 + primary-for QWidget (0x7fea11c2d780) + QPaintDevice (0x7fea11c6a070) 16 + vptr=((& QWizardPage::_ZTV11QWizardPage) + 504u) + +Vtable for QPageSetupDialog +QPageSetupDialog::_ZTV16QPageSetupDialog: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QPageSetupDialog) +16 QPageSetupDialog::metaObject +24 QPageSetupDialog::qt_metacast +32 QPageSetupDialog::qt_metacall +40 QPageSetupDialog::~QPageSetupDialog +48 QPageSetupDialog::~QPageSetupDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractPageSetupDialog::done +456 QDialog::accept +464 QDialog::reject +472 QPageSetupDialog::exec +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI16QPageSetupDialog) +496 QPageSetupDialog::_ZThn16_N16QPageSetupDialogD1Ev +504 QPageSetupDialog::_ZThn16_N16QPageSetupDialogD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPageSetupDialog + size=40 align=8 + base size=40 base align=8 +QPageSetupDialog (0x7fea11c84a80) 0 + vptr=((& QPageSetupDialog::_ZTV16QPageSetupDialog) + 16u) + QAbstractPageSetupDialog (0x7fea11c84af0) 0 + primary-for QPageSetupDialog (0x7fea11c84a80) + QDialog (0x7fea11c84b60) 0 + primary-for QAbstractPageSetupDialog (0x7fea11c84af0) + QWidget (0x7fea11c89080) 0 + primary-for QDialog (0x7fea11c84b60) + QObject (0x7fea11c84bd0) 0 + primary-for QWidget (0x7fea11c89080) + QPaintDevice (0x7fea11c84c40) 16 + vptr=((& QPageSetupDialog::_ZTV16QPageSetupDialog) + 496u) + +Vtable for QLineEdit +QLineEdit::_ZTV9QLineEdit: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QLineEdit) +16 QLineEdit::metaObject +24 QLineEdit::qt_metacast +32 QLineEdit::qt_metacall +40 QLineEdit::~QLineEdit +48 QLineEdit::~QLineEdit +56 QLineEdit::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QLineEdit::sizeHint +136 QLineEdit::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QLineEdit::mousePressEvent +168 QLineEdit::mouseReleaseEvent +176 QLineEdit::mouseDoubleClickEvent +184 QLineEdit::mouseMoveEvent +192 QWidget::wheelEvent +200 QLineEdit::keyPressEvent +208 QWidget::keyReleaseEvent +216 QLineEdit::focusInEvent +224 QLineEdit::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QLineEdit::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QLineEdit::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QLineEdit::dragEnterEvent +312 QLineEdit::dragMoveEvent +320 QLineEdit::dragLeaveEvent +328 QLineEdit::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QLineEdit::changeEvent +368 QWidget::metric +376 QLineEdit::inputMethodEvent +384 QLineEdit::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI9QLineEdit) +464 QLineEdit::_ZThn16_N9QLineEditD1Ev +472 QLineEdit::_ZThn16_N9QLineEditD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QLineEdit + size=40 align=8 + base size=40 base align=8 +QLineEdit (0x7fea11ca2a10) 0 + vptr=((& QLineEdit::_ZTV9QLineEdit) + 16u) + QWidget (0x7fea11c89b00) 0 + primary-for QLineEdit (0x7fea11ca2a10) + QObject (0x7fea11ca2a80) 0 + primary-for QWidget (0x7fea11c89b00) + QPaintDevice (0x7fea11ca2af0) 16 + vptr=((& QLineEdit::_ZTV9QLineEdit) + 464u) + +Vtable for QInputDialog +QInputDialog::_ZTV12QInputDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QInputDialog) +16 QInputDialog::metaObject +24 QInputDialog::qt_metacast +32 QInputDialog::qt_metacall +40 QInputDialog::~QInputDialog +48 QInputDialog::~QInputDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QInputDialog::setVisible +128 QInputDialog::sizeHint +136 QInputDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QInputDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI12QInputDialog) +488 QInputDialog::_ZThn16_N12QInputDialogD1Ev +496 QInputDialog::_ZThn16_N12QInputDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QInputDialog + size=40 align=8 + base size=40 base align=8 +QInputDialog (0x7fea11cf2930) 0 + vptr=((& QInputDialog::_ZTV12QInputDialog) + 16u) + QDialog (0x7fea11cf29a0) 0 + primary-for QInputDialog (0x7fea11cf2930) + QWidget (0x7fea11cf0980) 0 + primary-for QDialog (0x7fea11cf29a0) + QObject (0x7fea11cf2a10) 0 + primary-for QWidget (0x7fea11cf0980) + QPaintDevice (0x7fea11cf2a80) 16 + vptr=((& QInputDialog::_ZTV12QInputDialog) + 488u) + +Vtable for QFileSystemModel +QFileSystemModel::_ZTV16QFileSystemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QFileSystemModel) +16 QFileSystemModel::metaObject +24 QFileSystemModel::qt_metacast +32 QFileSystemModel::qt_metacall +40 QFileSystemModel::~QFileSystemModel +48 QFileSystemModel::~QFileSystemModel +56 QFileSystemModel::event +64 QObject::eventFilter +72 QFileSystemModel::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFileSystemModel::index +120 QFileSystemModel::parent +128 QFileSystemModel::rowCount +136 QFileSystemModel::columnCount +144 QFileSystemModel::hasChildren +152 QFileSystemModel::data +160 QFileSystemModel::setData +168 QFileSystemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QFileSystemModel::mimeTypes +208 QFileSystemModel::mimeData +216 QFileSystemModel::dropMimeData +224 QFileSystemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QFileSystemModel::fetchMore +272 QFileSystemModel::canFetchMore +280 QFileSystemModel::flags +288 QFileSystemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QFileSystemModel + size=16 align=8 + base size=16 base align=8 +QFileSystemModel (0x7fea11b557e0) 0 + vptr=((& QFileSystemModel::_ZTV16QFileSystemModel) + 16u) + QAbstractItemModel (0x7fea11b55850) 0 + primary-for QFileSystemModel (0x7fea11b557e0) + QObject (0x7fea11b558c0) 0 + primary-for QAbstractItemModel (0x7fea11b55850) + +Class QPixmapCache + size=1 align=1 + base size=0 base align=1 +QPixmapCache (0x7fea11b9bee0) 0 empty + +Vtable for QImageIOHandler +QImageIOHandler::_ZTV15QImageIOHandler: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QImageIOHandler) +16 QImageIOHandler::~QImageIOHandler +24 QImageIOHandler::~QImageIOHandler +32 QImageIOHandler::name +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QImageIOHandler::write +64 QImageIOHandler::option +72 QImageIOHandler::setOption +80 QImageIOHandler::supportsOption +88 QImageIOHandler::jumpToNextImage +96 QImageIOHandler::jumpToImage +104 QImageIOHandler::loopCount +112 QImageIOHandler::imageCount +120 QImageIOHandler::nextImageDelay +128 QImageIOHandler::currentImageNumber +136 QImageIOHandler::currentImageRect + +Class QImageIOHandler + size=16 align=8 + base size=16 base align=8 +QImageIOHandler (0x7fea11b9bf50) 0 + vptr=((& QImageIOHandler::_ZTV15QImageIOHandler) + 16u) + +Vtable for QImageIOHandlerFactoryInterface +QImageIOHandlerFactoryInterface::_ZTV31QImageIOHandlerFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI31QImageIOHandlerFactoryInterface) +16 QImageIOHandlerFactoryInterface::~QImageIOHandlerFactoryInterface +24 QImageIOHandlerFactoryInterface::~QImageIOHandlerFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QImageIOHandlerFactoryInterface + size=8 align=8 + base size=8 base align=8 +QImageIOHandlerFactoryInterface (0x7fea11bacb60) 0 nearly-empty + vptr=((& QImageIOHandlerFactoryInterface::_ZTV31QImageIOHandlerFactoryInterface) + 16u) + QFactoryInterface (0x7fea11bacbd0) 0 nearly-empty + primary-for QImageIOHandlerFactoryInterface (0x7fea11bacb60) + +Vtable for QImageIOPlugin +QImageIOPlugin::_ZTV14QImageIOPlugin: 23u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QImageIOPlugin) +16 QImageIOPlugin::metaObject +24 QImageIOPlugin::qt_metacast +32 QImageIOPlugin::qt_metacall +40 QImageIOPlugin::~QImageIOPlugin +48 QImageIOPlugin::~QImageIOPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 (int (*)(...))-0x00000000000000010 +144 (int (*)(...))(& _ZTI14QImageIOPlugin) +152 QImageIOPlugin::_ZThn16_N14QImageIOPluginD1Ev +160 QImageIOPlugin::_ZThn16_N14QImageIOPluginD0Ev +168 __cxa_pure_virtual +176 __cxa_pure_virtual + +Class QImageIOPlugin + size=24 align=8 + base size=24 base align=8 +QImageIOPlugin (0x7fea11bb0b00) 0 + vptr=((& QImageIOPlugin::_ZTV14QImageIOPlugin) + 16u) + QObject (0x7fea11bc13f0) 0 + primary-for QImageIOPlugin (0x7fea11bb0b00) + QImageIOHandlerFactoryInterface (0x7fea11bc1460) 16 nearly-empty + vptr=((& QImageIOPlugin::_ZTV14QImageIOPlugin) + 152u) + QFactoryInterface (0x7fea11bc14d0) 16 nearly-empty + primary-for QImageIOHandlerFactoryInterface (0x7fea11bc1460) + +Vtable for QPicture +QPicture::_ZTV8QPicture: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QPicture) +16 QPicture::~QPicture +24 QPicture::~QPicture +32 QPicture::devType +40 QPicture::paintEngine +48 QPicture::metric +56 QPicture::setData + +Class QPicture + size=24 align=8 + base size=24 base align=8 +QPicture (0x7fea11c134d0) 0 + vptr=((& QPicture::_ZTV8QPicture) + 16u) + QPaintDevice (0x7fea11c13540) 0 + primary-for QPicture (0x7fea11c134d0) + +Class QPictureIO + size=8 align=8 + base size=8 base align=8 +QPictureIO (0x7fea11a2b070) 0 + +Class QImageReader + size=8 align=8 + base size=8 base align=8 +QImageReader (0x7fea11a2b690) 0 + +Class QImageWriter + size=8 align=8 + base size=8 base align=8 +QImageWriter (0x7fea11a470e0) 0 + +Vtable for QMovie +QMovie::_ZTV6QMovie: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QMovie) +16 QMovie::metaObject +24 QMovie::qt_metacast +32 QMovie::qt_metacall +40 QMovie::~QMovie +48 QMovie::~QMovie +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QMovie + size=16 align=8 + base size=16 base align=8 +QMovie (0x7fea11a47930) 0 + vptr=((& QMovie::_ZTV6QMovie) + 16u) + QObject (0x7fea11a479a0) 0 + primary-for QMovie (0x7fea11a47930) + +Vtable for QIconEngineFactoryInterface +QIconEngineFactoryInterface::_ZTV27QIconEngineFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QIconEngineFactoryInterface) +16 QIconEngineFactoryInterface::~QIconEngineFactoryInterface +24 QIconEngineFactoryInterface::~QIconEngineFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QIconEngineFactoryInterface + size=8 align=8 + base size=8 base align=8 +QIconEngineFactoryInterface (0x7fea11a8d9a0) 0 nearly-empty + vptr=((& QIconEngineFactoryInterface::_ZTV27QIconEngineFactoryInterface) + 16u) + QFactoryInterface (0x7fea11a8da10) 0 nearly-empty + primary-for QIconEngineFactoryInterface (0x7fea11a8d9a0) + +Vtable for QIconEnginePlugin +QIconEnginePlugin::_ZTV17QIconEnginePlugin: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QIconEnginePlugin) +16 QIconEnginePlugin::metaObject +24 QIconEnginePlugin::qt_metacast +32 QIconEnginePlugin::qt_metacall +40 QIconEnginePlugin::~QIconEnginePlugin +48 QIconEnginePlugin::~QIconEnginePlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI17QIconEnginePlugin) +144 QIconEnginePlugin::_ZThn16_N17QIconEnginePluginD1Ev +152 QIconEnginePlugin::_ZThn16_N17QIconEnginePluginD0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QIconEnginePlugin + size=24 align=8 + base size=24 base align=8 +QIconEnginePlugin (0x7fea11a8be80) 0 + vptr=((& QIconEnginePlugin::_ZTV17QIconEnginePlugin) + 16u) + QObject (0x7fea11a97230) 0 + primary-for QIconEnginePlugin (0x7fea11a8be80) + QIconEngineFactoryInterface (0x7fea11a972a0) 16 nearly-empty + vptr=((& QIconEnginePlugin::_ZTV17QIconEnginePlugin) + 144u) + QFactoryInterface (0x7fea11a97310) 16 nearly-empty + primary-for QIconEngineFactoryInterface (0x7fea11a972a0) + +Vtable for QIconEngineFactoryInterfaceV2 +QIconEngineFactoryInterfaceV2::_ZTV29QIconEngineFactoryInterfaceV2: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI29QIconEngineFactoryInterfaceV2) +16 QIconEngineFactoryInterfaceV2::~QIconEngineFactoryInterfaceV2 +24 QIconEngineFactoryInterfaceV2::~QIconEngineFactoryInterfaceV2 +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QIconEngineFactoryInterfaceV2 + size=8 align=8 + base size=8 base align=8 +QIconEngineFactoryInterfaceV2 (0x7fea11aa71c0) 0 nearly-empty + vptr=((& QIconEngineFactoryInterfaceV2::_ZTV29QIconEngineFactoryInterfaceV2) + 16u) + QFactoryInterface (0x7fea11aa7230) 0 nearly-empty + primary-for QIconEngineFactoryInterfaceV2 (0x7fea11aa71c0) + +Vtable for QIconEnginePluginV2 +QIconEnginePluginV2::_ZTV19QIconEnginePluginV2: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QIconEnginePluginV2) +16 QIconEnginePluginV2::metaObject +24 QIconEnginePluginV2::qt_metacast +32 QIconEnginePluginV2::qt_metacall +40 QIconEnginePluginV2::~QIconEnginePluginV2 +48 QIconEnginePluginV2::~QIconEnginePluginV2 +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI19QIconEnginePluginV2) +144 QIconEnginePluginV2::_ZThn16_N19QIconEnginePluginV2D1Ev +152 QIconEnginePluginV2::_ZThn16_N19QIconEnginePluginV2D0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QIconEnginePluginV2 + size=24 align=8 + base size=24 base align=8 +QIconEnginePluginV2 (0x7fea11aa1d00) 0 + vptr=((& QIconEnginePluginV2::_ZTV19QIconEnginePluginV2) + 16u) + QObject (0x7fea11aa7af0) 0 + primary-for QIconEnginePluginV2 (0x7fea11aa1d00) + QIconEngineFactoryInterfaceV2 (0x7fea11aa7b60) 16 nearly-empty + vptr=((& QIconEnginePluginV2::_ZTV19QIconEnginePluginV2) + 144u) + QFactoryInterface (0x7fea11aa7bd0) 16 nearly-empty + primary-for QIconEngineFactoryInterfaceV2 (0x7fea11aa7b60) + +Vtable for QIconEngine +QIconEngine::_ZTV11QIconEngine: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QIconEngine) +16 QIconEngine::~QIconEngine +24 QIconEngine::~QIconEngine +32 __cxa_pure_virtual +40 QIconEngine::actualSize +48 QIconEngine::pixmap +56 QIconEngine::addPixmap +64 QIconEngine::addFile + +Class QIconEngine + size=8 align=8 + base size=8 base align=8 +QIconEngine (0x7fea11abea80) 0 nearly-empty + vptr=((& QIconEngine::_ZTV11QIconEngine) + 16u) + +Class QIconEngineV2::AvailableSizesArgument + size=16 align=8 + base size=16 base align=8 +QIconEngineV2::AvailableSizesArgument (0x7fea11ac82a0) 0 + +Vtable for QIconEngineV2 +QIconEngineV2::_ZTV13QIconEngineV2: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QIconEngineV2) +16 QIconEngineV2::~QIconEngineV2 +24 QIconEngineV2::~QIconEngineV2 +32 __cxa_pure_virtual +40 QIconEngine::actualSize +48 QIconEngine::pixmap +56 QIconEngine::addPixmap +64 QIconEngine::addFile +72 QIconEngineV2::key +80 QIconEngineV2::clone +88 QIconEngineV2::read +96 QIconEngineV2::write +104 QIconEngineV2::virtual_hook + +Class QIconEngineV2 + size=8 align=8 + base size=8 base align=8 +QIconEngineV2 (0x7fea11ac8070) 0 nearly-empty + vptr=((& QIconEngineV2::_ZTV13QIconEngineV2) + 16u) + QIconEngine (0x7fea11ac80e0) 0 nearly-empty + primary-for QIconEngineV2 (0x7fea11ac8070) + +Vtable for QBitmap +QBitmap::_ZTV7QBitmap: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QBitmap) +16 QBitmap::~QBitmap +24 QBitmap::~QBitmap +32 QPixmap::devType +40 QPixmap::paintEngine +48 QPixmap::metric + +Class QBitmap + size=24 align=8 + base size=24 base align=8 +QBitmap (0x7fea11ac8a80) 0 + vptr=((& QBitmap::_ZTV7QBitmap) + 16u) + QPixmap (0x7fea11ac8af0) 0 + primary-for QBitmap (0x7fea11ac8a80) + QPaintDevice (0x7fea11ac8b60) 0 + primary-for QPixmap (0x7fea11ac8af0) + +Vtable for QPictureFormatInterface +QPictureFormatInterface::_ZTV23QPictureFormatInterface: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QPictureFormatInterface) +16 QPictureFormatInterface::~QPictureFormatInterface +24 QPictureFormatInterface::~QPictureFormatInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual + +Class QPictureFormatInterface + size=8 align=8 + base size=8 base align=8 +QPictureFormatInterface (0x7fea11921bd0) 0 nearly-empty + vptr=((& QPictureFormatInterface::_ZTV23QPictureFormatInterface) + 16u) + QFactoryInterface (0x7fea11921c40) 0 nearly-empty + primary-for QPictureFormatInterface (0x7fea11921bd0) + +Vtable for QPictureFormatPlugin +QPictureFormatPlugin::_ZTV20QPictureFormatPlugin: 26u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QPictureFormatPlugin) +16 QPictureFormatPlugin::metaObject +24 QPictureFormatPlugin::qt_metacast +32 QPictureFormatPlugin::qt_metacall +40 QPictureFormatPlugin::~QPictureFormatPlugin +48 QPictureFormatPlugin::~QPictureFormatPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 QPictureFormatPlugin::loadPicture +128 QPictureFormatPlugin::savePicture +136 __cxa_pure_virtual +144 (int (*)(...))-0x00000000000000010 +152 (int (*)(...))(& _ZTI20QPictureFormatPlugin) +160 QPictureFormatPlugin::_ZThn16_N20QPictureFormatPluginD1Ev +168 QPictureFormatPlugin::_ZThn16_N20QPictureFormatPluginD0Ev +176 __cxa_pure_virtual +184 QPictureFormatPlugin::_ZThn16_N20QPictureFormatPlugin11loadPictureERK7QStringS2_P8QPicture +192 QPictureFormatPlugin::_ZThn16_N20QPictureFormatPlugin11savePictureERK7QStringS2_RK8QPicture +200 __cxa_pure_virtual + +Class QPictureFormatPlugin + size=24 align=8 + base size=24 base align=8 +QPictureFormatPlugin (0x7fea11928a00) 0 + vptr=((& QPictureFormatPlugin::_ZTV20QPictureFormatPlugin) + 16u) + QObject (0x7fea1192e3f0) 0 + primary-for QPictureFormatPlugin (0x7fea11928a00) + QPictureFormatInterface (0x7fea1192e460) 16 nearly-empty + vptr=((& QPictureFormatPlugin::_ZTV20QPictureFormatPlugin) + 160u) + QFactoryInterface (0x7fea1192e4d0) 16 nearly-empty + primary-for QPictureFormatInterface (0x7fea1192e460) + +Class QVFbHeader + size=1088 align=8 + base size=1088 base align=8 +QVFbHeader (0x7fea11944380) 0 + +Class QVFbKeyData + size=12 align=4 + base size=12 base align=4 +QVFbKeyData (0x7fea119443f0) 0 + +Vtable for QWSEmbedWidget +QWSEmbedWidget::_ZTV14QWSEmbedWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QWSEmbedWidget) +16 QWSEmbedWidget::metaObject +24 QWSEmbedWidget::qt_metacast +32 QWSEmbedWidget::qt_metacall +40 QWSEmbedWidget::~QWSEmbedWidget +48 QWSEmbedWidget::~QWSEmbedWidget +56 QWidget::event +64 QWSEmbedWidget::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWSEmbedWidget::moveEvent +264 QWSEmbedWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWSEmbedWidget::showEvent +344 QWSEmbedWidget::hideEvent +352 QWidget::x11Event +360 QWSEmbedWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI14QWSEmbedWidget) +464 QWSEmbedWidget::_ZThn16_N14QWSEmbedWidgetD1Ev +472 QWSEmbedWidget::_ZThn16_N14QWSEmbedWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWSEmbedWidget + size=40 align=8 + base size=40 base align=8 +QWSEmbedWidget (0x7fea11944460) 0 + vptr=((& QWSEmbedWidget::_ZTV14QWSEmbedWidget) + 16u) + QWidget (0x7fea11943200) 0 + primary-for QWSEmbedWidget (0x7fea11944460) + QObject (0x7fea119444d0) 0 + primary-for QWidget (0x7fea11943200) + QPaintDevice (0x7fea11944540) 16 + vptr=((& QWSEmbedWidget::_ZTV14QWSEmbedWidget) + 464u) + +Class QColormap + size=8 align=8 + base size=8 base align=8 +QColormap (0x7fea1195b930) 0 + +Vtable for QPrinter +QPrinter::_ZTV8QPrinter: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QPrinter) +16 QPrinter::~QPrinter +24 QPrinter::~QPrinter +32 QPrinter::devType +40 QPrinter::paintEngine +48 QPrinter::metric + +Class QPrinter + size=24 align=8 + base size=24 base align=8 +QPrinter (0x7fea11964150) 0 + vptr=((& QPrinter::_ZTV8QPrinter) + 16u) + QPaintDevice (0x7fea119641c0) 0 + primary-for QPrinter (0x7fea11964150) + +Vtable for QPrintEngine +QPrintEngine::_ZTV12QPrintEngine: 10u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QPrintEngine) +16 QPrintEngine::~QPrintEngine +24 QPrintEngine::~QPrintEngine +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual + +Class QPrintEngine + size=8 align=8 + base size=8 base align=8 +QPrintEngine (0x7fea119a5620) 0 nearly-empty + vptr=((& QPrintEngine::_ZTV12QPrintEngine) + 16u) + +Class QPainter + size=8 align=8 + base size=8 base align=8 +QPainter (0x7fea119b6380) 0 + +Class QStylePainter + size=24 align=8 + base size=24 base align=8 +QStylePainter (0x7fea117b9c40) 0 + QPainter (0x7fea117b9cb0) 0 + +Class QPrinterInfo + size=8 align=8 + base size=8 base align=8 +QPrinterInfo (0x7fea117eb230) 0 + +Class QTextItem + size=1 align=1 + base size=0 base align=1 +QTextItem (0x7fea117ef700) 0 empty + +Vtable for QPaintEngine +QPaintEngine::_ZTV12QPaintEngine: 24u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QPaintEngine) +16 QPaintEngine::~QPaintEngine +24 QPaintEngine::~QPaintEngine +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QPaintEngine::drawRects +64 QPaintEngine::drawRects +72 QPaintEngine::drawLines +80 QPaintEngine::drawLines +88 QPaintEngine::drawEllipse +96 QPaintEngine::drawEllipse +104 QPaintEngine::drawPath +112 QPaintEngine::drawPoints +120 QPaintEngine::drawPoints +128 QPaintEngine::drawPolygon +136 QPaintEngine::drawPolygon +144 __cxa_pure_virtual +152 QPaintEngine::drawTextItem +160 QPaintEngine::drawTiledPixmap +168 QPaintEngine::drawImage +176 QPaintEngine::coordinateOffset +184 __cxa_pure_virtual + +Class QPaintEngine + size=32 align=8 + base size=32 base align=8 +QPaintEngine (0x7fea117efd20) 0 + vptr=((& QPaintEngine::_ZTV12QPaintEngine) + 16u) + +Class QPaintEngineState + size=4 align=4 + base size=4 base align=4 +QPaintEngineState (0x7fea116397e0) 0 + +Class QTreeWidgetItemIterator + size=24 align=8 + base size=20 base align=8 +QTreeWidgetItemIterator (0x7fea116f3af0) 0 + +Vtable for QDataWidgetMapper +QDataWidgetMapper::_ZTV17QDataWidgetMapper: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QDataWidgetMapper) +16 QDataWidgetMapper::metaObject +24 QDataWidgetMapper::qt_metacast +32 QDataWidgetMapper::qt_metacall +40 QDataWidgetMapper::~QDataWidgetMapper +48 QDataWidgetMapper::~QDataWidgetMapper +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QDataWidgetMapper::setCurrentIndex + +Class QDataWidgetMapper + size=16 align=8 + base size=16 base align=8 +QDataWidgetMapper (0x7fea11550690) 0 + vptr=((& QDataWidgetMapper::_ZTV17QDataWidgetMapper) + 16u) + QObject (0x7fea11550700) 0 + primary-for QDataWidgetMapper (0x7fea11550690) + +Vtable for QFileIconProvider +QFileIconProvider::_ZTV17QFileIconProvider: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QFileIconProvider) +16 QFileIconProvider::~QFileIconProvider +24 QFileIconProvider::~QFileIconProvider +32 QFileIconProvider::icon +40 QFileIconProvider::icon +48 QFileIconProvider::type + +Class QFileIconProvider + size=16 align=8 + base size=16 base align=8 +QFileIconProvider (0x7fea11589150) 0 + vptr=((& QFileIconProvider::_ZTV17QFileIconProvider) + 16u) + +Vtable for QStringListModel +QStringListModel::_ZTV16QStringListModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QStringListModel) +16 QStringListModel::metaObject +24 QStringListModel::qt_metacast +32 QStringListModel::qt_metacall +40 QStringListModel::~QStringListModel +48 QStringListModel::~QStringListModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractListModel::index +120 QAbstractListModel::parent +128 QStringListModel::rowCount +136 QAbstractListModel::columnCount +144 QAbstractListModel::hasChildren +152 QStringListModel::data +160 QStringListModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractListModel::dropMimeData +224 QStringListModel::supportedDropActions +232 QStringListModel::insertRows +240 QAbstractItemModel::insertColumns +248 QStringListModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QStringListModel::flags +288 QStringListModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QStringListModel + size=24 align=8 + base size=24 base align=8 +QStringListModel (0x7fea11589c40) 0 + vptr=((& QStringListModel::_ZTV16QStringListModel) + 16u) + QAbstractListModel (0x7fea11589cb0) 0 + primary-for QStringListModel (0x7fea11589c40) + QAbstractItemModel (0x7fea11589d20) 0 + primary-for QAbstractListModel (0x7fea11589cb0) + QObject (0x7fea11589d90) 0 + primary-for QAbstractItemModel (0x7fea11589d20) + +Vtable for QListWidgetItem +QListWidgetItem::_ZTV15QListWidgetItem: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QListWidgetItem) +16 QListWidgetItem::~QListWidgetItem +24 QListWidgetItem::~QListWidgetItem +32 QListWidgetItem::clone +40 QListWidgetItem::setBackgroundColor +48 QListWidgetItem::data +56 QListWidgetItem::setData +64 QListWidgetItem::operator< +72 QListWidgetItem::read +80 QListWidgetItem::write + +Class QListWidgetItem + size=48 align=8 + base size=44 base align=8 +QListWidgetItem (0x7fea115a9230) 0 + vptr=((& QListWidgetItem::_ZTV15QListWidgetItem) + 16u) + +Vtable for QListWidget +QListWidget::_ZTV11QListWidget: 107u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QListWidget) +16 QListWidget::metaObject +24 QListWidget::qt_metacast +32 QListWidget::qt_metacall +40 QListWidget::~QListWidget +48 QListWidget::~QListWidget +56 QListWidget::event +64 QObject::eventFilter +72 QListView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QListView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QListView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QListView::paintEvent +256 QWidget::moveEvent +264 QListView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QListView::dragMoveEvent +320 QListView::dragLeaveEvent +328 QListWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QListView::scrollContentsBy +464 QListWidget::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QListView::visualRect +496 QListView::scrollTo +504 QListView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QListView::reset +536 QListView::setRootIndex +544 QListView::doItemsLayout +552 QAbstractItemView::selectAll +560 QListView::dataChanged +568 QListView::rowsInserted +576 QListView::rowsAboutToBeRemoved +584 QListView::selectionChanged +592 QListView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QListView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QListView::moveCursor +688 QListView::horizontalOffset +696 QListView::verticalOffset +704 QListView::isIndexHidden +712 QListView::setSelection +720 QListView::visualRegionForSelection +728 QListView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QListView::startDrag +760 QListView::viewOptions +768 QListWidget::mimeTypes +776 QListWidget::mimeData +784 QListWidget::dropMimeData +792 QListWidget::supportedDropActions +800 (int (*)(...))-0x00000000000000010 +808 (int (*)(...))(& _ZTI11QListWidget) +816 QListWidget::_ZThn16_N11QListWidgetD1Ev +824 QListWidget::_ZThn16_N11QListWidgetD0Ev +832 QWidget::_ZThn16_NK7QWidget7devTypeEv +840 QWidget::_ZThn16_NK7QWidget11paintEngineEv +848 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QListWidget + size=40 align=8 + base size=40 base align=8 +QListWidget (0x7fea1141b9a0) 0 + vptr=((& QListWidget::_ZTV11QListWidget) + 16u) + QListView (0x7fea1141ba10) 0 + primary-for QListWidget (0x7fea1141b9a0) + QAbstractItemView (0x7fea1141ba80) 0 + primary-for QListView (0x7fea1141ba10) + QAbstractScrollArea (0x7fea1141baf0) 0 + primary-for QAbstractItemView (0x7fea1141ba80) + QFrame (0x7fea1141bb60) 0 + primary-for QAbstractScrollArea (0x7fea1141baf0) + QWidget (0x7fea11419580) 0 + primary-for QFrame (0x7fea1141bb60) + QObject (0x7fea1141bbd0) 0 + primary-for QWidget (0x7fea11419580) + QPaintDevice (0x7fea1141bc40) 16 + vptr=((& QListWidget::_ZTV11QListWidget) + 816u) + +Vtable for QDirModel +QDirModel::_ZTV9QDirModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QDirModel) +16 QDirModel::metaObject +24 QDirModel::qt_metacast +32 QDirModel::qt_metacall +40 QDirModel::~QDirModel +48 QDirModel::~QDirModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QDirModel::index +120 QDirModel::parent +128 QDirModel::rowCount +136 QDirModel::columnCount +144 QDirModel::hasChildren +152 QDirModel::data +160 QDirModel::setData +168 QDirModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QDirModel::mimeTypes +208 QDirModel::mimeData +216 QDirModel::dropMimeData +224 QDirModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QDirModel::flags +288 QDirModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QDirModel + size=16 align=8 + base size=16 base align=8 +QDirModel (0x7fea11459e00) 0 + vptr=((& QDirModel::_ZTV9QDirModel) + 16u) + QAbstractItemModel (0x7fea11459e70) 0 + primary-for QDirModel (0x7fea11459e00) + QObject (0x7fea11459ee0) 0 + primary-for QAbstractItemModel (0x7fea11459e70) + +Vtable for QColumnView +QColumnView::_ZTV11QColumnView: 104u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QColumnView) +16 QColumnView::metaObject +24 QColumnView::qt_metacast +32 QColumnView::qt_metacall +40 QColumnView::~QColumnView +48 QColumnView::~QColumnView +56 QAbstractItemView::event +64 QObject::eventFilter +72 QAbstractItemView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QColumnView::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QAbstractItemView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QAbstractItemView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractScrollArea::paintEvent +256 QWidget::moveEvent +264 QColumnView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QColumnView::scrollContentsBy +464 QColumnView::setModel +472 QColumnView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QColumnView::visualRect +496 QColumnView::scrollTo +504 QColumnView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QAbstractItemView::reset +536 QColumnView::setRootIndex +544 QAbstractItemView::doItemsLayout +552 QColumnView::selectAll +560 QAbstractItemView::dataChanged +568 QAbstractItemView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QAbstractItemView::selectionChanged +592 QColumnView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QAbstractItemView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QColumnView::moveCursor +688 QColumnView::horizontalOffset +696 QColumnView::verticalOffset +704 QColumnView::isIndexHidden +712 QColumnView::setSelection +720 QColumnView::visualRegionForSelection +728 QAbstractItemView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 QColumnView::createColumn +776 (int (*)(...))-0x00000000000000010 +784 (int (*)(...))(& _ZTI11QColumnView) +792 QColumnView::_ZThn16_N11QColumnViewD1Ev +800 QColumnView::_ZThn16_N11QColumnViewD0Ev +808 QWidget::_ZThn16_NK7QWidget7devTypeEv +816 QWidget::_ZThn16_NK7QWidget11paintEngineEv +824 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QColumnView + size=40 align=8 + base size=40 base align=8 +QColumnView (0x7fea114840e0) 0 + vptr=((& QColumnView::_ZTV11QColumnView) + 16u) + QAbstractItemView (0x7fea11484150) 0 + primary-for QColumnView (0x7fea114840e0) + QAbstractScrollArea (0x7fea114841c0) 0 + primary-for QAbstractItemView (0x7fea11484150) + QFrame (0x7fea11484230) 0 + primary-for QAbstractScrollArea (0x7fea114841c0) + QWidget (0x7fea1145ad00) 0 + primary-for QFrame (0x7fea11484230) + QObject (0x7fea114842a0) 0 + primary-for QWidget (0x7fea1145ad00) + QPaintDevice (0x7fea11484310) 16 + vptr=((& QColumnView::_ZTV11QColumnView) + 792u) + +Vtable for QStandardItem +QStandardItem::_ZTV13QStandardItem: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QStandardItem) +16 QStandardItem::~QStandardItem +24 QStandardItem::~QStandardItem +32 QStandardItem::data +40 QStandardItem::setData +48 QStandardItem::clone +56 QStandardItem::type +64 QStandardItem::read +72 QStandardItem::write +80 QStandardItem::operator< + +Class QStandardItem + size=16 align=8 + base size=16 base align=8 +QStandardItem (0x7fea114a9230) 0 + vptr=((& QStandardItem::_ZTV13QStandardItem) + 16u) + +Vtable for QStandardItemModel +QStandardItemModel::_ZTV18QStandardItemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QStandardItemModel) +16 QStandardItemModel::metaObject +24 QStandardItemModel::qt_metacast +32 QStandardItemModel::qt_metacall +40 QStandardItemModel::~QStandardItemModel +48 QStandardItemModel::~QStandardItemModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QStandardItemModel::index +120 QStandardItemModel::parent +128 QStandardItemModel::rowCount +136 QStandardItemModel::columnCount +144 QStandardItemModel::hasChildren +152 QStandardItemModel::data +160 QStandardItemModel::setData +168 QStandardItemModel::headerData +176 QStandardItemModel::setHeaderData +184 QStandardItemModel::itemData +192 QStandardItemModel::setItemData +200 QStandardItemModel::mimeTypes +208 QStandardItemModel::mimeData +216 QStandardItemModel::dropMimeData +224 QStandardItemModel::supportedDropActions +232 QStandardItemModel::insertRows +240 QStandardItemModel::insertColumns +248 QStandardItemModel::removeRows +256 QStandardItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QStandardItemModel::flags +288 QStandardItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QStandardItemModel + size=16 align=8 + base size=16 base align=8 +QStandardItemModel (0x7fea11385e00) 0 + vptr=((& QStandardItemModel::_ZTV18QStandardItemModel) + 16u) + QAbstractItemModel (0x7fea11385e70) 0 + primary-for QStandardItemModel (0x7fea11385e00) + QObject (0x7fea11385ee0) 0 + primary-for QAbstractItemModel (0x7fea11385e70) + +Vtable for QAbstractProxyModel +QAbstractProxyModel::_ZTV19QAbstractProxyModel: 47u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractProxyModel) +16 QAbstractProxyModel::metaObject +24 QAbstractProxyModel::qt_metacast +32 QAbstractProxyModel::qt_metacall +40 QAbstractProxyModel::~QAbstractProxyModel +48 QAbstractProxyModel::~QAbstractProxyModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractItemModel::hasChildren +152 QAbstractProxyModel::data +160 QAbstractProxyModel::setData +168 QAbstractProxyModel::headerData +176 QAbstractProxyModel::setHeaderData +184 QAbstractProxyModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractItemModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractProxyModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractProxyModel::submit +328 QAbstractProxyModel::revert +336 QAbstractProxyModel::setSourceModel +344 __cxa_pure_virtual +352 __cxa_pure_virtual +360 QAbstractProxyModel::mapSelectionToSource +368 QAbstractProxyModel::mapSelectionFromSource + +Class QAbstractProxyModel + size=16 align=8 + base size=16 base align=8 +QAbstractProxyModel (0x7fea113c39a0) 0 + vptr=((& QAbstractProxyModel::_ZTV19QAbstractProxyModel) + 16u) + QAbstractItemModel (0x7fea113c3a10) 0 + primary-for QAbstractProxyModel (0x7fea113c39a0) + QObject (0x7fea113c3a80) 0 + primary-for QAbstractItemModel (0x7fea113c3a10) + +Vtable for QSortFilterProxyModel +QSortFilterProxyModel::_ZTV21QSortFilterProxyModel: 50u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QSortFilterProxyModel) +16 QSortFilterProxyModel::metaObject +24 QSortFilterProxyModel::qt_metacast +32 QSortFilterProxyModel::qt_metacall +40 QSortFilterProxyModel::~QSortFilterProxyModel +48 QSortFilterProxyModel::~QSortFilterProxyModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QSortFilterProxyModel::index +120 QSortFilterProxyModel::parent +128 QSortFilterProxyModel::rowCount +136 QSortFilterProxyModel::columnCount +144 QSortFilterProxyModel::hasChildren +152 QSortFilterProxyModel::data +160 QSortFilterProxyModel::setData +168 QSortFilterProxyModel::headerData +176 QSortFilterProxyModel::setHeaderData +184 QAbstractProxyModel::itemData +192 QAbstractItemModel::setItemData +200 QSortFilterProxyModel::mimeTypes +208 QSortFilterProxyModel::mimeData +216 QSortFilterProxyModel::dropMimeData +224 QSortFilterProxyModel::supportedDropActions +232 QSortFilterProxyModel::insertRows +240 QSortFilterProxyModel::insertColumns +248 QSortFilterProxyModel::removeRows +256 QSortFilterProxyModel::removeColumns +264 QSortFilterProxyModel::fetchMore +272 QSortFilterProxyModel::canFetchMore +280 QSortFilterProxyModel::flags +288 QSortFilterProxyModel::sort +296 QSortFilterProxyModel::buddy +304 QSortFilterProxyModel::match +312 QSortFilterProxyModel::span +320 QAbstractProxyModel::submit +328 QAbstractProxyModel::revert +336 QSortFilterProxyModel::setSourceModel +344 QSortFilterProxyModel::mapToSource +352 QSortFilterProxyModel::mapFromSource +360 QSortFilterProxyModel::mapSelectionToSource +368 QSortFilterProxyModel::mapSelectionFromSource +376 QSortFilterProxyModel::filterAcceptsRow +384 QSortFilterProxyModel::filterAcceptsColumn +392 QSortFilterProxyModel::lessThan + +Class QSortFilterProxyModel + size=16 align=8 + base size=16 base align=8 +QSortFilterProxyModel (0x7fea113ee5b0) 0 + vptr=((& QSortFilterProxyModel::_ZTV21QSortFilterProxyModel) + 16u) + QAbstractProxyModel (0x7fea113ee620) 0 + primary-for QSortFilterProxyModel (0x7fea113ee5b0) + QAbstractItemModel (0x7fea113ee690) 0 + primary-for QAbstractProxyModel (0x7fea113ee620) + QObject (0x7fea113ee700) 0 + primary-for QAbstractItemModel (0x7fea113ee690) + +Vtable for QStyledItemDelegate +QStyledItemDelegate::_ZTV19QStyledItemDelegate: 23u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QStyledItemDelegate) +16 QStyledItemDelegate::metaObject +24 QStyledItemDelegate::qt_metacast +32 QStyledItemDelegate::qt_metacall +40 QStyledItemDelegate::~QStyledItemDelegate +48 QStyledItemDelegate::~QStyledItemDelegate +56 QObject::event +64 QStyledItemDelegate::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QStyledItemDelegate::paint +120 QStyledItemDelegate::sizeHint +128 QStyledItemDelegate::createEditor +136 QStyledItemDelegate::setEditorData +144 QStyledItemDelegate::setModelData +152 QStyledItemDelegate::updateEditorGeometry +160 QStyledItemDelegate::editorEvent +168 QStyledItemDelegate::displayText +176 QStyledItemDelegate::initStyleOption + +Class QStyledItemDelegate + size=16 align=8 + base size=16 base align=8 +QStyledItemDelegate (0x7fea1121e4d0) 0 + vptr=((& QStyledItemDelegate::_ZTV19QStyledItemDelegate) + 16u) + QAbstractItemDelegate (0x7fea1121e540) 0 + primary-for QStyledItemDelegate (0x7fea1121e4d0) + QObject (0x7fea1121e5b0) 0 + primary-for QAbstractItemDelegate (0x7fea1121e540) + +Vtable for QItemDelegate +QItemDelegate::_ZTV13QItemDelegate: 25u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QItemDelegate) +16 QItemDelegate::metaObject +24 QItemDelegate::qt_metacast +32 QItemDelegate::qt_metacall +40 QItemDelegate::~QItemDelegate +48 QItemDelegate::~QItemDelegate +56 QObject::event +64 QItemDelegate::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QItemDelegate::paint +120 QItemDelegate::sizeHint +128 QItemDelegate::createEditor +136 QItemDelegate::setEditorData +144 QItemDelegate::setModelData +152 QItemDelegate::updateEditorGeometry +160 QItemDelegate::editorEvent +168 QItemDelegate::drawDisplay +176 QItemDelegate::drawDecoration +184 QItemDelegate::drawFocus +192 QItemDelegate::drawCheck + +Class QItemDelegate + size=16 align=8 + base size=16 base align=8 +QItemDelegate (0x7fea11231e70) 0 + vptr=((& QItemDelegate::_ZTV13QItemDelegate) + 16u) + QAbstractItemDelegate (0x7fea11231ee0) 0 + primary-for QItemDelegate (0x7fea11231e70) + QObject (0x7fea11231f50) 0 + primary-for QAbstractItemDelegate (0x7fea11231ee0) + +Vtable for QTableView +QTableView::_ZTV10QTableView: 103u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTableView) +16 QTableView::metaObject +24 QTableView::qt_metacast +32 QTableView::qt_metacall +40 QTableView::~QTableView +48 QTableView::~QTableView +56 QAbstractItemView::event +64 QObject::eventFilter +72 QTableView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QAbstractItemView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QAbstractItemView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTableView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QTableView::scrollContentsBy +464 QTableView::setModel +472 QTableView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QTableView::visualRect +496 QTableView::scrollTo +504 QTableView::indexAt +512 QTableView::sizeHintForRow +520 QTableView::sizeHintForColumn +528 QAbstractItemView::reset +536 QTableView::setRootIndex +544 QAbstractItemView::doItemsLayout +552 QAbstractItemView::selectAll +560 QAbstractItemView::dataChanged +568 QAbstractItemView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QTableView::selectionChanged +592 QTableView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QTableView::updateGeometries +624 QTableView::verticalScrollbarAction +632 QTableView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QTableView::moveCursor +688 QTableView::horizontalOffset +696 QTableView::verticalOffset +704 QTableView::isIndexHidden +712 QTableView::setSelection +720 QTableView::visualRegionForSelection +728 QTableView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QTableView::viewOptions +768 (int (*)(...))-0x00000000000000010 +776 (int (*)(...))(& _ZTI10QTableView) +784 QTableView::_ZThn16_N10QTableViewD1Ev +792 QTableView::_ZThn16_N10QTableViewD0Ev +800 QWidget::_ZThn16_NK7QWidget7devTypeEv +808 QWidget::_ZThn16_NK7QWidget11paintEngineEv +816 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTableView + size=40 align=8 + base size=40 base align=8 +QTableView (0x7fea11256850) 0 + vptr=((& QTableView::_ZTV10QTableView) + 16u) + QAbstractItemView (0x7fea112568c0) 0 + primary-for QTableView (0x7fea11256850) + QAbstractScrollArea (0x7fea11256930) 0 + primary-for QAbstractItemView (0x7fea112568c0) + QFrame (0x7fea112569a0) 0 + primary-for QAbstractScrollArea (0x7fea11256930) + QWidget (0x7fea11253500) 0 + primary-for QFrame (0x7fea112569a0) + QObject (0x7fea11256a10) 0 + primary-for QWidget (0x7fea11253500) + QPaintDevice (0x7fea11256a80) 16 + vptr=((& QTableView::_ZTV10QTableView) + 784u) + +Class QTableWidgetSelectionRange + size=16 align=4 + base size=16 base align=4 +QTableWidgetSelectionRange (0x7fea11288620) 0 + +Vtable for QTableWidgetItem +QTableWidgetItem::_ZTV16QTableWidgetItem: 10u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QTableWidgetItem) +16 QTableWidgetItem::~QTableWidgetItem +24 QTableWidgetItem::~QTableWidgetItem +32 QTableWidgetItem::clone +40 QTableWidgetItem::data +48 QTableWidgetItem::setData +56 QTableWidgetItem::operator< +64 QTableWidgetItem::read +72 QTableWidgetItem::write + +Class QTableWidgetItem + size=48 align=8 + base size=44 base align=8 +QTableWidgetItem (0x7fea11292af0) 0 + vptr=((& QTableWidgetItem::_ZTV16QTableWidgetItem) + 16u) + +Vtable for QTableWidget +QTableWidget::_ZTV12QTableWidget: 107u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTableWidget) +16 QTableWidget::metaObject +24 QTableWidget::qt_metacast +32 QTableWidget::qt_metacall +40 QTableWidget::~QTableWidget +48 QTableWidget::~QTableWidget +56 QTableWidget::event +64 QObject::eventFilter +72 QTableView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QAbstractItemView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QAbstractItemView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTableView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QTableWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QTableView::scrollContentsBy +464 QTableWidget::setModel +472 QTableView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QTableView::visualRect +496 QTableView::scrollTo +504 QTableView::indexAt +512 QTableView::sizeHintForRow +520 QTableView::sizeHintForColumn +528 QAbstractItemView::reset +536 QTableView::setRootIndex +544 QAbstractItemView::doItemsLayout +552 QAbstractItemView::selectAll +560 QAbstractItemView::dataChanged +568 QAbstractItemView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QTableView::selectionChanged +592 QTableView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QTableView::updateGeometries +624 QTableView::verticalScrollbarAction +632 QTableView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QTableView::moveCursor +688 QTableView::horizontalOffset +696 QTableView::verticalOffset +704 QTableView::isIndexHidden +712 QTableView::setSelection +720 QTableView::visualRegionForSelection +728 QTableView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QTableView::viewOptions +768 QTableWidget::mimeTypes +776 QTableWidget::mimeData +784 QTableWidget::dropMimeData +792 QTableWidget::supportedDropActions +800 (int (*)(...))-0x00000000000000010 +808 (int (*)(...))(& _ZTI12QTableWidget) +816 QTableWidget::_ZThn16_N12QTableWidgetD1Ev +824 QTableWidget::_ZThn16_N12QTableWidgetD0Ev +832 QWidget::_ZThn16_NK7QWidget7devTypeEv +840 QWidget::_ZThn16_NK7QWidget11paintEngineEv +848 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTableWidget + size=40 align=8 + base size=40 base align=8 +QTableWidget (0x7fea113080e0) 0 + vptr=((& QTableWidget::_ZTV12QTableWidget) + 16u) + QTableView (0x7fea11308150) 0 + primary-for QTableWidget (0x7fea113080e0) + QAbstractItemView (0x7fea113081c0) 0 + primary-for QTableView (0x7fea11308150) + QAbstractScrollArea (0x7fea11308230) 0 + primary-for QAbstractItemView (0x7fea113081c0) + QFrame (0x7fea113082a0) 0 + primary-for QAbstractScrollArea (0x7fea11308230) + QWidget (0x7fea11303580) 0 + primary-for QFrame (0x7fea113082a0) + QObject (0x7fea11308310) 0 + primary-for QWidget (0x7fea11303580) + QPaintDevice (0x7fea11308380) 16 + vptr=((& QTableWidget::_ZTV12QTableWidget) + 816u) + +Vtable for QTreeView +QTreeView::_ZTV9QTreeView: 105u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTreeView) +16 QTreeView::metaObject +24 QTreeView::qt_metacast +32 QTreeView::qt_metacall +40 QTreeView::~QTreeView +48 QTreeView::~QTreeView +56 QAbstractItemView::event +64 QObject::eventFilter +72 QTreeView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTreeView::mousePressEvent +168 QTreeView::mouseReleaseEvent +176 QTreeView::mouseDoubleClickEvent +184 QTreeView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QTreeView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTreeView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QTreeView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QTreeView::viewportEvent +456 QTreeView::scrollContentsBy +464 QTreeView::setModel +472 QTreeView::setSelectionModel +480 QTreeView::keyboardSearch +488 QTreeView::visualRect +496 QTreeView::scrollTo +504 QTreeView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QTreeView::sizeHintForColumn +528 QTreeView::reset +536 QTreeView::setRootIndex +544 QTreeView::doItemsLayout +552 QTreeView::selectAll +560 QTreeView::dataChanged +568 QTreeView::rowsInserted +576 QTreeView::rowsAboutToBeRemoved +584 QTreeView::selectionChanged +592 QTreeView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QTreeView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QTreeView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QTreeView::moveCursor +688 QTreeView::horizontalOffset +696 QTreeView::verticalOffset +704 QTreeView::isIndexHidden +712 QTreeView::setSelection +720 QTreeView::visualRegionForSelection +728 QTreeView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 QTreeView::drawRow +776 QTreeView::drawBranches +784 (int (*)(...))-0x00000000000000010 +792 (int (*)(...))(& _ZTI9QTreeView) +800 QTreeView::_ZThn16_N9QTreeViewD1Ev +808 QTreeView::_ZThn16_N9QTreeViewD0Ev +816 QWidget::_ZThn16_NK7QWidget7devTypeEv +824 QWidget::_ZThn16_NK7QWidget11paintEngineEv +832 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTreeView + size=40 align=8 + base size=40 base align=8 +QTreeView (0x7fea11138070) 0 + vptr=((& QTreeView::_ZTV9QTreeView) + 16u) + QAbstractItemView (0x7fea111380e0) 0 + primary-for QTreeView (0x7fea11138070) + QAbstractScrollArea (0x7fea11138150) 0 + primary-for QAbstractItemView (0x7fea111380e0) + QFrame (0x7fea111381c0) 0 + primary-for QAbstractScrollArea (0x7fea11138150) + QWidget (0x7fea11130e00) 0 + primary-for QFrame (0x7fea111381c0) + QObject (0x7fea11138230) 0 + primary-for QWidget (0x7fea11130e00) + QPaintDevice (0x7fea111382a0) 16 + vptr=((& QTreeView::_ZTV9QTreeView) + 800u) + +Vtable for QProxyModel +QProxyModel::_ZTV11QProxyModel: 43u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QProxyModel) +16 QProxyModel::metaObject +24 QProxyModel::qt_metacast +32 QProxyModel::qt_metacall +40 QProxyModel::~QProxyModel +48 QProxyModel::~QProxyModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QProxyModel::index +120 QProxyModel::parent +128 QProxyModel::rowCount +136 QProxyModel::columnCount +144 QProxyModel::hasChildren +152 QProxyModel::data +160 QProxyModel::setData +168 QProxyModel::headerData +176 QProxyModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QProxyModel::mimeTypes +208 QProxyModel::mimeData +216 QProxyModel::dropMimeData +224 QProxyModel::supportedDropActions +232 QProxyModel::insertRows +240 QProxyModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QProxyModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QProxyModel::flags +288 QProxyModel::sort +296 QAbstractItemModel::buddy +304 QProxyModel::match +312 QProxyModel::span +320 QProxyModel::submit +328 QProxyModel::revert +336 QProxyModel::setModel + +Class QProxyModel + size=16 align=8 + base size=16 base align=8 +QProxyModel (0x7fea11169e00) 0 + vptr=((& QProxyModel::_ZTV11QProxyModel) + 16u) + QAbstractItemModel (0x7fea11169e70) 0 + primary-for QProxyModel (0x7fea11169e00) + QObject (0x7fea11169ee0) 0 + primary-for QAbstractItemModel (0x7fea11169e70) + +Vtable for QHeaderView +QHeaderView::_ZTV11QHeaderView: 105u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QHeaderView) +16 QHeaderView::metaObject +24 QHeaderView::qt_metacast +32 QHeaderView::qt_metacall +40 QHeaderView::~QHeaderView +48 QHeaderView::~QHeaderView +56 QHeaderView::event +64 QObject::eventFilter +72 QAbstractItemView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QHeaderView::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QHeaderView::mousePressEvent +168 QHeaderView::mouseReleaseEvent +176 QHeaderView::mouseDoubleClickEvent +184 QHeaderView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QHeaderView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QHeaderView::viewportEvent +456 QHeaderView::scrollContentsBy +464 QHeaderView::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QHeaderView::visualRect +496 QHeaderView::scrollTo +504 QHeaderView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QHeaderView::reset +536 QAbstractItemView::setRootIndex +544 QHeaderView::doItemsLayout +552 QAbstractItemView::selectAll +560 QHeaderView::dataChanged +568 QHeaderView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QAbstractItemView::selectionChanged +592 QHeaderView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QHeaderView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QHeaderView::moveCursor +688 QHeaderView::horizontalOffset +696 QHeaderView::verticalOffset +704 QHeaderView::isIndexHidden +712 QHeaderView::setSelection +720 QHeaderView::visualRegionForSelection +728 QAbstractItemView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 QHeaderView::paintSection +776 QHeaderView::sectionSizeFromContents +784 (int (*)(...))-0x00000000000000010 +792 (int (*)(...))(& _ZTI11QHeaderView) +800 QHeaderView::_ZThn16_N11QHeaderViewD1Ev +808 QHeaderView::_ZThn16_N11QHeaderViewD0Ev +816 QWidget::_ZThn16_NK7QWidget7devTypeEv +824 QWidget::_ZThn16_NK7QWidget11paintEngineEv +832 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QHeaderView + size=40 align=8 + base size=40 base align=8 +QHeaderView (0x7fea1118fcb0) 0 + vptr=((& QHeaderView::_ZTV11QHeaderView) + 16u) + QAbstractItemView (0x7fea1118fd20) 0 + primary-for QHeaderView (0x7fea1118fcb0) + QAbstractScrollArea (0x7fea1118fd90) 0 + primary-for QAbstractItemView (0x7fea1118fd20) + QFrame (0x7fea1118fe00) 0 + primary-for QAbstractScrollArea (0x7fea1118fd90) + QWidget (0x7fea11164f80) 0 + primary-for QFrame (0x7fea1118fe00) + QObject (0x7fea1118fe70) 0 + primary-for QWidget (0x7fea11164f80) + QPaintDevice (0x7fea1118fee0) 16 + vptr=((& QHeaderView::_ZTV11QHeaderView) + 800u) + +Vtable for QItemEditorCreatorBase +QItemEditorCreatorBase::_ZTV22QItemEditorCreatorBase: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QItemEditorCreatorBase) +16 QItemEditorCreatorBase::~QItemEditorCreatorBase +24 QItemEditorCreatorBase::~QItemEditorCreatorBase +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QItemEditorCreatorBase + size=8 align=8 + base size=8 base align=8 +QItemEditorCreatorBase (0x7fea111d08c0) 0 nearly-empty + vptr=((& QItemEditorCreatorBase::_ZTV22QItemEditorCreatorBase) + 16u) + +Vtable for QItemEditorFactory +QItemEditorFactory::_ZTV18QItemEditorFactory: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QItemEditorFactory) +16 QItemEditorFactory::~QItemEditorFactory +24 QItemEditorFactory::~QItemEditorFactory +32 QItemEditorFactory::createEditor +40 QItemEditorFactory::valuePropertyName + +Class QItemEditorFactory + size=16 align=8 + base size=16 base align=8 +QItemEditorFactory (0x7fea111db770) 0 + vptr=((& QItemEditorFactory::_ZTV18QItemEditorFactory) + 16u) + +Vtable for QTreeWidgetItem +QTreeWidgetItem::_ZTV15QTreeWidgetItem: 10u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QTreeWidgetItem) +16 QTreeWidgetItem::~QTreeWidgetItem +24 QTreeWidgetItem::~QTreeWidgetItem +32 QTreeWidgetItem::clone +40 QTreeWidgetItem::data +48 QTreeWidgetItem::setData +56 QTreeWidgetItem::operator< +64 QTreeWidgetItem::read +72 QTreeWidgetItem::write + +Class QTreeWidgetItem + size=64 align=8 + base size=60 base align=8 +QTreeWidgetItem (0x7fea111e7a10) 0 + vptr=((& QTreeWidgetItem::_ZTV15QTreeWidgetItem) + 16u) + +Vtable for QTreeWidget +QTreeWidget::_ZTV11QTreeWidget: 109u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTreeWidget) +16 QTreeWidget::metaObject +24 QTreeWidget::qt_metacast +32 QTreeWidget::qt_metacall +40 QTreeWidget::~QTreeWidget +48 QTreeWidget::~QTreeWidget +56 QTreeWidget::event +64 QObject::eventFilter +72 QTreeView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTreeView::mousePressEvent +168 QTreeView::mouseReleaseEvent +176 QTreeView::mouseDoubleClickEvent +184 QTreeView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QTreeView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTreeView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QTreeView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QTreeWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QTreeView::viewportEvent +456 QTreeView::scrollContentsBy +464 QTreeWidget::setModel +472 QTreeWidget::setSelectionModel +480 QTreeView::keyboardSearch +488 QTreeView::visualRect +496 QTreeView::scrollTo +504 QTreeView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QTreeView::sizeHintForColumn +528 QTreeView::reset +536 QTreeView::setRootIndex +544 QTreeView::doItemsLayout +552 QTreeView::selectAll +560 QTreeView::dataChanged +568 QTreeView::rowsInserted +576 QTreeView::rowsAboutToBeRemoved +584 QTreeView::selectionChanged +592 QTreeView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QTreeView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QTreeView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QTreeView::moveCursor +688 QTreeView::horizontalOffset +696 QTreeView::verticalOffset +704 QTreeView::isIndexHidden +712 QTreeView::setSelection +720 QTreeView::visualRegionForSelection +728 QTreeView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 QTreeView::drawRow +776 QTreeView::drawBranches +784 QTreeWidget::mimeTypes +792 QTreeWidget::mimeData +800 QTreeWidget::dropMimeData +808 QTreeWidget::supportedDropActions +816 (int (*)(...))-0x00000000000000010 +824 (int (*)(...))(& _ZTI11QTreeWidget) +832 QTreeWidget::_ZThn16_N11QTreeWidgetD1Ev +840 QTreeWidget::_ZThn16_N11QTreeWidgetD0Ev +848 QWidget::_ZThn16_NK7QWidget7devTypeEv +856 QWidget::_ZThn16_NK7QWidget11paintEngineEv +864 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTreeWidget + size=40 align=8 + base size=40 base align=8 +QTreeWidget (0x7fea110b0f50) 0 + vptr=((& QTreeWidget::_ZTV11QTreeWidget) + 16u) + QTreeView (0x7fea110b7000) 0 + primary-for QTreeWidget (0x7fea110b0f50) + QAbstractItemView (0x7fea110b7070) 0 + primary-for QTreeView (0x7fea110b7000) + QAbstractScrollArea (0x7fea110b70e0) 0 + primary-for QAbstractItemView (0x7fea110b7070) + QFrame (0x7fea110b7150) 0 + primary-for QAbstractScrollArea (0x7fea110b70e0) + QWidget (0x7fea110a9e00) 0 + primary-for QFrame (0x7fea110b7150) + QObject (0x7fea110b71c0) 0 + primary-for QWidget (0x7fea110a9e00) + QPaintDevice (0x7fea110b7230) 16 + vptr=((& QTreeWidget::_ZTV11QTreeWidget) + 832u) + +Vtable for QAccessibleBridge +QAccessibleBridge::_ZTV17QAccessibleBridge: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAccessibleBridge) +16 QAccessibleBridge::~QAccessibleBridge +24 QAccessibleBridge::~QAccessibleBridge +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QAccessibleBridge + size=8 align=8 + base size=8 base align=8 +QAccessibleBridge (0x7fea10f18310) 0 nearly-empty + vptr=((& QAccessibleBridge::_ZTV17QAccessibleBridge) + 16u) + +Vtable for QAccessibleBridgeFactoryInterface +QAccessibleBridgeFactoryInterface::_ZTV33QAccessibleBridgeFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI33QAccessibleBridgeFactoryInterface) +16 QAccessibleBridgeFactoryInterface::~QAccessibleBridgeFactoryInterface +24 QAccessibleBridgeFactoryInterface::~QAccessibleBridgeFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QAccessibleBridgeFactoryInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleBridgeFactoryInterface (0x7fea10f18d90) 0 nearly-empty + vptr=((& QAccessibleBridgeFactoryInterface::_ZTV33QAccessibleBridgeFactoryInterface) + 16u) + QFactoryInterface (0x7fea10f18e00) 0 nearly-empty + primary-for QAccessibleBridgeFactoryInterface (0x7fea10f18d90) + +Vtable for QAccessibleBridgePlugin +QAccessibleBridgePlugin::_ZTV23QAccessibleBridgePlugin: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QAccessibleBridgePlugin) +16 QAccessibleBridgePlugin::metaObject +24 QAccessibleBridgePlugin::qt_metacast +32 QAccessibleBridgePlugin::qt_metacall +40 QAccessibleBridgePlugin::~QAccessibleBridgePlugin +48 QAccessibleBridgePlugin::~QAccessibleBridgePlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI23QAccessibleBridgePlugin) +144 QAccessibleBridgePlugin::_ZThn16_N23QAccessibleBridgePluginD1Ev +152 QAccessibleBridgePlugin::_ZThn16_N23QAccessibleBridgePluginD0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QAccessibleBridgePlugin + size=24 align=8 + base size=24 base align=8 +QAccessibleBridgePlugin (0x7fea10f25500) 0 + vptr=((& QAccessibleBridgePlugin::_ZTV23QAccessibleBridgePlugin) + 16u) + QObject (0x7fea10f265b0) 0 + primary-for QAccessibleBridgePlugin (0x7fea10f25500) + QAccessibleBridgeFactoryInterface (0x7fea10f26620) 16 nearly-empty + vptr=((& QAccessibleBridgePlugin::_ZTV23QAccessibleBridgePlugin) + 144u) + QFactoryInterface (0x7fea10f26690) 16 nearly-empty + primary-for QAccessibleBridgeFactoryInterface (0x7fea10f26620) + +Class QAccessible + size=1 align=1 + base size=0 base align=1 +QAccessible (0x7fea10f38540) 0 empty + +Vtable for QAccessibleInterface +QAccessibleInterface::_ZTV20QAccessibleInterface: 19u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QAccessibleInterface) +16 QAccessibleInterface::~QAccessibleInterface +24 QAccessibleInterface::~QAccessibleInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual + +Class QAccessibleInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleInterface (0x7fea10fdc700) 0 nearly-empty + vptr=((& QAccessibleInterface::_ZTV20QAccessibleInterface) + 16u) + QAccessible (0x7fea10fdc770) 0 empty + +Vtable for QAccessibleInterfaceEx +QAccessibleInterfaceEx::_ZTV22QAccessibleInterfaceEx: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QAccessibleInterfaceEx) +16 QAccessibleInterfaceEx::~QAccessibleInterfaceEx +24 QAccessibleInterfaceEx::~QAccessibleInterfaceEx +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 QAccessibleInterfaceEx::virtual_hook +168 QAccessibleInterfaceEx::interface_cast + +Class QAccessibleInterfaceEx + size=8 align=8 + base size=8 base align=8 +QAccessibleInterfaceEx (0x7fea10e39000) 0 nearly-empty + vptr=((& QAccessibleInterfaceEx::_ZTV22QAccessibleInterfaceEx) + 16u) + QAccessibleInterface (0x7fea10e39070) 0 nearly-empty + primary-for QAccessibleInterfaceEx (0x7fea10e39000) + QAccessible (0x7fea10e390e0) 0 empty + +Vtable for QAccessibleEvent +QAccessibleEvent::_ZTV16QAccessibleEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QAccessibleEvent) +16 QAccessibleEvent::~QAccessibleEvent +24 QAccessibleEvent::~QAccessibleEvent + +Class QAccessibleEvent + size=32 align=8 + base size=32 base align=8 +QAccessibleEvent (0x7fea10e39380) 0 + vptr=((& QAccessibleEvent::_ZTV16QAccessibleEvent) + 16u) + QEvent (0x7fea10e393f0) 0 + primary-for QAccessibleEvent (0x7fea10e39380) + +Vtable for QAccessibleObject +QAccessibleObject::_ZTV17QAccessibleObject: 19u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAccessibleObject) +16 QAccessibleObject::~QAccessibleObject +24 QAccessibleObject::~QAccessibleObject +32 QAccessibleObject::isValid +40 QAccessibleObject::object +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 QAccessibleObject::setText +104 QAccessibleObject::rect +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAccessibleObject::userActionCount +136 QAccessibleObject::actionText +144 QAccessibleObject::doAction + +Class QAccessibleObject + size=16 align=8 + base size=16 base align=8 +QAccessibleObject (0x7fea10e51230) 0 + vptr=((& QAccessibleObject::_ZTV17QAccessibleObject) + 16u) + QAccessibleInterface (0x7fea10e512a0) 0 nearly-empty + primary-for QAccessibleObject (0x7fea10e51230) + QAccessible (0x7fea10e51310) 0 empty + +Vtable for QAccessibleObjectEx +QAccessibleObjectEx::_ZTV19QAccessibleObjectEx: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAccessibleObjectEx) +16 QAccessibleObjectEx::~QAccessibleObjectEx +24 QAccessibleObjectEx::~QAccessibleObjectEx +32 QAccessibleObjectEx::isValid +40 QAccessibleObjectEx::object +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 QAccessibleObjectEx::setText +104 QAccessibleObjectEx::rect +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAccessibleObjectEx::userActionCount +136 QAccessibleObjectEx::actionText +144 QAccessibleObjectEx::doAction +152 __cxa_pure_virtual +160 QAccessibleInterfaceEx::virtual_hook +168 QAccessibleInterfaceEx::interface_cast + +Class QAccessibleObjectEx + size=16 align=8 + base size=16 base align=8 +QAccessibleObjectEx (0x7fea10e51a10) 0 + vptr=((& QAccessibleObjectEx::_ZTV19QAccessibleObjectEx) + 16u) + QAccessibleInterfaceEx (0x7fea10e51a80) 0 nearly-empty + primary-for QAccessibleObjectEx (0x7fea10e51a10) + QAccessibleInterface (0x7fea10e51af0) 0 nearly-empty + primary-for QAccessibleInterfaceEx (0x7fea10e51a80) + QAccessible (0x7fea10e51b60) 0 empty + +Vtable for QAccessibleApplication +QAccessibleApplication::_ZTV22QAccessibleApplication: 19u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QAccessibleApplication) +16 QAccessibleApplication::~QAccessibleApplication +24 QAccessibleApplication::~QAccessibleApplication +32 QAccessibleObject::isValid +40 QAccessibleObject::object +48 QAccessibleApplication::childCount +56 QAccessibleApplication::indexOfChild +64 QAccessibleApplication::relationTo +72 QAccessibleApplication::childAt +80 QAccessibleApplication::navigate +88 QAccessibleApplication::text +96 QAccessibleObject::setText +104 QAccessibleObject::rect +112 QAccessibleApplication::role +120 QAccessibleApplication::state +128 QAccessibleApplication::userActionCount +136 QAccessibleApplication::actionText +144 QAccessibleApplication::doAction + +Class QAccessibleApplication + size=16 align=8 + base size=16 base align=8 +QAccessibleApplication (0x7fea10e61230) 0 + vptr=((& QAccessibleApplication::_ZTV22QAccessibleApplication) + 16u) + QAccessibleObject (0x7fea10e612a0) 0 + primary-for QAccessibleApplication (0x7fea10e61230) + QAccessibleInterface (0x7fea10e61310) 0 nearly-empty + primary-for QAccessibleObject (0x7fea10e612a0) + QAccessible (0x7fea10e61380) 0 empty + +Vtable for QAccessibleWidget +QAccessibleWidget::_ZTV17QAccessibleWidget: 19u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAccessibleWidget) +16 QAccessibleWidget::~QAccessibleWidget +24 QAccessibleWidget::~QAccessibleWidget +32 QAccessibleObject::isValid +40 QAccessibleObject::object +48 QAccessibleWidget::childCount +56 QAccessibleWidget::indexOfChild +64 QAccessibleWidget::relationTo +72 QAccessibleWidget::childAt +80 QAccessibleWidget::navigate +88 QAccessibleWidget::text +96 QAccessibleObject::setText +104 QAccessibleWidget::rect +112 QAccessibleWidget::role +120 QAccessibleWidget::state +128 QAccessibleWidget::userActionCount +136 QAccessibleWidget::actionText +144 QAccessibleWidget::doAction + +Class QAccessibleWidget + size=24 align=8 + base size=24 base align=8 +QAccessibleWidget (0x7fea10e61c40) 0 + vptr=((& QAccessibleWidget::_ZTV17QAccessibleWidget) + 16u) + QAccessibleObject (0x7fea10e61cb0) 0 + primary-for QAccessibleWidget (0x7fea10e61c40) + QAccessibleInterface (0x7fea10e61d20) 0 nearly-empty + primary-for QAccessibleObject (0x7fea10e61cb0) + QAccessible (0x7fea10e61d90) 0 empty + +Vtable for QAccessibleWidgetEx +QAccessibleWidgetEx::_ZTV19QAccessibleWidgetEx: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAccessibleWidgetEx) +16 QAccessibleWidgetEx::~QAccessibleWidgetEx +24 QAccessibleWidgetEx::~QAccessibleWidgetEx +32 QAccessibleObjectEx::isValid +40 QAccessibleObjectEx::object +48 QAccessibleWidgetEx::childCount +56 QAccessibleWidgetEx::indexOfChild +64 QAccessibleWidgetEx::relationTo +72 QAccessibleWidgetEx::childAt +80 QAccessibleWidgetEx::navigate +88 QAccessibleWidgetEx::text +96 QAccessibleObjectEx::setText +104 QAccessibleWidgetEx::rect +112 QAccessibleWidgetEx::role +120 QAccessibleWidgetEx::state +128 QAccessibleObjectEx::userActionCount +136 QAccessibleWidgetEx::actionText +144 QAccessibleWidgetEx::doAction +152 QAccessibleWidgetEx::invokeMethodEx +160 QAccessibleInterfaceEx::virtual_hook +168 QAccessibleInterfaceEx::interface_cast + +Class QAccessibleWidgetEx + size=24 align=8 + base size=24 base align=8 +QAccessibleWidgetEx (0x7fea10e71c40) 0 + vptr=((& QAccessibleWidgetEx::_ZTV19QAccessibleWidgetEx) + 16u) + QAccessibleObjectEx (0x7fea10e71cb0) 0 + primary-for QAccessibleWidgetEx (0x7fea10e71c40) + QAccessibleInterfaceEx (0x7fea10e71d20) 0 nearly-empty + primary-for QAccessibleObjectEx (0x7fea10e71cb0) + QAccessibleInterface (0x7fea10e71d90) 0 nearly-empty + primary-for QAccessibleInterfaceEx (0x7fea10e71d20) + QAccessible (0x7fea10e71e00) 0 empty + +Vtable for QAccessible2Interface +QAccessible2Interface::_ZTV21QAccessible2Interface: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QAccessible2Interface) +16 QAccessible2Interface::~QAccessible2Interface +24 QAccessible2Interface::~QAccessible2Interface + +Class QAccessible2Interface + size=8 align=8 + base size=8 base align=8 +QAccessible2Interface (0x7fea10e7dd90) 0 nearly-empty + vptr=((& QAccessible2Interface::_ZTV21QAccessible2Interface) + 16u) + +Vtable for QAccessibleTextInterface +QAccessibleTextInterface::_ZTV24QAccessibleTextInterface: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QAccessibleTextInterface) +16 QAccessibleTextInterface::~QAccessibleTextInterface +24 QAccessibleTextInterface::~QAccessibleTextInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual + +Class QAccessibleTextInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleTextInterface (0x7fea10e8dcb0) 0 nearly-empty + vptr=((& QAccessibleTextInterface::_ZTV24QAccessibleTextInterface) + 16u) + QAccessible2Interface (0x7fea10e8dd20) 0 nearly-empty + primary-for QAccessibleTextInterface (0x7fea10e8dcb0) + +Vtable for QAccessibleEditableTextInterface +QAccessibleEditableTextInterface::_ZTV32QAccessibleEditableTextInterface: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI32QAccessibleEditableTextInterface) +16 QAccessibleEditableTextInterface::~QAccessibleEditableTextInterface +24 QAccessibleEditableTextInterface::~QAccessibleEditableTextInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual + +Class QAccessibleEditableTextInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleEditableTextInterface (0x7fea10e9cb60) 0 nearly-empty + vptr=((& QAccessibleEditableTextInterface::_ZTV32QAccessibleEditableTextInterface) + 16u) + QAccessible2Interface (0x7fea10e9cbd0) 0 nearly-empty + primary-for QAccessibleEditableTextInterface (0x7fea10e9cb60) + +Vtable for QAccessibleSimpleEditableTextInterface +QAccessibleSimpleEditableTextInterface::_ZTV38QAccessibleSimpleEditableTextInterface: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI38QAccessibleSimpleEditableTextInterface) +16 QAccessibleSimpleEditableTextInterface::~QAccessibleSimpleEditableTextInterface +24 QAccessibleSimpleEditableTextInterface::~QAccessibleSimpleEditableTextInterface +32 QAccessibleSimpleEditableTextInterface::copyText +40 QAccessibleSimpleEditableTextInterface::deleteText +48 QAccessibleSimpleEditableTextInterface::insertText +56 QAccessibleSimpleEditableTextInterface::cutText +64 QAccessibleSimpleEditableTextInterface::pasteText +72 QAccessibleSimpleEditableTextInterface::replaceText +80 QAccessibleSimpleEditableTextInterface::setAttributes + +Class QAccessibleSimpleEditableTextInterface + size=16 align=8 + base size=16 base align=8 +QAccessibleSimpleEditableTextInterface (0x7fea10eaba10) 0 + vptr=((& QAccessibleSimpleEditableTextInterface::_ZTV38QAccessibleSimpleEditableTextInterface) + 16u) + QAccessibleEditableTextInterface (0x7fea10eaba80) 0 nearly-empty + primary-for QAccessibleSimpleEditableTextInterface (0x7fea10eaba10) + QAccessible2Interface (0x7fea10eabaf0) 0 nearly-empty + primary-for QAccessibleEditableTextInterface (0x7fea10eaba80) + +Vtable for QAccessibleValueInterface +QAccessibleValueInterface::_ZTV25QAccessibleValueInterface: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QAccessibleValueInterface) +16 QAccessibleValueInterface::~QAccessibleValueInterface +24 QAccessibleValueInterface::~QAccessibleValueInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual + +Class QAccessibleValueInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleValueInterface (0x7fea10eabd20) 0 nearly-empty + vptr=((& QAccessibleValueInterface::_ZTV25QAccessibleValueInterface) + 16u) + QAccessible2Interface (0x7fea10eabd90) 0 nearly-empty + primary-for QAccessibleValueInterface (0x7fea10eabd20) + +Vtable for QAccessibleTableInterface +QAccessibleTableInterface::_ZTV25QAccessibleTableInterface: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QAccessibleTableInterface) +16 QAccessibleTableInterface::~QAccessibleTableInterface +24 QAccessibleTableInterface::~QAccessibleTableInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 __cxa_pure_virtual +208 __cxa_pure_virtual +216 __cxa_pure_virtual +224 __cxa_pure_virtual +232 __cxa_pure_virtual + +Class QAccessibleTableInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleTableInterface (0x7fea10ebbb60) 0 nearly-empty + vptr=((& QAccessibleTableInterface::_ZTV25QAccessibleTableInterface) + 16u) + QAccessible2Interface (0x7fea10ebbbd0) 0 nearly-empty + primary-for QAccessibleTableInterface (0x7fea10ebbb60) + +Vtable for QAccessibleFactoryInterface +QAccessibleFactoryInterface::_ZTV27QAccessibleFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QAccessibleFactoryInterface) +16 QAccessibleFactoryInterface::~QAccessibleFactoryInterface +24 QAccessibleFactoryInterface::~QAccessibleFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QAccessibleFactoryInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleFactoryInterface (0x7fea10ebec80) 0 nearly-empty + vptr=((& QAccessibleFactoryInterface::_ZTV27QAccessibleFactoryInterface) + 16u) + QAccessible (0x7fea10ebbf50) 0 empty + QFactoryInterface (0x7fea10ebbd90) 0 nearly-empty + primary-for QAccessibleFactoryInterface (0x7fea10ebec80) + +Vtable for QAccessiblePlugin +QAccessiblePlugin::_ZTV17QAccessiblePlugin: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAccessiblePlugin) +16 QAccessiblePlugin::metaObject +24 QAccessiblePlugin::qt_metacast +32 QAccessiblePlugin::qt_metacall +40 QAccessiblePlugin::~QAccessiblePlugin +48 QAccessiblePlugin::~QAccessiblePlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI17QAccessiblePlugin) +144 QAccessiblePlugin::_ZThn16_N17QAccessiblePluginD1Ev +152 QAccessiblePlugin::_ZThn16_N17QAccessiblePluginD0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QAccessiblePlugin + size=24 align=8 + base size=24 base align=8 +QAccessiblePlugin (0x7fea10ed2480) 0 + vptr=((& QAccessiblePlugin::_ZTV17QAccessiblePlugin) + 16u) + QObject (0x7fea10ecf7e0) 0 + primary-for QAccessiblePlugin (0x7fea10ed2480) + QAccessibleFactoryInterface (0x7fea10ed2500) 16 nearly-empty + vptr=((& QAccessiblePlugin::_ZTV17QAccessiblePlugin) + 144u) + QAccessible (0x7fea10ecf850) 16 empty + QFactoryInterface (0x7fea10ecf8c0) 16 nearly-empty + primary-for QAccessibleFactoryInterface (0x7fea10ed2500) + +Vtable for QLayoutItem +QLayoutItem::_ZTV11QLayoutItem: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QLayoutItem) +16 QLayoutItem::~QLayoutItem +24 QLayoutItem::~QLayoutItem +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 QLayoutItem::hasHeightForWidth +96 QLayoutItem::heightForWidth +104 QLayoutItem::minimumHeightForWidth +112 QLayoutItem::invalidate +120 QLayoutItem::widget +128 QLayoutItem::layout +136 QLayoutItem::spacerItem + +Class QLayoutItem + size=16 align=8 + base size=12 base align=8 +QLayoutItem (0x7fea10ee17e0) 0 + vptr=((& QLayoutItem::_ZTV11QLayoutItem) + 16u) + +Vtable for QSpacerItem +QSpacerItem::_ZTV11QSpacerItem: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QSpacerItem) +16 QSpacerItem::~QSpacerItem +24 QSpacerItem::~QSpacerItem +32 QSpacerItem::sizeHint +40 QSpacerItem::minimumSize +48 QSpacerItem::maximumSize +56 QSpacerItem::expandingDirections +64 QSpacerItem::setGeometry +72 QSpacerItem::geometry +80 QSpacerItem::isEmpty +88 QLayoutItem::hasHeightForWidth +96 QLayoutItem::heightForWidth +104 QLayoutItem::minimumHeightForWidth +112 QLayoutItem::invalidate +120 QLayoutItem::widget +128 QLayoutItem::layout +136 QSpacerItem::spacerItem + +Class QSpacerItem + size=40 align=8 + base size=40 base align=8 +QSpacerItem (0x7fea10ef4380) 0 + vptr=((& QSpacerItem::_ZTV11QSpacerItem) + 16u) + QLayoutItem (0x7fea10ef43f0) 0 + primary-for QSpacerItem (0x7fea10ef4380) + +Vtable for QWidgetItem +QWidgetItem::_ZTV11QWidgetItem: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QWidgetItem) +16 QWidgetItem::~QWidgetItem +24 QWidgetItem::~QWidgetItem +32 QWidgetItem::sizeHint +40 QWidgetItem::minimumSize +48 QWidgetItem::maximumSize +56 QWidgetItem::expandingDirections +64 QWidgetItem::setGeometry +72 QWidgetItem::geometry +80 QWidgetItem::isEmpty +88 QWidgetItem::hasHeightForWidth +96 QWidgetItem::heightForWidth +104 QLayoutItem::minimumHeightForWidth +112 QLayoutItem::invalidate +120 QWidgetItem::widget +128 QLayoutItem::layout +136 QLayoutItem::spacerItem + +Class QWidgetItem + size=24 align=8 + base size=24 base align=8 +QWidgetItem (0x7fea10d018c0) 0 + vptr=((& QWidgetItem::_ZTV11QWidgetItem) + 16u) + QLayoutItem (0x7fea10d01930) 0 + primary-for QWidgetItem (0x7fea10d018c0) + +Vtable for QWidgetItemV2 +QWidgetItemV2::_ZTV13QWidgetItemV2: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QWidgetItemV2) +16 QWidgetItemV2::~QWidgetItemV2 +24 QWidgetItemV2::~QWidgetItemV2 +32 QWidgetItemV2::sizeHint +40 QWidgetItemV2::minimumSize +48 QWidgetItemV2::maximumSize +56 QWidgetItem::expandingDirections +64 QWidgetItem::setGeometry +72 QWidgetItem::geometry +80 QWidgetItem::isEmpty +88 QWidgetItem::hasHeightForWidth +96 QWidgetItemV2::heightForWidth +104 QLayoutItem::minimumHeightForWidth +112 QLayoutItem::invalidate +120 QWidgetItem::widget +128 QLayoutItem::layout +136 QLayoutItem::spacerItem + +Class QWidgetItemV2 + size=88 align=8 + base size=88 base align=8 +QWidgetItemV2 (0x7fea10d10700) 0 + vptr=((& QWidgetItemV2::_ZTV13QWidgetItemV2) + 16u) + QWidgetItem (0x7fea10d10770) 0 + primary-for QWidgetItemV2 (0x7fea10d10700) + QLayoutItem (0x7fea10d107e0) 0 + primary-for QWidgetItem (0x7fea10d10770) + +Class QLayoutIterator + size=16 align=8 + base size=12 base align=8 +QLayoutIterator (0x7fea10d1e540) 0 + +Vtable for QLayout +QLayout::_ZTV7QLayout: 45u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QLayout) +16 QLayout::metaObject +24 QLayout::qt_metacast +32 QLayout::qt_metacall +40 QLayout::~QLayout +48 QLayout::~QLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QLayout::invalidate +120 QLayout::geometry +128 __cxa_pure_virtual +136 QLayout::expandingDirections +144 QLayout::minimumSize +152 QLayout::maximumSize +160 QLayout::setGeometry +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 QLayout::indexOf +192 __cxa_pure_virtual +200 QLayout::isEmpty +208 QLayout::layout +216 (int (*)(...))-0x00000000000000010 +224 (int (*)(...))(& _ZTI7QLayout) +232 QLayout::_ZThn16_N7QLayoutD1Ev +240 QLayout::_ZThn16_N7QLayoutD0Ev +248 __cxa_pure_virtual +256 QLayout::_ZThn16_NK7QLayout11minimumSizeEv +264 QLayout::_ZThn16_NK7QLayout11maximumSizeEv +272 QLayout::_ZThn16_NK7QLayout19expandingDirectionsEv +280 QLayout::_ZThn16_N7QLayout11setGeometryERK5QRect +288 QLayout::_ZThn16_NK7QLayout8geometryEv +296 QLayout::_ZThn16_NK7QLayout7isEmptyEv +304 QLayoutItem::hasHeightForWidth +312 QLayoutItem::heightForWidth +320 QLayoutItem::minimumHeightForWidth +328 QLayout::_ZThn16_N7QLayout10invalidateEv +336 QLayoutItem::widget +344 QLayout::_ZThn16_N7QLayout6layoutEv +352 QLayoutItem::spacerItem + +Class QLayout + size=32 align=8 + base size=28 base align=8 +QLayout (0x7fea10d2b180) 0 + vptr=((& QLayout::_ZTV7QLayout) + 16u) + QObject (0x7fea10d29690) 0 + primary-for QLayout (0x7fea10d2b180) + QLayoutItem (0x7fea10d29700) 16 + vptr=((& QLayout::_ZTV7QLayout) + 232u) + +Vtable for QBoxLayout +QBoxLayout::_ZTV10QBoxLayout: 49u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QBoxLayout) +16 QBoxLayout::metaObject +24 QBoxLayout::qt_metacast +32 QBoxLayout::qt_metacall +40 QBoxLayout::~QBoxLayout +48 QBoxLayout::~QBoxLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QBoxLayout::invalidate +120 QLayout::geometry +128 QBoxLayout::addItem +136 QBoxLayout::expandingDirections +144 QBoxLayout::minimumSize +152 QBoxLayout::maximumSize +160 QBoxLayout::setGeometry +168 QBoxLayout::itemAt +176 QBoxLayout::takeAt +184 QLayout::indexOf +192 QBoxLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QBoxLayout::sizeHint +224 QBoxLayout::hasHeightForWidth +232 QBoxLayout::heightForWidth +240 QBoxLayout::minimumHeightForWidth +248 (int (*)(...))-0x00000000000000010 +256 (int (*)(...))(& _ZTI10QBoxLayout) +264 QBoxLayout::_ZThn16_N10QBoxLayoutD1Ev +272 QBoxLayout::_ZThn16_N10QBoxLayoutD0Ev +280 QBoxLayout::_ZThn16_NK10QBoxLayout8sizeHintEv +288 QBoxLayout::_ZThn16_NK10QBoxLayout11minimumSizeEv +296 QBoxLayout::_ZThn16_NK10QBoxLayout11maximumSizeEv +304 QBoxLayout::_ZThn16_NK10QBoxLayout19expandingDirectionsEv +312 QBoxLayout::_ZThn16_N10QBoxLayout11setGeometryERK5QRect +320 QLayout::_ZThn16_NK7QLayout8geometryEv +328 QLayout::_ZThn16_NK7QLayout7isEmptyEv +336 QBoxLayout::_ZThn16_NK10QBoxLayout17hasHeightForWidthEv +344 QBoxLayout::_ZThn16_NK10QBoxLayout14heightForWidthEi +352 QBoxLayout::_ZThn16_NK10QBoxLayout21minimumHeightForWidthEi +360 QBoxLayout::_ZThn16_N10QBoxLayout10invalidateEv +368 QLayoutItem::widget +376 QLayout::_ZThn16_N7QLayout6layoutEv +384 QLayoutItem::spacerItem + +Class QBoxLayout + size=32 align=8 + base size=28 base align=8 +QBoxLayout (0x7fea10d64bd0) 0 + vptr=((& QBoxLayout::_ZTV10QBoxLayout) + 16u) + QLayout (0x7fea10d6a200) 0 + primary-for QBoxLayout (0x7fea10d64bd0) + QObject (0x7fea10d64c40) 0 + primary-for QLayout (0x7fea10d6a200) + QLayoutItem (0x7fea10d64cb0) 16 + vptr=((& QBoxLayout::_ZTV10QBoxLayout) + 264u) + +Vtable for QHBoxLayout +QHBoxLayout::_ZTV11QHBoxLayout: 49u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QHBoxLayout) +16 QHBoxLayout::metaObject +24 QHBoxLayout::qt_metacast +32 QHBoxLayout::qt_metacall +40 QHBoxLayout::~QHBoxLayout +48 QHBoxLayout::~QHBoxLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QBoxLayout::invalidate +120 QLayout::geometry +128 QBoxLayout::addItem +136 QBoxLayout::expandingDirections +144 QBoxLayout::minimumSize +152 QBoxLayout::maximumSize +160 QBoxLayout::setGeometry +168 QBoxLayout::itemAt +176 QBoxLayout::takeAt +184 QLayout::indexOf +192 QBoxLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QBoxLayout::sizeHint +224 QBoxLayout::hasHeightForWidth +232 QBoxLayout::heightForWidth +240 QBoxLayout::minimumHeightForWidth +248 (int (*)(...))-0x00000000000000010 +256 (int (*)(...))(& _ZTI11QHBoxLayout) +264 QHBoxLayout::_ZThn16_N11QHBoxLayoutD1Ev +272 QHBoxLayout::_ZThn16_N11QHBoxLayoutD0Ev +280 QBoxLayout::_ZThn16_NK10QBoxLayout8sizeHintEv +288 QBoxLayout::_ZThn16_NK10QBoxLayout11minimumSizeEv +296 QBoxLayout::_ZThn16_NK10QBoxLayout11maximumSizeEv +304 QBoxLayout::_ZThn16_NK10QBoxLayout19expandingDirectionsEv +312 QBoxLayout::_ZThn16_N10QBoxLayout11setGeometryERK5QRect +320 QLayout::_ZThn16_NK7QLayout8geometryEv +328 QLayout::_ZThn16_NK7QLayout7isEmptyEv +336 QBoxLayout::_ZThn16_NK10QBoxLayout17hasHeightForWidthEv +344 QBoxLayout::_ZThn16_NK10QBoxLayout14heightForWidthEi +352 QBoxLayout::_ZThn16_NK10QBoxLayout21minimumHeightForWidthEi +360 QBoxLayout::_ZThn16_N10QBoxLayout10invalidateEv +368 QLayoutItem::widget +376 QLayout::_ZThn16_N7QLayout6layoutEv +384 QLayoutItem::spacerItem + +Class QHBoxLayout + size=32 align=8 + base size=28 base align=8 +QHBoxLayout (0x7fea10d93620) 0 + vptr=((& QHBoxLayout::_ZTV11QHBoxLayout) + 16u) + QBoxLayout (0x7fea10d93690) 0 + primary-for QHBoxLayout (0x7fea10d93620) + QLayout (0x7fea10d6af80) 0 + primary-for QBoxLayout (0x7fea10d93690) + QObject (0x7fea10d93700) 0 + primary-for QLayout (0x7fea10d6af80) + QLayoutItem (0x7fea10d93770) 16 + vptr=((& QHBoxLayout::_ZTV11QHBoxLayout) + 264u) + +Vtable for QVBoxLayout +QVBoxLayout::_ZTV11QVBoxLayout: 49u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QVBoxLayout) +16 QVBoxLayout::metaObject +24 QVBoxLayout::qt_metacast +32 QVBoxLayout::qt_metacall +40 QVBoxLayout::~QVBoxLayout +48 QVBoxLayout::~QVBoxLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QBoxLayout::invalidate +120 QLayout::geometry +128 QBoxLayout::addItem +136 QBoxLayout::expandingDirections +144 QBoxLayout::minimumSize +152 QBoxLayout::maximumSize +160 QBoxLayout::setGeometry +168 QBoxLayout::itemAt +176 QBoxLayout::takeAt +184 QLayout::indexOf +192 QBoxLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QBoxLayout::sizeHint +224 QBoxLayout::hasHeightForWidth +232 QBoxLayout::heightForWidth +240 QBoxLayout::minimumHeightForWidth +248 (int (*)(...))-0x00000000000000010 +256 (int (*)(...))(& _ZTI11QVBoxLayout) +264 QVBoxLayout::_ZThn16_N11QVBoxLayoutD1Ev +272 QVBoxLayout::_ZThn16_N11QVBoxLayoutD0Ev +280 QBoxLayout::_ZThn16_NK10QBoxLayout8sizeHintEv +288 QBoxLayout::_ZThn16_NK10QBoxLayout11minimumSizeEv +296 QBoxLayout::_ZThn16_NK10QBoxLayout11maximumSizeEv +304 QBoxLayout::_ZThn16_NK10QBoxLayout19expandingDirectionsEv +312 QBoxLayout::_ZThn16_N10QBoxLayout11setGeometryERK5QRect +320 QLayout::_ZThn16_NK7QLayout8geometryEv +328 QLayout::_ZThn16_NK7QLayout7isEmptyEv +336 QBoxLayout::_ZThn16_NK10QBoxLayout17hasHeightForWidthEv +344 QBoxLayout::_ZThn16_NK10QBoxLayout14heightForWidthEi +352 QBoxLayout::_ZThn16_NK10QBoxLayout21minimumHeightForWidthEi +360 QBoxLayout::_ZThn16_N10QBoxLayout10invalidateEv +368 QLayoutItem::widget +376 QLayout::_ZThn16_N7QLayout6layoutEv +384 QLayoutItem::spacerItem + +Class QVBoxLayout + size=32 align=8 + base size=28 base align=8 +QVBoxLayout (0x7fea10da0cb0) 0 + vptr=((& QVBoxLayout::_ZTV11QVBoxLayout) + 16u) + QBoxLayout (0x7fea10da0d20) 0 + primary-for QVBoxLayout (0x7fea10da0cb0) + QLayout (0x7fea10d97680) 0 + primary-for QBoxLayout (0x7fea10da0d20) + QObject (0x7fea10da0d90) 0 + primary-for QLayout (0x7fea10d97680) + QLayoutItem (0x7fea10da0e00) 16 + vptr=((& QVBoxLayout::_ZTV11QVBoxLayout) + 264u) + +Vtable for QGridLayout +QGridLayout::_ZTV11QGridLayout: 49u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QGridLayout) +16 QGridLayout::metaObject +24 QGridLayout::qt_metacast +32 QGridLayout::qt_metacall +40 QGridLayout::~QGridLayout +48 QGridLayout::~QGridLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGridLayout::invalidate +120 QLayout::geometry +128 QGridLayout::addItem +136 QGridLayout::expandingDirections +144 QGridLayout::minimumSize +152 QGridLayout::maximumSize +160 QGridLayout::setGeometry +168 QGridLayout::itemAt +176 QGridLayout::takeAt +184 QLayout::indexOf +192 QGridLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QGridLayout::sizeHint +224 QGridLayout::hasHeightForWidth +232 QGridLayout::heightForWidth +240 QGridLayout::minimumHeightForWidth +248 (int (*)(...))-0x00000000000000010 +256 (int (*)(...))(& _ZTI11QGridLayout) +264 QGridLayout::_ZThn16_N11QGridLayoutD1Ev +272 QGridLayout::_ZThn16_N11QGridLayoutD0Ev +280 QGridLayout::_ZThn16_NK11QGridLayout8sizeHintEv +288 QGridLayout::_ZThn16_NK11QGridLayout11minimumSizeEv +296 QGridLayout::_ZThn16_NK11QGridLayout11maximumSizeEv +304 QGridLayout::_ZThn16_NK11QGridLayout19expandingDirectionsEv +312 QGridLayout::_ZThn16_N11QGridLayout11setGeometryERK5QRect +320 QLayout::_ZThn16_NK7QLayout8geometryEv +328 QLayout::_ZThn16_NK7QLayout7isEmptyEv +336 QGridLayout::_ZThn16_NK11QGridLayout17hasHeightForWidthEv +344 QGridLayout::_ZThn16_NK11QGridLayout14heightForWidthEi +352 QGridLayout::_ZThn16_NK11QGridLayout21minimumHeightForWidthEi +360 QGridLayout::_ZThn16_N11QGridLayout10invalidateEv +368 QLayoutItem::widget +376 QLayout::_ZThn16_N7QLayout6layoutEv +384 QLayoutItem::spacerItem + +Class QGridLayout + size=32 align=8 + base size=28 base align=8 +QGridLayout (0x7fea10dc32a0) 0 + vptr=((& QGridLayout::_ZTV11QGridLayout) + 16u) + QLayout (0x7fea10d97d80) 0 + primary-for QGridLayout (0x7fea10dc32a0) + QObject (0x7fea10dc3310) 0 + primary-for QLayout (0x7fea10d97d80) + QLayoutItem (0x7fea10dc3380) 16 + vptr=((& QGridLayout::_ZTV11QGridLayout) + 264u) + +Vtable for QFormLayout +QFormLayout::_ZTV11QFormLayout: 48u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFormLayout) +16 QFormLayout::metaObject +24 QFormLayout::qt_metacast +32 QFormLayout::qt_metacall +40 QFormLayout::~QFormLayout +48 QFormLayout::~QFormLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFormLayout::invalidate +120 QLayout::geometry +128 QFormLayout::addItem +136 QFormLayout::expandingDirections +144 QFormLayout::minimumSize +152 QLayout::maximumSize +160 QFormLayout::setGeometry +168 QFormLayout::itemAt +176 QFormLayout::takeAt +184 QLayout::indexOf +192 QFormLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QFormLayout::sizeHint +224 QFormLayout::hasHeightForWidth +232 QFormLayout::heightForWidth +240 (int (*)(...))-0x00000000000000010 +248 (int (*)(...))(& _ZTI11QFormLayout) +256 QFormLayout::_ZThn16_N11QFormLayoutD1Ev +264 QFormLayout::_ZThn16_N11QFormLayoutD0Ev +272 QFormLayout::_ZThn16_NK11QFormLayout8sizeHintEv +280 QFormLayout::_ZThn16_NK11QFormLayout11minimumSizeEv +288 QLayout::_ZThn16_NK7QLayout11maximumSizeEv +296 QFormLayout::_ZThn16_NK11QFormLayout19expandingDirectionsEv +304 QFormLayout::_ZThn16_N11QFormLayout11setGeometryERK5QRect +312 QLayout::_ZThn16_NK7QLayout8geometryEv +320 QLayout::_ZThn16_NK7QLayout7isEmptyEv +328 QFormLayout::_ZThn16_NK11QFormLayout17hasHeightForWidthEv +336 QFormLayout::_ZThn16_NK11QFormLayout14heightForWidthEi +344 QLayoutItem::minimumHeightForWidth +352 QFormLayout::_ZThn16_N11QFormLayout10invalidateEv +360 QLayoutItem::widget +368 QLayout::_ZThn16_N7QLayout6layoutEv +376 QLayoutItem::spacerItem + +Class QFormLayout + size=32 align=8 + base size=28 base align=8 +QFormLayout (0x7fea10c0e310) 0 + vptr=((& QFormLayout::_ZTV11QFormLayout) + 16u) + QLayout (0x7fea10c09b80) 0 + primary-for QFormLayout (0x7fea10c0e310) + QObject (0x7fea10c0e380) 0 + primary-for QLayout (0x7fea10c09b80) + QLayoutItem (0x7fea10c0e3f0) 16 + vptr=((& QFormLayout::_ZTV11QFormLayout) + 256u) + +Vtable for QClipboard +QClipboard::_ZTV10QClipboard: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QClipboard) +16 QClipboard::metaObject +24 QClipboard::qt_metacast +32 QClipboard::qt_metacall +40 QClipboard::~QClipboard +48 QClipboard::~QClipboard +56 QClipboard::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QClipboard::connectNotify +104 QObject::disconnectNotify + +Class QClipboard + size=16 align=8 + base size=16 base align=8 +QClipboard (0x7fea10c3a770) 0 + vptr=((& QClipboard::_ZTV10QClipboard) + 16u) + QObject (0x7fea10c3a7e0) 0 + primary-for QClipboard (0x7fea10c3a770) + +Class QWhatsThis + size=1 align=1 + base size=0 base align=1 +QWhatsThis (0x7fea10c5c4d0) 0 empty + +Vtable for QDesktopWidget +QDesktopWidget::_ZTV14QDesktopWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QDesktopWidget) +16 QDesktopWidget::metaObject +24 QDesktopWidget::qt_metacast +32 QDesktopWidget::qt_metacall +40 QDesktopWidget::~QDesktopWidget +48 QDesktopWidget::~QDesktopWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDesktopWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI14QDesktopWidget) +464 QDesktopWidget::_ZThn16_N14QDesktopWidgetD1Ev +472 QDesktopWidget::_ZThn16_N14QDesktopWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDesktopWidget + size=40 align=8 + base size=40 base align=8 +QDesktopWidget (0x7fea10c5c5b0) 0 + vptr=((& QDesktopWidget::_ZTV14QDesktopWidget) + 16u) + QWidget (0x7fea10c58400) 0 + primary-for QDesktopWidget (0x7fea10c5c5b0) + QObject (0x7fea10c5c620) 0 + primary-for QWidget (0x7fea10c58400) + QPaintDevice (0x7fea10c5c690) 16 + vptr=((& QDesktopWidget::_ZTV14QDesktopWidget) + 464u) + +Vtable for QShortcut +QShortcut::_ZTV9QShortcut: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QShortcut) +16 QShortcut::metaObject +24 QShortcut::qt_metacast +32 QShortcut::qt_metacall +40 QShortcut::~QShortcut +48 QShortcut::~QShortcut +56 QShortcut::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QShortcut + size=16 align=8 + base size=16 base align=8 +QShortcut (0x7fea10c815b0) 0 + vptr=((& QShortcut::_ZTV9QShortcut) + 16u) + QObject (0x7fea10c81620) 0 + primary-for QShortcut (0x7fea10c815b0) + +Vtable for QSessionManager +QSessionManager::_ZTV15QSessionManager: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSessionManager) +16 QSessionManager::metaObject +24 QSessionManager::qt_metacast +32 QSessionManager::qt_metacall +40 QSessionManager::~QSessionManager +48 QSessionManager::~QSessionManager +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSessionManager + size=16 align=8 + base size=16 base align=8 +QSessionManager (0x7fea10c95d20) 0 + vptr=((& QSessionManager::_ZTV15QSessionManager) + 16u) + QObject (0x7fea10c95d90) 0 + primary-for QSessionManager (0x7fea10c95d20) + +Vtable for QApplication +QApplication::_ZTV12QApplication: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QApplication) +16 QApplication::metaObject +24 QApplication::qt_metacast +32 QApplication::qt_metacall +40 QApplication::~QApplication +48 QApplication::~QApplication +56 QApplication::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QApplication::notify +120 QApplication::compressEvent +128 QApplication::x11EventFilter +136 QApplication::x11ClientMessage +144 QApplication::commitData +152 QApplication::saveState + +Class QApplication + size=16 align=8 + base size=16 base align=8 +QApplication (0x7fea10cb42a0) 0 + vptr=((& QApplication::_ZTV12QApplication) + 16u) + QCoreApplication (0x7fea10cb4310) 0 + primary-for QApplication (0x7fea10cb42a0) + QObject (0x7fea10cb4380) 0 + primary-for QCoreApplication (0x7fea10cb4310) + +Vtable for QAction +QAction::_ZTV7QAction: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QAction) +16 QAction::metaObject +24 QAction::qt_metacast +32 QAction::qt_metacall +40 QAction::~QAction +48 QAction::~QAction +56 QAction::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QAction + size=16 align=8 + base size=16 base align=8 +QAction (0x7fea10cf9ee0) 0 + vptr=((& QAction::_ZTV7QAction) + 16u) + QObject (0x7fea10cf9f50) 0 + primary-for QAction (0x7fea10cf9ee0) + +Vtable for QActionGroup +QActionGroup::_ZTV12QActionGroup: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QActionGroup) +16 QActionGroup::metaObject +24 QActionGroup::qt_metacast +32 QActionGroup::qt_metacall +40 QActionGroup::~QActionGroup +48 QActionGroup::~QActionGroup +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QActionGroup + size=16 align=8 + base size=16 base align=8 +QActionGroup (0x7fea10b3e700) 0 + vptr=((& QActionGroup::_ZTV12QActionGroup) + 16u) + QObject (0x7fea10b3e770) 0 + primary-for QActionGroup (0x7fea10b3e700) + +Vtable for QSound +QSound::_ZTV6QSound: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QSound) +16 QSound::metaObject +24 QSound::qt_metacast +32 QSound::qt_metacall +40 QSound::~QSound +48 QSound::~QSound +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSound + size=16 align=8 + base size=16 base align=8 +QSound (0x7fea10b5baf0) 0 + vptr=((& QSound::_ZTV6QSound) + 16u) + QObject (0x7fea10b5bb60) 0 + primary-for QSound (0x7fea10b5baf0) + +Vtable for QStackedLayout +QStackedLayout::_ZTV14QStackedLayout: 46u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QStackedLayout) +16 QStackedLayout::metaObject +24 QStackedLayout::qt_metacast +32 QStackedLayout::qt_metacall +40 QStackedLayout::~QStackedLayout +48 QStackedLayout::~QStackedLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QLayout::invalidate +120 QLayout::geometry +128 QStackedLayout::addItem +136 QLayout::expandingDirections +144 QStackedLayout::minimumSize +152 QLayout::maximumSize +160 QStackedLayout::setGeometry +168 QStackedLayout::itemAt +176 QStackedLayout::takeAt +184 QLayout::indexOf +192 QStackedLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QStackedLayout::sizeHint +224 (int (*)(...))-0x00000000000000010 +232 (int (*)(...))(& _ZTI14QStackedLayout) +240 QStackedLayout::_ZThn16_N14QStackedLayoutD1Ev +248 QStackedLayout::_ZThn16_N14QStackedLayoutD0Ev +256 QStackedLayout::_ZThn16_NK14QStackedLayout8sizeHintEv +264 QStackedLayout::_ZThn16_NK14QStackedLayout11minimumSizeEv +272 QLayout::_ZThn16_NK7QLayout11maximumSizeEv +280 QLayout::_ZThn16_NK7QLayout19expandingDirectionsEv +288 QStackedLayout::_ZThn16_N14QStackedLayout11setGeometryERK5QRect +296 QLayout::_ZThn16_NK7QLayout8geometryEv +304 QLayout::_ZThn16_NK7QLayout7isEmptyEv +312 QLayoutItem::hasHeightForWidth +320 QLayoutItem::heightForWidth +328 QLayoutItem::minimumHeightForWidth +336 QLayout::_ZThn16_N7QLayout10invalidateEv +344 QLayoutItem::widget +352 QLayout::_ZThn16_N7QLayout6layoutEv +360 QLayoutItem::spacerItem + +Class QStackedLayout + size=32 align=8 + base size=28 base align=8 +QStackedLayout (0x7fea10b9c2a0) 0 + vptr=((& QStackedLayout::_ZTV14QStackedLayout) + 16u) + QLayout (0x7fea10b83a80) 0 + primary-for QStackedLayout (0x7fea10b9c2a0) + QObject (0x7fea10b9c310) 0 + primary-for QLayout (0x7fea10b83a80) + QLayoutItem (0x7fea10b9c380) 16 + vptr=((& QStackedLayout::_ZTV14QStackedLayout) + 240u) + +Vtable for QWidgetAction +QWidgetAction::_ZTV13QWidgetAction: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QWidgetAction) +16 QWidgetAction::metaObject +24 QWidgetAction::qt_metacast +32 QWidgetAction::qt_metacall +40 QWidgetAction::~QWidgetAction +48 QWidgetAction::~QWidgetAction +56 QWidgetAction::event +64 QWidgetAction::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidgetAction::createWidget +120 QWidgetAction::deleteWidget + +Class QWidgetAction + size=16 align=8 + base size=16 base align=8 +QWidgetAction (0x7fea10bb82a0) 0 + vptr=((& QWidgetAction::_ZTV13QWidgetAction) + 16u) + QAction (0x7fea10bb8310) 0 + primary-for QWidgetAction (0x7fea10bb82a0) + QObject (0x7fea10bb8380) 0 + primary-for QAction (0x7fea10bb8310) + +Class QToolTip + size=1 align=1 + base size=0 base align=1 +QToolTip (0x7fea10bcbc40) 0 empty + +Vtable for QCommonStyle +QCommonStyle::_ZTV12QCommonStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QCommonStyle) +16 QCommonStyle::metaObject +24 QCommonStyle::qt_metacast +32 QCommonStyle::qt_metacall +40 QCommonStyle::~QCommonStyle +48 QCommonStyle::~QCommonStyle +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCommonStyle::polish +120 QCommonStyle::unpolish +128 QCommonStyle::polish +136 QCommonStyle::unpolish +144 QCommonStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QStyle::standardPalette +192 QCommonStyle::drawPrimitive +200 QCommonStyle::drawControl +208 QCommonStyle::subElementRect +216 QCommonStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QCommonStyle::subControlRect +240 QCommonStyle::pixelMetric +248 QCommonStyle::sizeFromContents +256 QCommonStyle::styleHint +264 QCommonStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QCommonStyle + size=16 align=8 + base size=16 base align=8 +QCommonStyle (0x7fea10bd6230) 0 + vptr=((& QCommonStyle::_ZTV12QCommonStyle) + 16u) + QStyle (0x7fea10bd62a0) 0 + primary-for QCommonStyle (0x7fea10bd6230) + QObject (0x7fea10bd6310) 0 + primary-for QStyle (0x7fea10bd62a0) + +Vtable for QMotifStyle +QMotifStyle::_ZTV11QMotifStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMotifStyle) +16 QMotifStyle::metaObject +24 QMotifStyle::qt_metacast +32 QMotifStyle::qt_metacall +40 QMotifStyle::~QMotifStyle +48 QMotifStyle::~QMotifStyle +56 QMotifStyle::event +64 QMotifStyle::eventFilter +72 QMotifStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMotifStyle::polish +120 QMotifStyle::unpolish +128 QMotifStyle::polish +136 QMotifStyle::unpolish +144 QMotifStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QMotifStyle::standardPalette +192 QMotifStyle::drawPrimitive +200 QMotifStyle::drawControl +208 QMotifStyle::subElementRect +216 QMotifStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QMotifStyle::subControlRect +240 QMotifStyle::pixelMetric +248 QMotifStyle::sizeFromContents +256 QMotifStyle::styleHint +264 QMotifStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QMotifStyle + size=32 align=8 + base size=25 base align=8 +QMotifStyle (0x7fea10bf8230) 0 + vptr=((& QMotifStyle::_ZTV11QMotifStyle) + 16u) + QCommonStyle (0x7fea10bf82a0) 0 + primary-for QMotifStyle (0x7fea10bf8230) + QStyle (0x7fea10bf8310) 0 + primary-for QCommonStyle (0x7fea10bf82a0) + QObject (0x7fea10bf8380) 0 + primary-for QStyle (0x7fea10bf8310) + +Vtable for QWindowsStyle +QWindowsStyle::_ZTV13QWindowsStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QWindowsStyle) +16 QWindowsStyle::metaObject +24 QWindowsStyle::qt_metacast +32 QWindowsStyle::qt_metacall +40 QWindowsStyle::~QWindowsStyle +48 QWindowsStyle::~QWindowsStyle +56 QObject::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWindowsStyle::polish +120 QWindowsStyle::unpolish +128 QWindowsStyle::polish +136 QWindowsStyle::unpolish +144 QWindowsStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QStyle::standardPalette +192 QWindowsStyle::drawPrimitive +200 QWindowsStyle::drawControl +208 QWindowsStyle::subElementRect +216 QWindowsStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QCommonStyle::subControlRect +240 QWindowsStyle::pixelMetric +248 QWindowsStyle::sizeFromContents +256 QWindowsStyle::styleHint +264 QWindowsStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QWindowsStyle + size=24 align=8 + base size=24 base align=8 +QWindowsStyle (0x7fea10a1e150) 0 + vptr=((& QWindowsStyle::_ZTV13QWindowsStyle) + 16u) + QCommonStyle (0x7fea10a1e1c0) 0 + primary-for QWindowsStyle (0x7fea10a1e150) + QStyle (0x7fea10a1e230) 0 + primary-for QCommonStyle (0x7fea10a1e1c0) + QObject (0x7fea10a1e2a0) 0 + primary-for QStyle (0x7fea10a1e230) + +Vtable for QCleanlooksStyle +QCleanlooksStyle::_ZTV16QCleanlooksStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QCleanlooksStyle) +16 QCleanlooksStyle::metaObject +24 QCleanlooksStyle::qt_metacast +32 QCleanlooksStyle::qt_metacall +40 QCleanlooksStyle::~QCleanlooksStyle +48 QCleanlooksStyle::~QCleanlooksStyle +56 QObject::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCleanlooksStyle::polish +120 QCleanlooksStyle::unpolish +128 QCleanlooksStyle::polish +136 QCleanlooksStyle::unpolish +144 QCleanlooksStyle::polish +152 QStyle::itemTextRect +160 QCleanlooksStyle::itemPixmapRect +168 QCleanlooksStyle::drawItemText +176 QCleanlooksStyle::drawItemPixmap +184 QCleanlooksStyle::standardPalette +192 QCleanlooksStyle::drawPrimitive +200 QCleanlooksStyle::drawControl +208 QCleanlooksStyle::subElementRect +216 QCleanlooksStyle::drawComplexControl +224 QCleanlooksStyle::hitTestComplexControl +232 QCleanlooksStyle::subControlRect +240 QCleanlooksStyle::pixelMetric +248 QCleanlooksStyle::sizeFromContents +256 QCleanlooksStyle::styleHint +264 QCleanlooksStyle::standardPixmap +272 QCleanlooksStyle::generatedIconPixmap + +Class QCleanlooksStyle + size=24 align=8 + base size=24 base align=8 +QCleanlooksStyle (0x7fea10a36ee0) 0 + vptr=((& QCleanlooksStyle::_ZTV16QCleanlooksStyle) + 16u) + QWindowsStyle (0x7fea10a36f50) 0 + primary-for QCleanlooksStyle (0x7fea10a36ee0) + QCommonStyle (0x7fea10a3c000) 0 + primary-for QWindowsStyle (0x7fea10a36f50) + QStyle (0x7fea10a3c070) 0 + primary-for QCommonStyle (0x7fea10a3c000) + QObject (0x7fea10a3c0e0) 0 + primary-for QStyle (0x7fea10a3c070) + +Vtable for QStyleFactoryInterface +QStyleFactoryInterface::_ZTV22QStyleFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QStyleFactoryInterface) +16 QStyleFactoryInterface::~QStyleFactoryInterface +24 QStyleFactoryInterface::~QStyleFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QStyleFactoryInterface + size=8 align=8 + base size=8 base align=8 +QStyleFactoryInterface (0x7fea10a59cb0) 0 nearly-empty + vptr=((& QStyleFactoryInterface::_ZTV22QStyleFactoryInterface) + 16u) + QFactoryInterface (0x7fea10a59d20) 0 nearly-empty + primary-for QStyleFactoryInterface (0x7fea10a59cb0) + +Vtable for QStylePlugin +QStylePlugin::_ZTV12QStylePlugin: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QStylePlugin) +16 QStylePlugin::metaObject +24 QStylePlugin::qt_metacast +32 QStylePlugin::qt_metacall +40 QStylePlugin::~QStylePlugin +48 QStylePlugin::~QStylePlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI12QStylePlugin) +144 QStylePlugin::_ZThn16_N12QStylePluginD1Ev +152 QStylePlugin::_ZThn16_N12QStylePluginD0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QStylePlugin + size=24 align=8 + base size=24 base align=8 +QStylePlugin (0x7fea10a3df80) 0 + vptr=((& QStylePlugin::_ZTV12QStylePlugin) + 16u) + QObject (0x7fea10a63540) 0 + primary-for QStylePlugin (0x7fea10a3df80) + QStyleFactoryInterface (0x7fea10a635b0) 16 nearly-empty + vptr=((& QStylePlugin::_ZTV12QStylePlugin) + 144u) + QFactoryInterface (0x7fea10a63620) 16 nearly-empty + primary-for QStyleFactoryInterface (0x7fea10a635b0) + +Vtable for QWindowsXPStyle +QWindowsXPStyle::_ZTV15QWindowsXPStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QWindowsXPStyle) +16 QWindowsXPStyle::metaObject +24 QWindowsXPStyle::qt_metacast +32 QWindowsXPStyle::qt_metacall +40 QWindowsXPStyle::~QWindowsXPStyle +48 QWindowsXPStyle::~QWindowsXPStyle +56 QObject::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWindowsXPStyle::polish +120 QWindowsXPStyle::unpolish +128 QWindowsXPStyle::polish +136 QWindowsXPStyle::unpolish +144 QWindowsXPStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QWindowsXPStyle::standardPalette +192 QWindowsXPStyle::drawPrimitive +200 QWindowsXPStyle::drawControl +208 QWindowsXPStyle::subElementRect +216 QWindowsXPStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QWindowsXPStyle::subControlRect +240 QWindowsXPStyle::pixelMetric +248 QWindowsXPStyle::sizeFromContents +256 QWindowsXPStyle::styleHint +264 QWindowsXPStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QWindowsXPStyle + size=32 align=8 + base size=32 base align=8 +QWindowsXPStyle (0x7fea10a754d0) 0 + vptr=((& QWindowsXPStyle::_ZTV15QWindowsXPStyle) + 16u) + QWindowsStyle (0x7fea10a75540) 0 + primary-for QWindowsXPStyle (0x7fea10a754d0) + QCommonStyle (0x7fea10a755b0) 0 + primary-for QWindowsStyle (0x7fea10a75540) + QStyle (0x7fea10a75620) 0 + primary-for QCommonStyle (0x7fea10a755b0) + QObject (0x7fea10a75690) 0 + primary-for QStyle (0x7fea10a75620) + +Vtable for QCDEStyle +QCDEStyle::_ZTV9QCDEStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QCDEStyle) +16 QCDEStyle::metaObject +24 QCDEStyle::qt_metacast +32 QCDEStyle::qt_metacall +40 QCDEStyle::~QCDEStyle +48 QCDEStyle::~QCDEStyle +56 QMotifStyle::event +64 QMotifStyle::eventFilter +72 QMotifStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMotifStyle::polish +120 QMotifStyle::unpolish +128 QMotifStyle::polish +136 QMotifStyle::unpolish +144 QMotifStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QCDEStyle::standardPalette +192 QCDEStyle::drawPrimitive +200 QCDEStyle::drawControl +208 QMotifStyle::subElementRect +216 QMotifStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QMotifStyle::subControlRect +240 QCDEStyle::pixelMetric +248 QMotifStyle::sizeFromContents +256 QMotifStyle::styleHint +264 QMotifStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QCDEStyle + size=32 align=8 + base size=25 base align=8 +QCDEStyle (0x7fea10a98380) 0 + vptr=((& QCDEStyle::_ZTV9QCDEStyle) + 16u) + QMotifStyle (0x7fea10a983f0) 0 + primary-for QCDEStyle (0x7fea10a98380) + QCommonStyle (0x7fea10a98460) 0 + primary-for QMotifStyle (0x7fea10a983f0) + QStyle (0x7fea10a984d0) 0 + primary-for QCommonStyle (0x7fea10a98460) + QObject (0x7fea10a98540) 0 + primary-for QStyle (0x7fea10a984d0) + +Vtable for QPlastiqueStyle +QPlastiqueStyle::_ZTV15QPlastiqueStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QPlastiqueStyle) +16 QPlastiqueStyle::metaObject +24 QPlastiqueStyle::qt_metacast +32 QPlastiqueStyle::qt_metacall +40 QPlastiqueStyle::~QPlastiqueStyle +48 QPlastiqueStyle::~QPlastiqueStyle +56 QObject::event +64 QPlastiqueStyle::eventFilter +72 QPlastiqueStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QPlastiqueStyle::polish +120 QPlastiqueStyle::unpolish +128 QPlastiqueStyle::polish +136 QPlastiqueStyle::unpolish +144 QPlastiqueStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QPlastiqueStyle::standardPalette +192 QPlastiqueStyle::drawPrimitive +200 QPlastiqueStyle::drawControl +208 QPlastiqueStyle::subElementRect +216 QPlastiqueStyle::drawComplexControl +224 QPlastiqueStyle::hitTestComplexControl +232 QPlastiqueStyle::subControlRect +240 QPlastiqueStyle::pixelMetric +248 QPlastiqueStyle::sizeFromContents +256 QPlastiqueStyle::styleHint +264 QPlastiqueStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QPlastiqueStyle + size=32 align=8 + base size=32 base align=8 +QPlastiqueStyle (0x7fea10aaa4d0) 0 + vptr=((& QPlastiqueStyle::_ZTV15QPlastiqueStyle) + 16u) + QWindowsStyle (0x7fea10aaa540) 0 + primary-for QPlastiqueStyle (0x7fea10aaa4d0) + QCommonStyle (0x7fea10aaa5b0) 0 + primary-for QWindowsStyle (0x7fea10aaa540) + QStyle (0x7fea10aaa620) 0 + primary-for QCommonStyle (0x7fea10aaa5b0) + QObject (0x7fea10aaa690) 0 + primary-for QStyle (0x7fea10aaa620) + +Vtable for QWindowsVistaStyle +QWindowsVistaStyle::_ZTV18QWindowsVistaStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QWindowsVistaStyle) +16 QWindowsVistaStyle::metaObject +24 QWindowsVistaStyle::qt_metacast +32 QWindowsVistaStyle::qt_metacall +40 QWindowsVistaStyle::~QWindowsVistaStyle +48 QWindowsVistaStyle::~QWindowsVistaStyle +56 QWindowsVistaStyle::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWindowsVistaStyle::polish +120 QWindowsVistaStyle::unpolish +128 QWindowsVistaStyle::polish +136 QWindowsVistaStyle::unpolish +144 QWindowsVistaStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QWindowsVistaStyle::standardPalette +192 QWindowsVistaStyle::drawPrimitive +200 QWindowsVistaStyle::drawControl +208 QWindowsVistaStyle::subElementRect +216 QWindowsVistaStyle::drawComplexControl +224 QWindowsVistaStyle::hitTestComplexControl +232 QWindowsVistaStyle::subControlRect +240 QWindowsVistaStyle::pixelMetric +248 QWindowsVistaStyle::sizeFromContents +256 QWindowsVistaStyle::styleHint +264 QWindowsVistaStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QWindowsVistaStyle + size=32 align=8 + base size=32 base align=8 +QWindowsVistaStyle (0x7fea10aca620) 0 + vptr=((& QWindowsVistaStyle::_ZTV18QWindowsVistaStyle) + 16u) + QWindowsXPStyle (0x7fea10aca690) 0 + primary-for QWindowsVistaStyle (0x7fea10aca620) + QWindowsStyle (0x7fea10aca700) 0 + primary-for QWindowsXPStyle (0x7fea10aca690) + QCommonStyle (0x7fea10aca770) 0 + primary-for QWindowsStyle (0x7fea10aca700) + QStyle (0x7fea10aca7e0) 0 + primary-for QCommonStyle (0x7fea10aca770) + QObject (0x7fea10aca850) 0 + primary-for QStyle (0x7fea10aca7e0) + +Vtable for QWindowsCEStyle +QWindowsCEStyle::_ZTV15QWindowsCEStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QWindowsCEStyle) +16 QWindowsCEStyle::metaObject +24 QWindowsCEStyle::qt_metacast +32 QWindowsCEStyle::qt_metacall +40 QWindowsCEStyle::~QWindowsCEStyle +48 QWindowsCEStyle::~QWindowsCEStyle +56 QObject::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWindowsCEStyle::polish +120 QWindowsStyle::unpolish +128 QWindowsCEStyle::polish +136 QWindowsStyle::unpolish +144 QWindowsCEStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QWindowsCEStyle::drawItemText +176 QStyle::drawItemPixmap +184 QWindowsCEStyle::standardPalette +192 QWindowsCEStyle::drawPrimitive +200 QWindowsCEStyle::drawControl +208 QWindowsCEStyle::subElementRect +216 QWindowsCEStyle::drawComplexControl +224 QWindowsCEStyle::hitTestComplexControl +232 QWindowsCEStyle::subControlRect +240 QWindowsCEStyle::pixelMetric +248 QWindowsCEStyle::sizeFromContents +256 QWindowsCEStyle::styleHint +264 QWindowsCEStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QWindowsCEStyle + size=24 align=8 + base size=24 base align=8 +QWindowsCEStyle (0x7fea10ae8620) 0 + vptr=((& QWindowsCEStyle::_ZTV15QWindowsCEStyle) + 16u) + QWindowsStyle (0x7fea10ae8690) 0 + primary-for QWindowsCEStyle (0x7fea10ae8620) + QCommonStyle (0x7fea10ae8700) 0 + primary-for QWindowsStyle (0x7fea10ae8690) + QStyle (0x7fea10ae8770) 0 + primary-for QCommonStyle (0x7fea10ae8700) + QObject (0x7fea10ae87e0) 0 + primary-for QStyle (0x7fea10ae8770) + +Vtable for QWindowsMobileStyle +QWindowsMobileStyle::_ZTV19QWindowsMobileStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QWindowsMobileStyle) +16 QWindowsMobileStyle::metaObject +24 QWindowsMobileStyle::qt_metacast +32 QWindowsMobileStyle::qt_metacall +40 QWindowsMobileStyle::~QWindowsMobileStyle +48 QWindowsMobileStyle::~QWindowsMobileStyle +56 QObject::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWindowsMobileStyle::polish +120 QWindowsMobileStyle::unpolish +128 QWindowsMobileStyle::polish +136 QWindowsMobileStyle::unpolish +144 QWindowsMobileStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QWindowsMobileStyle::standardPalette +192 QWindowsMobileStyle::drawPrimitive +200 QWindowsMobileStyle::drawControl +208 QWindowsMobileStyle::subElementRect +216 QWindowsMobileStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QWindowsMobileStyle::subControlRect +240 QWindowsMobileStyle::pixelMetric +248 QWindowsMobileStyle::sizeFromContents +256 QWindowsMobileStyle::styleHint +264 QWindowsMobileStyle::standardPixmap +272 QWindowsMobileStyle::generatedIconPixmap + +Class QWindowsMobileStyle + size=24 align=8 + base size=24 base align=8 +QWindowsMobileStyle (0x7fea108fbd20) 0 + vptr=((& QWindowsMobileStyle::_ZTV19QWindowsMobileStyle) + 16u) + QWindowsStyle (0x7fea108fbd90) 0 + primary-for QWindowsMobileStyle (0x7fea108fbd20) + QCommonStyle (0x7fea108fbe00) 0 + primary-for QWindowsStyle (0x7fea108fbd90) + QStyle (0x7fea108fbe70) 0 + primary-for QCommonStyle (0x7fea108fbe00) + QObject (0x7fea108fbee0) 0 + primary-for QStyle (0x7fea108fbe70) + +Class QStyleFactory + size=1 align=1 + base size=0 base align=1 +QStyleFactory (0x7fea10921690) 0 empty + +Vtable for QInputContextFactoryInterface +QInputContextFactoryInterface::_ZTV29QInputContextFactoryInterface: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI29QInputContextFactoryInterface) +16 QInputContextFactoryInterface::~QInputContextFactoryInterface +24 QInputContextFactoryInterface::~QInputContextFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual + +Class QInputContextFactoryInterface + size=8 align=8 + base size=8 base align=8 +QInputContextFactoryInterface (0x7fea10921700) 0 nearly-empty + vptr=((& QInputContextFactoryInterface::_ZTV29QInputContextFactoryInterface) + 16u) + QFactoryInterface (0x7fea10921770) 0 nearly-empty + primary-for QInputContextFactoryInterface (0x7fea10921700) + +Vtable for QInputContextPlugin +QInputContextPlugin::_ZTV19QInputContextPlugin: 28u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QInputContextPlugin) +16 QInputContextPlugin::metaObject +24 QInputContextPlugin::qt_metacast +32 QInputContextPlugin::qt_metacall +40 QInputContextPlugin::~QInputContextPlugin +48 QInputContextPlugin::~QInputContextPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 (int (*)(...))-0x00000000000000010 +160 (int (*)(...))(& _ZTI19QInputContextPlugin) +168 QInputContextPlugin::_ZThn16_N19QInputContextPluginD1Ev +176 QInputContextPlugin::_ZThn16_N19QInputContextPluginD0Ev +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 __cxa_pure_virtual +208 __cxa_pure_virtual +216 __cxa_pure_virtual + +Class QInputContextPlugin + size=24 align=8 + base size=24 base align=8 +QInputContextPlugin (0x7fea1091ad80) 0 + vptr=((& QInputContextPlugin::_ZTV19QInputContextPlugin) + 16u) + QObject (0x7fea10921f50) 0 + primary-for QInputContextPlugin (0x7fea1091ad80) + QInputContextFactoryInterface (0x7fea109217e0) 16 nearly-empty + vptr=((& QInputContextPlugin::_ZTV19QInputContextPlugin) + 168u) + QFactoryInterface (0x7fea1092c000) 16 nearly-empty + primary-for QInputContextFactoryInterface (0x7fea109217e0) + +Class QInputContextFactory + size=1 align=1 + base size=0 base align=1 +QInputContextFactory (0x7fea1092cee0) 0 empty + +Vtable for QInputContext +QInputContext::_ZTV13QInputContext: 26u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QInputContext) +16 QInputContext::metaObject +24 QInputContext::qt_metacast +32 QInputContext::qt_metacall +40 QInputContext::~QInputContext +48 QInputContext::~QInputContext +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 QInputContext::update +144 QInputContext::mouseHandler +152 QInputContext::font +160 __cxa_pure_virtual +168 QInputContext::setFocusWidget +176 QInputContext::widgetDestroyed +184 QInputContext::actions +192 QInputContext::x11FilterEvent +200 QInputContext::filterEvent + +Class QInputContext + size=16 align=8 + base size=16 base align=8 +QInputContext (0x7fea1092cf50) 0 + vptr=((& QInputContext::_ZTV13QInputContext) + 16u) + QObject (0x7fea1092c2a0) 0 + primary-for QInputContext (0x7fea1092cf50) + +Vtable for QGraphicsItem +QGraphicsItem::_ZTV13QGraphicsItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QGraphicsItem) +16 QGraphicsItem::~QGraphicsItem +24 QGraphicsItem::~QGraphicsItem +32 QGraphicsItem::advance +40 __cxa_pure_virtual +48 QGraphicsItem::shape +56 QGraphicsItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsItem::isObscuredBy +88 QGraphicsItem::opaqueArea +96 __cxa_pure_virtual +104 QGraphicsItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsItem::supportsExtension +296 QGraphicsItem::setExtension +304 QGraphicsItem::extension + +Class QGraphicsItem + size=16 align=8 + base size=16 base align=8 +QGraphicsItem (0x7fea10954850) 0 + vptr=((& QGraphicsItem::_ZTV13QGraphicsItem) + 16u) + +Vtable for QAbstractGraphicsShapeItem +QAbstractGraphicsShapeItem::_ZTV26QAbstractGraphicsShapeItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QAbstractGraphicsShapeItem) +16 QAbstractGraphicsShapeItem::~QAbstractGraphicsShapeItem +24 QAbstractGraphicsShapeItem::~QAbstractGraphicsShapeItem +32 QGraphicsItem::advance +40 __cxa_pure_virtual +48 QGraphicsItem::shape +56 QGraphicsItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QAbstractGraphicsShapeItem::isObscuredBy +88 QAbstractGraphicsShapeItem::opaqueArea +96 __cxa_pure_virtual +104 QGraphicsItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsItem::supportsExtension +296 QGraphicsItem::setExtension +304 QGraphicsItem::extension + +Class QAbstractGraphicsShapeItem + size=16 align=8 + base size=16 base align=8 +QAbstractGraphicsShapeItem (0x7fea10827380) 0 + vptr=((& QAbstractGraphicsShapeItem::_ZTV26QAbstractGraphicsShapeItem) + 16u) + QGraphicsItem (0x7fea108273f0) 0 + primary-for QAbstractGraphicsShapeItem (0x7fea10827380) + +Vtable for QGraphicsPathItem +QGraphicsPathItem::_ZTV17QGraphicsPathItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QGraphicsPathItem) +16 QGraphicsPathItem::~QGraphicsPathItem +24 QGraphicsPathItem::~QGraphicsPathItem +32 QGraphicsItem::advance +40 QGraphicsPathItem::boundingRect +48 QGraphicsPathItem::shape +56 QGraphicsPathItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsPathItem::isObscuredBy +88 QGraphicsPathItem::opaqueArea +96 QGraphicsPathItem::paint +104 QGraphicsPathItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsPathItem::supportsExtension +296 QGraphicsPathItem::setExtension +304 QGraphicsPathItem::extension + +Class QGraphicsPathItem + size=16 align=8 + base size=16 base align=8 +QGraphicsPathItem (0x7fea108321c0) 0 + vptr=((& QGraphicsPathItem::_ZTV17QGraphicsPathItem) + 16u) + QAbstractGraphicsShapeItem (0x7fea10832230) 0 + primary-for QGraphicsPathItem (0x7fea108321c0) + QGraphicsItem (0x7fea108322a0) 0 + primary-for QAbstractGraphicsShapeItem (0x7fea10832230) + +Vtable for QGraphicsRectItem +QGraphicsRectItem::_ZTV17QGraphicsRectItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QGraphicsRectItem) +16 QGraphicsRectItem::~QGraphicsRectItem +24 QGraphicsRectItem::~QGraphicsRectItem +32 QGraphicsItem::advance +40 QGraphicsRectItem::boundingRect +48 QGraphicsRectItem::shape +56 QGraphicsRectItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsRectItem::isObscuredBy +88 QGraphicsRectItem::opaqueArea +96 QGraphicsRectItem::paint +104 QGraphicsRectItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsRectItem::supportsExtension +296 QGraphicsRectItem::setExtension +304 QGraphicsRectItem::extension + +Class QGraphicsRectItem + size=16 align=8 + base size=16 base align=8 +QGraphicsRectItem (0x7fea10844150) 0 + vptr=((& QGraphicsRectItem::_ZTV17QGraphicsRectItem) + 16u) + QAbstractGraphicsShapeItem (0x7fea108441c0) 0 + primary-for QGraphicsRectItem (0x7fea10844150) + QGraphicsItem (0x7fea10844230) 0 + primary-for QAbstractGraphicsShapeItem (0x7fea108441c0) + +Vtable for QGraphicsEllipseItem +QGraphicsEllipseItem::_ZTV20QGraphicsEllipseItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QGraphicsEllipseItem) +16 QGraphicsEllipseItem::~QGraphicsEllipseItem +24 QGraphicsEllipseItem::~QGraphicsEllipseItem +32 QGraphicsItem::advance +40 QGraphicsEllipseItem::boundingRect +48 QGraphicsEllipseItem::shape +56 QGraphicsEllipseItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsEllipseItem::isObscuredBy +88 QGraphicsEllipseItem::opaqueArea +96 QGraphicsEllipseItem::paint +104 QGraphicsEllipseItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsEllipseItem::supportsExtension +296 QGraphicsEllipseItem::setExtension +304 QGraphicsEllipseItem::extension + +Class QGraphicsEllipseItem + size=16 align=8 + base size=16 base align=8 +QGraphicsEllipseItem (0x7fea10855460) 0 + vptr=((& QGraphicsEllipseItem::_ZTV20QGraphicsEllipseItem) + 16u) + QAbstractGraphicsShapeItem (0x7fea108554d0) 0 + primary-for QGraphicsEllipseItem (0x7fea10855460) + QGraphicsItem (0x7fea10855540) 0 + primary-for QAbstractGraphicsShapeItem (0x7fea108554d0) + +Vtable for QGraphicsPolygonItem +QGraphicsPolygonItem::_ZTV20QGraphicsPolygonItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QGraphicsPolygonItem) +16 QGraphicsPolygonItem::~QGraphicsPolygonItem +24 QGraphicsPolygonItem::~QGraphicsPolygonItem +32 QGraphicsItem::advance +40 QGraphicsPolygonItem::boundingRect +48 QGraphicsPolygonItem::shape +56 QGraphicsPolygonItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsPolygonItem::isObscuredBy +88 QGraphicsPolygonItem::opaqueArea +96 QGraphicsPolygonItem::paint +104 QGraphicsPolygonItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsPolygonItem::supportsExtension +296 QGraphicsPolygonItem::setExtension +304 QGraphicsPolygonItem::extension + +Class QGraphicsPolygonItem + size=16 align=8 + base size=16 base align=8 +QGraphicsPolygonItem (0x7fea10869770) 0 + vptr=((& QGraphicsPolygonItem::_ZTV20QGraphicsPolygonItem) + 16u) + QAbstractGraphicsShapeItem (0x7fea108697e0) 0 + primary-for QGraphicsPolygonItem (0x7fea10869770) + QGraphicsItem (0x7fea10869850) 0 + primary-for QAbstractGraphicsShapeItem (0x7fea108697e0) + +Vtable for QGraphicsLineItem +QGraphicsLineItem::_ZTV17QGraphicsLineItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QGraphicsLineItem) +16 QGraphicsLineItem::~QGraphicsLineItem +24 QGraphicsLineItem::~QGraphicsLineItem +32 QGraphicsItem::advance +40 QGraphicsLineItem::boundingRect +48 QGraphicsLineItem::shape +56 QGraphicsLineItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsLineItem::isObscuredBy +88 QGraphicsLineItem::opaqueArea +96 QGraphicsLineItem::paint +104 QGraphicsLineItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsLineItem::supportsExtension +296 QGraphicsLineItem::setExtension +304 QGraphicsLineItem::extension + +Class QGraphicsLineItem + size=16 align=8 + base size=16 base align=8 +QGraphicsLineItem (0x7fea10878770) 0 + vptr=((& QGraphicsLineItem::_ZTV17QGraphicsLineItem) + 16u) + QGraphicsItem (0x7fea108787e0) 0 + primary-for QGraphicsLineItem (0x7fea10878770) + +Vtable for QGraphicsPixmapItem +QGraphicsPixmapItem::_ZTV19QGraphicsPixmapItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QGraphicsPixmapItem) +16 QGraphicsPixmapItem::~QGraphicsPixmapItem +24 QGraphicsPixmapItem::~QGraphicsPixmapItem +32 QGraphicsItem::advance +40 QGraphicsPixmapItem::boundingRect +48 QGraphicsPixmapItem::shape +56 QGraphicsPixmapItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsPixmapItem::isObscuredBy +88 QGraphicsPixmapItem::opaqueArea +96 QGraphicsPixmapItem::paint +104 QGraphicsPixmapItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsPixmapItem::supportsExtension +296 QGraphicsPixmapItem::setExtension +304 QGraphicsPixmapItem::extension + +Class QGraphicsPixmapItem + size=16 align=8 + base size=16 base align=8 +QGraphicsPixmapItem (0x7fea10889a10) 0 + vptr=((& QGraphicsPixmapItem::_ZTV19QGraphicsPixmapItem) + 16u) + QGraphicsItem (0x7fea10889a80) 0 + primary-for QGraphicsPixmapItem (0x7fea10889a10) + +Vtable for QGraphicsTextItem +QGraphicsTextItem::_ZTV17QGraphicsTextItem: 82u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QGraphicsTextItem) +16 QGraphicsTextItem::metaObject +24 QGraphicsTextItem::qt_metacast +32 QGraphicsTextItem::qt_metacall +40 QGraphicsTextItem::~QGraphicsTextItem +48 QGraphicsTextItem::~QGraphicsTextItem +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsTextItem::boundingRect +120 QGraphicsTextItem::shape +128 QGraphicsTextItem::contains +136 QGraphicsTextItem::paint +144 QGraphicsTextItem::isObscuredBy +152 QGraphicsTextItem::opaqueArea +160 QGraphicsTextItem::type +168 QGraphicsTextItem::sceneEvent +176 QGraphicsTextItem::mousePressEvent +184 QGraphicsTextItem::mouseMoveEvent +192 QGraphicsTextItem::mouseReleaseEvent +200 QGraphicsTextItem::mouseDoubleClickEvent +208 QGraphicsTextItem::contextMenuEvent +216 QGraphicsTextItem::keyPressEvent +224 QGraphicsTextItem::keyReleaseEvent +232 QGraphicsTextItem::focusInEvent +240 QGraphicsTextItem::focusOutEvent +248 QGraphicsTextItem::dragEnterEvent +256 QGraphicsTextItem::dragLeaveEvent +264 QGraphicsTextItem::dragMoveEvent +272 QGraphicsTextItem::dropEvent +280 QGraphicsTextItem::inputMethodEvent +288 QGraphicsTextItem::hoverEnterEvent +296 QGraphicsTextItem::hoverMoveEvent +304 QGraphicsTextItem::hoverLeaveEvent +312 QGraphicsTextItem::inputMethodQuery +320 QGraphicsTextItem::supportsExtension +328 QGraphicsTextItem::setExtension +336 QGraphicsTextItem::extension +344 (int (*)(...))-0x00000000000000010 +352 (int (*)(...))(& _ZTI17QGraphicsTextItem) +360 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItemD1Ev +368 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItemD0Ev +376 QGraphicsItem::advance +384 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem12boundingRectEv +392 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem5shapeEv +400 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem8containsERK7QPointF +408 QGraphicsItem::collidesWithItem +416 QGraphicsItem::collidesWithPath +424 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem12isObscuredByEPK13QGraphicsItem +432 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem10opaqueAreaEv +440 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget +448 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem4typeEv +456 QGraphicsItem::sceneEventFilter +464 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem10sceneEventEP6QEvent +472 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem16contextMenuEventEP30QGraphicsSceneContextMenuEvent +480 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem14dragEnterEventEP27QGraphicsSceneDragDropEvent +488 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem14dragLeaveEventEP27QGraphicsSceneDragDropEvent +496 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem13dragMoveEventEP27QGraphicsSceneDragDropEvent +504 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem9dropEventEP27QGraphicsSceneDragDropEvent +512 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem12focusInEventEP11QFocusEvent +520 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem13focusOutEventEP11QFocusEvent +528 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem15hoverEnterEventEP24QGraphicsSceneHoverEvent +536 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem14hoverMoveEventEP24QGraphicsSceneHoverEvent +544 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem15hoverLeaveEventEP24QGraphicsSceneHoverEvent +552 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem13keyPressEventEP9QKeyEvent +560 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem15keyReleaseEventEP9QKeyEvent +568 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem15mousePressEventEP24QGraphicsSceneMouseEvent +576 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem14mouseMoveEventEP24QGraphicsSceneMouseEvent +584 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem17mouseReleaseEventEP24QGraphicsSceneMouseEvent +592 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem21mouseDoubleClickEventEP24QGraphicsSceneMouseEvent +600 QGraphicsItem::wheelEvent +608 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem16inputMethodEventEP17QInputMethodEvent +616 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem16inputMethodQueryEN2Qt16InputMethodQueryE +624 QGraphicsItem::itemChange +632 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem17supportsExtensionEN13QGraphicsItem9ExtensionE +640 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem12setExtensionEN13QGraphicsItem9ExtensionERK8QVariant +648 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem9extensionERK8QVariant + +Class QGraphicsTextItem + size=40 align=8 + base size=40 base align=8 +QGraphicsTextItem (0x7fea1086af80) 0 + vptr=((& QGraphicsTextItem::_ZTV17QGraphicsTextItem) + 16u) + QObject (0x7fea1089ac40) 0 + primary-for QGraphicsTextItem (0x7fea1086af80) + QGraphicsItem (0x7fea1089acb0) 16 + vptr=((& QGraphicsTextItem::_ZTV17QGraphicsTextItem) + 360u) + +Vtable for QGraphicsSimpleTextItem +QGraphicsSimpleTextItem::_ZTV23QGraphicsSimpleTextItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QGraphicsSimpleTextItem) +16 QGraphicsSimpleTextItem::~QGraphicsSimpleTextItem +24 QGraphicsSimpleTextItem::~QGraphicsSimpleTextItem +32 QGraphicsItem::advance +40 QGraphicsSimpleTextItem::boundingRect +48 QGraphicsSimpleTextItem::shape +56 QGraphicsSimpleTextItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsSimpleTextItem::isObscuredBy +88 QGraphicsSimpleTextItem::opaqueArea +96 QGraphicsSimpleTextItem::paint +104 QGraphicsSimpleTextItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsSimpleTextItem::supportsExtension +296 QGraphicsSimpleTextItem::setExtension +304 QGraphicsSimpleTextItem::extension + +Class QGraphicsSimpleTextItem + size=16 align=8 + base size=16 base align=8 +QGraphicsSimpleTextItem (0x7fea108d31c0) 0 + vptr=((& QGraphicsSimpleTextItem::_ZTV23QGraphicsSimpleTextItem) + 16u) + QAbstractGraphicsShapeItem (0x7fea108d3230) 0 + primary-for QGraphicsSimpleTextItem (0x7fea108d31c0) + QGraphicsItem (0x7fea108d32a0) 0 + primary-for QAbstractGraphicsShapeItem (0x7fea108d3230) + +Vtable for QGraphicsItemGroup +QGraphicsItemGroup::_ZTV18QGraphicsItemGroup: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QGraphicsItemGroup) +16 QGraphicsItemGroup::~QGraphicsItemGroup +24 QGraphicsItemGroup::~QGraphicsItemGroup +32 QGraphicsItem::advance +40 QGraphicsItemGroup::boundingRect +48 QGraphicsItem::shape +56 QGraphicsItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsItemGroup::isObscuredBy +88 QGraphicsItemGroup::opaqueArea +96 QGraphicsItemGroup::paint +104 QGraphicsItemGroup::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsItem::supportsExtension +296 QGraphicsItem::setExtension +304 QGraphicsItem::extension + +Class QGraphicsItemGroup + size=16 align=8 + base size=16 base align=8 +QGraphicsItemGroup (0x7fea108e3150) 0 + vptr=((& QGraphicsItemGroup::_ZTV18QGraphicsItemGroup) + 16u) + QGraphicsItem (0x7fea108e31c0) 0 + primary-for QGraphicsItemGroup (0x7fea108e3150) + +Vtable for QGraphicsLayoutItem +QGraphicsLayoutItem::_ZTV19QGraphicsLayoutItem: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QGraphicsLayoutItem) +16 QGraphicsLayoutItem::~QGraphicsLayoutItem +24 QGraphicsLayoutItem::~QGraphicsLayoutItem +32 QGraphicsLayoutItem::setGeometry +40 QGraphicsLayoutItem::getContentsMargins +48 QGraphicsLayoutItem::updateGeometry +56 __cxa_pure_virtual + +Class QGraphicsLayoutItem + size=16 align=8 + base size=16 base align=8 +QGraphicsLayoutItem (0x7fea108f1a80) 0 + vptr=((& QGraphicsLayoutItem::_ZTV19QGraphicsLayoutItem) + 16u) + +Vtable for QGraphicsLayout +QGraphicsLayout::_ZTV15QGraphicsLayout: 13u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QGraphicsLayout) +16 QGraphicsLayout::~QGraphicsLayout +24 QGraphicsLayout::~QGraphicsLayout +32 QGraphicsLayoutItem::setGeometry +40 QGraphicsLayout::getContentsMargins +48 QGraphicsLayout::updateGeometry +56 __cxa_pure_virtual +64 QGraphicsLayout::invalidate +72 QGraphicsLayout::widgetEvent +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual + +Class QGraphicsLayout + size=16 align=8 + base size=16 base align=8 +QGraphicsLayout (0x7fea1071f7e0) 0 + vptr=((& QGraphicsLayout::_ZTV15QGraphicsLayout) + 16u) + QGraphicsLayoutItem (0x7fea1071f850) 0 + primary-for QGraphicsLayout (0x7fea1071f7e0) + +Vtable for QGraphicsScene +QGraphicsScene::_ZTV14QGraphicsScene: 34u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QGraphicsScene) +16 QGraphicsScene::metaObject +24 QGraphicsScene::qt_metacast +32 QGraphicsScene::qt_metacall +40 QGraphicsScene::~QGraphicsScene +48 QGraphicsScene::~QGraphicsScene +56 QGraphicsScene::event +64 QGraphicsScene::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsScene::inputMethodQuery +120 QGraphicsScene::contextMenuEvent +128 QGraphicsScene::dragEnterEvent +136 QGraphicsScene::dragMoveEvent +144 QGraphicsScene::dragLeaveEvent +152 QGraphicsScene::dropEvent +160 QGraphicsScene::focusInEvent +168 QGraphicsScene::focusOutEvent +176 QGraphicsScene::helpEvent +184 QGraphicsScene::keyPressEvent +192 QGraphicsScene::keyReleaseEvent +200 QGraphicsScene::mousePressEvent +208 QGraphicsScene::mouseMoveEvent +216 QGraphicsScene::mouseReleaseEvent +224 QGraphicsScene::mouseDoubleClickEvent +232 QGraphicsScene::wheelEvent +240 QGraphicsScene::inputMethodEvent +248 QGraphicsScene::drawBackground +256 QGraphicsScene::drawForeground +264 QGraphicsScene::drawItems + +Class QGraphicsScene + size=16 align=8 + base size=16 base align=8 +QGraphicsScene (0x7fea1072c700) 0 + vptr=((& QGraphicsScene::_ZTV14QGraphicsScene) + 16u) + QObject (0x7fea1072c770) 0 + primary-for QGraphicsScene (0x7fea1072c700) + +Vtable for QGraphicsLinearLayout +QGraphicsLinearLayout::_ZTV21QGraphicsLinearLayout: 13u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QGraphicsLinearLayout) +16 QGraphicsLinearLayout::~QGraphicsLinearLayout +24 QGraphicsLinearLayout::~QGraphicsLinearLayout +32 QGraphicsLinearLayout::setGeometry +40 QGraphicsLayout::getContentsMargins +48 QGraphicsLayout::updateGeometry +56 QGraphicsLinearLayout::sizeHint +64 QGraphicsLinearLayout::invalidate +72 QGraphicsLayout::widgetEvent +80 QGraphicsLinearLayout::count +88 QGraphicsLinearLayout::itemAt +96 QGraphicsLinearLayout::removeAt + +Class QGraphicsLinearLayout + size=16 align=8 + base size=16 base align=8 +QGraphicsLinearLayout (0x7fea107d2d20) 0 + vptr=((& QGraphicsLinearLayout::_ZTV21QGraphicsLinearLayout) + 16u) + QGraphicsLayout (0x7fea107d2d90) 0 + primary-for QGraphicsLinearLayout (0x7fea107d2d20) + QGraphicsLayoutItem (0x7fea107d2e00) 0 + primary-for QGraphicsLayout (0x7fea107d2d90) + +Vtable for QScrollArea +QScrollArea::_ZTV11QScrollArea: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QScrollArea) +16 QScrollArea::metaObject +24 QScrollArea::qt_metacast +32 QScrollArea::qt_metacall +40 QScrollArea::~QScrollArea +48 QScrollArea::~QScrollArea +56 QScrollArea::event +64 QScrollArea::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractScrollArea::mousePressEvent +168 QAbstractScrollArea::mouseReleaseEvent +176 QAbstractScrollArea::mouseDoubleClickEvent +184 QAbstractScrollArea::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractScrollArea::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractScrollArea::paintEvent +256 QWidget::moveEvent +264 QScrollArea::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractScrollArea::dragEnterEvent +312 QAbstractScrollArea::dragMoveEvent +320 QAbstractScrollArea::dragLeaveEvent +328 QAbstractScrollArea::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QScrollArea::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QScrollArea::scrollContentsBy +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI11QScrollArea) +480 QScrollArea::_ZThn16_N11QScrollAreaD1Ev +488 QScrollArea::_ZThn16_N11QScrollAreaD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QScrollArea + size=40 align=8 + base size=40 base align=8 +QScrollArea (0x7fea105ff540) 0 + vptr=((& QScrollArea::_ZTV11QScrollArea) + 16u) + QAbstractScrollArea (0x7fea105ff5b0) 0 + primary-for QScrollArea (0x7fea105ff540) + QFrame (0x7fea105ff620) 0 + primary-for QAbstractScrollArea (0x7fea105ff5b0) + QWidget (0x7fea107d1880) 0 + primary-for QFrame (0x7fea105ff620) + QObject (0x7fea105ff690) 0 + primary-for QWidget (0x7fea107d1880) + QPaintDevice (0x7fea105ff700) 16 + vptr=((& QScrollArea::_ZTV11QScrollArea) + 480u) + +Vtable for QGraphicsView +QGraphicsView::_ZTV13QGraphicsView: 68u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QGraphicsView) +16 QGraphicsView::metaObject +24 QGraphicsView::qt_metacast +32 QGraphicsView::qt_metacall +40 QGraphicsView::~QGraphicsView +48 QGraphicsView::~QGraphicsView +56 QGraphicsView::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QGraphicsView::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QGraphicsView::mousePressEvent +168 QGraphicsView::mouseReleaseEvent +176 QGraphicsView::mouseDoubleClickEvent +184 QGraphicsView::mouseMoveEvent +192 QGraphicsView::wheelEvent +200 QGraphicsView::keyPressEvent +208 QGraphicsView::keyReleaseEvent +216 QGraphicsView::focusInEvent +224 QGraphicsView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QGraphicsView::paintEvent +256 QWidget::moveEvent +264 QGraphicsView::resizeEvent +272 QWidget::closeEvent +280 QGraphicsView::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QGraphicsView::dragEnterEvent +312 QGraphicsView::dragMoveEvent +320 QGraphicsView::dragLeaveEvent +328 QGraphicsView::dropEvent +336 QGraphicsView::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QGraphicsView::inputMethodEvent +384 QGraphicsView::inputMethodQuery +392 QGraphicsView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QGraphicsView::viewportEvent +456 QGraphicsView::scrollContentsBy +464 QGraphicsView::drawBackground +472 QGraphicsView::drawForeground +480 QGraphicsView::drawItems +488 (int (*)(...))-0x00000000000000010 +496 (int (*)(...))(& _ZTI13QGraphicsView) +504 QGraphicsView::_ZThn16_N13QGraphicsViewD1Ev +512 QGraphicsView::_ZThn16_N13QGraphicsViewD0Ev +520 QWidget::_ZThn16_NK7QWidget7devTypeEv +528 QWidget::_ZThn16_NK7QWidget11paintEngineEv +536 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QGraphicsView + size=40 align=8 + base size=40 base align=8 +QGraphicsView (0x7fea1061f460) 0 + vptr=((& QGraphicsView::_ZTV13QGraphicsView) + 16u) + QAbstractScrollArea (0x7fea1061f4d0) 0 + primary-for QGraphicsView (0x7fea1061f460) + QFrame (0x7fea1061f540) 0 + primary-for QAbstractScrollArea (0x7fea1061f4d0) + QWidget (0x7fea1061e180) 0 + primary-for QFrame (0x7fea1061f540) + QObject (0x7fea1061f5b0) 0 + primary-for QWidget (0x7fea1061e180) + QPaintDevice (0x7fea1061f620) 16 + vptr=((& QGraphicsView::_ZTV13QGraphicsView) + 504u) + +Vtable for QGraphicsWidget +QGraphicsWidget::_ZTV15QGraphicsWidget: 92u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QGraphicsWidget) +16 QGraphicsWidget::metaObject +24 QGraphicsWidget::qt_metacast +32 QGraphicsWidget::qt_metacall +40 QGraphicsWidget::~QGraphicsWidget +48 QGraphicsWidget::~QGraphicsWidget +56 QGraphicsWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsWidget::setGeometry +120 QGraphicsWidget::getContentsMargins +128 QGraphicsWidget::type +136 QGraphicsWidget::paint +144 QGraphicsWidget::paintWindowFrame +152 QGraphicsWidget::boundingRect +160 QGraphicsWidget::shape +168 QGraphicsWidget::initStyleOption +176 QGraphicsWidget::sizeHint +184 QGraphicsWidget::updateGeometry +192 QGraphicsWidget::itemChange +200 QGraphicsWidget::propertyChange +208 QGraphicsWidget::sceneEvent +216 QGraphicsWidget::windowFrameEvent +224 QGraphicsWidget::windowFrameSectionAt +232 QGraphicsWidget::changeEvent +240 QGraphicsWidget::closeEvent +248 QGraphicsWidget::focusInEvent +256 QGraphicsWidget::focusNextPrevChild +264 QGraphicsWidget::focusOutEvent +272 QGraphicsWidget::hideEvent +280 QGraphicsWidget::moveEvent +288 QGraphicsWidget::polishEvent +296 QGraphicsWidget::resizeEvent +304 QGraphicsWidget::showEvent +312 QGraphicsWidget::hoverMoveEvent +320 QGraphicsWidget::hoverLeaveEvent +328 QGraphicsWidget::grabMouseEvent +336 QGraphicsWidget::ungrabMouseEvent +344 QGraphicsWidget::grabKeyboardEvent +352 QGraphicsWidget::ungrabKeyboardEvent +360 (int (*)(...))-0x00000000000000010 +368 (int (*)(...))(& _ZTI15QGraphicsWidget) +376 QGraphicsWidget::_ZThn16_N15QGraphicsWidgetD1Ev +384 QGraphicsWidget::_ZThn16_N15QGraphicsWidgetD0Ev +392 QGraphicsItem::advance +400 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget12boundingRectEv +408 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget5shapeEv +416 QGraphicsItem::contains +424 QGraphicsItem::collidesWithItem +432 QGraphicsItem::collidesWithPath +440 QGraphicsItem::isObscuredBy +448 QGraphicsItem::opaqueArea +456 QGraphicsWidget::_ZThn16_N15QGraphicsWidget5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget +464 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget4typeEv +472 QGraphicsItem::sceneEventFilter +480 QGraphicsWidget::_ZThn16_N15QGraphicsWidget10sceneEventEP6QEvent +488 QGraphicsItem::contextMenuEvent +496 QGraphicsItem::dragEnterEvent +504 QGraphicsItem::dragLeaveEvent +512 QGraphicsItem::dragMoveEvent +520 QGraphicsItem::dropEvent +528 QGraphicsWidget::_ZThn16_N15QGraphicsWidget12focusInEventEP11QFocusEvent +536 QGraphicsWidget::_ZThn16_N15QGraphicsWidget13focusOutEventEP11QFocusEvent +544 QGraphicsItem::hoverEnterEvent +552 QGraphicsWidget::_ZThn16_N15QGraphicsWidget14hoverMoveEventEP24QGraphicsSceneHoverEvent +560 QGraphicsWidget::_ZThn16_N15QGraphicsWidget15hoverLeaveEventEP24QGraphicsSceneHoverEvent +568 QGraphicsItem::keyPressEvent +576 QGraphicsItem::keyReleaseEvent +584 QGraphicsItem::mousePressEvent +592 QGraphicsItem::mouseMoveEvent +600 QGraphicsItem::mouseReleaseEvent +608 QGraphicsItem::mouseDoubleClickEvent +616 QGraphicsItem::wheelEvent +624 QGraphicsItem::inputMethodEvent +632 QGraphicsItem::inputMethodQuery +640 QGraphicsWidget::_ZThn16_N15QGraphicsWidget10itemChangeEN13QGraphicsItem18GraphicsItemChangeERK8QVariant +648 QGraphicsItem::supportsExtension +656 QGraphicsItem::setExtension +664 QGraphicsItem::extension +672 (int (*)(...))-0x00000000000000020 +680 (int (*)(...))(& _ZTI15QGraphicsWidget) +688 QGraphicsWidget::_ZThn32_N15QGraphicsWidgetD1Ev +696 QGraphicsWidget::_ZThn32_N15QGraphicsWidgetD0Ev +704 QGraphicsWidget::_ZThn32_N15QGraphicsWidget11setGeometryERK6QRectF +712 QGraphicsWidget::_ZThn32_NK15QGraphicsWidget18getContentsMarginsEPdS0_S0_S0_ +720 QGraphicsWidget::_ZThn32_N15QGraphicsWidget14updateGeometryEv +728 QGraphicsWidget::_ZThn32_NK15QGraphicsWidget8sizeHintEN2Qt8SizeHintERK6QSizeF + +Class QGraphicsWidget + size=48 align=8 + base size=48 base align=8 +QGraphicsWidget (0x7fea104f8d00) 0 + vptr=((& QGraphicsWidget::_ZTV15QGraphicsWidget) + 16u) + QObject (0x7fea10504930) 0 + primary-for QGraphicsWidget (0x7fea104f8d00) + QGraphicsItem (0x7fea105049a0) 16 + vptr=((& QGraphicsWidget::_ZTV15QGraphicsWidget) + 376u) + QGraphicsLayoutItem (0x7fea10504a10) 32 + vptr=((& QGraphicsWidget::_ZTV15QGraphicsWidget) + 688u) + +Vtable for QGraphicsProxyWidget +QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget: 105u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QGraphicsProxyWidget) +16 QGraphicsProxyWidget::metaObject +24 QGraphicsProxyWidget::qt_metacast +32 QGraphicsProxyWidget::qt_metacall +40 QGraphicsProxyWidget::~QGraphicsProxyWidget +48 QGraphicsProxyWidget::~QGraphicsProxyWidget +56 QGraphicsProxyWidget::event +64 QGraphicsProxyWidget::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsProxyWidget::setGeometry +120 QGraphicsWidget::getContentsMargins +128 QGraphicsProxyWidget::type +136 QGraphicsProxyWidget::paint +144 QGraphicsWidget::paintWindowFrame +152 QGraphicsWidget::boundingRect +160 QGraphicsWidget::shape +168 QGraphicsWidget::initStyleOption +176 QGraphicsProxyWidget::sizeHint +184 QGraphicsWidget::updateGeometry +192 QGraphicsProxyWidget::itemChange +200 QGraphicsWidget::propertyChange +208 QGraphicsWidget::sceneEvent +216 QGraphicsWidget::windowFrameEvent +224 QGraphicsWidget::windowFrameSectionAt +232 QGraphicsWidget::changeEvent +240 QGraphicsWidget::closeEvent +248 QGraphicsProxyWidget::focusInEvent +256 QGraphicsProxyWidget::focusNextPrevChild +264 QGraphicsProxyWidget::focusOutEvent +272 QGraphicsProxyWidget::hideEvent +280 QGraphicsWidget::moveEvent +288 QGraphicsWidget::polishEvent +296 QGraphicsProxyWidget::resizeEvent +304 QGraphicsProxyWidget::showEvent +312 QGraphicsProxyWidget::hoverMoveEvent +320 QGraphicsProxyWidget::hoverLeaveEvent +328 QGraphicsProxyWidget::grabMouseEvent +336 QGraphicsProxyWidget::ungrabMouseEvent +344 QGraphicsWidget::grabKeyboardEvent +352 QGraphicsWidget::ungrabKeyboardEvent +360 QGraphicsProxyWidget::contextMenuEvent +368 QGraphicsProxyWidget::dragEnterEvent +376 QGraphicsProxyWidget::dragLeaveEvent +384 QGraphicsProxyWidget::dragMoveEvent +392 QGraphicsProxyWidget::dropEvent +400 QGraphicsProxyWidget::hoverEnterEvent +408 QGraphicsProxyWidget::mouseMoveEvent +416 QGraphicsProxyWidget::mousePressEvent +424 QGraphicsProxyWidget::mouseReleaseEvent +432 QGraphicsProxyWidget::mouseDoubleClickEvent +440 QGraphicsProxyWidget::wheelEvent +448 QGraphicsProxyWidget::keyPressEvent +456 QGraphicsProxyWidget::keyReleaseEvent +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI20QGraphicsProxyWidget) +480 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidgetD1Ev +488 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidgetD0Ev +496 QGraphicsItem::advance +504 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget12boundingRectEv +512 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget5shapeEv +520 QGraphicsItem::contains +528 QGraphicsItem::collidesWithItem +536 QGraphicsItem::collidesWithPath +544 QGraphicsItem::isObscuredBy +552 QGraphicsItem::opaqueArea +560 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget +568 QGraphicsProxyWidget::_ZThn16_NK20QGraphicsProxyWidget4typeEv +576 QGraphicsItem::sceneEventFilter +584 QGraphicsWidget::_ZThn16_N15QGraphicsWidget10sceneEventEP6QEvent +592 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget16contextMenuEventEP30QGraphicsSceneContextMenuEvent +600 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget14dragEnterEventEP27QGraphicsSceneDragDropEvent +608 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget14dragLeaveEventEP27QGraphicsSceneDragDropEvent +616 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget13dragMoveEventEP27QGraphicsSceneDragDropEvent +624 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget9dropEventEP27QGraphicsSceneDragDropEvent +632 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget12focusInEventEP11QFocusEvent +640 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget13focusOutEventEP11QFocusEvent +648 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget15hoverEnterEventEP24QGraphicsSceneHoverEvent +656 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget14hoverMoveEventEP24QGraphicsSceneHoverEvent +664 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget15hoverLeaveEventEP24QGraphicsSceneHoverEvent +672 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget13keyPressEventEP9QKeyEvent +680 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget15keyReleaseEventEP9QKeyEvent +688 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget15mousePressEventEP24QGraphicsSceneMouseEvent +696 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget14mouseMoveEventEP24QGraphicsSceneMouseEvent +704 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget17mouseReleaseEventEP24QGraphicsSceneMouseEvent +712 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget21mouseDoubleClickEventEP24QGraphicsSceneMouseEvent +720 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget10wheelEventEP24QGraphicsSceneWheelEvent +728 QGraphicsItem::inputMethodEvent +736 QGraphicsItem::inputMethodQuery +744 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget10itemChangeEN13QGraphicsItem18GraphicsItemChangeERK8QVariant +752 QGraphicsItem::supportsExtension +760 QGraphicsItem::setExtension +768 QGraphicsItem::extension +776 (int (*)(...))-0x00000000000000020 +784 (int (*)(...))(& _ZTI20QGraphicsProxyWidget) +792 QGraphicsProxyWidget::_ZThn32_N20QGraphicsProxyWidgetD1Ev +800 QGraphicsProxyWidget::_ZThn32_N20QGraphicsProxyWidgetD0Ev +808 QGraphicsProxyWidget::_ZThn32_N20QGraphicsProxyWidget11setGeometryERK6QRectF +816 QGraphicsWidget::_ZThn32_NK15QGraphicsWidget18getContentsMarginsEPdS0_S0_S0_ +824 QGraphicsWidget::_ZThn32_N15QGraphicsWidget14updateGeometryEv +832 QGraphicsProxyWidget::_ZThn32_NK20QGraphicsProxyWidget8sizeHintEN2Qt8SizeHintERK6QSizeF + +Class QGraphicsProxyWidget + size=48 align=8 + base size=48 base align=8 +QGraphicsProxyWidget (0x7fea1054b1c0) 0 + vptr=((& QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget) + 16u) + QGraphicsWidget (0x7fea1053bb80) 0 + primary-for QGraphicsProxyWidget (0x7fea1054b1c0) + QObject (0x7fea1054b230) 0 + primary-for QGraphicsWidget (0x7fea1053bb80) + QGraphicsItem (0x7fea1054b2a0) 16 + vptr=((& QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget) + 480u) + QGraphicsLayoutItem (0x7fea1054b310) 32 + vptr=((& QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget) + 792u) + +Vtable for QGraphicsSceneEvent +QGraphicsSceneEvent::_ZTV19QGraphicsSceneEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QGraphicsSceneEvent) +16 QGraphicsSceneEvent::~QGraphicsSceneEvent +24 QGraphicsSceneEvent::~QGraphicsSceneEvent + +Class QGraphicsSceneEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneEvent (0x7fea10577230) 0 + vptr=((& QGraphicsSceneEvent::_ZTV19QGraphicsSceneEvent) + 16u) + QEvent (0x7fea105772a0) 0 + primary-for QGraphicsSceneEvent (0x7fea10577230) + +Vtable for QGraphicsSceneMouseEvent +QGraphicsSceneMouseEvent::_ZTV24QGraphicsSceneMouseEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QGraphicsSceneMouseEvent) +16 QGraphicsSceneMouseEvent::~QGraphicsSceneMouseEvent +24 QGraphicsSceneMouseEvent::~QGraphicsSceneMouseEvent + +Class QGraphicsSceneMouseEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneMouseEvent (0x7fea10577b60) 0 + vptr=((& QGraphicsSceneMouseEvent::_ZTV24QGraphicsSceneMouseEvent) + 16u) + QGraphicsSceneEvent (0x7fea10577bd0) 0 + primary-for QGraphicsSceneMouseEvent (0x7fea10577b60) + QEvent (0x7fea10577c40) 0 + primary-for QGraphicsSceneEvent (0x7fea10577bd0) + +Vtable for QGraphicsSceneWheelEvent +QGraphicsSceneWheelEvent::_ZTV24QGraphicsSceneWheelEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QGraphicsSceneWheelEvent) +16 QGraphicsSceneWheelEvent::~QGraphicsSceneWheelEvent +24 QGraphicsSceneWheelEvent::~QGraphicsSceneWheelEvent + +Class QGraphicsSceneWheelEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneWheelEvent (0x7fea10589460) 0 + vptr=((& QGraphicsSceneWheelEvent::_ZTV24QGraphicsSceneWheelEvent) + 16u) + QGraphicsSceneEvent (0x7fea105894d0) 0 + primary-for QGraphicsSceneWheelEvent (0x7fea10589460) + QEvent (0x7fea10589540) 0 + primary-for QGraphicsSceneEvent (0x7fea105894d0) + +Vtable for QGraphicsSceneContextMenuEvent +QGraphicsSceneContextMenuEvent::_ZTV30QGraphicsSceneContextMenuEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI30QGraphicsSceneContextMenuEvent) +16 QGraphicsSceneContextMenuEvent::~QGraphicsSceneContextMenuEvent +24 QGraphicsSceneContextMenuEvent::~QGraphicsSceneContextMenuEvent + +Class QGraphicsSceneContextMenuEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneContextMenuEvent (0x7fea10589e00) 0 + vptr=((& QGraphicsSceneContextMenuEvent::_ZTV30QGraphicsSceneContextMenuEvent) + 16u) + QGraphicsSceneEvent (0x7fea10589e70) 0 + primary-for QGraphicsSceneContextMenuEvent (0x7fea10589e00) + QEvent (0x7fea10589ee0) 0 + primary-for QGraphicsSceneEvent (0x7fea10589e70) + +Vtable for QGraphicsSceneHoverEvent +QGraphicsSceneHoverEvent::_ZTV24QGraphicsSceneHoverEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QGraphicsSceneHoverEvent) +16 QGraphicsSceneHoverEvent::~QGraphicsSceneHoverEvent +24 QGraphicsSceneHoverEvent::~QGraphicsSceneHoverEvent + +Class QGraphicsSceneHoverEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneHoverEvent (0x7fea10596930) 0 + vptr=((& QGraphicsSceneHoverEvent::_ZTV24QGraphicsSceneHoverEvent) + 16u) + QGraphicsSceneEvent (0x7fea105969a0) 0 + primary-for QGraphicsSceneHoverEvent (0x7fea10596930) + QEvent (0x7fea10596a10) 0 + primary-for QGraphicsSceneEvent (0x7fea105969a0) + +Vtable for QGraphicsSceneHelpEvent +QGraphicsSceneHelpEvent::_ZTV23QGraphicsSceneHelpEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QGraphicsSceneHelpEvent) +16 QGraphicsSceneHelpEvent::~QGraphicsSceneHelpEvent +24 QGraphicsSceneHelpEvent::~QGraphicsSceneHelpEvent + +Class QGraphicsSceneHelpEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneHelpEvent (0x7fea105a9230) 0 + vptr=((& QGraphicsSceneHelpEvent::_ZTV23QGraphicsSceneHelpEvent) + 16u) + QGraphicsSceneEvent (0x7fea105a92a0) 0 + primary-for QGraphicsSceneHelpEvent (0x7fea105a9230) + QEvent (0x7fea105a9310) 0 + primary-for QGraphicsSceneEvent (0x7fea105a92a0) + +Vtable for QGraphicsSceneDragDropEvent +QGraphicsSceneDragDropEvent::_ZTV27QGraphicsSceneDragDropEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QGraphicsSceneDragDropEvent) +16 QGraphicsSceneDragDropEvent::~QGraphicsSceneDragDropEvent +24 QGraphicsSceneDragDropEvent::~QGraphicsSceneDragDropEvent + +Class QGraphicsSceneDragDropEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneDragDropEvent (0x7fea105a9bd0) 0 + vptr=((& QGraphicsSceneDragDropEvent::_ZTV27QGraphicsSceneDragDropEvent) + 16u) + QGraphicsSceneEvent (0x7fea105a9c40) 0 + primary-for QGraphicsSceneDragDropEvent (0x7fea105a9bd0) + QEvent (0x7fea105a9cb0) 0 + primary-for QGraphicsSceneEvent (0x7fea105a9c40) + +Vtable for QGraphicsSceneResizeEvent +QGraphicsSceneResizeEvent::_ZTV25QGraphicsSceneResizeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QGraphicsSceneResizeEvent) +16 QGraphicsSceneResizeEvent::~QGraphicsSceneResizeEvent +24 QGraphicsSceneResizeEvent::~QGraphicsSceneResizeEvent + +Class QGraphicsSceneResizeEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneResizeEvent (0x7fea105b94d0) 0 + vptr=((& QGraphicsSceneResizeEvent::_ZTV25QGraphicsSceneResizeEvent) + 16u) + QGraphicsSceneEvent (0x7fea105b9540) 0 + primary-for QGraphicsSceneResizeEvent (0x7fea105b94d0) + QEvent (0x7fea105b95b0) 0 + primary-for QGraphicsSceneEvent (0x7fea105b9540) + +Vtable for QGraphicsSceneMoveEvent +QGraphicsSceneMoveEvent::_ZTV23QGraphicsSceneMoveEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QGraphicsSceneMoveEvent) +16 QGraphicsSceneMoveEvent::~QGraphicsSceneMoveEvent +24 QGraphicsSceneMoveEvent::~QGraphicsSceneMoveEvent + +Class QGraphicsSceneMoveEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneMoveEvent (0x7fea105b9cb0) 0 + vptr=((& QGraphicsSceneMoveEvent::_ZTV23QGraphicsSceneMoveEvent) + 16u) + QGraphicsSceneEvent (0x7fea105b9d20) 0 + primary-for QGraphicsSceneMoveEvent (0x7fea105b9cb0) + QEvent (0x7fea105b9d90) 0 + primary-for QGraphicsSceneEvent (0x7fea105b9d20) + +Vtable for QGraphicsItemAnimation +QGraphicsItemAnimation::_ZTV22QGraphicsItemAnimation: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QGraphicsItemAnimation) +16 QGraphicsItemAnimation::metaObject +24 QGraphicsItemAnimation::qt_metacast +32 QGraphicsItemAnimation::qt_metacall +40 QGraphicsItemAnimation::~QGraphicsItemAnimation +48 QGraphicsItemAnimation::~QGraphicsItemAnimation +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsItemAnimation::beforeAnimationStep +120 QGraphicsItemAnimation::afterAnimationStep + +Class QGraphicsItemAnimation + size=24 align=8 + base size=24 base align=8 +QGraphicsItemAnimation (0x7fea105c83f0) 0 + vptr=((& QGraphicsItemAnimation::_ZTV22QGraphicsItemAnimation) + 16u) + QObject (0x7fea105c8460) 0 + primary-for QGraphicsItemAnimation (0x7fea105c83f0) + +Vtable for QGraphicsGridLayout +QGraphicsGridLayout::_ZTV19QGraphicsGridLayout: 13u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QGraphicsGridLayout) +16 QGraphicsGridLayout::~QGraphicsGridLayout +24 QGraphicsGridLayout::~QGraphicsGridLayout +32 QGraphicsGridLayout::setGeometry +40 QGraphicsLayout::getContentsMargins +48 QGraphicsLayout::updateGeometry +56 QGraphicsGridLayout::sizeHint +64 QGraphicsGridLayout::invalidate +72 QGraphicsLayout::widgetEvent +80 QGraphicsGridLayout::count +88 QGraphicsGridLayout::itemAt +96 QGraphicsGridLayout::removeAt + +Class QGraphicsGridLayout + size=16 align=8 + base size=16 base align=8 +QGraphicsGridLayout (0x7fea105e2770) 0 + vptr=((& QGraphicsGridLayout::_ZTV19QGraphicsGridLayout) + 16u) + QGraphicsLayout (0x7fea105e27e0) 0 + primary-for QGraphicsGridLayout (0x7fea105e2770) + QGraphicsLayoutItem (0x7fea105e2850) 0 + primary-for QGraphicsLayout (0x7fea105e27e0) + +Vtable for QAbstractButton +QAbstractButton::_ZTV15QAbstractButton: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QAbstractButton) +16 QAbstractButton::metaObject +24 QAbstractButton::qt_metacast +32 QAbstractButton::qt_metacall +40 QAbstractButton::~QAbstractButton +48 QAbstractButton::~QAbstractButton +56 QAbstractButton::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QAbstractButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QAbstractButton::focusInEvent +224 QAbstractButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 __cxa_pure_virtual +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractButton::hitButton +456 QAbstractButton::checkStateSet +464 QAbstractButton::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI15QAbstractButton) +488 QAbstractButton::_ZThn16_N15QAbstractButtonD1Ev +496 QAbstractButton::_ZThn16_N15QAbstractButtonD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractButton + size=40 align=8 + base size=40 base align=8 +QAbstractButton (0x7fea103fbbd0) 0 + vptr=((& QAbstractButton::_ZTV15QAbstractButton) + 16u) + QWidget (0x7fea105df800) 0 + primary-for QAbstractButton (0x7fea103fbbd0) + QObject (0x7fea103fbc40) 0 + primary-for QWidget (0x7fea105df800) + QPaintDevice (0x7fea103fbcb0) 16 + vptr=((& QAbstractButton::_ZTV15QAbstractButton) + 488u) + +Vtable for QCheckBox +QCheckBox::_ZTV9QCheckBox: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QCheckBox) +16 QCheckBox::metaObject +24 QCheckBox::qt_metacast +32 QCheckBox::qt_metacall +40 QCheckBox::~QCheckBox +48 QCheckBox::~QCheckBox +56 QCheckBox::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QCheckBox::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QCheckBox::mouseMoveEvent +192 QWidget::wheelEvent +200 QAbstractButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QAbstractButton::focusInEvent +224 QAbstractButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QCheckBox::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QCheckBox::hitButton +456 QCheckBox::checkStateSet +464 QCheckBox::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI9QCheckBox) +488 QCheckBox::_ZThn16_N9QCheckBoxD1Ev +496 QCheckBox::_ZThn16_N9QCheckBoxD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QCheckBox + size=40 align=8 + base size=40 base align=8 +QCheckBox (0x7fea1042ff50) 0 + vptr=((& QCheckBox::_ZTV9QCheckBox) + 16u) + QAbstractButton (0x7fea10437000) 0 + primary-for QCheckBox (0x7fea1042ff50) + QWidget (0x7fea10438000) 0 + primary-for QAbstractButton (0x7fea10437000) + QObject (0x7fea10437070) 0 + primary-for QWidget (0x7fea10438000) + QPaintDevice (0x7fea104370e0) 16 + vptr=((& QCheckBox::_ZTV9QCheckBox) + 488u) + +Vtable for QMenu +QMenu::_ZTV5QMenu: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QMenu) +16 QMenu::metaObject +24 QMenu::qt_metacast +32 QMenu::qt_metacall +40 QMenu::~QMenu +48 QMenu::~QMenu +56 QMenu::event +64 QObject::eventFilter +72 QMenu::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QMenu::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QMenu::mousePressEvent +168 QMenu::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QMenu::mouseMoveEvent +192 QMenu::wheelEvent +200 QMenu::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QMenu::enterEvent +240 QMenu::leaveEvent +248 QMenu::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QMenu::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QMenu::hideEvent +352 QWidget::x11Event +360 QMenu::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QMenu::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI5QMenu) +464 QMenu::_ZThn16_N5QMenuD1Ev +472 QMenu::_ZThn16_N5QMenuD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMenu + size=40 align=8 + base size=40 base align=8 +QMenu (0x7fea10456770) 0 + vptr=((& QMenu::_ZTV5QMenu) + 16u) + QWidget (0x7fea10438f00) 0 + primary-for QMenu (0x7fea10456770) + QObject (0x7fea104567e0) 0 + primary-for QWidget (0x7fea10438f00) + QPaintDevice (0x7fea10456850) 16 + vptr=((& QMenu::_ZTV5QMenu) + 464u) + +Vtable for QPrintPreviewWidget +QPrintPreviewWidget::_ZTV19QPrintPreviewWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QPrintPreviewWidget) +16 QPrintPreviewWidget::metaObject +24 QPrintPreviewWidget::qt_metacast +32 QPrintPreviewWidget::qt_metacall +40 QPrintPreviewWidget::~QPrintPreviewWidget +48 QPrintPreviewWidget::~QPrintPreviewWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QPrintPreviewWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI19QPrintPreviewWidget) +464 QPrintPreviewWidget::_ZThn16_N19QPrintPreviewWidgetD1Ev +472 QPrintPreviewWidget::_ZThn16_N19QPrintPreviewWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPrintPreviewWidget + size=48 align=8 + base size=48 base align=8 +QPrintPreviewWidget (0x7fea102ff5b0) 0 + vptr=((& QPrintPreviewWidget::_ZTV19QPrintPreviewWidget) + 16u) + QWidget (0x7fea102fd680) 0 + primary-for QPrintPreviewWidget (0x7fea102ff5b0) + QObject (0x7fea102ff620) 0 + primary-for QWidget (0x7fea102fd680) + QPaintDevice (0x7fea102ff690) 16 + vptr=((& QPrintPreviewWidget::_ZTV19QPrintPreviewWidget) + 464u) + +Vtable for QWorkspace +QWorkspace::_ZTV10QWorkspace: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QWorkspace) +16 QWorkspace::metaObject +24 QWorkspace::qt_metacast +32 QWorkspace::qt_metacall +40 QWorkspace::~QWorkspace +48 QWorkspace::~QWorkspace +56 QWorkspace::event +64 QWorkspace::eventFilter +72 QObject::timerEvent +80 QWorkspace::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWorkspace::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWorkspace::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWorkspace::paintEvent +256 QWidget::moveEvent +264 QWorkspace::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWorkspace::showEvent +344 QWorkspace::hideEvent +352 QWidget::x11Event +360 QWorkspace::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI10QWorkspace) +464 QWorkspace::_ZThn16_N10QWorkspaceD1Ev +472 QWorkspace::_ZThn16_N10QWorkspaceD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWorkspace + size=40 align=8 + base size=40 base align=8 +QWorkspace (0x7fea10323070) 0 + vptr=((& QWorkspace::_ZTV10QWorkspace) + 16u) + QWidget (0x7fea1031f280) 0 + primary-for QWorkspace (0x7fea10323070) + QObject (0x7fea103230e0) 0 + primary-for QWidget (0x7fea1031f280) + QPaintDevice (0x7fea10323150) 16 + vptr=((& QWorkspace::_ZTV10QWorkspace) + 464u) + +Vtable for QButtonGroup +QButtonGroup::_ZTV12QButtonGroup: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QButtonGroup) +16 QButtonGroup::metaObject +24 QButtonGroup::qt_metacast +32 QButtonGroup::qt_metacall +40 QButtonGroup::~QButtonGroup +48 QButtonGroup::~QButtonGroup +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QButtonGroup + size=16 align=8 + base size=16 base align=8 +QButtonGroup (0x7fea10345150) 0 + vptr=((& QButtonGroup::_ZTV12QButtonGroup) + 16u) + QObject (0x7fea103451c0) 0 + primary-for QButtonGroup (0x7fea10345150) + +Vtable for QSpinBox +QSpinBox::_ZTV8QSpinBox: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QSpinBox) +16 QSpinBox::metaObject +24 QSpinBox::qt_metacast +32 QSpinBox::qt_metacall +40 QSpinBox::~QSpinBox +48 QSpinBox::~QSpinBox +56 QSpinBox::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractSpinBox::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractSpinBox::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QAbstractSpinBox::wheelEvent +200 QAbstractSpinBox::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QAbstractSpinBox::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractSpinBox::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QSpinBox::validate +456 QSpinBox::fixup +464 QAbstractSpinBox::stepBy +472 QAbstractSpinBox::clear +480 QAbstractSpinBox::stepEnabled +488 QSpinBox::valueFromText +496 QSpinBox::textFromValue +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI8QSpinBox) +520 QSpinBox::_ZThn16_N8QSpinBoxD1Ev +528 QSpinBox::_ZThn16_N8QSpinBoxD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSpinBox + size=40 align=8 + base size=40 base align=8 +QSpinBox (0x7fea1035ad90) 0 + vptr=((& QSpinBox::_ZTV8QSpinBox) + 16u) + QAbstractSpinBox (0x7fea1035ae00) 0 + primary-for QSpinBox (0x7fea1035ad90) + QWidget (0x7fea10357800) 0 + primary-for QAbstractSpinBox (0x7fea1035ae00) + QObject (0x7fea1035ae70) 0 + primary-for QWidget (0x7fea10357800) + QPaintDevice (0x7fea1035aee0) 16 + vptr=((& QSpinBox::_ZTV8QSpinBox) + 520u) + +Vtable for QDoubleSpinBox +QDoubleSpinBox::_ZTV14QDoubleSpinBox: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QDoubleSpinBox) +16 QDoubleSpinBox::metaObject +24 QDoubleSpinBox::qt_metacast +32 QDoubleSpinBox::qt_metacall +40 QDoubleSpinBox::~QDoubleSpinBox +48 QDoubleSpinBox::~QDoubleSpinBox +56 QAbstractSpinBox::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractSpinBox::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractSpinBox::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QAbstractSpinBox::wheelEvent +200 QAbstractSpinBox::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QAbstractSpinBox::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractSpinBox::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDoubleSpinBox::validate +456 QDoubleSpinBox::fixup +464 QAbstractSpinBox::stepBy +472 QAbstractSpinBox::clear +480 QAbstractSpinBox::stepEnabled +488 QDoubleSpinBox::valueFromText +496 QDoubleSpinBox::textFromValue +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI14QDoubleSpinBox) +520 QDoubleSpinBox::_ZThn16_N14QDoubleSpinBoxD1Ev +528 QDoubleSpinBox::_ZThn16_N14QDoubleSpinBoxD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDoubleSpinBox + size=40 align=8 + base size=40 base align=8 +QDoubleSpinBox (0x7fea10382700) 0 + vptr=((& QDoubleSpinBox::_ZTV14QDoubleSpinBox) + 16u) + QAbstractSpinBox (0x7fea10382770) 0 + primary-for QDoubleSpinBox (0x7fea10382700) + QWidget (0x7fea10381880) 0 + primary-for QAbstractSpinBox (0x7fea10382770) + QObject (0x7fea103827e0) 0 + primary-for QWidget (0x7fea10381880) + QPaintDevice (0x7fea10382850) 16 + vptr=((& QDoubleSpinBox::_ZTV14QDoubleSpinBox) + 520u) + +Vtable for QLCDNumber +QLCDNumber::_ZTV10QLCDNumber: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QLCDNumber) +16 QLCDNumber::metaObject +24 QLCDNumber::qt_metacast +32 QLCDNumber::qt_metacall +40 QLCDNumber::~QLCDNumber +48 QLCDNumber::~QLCDNumber +56 QLCDNumber::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QLCDNumber::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QLCDNumber::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI10QLCDNumber) +464 QLCDNumber::_ZThn16_N10QLCDNumberD1Ev +472 QLCDNumber::_ZThn16_N10QLCDNumberD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QLCDNumber + size=40 align=8 + base size=40 base align=8 +QLCDNumber (0x7fea103a51c0) 0 + vptr=((& QLCDNumber::_ZTV10QLCDNumber) + 16u) + QFrame (0x7fea103a5230) 0 + primary-for QLCDNumber (0x7fea103a51c0) + QWidget (0x7fea103a4180) 0 + primary-for QFrame (0x7fea103a5230) + QObject (0x7fea103a52a0) 0 + primary-for QWidget (0x7fea103a4180) + QPaintDevice (0x7fea103a5310) 16 + vptr=((& QLCDNumber::_ZTV10QLCDNumber) + 464u) + +Vtable for QStackedWidget +QStackedWidget::_ZTV14QStackedWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QStackedWidget) +16 QStackedWidget::metaObject +24 QStackedWidget::qt_metacast +32 QStackedWidget::qt_metacall +40 QStackedWidget::~QStackedWidget +48 QStackedWidget::~QStackedWidget +56 QStackedWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QFrame::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFrame::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI14QStackedWidget) +464 QStackedWidget::_ZThn16_N14QStackedWidgetD1Ev +472 QStackedWidget::_ZThn16_N14QStackedWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QStackedWidget + size=40 align=8 + base size=40 base align=8 +QStackedWidget (0x7fea103c8d20) 0 + vptr=((& QStackedWidget::_ZTV14QStackedWidget) + 16u) + QFrame (0x7fea103c8d90) 0 + primary-for QStackedWidget (0x7fea103c8d20) + QWidget (0x7fea103cb200) 0 + primary-for QFrame (0x7fea103c8d90) + QObject (0x7fea103c8e00) 0 + primary-for QWidget (0x7fea103cb200) + QPaintDevice (0x7fea103c8e70) 16 + vptr=((& QStackedWidget::_ZTV14QStackedWidget) + 464u) + +Vtable for QMdiArea +QMdiArea::_ZTV8QMdiArea: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QMdiArea) +16 QMdiArea::metaObject +24 QMdiArea::qt_metacast +32 QMdiArea::qt_metacall +40 QMdiArea::~QMdiArea +48 QMdiArea::~QMdiArea +56 QMdiArea::event +64 QMdiArea::eventFilter +72 QMdiArea::timerEvent +80 QMdiArea::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QMdiArea::sizeHint +136 QMdiArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractScrollArea::mousePressEvent +168 QAbstractScrollArea::mouseReleaseEvent +176 QAbstractScrollArea::mouseDoubleClickEvent +184 QAbstractScrollArea::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractScrollArea::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QMdiArea::paintEvent +256 QWidget::moveEvent +264 QMdiArea::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractScrollArea::dragEnterEvent +312 QAbstractScrollArea::dragMoveEvent +320 QAbstractScrollArea::dragLeaveEvent +328 QAbstractScrollArea::dropEvent +336 QMdiArea::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QMdiArea::viewportEvent +456 QMdiArea::scrollContentsBy +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI8QMdiArea) +480 QMdiArea::_ZThn16_N8QMdiAreaD1Ev +488 QMdiArea::_ZThn16_N8QMdiAreaD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMdiArea + size=40 align=8 + base size=40 base align=8 +QMdiArea (0x7fea103e2bd0) 0 + vptr=((& QMdiArea::_ZTV8QMdiArea) + 16u) + QAbstractScrollArea (0x7fea103e2c40) 0 + primary-for QMdiArea (0x7fea103e2bd0) + QFrame (0x7fea103e2cb0) 0 + primary-for QAbstractScrollArea (0x7fea103e2c40) + QWidget (0x7fea103cbb00) 0 + primary-for QFrame (0x7fea103e2cb0) + QObject (0x7fea103e2d20) 0 + primary-for QWidget (0x7fea103cbb00) + QPaintDevice (0x7fea103e2d90) 16 + vptr=((& QMdiArea::_ZTV8QMdiArea) + 480u) + +Vtable for QPushButton +QPushButton::_ZTV11QPushButton: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QPushButton) +16 QPushButton::metaObject +24 QPushButton::qt_metacast +32 QPushButton::qt_metacall +40 QPushButton::~QPushButton +48 QPushButton::~QPushButton +56 QPushButton::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QPushButton::sizeHint +136 QPushButton::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QPushButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QPushButton::focusInEvent +224 QPushButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QPushButton::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractButton::hitButton +456 QAbstractButton::checkStateSet +464 QAbstractButton::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11QPushButton) +488 QPushButton::_ZThn16_N11QPushButtonD1Ev +496 QPushButton::_ZThn16_N11QPushButtonD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPushButton + size=40 align=8 + base size=40 base align=8 +QPushButton (0x7fea10256150) 0 + vptr=((& QPushButton::_ZTV11QPushButton) + 16u) + QAbstractButton (0x7fea102561c0) 0 + primary-for QPushButton (0x7fea10256150) + QWidget (0x7fea10207d00) 0 + primary-for QAbstractButton (0x7fea102561c0) + QObject (0x7fea10256230) 0 + primary-for QWidget (0x7fea10207d00) + QPaintDevice (0x7fea102562a0) 16 + vptr=((& QPushButton::_ZTV11QPushButton) + 488u) + +Vtable for QMdiSubWindow +QMdiSubWindow::_ZTV13QMdiSubWindow: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QMdiSubWindow) +16 QMdiSubWindow::metaObject +24 QMdiSubWindow::qt_metacast +32 QMdiSubWindow::qt_metacall +40 QMdiSubWindow::~QMdiSubWindow +48 QMdiSubWindow::~QMdiSubWindow +56 QMdiSubWindow::event +64 QMdiSubWindow::eventFilter +72 QMdiSubWindow::timerEvent +80 QMdiSubWindow::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QMdiSubWindow::sizeHint +136 QMdiSubWindow::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QMdiSubWindow::mousePressEvent +168 QMdiSubWindow::mouseReleaseEvent +176 QMdiSubWindow::mouseDoubleClickEvent +184 QMdiSubWindow::mouseMoveEvent +192 QWidget::wheelEvent +200 QMdiSubWindow::keyPressEvent +208 QWidget::keyReleaseEvent +216 QMdiSubWindow::focusInEvent +224 QMdiSubWindow::focusOutEvent +232 QWidget::enterEvent +240 QMdiSubWindow::leaveEvent +248 QMdiSubWindow::paintEvent +256 QMdiSubWindow::moveEvent +264 QMdiSubWindow::resizeEvent +272 QMdiSubWindow::closeEvent +280 QMdiSubWindow::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QMdiSubWindow::showEvent +344 QMdiSubWindow::hideEvent +352 QWidget::x11Event +360 QMdiSubWindow::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI13QMdiSubWindow) +464 QMdiSubWindow::_ZThn16_N13QMdiSubWindowD1Ev +472 QMdiSubWindow::_ZThn16_N13QMdiSubWindowD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMdiSubWindow + size=40 align=8 + base size=40 base align=8 +QMdiSubWindow (0x7fea1027aa80) 0 + vptr=((& QMdiSubWindow::_ZTV13QMdiSubWindow) + 16u) + QWidget (0x7fea10272c00) 0 + primary-for QMdiSubWindow (0x7fea1027aa80) + QObject (0x7fea1027aaf0) 0 + primary-for QWidget (0x7fea10272c00) + QPaintDevice (0x7fea1027ab60) 16 + vptr=((& QMdiSubWindow::_ZTV13QMdiSubWindow) + 464u) + +Vtable for QSplashScreen +QSplashScreen::_ZTV13QSplashScreen: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSplashScreen) +16 QSplashScreen::metaObject +24 QSplashScreen::qt_metacast +32 QSplashScreen::qt_metacall +40 QSplashScreen::~QSplashScreen +48 QSplashScreen::~QSplashScreen +56 QSplashScreen::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QSplashScreen::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QSplashScreen::drawContents +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI13QSplashScreen) +472 QSplashScreen::_ZThn16_N13QSplashScreenD1Ev +480 QSplashScreen::_ZThn16_N13QSplashScreenD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSplashScreen + size=40 align=8 + base size=40 base align=8 +QSplashScreen (0x7fea102ce930) 0 + vptr=((& QSplashScreen::_ZTV13QSplashScreen) + 16u) + QWidget (0x7fea1029cd00) 0 + primary-for QSplashScreen (0x7fea102ce930) + QObject (0x7fea102ce9a0) 0 + primary-for QWidget (0x7fea1029cd00) + QPaintDevice (0x7fea102cea10) 16 + vptr=((& QSplashScreen::_ZTV13QSplashScreen) + 472u) + +Vtable for QDateTimeEdit +QDateTimeEdit::_ZTV13QDateTimeEdit: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QDateTimeEdit) +16 QDateTimeEdit::metaObject +24 QDateTimeEdit::qt_metacast +32 QDateTimeEdit::qt_metacall +40 QDateTimeEdit::~QDateTimeEdit +48 QDateTimeEdit::~QDateTimeEdit +56 QDateTimeEdit::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QDateTimeEdit::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QDateTimeEdit::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QDateTimeEdit::wheelEvent +200 QDateTimeEdit::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QDateTimeEdit::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QDateTimeEdit::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QDateTimeEdit::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDateTimeEdit::validate +456 QDateTimeEdit::fixup +464 QDateTimeEdit::stepBy +472 QDateTimeEdit::clear +480 QDateTimeEdit::stepEnabled +488 QDateTimeEdit::dateTimeFromText +496 QDateTimeEdit::textFromDateTime +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI13QDateTimeEdit) +520 QDateTimeEdit::_ZThn16_N13QDateTimeEditD1Ev +528 QDateTimeEdit::_ZThn16_N13QDateTimeEditD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDateTimeEdit + size=40 align=8 + base size=40 base align=8 +QDateTimeEdit (0x7fea1010aa10) 0 + vptr=((& QDateTimeEdit::_ZTV13QDateTimeEdit) + 16u) + QAbstractSpinBox (0x7fea1010aa80) 0 + primary-for QDateTimeEdit (0x7fea1010aa10) + QWidget (0x7fea10104880) 0 + primary-for QAbstractSpinBox (0x7fea1010aa80) + QObject (0x7fea1010aaf0) 0 + primary-for QWidget (0x7fea10104880) + QPaintDevice (0x7fea1010ab60) 16 + vptr=((& QDateTimeEdit::_ZTV13QDateTimeEdit) + 520u) + +Vtable for QTimeEdit +QTimeEdit::_ZTV9QTimeEdit: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTimeEdit) +16 QTimeEdit::metaObject +24 QTimeEdit::qt_metacast +32 QTimeEdit::qt_metacall +40 QTimeEdit::~QTimeEdit +48 QTimeEdit::~QTimeEdit +56 QDateTimeEdit::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QDateTimeEdit::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QDateTimeEdit::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QDateTimeEdit::wheelEvent +200 QDateTimeEdit::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QDateTimeEdit::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QDateTimeEdit::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QDateTimeEdit::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDateTimeEdit::validate +456 QDateTimeEdit::fixup +464 QDateTimeEdit::stepBy +472 QDateTimeEdit::clear +480 QDateTimeEdit::stepEnabled +488 QDateTimeEdit::dateTimeFromText +496 QDateTimeEdit::textFromDateTime +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI9QTimeEdit) +520 QTimeEdit::_ZThn16_N9QTimeEditD1Ev +528 QTimeEdit::_ZThn16_N9QTimeEditD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTimeEdit + size=40 align=8 + base size=40 base align=8 +QTimeEdit (0x7fea1013a930) 0 + vptr=((& QTimeEdit::_ZTV9QTimeEdit) + 16u) + QDateTimeEdit (0x7fea1013a9a0) 0 + primary-for QTimeEdit (0x7fea1013a930) + QAbstractSpinBox (0x7fea1013aa10) 0 + primary-for QDateTimeEdit (0x7fea1013a9a0) + QWidget (0x7fea10131700) 0 + primary-for QAbstractSpinBox (0x7fea1013aa10) + QObject (0x7fea1013aa80) 0 + primary-for QWidget (0x7fea10131700) + QPaintDevice (0x7fea1013aaf0) 16 + vptr=((& QTimeEdit::_ZTV9QTimeEdit) + 520u) + +Vtable for QDateEdit +QDateEdit::_ZTV9QDateEdit: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QDateEdit) +16 QDateEdit::metaObject +24 QDateEdit::qt_metacast +32 QDateEdit::qt_metacall +40 QDateEdit::~QDateEdit +48 QDateEdit::~QDateEdit +56 QDateTimeEdit::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QDateTimeEdit::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QDateTimeEdit::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QDateTimeEdit::wheelEvent +200 QDateTimeEdit::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QDateTimeEdit::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QDateTimeEdit::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QDateTimeEdit::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDateTimeEdit::validate +456 QDateTimeEdit::fixup +464 QDateTimeEdit::stepBy +472 QDateTimeEdit::clear +480 QDateTimeEdit::stepEnabled +488 QDateTimeEdit::dateTimeFromText +496 QDateTimeEdit::textFromDateTime +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI9QDateEdit) +520 QDateEdit::_ZThn16_N9QDateEditD1Ev +528 QDateEdit::_ZThn16_N9QDateEditD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDateEdit + size=40 align=8 + base size=40 base align=8 +QDateEdit (0x7fea1014ba10) 0 + vptr=((& QDateEdit::_ZTV9QDateEdit) + 16u) + QDateTimeEdit (0x7fea1014ba80) 0 + primary-for QDateEdit (0x7fea1014ba10) + QAbstractSpinBox (0x7fea1014baf0) 0 + primary-for QDateTimeEdit (0x7fea1014ba80) + QWidget (0x7fea10131e00) 0 + primary-for QAbstractSpinBox (0x7fea1014baf0) + QObject (0x7fea1014bb60) 0 + primary-for QWidget (0x7fea10131e00) + QPaintDevice (0x7fea1014bbd0) 16 + vptr=((& QDateEdit::_ZTV9QDateEdit) + 520u) + +Vtable for QLabel +QLabel::_ZTV6QLabel: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QLabel) +16 QLabel::metaObject +24 QLabel::qt_metacast +32 QLabel::qt_metacall +40 QLabel::~QLabel +48 QLabel::~QLabel +56 QLabel::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QLabel::sizeHint +136 QLabel::minimumSizeHint +144 QLabel::heightForWidth +152 QWidget::paintEngine +160 QLabel::mousePressEvent +168 QLabel::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QLabel::mouseMoveEvent +192 QWidget::wheelEvent +200 QLabel::keyPressEvent +208 QWidget::keyReleaseEvent +216 QLabel::focusInEvent +224 QLabel::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QLabel::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QLabel::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QLabel::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QLabel::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI6QLabel) +464 QLabel::_ZThn16_N6QLabelD1Ev +472 QLabel::_ZThn16_N6QLabelD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QLabel + size=40 align=8 + base size=40 base align=8 +QLabel (0x7fea101917e0) 0 + vptr=((& QLabel::_ZTV6QLabel) + 16u) + QFrame (0x7fea10191850) 0 + primary-for QLabel (0x7fea101917e0) + QWidget (0x7fea1015fa80) 0 + primary-for QFrame (0x7fea10191850) + QObject (0x7fea101918c0) 0 + primary-for QWidget (0x7fea1015fa80) + QPaintDevice (0x7fea10191930) 16 + vptr=((& QLabel::_ZTV6QLabel) + 464u) + +Vtable for QDockWidget +QDockWidget::_ZTV11QDockWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QDockWidget) +16 QDockWidget::metaObject +24 QDockWidget::qt_metacast +32 QDockWidget::qt_metacall +40 QDockWidget::~QDockWidget +48 QDockWidget::~QDockWidget +56 QDockWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QDockWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QDockWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QDockWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI11QDockWidget) +464 QDockWidget::_ZThn16_N11QDockWidgetD1Ev +472 QDockWidget::_ZThn16_N11QDockWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDockWidget + size=40 align=8 + base size=40 base align=8 +QDockWidget (0x7fea101da930) 0 + vptr=((& QDockWidget::_ZTV11QDockWidget) + 16u) + QWidget (0x7fea101d6580) 0 + primary-for QDockWidget (0x7fea101da930) + QObject (0x7fea101da9a0) 0 + primary-for QWidget (0x7fea101d6580) + QPaintDevice (0x7fea101daa10) 16 + vptr=((& QDockWidget::_ZTV11QDockWidget) + 464u) + +Vtable for QGroupBox +QGroupBox::_ZTV9QGroupBox: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QGroupBox) +16 QGroupBox::metaObject +24 QGroupBox::qt_metacast +32 QGroupBox::qt_metacall +40 QGroupBox::~QGroupBox +48 QGroupBox::~QGroupBox +56 QGroupBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QGroupBox::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QGroupBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QGroupBox::mousePressEvent +168 QGroupBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QGroupBox::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QGroupBox::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QGroupBox::paintEvent +256 QWidget::moveEvent +264 QGroupBox::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QGroupBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI9QGroupBox) +464 QGroupBox::_ZThn16_N9QGroupBoxD1Ev +472 QGroupBox::_ZThn16_N9QGroupBoxD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QGroupBox + size=40 align=8 + base size=40 base align=8 +QGroupBox (0x7fea10055380) 0 + vptr=((& QGroupBox::_ZTV9QGroupBox) + 16u) + QWidget (0x7fea0fffdc80) 0 + primary-for QGroupBox (0x7fea10055380) + QObject (0x7fea100553f0) 0 + primary-for QWidget (0x7fea0fffdc80) + QPaintDevice (0x7fea10055460) 16 + vptr=((& QGroupBox::_ZTV9QGroupBox) + 464u) + +Vtable for QDialogButtonBox +QDialogButtonBox::_ZTV16QDialogButtonBox: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QDialogButtonBox) +16 QDialogButtonBox::metaObject +24 QDialogButtonBox::qt_metacast +32 QDialogButtonBox::qt_metacall +40 QDialogButtonBox::~QDialogButtonBox +48 QDialogButtonBox::~QDialogButtonBox +56 QDialogButtonBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QDialogButtonBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI16QDialogButtonBox) +464 QDialogButtonBox::_ZThn16_N16QDialogButtonBoxD1Ev +472 QDialogButtonBox::_ZThn16_N16QDialogButtonBoxD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDialogButtonBox + size=40 align=8 + base size=40 base align=8 +QDialogButtonBox (0x7fea10078000) 0 + vptr=((& QDialogButtonBox::_ZTV16QDialogButtonBox) + 16u) + QWidget (0x7fea1006f580) 0 + primary-for QDialogButtonBox (0x7fea10078000) + QObject (0x7fea10078070) 0 + primary-for QWidget (0x7fea1006f580) + QPaintDevice (0x7fea100780e0) 16 + vptr=((& QDialogButtonBox::_ZTV16QDialogButtonBox) + 464u) + +Vtable for QMainWindow +QMainWindow::_ZTV11QMainWindow: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMainWindow) +16 QMainWindow::metaObject +24 QMainWindow::qt_metacast +32 QMainWindow::qt_metacall +40 QMainWindow::~QMainWindow +48 QMainWindow::~QMainWindow +56 QMainWindow::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QMainWindow::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QMainWindow::createPopupMenu +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI11QMainWindow) +472 QMainWindow::_ZThn16_N11QMainWindowD1Ev +480 QMainWindow::_ZThn16_N11QMainWindowD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMainWindow + size=40 align=8 + base size=40 base align=8 +QMainWindow (0x7fea100e94d0) 0 + vptr=((& QMainWindow::_ZTV11QMainWindow) + 16u) + QWidget (0x7fea100a0600) 0 + primary-for QMainWindow (0x7fea100e94d0) + QObject (0x7fea100e9540) 0 + primary-for QWidget (0x7fea100a0600) + QPaintDevice (0x7fea100e95b0) 16 + vptr=((& QMainWindow::_ZTV11QMainWindow) + 472u) + +Class QTextEdit::ExtraSelection + size=24 align=8 + base size=24 base align=8 +QTextEdit::ExtraSelection (0x7fea0ff6c770) 0 + +Vtable for QTextEdit +QTextEdit::_ZTV9QTextEdit: 69u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTextEdit) +16 QTextEdit::metaObject +24 QTextEdit::qt_metacast +32 QTextEdit::qt_metacall +40 QTextEdit::~QTextEdit +48 QTextEdit::~QTextEdit +56 QTextEdit::event +64 QObject::eventFilter +72 QTextEdit::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTextEdit::mousePressEvent +168 QTextEdit::mouseReleaseEvent +176 QTextEdit::mouseDoubleClickEvent +184 QTextEdit::mouseMoveEvent +192 QTextEdit::wheelEvent +200 QTextEdit::keyPressEvent +208 QTextEdit::keyReleaseEvent +216 QTextEdit::focusInEvent +224 QTextEdit::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTextEdit::paintEvent +256 QWidget::moveEvent +264 QTextEdit::resizeEvent +272 QWidget::closeEvent +280 QTextEdit::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QTextEdit::dragEnterEvent +312 QTextEdit::dragMoveEvent +320 QTextEdit::dragLeaveEvent +328 QTextEdit::dropEvent +336 QTextEdit::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QTextEdit::changeEvent +368 QWidget::metric +376 QTextEdit::inputMethodEvent +384 QTextEdit::inputMethodQuery +392 QTextEdit::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QTextEdit::scrollContentsBy +464 QTextEdit::loadResource +472 QTextEdit::createMimeDataFromSelection +480 QTextEdit::canInsertFromMimeData +488 QTextEdit::insertFromMimeData +496 (int (*)(...))-0x00000000000000010 +504 (int (*)(...))(& _ZTI9QTextEdit) +512 QTextEdit::_ZThn16_N9QTextEditD1Ev +520 QTextEdit::_ZThn16_N9QTextEditD0Ev +528 QWidget::_ZThn16_NK7QWidget7devTypeEv +536 QWidget::_ZThn16_NK7QWidget11paintEngineEv +544 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTextEdit + size=40 align=8 + base size=40 base align=8 +QTextEdit (0x7fea0ff427e0) 0 + vptr=((& QTextEdit::_ZTV9QTextEdit) + 16u) + QAbstractScrollArea (0x7fea0ff42850) 0 + primary-for QTextEdit (0x7fea0ff427e0) + QFrame (0x7fea0ff428c0) 0 + primary-for QAbstractScrollArea (0x7fea0ff42850) + QWidget (0x7fea0ff15700) 0 + primary-for QFrame (0x7fea0ff428c0) + QObject (0x7fea0ff42930) 0 + primary-for QWidget (0x7fea0ff15700) + QPaintDevice (0x7fea0ff429a0) 16 + vptr=((& QTextEdit::_ZTV9QTextEdit) + 512u) + +Vtable for QPlainTextEdit +QPlainTextEdit::_ZTV14QPlainTextEdit: 69u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QPlainTextEdit) +16 QPlainTextEdit::metaObject +24 QPlainTextEdit::qt_metacast +32 QPlainTextEdit::qt_metacall +40 QPlainTextEdit::~QPlainTextEdit +48 QPlainTextEdit::~QPlainTextEdit +56 QPlainTextEdit::event +64 QObject::eventFilter +72 QPlainTextEdit::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QPlainTextEdit::mousePressEvent +168 QPlainTextEdit::mouseReleaseEvent +176 QPlainTextEdit::mouseDoubleClickEvent +184 QPlainTextEdit::mouseMoveEvent +192 QPlainTextEdit::wheelEvent +200 QPlainTextEdit::keyPressEvent +208 QPlainTextEdit::keyReleaseEvent +216 QPlainTextEdit::focusInEvent +224 QPlainTextEdit::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QPlainTextEdit::paintEvent +256 QWidget::moveEvent +264 QPlainTextEdit::resizeEvent +272 QWidget::closeEvent +280 QPlainTextEdit::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QPlainTextEdit::dragEnterEvent +312 QPlainTextEdit::dragMoveEvent +320 QPlainTextEdit::dragLeaveEvent +328 QPlainTextEdit::dropEvent +336 QPlainTextEdit::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QPlainTextEdit::changeEvent +368 QWidget::metric +376 QPlainTextEdit::inputMethodEvent +384 QPlainTextEdit::inputMethodQuery +392 QPlainTextEdit::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QPlainTextEdit::scrollContentsBy +464 QPlainTextEdit::loadResource +472 QPlainTextEdit::createMimeDataFromSelection +480 QPlainTextEdit::canInsertFromMimeData +488 QPlainTextEdit::insertFromMimeData +496 (int (*)(...))-0x00000000000000010 +504 (int (*)(...))(& _ZTI14QPlainTextEdit) +512 QPlainTextEdit::_ZThn16_N14QPlainTextEditD1Ev +520 QPlainTextEdit::_ZThn16_N14QPlainTextEditD0Ev +528 QWidget::_ZThn16_NK7QWidget7devTypeEv +536 QWidget::_ZThn16_NK7QWidget11paintEngineEv +544 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPlainTextEdit + size=40 align=8 + base size=40 base align=8 +QPlainTextEdit (0x7fea0fe04930) 0 + vptr=((& QPlainTextEdit::_ZTV14QPlainTextEdit) + 16u) + QAbstractScrollArea (0x7fea0fe049a0) 0 + primary-for QPlainTextEdit (0x7fea0fe04930) + QFrame (0x7fea0fe04a10) 0 + primary-for QAbstractScrollArea (0x7fea0fe049a0) + QWidget (0x7fea0ffd3f00) 0 + primary-for QFrame (0x7fea0fe04a10) + QObject (0x7fea0fe04a80) 0 + primary-for QWidget (0x7fea0ffd3f00) + QPaintDevice (0x7fea0fe04af0) 16 + vptr=((& QPlainTextEdit::_ZTV14QPlainTextEdit) + 512u) + +Vtable for QPlainTextDocumentLayout +QPlainTextDocumentLayout::_ZTV24QPlainTextDocumentLayout: 24u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QPlainTextDocumentLayout) +16 QPlainTextDocumentLayout::metaObject +24 QPlainTextDocumentLayout::qt_metacast +32 QPlainTextDocumentLayout::qt_metacall +40 QPlainTextDocumentLayout::~QPlainTextDocumentLayout +48 QPlainTextDocumentLayout::~QPlainTextDocumentLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QPlainTextDocumentLayout::draw +120 QPlainTextDocumentLayout::hitTest +128 QPlainTextDocumentLayout::pageCount +136 QPlainTextDocumentLayout::documentSize +144 QPlainTextDocumentLayout::frameBoundingRect +152 QPlainTextDocumentLayout::blockBoundingRect +160 QPlainTextDocumentLayout::documentChanged +168 QAbstractTextDocumentLayout::resizeInlineObject +176 QAbstractTextDocumentLayout::positionInlineObject +184 QAbstractTextDocumentLayout::drawInlineObject + +Class QPlainTextDocumentLayout + size=16 align=8 + base size=16 base align=8 +QPlainTextDocumentLayout (0x7fea0fe63700) 0 + vptr=((& QPlainTextDocumentLayout::_ZTV24QPlainTextDocumentLayout) + 16u) + QAbstractTextDocumentLayout (0x7fea0fe63770) 0 + primary-for QPlainTextDocumentLayout (0x7fea0fe63700) + QObject (0x7fea0fe637e0) 0 + primary-for QAbstractTextDocumentLayout (0x7fea0fe63770) + +Vtable for QProgressBar +QProgressBar::_ZTV12QProgressBar: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QProgressBar) +16 QProgressBar::metaObject +24 QProgressBar::qt_metacast +32 QProgressBar::qt_metacall +40 QProgressBar::~QProgressBar +48 QProgressBar::~QProgressBar +56 QProgressBar::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QProgressBar::sizeHint +136 QProgressBar::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QProgressBar::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QProgressBar::text +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI12QProgressBar) +472 QProgressBar::_ZThn16_N12QProgressBarD1Ev +480 QProgressBar::_ZThn16_N12QProgressBarD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QProgressBar + size=40 align=8 + base size=40 base align=8 +QProgressBar (0x7fea0fe79bd0) 0 + vptr=((& QProgressBar::_ZTV12QProgressBar) + 16u) + QWidget (0x7fea0fe62f00) 0 + primary-for QProgressBar (0x7fea0fe79bd0) + QObject (0x7fea0fe79c40) 0 + primary-for QWidget (0x7fea0fe62f00) + QPaintDevice (0x7fea0fe79cb0) 16 + vptr=((& QProgressBar::_ZTV12QProgressBar) + 472u) + +Vtable for QScrollBar +QScrollBar::_ZTV10QScrollBar: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QScrollBar) +16 QScrollBar::metaObject +24 QScrollBar::qt_metacast +32 QScrollBar::qt_metacall +40 QScrollBar::~QScrollBar +48 QScrollBar::~QScrollBar +56 QScrollBar::event +64 QObject::eventFilter +72 QAbstractSlider::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QScrollBar::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QScrollBar::mousePressEvent +168 QScrollBar::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QScrollBar::mouseMoveEvent +192 QAbstractSlider::wheelEvent +200 QAbstractSlider::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QScrollBar::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QScrollBar::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QScrollBar::hideEvent +352 QWidget::x11Event +360 QAbstractSlider::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QScrollBar::sliderChange +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI10QScrollBar) +472 QScrollBar::_ZThn16_N10QScrollBarD1Ev +480 QScrollBar::_ZThn16_N10QScrollBarD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QScrollBar + size=40 align=8 + base size=40 base align=8 +QScrollBar (0x7fea0fe9ca10) 0 + vptr=((& QScrollBar::_ZTV10QScrollBar) + 16u) + QAbstractSlider (0x7fea0fe9ca80) 0 + primary-for QScrollBar (0x7fea0fe9ca10) + QWidget (0x7fea0fe7f900) 0 + primary-for QAbstractSlider (0x7fea0fe9ca80) + QObject (0x7fea0fe9caf0) 0 + primary-for QWidget (0x7fea0fe7f900) + QPaintDevice (0x7fea0fe9cb60) 16 + vptr=((& QScrollBar::_ZTV10QScrollBar) + 472u) + +Vtable for QSizeGrip +QSizeGrip::_ZTV9QSizeGrip: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QSizeGrip) +16 QSizeGrip::metaObject +24 QSizeGrip::qt_metacast +32 QSizeGrip::qt_metacall +40 QSizeGrip::~QSizeGrip +48 QSizeGrip::~QSizeGrip +56 QSizeGrip::event +64 QSizeGrip::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QSizeGrip::setVisible +128 QSizeGrip::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QSizeGrip::mousePressEvent +168 QSizeGrip::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QSizeGrip::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QSizeGrip::paintEvent +256 QSizeGrip::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QSizeGrip::showEvent +344 QSizeGrip::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI9QSizeGrip) +464 QSizeGrip::_ZThn16_N9QSizeGripD1Ev +472 QSizeGrip::_ZThn16_N9QSizeGripD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSizeGrip + size=40 align=8 + base size=40 base align=8 +QSizeGrip (0x7fea0febcb60) 0 + vptr=((& QSizeGrip::_ZTV9QSizeGrip) + 16u) + QWidget (0x7fea0febe380) 0 + primary-for QSizeGrip (0x7fea0febcb60) + QObject (0x7fea0febcbd0) 0 + primary-for QWidget (0x7fea0febe380) + QPaintDevice (0x7fea0febcc40) 16 + vptr=((& QSizeGrip::_ZTV9QSizeGrip) + 464u) + +Vtable for QTextBrowser +QTextBrowser::_ZTV12QTextBrowser: 74u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextBrowser) +16 QTextBrowser::metaObject +24 QTextBrowser::qt_metacast +32 QTextBrowser::qt_metacall +40 QTextBrowser::~QTextBrowser +48 QTextBrowser::~QTextBrowser +56 QTextBrowser::event +64 QObject::eventFilter +72 QTextEdit::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTextBrowser::mousePressEvent +168 QTextBrowser::mouseReleaseEvent +176 QTextEdit::mouseDoubleClickEvent +184 QTextBrowser::mouseMoveEvent +192 QTextEdit::wheelEvent +200 QTextBrowser::keyPressEvent +208 QTextEdit::keyReleaseEvent +216 QTextEdit::focusInEvent +224 QTextBrowser::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTextBrowser::paintEvent +256 QWidget::moveEvent +264 QTextEdit::resizeEvent +272 QWidget::closeEvent +280 QTextEdit::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QTextEdit::dragEnterEvent +312 QTextEdit::dragMoveEvent +320 QTextEdit::dragLeaveEvent +328 QTextEdit::dropEvent +336 QTextEdit::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QTextEdit::changeEvent +368 QWidget::metric +376 QTextEdit::inputMethodEvent +384 QTextEdit::inputMethodQuery +392 QTextBrowser::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QTextEdit::scrollContentsBy +464 QTextBrowser::loadResource +472 QTextEdit::createMimeDataFromSelection +480 QTextEdit::canInsertFromMimeData +488 QTextEdit::insertFromMimeData +496 QTextBrowser::setSource +504 QTextBrowser::backward +512 QTextBrowser::forward +520 QTextBrowser::home +528 QTextBrowser::reload +536 (int (*)(...))-0x00000000000000010 +544 (int (*)(...))(& _ZTI12QTextBrowser) +552 QTextBrowser::_ZThn16_N12QTextBrowserD1Ev +560 QTextBrowser::_ZThn16_N12QTextBrowserD0Ev +568 QWidget::_ZThn16_NK7QWidget7devTypeEv +576 QWidget::_ZThn16_NK7QWidget11paintEngineEv +584 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTextBrowser + size=40 align=8 + base size=40 base align=8 +QTextBrowser (0x7fea0feda690) 0 + vptr=((& QTextBrowser::_ZTV12QTextBrowser) + 16u) + QTextEdit (0x7fea0feda700) 0 + primary-for QTextBrowser (0x7fea0feda690) + QAbstractScrollArea (0x7fea0feda770) 0 + primary-for QTextEdit (0x7fea0feda700) + QFrame (0x7fea0feda7e0) 0 + primary-for QAbstractScrollArea (0x7fea0feda770) + QWidget (0x7fea0febec80) 0 + primary-for QFrame (0x7fea0feda7e0) + QObject (0x7fea0feda850) 0 + primary-for QWidget (0x7fea0febec80) + QPaintDevice (0x7fea0feda8c0) 16 + vptr=((& QTextBrowser::_ZTV12QTextBrowser) + 552u) + +Vtable for QStatusBar +QStatusBar::_ZTV10QStatusBar: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QStatusBar) +16 QStatusBar::metaObject +24 QStatusBar::qt_metacast +32 QStatusBar::qt_metacall +40 QStatusBar::~QStatusBar +48 QStatusBar::~QStatusBar +56 QStatusBar::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QStatusBar::paintEvent +256 QWidget::moveEvent +264 QStatusBar::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QStatusBar::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI10QStatusBar) +464 QStatusBar::_ZThn16_N10QStatusBarD1Ev +472 QStatusBar::_ZThn16_N10QStatusBarD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QStatusBar + size=40 align=8 + base size=40 base align=8 +QStatusBar (0x7fea0fcfe2a0) 0 + vptr=((& QStatusBar::_ZTV10QStatusBar) + 16u) + QWidget (0x7fea0fcf5580) 0 + primary-for QStatusBar (0x7fea0fcfe2a0) + QObject (0x7fea0fcfe310) 0 + primary-for QWidget (0x7fea0fcf5580) + QPaintDevice (0x7fea0fcfe380) 16 + vptr=((& QStatusBar::_ZTV10QStatusBar) + 464u) + +Vtable for QToolButton +QToolButton::_ZTV11QToolButton: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QToolButton) +16 QToolButton::metaObject +24 QToolButton::qt_metacast +32 QToolButton::qt_metacall +40 QToolButton::~QToolButton +48 QToolButton::~QToolButton +56 QToolButton::event +64 QObject::eventFilter +72 QToolButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QToolButton::sizeHint +136 QToolButton::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QToolButton::mousePressEvent +168 QToolButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QAbstractButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QAbstractButton::focusInEvent +224 QAbstractButton::focusOutEvent +232 QToolButton::enterEvent +240 QToolButton::leaveEvent +248 QToolButton::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QToolButton::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QToolButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QToolButton::hitButton +456 QAbstractButton::checkStateSet +464 QToolButton::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11QToolButton) +488 QToolButton::_ZThn16_N11QToolButtonD1Ev +496 QToolButton::_ZThn16_N11QToolButtonD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QToolButton + size=40 align=8 + base size=40 base align=8 +QToolButton (0x7fea0fd1f7e0) 0 + vptr=((& QToolButton::_ZTV11QToolButton) + 16u) + QAbstractButton (0x7fea0fd1f850) 0 + primary-for QToolButton (0x7fea0fd1f7e0) + QWidget (0x7fea0fd1d480) 0 + primary-for QAbstractButton (0x7fea0fd1f850) + QObject (0x7fea0fd1f8c0) 0 + primary-for QWidget (0x7fea0fd1d480) + QPaintDevice (0x7fea0fd1f930) 16 + vptr=((& QToolButton::_ZTV11QToolButton) + 488u) + +Vtable for QComboBox +QComboBox::_ZTV9QComboBox: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QComboBox) +16 QComboBox::metaObject +24 QComboBox::qt_metacast +32 QComboBox::qt_metacall +40 QComboBox::~QComboBox +48 QComboBox::~QComboBox +56 QComboBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QComboBox::sizeHint +136 QComboBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QComboBox::mousePressEvent +168 QComboBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QComboBox::wheelEvent +200 QComboBox::keyPressEvent +208 QComboBox::keyReleaseEvent +216 QComboBox::focusInEvent +224 QComboBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QComboBox::paintEvent +256 QWidget::moveEvent +264 QComboBox::resizeEvent +272 QWidget::closeEvent +280 QComboBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QComboBox::showEvent +344 QComboBox::hideEvent +352 QWidget::x11Event +360 QComboBox::changeEvent +368 QWidget::metric +376 QComboBox::inputMethodEvent +384 QComboBox::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QComboBox::showPopup +456 QComboBox::hidePopup +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI9QComboBox) +480 QComboBox::_ZThn16_N9QComboBoxD1Ev +488 QComboBox::_ZThn16_N9QComboBoxD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QComboBox + size=40 align=8 + base size=40 base align=8 +QComboBox (0x7fea0fd5faf0) 0 + vptr=((& QComboBox::_ZTV9QComboBox) + 16u) + QWidget (0x7fea0fd66080) 0 + primary-for QComboBox (0x7fea0fd5faf0) + QObject (0x7fea0fd5fb60) 0 + primary-for QWidget (0x7fea0fd66080) + QPaintDevice (0x7fea0fd5fbd0) 16 + vptr=((& QComboBox::_ZTV9QComboBox) + 480u) + +Vtable for QCommandLinkButton +QCommandLinkButton::_ZTV18QCommandLinkButton: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QCommandLinkButton) +16 QCommandLinkButton::metaObject +24 QCommandLinkButton::qt_metacast +32 QCommandLinkButton::qt_metacall +40 QCommandLinkButton::~QCommandLinkButton +48 QCommandLinkButton::~QCommandLinkButton +56 QCommandLinkButton::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QCommandLinkButton::sizeHint +136 QCommandLinkButton::minimumSizeHint +144 QCommandLinkButton::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QPushButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QPushButton::focusInEvent +224 QPushButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QCommandLinkButton::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractButton::hitButton +456 QAbstractButton::checkStateSet +464 QAbstractButton::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI18QCommandLinkButton) +488 QCommandLinkButton::_ZThn16_N18QCommandLinkButtonD1Ev +496 QCommandLinkButton::_ZThn16_N18QCommandLinkButtonD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QCommandLinkButton + size=40 align=8 + base size=40 base align=8 +QCommandLinkButton (0x7fea0fdce620) 0 + vptr=((& QCommandLinkButton::_ZTV18QCommandLinkButton) + 16u) + QPushButton (0x7fea0fdce690) 0 + primary-for QCommandLinkButton (0x7fea0fdce620) + QAbstractButton (0x7fea0fdce700) 0 + primary-for QPushButton (0x7fea0fdce690) + QWidget (0x7fea0fdcac80) 0 + primary-for QAbstractButton (0x7fea0fdce700) + QObject (0x7fea0fdce770) 0 + primary-for QWidget (0x7fea0fdcac80) + QPaintDevice (0x7fea0fdce7e0) 16 + vptr=((& QCommandLinkButton::_ZTV18QCommandLinkButton) + 488u) + +Vtable for QMenuItem +QMenuItem::_ZTV9QMenuItem: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QMenuItem) +16 QMenuItem::metaObject +24 QMenuItem::qt_metacast +32 QMenuItem::qt_metacall +40 QMenuItem::~QMenuItem +48 QMenuItem::~QMenuItem +56 QAction::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QMenuItem + size=16 align=8 + base size=16 base align=8 +QMenuItem (0x7fea0fdf01c0) 0 + vptr=((& QMenuItem::_ZTV9QMenuItem) + 16u) + QAction (0x7fea0fdf0230) 0 + primary-for QMenuItem (0x7fea0fdf01c0) + QObject (0x7fea0fdf02a0) 0 + primary-for QAction (0x7fea0fdf0230) + +Vtable for QCalendarWidget +QCalendarWidget::_ZTV15QCalendarWidget: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QCalendarWidget) +16 QCalendarWidget::metaObject +24 QCalendarWidget::qt_metacast +32 QCalendarWidget::qt_metacall +40 QCalendarWidget::~QCalendarWidget +48 QCalendarWidget::~QCalendarWidget +56 QCalendarWidget::event +64 QCalendarWidget::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QCalendarWidget::sizeHint +136 QCalendarWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QCalendarWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QCalendarWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QCalendarWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QCalendarWidget::paintCell +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI15QCalendarWidget) +472 QCalendarWidget::_ZThn16_N15QCalendarWidgetD1Ev +480 QCalendarWidget::_ZThn16_N15QCalendarWidgetD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QCalendarWidget + size=40 align=8 + base size=40 base align=8 +QCalendarWidget (0x7fea0fbfc000) 0 + vptr=((& QCalendarWidget::_ZTV15QCalendarWidget) + 16u) + QWidget (0x7fea0fde7c00) 0 + primary-for QCalendarWidget (0x7fea0fbfc000) + QObject (0x7fea0fbfc070) 0 + primary-for QWidget (0x7fea0fde7c00) + QPaintDevice (0x7fea0fbfc0e0) 16 + vptr=((& QCalendarWidget::_ZTV15QCalendarWidget) + 472u) + +Vtable for QRadioButton +QRadioButton::_ZTV12QRadioButton: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QRadioButton) +16 QRadioButton::metaObject +24 QRadioButton::qt_metacast +32 QRadioButton::qt_metacall +40 QRadioButton::~QRadioButton +48 QRadioButton::~QRadioButton +56 QRadioButton::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QRadioButton::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QRadioButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QAbstractButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QAbstractButton::focusInEvent +224 QAbstractButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QRadioButton::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QRadioButton::hitButton +456 QAbstractButton::checkStateSet +464 QAbstractButton::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI12QRadioButton) +488 QRadioButton::_ZThn16_N12QRadioButtonD1Ev +496 QRadioButton::_ZThn16_N12QRadioButtonD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QRadioButton + size=40 align=8 + base size=40 base align=8 +QRadioButton (0x7fea0fc29150) 0 + vptr=((& QRadioButton::_ZTV12QRadioButton) + 16u) + QAbstractButton (0x7fea0fc291c0) 0 + primary-for QRadioButton (0x7fea0fc29150) + QWidget (0x7fea0fc02b00) 0 + primary-for QAbstractButton (0x7fea0fc291c0) + QObject (0x7fea0fc29230) 0 + primary-for QWidget (0x7fea0fc02b00) + QPaintDevice (0x7fea0fc292a0) 16 + vptr=((& QRadioButton::_ZTV12QRadioButton) + 488u) + +Vtable for QMenuBar +QMenuBar::_ZTV8QMenuBar: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QMenuBar) +16 QMenuBar::metaObject +24 QMenuBar::qt_metacast +32 QMenuBar::qt_metacall +40 QMenuBar::~QMenuBar +48 QMenuBar::~QMenuBar +56 QMenuBar::event +64 QMenuBar::eventFilter +72 QMenuBar::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QMenuBar::setVisible +128 QMenuBar::sizeHint +136 QMenuBar::minimumSizeHint +144 QMenuBar::heightForWidth +152 QWidget::paintEngine +160 QMenuBar::mousePressEvent +168 QMenuBar::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QMenuBar::mouseMoveEvent +192 QWidget::wheelEvent +200 QMenuBar::keyPressEvent +208 QWidget::keyReleaseEvent +216 QMenuBar::focusInEvent +224 QMenuBar::focusOutEvent +232 QWidget::enterEvent +240 QMenuBar::leaveEvent +248 QMenuBar::paintEvent +256 QWidget::moveEvent +264 QMenuBar::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QMenuBar::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QMenuBar::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI8QMenuBar) +464 QMenuBar::_ZThn16_N8QMenuBarD1Ev +472 QMenuBar::_ZThn16_N8QMenuBarD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMenuBar + size=40 align=8 + base size=40 base align=8 +QMenuBar (0x7fea0fc3fd90) 0 + vptr=((& QMenuBar::_ZTV8QMenuBar) + 16u) + QWidget (0x7fea0fc43400) 0 + primary-for QMenuBar (0x7fea0fc3fd90) + QObject (0x7fea0fc3fe00) 0 + primary-for QWidget (0x7fea0fc43400) + QPaintDevice (0x7fea0fc3fe70) 16 + vptr=((& QMenuBar::_ZTV8QMenuBar) + 464u) + +Vtable for QFocusFrame +QFocusFrame::_ZTV11QFocusFrame: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFocusFrame) +16 QFocusFrame::metaObject +24 QFocusFrame::qt_metacast +32 QFocusFrame::qt_metacall +40 QFocusFrame::~QFocusFrame +48 QFocusFrame::~QFocusFrame +56 QFocusFrame::event +64 QFocusFrame::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFocusFrame::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI11QFocusFrame) +464 QFocusFrame::_ZThn16_N11QFocusFrameD1Ev +472 QFocusFrame::_ZThn16_N11QFocusFrameD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFocusFrame + size=40 align=8 + base size=40 base align=8 +QFocusFrame (0x7fea0fcdecb0) 0 + vptr=((& QFocusFrame::_ZTV11QFocusFrame) + 16u) + QWidget (0x7fea0fcdbe00) 0 + primary-for QFocusFrame (0x7fea0fcdecb0) + QObject (0x7fea0fcded20) 0 + primary-for QWidget (0x7fea0fcdbe00) + QPaintDevice (0x7fea0fcded90) 16 + vptr=((& QFocusFrame::_ZTV11QFocusFrame) + 464u) + +Vtable for QFontComboBox +QFontComboBox::_ZTV13QFontComboBox: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QFontComboBox) +16 QFontComboBox::metaObject +24 QFontComboBox::qt_metacast +32 QFontComboBox::qt_metacall +40 QFontComboBox::~QFontComboBox +48 QFontComboBox::~QFontComboBox +56 QFontComboBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QFontComboBox::sizeHint +136 QComboBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QComboBox::mousePressEvent +168 QComboBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QComboBox::wheelEvent +200 QComboBox::keyPressEvent +208 QComboBox::keyReleaseEvent +216 QComboBox::focusInEvent +224 QComboBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QComboBox::paintEvent +256 QWidget::moveEvent +264 QComboBox::resizeEvent +272 QWidget::closeEvent +280 QComboBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QComboBox::showEvent +344 QComboBox::hideEvent +352 QWidget::x11Event +360 QComboBox::changeEvent +368 QWidget::metric +376 QComboBox::inputMethodEvent +384 QComboBox::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QComboBox::showPopup +456 QComboBox::hidePopup +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI13QFontComboBox) +480 QFontComboBox::_ZThn16_N13QFontComboBoxD1Ev +488 QFontComboBox::_ZThn16_N13QFontComboBoxD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFontComboBox + size=40 align=8 + base size=40 base align=8 +QFontComboBox (0x7fea0faf7850) 0 + vptr=((& QFontComboBox::_ZTV13QFontComboBox) + 16u) + QComboBox (0x7fea0faf78c0) 0 + primary-for QFontComboBox (0x7fea0faf7850) + QWidget (0x7fea0faf0700) 0 + primary-for QComboBox (0x7fea0faf78c0) + QObject (0x7fea0faf7930) 0 + primary-for QWidget (0x7fea0faf0700) + QPaintDevice (0x7fea0faf79a0) 16 + vptr=((& QFontComboBox::_ZTV13QFontComboBox) + 480u) + +Vtable for QToolBar +QToolBar::_ZTV8QToolBar: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QToolBar) +16 QToolBar::metaObject +24 QToolBar::qt_metacast +32 QToolBar::qt_metacall +40 QToolBar::~QToolBar +48 QToolBar::~QToolBar +56 QToolBar::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QToolBar::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QToolBar::paintEvent +256 QWidget::moveEvent +264 QToolBar::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QToolBar::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QToolBar::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI8QToolBar) +464 QToolBar::_ZThn16_N8QToolBarD1Ev +472 QToolBar::_ZThn16_N8QToolBarD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QToolBar + size=40 align=8 + base size=40 base align=8 +QToolBar (0x7fea0fb63540) 0 + vptr=((& QToolBar::_ZTV8QToolBar) + 16u) + QWidget (0x7fea0fb12800) 0 + primary-for QToolBar (0x7fea0fb63540) + QObject (0x7fea0fb635b0) 0 + primary-for QWidget (0x7fea0fb12800) + QPaintDevice (0x7fea0fb63620) 16 + vptr=((& QToolBar::_ZTV8QToolBar) + 464u) + +Vtable for QToolBox +QToolBox::_ZTV8QToolBox: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QToolBox) +16 QToolBox::metaObject +24 QToolBox::qt_metacast +32 QToolBox::qt_metacall +40 QToolBox::~QToolBox +48 QToolBox::~QToolBox +56 QToolBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QFrame::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFrame::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QToolBox::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QToolBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QToolBox::itemInserted +456 QToolBox::itemRemoved +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI8QToolBox) +480 QToolBox::_ZThn16_N8QToolBoxD1Ev +488 QToolBox::_ZThn16_N8QToolBoxD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QToolBox + size=40 align=8 + base size=40 base align=8 +QToolBox (0x7fea0fb9a380) 0 + vptr=((& QToolBox::_ZTV8QToolBox) + 16u) + QFrame (0x7fea0fb9a3f0) 0 + primary-for QToolBox (0x7fea0fb9a380) + QWidget (0x7fea0fb95800) 0 + primary-for QFrame (0x7fea0fb9a3f0) + QObject (0x7fea0fb9a460) 0 + primary-for QWidget (0x7fea0fb95800) + QPaintDevice (0x7fea0fb9a4d0) 16 + vptr=((& QToolBox::_ZTV8QToolBox) + 480u) + +Vtable for QSplitter +QSplitter::_ZTV9QSplitter: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QSplitter) +16 QSplitter::metaObject +24 QSplitter::qt_metacast +32 QSplitter::qt_metacall +40 QSplitter::~QSplitter +48 QSplitter::~QSplitter +56 QSplitter::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QSplitter::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QSplitter::sizeHint +136 QSplitter::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFrame::paintEvent +256 QWidget::moveEvent +264 QSplitter::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QSplitter::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QSplitter::createHandle +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI9QSplitter) +472 QSplitter::_ZThn16_N9QSplitterD1Ev +480 QSplitter::_ZThn16_N9QSplitterD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSplitter + size=40 align=8 + base size=40 base align=8 +QSplitter (0x7fea0fbd2000) 0 + vptr=((& QSplitter::_ZTV9QSplitter) + 16u) + QFrame (0x7fea0fbd2070) 0 + primary-for QSplitter (0x7fea0fbd2000) + QWidget (0x7fea0fbcd480) 0 + primary-for QFrame (0x7fea0fbd2070) + QObject (0x7fea0fbd20e0) 0 + primary-for QWidget (0x7fea0fbcd480) + QPaintDevice (0x7fea0fbd2150) 16 + vptr=((& QSplitter::_ZTV9QSplitter) + 472u) + +Vtable for QSplitterHandle +QSplitterHandle::_ZTV15QSplitterHandle: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSplitterHandle) +16 QSplitterHandle::metaObject +24 QSplitterHandle::qt_metacast +32 QSplitterHandle::qt_metacall +40 QSplitterHandle::~QSplitterHandle +48 QSplitterHandle::~QSplitterHandle +56 QSplitterHandle::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QSplitterHandle::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QSplitterHandle::mousePressEvent +168 QSplitterHandle::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QSplitterHandle::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QSplitterHandle::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI15QSplitterHandle) +464 QSplitterHandle::_ZThn16_N15QSplitterHandleD1Ev +472 QSplitterHandle::_ZThn16_N15QSplitterHandleD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSplitterHandle + size=40 align=8 + base size=40 base align=8 +QSplitterHandle (0x7fea0f9ff0e0) 0 + vptr=((& QSplitterHandle::_ZTV15QSplitterHandle) + 16u) + QWidget (0x7fea0f9f9580) 0 + primary-for QSplitterHandle (0x7fea0f9ff0e0) + QObject (0x7fea0f9ff150) 0 + primary-for QWidget (0x7fea0f9f9580) + QPaintDevice (0x7fea0f9ff1c0) 16 + vptr=((& QSplitterHandle::_ZTV15QSplitterHandle) + 464u) + +Vtable for QDial +QDial::_ZTV5QDial: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QDial) +16 QDial::metaObject +24 QDial::qt_metacast +32 QDial::qt_metacall +40 QDial::~QDial +48 QDial::~QDial +56 QDial::event +64 QObject::eventFilter +72 QAbstractSlider::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QDial::sizeHint +136 QDial::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QDial::mousePressEvent +168 QDial::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QDial::mouseMoveEvent +192 QAbstractSlider::wheelEvent +200 QAbstractSlider::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QDial::paintEvent +256 QWidget::moveEvent +264 QDial::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractSlider::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDial::sliderChange +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI5QDial) +472 QDial::_ZThn16_N5QDialD1Ev +480 QDial::_ZThn16_N5QDialD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDial + size=40 align=8 + base size=40 base align=8 +QDial (0x7fea0fa178c0) 0 + vptr=((& QDial::_ZTV5QDial) + 16u) + QAbstractSlider (0x7fea0fa17930) 0 + primary-for QDial (0x7fea0fa178c0) + QWidget (0x7fea0f9f9e80) 0 + primary-for QAbstractSlider (0x7fea0fa17930) + QObject (0x7fea0fa179a0) 0 + primary-for QWidget (0x7fea0f9f9e80) + QPaintDevice (0x7fea0fa17a10) 16 + vptr=((& QDial::_ZTV5QDial) + 472u) + +Class QSslCertificate + size=8 align=8 + base size=8 base align=8 +QSslCertificate (0x7fea0fa38540) 0 + +Class QSslError + size=8 align=8 + base size=8 base align=8 +QSslError (0x7fea0fa53000) 0 + +Class QSslCipher + size=8 align=8 + base size=8 base align=8 +QSslCipher (0x7fea0fa53d90) 0 + +Vtable for QAbstractSocket +QAbstractSocket::_ZTV15QAbstractSocket: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QAbstractSocket) +16 QAbstractSocket::metaObject +24 QAbstractSocket::qt_metacast +32 QAbstractSocket::qt_metacall +40 QAbstractSocket::~QAbstractSocket +48 QAbstractSocket::~QAbstractSocket +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractSocket::isSequential +120 QIODevice::open +128 QAbstractSocket::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QAbstractSocket::atEnd +168 QIODevice::reset +176 QAbstractSocket::bytesAvailable +184 QAbstractSocket::bytesToWrite +192 QAbstractSocket::canReadLine +200 QAbstractSocket::waitForReadyRead +208 QAbstractSocket::waitForBytesWritten +216 QAbstractSocket::readData +224 QAbstractSocket::readLineData +232 QAbstractSocket::writeData + +Class QAbstractSocket + size=16 align=8 + base size=16 base align=8 +QAbstractSocket (0x7fea0fa63700) 0 + vptr=((& QAbstractSocket::_ZTV15QAbstractSocket) + 16u) + QIODevice (0x7fea0fa63770) 0 + primary-for QAbstractSocket (0x7fea0fa63700) + QObject (0x7fea0fa637e0) 0 + primary-for QIODevice (0x7fea0fa63770) + +Vtable for QTcpSocket +QTcpSocket::_ZTV10QTcpSocket: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTcpSocket) +16 QTcpSocket::metaObject +24 QTcpSocket::qt_metacast +32 QTcpSocket::qt_metacall +40 QTcpSocket::~QTcpSocket +48 QTcpSocket::~QTcpSocket +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractSocket::isSequential +120 QIODevice::open +128 QAbstractSocket::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QAbstractSocket::atEnd +168 QIODevice::reset +176 QAbstractSocket::bytesAvailable +184 QAbstractSocket::bytesToWrite +192 QAbstractSocket::canReadLine +200 QAbstractSocket::waitForReadyRead +208 QAbstractSocket::waitForBytesWritten +216 QAbstractSocket::readData +224 QAbstractSocket::readLineData +232 QAbstractSocket::writeData + +Class QTcpSocket + size=16 align=8 + base size=16 base align=8 +QTcpSocket (0x7fea0fa9ed90) 0 + vptr=((& QTcpSocket::_ZTV10QTcpSocket) + 16u) + QAbstractSocket (0x7fea0fa9ee00) 0 + primary-for QTcpSocket (0x7fea0fa9ed90) + QIODevice (0x7fea0fa9ee70) 0 + primary-for QAbstractSocket (0x7fea0fa9ee00) + QObject (0x7fea0fa9eee0) 0 + primary-for QIODevice (0x7fea0fa9ee70) + +Vtable for QSslSocket +QSslSocket::_ZTV10QSslSocket: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QSslSocket) +16 QSslSocket::metaObject +24 QSslSocket::qt_metacast +32 QSslSocket::qt_metacall +40 QSslSocket::~QSslSocket +48 QSslSocket::~QSslSocket +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractSocket::isSequential +120 QIODevice::open +128 QSslSocket::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QSslSocket::atEnd +168 QIODevice::reset +176 QSslSocket::bytesAvailable +184 QSslSocket::bytesToWrite +192 QSslSocket::canReadLine +200 QSslSocket::waitForReadyRead +208 QSslSocket::waitForBytesWritten +216 QSslSocket::readData +224 QAbstractSocket::readLineData +232 QSslSocket::writeData + +Class QSslSocket + size=16 align=8 + base size=16 base align=8 +QSslSocket (0x7fea0faba850) 0 + vptr=((& QSslSocket::_ZTV10QSslSocket) + 16u) + QTcpSocket (0x7fea0faba8c0) 0 + primary-for QSslSocket (0x7fea0faba850) + QAbstractSocket (0x7fea0faba930) 0 + primary-for QTcpSocket (0x7fea0faba8c0) + QIODevice (0x7fea0faba9a0) 0 + primary-for QAbstractSocket (0x7fea0faba930) + QObject (0x7fea0fabaa10) 0 + primary-for QIODevice (0x7fea0faba9a0) + +Class QSslConfiguration + size=8 align=8 + base size=8 base align=8 +QSslConfiguration (0x7fea0f8ed5b0) 0 + +Class QSslKey + size=8 align=8 + base size=8 base align=8 +QSslKey (0x7fea0f8fc380) 0 + +Vtable for QHttpHeader +QHttpHeader::_ZTV11QHttpHeader: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QHttpHeader) +16 QHttpHeader::~QHttpHeader +24 QHttpHeader::~QHttpHeader +32 QHttpHeader::toString +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QHttpHeader::parseLine + +Class QHttpHeader + size=16 align=8 + base size=16 base align=8 +QHttpHeader (0x7fea0f8fcee0) 0 + vptr=((& QHttpHeader::_ZTV11QHttpHeader) + 16u) + +Vtable for QHttpResponseHeader +QHttpResponseHeader::_ZTV19QHttpResponseHeader: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QHttpResponseHeader) +16 QHttpResponseHeader::~QHttpResponseHeader +24 QHttpResponseHeader::~QHttpResponseHeader +32 QHttpResponseHeader::toString +40 QHttpResponseHeader::majorVersion +48 QHttpResponseHeader::minorVersion +56 QHttpResponseHeader::parseLine + +Class QHttpResponseHeader + size=16 align=8 + base size=16 base align=8 +QHttpResponseHeader (0x7fea0f919b60) 0 + vptr=((& QHttpResponseHeader::_ZTV19QHttpResponseHeader) + 16u) + QHttpHeader (0x7fea0f919bd0) 0 + primary-for QHttpResponseHeader (0x7fea0f919b60) + +Vtable for QHttpRequestHeader +QHttpRequestHeader::_ZTV18QHttpRequestHeader: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QHttpRequestHeader) +16 QHttpRequestHeader::~QHttpRequestHeader +24 QHttpRequestHeader::~QHttpRequestHeader +32 QHttpRequestHeader::toString +40 QHttpRequestHeader::majorVersion +48 QHttpRequestHeader::minorVersion +56 QHttpRequestHeader::parseLine + +Class QHttpRequestHeader + size=16 align=8 + base size=16 base align=8 +QHttpRequestHeader (0x7fea0f92a850) 0 + vptr=((& QHttpRequestHeader::_ZTV18QHttpRequestHeader) + 16u) + QHttpHeader (0x7fea0f92a8c0) 0 + primary-for QHttpRequestHeader (0x7fea0f92a850) + +Vtable for QHttp +QHttp::_ZTV5QHttp: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QHttp) +16 QHttp::metaObject +24 QHttp::qt_metacast +32 QHttp::qt_metacall +40 QHttp::~QHttp +48 QHttp::~QHttp +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QHttp + size=16 align=8 + base size=16 base align=8 +QHttp (0x7fea0f93f3f0) 0 + vptr=((& QHttp::_ZTV5QHttp) + 16u) + QObject (0x7fea0f93f460) 0 + primary-for QHttp (0x7fea0f93f3f0) + +Class QNetworkRequest + size=8 align=8 + base size=8 base align=8 +QNetworkRequest (0x7fea0f96b620) 0 + +Vtable for QNetworkAccessManager +QNetworkAccessManager::_ZTV21QNetworkAccessManager: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QNetworkAccessManager) +16 QNetworkAccessManager::metaObject +24 QNetworkAccessManager::qt_metacast +32 QNetworkAccessManager::qt_metacall +40 QNetworkAccessManager::~QNetworkAccessManager +48 QNetworkAccessManager::~QNetworkAccessManager +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QNetworkAccessManager::createRequest + +Class QNetworkAccessManager + size=16 align=8 + base size=16 base align=8 +QNetworkAccessManager (0x7fea0f985540) 0 + vptr=((& QNetworkAccessManager::_ZTV21QNetworkAccessManager) + 16u) + QObject (0x7fea0f9855b0) 0 + primary-for QNetworkAccessManager (0x7fea0f985540) + +Class QNetworkCookie + size=8 align=8 + base size=8 base align=8 +QNetworkCookie (0x7fea0f9a3a80) 0 + +Vtable for QNetworkCookieJar +QNetworkCookieJar::_ZTV17QNetworkCookieJar: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QNetworkCookieJar) +16 QNetworkCookieJar::metaObject +24 QNetworkCookieJar::qt_metacast +32 QNetworkCookieJar::qt_metacall +40 QNetworkCookieJar::~QNetworkCookieJar +48 QNetworkCookieJar::~QNetworkCookieJar +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QNetworkCookieJar::cookiesForUrl +120 QNetworkCookieJar::setCookiesFromUrl + +Class QNetworkCookieJar + size=16 align=8 + base size=16 base align=8 +QNetworkCookieJar (0x7fea0f9abbd0) 0 + vptr=((& QNetworkCookieJar::_ZTV17QNetworkCookieJar) + 16u) + QObject (0x7fea0f9abc40) 0 + primary-for QNetworkCookieJar (0x7fea0f9abbd0) + +Vtable for QNetworkReply +QNetworkReply::_ZTV13QNetworkReply: 33u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QNetworkReply) +16 QNetworkReply::metaObject +24 QNetworkReply::qt_metacast +32 QNetworkReply::qt_metacall +40 QNetworkReply::~QNetworkReply +48 QNetworkReply::~QNetworkReply +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QNetworkReply::isSequential +120 QIODevice::open +128 QNetworkReply::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QIODevice::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 __cxa_pure_virtual +224 QIODevice::readLineData +232 QNetworkReply::writeData +240 __cxa_pure_virtual +248 QNetworkReply::setReadBufferSize +256 QNetworkReply::ignoreSslErrors + +Class QNetworkReply + size=16 align=8 + base size=16 base align=8 +QNetworkReply (0x7fea0f9d9a80) 0 + vptr=((& QNetworkReply::_ZTV13QNetworkReply) + 16u) + QIODevice (0x7fea0f9d9af0) 0 + primary-for QNetworkReply (0x7fea0f9d9a80) + QObject (0x7fea0f9d9b60) 0 + primary-for QIODevice (0x7fea0f9d9af0) + +Vtable for QUrlInfo +QUrlInfo::_ZTV8QUrlInfo: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QUrlInfo) +16 QUrlInfo::~QUrlInfo +24 QUrlInfo::~QUrlInfo +32 QUrlInfo::setName +40 QUrlInfo::setDir +48 QUrlInfo::setFile +56 QUrlInfo::setSymLink +64 QUrlInfo::setOwner +72 QUrlInfo::setGroup +80 QUrlInfo::setSize +88 QUrlInfo::setWritable +96 QUrlInfo::setReadable +104 QUrlInfo::setPermissions +112 QUrlInfo::setLastModified + +Class QUrlInfo + size=16 align=8 + base size=16 base align=8 +QUrlInfo (0x7fea0f808700) 0 + vptr=((& QUrlInfo::_ZTV8QUrlInfo) + 16u) + +Vtable for QFtp +QFtp::_ZTV4QFtp: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI4QFtp) +16 QFtp::metaObject +24 QFtp::qt_metacast +32 QFtp::qt_metacall +40 QFtp::~QFtp +48 QFtp::~QFtp +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QFtp + size=16 align=8 + base size=16 base align=8 +QFtp (0x7fea0f819690) 0 + vptr=((& QFtp::_ZTV4QFtp) + 16u) + QObject (0x7fea0f819700) 0 + primary-for QFtp (0x7fea0f819690) + +Class QNetworkCacheMetaData + size=8 align=8 + base size=8 base align=8 +QNetworkCacheMetaData (0x7fea0f844cb0) 0 + +Vtable for QAbstractNetworkCache +QAbstractNetworkCache::_ZTV21QAbstractNetworkCache: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QAbstractNetworkCache) +16 QAbstractNetworkCache::metaObject +24 QAbstractNetworkCache::qt_metacast +32 QAbstractNetworkCache::qt_metacall +40 QAbstractNetworkCache::~QAbstractNetworkCache +48 QAbstractNetworkCache::~QAbstractNetworkCache +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QAbstractNetworkCache + size=16 align=8 + base size=16 base align=8 +QAbstractNetworkCache (0x7fea0f84dd90) 0 + vptr=((& QAbstractNetworkCache::_ZTV21QAbstractNetworkCache) + 16u) + QObject (0x7fea0f865000) 0 + primary-for QAbstractNetworkCache (0x7fea0f84dd90) + +Vtable for QNetworkDiskCache +QNetworkDiskCache::_ZTV17QNetworkDiskCache: 23u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QNetworkDiskCache) +16 QNetworkDiskCache::metaObject +24 QNetworkDiskCache::qt_metacast +32 QNetworkDiskCache::qt_metacall +40 QNetworkDiskCache::~QNetworkDiskCache +48 QNetworkDiskCache::~QNetworkDiskCache +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QNetworkDiskCache::metaData +120 QNetworkDiskCache::updateMetaData +128 QNetworkDiskCache::data +136 QNetworkDiskCache::remove +144 QNetworkDiskCache::cacheSize +152 QNetworkDiskCache::prepare +160 QNetworkDiskCache::insert +168 QNetworkDiskCache::clear +176 QNetworkDiskCache::expire + +Class QNetworkDiskCache + size=16 align=8 + base size=16 base align=8 +QNetworkDiskCache (0x7fea0f873930) 0 + vptr=((& QNetworkDiskCache::_ZTV17QNetworkDiskCache) + 16u) + QAbstractNetworkCache (0x7fea0f8739a0) 0 + primary-for QNetworkDiskCache (0x7fea0f873930) + QObject (0x7fea0f873a10) 0 + primary-for QAbstractNetworkCache (0x7fea0f8739a0) + +Class QIPv6Address + size=16 align=1 + base size=16 base align=1 +QIPv6Address (0x7fea0f8912a0) 0 + +Class QHostAddress + size=8 align=8 + base size=8 base align=8 +QHostAddress (0x7fea0f8918c0) 0 + +Class QNetworkAddressEntry + size=8 align=8 + base size=8 base align=8 +QNetworkAddressEntry (0x7fea0f8b8850) 0 + +Class QNetworkInterface + size=8 align=8 + base size=8 base align=8 +QNetworkInterface (0x7fea0f8ce0e0) 0 + +Class QAuthenticator + size=8 align=8 + base size=8 base align=8 +QAuthenticator (0x7fea0f70be00) 0 + +Class QHostInfo + size=8 align=8 + base size=8 base align=8 +QHostInfo (0x7fea0f72e700) 0 + +Class QNetworkProxyQuery + size=8 align=8 + base size=8 base align=8 +QNetworkProxyQuery (0x7fea0f72ef50) 0 + +Class QNetworkProxy + size=8 align=8 + base size=8 base align=8 +QNetworkProxy (0x7fea0f757230) 0 + +Vtable for QNetworkProxyFactory +QNetworkProxyFactory::_ZTV20QNetworkProxyFactory: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QNetworkProxyFactory) +16 QNetworkProxyFactory::~QNetworkProxyFactory +24 QNetworkProxyFactory::~QNetworkProxyFactory +32 __cxa_pure_virtual + +Class QNetworkProxyFactory + size=8 align=8 + base size=8 base align=8 +QNetworkProxyFactory (0x7fea0f7a7690) 0 nearly-empty + vptr=((& QNetworkProxyFactory::_ZTV20QNetworkProxyFactory) + 16u) + +Vtable for QLocalServer +QLocalServer::_ZTV12QLocalServer: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QLocalServer) +16 QLocalServer::metaObject +24 QLocalServer::qt_metacast +32 QLocalServer::qt_metacall +40 QLocalServer::~QLocalServer +48 QLocalServer::~QLocalServer +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QLocalServer::hasPendingConnections +120 QLocalServer::nextPendingConnection +128 QLocalServer::incomingConnection + +Class QLocalServer + size=16 align=8 + base size=16 base align=8 +QLocalServer (0x7fea0f7a79a0) 0 + vptr=((& QLocalServer::_ZTV12QLocalServer) + 16u) + QObject (0x7fea0f7a7a10) 0 + primary-for QLocalServer (0x7fea0f7a79a0) + +Vtable for QLocalSocket +QLocalSocket::_ZTV12QLocalSocket: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QLocalSocket) +16 QLocalSocket::metaObject +24 QLocalSocket::qt_metacast +32 QLocalSocket::qt_metacall +40 QLocalSocket::~QLocalSocket +48 QLocalSocket::~QLocalSocket +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QLocalSocket::isSequential +120 QIODevice::open +128 QLocalSocket::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QIODevice::atEnd +168 QIODevice::reset +176 QLocalSocket::bytesAvailable +184 QLocalSocket::bytesToWrite +192 QLocalSocket::canReadLine +200 QLocalSocket::waitForReadyRead +208 QLocalSocket::waitForBytesWritten +216 QLocalSocket::readData +224 QIODevice::readLineData +232 QLocalSocket::writeData + +Class QLocalSocket + size=16 align=8 + base size=16 base align=8 +QLocalSocket (0x7fea0f7e6380) 0 + vptr=((& QLocalSocket::_ZTV12QLocalSocket) + 16u) + QIODevice (0x7fea0f7e63f0) 0 + primary-for QLocalSocket (0x7fea0f7e6380) + QObject (0x7fea0f7e6460) 0 + primary-for QIODevice (0x7fea0f7e63f0) + +Vtable for QTcpServer +QTcpServer::_ZTV10QTcpServer: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTcpServer) +16 QTcpServer::metaObject +24 QTcpServer::qt_metacast +32 QTcpServer::qt_metacall +40 QTcpServer::~QTcpServer +48 QTcpServer::~QTcpServer +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTcpServer::hasPendingConnections +120 QTcpServer::nextPendingConnection +128 QTcpServer::incomingConnection + +Class QTcpServer + size=16 align=8 + base size=16 base align=8 +QTcpServer (0x7fea0f607540) 0 + vptr=((& QTcpServer::_ZTV10QTcpServer) + 16u) + QObject (0x7fea0f6075b0) 0 + primary-for QTcpServer (0x7fea0f607540) + +Vtable for QUdpSocket +QUdpSocket::_ZTV10QUdpSocket: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QUdpSocket) +16 QUdpSocket::metaObject +24 QUdpSocket::qt_metacast +32 QUdpSocket::qt_metacall +40 QUdpSocket::~QUdpSocket +48 QUdpSocket::~QUdpSocket +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractSocket::isSequential +120 QIODevice::open +128 QAbstractSocket::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QAbstractSocket::atEnd +168 QIODevice::reset +176 QAbstractSocket::bytesAvailable +184 QAbstractSocket::bytesToWrite +192 QAbstractSocket::canReadLine +200 QAbstractSocket::waitForReadyRead +208 QAbstractSocket::waitForBytesWritten +216 QAbstractSocket::readData +224 QAbstractSocket::readLineData +232 QAbstractSocket::writeData + +Class QUdpSocket + size=16 align=8 + base size=16 base align=8 +QUdpSocket (0x7fea0f621070) 0 + vptr=((& QUdpSocket::_ZTV10QUdpSocket) + 16u) + QAbstractSocket (0x7fea0f6210e0) 0 + primary-for QUdpSocket (0x7fea0f621070) + QIODevice (0x7fea0f621150) 0 + primary-for QAbstractSocket (0x7fea0f6210e0) + QObject (0x7fea0f6211c0) 0 + primary-for QIODevice (0x7fea0f621150) + +Class QSqlRecord + size=8 align=8 + base size=8 base align=8 +QSqlRecord (0x7fea0f66bd90) 0 + +Class QSqlIndex + size=32 align=8 + base size=32 base align=8 +QSqlIndex (0x7fea0f691a10) 0 + QSqlRecord (0x7fea0f691a80) 0 + +Vtable for QSqlResult +QSqlResult::_ZTV10QSqlResult: 29u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QSqlResult) +16 QSqlResult::~QSqlResult +24 QSqlResult::~QSqlResult +32 QSqlResult::handle +40 QSqlResult::setAt +48 QSqlResult::setActive +56 QSqlResult::setLastError +64 QSqlResult::setQuery +72 QSqlResult::setSelect +80 QSqlResult::setForwardOnly +88 QSqlResult::exec +96 QSqlResult::prepare +104 QSqlResult::savePrepare +112 QSqlResult::bindValue +120 QSqlResult::bindValue +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 QSqlResult::fetchNext +168 QSqlResult::fetchPrevious +176 __cxa_pure_virtual +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 __cxa_pure_virtual +208 QSqlResult::record +216 QSqlResult::lastInsertId +224 QSqlResult::virtual_hook + +Class QSqlResult + size=16 align=8 + base size=16 base align=8 +QSqlResult (0x7fea0f6e8f50) 0 + vptr=((& QSqlResult::_ZTV10QSqlResult) + 16u) + +Vtable for QSqlDriverCreatorBase +QSqlDriverCreatorBase::_ZTV21QSqlDriverCreatorBase: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QSqlDriverCreatorBase) +16 QSqlDriverCreatorBase::~QSqlDriverCreatorBase +24 QSqlDriverCreatorBase::~QSqlDriverCreatorBase +32 __cxa_pure_virtual + +Class QSqlDriverCreatorBase + size=8 align=8 + base size=8 base align=8 +QSqlDriverCreatorBase (0x7fea0f52f850) 0 nearly-empty + vptr=((& QSqlDriverCreatorBase::_ZTV21QSqlDriverCreatorBase) + 16u) + +Class QSqlDatabase + size=8 align=8 + base size=8 base align=8 +QSqlDatabase (0x7fea0f54c310) 0 + +Class QSqlQuery + size=8 align=8 + base size=8 base align=8 +QSqlQuery (0x7fea0f561700) 0 + +Vtable for QSqlDriverFactoryInterface +QSqlDriverFactoryInterface::_ZTV26QSqlDriverFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QSqlDriverFactoryInterface) +16 QSqlDriverFactoryInterface::~QSqlDriverFactoryInterface +24 QSqlDriverFactoryInterface::~QSqlDriverFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QSqlDriverFactoryInterface + size=8 align=8 + base size=8 base align=8 +QSqlDriverFactoryInterface (0x7fea0f5771c0) 0 nearly-empty + vptr=((& QSqlDriverFactoryInterface::_ZTV26QSqlDriverFactoryInterface) + 16u) + QFactoryInterface (0x7fea0f577230) 0 nearly-empty + primary-for QSqlDriverFactoryInterface (0x7fea0f5771c0) + +Vtable for QSqlDriverPlugin +QSqlDriverPlugin::_ZTV16QSqlDriverPlugin: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QSqlDriverPlugin) +16 QSqlDriverPlugin::metaObject +24 QSqlDriverPlugin::qt_metacast +32 QSqlDriverPlugin::qt_metacall +40 QSqlDriverPlugin::~QSqlDriverPlugin +48 QSqlDriverPlugin::~QSqlDriverPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI16QSqlDriverPlugin) +144 QSqlDriverPlugin::_ZThn16_N16QSqlDriverPluginD1Ev +152 QSqlDriverPlugin::_ZThn16_N16QSqlDriverPluginD0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QSqlDriverPlugin + size=24 align=8 + base size=24 base align=8 +QSqlDriverPlugin (0x7fea0f57b700) 0 + vptr=((& QSqlDriverPlugin::_ZTV16QSqlDriverPlugin) + 16u) + QObject (0x7fea0f577a80) 0 + primary-for QSqlDriverPlugin (0x7fea0f57b700) + QSqlDriverFactoryInterface (0x7fea0f577af0) 16 nearly-empty + vptr=((& QSqlDriverPlugin::_ZTV16QSqlDriverPlugin) + 144u) + QFactoryInterface (0x7fea0f577b60) 16 nearly-empty + primary-for QSqlDriverFactoryInterface (0x7fea0f577af0) + +Vtable for QSqlDriver +QSqlDriver::_ZTV10QSqlDriver: 32u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QSqlDriver) +16 QSqlDriver::metaObject +24 QSqlDriver::qt_metacast +32 QSqlDriver::qt_metacall +40 QSqlDriver::~QSqlDriver +48 QSqlDriver::~QSqlDriver +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QSqlDriver::isOpen +120 QSqlDriver::beginTransaction +128 QSqlDriver::commitTransaction +136 QSqlDriver::rollbackTransaction +144 QSqlDriver::tables +152 QSqlDriver::primaryIndex +160 QSqlDriver::record +168 QSqlDriver::formatValue +176 QSqlDriver::escapeIdentifier +184 QSqlDriver::sqlStatement +192 QSqlDriver::handle +200 __cxa_pure_virtual +208 __cxa_pure_virtual +216 __cxa_pure_virtual +224 __cxa_pure_virtual +232 QSqlDriver::setOpen +240 QSqlDriver::setOpenError +248 QSqlDriver::setLastError + +Class QSqlDriver + size=16 align=8 + base size=16 base align=8 +QSqlDriver (0x7fea0f58b9a0) 0 + vptr=((& QSqlDriver::_ZTV10QSqlDriver) + 16u) + QObject (0x7fea0f58ba10) 0 + primary-for QSqlDriver (0x7fea0f58b9a0) + +Class QSqlError + size=24 align=8 + base size=24 base align=8 +QSqlError (0x7fea0f5bd070) 0 + +Class QSqlField + size=24 align=8 + base size=24 base align=8 +QSqlField (0x7fea0f5bdf50) 0 + +Vtable for QSqlQueryModel +QSqlQueryModel::_ZTV14QSqlQueryModel: 44u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QSqlQueryModel) +16 QSqlQueryModel::metaObject +24 QSqlQueryModel::qt_metacast +32 QSqlQueryModel::qt_metacall +40 QSqlQueryModel::~QSqlQueryModel +48 QSqlQueryModel::~QSqlQueryModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractTableModel::index +120 QAbstractTableModel::parent +128 QSqlQueryModel::rowCount +136 QSqlQueryModel::columnCount +144 QAbstractTableModel::hasChildren +152 QSqlQueryModel::data +160 QAbstractItemModel::setData +168 QSqlQueryModel::headerData +176 QSqlQueryModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractTableModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QSqlQueryModel::insertColumns +248 QAbstractItemModel::removeRows +256 QSqlQueryModel::removeColumns +264 QSqlQueryModel::fetchMore +272 QSqlQueryModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert +336 QSqlQueryModel::clear +344 QSqlQueryModel::queryChange + +Class QSqlQueryModel + size=16 align=8 + base size=16 base align=8 +QSqlQueryModel (0x7fea0f5d9850) 0 + vptr=((& QSqlQueryModel::_ZTV14QSqlQueryModel) + 16u) + QAbstractTableModel (0x7fea0f5d98c0) 0 + primary-for QSqlQueryModel (0x7fea0f5d9850) + QAbstractItemModel (0x7fea0f5d9930) 0 + primary-for QAbstractTableModel (0x7fea0f5d98c0) + QObject (0x7fea0f5d99a0) 0 + primary-for QAbstractItemModel (0x7fea0f5d9930) + +Vtable for QSqlTableModel +QSqlTableModel::_ZTV14QSqlTableModel: 55u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QSqlTableModel) +16 QSqlTableModel::metaObject +24 QSqlTableModel::qt_metacast +32 QSqlTableModel::qt_metacall +40 QSqlTableModel::~QSqlTableModel +48 QSqlTableModel::~QSqlTableModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractTableModel::index +120 QAbstractTableModel::parent +128 QSqlTableModel::rowCount +136 QSqlQueryModel::columnCount +144 QAbstractTableModel::hasChildren +152 QSqlTableModel::data +160 QSqlTableModel::setData +168 QSqlTableModel::headerData +176 QSqlQueryModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractTableModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QSqlTableModel::insertRows +240 QSqlQueryModel::insertColumns +248 QSqlTableModel::removeRows +256 QSqlTableModel::removeColumns +264 QSqlQueryModel::fetchMore +272 QSqlQueryModel::canFetchMore +280 QSqlTableModel::flags +288 QSqlTableModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QSqlTableModel::submit +328 QSqlTableModel::revert +336 QSqlTableModel::clear +344 QSqlQueryModel::queryChange +352 QSqlTableModel::select +360 QSqlTableModel::setTable +368 QSqlTableModel::setEditStrategy +376 QSqlTableModel::setSort +384 QSqlTableModel::setFilter +392 QSqlTableModel::revertRow +400 QSqlTableModel::updateRowInTable +408 QSqlTableModel::insertRowIntoTable +416 QSqlTableModel::deleteRowFromTable +424 QSqlTableModel::orderByClause +432 QSqlTableModel::selectStatement + +Class QSqlTableModel + size=16 align=8 + base size=16 base align=8 +QSqlTableModel (0x7fea0f3fa1c0) 0 + vptr=((& QSqlTableModel::_ZTV14QSqlTableModel) + 16u) + QSqlQueryModel (0x7fea0f3fa230) 0 + primary-for QSqlTableModel (0x7fea0f3fa1c0) + QAbstractTableModel (0x7fea0f3fa2a0) 0 + primary-for QSqlQueryModel (0x7fea0f3fa230) + QAbstractItemModel (0x7fea0f3fa310) 0 + primary-for QAbstractTableModel (0x7fea0f3fa2a0) + QObject (0x7fea0f3fa380) 0 + primary-for QAbstractItemModel (0x7fea0f3fa310) + +Class QSqlRelation + size=24 align=8 + base size=24 base align=8 +QSqlRelation (0x7fea0f41fcb0) 0 + +Vtable for QSqlRelationalTableModel +QSqlRelationalTableModel::_ZTV24QSqlRelationalTableModel: 57u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QSqlRelationalTableModel) +16 QSqlRelationalTableModel::metaObject +24 QSqlRelationalTableModel::qt_metacast +32 QSqlRelationalTableModel::qt_metacall +40 QSqlRelationalTableModel::~QSqlRelationalTableModel +48 QSqlRelationalTableModel::~QSqlRelationalTableModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractTableModel::index +120 QAbstractTableModel::parent +128 QSqlTableModel::rowCount +136 QSqlQueryModel::columnCount +144 QAbstractTableModel::hasChildren +152 QSqlRelationalTableModel::data +160 QSqlRelationalTableModel::setData +168 QSqlTableModel::headerData +176 QSqlQueryModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractTableModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QSqlTableModel::insertRows +240 QSqlQueryModel::insertColumns +248 QSqlTableModel::removeRows +256 QSqlRelationalTableModel::removeColumns +264 QSqlQueryModel::fetchMore +272 QSqlQueryModel::canFetchMore +280 QSqlTableModel::flags +288 QSqlTableModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QSqlTableModel::submit +328 QSqlTableModel::revert +336 QSqlRelationalTableModel::clear +344 QSqlQueryModel::queryChange +352 QSqlRelationalTableModel::select +360 QSqlRelationalTableModel::setTable +368 QSqlTableModel::setEditStrategy +376 QSqlTableModel::setSort +384 QSqlTableModel::setFilter +392 QSqlRelationalTableModel::revertRow +400 QSqlRelationalTableModel::updateRowInTable +408 QSqlRelationalTableModel::insertRowIntoTable +416 QSqlTableModel::deleteRowFromTable +424 QSqlRelationalTableModel::orderByClause +432 QSqlRelationalTableModel::selectStatement +440 QSqlRelationalTableModel::setRelation +448 QSqlRelationalTableModel::relationModel + +Class QSqlRelationalTableModel + size=16 align=8 + base size=16 base align=8 +QSqlRelationalTableModel (0x7fea0f43e620) 0 + vptr=((& QSqlRelationalTableModel::_ZTV24QSqlRelationalTableModel) + 16u) + QSqlTableModel (0x7fea0f43e690) 0 + primary-for QSqlRelationalTableModel (0x7fea0f43e620) + QSqlQueryModel (0x7fea0f43e700) 0 + primary-for QSqlTableModel (0x7fea0f43e690) + QAbstractTableModel (0x7fea0f43e770) 0 + primary-for QSqlQueryModel (0x7fea0f43e700) + QAbstractItemModel (0x7fea0f43e7e0) 0 + primary-for QAbstractTableModel (0x7fea0f43e770) + QObject (0x7fea0f43e850) 0 + primary-for QAbstractItemModel (0x7fea0f43e7e0) + +Vtable for Q3SqlCursor +Q3SqlCursor::_ZTV11Q3SqlCursor: 40u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11Q3SqlCursor) +16 Q3SqlCursor::~Q3SqlCursor +24 Q3SqlCursor::~Q3SqlCursor +32 Q3SqlCursor::setValue +40 Q3SqlCursor::primaryIndex +48 Q3SqlCursor::index +56 Q3SqlCursor::setPrimaryIndex +64 Q3SqlCursor::append +72 Q3SqlCursor::insert +80 Q3SqlCursor::remove +88 Q3SqlCursor::clear +96 Q3SqlCursor::setGenerated +104 Q3SqlCursor::setGenerated +112 Q3SqlCursor::editBuffer +120 Q3SqlCursor::primeInsert +128 Q3SqlCursor::primeUpdate +136 Q3SqlCursor::primeDelete +144 Q3SqlCursor::insert +152 Q3SqlCursor::update +160 Q3SqlCursor::del +168 Q3SqlCursor::setMode +176 Q3SqlCursor::setCalculated +184 Q3SqlCursor::setTrimmed +192 Q3SqlCursor::select +200 Q3SqlCursor::setSort +208 Q3SqlCursor::setFilter +216 Q3SqlCursor::setName +224 Q3SqlCursor::seek +232 Q3SqlCursor::next +240 Q3SqlCursor::prev +248 Q3SqlCursor::first +256 Q3SqlCursor::last +264 Q3SqlCursor::exec +272 Q3SqlCursor::calculateField +280 Q3SqlCursor::update +288 Q3SqlCursor::del +296 Q3SqlCursor::toString +304 Q3SqlCursor::toString +312 Q3SqlCursor::toString + +Class Q3SqlCursor + size=32 align=8 + base size=32 base align=8 +Q3SqlCursor (0x7fea0f452680) 0 + vptr=((& Q3SqlCursor::_ZTV11Q3SqlCursor) + 16u) + QSqlRecord (0x7fea0f455e70) 8 + QSqlQuery (0x7fea0f455ee0) 16 + +Vtable for Q3Frame +Q3Frame::_ZTV7Q3Frame: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7Q3Frame) +16 Q3Frame::metaObject +24 Q3Frame::qt_metacast +32 Q3Frame::qt_metacall +40 Q3Frame::~Q3Frame +48 Q3Frame::~Q3Frame +56 QFrame::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QFrame::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 Q3Frame::paintEvent +256 QWidget::moveEvent +264 Q3Frame::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3Frame::frameChanged +456 Q3Frame::drawFrame +464 Q3Frame::drawContents +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI7Q3Frame) +488 Q3Frame::_ZThn16_N7Q3FrameD1Ev +496 Q3Frame::_ZThn16_N7Q3FrameD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3Frame + size=48 align=8 + base size=44 base align=8 +Q3Frame (0x7fea0f47ca10) 0 + vptr=((& Q3Frame::_ZTV7Q3Frame) + 16u) + QFrame (0x7fea0f47ca80) 0 + primary-for Q3Frame (0x7fea0f47ca10) + QWidget (0x7fea0f452f00) 0 + primary-for QFrame (0x7fea0f47ca80) + QObject (0x7fea0f47caf0) 0 + primary-for QWidget (0x7fea0f452f00) + QPaintDevice (0x7fea0f47cb60) 16 + vptr=((& Q3Frame::_ZTV7Q3Frame) + 488u) + +Vtable for Q3ScrollView +Q3ScrollView::_ZTV12Q3ScrollView: 102u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12Q3ScrollView) +16 Q3ScrollView::metaObject +24 Q3ScrollView::qt_metacast +32 Q3ScrollView::qt_metacall +40 Q3ScrollView::~Q3ScrollView +48 Q3ScrollView::~Q3ScrollView +56 QFrame::event +64 Q3ScrollView::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 Q3ScrollView::setVisible +128 Q3ScrollView::sizeHint +136 Q3ScrollView::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 Q3ScrollView::mousePressEvent +168 Q3ScrollView::mouseReleaseEvent +176 Q3ScrollView::mouseDoubleClickEvent +184 Q3ScrollView::mouseMoveEvent +192 Q3ScrollView::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 Q3Frame::paintEvent +256 QWidget::moveEvent +264 Q3ScrollView::resizeEvent +272 QWidget::closeEvent +280 Q3ScrollView::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 Q3ScrollView::focusNextPrevChild +400 Q3ScrollView::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 Q3ScrollView::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3ScrollView::frameChanged +456 Q3Frame::drawFrame +464 Q3ScrollView::drawContents +472 Q3ScrollView::setResizePolicy +480 Q3ScrollView::addChild +488 Q3ScrollView::moveChild +496 Q3ScrollView::setVScrollBarMode +504 Q3ScrollView::setHScrollBarMode +512 Q3ScrollView::setCornerWidget +520 Q3ScrollView::setDragAutoScroll +528 Q3ScrollView::resizeContents +536 Q3ScrollView::setContentsPos +544 Q3ScrollView::drawContents +552 Q3ScrollView::drawContentsOffset +560 Q3ScrollView::contentsMousePressEvent +568 Q3ScrollView::contentsMouseReleaseEvent +576 Q3ScrollView::contentsMouseDoubleClickEvent +584 Q3ScrollView::contentsMouseMoveEvent +592 Q3ScrollView::contentsDragEnterEvent +600 Q3ScrollView::contentsDragMoveEvent +608 Q3ScrollView::contentsDragLeaveEvent +616 Q3ScrollView::contentsDropEvent +624 Q3ScrollView::contentsWheelEvent +632 Q3ScrollView::contentsContextMenuEvent +640 Q3ScrollView::viewportPaintEvent +648 Q3ScrollView::viewportResizeEvent +656 Q3ScrollView::viewportMousePressEvent +664 Q3ScrollView::viewportMouseReleaseEvent +672 Q3ScrollView::viewportMouseDoubleClickEvent +680 Q3ScrollView::viewportMouseMoveEvent +688 Q3ScrollView::viewportDragEnterEvent +696 Q3ScrollView::viewportDragMoveEvent +704 Q3ScrollView::viewportDragLeaveEvent +712 Q3ScrollView::viewportDropEvent +720 Q3ScrollView::viewportWheelEvent +728 Q3ScrollView::viewportContextMenuEvent +736 Q3ScrollView::setMargins +744 Q3ScrollView::setHBarGeometry +752 Q3ScrollView::setVBarGeometry +760 (int (*)(...))-0x00000000000000010 +768 (int (*)(...))(& _ZTI12Q3ScrollView) +776 Q3ScrollView::_ZThn16_N12Q3ScrollViewD1Ev +784 Q3ScrollView::_ZThn16_N12Q3ScrollViewD0Ev +792 QWidget::_ZThn16_NK7QWidget7devTypeEv +800 QWidget::_ZThn16_NK7QWidget11paintEngineEv +808 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3ScrollView + size=56 align=8 + base size=56 base align=8 +Q3ScrollView (0x7fea0f49c230) 0 + vptr=((& Q3ScrollView::_ZTV12Q3ScrollView) + 16u) + Q3Frame (0x7fea0f49c2a0) 0 + primary-for Q3ScrollView (0x7fea0f49c230) + QFrame (0x7fea0f49c310) 0 + primary-for Q3Frame (0x7fea0f49c2a0) + QWidget (0x7fea0f484800) 0 + primary-for QFrame (0x7fea0f49c310) + QObject (0x7fea0f49c380) 0 + primary-for QWidget (0x7fea0f484800) + QPaintDevice (0x7fea0f49c3f0) 16 + vptr=((& Q3ScrollView::_ZTV12Q3ScrollView) + 776u) + +Vtable for Q3PtrCollection +Q3PtrCollection::_ZTV15Q3PtrCollection: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15Q3PtrCollection) +16 __cxa_pure_virtual +24 __cxa_pure_virtual +32 Q3PtrCollection::~Q3PtrCollection +40 Q3PtrCollection::~Q3PtrCollection +48 Q3PtrCollection::newItem +56 __cxa_pure_virtual + +Class Q3PtrCollection + size=16 align=8 + base size=9 base align=8 +Q3PtrCollection (0x7fea0f4dc8c0) 0 + vptr=((& Q3PtrCollection::_ZTV15Q3PtrCollection) + 16u) + +Vtable for Q3GVector +Q3GVector::_ZTV9Q3GVector: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9Q3GVector) +16 Q3GVector::count +24 Q3GVector::clear +32 Q3GVector::~Q3GVector +40 Q3GVector::~Q3GVector +48 Q3PtrCollection::newItem +56 __cxa_pure_virtual +64 Q3GVector::compareItems +72 Q3GVector::read +80 Q3GVector::write + +Class Q3GVector + size=32 align=8 + base size=32 base align=8 +Q3GVector (0x7fea0f4eaa10) 0 + vptr=((& Q3GVector::_ZTV9Q3GVector) + 16u) + Q3PtrCollection (0x7fea0f4eaa80) 0 + primary-for Q3GVector (0x7fea0f4eaa10) + +Vtable for Q3Header +Q3Header::_ZTV8Q3Header: 76u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8Q3Header) +16 Q3Header::metaObject +24 Q3Header::qt_metacast +32 Q3Header::qt_metacall +40 Q3Header::~Q3Header +48 Q3Header::~Q3Header +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 Q3Header::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 Q3Header::mousePressEvent +168 Q3Header::mouseReleaseEvent +176 Q3Header::mouseDoubleClickEvent +184 Q3Header::mouseMoveEvent +192 QWidget::wheelEvent +200 Q3Header::keyPressEvent +208 Q3Header::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 Q3Header::paintEvent +256 QWidget::moveEvent +264 Q3Header::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 Q3Header::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 Q3Header::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3Header::setLabel +456 Q3Header::setLabel +464 Q3Header::setOrientation +472 Q3Header::setTracking +480 Q3Header::setClickEnabled +488 Q3Header::setResizeEnabled +496 Q3Header::setMovingEnabled +504 Q3Header::setStretchEnabled +512 Q3Header::setCellSize +520 Q3Header::moveCell +528 Q3Header::setOffset +536 Q3Header::paintSection +544 Q3Header::paintSectionLabel +552 (int (*)(...))-0x00000000000000010 +560 (int (*)(...))(& _ZTI8Q3Header) +568 Q3Header::_ZThn16_N8Q3HeaderD1Ev +576 Q3Header::_ZThn16_N8Q3HeaderD0Ev +584 QWidget::_ZThn16_NK7QWidget7devTypeEv +592 QWidget::_ZThn16_NK7QWidget11paintEngineEv +600 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3Header + size=88 align=8 + base size=88 base align=8 +Q3Header (0x7fea0f219a80) 0 + vptr=((& Q3Header::_ZTV8Q3Header) + 16u) + QWidget (0x7fea0f22b500) 0 + primary-for Q3Header (0x7fea0f219a80) + QObject (0x7fea0f219af0) 0 + primary-for QWidget (0x7fea0f22b500) + QPaintDevice (0x7fea0f219b60) 16 + vptr=((& Q3Header::_ZTV8Q3Header) + 568u) + +Class Q3Shared + size=4 align=4 + base size=4 base align=4 +Q3Shared (0x7fea0f269460) 0 + +Class Q3GArray::array_data + size=24 align=8 + base size=20 base align=8 +Q3GArray::array_data (0x7fea0f26e230) 0 + Q3Shared (0x7fea0f26e2a0) 0 + +Vtable for Q3GArray +Q3GArray::_ZTV8Q3GArray: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8Q3GArray) +16 Q3GArray::~Q3GArray +24 Q3GArray::~Q3GArray +32 Q3GArray::detach +40 Q3GArray::newData +48 Q3GArray::deleteData + +Class Q3GArray + size=16 align=8 + base size=16 base align=8 +Q3GArray (0x7fea0f26e1c0) 0 + vptr=((& Q3GArray::_ZTV8Q3GArray) + 16u) + +Class Q3LNode + size=24 align=8 + base size=24 base align=8 +Q3LNode (0x7fea0f2b0700) 0 + +Vtable for Q3GList +Q3GList::_ZTV7Q3GList: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7Q3GList) +16 Q3GList::count +24 Q3GList::clear +32 Q3GList::~Q3GList +40 Q3GList::~Q3GList +48 Q3PtrCollection::newItem +56 __cxa_pure_virtual +64 Q3GList::compareItems +72 Q3GList::read +80 Q3GList::write + +Class Q3GList + size=56 align=8 + base size=56 base align=8 +Q3GList (0x7fea0f2bc620) 0 + vptr=((& Q3GList::_ZTV7Q3GList) + 16u) + Q3PtrCollection (0x7fea0f2bc690) 0 + primary-for Q3GList (0x7fea0f2bc620) + +Class Q3GListIterator + size=16 align=8 + base size=16 base align=8 +Q3GListIterator (0x7fea0f2e6310) 0 + +Class Q3GListStdIterator + size=8 align=8 + base size=8 base align=8 +Q3GListStdIterator (0x7fea0f0f02a0) 0 + +Class Q3BaseBucket + size=16 align=8 + base size=16 base align=8 +Q3BaseBucket (0x7fea0f14b540) 0 + +Class Q3StringBucket + size=24 align=8 + base size=24 base align=8 +Q3StringBucket (0x7fea0f153f50) 0 + Q3BaseBucket (0x7fea0f157000) 0 + +Class Q3AsciiBucket + size=24 align=8 + base size=24 base align=8 +Q3AsciiBucket (0x7fea0f157b60) 0 + Q3BaseBucket (0x7fea0f157bd0) 0 + +Class Q3IntBucket + size=24 align=8 + base size=24 base align=8 +Q3IntBucket (0x7fea0f163620) 0 + Q3BaseBucket (0x7fea0f163690) 0 + +Class Q3PtrBucket + size=24 align=8 + base size=24 base align=8 +Q3PtrBucket (0x7fea0f16a0e0) 0 + Q3BaseBucket (0x7fea0f16a150) 0 + +Vtable for Q3GDict +Q3GDict::_ZTV7Q3GDict: 10u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7Q3GDict) +16 Q3GDict::count +24 Q3GDict::clear +32 Q3GDict::~Q3GDict +40 Q3GDict::~Q3GDict +48 Q3PtrCollection::newItem +56 __cxa_pure_virtual +64 Q3GDict::read +72 Q3GDict::write + +Class Q3GDict + size=48 align=8 + base size=48 base align=8 +Q3GDict (0x7fea0f16ab60) 0 + vptr=((& Q3GDict::_ZTV7Q3GDict) + 16u) + Q3PtrCollection (0x7fea0f16abd0) 0 + primary-for Q3GDict (0x7fea0f16ab60) + +Class Q3GDictIterator + size=24 align=8 + base size=20 base align=8 +Q3GDictIterator (0x7fea0f180cb0) 0 + +Class Q3TableSelection + size=28 align=4 + base size=28 base align=4 +Q3TableSelection (0x7fea0f1ba850) 0 + +Vtable for Q3TableItem +Q3TableItem::_ZTV11Q3TableItem: 21u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11Q3TableItem) +16 Q3TableItem::~Q3TableItem +24 Q3TableItem::~Q3TableItem +32 Q3TableItem::pixmap +40 Q3TableItem::text +48 Q3TableItem::setPixmap +56 Q3TableItem::setText +64 Q3TableItem::alignment +72 Q3TableItem::setWordWrap +80 Q3TableItem::createEditor +88 Q3TableItem::setContentFromEditor +96 Q3TableItem::setReplaceable +104 Q3TableItem::key +112 Q3TableItem::sizeHint +120 Q3TableItem::setSpan +128 Q3TableItem::setRow +136 Q3TableItem::setCol +144 Q3TableItem::paint +152 Q3TableItem::setEnabled +160 Q3TableItem::rtti + +Class Q3TableItem + size=72 align=8 + base size=72 base align=8 +Q3TableItem (0x7fea0f1d5000) 0 + vptr=((& Q3TableItem::_ZTV11Q3TableItem) + 16u) + +Vtable for Q3ComboTableItem +Q3ComboTableItem::_ZTV16Q3ComboTableItem: 25u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16Q3ComboTableItem) +16 Q3ComboTableItem::~Q3ComboTableItem +24 Q3ComboTableItem::~Q3ComboTableItem +32 Q3TableItem::pixmap +40 Q3TableItem::text +48 Q3TableItem::setPixmap +56 Q3TableItem::setText +64 Q3TableItem::alignment +72 Q3TableItem::setWordWrap +80 Q3ComboTableItem::createEditor +88 Q3ComboTableItem::setContentFromEditor +96 Q3TableItem::setReplaceable +104 Q3TableItem::key +112 Q3ComboTableItem::sizeHint +120 Q3TableItem::setSpan +128 Q3TableItem::setRow +136 Q3TableItem::setCol +144 Q3ComboTableItem::paint +152 Q3TableItem::setEnabled +160 Q3ComboTableItem::rtti +168 Q3ComboTableItem::setCurrentItem +176 Q3ComboTableItem::setCurrentItem +184 Q3ComboTableItem::setEditable +192 Q3ComboTableItem::setStringList + +Class Q3ComboTableItem + size=96 align=8 + base size=93 base align=8 +Q3ComboTableItem (0x7fea0f1d58c0) 0 + vptr=((& Q3ComboTableItem::_ZTV16Q3ComboTableItem) + 16u) + Q3TableItem (0x7fea0f1d5930) 0 + primary-for Q3ComboTableItem (0x7fea0f1d58c0) + +Vtable for Q3CheckTableItem +Q3CheckTableItem::_ZTV16Q3CheckTableItem: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16Q3CheckTableItem) +16 Q3CheckTableItem::~Q3CheckTableItem +24 Q3CheckTableItem::~Q3CheckTableItem +32 Q3TableItem::pixmap +40 Q3TableItem::text +48 Q3TableItem::setPixmap +56 Q3CheckTableItem::setText +64 Q3TableItem::alignment +72 Q3TableItem::setWordWrap +80 Q3CheckTableItem::createEditor +88 Q3CheckTableItem::setContentFromEditor +96 Q3TableItem::setReplaceable +104 Q3TableItem::key +112 Q3CheckTableItem::sizeHint +120 Q3TableItem::setSpan +128 Q3TableItem::setRow +136 Q3TableItem::setCol +144 Q3CheckTableItem::paint +152 Q3TableItem::setEnabled +160 Q3CheckTableItem::rtti +168 Q3CheckTableItem::setChecked + +Class Q3CheckTableItem + size=88 align=8 + base size=81 base align=8 +Q3CheckTableItem (0x7fea0f1d5bd0) 0 + vptr=((& Q3CheckTableItem::_ZTV16Q3CheckTableItem) + 16u) + Q3TableItem (0x7fea0f1d5c40) 0 + primary-for Q3CheckTableItem (0x7fea0f1d5bd0) + +Class Q3Table::TableWidget + size=16 align=8 + base size=16 base align=8 +Q3Table::TableWidget (0x7fea0effecb0) 0 + +Vtable for Q3Table +Q3Table::_ZTV7Q3Table: 183u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7Q3Table) +16 Q3Table::metaObject +24 Q3Table::qt_metacast +32 Q3Table::qt_metacall +40 Q3Table::~Q3Table +48 Q3Table::~Q3Table +56 QFrame::event +64 Q3Table::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 Q3ScrollView::setVisible +128 Q3Table::sizeHint +136 Q3ScrollView::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 Q3ScrollView::mousePressEvent +168 Q3ScrollView::mouseReleaseEvent +176 Q3ScrollView::mouseDoubleClickEvent +184 Q3ScrollView::mouseMoveEvent +192 Q3ScrollView::wheelEvent +200 Q3Table::keyPressEvent +208 QWidget::keyReleaseEvent +216 Q3Table::focusInEvent +224 Q3Table::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 Q3Table::paintEvent +256 QWidget::moveEvent +264 Q3ScrollView::resizeEvent +272 QWidget::closeEvent +280 Q3ScrollView::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 Q3Table::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 Q3Table::inputMethodQuery +392 Q3ScrollView::focusNextPrevChild +400 Q3ScrollView::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 Q3ScrollView::fontChange +432 Q3Table::windowActivationChange +440 QWidget::languageChange +448 Q3ScrollView::frameChanged +456 Q3Frame::drawFrame +464 Q3Table::drawContents +472 Q3ScrollView::setResizePolicy +480 Q3ScrollView::addChild +488 Q3ScrollView::moveChild +496 Q3ScrollView::setVScrollBarMode +504 Q3ScrollView::setHScrollBarMode +512 Q3ScrollView::setCornerWidget +520 Q3ScrollView::setDragAutoScroll +528 Q3ScrollView::resizeContents +536 Q3ScrollView::setContentsPos +544 Q3Table::drawContents +552 Q3ScrollView::drawContentsOffset +560 Q3Table::contentsMousePressEvent +568 Q3Table::contentsMouseReleaseEvent +576 Q3Table::contentsMouseDoubleClickEvent +584 Q3Table::contentsMouseMoveEvent +592 Q3Table::contentsDragEnterEvent +600 Q3Table::contentsDragMoveEvent +608 Q3Table::contentsDragLeaveEvent +616 Q3Table::contentsDropEvent +624 Q3ScrollView::contentsWheelEvent +632 Q3Table::contentsContextMenuEvent +640 Q3ScrollView::viewportPaintEvent +648 Q3Table::viewportResizeEvent +656 Q3ScrollView::viewportMousePressEvent +664 Q3ScrollView::viewportMouseReleaseEvent +672 Q3ScrollView::viewportMouseDoubleClickEvent +680 Q3ScrollView::viewportMouseMoveEvent +688 Q3ScrollView::viewportDragEnterEvent +696 Q3ScrollView::viewportDragMoveEvent +704 Q3ScrollView::viewportDragLeaveEvent +712 Q3ScrollView::viewportDropEvent +720 Q3ScrollView::viewportWheelEvent +728 Q3ScrollView::viewportContextMenuEvent +736 Q3ScrollView::setMargins +744 Q3ScrollView::setHBarGeometry +752 Q3ScrollView::setVBarGeometry +760 Q3Table::setSelectionMode +768 Q3Table::setItem +776 Q3Table::setText +784 Q3Table::setPixmap +792 Q3Table::item +800 Q3Table::text +808 Q3Table::pixmap +816 Q3Table::clearCell +824 Q3Table::cellGeometry +832 Q3Table::columnWidth +840 Q3Table::rowHeight +848 Q3Table::columnPos +856 Q3Table::rowPos +864 Q3Table::columnAt +872 Q3Table::rowAt +880 Q3Table::numRows +888 Q3Table::numCols +896 Q3Table::addSelection +904 Q3Table::removeSelection +912 Q3Table::removeSelection +920 Q3Table::currentSelection +928 Q3Table::selectRow +936 Q3Table::selectColumn +944 Q3Table::sortColumn +952 Q3Table::takeItem +960 Q3Table::setCellWidget +968 Q3Table::cellWidget +976 Q3Table::clearCellWidget +984 Q3Table::cellRect +992 Q3Table::paintCell +1000 Q3Table::paintCell +1008 Q3Table::paintFocus +1016 Q3Table::setFocusStyle +1024 Q3Table::setNumRows +1032 Q3Table::setNumCols +1040 Q3Table::setShowGrid +1048 Q3Table::hideRow +1056 Q3Table::hideColumn +1064 Q3Table::showRow +1072 Q3Table::showColumn +1080 Q3Table::setColumnWidth +1088 Q3Table::setRowHeight +1096 Q3Table::adjustColumn +1104 Q3Table::adjustRow +1112 Q3Table::setColumnStretchable +1120 Q3Table::setRowStretchable +1128 Q3Table::setSorting +1136 Q3Table::swapRows +1144 Q3Table::swapColumns +1152 Q3Table::swapCells +1160 Q3Table::setLeftMargin +1168 Q3Table::setTopMargin +1176 Q3Table::setCurrentCell +1184 Q3Table::setColumnMovingEnabled +1192 Q3Table::setRowMovingEnabled +1200 Q3Table::setReadOnly +1208 Q3Table::setRowReadOnly +1216 Q3Table::setColumnReadOnly +1224 Q3Table::setDragEnabled +1232 Q3Table::insertRows +1240 Q3Table::insertColumns +1248 Q3Table::removeRow +1256 Q3Table::removeRows +1264 Q3Table::removeColumn +1272 Q3Table::removeColumns +1280 Q3Table::editCell +1288 Q3Table::dragObject +1296 Q3Table::startDrag +1304 Q3Table::paintEmptyArea +1312 Q3Table::activateNextCell +1320 Q3Table::createEditor +1328 Q3Table::setCellContentFromEditor +1336 Q3Table::beginEdit +1344 Q3Table::endEdit +1352 Q3Table::resizeData +1360 Q3Table::insertWidget +1368 Q3Table::columnWidthChanged +1376 Q3Table::rowHeightChanged +1384 Q3Table::columnIndexChanged +1392 Q3Table::rowIndexChanged +1400 Q3Table::columnClicked +1408 (int (*)(...))-0x00000000000000010 +1416 (int (*)(...))(& _ZTI7Q3Table) +1424 Q3Table::_ZThn16_N7Q3TableD1Ev +1432 Q3Table::_ZThn16_N7Q3TableD0Ev +1440 QWidget::_ZThn16_NK7QWidget7devTypeEv +1448 QWidget::_ZThn16_NK7QWidget11paintEngineEv +1456 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3Table + size=392 align=8 + base size=388 base align=8 +Q3Table (0x7fea0f1d5d90) 0 + vptr=((& Q3Table::_ZTV7Q3Table) + 16u) + Q3ScrollView (0x7fea0f1d5e00) 0 + primary-for Q3Table (0x7fea0f1d5d90) + Q3Frame (0x7fea0f1d5e70) 0 + primary-for Q3ScrollView (0x7fea0f1d5e00) + QFrame (0x7fea0f1d5ee0) 0 + primary-for Q3Frame (0x7fea0f1d5e70) + QWidget (0x7fea0f1ced80) 0 + primary-for QFrame (0x7fea0f1d5ee0) + QObject (0x7fea0f1d5f50) 0 + primary-for QWidget (0x7fea0f1ced80) + QPaintDevice (0x7fea0f1d5620) 16 + vptr=((& Q3Table::_ZTV7Q3Table) + 1424u) + +Vtable for Q3EditorFactory +Q3EditorFactory::_ZTV15Q3EditorFactory: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15Q3EditorFactory) +16 QObject::metaObject +24 QObject::qt_metacast +32 QObject::qt_metacall +40 Q3EditorFactory::~Q3EditorFactory +48 Q3EditorFactory::~Q3EditorFactory +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 Q3EditorFactory::createEditor + +Class Q3EditorFactory + size=16 align=8 + base size=16 base align=8 +Q3EditorFactory (0x7fea0f098f50) 0 + vptr=((& Q3EditorFactory::_ZTV15Q3EditorFactory) + 16u) + QObject (0x7fea0f09c000) 0 + primary-for Q3EditorFactory (0x7fea0f098f50) + +Vtable for Q3SqlEditorFactory +Q3SqlEditorFactory::_ZTV18Q3SqlEditorFactory: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18Q3SqlEditorFactory) +16 QObject::metaObject +24 QObject::qt_metacast +32 QObject::qt_metacall +40 Q3SqlEditorFactory::~Q3SqlEditorFactory +48 Q3SqlEditorFactory::~Q3SqlEditorFactory +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 Q3SqlEditorFactory::createEditor +120 Q3SqlEditorFactory::createEditor + +Class Q3SqlEditorFactory + size=16 align=8 + base size=16 base align=8 +Q3SqlEditorFactory (0x7fea0f09c8c0) 0 + vptr=((& Q3SqlEditorFactory::_ZTV18Q3SqlEditorFactory) + 16u) + Q3EditorFactory (0x7fea0f09c930) 0 + primary-for Q3SqlEditorFactory (0x7fea0f09c8c0) + QObject (0x7fea0f09c9a0) 0 + primary-for Q3EditorFactory (0x7fea0f09c930) + +Vtable for Q3DataTable +Q3DataTable::_ZTV11Q3DataTable: 214u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11Q3DataTable) +16 Q3DataTable::metaObject +24 Q3DataTable::qt_metacast +32 Q3DataTable::qt_metacall +40 Q3DataTable::~Q3DataTable +48 Q3DataTable::~Q3DataTable +56 QFrame::event +64 Q3DataTable::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 Q3ScrollView::setVisible +128 Q3Table::sizeHint +136 Q3ScrollView::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 Q3ScrollView::mousePressEvent +168 Q3ScrollView::mouseReleaseEvent +176 Q3ScrollView::mouseDoubleClickEvent +184 Q3ScrollView::mouseMoveEvent +192 Q3ScrollView::wheelEvent +200 Q3DataTable::keyPressEvent +208 QWidget::keyReleaseEvent +216 Q3Table::focusInEvent +224 Q3Table::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 Q3Table::paintEvent +256 QWidget::moveEvent +264 Q3DataTable::resizeEvent +272 QWidget::closeEvent +280 Q3ScrollView::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 Q3Table::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 Q3Table::inputMethodQuery +392 Q3ScrollView::focusNextPrevChild +400 Q3ScrollView::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 Q3ScrollView::fontChange +432 Q3Table::windowActivationChange +440 QWidget::languageChange +448 Q3ScrollView::frameChanged +456 Q3Frame::drawFrame +464 Q3DataTable::drawContents +472 Q3ScrollView::setResizePolicy +480 Q3ScrollView::addChild +488 Q3ScrollView::moveChild +496 Q3ScrollView::setVScrollBarMode +504 Q3ScrollView::setHScrollBarMode +512 Q3ScrollView::setCornerWidget +520 Q3ScrollView::setDragAutoScroll +528 Q3ScrollView::resizeContents +536 Q3ScrollView::setContentsPos +544 Q3DataTable::drawContents +552 Q3ScrollView::drawContentsOffset +560 Q3DataTable::contentsMousePressEvent +568 Q3Table::contentsMouseReleaseEvent +576 Q3Table::contentsMouseDoubleClickEvent +584 Q3Table::contentsMouseMoveEvent +592 Q3Table::contentsDragEnterEvent +600 Q3Table::contentsDragMoveEvent +608 Q3Table::contentsDragLeaveEvent +616 Q3Table::contentsDropEvent +624 Q3ScrollView::contentsWheelEvent +632 Q3DataTable::contentsContextMenuEvent +640 Q3ScrollView::viewportPaintEvent +648 Q3Table::viewportResizeEvent +656 Q3ScrollView::viewportMousePressEvent +664 Q3ScrollView::viewportMouseReleaseEvent +672 Q3ScrollView::viewportMouseDoubleClickEvent +680 Q3ScrollView::viewportMouseMoveEvent +688 Q3ScrollView::viewportDragEnterEvent +696 Q3ScrollView::viewportDragMoveEvent +704 Q3ScrollView::viewportDragLeaveEvent +712 Q3ScrollView::viewportDropEvent +720 Q3ScrollView::viewportWheelEvent +728 Q3ScrollView::viewportContextMenuEvent +736 Q3ScrollView::setMargins +744 Q3ScrollView::setHBarGeometry +752 Q3ScrollView::setVBarGeometry +760 Q3Table::setSelectionMode +768 Q3DataTable::setItem +776 Q3Table::setText +784 Q3DataTable::setPixmap +792 Q3DataTable::item +800 Q3DataTable::text +808 Q3Table::pixmap +816 Q3DataTable::clearCell +824 Q3Table::cellGeometry +832 Q3Table::columnWidth +840 Q3Table::rowHeight +848 Q3Table::columnPos +856 Q3Table::rowPos +864 Q3Table::columnAt +872 Q3Table::rowAt +880 Q3DataTable::numRows +888 Q3DataTable::numCols +896 Q3Table::addSelection +904 Q3Table::removeSelection +912 Q3Table::removeSelection +920 Q3Table::currentSelection +928 Q3DataTable::selectRow +936 Q3Table::selectColumn +944 Q3DataTable::sortColumn +952 Q3DataTable::takeItem +960 Q3Table::setCellWidget +968 Q3Table::cellWidget +976 Q3Table::clearCellWidget +984 Q3Table::cellRect +992 Q3Table::paintCell +1000 Q3DataTable::paintCell +1008 Q3Table::paintFocus +1016 Q3Table::setFocusStyle +1024 Q3DataTable::setNumRows +1032 Q3DataTable::setNumCols +1040 Q3Table::setShowGrid +1048 Q3Table::hideRow +1056 Q3DataTable::hideColumn +1064 Q3Table::showRow +1072 Q3DataTable::showColumn +1080 Q3DataTable::setColumnWidth +1088 Q3Table::setRowHeight +1096 Q3DataTable::adjustColumn +1104 Q3Table::adjustRow +1112 Q3DataTable::setColumnStretchable +1120 Q3Table::setRowStretchable +1128 Q3Table::setSorting +1136 Q3Table::swapRows +1144 Q3DataTable::swapColumns +1152 Q3Table::swapCells +1160 Q3Table::setLeftMargin +1168 Q3Table::setTopMargin +1176 Q3Table::setCurrentCell +1184 Q3Table::setColumnMovingEnabled +1192 Q3Table::setRowMovingEnabled +1200 Q3Table::setReadOnly +1208 Q3Table::setRowReadOnly +1216 Q3Table::setColumnReadOnly +1224 Q3Table::setDragEnabled +1232 Q3Table::insertRows +1240 Q3Table::insertColumns +1248 Q3Table::removeRow +1256 Q3Table::removeRows +1264 Q3DataTable::removeColumn +1272 Q3Table::removeColumns +1280 Q3Table::editCell +1288 Q3Table::dragObject +1296 Q3Table::startDrag +1304 Q3Table::paintEmptyArea +1312 Q3DataTable::activateNextCell +1320 Q3DataTable::createEditor +1328 Q3Table::setCellContentFromEditor +1336 Q3DataTable::beginEdit +1344 Q3DataTable::endEdit +1352 Q3DataTable::resizeData +1360 Q3Table::insertWidget +1368 Q3Table::columnWidthChanged +1376 Q3Table::rowHeightChanged +1384 Q3Table::columnIndexChanged +1392 Q3Table::rowIndexChanged +1400 Q3DataTable::columnClicked +1408 Q3DataTable::addColumn +1416 Q3DataTable::setColumn +1424 Q3DataTable::setSqlCursor +1432 Q3DataTable::setNullText +1440 Q3DataTable::setTrueText +1448 Q3DataTable::setFalseText +1456 Q3DataTable::setDateFormat +1464 Q3DataTable::setConfirmEdits +1472 Q3DataTable::setConfirmInsert +1480 Q3DataTable::setConfirmUpdate +1488 Q3DataTable::setConfirmDelete +1496 Q3DataTable::setConfirmCancels +1504 Q3DataTable::setAutoDelete +1512 Q3DataTable::setAutoEdit +1520 Q3DataTable::setFilter +1528 Q3DataTable::setSort +1536 Q3DataTable::setSort +1544 Q3DataTable::find +1552 Q3DataTable::sortAscending +1560 Q3DataTable::sortDescending +1568 Q3DataTable::refresh +1576 Q3DataTable::insertCurrent +1584 Q3DataTable::updateCurrent +1592 Q3DataTable::deleteCurrent +1600 Q3DataTable::confirmEdit +1608 Q3DataTable::confirmCancel +1616 Q3DataTable::handleError +1624 Q3DataTable::beginInsert +1632 Q3DataTable::beginUpdate +1640 Q3DataTable::paintField +1648 Q3DataTable::fieldAlignment +1656 (int (*)(...))-0x00000000000000010 +1664 (int (*)(...))(& _ZTI11Q3DataTable) +1672 Q3DataTable::_ZThn16_N11Q3DataTableD1Ev +1680 Q3DataTable::_ZThn16_N11Q3DataTableD0Ev +1688 QWidget::_ZThn16_NK7QWidget7devTypeEv +1696 QWidget::_ZThn16_NK7QWidget11paintEngineEv +1704 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3DataTable + size=400 align=8 + base size=400 base align=8 +Q3DataTable (0x7fea0f0a6230) 0 + vptr=((& Q3DataTable::_ZTV11Q3DataTable) + 16u) + Q3Table (0x7fea0f0a62a0) 0 + primary-for Q3DataTable (0x7fea0f0a6230) + Q3ScrollView (0x7fea0f0a6310) 0 + primary-for Q3Table (0x7fea0f0a62a0) + Q3Frame (0x7fea0f0a6380) 0 + primary-for Q3ScrollView (0x7fea0f0a6310) + QFrame (0x7fea0f0a63f0) 0 + primary-for Q3Frame (0x7fea0f0a6380) + QWidget (0x7fea0f09b380) 0 + primary-for QFrame (0x7fea0f0a63f0) + QObject (0x7fea0f0a6460) 0 + primary-for QWidget (0x7fea0f09b380) + QPaintDevice (0x7fea0f0a64d0) 16 + vptr=((& Q3DataTable::_ZTV11Q3DataTable) + 1672u) + +Vtable for Q3SqlSelectCursor +Q3SqlSelectCursor::_ZTV17Q3SqlSelectCursor: 40u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17Q3SqlSelectCursor) +16 Q3SqlSelectCursor::~Q3SqlSelectCursor +24 Q3SqlSelectCursor::~Q3SqlSelectCursor +32 Q3SqlCursor::setValue +40 Q3SqlSelectCursor::primaryIndex +48 Q3SqlSelectCursor::index +56 Q3SqlSelectCursor::setPrimaryIndex +64 Q3SqlSelectCursor::append +72 Q3SqlSelectCursor::insert +80 Q3SqlSelectCursor::remove +88 Q3SqlSelectCursor::clear +96 Q3SqlSelectCursor::setGenerated +104 Q3SqlSelectCursor::setGenerated +112 Q3SqlSelectCursor::editBuffer +120 Q3SqlSelectCursor::primeInsert +128 Q3SqlSelectCursor::primeUpdate +136 Q3SqlSelectCursor::primeDelete +144 Q3SqlSelectCursor::insert +152 Q3SqlSelectCursor::update +160 Q3SqlSelectCursor::del +168 Q3SqlSelectCursor::setMode +176 Q3SqlCursor::setCalculated +184 Q3SqlCursor::setTrimmed +192 Q3SqlSelectCursor::select +200 Q3SqlSelectCursor::setSort +208 Q3SqlSelectCursor::setFilter +216 Q3SqlSelectCursor::setName +224 Q3SqlCursor::seek +232 Q3SqlCursor::next +240 Q3SqlCursor::prev +248 Q3SqlCursor::first +256 Q3SqlCursor::last +264 Q3SqlSelectCursor::exec +272 Q3SqlCursor::calculateField +280 Q3SqlCursor::update +288 Q3SqlCursor::del +296 Q3SqlCursor::toString +304 Q3SqlCursor::toString +312 Q3SqlCursor::toString + +Class Q3SqlSelectCursor + size=40 align=8 + base size=40 base align=8 +Q3SqlSelectCursor (0x7fea0f0d7f50) 0 + vptr=((& Q3SqlSelectCursor::_ZTV17Q3SqlSelectCursor) + 16u) + Q3SqlCursor (0x7fea0f09bc00) 0 + primary-for Q3SqlSelectCursor (0x7fea0f0d7f50) + QSqlRecord (0x7fea0f0d7150) 8 + QSqlQuery (0x7fea0eed5000) 16 + +Vtable for Q3DataBrowser +Q3DataBrowser::_ZTV13Q3DataBrowser: 91u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13Q3DataBrowser) +16 Q3DataBrowser::metaObject +24 Q3DataBrowser::qt_metacast +32 Q3DataBrowser::qt_metacall +40 Q3DataBrowser::~Q3DataBrowser +48 Q3DataBrowser::~Q3DataBrowser +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3DataBrowser::setSqlCursor +456 Q3DataBrowser::setForm +464 Q3DataBrowser::setConfirmEdits +472 Q3DataBrowser::setConfirmInsert +480 Q3DataBrowser::setConfirmUpdate +488 Q3DataBrowser::setConfirmDelete +496 Q3DataBrowser::setConfirmCancels +504 Q3DataBrowser::setReadOnly +512 Q3DataBrowser::setAutoEdit +520 Q3DataBrowser::seek +528 Q3DataBrowser::refresh +536 Q3DataBrowser::insert +544 Q3DataBrowser::update +552 Q3DataBrowser::del +560 Q3DataBrowser::first +568 Q3DataBrowser::last +576 Q3DataBrowser::next +584 Q3DataBrowser::prev +592 Q3DataBrowser::readFields +600 Q3DataBrowser::writeFields +608 Q3DataBrowser::clearValues +616 Q3DataBrowser::insertCurrent +624 Q3DataBrowser::updateCurrent +632 Q3DataBrowser::deleteCurrent +640 Q3DataBrowser::currentEdited +648 Q3DataBrowser::confirmEdit +656 Q3DataBrowser::confirmCancel +664 Q3DataBrowser::handleError +672 (int (*)(...))-0x00000000000000010 +680 (int (*)(...))(& _ZTI13Q3DataBrowser) +688 Q3DataBrowser::_ZThn16_N13Q3DataBrowserD1Ev +696 Q3DataBrowser::_ZThn16_N13Q3DataBrowserD0Ev +704 QWidget::_ZThn16_NK7QWidget7devTypeEv +712 QWidget::_ZThn16_NK7QWidget11paintEngineEv +720 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3DataBrowser + size=48 align=8 + base size=48 base align=8 +Q3DataBrowser (0x7fea0ef01000) 0 + vptr=((& Q3DataBrowser::_ZTV13Q3DataBrowser) + 16u) + QWidget (0x7fea0eefc400) 0 + primary-for Q3DataBrowser (0x7fea0ef01000) + QObject (0x7fea0ef01070) 0 + primary-for QWidget (0x7fea0eefc400) + QPaintDevice (0x7fea0ef010e0) 16 + vptr=((& Q3DataBrowser::_ZTV13Q3DataBrowser) + 688u) + +Vtable for Q3SqlFieldInfo +Q3SqlFieldInfo::_ZTV14Q3SqlFieldInfo: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14Q3SqlFieldInfo) +16 Q3SqlFieldInfo::~Q3SqlFieldInfo +24 Q3SqlFieldInfo::~Q3SqlFieldInfo +32 Q3SqlFieldInfo::setTrim +40 Q3SqlFieldInfo::setGenerated +48 Q3SqlFieldInfo::setCalculated + +Class Q3SqlFieldInfo + size=64 align=8 + base size=64 base align=8 +Q3SqlFieldInfo (0x7fea0ef27700) 0 + vptr=((& Q3SqlFieldInfo::_ZTV14Q3SqlFieldInfo) + 16u) + +Vtable for Q3SqlForm +Q3SqlForm::_ZTV9Q3SqlForm: 26u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9Q3SqlForm) +16 Q3SqlForm::metaObject +24 Q3SqlForm::qt_metacast +32 Q3SqlForm::qt_metacall +40 Q3SqlForm::~Q3SqlForm +48 Q3SqlForm::~Q3SqlForm +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 Q3SqlForm::insert +120 Q3SqlForm::remove +128 Q3SqlForm::setRecord +136 Q3SqlForm::readField +144 Q3SqlForm::writeField +152 Q3SqlForm::readFields +160 Q3SqlForm::writeFields +168 Q3SqlForm::clear +176 Q3SqlForm::clearValues +184 Q3SqlForm::insert +192 Q3SqlForm::remove +200 Q3SqlForm::sync + +Class Q3SqlForm + size=24 align=8 + base size=24 base align=8 +Q3SqlForm (0x7fea0ef8be00) 0 + vptr=((& Q3SqlForm::_ZTV9Q3SqlForm) + 16u) + QObject (0x7fea0ef8be70) 0 + primary-for Q3SqlForm (0x7fea0ef8be00) + +Vtable for Q3SqlPropertyMap +Q3SqlPropertyMap::_ZTV16Q3SqlPropertyMap: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16Q3SqlPropertyMap) +16 Q3SqlPropertyMap::~Q3SqlPropertyMap +24 Q3SqlPropertyMap::~Q3SqlPropertyMap +32 Q3SqlPropertyMap::setProperty + +Class Q3SqlPropertyMap + size=16 align=8 + base size=16 base align=8 +Q3SqlPropertyMap (0x7fea0efa31c0) 0 + vptr=((& Q3SqlPropertyMap::_ZTV16Q3SqlPropertyMap) + 16u) + +Class Q3SqlRecordInfo + size=8 align=8 + base size=8 base align=8 +Q3SqlRecordInfo (0x7fea0efc4d90) 0 + Q3ValueList (0x7fea0efc4e00) 0 + QLinkedList (0x7fea0efc4e70) 0 + +Vtable for Q3DataView +Q3DataView::_ZTV10Q3DataView: 69u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10Q3DataView) +16 Q3DataView::metaObject +24 Q3DataView::qt_metacast +32 Q3DataView::qt_metacall +40 Q3DataView::~Q3DataView +48 Q3DataView::~Q3DataView +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3DataView::setForm +456 Q3DataView::setRecord +464 Q3DataView::refresh +472 Q3DataView::readFields +480 Q3DataView::writeFields +488 Q3DataView::clearValues +496 (int (*)(...))-0x00000000000000010 +504 (int (*)(...))(& _ZTI10Q3DataView) +512 Q3DataView::_ZThn16_N10Q3DataViewD1Ev +520 Q3DataView::_ZThn16_N10Q3DataViewD0Ev +528 QWidget::_ZThn16_NK7QWidget7devTypeEv +536 QWidget::_ZThn16_NK7QWidget11paintEngineEv +544 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3DataView + size=48 align=8 + base size=48 base align=8 +Q3DataView (0x7fea0ee9d0e0) 0 + vptr=((& Q3DataView::_ZTV10Q3DataView) + 16u) + QWidget (0x7fea0ee91c00) 0 + primary-for Q3DataView (0x7fea0ee9d0e0) + QObject (0x7fea0ee9d150) 0 + primary-for QWidget (0x7fea0ee91c00) + QPaintDevice (0x7fea0ee9d1c0) 16 + vptr=((& Q3DataView::_ZTV10Q3DataView) + 512u) + +Class Q3StyleSheetItem + size=8 align=8 + base size=8 base align=8 +Q3StyleSheetItem (0x7fea0eeb24d0) 0 + +Vtable for Q3StyleSheet +Q3StyleSheet::_ZTV12Q3StyleSheet: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12Q3StyleSheet) +16 Q3StyleSheet::metaObject +24 Q3StyleSheet::qt_metacast +32 Q3StyleSheet::qt_metacall +40 Q3StyleSheet::~Q3StyleSheet +48 Q3StyleSheet::~Q3StyleSheet +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 Q3StyleSheet::scaleFont +120 Q3StyleSheet::error + +Class Q3StyleSheet + size=32 align=8 + base size=32 base align=8 +Q3StyleSheet (0x7fea0eec8310) 0 + vptr=((& Q3StyleSheet::_ZTV12Q3StyleSheet) + 16u) + QObject (0x7fea0eec8380) 0 + primary-for Q3StyleSheet (0x7fea0eec8310) + +Vtable for Q3MimeSourceFactory +Q3MimeSourceFactory::_ZTV19Q3MimeSourceFactory: 13u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19Q3MimeSourceFactory) +16 Q3MimeSourceFactory::~Q3MimeSourceFactory +24 Q3MimeSourceFactory::~Q3MimeSourceFactory +32 Q3MimeSourceFactory::data +40 Q3MimeSourceFactory::makeAbsolute +48 Q3MimeSourceFactory::setText +56 Q3MimeSourceFactory::setImage +64 Q3MimeSourceFactory::setPixmap +72 Q3MimeSourceFactory::setData +80 Q3MimeSourceFactory::setFilePath +88 Q3MimeSourceFactory::filePath +96 Q3MimeSourceFactory::setExtensionType + +Class Q3MimeSourceFactory + size=16 align=8 + base size=16 base align=8 +Q3MimeSourceFactory (0x7fea0ecf7af0) 0 + vptr=((& Q3MimeSourceFactory::_ZTV19Q3MimeSourceFactory) + 16u) + +Class Q3TextEditOptimPrivate::Tag + size=56 align=8 + base size=56 base align=8 +Q3TextEditOptimPrivate::Tag (0x7fea0ed003f0) 0 + +Class Q3TextEditOptimPrivate::Selection + size=8 align=4 + base size=8 base align=4 +Q3TextEditOptimPrivate::Selection (0x7fea0ed00c40) 0 + +Class Q3TextEditOptimPrivate + size=72 align=8 + base size=72 base align=8 +Q3TextEditOptimPrivate (0x7fea0ed00380) 0 + +Class Q3TextEdit::UndoRedoInfo + size=56 align=8 + base size=56 base align=8 +Q3TextEdit::UndoRedoInfo (0x7fea0ed85b60) 0 + +Vtable for Q3TextEdit +Q3TextEdit::_ZTV10Q3TextEdit: 175u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10Q3TextEdit) +16 Q3TextEdit::metaObject +24 Q3TextEdit::qt_metacast +32 Q3TextEdit::qt_metacall +40 Q3TextEdit::~Q3TextEdit +48 Q3TextEdit::~Q3TextEdit +56 Q3TextEdit::event +64 Q3TextEdit::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 Q3ScrollView::setVisible +128 Q3TextEdit::sizeHint +136 Q3ScrollView::minimumSizeHint +144 Q3TextEdit::heightForWidth +152 QWidget::paintEngine +160 Q3ScrollView::mousePressEvent +168 Q3ScrollView::mouseReleaseEvent +176 Q3ScrollView::mouseDoubleClickEvent +184 Q3ScrollView::mouseMoveEvent +192 Q3ScrollView::wheelEvent +200 Q3TextEdit::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 Q3Frame::paintEvent +256 QWidget::moveEvent +264 Q3TextEdit::resizeEvent +272 QWidget::closeEvent +280 Q3ScrollView::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 Q3TextEdit::changeEvent +368 QWidget::metric +376 Q3TextEdit::inputMethodEvent +384 Q3TextEdit::inputMethodQuery +392 Q3TextEdit::focusNextPrevChild +400 Q3ScrollView::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 Q3ScrollView::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3ScrollView::frameChanged +456 Q3Frame::drawFrame +464 Q3TextEdit::drawContents +472 Q3ScrollView::setResizePolicy +480 Q3ScrollView::addChild +488 Q3ScrollView::moveChild +496 Q3ScrollView::setVScrollBarMode +504 Q3ScrollView::setHScrollBarMode +512 Q3ScrollView::setCornerWidget +520 Q3ScrollView::setDragAutoScroll +528 Q3ScrollView::resizeContents +536 Q3ScrollView::setContentsPos +544 Q3TextEdit::drawContents +552 Q3ScrollView::drawContentsOffset +560 Q3TextEdit::contentsMousePressEvent +568 Q3TextEdit::contentsMouseReleaseEvent +576 Q3TextEdit::contentsMouseDoubleClickEvent +584 Q3TextEdit::contentsMouseMoveEvent +592 Q3TextEdit::contentsDragEnterEvent +600 Q3TextEdit::contentsDragMoveEvent +608 Q3TextEdit::contentsDragLeaveEvent +616 Q3TextEdit::contentsDropEvent +624 Q3TextEdit::contentsWheelEvent +632 Q3TextEdit::contentsContextMenuEvent +640 Q3ScrollView::viewportPaintEvent +648 Q3TextEdit::viewportResizeEvent +656 Q3ScrollView::viewportMousePressEvent +664 Q3ScrollView::viewportMouseReleaseEvent +672 Q3ScrollView::viewportMouseDoubleClickEvent +680 Q3ScrollView::viewportMouseMoveEvent +688 Q3ScrollView::viewportDragEnterEvent +696 Q3ScrollView::viewportDragMoveEvent +704 Q3ScrollView::viewportDragLeaveEvent +712 Q3ScrollView::viewportDropEvent +720 Q3ScrollView::viewportWheelEvent +728 Q3ScrollView::viewportContextMenuEvent +736 Q3ScrollView::setMargins +744 Q3ScrollView::setHBarGeometry +752 Q3ScrollView::setVBarGeometry +760 Q3TextEdit::find +768 Q3TextEdit::getFormat +776 Q3TextEdit::getParagraphFormat +784 Q3TextEdit::setMimeSourceFactory +792 Q3TextEdit::setStyleSheet +800 Q3TextEdit::scrollToAnchor +808 Q3TextEdit::setPaper +816 Q3TextEdit::setLinkUnderline +824 Q3TextEdit::setWordWrap +832 Q3TextEdit::setWrapColumnOrWidth +840 Q3TextEdit::setWrapPolicy +848 Q3TextEdit::copy +856 Q3TextEdit::append +864 Q3TextEdit::setText +872 Q3TextEdit::setTextFormat +880 Q3TextEdit::selectAll +888 Q3TextEdit::setTabStopWidth +896 Q3TextEdit::zoomIn +904 Q3TextEdit::zoomIn +912 Q3TextEdit::zoomOut +920 Q3TextEdit::zoomOut +928 Q3TextEdit::zoomTo +936 Q3TextEdit::sync +944 Q3TextEdit::setReadOnly +952 Q3TextEdit::undo +960 Q3TextEdit::redo +968 Q3TextEdit::cut +976 Q3TextEdit::paste +984 Q3TextEdit::pasteSubType +992 Q3TextEdit::clear +1000 Q3TextEdit::del +1008 Q3TextEdit::indent +1016 Q3TextEdit::setItalic +1024 Q3TextEdit::setBold +1032 Q3TextEdit::setUnderline +1040 Q3TextEdit::setFamily +1048 Q3TextEdit::setPointSize +1056 Q3TextEdit::setColor +1064 Q3TextEdit::setVerticalAlignment +1072 Q3TextEdit::setAlignment +1080 Q3TextEdit::setParagType +1088 Q3TextEdit::setCursorPosition +1096 Q3TextEdit::setSelection +1104 Q3TextEdit::setSelectionAttributes +1112 Q3TextEdit::setModified +1120 Q3TextEdit::resetFormat +1128 Q3TextEdit::setUndoDepth +1136 Q3TextEdit::setFormat +1144 Q3TextEdit::ensureCursorVisible +1152 Q3TextEdit::placeCursor +1160 Q3TextEdit::moveCursor +1168 Q3TextEdit::doKeyboardAction +1176 Q3TextEdit::removeSelectedText +1184 Q3TextEdit::removeSelection +1192 Q3TextEdit::setCurrentFont +1200 Q3TextEdit::setOverwriteMode +1208 Q3TextEdit::scrollToBottom +1216 Q3TextEdit::insert +1224 Q3TextEdit::insert +1232 Q3TextEdit::insertAt +1240 Q3TextEdit::removeParagraph +1248 Q3TextEdit::insertParagraph +1256 Q3TextEdit::setParagraphBackgroundColor +1264 Q3TextEdit::clearParagraphBackground +1272 Q3TextEdit::setUndoRedoEnabled +1280 Q3TextEdit::setTabChangesFocus +1288 Q3TextEdit::createPopupMenu +1296 Q3TextEdit::createPopupMenu +1304 Q3TextEdit::doChangeInterval +1312 Q3TextEdit::sliderReleased +1320 Q3TextEdit::linksEnabled +1328 Q3TextEdit::emitHighlighted +1336 Q3TextEdit::emitLinkClicked +1344 (int (*)(...))-0x00000000000000010 +1352 (int (*)(...))(& _ZTI10Q3TextEdit) +1360 Q3TextEdit::_ZThn16_N10Q3TextEditD1Ev +1368 Q3TextEdit::_ZThn16_N10Q3TextEditD0Ev +1376 QWidget::_ZThn16_NK7QWidget7devTypeEv +1384 QWidget::_ZThn16_NK7QWidget11paintEngineEv +1392 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3TextEdit + size=272 align=8 + base size=266 base align=8 +Q3TextEdit (0x7fea0ed65150) 0 + vptr=((& Q3TextEdit::_ZTV10Q3TextEdit) + 16u) + Q3ScrollView (0x7fea0ed651c0) 0 + primary-for Q3TextEdit (0x7fea0ed65150) + Q3Frame (0x7fea0ed65230) 0 + primary-for Q3ScrollView (0x7fea0ed651c0) + QFrame (0x7fea0ed652a0) 0 + primary-for Q3Frame (0x7fea0ed65230) + QWidget (0x7fea0ed64600) 0 + primary-for QFrame (0x7fea0ed652a0) + QObject (0x7fea0ed65310) 0 + primary-for QWidget (0x7fea0ed64600) + QPaintDevice (0x7fea0ed65380) 16 + vptr=((& Q3TextEdit::_ZTV10Q3TextEdit) + 1360u) + +Vtable for Q3SyntaxHighlighter +Q3SyntaxHighlighter::_ZTV19Q3SyntaxHighlighter: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19Q3SyntaxHighlighter) +16 Q3SyntaxHighlighter::~Q3SyntaxHighlighter +24 Q3SyntaxHighlighter::~Q3SyntaxHighlighter +32 __cxa_pure_virtual + +Class Q3SyntaxHighlighter + size=32 align=8 + base size=32 base align=8 +Q3SyntaxHighlighter (0x7fea0ec392a0) 0 + vptr=((& Q3SyntaxHighlighter::_ZTV19Q3SyntaxHighlighter) + 16u) + +Vtable for Q3TextView +Q3TextView::_ZTV10Q3TextView: 175u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10Q3TextView) +16 Q3TextView::metaObject +24 Q3TextView::qt_metacast +32 Q3TextView::qt_metacall +40 Q3TextView::~Q3TextView +48 Q3TextView::~Q3TextView +56 Q3TextEdit::event +64 Q3TextEdit::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 Q3ScrollView::setVisible +128 Q3TextEdit::sizeHint +136 Q3ScrollView::minimumSizeHint +144 Q3TextEdit::heightForWidth +152 QWidget::paintEngine +160 Q3ScrollView::mousePressEvent +168 Q3ScrollView::mouseReleaseEvent +176 Q3ScrollView::mouseDoubleClickEvent +184 Q3ScrollView::mouseMoveEvent +192 Q3ScrollView::wheelEvent +200 Q3TextEdit::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 Q3Frame::paintEvent +256 QWidget::moveEvent +264 Q3TextEdit::resizeEvent +272 QWidget::closeEvent +280 Q3ScrollView::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 Q3TextEdit::changeEvent +368 QWidget::metric +376 Q3TextEdit::inputMethodEvent +384 Q3TextEdit::inputMethodQuery +392 Q3TextEdit::focusNextPrevChild +400 Q3ScrollView::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 Q3ScrollView::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3ScrollView::frameChanged +456 Q3Frame::drawFrame +464 Q3TextEdit::drawContents +472 Q3ScrollView::setResizePolicy +480 Q3ScrollView::addChild +488 Q3ScrollView::moveChild +496 Q3ScrollView::setVScrollBarMode +504 Q3ScrollView::setHScrollBarMode +512 Q3ScrollView::setCornerWidget +520 Q3ScrollView::setDragAutoScroll +528 Q3ScrollView::resizeContents +536 Q3ScrollView::setContentsPos +544 Q3TextEdit::drawContents +552 Q3ScrollView::drawContentsOffset +560 Q3TextEdit::contentsMousePressEvent +568 Q3TextEdit::contentsMouseReleaseEvent +576 Q3TextEdit::contentsMouseDoubleClickEvent +584 Q3TextEdit::contentsMouseMoveEvent +592 Q3TextEdit::contentsDragEnterEvent +600 Q3TextEdit::contentsDragMoveEvent +608 Q3TextEdit::contentsDragLeaveEvent +616 Q3TextEdit::contentsDropEvent +624 Q3TextEdit::contentsWheelEvent +632 Q3TextEdit::contentsContextMenuEvent +640 Q3ScrollView::viewportPaintEvent +648 Q3TextEdit::viewportResizeEvent +656 Q3ScrollView::viewportMousePressEvent +664 Q3ScrollView::viewportMouseReleaseEvent +672 Q3ScrollView::viewportMouseDoubleClickEvent +680 Q3ScrollView::viewportMouseMoveEvent +688 Q3ScrollView::viewportDragEnterEvent +696 Q3ScrollView::viewportDragMoveEvent +704 Q3ScrollView::viewportDragLeaveEvent +712 Q3ScrollView::viewportDropEvent +720 Q3ScrollView::viewportWheelEvent +728 Q3ScrollView::viewportContextMenuEvent +736 Q3ScrollView::setMargins +744 Q3ScrollView::setHBarGeometry +752 Q3ScrollView::setVBarGeometry +760 Q3TextEdit::find +768 Q3TextEdit::getFormat +776 Q3TextEdit::getParagraphFormat +784 Q3TextEdit::setMimeSourceFactory +792 Q3TextEdit::setStyleSheet +800 Q3TextEdit::scrollToAnchor +808 Q3TextEdit::setPaper +816 Q3TextEdit::setLinkUnderline +824 Q3TextEdit::setWordWrap +832 Q3TextEdit::setWrapColumnOrWidth +840 Q3TextEdit::setWrapPolicy +848 Q3TextEdit::copy +856 Q3TextEdit::append +864 Q3TextEdit::setText +872 Q3TextEdit::setTextFormat +880 Q3TextEdit::selectAll +888 Q3TextEdit::setTabStopWidth +896 Q3TextEdit::zoomIn +904 Q3TextEdit::zoomIn +912 Q3TextEdit::zoomOut +920 Q3TextEdit::zoomOut +928 Q3TextEdit::zoomTo +936 Q3TextEdit::sync +944 Q3TextEdit::setReadOnly +952 Q3TextEdit::undo +960 Q3TextEdit::redo +968 Q3TextEdit::cut +976 Q3TextEdit::paste +984 Q3TextEdit::pasteSubType +992 Q3TextEdit::clear +1000 Q3TextEdit::del +1008 Q3TextEdit::indent +1016 Q3TextEdit::setItalic +1024 Q3TextEdit::setBold +1032 Q3TextEdit::setUnderline +1040 Q3TextEdit::setFamily +1048 Q3TextEdit::setPointSize +1056 Q3TextEdit::setColor +1064 Q3TextEdit::setVerticalAlignment +1072 Q3TextEdit::setAlignment +1080 Q3TextEdit::setParagType +1088 Q3TextEdit::setCursorPosition +1096 Q3TextEdit::setSelection +1104 Q3TextEdit::setSelectionAttributes +1112 Q3TextEdit::setModified +1120 Q3TextEdit::resetFormat +1128 Q3TextEdit::setUndoDepth +1136 Q3TextEdit::setFormat +1144 Q3TextEdit::ensureCursorVisible +1152 Q3TextEdit::placeCursor +1160 Q3TextEdit::moveCursor +1168 Q3TextEdit::doKeyboardAction +1176 Q3TextEdit::removeSelectedText +1184 Q3TextEdit::removeSelection +1192 Q3TextEdit::setCurrentFont +1200 Q3TextEdit::setOverwriteMode +1208 Q3TextEdit::scrollToBottom +1216 Q3TextEdit::insert +1224 Q3TextEdit::insert +1232 Q3TextEdit::insertAt +1240 Q3TextEdit::removeParagraph +1248 Q3TextEdit::insertParagraph +1256 Q3TextEdit::setParagraphBackgroundColor +1264 Q3TextEdit::clearParagraphBackground +1272 Q3TextEdit::setUndoRedoEnabled +1280 Q3TextEdit::setTabChangesFocus +1288 Q3TextEdit::createPopupMenu +1296 Q3TextEdit::createPopupMenu +1304 Q3TextEdit::doChangeInterval +1312 Q3TextEdit::sliderReleased +1320 Q3TextEdit::linksEnabled +1328 Q3TextEdit::emitHighlighted +1336 Q3TextEdit::emitLinkClicked +1344 (int (*)(...))-0x00000000000000010 +1352 (int (*)(...))(& _ZTI10Q3TextView) +1360 Q3TextView::_ZThn16_N10Q3TextViewD1Ev +1368 Q3TextView::_ZThn16_N10Q3TextViewD0Ev +1376 QWidget::_ZThn16_NK7QWidget7devTypeEv +1384 QWidget::_ZThn16_NK7QWidget11paintEngineEv +1392 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3TextView + size=272 align=8 + base size=266 base align=8 +Q3TextView (0x7fea0ec39690) 0 + vptr=((& Q3TextView::_ZTV10Q3TextView) + 16u) + Q3TextEdit (0x7fea0ec39700) 0 + primary-for Q3TextView (0x7fea0ec39690) + Q3ScrollView (0x7fea0ec39770) 0 + primary-for Q3TextEdit (0x7fea0ec39700) + Q3Frame (0x7fea0ec397e0) 0 + primary-for Q3ScrollView (0x7fea0ec39770) + QFrame (0x7fea0ec39850) 0 + primary-for Q3Frame (0x7fea0ec397e0) + QWidget (0x7fea0ebf2980) 0 + primary-for QFrame (0x7fea0ec39850) + QObject (0x7fea0ec398c0) 0 + primary-for QWidget (0x7fea0ebf2980) + QPaintDevice (0x7fea0ec39930) 16 + vptr=((& Q3TextView::_ZTV10Q3TextView) + 1360u) + +Class Q3CString + size=8 align=8 + base size=8 base align=8 +Q3CString (0x7fea0ec46d90) 0 + QByteArray (0x7fea0ec46e00) 0 + +Vtable for Q3TextStream +Q3TextStream::_ZTV12Q3TextStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12Q3TextStream) +16 Q3TextStream::~Q3TextStream +24 Q3TextStream::~Q3TextStream + +Class Q3TextStream + size=136 align=8 + base size=136 base align=8 +Q3TextStream (0x7fea0eaf8310) 0 + vptr=((& Q3TextStream::_ZTV12Q3TextStream) + 16u) + +Class Q3TSManip + size=24 align=8 + base size=20 base align=8 +Q3TSManip (0x7fea0eb31bd0) 0 + +Vtable for Q3TextBrowser +Q3TextBrowser::_ZTV13Q3TextBrowser: 180u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13Q3TextBrowser) +16 Q3TextBrowser::metaObject +24 Q3TextBrowser::qt_metacast +32 Q3TextBrowser::qt_metacall +40 Q3TextBrowser::~Q3TextBrowser +48 Q3TextBrowser::~Q3TextBrowser +56 Q3TextEdit::event +64 Q3TextEdit::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 Q3ScrollView::setVisible +128 Q3TextEdit::sizeHint +136 Q3ScrollView::minimumSizeHint +144 Q3TextEdit::heightForWidth +152 QWidget::paintEngine +160 Q3ScrollView::mousePressEvent +168 Q3ScrollView::mouseReleaseEvent +176 Q3ScrollView::mouseDoubleClickEvent +184 Q3ScrollView::mouseMoveEvent +192 Q3ScrollView::wheelEvent +200 Q3TextBrowser::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 Q3Frame::paintEvent +256 QWidget::moveEvent +264 Q3TextEdit::resizeEvent +272 QWidget::closeEvent +280 Q3ScrollView::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 Q3TextEdit::changeEvent +368 QWidget::metric +376 Q3TextEdit::inputMethodEvent +384 Q3TextEdit::inputMethodQuery +392 Q3TextEdit::focusNextPrevChild +400 Q3ScrollView::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 Q3ScrollView::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3ScrollView::frameChanged +456 Q3Frame::drawFrame +464 Q3TextEdit::drawContents +472 Q3ScrollView::setResizePolicy +480 Q3ScrollView::addChild +488 Q3ScrollView::moveChild +496 Q3ScrollView::setVScrollBarMode +504 Q3ScrollView::setHScrollBarMode +512 Q3ScrollView::setCornerWidget +520 Q3ScrollView::setDragAutoScroll +528 Q3ScrollView::resizeContents +536 Q3ScrollView::setContentsPos +544 Q3TextEdit::drawContents +552 Q3ScrollView::drawContentsOffset +560 Q3TextEdit::contentsMousePressEvent +568 Q3TextEdit::contentsMouseReleaseEvent +576 Q3TextEdit::contentsMouseDoubleClickEvent +584 Q3TextEdit::contentsMouseMoveEvent +592 Q3TextEdit::contentsDragEnterEvent +600 Q3TextEdit::contentsDragMoveEvent +608 Q3TextEdit::contentsDragLeaveEvent +616 Q3TextEdit::contentsDropEvent +624 Q3TextEdit::contentsWheelEvent +632 Q3TextEdit::contentsContextMenuEvent +640 Q3ScrollView::viewportPaintEvent +648 Q3TextEdit::viewportResizeEvent +656 Q3ScrollView::viewportMousePressEvent +664 Q3ScrollView::viewportMouseReleaseEvent +672 Q3ScrollView::viewportMouseDoubleClickEvent +680 Q3ScrollView::viewportMouseMoveEvent +688 Q3ScrollView::viewportDragEnterEvent +696 Q3ScrollView::viewportDragMoveEvent +704 Q3ScrollView::viewportDragLeaveEvent +712 Q3ScrollView::viewportDropEvent +720 Q3ScrollView::viewportWheelEvent +728 Q3ScrollView::viewportContextMenuEvent +736 Q3ScrollView::setMargins +744 Q3ScrollView::setHBarGeometry +752 Q3ScrollView::setVBarGeometry +760 Q3TextEdit::find +768 Q3TextEdit::getFormat +776 Q3TextEdit::getParagraphFormat +784 Q3TextEdit::setMimeSourceFactory +792 Q3TextEdit::setStyleSheet +800 Q3TextEdit::scrollToAnchor +808 Q3TextEdit::setPaper +816 Q3TextEdit::setLinkUnderline +824 Q3TextEdit::setWordWrap +832 Q3TextEdit::setWrapColumnOrWidth +840 Q3TextEdit::setWrapPolicy +848 Q3TextEdit::copy +856 Q3TextEdit::append +864 Q3TextBrowser::setText +872 Q3TextEdit::setTextFormat +880 Q3TextEdit::selectAll +888 Q3TextEdit::setTabStopWidth +896 Q3TextEdit::zoomIn +904 Q3TextEdit::zoomIn +912 Q3TextEdit::zoomOut +920 Q3TextEdit::zoomOut +928 Q3TextEdit::zoomTo +936 Q3TextEdit::sync +944 Q3TextEdit::setReadOnly +952 Q3TextEdit::undo +960 Q3TextEdit::redo +968 Q3TextEdit::cut +976 Q3TextEdit::paste +984 Q3TextEdit::pasteSubType +992 Q3TextEdit::clear +1000 Q3TextEdit::del +1008 Q3TextEdit::indent +1016 Q3TextEdit::setItalic +1024 Q3TextEdit::setBold +1032 Q3TextEdit::setUnderline +1040 Q3TextEdit::setFamily +1048 Q3TextEdit::setPointSize +1056 Q3TextEdit::setColor +1064 Q3TextEdit::setVerticalAlignment +1072 Q3TextEdit::setAlignment +1080 Q3TextEdit::setParagType +1088 Q3TextEdit::setCursorPosition +1096 Q3TextEdit::setSelection +1104 Q3TextEdit::setSelectionAttributes +1112 Q3TextEdit::setModified +1120 Q3TextEdit::resetFormat +1128 Q3TextEdit::setUndoDepth +1136 Q3TextEdit::setFormat +1144 Q3TextEdit::ensureCursorVisible +1152 Q3TextEdit::placeCursor +1160 Q3TextEdit::moveCursor +1168 Q3TextEdit::doKeyboardAction +1176 Q3TextEdit::removeSelectedText +1184 Q3TextEdit::removeSelection +1192 Q3TextEdit::setCurrentFont +1200 Q3TextEdit::setOverwriteMode +1208 Q3TextEdit::scrollToBottom +1216 Q3TextEdit::insert +1224 Q3TextEdit::insert +1232 Q3TextEdit::insertAt +1240 Q3TextEdit::removeParagraph +1248 Q3TextEdit::insertParagraph +1256 Q3TextEdit::setParagraphBackgroundColor +1264 Q3TextEdit::clearParagraphBackground +1272 Q3TextEdit::setUndoRedoEnabled +1280 Q3TextEdit::setTabChangesFocus +1288 Q3TextEdit::createPopupMenu +1296 Q3TextEdit::createPopupMenu +1304 Q3TextEdit::doChangeInterval +1312 Q3TextEdit::sliderReleased +1320 Q3TextBrowser::linksEnabled +1328 Q3TextBrowser::emitHighlighted +1336 Q3TextBrowser::emitLinkClicked +1344 Q3TextBrowser::setSource +1352 Q3TextBrowser::backward +1360 Q3TextBrowser::forward +1368 Q3TextBrowser::home +1376 Q3TextBrowser::reload +1384 (int (*)(...))-0x00000000000000010 +1392 (int (*)(...))(& _ZTI13Q3TextBrowser) +1400 Q3TextBrowser::_ZThn16_N13Q3TextBrowserD1Ev +1408 Q3TextBrowser::_ZThn16_N13Q3TextBrowserD0Ev +1416 QWidget::_ZThn16_NK7QWidget7devTypeEv +1424 QWidget::_ZThn16_NK7QWidget11paintEngineEv +1432 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3TextBrowser + size=280 align=8 + base size=280 base align=8 +Q3TextBrowser (0x7fea0eb3f5b0) 0 + vptr=((& Q3TextBrowser::_ZTV13Q3TextBrowser) + 16u) + Q3TextEdit (0x7fea0eb3f620) 0 + primary-for Q3TextBrowser (0x7fea0eb3f5b0) + Q3ScrollView (0x7fea0eb3f690) 0 + primary-for Q3TextEdit (0x7fea0eb3f620) + Q3Frame (0x7fea0eb3f700) 0 + primary-for Q3ScrollView (0x7fea0eb3f690) + QFrame (0x7fea0eb3f770) 0 + primary-for Q3Frame (0x7fea0eb3f700) + QWidget (0x7fea0eb3e580) 0 + primary-for QFrame (0x7fea0eb3f770) + QObject (0x7fea0eb3f7e0) 0 + primary-for QWidget (0x7fea0eb3e580) + QPaintDevice (0x7fea0eb3f850) 16 + vptr=((& Q3TextBrowser::_ZTV13Q3TextBrowser) + 1400u) + +Vtable for Q3MultiLineEdit +Q3MultiLineEdit::_ZTV15Q3MultiLineEdit: 192u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15Q3MultiLineEdit) +16 Q3MultiLineEdit::metaObject +24 Q3MultiLineEdit::qt_metacast +32 Q3MultiLineEdit::qt_metacall +40 Q3MultiLineEdit::~Q3MultiLineEdit +48 Q3MultiLineEdit::~Q3MultiLineEdit +56 Q3TextEdit::event +64 Q3TextEdit::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 Q3ScrollView::setVisible +128 Q3TextEdit::sizeHint +136 Q3ScrollView::minimumSizeHint +144 Q3TextEdit::heightForWidth +152 QWidget::paintEngine +160 Q3ScrollView::mousePressEvent +168 Q3ScrollView::mouseReleaseEvent +176 Q3ScrollView::mouseDoubleClickEvent +184 Q3ScrollView::mouseMoveEvent +192 Q3ScrollView::wheelEvent +200 Q3TextEdit::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 Q3Frame::paintEvent +256 QWidget::moveEvent +264 Q3TextEdit::resizeEvent +272 QWidget::closeEvent +280 Q3ScrollView::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 Q3TextEdit::changeEvent +368 QWidget::metric +376 Q3TextEdit::inputMethodEvent +384 Q3TextEdit::inputMethodQuery +392 Q3TextEdit::focusNextPrevChild +400 Q3ScrollView::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 Q3ScrollView::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3ScrollView::frameChanged +456 Q3Frame::drawFrame +464 Q3TextEdit::drawContents +472 Q3ScrollView::setResizePolicy +480 Q3ScrollView::addChild +488 Q3ScrollView::moveChild +496 Q3ScrollView::setVScrollBarMode +504 Q3ScrollView::setHScrollBarMode +512 Q3ScrollView::setCornerWidget +520 Q3ScrollView::setDragAutoScroll +528 Q3ScrollView::resizeContents +536 Q3ScrollView::setContentsPos +544 Q3TextEdit::drawContents +552 Q3ScrollView::drawContentsOffset +560 Q3TextEdit::contentsMousePressEvent +568 Q3TextEdit::contentsMouseReleaseEvent +576 Q3TextEdit::contentsMouseDoubleClickEvent +584 Q3TextEdit::contentsMouseMoveEvent +592 Q3TextEdit::contentsDragEnterEvent +600 Q3TextEdit::contentsDragMoveEvent +608 Q3TextEdit::contentsDragLeaveEvent +616 Q3TextEdit::contentsDropEvent +624 Q3TextEdit::contentsWheelEvent +632 Q3TextEdit::contentsContextMenuEvent +640 Q3ScrollView::viewportPaintEvent +648 Q3TextEdit::viewportResizeEvent +656 Q3ScrollView::viewportMousePressEvent +664 Q3ScrollView::viewportMouseReleaseEvent +672 Q3ScrollView::viewportMouseDoubleClickEvent +680 Q3ScrollView::viewportMouseMoveEvent +688 Q3ScrollView::viewportDragEnterEvent +696 Q3ScrollView::viewportDragMoveEvent +704 Q3ScrollView::viewportDragLeaveEvent +712 Q3ScrollView::viewportDropEvent +720 Q3ScrollView::viewportWheelEvent +728 Q3ScrollView::viewportContextMenuEvent +736 Q3ScrollView::setMargins +744 Q3ScrollView::setHBarGeometry +752 Q3ScrollView::setVBarGeometry +760 Q3TextEdit::find +768 Q3TextEdit::getFormat +776 Q3TextEdit::getParagraphFormat +784 Q3TextEdit::setMimeSourceFactory +792 Q3TextEdit::setStyleSheet +800 Q3TextEdit::scrollToAnchor +808 Q3TextEdit::setPaper +816 Q3TextEdit::setLinkUnderline +824 Q3TextEdit::setWordWrap +832 Q3TextEdit::setWrapColumnOrWidth +840 Q3TextEdit::setWrapPolicy +848 Q3TextEdit::copy +856 Q3TextEdit::append +864 Q3TextEdit::setText +872 Q3TextEdit::setTextFormat +880 Q3TextEdit::selectAll +888 Q3TextEdit::setTabStopWidth +896 Q3TextEdit::zoomIn +904 Q3TextEdit::zoomIn +912 Q3TextEdit::zoomOut +920 Q3TextEdit::zoomOut +928 Q3TextEdit::zoomTo +936 Q3TextEdit::sync +944 Q3TextEdit::setReadOnly +952 Q3TextEdit::undo +960 Q3TextEdit::redo +968 Q3TextEdit::cut +976 Q3TextEdit::paste +984 Q3TextEdit::pasteSubType +992 Q3TextEdit::clear +1000 Q3TextEdit::del +1008 Q3TextEdit::indent +1016 Q3TextEdit::setItalic +1024 Q3TextEdit::setBold +1032 Q3TextEdit::setUnderline +1040 Q3TextEdit::setFamily +1048 Q3TextEdit::setPointSize +1056 Q3TextEdit::setColor +1064 Q3TextEdit::setVerticalAlignment +1072 Q3TextEdit::setAlignment +1080 Q3TextEdit::setParagType +1088 Q3MultiLineEdit::setCursorPosition +1096 Q3TextEdit::setSelection +1104 Q3TextEdit::setSelectionAttributes +1112 Q3TextEdit::setModified +1120 Q3TextEdit::resetFormat +1128 Q3TextEdit::setUndoDepth +1136 Q3TextEdit::setFormat +1144 Q3TextEdit::ensureCursorVisible +1152 Q3TextEdit::placeCursor +1160 Q3TextEdit::moveCursor +1168 Q3TextEdit::doKeyboardAction +1176 Q3TextEdit::removeSelectedText +1184 Q3TextEdit::removeSelection +1192 Q3TextEdit::setCurrentFont +1200 Q3TextEdit::setOverwriteMode +1208 Q3TextEdit::scrollToBottom +1216 Q3TextEdit::insert +1224 Q3TextEdit::insert +1232 Q3MultiLineEdit::insertAt +1240 Q3TextEdit::removeParagraph +1248 Q3TextEdit::insertParagraph +1256 Q3TextEdit::setParagraphBackgroundColor +1264 Q3TextEdit::clearParagraphBackground +1272 Q3TextEdit::setUndoRedoEnabled +1280 Q3TextEdit::setTabChangesFocus +1288 Q3TextEdit::createPopupMenu +1296 Q3TextEdit::createPopupMenu +1304 Q3TextEdit::doChangeInterval +1312 Q3TextEdit::sliderReleased +1320 Q3TextEdit::linksEnabled +1328 Q3TextEdit::emitHighlighted +1336 Q3TextEdit::emitLinkClicked +1344 Q3MultiLineEdit::insertLine +1352 Q3MultiLineEdit::insertAt +1360 Q3MultiLineEdit::removeLine +1368 Q3MultiLineEdit::setCursorPosition +1376 Q3MultiLineEdit::setAutoUpdate +1384 Q3MultiLineEdit::insertAndMark +1392 Q3MultiLineEdit::newLine +1400 Q3MultiLineEdit::killLine +1408 Q3MultiLineEdit::pageUp +1416 Q3MultiLineEdit::pageDown +1424 Q3MultiLineEdit::cursorLeft +1432 Q3MultiLineEdit::cursorRight +1440 Q3MultiLineEdit::cursorUp +1448 Q3MultiLineEdit::cursorDown +1456 Q3MultiLineEdit::backspace +1464 Q3MultiLineEdit::home +1472 Q3MultiLineEdit::end +1480 (int (*)(...))-0x00000000000000010 +1488 (int (*)(...))(& _ZTI15Q3MultiLineEdit) +1496 Q3MultiLineEdit::_ZThn16_N15Q3MultiLineEditD1Ev +1504 Q3MultiLineEdit::_ZThn16_N15Q3MultiLineEditD0Ev +1512 QWidget::_ZThn16_NK7QWidget7devTypeEv +1520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +1528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3MultiLineEdit + size=280 align=8 + base size=280 base align=8 +Q3MultiLineEdit (0x7fea0eb5ef50) 0 + vptr=((& Q3MultiLineEdit::_ZTV15Q3MultiLineEdit) + 16u) + Q3TextEdit (0x7fea0eb6a000) 0 + primary-for Q3MultiLineEdit (0x7fea0eb5ef50) + Q3ScrollView (0x7fea0eb6a070) 0 + primary-for Q3TextEdit (0x7fea0eb6a000) + Q3Frame (0x7fea0eb6a0e0) 0 + primary-for Q3ScrollView (0x7fea0eb6a070) + QFrame (0x7fea0eb6a150) 0 + primary-for Q3Frame (0x7fea0eb6a0e0) + QWidget (0x7fea0eb3ef80) 0 + primary-for QFrame (0x7fea0eb6a150) + QObject (0x7fea0eb6a1c0) 0 + primary-for QWidget (0x7fea0eb3ef80) + QPaintDevice (0x7fea0eb6a230) 16 + vptr=((& Q3MultiLineEdit::_ZTV15Q3MultiLineEdit) + 1496u) + +Class Q3SimpleRichText + size=8 align=8 + base size=8 base align=8 +Q3SimpleRichText (0x7fea0eb97930) 0 + +Vtable for Q3TabDialog +Q3TabDialog::_ZTV11Q3TabDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11Q3TabDialog) +16 Q3TabDialog::metaObject +24 Q3TabDialog::qt_metacast +32 Q3TabDialog::qt_metacall +40 Q3TabDialog::~Q3TabDialog +48 Q3TabDialog::~Q3TabDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 Q3TabDialog::paintEvent +256 QWidget::moveEvent +264 Q3TabDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 Q3TabDialog::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11Q3TabDialog) +488 Q3TabDialog::_ZThn16_N11Q3TabDialogD1Ev +496 Q3TabDialog::_ZThn16_N11Q3TabDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3TabDialog + size=48 align=8 + base size=48 base align=8 +Q3TabDialog (0x7fea0eba9070) 0 + vptr=((& Q3TabDialog::_ZTV11Q3TabDialog) + 16u) + QDialog (0x7fea0eba90e0) 0 + primary-for Q3TabDialog (0x7fea0eba9070) + QWidget (0x7fea0eb9a380) 0 + primary-for QDialog (0x7fea0eba90e0) + QObject (0x7fea0eba9150) 0 + primary-for QWidget (0x7fea0eb9a380) + QPaintDevice (0x7fea0eba91c0) 16 + vptr=((& Q3TabDialog::_ZTV11Q3TabDialog) + 488u) + +Vtable for Q3Wizard +Q3Wizard::_ZTV8Q3Wizard: 82u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8Q3Wizard) +16 Q3Wizard::metaObject +24 Q3Wizard::qt_metacast +32 Q3Wizard::qt_metacall +40 Q3Wizard::~Q3Wizard +48 Q3Wizard::~Q3Wizard +56 QWidget::event +64 Q3Wizard::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 Q3Wizard::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDialog::done +456 QDialog::accept +464 QDialog::reject +472 Q3Wizard::addPage +480 Q3Wizard::insertPage +488 Q3Wizard::removePage +496 Q3Wizard::showPage +504 Q3Wizard::appropriate +512 Q3Wizard::setAppropriate +520 Q3Wizard::setBackEnabled +528 Q3Wizard::setNextEnabled +536 Q3Wizard::setFinishEnabled +544 Q3Wizard::setHelpEnabled +552 Q3Wizard::setFinish +560 Q3Wizard::back +568 Q3Wizard::next +576 Q3Wizard::help +584 Q3Wizard::layOutButtonRow +592 Q3Wizard::layOutTitleRow +600 (int (*)(...))-0x00000000000000010 +608 (int (*)(...))(& _ZTI8Q3Wizard) +616 Q3Wizard::_ZThn16_N8Q3WizardD1Ev +624 Q3Wizard::_ZThn16_N8Q3WizardD0Ev +632 QWidget::_ZThn16_NK7QWidget7devTypeEv +640 QWidget::_ZThn16_NK7QWidget11paintEngineEv +648 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3Wizard + size=48 align=8 + base size=48 base align=8 +Q3Wizard (0x7fea0ebc4bd0) 0 + vptr=((& Q3Wizard::_ZTV8Q3Wizard) + 16u) + QDialog (0x7fea0ebc4c40) 0 + primary-for Q3Wizard (0x7fea0ebc4bd0) + QWidget (0x7fea0eb9aa80) 0 + primary-for QDialog (0x7fea0ebc4c40) + QObject (0x7fea0ebc4cb0) 0 + primary-for QWidget (0x7fea0eb9aa80) + QPaintDevice (0x7fea0ebc4d20) 16 + vptr=((& Q3Wizard::_ZTV8Q3Wizard) + 616u) + +Vtable for Q3ProgressDialog +Q3ProgressDialog::_ZTV16Q3ProgressDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16Q3ProgressDialog) +16 Q3ProgressDialog::metaObject +24 Q3ProgressDialog::qt_metacast +32 Q3ProgressDialog::qt_metacall +40 Q3ProgressDialog::~Q3ProgressDialog +48 Q3ProgressDialog::~Q3ProgressDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 Q3ProgressDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 Q3ProgressDialog::resizeEvent +272 Q3ProgressDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 Q3ProgressDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 Q3ProgressDialog::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI16Q3ProgressDialog) +488 Q3ProgressDialog::_ZThn16_N16Q3ProgressDialogD1Ev +496 Q3ProgressDialog::_ZThn16_N16Q3ProgressDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3ProgressDialog + size=56 align=8 + base size=56 base align=8 +Q3ProgressDialog (0x7fea0e9e6af0) 0 + vptr=((& Q3ProgressDialog::_ZTV16Q3ProgressDialog) + 16u) + QDialog (0x7fea0e9e6b60) 0 + primary-for Q3ProgressDialog (0x7fea0e9e6af0) + QWidget (0x7fea0e9ea280) 0 + primary-for QDialog (0x7fea0e9e6b60) + QObject (0x7fea0e9e6bd0) 0 + primary-for QWidget (0x7fea0e9ea280) + QPaintDevice (0x7fea0e9e6c40) 16 + vptr=((& Q3ProgressDialog::_ZTV16Q3ProgressDialog) + 488u) + +Vtable for Q3Url +Q3Url::_ZTV5Q3Url: 19u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5Q3Url) +16 Q3Url::~Q3Url +24 Q3Url::~Q3Url +32 Q3Url::setProtocol +40 Q3Url::setUser +48 Q3Url::setPassword +56 Q3Url::setHost +64 Q3Url::setPort +72 Q3Url::setPath +80 Q3Url::setEncodedPathAndQuery +88 Q3Url::setQuery +96 Q3Url::setRef +104 Q3Url::addPath +112 Q3Url::setFileName +120 Q3Url::toString +128 Q3Url::cdUp +136 Q3Url::reset +144 Q3Url::parse + +Class Q3Url + size=16 align=8 + base size=16 base align=8 +Q3Url (0x7fea0ea13310) 0 + vptr=((& Q3Url::_ZTV5Q3Url) + 16u) + +Vtable for Q3NetworkProtocolFactoryBase +Q3NetworkProtocolFactoryBase::_ZTV28Q3NetworkProtocolFactoryBase: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI28Q3NetworkProtocolFactoryBase) +16 Q3NetworkProtocolFactoryBase::~Q3NetworkProtocolFactoryBase +24 Q3NetworkProtocolFactoryBase::~Q3NetworkProtocolFactoryBase +32 __cxa_pure_virtual + +Class Q3NetworkProtocolFactoryBase + size=8 align=8 + base size=8 base align=8 +Q3NetworkProtocolFactoryBase (0x7fea0ea4c0e0) 0 nearly-empty + vptr=((& Q3NetworkProtocolFactoryBase::_ZTV28Q3NetworkProtocolFactoryBase) + 16u) + +Vtable for Q3NetworkProtocol +Q3NetworkProtocol::_ZTV17Q3NetworkProtocol: 29u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17Q3NetworkProtocol) +16 Q3NetworkProtocol::metaObject +24 Q3NetworkProtocol::qt_metacast +32 Q3NetworkProtocol::qt_metacall +40 Q3NetworkProtocol::~Q3NetworkProtocol +48 Q3NetworkProtocol::~Q3NetworkProtocol +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 Q3NetworkProtocol::setUrl +120 Q3NetworkProtocol::setAutoDelete +128 Q3NetworkProtocol::supportedOperations +136 Q3NetworkProtocol::addOperation +144 Q3NetworkProtocol::clearOperationQueue +152 Q3NetworkProtocol::stop +160 Q3NetworkProtocol::processOperation +168 Q3NetworkProtocol::operationListChildren +176 Q3NetworkProtocol::operationMkDir +184 Q3NetworkProtocol::operationRemove +192 Q3NetworkProtocol::operationRename +200 Q3NetworkProtocol::operationGet +208 Q3NetworkProtocol::operationPut +216 Q3NetworkProtocol::operationPutChunk +224 Q3NetworkProtocol::checkConnection + +Class Q3NetworkProtocol + size=24 align=8 + base size=24 base align=8 +Q3NetworkProtocol (0x7fea0ea4cc40) 0 + vptr=((& Q3NetworkProtocol::_ZTV17Q3NetworkProtocol) + 16u) + QObject (0x7fea0ea4ccb0) 0 + primary-for Q3NetworkProtocol (0x7fea0ea4cc40) + +Vtable for Q3NetworkOperation +Q3NetworkOperation::_ZTV18Q3NetworkOperation: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18Q3NetworkOperation) +16 Q3NetworkOperation::metaObject +24 Q3NetworkOperation::qt_metacast +32 Q3NetworkOperation::qt_metacall +40 Q3NetworkOperation::~Q3NetworkOperation +48 Q3NetworkOperation::~Q3NetworkOperation +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class Q3NetworkOperation + size=24 align=8 + base size=24 base align=8 +Q3NetworkOperation (0x7fea0ea772a0) 0 + vptr=((& Q3NetworkOperation::_ZTV18Q3NetworkOperation) + 16u) + QObject (0x7fea0ea77310) 0 + primary-for Q3NetworkOperation (0x7fea0ea772a0) + +Vtable for Q3UrlOperator +Q3UrlOperator::_ZTV13Q3UrlOperator: 51u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13Q3UrlOperator) +16 Q3UrlOperator::metaObject +24 Q3UrlOperator::qt_metacast +32 Q3UrlOperator::qt_metacall +40 Q3UrlOperator::~Q3UrlOperator +48 Q3UrlOperator::~Q3UrlOperator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 Q3UrlOperator::setPath +120 Q3UrlOperator::cdUp +128 Q3UrlOperator::listChildren +136 Q3UrlOperator::mkdir +144 Q3UrlOperator::remove +152 Q3UrlOperator::rename +160 Q3UrlOperator::get +168 Q3UrlOperator::put +176 Q3UrlOperator::copy +184 Q3UrlOperator::copy +192 Q3UrlOperator::isDir +200 Q3UrlOperator::setNameFilter +208 Q3UrlOperator::info +216 Q3UrlOperator::stop +224 Q3UrlOperator::reset +232 Q3UrlOperator::parse +240 Q3UrlOperator::checkValid +248 Q3UrlOperator::clearEntries +256 (int (*)(...))-0x00000000000000010 +264 (int (*)(...))(& _ZTI13Q3UrlOperator) +272 Q3UrlOperator::_ZThn16_N13Q3UrlOperatorD1Ev +280 Q3UrlOperator::_ZThn16_N13Q3UrlOperatorD0Ev +288 Q3Url::setProtocol +296 Q3Url::setUser +304 Q3Url::setPassword +312 Q3Url::setHost +320 Q3Url::setPort +328 Q3UrlOperator::_ZThn16_N13Q3UrlOperator7setPathERK7QString +336 Q3Url::setEncodedPathAndQuery +344 Q3Url::setQuery +352 Q3Url::setRef +360 Q3Url::addPath +368 Q3Url::setFileName +376 Q3Url::toString +384 Q3UrlOperator::_ZThn16_N13Q3UrlOperator4cdUpEv +392 Q3UrlOperator::_ZThn16_N13Q3UrlOperator5resetEv +400 Q3UrlOperator::_ZThn16_N13Q3UrlOperator5parseERK7QString + +Class Q3UrlOperator + size=40 align=8 + base size=40 base align=8 +Q3UrlOperator (0x7fea0ea61f80) 0 + vptr=((& Q3UrlOperator::_ZTV13Q3UrlOperator) + 16u) + QObject (0x7fea0ea89a80) 0 + primary-for Q3UrlOperator (0x7fea0ea61f80) + Q3Url (0x7fea0ea89af0) 16 + vptr=((& Q3UrlOperator::_ZTV13Q3UrlOperator) + 272u) + +Vtable for Q3FileIconProvider +Q3FileIconProvider::_ZTV18Q3FileIconProvider: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18Q3FileIconProvider) +16 Q3FileIconProvider::metaObject +24 Q3FileIconProvider::qt_metacast +32 Q3FileIconProvider::qt_metacall +40 Q3FileIconProvider::~Q3FileIconProvider +48 Q3FileIconProvider::~Q3FileIconProvider +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 Q3FileIconProvider::pixmap + +Class Q3FileIconProvider + size=16 align=8 + base size=16 base align=8 +Q3FileIconProvider (0x7fea0eab5150) 0 + vptr=((& Q3FileIconProvider::_ZTV18Q3FileIconProvider) + 16u) + QObject (0x7fea0eab51c0) 0 + primary-for Q3FileIconProvider (0x7fea0eab5150) + +Vtable for Q3FilePreview +Q3FilePreview::_ZTV13Q3FilePreview: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13Q3FilePreview) +16 Q3FilePreview::~Q3FilePreview +24 Q3FilePreview::~Q3FilePreview +32 __cxa_pure_virtual + +Class Q3FilePreview + size=8 align=8 + base size=8 base align=8 +Q3FilePreview (0x7fea0eac6460) 0 nearly-empty + vptr=((& Q3FilePreview::_ZTV13Q3FilePreview) + 16u) + +Vtable for Q3FileDialog +Q3FileDialog::_ZTV12Q3FileDialog: 68u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12Q3FileDialog) +16 Q3FileDialog::metaObject +24 Q3FileDialog::qt_metacast +32 Q3FileDialog::qt_metacall +40 Q3FileDialog::~Q3FileDialog +48 Q3FileDialog::~Q3FileDialog +56 QWidget::event +64 Q3FileDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 Q3FileDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 Q3FileDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3FileDialog::done +456 QDialog::accept +464 QDialog::reject +472 Q3FileDialog::setSelectedFilter +480 Q3FileDialog::setSelectedFilter +488 (int (*)(...))-0x00000000000000010 +496 (int (*)(...))(& _ZTI12Q3FileDialog) +504 Q3FileDialog::_ZThn16_N12Q3FileDialogD1Ev +512 Q3FileDialog::_ZThn16_N12Q3FileDialogD0Ev +520 QWidget::_ZThn16_NK7QWidget7devTypeEv +528 QWidget::_ZThn16_NK7QWidget11paintEngineEv +536 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3FileDialog + size=88 align=8 + base size=88 base align=8 +Q3FileDialog (0x7fea0eac6ee0) 0 + vptr=((& Q3FileDialog::_ZTV12Q3FileDialog) + 16u) + QDialog (0x7fea0eac6f50) 0 + primary-for Q3FileDialog (0x7fea0eac6ee0) + QWidget (0x7fea0e8c8c80) 0 + primary-for QDialog (0x7fea0eac6f50) + QObject (0x7fea0eac65b0) 0 + primary-for QWidget (0x7fea0e8c8c80) + QPaintDevice (0x7fea0e8cc000) 16 + vptr=((& Q3FileDialog::_ZTV12Q3FileDialog) + 504u) + +Vtable for Q3GridLayout +Q3GridLayout::_ZTV12Q3GridLayout: 49u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12Q3GridLayout) +16 QGridLayout::metaObject +24 QGridLayout::qt_metacast +32 QGridLayout::qt_metacall +40 Q3GridLayout::~Q3GridLayout +48 Q3GridLayout::~Q3GridLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGridLayout::invalidate +120 QLayout::geometry +128 QGridLayout::addItem +136 QGridLayout::expandingDirections +144 QGridLayout::minimumSize +152 QGridLayout::maximumSize +160 QGridLayout::setGeometry +168 QGridLayout::itemAt +176 QGridLayout::takeAt +184 QLayout::indexOf +192 QGridLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QGridLayout::sizeHint +224 QGridLayout::hasHeightForWidth +232 QGridLayout::heightForWidth +240 QGridLayout::minimumHeightForWidth +248 (int (*)(...))-0x00000000000000010 +256 (int (*)(...))(& _ZTI12Q3GridLayout) +264 Q3GridLayout::_ZThn16_N12Q3GridLayoutD1Ev +272 Q3GridLayout::_ZThn16_N12Q3GridLayoutD0Ev +280 QGridLayout::_ZThn16_NK11QGridLayout8sizeHintEv +288 QGridLayout::_ZThn16_NK11QGridLayout11minimumSizeEv +296 QGridLayout::_ZThn16_NK11QGridLayout11maximumSizeEv +304 QGridLayout::_ZThn16_NK11QGridLayout19expandingDirectionsEv +312 QGridLayout::_ZThn16_N11QGridLayout11setGeometryERK5QRect +320 QLayout::_ZThn16_NK7QLayout8geometryEv +328 QLayout::_ZThn16_NK7QLayout7isEmptyEv +336 QGridLayout::_ZThn16_NK11QGridLayout17hasHeightForWidthEv +344 QGridLayout::_ZThn16_NK11QGridLayout14heightForWidthEi +352 QGridLayout::_ZThn16_NK11QGridLayout21minimumHeightForWidthEi +360 QGridLayout::_ZThn16_N11QGridLayout10invalidateEv +368 QLayoutItem::widget +376 QLayout::_ZThn16_N7QLayout6layoutEv +384 QLayoutItem::spacerItem + +Class Q3GridLayout + size=32 align=8 + base size=28 base align=8 +Q3GridLayout (0x7fea0e90c380) 0 + vptr=((& Q3GridLayout::_ZTV12Q3GridLayout) + 16u) + QGridLayout (0x7fea0e90c3f0) 0 + primary-for Q3GridLayout (0x7fea0e90c380) + QLayout (0x7fea0e8dae00) 0 + primary-for QGridLayout (0x7fea0e90c3f0) + QObject (0x7fea0e90c460) 0 + primary-for QLayout (0x7fea0e8dae00) + QLayoutItem (0x7fea0e90c4d0) 16 + vptr=((& Q3GridLayout::_ZTV12Q3GridLayout) + 264u) + +Vtable for Q3Accel +Q3Accel::_ZTV7Q3Accel: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7Q3Accel) +16 Q3Accel::metaObject +24 Q3Accel::qt_metacast +32 Q3Accel::qt_metacall +40 Q3Accel::~Q3Accel +48 Q3Accel::~Q3Accel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class Q3Accel + size=24 align=8 + base size=24 base align=8 +Q3Accel (0x7fea0e92c4d0) 0 + vptr=((& Q3Accel::_ZTV7Q3Accel) + 16u) + QObject (0x7fea0e92c540) 0 + primary-for Q3Accel (0x7fea0e92c4d0) + +Vtable for Q3StrList +Q3StrList::_ZTV9Q3StrList: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9Q3StrList) +16 Q3PtrList::count [with type = char] +24 Q3PtrList::clear [with type = char] +32 Q3StrList::~Q3StrList +40 Q3StrList::~Q3StrList +48 Q3StrList::newItem +56 Q3StrList::deleteItem +64 Q3StrList::compareItems +72 Q3StrList::read +80 Q3StrList::write + +Class Q3StrList + size=64 align=8 + base size=57 base align=8 +Q3StrList (0x7fea0e942cb0) 0 + vptr=((& Q3StrList::_ZTV9Q3StrList) + 16u) + Q3PtrList (0x7fea0e942d20) 0 + primary-for Q3StrList (0x7fea0e942cb0) + Q3GList (0x7fea0e942d90) 0 + primary-for Q3PtrList (0x7fea0e942d20) + Q3PtrCollection (0x7fea0e942e00) 0 + primary-for Q3GList (0x7fea0e942d90) + +Vtable for Q3StrIList +Q3StrIList::_ZTV10Q3StrIList: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10Q3StrIList) +16 Q3PtrList::count [with type = char] +24 Q3PtrList::clear [with type = char] +32 Q3StrIList::~Q3StrIList +40 Q3StrIList::~Q3StrIList +48 Q3StrList::newItem +56 Q3StrList::deleteItem +64 Q3StrIList::compareItems +72 Q3StrList::read +80 Q3StrList::write + +Class Q3StrIList + size=64 align=8 + base size=57 base align=8 +Q3StrIList (0x7fea0e998700) 0 + vptr=((& Q3StrIList::_ZTV10Q3StrIList) + 16u) + Q3StrList (0x7fea0e998770) 0 + primary-for Q3StrIList (0x7fea0e998700) + Q3PtrList (0x7fea0e9987e0) 0 + primary-for Q3StrList (0x7fea0e998770) + Q3GList (0x7fea0e998850) 0 + primary-for Q3PtrList (0x7fea0e9987e0) + Q3PtrCollection (0x7fea0e9988c0) 0 + primary-for Q3GList (0x7fea0e998850) + +Vtable for Q3DragObject +Q3DragObject::_ZTV12Q3DragObject: 24u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12Q3DragObject) +16 Q3DragObject::metaObject +24 Q3DragObject::qt_metacast +32 Q3DragObject::qt_metacall +40 Q3DragObject::~Q3DragObject +48 Q3DragObject::~Q3DragObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 Q3DragObject::setPixmap +120 Q3DragObject::setPixmap +128 Q3DragObject::drag +136 (int (*)(...))-0x00000000000000010 +144 (int (*)(...))(& _ZTI12Q3DragObject) +152 Q3DragObject::_ZThn16_N12Q3DragObjectD1Ev +160 Q3DragObject::_ZThn16_N12Q3DragObjectD0Ev +168 __cxa_pure_virtual +176 QMimeSource::provides +184 __cxa_pure_virtual + +Class Q3DragObject + size=24 align=8 + base size=24 base align=8 +Q3DragObject (0x7fea0e9bcc00) 0 + vptr=((& Q3DragObject::_ZTV12Q3DragObject) + 16u) + QObject (0x7fea0e7c1150) 0 + primary-for Q3DragObject (0x7fea0e9bcc00) + QMimeSource (0x7fea0e7c11c0) 16 nearly-empty + vptr=((& Q3DragObject::_ZTV12Q3DragObject) + 152u) + +Vtable for Q3StoredDrag +Q3StoredDrag::_ZTV12Q3StoredDrag: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12Q3StoredDrag) +16 Q3StoredDrag::metaObject +24 Q3StoredDrag::qt_metacast +32 Q3StoredDrag::qt_metacall +40 Q3StoredDrag::~Q3StoredDrag +48 Q3StoredDrag::~Q3StoredDrag +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 Q3DragObject::setPixmap +120 Q3DragObject::setPixmap +128 Q3DragObject::drag +136 Q3StoredDrag::setEncodedData +144 Q3StoredDrag::format +152 Q3StoredDrag::encodedData +160 (int (*)(...))-0x00000000000000010 +168 (int (*)(...))(& _ZTI12Q3StoredDrag) +176 Q3StoredDrag::_ZThn16_N12Q3StoredDragD1Ev +184 Q3StoredDrag::_ZThn16_N12Q3StoredDragD0Ev +192 Q3StoredDrag::_ZThn16_NK12Q3StoredDrag6formatEi +200 QMimeSource::provides +208 Q3StoredDrag::_ZThn16_NK12Q3StoredDrag11encodedDataEPKc + +Class Q3StoredDrag + size=24 align=8 + base size=24 base align=8 +Q3StoredDrag (0x7fea0e7d99a0) 0 + vptr=((& Q3StoredDrag::_ZTV12Q3StoredDrag) + 16u) + Q3DragObject (0x7fea0e7d2780) 0 + primary-for Q3StoredDrag (0x7fea0e7d99a0) + QObject (0x7fea0e7d9a10) 0 + primary-for Q3DragObject (0x7fea0e7d2780) + QMimeSource (0x7fea0e7d9a80) 16 nearly-empty + vptr=((& Q3StoredDrag::_ZTV12Q3StoredDrag) + 176u) + +Vtable for Q3TextDrag +Q3TextDrag::_ZTV10Q3TextDrag: 28u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10Q3TextDrag) +16 Q3TextDrag::metaObject +24 Q3TextDrag::qt_metacast +32 Q3TextDrag::qt_metacall +40 Q3TextDrag::~Q3TextDrag +48 Q3TextDrag::~Q3TextDrag +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 Q3DragObject::setPixmap +120 Q3DragObject::setPixmap +128 Q3DragObject::drag +136 Q3TextDrag::setText +144 Q3TextDrag::setSubtype +152 Q3TextDrag::format +160 Q3TextDrag::encodedData +168 (int (*)(...))-0x00000000000000010 +176 (int (*)(...))(& _ZTI10Q3TextDrag) +184 Q3TextDrag::_ZThn16_N10Q3TextDragD1Ev +192 Q3TextDrag::_ZThn16_N10Q3TextDragD0Ev +200 Q3TextDrag::_ZThn16_NK10Q3TextDrag6formatEi +208 QMimeSource::provides +216 Q3TextDrag::_ZThn16_NK10Q3TextDrag11encodedDataEPKc + +Class Q3TextDrag + size=24 align=8 + base size=24 base align=8 +Q3TextDrag (0x7fea0e7f42a0) 0 + vptr=((& Q3TextDrag::_ZTV10Q3TextDrag) + 16u) + Q3DragObject (0x7fea0e7f5080) 0 + primary-for Q3TextDrag (0x7fea0e7f42a0) + QObject (0x7fea0e7f4310) 0 + primary-for Q3DragObject (0x7fea0e7f5080) + QMimeSource (0x7fea0e7f4380) 16 nearly-empty + vptr=((& Q3TextDrag::_ZTV10Q3TextDrag) + 184u) + +Vtable for Q3ImageDrag +Q3ImageDrag::_ZTV11Q3ImageDrag: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11Q3ImageDrag) +16 Q3ImageDrag::metaObject +24 Q3ImageDrag::qt_metacast +32 Q3ImageDrag::qt_metacall +40 Q3ImageDrag::~Q3ImageDrag +48 Q3ImageDrag::~Q3ImageDrag +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 Q3DragObject::setPixmap +120 Q3DragObject::setPixmap +128 Q3DragObject::drag +136 Q3ImageDrag::setImage +144 Q3ImageDrag::format +152 Q3ImageDrag::encodedData +160 (int (*)(...))-0x00000000000000010 +168 (int (*)(...))(& _ZTI11Q3ImageDrag) +176 Q3ImageDrag::_ZThn16_N11Q3ImageDragD1Ev +184 Q3ImageDrag::_ZThn16_N11Q3ImageDragD0Ev +192 Q3ImageDrag::_ZThn16_NK11Q3ImageDrag6formatEi +200 QMimeSource::provides +208 Q3ImageDrag::_ZThn16_NK11Q3ImageDrag11encodedDataEPKc + +Class Q3ImageDrag + size=24 align=8 + base size=24 base align=8 +Q3ImageDrag (0x7fea0e806e70) 0 + vptr=((& Q3ImageDrag::_ZTV11Q3ImageDrag) + 16u) + Q3DragObject (0x7fea0e7f5980) 0 + primary-for Q3ImageDrag (0x7fea0e806e70) + QObject (0x7fea0e806ee0) 0 + primary-for Q3DragObject (0x7fea0e7f5980) + QMimeSource (0x7fea0e806f50) 16 nearly-empty + vptr=((& Q3ImageDrag::_ZTV11Q3ImageDrag) + 176u) + +Vtable for Q3UriDrag +Q3UriDrag::_ZTV9Q3UriDrag: 28u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9Q3UriDrag) +16 Q3UriDrag::metaObject +24 Q3UriDrag::qt_metacast +32 Q3UriDrag::qt_metacall +40 Q3UriDrag::~Q3UriDrag +48 Q3UriDrag::~Q3UriDrag +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 Q3DragObject::setPixmap +120 Q3DragObject::setPixmap +128 Q3DragObject::drag +136 Q3StoredDrag::setEncodedData +144 Q3StoredDrag::format +152 Q3StoredDrag::encodedData +160 Q3UriDrag::setUris +168 (int (*)(...))-0x00000000000000010 +176 (int (*)(...))(& _ZTI9Q3UriDrag) +184 Q3UriDrag::_ZThn16_N9Q3UriDragD1Ev +192 Q3UriDrag::_ZThn16_N9Q3UriDragD0Ev +200 Q3StoredDrag::_ZThn16_NK12Q3StoredDrag6formatEi +208 QMimeSource::provides +216 Q3StoredDrag::_ZThn16_NK12Q3StoredDrag11encodedDataEPKc + +Class Q3UriDrag + size=24 align=8 + base size=24 base align=8 +Q3UriDrag (0x7fea0e821a80) 0 + vptr=((& Q3UriDrag::_ZTV9Q3UriDrag) + 16u) + Q3StoredDrag (0x7fea0e821af0) 0 + primary-for Q3UriDrag (0x7fea0e821a80) + Q3DragObject (0x7fea0e823280) 0 + primary-for Q3StoredDrag (0x7fea0e821af0) + QObject (0x7fea0e821b60) 0 + primary-for Q3DragObject (0x7fea0e823280) + QMimeSource (0x7fea0e821bd0) 16 nearly-empty + vptr=((& Q3UriDrag::_ZTV9Q3UriDrag) + 184u) + +Vtable for Q3ColorDrag +Q3ColorDrag::_ZTV11Q3ColorDrag: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11Q3ColorDrag) +16 Q3ColorDrag::metaObject +24 Q3ColorDrag::qt_metacast +32 Q3ColorDrag::qt_metacall +40 Q3ColorDrag::~Q3ColorDrag +48 Q3ColorDrag::~Q3ColorDrag +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 Q3DragObject::setPixmap +120 Q3DragObject::setPixmap +128 Q3DragObject::drag +136 Q3StoredDrag::setEncodedData +144 Q3StoredDrag::format +152 Q3StoredDrag::encodedData +160 (int (*)(...))-0x00000000000000010 +168 (int (*)(...))(& _ZTI11Q3ColorDrag) +176 Q3ColorDrag::_ZThn16_N11Q3ColorDragD1Ev +184 Q3ColorDrag::_ZThn16_N11Q3ColorDragD0Ev +192 Q3StoredDrag::_ZThn16_NK12Q3StoredDrag6formatEi +200 QMimeSource::provides +208 Q3StoredDrag::_ZThn16_NK12Q3StoredDrag11encodedDataEPKc + +Class Q3ColorDrag + size=40 align=8 + base size=40 base align=8 +Q3ColorDrag (0x7fea0e83b5b0) 0 + vptr=((& Q3ColorDrag::_ZTV11Q3ColorDrag) + 16u) + Q3StoredDrag (0x7fea0e83b620) 0 + primary-for Q3ColorDrag (0x7fea0e83b5b0) + Q3DragObject (0x7fea0e842000) 0 + primary-for Q3StoredDrag (0x7fea0e83b620) + QObject (0x7fea0e83b690) 0 + primary-for Q3DragObject (0x7fea0e842000) + QMimeSource (0x7fea0e83b700) 16 nearly-empty + vptr=((& Q3ColorDrag::_ZTV11Q3ColorDrag) + 176u) + +Vtable for Q3PolygonScanner +Q3PolygonScanner::_ZTV16Q3PolygonScanner: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16Q3PolygonScanner) +16 Q3PolygonScanner::~Q3PolygonScanner +24 Q3PolygonScanner::~Q3PolygonScanner +32 __cxa_pure_virtual + +Class Q3PolygonScanner + size=8 align=8 + base size=8 base align=8 +Q3PolygonScanner (0x7fea0e850a10) 0 nearly-empty + vptr=((& Q3PolygonScanner::_ZTV16Q3PolygonScanner) + 16u) + +Vtable for Q3DropSite +Q3DropSite::_ZTV10Q3DropSite: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10Q3DropSite) +16 Q3DropSite::~Q3DropSite +24 Q3DropSite::~Q3DropSite + +Class Q3DropSite + size=8 align=8 + base size=8 base align=8 +Q3DropSite (0x7fea0e862460) 0 nearly-empty + vptr=((& Q3DropSite::_ZTV10Q3DropSite) + 16u) + +Vtable for Q3BoxLayout +Q3BoxLayout::_ZTV11Q3BoxLayout: 49u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11Q3BoxLayout) +16 QBoxLayout::metaObject +24 QBoxLayout::qt_metacast +32 QBoxLayout::qt_metacall +40 Q3BoxLayout::~Q3BoxLayout +48 Q3BoxLayout::~Q3BoxLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QBoxLayout::invalidate +120 QLayout::geometry +128 QBoxLayout::addItem +136 QBoxLayout::expandingDirections +144 QBoxLayout::minimumSize +152 QBoxLayout::maximumSize +160 QBoxLayout::setGeometry +168 QBoxLayout::itemAt +176 QBoxLayout::takeAt +184 QLayout::indexOf +192 QBoxLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QBoxLayout::sizeHint +224 QBoxLayout::hasHeightForWidth +232 QBoxLayout::heightForWidth +240 QBoxLayout::minimumHeightForWidth +248 (int (*)(...))-0x00000000000000010 +256 (int (*)(...))(& _ZTI11Q3BoxLayout) +264 Q3BoxLayout::_ZThn16_N11Q3BoxLayoutD1Ev +272 Q3BoxLayout::_ZThn16_N11Q3BoxLayoutD0Ev +280 QBoxLayout::_ZThn16_NK10QBoxLayout8sizeHintEv +288 QBoxLayout::_ZThn16_NK10QBoxLayout11minimumSizeEv +296 QBoxLayout::_ZThn16_NK10QBoxLayout11maximumSizeEv +304 QBoxLayout::_ZThn16_NK10QBoxLayout19expandingDirectionsEv +312 QBoxLayout::_ZThn16_N10QBoxLayout11setGeometryERK5QRect +320 QLayout::_ZThn16_NK7QLayout8geometryEv +328 QLayout::_ZThn16_NK7QLayout7isEmptyEv +336 QBoxLayout::_ZThn16_NK10QBoxLayout17hasHeightForWidthEv +344 QBoxLayout::_ZThn16_NK10QBoxLayout14heightForWidthEi +352 QBoxLayout::_ZThn16_NK10QBoxLayout21minimumHeightForWidthEi +360 QBoxLayout::_ZThn16_N10QBoxLayout10invalidateEv +368 QLayoutItem::widget +376 QLayout::_ZThn16_N7QLayout6layoutEv +384 QLayoutItem::spacerItem + +Class Q3BoxLayout + size=32 align=8 + base size=28 base align=8 +Q3BoxLayout (0x7fea0e862620) 0 + vptr=((& Q3BoxLayout::_ZTV11Q3BoxLayout) + 16u) + QBoxLayout (0x7fea0e862690) 0 + primary-for Q3BoxLayout (0x7fea0e862620) + QLayout (0x7fea0e860900) 0 + primary-for QBoxLayout (0x7fea0e862690) + QObject (0x7fea0e862700) 0 + primary-for QLayout (0x7fea0e860900) + QLayoutItem (0x7fea0e862770) 16 + vptr=((& Q3BoxLayout::_ZTV11Q3BoxLayout) + 264u) + +Vtable for Q3HBoxLayout +Q3HBoxLayout::_ZTV12Q3HBoxLayout: 49u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12Q3HBoxLayout) +16 QBoxLayout::metaObject +24 QBoxLayout::qt_metacast +32 QBoxLayout::qt_metacall +40 Q3HBoxLayout::~Q3HBoxLayout +48 Q3HBoxLayout::~Q3HBoxLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QBoxLayout::invalidate +120 QLayout::geometry +128 QBoxLayout::addItem +136 QBoxLayout::expandingDirections +144 QBoxLayout::minimumSize +152 QBoxLayout::maximumSize +160 QBoxLayout::setGeometry +168 QBoxLayout::itemAt +176 QBoxLayout::takeAt +184 QLayout::indexOf +192 QBoxLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QBoxLayout::sizeHint +224 QBoxLayout::hasHeightForWidth +232 QBoxLayout::heightForWidth +240 QBoxLayout::minimumHeightForWidth +248 (int (*)(...))-0x00000000000000010 +256 (int (*)(...))(& _ZTI12Q3HBoxLayout) +264 Q3HBoxLayout::_ZThn16_N12Q3HBoxLayoutD1Ev +272 Q3HBoxLayout::_ZThn16_N12Q3HBoxLayoutD0Ev +280 QBoxLayout::_ZThn16_NK10QBoxLayout8sizeHintEv +288 QBoxLayout::_ZThn16_NK10QBoxLayout11minimumSizeEv +296 QBoxLayout::_ZThn16_NK10QBoxLayout11maximumSizeEv +304 QBoxLayout::_ZThn16_NK10QBoxLayout19expandingDirectionsEv +312 QBoxLayout::_ZThn16_N10QBoxLayout11setGeometryERK5QRect +320 QLayout::_ZThn16_NK7QLayout8geometryEv +328 QLayout::_ZThn16_NK7QLayout7isEmptyEv +336 QBoxLayout::_ZThn16_NK10QBoxLayout17hasHeightForWidthEv +344 QBoxLayout::_ZThn16_NK10QBoxLayout14heightForWidthEi +352 QBoxLayout::_ZThn16_NK10QBoxLayout21minimumHeightForWidthEi +360 QBoxLayout::_ZThn16_N10QBoxLayout10invalidateEv +368 QLayoutItem::widget +376 QLayout::_ZThn16_N7QLayout6layoutEv +384 QLayoutItem::spacerItem + +Class Q3HBoxLayout + size=32 align=8 + base size=28 base align=8 +Q3HBoxLayout (0x7fea0e88a070) 0 + vptr=((& Q3HBoxLayout::_ZTV12Q3HBoxLayout) + 16u) + Q3BoxLayout (0x7fea0e88a0e0) 0 + primary-for Q3HBoxLayout (0x7fea0e88a070) + QBoxLayout (0x7fea0e88a150) 0 + primary-for Q3BoxLayout (0x7fea0e88a0e0) + QLayout (0x7fea0e889280) 0 + primary-for QBoxLayout (0x7fea0e88a150) + QObject (0x7fea0e88a1c0) 0 + primary-for QLayout (0x7fea0e889280) + QLayoutItem (0x7fea0e88a230) 16 + vptr=((& Q3HBoxLayout::_ZTV12Q3HBoxLayout) + 264u) + +Vtable for Q3VBoxLayout +Q3VBoxLayout::_ZTV12Q3VBoxLayout: 49u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12Q3VBoxLayout) +16 QBoxLayout::metaObject +24 QBoxLayout::qt_metacast +32 QBoxLayout::qt_metacall +40 Q3VBoxLayout::~Q3VBoxLayout +48 Q3VBoxLayout::~Q3VBoxLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QBoxLayout::invalidate +120 QLayout::geometry +128 QBoxLayout::addItem +136 QBoxLayout::expandingDirections +144 QBoxLayout::minimumSize +152 QBoxLayout::maximumSize +160 QBoxLayout::setGeometry +168 QBoxLayout::itemAt +176 QBoxLayout::takeAt +184 QLayout::indexOf +192 QBoxLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QBoxLayout::sizeHint +224 QBoxLayout::hasHeightForWidth +232 QBoxLayout::heightForWidth +240 QBoxLayout::minimumHeightForWidth +248 (int (*)(...))-0x00000000000000010 +256 (int (*)(...))(& _ZTI12Q3VBoxLayout) +264 Q3VBoxLayout::_ZThn16_N12Q3VBoxLayoutD1Ev +272 Q3VBoxLayout::_ZThn16_N12Q3VBoxLayoutD0Ev +280 QBoxLayout::_ZThn16_NK10QBoxLayout8sizeHintEv +288 QBoxLayout::_ZThn16_NK10QBoxLayout11minimumSizeEv +296 QBoxLayout::_ZThn16_NK10QBoxLayout11maximumSizeEv +304 QBoxLayout::_ZThn16_NK10QBoxLayout19expandingDirectionsEv +312 QBoxLayout::_ZThn16_N10QBoxLayout11setGeometryERK5QRect +320 QLayout::_ZThn16_NK7QLayout8geometryEv +328 QLayout::_ZThn16_NK7QLayout7isEmptyEv +336 QBoxLayout::_ZThn16_NK10QBoxLayout17hasHeightForWidthEv +344 QBoxLayout::_ZThn16_NK10QBoxLayout14heightForWidthEi +352 QBoxLayout::_ZThn16_NK10QBoxLayout21minimumHeightForWidthEi +360 QBoxLayout::_ZThn16_N10QBoxLayout10invalidateEv +368 QLayoutItem::widget +376 QLayout::_ZThn16_N7QLayout6layoutEv +384 QLayoutItem::spacerItem + +Class Q3VBoxLayout + size=32 align=8 + base size=28 base align=8 +Q3VBoxLayout (0x7fea0e8b4690) 0 + vptr=((& Q3VBoxLayout::_ZTV12Q3VBoxLayout) + 16u) + Q3BoxLayout (0x7fea0e8b4700) 0 + primary-for Q3VBoxLayout (0x7fea0e8b4690) + QBoxLayout (0x7fea0e8b4770) 0 + primary-for Q3BoxLayout (0x7fea0e8b4700) + QLayout (0x7fea0e8a9d00) 0 + primary-for QBoxLayout (0x7fea0e8b4770) + QObject (0x7fea0e8b47e0) 0 + primary-for QLayout (0x7fea0e8a9d00) + QLayoutItem (0x7fea0e8b4850) 16 + vptr=((& Q3VBoxLayout::_ZTV12Q3VBoxLayout) + 264u) + +Vtable for Q3Process +Q3Process::_ZTV9Q3Process: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9Q3Process) +16 Q3Process::metaObject +24 Q3Process::qt_metacast +32 Q3Process::qt_metacall +40 Q3Process::~Q3Process +48 Q3Process::~Q3Process +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 Q3Process::connectNotify +104 Q3Process::disconnectNotify +112 Q3Process::setArguments +120 Q3Process::addArgument +128 Q3Process::setWorkingDirectory +136 Q3Process::start +144 Q3Process::launch +152 Q3Process::launch +160 Q3Process::readStdout +168 Q3Process::readStderr +176 Q3Process::readLineStdout +184 Q3Process::readLineStderr +192 Q3Process::writeToStdin +200 Q3Process::writeToStdin +208 Q3Process::closeStdin + +Class Q3Process + size=56 align=8 + base size=56 base align=8 +Q3Process (0x7fea0e6e0000) 0 + vptr=((& Q3Process::_ZTV9Q3Process) + 16u) + QObject (0x7fea0e6e0070) 0 + primary-for Q3Process (0x7fea0e6e0000) + +Vtable for Q3Signal +Q3Signal::_ZTV8Q3Signal: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8Q3Signal) +16 Q3Signal::metaObject +24 Q3Signal::qt_metacast +32 Q3Signal::qt_metacall +40 Q3Signal::~Q3Signal +48 Q3Signal::~Q3Signal +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class Q3Signal + size=32 align=8 + base size=32 base align=8 +Q3Signal (0x7fea0e71b460) 0 + vptr=((& Q3Signal::_ZTV8Q3Signal) + 16u) + QObject (0x7fea0e71b4d0) 0 + primary-for Q3Signal (0x7fea0e71b460) + +Vtable for Q3ObjectDictionary +Q3ObjectDictionary::_ZTV18Q3ObjectDictionary: 10u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18Q3ObjectDictionary) +16 Q3AsciiDict::count [with type = QMetaObject] +24 Q3AsciiDict::clear [with type = QMetaObject] +32 Q3ObjectDictionary::~Q3ObjectDictionary +40 Q3ObjectDictionary::~Q3ObjectDictionary +48 Q3PtrCollection::newItem +56 Q3AsciiDict::deleteItem [with type = QMetaObject] +64 Q3GDict::read +72 Q3GDict::write + +Class Q3ObjectDictionary + size=48 align=8 + base size=48 base align=8 +Q3ObjectDictionary (0x7fea0e76f770) 0 + vptr=((& Q3ObjectDictionary::_ZTV18Q3ObjectDictionary) + 16u) + Q3AsciiDict (0x7fea0e76f7e0) 0 + primary-for Q3ObjectDictionary (0x7fea0e76f770) + Q3GDict (0x7fea0e76f850) 0 + primary-for Q3AsciiDict (0x7fea0e76f7e0) + Q3PtrCollection (0x7fea0e76f8c0) 0 + primary-for Q3GDict (0x7fea0e76f850) + +Vtable for Q3GCache +Q3GCache::_ZTV8Q3GCache: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8Q3GCache) +16 Q3GCache::count +24 Q3GCache::clear +32 Q3GCache::~Q3GCache +40 Q3GCache::~Q3GCache +48 Q3PtrCollection::newItem +56 __cxa_pure_virtual + +Class Q3GCache + size=48 align=8 + base size=41 base align=8 +Q3GCache (0x7fea0e79e150) 0 + vptr=((& Q3GCache::_ZTV8Q3GCache) + 16u) + Q3PtrCollection (0x7fea0e79e1c0) 0 + primary-for Q3GCache (0x7fea0e79e150) + +Class Q3GCacheIterator + size=8 align=8 + base size=8 base align=8 +Q3GCacheIterator (0x7fea0e7ab070) 0 + +Vtable for Q3Semaphore +Q3Semaphore::_ZTV11Q3Semaphore: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11Q3Semaphore) +16 Q3Semaphore::~Q3Semaphore +24 Q3Semaphore::~Q3Semaphore + +Class Q3Semaphore + size=16 align=8 + base size=16 base align=8 +Q3Semaphore (0x7fea0e681ee0) 0 + vptr=((& Q3Semaphore::_ZTV11Q3Semaphore) + 16u) + +Vtable for Q3StrVec +Q3StrVec::_ZTV8Q3StrVec: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8Q3StrVec) +16 Q3PtrVector::count [with type = char] +24 Q3PtrVector::clear [with type = char] +32 Q3StrVec::~Q3StrVec +40 Q3StrVec::~Q3StrVec +48 Q3StrVec::newItem +56 Q3StrVec::deleteItem +64 Q3StrVec::compareItems +72 Q3StrVec::read +80 Q3StrVec::write + +Class Q3StrVec + size=40 align=8 + base size=33 base align=8 +Q3StrVec (0x7fea0e69b690) 0 + vptr=((& Q3StrVec::_ZTV8Q3StrVec) + 16u) + Q3PtrVector (0x7fea0e69b700) 0 + primary-for Q3StrVec (0x7fea0e69b690) + Q3GVector (0x7fea0e69b770) 0 + primary-for Q3PtrVector (0x7fea0e69b700) + Q3PtrCollection (0x7fea0e69b7e0) 0 + primary-for Q3GVector (0x7fea0e69b770) + +Vtable for Q3StrIVec +Q3StrIVec::_ZTV9Q3StrIVec: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9Q3StrIVec) +16 Q3PtrVector::count [with type = char] +24 Q3PtrVector::clear [with type = char] +32 Q3StrIVec::~Q3StrIVec +40 Q3StrIVec::~Q3StrIVec +48 Q3StrVec::newItem +56 Q3StrVec::deleteItem +64 Q3StrIVec::compareItems +72 Q3StrVec::read +80 Q3StrVec::write + +Class Q3StrIVec + size=40 align=8 + base size=33 base align=8 +Q3StrIVec (0x7fea0e4c6cb0) 0 + vptr=((& Q3StrIVec::_ZTV9Q3StrIVec) + 16u) + Q3StrVec (0x7fea0e4c6d20) 0 + primary-for Q3StrIVec (0x7fea0e4c6cb0) + Q3PtrVector (0x7fea0e4c6d90) 0 + primary-for Q3StrVec (0x7fea0e4c6d20) + Q3GVector (0x7fea0e4c6e00) 0 + primary-for Q3PtrVector (0x7fea0e4c6d90) + Q3PtrCollection (0x7fea0e4c6e70) 0 + primary-for Q3GVector (0x7fea0e4c6e00) + +Vtable for Q3Picture +Q3Picture::_ZTV9Q3Picture: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9Q3Picture) +16 Q3Picture::~Q3Picture +24 Q3Picture::~Q3Picture +32 QPicture::devType +40 QPicture::paintEngine +48 QPicture::metric +56 QPicture::setData + +Class Q3Picture + size=24 align=8 + base size=24 base align=8 +Q3Picture (0x7fea0e4f00e0) 0 + vptr=((& Q3Picture::_ZTV9Q3Picture) + 16u) + QPicture (0x7fea0e4f0150) 0 + primary-for Q3Picture (0x7fea0e4f00e0) + QPaintDevice (0x7fea0e4f01c0) 0 + primary-for QPicture (0x7fea0e4f0150) + +Class Q3Painter + size=8 align=8 + base size=8 base align=8 +Q3Painter (0x7fea0e4fc230) 0 + QPainter (0x7fea0e4fc2a0) 0 + +Class Q3PointArray + size=8 align=8 + base size=8 base align=8 +Q3PointArray (0x7fea0e51d070) 0 + QPolygon (0x7fea0e51d0e0) 0 + QVector (0x7fea0e51d150) 0 + +Class Q3PaintDeviceMetrics + size=8 align=8 + base size=8 base align=8 +Q3PaintDeviceMetrics (0x7fea0e5318c0) 0 + +Class Q3CanvasItemList + size=8 align=8 + base size=8 base align=8 +Q3CanvasItemList (0x7fea0e543af0) 0 + Q3ValueList (0x7fea0e543b60) 0 + QLinkedList (0x7fea0e543bd0) 0 + +Vtable for Q3CanvasItem +Q3CanvasItem::_ZTV12Q3CanvasItem: 23u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12Q3CanvasItem) +16 Q3CanvasItem::~Q3CanvasItem +24 Q3CanvasItem::~Q3CanvasItem +32 Q3CanvasItem::moveBy +40 Q3CanvasItem::setAnimated +48 Q3CanvasItem::setVelocity +56 Q3CanvasItem::advance +64 __cxa_pure_virtual +72 Q3CanvasItem::setCanvas +80 __cxa_pure_virtual +88 Q3CanvasItem::setVisible +96 Q3CanvasItem::setSelected +104 Q3CanvasItem::setEnabled +112 Q3CanvasItem::setActive +120 Q3CanvasItem::rtti +128 __cxa_pure_virtual +136 Q3CanvasItem::boundingRectAdvanced +144 Q3CanvasItem::chunks +152 Q3CanvasItem::addToChunks +160 Q3CanvasItem::removeFromChunks +168 Q3CanvasItem::changeChunks +176 __cxa_pure_virtual + +Class Q3CanvasItem + size=56 align=8 + base size=49 base align=8 +Q3CanvasItem (0x7fea0e543ee0) 0 + vptr=((& Q3CanvasItem::_ZTV12Q3CanvasItem) + 16u) + +Vtable for Q3Canvas +Q3Canvas::_ZTV8Q3Canvas: 38u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8Q3Canvas) +16 Q3Canvas::metaObject +24 Q3Canvas::qt_metacast +32 Q3Canvas::qt_metacall +40 Q3Canvas::~Q3Canvas +48 Q3Canvas::~Q3Canvas +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 Q3Canvas::setTiles +120 Q3Canvas::setBackgroundPixmap +128 Q3Canvas::setBackgroundColor +136 Q3Canvas::setTile +144 Q3Canvas::resize +152 Q3Canvas::retune +160 Q3Canvas::setChangedChunk +168 Q3Canvas::setChangedChunkContaining +176 Q3Canvas::setAllChanged +184 Q3Canvas::setChanged +192 Q3Canvas::setUnchanged +200 Q3Canvas::addView +208 Q3Canvas::removeView +216 Q3Canvas::addItem +224 Q3Canvas::addAnimation +232 Q3Canvas::removeItem +240 Q3Canvas::removeAnimation +248 Q3Canvas::setAdvancePeriod +256 Q3Canvas::setUpdatePeriod +264 Q3Canvas::setDoubleBuffering +272 Q3Canvas::advance +280 Q3Canvas::update +288 Q3Canvas::drawBackground +296 Q3Canvas::drawForeground + +Class Q3Canvas + size=160 align=8 + base size=154 base align=8 +Q3Canvas (0x7fea0e59be00) 0 + vptr=((& Q3Canvas::_ZTV8Q3Canvas) + 16u) + QObject (0x7fea0e59be70) 0 + primary-for Q3Canvas (0x7fea0e59be00) + +Vtable for Q3CanvasView +Q3CanvasView::_ZTV12Q3CanvasView: 102u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12Q3CanvasView) +16 Q3CanvasView::metaObject +24 Q3CanvasView::qt_metacast +32 Q3CanvasView::qt_metacall +40 Q3CanvasView::~Q3CanvasView +48 Q3CanvasView::~Q3CanvasView +56 QFrame::event +64 Q3ScrollView::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 Q3ScrollView::setVisible +128 Q3CanvasView::sizeHint +136 Q3ScrollView::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 Q3ScrollView::mousePressEvent +168 Q3ScrollView::mouseReleaseEvent +176 Q3ScrollView::mouseDoubleClickEvent +184 Q3ScrollView::mouseMoveEvent +192 Q3ScrollView::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 Q3Frame::paintEvent +256 QWidget::moveEvent +264 Q3ScrollView::resizeEvent +272 QWidget::closeEvent +280 Q3ScrollView::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 Q3ScrollView::focusNextPrevChild +400 Q3ScrollView::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 Q3ScrollView::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3ScrollView::frameChanged +456 Q3Frame::drawFrame +464 Q3CanvasView::drawContents +472 Q3ScrollView::setResizePolicy +480 Q3ScrollView::addChild +488 Q3ScrollView::moveChild +496 Q3ScrollView::setVScrollBarMode +504 Q3ScrollView::setHScrollBarMode +512 Q3ScrollView::setCornerWidget +520 Q3ScrollView::setDragAutoScroll +528 Q3ScrollView::resizeContents +536 Q3ScrollView::setContentsPos +544 Q3CanvasView::drawContents +552 Q3ScrollView::drawContentsOffset +560 Q3ScrollView::contentsMousePressEvent +568 Q3ScrollView::contentsMouseReleaseEvent +576 Q3ScrollView::contentsMouseDoubleClickEvent +584 Q3ScrollView::contentsMouseMoveEvent +592 Q3ScrollView::contentsDragEnterEvent +600 Q3ScrollView::contentsDragMoveEvent +608 Q3ScrollView::contentsDragLeaveEvent +616 Q3ScrollView::contentsDropEvent +624 Q3ScrollView::contentsWheelEvent +632 Q3ScrollView::contentsContextMenuEvent +640 Q3ScrollView::viewportPaintEvent +648 Q3ScrollView::viewportResizeEvent +656 Q3ScrollView::viewportMousePressEvent +664 Q3ScrollView::viewportMouseReleaseEvent +672 Q3ScrollView::viewportMouseDoubleClickEvent +680 Q3ScrollView::viewportMouseMoveEvent +688 Q3ScrollView::viewportDragEnterEvent +696 Q3ScrollView::viewportDragMoveEvent +704 Q3ScrollView::viewportDragLeaveEvent +712 Q3ScrollView::viewportDropEvent +720 Q3ScrollView::viewportWheelEvent +728 Q3ScrollView::viewportContextMenuEvent +736 Q3ScrollView::setMargins +744 Q3ScrollView::setHBarGeometry +752 Q3ScrollView::setVBarGeometry +760 (int (*)(...))-0x00000000000000010 +768 (int (*)(...))(& _ZTI12Q3CanvasView) +776 Q3CanvasView::_ZThn16_N12Q3CanvasViewD1Ev +784 Q3CanvasView::_ZThn16_N12Q3CanvasViewD0Ev +792 QWidget::_ZThn16_NK7QWidget7devTypeEv +800 QWidget::_ZThn16_NK7QWidget11paintEngineEv +808 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3CanvasView + size=72 align=8 + base size=72 base align=8 +Q3CanvasView (0x7fea0e3ddb60) 0 + vptr=((& Q3CanvasView::_ZTV12Q3CanvasView) + 16u) + Q3ScrollView (0x7fea0e3ddbd0) 0 + primary-for Q3CanvasView (0x7fea0e3ddb60) + Q3Frame (0x7fea0e3ddc40) 0 + primary-for Q3ScrollView (0x7fea0e3ddbd0) + QFrame (0x7fea0e3ddcb0) 0 + primary-for Q3Frame (0x7fea0e3ddc40) + QWidget (0x7fea0e3d8e00) 0 + primary-for QFrame (0x7fea0e3ddcb0) + QObject (0x7fea0e3ddd20) 0 + primary-for QWidget (0x7fea0e3d8e00) + QPaintDevice (0x7fea0e3ddd90) 16 + vptr=((& Q3CanvasView::_ZTV12Q3CanvasView) + 776u) + +Vtable for Q3CanvasPixmap +Q3CanvasPixmap::_ZTV14Q3CanvasPixmap: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14Q3CanvasPixmap) +16 Q3CanvasPixmap::~Q3CanvasPixmap +24 Q3CanvasPixmap::~Q3CanvasPixmap +32 QPixmap::devType +40 QPixmap::paintEngine +48 QPixmap::metric + +Class Q3CanvasPixmap + size=40 align=8 + base size=40 base align=8 +Q3CanvasPixmap (0x7fea0e3fa3f0) 0 + vptr=((& Q3CanvasPixmap::_ZTV14Q3CanvasPixmap) + 16u) + QPixmap (0x7fea0e3fa460) 0 + primary-for Q3CanvasPixmap (0x7fea0e3fa3f0) + QPaintDevice (0x7fea0e3fa4d0) 0 + primary-for QPixmap (0x7fea0e3fa460) + +Class Q3CanvasPixmapArray + size=16 align=8 + base size=16 base align=8 +Q3CanvasPixmapArray (0x7fea0e405690) 0 + +Vtable for Q3CanvasSprite +Q3CanvasSprite::_ZTV14Q3CanvasSprite: 26u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14Q3CanvasSprite) +16 Q3CanvasSprite::~Q3CanvasSprite +24 Q3CanvasSprite::~Q3CanvasSprite +32 Q3CanvasItem::moveBy +40 Q3CanvasItem::setAnimated +48 Q3CanvasItem::setVelocity +56 Q3CanvasSprite::advance +64 Q3CanvasSprite::collidesWith +72 Q3CanvasItem::setCanvas +80 Q3CanvasSprite::draw +88 Q3CanvasItem::setVisible +96 Q3CanvasItem::setSelected +104 Q3CanvasItem::setEnabled +112 Q3CanvasItem::setActive +120 Q3CanvasSprite::rtti +128 Q3CanvasSprite::boundingRect +136 Q3CanvasItem::boundingRectAdvanced +144 Q3CanvasItem::chunks +152 Q3CanvasSprite::addToChunks +160 Q3CanvasSprite::removeFromChunks +168 Q3CanvasSprite::changeChunks +176 Q3CanvasSprite::collidesWith +184 Q3CanvasSprite::move +192 Q3CanvasSprite::setFrameAnimation +200 Q3CanvasSprite::imageAdvanced + +Class Q3CanvasSprite + size=72 align=8 + base size=72 base align=8 +Q3CanvasSprite (0x7fea0e413690) 0 + vptr=((& Q3CanvasSprite::_ZTV14Q3CanvasSprite) + 16u) + Q3CanvasItem (0x7fea0e413700) 0 + primary-for Q3CanvasSprite (0x7fea0e413690) + +Vtable for Q3CanvasPolygonalItem +Q3CanvasPolygonalItem::_ZTV21Q3CanvasPolygonalItem: 28u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21Q3CanvasPolygonalItem) +16 Q3CanvasPolygonalItem::~Q3CanvasPolygonalItem +24 Q3CanvasPolygonalItem::~Q3CanvasPolygonalItem +32 Q3CanvasItem::moveBy +40 Q3CanvasItem::setAnimated +48 Q3CanvasItem::setVelocity +56 Q3CanvasItem::advance +64 Q3CanvasPolygonalItem::collidesWith +72 Q3CanvasItem::setCanvas +80 Q3CanvasPolygonalItem::draw +88 Q3CanvasItem::setVisible +96 Q3CanvasItem::setSelected +104 Q3CanvasItem::setEnabled +112 Q3CanvasItem::setActive +120 Q3CanvasPolygonalItem::rtti +128 Q3CanvasPolygonalItem::boundingRect +136 Q3CanvasItem::boundingRectAdvanced +144 Q3CanvasPolygonalItem::chunks +152 Q3CanvasItem::addToChunks +160 Q3CanvasItem::removeFromChunks +168 Q3CanvasItem::changeChunks +176 Q3CanvasPolygonalItem::collidesWith +184 Q3CanvasPolygonalItem::setPen +192 Q3CanvasPolygonalItem::setBrush +200 __cxa_pure_virtual +208 Q3CanvasPolygonalItem::areaPointsAdvanced +216 __cxa_pure_virtual + +Class Q3CanvasPolygonalItem + size=80 align=8 + base size=73 base align=8 +Q3CanvasPolygonalItem (0x7fea0e41fe70) 0 + vptr=((& Q3CanvasPolygonalItem::_ZTV21Q3CanvasPolygonalItem) + 16u) + Q3CanvasItem (0x7fea0e41fee0) 0 + primary-for Q3CanvasPolygonalItem (0x7fea0e41fe70) + +Vtable for Q3CanvasRectangle +Q3CanvasRectangle::_ZTV17Q3CanvasRectangle: 28u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17Q3CanvasRectangle) +16 Q3CanvasRectangle::~Q3CanvasRectangle +24 Q3CanvasRectangle::~Q3CanvasRectangle +32 Q3CanvasItem::moveBy +40 Q3CanvasItem::setAnimated +48 Q3CanvasItem::setVelocity +56 Q3CanvasItem::advance +64 Q3CanvasRectangle::collidesWith +72 Q3CanvasItem::setCanvas +80 Q3CanvasPolygonalItem::draw +88 Q3CanvasItem::setVisible +96 Q3CanvasItem::setSelected +104 Q3CanvasItem::setEnabled +112 Q3CanvasItem::setActive +120 Q3CanvasRectangle::rtti +128 Q3CanvasPolygonalItem::boundingRect +136 Q3CanvasItem::boundingRectAdvanced +144 Q3CanvasRectangle::chunks +152 Q3CanvasItem::addToChunks +160 Q3CanvasItem::removeFromChunks +168 Q3CanvasItem::changeChunks +176 Q3CanvasRectangle::collidesWith +184 Q3CanvasPolygonalItem::setPen +192 Q3CanvasPolygonalItem::setBrush +200 Q3CanvasRectangle::areaPoints +208 Q3CanvasPolygonalItem::areaPointsAdvanced +216 Q3CanvasRectangle::drawShape + +Class Q3CanvasRectangle + size=88 align=8 + base size=84 base align=8 +Q3CanvasRectangle (0x7fea0e42ca10) 0 + vptr=((& Q3CanvasRectangle::_ZTV17Q3CanvasRectangle) + 16u) + Q3CanvasPolygonalItem (0x7fea0e42ca80) 0 + primary-for Q3CanvasRectangle (0x7fea0e42ca10) + Q3CanvasItem (0x7fea0e42caf0) 0 + primary-for Q3CanvasPolygonalItem (0x7fea0e42ca80) + +Vtable for Q3CanvasPolygon +Q3CanvasPolygon::_ZTV15Q3CanvasPolygon: 28u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15Q3CanvasPolygon) +16 Q3CanvasPolygon::~Q3CanvasPolygon +24 Q3CanvasPolygon::~Q3CanvasPolygon +32 Q3CanvasPolygon::moveBy +40 Q3CanvasItem::setAnimated +48 Q3CanvasItem::setVelocity +56 Q3CanvasItem::advance +64 Q3CanvasPolygonalItem::collidesWith +72 Q3CanvasItem::setCanvas +80 Q3CanvasPolygonalItem::draw +88 Q3CanvasItem::setVisible +96 Q3CanvasItem::setSelected +104 Q3CanvasItem::setEnabled +112 Q3CanvasItem::setActive +120 Q3CanvasPolygon::rtti +128 Q3CanvasPolygonalItem::boundingRect +136 Q3CanvasItem::boundingRectAdvanced +144 Q3CanvasPolygonalItem::chunks +152 Q3CanvasItem::addToChunks +160 Q3CanvasItem::removeFromChunks +168 Q3CanvasItem::changeChunks +176 Q3CanvasPolygonalItem::collidesWith +184 Q3CanvasPolygonalItem::setPen +192 Q3CanvasPolygonalItem::setBrush +200 Q3CanvasPolygon::areaPoints +208 Q3CanvasPolygonalItem::areaPointsAdvanced +216 Q3CanvasPolygon::drawShape + +Class Q3CanvasPolygon + size=88 align=8 + base size=88 base align=8 +Q3CanvasPolygon (0x7fea0e446e00) 0 + vptr=((& Q3CanvasPolygon::_ZTV15Q3CanvasPolygon) + 16u) + Q3CanvasPolygonalItem (0x7fea0e446e70) 0 + primary-for Q3CanvasPolygon (0x7fea0e446e00) + Q3CanvasItem (0x7fea0e446ee0) 0 + primary-for Q3CanvasPolygonalItem (0x7fea0e446e70) + +Vtable for Q3CanvasSpline +Q3CanvasSpline::_ZTV14Q3CanvasSpline: 28u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14Q3CanvasSpline) +16 Q3CanvasSpline::~Q3CanvasSpline +24 Q3CanvasSpline::~Q3CanvasSpline +32 Q3CanvasPolygon::moveBy +40 Q3CanvasItem::setAnimated +48 Q3CanvasItem::setVelocity +56 Q3CanvasItem::advance +64 Q3CanvasPolygonalItem::collidesWith +72 Q3CanvasItem::setCanvas +80 Q3CanvasPolygonalItem::draw +88 Q3CanvasItem::setVisible +96 Q3CanvasItem::setSelected +104 Q3CanvasItem::setEnabled +112 Q3CanvasItem::setActive +120 Q3CanvasSpline::rtti +128 Q3CanvasPolygonalItem::boundingRect +136 Q3CanvasItem::boundingRectAdvanced +144 Q3CanvasPolygonalItem::chunks +152 Q3CanvasItem::addToChunks +160 Q3CanvasItem::removeFromChunks +168 Q3CanvasItem::changeChunks +176 Q3CanvasPolygonalItem::collidesWith +184 Q3CanvasPolygonalItem::setPen +192 Q3CanvasPolygonalItem::setBrush +200 Q3CanvasPolygon::areaPoints +208 Q3CanvasPolygonalItem::areaPointsAdvanced +216 Q3CanvasPolygon::drawShape + +Class Q3CanvasSpline + size=104 align=8 + base size=97 base align=8 +Q3CanvasSpline (0x7fea0e44f070) 0 + vptr=((& Q3CanvasSpline::_ZTV14Q3CanvasSpline) + 16u) + Q3CanvasPolygon (0x7fea0e44f0e0) 0 + primary-for Q3CanvasSpline (0x7fea0e44f070) + Q3CanvasPolygonalItem (0x7fea0e44f150) 0 + primary-for Q3CanvasPolygon (0x7fea0e44f0e0) + Q3CanvasItem (0x7fea0e44f1c0) 0 + primary-for Q3CanvasPolygonalItem (0x7fea0e44f150) + +Vtable for Q3CanvasLine +Q3CanvasLine::_ZTV12Q3CanvasLine: 28u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12Q3CanvasLine) +16 Q3CanvasLine::~Q3CanvasLine +24 Q3CanvasLine::~Q3CanvasLine +32 Q3CanvasLine::moveBy +40 Q3CanvasItem::setAnimated +48 Q3CanvasItem::setVelocity +56 Q3CanvasItem::advance +64 Q3CanvasPolygonalItem::collidesWith +72 Q3CanvasItem::setCanvas +80 Q3CanvasPolygonalItem::draw +88 Q3CanvasItem::setVisible +96 Q3CanvasItem::setSelected +104 Q3CanvasItem::setEnabled +112 Q3CanvasItem::setActive +120 Q3CanvasLine::rtti +128 Q3CanvasPolygonalItem::boundingRect +136 Q3CanvasItem::boundingRectAdvanced +144 Q3CanvasPolygonalItem::chunks +152 Q3CanvasItem::addToChunks +160 Q3CanvasItem::removeFromChunks +168 Q3CanvasItem::changeChunks +176 Q3CanvasPolygonalItem::collidesWith +184 Q3CanvasLine::setPen +192 Q3CanvasPolygonalItem::setBrush +200 Q3CanvasLine::areaPoints +208 Q3CanvasPolygonalItem::areaPointsAdvanced +216 Q3CanvasLine::drawShape + +Class Q3CanvasLine + size=96 align=8 + base size=92 base align=8 +Q3CanvasLine (0x7fea0e44f380) 0 + vptr=((& Q3CanvasLine::_ZTV12Q3CanvasLine) + 16u) + Q3CanvasPolygonalItem (0x7fea0e44f3f0) 0 + primary-for Q3CanvasLine (0x7fea0e44f380) + Q3CanvasItem (0x7fea0e44f460) 0 + primary-for Q3CanvasPolygonalItem (0x7fea0e44f3f0) + +Vtable for Q3CanvasEllipse +Q3CanvasEllipse::_ZTV15Q3CanvasEllipse: 28u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15Q3CanvasEllipse) +16 Q3CanvasEllipse::~Q3CanvasEllipse +24 Q3CanvasEllipse::~Q3CanvasEllipse +32 Q3CanvasItem::moveBy +40 Q3CanvasItem::setAnimated +48 Q3CanvasItem::setVelocity +56 Q3CanvasItem::advance +64 Q3CanvasEllipse::collidesWith +72 Q3CanvasItem::setCanvas +80 Q3CanvasPolygonalItem::draw +88 Q3CanvasItem::setVisible +96 Q3CanvasItem::setSelected +104 Q3CanvasItem::setEnabled +112 Q3CanvasItem::setActive +120 Q3CanvasEllipse::rtti +128 Q3CanvasPolygonalItem::boundingRect +136 Q3CanvasItem::boundingRectAdvanced +144 Q3CanvasPolygonalItem::chunks +152 Q3CanvasItem::addToChunks +160 Q3CanvasItem::removeFromChunks +168 Q3CanvasItem::changeChunks +176 Q3CanvasEllipse::collidesWith +184 Q3CanvasPolygonalItem::setPen +192 Q3CanvasPolygonalItem::setBrush +200 Q3CanvasEllipse::areaPoints +208 Q3CanvasPolygonalItem::areaPointsAdvanced +216 Q3CanvasEllipse::drawShape + +Class Q3CanvasEllipse + size=96 align=8 + base size=92 base align=8 +Q3CanvasEllipse (0x7fea0e44fee0) 0 + vptr=((& Q3CanvasEllipse::_ZTV15Q3CanvasEllipse) + 16u) + Q3CanvasPolygonalItem (0x7fea0e44ff50) 0 + primary-for Q3CanvasEllipse (0x7fea0e44fee0) + Q3CanvasItem (0x7fea0e44f000) 0 + primary-for Q3CanvasPolygonalItem (0x7fea0e44ff50) + +Vtable for Q3CanvasText +Q3CanvasText::_ZTV12Q3CanvasText: 23u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12Q3CanvasText) +16 Q3CanvasText::~Q3CanvasText +24 Q3CanvasText::~Q3CanvasText +32 Q3CanvasText::moveBy +40 Q3CanvasItem::setAnimated +48 Q3CanvasItem::setVelocity +56 Q3CanvasItem::advance +64 Q3CanvasText::collidesWith +72 Q3CanvasItem::setCanvas +80 Q3CanvasText::draw +88 Q3CanvasItem::setVisible +96 Q3CanvasItem::setSelected +104 Q3CanvasItem::setEnabled +112 Q3CanvasItem::setActive +120 Q3CanvasText::rtti +128 Q3CanvasText::boundingRect +136 Q3CanvasItem::boundingRectAdvanced +144 Q3CanvasItem::chunks +152 Q3CanvasText::addToChunks +160 Q3CanvasText::removeFromChunks +168 Q3CanvasText::changeChunks +176 Q3CanvasText::collidesWith + +Class Q3CanvasText + size=128 align=8 + base size=128 base align=8 +Q3CanvasText (0x7fea0e466850) 0 + vptr=((& Q3CanvasText::_ZTV12Q3CanvasText) + 16u) + Q3CanvasItem (0x7fea0e4668c0) 0 + primary-for Q3CanvasText (0x7fea0e466850) + +Vtable for Q3IconDragItem +Q3IconDragItem::_ZTV14Q3IconDragItem: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14Q3IconDragItem) +16 Q3IconDragItem::~Q3IconDragItem +24 Q3IconDragItem::~Q3IconDragItem +32 Q3IconDragItem::data +40 Q3IconDragItem::setData + +Class Q3IconDragItem + size=16 align=8 + base size=16 base align=8 +Q3IconDragItem (0x7fea0e477380) 0 + vptr=((& Q3IconDragItem::_ZTV14Q3IconDragItem) + 16u) + +Vtable for Q3IconDrag +Q3IconDrag::_ZTV10Q3IconDrag: 26u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10Q3IconDrag) +16 Q3IconDrag::metaObject +24 Q3IconDrag::qt_metacast +32 Q3IconDrag::qt_metacall +40 Q3IconDrag::~Q3IconDrag +48 Q3IconDrag::~Q3IconDrag +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 Q3DragObject::setPixmap +120 Q3DragObject::setPixmap +128 Q3DragObject::drag +136 Q3IconDrag::format +144 Q3IconDrag::encodedData +152 (int (*)(...))-0x00000000000000010 +160 (int (*)(...))(& _ZTI10Q3IconDrag) +168 Q3IconDrag::_ZThn16_N10Q3IconDragD1Ev +176 Q3IconDrag::_ZThn16_N10Q3IconDragD0Ev +184 Q3IconDrag::_ZThn16_NK10Q3IconDrag6formatEi +192 QMimeSource::provides +200 Q3IconDrag::_ZThn16_NK10Q3IconDrag11encodedDataEPKc + +Class Q3IconDrag + size=40 align=8 + base size=34 base align=8 +Q3IconDrag (0x7fea0e477690) 0 + vptr=((& Q3IconDrag::_ZTV10Q3IconDrag) + 16u) + Q3DragObject (0x7fea0e461500) 0 + primary-for Q3IconDrag (0x7fea0e477690) + QObject (0x7fea0e477700) 0 + primary-for Q3DragObject (0x7fea0e461500) + QMimeSource (0x7fea0e477770) 16 nearly-empty + vptr=((& Q3IconDrag::_ZTV10Q3IconDrag) + 168u) + +Vtable for Q3IconViewItem +Q3IconViewItem::_ZTV14Q3IconViewItem: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14Q3IconViewItem) +16 Q3IconViewItem::~Q3IconViewItem +24 Q3IconViewItem::~Q3IconViewItem +32 Q3IconViewItem::setRenameEnabled +40 Q3IconViewItem::setDragEnabled +48 Q3IconViewItem::setDropEnabled +56 Q3IconViewItem::text +64 Q3IconViewItem::pixmap +72 Q3IconViewItem::picture +80 Q3IconViewItem::key +88 Q3IconViewItem::setSelected +96 Q3IconViewItem::setSelected +104 Q3IconViewItem::setSelectable +112 Q3IconViewItem::repaint +120 Q3IconViewItem::move +128 Q3IconViewItem::moveBy +136 Q3IconViewItem::move +144 Q3IconViewItem::moveBy +152 Q3IconViewItem::acceptDrop +160 Q3IconViewItem::compare +168 Q3IconViewItem::setText +176 Q3IconViewItem::setPixmap +184 Q3IconViewItem::setPicture +192 Q3IconViewItem::setText +200 Q3IconViewItem::setPixmap +208 Q3IconViewItem::setKey +216 Q3IconViewItem::rtti +224 Q3IconViewItem::removeRenameBox +232 Q3IconViewItem::calcRect +240 Q3IconViewItem::paintItem +248 Q3IconViewItem::paintFocus +256 Q3IconViewItem::dropped +264 Q3IconViewItem::dragEntered +272 Q3IconViewItem::dragLeft + +Class Q3IconViewItem + size=160 align=8 + base size=160 base align=8 +Q3IconViewItem (0x7fea0e48e930) 0 + vptr=((& Q3IconViewItem::_ZTV14Q3IconViewItem) + 16u) + +Vtable for Q3IconView +Q3IconView::_ZTV10Q3IconView: 139u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10Q3IconView) +16 Q3IconView::metaObject +24 Q3IconView::qt_metacast +32 Q3IconView::qt_metacall +40 Q3IconView::~Q3IconView +48 Q3IconView::~Q3IconView +56 QFrame::event +64 Q3IconView::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 Q3ScrollView::setVisible +128 Q3IconView::sizeHint +136 Q3IconView::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 Q3ScrollView::mousePressEvent +168 Q3ScrollView::mouseReleaseEvent +176 Q3ScrollView::mouseDoubleClickEvent +184 Q3ScrollView::mouseMoveEvent +192 Q3ScrollView::wheelEvent +200 Q3IconView::keyPressEvent +208 QWidget::keyReleaseEvent +216 Q3IconView::focusInEvent +224 Q3IconView::focusOutEvent +232 Q3IconView::enterEvent +240 QWidget::leaveEvent +248 Q3Frame::paintEvent +256 QWidget::moveEvent +264 Q3IconView::resizeEvent +272 QWidget::closeEvent +280 Q3ScrollView::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 Q3IconView::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 Q3IconView::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 Q3IconView::inputMethodQuery +392 Q3ScrollView::focusNextPrevChild +400 Q3ScrollView::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 Q3ScrollView::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3ScrollView::frameChanged +456 Q3Frame::drawFrame +464 Q3ScrollView::drawContents +472 Q3ScrollView::setResizePolicy +480 Q3ScrollView::addChild +488 Q3ScrollView::moveChild +496 Q3ScrollView::setVScrollBarMode +504 Q3ScrollView::setHScrollBarMode +512 Q3ScrollView::setCornerWidget +520 Q3ScrollView::setDragAutoScroll +528 Q3ScrollView::resizeContents +536 Q3IconView::setContentsPos +544 Q3IconView::drawContents +552 Q3ScrollView::drawContentsOffset +560 Q3IconView::contentsMousePressEvent +568 Q3IconView::contentsMouseReleaseEvent +576 Q3IconView::contentsMouseDoubleClickEvent +584 Q3IconView::contentsMouseMoveEvent +592 Q3IconView::contentsDragEnterEvent +600 Q3IconView::contentsDragMoveEvent +608 Q3IconView::contentsDragLeaveEvent +616 Q3IconView::contentsDropEvent +624 Q3ScrollView::contentsWheelEvent +632 Q3IconView::contentsContextMenuEvent +640 Q3ScrollView::viewportPaintEvent +648 Q3ScrollView::viewportResizeEvent +656 Q3ScrollView::viewportMousePressEvent +664 Q3ScrollView::viewportMouseReleaseEvent +672 Q3ScrollView::viewportMouseDoubleClickEvent +680 Q3ScrollView::viewportMouseMoveEvent +688 Q3ScrollView::viewportDragEnterEvent +696 Q3ScrollView::viewportDragMoveEvent +704 Q3ScrollView::viewportDragLeaveEvent +712 Q3ScrollView::viewportDropEvent +720 Q3ScrollView::viewportWheelEvent +728 Q3ScrollView::viewportContextMenuEvent +736 Q3ScrollView::setMargins +744 Q3ScrollView::setHBarGeometry +752 Q3ScrollView::setVBarGeometry +760 Q3IconView::insertItem +768 Q3IconView::takeItem +776 Q3IconView::setCurrentItem +784 Q3IconView::setSelected +792 Q3IconView::setSelectionMode +800 Q3IconView::selectAll +808 Q3IconView::clearSelection +816 Q3IconView::invertSelection +824 Q3IconView::repaintItem +832 Q3IconView::clear +840 Q3IconView::setGridX +848 Q3IconView::setGridY +856 Q3IconView::setSpacing +864 Q3IconView::setItemTextPos +872 Q3IconView::setItemTextBackground +880 Q3IconView::setArrangement +888 Q3IconView::setResizeMode +896 Q3IconView::setMaxItemWidth +904 Q3IconView::setMaxItemTextLength +912 Q3IconView::setAutoArrange +920 Q3IconView::setShowToolTips +928 Q3IconView::setItemsMovable +936 Q3IconView::setWordWrapIconText +944 Q3IconView::sort +952 Q3IconView::arrangeItemsInGrid +960 Q3IconView::arrangeItemsInGrid +968 Q3IconView::updateContents +976 Q3IconView::doAutoScroll +984 Q3IconView::adjustItems +992 Q3IconView::slotUpdate +1000 Q3IconView::drawRubber +1008 Q3IconView::dragObject +1016 Q3IconView::startDrag +1024 Q3IconView::insertInGrid +1032 Q3IconView::drawBackground +1040 Q3IconView::drawDragShapes +1048 Q3IconView::initDragEnter +1056 (int (*)(...))-0x00000000000000010 +1064 (int (*)(...))(& _ZTI10Q3IconView) +1072 Q3IconView::_ZThn16_N10Q3IconViewD1Ev +1080 Q3IconView::_ZThn16_N10Q3IconViewD0Ev +1088 QWidget::_ZThn16_NK7QWidget7devTypeEv +1096 QWidget::_ZThn16_NK7QWidget11paintEngineEv +1104 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3IconView + size=64 align=8 + base size=64 base align=8 +Q3IconView (0x7fea0e49d540) 0 + vptr=((& Q3IconView::_ZTV10Q3IconView) + 16u) + Q3ScrollView (0x7fea0e49d5b0) 0 + primary-for Q3IconView (0x7fea0e49d540) + Q3Frame (0x7fea0e49d620) 0 + primary-for Q3ScrollView (0x7fea0e49d5b0) + QFrame (0x7fea0e49d690) 0 + primary-for Q3Frame (0x7fea0e49d620) + QWidget (0x7fea0e461c80) 0 + primary-for QFrame (0x7fea0e49d690) + QObject (0x7fea0e49d700) 0 + primary-for QWidget (0x7fea0e461c80) + QPaintDevice (0x7fea0e49d770) 16 + vptr=((& Q3IconView::_ZTV10Q3IconView) + 1072u) + +Vtable for Q3ListViewItem +Q3ListViewItem::_ZTV14Q3ListViewItem: 41u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14Q3ListViewItem) +16 Q3ListViewItem::~Q3ListViewItem +24 Q3ListViewItem::~Q3ListViewItem +32 Q3ListViewItem::insertItem +40 Q3ListViewItem::takeItem +48 Q3ListViewItem::removeItem +56 Q3ListViewItem::invalidateHeight +64 Q3ListViewItem::width +72 Q3ListViewItem::setText +80 Q3ListViewItem::text +88 Q3ListViewItem::setPixmap +96 Q3ListViewItem::pixmap +104 Q3ListViewItem::key +112 Q3ListViewItem::compare +120 Q3ListViewItem::sortChildItems +128 Q3ListViewItem::setOpen +136 Q3ListViewItem::setup +144 Q3ListViewItem::setSelected +152 Q3ListViewItem::paintCell +160 Q3ListViewItem::paintBranches +168 Q3ListViewItem::paintFocus +176 Q3ListViewItem::setSelectable +184 Q3ListViewItem::setExpandable +192 Q3ListViewItem::sort +200 Q3ListViewItem::setDragEnabled +208 Q3ListViewItem::setDropEnabled +216 Q3ListViewItem::acceptDrop +224 Q3ListViewItem::setRenameEnabled +232 Q3ListViewItem::startRename +240 Q3ListViewItem::setEnabled +248 Q3ListViewItem::rtti +256 Q3ListViewItem::setMultiLinesEnabled +264 Q3ListViewItem::enforceSortOrder +272 Q3ListViewItem::setHeight +280 Q3ListViewItem::activate +288 Q3ListViewItem::dropped +296 Q3ListViewItem::dragEntered +304 Q3ListViewItem::dragLeft +312 Q3ListViewItem::okRename +320 Q3ListViewItem::cancelRename + +Class Q3ListViewItem + size=72 align=8 + base size=72 base align=8 +Q3ListViewItem (0x7fea0e3084d0) 0 + vptr=((& Q3ListViewItem::_ZTV14Q3ListViewItem) + 16u) + +Vtable for Q3ListView +Q3ListView::_ZTV10Q3ListView: 134u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10Q3ListView) +16 Q3ListView::metaObject +24 Q3ListView::qt_metacast +32 Q3ListView::qt_metacall +40 Q3ListView::~Q3ListView +48 Q3ListView::~Q3ListView +56 QFrame::event +64 Q3ListView::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 Q3ScrollView::setVisible +128 Q3ListView::sizeHint +136 Q3ListView::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 Q3ScrollView::mousePressEvent +168 Q3ScrollView::mouseReleaseEvent +176 Q3ScrollView::mouseDoubleClickEvent +184 Q3ScrollView::mouseMoveEvent +192 Q3ScrollView::wheelEvent +200 Q3ListView::keyPressEvent +208 QWidget::keyReleaseEvent +216 Q3ListView::focusInEvent +224 Q3ListView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 Q3Frame::paintEvent +256 QWidget::moveEvent +264 Q3ListView::resizeEvent +272 QWidget::closeEvent +280 Q3ScrollView::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 Q3ListView::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 Q3ListView::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 Q3ListView::inputMethodQuery +392 Q3ScrollView::focusNextPrevChild +400 Q3ScrollView::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 Q3ScrollView::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3ScrollView::frameChanged +456 Q3Frame::drawFrame +464 Q3ScrollView::drawContents +472 Q3ScrollView::setResizePolicy +480 Q3ScrollView::addChild +488 Q3ScrollView::moveChild +496 Q3ScrollView::setVScrollBarMode +504 Q3ScrollView::setHScrollBarMode +512 Q3ScrollView::setCornerWidget +520 Q3ScrollView::setDragAutoScroll +528 Q3ScrollView::resizeContents +536 Q3ListView::setContentsPos +544 Q3ScrollView::drawContents +552 Q3ListView::drawContentsOffset +560 Q3ListView::contentsMousePressEvent +568 Q3ListView::contentsMouseReleaseEvent +576 Q3ListView::contentsMouseDoubleClickEvent +584 Q3ListView::contentsMouseMoveEvent +592 Q3ListView::contentsDragEnterEvent +600 Q3ListView::contentsDragMoveEvent +608 Q3ListView::contentsDragLeaveEvent +616 Q3ListView::contentsDropEvent +624 Q3ScrollView::contentsWheelEvent +632 Q3ListView::contentsContextMenuEvent +640 Q3ScrollView::viewportPaintEvent +648 Q3ListView::viewportResizeEvent +656 Q3ScrollView::viewportMousePressEvent +664 Q3ScrollView::viewportMouseReleaseEvent +672 Q3ScrollView::viewportMouseDoubleClickEvent +680 Q3ScrollView::viewportMouseMoveEvent +688 Q3ScrollView::viewportDragEnterEvent +696 Q3ScrollView::viewportDragMoveEvent +704 Q3ScrollView::viewportDragLeaveEvent +712 Q3ScrollView::viewportDropEvent +720 Q3ScrollView::viewportWheelEvent +728 Q3ScrollView::viewportContextMenuEvent +736 Q3ScrollView::setMargins +744 Q3ScrollView::setHBarGeometry +752 Q3ScrollView::setVBarGeometry +760 Q3ListView::setTreeStepSize +768 Q3ListView::insertItem +776 Q3ListView::takeItem +784 Q3ListView::removeItem +792 Q3ListView::addColumn +800 Q3ListView::addColumn +808 Q3ListView::removeColumn +816 Q3ListView::setColumnText +824 Q3ListView::setColumnText +832 Q3ListView::setColumnWidth +840 Q3ListView::setColumnWidthMode +848 Q3ListView::setColumnAlignment +856 Q3ListView::setMultiSelection +864 Q3ListView::clearSelection +872 Q3ListView::setSelected +880 Q3ListView::setOpen +888 Q3ListView::setCurrentItem +896 Q3ListView::setAllColumnsShowFocus +904 Q3ListView::setItemMargin +912 Q3ListView::setRootIsDecorated +920 Q3ListView::setSorting +928 Q3ListView::sort +936 Q3ListView::setShowSortIndicator +944 Q3ListView::setShowToolTips +952 Q3ListView::setResizeMode +960 Q3ListView::setDefaultRenameAction +968 Q3ListView::clear +976 Q3ListView::invertSelection +984 Q3ListView::selectAll +992 Q3ListView::dragObject +1000 Q3ListView::startDrag +1008 Q3ListView::paintEmptyArea +1016 (int (*)(...))-0x00000000000000010 +1024 (int (*)(...))(& _ZTI10Q3ListView) +1032 Q3ListView::_ZThn16_N10Q3ListViewD1Ev +1040 Q3ListView::_ZThn16_N10Q3ListViewD0Ev +1048 QWidget::_ZThn16_NK7QWidget7devTypeEv +1056 QWidget::_ZThn16_NK7QWidget11paintEngineEv +1064 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3ListView + size=64 align=8 + base size=64 base align=8 +Q3ListView (0x7fea0e351000) 0 + vptr=((& Q3ListView::_ZTV10Q3ListView) + 16u) + Q3ScrollView (0x7fea0e351070) 0 + primary-for Q3ListView (0x7fea0e351000) + Q3Frame (0x7fea0e3510e0) 0 + primary-for Q3ScrollView (0x7fea0e351070) + QFrame (0x7fea0e351150) 0 + primary-for Q3Frame (0x7fea0e3510e0) + QWidget (0x7fea0e348800) 0 + primary-for QFrame (0x7fea0e351150) + QObject (0x7fea0e3511c0) 0 + primary-for QWidget (0x7fea0e348800) + QPaintDevice (0x7fea0e351230) 16 + vptr=((& Q3ListView::_ZTV10Q3ListView) + 1032u) + +Vtable for Q3CheckListItem +Q3CheckListItem::_ZTV15Q3CheckListItem: 43u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15Q3CheckListItem) +16 Q3CheckListItem::~Q3CheckListItem +24 Q3CheckListItem::~Q3CheckListItem +32 Q3ListViewItem::insertItem +40 Q3ListViewItem::takeItem +48 Q3ListViewItem::removeItem +56 Q3ListViewItem::invalidateHeight +64 Q3CheckListItem::width +72 Q3ListViewItem::setText +80 Q3CheckListItem::text +88 Q3ListViewItem::setPixmap +96 Q3ListViewItem::pixmap +104 Q3ListViewItem::key +112 Q3ListViewItem::compare +120 Q3ListViewItem::sortChildItems +128 Q3ListViewItem::setOpen +136 Q3CheckListItem::setup +144 Q3ListViewItem::setSelected +152 Q3CheckListItem::paintCell +160 Q3ListViewItem::paintBranches +168 Q3CheckListItem::paintFocus +176 Q3ListViewItem::setSelectable +184 Q3ListViewItem::setExpandable +192 Q3ListViewItem::sort +200 Q3ListViewItem::setDragEnabled +208 Q3ListViewItem::setDropEnabled +216 Q3ListViewItem::acceptDrop +224 Q3ListViewItem::setRenameEnabled +232 Q3ListViewItem::startRename +240 Q3ListViewItem::setEnabled +248 Q3CheckListItem::rtti +256 Q3ListViewItem::setMultiLinesEnabled +264 Q3ListViewItem::enforceSortOrder +272 Q3ListViewItem::setHeight +280 Q3CheckListItem::activate +288 Q3ListViewItem::dropped +296 Q3ListViewItem::dragEntered +304 Q3ListViewItem::dragLeft +312 Q3ListViewItem::okRename +320 Q3ListViewItem::cancelRename +328 Q3CheckListItem::setOn +336 Q3CheckListItem::stateChange + +Class Q3CheckListItem + size=88 align=8 + base size=88 base align=8 +Q3CheckListItem (0x7fea0e3a02a0) 0 + vptr=((& Q3CheckListItem::_ZTV15Q3CheckListItem) + 16u) + Q3ListViewItem (0x7fea0e3a0310) 0 + primary-for Q3CheckListItem (0x7fea0e3a02a0) + +Class Q3ListViewItemIterator + size=24 align=8 + base size=20 base align=8 +Q3ListViewItemIterator (0x7fea0e3bfc40) 0 + +Vtable for Q3ListBox +Q3ListBox::_ZTV9Q3ListBox: 119u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9Q3ListBox) +16 Q3ListBox::metaObject +24 Q3ListBox::qt_metacast +32 Q3ListBox::qt_metacall +40 Q3ListBox::~Q3ListBox +48 Q3ListBox::~Q3ListBox +56 QFrame::event +64 Q3ListBox::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 Q3ScrollView::setVisible +128 Q3ListBox::sizeHint +136 Q3ListBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 Q3ListBox::mousePressEvent +168 Q3ListBox::mouseReleaseEvent +176 Q3ListBox::mouseDoubleClickEvent +184 Q3ListBox::mouseMoveEvent +192 Q3ScrollView::wheelEvent +200 Q3ListBox::keyPressEvent +208 QWidget::keyReleaseEvent +216 Q3ListBox::focusInEvent +224 Q3ListBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 Q3Frame::paintEvent +256 QWidget::moveEvent +264 Q3ListBox::resizeEvent +272 QWidget::closeEvent +280 Q3ScrollView::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 Q3ListBox::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 Q3ListBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 Q3ListBox::inputMethodQuery +392 Q3ScrollView::focusNextPrevChild +400 Q3ScrollView::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 Q3ScrollView::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3ScrollView::frameChanged +456 Q3Frame::drawFrame +464 Q3ScrollView::drawContents +472 Q3ScrollView::setResizePolicy +480 Q3ScrollView::addChild +488 Q3ScrollView::moveChild +496 Q3ScrollView::setVScrollBarMode +504 Q3ScrollView::setHScrollBarMode +512 Q3ScrollView::setCornerWidget +520 Q3ScrollView::setDragAutoScroll +528 Q3ScrollView::resizeContents +536 Q3ScrollView::setContentsPos +544 Q3ScrollView::drawContents +552 Q3ScrollView::drawContentsOffset +560 Q3ScrollView::contentsMousePressEvent +568 Q3ScrollView::contentsMouseReleaseEvent +576 Q3ScrollView::contentsMouseDoubleClickEvent +584 Q3ScrollView::contentsMouseMoveEvent +592 Q3ScrollView::contentsDragEnterEvent +600 Q3ScrollView::contentsDragMoveEvent +608 Q3ScrollView::contentsDragLeaveEvent +616 Q3ScrollView::contentsDropEvent +624 Q3ScrollView::contentsWheelEvent +632 Q3ListBox::contentsContextMenuEvent +640 Q3ListBox::viewportPaintEvent +648 Q3ScrollView::viewportResizeEvent +656 Q3ScrollView::viewportMousePressEvent +664 Q3ScrollView::viewportMouseReleaseEvent +672 Q3ScrollView::viewportMouseDoubleClickEvent +680 Q3ScrollView::viewportMouseMoveEvent +688 Q3ScrollView::viewportDragEnterEvent +696 Q3ScrollView::viewportDragMoveEvent +704 Q3ScrollView::viewportDragLeaveEvent +712 Q3ScrollView::viewportDropEvent +720 Q3ScrollView::viewportWheelEvent +728 Q3ScrollView::viewportContextMenuEvent +736 Q3ScrollView::setMargins +744 Q3ScrollView::setHBarGeometry +752 Q3ScrollView::setVBarGeometry +760 Q3ListBox::setCurrentItem +768 Q3ListBox::setCurrentItem +776 Q3ListBox::setTopItem +784 Q3ListBox::setBottomItem +792 Q3ListBox::setSelectionMode +800 Q3ListBox::setSelected +808 Q3ListBox::setColumnMode +816 Q3ListBox::setColumnMode +824 Q3ListBox::setRowMode +832 Q3ListBox::setRowMode +840 Q3ListBox::setVariableWidth +848 Q3ListBox::setVariableHeight +856 Q3ListBox::ensureCurrentVisible +864 Q3ListBox::clearSelection +872 Q3ListBox::selectAll +880 Q3ListBox::invertSelection +888 Q3ListBox::paintCell +896 (int (*)(...))-0x00000000000000010 +904 (int (*)(...))(& _ZTI9Q3ListBox) +912 Q3ListBox::_ZThn16_N9Q3ListBoxD1Ev +920 Q3ListBox::_ZThn16_N9Q3ListBoxD0Ev +928 QWidget::_ZThn16_NK7QWidget7devTypeEv +936 QWidget::_ZThn16_NK7QWidget11paintEngineEv +944 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3ListBox + size=64 align=8 + base size=64 base align=8 +Q3ListBox (0x7fea0e1c1e00) 0 + vptr=((& Q3ListBox::_ZTV9Q3ListBox) + 16u) + Q3ScrollView (0x7fea0e1c1e70) 0 + primary-for Q3ListBox (0x7fea0e1c1e00) + Q3Frame (0x7fea0e1c1ee0) 0 + primary-for Q3ScrollView (0x7fea0e1c1e70) + QFrame (0x7fea0e1c1f50) 0 + primary-for Q3Frame (0x7fea0e1c1ee0) + QWidget (0x7fea0e1bba80) 0 + primary-for QFrame (0x7fea0e1c1f50) + QObject (0x7fea0e1ca000) 0 + primary-for QWidget (0x7fea0e1bba80) + QPaintDevice (0x7fea0e1ca070) 16 + vptr=((& Q3ListBox::_ZTV9Q3ListBox) + 912u) + +Vtable for Q3ListBoxItem +Q3ListBoxItem::_ZTV13Q3ListBoxItem: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13Q3ListBoxItem) +16 Q3ListBoxItem::~Q3ListBoxItem +24 Q3ListBoxItem::~Q3ListBoxItem +32 Q3ListBoxItem::text +40 Q3ListBoxItem::pixmap +48 Q3ListBoxItem::height +56 Q3ListBoxItem::width +64 Q3ListBoxItem::rtti +72 __cxa_pure_virtual +80 Q3ListBoxItem::setText + +Class Q3ListBoxItem + size=48 align=8 + base size=48 base align=8 +Q3ListBoxItem (0x7fea0e242150) 0 + vptr=((& Q3ListBoxItem::_ZTV13Q3ListBoxItem) + 16u) + +Vtable for Q3ListBoxText +Q3ListBoxText::_ZTV13Q3ListBoxText: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13Q3ListBoxText) +16 Q3ListBoxText::~Q3ListBoxText +24 Q3ListBoxText::~Q3ListBoxText +32 Q3ListBoxItem::text +40 Q3ListBoxItem::pixmap +48 Q3ListBoxText::height +56 Q3ListBoxText::width +64 Q3ListBoxText::rtti +72 Q3ListBoxText::paint +80 Q3ListBoxItem::setText + +Class Q3ListBoxText + size=48 align=8 + base size=48 base align=8 +Q3ListBoxText (0x7fea0e256c40) 0 + vptr=((& Q3ListBoxText::_ZTV13Q3ListBoxText) + 16u) + Q3ListBoxItem (0x7fea0e256cb0) 0 + primary-for Q3ListBoxText (0x7fea0e256c40) + +Vtable for Q3ListBoxPixmap +Q3ListBoxPixmap::_ZTV15Q3ListBoxPixmap: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15Q3ListBoxPixmap) +16 Q3ListBoxPixmap::~Q3ListBoxPixmap +24 Q3ListBoxPixmap::~Q3ListBoxPixmap +32 Q3ListBoxItem::text +40 Q3ListBoxPixmap::pixmap +48 Q3ListBoxPixmap::height +56 Q3ListBoxPixmap::width +64 Q3ListBoxPixmap::rtti +72 Q3ListBoxPixmap::paint +80 Q3ListBoxItem::setText + +Class Q3ListBoxPixmap + size=72 align=8 + base size=72 base align=8 +Q3ListBoxPixmap (0x7fea0e25f540) 0 + vptr=((& Q3ListBoxPixmap::_ZTV15Q3ListBoxPixmap) + 16u) + Q3ListBoxItem (0x7fea0e25f5b0) 0 + primary-for Q3ListBoxPixmap (0x7fea0e25f540) + +Vtable for Q3SocketDevice +Q3SocketDevice::_ZTV14Q3SocketDevice: 41u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14Q3SocketDevice) +16 QIODevice::metaObject +24 QIODevice::qt_metacast +32 QIODevice::qt_metacall +40 Q3SocketDevice::~Q3SocketDevice +48 Q3SocketDevice::~Q3SocketDevice +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 Q3SocketDevice::isSequential +120 Q3SocketDevice::open +128 Q3SocketDevice::close +136 QIODevice::pos +144 Q3SocketDevice::size +152 QIODevice::seek +160 Q3SocketDevice::atEnd +168 QIODevice::reset +176 Q3SocketDevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 Q3SocketDevice::readData +224 QIODevice::readLineData +232 Q3SocketDevice::writeData +240 Q3SocketDevice::setSocket +248 Q3SocketDevice::setBlocking +256 Q3SocketDevice::setAddressReusable +264 Q3SocketDevice::setReceiveBufferSize +272 Q3SocketDevice::setSendBufferSize +280 Q3SocketDevice::connect +288 Q3SocketDevice::bind +296 Q3SocketDevice::listen +304 Q3SocketDevice::accept +312 Q3SocketDevice::writeBlock +320 Q3SocketDevice::setOption + +Class Q3SocketDevice + size=72 align=8 + base size=72 base align=8 +Q3SocketDevice (0x7fea0e272070) 0 + vptr=((& Q3SocketDevice::_ZTV14Q3SocketDevice) + 16u) + QIODevice (0x7fea0e2720e0) 0 + primary-for Q3SocketDevice (0x7fea0e272070) + QObject (0x7fea0e272150) 0 + primary-for QIODevice (0x7fea0e2720e0) + +Vtable for Q3HttpHeader +Q3HttpHeader::_ZTV12Q3HttpHeader: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12Q3HttpHeader) +16 Q3HttpHeader::~Q3HttpHeader +24 Q3HttpHeader::~Q3HttpHeader +32 Q3HttpHeader::toString +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 Q3HttpHeader::parseLine + +Class Q3HttpHeader + size=24 align=8 + base size=17 base align=8 +Q3HttpHeader (0x7fea0e295700) 0 + vptr=((& Q3HttpHeader::_ZTV12Q3HttpHeader) + 16u) + +Vtable for Q3HttpResponseHeader +Q3HttpResponseHeader::_ZTV20Q3HttpResponseHeader: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20Q3HttpResponseHeader) +16 Q3HttpResponseHeader::~Q3HttpResponseHeader +24 Q3HttpResponseHeader::~Q3HttpResponseHeader +32 Q3HttpResponseHeader::toString +40 Q3HttpResponseHeader::majorVersion +48 Q3HttpResponseHeader::minorVersion +56 Q3HttpResponseHeader::parseLine + +Class Q3HttpResponseHeader + size=40 align=8 + base size=40 base align=8 +Q3HttpResponseHeader (0x7fea0e295ee0) 0 + vptr=((& Q3HttpResponseHeader::_ZTV20Q3HttpResponseHeader) + 16u) + Q3HttpHeader (0x7fea0e295f50) 0 + primary-for Q3HttpResponseHeader (0x7fea0e295ee0) + +Vtable for Q3HttpRequestHeader +Q3HttpRequestHeader::_ZTV19Q3HttpRequestHeader: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19Q3HttpRequestHeader) +16 Q3HttpRequestHeader::~Q3HttpRequestHeader +24 Q3HttpRequestHeader::~Q3HttpRequestHeader +32 Q3HttpRequestHeader::toString +40 Q3HttpRequestHeader::majorVersion +48 Q3HttpRequestHeader::minorVersion +56 Q3HttpRequestHeader::parseLine + +Class Q3HttpRequestHeader + size=48 align=8 + base size=48 base align=8 +Q3HttpRequestHeader (0x7fea0e0bf310) 0 + vptr=((& Q3HttpRequestHeader::_ZTV19Q3HttpRequestHeader) + 16u) + Q3HttpHeader (0x7fea0e0bf380) 0 + primary-for Q3HttpRequestHeader (0x7fea0e0bf310) + +Vtable for Q3Http +Q3Http::_ZTV6Q3Http: 29u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6Q3Http) +16 Q3Http::metaObject +24 Q3Http::qt_metacast +32 Q3Http::qt_metacall +40 Q3Http::~Q3Http +48 Q3Http::~Q3Http +56 QObject::event +64 QObject::eventFilter +72 Q3Http::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 Q3NetworkProtocol::setUrl +120 Q3NetworkProtocol::setAutoDelete +128 Q3Http::supportedOperations +136 Q3NetworkProtocol::addOperation +144 Q3NetworkProtocol::clearOperationQueue +152 Q3NetworkProtocol::stop +160 Q3NetworkProtocol::processOperation +168 Q3NetworkProtocol::operationListChildren +176 Q3NetworkProtocol::operationMkDir +184 Q3NetworkProtocol::operationRemove +192 Q3NetworkProtocol::operationRename +200 Q3Http::operationGet +208 Q3Http::operationPut +216 Q3NetworkProtocol::operationPutChunk +224 Q3NetworkProtocol::checkConnection + +Class Q3Http + size=48 align=8 + base size=44 base align=8 +Q3Http (0x7fea0e0bf700) 0 + vptr=((& Q3Http::_ZTV6Q3Http) + 16u) + Q3NetworkProtocol (0x7fea0e0bf770) 0 + primary-for Q3Http (0x7fea0e0bf700) + QObject (0x7fea0e0bf7e0) 0 + primary-for Q3NetworkProtocol (0x7fea0e0bf770) + +Class Q3Dns::MailServer + size=16 align=8 + base size=10 base align=8 +Q3Dns::MailServer (0x7fea0e0eef50) 0 + +Class Q3Dns::Server + size=16 align=8 + base size=14 base align=8 +Q3Dns::Server (0x7fea0e0ff540) 0 + +Vtable for Q3Dns +Q3Dns::_ZTV5Q3Dns: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5Q3Dns) +16 Q3Dns::metaObject +24 Q3Dns::qt_metacast +32 Q3Dns::qt_metacall +40 Q3Dns::~Q3Dns +48 Q3Dns::~Q3Dns +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 Q3Dns::setLabel +120 Q3Dns::setLabel +128 Q3Dns::setRecordType + +Class Q3Dns + size=48 align=8 + base size=48 base align=8 +Q3Dns (0x7fea0e0ee9a0) 0 + vptr=((& Q3Dns::_ZTV5Q3Dns) + 16u) + QObject (0x7fea0e0eea10) 0 + primary-for Q3Dns (0x7fea0e0ee9a0) + +Vtable for Q3DnsSocket +Q3DnsSocket::_ZTV11Q3DnsSocket: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11Q3DnsSocket) +16 Q3DnsSocket::metaObject +24 Q3DnsSocket::qt_metacast +32 Q3DnsSocket::qt_metacall +40 Q3DnsSocket::~Q3DnsSocket +48 Q3DnsSocket::~Q3DnsSocket +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 Q3DnsSocket::cleanCache +120 Q3DnsSocket::retransmit +128 Q3DnsSocket::answer + +Class Q3DnsSocket + size=16 align=8 + base size=16 base align=8 +Q3DnsSocket (0x7fea0e120620) 0 + vptr=((& Q3DnsSocket::_ZTV11Q3DnsSocket) + 16u) + QObject (0x7fea0e120690) 0 + primary-for Q3DnsSocket (0x7fea0e120620) + +Vtable for Q3Ftp +Q3Ftp::_ZTV5Q3Ftp: 29u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5Q3Ftp) +16 Q3Ftp::metaObject +24 Q3Ftp::qt_metacast +32 Q3Ftp::qt_metacall +40 Q3Ftp::~Q3Ftp +48 Q3Ftp::~Q3Ftp +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 Q3NetworkProtocol::setUrl +120 Q3NetworkProtocol::setAutoDelete +128 Q3Ftp::supportedOperations +136 Q3NetworkProtocol::addOperation +144 Q3NetworkProtocol::clearOperationQueue +152 Q3NetworkProtocol::stop +160 Q3NetworkProtocol::processOperation +168 Q3Ftp::operationListChildren +176 Q3Ftp::operationMkDir +184 Q3Ftp::operationRemove +192 Q3Ftp::operationRename +200 Q3Ftp::operationGet +208 Q3Ftp::operationPut +216 Q3NetworkProtocol::operationPutChunk +224 Q3Ftp::checkConnection + +Class Q3Ftp + size=72 align=8 + base size=65 base align=8 +Q3Ftp (0x7fea0e12f540) 0 + vptr=((& Q3Ftp::_ZTV5Q3Ftp) + 16u) + Q3NetworkProtocol (0x7fea0e12f5b0) 0 + primary-for Q3Ftp (0x7fea0e12f540) + QObject (0x7fea0e12f620) 0 + primary-for Q3NetworkProtocol (0x7fea0e12f5b0) + +Vtable for Q3ServerSocket +Q3ServerSocket::_ZTV14Q3ServerSocket: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14Q3ServerSocket) +16 Q3ServerSocket::metaObject +24 Q3ServerSocket::qt_metacast +32 Q3ServerSocket::qt_metacall +40 Q3ServerSocket::~Q3ServerSocket +48 Q3ServerSocket::~Q3ServerSocket +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 Q3ServerSocket::setSocket +120 __cxa_pure_virtual + +Class Q3ServerSocket + size=24 align=8 + base size=24 base align=8 +Q3ServerSocket (0x7fea0e157a80) 0 + vptr=((& Q3ServerSocket::_ZTV14Q3ServerSocket) + 16u) + QObject (0x7fea0e157af0) 0 + primary-for Q3ServerSocket (0x7fea0e157a80) + +Vtable for Q3Socket +Q3Socket::_ZTV8Q3Socket: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8Q3Socket) +16 Q3Socket::metaObject +24 Q3Socket::qt_metacast +32 Q3Socket::qt_metacall +40 Q3Socket::~Q3Socket +48 Q3Socket::~Q3Socket +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 Q3Socket::isSequential +120 Q3Socket::open +128 Q3Socket::close +136 QIODevice::pos +144 Q3Socket::size +152 QIODevice::seek +160 Q3Socket::atEnd +168 QIODevice::reset +176 Q3Socket::bytesAvailable +184 Q3Socket::bytesToWrite +192 Q3Socket::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 Q3Socket::readData +224 QIODevice::readLineData +232 Q3Socket::writeData +240 Q3Socket::setSocket +248 Q3Socket::setSocketDevice +256 Q3Socket::connectToHost +264 Q3Socket::sn_read +272 Q3Socket::sn_write + +Class Q3Socket + size=24 align=8 + base size=24 base align=8 +Q3Socket (0x7fea0e16db60) 0 + vptr=((& Q3Socket::_ZTV8Q3Socket) + 16u) + QIODevice (0x7fea0e16dbd0) 0 + primary-for Q3Socket (0x7fea0e16db60) + QObject (0x7fea0e16dc40) 0 + primary-for QIODevice (0x7fea0e16dbd0) + +Vtable for Q3LocalFs +Q3LocalFs::_ZTV9Q3LocalFs: 29u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9Q3LocalFs) +16 Q3LocalFs::metaObject +24 Q3LocalFs::qt_metacast +32 Q3LocalFs::qt_metacall +40 Q3LocalFs::~Q3LocalFs +48 Q3LocalFs::~Q3LocalFs +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 Q3NetworkProtocol::setUrl +120 Q3NetworkProtocol::setAutoDelete +128 Q3LocalFs::supportedOperations +136 Q3NetworkProtocol::addOperation +144 Q3NetworkProtocol::clearOperationQueue +152 Q3NetworkProtocol::stop +160 Q3NetworkProtocol::processOperation +168 Q3LocalFs::operationListChildren +176 Q3LocalFs::operationMkDir +184 Q3LocalFs::operationRemove +192 Q3LocalFs::operationRename +200 Q3LocalFs::operationGet +208 Q3LocalFs::operationPut +216 Q3NetworkProtocol::operationPutChunk +224 Q3NetworkProtocol::checkConnection + +Class Q3LocalFs + size=32 align=8 + base size=32 base align=8 +Q3LocalFs (0x7fea0e198a80) 0 + vptr=((& Q3LocalFs::_ZTV9Q3LocalFs) + 16u) + Q3NetworkProtocol (0x7fea0e198af0) 0 + primary-for Q3LocalFs (0x7fea0e198a80) + QObject (0x7fea0e198b60) 0 + primary-for Q3NetworkProtocol (0x7fea0e198af0) + +Vtable for Q3PopupMenu +Q3PopupMenu::_ZTV11Q3PopupMenu: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11Q3PopupMenu) +16 Q3PopupMenu::metaObject +24 Q3PopupMenu::qt_metacast +32 Q3PopupMenu::qt_metacall +40 Q3PopupMenu::~Q3PopupMenu +48 Q3PopupMenu::~Q3PopupMenu +56 QMenu::event +64 QObject::eventFilter +72 QMenu::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QMenu::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QMenu::mousePressEvent +168 QMenu::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QMenu::mouseMoveEvent +192 QMenu::wheelEvent +200 QMenu::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QMenu::enterEvent +240 QMenu::leaveEvent +248 QMenu::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QMenu::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QMenu::hideEvent +352 QWidget::x11Event +360 QMenu::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QMenu::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI11Q3PopupMenu) +464 Q3PopupMenu::_ZThn16_N11Q3PopupMenuD1Ev +472 Q3PopupMenu::_ZThn16_N11Q3PopupMenuD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3PopupMenu + size=40 align=8 + base size=40 base align=8 +Q3PopupMenu (0x7fea0e1ac8c0) 0 + vptr=((& Q3PopupMenu::_ZTV11Q3PopupMenu) + 16u) + QMenu (0x7fea0e1ac930) 0 + primary-for Q3PopupMenu (0x7fea0e1ac8c0) + QWidget (0x7fea0e19e700) 0 + primary-for QMenu (0x7fea0e1ac930) + QObject (0x7fea0e1ac9a0) 0 + primary-for QWidget (0x7fea0e19e700) + QPaintDevice (0x7fea0e1aca10) 16 + vptr=((& Q3PopupMenu::_ZTV11Q3PopupMenu) + 464u) + +Vtable for Q3HBox +Q3HBox::_ZTV6Q3HBox: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6Q3HBox) +16 Q3HBox::metaObject +24 Q3HBox::qt_metacast +32 Q3HBox::qt_metacall +40 Q3HBox::~Q3HBox +48 Q3HBox::~Q3HBox +56 QFrame::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 Q3HBox::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 Q3Frame::paintEvent +256 QWidget::moveEvent +264 Q3Frame::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3HBox::frameChanged +456 Q3Frame::drawFrame +464 Q3Frame::drawContents +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI6Q3HBox) +488 Q3HBox::_ZThn16_N6Q3HBoxD1Ev +496 Q3HBox::_ZThn16_N6Q3HBoxD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3HBox + size=48 align=8 + base size=44 base align=8 +Q3HBox (0x7fea0dfdbc40) 0 + vptr=((& Q3HBox::_ZTV6Q3HBox) + 16u) + Q3Frame (0x7fea0dfdbcb0) 0 + primary-for Q3HBox (0x7fea0dfdbc40) + QFrame (0x7fea0dfdbd20) 0 + primary-for Q3Frame (0x7fea0dfdbcb0) + QWidget (0x7fea0dfe0180) 0 + primary-for QFrame (0x7fea0dfdbd20) + QObject (0x7fea0dfdbd90) 0 + primary-for QWidget (0x7fea0dfe0180) + QPaintDevice (0x7fea0dfdbe00) 16 + vptr=((& Q3HBox::_ZTV6Q3HBox) + 488u) + +Vtable for Q3Grid +Q3Grid::_ZTV6Q3Grid: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6Q3Grid) +16 Q3Grid::metaObject +24 Q3Grid::qt_metacast +32 Q3Grid::qt_metacall +40 Q3Grid::~Q3Grid +48 Q3Grid::~Q3Grid +56 QFrame::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 Q3Grid::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 Q3Frame::paintEvent +256 QWidget::moveEvent +264 Q3Frame::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3Grid::frameChanged +456 Q3Frame::drawFrame +464 Q3Frame::drawContents +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI6Q3Grid) +488 Q3Grid::_ZThn16_N6Q3GridD1Ev +496 Q3Grid::_ZThn16_N6Q3GridD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3Grid + size=48 align=8 + base size=44 base align=8 +Q3Grid (0x7fea0dff8230) 0 + vptr=((& Q3Grid::_ZTV6Q3Grid) + 16u) + Q3Frame (0x7fea0dff82a0) 0 + primary-for Q3Grid (0x7fea0dff8230) + QFrame (0x7fea0dff8310) 0 + primary-for Q3Frame (0x7fea0dff82a0) + QWidget (0x7fea0dfe0880) 0 + primary-for QFrame (0x7fea0dff8310) + QObject (0x7fea0dff8380) 0 + primary-for QWidget (0x7fea0dfe0880) + QPaintDevice (0x7fea0dff83f0) 16 + vptr=((& Q3Grid::_ZTV6Q3Grid) + 488u) + +Vtable for Q3GroupBox +Q3GroupBox::_ZTV10Q3GroupBox: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10Q3GroupBox) +16 Q3GroupBox::metaObject +24 Q3GroupBox::qt_metacast +32 Q3GroupBox::qt_metacall +40 Q3GroupBox::~Q3GroupBox +48 Q3GroupBox::~Q3GroupBox +56 Q3GroupBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 Q3GroupBox::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QGroupBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QGroupBox::mousePressEvent +168 QGroupBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QGroupBox::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QGroupBox::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QGroupBox::paintEvent +256 QWidget::moveEvent +264 Q3GroupBox::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 Q3GroupBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3GroupBox::setColumnLayout +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI10Q3GroupBox) +472 Q3GroupBox::_ZThn16_N10Q3GroupBoxD1Ev +480 Q3GroupBox::_ZThn16_N10Q3GroupBoxD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3GroupBox + size=48 align=8 + base size=48 base align=8 +Q3GroupBox (0x7fea0e00d700) 0 + vptr=((& Q3GroupBox::_ZTV10Q3GroupBox) + 16u) + QGroupBox (0x7fea0e00d770) 0 + primary-for Q3GroupBox (0x7fea0e00d700) + QWidget (0x7fea0dfe0f80) 0 + primary-for QGroupBox (0x7fea0e00d770) + QObject (0x7fea0e00d7e0) 0 + primary-for QWidget (0x7fea0dfe0f80) + QPaintDevice (0x7fea0e00d850) 16 + vptr=((& Q3GroupBox::_ZTV10Q3GroupBox) + 472u) + +Vtable for Q3DateTimeEditBase +Q3DateTimeEditBase::_ZTV18Q3DateTimeEditBase: 69u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18Q3DateTimeEditBase) +16 Q3DateTimeEditBase::metaObject +24 Q3DateTimeEditBase::qt_metacast +32 Q3DateTimeEditBase::qt_metacall +40 Q3DateTimeEditBase::~Q3DateTimeEditBase +48 Q3DateTimeEditBase::~Q3DateTimeEditBase +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 __cxa_pure_virtual +456 __cxa_pure_virtual +464 __cxa_pure_virtual +472 __cxa_pure_virtual +480 __cxa_pure_virtual +488 __cxa_pure_virtual +496 (int (*)(...))-0x00000000000000010 +504 (int (*)(...))(& _ZTI18Q3DateTimeEditBase) +512 Q3DateTimeEditBase::_ZThn16_N18Q3DateTimeEditBaseD1Ev +520 Q3DateTimeEditBase::_ZThn16_N18Q3DateTimeEditBaseD0Ev +528 QWidget::_ZThn16_NK7QWidget7devTypeEv +536 QWidget::_ZThn16_NK7QWidget11paintEngineEv +544 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3DateTimeEditBase + size=40 align=8 + base size=40 base align=8 +Q3DateTimeEditBase (0x7fea0e0379a0) 0 + vptr=((& Q3DateTimeEditBase::_ZTV18Q3DateTimeEditBase) + 16u) + QWidget (0x7fea0e039180) 0 + primary-for Q3DateTimeEditBase (0x7fea0e0379a0) + QObject (0x7fea0e037a10) 0 + primary-for QWidget (0x7fea0e039180) + QPaintDevice (0x7fea0e037a80) 16 + vptr=((& Q3DateTimeEditBase::_ZTV18Q3DateTimeEditBase) + 512u) + +Vtable for Q3DateEdit +Q3DateEdit::_ZTV10Q3DateEdit: 81u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10Q3DateEdit) +16 Q3DateEdit::metaObject +24 Q3DateEdit::qt_metacast +32 Q3DateEdit::qt_metacall +40 Q3DateEdit::~Q3DateEdit +48 Q3DateEdit::~Q3DateEdit +56 Q3DateEdit::event +64 QObject::eventFilter +72 Q3DateEdit::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 Q3DateEdit::sizeHint +136 Q3DateEdit::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 Q3DateEdit::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3DateEdit::setFocusSection +456 Q3DateEdit::sectionFormattedText +464 Q3DateEdit::addNumber +472 Q3DateEdit::removeLastNumber +480 Q3DateEdit::stepUp +488 Q3DateEdit::stepDown +496 Q3DateEdit::setDate +504 Q3DateEdit::setOrder +512 Q3DateEdit::setAutoAdvance +520 Q3DateEdit::setMinValue +528 Q3DateEdit::setMaxValue +536 Q3DateEdit::setRange +544 Q3DateEdit::setSeparator +552 Q3DateEdit::setYear +560 Q3DateEdit::setMonth +568 Q3DateEdit::setDay +576 Q3DateEdit::fix +584 Q3DateEdit::outOfRange +592 (int (*)(...))-0x00000000000000010 +600 (int (*)(...))(& _ZTI10Q3DateEdit) +608 Q3DateEdit::_ZThn16_N10Q3DateEditD1Ev +616 Q3DateEdit::_ZThn16_N10Q3DateEditD0Ev +624 QWidget::_ZThn16_NK7QWidget7devTypeEv +632 QWidget::_ZThn16_NK7QWidget11paintEngineEv +640 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3DateEdit + size=48 align=8 + base size=48 base align=8 +Q3DateEdit (0x7fea0e0568c0) 0 + vptr=((& Q3DateEdit::_ZTV10Q3DateEdit) + 16u) + Q3DateTimeEditBase (0x7fea0e056930) 0 + primary-for Q3DateEdit (0x7fea0e0568c0) + QWidget (0x7fea0e058300) 0 + primary-for Q3DateTimeEditBase (0x7fea0e056930) + QObject (0x7fea0e0569a0) 0 + primary-for QWidget (0x7fea0e058300) + QPaintDevice (0x7fea0e056a10) 16 + vptr=((& Q3DateEdit::_ZTV10Q3DateEdit) + 608u) + +Vtable for Q3TimeEdit +Q3TimeEdit::_ZTV10Q3TimeEdit: 79u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10Q3TimeEdit) +16 Q3TimeEdit::metaObject +24 Q3TimeEdit::qt_metacast +32 Q3TimeEdit::qt_metacall +40 Q3TimeEdit::~Q3TimeEdit +48 Q3TimeEdit::~Q3TimeEdit +56 Q3TimeEdit::event +64 QObject::eventFilter +72 Q3TimeEdit::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 Q3TimeEdit::sizeHint +136 Q3TimeEdit::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 Q3TimeEdit::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3TimeEdit::setFocusSection +456 Q3TimeEdit::sectionFormattedText +464 Q3TimeEdit::addNumber +472 Q3TimeEdit::removeLastNumber +480 Q3TimeEdit::stepUp +488 Q3TimeEdit::stepDown +496 Q3TimeEdit::setTime +504 Q3TimeEdit::setAutoAdvance +512 Q3TimeEdit::setMinValue +520 Q3TimeEdit::setMaxValue +528 Q3TimeEdit::setRange +536 Q3TimeEdit::setSeparator +544 Q3TimeEdit::outOfRange +552 Q3TimeEdit::setHour +560 Q3TimeEdit::setMinute +568 Q3TimeEdit::setSecond +576 (int (*)(...))-0x00000000000000010 +584 (int (*)(...))(& _ZTI10Q3TimeEdit) +592 Q3TimeEdit::_ZThn16_N10Q3TimeEditD1Ev +600 Q3TimeEdit::_ZThn16_N10Q3TimeEditD0Ev +608 QWidget::_ZThn16_NK7QWidget7devTypeEv +616 QWidget::_ZThn16_NK7QWidget11paintEngineEv +624 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3TimeEdit + size=48 align=8 + base size=48 base align=8 +Q3TimeEdit (0x7fea0e0809a0) 0 + vptr=((& Q3TimeEdit::_ZTV10Q3TimeEdit) + 16u) + Q3DateTimeEditBase (0x7fea0e080a10) 0 + primary-for Q3TimeEdit (0x7fea0e0809a0) + QWidget (0x7fea0e058f00) 0 + primary-for Q3DateTimeEditBase (0x7fea0e080a10) + QObject (0x7fea0e080a80) 0 + primary-for QWidget (0x7fea0e058f00) + QPaintDevice (0x7fea0e080af0) 16 + vptr=((& Q3TimeEdit::_ZTV10Q3TimeEdit) + 592u) + +Vtable for Q3DateTimeEdit +Q3DateTimeEdit::_ZTV14Q3DateTimeEdit: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14Q3DateTimeEdit) +16 Q3DateTimeEdit::metaObject +24 Q3DateTimeEdit::qt_metacast +32 Q3DateTimeEdit::qt_metacall +40 Q3DateTimeEdit::~Q3DateTimeEdit +48 Q3DateTimeEdit::~Q3DateTimeEdit +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 Q3DateTimeEdit::sizeHint +136 Q3DateTimeEdit::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 Q3DateTimeEdit::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3DateTimeEdit::setDateTime +456 Q3DateTimeEdit::setAutoAdvance +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI14Q3DateTimeEdit) +480 Q3DateTimeEdit::_ZThn16_N14Q3DateTimeEditD1Ev +488 Q3DateTimeEdit::_ZThn16_N14Q3DateTimeEditD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3DateTimeEdit + size=64 align=8 + base size=64 base align=8 +Q3DateTimeEdit (0x7fea0e0a48c0) 0 + vptr=((& Q3DateTimeEdit::_ZTV14Q3DateTimeEdit) + 16u) + QWidget (0x7fea0e084b00) 0 + primary-for Q3DateTimeEdit (0x7fea0e0a48c0) + QObject (0x7fea0e0a4930) 0 + primary-for QWidget (0x7fea0e084b00) + QPaintDevice (0x7fea0e0a49a0) 16 + vptr=((& Q3DateTimeEdit::_ZTV14Q3DateTimeEdit) + 480u) + +Vtable for Q3GridView +Q3GridView::_ZTV10Q3GridView: 109u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10Q3GridView) +16 Q3GridView::metaObject +24 Q3GridView::qt_metacast +32 Q3GridView::qt_metacall +40 Q3GridView::~Q3GridView +48 Q3GridView::~Q3GridView +56 QFrame::event +64 Q3ScrollView::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 Q3ScrollView::setVisible +128 Q3ScrollView::sizeHint +136 Q3ScrollView::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 Q3ScrollView::mousePressEvent +168 Q3ScrollView::mouseReleaseEvent +176 Q3ScrollView::mouseDoubleClickEvent +184 Q3ScrollView::mouseMoveEvent +192 Q3ScrollView::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 Q3Frame::paintEvent +256 QWidget::moveEvent +264 Q3ScrollView::resizeEvent +272 QWidget::closeEvent +280 Q3ScrollView::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 Q3ScrollView::focusNextPrevChild +400 Q3ScrollView::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 Q3ScrollView::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3ScrollView::frameChanged +456 Q3Frame::drawFrame +464 Q3GridView::drawContents +472 Q3ScrollView::setResizePolicy +480 Q3ScrollView::addChild +488 Q3ScrollView::moveChild +496 Q3ScrollView::setVScrollBarMode +504 Q3ScrollView::setHScrollBarMode +512 Q3ScrollView::setCornerWidget +520 Q3ScrollView::setDragAutoScroll +528 Q3ScrollView::resizeContents +536 Q3ScrollView::setContentsPos +544 Q3GridView::drawContents +552 Q3ScrollView::drawContentsOffset +560 Q3ScrollView::contentsMousePressEvent +568 Q3ScrollView::contentsMouseReleaseEvent +576 Q3ScrollView::contentsMouseDoubleClickEvent +584 Q3ScrollView::contentsMouseMoveEvent +592 Q3ScrollView::contentsDragEnterEvent +600 Q3ScrollView::contentsDragMoveEvent +608 Q3ScrollView::contentsDragLeaveEvent +616 Q3ScrollView::contentsDropEvent +624 Q3ScrollView::contentsWheelEvent +632 Q3ScrollView::contentsContextMenuEvent +640 Q3ScrollView::viewportPaintEvent +648 Q3ScrollView::viewportResizeEvent +656 Q3ScrollView::viewportMousePressEvent +664 Q3ScrollView::viewportMouseReleaseEvent +672 Q3ScrollView::viewportMouseDoubleClickEvent +680 Q3ScrollView::viewportMouseMoveEvent +688 Q3ScrollView::viewportDragEnterEvent +696 Q3ScrollView::viewportDragMoveEvent +704 Q3ScrollView::viewportDragLeaveEvent +712 Q3ScrollView::viewportDropEvent +720 Q3ScrollView::viewportWheelEvent +728 Q3ScrollView::viewportContextMenuEvent +736 Q3ScrollView::setMargins +744 Q3ScrollView::setHBarGeometry +752 Q3ScrollView::setVBarGeometry +760 Q3GridView::setNumRows +768 Q3GridView::setNumCols +776 Q3GridView::setCellWidth +784 Q3GridView::setCellHeight +792 __cxa_pure_virtual +800 Q3GridView::paintEmptyArea +808 Q3GridView::dimensionChange +816 (int (*)(...))-0x00000000000000010 +824 (int (*)(...))(& _ZTI10Q3GridView) +832 Q3GridView::_ZThn16_N10Q3GridViewD1Ev +840 Q3GridView::_ZThn16_N10Q3GridViewD0Ev +848 QWidget::_ZThn16_NK7QWidget7devTypeEv +856 QWidget::_ZThn16_NK7QWidget11paintEngineEv +864 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3GridView + size=80 align=8 + base size=80 base align=8 +Q3GridView (0x7fea0dec3230) 0 + vptr=((& Q3GridView::_ZTV10Q3GridView) + 16u) + Q3ScrollView (0x7fea0dec32a0) 0 + primary-for Q3GridView (0x7fea0dec3230) + Q3Frame (0x7fea0dec3310) 0 + primary-for Q3ScrollView (0x7fea0dec32a0) + QFrame (0x7fea0dec3380) 0 + primary-for Q3Frame (0x7fea0dec3310) + QWidget (0x7fea0dec0400) 0 + primary-for QFrame (0x7fea0dec3380) + QObject (0x7fea0dec33f0) 0 + primary-for QWidget (0x7fea0dec0400) + QPaintDevice (0x7fea0dec3460) 16 + vptr=((& Q3GridView::_ZTV10Q3GridView) + 832u) + +Vtable for Q3RangeControl +Q3RangeControl::_ZTV14Q3RangeControl: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14Q3RangeControl) +16 Q3RangeControl::~Q3RangeControl +24 Q3RangeControl::~Q3RangeControl +32 Q3RangeControl::valueChange +40 Q3RangeControl::rangeChange +48 Q3RangeControl::stepChange + +Class Q3RangeControl + size=40 align=8 + base size=40 base align=8 +Q3RangeControl (0x7fea0deed310) 0 + vptr=((& Q3RangeControl::_ZTV14Q3RangeControl) + 16u) + +Vtable for Q3SpinWidget +Q3SpinWidget::_ZTV12Q3SpinWidget: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12Q3SpinWidget) +16 Q3SpinWidget::metaObject +24 Q3SpinWidget::qt_metacast +32 Q3SpinWidget::qt_metacall +40 Q3SpinWidget::~Q3SpinWidget +48 Q3SpinWidget::~Q3SpinWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 Q3SpinWidget::mousePressEvent +168 Q3SpinWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 Q3SpinWidget::mouseMoveEvent +192 Q3SpinWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 Q3SpinWidget::paintEvent +256 QWidget::moveEvent +264 Q3SpinWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 Q3SpinWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3SpinWidget::setButtonSymbols +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI12Q3SpinWidget) +472 Q3SpinWidget::_ZThn16_N12Q3SpinWidgetD1Ev +480 Q3SpinWidget::_ZThn16_N12Q3SpinWidgetD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3SpinWidget + size=48 align=8 + base size=48 base align=8 +Q3SpinWidget (0x7fea0defc620) 0 + vptr=((& Q3SpinWidget::_ZTV12Q3SpinWidget) + 16u) + QWidget (0x7fea0dee9a00) 0 + primary-for Q3SpinWidget (0x7fea0defc620) + QObject (0x7fea0defc690) 0 + primary-for QWidget (0x7fea0dee9a00) + QPaintDevice (0x7fea0defc700) 16 + vptr=((& Q3SpinWidget::_ZTV12Q3SpinWidget) + 472u) + +Vtable for Q3VBox +Q3VBox::_ZTV6Q3VBox: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6Q3VBox) +16 Q3VBox::metaObject +24 Q3VBox::qt_metacast +32 Q3VBox::qt_metacall +40 Q3VBox::~Q3VBox +48 Q3VBox::~Q3VBox +56 QFrame::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 Q3HBox::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 Q3Frame::paintEvent +256 QWidget::moveEvent +264 Q3Frame::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3HBox::frameChanged +456 Q3Frame::drawFrame +464 Q3Frame::drawContents +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI6Q3VBox) +488 Q3VBox::_ZThn16_N6Q3VBoxD1Ev +496 Q3VBox::_ZThn16_N6Q3VBoxD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3VBox + size=48 align=8 + base size=44 base align=8 +Q3VBox (0x7fea0df0be00) 0 + vptr=((& Q3VBox::_ZTV6Q3VBox) + 16u) + Q3HBox (0x7fea0df0be70) 0 + primary-for Q3VBox (0x7fea0df0be00) + Q3Frame (0x7fea0df0bee0) 0 + primary-for Q3HBox (0x7fea0df0be70) + QFrame (0x7fea0df0bf50) 0 + primary-for Q3Frame (0x7fea0df0bee0) + QWidget (0x7fea0df17200) 0 + primary-for QFrame (0x7fea0df0bf50) + QObject (0x7fea0df0b1c0) 0 + primary-for QWidget (0x7fea0df17200) + QPaintDevice (0x7fea0df1c000) 16 + vptr=((& Q3VBox::_ZTV6Q3VBox) + 488u) + +Vtable for Q3ButtonGroup +Q3ButtonGroup::_ZTV13Q3ButtonGroup: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13Q3ButtonGroup) +16 Q3ButtonGroup::metaObject +24 Q3ButtonGroup::qt_metacast +32 Q3ButtonGroup::qt_metacall +40 Q3ButtonGroup::~Q3ButtonGroup +48 Q3ButtonGroup::~Q3ButtonGroup +56 Q3ButtonGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 Q3GroupBox::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QGroupBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QGroupBox::mousePressEvent +168 QGroupBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QGroupBox::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QGroupBox::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QGroupBox::paintEvent +256 QWidget::moveEvent +264 Q3GroupBox::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 Q3GroupBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3GroupBox::setColumnLayout +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI13Q3ButtonGroup) +472 Q3ButtonGroup::_ZThn16_N13Q3ButtonGroupD1Ev +480 Q3ButtonGroup::_ZThn16_N13Q3ButtonGroupD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3ButtonGroup + size=80 align=8 + base size=80 base align=8 +Q3ButtonGroup (0x7fea0df2e2a0) 0 + vptr=((& Q3ButtonGroup::_ZTV13Q3ButtonGroup) + 16u) + Q3GroupBox (0x7fea0df2e310) 0 + primary-for Q3ButtonGroup (0x7fea0df2e2a0) + QGroupBox (0x7fea0df2e380) 0 + primary-for Q3GroupBox (0x7fea0df2e310) + QWidget (0x7fea0df17900) 0 + primary-for QGroupBox (0x7fea0df2e380) + QObject (0x7fea0df2e3f0) 0 + primary-for QWidget (0x7fea0df17900) + QPaintDevice (0x7fea0df2e460) 16 + vptr=((& Q3ButtonGroup::_ZTV13Q3ButtonGroup) + 472u) + +Vtable for Q3VButtonGroup +Q3VButtonGroup::_ZTV14Q3VButtonGroup: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14Q3VButtonGroup) +16 Q3VButtonGroup::metaObject +24 Q3VButtonGroup::qt_metacast +32 Q3VButtonGroup::qt_metacall +40 Q3VButtonGroup::~Q3VButtonGroup +48 Q3VButtonGroup::~Q3VButtonGroup +56 Q3ButtonGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 Q3GroupBox::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QGroupBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QGroupBox::mousePressEvent +168 QGroupBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QGroupBox::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QGroupBox::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QGroupBox::paintEvent +256 QWidget::moveEvent +264 Q3GroupBox::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 Q3GroupBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3GroupBox::setColumnLayout +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI14Q3VButtonGroup) +472 Q3VButtonGroup::_ZThn16_N14Q3VButtonGroupD1Ev +480 Q3VButtonGroup::_ZThn16_N14Q3VButtonGroupD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3VButtonGroup + size=80 align=8 + base size=80 base align=8 +Q3VButtonGroup (0x7fea0df66d90) 0 + vptr=((& Q3VButtonGroup::_ZTV14Q3VButtonGroup) + 16u) + Q3ButtonGroup (0x7fea0df66e00) 0 + primary-for Q3VButtonGroup (0x7fea0df66d90) + Q3GroupBox (0x7fea0df66e70) 0 + primary-for Q3ButtonGroup (0x7fea0df66e00) + QGroupBox (0x7fea0df66ee0) 0 + primary-for Q3GroupBox (0x7fea0df66e70) + QWidget (0x7fea0df6b280) 0 + primary-for QGroupBox (0x7fea0df66ee0) + QObject (0x7fea0df66f50) 0 + primary-for QWidget (0x7fea0df6b280) + QPaintDevice (0x7fea0df6f000) 16 + vptr=((& Q3VButtonGroup::_ZTV14Q3VButtonGroup) + 472u) + +Vtable for Q3HButtonGroup +Q3HButtonGroup::_ZTV14Q3HButtonGroup: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14Q3HButtonGroup) +16 Q3HButtonGroup::metaObject +24 Q3HButtonGroup::qt_metacast +32 Q3HButtonGroup::qt_metacall +40 Q3HButtonGroup::~Q3HButtonGroup +48 Q3HButtonGroup::~Q3HButtonGroup +56 Q3ButtonGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 Q3GroupBox::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QGroupBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QGroupBox::mousePressEvent +168 QGroupBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QGroupBox::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QGroupBox::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QGroupBox::paintEvent +256 QWidget::moveEvent +264 Q3GroupBox::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 Q3GroupBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3GroupBox::setColumnLayout +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI14Q3HButtonGroup) +472 Q3HButtonGroup::_ZThn16_N14Q3HButtonGroupD1Ev +480 Q3HButtonGroup::_ZThn16_N14Q3HButtonGroupD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3HButtonGroup + size=80 align=8 + base size=80 base align=8 +Q3HButtonGroup (0x7fea0df904d0) 0 + vptr=((& Q3HButtonGroup::_ZTV14Q3HButtonGroup) + 16u) + Q3ButtonGroup (0x7fea0df90540) 0 + primary-for Q3HButtonGroup (0x7fea0df904d0) + Q3GroupBox (0x7fea0df905b0) 0 + primary-for Q3ButtonGroup (0x7fea0df90540) + QGroupBox (0x7fea0df90620) 0 + primary-for Q3GroupBox (0x7fea0df905b0) + QWidget (0x7fea0df8f300) 0 + primary-for QGroupBox (0x7fea0df90620) + QObject (0x7fea0df90690) 0 + primary-for QWidget (0x7fea0df8f300) + QPaintDevice (0x7fea0df90700) 16 + vptr=((& Q3HButtonGroup::_ZTV14Q3HButtonGroup) + 472u) + +Vtable for Q3WidgetStack +Q3WidgetStack::_ZTV13Q3WidgetStack: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13Q3WidgetStack) +16 Q3WidgetStack::metaObject +24 Q3WidgetStack::qt_metacast +32 Q3WidgetStack::qt_metacall +40 Q3WidgetStack::~Q3WidgetStack +48 Q3WidgetStack::~Q3WidgetStack +56 Q3WidgetStack::event +64 QObject::eventFilter +72 QObject::timerEvent +80 Q3WidgetStack::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 Q3WidgetStack::setVisible +128 Q3WidgetStack::sizeHint +136 Q3WidgetStack::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 Q3Frame::paintEvent +256 QWidget::moveEvent +264 Q3WidgetStack::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3WidgetStack::frameChanged +456 Q3Frame::drawFrame +464 Q3Frame::drawContents +472 Q3WidgetStack::setChildGeometries +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI13Q3WidgetStack) +496 Q3WidgetStack::_ZThn16_N13Q3WidgetStackD1Ev +504 Q3WidgetStack::_ZThn16_N13Q3WidgetStackD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3WidgetStack + size=88 align=8 + base size=88 base align=8 +Q3WidgetStack (0x7fea0dfacbd0) 0 + vptr=((& Q3WidgetStack::_ZTV13Q3WidgetStack) + 16u) + Q3Frame (0x7fea0dfacc40) 0 + primary-for Q3WidgetStack (0x7fea0dfacbd0) + QFrame (0x7fea0dfaccb0) 0 + primary-for Q3Frame (0x7fea0dfacc40) + QWidget (0x7fea0dfaf380) 0 + primary-for QFrame (0x7fea0dfaccb0) + QObject (0x7fea0dfacd20) 0 + primary-for QWidget (0x7fea0dfaf380) + QPaintDevice (0x7fea0dfacd90) 16 + vptr=((& Q3WidgetStack::_ZTV13Q3WidgetStack) + 496u) + +Vtable for Q3ComboBox +Q3ComboBox::_ZTV10Q3ComboBox: 75u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10Q3ComboBox) +16 Q3ComboBox::metaObject +24 Q3ComboBox::qt_metacast +32 Q3ComboBox::qt_metacall +40 Q3ComboBox::~Q3ComboBox +48 Q3ComboBox::~Q3ComboBox +56 QWidget::event +64 Q3ComboBox::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 Q3ComboBox::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 Q3ComboBox::mousePressEvent +168 Q3ComboBox::mouseReleaseEvent +176 Q3ComboBox::mouseDoubleClickEvent +184 Q3ComboBox::mouseMoveEvent +192 Q3ComboBox::wheelEvent +200 Q3ComboBox::keyPressEvent +208 QWidget::keyReleaseEvent +216 Q3ComboBox::focusInEvent +224 Q3ComboBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 Q3ComboBox::paintEvent +256 QWidget::moveEvent +264 Q3ComboBox::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 Q3ComboBox::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3ComboBox::setCurrentItem +456 Q3ComboBox::setCurrentText +464 Q3ComboBox::setAutoResize +472 Q3ComboBox::setSizeLimit +480 Q3ComboBox::setMaxCount +488 Q3ComboBox::setInsertionPolicy +496 Q3ComboBox::setValidator +504 Q3ComboBox::setListBox +512 Q3ComboBox::setLineEdit +520 Q3ComboBox::setAutoCompletion +528 Q3ComboBox::popup +536 Q3ComboBox::setEditText +544 (int (*)(...))-0x00000000000000010 +552 (int (*)(...))(& _ZTI10Q3ComboBox) +560 Q3ComboBox::_ZThn16_N10Q3ComboBoxD1Ev +568 Q3ComboBox::_ZThn16_N10Q3ComboBoxD0Ev +576 QWidget::_ZThn16_NK7QWidget7devTypeEv +584 QWidget::_ZThn16_NK7QWidget11paintEngineEv +592 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3ComboBox + size=48 align=8 + base size=48 base align=8 +Q3ComboBox (0x7fea0ddd0230) 0 + vptr=((& Q3ComboBox::_ZTV10Q3ComboBox) + 16u) + QWidget (0x7fea0dfafa80) 0 + primary-for Q3ComboBox (0x7fea0ddd0230) + QObject (0x7fea0ddd02a0) 0 + primary-for QWidget (0x7fea0dfafa80) + QPaintDevice (0x7fea0ddd0310) 16 + vptr=((& Q3ComboBox::_ZTV10Q3ComboBox) + 560u) + +Vtable for Q3DockWindow +Q3DockWindow::_ZTV12Q3DockWindow: 81u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12Q3DockWindow) +16 Q3DockWindow::metaObject +24 Q3DockWindow::qt_metacast +32 Q3DockWindow::qt_metacall +40 Q3DockWindow::~Q3DockWindow +48 Q3DockWindow::~Q3DockWindow +56 Q3DockWindow::event +64 Q3DockWindow::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 Q3DockWindow::sizeHint +136 Q3DockWindow::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 Q3Frame::paintEvent +256 QWidget::moveEvent +264 Q3DockWindow::resizeEvent +272 QWidget::closeEvent +280 Q3DockWindow::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 Q3DockWindow::showEvent +344 Q3DockWindow::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3Frame::frameChanged +456 Q3DockWindow::drawFrame +464 Q3DockWindow::drawContents +472 Q3DockWindow::setWidget +480 Q3DockWindow::setCloseMode +488 Q3DockWindow::setResizeEnabled +496 Q3DockWindow::setMovingEnabled +504 Q3DockWindow::setHorizontallyStretchable +512 Q3DockWindow::setVerticallyStretchable +520 Q3DockWindow::setOffset +528 Q3DockWindow::setFixedExtentWidth +536 Q3DockWindow::setFixedExtentHeight +544 Q3DockWindow::setNewLine +552 Q3DockWindow::setOpaqueMoving +560 Q3DockWindow::undock +568 Q3DockWindow::undock +576 Q3DockWindow::dock +584 Q3DockWindow::setOrientation +592 (int (*)(...))-0x00000000000000010 +600 (int (*)(...))(& _ZTI12Q3DockWindow) +608 Q3DockWindow::_ZThn16_N12Q3DockWindowD1Ev +616 Q3DockWindow::_ZThn16_N12Q3DockWindowD0Ev +624 QWidget::_ZThn16_NK7QWidget7devTypeEv +632 QWidget::_ZThn16_NK7QWidget11paintEngineEv +640 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3DockWindow + size=256 align=8 + base size=256 base align=8 +Q3DockWindow (0x7fea0ddf0ee0) 0 + vptr=((& Q3DockWindow::_ZTV12Q3DockWindow) + 16u) + Q3Frame (0x7fea0ddf0f50) 0 + primary-for Q3DockWindow (0x7fea0ddf0ee0) + QFrame (0x7fea0ddf02a0) 0 + primary-for Q3Frame (0x7fea0ddf0f50) + QWidget (0x7fea0dde0780) 0 + primary-for QFrame (0x7fea0ddf02a0) + QObject (0x7fea0de03000) 0 + primary-for QWidget (0x7fea0dde0780) + QPaintDevice (0x7fea0de03070) 16 + vptr=((& Q3DockWindow::_ZTV12Q3DockWindow) + 608u) + +Vtable for Q3ToolBar +Q3ToolBar::_ZTV9Q3ToolBar: 84u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9Q3ToolBar) +16 Q3ToolBar::metaObject +24 Q3ToolBar::qt_metacast +32 Q3ToolBar::qt_metacall +40 Q3ToolBar::~Q3ToolBar +48 Q3ToolBar::~Q3ToolBar +56 Q3ToolBar::event +64 Q3DockWindow::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 Q3ToolBar::setVisible +128 Q3DockWindow::sizeHint +136 Q3ToolBar::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 Q3Frame::paintEvent +256 QWidget::moveEvent +264 Q3ToolBar::resizeEvent +272 QWidget::closeEvent +280 Q3DockWindow::contextMenuEvent +288 QWidget::tabletEvent +296 Q3ToolBar::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 Q3DockWindow::showEvent +344 Q3DockWindow::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 Q3ToolBar::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3Frame::frameChanged +456 Q3DockWindow::drawFrame +464 Q3DockWindow::drawContents +472 Q3DockWindow::setWidget +480 Q3DockWindow::setCloseMode +488 Q3DockWindow::setResizeEnabled +496 Q3DockWindow::setMovingEnabled +504 Q3DockWindow::setHorizontallyStretchable +512 Q3DockWindow::setVerticallyStretchable +520 Q3DockWindow::setOffset +528 Q3DockWindow::setFixedExtentWidth +536 Q3DockWindow::setFixedExtentHeight +544 Q3DockWindow::setNewLine +552 Q3DockWindow::setOpaqueMoving +560 Q3DockWindow::undock +568 Q3DockWindow::undock +576 Q3DockWindow::dock +584 Q3ToolBar::setOrientation +592 Q3ToolBar::setStretchableWidget +600 Q3ToolBar::setLabel +608 Q3ToolBar::clear +616 (int (*)(...))-0x00000000000000010 +624 (int (*)(...))(& _ZTI9Q3ToolBar) +632 Q3ToolBar::_ZThn16_N9Q3ToolBarD1Ev +640 Q3ToolBar::_ZThn16_N9Q3ToolBarD0Ev +648 QWidget::_ZThn16_NK7QWidget7devTypeEv +656 QWidget::_ZThn16_NK7QWidget11paintEngineEv +664 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3ToolBar + size=288 align=8 + base size=288 base align=8 +Q3ToolBar (0x7fea0de39f50) 0 + vptr=((& Q3ToolBar::_ZTV9Q3ToolBar) + 16u) + Q3DockWindow (0x7fea0de40000) 0 + primary-for Q3ToolBar (0x7fea0de39f50) + Q3Frame (0x7fea0de40070) 0 + primary-for Q3DockWindow (0x7fea0de40000) + QFrame (0x7fea0de400e0) 0 + primary-for Q3Frame (0x7fea0de40070) + QWidget (0x7fea0de32d00) 0 + primary-for QFrame (0x7fea0de400e0) + QObject (0x7fea0de40150) 0 + primary-for QWidget (0x7fea0de32d00) + QPaintDevice (0x7fea0de401c0) 16 + vptr=((& Q3ToolBar::_ZTV9Q3ToolBar) + 632u) + +Vtable for Q3HGroupBox +Q3HGroupBox::_ZTV11Q3HGroupBox: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11Q3HGroupBox) +16 Q3HGroupBox::metaObject +24 Q3HGroupBox::qt_metacast +32 Q3HGroupBox::qt_metacall +40 Q3HGroupBox::~Q3HGroupBox +48 Q3HGroupBox::~Q3HGroupBox +56 Q3GroupBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 Q3GroupBox::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QGroupBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QGroupBox::mousePressEvent +168 QGroupBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QGroupBox::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QGroupBox::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QGroupBox::paintEvent +256 QWidget::moveEvent +264 Q3GroupBox::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 Q3GroupBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3GroupBox::setColumnLayout +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI11Q3HGroupBox) +472 Q3HGroupBox::_ZThn16_N11Q3HGroupBoxD1Ev +480 Q3HGroupBox::_ZThn16_N11Q3HGroupBoxD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3HGroupBox + size=48 align=8 + base size=48 base align=8 +Q3HGroupBox (0x7fea0de59700) 0 + vptr=((& Q3HGroupBox::_ZTV11Q3HGroupBox) + 16u) + Q3GroupBox (0x7fea0de59770) 0 + primary-for Q3HGroupBox (0x7fea0de59700) + QGroupBox (0x7fea0de597e0) 0 + primary-for Q3GroupBox (0x7fea0de59770) + QWidget (0x7fea0de56400) 0 + primary-for QGroupBox (0x7fea0de597e0) + QObject (0x7fea0de59850) 0 + primary-for QWidget (0x7fea0de56400) + QPaintDevice (0x7fea0de598c0) 16 + vptr=((& Q3HGroupBox::_ZTV11Q3HGroupBox) + 472u) + +Vtable for Q3Action +Q3Action::_ZTV8Q3Action: 29u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8Q3Action) +16 Q3Action::metaObject +24 Q3Action::qt_metacast +32 Q3Action::qt_metacall +40 Q3Action::~Q3Action +48 Q3Action::~Q3Action +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 Q3Action::setIconSet +120 Q3Action::setText +128 Q3Action::setMenuText +136 Q3Action::setToolTip +144 Q3Action::setStatusTip +152 Q3Action::setWhatsThis +160 Q3Action::setAccel +168 Q3Action::setToggleAction +176 Q3Action::addTo +184 Q3Action::removeFrom +192 Q3Action::addedTo +200 Q3Action::addedTo +208 Q3Action::setOn +216 Q3Action::setEnabled +224 Q3Action::setVisible + +Class Q3Action + size=24 align=8 + base size=24 base align=8 +Q3Action (0x7fea0de64d20) 0 + vptr=((& Q3Action::_ZTV8Q3Action) + 16u) + QObject (0x7fea0de64d90) 0 + primary-for Q3Action (0x7fea0de64d20) + +Vtable for Q3ActionGroup +Q3ActionGroup::_ZTV13Q3ActionGroup: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13Q3ActionGroup) +16 Q3ActionGroup::metaObject +24 Q3ActionGroup::qt_metacast +32 Q3ActionGroup::qt_metacall +40 Q3ActionGroup::~Q3ActionGroup +48 Q3ActionGroup::~Q3ActionGroup +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 Q3ActionGroup::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 Q3ActionGroup::setIconSet +120 Q3ActionGroup::setText +128 Q3ActionGroup::setMenuText +136 Q3ActionGroup::setToolTip +144 Q3Action::setStatusTip +152 Q3ActionGroup::setWhatsThis +160 Q3Action::setAccel +168 Q3ActionGroup::setToggleAction +176 Q3ActionGroup::addTo +184 Q3ActionGroup::removeFrom +192 Q3ActionGroup::addedTo +200 Q3ActionGroup::addedTo +208 Q3ActionGroup::setOn +216 Q3ActionGroup::setEnabled +224 Q3ActionGroup::setVisible +232 Q3ActionGroup::addedTo +240 Q3ActionGroup::addedTo + +Class Q3ActionGroup + size=32 align=8 + base size=32 base align=8 +Q3ActionGroup (0x7fea0de96540) 0 + vptr=((& Q3ActionGroup::_ZTV13Q3ActionGroup) + 16u) + Q3Action (0x7fea0de965b0) 0 + primary-for Q3ActionGroup (0x7fea0de96540) + QObject (0x7fea0de96620) 0 + primary-for Q3Action (0x7fea0de965b0) + +Vtable for Q3VGroupBox +Q3VGroupBox::_ZTV11Q3VGroupBox: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11Q3VGroupBox) +16 Q3VGroupBox::metaObject +24 Q3VGroupBox::qt_metacast +32 Q3VGroupBox::qt_metacall +40 Q3VGroupBox::~Q3VGroupBox +48 Q3VGroupBox::~Q3VGroupBox +56 Q3GroupBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 Q3GroupBox::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QGroupBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QGroupBox::mousePressEvent +168 QGroupBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QGroupBox::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QGroupBox::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QGroupBox::paintEvent +256 QWidget::moveEvent +264 Q3GroupBox::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 Q3GroupBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3GroupBox::setColumnLayout +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI11Q3VGroupBox) +472 Q3VGroupBox::_ZThn16_N11Q3VGroupBoxD1Ev +480 Q3VGroupBox::_ZThn16_N11Q3VGroupBoxD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3VGroupBox + size=48 align=8 + base size=48 base align=8 +Q3VGroupBox (0x7fea0dcb6070) 0 + vptr=((& Q3VGroupBox::_ZTV11Q3VGroupBox) + 16u) + Q3GroupBox (0x7fea0dcb60e0) 0 + primary-for Q3VGroupBox (0x7fea0dcb6070) + QGroupBox (0x7fea0dcb6150) 0 + primary-for Q3GroupBox (0x7fea0dcb60e0) + QWidget (0x7fea0de95980) 0 + primary-for QGroupBox (0x7fea0dcb6150) + QObject (0x7fea0dcb61c0) 0 + primary-for QWidget (0x7fea0de95980) + QPaintDevice (0x7fea0dcb6230) 16 + vptr=((& Q3VGroupBox::_ZTV11Q3VGroupBox) + 472u) + +Vtable for Q3ProgressBar +Q3ProgressBar::_ZTV13Q3ProgressBar: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13Q3ProgressBar) +16 Q3ProgressBar::metaObject +24 Q3ProgressBar::qt_metacast +32 Q3ProgressBar::qt_metacall +40 Q3ProgressBar::~Q3ProgressBar +48 Q3ProgressBar::~Q3ProgressBar +56 QFrame::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 Q3ProgressBar::setVisible +128 Q3ProgressBar::sizeHint +136 Q3ProgressBar::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 Q3ProgressBar::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 Q3ProgressBar::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3ProgressBar::setTotalSteps +456 Q3ProgressBar::setProgress +464 Q3ProgressBar::setIndicator +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI13Q3ProgressBar) +488 Q3ProgressBar::_ZThn16_N13Q3ProgressBarD1Ev +496 Q3ProgressBar::_ZThn16_N13Q3ProgressBarD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3ProgressBar + size=80 align=8 + base size=80 base align=8 +Q3ProgressBar (0x7fea0dcc8620) 0 + vptr=((& Q3ProgressBar::_ZTV13Q3ProgressBar) + 16u) + QFrame (0x7fea0dcc8690) 0 + primary-for Q3ProgressBar (0x7fea0dcc8620) + QWidget (0x7fea0dccb080) 0 + primary-for QFrame (0x7fea0dcc8690) + QObject (0x7fea0dcc8700) 0 + primary-for QWidget (0x7fea0dccb080) + QPaintDevice (0x7fea0dcc8770) 16 + vptr=((& Q3ProgressBar::_ZTV13Q3ProgressBar) + 488u) + +Vtable for Q3WhatsThis +Q3WhatsThis::_ZTV11Q3WhatsThis: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11Q3WhatsThis) +16 Q3WhatsThis::metaObject +24 Q3WhatsThis::qt_metacast +32 Q3WhatsThis::qt_metacall +40 Q3WhatsThis::~Q3WhatsThis +48 Q3WhatsThis::~Q3WhatsThis +56 QObject::event +64 Q3WhatsThis::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 Q3WhatsThis::text +120 Q3WhatsThis::clicked + +Class Q3WhatsThis + size=16 align=8 + base size=16 base align=8 +Q3WhatsThis (0x7fea0dcf4000) 0 + vptr=((& Q3WhatsThis::_ZTV11Q3WhatsThis) + 16u) + QObject (0x7fea0dcf4070) 0 + primary-for Q3WhatsThis (0x7fea0dcf4000) + +Vtable for Q3Button +Q3Button::_ZTV8Q3Button: 68u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8Q3Button) +16 Q3Button::metaObject +24 Q3Button::qt_metacast +32 Q3Button::qt_metacall +40 Q3Button::~Q3Button +48 Q3Button::~Q3Button +56 QAbstractButton::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QAbstractButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QAbstractButton::focusInEvent +224 QAbstractButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 Q3Button::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractButton::hitButton +456 QAbstractButton::checkStateSet +464 QAbstractButton::nextCheckState +472 Q3Button::drawButton +480 Q3Button::drawButtonLabel +488 (int (*)(...))-0x00000000000000010 +496 (int (*)(...))(& _ZTI8Q3Button) +504 Q3Button::_ZThn16_N8Q3ButtonD1Ev +512 Q3Button::_ZThn16_N8Q3ButtonD0Ev +520 QWidget::_ZThn16_NK7QWidget7devTypeEv +528 QWidget::_ZThn16_NK7QWidget11paintEngineEv +536 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3Button + size=40 align=8 + base size=40 base align=8 +Q3Button (0x7fea0dd07620) 0 + vptr=((& Q3Button::_ZTV8Q3Button) + 16u) + QAbstractButton (0x7fea0dd07690) 0 + primary-for Q3Button (0x7fea0dd07620) + QWidget (0x7fea0dcffd00) 0 + primary-for QAbstractButton (0x7fea0dd07690) + QObject (0x7fea0dd07700) 0 + primary-for QWidget (0x7fea0dcffd00) + QPaintDevice (0x7fea0dd07770) 16 + vptr=((& Q3Button::_ZTV8Q3Button) + 504u) + +Vtable for Q3MainWindow +Q3MainWindow::_ZTV12Q3MainWindow: 87u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12Q3MainWindow) +16 Q3MainWindow::metaObject +24 Q3MainWindow::qt_metacast +32 Q3MainWindow::qt_metacall +40 Q3MainWindow::~Q3MainWindow +48 Q3MainWindow::~Q3MainWindow +56 Q3MainWindow::event +64 Q3MainWindow::eventFilter +72 QObject::timerEvent +80 Q3MainWindow::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 Q3MainWindow::setVisible +128 Q3MainWindow::sizeHint +136 Q3MainWindow::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 Q3MainWindow::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3MainWindow::setCentralWidget +456 Q3MainWindow::setDockEnabled +464 Q3MainWindow::setDockEnabled +472 Q3MainWindow::addDockWindow +480 Q3MainWindow::addDockWindow +488 Q3MainWindow::moveDockWindow +496 Q3MainWindow::moveDockWindow +504 Q3MainWindow::removeDockWindow +512 Q3MainWindow::dockingArea +520 Q3MainWindow::isCustomizable +528 Q3MainWindow::createDockWindowMenu +536 Q3MainWindow::setRightJustification +544 Q3MainWindow::setUsesBigPixmaps +552 Q3MainWindow::setUsesTextLabel +560 Q3MainWindow::setDockWindowsMovable +568 Q3MainWindow::setOpaqueMoving +576 Q3MainWindow::setDockMenuEnabled +584 Q3MainWindow::whatsThis +592 Q3MainWindow::setAppropriate +600 Q3MainWindow::customize +608 Q3MainWindow::setUpLayout +616 Q3MainWindow::showDockMenu +624 Q3MainWindow::setMenuBar +632 Q3MainWindow::setStatusBar +640 (int (*)(...))-0x00000000000000010 +648 (int (*)(...))(& _ZTI12Q3MainWindow) +656 Q3MainWindow::_ZThn16_N12Q3MainWindowD1Ev +664 Q3MainWindow::_ZThn16_N12Q3MainWindowD0Ev +672 QWidget::_ZThn16_NK7QWidget7devTypeEv +680 QWidget::_ZThn16_NK7QWidget11paintEngineEv +688 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3MainWindow + size=40 align=8 + base size=40 base align=8 +Q3MainWindow (0x7fea0dd1f620) 0 + vptr=((& Q3MainWindow::_ZTV12Q3MainWindow) + 16u) + QWidget (0x7fea0dd19400) 0 + primary-for Q3MainWindow (0x7fea0dd1f620) + QObject (0x7fea0dd1f690) 0 + primary-for QWidget (0x7fea0dd19400) + QPaintDevice (0x7fea0dd1f700) 16 + vptr=((& Q3MainWindow::_ZTV12Q3MainWindow) + 656u) + +Vtable for Q3DockAreaLayout +Q3DockAreaLayout::_ZTV16Q3DockAreaLayout: 48u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16Q3DockAreaLayout) +16 Q3DockAreaLayout::metaObject +24 Q3DockAreaLayout::qt_metacast +32 Q3DockAreaLayout::qt_metacall +40 Q3DockAreaLayout::~Q3DockAreaLayout +48 Q3DockAreaLayout::~Q3DockAreaLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 Q3DockAreaLayout::invalidate +120 QLayout::geometry +128 Q3DockAreaLayout::addItem +136 Q3DockAreaLayout::expandingDirections +144 Q3DockAreaLayout::minimumSize +152 QLayout::maximumSize +160 Q3DockAreaLayout::setGeometry +168 Q3DockAreaLayout::itemAt +176 Q3DockAreaLayout::takeAt +184 QLayout::indexOf +192 Q3DockAreaLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 Q3DockAreaLayout::hasHeightForWidth +224 Q3DockAreaLayout::heightForWidth +232 Q3DockAreaLayout::sizeHint +240 (int (*)(...))-0x00000000000000010 +248 (int (*)(...))(& _ZTI16Q3DockAreaLayout) +256 Q3DockAreaLayout::_ZThn16_N16Q3DockAreaLayoutD1Ev +264 Q3DockAreaLayout::_ZThn16_N16Q3DockAreaLayoutD0Ev +272 Q3DockAreaLayout::_ZThn16_NK16Q3DockAreaLayout8sizeHintEv +280 Q3DockAreaLayout::_ZThn16_NK16Q3DockAreaLayout11minimumSizeEv +288 QLayout::_ZThn16_NK7QLayout11maximumSizeEv +296 Q3DockAreaLayout::_ZThn16_NK16Q3DockAreaLayout19expandingDirectionsEv +304 Q3DockAreaLayout::_ZThn16_N16Q3DockAreaLayout11setGeometryERK5QRect +312 QLayout::_ZThn16_NK7QLayout8geometryEv +320 QLayout::_ZThn16_NK7QLayout7isEmptyEv +328 Q3DockAreaLayout::_ZThn16_NK16Q3DockAreaLayout17hasHeightForWidthEv +336 Q3DockAreaLayout::_ZThn16_NK16Q3DockAreaLayout14heightForWidthEi +344 QLayoutItem::minimumHeightForWidth +352 Q3DockAreaLayout::_ZThn16_N16Q3DockAreaLayout10invalidateEv +360 QLayoutItem::widget +368 QLayout::_ZThn16_N7QLayout6layoutEv +376 QLayoutItem::spacerItem + +Class Q3DockAreaLayout + size=88 align=8 + base size=88 base align=8 +Q3DockAreaLayout (0x7fea0dd61f50) 0 + vptr=((& Q3DockAreaLayout::_ZTV16Q3DockAreaLayout) + 16u) + QLayout (0x7fea0dd57a80) 0 + primary-for Q3DockAreaLayout (0x7fea0dd61f50) + QObject (0x7fea0dd65000) 0 + primary-for QLayout (0x7fea0dd57a80) + QLayoutItem (0x7fea0dd65070) 16 + vptr=((& Q3DockAreaLayout::_ZTV16Q3DockAreaLayout) + 256u) + +Class Q3DockArea::DockWindowData + size=32 align=8 + base size=32 base align=8 +Q3DockArea::DockWindowData (0x7fea0dbea7e0) 0 + +Vtable for Q3DockArea +Q3DockArea::_ZTV10Q3DockArea: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10Q3DockArea) +16 Q3DockArea::metaObject +24 Q3DockArea::qt_metacast +32 Q3DockArea::qt_metacall +40 Q3DockArea::~Q3DockArea +48 Q3DockArea::~Q3DockArea +56 QWidget::event +64 Q3DockArea::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI10Q3DockArea) +464 Q3DockArea::_ZThn16_N10Q3DockAreaD1Ev +472 Q3DockArea::_ZThn16_N10Q3DockAreaD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3DockArea + size=88 align=8 + base size=88 base align=8 +Q3DockArea (0x7fea0dbea2a0) 0 + vptr=((& Q3DockArea::_ZTV10Q3DockArea) + 16u) + QWidget (0x7fea0dbec000) 0 + primary-for Q3DockArea (0x7fea0dbea2a0) + QObject (0x7fea0dbea310) 0 + primary-for QWidget (0x7fea0dbec000) + QPaintDevice (0x7fea0dbea380) 16 + vptr=((& Q3DockArea::_ZTV10Q3DockArea) + 464u) + diff --git a/tests/auto/bic/data/Qt3Support.4.6.0.linux-gcc-amd64.txt b/tests/auto/bic/data/Qt3Support.4.6.0.linux-gcc-amd64.txt new file mode 100644 index 0000000..2a12cc2 --- /dev/null +++ b/tests/auto/bic/data/Qt3Support.4.6.0.linux-gcc-amd64.txt @@ -0,0 +1,25521 @@ +Class QSysInfo + size=1 align=1 + base size=0 base align=1 +QSysInfo (0x7f62e3a0a230) 0 empty + +Class QBool + size=1 align=1 + base size=1 base align=1 +QBool (0x7f62e3a0ae70) 0 + +Class qIsNull(double)::U + size=8 align=8 + base size=8 base align=8 +qIsNull(double)::U (0x7f62e3a36540) 0 + +Class qIsNull(float)::U + size=4 align=4 + base size=4 base align=4 +qIsNull(float)::U (0x7f62e3a367e0) 0 + +Class QFlag + size=4 align=4 + base size=4 base align=4 +QFlag (0x7f62e3a70690) 0 + +Class QIncompatibleFlag + size=4 align=4 + base size=4 base align=4 +QIncompatibleFlag (0x7f62e3a70e70) 0 + +Class QLatin1Char + size=1 align=1 + base size=1 base align=1 +QLatin1Char (0x7f62e3a9e5b0) 0 + +Class QChar + size=2 align=2 + base size=2 base align=2 +QChar (0x7f62e3ac2150) 0 + +Class QBasicAtomicInt + size=4 align=4 + base size=4 base align=4 +QBasicAtomicInt (0x7f62e292d310) 0 + +Class QAtomicInt + size=4 align=4 + base size=4 base align=4 +QAtomicInt (0x7f62e2968cb0) 0 + QBasicAtomicInt (0x7f62e2968d20) 0 + +Class QInternal + size=1 align=1 + base size=0 base align=1 +QInternal (0x7f62e25bd4d0) 0 empty + +Class __locale_struct + size=232 align=8 + base size=232 base align=8 +__locale_struct (0x7f62e25bd700) 0 + +Class QByteArray::Data + size=32 align=8 + base size=32 base align=8 +QByteArray::Data (0x7f62e25f6af0) 0 + +Class QByteArray + size=8 align=8 + base size=8 base align=8 +QByteArray (0x7f62e25f6a80) 0 + +Class QByteRef + size=16 align=8 + base size=12 base align=8 +QByteRef (0x7f62e269b380) 0 + +Class QString::Null + size=1 align=1 + base size=0 base align=1 +QString::Null (0x7f62e2598d20) 0 empty + +Class QString::Data + size=32 align=8 + base size=32 base align=8 +QString::Data (0x7f62e25b25b0) 0 + +Class QString + size=8 align=8 + base size=8 base align=8 +QString (0x7f62e2514bd0) 0 + +Class QLatin1String + size=8 align=8 + base size=8 base align=8 +QLatin1String (0x7f62e24899a0) 0 + +Class QCharRef + size=16 align=8 + base size=12 base align=8 +QCharRef (0x7f62e2327000) 0 + +Class QConstString + size=8 align=8 + base size=8 base align=8 +QConstString (0x7f62e226f8c0) 0 + QString (0x7f62e226f930) 0 + +Class QStringRef + size=16 align=8 + base size=16 base align=8 +QStringRef (0x7f62e2295310) 0 + +Class QGenericArgument + size=16 align=8 + base size=16 base align=8 +QGenericArgument (0x7f62e210f700) 0 + +Class QGenericReturnArgument + size=16 align=8 + base size=16 base align=8 +QGenericReturnArgument (0x7f62e211a2a0) 0 + QGenericArgument (0x7f62e211a310) 0 + +Class QMetaObject + size=32 align=8 + base size=32 base align=8 +QMetaObject (0x7f62e211ab60) 0 + +Class QMetaObjectExtraData + size=16 align=8 + base size=16 base align=8 +QMetaObjectExtraData (0x7f62e2141bd0) 0 + +Vtable for std::exception +std::exception::_ZTVSt9exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9exception) +16 std::exception::~exception +24 std::exception::~exception +32 std::exception::what + +Class std::exception + size=8 align=8 + base size=8 base align=8 +std::exception (0x7f62e21951c0) 0 nearly-empty + vptr=((& std::exception::_ZTVSt9exception) + 16u) + +Vtable for std::bad_exception +std::bad_exception::_ZTVSt13bad_exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13bad_exception) +16 std::bad_exception::~bad_exception +24 std::bad_exception::~bad_exception +32 std::bad_exception::what + +Class std::bad_exception + size=8 align=8 + base size=8 base align=8 +std::bad_exception (0x7f62e2195770) 0 nearly-empty + vptr=((& std::bad_exception::_ZTVSt13bad_exception) + 16u) + std::exception (0x7f62e21957e0) 0 nearly-empty + primary-for std::bad_exception (0x7f62e2195770) + +Vtable for std::bad_alloc +std::bad_alloc::_ZTVSt9bad_alloc: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9bad_alloc) +16 std::bad_alloc::~bad_alloc +24 std::bad_alloc::~bad_alloc +32 std::bad_alloc::what + +Class std::bad_alloc + size=8 align=8 + base size=8 base align=8 +std::bad_alloc (0x7f62e2195930) 0 nearly-empty + vptr=((& std::bad_alloc::_ZTVSt9bad_alloc) + 16u) + std::exception (0x7f62e21ac000) 0 nearly-empty + primary-for std::bad_alloc (0x7f62e2195930) + +Class std::nothrow_t + size=1 align=1 + base size=0 base align=1 +std::nothrow_t (0x7f62e21ac850) 0 empty + +Class QListData::Data + size=32 align=8 + base size=32 base align=8 +QListData::Data (0x7f62e21acd90) 0 + +Class QListData + size=8 align=8 + base size=8 base align=8 +QListData (0x7f62e21acd20) 0 + +Class QScopedPointerPodDeleter + size=1 align=1 + base size=0 base align=1 +QScopedPointerPodDeleter (0x7f62e1ed8850) 0 empty + +Vtable for QObjectData +QObjectData::_ZTV11QObjectData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QObjectData) +16 __cxa_pure_virtual +24 __cxa_pure_virtual + +Class QObjectData + size=48 align=8 + base size=48 base align=8 +QObjectData (0x7f62e1ef82a0) 0 + vptr=((& QObjectData::_ZTV11QObjectData) + 16u) + +Vtable for QObject +QObject::_ZTV7QObject: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QObject) +16 QObject::metaObject +24 QObject::qt_metacast +32 QObject::qt_metacall +40 QObject::~QObject +48 QObject::~QObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObject + size=16 align=8 + base size=16 base align=8 +QObject (0x7f62e1ef85b0) 0 + vptr=((& QObject::_ZTV7QObject) + 16u) + +Vtable for QObjectUserData +QObjectUserData::_ZTV15QObjectUserData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QObjectUserData) +16 QObjectUserData::~QObjectUserData +24 QObjectUserData::~QObjectUserData + +Class QObjectUserData + size=8 align=8 + base size=8 base align=8 +QObjectUserData (0x7f62e1f7bb60) 0 nearly-empty + vptr=((& QObjectUserData::_ZTV15QObjectUserData) + 16u) + +Vtable for QIODevice +QIODevice::_ZTV9QIODevice: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QIODevice) +16 QIODevice::metaObject +24 QIODevice::qt_metacast +32 QIODevice::qt_metacall +40 QIODevice::~QIODevice +48 QIODevice::~QIODevice +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QIODevice::isSequential +120 QIODevice::open +128 QIODevice::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QIODevice::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 __cxa_pure_virtual +224 QIODevice::readLineData +232 __cxa_pure_virtual + +Class QIODevice + size=16 align=8 + base size=16 base align=8 +QIODevice (0x7f62e1f8a150) 0 + vptr=((& QIODevice::_ZTV9QIODevice) + 16u) + QObject (0x7f62e1f8a1c0) 0 + primary-for QIODevice (0x7f62e1f8a150) + +Class _IO_marker + size=24 align=8 + base size=24 base align=8 +_IO_marker (0x7f62e1debcb0) 0 + +Class _IO_FILE + size=216 align=8 + base size=216 base align=8 +_IO_FILE (0x7f62e1debd20) 0 + +Vtable for QFile +QFile::_ZTV5QFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QFile) +16 QFile::metaObject +24 QFile::qt_metacast +32 QFile::qt_metacall +40 QFile::~QFile +48 QFile::~QFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QFile::fileEngine + +Class QFile + size=16 align=8 + base size=16 base align=8 +QFile (0x7f62e1debe00) 0 + vptr=((& QFile::_ZTV5QFile) + 16u) + QIODevice (0x7f62e1debe70) 0 + primary-for QFile (0x7f62e1debe00) + QObject (0x7f62e1debee0) 0 + primary-for QIODevice (0x7f62e1debe70) + +Class QFileInfo + size=8 align=8 + base size=8 base align=8 +QFileInfo (0x7f62e1e8f070) 0 + +Vtable for QDataStream +QDataStream::_ZTV11QDataStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QDataStream) +16 QDataStream::~QDataStream +24 QDataStream::~QDataStream + +Class QDataStream + size=40 align=8 + base size=40 base align=8 +QDataStream (0x7f62e1ce2a10) 0 + vptr=((& QDataStream::_ZTV11QDataStream) + 16u) + +Class QRegExp + size=8 align=8 + base size=8 base align=8 +QRegExp (0x7f62e1d4ee70) 0 + +Class QStringMatcher::Data + size=272 align=8 + base size=272 base align=8 +QStringMatcher::Data (0x7f62e1db42a0) 0 + +Class QStringMatcher + size=1048 align=8 + base size=1048 base align=8 +QStringMatcher (0x7f62e1da8c40) 0 + +Class QStringList + size=8 align=8 + base size=8 base align=8 +QStringList (0x7f62e1db4850) 0 + QList (0x7f62e1db48c0) 0 + +Class QDir + size=8 align=8 + base size=8 base align=8 +QDir (0x7f62e1c544d0) 0 + +Class QAbstractFileEngine::ExtensionOption + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionOption (0x7f62e1afc8c0) 0 empty + +Class QAbstractFileEngine::ExtensionReturn + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionReturn (0x7f62e1afc930) 0 empty + +Class QAbstractFileEngine::MapExtensionOption + size=24 align=8 + base size=20 base align=8 +QAbstractFileEngine::MapExtensionOption (0x7f62e1afc9a0) 0 + QAbstractFileEngine::ExtensionOption (0x7f62e1afca10) 0 empty + +Class QAbstractFileEngine::MapExtensionReturn + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::MapExtensionReturn (0x7f62e1afcbd0) 0 + QAbstractFileEngine::ExtensionReturn (0x7f62e1afcc40) 0 empty + +Class QAbstractFileEngine::UnMapExtensionOption + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::UnMapExtensionOption (0x7f62e1afccb0) 0 + QAbstractFileEngine::ExtensionOption (0x7f62e1afcd20) 0 empty + +Vtable for QAbstractFileEngine +QAbstractFileEngine::_ZTV19QAbstractFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractFileEngine) +16 QAbstractFileEngine::~QAbstractFileEngine +24 QAbstractFileEngine::~QAbstractFileEngine +32 QAbstractFileEngine::open +40 QAbstractFileEngine::close +48 QAbstractFileEngine::flush +56 QAbstractFileEngine::size +64 QAbstractFileEngine::pos +72 QAbstractFileEngine::seek +80 QAbstractFileEngine::isSequential +88 QAbstractFileEngine::remove +96 QAbstractFileEngine::copy +104 QAbstractFileEngine::rename +112 QAbstractFileEngine::link +120 QAbstractFileEngine::mkdir +128 QAbstractFileEngine::rmdir +136 QAbstractFileEngine::setSize +144 QAbstractFileEngine::caseSensitive +152 QAbstractFileEngine::isRelativePath +160 QAbstractFileEngine::entryList +168 QAbstractFileEngine::fileFlags +176 QAbstractFileEngine::setPermissions +184 QAbstractFileEngine::fileName +192 QAbstractFileEngine::ownerId +200 QAbstractFileEngine::owner +208 QAbstractFileEngine::fileTime +216 QAbstractFileEngine::setFileName +224 QAbstractFileEngine::handle +232 QAbstractFileEngine::beginEntryList +240 QAbstractFileEngine::endEntryList +248 QAbstractFileEngine::read +256 QAbstractFileEngine::readLine +264 QAbstractFileEngine::write +272 QAbstractFileEngine::extension +280 QAbstractFileEngine::supportsExtension + +Class QAbstractFileEngine + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngine (0x7f62e1ade850) 0 + vptr=((& QAbstractFileEngine::_ZTV19QAbstractFileEngine) + 16u) + +Vtable for QAbstractFileEngineHandler +QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QAbstractFileEngineHandler) +16 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +24 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +32 __cxa_pure_virtual + +Class QAbstractFileEngineHandler + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngineHandler (0x7f62e1b30bd0) 0 nearly-empty + vptr=((& QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler) + 16u) + +Vtable for QAbstractFileEngineIterator +QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QAbstractFileEngineIterator) +16 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +24 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QAbstractFileEngineIterator::currentFileInfo +64 QAbstractFileEngineIterator::entryInfo + +Class QAbstractFileEngineIterator + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngineIterator (0x7f62e1b30d90) 0 + vptr=((& QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator) + 16u) + +Vtable for QBuffer +QBuffer::_ZTV7QBuffer: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QBuffer) +16 QBuffer::metaObject +24 QBuffer::qt_metacast +32 QBuffer::qt_metacall +40 QBuffer::~QBuffer +48 QBuffer::~QBuffer +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QBuffer::connectNotify +104 QBuffer::disconnectNotify +112 QIODevice::isSequential +120 QBuffer::open +128 QBuffer::close +136 QBuffer::pos +144 QBuffer::size +152 QBuffer::seek +160 QBuffer::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QBuffer::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QBuffer::readData +224 QIODevice::readLineData +232 QBuffer::writeData + +Class QBuffer + size=16 align=8 + base size=16 base align=8 +QBuffer (0x7f62e1b42690) 0 + vptr=((& QBuffer::_ZTV7QBuffer) + 16u) + QIODevice (0x7f62e1b42700) 0 + primary-for QBuffer (0x7f62e1b42690) + QObject (0x7f62e1b42770) 0 + primary-for QIODevice (0x7f62e1b42700) + +Class QHashData::Node + size=16 align=8 + base size=16 base align=8 +QHashData::Node (0x7f62e1b86e00) 0 + +Class QHashData + size=40 align=8 + base size=40 base align=8 +QHashData (0x7f62e1b86d90) 0 + +Class QHashDummyValue + size=1 align=1 + base size=0 base align=1 +QHashDummyValue (0x7f62e1ba9150) 0 empty + +Class QMapData::Node + size=16 align=8 + base size=16 base align=8 +QMapData::Node (0x7f62e1aaba80) 0 + +Class QMapData + size=128 align=8 + base size=128 base align=8 +QMapData (0x7f62e1aaba10) 0 + +Vtable for QSystemLocale +QSystemLocale::_ZTV13QSystemLocale: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSystemLocale) +16 QSystemLocale::~QSystemLocale +24 QSystemLocale::~QSystemLocale +32 QSystemLocale::query +40 QSystemLocale::fallbackLocale + +Class QSystemLocale + size=8 align=8 + base size=8 base align=8 +QSystemLocale (0x7f62e17e4690) 0 nearly-empty + vptr=((& QSystemLocale::_ZTV13QSystemLocale) + 16u) + +Class QLocale::Data + size=4 align=2 + base size=4 base align=2 +QLocale::Data (0x7f62e1834d90) 0 + +Class QLocale + size=8 align=8 + base size=8 base align=8 +QLocale (0x7f62e17e4af0) 0 + +Class QTextCodec::ConverterState + size=32 align=8 + base size=32 base align=8 +QTextCodec::ConverterState (0x7f62e1888bd0) 0 + +Vtable for QTextCodec +QTextCodec::_ZTV10QTextCodec: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextCodec) +16 __cxa_pure_virtual +24 QTextCodec::aliases +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QTextCodec::~QTextCodec +64 QTextCodec::~QTextCodec + +Class QTextCodec + size=8 align=8 + base size=8 base align=8 +QTextCodec (0x7f62e187b460) 0 nearly-empty + vptr=((& QTextCodec::_ZTV10QTextCodec) + 16u) + +Class QTextEncoder + size=40 align=8 + base size=40 base align=8 +QTextEncoder (0x7f62e16f9150) 0 + +Class QTextDecoder + size=40 align=8 + base size=40 base align=8 +QTextDecoder (0x7f62e16f9f50) 0 + +Vtable for QTextStream +QTextStream::_ZTV11QTextStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTextStream) +16 QTextStream::~QTextStream +24 QTextStream::~QTextStream + +Class QTextStream + size=16 align=8 + base size=16 base align=8 +QTextStream (0x7f62e1700d90) 0 + vptr=((& QTextStream::_ZTV11QTextStream) + 16u) + +Class QTextStreamManipulator + size=40 align=8 + base size=38 base align=8 +QTextStreamManipulator (0x7f62e177aa80) 0 + +Vtable for QTextIStream +QTextIStream::_ZTV12QTextIStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextIStream) +16 QTextIStream::~QTextIStream +24 QTextIStream::~QTextIStream + +Class QTextIStream + size=16 align=8 + base size=16 base align=8 +QTextIStream (0x7f62e17ac070) 0 + vptr=((& QTextIStream::_ZTV12QTextIStream) + 16u) + QTextStream (0x7f62e17ac0e0) 0 + primary-for QTextIStream (0x7f62e17ac070) + +Vtable for QTextOStream +QTextOStream::_ZTV12QTextOStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextOStream) +16 QTextOStream::~QTextOStream +24 QTextOStream::~QTextOStream + +Class QTextOStream + size=16 align=8 + base size=16 base align=8 +QTextOStream (0x7f62e15b8ee0) 0 + vptr=((& QTextOStream::_ZTV12QTextOStream) + 16u) + QTextStream (0x7f62e15b8f50) 0 + primary-for QTextOStream (0x7f62e15b8ee0) + +Class wait + size=4 align=4 + base size=4 base align=4 +wait (0x7f62e15cdd90) 0 + +Class timespec + size=16 align=8 + base size=16 base align=8 +timespec (0x7f62e15d80e0) 0 + +Class timeval + size=16 align=8 + base size=16 base align=8 +timeval (0x7f62e15d8150) 0 + +Class __pthread_internal_list + size=16 align=8 + base size=16 base align=8 +__pthread_internal_list (0x7f62e15d82a0) 0 + +Class random_data + size=48 align=8 + base size=48 base align=8 +random_data (0x7f62e15d8850) 0 + +Class drand48_data + size=24 align=8 + base size=24 base align=8 +drand48_data (0x7f62e15d88c0) 0 + +Class QVectorData + size=16 align=4 + base size=16 base align=4 +QVectorData (0x7f62e15d8930) 0 + +Class QContiguousCacheData + size=24 align=4 + base size=24 base align=4 +QContiguousCacheData (0x7f62e1595620) 0 + +Class QDebug::Stream + size=40 align=8 + base size=34 base align=8 +QDebug::Stream (0x7f62e1417150) 0 + +Class QDebug + size=8 align=8 + base size=8 base align=8 +QDebug (0x7f62e14170e0) 0 + +Class QNoDebug + size=1 align=1 + base size=0 base align=1 +QNoDebug (0x7f62e12c30e0) 0 empty + +Vtable for QDirIterator +QDirIterator::_ZTV12QDirIterator: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QDirIterator) +16 QDirIterator::~QDirIterator +24 QDirIterator::~QDirIterator + +Class QDirIterator + size=16 align=8 + base size=16 base align=8 +QDirIterator (0x7f62e12d3700) 0 + vptr=((& QDirIterator::_ZTV12QDirIterator) + 16u) + +Vtable for QFileSystemWatcher +QFileSystemWatcher::_ZTV18QFileSystemWatcher: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFileSystemWatcher) +16 QFileSystemWatcher::metaObject +24 QFileSystemWatcher::qt_metacast +32 QFileSystemWatcher::qt_metacall +40 QFileSystemWatcher::~QFileSystemWatcher +48 QFileSystemWatcher::~QFileSystemWatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QFileSystemWatcher + size=16 align=8 + base size=16 base align=8 +QFileSystemWatcher (0x7f62e1332540) 0 + vptr=((& QFileSystemWatcher::_ZTV18QFileSystemWatcher) + 16u) + QObject (0x7f62e13325b0) 0 + primary-for QFileSystemWatcher (0x7f62e1332540) + +Vtable for QFSFileEngine +QFSFileEngine::_ZTV13QFSFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QFSFileEngine) +16 QFSFileEngine::~QFSFileEngine +24 QFSFileEngine::~QFSFileEngine +32 QFSFileEngine::open +40 QFSFileEngine::close +48 QFSFileEngine::flush +56 QFSFileEngine::size +64 QFSFileEngine::pos +72 QFSFileEngine::seek +80 QFSFileEngine::isSequential +88 QFSFileEngine::remove +96 QFSFileEngine::copy +104 QFSFileEngine::rename +112 QFSFileEngine::link +120 QFSFileEngine::mkdir +128 QFSFileEngine::rmdir +136 QFSFileEngine::setSize +144 QFSFileEngine::caseSensitive +152 QFSFileEngine::isRelativePath +160 QFSFileEngine::entryList +168 QFSFileEngine::fileFlags +176 QFSFileEngine::setPermissions +184 QFSFileEngine::fileName +192 QFSFileEngine::ownerId +200 QFSFileEngine::owner +208 QFSFileEngine::fileTime +216 QFSFileEngine::setFileName +224 QFSFileEngine::handle +232 QFSFileEngine::beginEntryList +240 QFSFileEngine::endEntryList +248 QFSFileEngine::read +256 QFSFileEngine::readLine +264 QFSFileEngine::write +272 QFSFileEngine::extension +280 QFSFileEngine::supportsExtension + +Class QFSFileEngine + size=16 align=8 + base size=16 base align=8 +QFSFileEngine (0x7f62e1343a80) 0 + vptr=((& QFSFileEngine::_ZTV13QFSFileEngine) + 16u) + QAbstractFileEngine (0x7f62e1343af0) 0 + primary-for QFSFileEngine (0x7f62e1343a80) + +Class QSharedData + size=4 align=4 + base size=4 base align=4 +QSharedData (0x7f62e1354e70) 0 + +Class QProcessEnvironment + size=8 align=8 + base size=8 base align=8 +QProcessEnvironment (0x7f62e139c1c0) 0 + +Vtable for QProcess +QProcess::_ZTV8QProcess: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QProcess) +16 QProcess::metaObject +24 QProcess::qt_metacast +32 QProcess::qt_metacall +40 QProcess::~QProcess +48 QProcess::~QProcess +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QProcess::isSequential +120 QIODevice::open +128 QProcess::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QProcess::atEnd +168 QIODevice::reset +176 QProcess::bytesAvailable +184 QProcess::bytesToWrite +192 QProcess::canReadLine +200 QProcess::waitForReadyRead +208 QProcess::waitForBytesWritten +216 QProcess::readData +224 QIODevice::readLineData +232 QProcess::writeData +240 QProcess::setupChildProcess + +Class QProcess + size=16 align=8 + base size=16 base align=8 +QProcess (0x7f62e139ccb0) 0 + vptr=((& QProcess::_ZTV8QProcess) + 16u) + QIODevice (0x7f62e139cd20) 0 + primary-for QProcess (0x7f62e139ccb0) + QObject (0x7f62e139cd90) 0 + primary-for QIODevice (0x7f62e139cd20) + +Class QResource + size=8 align=8 + base size=8 base align=8 +QResource (0x7f62e11e41c0) 0 + +Class QMetaType + size=1 align=1 + base size=0 base align=1 +QMetaType (0x7f62e11e4e70) 0 empty + +Class QVariant::PrivateShared + size=16 align=8 + base size=12 base align=8 +QVariant::PrivateShared (0x7f62e10e1700) 0 + +Class QVariant::Private::Data + size=8 align=8 + base size=8 base align=8 +QVariant::Private::Data (0x7f62e10e1a10) 0 + +Class QVariant::Private + size=16 align=8 + base size=12 base align=8 +QVariant::Private (0x7f62e10e17e0) 0 + +Class QVariant::Handler + size=72 align=8 + base size=72 base align=8 +QVariant::Handler (0x7f62e10ef700) 0 + +Class QVariant + size=16 align=8 + base size=16 base align=8 +QVariant (0x7f62e10b17e0) 0 + +Class QVariantComparisonHelper + size=8 align=8 + base size=8 base align=8 +QVariantComparisonHelper (0x7f62e11a89a0) 0 + +Vtable for QSettings +QSettings::_ZTV9QSettings: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QSettings) +16 QSettings::metaObject +24 QSettings::qt_metacast +32 QSettings::qt_metacall +40 QSettings::~QSettings +48 QSettings::~QSettings +56 QSettings::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSettings + size=16 align=8 + base size=16 base align=8 +QSettings (0x7f62e0fc6ee0) 0 + vptr=((& QSettings::_ZTV9QSettings) + 16u) + QObject (0x7f62e0fc6f50) 0 + primary-for QSettings (0x7f62e0fc6ee0) + +Vtable for QTemporaryFile +QTemporaryFile::_ZTV14QTemporaryFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QTemporaryFile) +16 QTemporaryFile::metaObject +24 QTemporaryFile::qt_metacast +32 QTemporaryFile::qt_metacall +40 QTemporaryFile::~QTemporaryFile +48 QTemporaryFile::~QTemporaryFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QTemporaryFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QTemporaryFile::fileEngine + +Class QTemporaryFile + size=16 align=8 + base size=16 base align=8 +QTemporaryFile (0x7f62e104b2a0) 0 + vptr=((& QTemporaryFile::_ZTV14QTemporaryFile) + 16u) + QFile (0x7f62e104b310) 0 + primary-for QTemporaryFile (0x7f62e104b2a0) + QIODevice (0x7f62e104b380) 0 + primary-for QFile (0x7f62e104b310) + QObject (0x7f62e104b3f0) 0 + primary-for QIODevice (0x7f62e104b380) + +Class QUrl + size=8 align=8 + base size=8 base align=8 +QUrl (0x7f62e10679a0) 0 + +Class QXmlStreamStringRef + size=16 align=8 + base size=16 base align=8 +QXmlStreamStringRef (0x7f62e0ef0070) 0 + +Class QXmlStreamAttribute + size=80 align=8 + base size=73 base align=8 +QXmlStreamAttribute (0x7f62e0f0d850) 0 + +Class QXmlStreamAttributes + size=8 align=8 + base size=8 base align=8 +QXmlStreamAttributes (0x7f62e0f36310) 0 + QVector (0x7f62e0f36380) 0 + +Class QXmlStreamNamespaceDeclaration + size=40 align=8 + base size=40 base align=8 +QXmlStreamNamespaceDeclaration (0x7f62e0f367e0) 0 + +Class QXmlStreamNotationDeclaration + size=56 align=8 + base size=56 base align=8 +QXmlStreamNotationDeclaration (0x7f62e0f771c0) 0 + +Class QXmlStreamEntityDeclaration + size=88 align=8 + base size=88 base align=8 +QXmlStreamEntityDeclaration (0x7f62e0f99070) 0 + +Vtable for QXmlStreamEntityResolver +QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QXmlStreamEntityResolver) +16 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +24 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +32 QXmlStreamEntityResolver::resolveEntity +40 QXmlStreamEntityResolver::resolveUndeclaredEntity + +Class QXmlStreamEntityResolver + size=8 align=8 + base size=8 base align=8 +QXmlStreamEntityResolver (0x7f62e0db39a0) 0 nearly-empty + vptr=((& QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver) + 16u) + +Class QXmlStreamReader + size=8 align=8 + base size=8 base align=8 +QXmlStreamReader (0x7f62e0db3b60) 0 + +Class QXmlStreamWriter + size=8 align=8 + base size=8 base align=8 +QXmlStreamWriter (0x7f62e0dfbc40) 0 + +Vtable for QAbstractState +QAbstractState::_ZTV14QAbstractState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QAbstractState) +16 QAbstractState::metaObject +24 QAbstractState::qt_metacast +32 QAbstractState::qt_metacall +40 QAbstractState::~QAbstractState +48 QAbstractState::~QAbstractState +56 QAbstractState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QAbstractState + size=16 align=8 + base size=16 base align=8 +QAbstractState (0x7f62e0e12a80) 0 + vptr=((& QAbstractState::_ZTV14QAbstractState) + 16u) + QObject (0x7f62e0e12af0) 0 + primary-for QAbstractState (0x7f62e0e12a80) + +Vtable for QAbstractTransition +QAbstractTransition::_ZTV19QAbstractTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractTransition) +16 QAbstractTransition::metaObject +24 QAbstractTransition::qt_metacast +32 QAbstractTransition::qt_metacall +40 QAbstractTransition::~QAbstractTransition +48 QAbstractTransition::~QAbstractTransition +56 QAbstractTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QAbstractTransition + size=16 align=8 + base size=16 base align=8 +QAbstractTransition (0x7f62e0e372a0) 0 + vptr=((& QAbstractTransition::_ZTV19QAbstractTransition) + 16u) + QObject (0x7f62e0e37310) 0 + primary-for QAbstractTransition (0x7f62e0e372a0) + +Vtable for QEvent +QEvent::_ZTV6QEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QEvent) +16 QEvent::~QEvent +24 QEvent::~QEvent + +Class QEvent + size=24 align=8 + base size=20 base align=8 +QEvent (0x7f62e0e4aaf0) 0 + vptr=((& QEvent::_ZTV6QEvent) + 16u) + +Vtable for QTimerEvent +QTimerEvent::_ZTV11QTimerEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTimerEvent) +16 QTimerEvent::~QTimerEvent +24 QTimerEvent::~QTimerEvent + +Class QTimerEvent + size=24 align=8 + base size=24 base align=8 +QTimerEvent (0x7f62e0e6b700) 0 + vptr=((& QTimerEvent::_ZTV11QTimerEvent) + 16u) + QEvent (0x7f62e0e6b770) 0 + primary-for QTimerEvent (0x7f62e0e6b700) + +Vtable for QChildEvent +QChildEvent::_ZTV11QChildEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QChildEvent) +16 QChildEvent::~QChildEvent +24 QChildEvent::~QChildEvent + +Class QChildEvent + size=32 align=8 + base size=32 base align=8 +QChildEvent (0x7f62e0e6bb60) 0 + vptr=((& QChildEvent::_ZTV11QChildEvent) + 16u) + QEvent (0x7f62e0e6bbd0) 0 + primary-for QChildEvent (0x7f62e0e6bb60) + +Vtable for QCustomEvent +QCustomEvent::_ZTV12QCustomEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QCustomEvent) +16 QCustomEvent::~QCustomEvent +24 QCustomEvent::~QCustomEvent + +Class QCustomEvent + size=24 align=8 + base size=20 base align=8 +QCustomEvent (0x7f62e0e74e00) 0 + vptr=((& QCustomEvent::_ZTV12QCustomEvent) + 16u) + QEvent (0x7f62e0e74e70) 0 + primary-for QCustomEvent (0x7f62e0e74e00) + +Vtable for QDynamicPropertyChangeEvent +QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QDynamicPropertyChangeEvent) +16 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent +24 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent + +Class QDynamicPropertyChangeEvent + size=32 align=8 + base size=32 base align=8 +QDynamicPropertyChangeEvent (0x7f62e0e86620) 0 + vptr=((& QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent) + 16u) + QEvent (0x7f62e0e86690) 0 + primary-for QDynamicPropertyChangeEvent (0x7f62e0e86620) + +Vtable for QEventTransition +QEventTransition::_ZTV16QEventTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QEventTransition) +16 QEventTransition::metaObject +24 QEventTransition::qt_metacast +32 QEventTransition::qt_metacall +40 QEventTransition::~QEventTransition +48 QEventTransition::~QEventTransition +56 QEventTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QEventTransition::eventTest +120 QEventTransition::onTransition + +Class QEventTransition + size=16 align=8 + base size=16 base align=8 +QEventTransition (0x7f62e0e86af0) 0 + vptr=((& QEventTransition::_ZTV16QEventTransition) + 16u) + QAbstractTransition (0x7f62e0e86b60) 0 + primary-for QEventTransition (0x7f62e0e86af0) + QObject (0x7f62e0e86bd0) 0 + primary-for QAbstractTransition (0x7f62e0e86b60) + +Vtable for QFinalState +QFinalState::_ZTV11QFinalState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFinalState) +16 QFinalState::metaObject +24 QFinalState::qt_metacast +32 QFinalState::qt_metacall +40 QFinalState::~QFinalState +48 QFinalState::~QFinalState +56 QFinalState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFinalState::onEntry +120 QFinalState::onExit + +Class QFinalState + size=16 align=8 + base size=16 base align=8 +QFinalState (0x7f62e0ea29a0) 0 + vptr=((& QFinalState::_ZTV11QFinalState) + 16u) + QAbstractState (0x7f62e0ea2a10) 0 + primary-for QFinalState (0x7f62e0ea29a0) + QObject (0x7f62e0ea2a80) 0 + primary-for QAbstractState (0x7f62e0ea2a10) + +Vtable for QHistoryState +QHistoryState::_ZTV13QHistoryState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QHistoryState) +16 QHistoryState::metaObject +24 QHistoryState::qt_metacast +32 QHistoryState::qt_metacall +40 QHistoryState::~QHistoryState +48 QHistoryState::~QHistoryState +56 QHistoryState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QHistoryState::onEntry +120 QHistoryState::onExit + +Class QHistoryState + size=16 align=8 + base size=16 base align=8 +QHistoryState (0x7f62e0cb4230) 0 + vptr=((& QHistoryState::_ZTV13QHistoryState) + 16u) + QAbstractState (0x7f62e0cb42a0) 0 + primary-for QHistoryState (0x7f62e0cb4230) + QObject (0x7f62e0cb4310) 0 + primary-for QAbstractState (0x7f62e0cb42a0) + +Vtable for QSignalTransition +QSignalTransition::_ZTV17QSignalTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QSignalTransition) +16 QSignalTransition::metaObject +24 QSignalTransition::qt_metacast +32 QSignalTransition::qt_metacall +40 QSignalTransition::~QSignalTransition +48 QSignalTransition::~QSignalTransition +56 QSignalTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QSignalTransition::eventTest +120 QSignalTransition::onTransition + +Class QSignalTransition + size=16 align=8 + base size=16 base align=8 +QSignalTransition (0x7f62e0cc5f50) 0 + vptr=((& QSignalTransition::_ZTV17QSignalTransition) + 16u) + QAbstractTransition (0x7f62e0cce000) 0 + primary-for QSignalTransition (0x7f62e0cc5f50) + QObject (0x7f62e0cce070) 0 + primary-for QAbstractTransition (0x7f62e0cce000) + +Vtable for QState +QState::_ZTV6QState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QState) +16 QState::metaObject +24 QState::qt_metacast +32 QState::qt_metacall +40 QState::~QState +48 QState::~QState +56 QState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QState::onEntry +120 QState::onExit + +Class QState + size=16 align=8 + base size=16 base align=8 +QState (0x7f62e0cdeaf0) 0 + vptr=((& QState::_ZTV6QState) + 16u) + QAbstractState (0x7f62e0cdeb60) 0 + primary-for QState (0x7f62e0cdeaf0) + QObject (0x7f62e0cdebd0) 0 + primary-for QAbstractState (0x7f62e0cdeb60) + +Vtable for QStateMachine::SignalEvent +QStateMachine::SignalEvent::_ZTVN13QStateMachine11SignalEventE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN13QStateMachine11SignalEventE) +16 QStateMachine::SignalEvent::~SignalEvent +24 QStateMachine::SignalEvent::~SignalEvent + +Class QStateMachine::SignalEvent + size=48 align=8 + base size=48 base align=8 +QStateMachine::SignalEvent (0x7f62e0d03150) 0 + vptr=((& QStateMachine::SignalEvent::_ZTVN13QStateMachine11SignalEventE) + 16u) + QEvent (0x7f62e0d031c0) 0 + primary-for QStateMachine::SignalEvent (0x7f62e0d03150) + +Vtable for QStateMachine::WrappedEvent +QStateMachine::WrappedEvent::_ZTVN13QStateMachine12WrappedEventE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN13QStateMachine12WrappedEventE) +16 QStateMachine::WrappedEvent::~WrappedEvent +24 QStateMachine::WrappedEvent::~WrappedEvent + +Class QStateMachine::WrappedEvent + size=40 align=8 + base size=40 base align=8 +QStateMachine::WrappedEvent (0x7f62e0d03700) 0 + vptr=((& QStateMachine::WrappedEvent::_ZTVN13QStateMachine12WrappedEventE) + 16u) + QEvent (0x7f62e0d03770) 0 + primary-for QStateMachine::WrappedEvent (0x7f62e0d03700) + +Vtable for QStateMachine +QStateMachine::_ZTV13QStateMachine: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QStateMachine) +16 QStateMachine::metaObject +24 QStateMachine::qt_metacast +32 QStateMachine::qt_metacall +40 QStateMachine::~QStateMachine +48 QStateMachine::~QStateMachine +56 QStateMachine::event +64 QStateMachine::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QStateMachine::onEntry +120 QStateMachine::onExit +128 QStateMachine::beginSelectTransitions +136 QStateMachine::endSelectTransitions +144 QStateMachine::beginMicrostep +152 QStateMachine::endMicrostep + +Class QStateMachine + size=16 align=8 + base size=16 base align=8 +QStateMachine (0x7f62e0cfbee0) 0 + vptr=((& QStateMachine::_ZTV13QStateMachine) + 16u) + QState (0x7f62e0cfbf50) 0 + primary-for QStateMachine (0x7f62e0cfbee0) + QAbstractState (0x7f62e0d03000) 0 + primary-for QState (0x7f62e0cfbf50) + QObject (0x7f62e0d03070) 0 + primary-for QAbstractState (0x7f62e0d03000) + +Class QBitArray + size=8 align=8 + base size=8 base align=8 +QBitArray (0x7f62e0d36150) 0 + +Class QBitRef + size=16 align=8 + base size=12 base align=8 +QBitRef (0x7f62e0d89e00) 0 + +Class QByteArrayMatcher::Data + size=272 align=8 + base size=272 base align=8 +QByteArrayMatcher::Data (0x7f62e0d9caf0) 0 + +Class QByteArrayMatcher + size=1040 align=8 + base size=1040 base align=8 +QByteArrayMatcher (0x7f62e0d9c4d0) 0 + +Class QCryptographicHash + size=8 align=8 + base size=8 base align=8 +QCryptographicHash (0x7f62e0bd4150) 0 + +Vtable for QtSharedPointer::ExternalRefCountData +QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN15QtSharedPointer20ExternalRefCountDataE) +16 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +24 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +32 QtSharedPointer::ExternalRefCountData::destroy + +Class QtSharedPointer::ExternalRefCountData + size=16 align=8 + base size=16 base align=8 +QtSharedPointer::ExternalRefCountData (0x7f62e0bff070) 0 + vptr=((& QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE) + 16u) + +Vtable for QtSharedPointer::ExternalRefCountWithDestroyFn +QtSharedPointer::ExternalRefCountWithDestroyFn::_ZTVN15QtSharedPointer29ExternalRefCountWithDestroyFnE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN15QtSharedPointer29ExternalRefCountWithDestroyFnE) +16 QtSharedPointer::ExternalRefCountWithDestroyFn::~ExternalRefCountWithDestroyFn +24 QtSharedPointer::ExternalRefCountWithDestroyFn::~ExternalRefCountWithDestroyFn +32 QtSharedPointer::ExternalRefCountWithDestroyFn::destroy + +Class QtSharedPointer::ExternalRefCountWithDestroyFn + size=24 align=8 + base size=24 base align=8 +QtSharedPointer::ExternalRefCountWithDestroyFn (0x7f62e0c18930) 0 + vptr=((& QtSharedPointer::ExternalRefCountWithDestroyFn::_ZTVN15QtSharedPointer29ExternalRefCountWithDestroyFnE) + 16u) + QtSharedPointer::ExternalRefCountData (0x7f62e0c189a0) 0 + primary-for QtSharedPointer::ExternalRefCountWithDestroyFn (0x7f62e0c18930) + +Class QDate + size=4 align=4 + base size=4 base align=4 +QDate (0x7f62e0a9f5b0) 0 + +Class QTime + size=4 align=4 + base size=4 base align=4 +QTime (0x7f62e0acf540) 0 + +Class QDateTime + size=8 align=8 + base size=8 base align=8 +QDateTime (0x7f62e0aecaf0) 0 + +Class QEasingCurve + size=8 align=8 + base size=8 base align=8 +QEasingCurve (0x7f62e0b32000) 0 + +Class QPoint + size=8 align=4 + base size=8 base align=4 +QPoint (0x7f62e0b32ee0) 0 + +Class QPointF + size=16 align=8 + base size=16 base align=8 +QPointF (0x7f62e0b71af0) 0 + +Class QLine + size=16 align=4 + base size=16 base align=4 +QLine (0x7f62e09a9af0) 0 + +Class QLineF + size=32 align=8 + base size=32 base align=8 +QLineF (0x7f62e09e79a0) 0 + +Class QLinkedListData + size=32 align=8 + base size=32 base align=8 +QLinkedListData (0x7f62e0a43460) 0 + +Class QMargins + size=16 align=4 + base size=16 base align=4 +QMargins (0x7f62e0902380) 0 + +Class QSize + size=8 align=4 + base size=8 base align=4 +QSize (0x7f62e092e150) 0 + +Class QSizeF + size=16 align=8 + base size=16 base align=8 +QSizeF (0x7f62e096fe00) 0 + +Class QRect + size=16 align=4 + base size=16 base align=4 +QRect (0x7f62e07c3380) 0 + +Class QRectF + size=32 align=8 + base size=32 base align=8 +QRectF (0x7f62e086fd20) 0 + +Class QLatin1Literal + size=16 align=8 + base size=16 base align=8 +QLatin1Literal (0x7f62e071eee0) 0 + +Class QAbstractConcatenable + size=1 align=1 + base size=0 base align=1 +QAbstractConcatenable (0x7f62e07303f0) 0 empty + +Class QTextBoundaryFinder + size=48 align=8 + base size=48 base align=8 +QTextBoundaryFinder (0x7f62e0767380) 0 + +Vtable for QTimeLine +QTimeLine::_ZTV9QTimeLine: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTimeLine) +16 QTimeLine::metaObject +24 QTimeLine::qt_metacast +32 QTimeLine::qt_metacall +40 QTimeLine::~QTimeLine +48 QTimeLine::~QTimeLine +56 QObject::event +64 QObject::eventFilter +72 QTimeLine::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTimeLine::valueForTime + +Class QTimeLine + size=16 align=8 + base size=16 base align=8 +QTimeLine (0x7f62e0777700) 0 + vptr=((& QTimeLine::_ZTV9QTimeLine) + 16u) + QObject (0x7f62e0777770) 0 + primary-for QTimeLine (0x7f62e0777700) + +Vtable for QRunnable +QRunnable::_ZTV9QRunnable: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QRunnable) +16 __cxa_pure_virtual +24 QRunnable::~QRunnable +32 QRunnable::~QRunnable + +Class QRunnable + size=16 align=8 + base size=12 base align=8 +QRunnable (0x7f62e059ff50) 0 + vptr=((& QRunnable::_ZTV9QRunnable) + 16u) + +Class QMutex + size=8 align=8 + base size=8 base align=8 +QMutex (0x7f62e05d6620) 0 + +Class QMutexLocker + size=8 align=8 + base size=8 base align=8 +QMutexLocker (0x7f62e05e51c0) 0 + +Vtable for QtConcurrent::Exception +QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent9ExceptionE) +16 QtConcurrent::Exception::~Exception +24 QtConcurrent::Exception::~Exception +32 std::exception::what +40 QtConcurrent::Exception::raise +48 QtConcurrent::Exception::clone + +Class QtConcurrent::Exception + size=8 align=8 + base size=8 base align=8 +QtConcurrent::Exception (0x7f62e05fa4d0) 0 nearly-empty + vptr=((& QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE) + 16u) + std::exception (0x7f62e05fa540) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7f62e05fa4d0) + +Vtable for QtConcurrent::UnhandledException +QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent18UnhandledExceptionE) +16 QtConcurrent::UnhandledException::~UnhandledException +24 QtConcurrent::UnhandledException::~UnhandledException +32 std::exception::what +40 QtConcurrent::UnhandledException::raise +48 QtConcurrent::UnhandledException::clone + +Class QtConcurrent::UnhandledException + size=8 align=8 + base size=8 base align=8 +QtConcurrent::UnhandledException (0x7f62e05fa770) 0 nearly-empty + vptr=((& QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE) + 16u) + QtConcurrent::Exception (0x7f62e05fa7e0) 0 nearly-empty + primary-for QtConcurrent::UnhandledException (0x7f62e05fa770) + std::exception (0x7f62e05fa850) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7f62e05fa7e0) + +Class QtConcurrent::internal::ExceptionHolder + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionHolder (0x7f62e05faa80) 0 + +Class QtConcurrent::internal::ExceptionStore + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionStore (0x7f62e05fae00) 0 + +Class QtConcurrent::ResultItem + size=16 align=8 + base size=16 base align=8 +QtConcurrent::ResultItem (0x7f62e05fae70) 0 + +Class QtConcurrent::ResultIteratorBase + size=16 align=8 + base size=12 base align=8 +QtConcurrent::ResultIteratorBase (0x7f62e0613d90) 0 + +Vtable for QtConcurrent::ResultStoreBase +QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent15ResultStoreBaseE) +16 QtConcurrent::ResultStoreBase::~ResultStoreBase +24 QtConcurrent::ResultStoreBase::~ResultStoreBase + +Class QtConcurrent::ResultStoreBase + size=48 align=8 + base size=44 base align=8 +QtConcurrent::ResultStoreBase (0x7f62e0619930) 0 + vptr=((& QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE) + 16u) + +Vtable for QFutureInterfaceBase +QFutureInterfaceBase::_ZTV20QFutureInterfaceBase: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QFutureInterfaceBase) +16 QFutureInterfaceBase::~QFutureInterfaceBase +24 QFutureInterfaceBase::~QFutureInterfaceBase + +Class QFutureInterfaceBase + size=16 align=8 + base size=16 base align=8 +QFutureInterfaceBase (0x7f62e0657d90) 0 + vptr=((& QFutureInterfaceBase::_ZTV20QFutureInterfaceBase) + 16u) + +Vtable for QFutureWatcherBase +QFutureWatcherBase::_ZTV18QFutureWatcherBase: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFutureWatcherBase) +16 QFutureWatcherBase::metaObject +24 QFutureWatcherBase::qt_metacast +32 QFutureWatcherBase::qt_metacall +40 QFutureWatcherBase::~QFutureWatcherBase +48 QFutureWatcherBase::~QFutureWatcherBase +56 QFutureWatcherBase::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QFutureWatcherBase::connectNotify +104 QFutureWatcherBase::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QFutureWatcherBase + size=16 align=8 + base size=16 base align=8 +QFutureWatcherBase (0x7f62e053c690) 0 + vptr=((& QFutureWatcherBase::_ZTV18QFutureWatcherBase) + 16u) + QObject (0x7f62e053c700) 0 + primary-for QFutureWatcherBase (0x7f62e053c690) + +Vtable for QThread +QThread::_ZTV7QThread: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QThread) +16 QThread::metaObject +24 QThread::qt_metacast +32 QThread::qt_metacall +40 QThread::~QThread +48 QThread::~QThread +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QThread::run + +Class QThread + size=16 align=8 + base size=16 base align=8 +QThread (0x7f62e058ea80) 0 + vptr=((& QThread::_ZTV7QThread) + 16u) + QObject (0x7f62e058eaf0) 0 + primary-for QThread (0x7f62e058ea80) + +Vtable for QThreadPool +QThreadPool::_ZTV11QThreadPool: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QThreadPool) +16 QThreadPool::metaObject +24 QThreadPool::qt_metacast +32 QThreadPool::qt_metacall +40 QThreadPool::~QThreadPool +48 QThreadPool::~QThreadPool +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QThreadPool + size=16 align=8 + base size=16 base align=8 +QThreadPool (0x7f62e03b4930) 0 + vptr=((& QThreadPool::_ZTV11QThreadPool) + 16u) + QObject (0x7f62e03b49a0) 0 + primary-for QThreadPool (0x7f62e03b4930) + +Class QWaitCondition + size=8 align=8 + base size=8 base align=8 +QWaitCondition (0x7f62e03c4ee0) 0 + +Class QSemaphore + size=8 align=8 + base size=8 base align=8 +QSemaphore (0x7f62e03d0460) 0 + +Class QtConcurrent::ThreadEngineBarrier + size=24 align=8 + base size=24 base align=8 +QtConcurrent::ThreadEngineBarrier (0x7f62e03d09a0) 0 + +Vtable for QtConcurrent::ThreadEngineBase +QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent16ThreadEngineBaseE) +16 QtConcurrent::ThreadEngineBase::run +24 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +32 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +40 QtConcurrent::ThreadEngineBase::start +48 QtConcurrent::ThreadEngineBase::finish +56 QtConcurrent::ThreadEngineBase::threadFunction +64 QtConcurrent::ThreadEngineBase::shouldStartThread +72 QtConcurrent::ThreadEngineBase::shouldThrottleThread +80 __cxa_pure_virtual + +Class QtConcurrent::ThreadEngineBase + size=64 align=8 + base size=64 base align=8 +QtConcurrent::ThreadEngineBase (0x7f62e03d0a80) 0 + vptr=((& QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE) + 16u) + QRunnable (0x7f62e03d0af0) 0 + primary-for QtConcurrent::ThreadEngineBase (0x7f62e03d0a80) + +VTT for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTTN12QtConcurrent12ThreadEngineIvEE: 2u entries +0 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 24u) +8 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 136u) + +Class QtConcurrent::BlockSizeManager + size=96 align=8 + base size=92 base align=8 +QtConcurrent::BlockSizeManager (0x7f62e041bee0) 0 + +Vtable for QFactoryInterface +QFactoryInterface::_ZTV17QFactoryInterface: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QFactoryInterface) +16 QFactoryInterface::~QFactoryInterface +24 QFactoryInterface::~QFactoryInterface +32 __cxa_pure_virtual + +Class QFactoryInterface + size=8 align=8 + base size=8 base align=8 +QFactoryInterface (0x7f62dfec5d20) 0 nearly-empty + vptr=((& QFactoryInterface::_ZTV17QFactoryInterface) + 16u) + +Vtable for QTextCodecFactoryInterface +QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QTextCodecFactoryInterface) +16 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +24 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QTextCodecFactoryInterface + size=8 align=8 + base size=8 base align=8 +QTextCodecFactoryInterface (0x7f62dfef9000) 0 nearly-empty + vptr=((& QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface) + 16u) + QFactoryInterface (0x7f62dfef9070) 0 nearly-empty + primary-for QTextCodecFactoryInterface (0x7f62dfef9000) + +Vtable for QTextCodecPlugin +QTextCodecPlugin::_ZTV16QTextCodecPlugin: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QTextCodecPlugin) +16 QTextCodecPlugin::metaObject +24 QTextCodecPlugin::qt_metacast +32 QTextCodecPlugin::qt_metacall +40 QTextCodecPlugin::~QTextCodecPlugin +48 QTextCodecPlugin::~QTextCodecPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 QTextCodecPlugin::keys +160 QTextCodecPlugin::create +168 (int (*)(...))-0x00000000000000010 +176 (int (*)(...))(& _ZTI16QTextCodecPlugin) +184 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD1Ev +192 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD0Ev +200 QTextCodecPlugin::_ZThn16_NK16QTextCodecPlugin4keysEv +208 QTextCodecPlugin::_ZThn16_N16QTextCodecPlugin6createERK7QString + +Class QTextCodecPlugin + size=24 align=8 + base size=24 base align=8 +QTextCodecPlugin (0x7f62dff01580) 0 + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 16u) + QObject (0x7f62dfef9a80) 0 + primary-for QTextCodecPlugin (0x7f62dff01580) + QTextCodecFactoryInterface (0x7f62dfef9af0) 16 nearly-empty + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 184u) + QFactoryInterface (0x7f62dfef9b60) 16 nearly-empty + primary-for QTextCodecFactoryInterface (0x7f62dfef9af0) + +Class QLibraryInfo + size=1 align=1 + base size=0 base align=1 +QLibraryInfo (0x7f62dff4f150) 0 empty + +Vtable for QEventLoop +QEventLoop::_ZTV10QEventLoop: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QEventLoop) +16 QEventLoop::metaObject +24 QEventLoop::qt_metacast +32 QEventLoop::qt_metacall +40 QEventLoop::~QEventLoop +48 QEventLoop::~QEventLoop +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QEventLoop + size=16 align=8 + base size=16 base align=8 +QEventLoop (0x7f62dff4f2a0) 0 + vptr=((& QEventLoop::_ZTV10QEventLoop) + 16u) + QObject (0x7f62dff4f310) 0 + primary-for QEventLoop (0x7f62dff4f2a0) + +Vtable for QAbstractEventDispatcher +QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QAbstractEventDispatcher) +16 QAbstractEventDispatcher::metaObject +24 QAbstractEventDispatcher::qt_metacast +32 QAbstractEventDispatcher::qt_metacall +40 QAbstractEventDispatcher::~QAbstractEventDispatcher +48 QAbstractEventDispatcher::~QAbstractEventDispatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 QAbstractEventDispatcher::startingUp +208 QAbstractEventDispatcher::closingDown + +Class QAbstractEventDispatcher + size=16 align=8 + base size=16 base align=8 +QAbstractEventDispatcher (0x7f62dff87bd0) 0 + vptr=((& QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher) + 16u) + QObject (0x7f62dff87c40) 0 + primary-for QAbstractEventDispatcher (0x7f62dff87bd0) + +Class QModelIndex + size=24 align=8 + base size=24 base align=8 +QModelIndex (0x7f62dfdb1a80) 0 + +Class QPersistentModelIndex + size=8 align=8 + base size=8 base align=8 +QPersistentModelIndex (0x7f62dfddd540) 0 + +Vtable for QAbstractItemModel +QAbstractItemModel::_ZTV18QAbstractItemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractItemModel) +16 QAbstractItemModel::metaObject +24 QAbstractItemModel::qt_metacast +32 QAbstractItemModel::qt_metacall +40 QAbstractItemModel::~QAbstractItemModel +48 QAbstractItemModel::~QAbstractItemModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractItemModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractItemModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractItemModel + size=16 align=8 + base size=16 base align=8 +QAbstractItemModel (0x7f62dfde6850) 0 + vptr=((& QAbstractItemModel::_ZTV18QAbstractItemModel) + 16u) + QObject (0x7f62dfde68c0) 0 + primary-for QAbstractItemModel (0x7f62dfde6850) + +Vtable for QAbstractTableModel +QAbstractTableModel::_ZTV19QAbstractTableModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractTableModel) +16 QAbstractTableModel::metaObject +24 QAbstractTableModel::qt_metacast +32 QAbstractTableModel::qt_metacall +40 QAbstractTableModel::~QAbstractTableModel +48 QAbstractTableModel::~QAbstractTableModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractTableModel::index +120 QAbstractTableModel::parent +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractTableModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractTableModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractTableModel + size=16 align=8 + base size=16 base align=8 +QAbstractTableModel (0x7f62dfe42b60) 0 + vptr=((& QAbstractTableModel::_ZTV19QAbstractTableModel) + 16u) + QAbstractItemModel (0x7f62dfe42bd0) 0 + primary-for QAbstractTableModel (0x7f62dfe42b60) + QObject (0x7f62dfe42c40) 0 + primary-for QAbstractItemModel (0x7f62dfe42bd0) + +Vtable for QAbstractListModel +QAbstractListModel::_ZTV18QAbstractListModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractListModel) +16 QAbstractListModel::metaObject +24 QAbstractListModel::qt_metacast +32 QAbstractListModel::qt_metacall +40 QAbstractListModel::~QAbstractListModel +48 QAbstractListModel::~QAbstractListModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractListModel::index +120 QAbstractListModel::parent +128 __cxa_pure_virtual +136 QAbstractListModel::columnCount +144 QAbstractListModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractListModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractListModel + size=16 align=8 + base size=16 base align=8 +QAbstractListModel (0x7f62dfe5c0e0) 0 + vptr=((& QAbstractListModel::_ZTV18QAbstractListModel) + 16u) + QAbstractItemModel (0x7f62dfe5c150) 0 + primary-for QAbstractListModel (0x7f62dfe5c0e0) + QObject (0x7f62dfe5c1c0) 0 + primary-for QAbstractItemModel (0x7f62dfe5c150) + +Class QBasicTimer + size=4 align=4 + base size=4 base align=4 +QBasicTimer (0x7f62dfe8e230) 0 + +Vtable for QCoreApplication +QCoreApplication::_ZTV16QCoreApplication: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QCoreApplication) +16 QCoreApplication::metaObject +24 QCoreApplication::qt_metacast +32 QCoreApplication::qt_metacall +40 QCoreApplication::~QCoreApplication +48 QCoreApplication::~QCoreApplication +56 QCoreApplication::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCoreApplication::notify +120 QCoreApplication::compressEvent + +Class QCoreApplication + size=16 align=8 + base size=16 base align=8 +QCoreApplication (0x7f62dfc98620) 0 + vptr=((& QCoreApplication::_ZTV16QCoreApplication) + 16u) + QObject (0x7f62dfc98690) 0 + primary-for QCoreApplication (0x7f62dfc98620) + +Class __exception + size=40 align=8 + base size=40 base align=8 +__exception (0x7f62dfccd310) 0 + +Class QMetaMethod + size=16 align=8 + base size=12 base align=8 +QMetaMethod (0x7f62dfd3a770) 0 + +Class QMetaEnum + size=16 align=8 + base size=12 base align=8 +QMetaEnum (0x7f62dfd52bd0) 0 + +Class QMetaProperty + size=32 align=8 + base size=32 base align=8 +QMetaProperty (0x7f62dfd62930) 0 + +Class QMetaClassInfo + size=16 align=8 + base size=12 base align=8 +QMetaClassInfo (0x7f62dfd73000) 0 + +Vtable for QMimeData +QMimeData::_ZTV9QMimeData: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QMimeData) +16 QMimeData::metaObject +24 QMimeData::qt_metacast +32 QMimeData::qt_metacall +40 QMimeData::~QMimeData +48 QMimeData::~QMimeData +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMimeData::hasFormat +120 QMimeData::formats +128 QMimeData::retrieveData + +Class QMimeData + size=16 align=8 + base size=16 base align=8 +QMimeData (0x7f62dfd73af0) 0 + vptr=((& QMimeData::_ZTV9QMimeData) + 16u) + QObject (0x7f62dfd73b60) 0 + primary-for QMimeData (0x7f62dfd73af0) + +Vtable for QObjectCleanupHandler +QObjectCleanupHandler::_ZTV21QObjectCleanupHandler: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QObjectCleanupHandler) +16 QObjectCleanupHandler::metaObject +24 QObjectCleanupHandler::qt_metacast +32 QObjectCleanupHandler::qt_metacall +40 QObjectCleanupHandler::~QObjectCleanupHandler +48 QObjectCleanupHandler::~QObjectCleanupHandler +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObjectCleanupHandler + size=24 align=8 + base size=24 base align=8 +QObjectCleanupHandler (0x7f62dfb97380) 0 + vptr=((& QObjectCleanupHandler::_ZTV21QObjectCleanupHandler) + 16u) + QObject (0x7f62dfb973f0) 0 + primary-for QObjectCleanupHandler (0x7f62dfb97380) + +Vtable for QSharedMemory +QSharedMemory::_ZTV13QSharedMemory: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSharedMemory) +16 QSharedMemory::metaObject +24 QSharedMemory::qt_metacast +32 QSharedMemory::qt_metacall +40 QSharedMemory::~QSharedMemory +48 QSharedMemory::~QSharedMemory +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSharedMemory + size=16 align=8 + base size=16 base align=8 +QSharedMemory (0x7f62dfba84d0) 0 + vptr=((& QSharedMemory::_ZTV13QSharedMemory) + 16u) + QObject (0x7f62dfba8540) 0 + primary-for QSharedMemory (0x7f62dfba84d0) + +Vtable for QSignalMapper +QSignalMapper::_ZTV13QSignalMapper: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSignalMapper) +16 QSignalMapper::metaObject +24 QSignalMapper::qt_metacast +32 QSignalMapper::qt_metacall +40 QSignalMapper::~QSignalMapper +48 QSignalMapper::~QSignalMapper +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSignalMapper + size=16 align=8 + base size=16 base align=8 +QSignalMapper (0x7f62dfbc62a0) 0 + vptr=((& QSignalMapper::_ZTV13QSignalMapper) + 16u) + QObject (0x7f62dfbc6310) 0 + primary-for QSignalMapper (0x7f62dfbc62a0) + +Vtable for QSocketNotifier +QSocketNotifier::_ZTV15QSocketNotifier: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSocketNotifier) +16 QSocketNotifier::metaObject +24 QSocketNotifier::qt_metacast +32 QSocketNotifier::qt_metacall +40 QSocketNotifier::~QSocketNotifier +48 QSocketNotifier::~QSocketNotifier +56 QSocketNotifier::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSocketNotifier + size=32 align=8 + base size=25 base align=8 +QSocketNotifier (0x7f62dfbde690) 0 + vptr=((& QSocketNotifier::_ZTV15QSocketNotifier) + 16u) + QObject (0x7f62dfbde700) 0 + primary-for QSocketNotifier (0x7f62dfbde690) + +Class QSystemSemaphore + size=8 align=8 + base size=8 base align=8 +QSystemSemaphore (0x7f62dfbf8a10) 0 + +Vtable for QTimer +QTimer::_ZTV6QTimer: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QTimer) +16 QTimer::metaObject +24 QTimer::qt_metacast +32 QTimer::qt_metacall +40 QTimer::~QTimer +48 QTimer::~QTimer +56 QObject::event +64 QObject::eventFilter +72 QTimer::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTimer + size=32 align=8 + base size=29 base align=8 +QTimer (0x7f62dfc04460) 0 + vptr=((& QTimer::_ZTV6QTimer) + 16u) + QObject (0x7f62dfc044d0) 0 + primary-for QTimer (0x7f62dfc04460) + +Vtable for QTranslator +QTranslator::_ZTV11QTranslator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTranslator) +16 QTranslator::metaObject +24 QTranslator::qt_metacast +32 QTranslator::qt_metacall +40 QTranslator::~QTranslator +48 QTranslator::~QTranslator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTranslator::translate +120 QTranslator::isEmpty + +Class QTranslator + size=16 align=8 + base size=16 base align=8 +QTranslator (0x7f62dfc289a0) 0 + vptr=((& QTranslator::_ZTV11QTranslator) + 16u) + QObject (0x7f62dfc28a10) 0 + primary-for QTranslator (0x7f62dfc289a0) + +Vtable for QLibrary +QLibrary::_ZTV8QLibrary: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QLibrary) +16 QLibrary::metaObject +24 QLibrary::qt_metacast +32 QLibrary::qt_metacall +40 QLibrary::~QLibrary +48 QLibrary::~QLibrary +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QLibrary + size=32 align=8 + base size=25 base align=8 +QLibrary (0x7f62dfc42930) 0 + vptr=((& QLibrary::_ZTV8QLibrary) + 16u) + QObject (0x7f62dfc429a0) 0 + primary-for QLibrary (0x7f62dfc42930) + +Vtable for QPluginLoader +QPluginLoader::_ZTV13QPluginLoader: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QPluginLoader) +16 QPluginLoader::metaObject +24 QPluginLoader::qt_metacast +32 QPluginLoader::qt_metacall +40 QPluginLoader::~QPluginLoader +48 QPluginLoader::~QPluginLoader +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QPluginLoader + size=32 align=8 + base size=25 base align=8 +QPluginLoader (0x7f62dfc903f0) 0 + vptr=((& QPluginLoader::_ZTV13QPluginLoader) + 16u) + QObject (0x7f62dfc90460) 0 + primary-for QPluginLoader (0x7f62dfc903f0) + +Class QUuid + size=16 align=4 + base size=16 base align=4 +QUuid (0x7f62dfa9eb60) 0 + +Class QReadWriteLock + size=8 align=8 + base size=8 base align=8 +QReadWriteLock (0x7f62dfac84d0) 0 + +Class QReadLocker + size=8 align=8 + base size=8 base align=8 +QReadLocker (0x7f62dfac8b60) 0 + +Class QWriteLocker + size=8 align=8 + base size=8 base align=8 +QWriteLocker (0x7f62dfae5ee0) 0 + +Class QThreadStorageData + size=4 align=4 + base size=4 base align=4 +QThreadStorageData (0x7f62dfb002a0) 0 + +Vtable for QAbstractAnimation +QAbstractAnimation::_ZTV18QAbstractAnimation: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractAnimation) +16 QAbstractAnimation::metaObject +24 QAbstractAnimation::qt_metacast +32 QAbstractAnimation::qt_metacall +40 QAbstractAnimation::~QAbstractAnimation +48 QAbstractAnimation::~QAbstractAnimation +56 QAbstractAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAbstractAnimation::updateState +136 QAbstractAnimation::updateDirection + +Class QAbstractAnimation + size=16 align=8 + base size=16 base align=8 +QAbstractAnimation (0x7f62dfb00a10) 0 + vptr=((& QAbstractAnimation::_ZTV18QAbstractAnimation) + 16u) + QObject (0x7f62dfb00a80) 0 + primary-for QAbstractAnimation (0x7f62dfb00a10) + +Vtable for QAnimationGroup +QAnimationGroup::_ZTV15QAnimationGroup: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QAnimationGroup) +16 QAnimationGroup::metaObject +24 QAnimationGroup::qt_metacast +32 QAnimationGroup::qt_metacall +40 QAnimationGroup::~QAnimationGroup +48 QAnimationGroup::~QAnimationGroup +56 QAnimationGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAbstractAnimation::updateState +136 QAbstractAnimation::updateDirection + +Class QAnimationGroup + size=16 align=8 + base size=16 base align=8 +QAnimationGroup (0x7f62dfb36150) 0 + vptr=((& QAnimationGroup::_ZTV15QAnimationGroup) + 16u) + QAbstractAnimation (0x7f62dfb361c0) 0 + primary-for QAnimationGroup (0x7f62dfb36150) + QObject (0x7f62dfb36230) 0 + primary-for QAbstractAnimation (0x7f62dfb361c0) + +Vtable for QParallelAnimationGroup +QParallelAnimationGroup::_ZTV23QParallelAnimationGroup: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QParallelAnimationGroup) +16 QParallelAnimationGroup::metaObject +24 QParallelAnimationGroup::qt_metacast +32 QParallelAnimationGroup::qt_metacall +40 QParallelAnimationGroup::~QParallelAnimationGroup +48 QParallelAnimationGroup::~QParallelAnimationGroup +56 QParallelAnimationGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QParallelAnimationGroup::duration +120 QParallelAnimationGroup::updateCurrentTime +128 QParallelAnimationGroup::updateState +136 QParallelAnimationGroup::updateDirection + +Class QParallelAnimationGroup + size=16 align=8 + base size=16 base align=8 +QParallelAnimationGroup (0x7f62dfb4f000) 0 + vptr=((& QParallelAnimationGroup::_ZTV23QParallelAnimationGroup) + 16u) + QAnimationGroup (0x7f62dfb4f070) 0 + primary-for QParallelAnimationGroup (0x7f62dfb4f000) + QAbstractAnimation (0x7f62dfb4f0e0) 0 + primary-for QAnimationGroup (0x7f62dfb4f070) + QObject (0x7f62dfb4f150) 0 + primary-for QAbstractAnimation (0x7f62dfb4f0e0) + +Vtable for QPauseAnimation +QPauseAnimation::_ZTV15QPauseAnimation: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QPauseAnimation) +16 QPauseAnimation::metaObject +24 QPauseAnimation::qt_metacast +32 QPauseAnimation::qt_metacall +40 QPauseAnimation::~QPauseAnimation +48 QPauseAnimation::~QPauseAnimation +56 QPauseAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QPauseAnimation::duration +120 QPauseAnimation::updateCurrentTime +128 QAbstractAnimation::updateState +136 QAbstractAnimation::updateDirection + +Class QPauseAnimation + size=16 align=8 + base size=16 base align=8 +QPauseAnimation (0x7f62dfb5de70) 0 + vptr=((& QPauseAnimation::_ZTV15QPauseAnimation) + 16u) + QAbstractAnimation (0x7f62dfb5dee0) 0 + primary-for QPauseAnimation (0x7f62dfb5de70) + QObject (0x7f62dfb5df50) 0 + primary-for QAbstractAnimation (0x7f62dfb5dee0) + +Vtable for QVariantAnimation +QVariantAnimation::_ZTV17QVariantAnimation: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QVariantAnimation) +16 QVariantAnimation::metaObject +24 QVariantAnimation::qt_metacast +32 QVariantAnimation::qt_metacall +40 QVariantAnimation::~QVariantAnimation +48 QVariantAnimation::~QVariantAnimation +56 QVariantAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QVariantAnimation::duration +120 QVariantAnimation::updateCurrentTime +128 QVariantAnimation::updateState +136 QAbstractAnimation::updateDirection +144 __cxa_pure_virtual +152 QVariantAnimation::interpolated + +Class QVariantAnimation + size=16 align=8 + base size=16 base align=8 +QVariantAnimation (0x7f62dfb7b8c0) 0 + vptr=((& QVariantAnimation::_ZTV17QVariantAnimation) + 16u) + QAbstractAnimation (0x7f62dfb7b930) 0 + primary-for QVariantAnimation (0x7f62dfb7b8c0) + QObject (0x7f62dfb7b9a0) 0 + primary-for QAbstractAnimation (0x7f62dfb7b930) + +Vtable for QPropertyAnimation +QPropertyAnimation::_ZTV18QPropertyAnimation: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QPropertyAnimation) +16 QPropertyAnimation::metaObject +24 QPropertyAnimation::qt_metacast +32 QPropertyAnimation::qt_metacall +40 QPropertyAnimation::~QPropertyAnimation +48 QPropertyAnimation::~QPropertyAnimation +56 QPropertyAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QVariantAnimation::duration +120 QVariantAnimation::updateCurrentTime +128 QPropertyAnimation::updateState +136 QAbstractAnimation::updateDirection +144 QPropertyAnimation::updateCurrentValue +152 QVariantAnimation::interpolated + +Class QPropertyAnimation + size=16 align=8 + base size=16 base align=8 +QPropertyAnimation (0x7f62df999b60) 0 + vptr=((& QPropertyAnimation::_ZTV18QPropertyAnimation) + 16u) + QVariantAnimation (0x7f62df999bd0) 0 + primary-for QPropertyAnimation (0x7f62df999b60) + QAbstractAnimation (0x7f62df999c40) 0 + primary-for QVariantAnimation (0x7f62df999bd0) + QObject (0x7f62df999cb0) 0 + primary-for QAbstractAnimation (0x7f62df999c40) + +Vtable for QSequentialAnimationGroup +QSequentialAnimationGroup::_ZTV25QSequentialAnimationGroup: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QSequentialAnimationGroup) +16 QSequentialAnimationGroup::metaObject +24 QSequentialAnimationGroup::qt_metacast +32 QSequentialAnimationGroup::qt_metacall +40 QSequentialAnimationGroup::~QSequentialAnimationGroup +48 QSequentialAnimationGroup::~QSequentialAnimationGroup +56 QSequentialAnimationGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QSequentialAnimationGroup::duration +120 QSequentialAnimationGroup::updateCurrentTime +128 QSequentialAnimationGroup::updateState +136 QSequentialAnimationGroup::updateDirection + +Class QSequentialAnimationGroup + size=16 align=8 + base size=16 base align=8 +QSequentialAnimationGroup (0x7f62df9b3b60) 0 + vptr=((& QSequentialAnimationGroup::_ZTV25QSequentialAnimationGroup) + 16u) + QAnimationGroup (0x7f62df9b3bd0) 0 + primary-for QSequentialAnimationGroup (0x7f62df9b3b60) + QAbstractAnimation (0x7f62df9b3c40) 0 + primary-for QAnimationGroup (0x7f62df9b3bd0) + QObject (0x7f62df9b3cb0) 0 + primary-for QAbstractAnimation (0x7f62df9b3c40) + +Class QColor + size=16 align=4 + base size=14 base align=4 +QColor (0x7f62df9db620) 0 + +Class QRegion::QRegionData + size=32 align=8 + base size=32 base align=8 +QRegion::QRegionData (0x7f62dfa555b0) 0 + +Class QRegion + size=8 align=8 + base size=8 base align=8 +QRegion (0x7f62dfa2fcb0) 0 + +Class QKeySequence + size=8 align=8 + base size=8 base align=8 +QKeySequence (0x7f62dfa69e00) 0 + +Vtable for QMimeSource +QMimeSource::_ZTV11QMimeSource: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMimeSource) +16 QMimeSource::~QMimeSource +24 QMimeSource::~QMimeSource +32 __cxa_pure_virtual +40 QMimeSource::provides +48 __cxa_pure_virtual + +Class QMimeSource + size=8 align=8 + base size=8 base align=8 +QMimeSource (0x7f62df867770) 0 nearly-empty + vptr=((& QMimeSource::_ZTV11QMimeSource) + 16u) + +Vtable for QDrag +QDrag::_ZTV5QDrag: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QDrag) +16 QDrag::metaObject +24 QDrag::qt_metacast +32 QDrag::qt_metacall +40 QDrag::~QDrag +48 QDrag::~QDrag +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QDrag + size=16 align=8 + base size=16 base align=8 +QDrag (0x7f62df8678c0) 0 + vptr=((& QDrag::_ZTV5QDrag) + 16u) + QObject (0x7f62df867930) 0 + primary-for QDrag (0x7f62df8678c0) + +Vtable for QInputEvent +QInputEvent::_ZTV11QInputEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QInputEvent) +16 QInputEvent::~QInputEvent +24 QInputEvent::~QInputEvent + +Class QInputEvent + size=24 align=8 + base size=24 base align=8 +QInputEvent (0x7f62df890070) 0 + vptr=((& QInputEvent::_ZTV11QInputEvent) + 16u) + QEvent (0x7f62df8900e0) 0 + primary-for QInputEvent (0x7f62df890070) + +Vtable for QMouseEvent +QMouseEvent::_ZTV11QMouseEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMouseEvent) +16 QMouseEvent::~QMouseEvent +24 QMouseEvent::~QMouseEvent + +Class QMouseEvent + size=48 align=8 + base size=48 base align=8 +QMouseEvent (0x7f62df890930) 0 + vptr=((& QMouseEvent::_ZTV11QMouseEvent) + 16u) + QInputEvent (0x7f62df8909a0) 0 + primary-for QMouseEvent (0x7f62df890930) + QEvent (0x7f62df890a10) 0 + primary-for QInputEvent (0x7f62df8909a0) + +Vtable for QHoverEvent +QHoverEvent::_ZTV11QHoverEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QHoverEvent) +16 QHoverEvent::~QHoverEvent +24 QHoverEvent::~QHoverEvent + +Class QHoverEvent + size=40 align=8 + base size=36 base align=8 +QHoverEvent (0x7f62df8bb700) 0 + vptr=((& QHoverEvent::_ZTV11QHoverEvent) + 16u) + QEvent (0x7f62df8bb770) 0 + primary-for QHoverEvent (0x7f62df8bb700) + +Vtable for QWheelEvent +QWheelEvent::_ZTV11QWheelEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QWheelEvent) +16 QWheelEvent::~QWheelEvent +24 QWheelEvent::~QWheelEvent + +Class QWheelEvent + size=56 align=8 + base size=52 base align=8 +QWheelEvent (0x7f62df8bbe70) 0 + vptr=((& QWheelEvent::_ZTV11QWheelEvent) + 16u) + QInputEvent (0x7f62df8bbee0) 0 + primary-for QWheelEvent (0x7f62df8bbe70) + QEvent (0x7f62df8bbf50) 0 + primary-for QInputEvent (0x7f62df8bbee0) + +Vtable for QTabletEvent +QTabletEvent::_ZTV12QTabletEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTabletEvent) +16 QTabletEvent::~QTabletEvent +24 QTabletEvent::~QTabletEvent + +Class QTabletEvent + size=120 align=8 + base size=120 base align=8 +QTabletEvent (0x7f62df8d5c40) 0 + vptr=((& QTabletEvent::_ZTV12QTabletEvent) + 16u) + QInputEvent (0x7f62df8d5cb0) 0 + primary-for QTabletEvent (0x7f62df8d5c40) + QEvent (0x7f62df8d5d20) 0 + primary-for QInputEvent (0x7f62df8d5cb0) + +Vtable for QKeyEvent +QKeyEvent::_ZTV9QKeyEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QKeyEvent) +16 QKeyEvent::~QKeyEvent +24 QKeyEvent::~QKeyEvent + +Class QKeyEvent + size=40 align=8 + base size=39 base align=8 +QKeyEvent (0x7f62df8f3f50) 0 + vptr=((& QKeyEvent::_ZTV9QKeyEvent) + 16u) + QInputEvent (0x7f62df8f9000) 0 + primary-for QKeyEvent (0x7f62df8f3f50) + QEvent (0x7f62df8f9070) 0 + primary-for QInputEvent (0x7f62df8f9000) + +Vtable for QFocusEvent +QFocusEvent::_ZTV11QFocusEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFocusEvent) +16 QFocusEvent::~QFocusEvent +24 QFocusEvent::~QFocusEvent + +Class QFocusEvent + size=24 align=8 + base size=24 base align=8 +QFocusEvent (0x7f62df91c930) 0 + vptr=((& QFocusEvent::_ZTV11QFocusEvent) + 16u) + QEvent (0x7f62df91c9a0) 0 + primary-for QFocusEvent (0x7f62df91c930) + +Vtable for QPaintEvent +QPaintEvent::_ZTV11QPaintEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QPaintEvent) +16 QPaintEvent::~QPaintEvent +24 QPaintEvent::~QPaintEvent + +Class QPaintEvent + size=56 align=8 + base size=49 base align=8 +QPaintEvent (0x7f62df929380) 0 + vptr=((& QPaintEvent::_ZTV11QPaintEvent) + 16u) + QEvent (0x7f62df9293f0) 0 + primary-for QPaintEvent (0x7f62df929380) + +Vtable for QUpdateLaterEvent +QUpdateLaterEvent::_ZTV17QUpdateLaterEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QUpdateLaterEvent) +16 QUpdateLaterEvent::~QUpdateLaterEvent +24 QUpdateLaterEvent::~QUpdateLaterEvent + +Class QUpdateLaterEvent + size=32 align=8 + base size=32 base align=8 +QUpdateLaterEvent (0x7f62df936000) 0 + vptr=((& QUpdateLaterEvent::_ZTV17QUpdateLaterEvent) + 16u) + QEvent (0x7f62df936070) 0 + primary-for QUpdateLaterEvent (0x7f62df936000) + +Vtable for QMoveEvent +QMoveEvent::_ZTV10QMoveEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QMoveEvent) +16 QMoveEvent::~QMoveEvent +24 QMoveEvent::~QMoveEvent + +Class QMoveEvent + size=40 align=8 + base size=36 base align=8 +QMoveEvent (0x7f62df936460) 0 + vptr=((& QMoveEvent::_ZTV10QMoveEvent) + 16u) + QEvent (0x7f62df9364d0) 0 + primary-for QMoveEvent (0x7f62df936460) + +Vtable for QResizeEvent +QResizeEvent::_ZTV12QResizeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QResizeEvent) +16 QResizeEvent::~QResizeEvent +24 QResizeEvent::~QResizeEvent + +Class QResizeEvent + size=40 align=8 + base size=36 base align=8 +QResizeEvent (0x7f62df936af0) 0 + vptr=((& QResizeEvent::_ZTV12QResizeEvent) + 16u) + QEvent (0x7f62df936b60) 0 + primary-for QResizeEvent (0x7f62df936af0) + +Vtable for QCloseEvent +QCloseEvent::_ZTV11QCloseEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QCloseEvent) +16 QCloseEvent::~QCloseEvent +24 QCloseEvent::~QCloseEvent + +Class QCloseEvent + size=24 align=8 + base size=20 base align=8 +QCloseEvent (0x7f62df947070) 0 + vptr=((& QCloseEvent::_ZTV11QCloseEvent) + 16u) + QEvent (0x7f62df9470e0) 0 + primary-for QCloseEvent (0x7f62df947070) + +Vtable for QIconDragEvent +QIconDragEvent::_ZTV14QIconDragEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QIconDragEvent) +16 QIconDragEvent::~QIconDragEvent +24 QIconDragEvent::~QIconDragEvent + +Class QIconDragEvent + size=24 align=8 + base size=20 base align=8 +QIconDragEvent (0x7f62df9472a0) 0 + vptr=((& QIconDragEvent::_ZTV14QIconDragEvent) + 16u) + QEvent (0x7f62df947310) 0 + primary-for QIconDragEvent (0x7f62df9472a0) + +Vtable for QShowEvent +QShowEvent::_ZTV10QShowEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QShowEvent) +16 QShowEvent::~QShowEvent +24 QShowEvent::~QShowEvent + +Class QShowEvent + size=24 align=8 + base size=20 base align=8 +QShowEvent (0x7f62df9474d0) 0 + vptr=((& QShowEvent::_ZTV10QShowEvent) + 16u) + QEvent (0x7f62df947540) 0 + primary-for QShowEvent (0x7f62df9474d0) + +Vtable for QHideEvent +QHideEvent::_ZTV10QHideEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QHideEvent) +16 QHideEvent::~QHideEvent +24 QHideEvent::~QHideEvent + +Class QHideEvent + size=24 align=8 + base size=20 base align=8 +QHideEvent (0x7f62df947700) 0 + vptr=((& QHideEvent::_ZTV10QHideEvent) + 16u) + QEvent (0x7f62df947770) 0 + primary-for QHideEvent (0x7f62df947700) + +Vtable for QContextMenuEvent +QContextMenuEvent::_ZTV17QContextMenuEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QContextMenuEvent) +16 QContextMenuEvent::~QContextMenuEvent +24 QContextMenuEvent::~QContextMenuEvent + +Class QContextMenuEvent + size=48 align=8 + base size=41 base align=8 +QContextMenuEvent (0x7f62df947930) 0 + vptr=((& QContextMenuEvent::_ZTV17QContextMenuEvent) + 16u) + QInputEvent (0x7f62df9479a0) 0 + primary-for QContextMenuEvent (0x7f62df947930) + QEvent (0x7f62df947a10) 0 + primary-for QInputEvent (0x7f62df9479a0) + +Class QInputMethodEvent::Attribute + size=32 align=8 + base size=32 base align=8 +QInputMethodEvent::Attribute (0x7f62df7614d0) 0 + +Vtable for QInputMethodEvent +QInputMethodEvent::_ZTV17QInputMethodEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QInputMethodEvent) +16 QInputMethodEvent::~QInputMethodEvent +24 QInputMethodEvent::~QInputMethodEvent + +Class QInputMethodEvent + size=56 align=8 + base size=56 base align=8 +QInputMethodEvent (0x7f62df7613f0) 0 + vptr=((& QInputMethodEvent::_ZTV17QInputMethodEvent) + 16u) + QEvent (0x7f62df761460) 0 + primary-for QInputMethodEvent (0x7f62df7613f0) + +Vtable for QDropEvent +QDropEvent::_ZTV10QDropEvent: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QDropEvent) +16 QDropEvent::~QDropEvent +24 QDropEvent::~QDropEvent +32 QDropEvent::format +40 QDropEvent::encodedData +48 QDropEvent::provides +56 (int (*)(...))-0x00000000000000018 +64 (int (*)(...))(& _ZTI10QDropEvent) +72 QDropEvent::_ZThn24_N10QDropEventD1Ev +80 QDropEvent::_ZThn24_N10QDropEventD0Ev +88 QDropEvent::_ZThn24_NK10QDropEvent6formatEi +96 QDropEvent::_ZThn24_NK10QDropEvent8providesEPKc +104 QDropEvent::_ZThn24_NK10QDropEvent11encodedDataEPKc + +Class QDropEvent + size=80 align=8 + base size=80 base align=8 +QDropEvent (0x7f62df79c200) 0 + vptr=((& QDropEvent::_ZTV10QDropEvent) + 16u) + QEvent (0x7f62df79abd0) 0 + primary-for QDropEvent (0x7f62df79c200) + QMimeSource (0x7f62df79ac40) 24 nearly-empty + vptr=((& QDropEvent::_ZTV10QDropEvent) + 72u) + +Vtable for QDragMoveEvent +QDragMoveEvent::_ZTV14QDragMoveEvent: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QDragMoveEvent) +16 QDragMoveEvent::~QDragMoveEvent +24 QDragMoveEvent::~QDragMoveEvent +32 QDropEvent::format +40 QDropEvent::encodedData +48 QDropEvent::provides +56 (int (*)(...))-0x00000000000000018 +64 (int (*)(...))(& _ZTI14QDragMoveEvent) +72 QDragMoveEvent::_ZThn24_N14QDragMoveEventD1Ev +80 QDragMoveEvent::_ZThn24_N14QDragMoveEventD0Ev +88 QDropEvent::_ZThn24_NK10QDropEvent6formatEi +96 QDropEvent::_ZThn24_NK10QDropEvent8providesEPKc +104 QDropEvent::_ZThn24_NK10QDropEvent11encodedDataEPKc + +Class QDragMoveEvent + size=96 align=8 + base size=96 base align=8 +QDragMoveEvent (0x7f62df7b5930) 0 + vptr=((& QDragMoveEvent::_ZTV14QDragMoveEvent) + 16u) + QDropEvent (0x7f62df7b1900) 0 + primary-for QDragMoveEvent (0x7f62df7b5930) + QEvent (0x7f62df7b59a0) 0 + primary-for QDropEvent (0x7f62df7b1900) + QMimeSource (0x7f62df7b5a10) 24 nearly-empty + vptr=((& QDragMoveEvent::_ZTV14QDragMoveEvent) + 72u) + +Vtable for QDragEnterEvent +QDragEnterEvent::_ZTV15QDragEnterEvent: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QDragEnterEvent) +16 QDragEnterEvent::~QDragEnterEvent +24 QDragEnterEvent::~QDragEnterEvent +32 QDropEvent::format +40 QDropEvent::encodedData +48 QDropEvent::provides +56 (int (*)(...))-0x00000000000000018 +64 (int (*)(...))(& _ZTI15QDragEnterEvent) +72 QDragEnterEvent::_ZThn24_N15QDragEnterEventD1Ev +80 QDragEnterEvent::_ZThn24_N15QDragEnterEventD0Ev +88 QDropEvent::_ZThn24_NK10QDropEvent6formatEi +96 QDropEvent::_ZThn24_NK10QDropEvent8providesEPKc +104 QDropEvent::_ZThn24_NK10QDropEvent11encodedDataEPKc + +Class QDragEnterEvent + size=96 align=8 + base size=96 base align=8 +QDragEnterEvent (0x7f62df7c50e0) 0 + vptr=((& QDragEnterEvent::_ZTV15QDragEnterEvent) + 16u) + QDragMoveEvent (0x7f62df7c5150) 0 + primary-for QDragEnterEvent (0x7f62df7c50e0) + QDropEvent (0x7f62df7c4280) 0 + primary-for QDragMoveEvent (0x7f62df7c5150) + QEvent (0x7f62df7c51c0) 0 + primary-for QDropEvent (0x7f62df7c4280) + QMimeSource (0x7f62df7c5230) 24 nearly-empty + vptr=((& QDragEnterEvent::_ZTV15QDragEnterEvent) + 72u) + +Vtable for QDragResponseEvent +QDragResponseEvent::_ZTV18QDragResponseEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QDragResponseEvent) +16 QDragResponseEvent::~QDragResponseEvent +24 QDragResponseEvent::~QDragResponseEvent + +Class QDragResponseEvent + size=24 align=8 + base size=21 base align=8 +QDragResponseEvent (0x7f62df7c53f0) 0 + vptr=((& QDragResponseEvent::_ZTV18QDragResponseEvent) + 16u) + QEvent (0x7f62df7c5460) 0 + primary-for QDragResponseEvent (0x7f62df7c53f0) + +Vtable for QDragLeaveEvent +QDragLeaveEvent::_ZTV15QDragLeaveEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QDragLeaveEvent) +16 QDragLeaveEvent::~QDragLeaveEvent +24 QDragLeaveEvent::~QDragLeaveEvent + +Class QDragLeaveEvent + size=24 align=8 + base size=20 base align=8 +QDragLeaveEvent (0x7f62df7c5850) 0 + vptr=((& QDragLeaveEvent::_ZTV15QDragLeaveEvent) + 16u) + QEvent (0x7f62df7c58c0) 0 + primary-for QDragLeaveEvent (0x7f62df7c5850) + +Vtable for QHelpEvent +QHelpEvent::_ZTV10QHelpEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QHelpEvent) +16 QHelpEvent::~QHelpEvent +24 QHelpEvent::~QHelpEvent + +Class QHelpEvent + size=40 align=8 + base size=36 base align=8 +QHelpEvent (0x7f62df7c5a80) 0 + vptr=((& QHelpEvent::_ZTV10QHelpEvent) + 16u) + QEvent (0x7f62df7c5af0) 0 + primary-for QHelpEvent (0x7f62df7c5a80) + +Vtable for QStatusTipEvent +QStatusTipEvent::_ZTV15QStatusTipEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QStatusTipEvent) +16 QStatusTipEvent::~QStatusTipEvent +24 QStatusTipEvent::~QStatusTipEvent + +Class QStatusTipEvent + size=32 align=8 + base size=32 base align=8 +QStatusTipEvent (0x7f62df7d7af0) 0 + vptr=((& QStatusTipEvent::_ZTV15QStatusTipEvent) + 16u) + QEvent (0x7f62df7d7b60) 0 + primary-for QStatusTipEvent (0x7f62df7d7af0) + +Vtable for QWhatsThisClickedEvent +QWhatsThisClickedEvent::_ZTV22QWhatsThisClickedEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QWhatsThisClickedEvent) +16 QWhatsThisClickedEvent::~QWhatsThisClickedEvent +24 QWhatsThisClickedEvent::~QWhatsThisClickedEvent + +Class QWhatsThisClickedEvent + size=32 align=8 + base size=32 base align=8 +QWhatsThisClickedEvent (0x7f62df7d7cb0) 0 + vptr=((& QWhatsThisClickedEvent::_ZTV22QWhatsThisClickedEvent) + 16u) + QEvent (0x7f62df7e0000) 0 + primary-for QWhatsThisClickedEvent (0x7f62df7d7cb0) + +Vtable for QActionEvent +QActionEvent::_ZTV12QActionEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QActionEvent) +16 QActionEvent::~QActionEvent +24 QActionEvent::~QActionEvent + +Class QActionEvent + size=40 align=8 + base size=40 base align=8 +QActionEvent (0x7f62df7e0460) 0 + vptr=((& QActionEvent::_ZTV12QActionEvent) + 16u) + QEvent (0x7f62df7e04d0) 0 + primary-for QActionEvent (0x7f62df7e0460) + +Vtable for QFileOpenEvent +QFileOpenEvent::_ZTV14QFileOpenEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QFileOpenEvent) +16 QFileOpenEvent::~QFileOpenEvent +24 QFileOpenEvent::~QFileOpenEvent + +Class QFileOpenEvent + size=32 align=8 + base size=32 base align=8 +QFileOpenEvent (0x7f62df7e0af0) 0 + vptr=((& QFileOpenEvent::_ZTV14QFileOpenEvent) + 16u) + QEvent (0x7f62df7e0b60) 0 + primary-for QFileOpenEvent (0x7f62df7e0af0) + +Vtable for QToolBarChangeEvent +QToolBarChangeEvent::_ZTV19QToolBarChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QToolBarChangeEvent) +16 QToolBarChangeEvent::~QToolBarChangeEvent +24 QToolBarChangeEvent::~QToolBarChangeEvent + +Class QToolBarChangeEvent + size=24 align=8 + base size=21 base align=8 +QToolBarChangeEvent (0x7f62df7e0620) 0 + vptr=((& QToolBarChangeEvent::_ZTV19QToolBarChangeEvent) + 16u) + QEvent (0x7f62df7e0d20) 0 + primary-for QToolBarChangeEvent (0x7f62df7e0620) + +Vtable for QShortcutEvent +QShortcutEvent::_ZTV14QShortcutEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QShortcutEvent) +16 QShortcutEvent::~QShortcutEvent +24 QShortcutEvent::~QShortcutEvent + +Class QShortcutEvent + size=40 align=8 + base size=40 base align=8 +QShortcutEvent (0x7f62df7f3460) 0 + vptr=((& QShortcutEvent::_ZTV14QShortcutEvent) + 16u) + QEvent (0x7f62df7f34d0) 0 + primary-for QShortcutEvent (0x7f62df7f3460) + +Vtable for QClipboardEvent +QClipboardEvent::_ZTV15QClipboardEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QClipboardEvent) +16 QClipboardEvent::~QClipboardEvent +24 QClipboardEvent::~QClipboardEvent + +Class QClipboardEvent + size=24 align=8 + base size=20 base align=8 +QClipboardEvent (0x7f62df7fe310) 0 + vptr=((& QClipboardEvent::_ZTV15QClipboardEvent) + 16u) + QEvent (0x7f62df7fe380) 0 + primary-for QClipboardEvent (0x7f62df7fe310) + +Vtable for QWindowStateChangeEvent +QWindowStateChangeEvent::_ZTV23QWindowStateChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QWindowStateChangeEvent) +16 QWindowStateChangeEvent::~QWindowStateChangeEvent +24 QWindowStateChangeEvent::~QWindowStateChangeEvent + +Class QWindowStateChangeEvent + size=24 align=8 + base size=24 base align=8 +QWindowStateChangeEvent (0x7f62df7fe770) 0 + vptr=((& QWindowStateChangeEvent::_ZTV23QWindowStateChangeEvent) + 16u) + QEvent (0x7f62df7fe7e0) 0 + primary-for QWindowStateChangeEvent (0x7f62df7fe770) + +Vtable for QMenubarUpdatedEvent +QMenubarUpdatedEvent::_ZTV20QMenubarUpdatedEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QMenubarUpdatedEvent) +16 QMenubarUpdatedEvent::~QMenubarUpdatedEvent +24 QMenubarUpdatedEvent::~QMenubarUpdatedEvent + +Class QMenubarUpdatedEvent + size=32 align=8 + base size=32 base align=8 +QMenubarUpdatedEvent (0x7f62df7fecb0) 0 + vptr=((& QMenubarUpdatedEvent::_ZTV20QMenubarUpdatedEvent) + 16u) + QEvent (0x7f62df7fed20) 0 + primary-for QMenubarUpdatedEvent (0x7f62df7fecb0) + +Class QTouchEvent::TouchPoint + size=8 align=8 + base size=8 base align=8 +QTouchEvent::TouchPoint (0x7f62df80f7e0) 0 + +Vtable for QTouchEvent +QTouchEvent::_ZTV11QTouchEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTouchEvent) +16 QTouchEvent::~QTouchEvent +24 QTouchEvent::~QTouchEvent + +Class QTouchEvent + size=48 align=8 + base size=48 base align=8 +QTouchEvent (0x7f62df80f690) 0 + vptr=((& QTouchEvent::_ZTV11QTouchEvent) + 16u) + QInputEvent (0x7f62df80f700) 0 + primary-for QTouchEvent (0x7f62df80f690) + QEvent (0x7f62df80f770) 0 + primary-for QInputEvent (0x7f62df80f700) + +Vtable for QGestureEvent +QGestureEvent::_ZTV13QGestureEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QGestureEvent) +16 QGestureEvent::~QGestureEvent +24 QGestureEvent::~QGestureEvent + +Class QGestureEvent + size=24 align=8 + base size=20 base align=8 +QGestureEvent (0x7f62df655d20) 0 + vptr=((& QGestureEvent::_ZTV13QGestureEvent) + 16u) + QEvent (0x7f62df655d90) 0 + primary-for QGestureEvent (0x7f62df655d20) + +Class QFont + size=16 align=8 + base size=12 base align=8 +QFont (0x7f62df65a310) 0 + +Class QPolygon + size=8 align=8 + base size=8 base align=8 +QPolygon (0x7f62df6ac0e0) 0 + QVector (0x7f62df6ac150) 0 + +Class QPolygonF + size=8 align=8 + base size=8 base align=8 +QPolygonF (0x7f62df6ed620) 0 + QVector (0x7f62df6ed690) 0 + +Class QMatrix + size=48 align=8 + base size=48 base align=8 +QMatrix (0x7f62df72f770) 0 + +Class QPainterPath::Element + size=24 align=8 + base size=24 base align=8 +QPainterPath::Element (0x7f62df5708c0) 0 + +Class QPainterPath + size=8 align=8 + base size=8 base align=8 +QPainterPath (0x7f62df570850) 0 + +Class QPainterPathPrivate + size=16 align=8 + base size=16 base align=8 +QPainterPathPrivate (0x7f62df5ca000) 0 + +Class QPainterPathStroker + size=8 align=8 + base size=8 base align=8 +QPainterPathStroker (0x7f62df5caaf0) 0 + +Class QTransform + size=88 align=8 + base size=88 base align=8 +QTransform (0x7f62df636af0) 0 + +Vtable for QPaintDevice +QPaintDevice::_ZTV12QPaintDevice: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QPaintDevice) +16 QPaintDevice::~QPaintDevice +24 QPaintDevice::~QPaintDevice +32 QPaintDevice::devType +40 __cxa_pure_virtual +48 QPaintDevice::metric + +Class QPaintDevice + size=16 align=8 + base size=10 base align=8 +QPaintDevice (0x7f62df4e4150) 0 + vptr=((& QPaintDevice::_ZTV12QPaintDevice) + 16u) + +Class QImageTextKeyLang + size=16 align=8 + base size=16 base align=8 +QImageTextKeyLang (0x7f62df508070) 0 + +Vtable for QImage +QImage::_ZTV6QImage: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QImage) +16 QImage::~QImage +24 QImage::~QImage +32 QImage::devType +40 QImage::paintEngine +48 QImage::metric + +Class QImage + size=24 align=8 + base size=24 base align=8 +QImage (0x7f62df5338c0) 0 + vptr=((& QImage::_ZTV6QImage) + 16u) + QPaintDevice (0x7f62df533930) 0 + primary-for QImage (0x7f62df5338c0) + +Vtable for QPixmap +QPixmap::_ZTV7QPixmap: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QPixmap) +16 QPixmap::~QPixmap +24 QPixmap::~QPixmap +32 QPixmap::devType +40 QPixmap::paintEngine +48 QPixmap::metric + +Class QPixmap + size=24 align=8 + base size=24 base align=8 +QPixmap (0x7f62df357070) 0 + vptr=((& QPixmap::_ZTV7QPixmap) + 16u) + QPaintDevice (0x7f62df3570e0) 0 + primary-for QPixmap (0x7f62df357070) + +Class QBrush + size=8 align=8 + base size=8 base align=8 +QBrush (0x7f62df3b5380) 0 + +Class QBrushData + size=112 align=8 + base size=112 base align=8 +QBrushData (0x7f62df1cfd90) 0 + +Class QGradient + size=64 align=8 + base size=64 base align=8 +QGradient (0x7f62df1e3f50) 0 + +Class QLinearGradient + size=64 align=8 + base size=64 base align=8 +QLinearGradient (0x7f62df225a10) 0 + QGradient (0x7f62df225a80) 0 + +Class QRadialGradient + size=64 align=8 + base size=64 base align=8 +QRadialGradient (0x7f62df225ee0) 0 + QGradient (0x7f62df225f50) 0 + +Class QConicalGradient + size=64 align=8 + base size=64 base align=8 +QConicalGradient (0x7f62df22f4d0) 0 + QGradient (0x7f62df22f540) 0 + +Class QPen + size=8 align=8 + base size=8 base align=8 +QPen (0x7f62df22f850) 0 + +Class QTextOption::Tab + size=16 align=8 + base size=14 base align=8 +QTextOption::Tab (0x7f62df24be00) 0 + +Class QTextOption + size=32 align=8 + base size=32 base align=8 +QTextOption (0x7f62df24bd90) 0 + +Class QTextLength + size=16 align=8 + base size=16 base align=8 +QTextLength (0x7f62df2bc150) 0 + +Class QTextFormat + size=16 align=8 + base size=12 base align=8 +QTextFormat (0x7f62df0d74d0) 0 + +Class QTextCharFormat + size=16 align=8 + base size=12 base align=8 +QTextCharFormat (0x7f62df192540) 0 + QTextFormat (0x7f62df1925b0) 0 + +Class QTextBlockFormat + size=16 align=8 + base size=12 base align=8 +QTextBlockFormat (0x7f62deff01c0) 0 + QTextFormat (0x7f62deff0230) 0 + +Class QTextListFormat + size=16 align=8 + base size=12 base align=8 +QTextListFormat (0x7f62df00f7e0) 0 + QTextFormat (0x7f62df00f850) 0 + +Class QTextImageFormat + size=16 align=8 + base size=12 base align=8 +QTextImageFormat (0x7f62df01bd20) 0 + QTextCharFormat (0x7f62df01bd90) 0 + QTextFormat (0x7f62df01be00) 0 + +Class QTextFrameFormat + size=16 align=8 + base size=12 base align=8 +QTextFrameFormat (0x7f62df02d460) 0 + QTextFormat (0x7f62df02d4d0) 0 + +Class QTextTableFormat + size=16 align=8 + base size=12 base align=8 +QTextTableFormat (0x7f62df063380) 0 + QTextFrameFormat (0x7f62df0633f0) 0 + QTextFormat (0x7f62df063460) 0 + +Class QTextTableCellFormat + size=16 align=8 + base size=12 base align=8 +QTextTableCellFormat (0x7f62df07f230) 0 + QTextCharFormat (0x7f62df07f2a0) 0 + QTextFormat (0x7f62df07f310) 0 + +Class QTextInlineObject + size=16 align=8 + base size=16 base align=8 +QTextInlineObject (0x7f62df093700) 0 + +Class QTextLayout::FormatRange + size=24 align=8 + base size=24 base align=8 +QTextLayout::FormatRange (0x7f62df09ea10) 0 + +Class QTextLayout + size=8 align=8 + base size=8 base align=8 +QTextLayout (0x7f62df09e770) 0 + +Class QTextLine + size=16 align=8 + base size=16 base align=8 +QTextLine (0x7f62df0b7770) 0 + +Vtable for QAbstractUndoItem +QAbstractUndoItem::_ZTV17QAbstractUndoItem: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAbstractUndoItem) +16 __cxa_pure_virtual +24 __cxa_pure_virtual +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QAbstractUndoItem + size=8 align=8 + base size=8 base align=8 +QAbstractUndoItem (0x7f62deeec070) 0 nearly-empty + vptr=((& QAbstractUndoItem::_ZTV17QAbstractUndoItem) + 16u) + +Vtable for QTextDocument +QTextDocument::_ZTV13QTextDocument: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QTextDocument) +16 QTextDocument::metaObject +24 QTextDocument::qt_metacast +32 QTextDocument::qt_metacall +40 QTextDocument::~QTextDocument +48 QTextDocument::~QTextDocument +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTextDocument::clear +120 QTextDocument::createObject +128 QTextDocument::loadResource + +Class QTextDocument + size=16 align=8 + base size=16 base align=8 +QTextDocument (0x7f62deeecaf0) 0 + vptr=((& QTextDocument::_ZTV13QTextDocument) + 16u) + QObject (0x7f62deeecb60) 0 + primary-for QTextDocument (0x7f62deeecaf0) + +Class QTextCursor + size=8 align=8 + base size=8 base align=8 +QTextCursor (0x7f62def4ca80) 0 + +Class QPalette + size=16 align=8 + base size=12 base align=8 +QPalette (0x7f62def5ff50) 0 + +Class QColorGroup + size=16 align=8 + base size=12 base align=8 +QColorGroup (0x7f62dedcf850) 0 + QPalette (0x7f62dedcf8c0) 0 + +Class QAbstractTextDocumentLayout::Selection + size=24 align=8 + base size=24 base align=8 +QAbstractTextDocumentLayout::Selection (0x7f62dee07d90) 0 + +Class QAbstractTextDocumentLayout::PaintContext + size=64 align=8 + base size=64 base align=8 +QAbstractTextDocumentLayout::PaintContext (0x7f62dee07e00) 0 + +Vtable for QAbstractTextDocumentLayout +QAbstractTextDocumentLayout::_ZTV27QAbstractTextDocumentLayout: 24u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QAbstractTextDocumentLayout) +16 QAbstractTextDocumentLayout::metaObject +24 QAbstractTextDocumentLayout::qt_metacast +32 QAbstractTextDocumentLayout::qt_metacall +40 QAbstractTextDocumentLayout::~QAbstractTextDocumentLayout +48 QAbstractTextDocumentLayout::~QAbstractTextDocumentLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 QAbstractTextDocumentLayout::resizeInlineObject +176 QAbstractTextDocumentLayout::positionInlineObject +184 QAbstractTextDocumentLayout::drawInlineObject + +Class QAbstractTextDocumentLayout + size=16 align=8 + base size=16 base align=8 +QAbstractTextDocumentLayout (0x7f62dee07b60) 0 + vptr=((& QAbstractTextDocumentLayout::_ZTV27QAbstractTextDocumentLayout) + 16u) + QObject (0x7f62dee07bd0) 0 + primary-for QAbstractTextDocumentLayout (0x7f62dee07b60) + +Vtable for QTextObjectInterface +QTextObjectInterface::_ZTV20QTextObjectInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QTextObjectInterface) +16 QTextObjectInterface::~QTextObjectInterface +24 QTextObjectInterface::~QTextObjectInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QTextObjectInterface + size=8 align=8 + base size=8 base align=8 +QTextObjectInterface (0x7f62dee4e4d0) 0 nearly-empty + vptr=((& QTextObjectInterface::_ZTV20QTextObjectInterface) + 16u) + +Class QFontDatabase + size=8 align=8 + base size=8 base align=8 +QFontDatabase (0x7f62dee5a7e0) 0 + +Class QFontInfo + size=8 align=8 + base size=8 base align=8 +QFontInfo (0x7f62dee6b7e0) 0 + +Class QFontMetrics + size=8 align=8 + base size=8 base align=8 +QFontMetrics (0x7f62dee7d310) 0 + +Class QFontMetricsF + size=8 align=8 + base size=8 base align=8 +QFontMetricsF (0x7f62dee93770) 0 + +Vtable for QTextObject +QTextObject::_ZTV11QTextObject: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTextObject) +16 QTextObject::metaObject +24 QTextObject::qt_metacast +32 QTextObject::qt_metacall +40 QTextObject::~QTextObject +48 QTextObject::~QTextObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTextObject + size=16 align=8 + base size=16 base align=8 +QTextObject (0x7f62deea7690) 0 + vptr=((& QTextObject::_ZTV11QTextObject) + 16u) + QObject (0x7f62deea7700) 0 + primary-for QTextObject (0x7f62deea7690) + +Vtable for QTextBlockGroup +QTextBlockGroup::_ZTV15QTextBlockGroup: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QTextBlockGroup) +16 QTextBlockGroup::metaObject +24 QTextBlockGroup::qt_metacast +32 QTextBlockGroup::qt_metacall +40 QTextBlockGroup::~QTextBlockGroup +48 QTextBlockGroup::~QTextBlockGroup +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTextBlockGroup::blockInserted +120 QTextBlockGroup::blockRemoved +128 QTextBlockGroup::blockFormatChanged + +Class QTextBlockGroup + size=16 align=8 + base size=16 base align=8 +QTextBlockGroup (0x7f62deeb8ee0) 0 + vptr=((& QTextBlockGroup::_ZTV15QTextBlockGroup) + 16u) + QTextObject (0x7f62deeb8f50) 0 + primary-for QTextBlockGroup (0x7f62deeb8ee0) + QObject (0x7f62deec1000) 0 + primary-for QTextObject (0x7f62deeb8f50) + +Vtable for QTextFrameLayoutData +QTextFrameLayoutData::_ZTV20QTextFrameLayoutData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QTextFrameLayoutData) +16 QTextFrameLayoutData::~QTextFrameLayoutData +24 QTextFrameLayoutData::~QTextFrameLayoutData + +Class QTextFrameLayoutData + size=8 align=8 + base size=8 base align=8 +QTextFrameLayoutData (0x7f62decc57e0) 0 nearly-empty + vptr=((& QTextFrameLayoutData::_ZTV20QTextFrameLayoutData) + 16u) + +Class QTextFrame::iterator + size=32 align=8 + base size=28 base align=8 +QTextFrame::iterator (0x7f62decd0230) 0 + +Vtable for QTextFrame +QTextFrame::_ZTV10QTextFrame: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextFrame) +16 QTextFrame::metaObject +24 QTextFrame::qt_metacast +32 QTextFrame::qt_metacall +40 QTextFrame::~QTextFrame +48 QTextFrame::~QTextFrame +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTextFrame + size=16 align=8 + base size=16 base align=8 +QTextFrame (0x7f62decc5930) 0 + vptr=((& QTextFrame::_ZTV10QTextFrame) + 16u) + QTextObject (0x7f62decc59a0) 0 + primary-for QTextFrame (0x7f62decc5930) + QObject (0x7f62decc5a10) 0 + primary-for QTextObject (0x7f62decc59a0) + +Vtable for QTextBlockUserData +QTextBlockUserData::_ZTV18QTextBlockUserData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QTextBlockUserData) +16 QTextBlockUserData::~QTextBlockUserData +24 QTextBlockUserData::~QTextBlockUserData + +Class QTextBlockUserData + size=8 align=8 + base size=8 base align=8 +QTextBlockUserData (0x7f62ded04380) 0 nearly-empty + vptr=((& QTextBlockUserData::_ZTV18QTextBlockUserData) + 16u) + +Class QTextBlock::iterator + size=24 align=8 + base size=20 base align=8 +QTextBlock::iterator (0x7f62ded04cb0) 0 + +Class QTextBlock + size=16 align=8 + base size=12 base align=8 +QTextBlock (0x7f62ded044d0) 0 + +Class QTextFragment + size=16 align=8 + base size=16 base align=8 +QTextFragment (0x7f62ded3de00) 0 + +Vtable for QSyntaxHighlighter +QSyntaxHighlighter::_ZTV18QSyntaxHighlighter: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QSyntaxHighlighter) +16 QSyntaxHighlighter::metaObject +24 QSyntaxHighlighter::qt_metacast +32 QSyntaxHighlighter::qt_metacall +40 QSyntaxHighlighter::~QSyntaxHighlighter +48 QSyntaxHighlighter::~QSyntaxHighlighter +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual + +Class QSyntaxHighlighter + size=16 align=8 + base size=16 base align=8 +QSyntaxHighlighter (0x7f62ded66000) 0 + vptr=((& QSyntaxHighlighter::_ZTV18QSyntaxHighlighter) + 16u) + QObject (0x7f62ded66070) 0 + primary-for QSyntaxHighlighter (0x7f62ded66000) + +Class QTextDocumentFragment + size=8 align=8 + base size=8 base align=8 +QTextDocumentFragment (0x7f62ded7e9a0) 0 + +Class QTextDocumentWriter + size=8 align=8 + base size=8 base align=8 +QTextDocumentWriter (0x7f62ded853f0) 0 + +Vtable for QTextList +QTextList::_ZTV9QTextList: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTextList) +16 QTextList::metaObject +24 QTextList::qt_metacast +32 QTextList::qt_metacall +40 QTextList::~QTextList +48 QTextList::~QTextList +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTextBlockGroup::blockInserted +120 QTextBlockGroup::blockRemoved +128 QTextBlockGroup::blockFormatChanged + +Class QTextList + size=16 align=8 + base size=16 base align=8 +QTextList (0x7f62ded85a80) 0 + vptr=((& QTextList::_ZTV9QTextList) + 16u) + QTextBlockGroup (0x7f62ded85af0) 0 + primary-for QTextList (0x7f62ded85a80) + QTextObject (0x7f62ded85b60) 0 + primary-for QTextBlockGroup (0x7f62ded85af0) + QObject (0x7f62ded85bd0) 0 + primary-for QTextObject (0x7f62ded85b60) + +Class QTextTableCell + size=16 align=8 + base size=12 base align=8 +QTextTableCell (0x7f62dedb0930) 0 + +Vtable for QTextTable +QTextTable::_ZTV10QTextTable: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextTable) +16 QTextTable::metaObject +24 QTextTable::qt_metacast +32 QTextTable::qt_metacall +40 QTextTable::~QTextTable +48 QTextTable::~QTextTable +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTextTable + size=16 align=8 + base size=16 base align=8 +QTextTable (0x7f62debc7a80) 0 + vptr=((& QTextTable::_ZTV10QTextTable) + 16u) + QTextFrame (0x7f62debc7af0) 0 + primary-for QTextTable (0x7f62debc7a80) + QTextObject (0x7f62debc7b60) 0 + primary-for QTextFrame (0x7f62debc7af0) + QObject (0x7f62debc7bd0) 0 + primary-for QTextObject (0x7f62debc7b60) + +Vtable for QCompleter +QCompleter::_ZTV10QCompleter: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QCompleter) +16 QCompleter::metaObject +24 QCompleter::qt_metacast +32 QCompleter::qt_metacall +40 QCompleter::~QCompleter +48 QCompleter::~QCompleter +56 QCompleter::event +64 QCompleter::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCompleter::pathFromIndex +120 QCompleter::splitPath + +Class QCompleter + size=16 align=8 + base size=16 base align=8 +QCompleter (0x7f62debed2a0) 0 + vptr=((& QCompleter::_ZTV10QCompleter) + 16u) + QObject (0x7f62debed310) 0 + primary-for QCompleter (0x7f62debed2a0) + +Class QDesktopServices + size=1 align=1 + base size=0 base align=1 +QDesktopServices (0x7f62dec12230) 0 empty + +Class QIcon + size=8 align=8 + base size=8 base align=8 +QIcon (0x7f62dec12380) 0 + +Vtable for QSystemTrayIcon +QSystemTrayIcon::_ZTV15QSystemTrayIcon: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSystemTrayIcon) +16 QSystemTrayIcon::metaObject +24 QSystemTrayIcon::qt_metacast +32 QSystemTrayIcon::qt_metacall +40 QSystemTrayIcon::~QSystemTrayIcon +48 QSystemTrayIcon::~QSystemTrayIcon +56 QSystemTrayIcon::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSystemTrayIcon + size=16 align=8 + base size=16 base align=8 +QSystemTrayIcon (0x7f62dec39f50) 0 + vptr=((& QSystemTrayIcon::_ZTV15QSystemTrayIcon) + 16u) + QObject (0x7f62dec4b000) 0 + primary-for QSystemTrayIcon (0x7f62dec39f50) + +Vtable for QUndoGroup +QUndoGroup::_ZTV10QUndoGroup: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QUndoGroup) +16 QUndoGroup::metaObject +24 QUndoGroup::qt_metacast +32 QUndoGroup::qt_metacall +40 QUndoGroup::~QUndoGroup +48 QUndoGroup::~QUndoGroup +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QUndoGroup + size=16 align=8 + base size=16 base align=8 +QUndoGroup (0x7f62dec6a1c0) 0 + vptr=((& QUndoGroup::_ZTV10QUndoGroup) + 16u) + QObject (0x7f62dec6a230) 0 + primary-for QUndoGroup (0x7f62dec6a1c0) + +Vtable for QUndoCommand +QUndoCommand::_ZTV12QUndoCommand: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QUndoCommand) +16 QUndoCommand::~QUndoCommand +24 QUndoCommand::~QUndoCommand +32 QUndoCommand::undo +40 QUndoCommand::redo +48 QUndoCommand::id +56 QUndoCommand::mergeWith + +Class QUndoCommand + size=16 align=8 + base size=16 base align=8 +QUndoCommand (0x7f62dec7dd20) 0 + vptr=((& QUndoCommand::_ZTV12QUndoCommand) + 16u) + +Vtable for QUndoStack +QUndoStack::_ZTV10QUndoStack: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QUndoStack) +16 QUndoStack::metaObject +24 QUndoStack::qt_metacast +32 QUndoStack::qt_metacall +40 QUndoStack::~QUndoStack +48 QUndoStack::~QUndoStack +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QUndoStack + size=16 align=8 + base size=16 base align=8 +QUndoStack (0x7f62dec86690) 0 + vptr=((& QUndoStack::_ZTV10QUndoStack) + 16u) + QObject (0x7f62dec86700) 0 + primary-for QUndoStack (0x7f62dec86690) + +Class QSizePolicy + size=4 align=4 + base size=4 base align=4 +QSizePolicy (0x7f62decac1c0) 0 + +Class QCursor + size=8 align=8 + base size=8 base align=8 +QCursor (0x7f62deb7a1c0) 0 + +Class QWidgetData + size=88 align=8 + base size=88 base align=8 +QWidgetData (0x7f62deb7a9a0) 0 + +Vtable for QWidget +QWidget::_ZTV7QWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QWidget) +16 QWidget::metaObject +24 QWidget::qt_metacast +32 QWidget::qt_metacall +40 QWidget::~QWidget +48 QWidget::~QWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI7QWidget) +464 QWidget::_ZThn16_N7QWidgetD1Ev +472 QWidget::_ZThn16_N7QWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWidget + size=40 align=8 + base size=40 base align=8 +QWidget (0x7f62deb73a00) 0 + vptr=((& QWidget::_ZTV7QWidget) + 16u) + QObject (0x7f62deb7aa10) 0 + primary-for QWidget (0x7f62deb73a00) + QPaintDevice (0x7f62deb7aa80) 16 + vptr=((& QWidget::_ZTV7QWidget) + 464u) + +Vtable for QFrame +QFrame::_ZTV6QFrame: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QFrame) +16 QFrame::metaObject +24 QFrame::qt_metacast +32 QFrame::qt_metacall +40 QFrame::~QFrame +48 QFrame::~QFrame +56 QFrame::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QFrame::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFrame::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI6QFrame) +464 QFrame::_ZThn16_N6QFrameD1Ev +472 QFrame::_ZThn16_N6QFrameD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFrame + size=40 align=8 + base size=40 base align=8 +QFrame (0x7f62de902a80) 0 + vptr=((& QFrame::_ZTV6QFrame) + 16u) + QWidget (0x7f62de905680) 0 + primary-for QFrame (0x7f62de902a80) + QObject (0x7f62de902af0) 0 + primary-for QWidget (0x7f62de905680) + QPaintDevice (0x7f62de902b60) 16 + vptr=((& QFrame::_ZTV6QFrame) + 464u) + +Vtable for QAbstractScrollArea +QAbstractScrollArea::_ZTV19QAbstractScrollArea: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractScrollArea) +16 QAbstractScrollArea::metaObject +24 QAbstractScrollArea::qt_metacast +32 QAbstractScrollArea::qt_metacall +40 QAbstractScrollArea::~QAbstractScrollArea +48 QAbstractScrollArea::~QAbstractScrollArea +56 QAbstractScrollArea::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractScrollArea::mousePressEvent +168 QAbstractScrollArea::mouseReleaseEvent +176 QAbstractScrollArea::mouseDoubleClickEvent +184 QAbstractScrollArea::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractScrollArea::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractScrollArea::paintEvent +256 QWidget::moveEvent +264 QAbstractScrollArea::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractScrollArea::dragEnterEvent +312 QAbstractScrollArea::dragMoveEvent +320 QAbstractScrollArea::dragLeaveEvent +328 QAbstractScrollArea::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QAbstractScrollArea::scrollContentsBy +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI19QAbstractScrollArea) +480 QAbstractScrollArea::_ZThn16_N19QAbstractScrollAreaD1Ev +488 QAbstractScrollArea::_ZThn16_N19QAbstractScrollAreaD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractScrollArea + size=40 align=8 + base size=40 base align=8 +QAbstractScrollArea (0x7f62de92f0e0) 0 + vptr=((& QAbstractScrollArea::_ZTV19QAbstractScrollArea) + 16u) + QFrame (0x7f62de92f150) 0 + primary-for QAbstractScrollArea (0x7f62de92f0e0) + QWidget (0x7f62de913a80) 0 + primary-for QFrame (0x7f62de92f150) + QObject (0x7f62de92f1c0) 0 + primary-for QWidget (0x7f62de913a80) + QPaintDevice (0x7f62de92f230) 16 + vptr=((& QAbstractScrollArea::_ZTV19QAbstractScrollArea) + 480u) + +Class QItemSelectionRange + size=16 align=8 + base size=16 base align=8 +QItemSelectionRange (0x7f62de955000) 0 + +Vtable for QItemSelectionModel +QItemSelectionModel::_ZTV19QItemSelectionModel: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QItemSelectionModel) +16 QItemSelectionModel::metaObject +24 QItemSelectionModel::qt_metacast +32 QItemSelectionModel::qt_metacall +40 QItemSelectionModel::~QItemSelectionModel +48 QItemSelectionModel::~QItemSelectionModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QItemSelectionModel::select +120 QItemSelectionModel::select +128 QItemSelectionModel::clear +136 QItemSelectionModel::reset + +Class QItemSelectionModel + size=16 align=8 + base size=16 base align=8 +QItemSelectionModel (0x7f62de7bf4d0) 0 + vptr=((& QItemSelectionModel::_ZTV19QItemSelectionModel) + 16u) + QObject (0x7f62de7bf540) 0 + primary-for QItemSelectionModel (0x7f62de7bf4d0) + +Class QItemSelection + size=8 align=8 + base size=8 base align=8 +QItemSelection (0x7f62de7ff9a0) 0 + QList (0x7f62de7ffa10) 0 + +Vtable for QValidator +QValidator::_ZTV10QValidator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QValidator) +16 QValidator::metaObject +24 QValidator::qt_metacast +32 QValidator::qt_metacall +40 QValidator::~QValidator +48 QValidator::~QValidator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 QValidator::fixup + +Class QValidator + size=16 align=8 + base size=16 base align=8 +QValidator (0x7f62de83e2a0) 0 + vptr=((& QValidator::_ZTV10QValidator) + 16u) + QObject (0x7f62de83e310) 0 + primary-for QValidator (0x7f62de83e2a0) + +Vtable for QIntValidator +QIntValidator::_ZTV13QIntValidator: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QIntValidator) +16 QIntValidator::metaObject +24 QIntValidator::qt_metacast +32 QIntValidator::qt_metacall +40 QIntValidator::~QIntValidator +48 QIntValidator::~QIntValidator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QIntValidator::validate +120 QValidator::fixup +128 QIntValidator::setRange + +Class QIntValidator + size=24 align=8 + base size=24 base align=8 +QIntValidator (0x7f62de8590e0) 0 + vptr=((& QIntValidator::_ZTV13QIntValidator) + 16u) + QValidator (0x7f62de859150) 0 + primary-for QIntValidator (0x7f62de8590e0) + QObject (0x7f62de8591c0) 0 + primary-for QValidator (0x7f62de859150) + +Vtable for QDoubleValidator +QDoubleValidator::_ZTV16QDoubleValidator: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QDoubleValidator) +16 QDoubleValidator::metaObject +24 QDoubleValidator::qt_metacast +32 QDoubleValidator::qt_metacall +40 QDoubleValidator::~QDoubleValidator +48 QDoubleValidator::~QDoubleValidator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QDoubleValidator::validate +120 QValidator::fixup +128 QDoubleValidator::setRange + +Class QDoubleValidator + size=40 align=8 + base size=36 base align=8 +QDoubleValidator (0x7f62de870070) 0 + vptr=((& QDoubleValidator::_ZTV16QDoubleValidator) + 16u) + QValidator (0x7f62de8700e0) 0 + primary-for QDoubleValidator (0x7f62de870070) + QObject (0x7f62de870150) 0 + primary-for QValidator (0x7f62de8700e0) + +Vtable for QRegExpValidator +QRegExpValidator::_ZTV16QRegExpValidator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QRegExpValidator) +16 QRegExpValidator::metaObject +24 QRegExpValidator::qt_metacast +32 QRegExpValidator::qt_metacall +40 QRegExpValidator::~QRegExpValidator +48 QRegExpValidator::~QRegExpValidator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QRegExpValidator::validate +120 QValidator::fixup + +Class QRegExpValidator + size=24 align=8 + base size=24 base align=8 +QRegExpValidator (0x7f62de88a930) 0 + vptr=((& QRegExpValidator::_ZTV16QRegExpValidator) + 16u) + QValidator (0x7f62de88a9a0) 0 + primary-for QRegExpValidator (0x7f62de88a930) + QObject (0x7f62de88aa10) 0 + primary-for QValidator (0x7f62de88a9a0) + +Vtable for QAbstractSpinBox +QAbstractSpinBox::_ZTV16QAbstractSpinBox: 68u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QAbstractSpinBox) +16 QAbstractSpinBox::metaObject +24 QAbstractSpinBox::qt_metacast +32 QAbstractSpinBox::qt_metacall +40 QAbstractSpinBox::~QAbstractSpinBox +48 QAbstractSpinBox::~QAbstractSpinBox +56 QAbstractSpinBox::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractSpinBox::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractSpinBox::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QAbstractSpinBox::wheelEvent +200 QAbstractSpinBox::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QAbstractSpinBox::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractSpinBox::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QAbstractSpinBox::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractSpinBox::validate +456 QAbstractSpinBox::fixup +464 QAbstractSpinBox::stepBy +472 QAbstractSpinBox::clear +480 QAbstractSpinBox::stepEnabled +488 (int (*)(...))-0x00000000000000010 +496 (int (*)(...))(& _ZTI16QAbstractSpinBox) +504 QAbstractSpinBox::_ZThn16_N16QAbstractSpinBoxD1Ev +512 QAbstractSpinBox::_ZThn16_N16QAbstractSpinBoxD0Ev +520 QWidget::_ZThn16_NK7QWidget7devTypeEv +528 QWidget::_ZThn16_NK7QWidget11paintEngineEv +536 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractSpinBox + size=40 align=8 + base size=40 base align=8 +QAbstractSpinBox (0x7f62de8a25b0) 0 + vptr=((& QAbstractSpinBox::_ZTV16QAbstractSpinBox) + 16u) + QWidget (0x7f62de887e80) 0 + primary-for QAbstractSpinBox (0x7f62de8a25b0) + QObject (0x7f62de8a2620) 0 + primary-for QWidget (0x7f62de887e80) + QPaintDevice (0x7f62de8a2690) 16 + vptr=((& QAbstractSpinBox::_ZTV16QAbstractSpinBox) + 504u) + +Vtable for QAbstractSlider +QAbstractSlider::_ZTV15QAbstractSlider: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QAbstractSlider) +16 QAbstractSlider::metaObject +24 QAbstractSlider::qt_metacast +32 QAbstractSlider::qt_metacall +40 QAbstractSlider::~QAbstractSlider +48 QAbstractSlider::~QAbstractSlider +56 QAbstractSlider::event +64 QObject::eventFilter +72 QAbstractSlider::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QAbstractSlider::wheelEvent +200 QAbstractSlider::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractSlider::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractSlider::sliderChange +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI15QAbstractSlider) +472 QAbstractSlider::_ZThn16_N15QAbstractSliderD1Ev +480 QAbstractSlider::_ZThn16_N15QAbstractSliderD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractSlider + size=40 align=8 + base size=40 base align=8 +QAbstractSlider (0x7f62de6ff5b0) 0 + vptr=((& QAbstractSlider::_ZTV15QAbstractSlider) + 16u) + QWidget (0x7f62de700200) 0 + primary-for QAbstractSlider (0x7f62de6ff5b0) + QObject (0x7f62de6ff620) 0 + primary-for QWidget (0x7f62de700200) + QPaintDevice (0x7f62de6ff690) 16 + vptr=((& QAbstractSlider::_ZTV15QAbstractSlider) + 472u) + +Vtable for QSlider +QSlider::_ZTV7QSlider: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QSlider) +16 QSlider::metaObject +24 QSlider::qt_metacast +32 QSlider::qt_metacall +40 QSlider::~QSlider +48 QSlider::~QSlider +56 QSlider::event +64 QObject::eventFilter +72 QAbstractSlider::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QSlider::sizeHint +136 QSlider::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QSlider::mousePressEvent +168 QSlider::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QSlider::mouseMoveEvent +192 QAbstractSlider::wheelEvent +200 QAbstractSlider::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QSlider::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractSlider::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractSlider::sliderChange +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI7QSlider) +472 QSlider::_ZThn16_N7QSliderD1Ev +480 QSlider::_ZThn16_N7QSliderD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSlider + size=40 align=8 + base size=40 base align=8 +QSlider (0x7f62de7363f0) 0 + vptr=((& QSlider::_ZTV7QSlider) + 16u) + QAbstractSlider (0x7f62de736460) 0 + primary-for QSlider (0x7f62de7363f0) + QWidget (0x7f62de735300) 0 + primary-for QAbstractSlider (0x7f62de736460) + QObject (0x7f62de7364d0) 0 + primary-for QWidget (0x7f62de735300) + QPaintDevice (0x7f62de736540) 16 + vptr=((& QSlider::_ZTV7QSlider) + 472u) + +Vtable for QStyle +QStyle::_ZTV6QStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QStyle) +16 QStyle::metaObject +24 QStyle::qt_metacast +32 QStyle::qt_metacall +40 QStyle::~QStyle +48 QStyle::~QStyle +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QStyle::polish +120 QStyle::unpolish +128 QStyle::polish +136 QStyle::unpolish +144 QStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QStyle::standardPalette +192 __cxa_pure_virtual +200 __cxa_pure_virtual +208 __cxa_pure_virtual +216 __cxa_pure_virtual +224 __cxa_pure_virtual +232 __cxa_pure_virtual +240 __cxa_pure_virtual +248 __cxa_pure_virtual +256 __cxa_pure_virtual +264 __cxa_pure_virtual +272 __cxa_pure_virtual + +Class QStyle + size=16 align=8 + base size=16 base align=8 +QStyle (0x7f62de75c9a0) 0 + vptr=((& QStyle::_ZTV6QStyle) + 16u) + QObject (0x7f62de75ca10) 0 + primary-for QStyle (0x7f62de75c9a0) + +Vtable for QTabBar +QTabBar::_ZTV7QTabBar: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QTabBar) +16 QTabBar::metaObject +24 QTabBar::qt_metacast +32 QTabBar::qt_metacall +40 QTabBar::~QTabBar +48 QTabBar::~QTabBar +56 QTabBar::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QTabBar::sizeHint +136 QTabBar::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTabBar::mousePressEvent +168 QTabBar::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QTabBar::mouseMoveEvent +192 QTabBar::wheelEvent +200 QTabBar::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTabBar::paintEvent +256 QWidget::moveEvent +264 QTabBar::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QTabBar::showEvent +344 QTabBar::hideEvent +352 QWidget::x11Event +360 QTabBar::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QTabBar::tabSizeHint +456 QTabBar::tabInserted +464 QTabBar::tabRemoved +472 QTabBar::tabLayoutChange +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI7QTabBar) +496 QTabBar::_ZThn16_N7QTabBarD1Ev +504 QTabBar::_ZThn16_N7QTabBarD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTabBar + size=40 align=8 + base size=40 base align=8 +QTabBar (0x7f62de5f7850) 0 + vptr=((& QTabBar::_ZTV7QTabBar) + 16u) + QWidget (0x7f62de5f8300) 0 + primary-for QTabBar (0x7f62de5f7850) + QObject (0x7f62de5f78c0) 0 + primary-for QWidget (0x7f62de5f8300) + QPaintDevice (0x7f62de5f7930) 16 + vptr=((& QTabBar::_ZTV7QTabBar) + 496u) + +Vtable for QTabWidget +QTabWidget::_ZTV10QTabWidget: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTabWidget) +16 QTabWidget::metaObject +24 QTabWidget::qt_metacast +32 QTabWidget::qt_metacall +40 QTabWidget::~QTabWidget +48 QTabWidget::~QTabWidget +56 QTabWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QTabWidget::sizeHint +136 QTabWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QTabWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTabWidget::paintEvent +256 QWidget::moveEvent +264 QTabWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QTabWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QTabWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QTabWidget::tabInserted +456 QTabWidget::tabRemoved +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI10QTabWidget) +480 QTabWidget::_ZThn16_N10QTabWidgetD1Ev +488 QTabWidget::_ZThn16_N10QTabWidgetD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTabWidget + size=40 align=8 + base size=40 base align=8 +QTabWidget (0x7f62de639e70) 0 + vptr=((& QTabWidget::_ZTV10QTabWidget) + 16u) + QWidget (0x7f62de635700) 0 + primary-for QTabWidget (0x7f62de639e70) + QObject (0x7f62de639ee0) 0 + primary-for QWidget (0x7f62de635700) + QPaintDevice (0x7f62de639f50) 16 + vptr=((& QTabWidget::_ZTV10QTabWidget) + 480u) + +Vtable for QRubberBand +QRubberBand::_ZTV11QRubberBand: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QRubberBand) +16 QRubberBand::metaObject +24 QRubberBand::qt_metacast +32 QRubberBand::qt_metacall +40 QRubberBand::~QRubberBand +48 QRubberBand::~QRubberBand +56 QRubberBand::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QRubberBand::paintEvent +256 QRubberBand::moveEvent +264 QRubberBand::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QRubberBand::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QRubberBand::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI11QRubberBand) +464 QRubberBand::_ZThn16_N11QRubberBandD1Ev +472 QRubberBand::_ZThn16_N11QRubberBandD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QRubberBand + size=40 align=8 + base size=40 base align=8 +QRubberBand (0x7f62de68d850) 0 + vptr=((& QRubberBand::_ZTV11QRubberBand) + 16u) + QWidget (0x7f62de68b880) 0 + primary-for QRubberBand (0x7f62de68d850) + QObject (0x7f62de68d8c0) 0 + primary-for QWidget (0x7f62de68b880) + QPaintDevice (0x7f62de68d930) 16 + vptr=((& QRubberBand::_ZTV11QRubberBand) + 464u) + +Class QStyleOption + size=56 align=8 + base size=56 base align=8 +QStyleOption (0x7f62de4b1b60) 0 + +Class QStyleOptionFocusRect + size=72 align=8 + base size=72 base align=8 +QStyleOptionFocusRect (0x7f62de4bf8c0) 0 + QStyleOption (0x7f62de4bf930) 0 + +Class QStyleOptionFrame + size=64 align=8 + base size=64 base align=8 +QStyleOptionFrame (0x7f62de4c98c0) 0 + QStyleOption (0x7f62de4c9930) 0 + +Class QStyleOptionFrameV2 + size=72 align=8 + base size=68 base align=8 +QStyleOptionFrameV2 (0x7f62de4d8850) 0 + QStyleOptionFrame (0x7f62de4d88c0) 0 + QStyleOption (0x7f62de4d8930) 0 + +Class QStyleOptionFrameV3 + size=72 align=8 + base size=72 base align=8 +QStyleOptionFrameV3 (0x7f62de51e150) 0 + QStyleOptionFrameV2 (0x7f62de51e1c0) 0 + QStyleOptionFrame (0x7f62de51e230) 0 + QStyleOption (0x7f62de51e2a0) 0 + +Class QStyleOptionTabWidgetFrame + size=96 align=8 + base size=92 base align=8 +QStyleOptionTabWidgetFrame (0x7f62de52ba10) 0 + QStyleOption (0x7f62de52ba80) 0 + +Class QStyleOptionTabWidgetFrameV2 + size=128 align=8 + base size=124 base align=8 +QStyleOptionTabWidgetFrameV2 (0x7f62de5401c0) 0 + QStyleOptionTabWidgetFrame (0x7f62de540230) 0 + QStyleOption (0x7f62de5402a0) 0 + +Class QStyleOptionTabBarBase + size=96 align=8 + base size=92 base align=8 +QStyleOptionTabBarBase (0x7f62de548af0) 0 + QStyleOption (0x7f62de548b60) 0 + +Class QStyleOptionTabBarBaseV2 + size=96 align=8 + base size=93 base align=8 +QStyleOptionTabBarBaseV2 (0x7f62de555ee0) 0 + QStyleOptionTabBarBase (0x7f62de555f50) 0 + QStyleOption (0x7f62de555310) 0 + +Class QStyleOptionHeader + size=112 align=8 + base size=108 base align=8 +QStyleOptionHeader (0x7f62de56a540) 0 + QStyleOption (0x7f62de56a5b0) 0 + +Class QStyleOptionButton + size=88 align=8 + base size=88 base align=8 +QStyleOptionButton (0x7f62de583700) 0 + QStyleOption (0x7f62de583770) 0 + +Class QStyleOptionTab + size=96 align=8 + base size=96 base align=8 +QStyleOptionTab (0x7f62de3d20e0) 0 + QStyleOption (0x7f62de3d2150) 0 + +Class QStyleOptionTabV2 + size=104 align=8 + base size=104 base align=8 +QStyleOptionTabV2 (0x7f62de41e070) 0 + QStyleOptionTab (0x7f62de41e0e0) 0 + QStyleOption (0x7f62de41e150) 0 + +Class QStyleOptionTabV3 + size=128 align=8 + base size=124 base align=8 +QStyleOptionTabV3 (0x7f62de429a80) 0 + QStyleOptionTabV2 (0x7f62de429af0) 0 + QStyleOptionTab (0x7f62de429b60) 0 + QStyleOption (0x7f62de429bd0) 0 + +Class QStyleOptionToolBar + size=80 align=8 + base size=80 base align=8 +QStyleOptionToolBar (0x7f62de4480e0) 0 + QStyleOption (0x7f62de448150) 0 + +Class QStyleOptionProgressBar + size=88 align=8 + base size=85 base align=8 +QStyleOptionProgressBar (0x7f62de47b8c0) 0 + QStyleOption (0x7f62de47b930) 0 + +Class QStyleOptionProgressBarV2 + size=96 align=8 + base size=94 base align=8 +QStyleOptionProgressBarV2 (0x7f62de2a4070) 0 + QStyleOptionProgressBar (0x7f62de2a40e0) 0 + QStyleOption (0x7f62de2a4150) 0 + +Class QStyleOptionMenuItem + size=128 align=8 + base size=128 base align=8 +QStyleOptionMenuItem (0x7f62de2a4930) 0 + QStyleOption (0x7f62de2a49a0) 0 + +Class QStyleOptionQ3ListViewItem + size=80 align=8 + base size=76 base align=8 +QStyleOptionQ3ListViewItem (0x7f62de2bdb60) 0 + QStyleOption (0x7f62de2bdbd0) 0 + +Class QStyleOptionQ3DockWindow + size=64 align=8 + base size=58 base align=8 +QStyleOptionQ3DockWindow (0x7f62de30c000) 0 + QStyleOption (0x7f62de30c070) 0 + +Class QStyleOptionDockWidget + size=72 align=8 + base size=67 base align=8 +QStyleOptionDockWidget (0x7f62de30c690) 0 + QStyleOption (0x7f62de318000) 0 + +Class QStyleOptionDockWidgetV2 + size=72 align=8 + base size=68 base align=8 +QStyleOptionDockWidgetV2 (0x7f62de326380) 0 + QStyleOptionDockWidget (0x7f62de3263f0) 0 + QStyleOption (0x7f62de326460) 0 + +Class QStyleOptionViewItem + size=104 align=8 + base size=97 base align=8 +QStyleOptionViewItem (0x7f62de32eb60) 0 + QStyleOption (0x7f62de32ebd0) 0 + +Class QStyleOptionViewItemV2 + size=104 align=8 + base size=104 base align=8 +QStyleOptionViewItemV2 (0x7f62de348700) 0 + QStyleOptionViewItem (0x7f62de348770) 0 + QStyleOption (0x7f62de3487e0) 0 + +Class QStyleOptionViewItemV3 + size=120 align=8 + base size=120 base align=8 +QStyleOptionViewItemV3 (0x7f62de395150) 0 + QStyleOptionViewItemV2 (0x7f62de3951c0) 0 + QStyleOptionViewItem (0x7f62de395230) 0 + QStyleOption (0x7f62de3952a0) 0 + +Class QStyleOptionViewItemV4 + size=184 align=8 + base size=184 base align=8 +QStyleOptionViewItemV4 (0x7f62de39fa10) 0 + QStyleOptionViewItemV3 (0x7f62de39fa80) 0 + QStyleOptionViewItemV2 (0x7f62de39faf0) 0 + QStyleOptionViewItem (0x7f62de39fb60) 0 + QStyleOption (0x7f62de39fbd0) 0 + +Class QStyleOptionToolBox + size=72 align=8 + base size=72 base align=8 +QStyleOptionToolBox (0x7f62de1c1150) 0 + QStyleOption (0x7f62de1c11c0) 0 + +Class QStyleOptionToolBoxV2 + size=80 align=8 + base size=80 base align=8 +QStyleOptionToolBoxV2 (0x7f62de1cd620) 0 + QStyleOptionToolBox (0x7f62de1cd690) 0 + QStyleOption (0x7f62de1cd700) 0 + +Class QStyleOptionRubberBand + size=64 align=8 + base size=61 base align=8 +QStyleOptionRubberBand (0x7f62de1e4310) 0 + QStyleOption (0x7f62de1e4380) 0 + +Class QStyleOptionComplex + size=64 align=8 + base size=64 base align=8 +QStyleOptionComplex (0x7f62de1ee3f0) 0 + QStyleOption (0x7f62de1ee460) 0 + +Class QStyleOptionSlider + size=120 align=8 + base size=113 base align=8 +QStyleOptionSlider (0x7f62de1f8bd0) 0 + QStyleOptionComplex (0x7f62de1f8c40) 0 + QStyleOption (0x7f62de1f8cb0) 0 + +Class QStyleOptionSpinBox + size=80 align=8 + base size=73 base align=8 +QStyleOptionSpinBox (0x7f62de20e9a0) 0 + QStyleOptionComplex (0x7f62de20ea10) 0 + QStyleOption (0x7f62de20ea80) 0 + +Class QStyleOptionQ3ListView + size=112 align=8 + base size=105 base align=8 +QStyleOptionQ3ListView (0x7f62de216ee0) 0 + QStyleOptionComplex (0x7f62de216f50) 0 + QStyleOption (0x7f62de216380) 0 + +Class QStyleOptionToolButton + size=128 align=8 + base size=128 base align=8 +QStyleOptionToolButton (0x7f62de250af0) 0 + QStyleOptionComplex (0x7f62de250b60) 0 + QStyleOption (0x7f62de250bd0) 0 + +Class QStyleOptionComboBox + size=112 align=8 + base size=112 base align=8 +QStyleOptionComboBox (0x7f62de290d20) 0 + QStyleOptionComplex (0x7f62de290d90) 0 + QStyleOption (0x7f62de290e00) 0 + +Class QStyleOptionTitleBar + size=88 align=8 + base size=88 base align=8 +QStyleOptionTitleBar (0x7f62de0ba850) 0 + QStyleOptionComplex (0x7f62de0ba8c0) 0 + QStyleOption (0x7f62de0ba930) 0 + +Class QStyleOptionGroupBox + size=112 align=8 + base size=108 base align=8 +QStyleOptionGroupBox (0x7f62de0d00e0) 0 + QStyleOptionComplex (0x7f62de0d0150) 0 + QStyleOption (0x7f62de0d01c0) 0 + +Class QStyleOptionSizeGrip + size=72 align=8 + base size=68 base align=8 +QStyleOptionSizeGrip (0x7f62de0dfcb0) 0 + QStyleOptionComplex (0x7f62de0dfd20) 0 + QStyleOption (0x7f62de0dfd90) 0 + +Class QStyleOptionGraphicsItem + size=144 align=8 + base size=144 base align=8 +QStyleOptionGraphicsItem (0x7f62de0e9c40) 0 + QStyleOption (0x7f62de0e9cb0) 0 + +Class QStyleHintReturn + size=8 align=4 + base size=8 base align=4 +QStyleHintReturn (0x7f62de0f62a0) 0 + +Class QStyleHintReturnMask + size=16 align=8 + base size=16 base align=8 +QStyleHintReturnMask (0x7f62de1143f0) 0 + QStyleHintReturn (0x7f62de114460) 0 + +Class QStyleHintReturnVariant + size=24 align=8 + base size=24 base align=8 +QStyleHintReturnVariant (0x7f62de114620) 0 + QStyleHintReturn (0x7f62de114690) 0 + +Vtable for QAbstractItemDelegate +QAbstractItemDelegate::_ZTV21QAbstractItemDelegate: 21u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QAbstractItemDelegate) +16 QAbstractItemDelegate::metaObject +24 QAbstractItemDelegate::qt_metacast +32 QAbstractItemDelegate::qt_metacall +40 QAbstractItemDelegate::~QAbstractItemDelegate +48 QAbstractItemDelegate::~QAbstractItemDelegate +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAbstractItemDelegate::createEditor +136 QAbstractItemDelegate::setEditorData +144 QAbstractItemDelegate::setModelData +152 QAbstractItemDelegate::updateEditorGeometry +160 QAbstractItemDelegate::editorEvent + +Class QAbstractItemDelegate + size=16 align=8 + base size=16 base align=8 +QAbstractItemDelegate (0x7f62de114af0) 0 + vptr=((& QAbstractItemDelegate::_ZTV21QAbstractItemDelegate) + 16u) + QObject (0x7f62de114b60) 0 + primary-for QAbstractItemDelegate (0x7f62de114af0) + +Vtable for QAbstractItemView +QAbstractItemView::_ZTV17QAbstractItemView: 103u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAbstractItemView) +16 QAbstractItemView::metaObject +24 QAbstractItemView::qt_metacast +32 QAbstractItemView::qt_metacall +40 QAbstractItemView::~QAbstractItemView +48 QAbstractItemView::~QAbstractItemView +56 QAbstractItemView::event +64 QObject::eventFilter +72 QAbstractItemView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QAbstractItemView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QAbstractItemView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractScrollArea::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QAbstractScrollArea::scrollContentsBy +464 QAbstractItemView::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 __cxa_pure_virtual +496 __cxa_pure_virtual +504 __cxa_pure_virtual +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QAbstractItemView::reset +536 QAbstractItemView::setRootIndex +544 QAbstractItemView::doItemsLayout +552 QAbstractItemView::selectAll +560 QAbstractItemView::dataChanged +568 QAbstractItemView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QAbstractItemView::selectionChanged +592 QAbstractItemView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QAbstractItemView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 __cxa_pure_virtual +688 __cxa_pure_virtual +696 __cxa_pure_virtual +704 __cxa_pure_virtual +712 __cxa_pure_virtual +720 __cxa_pure_virtual +728 QAbstractItemView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 (int (*)(...))-0x00000000000000010 +776 (int (*)(...))(& _ZTI17QAbstractItemView) +784 QAbstractItemView::_ZThn16_N17QAbstractItemViewD1Ev +792 QAbstractItemView::_ZThn16_N17QAbstractItemViewD0Ev +800 QWidget::_ZThn16_NK7QWidget7devTypeEv +808 QWidget::_ZThn16_NK7QWidget11paintEngineEv +816 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractItemView + size=40 align=8 + base size=40 base align=8 +QAbstractItemView (0x7f62de1451c0) 0 + vptr=((& QAbstractItemView::_ZTV17QAbstractItemView) + 16u) + QAbstractScrollArea (0x7f62de145230) 0 + primary-for QAbstractItemView (0x7f62de1451c0) + QFrame (0x7f62de1452a0) 0 + primary-for QAbstractScrollArea (0x7f62de145230) + QWidget (0x7f62de122d80) 0 + primary-for QFrame (0x7f62de1452a0) + QObject (0x7f62de145310) 0 + primary-for QWidget (0x7f62de122d80) + QPaintDevice (0x7f62de145380) 16 + vptr=((& QAbstractItemView::_ZTV17QAbstractItemView) + 784u) + +Vtable for QListView +QListView::_ZTV9QListView: 103u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QListView) +16 QListView::metaObject +24 QListView::qt_metacast +32 QListView::qt_metacall +40 QListView::~QListView +48 QListView::~QListView +56 QListView::event +64 QObject::eventFilter +72 QListView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QListView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QListView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QListView::paintEvent +256 QWidget::moveEvent +264 QListView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QListView::dragMoveEvent +320 QListView::dragLeaveEvent +328 QListView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QListView::scrollContentsBy +464 QAbstractItemView::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QListView::visualRect +496 QListView::scrollTo +504 QListView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QListView::reset +536 QListView::setRootIndex +544 QListView::doItemsLayout +552 QAbstractItemView::selectAll +560 QListView::dataChanged +568 QListView::rowsInserted +576 QListView::rowsAboutToBeRemoved +584 QListView::selectionChanged +592 QListView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QListView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QListView::moveCursor +688 QListView::horizontalOffset +696 QListView::verticalOffset +704 QListView::isIndexHidden +712 QListView::setSelection +720 QListView::visualRegionForSelection +728 QListView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QListView::startDrag +760 QListView::viewOptions +768 (int (*)(...))-0x00000000000000010 +776 (int (*)(...))(& _ZTI9QListView) +784 QListView::_ZThn16_N9QListViewD1Ev +792 QListView::_ZThn16_N9QListViewD0Ev +800 QWidget::_ZThn16_NK7QWidget7devTypeEv +808 QWidget::_ZThn16_NK7QWidget11paintEngineEv +816 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QListView + size=40 align=8 + base size=40 base align=8 +QListView (0x7f62ddfba9a0) 0 + vptr=((& QListView::_ZTV9QListView) + 16u) + QAbstractItemView (0x7f62ddfbaa10) 0 + primary-for QListView (0x7f62ddfba9a0) + QAbstractScrollArea (0x7f62ddfbaa80) 0 + primary-for QAbstractItemView (0x7f62ddfbaa10) + QFrame (0x7f62ddfbaaf0) 0 + primary-for QAbstractScrollArea (0x7f62ddfbaa80) + QWidget (0x7f62ddfa4500) 0 + primary-for QFrame (0x7f62ddfbaaf0) + QObject (0x7f62ddfbab60) 0 + primary-for QWidget (0x7f62ddfa4500) + QPaintDevice (0x7f62ddfbabd0) 16 + vptr=((& QListView::_ZTV9QListView) + 784u) + +Vtable for QUndoView +QUndoView::_ZTV9QUndoView: 103u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QUndoView) +16 QUndoView::metaObject +24 QUndoView::qt_metacast +32 QUndoView::qt_metacall +40 QUndoView::~QUndoView +48 QUndoView::~QUndoView +56 QListView::event +64 QObject::eventFilter +72 QListView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QListView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QListView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QListView::paintEvent +256 QWidget::moveEvent +264 QListView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QListView::dragMoveEvent +320 QListView::dragLeaveEvent +328 QListView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QListView::scrollContentsBy +464 QAbstractItemView::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QListView::visualRect +496 QListView::scrollTo +504 QListView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QListView::reset +536 QListView::setRootIndex +544 QListView::doItemsLayout +552 QAbstractItemView::selectAll +560 QListView::dataChanged +568 QListView::rowsInserted +576 QListView::rowsAboutToBeRemoved +584 QListView::selectionChanged +592 QListView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QListView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QListView::moveCursor +688 QListView::horizontalOffset +696 QListView::verticalOffset +704 QListView::isIndexHidden +712 QListView::setSelection +720 QListView::visualRegionForSelection +728 QListView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QListView::startDrag +760 QListView::viewOptions +768 (int (*)(...))-0x00000000000000010 +776 (int (*)(...))(& _ZTI9QUndoView) +784 QUndoView::_ZThn16_N9QUndoViewD1Ev +792 QUndoView::_ZThn16_N9QUndoViewD0Ev +800 QWidget::_ZThn16_NK7QWidget7devTypeEv +808 QWidget::_ZThn16_NK7QWidget11paintEngineEv +816 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QUndoView + size=40 align=8 + base size=40 base align=8 +QUndoView (0x7f62de009070) 0 + vptr=((& QUndoView::_ZTV9QUndoView) + 16u) + QListView (0x7f62de0090e0) 0 + primary-for QUndoView (0x7f62de009070) + QAbstractItemView (0x7f62de009150) 0 + primary-for QListView (0x7f62de0090e0) + QAbstractScrollArea (0x7f62de0091c0) 0 + primary-for QAbstractItemView (0x7f62de009150) + QFrame (0x7f62de009230) 0 + primary-for QAbstractScrollArea (0x7f62de0091c0) + QWidget (0x7f62de004500) 0 + primary-for QFrame (0x7f62de009230) + QObject (0x7f62de0092a0) 0 + primary-for QWidget (0x7f62de004500) + QPaintDevice (0x7f62de009310) 16 + vptr=((& QUndoView::_ZTV9QUndoView) + 784u) + +Vtable for QDialog +QDialog::_ZTV7QDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QDialog) +16 QDialog::metaObject +24 QDialog::qt_metacast +32 QDialog::qt_metacall +40 QDialog::~QDialog +48 QDialog::~QDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI7QDialog) +488 QDialog::_ZThn16_N7QDialogD1Ev +496 QDialog::_ZThn16_N7QDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDialog + size=40 align=8 + base size=40 base align=8 +QDialog (0x7f62de021d20) 0 + vptr=((& QDialog::_ZTV7QDialog) + 16u) + QWidget (0x7f62de004f00) 0 + primary-for QDialog (0x7f62de021d20) + QObject (0x7f62de021d90) 0 + primary-for QWidget (0x7f62de004f00) + QPaintDevice (0x7f62de021e00) 16 + vptr=((& QDialog::_ZTV7QDialog) + 488u) + +Vtable for QAbstractPageSetupDialog +QAbstractPageSetupDialog::_ZTV24QAbstractPageSetupDialog: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QAbstractPageSetupDialog) +16 QAbstractPageSetupDialog::metaObject +24 QAbstractPageSetupDialog::qt_metacast +32 QAbstractPageSetupDialog::qt_metacall +40 QAbstractPageSetupDialog::~QAbstractPageSetupDialog +48 QAbstractPageSetupDialog::~QAbstractPageSetupDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractPageSetupDialog::done +456 QDialog::accept +464 QDialog::reject +472 __cxa_pure_virtual +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI24QAbstractPageSetupDialog) +496 QAbstractPageSetupDialog::_ZThn16_N24QAbstractPageSetupDialogD1Ev +504 QAbstractPageSetupDialog::_ZThn16_N24QAbstractPageSetupDialogD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractPageSetupDialog + size=40 align=8 + base size=40 base align=8 +QAbstractPageSetupDialog (0x7f62de04ab60) 0 + vptr=((& QAbstractPageSetupDialog::_ZTV24QAbstractPageSetupDialog) + 16u) + QDialog (0x7f62de04abd0) 0 + primary-for QAbstractPageSetupDialog (0x7f62de04ab60) + QWidget (0x7f62de029a00) 0 + primary-for QDialog (0x7f62de04abd0) + QObject (0x7f62de04ac40) 0 + primary-for QWidget (0x7f62de029a00) + QPaintDevice (0x7f62de04acb0) 16 + vptr=((& QAbstractPageSetupDialog::_ZTV24QAbstractPageSetupDialog) + 496u) + +Vtable for QAbstractPrintDialog +QAbstractPrintDialog::_ZTV20QAbstractPrintDialog: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QAbstractPrintDialog) +16 QAbstractPrintDialog::metaObject +24 QAbstractPrintDialog::qt_metacast +32 QAbstractPrintDialog::qt_metacall +40 QAbstractPrintDialog::~QAbstractPrintDialog +48 QAbstractPrintDialog::~QAbstractPrintDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDialog::done +456 QDialog::accept +464 QDialog::reject +472 __cxa_pure_virtual +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI20QAbstractPrintDialog) +496 QAbstractPrintDialog::_ZThn16_N20QAbstractPrintDialogD1Ev +504 QAbstractPrintDialog::_ZThn16_N20QAbstractPrintDialogD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractPrintDialog + size=40 align=8 + base size=40 base align=8 +QAbstractPrintDialog (0x7f62de068150) 0 + vptr=((& QAbstractPrintDialog::_ZTV20QAbstractPrintDialog) + 16u) + QDialog (0x7f62de0681c0) 0 + primary-for QAbstractPrintDialog (0x7f62de068150) + QWidget (0x7f62de061400) 0 + primary-for QDialog (0x7f62de0681c0) + QObject (0x7f62de068230) 0 + primary-for QWidget (0x7f62de061400) + QPaintDevice (0x7f62de0682a0) 16 + vptr=((& QAbstractPrintDialog::_ZTV20QAbstractPrintDialog) + 496u) + +Vtable for QColorDialog +QColorDialog::_ZTV12QColorDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QColorDialog) +16 QColorDialog::metaObject +24 QColorDialog::qt_metacast +32 QColorDialog::qt_metacall +40 QColorDialog::~QColorDialog +48 QColorDialog::~QColorDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QColorDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QColorDialog::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QColorDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI12QColorDialog) +488 QColorDialog::_ZThn16_N12QColorDialogD1Ev +496 QColorDialog::_ZThn16_N12QColorDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QColorDialog + size=40 align=8 + base size=40 base align=8 +QColorDialog (0x7f62ddec2230) 0 + vptr=((& QColorDialog::_ZTV12QColorDialog) + 16u) + QDialog (0x7f62ddec22a0) 0 + primary-for QColorDialog (0x7f62ddec2230) + QWidget (0x7f62de084880) 0 + primary-for QDialog (0x7f62ddec22a0) + QObject (0x7f62ddec2310) 0 + primary-for QWidget (0x7f62de084880) + QPaintDevice (0x7f62ddec2380) 16 + vptr=((& QColorDialog::_ZTV12QColorDialog) + 488u) + +Vtable for QErrorMessage +QErrorMessage::_ZTV13QErrorMessage: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QErrorMessage) +16 QErrorMessage::metaObject +24 QErrorMessage::qt_metacast +32 QErrorMessage::qt_metacall +40 QErrorMessage::~QErrorMessage +48 QErrorMessage::~QErrorMessage +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QErrorMessage::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QErrorMessage::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI13QErrorMessage) +488 QErrorMessage::_ZThn16_N13QErrorMessageD1Ev +496 QErrorMessage::_ZThn16_N13QErrorMessageD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QErrorMessage + size=40 align=8 + base size=40 base align=8 +QErrorMessage (0x7f62ddf225b0) 0 + vptr=((& QErrorMessage::_ZTV13QErrorMessage) + 16u) + QDialog (0x7f62ddf22620) 0 + primary-for QErrorMessage (0x7f62ddf225b0) + QWidget (0x7f62ddeeac00) 0 + primary-for QDialog (0x7f62ddf22620) + QObject (0x7f62ddf22690) 0 + primary-for QWidget (0x7f62ddeeac00) + QPaintDevice (0x7f62ddf22700) 16 + vptr=((& QErrorMessage::_ZTV13QErrorMessage) + 488u) + +Vtable for QFileDialog +QFileDialog::_ZTV11QFileDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFileDialog) +16 QFileDialog::metaObject +24 QFileDialog::qt_metacast +32 QFileDialog::qt_metacall +40 QFileDialog::~QFileDialog +48 QFileDialog::~QFileDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QFileDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFileDialog::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QFileDialog::done +456 QFileDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11QFileDialog) +488 QFileDialog::_ZThn16_N11QFileDialogD1Ev +496 QFileDialog::_ZThn16_N11QFileDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFileDialog + size=40 align=8 + base size=40 base align=8 +QFileDialog (0x7f62ddf401c0) 0 + vptr=((& QFileDialog::_ZTV11QFileDialog) + 16u) + QDialog (0x7f62ddf40230) 0 + primary-for QFileDialog (0x7f62ddf401c0) + QWidget (0x7f62ddf37780) 0 + primary-for QDialog (0x7f62ddf40230) + QObject (0x7f62ddf402a0) 0 + primary-for QWidget (0x7f62ddf37780) + QPaintDevice (0x7f62ddf40310) 16 + vptr=((& QFileDialog::_ZTV11QFileDialog) + 488u) + +Vtable for QFileSystemModel +QFileSystemModel::_ZTV16QFileSystemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QFileSystemModel) +16 QFileSystemModel::metaObject +24 QFileSystemModel::qt_metacast +32 QFileSystemModel::qt_metacall +40 QFileSystemModel::~QFileSystemModel +48 QFileSystemModel::~QFileSystemModel +56 QFileSystemModel::event +64 QObject::eventFilter +72 QFileSystemModel::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFileSystemModel::index +120 QFileSystemModel::parent +128 QFileSystemModel::rowCount +136 QFileSystemModel::columnCount +144 QFileSystemModel::hasChildren +152 QFileSystemModel::data +160 QFileSystemModel::setData +168 QFileSystemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QFileSystemModel::mimeTypes +208 QFileSystemModel::mimeData +216 QFileSystemModel::dropMimeData +224 QFileSystemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QFileSystemModel::fetchMore +272 QFileSystemModel::canFetchMore +280 QFileSystemModel::flags +288 QFileSystemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QFileSystemModel + size=16 align=8 + base size=16 base align=8 +QFileSystemModel (0x7f62dddbb770) 0 + vptr=((& QFileSystemModel::_ZTV16QFileSystemModel) + 16u) + QAbstractItemModel (0x7f62dddbb7e0) 0 + primary-for QFileSystemModel (0x7f62dddbb770) + QObject (0x7f62dddbb850) 0 + primary-for QAbstractItemModel (0x7f62dddbb7e0) + +Vtable for QFontDialog +QFontDialog::_ZTV11QFontDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFontDialog) +16 QFontDialog::metaObject +24 QFontDialog::qt_metacast +32 QFontDialog::qt_metacall +40 QFontDialog::~QFontDialog +48 QFontDialog::~QFontDialog +56 QWidget::event +64 QFontDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QFontDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFontDialog::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QFontDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11QFontDialog) +488 QFontDialog::_ZThn16_N11QFontDialogD1Ev +496 QFontDialog::_ZThn16_N11QFontDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFontDialog + size=40 align=8 + base size=40 base align=8 +QFontDialog (0x7f62dddffe70) 0 + vptr=((& QFontDialog::_ZTV11QFontDialog) + 16u) + QDialog (0x7f62dddffee0) 0 + primary-for QFontDialog (0x7f62dddffe70) + QWidget (0x7f62dde09500) 0 + primary-for QDialog (0x7f62dddffee0) + QObject (0x7f62dddfff50) 0 + primary-for QWidget (0x7f62dde09500) + QPaintDevice (0x7f62dde0e000) 16 + vptr=((& QFontDialog::_ZTV11QFontDialog) + 488u) + +Vtable for QLineEdit +QLineEdit::_ZTV9QLineEdit: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QLineEdit) +16 QLineEdit::metaObject +24 QLineEdit::qt_metacast +32 QLineEdit::qt_metacall +40 QLineEdit::~QLineEdit +48 QLineEdit::~QLineEdit +56 QLineEdit::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QLineEdit::sizeHint +136 QLineEdit::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QLineEdit::mousePressEvent +168 QLineEdit::mouseReleaseEvent +176 QLineEdit::mouseDoubleClickEvent +184 QLineEdit::mouseMoveEvent +192 QWidget::wheelEvent +200 QLineEdit::keyPressEvent +208 QWidget::keyReleaseEvent +216 QLineEdit::focusInEvent +224 QLineEdit::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QLineEdit::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QLineEdit::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QLineEdit::dragEnterEvent +312 QLineEdit::dragMoveEvent +320 QLineEdit::dragLeaveEvent +328 QLineEdit::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QLineEdit::changeEvent +368 QWidget::metric +376 QLineEdit::inputMethodEvent +384 QLineEdit::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI9QLineEdit) +464 QLineEdit::_ZThn16_N9QLineEditD1Ev +472 QLineEdit::_ZThn16_N9QLineEditD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QLineEdit + size=40 align=8 + base size=40 base align=8 +QLineEdit (0x7f62dde6f310) 0 + vptr=((& QLineEdit::_ZTV9QLineEdit) + 16u) + QWidget (0x7f62dde31800) 0 + primary-for QLineEdit (0x7f62dde6f310) + QObject (0x7f62dde6f380) 0 + primary-for QWidget (0x7f62dde31800) + QPaintDevice (0x7f62dde6f3f0) 16 + vptr=((& QLineEdit::_ZTV9QLineEdit) + 464u) + +Vtable for QInputDialog +QInputDialog::_ZTV12QInputDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QInputDialog) +16 QInputDialog::metaObject +24 QInputDialog::qt_metacast +32 QInputDialog::qt_metacall +40 QInputDialog::~QInputDialog +48 QInputDialog::~QInputDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QInputDialog::setVisible +128 QInputDialog::sizeHint +136 QInputDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QInputDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI12QInputDialog) +488 QInputDialog::_ZThn16_N12QInputDialogD1Ev +496 QInputDialog::_ZThn16_N12QInputDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QInputDialog + size=40 align=8 + base size=40 base align=8 +QInputDialog (0x7f62ddcc1070) 0 + vptr=((& QInputDialog::_ZTV12QInputDialog) + 16u) + QDialog (0x7f62ddcc10e0) 0 + primary-for QInputDialog (0x7f62ddcc1070) + QWidget (0x7f62ddcbc780) 0 + primary-for QDialog (0x7f62ddcc10e0) + QObject (0x7f62ddcc1150) 0 + primary-for QWidget (0x7f62ddcbc780) + QPaintDevice (0x7f62ddcc11c0) 16 + vptr=((& QInputDialog::_ZTV12QInputDialog) + 488u) + +Vtable for QMessageBox +QMessageBox::_ZTV11QMessageBox: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMessageBox) +16 QMessageBox::metaObject +24 QMessageBox::qt_metacast +32 QMessageBox::qt_metacall +40 QMessageBox::~QMessageBox +48 QMessageBox::~QMessageBox +56 QMessageBox::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QMessageBox::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QMessageBox::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QMessageBox::resizeEvent +272 QMessageBox::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QMessageBox::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QMessageBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11QMessageBox) +488 QMessageBox::_ZThn16_N11QMessageBoxD1Ev +496 QMessageBox::_ZThn16_N11QMessageBoxD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMessageBox + size=40 align=8 + base size=40 base align=8 +QMessageBox (0x7f62ddd20ee0) 0 + vptr=((& QMessageBox::_ZTV11QMessageBox) + 16u) + QDialog (0x7f62ddd20f50) 0 + primary-for QMessageBox (0x7f62ddd20ee0) + QWidget (0x7f62ddd39100) 0 + primary-for QDialog (0x7f62ddd20f50) + QObject (0x7f62ddd3a000) 0 + primary-for QWidget (0x7f62ddd39100) + QPaintDevice (0x7f62ddd3a070) 16 + vptr=((& QMessageBox::_ZTV11QMessageBox) + 488u) + +Vtable for QPageSetupDialog +QPageSetupDialog::_ZTV16QPageSetupDialog: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QPageSetupDialog) +16 QPageSetupDialog::metaObject +24 QPageSetupDialog::qt_metacast +32 QPageSetupDialog::qt_metacall +40 QPageSetupDialog::~QPageSetupDialog +48 QPageSetupDialog::~QPageSetupDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractPageSetupDialog::done +456 QDialog::accept +464 QDialog::reject +472 QPageSetupDialog::exec +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI16QPageSetupDialog) +496 QPageSetupDialog::_ZThn16_N16QPageSetupDialogD1Ev +504 QPageSetupDialog::_ZThn16_N16QPageSetupDialogD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPageSetupDialog + size=40 align=8 + base size=40 base align=8 +QPageSetupDialog (0x7f62ddbb8850) 0 + vptr=((& QPageSetupDialog::_ZTV16QPageSetupDialog) + 16u) + QAbstractPageSetupDialog (0x7f62ddbb88c0) 0 + primary-for QPageSetupDialog (0x7f62ddbb8850) + QDialog (0x7f62ddbb8930) 0 + primary-for QAbstractPageSetupDialog (0x7f62ddbb88c0) + QWidget (0x7f62ddb9d800) 0 + primary-for QDialog (0x7f62ddbb8930) + QObject (0x7f62ddbb89a0) 0 + primary-for QWidget (0x7f62ddb9d800) + QPaintDevice (0x7f62ddbb8a10) 16 + vptr=((& QPageSetupDialog::_ZTV16QPageSetupDialog) + 496u) + +Vtable for QUnixPrintWidget +QUnixPrintWidget::_ZTV16QUnixPrintWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QUnixPrintWidget) +16 QUnixPrintWidget::metaObject +24 QUnixPrintWidget::qt_metacast +32 QUnixPrintWidget::qt_metacall +40 QUnixPrintWidget::~QUnixPrintWidget +48 QUnixPrintWidget::~QUnixPrintWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI16QUnixPrintWidget) +464 QUnixPrintWidget::_ZThn16_N16QUnixPrintWidgetD1Ev +472 QUnixPrintWidget::_ZThn16_N16QUnixPrintWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QUnixPrintWidget + size=48 align=8 + base size=48 base align=8 +QUnixPrintWidget (0x7f62ddbed7e0) 0 + vptr=((& QUnixPrintWidget::_ZTV16QUnixPrintWidget) + 16u) + QWidget (0x7f62ddbec380) 0 + primary-for QUnixPrintWidget (0x7f62ddbed7e0) + QObject (0x7f62ddbed850) 0 + primary-for QWidget (0x7f62ddbec380) + QPaintDevice (0x7f62ddbed8c0) 16 + vptr=((& QUnixPrintWidget::_ZTV16QUnixPrintWidget) + 464u) + +Vtable for QPrintDialog +QPrintDialog::_ZTV12QPrintDialog: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QPrintDialog) +16 QPrintDialog::metaObject +24 QPrintDialog::qt_metacast +32 QPrintDialog::qt_metacall +40 QPrintDialog::~QPrintDialog +48 QPrintDialog::~QPrintDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QPrintDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QPrintDialog::done +456 QPrintDialog::accept +464 QDialog::reject +472 QPrintDialog::exec +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI12QPrintDialog) +496 QPrintDialog::_ZThn16_N12QPrintDialogD1Ev +504 QPrintDialog::_ZThn16_N12QPrintDialogD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPrintDialog + size=40 align=8 + base size=40 base align=8 +QPrintDialog (0x7f62ddc03700) 0 + vptr=((& QPrintDialog::_ZTV12QPrintDialog) + 16u) + QAbstractPrintDialog (0x7f62ddc03770) 0 + primary-for QPrintDialog (0x7f62ddc03700) + QDialog (0x7f62ddc037e0) 0 + primary-for QAbstractPrintDialog (0x7f62ddc03770) + QWidget (0x7f62ddbeca80) 0 + primary-for QDialog (0x7f62ddc037e0) + QObject (0x7f62ddc03850) 0 + primary-for QWidget (0x7f62ddbeca80) + QPaintDevice (0x7f62ddc038c0) 16 + vptr=((& QPrintDialog::_ZTV12QPrintDialog) + 496u) + +Vtable for QPrintPreviewDialog +QPrintPreviewDialog::_ZTV19QPrintPreviewDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QPrintPreviewDialog) +16 QPrintPreviewDialog::metaObject +24 QPrintPreviewDialog::qt_metacast +32 QPrintPreviewDialog::qt_metacall +40 QPrintPreviewDialog::~QPrintPreviewDialog +48 QPrintPreviewDialog::~QPrintPreviewDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QPrintPreviewDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QPrintPreviewDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI19QPrintPreviewDialog) +488 QPrintPreviewDialog::_ZThn16_N19QPrintPreviewDialogD1Ev +496 QPrintPreviewDialog::_ZThn16_N19QPrintPreviewDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPrintPreviewDialog + size=48 align=8 + base size=48 base align=8 +QPrintPreviewDialog (0x7f62ddc222a0) 0 + vptr=((& QPrintPreviewDialog::_ZTV19QPrintPreviewDialog) + 16u) + QDialog (0x7f62ddc22310) 0 + primary-for QPrintPreviewDialog (0x7f62ddc222a0) + QWidget (0x7f62ddc1e480) 0 + primary-for QDialog (0x7f62ddc22310) + QObject (0x7f62ddc22380) 0 + primary-for QWidget (0x7f62ddc1e480) + QPaintDevice (0x7f62ddc223f0) 16 + vptr=((& QPrintPreviewDialog::_ZTV19QPrintPreviewDialog) + 488u) + +Vtable for QProgressDialog +QProgressDialog::_ZTV15QProgressDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QProgressDialog) +16 QProgressDialog::metaObject +24 QProgressDialog::qt_metacast +32 QProgressDialog::qt_metacall +40 QProgressDialog::~QProgressDialog +48 QProgressDialog::~QProgressDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QProgressDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QProgressDialog::resizeEvent +272 QProgressDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QProgressDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QProgressDialog::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI15QProgressDialog) +488 QProgressDialog::_ZThn16_N15QProgressDialogD1Ev +496 QProgressDialog::_ZThn16_N15QProgressDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QProgressDialog + size=40 align=8 + base size=40 base align=8 +QProgressDialog (0x7f62ddc3aa10) 0 + vptr=((& QProgressDialog::_ZTV15QProgressDialog) + 16u) + QDialog (0x7f62ddc3aa80) 0 + primary-for QProgressDialog (0x7f62ddc3aa10) + QWidget (0x7f62ddc1ee80) 0 + primary-for QDialog (0x7f62ddc3aa80) + QObject (0x7f62ddc3aaf0) 0 + primary-for QWidget (0x7f62ddc1ee80) + QPaintDevice (0x7f62ddc3ab60) 16 + vptr=((& QProgressDialog::_ZTV15QProgressDialog) + 488u) + +Vtable for QWizard +QWizard::_ZTV7QWizard: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QWizard) +16 QWizard::metaObject +24 QWizard::qt_metacast +32 QWizard::qt_metacall +40 QWizard::~QWizard +48 QWizard::~QWizard +56 QWizard::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWizard::setVisible +128 QWizard::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWizard::paintEvent +256 QWidget::moveEvent +264 QWizard::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QWizard::done +456 QDialog::accept +464 QDialog::reject +472 QWizard::validateCurrentPage +480 QWizard::nextId +488 QWizard::initializePage +496 QWizard::cleanupPage +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI7QWizard) +520 QWizard::_ZThn16_N7QWizardD1Ev +528 QWizard::_ZThn16_N7QWizardD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWizard + size=40 align=8 + base size=40 base align=8 +QWizard (0x7f62ddc5f620) 0 + vptr=((& QWizard::_ZTV7QWizard) + 16u) + QDialog (0x7f62ddc5f690) 0 + primary-for QWizard (0x7f62ddc5f620) + QWidget (0x7f62ddc58880) 0 + primary-for QDialog (0x7f62ddc5f690) + QObject (0x7f62ddc5f700) 0 + primary-for QWidget (0x7f62ddc58880) + QPaintDevice (0x7f62ddc5f770) 16 + vptr=((& QWizard::_ZTV7QWizard) + 520u) + +Vtable for QWizardPage +QWizardPage::_ZTV11QWizardPage: 68u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QWizardPage) +16 QWizardPage::metaObject +24 QWizardPage::qt_metacast +32 QWizardPage::qt_metacall +40 QWizardPage::~QWizardPage +48 QWizardPage::~QWizardPage +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QWizardPage::initializePage +456 QWizardPage::cleanupPage +464 QWizardPage::validatePage +472 QWizardPage::isComplete +480 QWizardPage::nextId +488 (int (*)(...))-0x00000000000000010 +496 (int (*)(...))(& _ZTI11QWizardPage) +504 QWizardPage::_ZThn16_N11QWizardPageD1Ev +512 QWizardPage::_ZThn16_N11QWizardPageD0Ev +520 QWidget::_ZThn16_NK7QWidget7devTypeEv +528 QWidget::_ZThn16_NK7QWidget11paintEngineEv +536 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWizardPage + size=40 align=8 + base size=40 base align=8 +QWizardPage (0x7f62ddab79a0) 0 + vptr=((& QWizardPage::_ZTV11QWizardPage) + 16u) + QWidget (0x7f62ddc8bb80) 0 + primary-for QWizardPage (0x7f62ddab79a0) + QObject (0x7f62ddab7a10) 0 + primary-for QWidget (0x7f62ddc8bb80) + QPaintDevice (0x7f62ddab7a80) 16 + vptr=((& QWizardPage::_ZTV11QWizardPage) + 504u) + +Vtable for QKeyEventTransition +QKeyEventTransition::_ZTV19QKeyEventTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QKeyEventTransition) +16 QKeyEventTransition::metaObject +24 QKeyEventTransition::qt_metacast +32 QKeyEventTransition::qt_metacall +40 QKeyEventTransition::~QKeyEventTransition +48 QKeyEventTransition::~QKeyEventTransition +56 QEventTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QKeyEventTransition::eventTest +120 QKeyEventTransition::onTransition + +Class QKeyEventTransition + size=16 align=8 + base size=16 base align=8 +QKeyEventTransition (0x7f62ddaef4d0) 0 + vptr=((& QKeyEventTransition::_ZTV19QKeyEventTransition) + 16u) + QEventTransition (0x7f62ddaef540) 0 + primary-for QKeyEventTransition (0x7f62ddaef4d0) + QAbstractTransition (0x7f62ddaef5b0) 0 + primary-for QEventTransition (0x7f62ddaef540) + QObject (0x7f62ddaef620) 0 + primary-for QAbstractTransition (0x7f62ddaef5b0) + +Vtable for QMouseEventTransition +QMouseEventTransition::_ZTV21QMouseEventTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QMouseEventTransition) +16 QMouseEventTransition::metaObject +24 QMouseEventTransition::qt_metacast +32 QMouseEventTransition::qt_metacall +40 QMouseEventTransition::~QMouseEventTransition +48 QMouseEventTransition::~QMouseEventTransition +56 QEventTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMouseEventTransition::eventTest +120 QMouseEventTransition::onTransition + +Class QMouseEventTransition + size=16 align=8 + base size=16 base align=8 +QMouseEventTransition (0x7f62ddb02f50) 0 + vptr=((& QMouseEventTransition::_ZTV21QMouseEventTransition) + 16u) + QEventTransition (0x7f62ddb0b000) 0 + primary-for QMouseEventTransition (0x7f62ddb02f50) + QAbstractTransition (0x7f62ddb0b070) 0 + primary-for QEventTransition (0x7f62ddb0b000) + QObject (0x7f62ddb0b0e0) 0 + primary-for QAbstractTransition (0x7f62ddb0b070) + +Vtable for QBitmap +QBitmap::_ZTV7QBitmap: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QBitmap) +16 QBitmap::~QBitmap +24 QBitmap::~QBitmap +32 QPixmap::devType +40 QPixmap::paintEngine +48 QPixmap::metric + +Class QBitmap + size=24 align=8 + base size=24 base align=8 +QBitmap (0x7f62ddb1ea10) 0 + vptr=((& QBitmap::_ZTV7QBitmap) + 16u) + QPixmap (0x7f62ddb1ea80) 0 + primary-for QBitmap (0x7f62ddb1ea10) + QPaintDevice (0x7f62ddb1eaf0) 0 + primary-for QPixmap (0x7f62ddb1ea80) + +Vtable for QIconEngine +QIconEngine::_ZTV11QIconEngine: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QIconEngine) +16 QIconEngine::~QIconEngine +24 QIconEngine::~QIconEngine +32 __cxa_pure_virtual +40 QIconEngine::actualSize +48 QIconEngine::pixmap +56 QIconEngine::addPixmap +64 QIconEngine::addFile + +Class QIconEngine + size=8 align=8 + base size=8 base align=8 +QIconEngine (0x7f62ddb518c0) 0 nearly-empty + vptr=((& QIconEngine::_ZTV11QIconEngine) + 16u) + +Class QIconEngineV2::AvailableSizesArgument + size=16 align=8 + base size=16 base align=8 +QIconEngineV2::AvailableSizesArgument (0x7f62ddb5b070) 0 + +Vtable for QIconEngineV2 +QIconEngineV2::_ZTV13QIconEngineV2: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QIconEngineV2) +16 QIconEngineV2::~QIconEngineV2 +24 QIconEngineV2::~QIconEngineV2 +32 __cxa_pure_virtual +40 QIconEngine::actualSize +48 QIconEngine::pixmap +56 QIconEngine::addPixmap +64 QIconEngine::addFile +72 QIconEngineV2::key +80 QIconEngineV2::clone +88 QIconEngineV2::read +96 QIconEngineV2::write +104 QIconEngineV2::virtual_hook + +Class QIconEngineV2 + size=8 align=8 + base size=8 base align=8 +QIconEngineV2 (0x7f62ddb51e70) 0 nearly-empty + vptr=((& QIconEngineV2::_ZTV13QIconEngineV2) + 16u) + QIconEngine (0x7f62ddb51ee0) 0 nearly-empty + primary-for QIconEngineV2 (0x7f62ddb51e70) + +Vtable for QIconEngineFactoryInterface +QIconEngineFactoryInterface::_ZTV27QIconEngineFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QIconEngineFactoryInterface) +16 QIconEngineFactoryInterface::~QIconEngineFactoryInterface +24 QIconEngineFactoryInterface::~QIconEngineFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QIconEngineFactoryInterface + size=8 align=8 + base size=8 base align=8 +QIconEngineFactoryInterface (0x7f62ddb5b850) 0 nearly-empty + vptr=((& QIconEngineFactoryInterface::_ZTV27QIconEngineFactoryInterface) + 16u) + QFactoryInterface (0x7f62ddb5b8c0) 0 nearly-empty + primary-for QIconEngineFactoryInterface (0x7f62ddb5b850) + +Vtable for QIconEnginePlugin +QIconEnginePlugin::_ZTV17QIconEnginePlugin: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QIconEnginePlugin) +16 QIconEnginePlugin::metaObject +24 QIconEnginePlugin::qt_metacast +32 QIconEnginePlugin::qt_metacall +40 QIconEnginePlugin::~QIconEnginePlugin +48 QIconEnginePlugin::~QIconEnginePlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI17QIconEnginePlugin) +144 QIconEnginePlugin::_ZThn16_N17QIconEnginePluginD1Ev +152 QIconEnginePlugin::_ZThn16_N17QIconEnginePluginD0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QIconEnginePlugin + size=24 align=8 + base size=24 base align=8 +QIconEnginePlugin (0x7f62ddb55f80) 0 + vptr=((& QIconEnginePlugin::_ZTV17QIconEnginePlugin) + 16u) + QObject (0x7f62ddb921c0) 0 + primary-for QIconEnginePlugin (0x7f62ddb55f80) + QIconEngineFactoryInterface (0x7f62ddb92230) 16 nearly-empty + vptr=((& QIconEnginePlugin::_ZTV17QIconEnginePlugin) + 144u) + QFactoryInterface (0x7f62ddb922a0) 16 nearly-empty + primary-for QIconEngineFactoryInterface (0x7f62ddb92230) + +Vtable for QIconEngineFactoryInterfaceV2 +QIconEngineFactoryInterfaceV2::_ZTV29QIconEngineFactoryInterfaceV2: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI29QIconEngineFactoryInterfaceV2) +16 QIconEngineFactoryInterfaceV2::~QIconEngineFactoryInterfaceV2 +24 QIconEngineFactoryInterfaceV2::~QIconEngineFactoryInterfaceV2 +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QIconEngineFactoryInterfaceV2 + size=8 align=8 + base size=8 base align=8 +QIconEngineFactoryInterfaceV2 (0x7f62dd9a5150) 0 nearly-empty + vptr=((& QIconEngineFactoryInterfaceV2::_ZTV29QIconEngineFactoryInterfaceV2) + 16u) + QFactoryInterface (0x7f62dd9a51c0) 0 nearly-empty + primary-for QIconEngineFactoryInterfaceV2 (0x7f62dd9a5150) + +Vtable for QIconEnginePluginV2 +QIconEnginePluginV2::_ZTV19QIconEnginePluginV2: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QIconEnginePluginV2) +16 QIconEnginePluginV2::metaObject +24 QIconEnginePluginV2::qt_metacast +32 QIconEnginePluginV2::qt_metacall +40 QIconEnginePluginV2::~QIconEnginePluginV2 +48 QIconEnginePluginV2::~QIconEnginePluginV2 +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI19QIconEnginePluginV2) +144 QIconEnginePluginV2::_ZThn16_N19QIconEnginePluginV2D1Ev +152 QIconEnginePluginV2::_ZThn16_N19QIconEnginePluginV2D0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QIconEnginePluginV2 + size=24 align=8 + base size=24 base align=8 +QIconEnginePluginV2 (0x7f62dd9b0000) 0 + vptr=((& QIconEnginePluginV2::_ZTV19QIconEnginePluginV2) + 16u) + QObject (0x7f62dd9a5c40) 0 + primary-for QIconEnginePluginV2 (0x7f62dd9b0000) + QIconEngineFactoryInterfaceV2 (0x7f62dd9a5cb0) 16 nearly-empty + vptr=((& QIconEnginePluginV2::_ZTV19QIconEnginePluginV2) + 144u) + QFactoryInterface (0x7f62dd9a5d20) 16 nearly-empty + primary-for QIconEngineFactoryInterfaceV2 (0x7f62dd9a5cb0) + +Vtable for QImageIOHandler +QImageIOHandler::_ZTV15QImageIOHandler: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QImageIOHandler) +16 QImageIOHandler::~QImageIOHandler +24 QImageIOHandler::~QImageIOHandler +32 QImageIOHandler::name +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QImageIOHandler::write +64 QImageIOHandler::option +72 QImageIOHandler::setOption +80 QImageIOHandler::supportsOption +88 QImageIOHandler::jumpToNextImage +96 QImageIOHandler::jumpToImage +104 QImageIOHandler::loopCount +112 QImageIOHandler::imageCount +120 QImageIOHandler::nextImageDelay +128 QImageIOHandler::currentImageNumber +136 QImageIOHandler::currentImageRect + +Class QImageIOHandler + size=16 align=8 + base size=16 base align=8 +QImageIOHandler (0x7f62dd9b9bd0) 0 + vptr=((& QImageIOHandler::_ZTV15QImageIOHandler) + 16u) + +Vtable for QImageIOHandlerFactoryInterface +QImageIOHandlerFactoryInterface::_ZTV31QImageIOHandlerFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI31QImageIOHandlerFactoryInterface) +16 QImageIOHandlerFactoryInterface::~QImageIOHandlerFactoryInterface +24 QImageIOHandlerFactoryInterface::~QImageIOHandlerFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QImageIOHandlerFactoryInterface + size=8 align=8 + base size=8 base align=8 +QImageIOHandlerFactoryInterface (0x7f62dd9d39a0) 0 nearly-empty + vptr=((& QImageIOHandlerFactoryInterface::_ZTV31QImageIOHandlerFactoryInterface) + 16u) + QFactoryInterface (0x7f62dd9d3a10) 0 nearly-empty + primary-for QImageIOHandlerFactoryInterface (0x7f62dd9d39a0) + +Vtable for QImageIOPlugin +QImageIOPlugin::_ZTV14QImageIOPlugin: 23u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QImageIOPlugin) +16 QImageIOPlugin::metaObject +24 QImageIOPlugin::qt_metacast +32 QImageIOPlugin::qt_metacall +40 QImageIOPlugin::~QImageIOPlugin +48 QImageIOPlugin::~QImageIOPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 (int (*)(...))-0x00000000000000010 +144 (int (*)(...))(& _ZTI14QImageIOPlugin) +152 QImageIOPlugin::_ZThn16_N14QImageIOPluginD1Ev +160 QImageIOPlugin::_ZThn16_N14QImageIOPluginD0Ev +168 __cxa_pure_virtual +176 __cxa_pure_virtual + +Class QImageIOPlugin + size=24 align=8 + base size=24 base align=8 +QImageIOPlugin (0x7f62dd9dac00) 0 + vptr=((& QImageIOPlugin::_ZTV14QImageIOPlugin) + 16u) + QObject (0x7f62dd9e53f0) 0 + primary-for QImageIOPlugin (0x7f62dd9dac00) + QImageIOHandlerFactoryInterface (0x7f62dd9e5460) 16 nearly-empty + vptr=((& QImageIOPlugin::_ZTV14QImageIOPlugin) + 152u) + QFactoryInterface (0x7f62dd9e54d0) 16 nearly-empty + primary-for QImageIOHandlerFactoryInterface (0x7f62dd9e5460) + +Class QImageReader + size=8 align=8 + base size=8 base align=8 +QImageReader (0x7f62dda394d0) 0 + +Class QImageWriter + size=8 align=8 + base size=8 base align=8 +QImageWriter (0x7f62dda39ee0) 0 + +Vtable for QMovie +QMovie::_ZTV6QMovie: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QMovie) +16 QMovie::metaObject +24 QMovie::qt_metacast +32 QMovie::qt_metacall +40 QMovie::~QMovie +48 QMovie::~QMovie +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QMovie + size=16 align=8 + base size=16 base align=8 +QMovie (0x7f62dda4e770) 0 + vptr=((& QMovie::_ZTV6QMovie) + 16u) + QObject (0x7f62dda4e7e0) 0 + primary-for QMovie (0x7f62dda4e770) + +Vtable for QPicture +QPicture::_ZTV8QPicture: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QPicture) +16 QPicture::~QPicture +24 QPicture::~QPicture +32 QPicture::devType +40 QPicture::paintEngine +48 QPicture::metric +56 QPicture::setData + +Class QPicture + size=24 align=8 + base size=24 base align=8 +QPicture (0x7f62dda947e0) 0 + vptr=((& QPicture::_ZTV8QPicture) + 16u) + QPaintDevice (0x7f62dda94850) 0 + primary-for QPicture (0x7f62dda947e0) + +Class QPictureIO + size=8 align=8 + base size=8 base align=8 +QPictureIO (0x7f62dd8b6310) 0 + +Vtable for QPictureFormatInterface +QPictureFormatInterface::_ZTV23QPictureFormatInterface: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QPictureFormatInterface) +16 QPictureFormatInterface::~QPictureFormatInterface +24 QPictureFormatInterface::~QPictureFormatInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual + +Class QPictureFormatInterface + size=8 align=8 + base size=8 base align=8 +QPictureFormatInterface (0x7f62dd8b6930) 0 nearly-empty + vptr=((& QPictureFormatInterface::_ZTV23QPictureFormatInterface) + 16u) + QFactoryInterface (0x7f62dd8b69a0) 0 nearly-empty + primary-for QPictureFormatInterface (0x7f62dd8b6930) + +Vtable for QPictureFormatPlugin +QPictureFormatPlugin::_ZTV20QPictureFormatPlugin: 26u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QPictureFormatPlugin) +16 QPictureFormatPlugin::metaObject +24 QPictureFormatPlugin::qt_metacast +32 QPictureFormatPlugin::qt_metacall +40 QPictureFormatPlugin::~QPictureFormatPlugin +48 QPictureFormatPlugin::~QPictureFormatPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 QPictureFormatPlugin::loadPicture +128 QPictureFormatPlugin::savePicture +136 __cxa_pure_virtual +144 (int (*)(...))-0x00000000000000010 +152 (int (*)(...))(& _ZTI20QPictureFormatPlugin) +160 QPictureFormatPlugin::_ZThn16_N20QPictureFormatPluginD1Ev +168 QPictureFormatPlugin::_ZThn16_N20QPictureFormatPluginD0Ev +176 __cxa_pure_virtual +184 QPictureFormatPlugin::_ZThn16_N20QPictureFormatPlugin11loadPictureERK7QStringS2_P8QPicture +192 QPictureFormatPlugin::_ZThn16_N20QPictureFormatPlugin11savePictureERK7QStringS2_RK8QPicture +200 __cxa_pure_virtual + +Class QPictureFormatPlugin + size=24 align=8 + base size=24 base align=8 +QPictureFormatPlugin (0x7f62dd8d2300) 0 + vptr=((& QPictureFormatPlugin::_ZTV20QPictureFormatPlugin) + 16u) + QObject (0x7f62dd8d3310) 0 + primary-for QPictureFormatPlugin (0x7f62dd8d2300) + QPictureFormatInterface (0x7f62dd8d3380) 16 nearly-empty + vptr=((& QPictureFormatPlugin::_ZTV20QPictureFormatPlugin) + 160u) + QFactoryInterface (0x7f62dd8d33f0) 16 nearly-empty + primary-for QPictureFormatInterface (0x7f62dd8d3380) + +Class QPixmapCache::Key + size=8 align=8 + base size=8 base align=8 +QPixmapCache::Key (0x7f62dd8e3310) 0 + +Class QPixmapCache + size=1 align=1 + base size=0 base align=1 +QPixmapCache (0x7f62dd8e32a0) 0 empty + +Vtable for QGraphicsEffect +QGraphicsEffect::_ZTV15QGraphicsEffect: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QGraphicsEffect) +16 QGraphicsEffect::metaObject +24 QGraphicsEffect::qt_metacast +32 QGraphicsEffect::qt_metacall +40 QGraphicsEffect::~QGraphicsEffect +48 QGraphicsEffect::~QGraphicsEffect +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsEffect::boundingRectFor +120 __cxa_pure_virtual +128 QGraphicsEffect::sourceChanged + +Class QGraphicsEffect + size=16 align=8 + base size=16 base align=8 +QGraphicsEffect (0x7f62dd8ec150) 0 + vptr=((& QGraphicsEffect::_ZTV15QGraphicsEffect) + 16u) + QObject (0x7f62dd8ec1c0) 0 + primary-for QGraphicsEffect (0x7f62dd8ec150) + +Vtable for QGraphicsColorizeEffect +QGraphicsColorizeEffect::_ZTV23QGraphicsColorizeEffect: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QGraphicsColorizeEffect) +16 QGraphicsColorizeEffect::metaObject +24 QGraphicsColorizeEffect::qt_metacast +32 QGraphicsColorizeEffect::qt_metacall +40 QGraphicsColorizeEffect::~QGraphicsColorizeEffect +48 QGraphicsColorizeEffect::~QGraphicsColorizeEffect +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsEffect::boundingRectFor +120 QGraphicsColorizeEffect::draw +128 QGraphicsEffect::sourceChanged + +Class QGraphicsColorizeEffect + size=16 align=8 + base size=16 base align=8 +QGraphicsColorizeEffect (0x7f62dd934c40) 0 + vptr=((& QGraphicsColorizeEffect::_ZTV23QGraphicsColorizeEffect) + 16u) + QGraphicsEffect (0x7f62dd934cb0) 0 + primary-for QGraphicsColorizeEffect (0x7f62dd934c40) + QObject (0x7f62dd934d20) 0 + primary-for QGraphicsEffect (0x7f62dd934cb0) + +Vtable for QGraphicsBlurEffect +QGraphicsBlurEffect::_ZTV19QGraphicsBlurEffect: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QGraphicsBlurEffect) +16 QGraphicsBlurEffect::metaObject +24 QGraphicsBlurEffect::qt_metacast +32 QGraphicsBlurEffect::qt_metacall +40 QGraphicsBlurEffect::~QGraphicsBlurEffect +48 QGraphicsBlurEffect::~QGraphicsBlurEffect +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsBlurEffect::boundingRectFor +120 QGraphicsBlurEffect::draw +128 QGraphicsEffect::sourceChanged + +Class QGraphicsBlurEffect + size=16 align=8 + base size=16 base align=8 +QGraphicsBlurEffect (0x7f62dd9625b0) 0 + vptr=((& QGraphicsBlurEffect::_ZTV19QGraphicsBlurEffect) + 16u) + QGraphicsEffect (0x7f62dd962620) 0 + primary-for QGraphicsBlurEffect (0x7f62dd9625b0) + QObject (0x7f62dd962690) 0 + primary-for QGraphicsEffect (0x7f62dd962620) + +Vtable for QGraphicsDropShadowEffect +QGraphicsDropShadowEffect::_ZTV25QGraphicsDropShadowEffect: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QGraphicsDropShadowEffect) +16 QGraphicsDropShadowEffect::metaObject +24 QGraphicsDropShadowEffect::qt_metacast +32 QGraphicsDropShadowEffect::qt_metacall +40 QGraphicsDropShadowEffect::~QGraphicsDropShadowEffect +48 QGraphicsDropShadowEffect::~QGraphicsDropShadowEffect +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsDropShadowEffect::boundingRectFor +120 QGraphicsDropShadowEffect::draw +128 QGraphicsEffect::sourceChanged + +Class QGraphicsDropShadowEffect + size=16 align=8 + base size=16 base align=8 +QGraphicsDropShadowEffect (0x7f62dd7c00e0) 0 + vptr=((& QGraphicsDropShadowEffect::_ZTV25QGraphicsDropShadowEffect) + 16u) + QGraphicsEffect (0x7f62dd7c0150) 0 + primary-for QGraphicsDropShadowEffect (0x7f62dd7c00e0) + QObject (0x7f62dd7c01c0) 0 + primary-for QGraphicsEffect (0x7f62dd7c0150) + +Vtable for QGraphicsOpacityEffect +QGraphicsOpacityEffect::_ZTV22QGraphicsOpacityEffect: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QGraphicsOpacityEffect) +16 QGraphicsOpacityEffect::metaObject +24 QGraphicsOpacityEffect::qt_metacast +32 QGraphicsOpacityEffect::qt_metacall +40 QGraphicsOpacityEffect::~QGraphicsOpacityEffect +48 QGraphicsOpacityEffect::~QGraphicsOpacityEffect +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsEffect::boundingRectFor +120 QGraphicsOpacityEffect::draw +128 QGraphicsEffect::sourceChanged + +Class QGraphicsOpacityEffect + size=16 align=8 + base size=16 base align=8 +QGraphicsOpacityEffect (0x7f62dd7df5b0) 0 + vptr=((& QGraphicsOpacityEffect::_ZTV22QGraphicsOpacityEffect) + 16u) + QGraphicsEffect (0x7f62dd7df620) 0 + primary-for QGraphicsOpacityEffect (0x7f62dd7df5b0) + QObject (0x7f62dd7df690) 0 + primary-for QGraphicsEffect (0x7f62dd7df620) + +Class QVFbHeader + size=1088 align=8 + base size=1088 base align=8 +QVFbHeader (0x7f62dd7f1ee0) 0 + +Class QVFbKeyData + size=12 align=4 + base size=12 base align=4 +QVFbKeyData (0x7f62dd7f1f50) 0 + +Vtable for QWSEmbedWidget +QWSEmbedWidget::_ZTV14QWSEmbedWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QWSEmbedWidget) +16 QWSEmbedWidget::metaObject +24 QWSEmbedWidget::qt_metacast +32 QWSEmbedWidget::qt_metacall +40 QWSEmbedWidget::~QWSEmbedWidget +48 QWSEmbedWidget::~QWSEmbedWidget +56 QWidget::event +64 QWSEmbedWidget::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWSEmbedWidget::moveEvent +264 QWSEmbedWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWSEmbedWidget::showEvent +344 QWSEmbedWidget::hideEvent +352 QWidget::x11Event +360 QWSEmbedWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI14QWSEmbedWidget) +464 QWSEmbedWidget::_ZThn16_N14QWSEmbedWidgetD1Ev +472 QWSEmbedWidget::_ZThn16_N14QWSEmbedWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWSEmbedWidget + size=40 align=8 + base size=40 base align=8 +QWSEmbedWidget (0x7f62dd7fb000) 0 + vptr=((& QWSEmbedWidget::_ZTV14QWSEmbedWidget) + 16u) + QWidget (0x7f62dd7ef900) 0 + primary-for QWSEmbedWidget (0x7f62dd7fb000) + QObject (0x7f62dd7fb070) 0 + primary-for QWidget (0x7f62dd7ef900) + QPaintDevice (0x7f62dd7fb0e0) 16 + vptr=((& QWSEmbedWidget::_ZTV14QWSEmbedWidget) + 464u) + +Class QColormap + size=8 align=8 + base size=8 base align=8 +QColormap (0x7f62dd8134d0) 0 + +Class QTileRules + size=8 align=4 + base size=8 base align=4 +QTileRules (0x7f62dd813cb0) 0 + +Class QDrawPixmaps::Data + size=80 align=8 + base size=80 base align=8 +QDrawPixmaps::Data (0x7f62dd82ad20) 0 + +Class QPainter + size=8 align=8 + base size=8 base align=8 +QPainter (0x7f62dd82ae00) 0 + +Class QTextItem + size=1 align=1 + base size=0 base align=1 +QTextItem (0x7f62dd6588c0) 0 empty + +Vtable for QPaintEngine +QPaintEngine::_ZTV12QPaintEngine: 24u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QPaintEngine) +16 QPaintEngine::~QPaintEngine +24 QPaintEngine::~QPaintEngine +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QPaintEngine::drawRects +64 QPaintEngine::drawRects +72 QPaintEngine::drawLines +80 QPaintEngine::drawLines +88 QPaintEngine::drawEllipse +96 QPaintEngine::drawEllipse +104 QPaintEngine::drawPath +112 QPaintEngine::drawPoints +120 QPaintEngine::drawPoints +128 QPaintEngine::drawPolygon +136 QPaintEngine::drawPolygon +144 __cxa_pure_virtual +152 QPaintEngine::drawTextItem +160 QPaintEngine::drawTiledPixmap +168 QPaintEngine::drawImage +176 QPaintEngine::coordinateOffset +184 __cxa_pure_virtual + +Class QPaintEngine + size=32 align=8 + base size=32 base align=8 +QPaintEngine (0x7f62dd658ee0) 0 + vptr=((& QPaintEngine::_ZTV12QPaintEngine) + 16u) + +Class QPaintEngineState + size=4 align=4 + base size=4 base align=4 +QPaintEngineState (0x7f62dd4a1b60) 0 + +Vtable for QPrinter +QPrinter::_ZTV8QPrinter: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QPrinter) +16 QPrinter::~QPrinter +24 QPrinter::~QPrinter +32 QPrinter::devType +40 QPrinter::paintEngine +48 QPrinter::metric + +Class QPrinter + size=24 align=8 + base size=24 base align=8 +QPrinter (0x7f62dd571e70) 0 + vptr=((& QPrinter::_ZTV8QPrinter) + 16u) + QPaintDevice (0x7f62dd571ee0) 0 + primary-for QPrinter (0x7f62dd571e70) + +Vtable for QPrintEngine +QPrintEngine::_ZTV12QPrintEngine: 10u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QPrintEngine) +16 QPrintEngine::~QPrintEngine +24 QPrintEngine::~QPrintEngine +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual + +Class QPrintEngine + size=8 align=8 + base size=8 base align=8 +QPrintEngine (0x7f62dd3d9540) 0 nearly-empty + vptr=((& QPrintEngine::_ZTV12QPrintEngine) + 16u) + +Class QPrinterInfo + size=8 align=8 + base size=8 base align=8 +QPrinterInfo (0x7f62dd3e62a0) 0 + +Class QStylePainter + size=24 align=8 + base size=24 base align=8 +QStylePainter (0x7f62dd3ee9a0) 0 + QPainter (0x7f62dd3eea10) 0 + +Vtable for QAbstractProxyModel +QAbstractProxyModel::_ZTV19QAbstractProxyModel: 47u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractProxyModel) +16 QAbstractProxyModel::metaObject +24 QAbstractProxyModel::qt_metacast +32 QAbstractProxyModel::qt_metacall +40 QAbstractProxyModel::~QAbstractProxyModel +48 QAbstractProxyModel::~QAbstractProxyModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractItemModel::hasChildren +152 QAbstractProxyModel::data +160 QAbstractProxyModel::setData +168 QAbstractProxyModel::headerData +176 QAbstractProxyModel::setHeaderData +184 QAbstractProxyModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractItemModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractProxyModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractProxyModel::submit +328 QAbstractProxyModel::revert +336 QAbstractProxyModel::setSourceModel +344 __cxa_pure_virtual +352 __cxa_pure_virtual +360 QAbstractProxyModel::mapSelectionToSource +368 QAbstractProxyModel::mapSelectionFromSource + +Class QAbstractProxyModel + size=16 align=8 + base size=16 base align=8 +QAbstractProxyModel (0x7f62dd41eee0) 0 + vptr=((& QAbstractProxyModel::_ZTV19QAbstractProxyModel) + 16u) + QAbstractItemModel (0x7f62dd41ef50) 0 + primary-for QAbstractProxyModel (0x7f62dd41eee0) + QObject (0x7f62dd422000) 0 + primary-for QAbstractItemModel (0x7f62dd41ef50) + +Vtable for QColumnView +QColumnView::_ZTV11QColumnView: 104u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QColumnView) +16 QColumnView::metaObject +24 QColumnView::qt_metacast +32 QColumnView::qt_metacall +40 QColumnView::~QColumnView +48 QColumnView::~QColumnView +56 QAbstractItemView::event +64 QObject::eventFilter +72 QAbstractItemView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QColumnView::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QAbstractItemView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QAbstractItemView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractScrollArea::paintEvent +256 QWidget::moveEvent +264 QColumnView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QColumnView::scrollContentsBy +464 QColumnView::setModel +472 QColumnView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QColumnView::visualRect +496 QColumnView::scrollTo +504 QColumnView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QAbstractItemView::reset +536 QColumnView::setRootIndex +544 QAbstractItemView::doItemsLayout +552 QColumnView::selectAll +560 QAbstractItemView::dataChanged +568 QColumnView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QAbstractItemView::selectionChanged +592 QColumnView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QAbstractItemView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QColumnView::moveCursor +688 QColumnView::horizontalOffset +696 QColumnView::verticalOffset +704 QColumnView::isIndexHidden +712 QColumnView::setSelection +720 QColumnView::visualRegionForSelection +728 QAbstractItemView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 QColumnView::createColumn +776 (int (*)(...))-0x00000000000000010 +784 (int (*)(...))(& _ZTI11QColumnView) +792 QColumnView::_ZThn16_N11QColumnViewD1Ev +800 QColumnView::_ZThn16_N11QColumnViewD0Ev +808 QWidget::_ZThn16_NK7QWidget7devTypeEv +816 QWidget::_ZThn16_NK7QWidget11paintEngineEv +824 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QColumnView + size=40 align=8 + base size=40 base align=8 +QColumnView (0x7f62dd43aaf0) 0 + vptr=((& QColumnView::_ZTV11QColumnView) + 16u) + QAbstractItemView (0x7f62dd43ab60) 0 + primary-for QColumnView (0x7f62dd43aaf0) + QAbstractScrollArea (0x7f62dd43abd0) 0 + primary-for QAbstractItemView (0x7f62dd43ab60) + QFrame (0x7f62dd43ac40) 0 + primary-for QAbstractScrollArea (0x7f62dd43abd0) + QWidget (0x7f62dd43f200) 0 + primary-for QFrame (0x7f62dd43ac40) + QObject (0x7f62dd43acb0) 0 + primary-for QWidget (0x7f62dd43f200) + QPaintDevice (0x7f62dd43ad20) 16 + vptr=((& QColumnView::_ZTV11QColumnView) + 792u) + +Vtable for QDataWidgetMapper +QDataWidgetMapper::_ZTV17QDataWidgetMapper: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QDataWidgetMapper) +16 QDataWidgetMapper::metaObject +24 QDataWidgetMapper::qt_metacast +32 QDataWidgetMapper::qt_metacall +40 QDataWidgetMapper::~QDataWidgetMapper +48 QDataWidgetMapper::~QDataWidgetMapper +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QDataWidgetMapper::setCurrentIndex + +Class QDataWidgetMapper + size=16 align=8 + base size=16 base align=8 +QDataWidgetMapper (0x7f62dd45fc40) 0 + vptr=((& QDataWidgetMapper::_ZTV17QDataWidgetMapper) + 16u) + QObject (0x7f62dd45fcb0) 0 + primary-for QDataWidgetMapper (0x7f62dd45fc40) + +Vtable for QFileIconProvider +QFileIconProvider::_ZTV17QFileIconProvider: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QFileIconProvider) +16 QFileIconProvider::~QFileIconProvider +24 QFileIconProvider::~QFileIconProvider +32 QFileIconProvider::icon +40 QFileIconProvider::icon +48 QFileIconProvider::type + +Class QFileIconProvider + size=16 align=8 + base size=16 base align=8 +QFileIconProvider (0x7f62dd480700) 0 + vptr=((& QFileIconProvider::_ZTV17QFileIconProvider) + 16u) + +Vtable for QDirModel +QDirModel::_ZTV9QDirModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QDirModel) +16 QDirModel::metaObject +24 QDirModel::qt_metacast +32 QDirModel::qt_metacall +40 QDirModel::~QDirModel +48 QDirModel::~QDirModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QDirModel::index +120 QDirModel::parent +128 QDirModel::rowCount +136 QDirModel::columnCount +144 QDirModel::hasChildren +152 QDirModel::data +160 QDirModel::setData +168 QDirModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QDirModel::mimeTypes +208 QDirModel::mimeData +216 QDirModel::dropMimeData +224 QDirModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QDirModel::flags +288 QDirModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QDirModel + size=16 align=8 + base size=16 base align=8 +QDirModel (0x7f62dd493380) 0 + vptr=((& QDirModel::_ZTV9QDirModel) + 16u) + QAbstractItemModel (0x7f62dd4933f0) 0 + primary-for QDirModel (0x7f62dd493380) + QObject (0x7f62dd493460) 0 + primary-for QAbstractItemModel (0x7f62dd4933f0) + +Vtable for QHeaderView +QHeaderView::_ZTV11QHeaderView: 105u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QHeaderView) +16 QHeaderView::metaObject +24 QHeaderView::qt_metacast +32 QHeaderView::qt_metacall +40 QHeaderView::~QHeaderView +48 QHeaderView::~QHeaderView +56 QHeaderView::event +64 QObject::eventFilter +72 QAbstractItemView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QHeaderView::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QHeaderView::mousePressEvent +168 QHeaderView::mouseReleaseEvent +176 QHeaderView::mouseDoubleClickEvent +184 QHeaderView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QHeaderView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QHeaderView::viewportEvent +456 QHeaderView::scrollContentsBy +464 QHeaderView::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QHeaderView::visualRect +496 QHeaderView::scrollTo +504 QHeaderView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QHeaderView::reset +536 QAbstractItemView::setRootIndex +544 QHeaderView::doItemsLayout +552 QAbstractItemView::selectAll +560 QHeaderView::dataChanged +568 QHeaderView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QAbstractItemView::selectionChanged +592 QHeaderView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QHeaderView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QHeaderView::moveCursor +688 QHeaderView::horizontalOffset +696 QHeaderView::verticalOffset +704 QHeaderView::isIndexHidden +712 QHeaderView::setSelection +720 QHeaderView::visualRegionForSelection +728 QAbstractItemView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 QHeaderView::paintSection +776 QHeaderView::sectionSizeFromContents +784 (int (*)(...))-0x00000000000000010 +792 (int (*)(...))(& _ZTI11QHeaderView) +800 QHeaderView::_ZThn16_N11QHeaderViewD1Ev +808 QHeaderView::_ZThn16_N11QHeaderViewD0Ev +816 QWidget::_ZThn16_NK7QWidget7devTypeEv +824 QWidget::_ZThn16_NK7QWidget11paintEngineEv +832 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QHeaderView + size=40 align=8 + base size=40 base align=8 +QHeaderView (0x7f62dd2bd620) 0 + vptr=((& QHeaderView::_ZTV11QHeaderView) + 16u) + QAbstractItemView (0x7f62dd2bd690) 0 + primary-for QHeaderView (0x7f62dd2bd620) + QAbstractScrollArea (0x7f62dd2bd700) 0 + primary-for QAbstractItemView (0x7f62dd2bd690) + QFrame (0x7f62dd2bd770) 0 + primary-for QAbstractScrollArea (0x7f62dd2bd700) + QWidget (0x7f62dd299980) 0 + primary-for QFrame (0x7f62dd2bd770) + QObject (0x7f62dd2bd7e0) 0 + primary-for QWidget (0x7f62dd299980) + QPaintDevice (0x7f62dd2bd850) 16 + vptr=((& QHeaderView::_ZTV11QHeaderView) + 800u) + +Vtable for QItemDelegate +QItemDelegate::_ZTV13QItemDelegate: 25u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QItemDelegate) +16 QItemDelegate::metaObject +24 QItemDelegate::qt_metacast +32 QItemDelegate::qt_metacall +40 QItemDelegate::~QItemDelegate +48 QItemDelegate::~QItemDelegate +56 QObject::event +64 QItemDelegate::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QItemDelegate::paint +120 QItemDelegate::sizeHint +128 QItemDelegate::createEditor +136 QItemDelegate::setEditorData +144 QItemDelegate::setModelData +152 QItemDelegate::updateEditorGeometry +160 QItemDelegate::editorEvent +168 QItemDelegate::drawDisplay +176 QItemDelegate::drawDecoration +184 QItemDelegate::drawFocus +192 QItemDelegate::drawCheck + +Class QItemDelegate + size=16 align=8 + base size=16 base align=8 +QItemDelegate (0x7f62dd303230) 0 + vptr=((& QItemDelegate::_ZTV13QItemDelegate) + 16u) + QAbstractItemDelegate (0x7f62dd3032a0) 0 + primary-for QItemDelegate (0x7f62dd303230) + QObject (0x7f62dd303310) 0 + primary-for QAbstractItemDelegate (0x7f62dd3032a0) + +Vtable for QItemEditorCreatorBase +QItemEditorCreatorBase::_ZTV22QItemEditorCreatorBase: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QItemEditorCreatorBase) +16 QItemEditorCreatorBase::~QItemEditorCreatorBase +24 QItemEditorCreatorBase::~QItemEditorCreatorBase +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QItemEditorCreatorBase + size=8 align=8 + base size=8 base align=8 +QItemEditorCreatorBase (0x7f62dd31ebd0) 0 nearly-empty + vptr=((& QItemEditorCreatorBase::_ZTV22QItemEditorCreatorBase) + 16u) + +Vtable for QItemEditorFactory +QItemEditorFactory::_ZTV18QItemEditorFactory: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QItemEditorFactory) +16 QItemEditorFactory::~QItemEditorFactory +24 QItemEditorFactory::~QItemEditorFactory +32 QItemEditorFactory::createEditor +40 QItemEditorFactory::valuePropertyName + +Class QItemEditorFactory + size=16 align=8 + base size=16 base align=8 +QItemEditorFactory (0x7f62dd329a80) 0 + vptr=((& QItemEditorFactory::_ZTV18QItemEditorFactory) + 16u) + +Vtable for QListWidgetItem +QListWidgetItem::_ZTV15QListWidgetItem: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QListWidgetItem) +16 QListWidgetItem::~QListWidgetItem +24 QListWidgetItem::~QListWidgetItem +32 QListWidgetItem::clone +40 QListWidgetItem::setBackgroundColor +48 QListWidgetItem::data +56 QListWidgetItem::setData +64 QListWidgetItem::operator< +72 QListWidgetItem::read +80 QListWidgetItem::write + +Class QListWidgetItem + size=48 align=8 + base size=44 base align=8 +QListWidgetItem (0x7f62dd337d20) 0 + vptr=((& QListWidgetItem::_ZTV15QListWidgetItem) + 16u) + +Vtable for QListWidget +QListWidget::_ZTV11QListWidget: 107u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QListWidget) +16 QListWidget::metaObject +24 QListWidget::qt_metacast +32 QListWidget::qt_metacall +40 QListWidget::~QListWidget +48 QListWidget::~QListWidget +56 QListWidget::event +64 QObject::eventFilter +72 QListView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QListView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QListView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QListView::paintEvent +256 QWidget::moveEvent +264 QListView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QListView::dragMoveEvent +320 QListView::dragLeaveEvent +328 QListWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QListView::scrollContentsBy +464 QListWidget::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QListView::visualRect +496 QListView::scrollTo +504 QListView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QListView::reset +536 QListView::setRootIndex +544 QListView::doItemsLayout +552 QAbstractItemView::selectAll +560 QListView::dataChanged +568 QListView::rowsInserted +576 QListView::rowsAboutToBeRemoved +584 QListView::selectionChanged +592 QListView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QListView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QListView::moveCursor +688 QListView::horizontalOffset +696 QListView::verticalOffset +704 QListView::isIndexHidden +712 QListView::setSelection +720 QListView::visualRegionForSelection +728 QListView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QListView::startDrag +760 QListView::viewOptions +768 QListWidget::mimeTypes +776 QListWidget::mimeData +784 QListWidget::dropMimeData +792 QListWidget::supportedDropActions +800 (int (*)(...))-0x00000000000000010 +808 (int (*)(...))(& _ZTI11QListWidget) +816 QListWidget::_ZThn16_N11QListWidgetD1Ev +824 QListWidget::_ZThn16_N11QListWidgetD0Ev +832 QWidget::_ZThn16_NK7QWidget7devTypeEv +840 QWidget::_ZThn16_NK7QWidget11paintEngineEv +848 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QListWidget + size=40 align=8 + base size=40 base align=8 +QListWidget (0x7f62dd1c73f0) 0 + vptr=((& QListWidget::_ZTV11QListWidget) + 16u) + QListView (0x7f62dd1c7460) 0 + primary-for QListWidget (0x7f62dd1c73f0) + QAbstractItemView (0x7f62dd1c74d0) 0 + primary-for QListView (0x7f62dd1c7460) + QAbstractScrollArea (0x7f62dd1c7540) 0 + primary-for QAbstractItemView (0x7f62dd1c74d0) + QFrame (0x7f62dd1c75b0) 0 + primary-for QAbstractScrollArea (0x7f62dd1c7540) + QWidget (0x7f62dd1c0a00) 0 + primary-for QFrame (0x7f62dd1c75b0) + QObject (0x7f62dd1c7620) 0 + primary-for QWidget (0x7f62dd1c0a00) + QPaintDevice (0x7f62dd1c7690) 16 + vptr=((& QListWidget::_ZTV11QListWidget) + 816u) + +Vtable for QProxyModel +QProxyModel::_ZTV11QProxyModel: 43u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QProxyModel) +16 QProxyModel::metaObject +24 QProxyModel::qt_metacast +32 QProxyModel::qt_metacall +40 QProxyModel::~QProxyModel +48 QProxyModel::~QProxyModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QProxyModel::index +120 QProxyModel::parent +128 QProxyModel::rowCount +136 QProxyModel::columnCount +144 QProxyModel::hasChildren +152 QProxyModel::data +160 QProxyModel::setData +168 QProxyModel::headerData +176 QProxyModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QProxyModel::mimeTypes +208 QProxyModel::mimeData +216 QProxyModel::dropMimeData +224 QProxyModel::supportedDropActions +232 QProxyModel::insertRows +240 QProxyModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QProxyModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QProxyModel::flags +288 QProxyModel::sort +296 QAbstractItemModel::buddy +304 QProxyModel::match +312 QProxyModel::span +320 QProxyModel::submit +328 QProxyModel::revert +336 QProxyModel::setModel + +Class QProxyModel + size=16 align=8 + base size=16 base align=8 +QProxyModel (0x7f62dd200850) 0 + vptr=((& QProxyModel::_ZTV11QProxyModel) + 16u) + QAbstractItemModel (0x7f62dd2008c0) 0 + primary-for QProxyModel (0x7f62dd200850) + QObject (0x7f62dd200930) 0 + primary-for QAbstractItemModel (0x7f62dd2008c0) + +Vtable for QSortFilterProxyModel +QSortFilterProxyModel::_ZTV21QSortFilterProxyModel: 50u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QSortFilterProxyModel) +16 QSortFilterProxyModel::metaObject +24 QSortFilterProxyModel::qt_metacast +32 QSortFilterProxyModel::qt_metacall +40 QSortFilterProxyModel::~QSortFilterProxyModel +48 QSortFilterProxyModel::~QSortFilterProxyModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QSortFilterProxyModel::index +120 QSortFilterProxyModel::parent +128 QSortFilterProxyModel::rowCount +136 QSortFilterProxyModel::columnCount +144 QSortFilterProxyModel::hasChildren +152 QSortFilterProxyModel::data +160 QSortFilterProxyModel::setData +168 QSortFilterProxyModel::headerData +176 QSortFilterProxyModel::setHeaderData +184 QAbstractProxyModel::itemData +192 QAbstractItemModel::setItemData +200 QSortFilterProxyModel::mimeTypes +208 QSortFilterProxyModel::mimeData +216 QSortFilterProxyModel::dropMimeData +224 QSortFilterProxyModel::supportedDropActions +232 QSortFilterProxyModel::insertRows +240 QSortFilterProxyModel::insertColumns +248 QSortFilterProxyModel::removeRows +256 QSortFilterProxyModel::removeColumns +264 QSortFilterProxyModel::fetchMore +272 QSortFilterProxyModel::canFetchMore +280 QSortFilterProxyModel::flags +288 QSortFilterProxyModel::sort +296 QSortFilterProxyModel::buddy +304 QSortFilterProxyModel::match +312 QSortFilterProxyModel::span +320 QAbstractProxyModel::submit +328 QAbstractProxyModel::revert +336 QSortFilterProxyModel::setSourceModel +344 QSortFilterProxyModel::mapToSource +352 QSortFilterProxyModel::mapFromSource +360 QSortFilterProxyModel::mapSelectionToSource +368 QSortFilterProxyModel::mapSelectionFromSource +376 QSortFilterProxyModel::filterAcceptsRow +384 QSortFilterProxyModel::filterAcceptsColumn +392 QSortFilterProxyModel::lessThan + +Class QSortFilterProxyModel + size=16 align=8 + base size=16 base align=8 +QSortFilterProxyModel (0x7f62dd225700) 0 + vptr=((& QSortFilterProxyModel::_ZTV21QSortFilterProxyModel) + 16u) + QAbstractProxyModel (0x7f62dd225770) 0 + primary-for QSortFilterProxyModel (0x7f62dd225700) + QAbstractItemModel (0x7f62dd2257e0) 0 + primary-for QAbstractProxyModel (0x7f62dd225770) + QObject (0x7f62dd225850) 0 + primary-for QAbstractItemModel (0x7f62dd2257e0) + +Vtable for QStandardItem +QStandardItem::_ZTV13QStandardItem: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QStandardItem) +16 QStandardItem::~QStandardItem +24 QStandardItem::~QStandardItem +32 QStandardItem::data +40 QStandardItem::setData +48 QStandardItem::clone +56 QStandardItem::type +64 QStandardItem::read +72 QStandardItem::write +80 QStandardItem::operator< + +Class QStandardItem + size=16 align=8 + base size=16 base align=8 +QStandardItem (0x7f62dd254620) 0 + vptr=((& QStandardItem::_ZTV13QStandardItem) + 16u) + +Vtable for QStandardItemModel +QStandardItemModel::_ZTV18QStandardItemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QStandardItemModel) +16 QStandardItemModel::metaObject +24 QStandardItemModel::qt_metacast +32 QStandardItemModel::qt_metacall +40 QStandardItemModel::~QStandardItemModel +48 QStandardItemModel::~QStandardItemModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QStandardItemModel::index +120 QStandardItemModel::parent +128 QStandardItemModel::rowCount +136 QStandardItemModel::columnCount +144 QStandardItemModel::hasChildren +152 QStandardItemModel::data +160 QStandardItemModel::setData +168 QStandardItemModel::headerData +176 QStandardItemModel::setHeaderData +184 QStandardItemModel::itemData +192 QStandardItemModel::setItemData +200 QStandardItemModel::mimeTypes +208 QStandardItemModel::mimeData +216 QStandardItemModel::dropMimeData +224 QStandardItemModel::supportedDropActions +232 QStandardItemModel::insertRows +240 QStandardItemModel::insertColumns +248 QStandardItemModel::removeRows +256 QStandardItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QStandardItemModel::flags +288 QStandardItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QStandardItemModel + size=16 align=8 + base size=16 base align=8 +QStandardItemModel (0x7f62dd1403f0) 0 + vptr=((& QStandardItemModel::_ZTV18QStandardItemModel) + 16u) + QAbstractItemModel (0x7f62dd140460) 0 + primary-for QStandardItemModel (0x7f62dd1403f0) + QObject (0x7f62dd1404d0) 0 + primary-for QAbstractItemModel (0x7f62dd140460) + +Vtable for QStringListModel +QStringListModel::_ZTV16QStringListModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QStringListModel) +16 QStringListModel::metaObject +24 QStringListModel::qt_metacast +32 QStringListModel::qt_metacall +40 QStringListModel::~QStringListModel +48 QStringListModel::~QStringListModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractListModel::index +120 QAbstractListModel::parent +128 QStringListModel::rowCount +136 QAbstractListModel::columnCount +144 QAbstractListModel::hasChildren +152 QStringListModel::data +160 QStringListModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractListModel::dropMimeData +224 QStringListModel::supportedDropActions +232 QStringListModel::insertRows +240 QAbstractItemModel::insertColumns +248 QStringListModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QStringListModel::flags +288 QStringListModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QStringListModel + size=24 align=8 + base size=24 base align=8 +QStringListModel (0x7f62dd179f50) 0 + vptr=((& QStringListModel::_ZTV16QStringListModel) + 16u) + QAbstractListModel (0x7f62dd18c000) 0 + primary-for QStringListModel (0x7f62dd179f50) + QAbstractItemModel (0x7f62dd18c070) 0 + primary-for QAbstractListModel (0x7f62dd18c000) + QObject (0x7f62dd18c0e0) 0 + primary-for QAbstractItemModel (0x7f62dd18c070) + +Vtable for QStyledItemDelegate +QStyledItemDelegate::_ZTV19QStyledItemDelegate: 23u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QStyledItemDelegate) +16 QStyledItemDelegate::metaObject +24 QStyledItemDelegate::qt_metacast +32 QStyledItemDelegate::qt_metacall +40 QStyledItemDelegate::~QStyledItemDelegate +48 QStyledItemDelegate::~QStyledItemDelegate +56 QObject::event +64 QStyledItemDelegate::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QStyledItemDelegate::paint +120 QStyledItemDelegate::sizeHint +128 QStyledItemDelegate::createEditor +136 QStyledItemDelegate::setEditorData +144 QStyledItemDelegate::setModelData +152 QStyledItemDelegate::updateEditorGeometry +160 QStyledItemDelegate::editorEvent +168 QStyledItemDelegate::displayText +176 QStyledItemDelegate::initStyleOption + +Class QStyledItemDelegate + size=16 align=8 + base size=16 base align=8 +QStyledItemDelegate (0x7f62dcfa45b0) 0 + vptr=((& QStyledItemDelegate::_ZTV19QStyledItemDelegate) + 16u) + QAbstractItemDelegate (0x7f62dcfa4620) 0 + primary-for QStyledItemDelegate (0x7f62dcfa45b0) + QObject (0x7f62dcfa4690) 0 + primary-for QAbstractItemDelegate (0x7f62dcfa4620) + +Vtable for QTableView +QTableView::_ZTV10QTableView: 103u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTableView) +16 QTableView::metaObject +24 QTableView::qt_metacast +32 QTableView::qt_metacall +40 QTableView::~QTableView +48 QTableView::~QTableView +56 QAbstractItemView::event +64 QObject::eventFilter +72 QTableView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QAbstractItemView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QAbstractItemView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTableView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QTableView::scrollContentsBy +464 QTableView::setModel +472 QTableView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QTableView::visualRect +496 QTableView::scrollTo +504 QTableView::indexAt +512 QTableView::sizeHintForRow +520 QTableView::sizeHintForColumn +528 QAbstractItemView::reset +536 QTableView::setRootIndex +544 QAbstractItemView::doItemsLayout +552 QAbstractItemView::selectAll +560 QAbstractItemView::dataChanged +568 QAbstractItemView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QTableView::selectionChanged +592 QTableView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QTableView::updateGeometries +624 QTableView::verticalScrollbarAction +632 QTableView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QTableView::moveCursor +688 QTableView::horizontalOffset +696 QTableView::verticalOffset +704 QTableView::isIndexHidden +712 QTableView::setSelection +720 QTableView::visualRegionForSelection +728 QTableView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QTableView::viewOptions +768 (int (*)(...))-0x00000000000000010 +776 (int (*)(...))(& _ZTI10QTableView) +784 QTableView::_ZThn16_N10QTableViewD1Ev +792 QTableView::_ZThn16_N10QTableViewD0Ev +800 QWidget::_ZThn16_NK7QWidget7devTypeEv +808 QWidget::_ZThn16_NK7QWidget11paintEngineEv +816 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTableView + size=40 align=8 + base size=40 base align=8 +QTableView (0x7f62dcfbbf50) 0 + vptr=((& QTableView::_ZTV10QTableView) + 16u) + QAbstractItemView (0x7f62dcfc2000) 0 + primary-for QTableView (0x7f62dcfbbf50) + QAbstractScrollArea (0x7f62dcfc2070) 0 + primary-for QAbstractItemView (0x7f62dcfc2000) + QFrame (0x7f62dcfc20e0) 0 + primary-for QAbstractScrollArea (0x7f62dcfc2070) + QWidget (0x7f62dcfa3b00) 0 + primary-for QFrame (0x7f62dcfc20e0) + QObject (0x7f62dcfc2150) 0 + primary-for QWidget (0x7f62dcfa3b00) + QPaintDevice (0x7f62dcfc21c0) 16 + vptr=((& QTableView::_ZTV10QTableView) + 784u) + +Class QTableWidgetSelectionRange + size=16 align=4 + base size=16 base align=4 +QTableWidgetSelectionRange (0x7f62dcfedd20) 0 + +Vtable for QTableWidgetItem +QTableWidgetItem::_ZTV16QTableWidgetItem: 10u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QTableWidgetItem) +16 QTableWidgetItem::~QTableWidgetItem +24 QTableWidgetItem::~QTableWidgetItem +32 QTableWidgetItem::clone +40 QTableWidgetItem::data +48 QTableWidgetItem::setData +56 QTableWidgetItem::operator< +64 QTableWidgetItem::read +72 QTableWidgetItem::write + +Class QTableWidgetItem + size=48 align=8 + base size=44 base align=8 +QTableWidgetItem (0x7f62dcffd230) 0 + vptr=((& QTableWidgetItem::_ZTV16QTableWidgetItem) + 16u) + +Vtable for QTableWidget +QTableWidget::_ZTV12QTableWidget: 107u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTableWidget) +16 QTableWidget::metaObject +24 QTableWidget::qt_metacast +32 QTableWidget::qt_metacall +40 QTableWidget::~QTableWidget +48 QTableWidget::~QTableWidget +56 QTableWidget::event +64 QObject::eventFilter +72 QTableView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QAbstractItemView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QAbstractItemView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTableView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QTableWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QTableView::scrollContentsBy +464 QTableWidget::setModel +472 QTableView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QTableView::visualRect +496 QTableView::scrollTo +504 QTableView::indexAt +512 QTableView::sizeHintForRow +520 QTableView::sizeHintForColumn +528 QAbstractItemView::reset +536 QTableView::setRootIndex +544 QAbstractItemView::doItemsLayout +552 QAbstractItemView::selectAll +560 QAbstractItemView::dataChanged +568 QAbstractItemView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QTableView::selectionChanged +592 QTableView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QTableView::updateGeometries +624 QTableView::verticalScrollbarAction +632 QTableView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QTableView::moveCursor +688 QTableView::horizontalOffset +696 QTableView::verticalOffset +704 QTableView::isIndexHidden +712 QTableView::setSelection +720 QTableView::visualRegionForSelection +728 QTableView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QTableView::viewOptions +768 QTableWidget::mimeTypes +776 QTableWidget::mimeData +784 QTableWidget::dropMimeData +792 QTableWidget::supportedDropActions +800 (int (*)(...))-0x00000000000000010 +808 (int (*)(...))(& _ZTI12QTableWidget) +816 QTableWidget::_ZThn16_N12QTableWidgetD1Ev +824 QTableWidget::_ZThn16_N12QTableWidgetD0Ev +832 QWidget::_ZThn16_NK7QWidget7devTypeEv +840 QWidget::_ZThn16_NK7QWidget11paintEngineEv +848 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTableWidget + size=40 align=8 + base size=40 base align=8 +QTableWidget (0x7f62dd0717e0) 0 + vptr=((& QTableWidget::_ZTV12QTableWidget) + 16u) + QTableView (0x7f62dd071850) 0 + primary-for QTableWidget (0x7f62dd0717e0) + QAbstractItemView (0x7f62dd0718c0) 0 + primary-for QTableView (0x7f62dd071850) + QAbstractScrollArea (0x7f62dd071930) 0 + primary-for QAbstractItemView (0x7f62dd0718c0) + QFrame (0x7f62dd0719a0) 0 + primary-for QAbstractScrollArea (0x7f62dd071930) + QWidget (0x7f62dd068c80) 0 + primary-for QFrame (0x7f62dd0719a0) + QObject (0x7f62dd071a10) 0 + primary-for QWidget (0x7f62dd068c80) + QPaintDevice (0x7f62dd071a80) 16 + vptr=((& QTableWidget::_ZTV12QTableWidget) + 816u) + +Vtable for QTreeView +QTreeView::_ZTV9QTreeView: 105u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTreeView) +16 QTreeView::metaObject +24 QTreeView::qt_metacast +32 QTreeView::qt_metacall +40 QTreeView::~QTreeView +48 QTreeView::~QTreeView +56 QAbstractItemView::event +64 QObject::eventFilter +72 QTreeView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTreeView::mousePressEvent +168 QTreeView::mouseReleaseEvent +176 QTreeView::mouseDoubleClickEvent +184 QTreeView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QTreeView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTreeView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QTreeView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QTreeView::viewportEvent +456 QTreeView::scrollContentsBy +464 QTreeView::setModel +472 QTreeView::setSelectionModel +480 QTreeView::keyboardSearch +488 QTreeView::visualRect +496 QTreeView::scrollTo +504 QTreeView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QTreeView::sizeHintForColumn +528 QTreeView::reset +536 QTreeView::setRootIndex +544 QTreeView::doItemsLayout +552 QTreeView::selectAll +560 QTreeView::dataChanged +568 QTreeView::rowsInserted +576 QTreeView::rowsAboutToBeRemoved +584 QTreeView::selectionChanged +592 QTreeView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QTreeView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QTreeView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QTreeView::moveCursor +688 QTreeView::horizontalOffset +696 QTreeView::verticalOffset +704 QTreeView::isIndexHidden +712 QTreeView::setSelection +720 QTreeView::visualRegionForSelection +728 QTreeView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 QTreeView::drawRow +776 QTreeView::drawBranches +784 (int (*)(...))-0x00000000000000010 +792 (int (*)(...))(& _ZTI9QTreeView) +800 QTreeView::_ZThn16_N9QTreeViewD1Ev +808 QTreeView::_ZThn16_N9QTreeViewD0Ev +816 QWidget::_ZThn16_NK7QWidget7devTypeEv +824 QWidget::_ZThn16_NK7QWidget11paintEngineEv +832 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTreeView + size=40 align=8 + base size=40 base align=8 +QTreeView (0x7f62dceaf770) 0 + vptr=((& QTreeView::_ZTV9QTreeView) + 16u) + QAbstractItemView (0x7f62dceaf7e0) 0 + primary-for QTreeView (0x7f62dceaf770) + QAbstractScrollArea (0x7f62dceaf850) 0 + primary-for QAbstractItemView (0x7f62dceaf7e0) + QFrame (0x7f62dceaf8c0) 0 + primary-for QAbstractScrollArea (0x7f62dceaf850) + QWidget (0x7f62dceae600) 0 + primary-for QFrame (0x7f62dceaf8c0) + QObject (0x7f62dceaf930) 0 + primary-for QWidget (0x7f62dceae600) + QPaintDevice (0x7f62dceaf9a0) 16 + vptr=((& QTreeView::_ZTV9QTreeView) + 800u) + +Class QTreeWidgetItemIterator + size=24 align=8 + base size=20 base align=8 +QTreeWidgetItemIterator (0x7f62dceea540) 0 + +Vtable for QTreeWidgetItem +QTreeWidgetItem::_ZTV15QTreeWidgetItem: 10u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QTreeWidgetItem) +16 QTreeWidgetItem::~QTreeWidgetItem +24 QTreeWidgetItem::~QTreeWidgetItem +32 QTreeWidgetItem::clone +40 QTreeWidgetItem::data +48 QTreeWidgetItem::setData +56 QTreeWidgetItem::operator< +64 QTreeWidgetItem::read +72 QTreeWidgetItem::write + +Class QTreeWidgetItem + size=64 align=8 + base size=60 base align=8 +QTreeWidgetItem (0x7f62dcf562a0) 0 + vptr=((& QTreeWidgetItem::_ZTV15QTreeWidgetItem) + 16u) + +Vtable for QTreeWidget +QTreeWidget::_ZTV11QTreeWidget: 109u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTreeWidget) +16 QTreeWidget::metaObject +24 QTreeWidget::qt_metacast +32 QTreeWidget::qt_metacall +40 QTreeWidget::~QTreeWidget +48 QTreeWidget::~QTreeWidget +56 QTreeWidget::event +64 QObject::eventFilter +72 QTreeView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTreeView::mousePressEvent +168 QTreeView::mouseReleaseEvent +176 QTreeView::mouseDoubleClickEvent +184 QTreeView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QTreeView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTreeView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QTreeView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QTreeWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QTreeView::viewportEvent +456 QTreeView::scrollContentsBy +464 QTreeWidget::setModel +472 QTreeWidget::setSelectionModel +480 QTreeView::keyboardSearch +488 QTreeView::visualRect +496 QTreeView::scrollTo +504 QTreeView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QTreeView::sizeHintForColumn +528 QTreeView::reset +536 QTreeView::setRootIndex +544 QTreeView::doItemsLayout +552 QTreeView::selectAll +560 QTreeView::dataChanged +568 QTreeView::rowsInserted +576 QTreeView::rowsAboutToBeRemoved +584 QTreeView::selectionChanged +592 QTreeView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QTreeView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QTreeView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QTreeView::moveCursor +688 QTreeView::horizontalOffset +696 QTreeView::verticalOffset +704 QTreeView::isIndexHidden +712 QTreeView::setSelection +720 QTreeView::visualRegionForSelection +728 QTreeView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 QTreeView::drawRow +776 QTreeView::drawBranches +784 QTreeWidget::mimeTypes +792 QTreeWidget::mimeData +800 QTreeWidget::dropMimeData +808 QTreeWidget::supportedDropActions +816 (int (*)(...))-0x00000000000000010 +824 (int (*)(...))(& _ZTI11QTreeWidget) +832 QTreeWidget::_ZThn16_N11QTreeWidgetD1Ev +840 QTreeWidget::_ZThn16_N11QTreeWidgetD0Ev +848 QWidget::_ZThn16_NK7QWidget7devTypeEv +856 QWidget::_ZThn16_NK7QWidget11paintEngineEv +864 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTreeWidget + size=40 align=8 + base size=40 base align=8 +QTreeWidget (0x7f62dce068c0) 0 + vptr=((& QTreeWidget::_ZTV11QTreeWidget) + 16u) + QTreeView (0x7f62dce06930) 0 + primary-for QTreeWidget (0x7f62dce068c0) + QAbstractItemView (0x7f62dce069a0) 0 + primary-for QTreeView (0x7f62dce06930) + QAbstractScrollArea (0x7f62dce06a10) 0 + primary-for QAbstractItemView (0x7f62dce069a0) + QFrame (0x7f62dce06a80) 0 + primary-for QAbstractScrollArea (0x7f62dce06a10) + QWidget (0x7f62dce08200) 0 + primary-for QFrame (0x7f62dce06a80) + QObject (0x7f62dce06af0) 0 + primary-for QWidget (0x7f62dce08200) + QPaintDevice (0x7f62dce06b60) 16 + vptr=((& QTreeWidget::_ZTV11QTreeWidget) + 832u) + +Class QAccessible + size=1 align=1 + base size=0 base align=1 +QAccessible (0x7f62dce4dc40) 0 empty + +Vtable for QAccessibleInterface +QAccessibleInterface::_ZTV20QAccessibleInterface: 19u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QAccessibleInterface) +16 QAccessibleInterface::~QAccessibleInterface +24 QAccessibleInterface::~QAccessibleInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual + +Class QAccessibleInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleInterface (0x7f62dccf6e00) 0 nearly-empty + vptr=((& QAccessibleInterface::_ZTV20QAccessibleInterface) + 16u) + QAccessible (0x7f62dccf6e70) 0 empty + +Vtable for QAccessibleInterfaceEx +QAccessibleInterfaceEx::_ZTV22QAccessibleInterfaceEx: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QAccessibleInterfaceEx) +16 QAccessibleInterfaceEx::~QAccessibleInterfaceEx +24 QAccessibleInterfaceEx::~QAccessibleInterfaceEx +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 QAccessibleInterfaceEx::virtual_hook +168 QAccessibleInterfaceEx::interface_cast + +Class QAccessibleInterfaceEx + size=8 align=8 + base size=8 base align=8 +QAccessibleInterfaceEx (0x7f62dcd72b60) 0 nearly-empty + vptr=((& QAccessibleInterfaceEx::_ZTV22QAccessibleInterfaceEx) + 16u) + QAccessibleInterface (0x7f62dcd72bd0) 0 nearly-empty + primary-for QAccessibleInterfaceEx (0x7f62dcd72b60) + QAccessible (0x7f62dcd72c40) 0 empty + +Vtable for QAccessibleEvent +QAccessibleEvent::_ZTV16QAccessibleEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QAccessibleEvent) +16 QAccessibleEvent::~QAccessibleEvent +24 QAccessibleEvent::~QAccessibleEvent + +Class QAccessibleEvent + size=32 align=8 + base size=32 base align=8 +QAccessibleEvent (0x7f62dcd72ee0) 0 + vptr=((& QAccessibleEvent::_ZTV16QAccessibleEvent) + 16u) + QEvent (0x7f62dcd72f50) 0 + primary-for QAccessibleEvent (0x7f62dcd72ee0) + +Vtable for QAccessible2Interface +QAccessible2Interface::_ZTV21QAccessible2Interface: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QAccessible2Interface) +16 QAccessible2Interface::~QAccessible2Interface +24 QAccessible2Interface::~QAccessible2Interface + +Class QAccessible2Interface + size=8 align=8 + base size=8 base align=8 +QAccessible2Interface (0x7f62dcd88f50) 0 nearly-empty + vptr=((& QAccessible2Interface::_ZTV21QAccessible2Interface) + 16u) + +Vtable for QAccessibleTextInterface +QAccessibleTextInterface::_ZTV24QAccessibleTextInterface: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QAccessibleTextInterface) +16 QAccessibleTextInterface::~QAccessibleTextInterface +24 QAccessibleTextInterface::~QAccessibleTextInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual + +Class QAccessibleTextInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleTextInterface (0x7f62dcb9e1c0) 0 nearly-empty + vptr=((& QAccessibleTextInterface::_ZTV24QAccessibleTextInterface) + 16u) + QAccessible2Interface (0x7f62dcb9e230) 0 nearly-empty + primary-for QAccessibleTextInterface (0x7f62dcb9e1c0) + +Vtable for QAccessibleEditableTextInterface +QAccessibleEditableTextInterface::_ZTV32QAccessibleEditableTextInterface: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI32QAccessibleEditableTextInterface) +16 QAccessibleEditableTextInterface::~QAccessibleEditableTextInterface +24 QAccessibleEditableTextInterface::~QAccessibleEditableTextInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual + +Class QAccessibleEditableTextInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleEditableTextInterface (0x7f62dcbb0070) 0 nearly-empty + vptr=((& QAccessibleEditableTextInterface::_ZTV32QAccessibleEditableTextInterface) + 16u) + QAccessible2Interface (0x7f62dcbb00e0) 0 nearly-empty + primary-for QAccessibleEditableTextInterface (0x7f62dcbb0070) + +Vtable for QAccessibleSimpleEditableTextInterface +QAccessibleSimpleEditableTextInterface::_ZTV38QAccessibleSimpleEditableTextInterface: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI38QAccessibleSimpleEditableTextInterface) +16 QAccessibleSimpleEditableTextInterface::~QAccessibleSimpleEditableTextInterface +24 QAccessibleSimpleEditableTextInterface::~QAccessibleSimpleEditableTextInterface +32 QAccessibleSimpleEditableTextInterface::copyText +40 QAccessibleSimpleEditableTextInterface::deleteText +48 QAccessibleSimpleEditableTextInterface::insertText +56 QAccessibleSimpleEditableTextInterface::cutText +64 QAccessibleSimpleEditableTextInterface::pasteText +72 QAccessibleSimpleEditableTextInterface::replaceText +80 QAccessibleSimpleEditableTextInterface::setAttributes + +Class QAccessibleSimpleEditableTextInterface + size=16 align=8 + base size=16 base align=8 +QAccessibleSimpleEditableTextInterface (0x7f62dcbb0f50) 0 + vptr=((& QAccessibleSimpleEditableTextInterface::_ZTV38QAccessibleSimpleEditableTextInterface) + 16u) + QAccessibleEditableTextInterface (0x7f62dcbb0310) 0 nearly-empty + primary-for QAccessibleSimpleEditableTextInterface (0x7f62dcbb0f50) + QAccessible2Interface (0x7f62dcbbb000) 0 nearly-empty + primary-for QAccessibleEditableTextInterface (0x7f62dcbb0310) + +Vtable for QAccessibleValueInterface +QAccessibleValueInterface::_ZTV25QAccessibleValueInterface: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QAccessibleValueInterface) +16 QAccessibleValueInterface::~QAccessibleValueInterface +24 QAccessibleValueInterface::~QAccessibleValueInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual + +Class QAccessibleValueInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleValueInterface (0x7f62dcbbb230) 0 nearly-empty + vptr=((& QAccessibleValueInterface::_ZTV25QAccessibleValueInterface) + 16u) + QAccessible2Interface (0x7f62dcbbb2a0) 0 nearly-empty + primary-for QAccessibleValueInterface (0x7f62dcbbb230) + +Vtable for QAccessibleTableInterface +QAccessibleTableInterface::_ZTV25QAccessibleTableInterface: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QAccessibleTableInterface) +16 QAccessibleTableInterface::~QAccessibleTableInterface +24 QAccessibleTableInterface::~QAccessibleTableInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 __cxa_pure_virtual +208 __cxa_pure_virtual +216 __cxa_pure_virtual +224 __cxa_pure_virtual +232 __cxa_pure_virtual + +Class QAccessibleTableInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleTableInterface (0x7f62dcbcb070) 0 nearly-empty + vptr=((& QAccessibleTableInterface::_ZTV25QAccessibleTableInterface) + 16u) + QAccessible2Interface (0x7f62dcbcb0e0) 0 nearly-empty + primary-for QAccessibleTableInterface (0x7f62dcbcb070) + +Vtable for QAccessibleActionInterface +QAccessibleActionInterface::_ZTV26QAccessibleActionInterface: 10u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QAccessibleActionInterface) +16 QAccessibleActionInterface::~QAccessibleActionInterface +24 QAccessibleActionInterface::~QAccessibleActionInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual + +Class QAccessibleActionInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleActionInterface (0x7f62dcbcb460) 0 nearly-empty + vptr=((& QAccessibleActionInterface::_ZTV26QAccessibleActionInterface) + 16u) + QAccessible2Interface (0x7f62dcbcb4d0) 0 nearly-empty + primary-for QAccessibleActionInterface (0x7f62dcbcb460) + +Vtable for QAccessibleImageInterface +QAccessibleImageInterface::_ZTV25QAccessibleImageInterface: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QAccessibleImageInterface) +16 QAccessibleImageInterface::~QAccessibleImageInterface +24 QAccessibleImageInterface::~QAccessibleImageInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual + +Class QAccessibleImageInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleImageInterface (0x7f62dcbcb850) 0 nearly-empty + vptr=((& QAccessibleImageInterface::_ZTV25QAccessibleImageInterface) + 16u) + QAccessible2Interface (0x7f62dcbcb8c0) 0 nearly-empty + primary-for QAccessibleImageInterface (0x7f62dcbcb850) + +Vtable for QAccessibleBridge +QAccessibleBridge::_ZTV17QAccessibleBridge: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAccessibleBridge) +16 QAccessibleBridge::~QAccessibleBridge +24 QAccessibleBridge::~QAccessibleBridge +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QAccessibleBridge + size=8 align=8 + base size=8 base align=8 +QAccessibleBridge (0x7f62dcbcbc40) 0 nearly-empty + vptr=((& QAccessibleBridge::_ZTV17QAccessibleBridge) + 16u) + +Vtable for QAccessibleBridgeFactoryInterface +QAccessibleBridgeFactoryInterface::_ZTV33QAccessibleBridgeFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI33QAccessibleBridgeFactoryInterface) +16 QAccessibleBridgeFactoryInterface::~QAccessibleBridgeFactoryInterface +24 QAccessibleBridgeFactoryInterface::~QAccessibleBridgeFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QAccessibleBridgeFactoryInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleBridgeFactoryInterface (0x7f62dcbe4540) 0 nearly-empty + vptr=((& QAccessibleBridgeFactoryInterface::_ZTV33QAccessibleBridgeFactoryInterface) + 16u) + QFactoryInterface (0x7f62dcbe45b0) 0 nearly-empty + primary-for QAccessibleBridgeFactoryInterface (0x7f62dcbe4540) + +Vtable for QAccessibleBridgePlugin +QAccessibleBridgePlugin::_ZTV23QAccessibleBridgePlugin: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QAccessibleBridgePlugin) +16 QAccessibleBridgePlugin::metaObject +24 QAccessibleBridgePlugin::qt_metacast +32 QAccessibleBridgePlugin::qt_metacall +40 QAccessibleBridgePlugin::~QAccessibleBridgePlugin +48 QAccessibleBridgePlugin::~QAccessibleBridgePlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI23QAccessibleBridgePlugin) +144 QAccessibleBridgePlugin::_ZThn16_N23QAccessibleBridgePluginD1Ev +152 QAccessibleBridgePlugin::_ZThn16_N23QAccessibleBridgePluginD0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QAccessibleBridgePlugin + size=24 align=8 + base size=24 base align=8 +QAccessibleBridgePlugin (0x7f62dcbf0580) 0 + vptr=((& QAccessibleBridgePlugin::_ZTV23QAccessibleBridgePlugin) + 16u) + QObject (0x7f62dcbe4620) 0 + primary-for QAccessibleBridgePlugin (0x7f62dcbf0580) + QAccessibleBridgeFactoryInterface (0x7f62dcbf4000) 16 nearly-empty + vptr=((& QAccessibleBridgePlugin::_ZTV23QAccessibleBridgePlugin) + 144u) + QFactoryInterface (0x7f62dcbf4070) 16 nearly-empty + primary-for QAccessibleBridgeFactoryInterface (0x7f62dcbf4000) + +Vtable for QAccessibleObject +QAccessibleObject::_ZTV17QAccessibleObject: 19u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAccessibleObject) +16 QAccessibleObject::~QAccessibleObject +24 QAccessibleObject::~QAccessibleObject +32 QAccessibleObject::isValid +40 QAccessibleObject::object +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 QAccessibleObject::setText +104 QAccessibleObject::rect +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAccessibleObject::userActionCount +136 QAccessibleObject::actionText +144 QAccessibleObject::doAction + +Class QAccessibleObject + size=16 align=8 + base size=16 base align=8 +QAccessibleObject (0x7f62dcbf4f50) 0 + vptr=((& QAccessibleObject::_ZTV17QAccessibleObject) + 16u) + QAccessibleInterface (0x7f62dcbf4310) 0 nearly-empty + primary-for QAccessibleObject (0x7f62dcbf4f50) + QAccessible (0x7f62dcc06000) 0 empty + +Vtable for QAccessibleObjectEx +QAccessibleObjectEx::_ZTV19QAccessibleObjectEx: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAccessibleObjectEx) +16 QAccessibleObjectEx::~QAccessibleObjectEx +24 QAccessibleObjectEx::~QAccessibleObjectEx +32 QAccessibleObjectEx::isValid +40 QAccessibleObjectEx::object +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 QAccessibleObjectEx::setText +104 QAccessibleObjectEx::rect +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAccessibleObjectEx::userActionCount +136 QAccessibleObjectEx::actionText +144 QAccessibleObjectEx::doAction +152 __cxa_pure_virtual +160 QAccessibleInterfaceEx::virtual_hook +168 QAccessibleInterfaceEx::interface_cast + +Class QAccessibleObjectEx + size=16 align=8 + base size=16 base align=8 +QAccessibleObjectEx (0x7f62dcc06700) 0 + vptr=((& QAccessibleObjectEx::_ZTV19QAccessibleObjectEx) + 16u) + QAccessibleInterfaceEx (0x7f62dcc06770) 0 nearly-empty + primary-for QAccessibleObjectEx (0x7f62dcc06700) + QAccessibleInterface (0x7f62dcc067e0) 0 nearly-empty + primary-for QAccessibleInterfaceEx (0x7f62dcc06770) + QAccessible (0x7f62dcc06850) 0 empty + +Vtable for QAccessibleApplication +QAccessibleApplication::_ZTV22QAccessibleApplication: 19u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QAccessibleApplication) +16 QAccessibleApplication::~QAccessibleApplication +24 QAccessibleApplication::~QAccessibleApplication +32 QAccessibleObject::isValid +40 QAccessibleObject::object +48 QAccessibleApplication::childCount +56 QAccessibleApplication::indexOfChild +64 QAccessibleApplication::relationTo +72 QAccessibleApplication::childAt +80 QAccessibleApplication::navigate +88 QAccessibleApplication::text +96 QAccessibleObject::setText +104 QAccessibleObject::rect +112 QAccessibleApplication::role +120 QAccessibleApplication::state +128 QAccessibleApplication::userActionCount +136 QAccessibleApplication::actionText +144 QAccessibleApplication::doAction + +Class QAccessibleApplication + size=16 align=8 + base size=16 base align=8 +QAccessibleApplication (0x7f62dcc06f50) 0 + vptr=((& QAccessibleApplication::_ZTV22QAccessibleApplication) + 16u) + QAccessibleObject (0x7f62dcc06690) 0 + primary-for QAccessibleApplication (0x7f62dcc06f50) + QAccessibleInterface (0x7f62dcc06ee0) 0 nearly-empty + primary-for QAccessibleObject (0x7f62dcc06690) + QAccessible (0x7f62dcc18000) 0 empty + +Vtable for QAccessibleFactoryInterface +QAccessibleFactoryInterface::_ZTV27QAccessibleFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QAccessibleFactoryInterface) +16 QAccessibleFactoryInterface::~QAccessibleFactoryInterface +24 QAccessibleFactoryInterface::~QAccessibleFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QAccessibleFactoryInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleFactoryInterface (0x7f62dcbf0e00) 0 nearly-empty + vptr=((& QAccessibleFactoryInterface::_ZTV27QAccessibleFactoryInterface) + 16u) + QAccessible (0x7f62dcc188c0) 0 empty + QFactoryInterface (0x7f62dcc18930) 0 nearly-empty + primary-for QAccessibleFactoryInterface (0x7f62dcbf0e00) + +Vtable for QAccessiblePlugin +QAccessiblePlugin::_ZTV17QAccessiblePlugin: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAccessiblePlugin) +16 QAccessiblePlugin::metaObject +24 QAccessiblePlugin::qt_metacast +32 QAccessiblePlugin::qt_metacall +40 QAccessiblePlugin::~QAccessiblePlugin +48 QAccessiblePlugin::~QAccessiblePlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI17QAccessiblePlugin) +144 QAccessiblePlugin::_ZThn16_N17QAccessiblePluginD1Ev +152 QAccessiblePlugin::_ZThn16_N17QAccessiblePluginD0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QAccessiblePlugin + size=24 align=8 + base size=24 base align=8 +QAccessiblePlugin (0x7f62dcc24800) 0 + vptr=((& QAccessiblePlugin::_ZTV17QAccessiblePlugin) + 16u) + QObject (0x7f62dcc2b2a0) 0 + primary-for QAccessiblePlugin (0x7f62dcc24800) + QAccessibleFactoryInterface (0x7f62dcc24880) 16 nearly-empty + vptr=((& QAccessiblePlugin::_ZTV17QAccessiblePlugin) + 144u) + QAccessible (0x7f62dcc2b310) 16 empty + QFactoryInterface (0x7f62dcc2b380) 16 nearly-empty + primary-for QAccessibleFactoryInterface (0x7f62dcc24880) + +Vtable for QAccessibleWidget +QAccessibleWidget::_ZTV17QAccessibleWidget: 19u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAccessibleWidget) +16 QAccessibleWidget::~QAccessibleWidget +24 QAccessibleWidget::~QAccessibleWidget +32 QAccessibleObject::isValid +40 QAccessibleObject::object +48 QAccessibleWidget::childCount +56 QAccessibleWidget::indexOfChild +64 QAccessibleWidget::relationTo +72 QAccessibleWidget::childAt +80 QAccessibleWidget::navigate +88 QAccessibleWidget::text +96 QAccessibleObject::setText +104 QAccessibleWidget::rect +112 QAccessibleWidget::role +120 QAccessibleWidget::state +128 QAccessibleWidget::userActionCount +136 QAccessibleWidget::actionText +144 QAccessibleWidget::doAction + +Class QAccessibleWidget + size=24 align=8 + base size=24 base align=8 +QAccessibleWidget (0x7f62dcc3b310) 0 + vptr=((& QAccessibleWidget::_ZTV17QAccessibleWidget) + 16u) + QAccessibleObject (0x7f62dcc3b380) 0 + primary-for QAccessibleWidget (0x7f62dcc3b310) + QAccessibleInterface (0x7f62dcc3b3f0) 0 nearly-empty + primary-for QAccessibleObject (0x7f62dcc3b380) + QAccessible (0x7f62dcc3b460) 0 empty + +Vtable for QAccessibleWidgetEx +QAccessibleWidgetEx::_ZTV19QAccessibleWidgetEx: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAccessibleWidgetEx) +16 QAccessibleWidgetEx::~QAccessibleWidgetEx +24 QAccessibleWidgetEx::~QAccessibleWidgetEx +32 QAccessibleObjectEx::isValid +40 QAccessibleObjectEx::object +48 QAccessibleWidgetEx::childCount +56 QAccessibleWidgetEx::indexOfChild +64 QAccessibleWidgetEx::relationTo +72 QAccessibleWidgetEx::childAt +80 QAccessibleWidgetEx::navigate +88 QAccessibleWidgetEx::text +96 QAccessibleObjectEx::setText +104 QAccessibleWidgetEx::rect +112 QAccessibleWidgetEx::role +120 QAccessibleWidgetEx::state +128 QAccessibleObjectEx::userActionCount +136 QAccessibleWidgetEx::actionText +144 QAccessibleWidgetEx::doAction +152 QAccessibleWidgetEx::invokeMethodEx +160 QAccessibleInterfaceEx::virtual_hook +168 QAccessibleInterfaceEx::interface_cast + +Class QAccessibleWidgetEx + size=24 align=8 + base size=24 base align=8 +QAccessibleWidgetEx (0x7f62dcc463f0) 0 + vptr=((& QAccessibleWidgetEx::_ZTV19QAccessibleWidgetEx) + 16u) + QAccessibleObjectEx (0x7f62dcc46460) 0 + primary-for QAccessibleWidgetEx (0x7f62dcc463f0) + QAccessibleInterfaceEx (0x7f62dcc464d0) 0 nearly-empty + primary-for QAccessibleObjectEx (0x7f62dcc46460) + QAccessibleInterface (0x7f62dcc46540) 0 nearly-empty + primary-for QAccessibleInterfaceEx (0x7f62dcc464d0) + QAccessible (0x7f62dcc465b0) 0 empty + +Vtable for QAction +QAction::_ZTV7QAction: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QAction) +16 QAction::metaObject +24 QAction::qt_metacast +32 QAction::qt_metacall +40 QAction::~QAction +48 QAction::~QAction +56 QAction::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QAction + size=16 align=8 + base size=16 base align=8 +QAction (0x7f62dcc55540) 0 + vptr=((& QAction::_ZTV7QAction) + 16u) + QObject (0x7f62dcc555b0) 0 + primary-for QAction (0x7f62dcc55540) + +Vtable for QActionGroup +QActionGroup::_ZTV12QActionGroup: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QActionGroup) +16 QActionGroup::metaObject +24 QActionGroup::qt_metacast +32 QActionGroup::qt_metacall +40 QActionGroup::~QActionGroup +48 QActionGroup::~QActionGroup +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QActionGroup + size=16 align=8 + base size=16 base align=8 +QActionGroup (0x7f62dca9c070) 0 + vptr=((& QActionGroup::_ZTV12QActionGroup) + 16u) + QObject (0x7f62dca9c0e0) 0 + primary-for QActionGroup (0x7f62dca9c070) + +Vtable for QApplication +QApplication::_ZTV12QApplication: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QApplication) +16 QApplication::metaObject +24 QApplication::qt_metacast +32 QApplication::qt_metacall +40 QApplication::~QApplication +48 QApplication::~QApplication +56 QApplication::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QApplication::notify +120 QApplication::compressEvent +128 QApplication::x11EventFilter +136 QApplication::x11ClientMessage +144 QApplication::commitData +152 QApplication::saveState + +Class QApplication + size=16 align=8 + base size=16 base align=8 +QApplication (0x7f62dcae0460) 0 + vptr=((& QApplication::_ZTV12QApplication) + 16u) + QCoreApplication (0x7f62dcae04d0) 0 + primary-for QApplication (0x7f62dcae0460) + QObject (0x7f62dcae0540) 0 + primary-for QCoreApplication (0x7f62dcae04d0) + +Vtable for QLayoutItem +QLayoutItem::_ZTV11QLayoutItem: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QLayoutItem) +16 QLayoutItem::~QLayoutItem +24 QLayoutItem::~QLayoutItem +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 QLayoutItem::hasHeightForWidth +96 QLayoutItem::heightForWidth +104 QLayoutItem::minimumHeightForWidth +112 QLayoutItem::invalidate +120 QLayoutItem::widget +128 QLayoutItem::layout +136 QLayoutItem::spacerItem + +Class QLayoutItem + size=16 align=8 + base size=12 base align=8 +QLayoutItem (0x7f62dcb320e0) 0 + vptr=((& QLayoutItem::_ZTV11QLayoutItem) + 16u) + +Vtable for QSpacerItem +QSpacerItem::_ZTV11QSpacerItem: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QSpacerItem) +16 QSpacerItem::~QSpacerItem +24 QSpacerItem::~QSpacerItem +32 QSpacerItem::sizeHint +40 QSpacerItem::minimumSize +48 QSpacerItem::maximumSize +56 QSpacerItem::expandingDirections +64 QSpacerItem::setGeometry +72 QSpacerItem::geometry +80 QSpacerItem::isEmpty +88 QLayoutItem::hasHeightForWidth +96 QLayoutItem::heightForWidth +104 QLayoutItem::minimumHeightForWidth +112 QLayoutItem::invalidate +120 QLayoutItem::widget +128 QLayoutItem::layout +136 QSpacerItem::spacerItem + +Class QSpacerItem + size=40 align=8 + base size=40 base align=8 +QSpacerItem (0x7f62dcb32cb0) 0 + vptr=((& QSpacerItem::_ZTV11QSpacerItem) + 16u) + QLayoutItem (0x7f62dcb32d20) 0 + primary-for QSpacerItem (0x7f62dcb32cb0) + +Vtable for QWidgetItem +QWidgetItem::_ZTV11QWidgetItem: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QWidgetItem) +16 QWidgetItem::~QWidgetItem +24 QWidgetItem::~QWidgetItem +32 QWidgetItem::sizeHint +40 QWidgetItem::minimumSize +48 QWidgetItem::maximumSize +56 QWidgetItem::expandingDirections +64 QWidgetItem::setGeometry +72 QWidgetItem::geometry +80 QWidgetItem::isEmpty +88 QWidgetItem::hasHeightForWidth +96 QWidgetItem::heightForWidth +104 QLayoutItem::minimumHeightForWidth +112 QLayoutItem::invalidate +120 QWidgetItem::widget +128 QLayoutItem::layout +136 QLayoutItem::spacerItem + +Class QWidgetItem + size=24 align=8 + base size=24 base align=8 +QWidgetItem (0x7f62dcb4e1c0) 0 + vptr=((& QWidgetItem::_ZTV11QWidgetItem) + 16u) + QLayoutItem (0x7f62dcb4e230) 0 + primary-for QWidgetItem (0x7f62dcb4e1c0) + +Vtable for QWidgetItemV2 +QWidgetItemV2::_ZTV13QWidgetItemV2: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QWidgetItemV2) +16 QWidgetItemV2::~QWidgetItemV2 +24 QWidgetItemV2::~QWidgetItemV2 +32 QWidgetItemV2::sizeHint +40 QWidgetItemV2::minimumSize +48 QWidgetItemV2::maximumSize +56 QWidgetItem::expandingDirections +64 QWidgetItem::setGeometry +72 QWidgetItem::geometry +80 QWidgetItem::isEmpty +88 QWidgetItem::hasHeightForWidth +96 QWidgetItemV2::heightForWidth +104 QLayoutItem::minimumHeightForWidth +112 QLayoutItem::invalidate +120 QWidgetItem::widget +128 QLayoutItem::layout +136 QLayoutItem::spacerItem + +Class QWidgetItemV2 + size=88 align=8 + base size=88 base align=8 +QWidgetItemV2 (0x7f62dcb60000) 0 + vptr=((& QWidgetItemV2::_ZTV13QWidgetItemV2) + 16u) + QWidgetItem (0x7f62dcb60070) 0 + primary-for QWidgetItemV2 (0x7f62dcb60000) + QLayoutItem (0x7f62dcb600e0) 0 + primary-for QWidgetItem (0x7f62dcb60070) + +Class QLayoutIterator + size=16 align=8 + base size=12 base align=8 +QLayoutIterator (0x7f62dcb60e70) 0 + +Vtable for QLayout +QLayout::_ZTV7QLayout: 45u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QLayout) +16 QLayout::metaObject +24 QLayout::qt_metacast +32 QLayout::qt_metacall +40 QLayout::~QLayout +48 QLayout::~QLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QLayout::invalidate +120 QLayout::geometry +128 __cxa_pure_virtual +136 QLayout::expandingDirections +144 QLayout::minimumSize +152 QLayout::maximumSize +160 QLayout::setGeometry +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 QLayout::indexOf +192 __cxa_pure_virtual +200 QLayout::isEmpty +208 QLayout::layout +216 (int (*)(...))-0x00000000000000010 +224 (int (*)(...))(& _ZTI7QLayout) +232 QLayout::_ZThn16_N7QLayoutD1Ev +240 QLayout::_ZThn16_N7QLayoutD0Ev +248 __cxa_pure_virtual +256 QLayout::_ZThn16_NK7QLayout11minimumSizeEv +264 QLayout::_ZThn16_NK7QLayout11maximumSizeEv +272 QLayout::_ZThn16_NK7QLayout19expandingDirectionsEv +280 QLayout::_ZThn16_N7QLayout11setGeometryERK5QRect +288 QLayout::_ZThn16_NK7QLayout8geometryEv +296 QLayout::_ZThn16_NK7QLayout7isEmptyEv +304 QLayoutItem::hasHeightForWidth +312 QLayoutItem::heightForWidth +320 QLayoutItem::minimumHeightForWidth +328 QLayout::_ZThn16_N7QLayout10invalidateEv +336 QLayoutItem::widget +344 QLayout::_ZThn16_N7QLayout6layoutEv +352 QLayoutItem::spacerItem + +Class QLayout + size=32 align=8 + base size=28 base align=8 +QLayout (0x7f62dcb74380) 0 + vptr=((& QLayout::_ZTV7QLayout) + 16u) + QObject (0x7f62dcb72f50) 0 + primary-for QLayout (0x7f62dcb74380) + QLayoutItem (0x7f62dcb76000) 16 + vptr=((& QLayout::_ZTV7QLayout) + 232u) + +Vtable for QGridLayout +QGridLayout::_ZTV11QGridLayout: 49u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QGridLayout) +16 QGridLayout::metaObject +24 QGridLayout::qt_metacast +32 QGridLayout::qt_metacall +40 QGridLayout::~QGridLayout +48 QGridLayout::~QGridLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGridLayout::invalidate +120 QLayout::geometry +128 QGridLayout::addItem +136 QGridLayout::expandingDirections +144 QGridLayout::minimumSize +152 QGridLayout::maximumSize +160 QGridLayout::setGeometry +168 QGridLayout::itemAt +176 QGridLayout::takeAt +184 QLayout::indexOf +192 QGridLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QGridLayout::sizeHint +224 QGridLayout::hasHeightForWidth +232 QGridLayout::heightForWidth +240 QGridLayout::minimumHeightForWidth +248 (int (*)(...))-0x00000000000000010 +256 (int (*)(...))(& _ZTI11QGridLayout) +264 QGridLayout::_ZThn16_N11QGridLayoutD1Ev +272 QGridLayout::_ZThn16_N11QGridLayoutD0Ev +280 QGridLayout::_ZThn16_NK11QGridLayout8sizeHintEv +288 QGridLayout::_ZThn16_NK11QGridLayout11minimumSizeEv +296 QGridLayout::_ZThn16_NK11QGridLayout11maximumSizeEv +304 QGridLayout::_ZThn16_NK11QGridLayout19expandingDirectionsEv +312 QGridLayout::_ZThn16_N11QGridLayout11setGeometryERK5QRect +320 QLayout::_ZThn16_NK7QLayout8geometryEv +328 QLayout::_ZThn16_NK7QLayout7isEmptyEv +336 QGridLayout::_ZThn16_NK11QGridLayout17hasHeightForWidthEv +344 QGridLayout::_ZThn16_NK11QGridLayout14heightForWidthEi +352 QGridLayout::_ZThn16_NK11QGridLayout21minimumHeightForWidthEi +360 QGridLayout::_ZThn16_N11QGridLayout10invalidateEv +368 QLayoutItem::widget +376 QLayout::_ZThn16_N7QLayout6layoutEv +384 QLayoutItem::spacerItem + +Class QGridLayout + size=32 align=8 + base size=28 base align=8 +QGridLayout (0x7f62dc9b64d0) 0 + vptr=((& QGridLayout::_ZTV11QGridLayout) + 16u) + QLayout (0x7f62dc9b2500) 0 + primary-for QGridLayout (0x7f62dc9b64d0) + QObject (0x7f62dc9b6540) 0 + primary-for QLayout (0x7f62dc9b2500) + QLayoutItem (0x7f62dc9b65b0) 16 + vptr=((& QGridLayout::_ZTV11QGridLayout) + 264u) + +Vtable for QBoxLayout +QBoxLayout::_ZTV10QBoxLayout: 49u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QBoxLayout) +16 QBoxLayout::metaObject +24 QBoxLayout::qt_metacast +32 QBoxLayout::qt_metacall +40 QBoxLayout::~QBoxLayout +48 QBoxLayout::~QBoxLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QBoxLayout::invalidate +120 QLayout::geometry +128 QBoxLayout::addItem +136 QBoxLayout::expandingDirections +144 QBoxLayout::minimumSize +152 QBoxLayout::maximumSize +160 QBoxLayout::setGeometry +168 QBoxLayout::itemAt +176 QBoxLayout::takeAt +184 QLayout::indexOf +192 QBoxLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QBoxLayout::sizeHint +224 QBoxLayout::hasHeightForWidth +232 QBoxLayout::heightForWidth +240 QBoxLayout::minimumHeightForWidth +248 (int (*)(...))-0x00000000000000010 +256 (int (*)(...))(& _ZTI10QBoxLayout) +264 QBoxLayout::_ZThn16_N10QBoxLayoutD1Ev +272 QBoxLayout::_ZThn16_N10QBoxLayoutD0Ev +280 QBoxLayout::_ZThn16_NK10QBoxLayout8sizeHintEv +288 QBoxLayout::_ZThn16_NK10QBoxLayout11minimumSizeEv +296 QBoxLayout::_ZThn16_NK10QBoxLayout11maximumSizeEv +304 QBoxLayout::_ZThn16_NK10QBoxLayout19expandingDirectionsEv +312 QBoxLayout::_ZThn16_N10QBoxLayout11setGeometryERK5QRect +320 QLayout::_ZThn16_NK7QLayout8geometryEv +328 QLayout::_ZThn16_NK7QLayout7isEmptyEv +336 QBoxLayout::_ZThn16_NK10QBoxLayout17hasHeightForWidthEv +344 QBoxLayout::_ZThn16_NK10QBoxLayout14heightForWidthEi +352 QBoxLayout::_ZThn16_NK10QBoxLayout21minimumHeightForWidthEi +360 QBoxLayout::_ZThn16_N10QBoxLayout10invalidateEv +368 QLayoutItem::widget +376 QLayout::_ZThn16_N7QLayout6layoutEv +384 QLayoutItem::spacerItem + +Class QBoxLayout + size=32 align=8 + base size=28 base align=8 +QBoxLayout (0x7f62dca03540) 0 + vptr=((& QBoxLayout::_ZTV10QBoxLayout) + 16u) + QLayout (0x7f62dca01400) 0 + primary-for QBoxLayout (0x7f62dca03540) + QObject (0x7f62dca035b0) 0 + primary-for QLayout (0x7f62dca01400) + QLayoutItem (0x7f62dca03620) 16 + vptr=((& QBoxLayout::_ZTV10QBoxLayout) + 264u) + +Vtable for QHBoxLayout +QHBoxLayout::_ZTV11QHBoxLayout: 49u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QHBoxLayout) +16 QHBoxLayout::metaObject +24 QHBoxLayout::qt_metacast +32 QHBoxLayout::qt_metacall +40 QHBoxLayout::~QHBoxLayout +48 QHBoxLayout::~QHBoxLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QBoxLayout::invalidate +120 QLayout::geometry +128 QBoxLayout::addItem +136 QBoxLayout::expandingDirections +144 QBoxLayout::minimumSize +152 QBoxLayout::maximumSize +160 QBoxLayout::setGeometry +168 QBoxLayout::itemAt +176 QBoxLayout::takeAt +184 QLayout::indexOf +192 QBoxLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QBoxLayout::sizeHint +224 QBoxLayout::hasHeightForWidth +232 QBoxLayout::heightForWidth +240 QBoxLayout::minimumHeightForWidth +248 (int (*)(...))-0x00000000000000010 +256 (int (*)(...))(& _ZTI11QHBoxLayout) +264 QHBoxLayout::_ZThn16_N11QHBoxLayoutD1Ev +272 QHBoxLayout::_ZThn16_N11QHBoxLayoutD0Ev +280 QBoxLayout::_ZThn16_NK10QBoxLayout8sizeHintEv +288 QBoxLayout::_ZThn16_NK10QBoxLayout11minimumSizeEv +296 QBoxLayout::_ZThn16_NK10QBoxLayout11maximumSizeEv +304 QBoxLayout::_ZThn16_NK10QBoxLayout19expandingDirectionsEv +312 QBoxLayout::_ZThn16_N10QBoxLayout11setGeometryERK5QRect +320 QLayout::_ZThn16_NK7QLayout8geometryEv +328 QLayout::_ZThn16_NK7QLayout7isEmptyEv +336 QBoxLayout::_ZThn16_NK10QBoxLayout17hasHeightForWidthEv +344 QBoxLayout::_ZThn16_NK10QBoxLayout14heightForWidthEi +352 QBoxLayout::_ZThn16_NK10QBoxLayout21minimumHeightForWidthEi +360 QBoxLayout::_ZThn16_N10QBoxLayout10invalidateEv +368 QLayoutItem::widget +376 QLayout::_ZThn16_N7QLayout6layoutEv +384 QLayoutItem::spacerItem + +Class QHBoxLayout + size=32 align=8 + base size=28 base align=8 +QHBoxLayout (0x7f62dca28f50) 0 + vptr=((& QHBoxLayout::_ZTV11QHBoxLayout) + 16u) + QBoxLayout (0x7f62dca32000) 0 + primary-for QHBoxLayout (0x7f62dca28f50) + QLayout (0x7f62dca2e280) 0 + primary-for QBoxLayout (0x7f62dca32000) + QObject (0x7f62dca32070) 0 + primary-for QLayout (0x7f62dca2e280) + QLayoutItem (0x7f62dca320e0) 16 + vptr=((& QHBoxLayout::_ZTV11QHBoxLayout) + 264u) + +Vtable for QVBoxLayout +QVBoxLayout::_ZTV11QVBoxLayout: 49u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QVBoxLayout) +16 QVBoxLayout::metaObject +24 QVBoxLayout::qt_metacast +32 QVBoxLayout::qt_metacall +40 QVBoxLayout::~QVBoxLayout +48 QVBoxLayout::~QVBoxLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QBoxLayout::invalidate +120 QLayout::geometry +128 QBoxLayout::addItem +136 QBoxLayout::expandingDirections +144 QBoxLayout::minimumSize +152 QBoxLayout::maximumSize +160 QBoxLayout::setGeometry +168 QBoxLayout::itemAt +176 QBoxLayout::takeAt +184 QLayout::indexOf +192 QBoxLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QBoxLayout::sizeHint +224 QBoxLayout::hasHeightForWidth +232 QBoxLayout::heightForWidth +240 QBoxLayout::minimumHeightForWidth +248 (int (*)(...))-0x00000000000000010 +256 (int (*)(...))(& _ZTI11QVBoxLayout) +264 QVBoxLayout::_ZThn16_N11QVBoxLayoutD1Ev +272 QVBoxLayout::_ZThn16_N11QVBoxLayoutD0Ev +280 QBoxLayout::_ZThn16_NK10QBoxLayout8sizeHintEv +288 QBoxLayout::_ZThn16_NK10QBoxLayout11minimumSizeEv +296 QBoxLayout::_ZThn16_NK10QBoxLayout11maximumSizeEv +304 QBoxLayout::_ZThn16_NK10QBoxLayout19expandingDirectionsEv +312 QBoxLayout::_ZThn16_N10QBoxLayout11setGeometryERK5QRect +320 QLayout::_ZThn16_NK7QLayout8geometryEv +328 QLayout::_ZThn16_NK7QLayout7isEmptyEv +336 QBoxLayout::_ZThn16_NK10QBoxLayout17hasHeightForWidthEv +344 QBoxLayout::_ZThn16_NK10QBoxLayout14heightForWidthEi +352 QBoxLayout::_ZThn16_NK10QBoxLayout21minimumHeightForWidthEi +360 QBoxLayout::_ZThn16_N10QBoxLayout10invalidateEv +368 QLayoutItem::widget +376 QLayout::_ZThn16_N7QLayout6layoutEv +384 QLayoutItem::spacerItem + +Class QVBoxLayout + size=32 align=8 + base size=28 base align=8 +QVBoxLayout (0x7f62dca455b0) 0 + vptr=((& QVBoxLayout::_ZTV11QVBoxLayout) + 16u) + QBoxLayout (0x7f62dca45620) 0 + primary-for QVBoxLayout (0x7f62dca455b0) + QLayout (0x7f62dca2e980) 0 + primary-for QBoxLayout (0x7f62dca45620) + QObject (0x7f62dca45690) 0 + primary-for QLayout (0x7f62dca2e980) + QLayoutItem (0x7f62dca45700) 16 + vptr=((& QVBoxLayout::_ZTV11QVBoxLayout) + 264u) + +Vtable for QClipboard +QClipboard::_ZTV10QClipboard: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QClipboard) +16 QClipboard::metaObject +24 QClipboard::qt_metacast +32 QClipboard::qt_metacall +40 QClipboard::~QClipboard +48 QClipboard::~QClipboard +56 QClipboard::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QClipboard::connectNotify +104 QObject::disconnectNotify + +Class QClipboard + size=16 align=8 + base size=16 base align=8 +QClipboard (0x7f62dca54c40) 0 + vptr=((& QClipboard::_ZTV10QClipboard) + 16u) + QObject (0x7f62dca54cb0) 0 + primary-for QClipboard (0x7f62dca54c40) + +Vtable for QDesktopWidget +QDesktopWidget::_ZTV14QDesktopWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QDesktopWidget) +16 QDesktopWidget::metaObject +24 QDesktopWidget::qt_metacast +32 QDesktopWidget::qt_metacall +40 QDesktopWidget::~QDesktopWidget +48 QDesktopWidget::~QDesktopWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDesktopWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI14QDesktopWidget) +464 QDesktopWidget::_ZThn16_N14QDesktopWidgetD1Ev +472 QDesktopWidget::_ZThn16_N14QDesktopWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDesktopWidget + size=40 align=8 + base size=40 base align=8 +QDesktopWidget (0x7f62dca7f930) 0 + vptr=((& QDesktopWidget::_ZTV14QDesktopWidget) + 16u) + QWidget (0x7f62dca5dc00) 0 + primary-for QDesktopWidget (0x7f62dca7f930) + QObject (0x7f62dca7f9a0) 0 + primary-for QWidget (0x7f62dca5dc00) + QPaintDevice (0x7f62dca7fa10) 16 + vptr=((& QDesktopWidget::_ZTV14QDesktopWidget) + 464u) + +Vtable for QFormLayout +QFormLayout::_ZTV11QFormLayout: 48u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFormLayout) +16 QFormLayout::metaObject +24 QFormLayout::qt_metacast +32 QFormLayout::qt_metacall +40 QFormLayout::~QFormLayout +48 QFormLayout::~QFormLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFormLayout::invalidate +120 QLayout::geometry +128 QFormLayout::addItem +136 QFormLayout::expandingDirections +144 QFormLayout::minimumSize +152 QLayout::maximumSize +160 QFormLayout::setGeometry +168 QFormLayout::itemAt +176 QFormLayout::takeAt +184 QLayout::indexOf +192 QFormLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QFormLayout::sizeHint +224 QFormLayout::hasHeightForWidth +232 QFormLayout::heightForWidth +240 (int (*)(...))-0x00000000000000010 +248 (int (*)(...))(& _ZTI11QFormLayout) +256 QFormLayout::_ZThn16_N11QFormLayoutD1Ev +264 QFormLayout::_ZThn16_N11QFormLayoutD0Ev +272 QFormLayout::_ZThn16_NK11QFormLayout8sizeHintEv +280 QFormLayout::_ZThn16_NK11QFormLayout11minimumSizeEv +288 QLayout::_ZThn16_NK7QLayout11maximumSizeEv +296 QFormLayout::_ZThn16_NK11QFormLayout19expandingDirectionsEv +304 QFormLayout::_ZThn16_N11QFormLayout11setGeometryERK5QRect +312 QLayout::_ZThn16_NK7QLayout8geometryEv +320 QLayout::_ZThn16_NK7QLayout7isEmptyEv +328 QFormLayout::_ZThn16_NK11QFormLayout17hasHeightForWidthEv +336 QFormLayout::_ZThn16_NK11QFormLayout14heightForWidthEi +344 QLayoutItem::minimumHeightForWidth +352 QFormLayout::_ZThn16_N11QFormLayout10invalidateEv +360 QLayoutItem::widget +368 QLayout::_ZThn16_N7QLayout6layoutEv +376 QLayoutItem::spacerItem + +Class QFormLayout + size=32 align=8 + base size=28 base align=8 +QFormLayout (0x7f62dc89a9a0) 0 + vptr=((& QFormLayout::_ZTV11QFormLayout) + 16u) + QLayout (0x7f62dc895b80) 0 + primary-for QFormLayout (0x7f62dc89a9a0) + QObject (0x7f62dc89aa10) 0 + primary-for QLayout (0x7f62dc895b80) + QLayoutItem (0x7f62dc89aa80) 16 + vptr=((& QFormLayout::_ZTV11QFormLayout) + 256u) + +Vtable for QGesture +QGesture::_ZTV8QGesture: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QGesture) +16 QGesture::metaObject +24 QGesture::qt_metacast +32 QGesture::qt_metacall +40 QGesture::~QGesture +48 QGesture::~QGesture +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QGesture + size=16 align=8 + base size=16 base align=8 +QGesture (0x7f62dc8cf150) 0 + vptr=((& QGesture::_ZTV8QGesture) + 16u) + QObject (0x7f62dc8cf1c0) 0 + primary-for QGesture (0x7f62dc8cf150) + +Vtable for QPanGesture +QPanGesture::_ZTV11QPanGesture: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QPanGesture) +16 QPanGesture::metaObject +24 QPanGesture::qt_metacast +32 QPanGesture::qt_metacall +40 QPanGesture::~QPanGesture +48 QPanGesture::~QPanGesture +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QPanGesture + size=16 align=8 + base size=16 base align=8 +QPanGesture (0x7f62dc8e8850) 0 + vptr=((& QPanGesture::_ZTV11QPanGesture) + 16u) + QGesture (0x7f62dc8e88c0) 0 + primary-for QPanGesture (0x7f62dc8e8850) + QObject (0x7f62dc8e8930) 0 + primary-for QGesture (0x7f62dc8e88c0) + +Vtable for QPinchGesture +QPinchGesture::_ZTV13QPinchGesture: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QPinchGesture) +16 QPinchGesture::metaObject +24 QPinchGesture::qt_metacast +32 QPinchGesture::qt_metacall +40 QPinchGesture::~QPinchGesture +48 QPinchGesture::~QPinchGesture +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QPinchGesture + size=16 align=8 + base size=16 base align=8 +QPinchGesture (0x7f62dc8facb0) 0 + vptr=((& QPinchGesture::_ZTV13QPinchGesture) + 16u) + QGesture (0x7f62dc8fad20) 0 + primary-for QPinchGesture (0x7f62dc8facb0) + QObject (0x7f62dc8fad90) 0 + primary-for QGesture (0x7f62dc8fad20) + +Vtable for QSwipeGesture +QSwipeGesture::_ZTV13QSwipeGesture: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSwipeGesture) +16 QSwipeGesture::metaObject +24 QSwipeGesture::qt_metacast +32 QSwipeGesture::qt_metacall +40 QSwipeGesture::~QSwipeGesture +48 QSwipeGesture::~QSwipeGesture +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSwipeGesture + size=16 align=8 + base size=16 base align=8 +QSwipeGesture (0x7f62dc91bd20) 0 + vptr=((& QSwipeGesture::_ZTV13QSwipeGesture) + 16u) + QGesture (0x7f62dc91bd90) 0 + primary-for QSwipeGesture (0x7f62dc91bd20) + QObject (0x7f62dc91be00) 0 + primary-for QGesture (0x7f62dc91bd90) + +Vtable for QTapGesture +QTapGesture::_ZTV11QTapGesture: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTapGesture) +16 QTapGesture::metaObject +24 QTapGesture::qt_metacast +32 QTapGesture::qt_metacall +40 QTapGesture::~QTapGesture +48 QTapGesture::~QTapGesture +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTapGesture + size=16 align=8 + base size=16 base align=8 +QTapGesture (0x7f62dc93b460) 0 + vptr=((& QTapGesture::_ZTV11QTapGesture) + 16u) + QGesture (0x7f62dc93b4d0) 0 + primary-for QTapGesture (0x7f62dc93b460) + QObject (0x7f62dc93b540) 0 + primary-for QGesture (0x7f62dc93b4d0) + +Vtable for QTapAndHoldGesture +QTapAndHoldGesture::_ZTV18QTapAndHoldGesture: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QTapAndHoldGesture) +16 QTapAndHoldGesture::metaObject +24 QTapAndHoldGesture::qt_metacast +32 QTapAndHoldGesture::qt_metacall +40 QTapAndHoldGesture::~QTapAndHoldGesture +48 QTapAndHoldGesture::~QTapAndHoldGesture +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTapAndHoldGesture + size=16 align=8 + base size=16 base align=8 +QTapAndHoldGesture (0x7f62dc94a8c0) 0 + vptr=((& QTapAndHoldGesture::_ZTV18QTapAndHoldGesture) + 16u) + QGesture (0x7f62dc94a930) 0 + primary-for QTapAndHoldGesture (0x7f62dc94a8c0) + QObject (0x7f62dc94a9a0) 0 + primary-for QGesture (0x7f62dc94a930) + +Vtable for QGestureRecognizer +QGestureRecognizer::_ZTV18QGestureRecognizer: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QGestureRecognizer) +16 QGestureRecognizer::~QGestureRecognizer +24 QGestureRecognizer::~QGestureRecognizer +32 QGestureRecognizer::create +40 __cxa_pure_virtual +48 QGestureRecognizer::reset + +Class QGestureRecognizer + size=8 align=8 + base size=8 base align=8 +QGestureRecognizer (0x7f62dc965310) 0 nearly-empty + vptr=((& QGestureRecognizer::_ZTV18QGestureRecognizer) + 16u) + +Vtable for QSessionManager +QSessionManager::_ZTV15QSessionManager: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSessionManager) +16 QSessionManager::metaObject +24 QSessionManager::qt_metacast +32 QSessionManager::qt_metacall +40 QSessionManager::~QSessionManager +48 QSessionManager::~QSessionManager +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSessionManager + size=16 align=8 + base size=16 base align=8 +QSessionManager (0x7f62dc79b620) 0 + vptr=((& QSessionManager::_ZTV15QSessionManager) + 16u) + QObject (0x7f62dc79b690) 0 + primary-for QSessionManager (0x7f62dc79b620) + +Vtable for QShortcut +QShortcut::_ZTV9QShortcut: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QShortcut) +16 QShortcut::metaObject +24 QShortcut::qt_metacast +32 QShortcut::qt_metacall +40 QShortcut::~QShortcut +48 QShortcut::~QShortcut +56 QShortcut::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QShortcut + size=16 align=8 + base size=16 base align=8 +QShortcut (0x7f62dc7ccb60) 0 + vptr=((& QShortcut::_ZTV9QShortcut) + 16u) + QObject (0x7f62dc7ccbd0) 0 + primary-for QShortcut (0x7f62dc7ccb60) + +Vtable for QSound +QSound::_ZTV6QSound: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QSound) +16 QSound::metaObject +24 QSound::qt_metacast +32 QSound::qt_metacall +40 QSound::~QSound +48 QSound::~QSound +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSound + size=16 align=8 + base size=16 base align=8 +QSound (0x7f62dc7ea310) 0 + vptr=((& QSound::_ZTV6QSound) + 16u) + QObject (0x7f62dc7ea380) 0 + primary-for QSound (0x7f62dc7ea310) + +Vtable for QStackedLayout +QStackedLayout::_ZTV14QStackedLayout: 46u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QStackedLayout) +16 QStackedLayout::metaObject +24 QStackedLayout::qt_metacast +32 QStackedLayout::qt_metacall +40 QStackedLayout::~QStackedLayout +48 QStackedLayout::~QStackedLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QLayout::invalidate +120 QLayout::geometry +128 QStackedLayout::addItem +136 QLayout::expandingDirections +144 QStackedLayout::minimumSize +152 QLayout::maximumSize +160 QStackedLayout::setGeometry +168 QStackedLayout::itemAt +176 QStackedLayout::takeAt +184 QLayout::indexOf +192 QStackedLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QStackedLayout::sizeHint +224 (int (*)(...))-0x00000000000000010 +232 (int (*)(...))(& _ZTI14QStackedLayout) +240 QStackedLayout::_ZThn16_N14QStackedLayoutD1Ev +248 QStackedLayout::_ZThn16_N14QStackedLayoutD0Ev +256 QStackedLayout::_ZThn16_NK14QStackedLayout8sizeHintEv +264 QStackedLayout::_ZThn16_NK14QStackedLayout11minimumSizeEv +272 QLayout::_ZThn16_NK7QLayout11maximumSizeEv +280 QLayout::_ZThn16_NK7QLayout19expandingDirectionsEv +288 QStackedLayout::_ZThn16_N14QStackedLayout11setGeometryERK5QRect +296 QLayout::_ZThn16_NK7QLayout8geometryEv +304 QLayout::_ZThn16_NK7QLayout7isEmptyEv +312 QLayoutItem::hasHeightForWidth +320 QLayoutItem::heightForWidth +328 QLayoutItem::minimumHeightForWidth +336 QLayout::_ZThn16_N7QLayout10invalidateEv +344 QLayoutItem::widget +352 QLayout::_ZThn16_N7QLayout6layoutEv +360 QLayoutItem::spacerItem + +Class QStackedLayout + size=32 align=8 + base size=28 base align=8 +QStackedLayout (0x7f62dc7fea80) 0 + vptr=((& QStackedLayout::_ZTV14QStackedLayout) + 16u) + QLayout (0x7f62dc7f6880) 0 + primary-for QStackedLayout (0x7f62dc7fea80) + QObject (0x7f62dc7feaf0) 0 + primary-for QLayout (0x7f62dc7f6880) + QLayoutItem (0x7f62dc7feb60) 16 + vptr=((& QStackedLayout::_ZTV14QStackedLayout) + 240u) + +Class QToolTip + size=1 align=1 + base size=0 base align=1 +QToolTip (0x7f62dc81da80) 0 empty + +Class QWhatsThis + size=1 align=1 + base size=0 base align=1 +QWhatsThis (0x7f62dc82b070) 0 empty + +Vtable for QWidgetAction +QWidgetAction::_ZTV13QWidgetAction: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QWidgetAction) +16 QWidgetAction::metaObject +24 QWidgetAction::qt_metacast +32 QWidgetAction::qt_metacall +40 QWidgetAction::~QWidgetAction +48 QWidgetAction::~QWidgetAction +56 QWidgetAction::event +64 QWidgetAction::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidgetAction::createWidget +120 QWidgetAction::deleteWidget + +Class QWidgetAction + size=16 align=8 + base size=16 base align=8 +QWidgetAction (0x7f62dc82b150) 0 + vptr=((& QWidgetAction::_ZTV13QWidgetAction) + 16u) + QAction (0x7f62dc82b1c0) 0 + primary-for QWidgetAction (0x7f62dc82b150) + QObject (0x7f62dc82b230) 0 + primary-for QAction (0x7f62dc82b1c0) + +Class QVector3D + size=12 align=4 + base size=12 base align=4 +QVector3D (0x7f62dc6f91c0) 0 + +Class QVector4D + size=16 align=4 + base size=16 base align=4 +QVector4D (0x7f62dc75ccb0) 0 + +Class QQuaternion + size=32 align=8 + base size=32 base align=8 +QQuaternion (0x7f62dc5d1d20) 0 + +Class QMatrix4x4 + size=136 align=8 + base size=132 base align=8 +QMatrix4x4 (0x7f62dc651b60) 0 + +Class QVector2D + size=8 align=4 + base size=8 base align=4 +QVector2D (0x7f62dc29cd90) 0 + +Vtable for QCommonStyle +QCommonStyle::_ZTV12QCommonStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QCommonStyle) +16 QCommonStyle::metaObject +24 QCommonStyle::qt_metacast +32 QCommonStyle::qt_metacall +40 QCommonStyle::~QCommonStyle +48 QCommonStyle::~QCommonStyle +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCommonStyle::polish +120 QCommonStyle::unpolish +128 QCommonStyle::polish +136 QCommonStyle::unpolish +144 QCommonStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QStyle::standardPalette +192 QCommonStyle::drawPrimitive +200 QCommonStyle::drawControl +208 QCommonStyle::subElementRect +216 QCommonStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QCommonStyle::subControlRect +240 QCommonStyle::pixelMetric +248 QCommonStyle::sizeFromContents +256 QCommonStyle::styleHint +264 QCommonStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QCommonStyle + size=16 align=8 + base size=16 base align=8 +QCommonStyle (0x7f62dc3002a0) 0 + vptr=((& QCommonStyle::_ZTV12QCommonStyle) + 16u) + QStyle (0x7f62dc300310) 0 + primary-for QCommonStyle (0x7f62dc3002a0) + QObject (0x7f62dc300380) 0 + primary-for QStyle (0x7f62dc300310) + +Vtable for QMotifStyle +QMotifStyle::_ZTV11QMotifStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMotifStyle) +16 QMotifStyle::metaObject +24 QMotifStyle::qt_metacast +32 QMotifStyle::qt_metacall +40 QMotifStyle::~QMotifStyle +48 QMotifStyle::~QMotifStyle +56 QMotifStyle::event +64 QMotifStyle::eventFilter +72 QMotifStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMotifStyle::polish +120 QMotifStyle::unpolish +128 QMotifStyle::polish +136 QMotifStyle::unpolish +144 QMotifStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QMotifStyle::standardPalette +192 QMotifStyle::drawPrimitive +200 QMotifStyle::drawControl +208 QMotifStyle::subElementRect +216 QMotifStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QMotifStyle::subControlRect +240 QMotifStyle::pixelMetric +248 QMotifStyle::sizeFromContents +256 QMotifStyle::styleHint +264 QMotifStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QMotifStyle + size=32 align=8 + base size=25 base align=8 +QMotifStyle (0x7f62dc3232a0) 0 + vptr=((& QMotifStyle::_ZTV11QMotifStyle) + 16u) + QCommonStyle (0x7f62dc323310) 0 + primary-for QMotifStyle (0x7f62dc3232a0) + QStyle (0x7f62dc323380) 0 + primary-for QCommonStyle (0x7f62dc323310) + QObject (0x7f62dc3233f0) 0 + primary-for QStyle (0x7f62dc323380) + +Vtable for QCDEStyle +QCDEStyle::_ZTV9QCDEStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QCDEStyle) +16 QCDEStyle::metaObject +24 QCDEStyle::qt_metacast +32 QCDEStyle::qt_metacall +40 QCDEStyle::~QCDEStyle +48 QCDEStyle::~QCDEStyle +56 QMotifStyle::event +64 QMotifStyle::eventFilter +72 QMotifStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMotifStyle::polish +120 QMotifStyle::unpolish +128 QMotifStyle::polish +136 QMotifStyle::unpolish +144 QMotifStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QCDEStyle::standardPalette +192 QCDEStyle::drawPrimitive +200 QCDEStyle::drawControl +208 QMotifStyle::subElementRect +216 QMotifStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QMotifStyle::subControlRect +240 QCDEStyle::pixelMetric +248 QMotifStyle::sizeFromContents +256 QMotifStyle::styleHint +264 QMotifStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QCDEStyle + size=32 align=8 + base size=25 base align=8 +QCDEStyle (0x7f62dc34c1c0) 0 + vptr=((& QCDEStyle::_ZTV9QCDEStyle) + 16u) + QMotifStyle (0x7f62dc34c230) 0 + primary-for QCDEStyle (0x7f62dc34c1c0) + QCommonStyle (0x7f62dc34c2a0) 0 + primary-for QMotifStyle (0x7f62dc34c230) + QStyle (0x7f62dc34c310) 0 + primary-for QCommonStyle (0x7f62dc34c2a0) + QObject (0x7f62dc34c380) 0 + primary-for QStyle (0x7f62dc34c310) + +Vtable for QWindowsStyle +QWindowsStyle::_ZTV13QWindowsStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QWindowsStyle) +16 QWindowsStyle::metaObject +24 QWindowsStyle::qt_metacast +32 QWindowsStyle::qt_metacall +40 QWindowsStyle::~QWindowsStyle +48 QWindowsStyle::~QWindowsStyle +56 QObject::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWindowsStyle::polish +120 QWindowsStyle::unpolish +128 QWindowsStyle::polish +136 QWindowsStyle::unpolish +144 QWindowsStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QStyle::standardPalette +192 QWindowsStyle::drawPrimitive +200 QWindowsStyle::drawControl +208 QWindowsStyle::subElementRect +216 QWindowsStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QCommonStyle::subControlRect +240 QWindowsStyle::pixelMetric +248 QWindowsStyle::sizeFromContents +256 QWindowsStyle::styleHint +264 QWindowsStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QWindowsStyle + size=24 align=8 + base size=24 base align=8 +QWindowsStyle (0x7f62dc35f310) 0 + vptr=((& QWindowsStyle::_ZTV13QWindowsStyle) + 16u) + QCommonStyle (0x7f62dc35f380) 0 + primary-for QWindowsStyle (0x7f62dc35f310) + QStyle (0x7f62dc35f3f0) 0 + primary-for QCommonStyle (0x7f62dc35f380) + QObject (0x7f62dc35f460) 0 + primary-for QStyle (0x7f62dc35f3f0) + +Vtable for QCleanlooksStyle +QCleanlooksStyle::_ZTV16QCleanlooksStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QCleanlooksStyle) +16 QCleanlooksStyle::metaObject +24 QCleanlooksStyle::qt_metacast +32 QCleanlooksStyle::qt_metacall +40 QCleanlooksStyle::~QCleanlooksStyle +48 QCleanlooksStyle::~QCleanlooksStyle +56 QObject::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCleanlooksStyle::polish +120 QCleanlooksStyle::unpolish +128 QCleanlooksStyle::polish +136 QCleanlooksStyle::unpolish +144 QCleanlooksStyle::polish +152 QStyle::itemTextRect +160 QCleanlooksStyle::itemPixmapRect +168 QCleanlooksStyle::drawItemText +176 QCleanlooksStyle::drawItemPixmap +184 QCleanlooksStyle::standardPalette +192 QCleanlooksStyle::drawPrimitive +200 QCleanlooksStyle::drawControl +208 QCleanlooksStyle::subElementRect +216 QCleanlooksStyle::drawComplexControl +224 QCleanlooksStyle::hitTestComplexControl +232 QCleanlooksStyle::subControlRect +240 QCleanlooksStyle::pixelMetric +248 QCleanlooksStyle::sizeFromContents +256 QCleanlooksStyle::styleHint +264 QCleanlooksStyle::standardPixmap +272 QCleanlooksStyle::generatedIconPixmap + +Class QCleanlooksStyle + size=24 align=8 + base size=24 base align=8 +QCleanlooksStyle (0x7f62dc3810e0) 0 + vptr=((& QCleanlooksStyle::_ZTV16QCleanlooksStyle) + 16u) + QWindowsStyle (0x7f62dc381150) 0 + primary-for QCleanlooksStyle (0x7f62dc3810e0) + QCommonStyle (0x7f62dc3811c0) 0 + primary-for QWindowsStyle (0x7f62dc381150) + QStyle (0x7f62dc381230) 0 + primary-for QCommonStyle (0x7f62dc3811c0) + QObject (0x7f62dc3812a0) 0 + primary-for QStyle (0x7f62dc381230) + +Vtable for QPlastiqueStyle +QPlastiqueStyle::_ZTV15QPlastiqueStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QPlastiqueStyle) +16 QPlastiqueStyle::metaObject +24 QPlastiqueStyle::qt_metacast +32 QPlastiqueStyle::qt_metacall +40 QPlastiqueStyle::~QPlastiqueStyle +48 QPlastiqueStyle::~QPlastiqueStyle +56 QObject::event +64 QPlastiqueStyle::eventFilter +72 QPlastiqueStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QPlastiqueStyle::polish +120 QPlastiqueStyle::unpolish +128 QPlastiqueStyle::polish +136 QPlastiqueStyle::unpolish +144 QPlastiqueStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QPlastiqueStyle::standardPalette +192 QPlastiqueStyle::drawPrimitive +200 QPlastiqueStyle::drawControl +208 QPlastiqueStyle::subElementRect +216 QPlastiqueStyle::drawComplexControl +224 QPlastiqueStyle::hitTestComplexControl +232 QPlastiqueStyle::subControlRect +240 QPlastiqueStyle::pixelMetric +248 QPlastiqueStyle::sizeFromContents +256 QPlastiqueStyle::styleHint +264 QPlastiqueStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QPlastiqueStyle + size=32 align=8 + base size=32 base align=8 +QPlastiqueStyle (0x7f62dc19be70) 0 + vptr=((& QPlastiqueStyle::_ZTV15QPlastiqueStyle) + 16u) + QWindowsStyle (0x7f62dc19bee0) 0 + primary-for QPlastiqueStyle (0x7f62dc19be70) + QCommonStyle (0x7f62dc19bf50) 0 + primary-for QWindowsStyle (0x7f62dc19bee0) + QStyle (0x7f62dc1a1000) 0 + primary-for QCommonStyle (0x7f62dc19bf50) + QObject (0x7f62dc1a1070) 0 + primary-for QStyle (0x7f62dc1a1000) + +Vtable for QProxyStyle +QProxyStyle::_ZTV11QProxyStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QProxyStyle) +16 QProxyStyle::metaObject +24 QProxyStyle::qt_metacast +32 QProxyStyle::qt_metacall +40 QProxyStyle::~QProxyStyle +48 QProxyStyle::~QProxyStyle +56 QProxyStyle::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QProxyStyle::polish +120 QProxyStyle::unpolish +128 QProxyStyle::polish +136 QProxyStyle::unpolish +144 QProxyStyle::polish +152 QProxyStyle::itemTextRect +160 QProxyStyle::itemPixmapRect +168 QProxyStyle::drawItemText +176 QProxyStyle::drawItemPixmap +184 QProxyStyle::standardPalette +192 QProxyStyle::drawPrimitive +200 QProxyStyle::drawControl +208 QProxyStyle::subElementRect +216 QProxyStyle::drawComplexControl +224 QProxyStyle::hitTestComplexControl +232 QProxyStyle::subControlRect +240 QProxyStyle::pixelMetric +248 QProxyStyle::sizeFromContents +256 QProxyStyle::styleHint +264 QProxyStyle::standardPixmap +272 QProxyStyle::generatedIconPixmap + +Class QProxyStyle + size=16 align=8 + base size=16 base align=8 +QProxyStyle (0x7f62dc1c4000) 0 + vptr=((& QProxyStyle::_ZTV11QProxyStyle) + 16u) + QCommonStyle (0x7f62dc1c4070) 0 + primary-for QProxyStyle (0x7f62dc1c4000) + QStyle (0x7f62dc1c40e0) 0 + primary-for QCommonStyle (0x7f62dc1c4070) + QObject (0x7f62dc1c4150) 0 + primary-for QStyle (0x7f62dc1c40e0) + +Vtable for QS60Style +QS60Style::_ZTV9QS60Style: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QS60Style) +16 QS60Style::metaObject +24 QS60Style::qt_metacast +32 QS60Style::qt_metacall +40 QS60Style::~QS60Style +48 QS60Style::~QS60Style +56 QS60Style::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QS60Style::polish +120 QS60Style::unpolish +128 QS60Style::polish +136 QS60Style::unpolish +144 QCommonStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QStyle::standardPalette +192 QS60Style::drawPrimitive +200 QS60Style::drawControl +208 QS60Style::subElementRect +216 QS60Style::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QS60Style::subControlRect +240 QS60Style::pixelMetric +248 QS60Style::sizeFromContents +256 QS60Style::styleHint +264 QCommonStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QS60Style + size=16 align=8 + base size=16 base align=8 +QS60Style (0x7f62dc1e54d0) 0 + vptr=((& QS60Style::_ZTV9QS60Style) + 16u) + QCommonStyle (0x7f62dc1e5540) 0 + primary-for QS60Style (0x7f62dc1e54d0) + QStyle (0x7f62dc1e55b0) 0 + primary-for QCommonStyle (0x7f62dc1e5540) + QObject (0x7f62dc1e5620) 0 + primary-for QStyle (0x7f62dc1e55b0) + +Class QStyleFactory + size=1 align=1 + base size=0 base align=1 +QStyleFactory (0x7f62dc20a310) 0 empty + +Vtable for QStyleFactoryInterface +QStyleFactoryInterface::_ZTV22QStyleFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QStyleFactoryInterface) +16 QStyleFactoryInterface::~QStyleFactoryInterface +24 QStyleFactoryInterface::~QStyleFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QStyleFactoryInterface + size=8 align=8 + base size=8 base align=8 +QStyleFactoryInterface (0x7f62dc20a380) 0 nearly-empty + vptr=((& QStyleFactoryInterface::_ZTV22QStyleFactoryInterface) + 16u) + QFactoryInterface (0x7f62dc20a3f0) 0 nearly-empty + primary-for QStyleFactoryInterface (0x7f62dc20a380) + +Vtable for QStylePlugin +QStylePlugin::_ZTV12QStylePlugin: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QStylePlugin) +16 QStylePlugin::metaObject +24 QStylePlugin::qt_metacast +32 QStylePlugin::qt_metacall +40 QStylePlugin::~QStylePlugin +48 QStylePlugin::~QStylePlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI12QStylePlugin) +144 QStylePlugin::_ZThn16_N12QStylePluginD1Ev +152 QStylePlugin::_ZThn16_N12QStylePluginD0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QStylePlugin + size=24 align=8 + base size=24 base align=8 +QStylePlugin (0x7f62dc214000) 0 + vptr=((& QStylePlugin::_ZTV12QStylePlugin) + 16u) + QObject (0x7f62dc20ae00) 0 + primary-for QStylePlugin (0x7f62dc214000) + QStyleFactoryInterface (0x7f62dc20ae70) 16 nearly-empty + vptr=((& QStylePlugin::_ZTV12QStylePlugin) + 144u) + QFactoryInterface (0x7f62dc20aee0) 16 nearly-empty + primary-for QStyleFactoryInterface (0x7f62dc20ae70) + +Vtable for QWindowsCEStyle +QWindowsCEStyle::_ZTV15QWindowsCEStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QWindowsCEStyle) +16 QWindowsCEStyle::metaObject +24 QWindowsCEStyle::qt_metacast +32 QWindowsCEStyle::qt_metacall +40 QWindowsCEStyle::~QWindowsCEStyle +48 QWindowsCEStyle::~QWindowsCEStyle +56 QObject::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWindowsCEStyle::polish +120 QWindowsStyle::unpolish +128 QWindowsCEStyle::polish +136 QWindowsStyle::unpolish +144 QWindowsCEStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QWindowsCEStyle::drawItemText +176 QStyle::drawItemPixmap +184 QWindowsCEStyle::standardPalette +192 QWindowsCEStyle::drawPrimitive +200 QWindowsCEStyle::drawControl +208 QWindowsCEStyle::subElementRect +216 QWindowsCEStyle::drawComplexControl +224 QWindowsCEStyle::hitTestComplexControl +232 QWindowsCEStyle::subControlRect +240 QWindowsCEStyle::pixelMetric +248 QWindowsCEStyle::sizeFromContents +256 QWindowsCEStyle::styleHint +264 QWindowsCEStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QWindowsCEStyle + size=24 align=8 + base size=24 base align=8 +QWindowsCEStyle (0x7f62dc217d90) 0 + vptr=((& QWindowsCEStyle::_ZTV15QWindowsCEStyle) + 16u) + QWindowsStyle (0x7f62dc217e00) 0 + primary-for QWindowsCEStyle (0x7f62dc217d90) + QCommonStyle (0x7f62dc217e70) 0 + primary-for QWindowsStyle (0x7f62dc217e00) + QStyle (0x7f62dc217ee0) 0 + primary-for QCommonStyle (0x7f62dc217e70) + QObject (0x7f62dc217f50) 0 + primary-for QStyle (0x7f62dc217ee0) + +Vtable for QWindowsMobileStyle +QWindowsMobileStyle::_ZTV19QWindowsMobileStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QWindowsMobileStyle) +16 QWindowsMobileStyle::metaObject +24 QWindowsMobileStyle::qt_metacast +32 QWindowsMobileStyle::qt_metacall +40 QWindowsMobileStyle::~QWindowsMobileStyle +48 QWindowsMobileStyle::~QWindowsMobileStyle +56 QObject::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWindowsMobileStyle::polish +120 QWindowsMobileStyle::unpolish +128 QWindowsMobileStyle::polish +136 QWindowsMobileStyle::unpolish +144 QWindowsMobileStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QWindowsMobileStyle::standardPalette +192 QWindowsMobileStyle::drawPrimitive +200 QWindowsMobileStyle::drawControl +208 QWindowsMobileStyle::subElementRect +216 QWindowsMobileStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QWindowsMobileStyle::subControlRect +240 QWindowsMobileStyle::pixelMetric +248 QWindowsMobileStyle::sizeFromContents +256 QWindowsMobileStyle::styleHint +264 QWindowsMobileStyle::standardPixmap +272 QWindowsMobileStyle::generatedIconPixmap + +Class QWindowsMobileStyle + size=24 align=8 + base size=24 base align=8 +QWindowsMobileStyle (0x7f62dc23d3f0) 0 + vptr=((& QWindowsMobileStyle::_ZTV19QWindowsMobileStyle) + 16u) + QWindowsStyle (0x7f62dc23d460) 0 + primary-for QWindowsMobileStyle (0x7f62dc23d3f0) + QCommonStyle (0x7f62dc23d4d0) 0 + primary-for QWindowsStyle (0x7f62dc23d460) + QStyle (0x7f62dc23d540) 0 + primary-for QCommonStyle (0x7f62dc23d4d0) + QObject (0x7f62dc23d5b0) 0 + primary-for QStyle (0x7f62dc23d540) + +Vtable for QWindowsXPStyle +QWindowsXPStyle::_ZTV15QWindowsXPStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QWindowsXPStyle) +16 QWindowsXPStyle::metaObject +24 QWindowsXPStyle::qt_metacast +32 QWindowsXPStyle::qt_metacall +40 QWindowsXPStyle::~QWindowsXPStyle +48 QWindowsXPStyle::~QWindowsXPStyle +56 QObject::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWindowsXPStyle::polish +120 QWindowsXPStyle::unpolish +128 QWindowsXPStyle::polish +136 QWindowsXPStyle::unpolish +144 QWindowsXPStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QWindowsXPStyle::standardPalette +192 QWindowsXPStyle::drawPrimitive +200 QWindowsXPStyle::drawControl +208 QWindowsXPStyle::subElementRect +216 QWindowsXPStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QWindowsXPStyle::subControlRect +240 QWindowsXPStyle::pixelMetric +248 QWindowsXPStyle::sizeFromContents +256 QWindowsXPStyle::styleHint +264 QWindowsXPStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QWindowsXPStyle + size=32 align=8 + base size=32 base align=8 +QWindowsXPStyle (0x7f62dc256d90) 0 + vptr=((& QWindowsXPStyle::_ZTV15QWindowsXPStyle) + 16u) + QWindowsStyle (0x7f62dc256e00) 0 + primary-for QWindowsXPStyle (0x7f62dc256d90) + QCommonStyle (0x7f62dc256e70) 0 + primary-for QWindowsStyle (0x7f62dc256e00) + QStyle (0x7f62dc256ee0) 0 + primary-for QCommonStyle (0x7f62dc256e70) + QObject (0x7f62dc256f50) 0 + primary-for QStyle (0x7f62dc256ee0) + +Vtable for QWindowsVistaStyle +QWindowsVistaStyle::_ZTV18QWindowsVistaStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QWindowsVistaStyle) +16 QWindowsVistaStyle::metaObject +24 QWindowsVistaStyle::qt_metacast +32 QWindowsVistaStyle::qt_metacall +40 QWindowsVistaStyle::~QWindowsVistaStyle +48 QWindowsVistaStyle::~QWindowsVistaStyle +56 QWindowsVistaStyle::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWindowsVistaStyle::polish +120 QWindowsVistaStyle::unpolish +128 QWindowsVistaStyle::polish +136 QWindowsVistaStyle::unpolish +144 QWindowsVistaStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QWindowsVistaStyle::standardPalette +192 QWindowsVistaStyle::drawPrimitive +200 QWindowsVistaStyle::drawControl +208 QWindowsVistaStyle::subElementRect +216 QWindowsVistaStyle::drawComplexControl +224 QWindowsVistaStyle::hitTestComplexControl +232 QWindowsVistaStyle::subControlRect +240 QWindowsVistaStyle::pixelMetric +248 QWindowsVistaStyle::sizeFromContents +256 QWindowsVistaStyle::styleHint +264 QWindowsVistaStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QWindowsVistaStyle + size=32 align=8 + base size=32 base align=8 +QWindowsVistaStyle (0x7f62dc278c40) 0 + vptr=((& QWindowsVistaStyle::_ZTV18QWindowsVistaStyle) + 16u) + QWindowsXPStyle (0x7f62dc278cb0) 0 + primary-for QWindowsVistaStyle (0x7f62dc278c40) + QWindowsStyle (0x7f62dc278d20) 0 + primary-for QWindowsXPStyle (0x7f62dc278cb0) + QCommonStyle (0x7f62dc278d90) 0 + primary-for QWindowsStyle (0x7f62dc278d20) + QStyle (0x7f62dc278e00) 0 + primary-for QCommonStyle (0x7f62dc278d90) + QObject (0x7f62dc278e70) 0 + primary-for QStyle (0x7f62dc278e00) + +Vtable for QInputContext +QInputContext::_ZTV13QInputContext: 26u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QInputContext) +16 QInputContext::metaObject +24 QInputContext::qt_metacast +32 QInputContext::qt_metacall +40 QInputContext::~QInputContext +48 QInputContext::~QInputContext +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 QInputContext::update +144 QInputContext::mouseHandler +152 QInputContext::font +160 __cxa_pure_virtual +168 QInputContext::setFocusWidget +176 QInputContext::widgetDestroyed +184 QInputContext::actions +192 QInputContext::x11FilterEvent +200 QInputContext::filterEvent + +Class QInputContext + size=16 align=8 + base size=16 base align=8 +QInputContext (0x7f62dc097c40) 0 + vptr=((& QInputContext::_ZTV13QInputContext) + 16u) + QObject (0x7f62dc097cb0) 0 + primary-for QInputContext (0x7f62dc097c40) + +Class QInputContextFactory + size=1 align=1 + base size=0 base align=1 +QInputContextFactory (0x7f62dc0b85b0) 0 empty + +Vtable for QInputContextFactoryInterface +QInputContextFactoryInterface::_ZTV29QInputContextFactoryInterface: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI29QInputContextFactoryInterface) +16 QInputContextFactoryInterface::~QInputContextFactoryInterface +24 QInputContextFactoryInterface::~QInputContextFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual + +Class QInputContextFactoryInterface + size=8 align=8 + base size=8 base align=8 +QInputContextFactoryInterface (0x7f62dc0b8620) 0 nearly-empty + vptr=((& QInputContextFactoryInterface::_ZTV29QInputContextFactoryInterface) + 16u) + QFactoryInterface (0x7f62dc0b8690) 0 nearly-empty + primary-for QInputContextFactoryInterface (0x7f62dc0b8620) + +Vtable for QInputContextPlugin +QInputContextPlugin::_ZTV19QInputContextPlugin: 28u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QInputContextPlugin) +16 QInputContextPlugin::metaObject +24 QInputContextPlugin::qt_metacast +32 QInputContextPlugin::qt_metacall +40 QInputContextPlugin::~QInputContextPlugin +48 QInputContextPlugin::~QInputContextPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 (int (*)(...))-0x00000000000000010 +160 (int (*)(...))(& _ZTI19QInputContextPlugin) +168 QInputContextPlugin::_ZThn16_N19QInputContextPluginD1Ev +176 QInputContextPlugin::_ZThn16_N19QInputContextPluginD0Ev +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 __cxa_pure_virtual +208 __cxa_pure_virtual +216 __cxa_pure_virtual + +Class QInputContextPlugin + size=24 align=8 + base size=24 base align=8 +QInputContextPlugin (0x7f62dc0b4e80) 0 + vptr=((& QInputContextPlugin::_ZTV19QInputContextPlugin) + 16u) + QObject (0x7f62dc0c6000) 0 + primary-for QInputContextPlugin (0x7f62dc0b4e80) + QInputContextFactoryInterface (0x7f62dc0c6070) 16 nearly-empty + vptr=((& QInputContextPlugin::_ZTV19QInputContextPlugin) + 168u) + QFactoryInterface (0x7f62dc0c60e0) 16 nearly-empty + primary-for QInputContextFactoryInterface (0x7f62dc0c6070) + +Vtable for QGraphicsItem +QGraphicsItem::_ZTV13QGraphicsItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QGraphicsItem) +16 QGraphicsItem::~QGraphicsItem +24 QGraphicsItem::~QGraphicsItem +32 QGraphicsItem::advance +40 __cxa_pure_virtual +48 QGraphicsItem::shape +56 QGraphicsItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsItem::isObscuredBy +88 QGraphicsItem::opaqueArea +96 __cxa_pure_virtual +104 QGraphicsItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsItem::supportsExtension +296 QGraphicsItem::setExtension +304 QGraphicsItem::extension + +Class QGraphicsItem + size=16 align=8 + base size=16 base align=8 +QGraphicsItem (0x7f62dc0c6380) 0 + vptr=((& QGraphicsItem::_ZTV13QGraphicsItem) + 16u) + +Vtable for QGraphicsObject +QGraphicsObject::_ZTV15QGraphicsObject: 53u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QGraphicsObject) +16 QGraphicsObject::metaObject +24 QGraphicsObject::qt_metacast +32 QGraphicsObject::qt_metacall +40 QGraphicsObject::~QGraphicsObject +48 QGraphicsObject::~QGraphicsObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 (int (*)(...))-0x00000000000000010 +120 (int (*)(...))(& _ZTI15QGraphicsObject) +128 QGraphicsObject::_ZThn16_N15QGraphicsObjectD1Ev +136 QGraphicsObject::_ZThn16_N15QGraphicsObjectD0Ev +144 QGraphicsItem::advance +152 __cxa_pure_virtual +160 QGraphicsItem::shape +168 QGraphicsItem::contains +176 QGraphicsItem::collidesWithItem +184 QGraphicsItem::collidesWithPath +192 QGraphicsItem::isObscuredBy +200 QGraphicsItem::opaqueArea +208 __cxa_pure_virtual +216 QGraphicsItem::type +224 QGraphicsItem::sceneEventFilter +232 QGraphicsItem::sceneEvent +240 QGraphicsItem::contextMenuEvent +248 QGraphicsItem::dragEnterEvent +256 QGraphicsItem::dragLeaveEvent +264 QGraphicsItem::dragMoveEvent +272 QGraphicsItem::dropEvent +280 QGraphicsItem::focusInEvent +288 QGraphicsItem::focusOutEvent +296 QGraphicsItem::hoverEnterEvent +304 QGraphicsItem::hoverMoveEvent +312 QGraphicsItem::hoverLeaveEvent +320 QGraphicsItem::keyPressEvent +328 QGraphicsItem::keyReleaseEvent +336 QGraphicsItem::mousePressEvent +344 QGraphicsItem::mouseMoveEvent +352 QGraphicsItem::mouseReleaseEvent +360 QGraphicsItem::mouseDoubleClickEvent +368 QGraphicsItem::wheelEvent +376 QGraphicsItem::inputMethodEvent +384 QGraphicsItem::inputMethodQuery +392 QGraphicsItem::itemChange +400 QGraphicsItem::supportsExtension +408 QGraphicsItem::setExtension +416 QGraphicsItem::extension + +Class QGraphicsObject + size=32 align=8 + base size=32 base align=8 +QGraphicsObject (0x7f62dbfbbc80) 0 + vptr=((& QGraphicsObject::_ZTV15QGraphicsObject) + 16u) + QObject (0x7f62dbfc2f50) 0 + primary-for QGraphicsObject (0x7f62dbfbbc80) + QGraphicsItem (0x7f62dbfcc000) 16 + vptr=((& QGraphicsObject::_ZTV15QGraphicsObject) + 128u) + +Vtable for QAbstractGraphicsShapeItem +QAbstractGraphicsShapeItem::_ZTV26QAbstractGraphicsShapeItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QAbstractGraphicsShapeItem) +16 QAbstractGraphicsShapeItem::~QAbstractGraphicsShapeItem +24 QAbstractGraphicsShapeItem::~QAbstractGraphicsShapeItem +32 QGraphicsItem::advance +40 __cxa_pure_virtual +48 QGraphicsItem::shape +56 QGraphicsItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QAbstractGraphicsShapeItem::isObscuredBy +88 QAbstractGraphicsShapeItem::opaqueArea +96 __cxa_pure_virtual +104 QGraphicsItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsItem::supportsExtension +296 QGraphicsItem::setExtension +304 QGraphicsItem::extension + +Class QAbstractGraphicsShapeItem + size=16 align=8 + base size=16 base align=8 +QAbstractGraphicsShapeItem (0x7f62dbfe2070) 0 + vptr=((& QAbstractGraphicsShapeItem::_ZTV26QAbstractGraphicsShapeItem) + 16u) + QGraphicsItem (0x7f62dbfe20e0) 0 + primary-for QAbstractGraphicsShapeItem (0x7f62dbfe2070) + +Vtable for QGraphicsPathItem +QGraphicsPathItem::_ZTV17QGraphicsPathItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QGraphicsPathItem) +16 QGraphicsPathItem::~QGraphicsPathItem +24 QGraphicsPathItem::~QGraphicsPathItem +32 QGraphicsItem::advance +40 QGraphicsPathItem::boundingRect +48 QGraphicsPathItem::shape +56 QGraphicsPathItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsPathItem::isObscuredBy +88 QGraphicsPathItem::opaqueArea +96 QGraphicsPathItem::paint +104 QGraphicsPathItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsPathItem::supportsExtension +296 QGraphicsPathItem::setExtension +304 QGraphicsPathItem::extension + +Class QGraphicsPathItem + size=16 align=8 + base size=16 base align=8 +QGraphicsPathItem (0x7f62dbfe2ee0) 0 + vptr=((& QGraphicsPathItem::_ZTV17QGraphicsPathItem) + 16u) + QAbstractGraphicsShapeItem (0x7f62dbfe2f50) 0 + primary-for QGraphicsPathItem (0x7f62dbfe2ee0) + QGraphicsItem (0x7f62dbfe2930) 0 + primary-for QAbstractGraphicsShapeItem (0x7f62dbfe2f50) + +Vtable for QGraphicsRectItem +QGraphicsRectItem::_ZTV17QGraphicsRectItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QGraphicsRectItem) +16 QGraphicsRectItem::~QGraphicsRectItem +24 QGraphicsRectItem::~QGraphicsRectItem +32 QGraphicsItem::advance +40 QGraphicsRectItem::boundingRect +48 QGraphicsRectItem::shape +56 QGraphicsRectItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsRectItem::isObscuredBy +88 QGraphicsRectItem::opaqueArea +96 QGraphicsRectItem::paint +104 QGraphicsRectItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsRectItem::supportsExtension +296 QGraphicsRectItem::setExtension +304 QGraphicsRectItem::extension + +Class QGraphicsRectItem + size=16 align=8 + base size=16 base align=8 +QGraphicsRectItem (0x7f62dbfefe70) 0 + vptr=((& QGraphicsRectItem::_ZTV17QGraphicsRectItem) + 16u) + QAbstractGraphicsShapeItem (0x7f62dbfefee0) 0 + primary-for QGraphicsRectItem (0x7f62dbfefe70) + QGraphicsItem (0x7f62dbfeff50) 0 + primary-for QAbstractGraphicsShapeItem (0x7f62dbfefee0) + +Vtable for QGraphicsEllipseItem +QGraphicsEllipseItem::_ZTV20QGraphicsEllipseItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QGraphicsEllipseItem) +16 QGraphicsEllipseItem::~QGraphicsEllipseItem +24 QGraphicsEllipseItem::~QGraphicsEllipseItem +32 QGraphicsItem::advance +40 QGraphicsEllipseItem::boundingRect +48 QGraphicsEllipseItem::shape +56 QGraphicsEllipseItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsEllipseItem::isObscuredBy +88 QGraphicsEllipseItem::opaqueArea +96 QGraphicsEllipseItem::paint +104 QGraphicsEllipseItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsEllipseItem::supportsExtension +296 QGraphicsEllipseItem::setExtension +304 QGraphicsEllipseItem::extension + +Class QGraphicsEllipseItem + size=16 align=8 + base size=16 base align=8 +QGraphicsEllipseItem (0x7f62dc013150) 0 + vptr=((& QGraphicsEllipseItem::_ZTV20QGraphicsEllipseItem) + 16u) + QAbstractGraphicsShapeItem (0x7f62dc0131c0) 0 + primary-for QGraphicsEllipseItem (0x7f62dc013150) + QGraphicsItem (0x7f62dc013230) 0 + primary-for QAbstractGraphicsShapeItem (0x7f62dc0131c0) + +Vtable for QGraphicsPolygonItem +QGraphicsPolygonItem::_ZTV20QGraphicsPolygonItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QGraphicsPolygonItem) +16 QGraphicsPolygonItem::~QGraphicsPolygonItem +24 QGraphicsPolygonItem::~QGraphicsPolygonItem +32 QGraphicsItem::advance +40 QGraphicsPolygonItem::boundingRect +48 QGraphicsPolygonItem::shape +56 QGraphicsPolygonItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsPolygonItem::isObscuredBy +88 QGraphicsPolygonItem::opaqueArea +96 QGraphicsPolygonItem::paint +104 QGraphicsPolygonItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsPolygonItem::supportsExtension +296 QGraphicsPolygonItem::setExtension +304 QGraphicsPolygonItem::extension + +Class QGraphicsPolygonItem + size=16 align=8 + base size=16 base align=8 +QGraphicsPolygonItem (0x7f62dc026460) 0 + vptr=((& QGraphicsPolygonItem::_ZTV20QGraphicsPolygonItem) + 16u) + QAbstractGraphicsShapeItem (0x7f62dc0264d0) 0 + primary-for QGraphicsPolygonItem (0x7f62dc026460) + QGraphicsItem (0x7f62dc026540) 0 + primary-for QAbstractGraphicsShapeItem (0x7f62dc0264d0) + +Vtable for QGraphicsLineItem +QGraphicsLineItem::_ZTV17QGraphicsLineItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QGraphicsLineItem) +16 QGraphicsLineItem::~QGraphicsLineItem +24 QGraphicsLineItem::~QGraphicsLineItem +32 QGraphicsItem::advance +40 QGraphicsLineItem::boundingRect +48 QGraphicsLineItem::shape +56 QGraphicsLineItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsLineItem::isObscuredBy +88 QGraphicsLineItem::opaqueArea +96 QGraphicsLineItem::paint +104 QGraphicsLineItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsLineItem::supportsExtension +296 QGraphicsLineItem::setExtension +304 QGraphicsLineItem::extension + +Class QGraphicsLineItem + size=16 align=8 + base size=16 base align=8 +QGraphicsLineItem (0x7f62dc03c3f0) 0 + vptr=((& QGraphicsLineItem::_ZTV17QGraphicsLineItem) + 16u) + QGraphicsItem (0x7f62dc03c460) 0 + primary-for QGraphicsLineItem (0x7f62dc03c3f0) + +Vtable for QGraphicsPixmapItem +QGraphicsPixmapItem::_ZTV19QGraphicsPixmapItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QGraphicsPixmapItem) +16 QGraphicsPixmapItem::~QGraphicsPixmapItem +24 QGraphicsPixmapItem::~QGraphicsPixmapItem +32 QGraphicsItem::advance +40 QGraphicsPixmapItem::boundingRect +48 QGraphicsPixmapItem::shape +56 QGraphicsPixmapItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsPixmapItem::isObscuredBy +88 QGraphicsPixmapItem::opaqueArea +96 QGraphicsPixmapItem::paint +104 QGraphicsPixmapItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsPixmapItem::supportsExtension +296 QGraphicsPixmapItem::setExtension +304 QGraphicsPixmapItem::extension + +Class QGraphicsPixmapItem + size=16 align=8 + base size=16 base align=8 +QGraphicsPixmapItem (0x7f62dc04e690) 0 + vptr=((& QGraphicsPixmapItem::_ZTV19QGraphicsPixmapItem) + 16u) + QGraphicsItem (0x7f62dc04e700) 0 + primary-for QGraphicsPixmapItem (0x7f62dc04e690) + +Vtable for QGraphicsTextItem +QGraphicsTextItem::_ZTV17QGraphicsTextItem: 82u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QGraphicsTextItem) +16 QGraphicsTextItem::metaObject +24 QGraphicsTextItem::qt_metacast +32 QGraphicsTextItem::qt_metacall +40 QGraphicsTextItem::~QGraphicsTextItem +48 QGraphicsTextItem::~QGraphicsTextItem +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsTextItem::boundingRect +120 QGraphicsTextItem::shape +128 QGraphicsTextItem::contains +136 QGraphicsTextItem::paint +144 QGraphicsTextItem::isObscuredBy +152 QGraphicsTextItem::opaqueArea +160 QGraphicsTextItem::type +168 QGraphicsTextItem::sceneEvent +176 QGraphicsTextItem::mousePressEvent +184 QGraphicsTextItem::mouseMoveEvent +192 QGraphicsTextItem::mouseReleaseEvent +200 QGraphicsTextItem::mouseDoubleClickEvent +208 QGraphicsTextItem::contextMenuEvent +216 QGraphicsTextItem::keyPressEvent +224 QGraphicsTextItem::keyReleaseEvent +232 QGraphicsTextItem::focusInEvent +240 QGraphicsTextItem::focusOutEvent +248 QGraphicsTextItem::dragEnterEvent +256 QGraphicsTextItem::dragLeaveEvent +264 QGraphicsTextItem::dragMoveEvent +272 QGraphicsTextItem::dropEvent +280 QGraphicsTextItem::inputMethodEvent +288 QGraphicsTextItem::hoverEnterEvent +296 QGraphicsTextItem::hoverMoveEvent +304 QGraphicsTextItem::hoverLeaveEvent +312 QGraphicsTextItem::inputMethodQuery +320 QGraphicsTextItem::supportsExtension +328 QGraphicsTextItem::setExtension +336 QGraphicsTextItem::extension +344 (int (*)(...))-0x00000000000000010 +352 (int (*)(...))(& _ZTI17QGraphicsTextItem) +360 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItemD1Ev +368 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItemD0Ev +376 QGraphicsItem::advance +384 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem12boundingRectEv +392 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem5shapeEv +400 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem8containsERK7QPointF +408 QGraphicsItem::collidesWithItem +416 QGraphicsItem::collidesWithPath +424 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem12isObscuredByEPK13QGraphicsItem +432 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem10opaqueAreaEv +440 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget +448 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem4typeEv +456 QGraphicsItem::sceneEventFilter +464 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem10sceneEventEP6QEvent +472 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem16contextMenuEventEP30QGraphicsSceneContextMenuEvent +480 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem14dragEnterEventEP27QGraphicsSceneDragDropEvent +488 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem14dragLeaveEventEP27QGraphicsSceneDragDropEvent +496 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem13dragMoveEventEP27QGraphicsSceneDragDropEvent +504 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem9dropEventEP27QGraphicsSceneDragDropEvent +512 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem12focusInEventEP11QFocusEvent +520 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem13focusOutEventEP11QFocusEvent +528 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem15hoverEnterEventEP24QGraphicsSceneHoverEvent +536 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem14hoverMoveEventEP24QGraphicsSceneHoverEvent +544 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem15hoverLeaveEventEP24QGraphicsSceneHoverEvent +552 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem13keyPressEventEP9QKeyEvent +560 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem15keyReleaseEventEP9QKeyEvent +568 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem15mousePressEventEP24QGraphicsSceneMouseEvent +576 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem14mouseMoveEventEP24QGraphicsSceneMouseEvent +584 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem17mouseReleaseEventEP24QGraphicsSceneMouseEvent +592 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem21mouseDoubleClickEventEP24QGraphicsSceneMouseEvent +600 QGraphicsItem::wheelEvent +608 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem16inputMethodEventEP17QInputMethodEvent +616 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem16inputMethodQueryEN2Qt16InputMethodQueryE +624 QGraphicsItem::itemChange +632 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem17supportsExtensionEN13QGraphicsItem9ExtensionE +640 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem12setExtensionEN13QGraphicsItem9ExtensionERK8QVariant +648 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem9extensionERK8QVariant + +Class QGraphicsTextItem + size=40 align=8 + base size=40 base align=8 +QGraphicsTextItem (0x7f62dc05e930) 0 + vptr=((& QGraphicsTextItem::_ZTV17QGraphicsTextItem) + 16u) + QGraphicsObject (0x7f62dc053700) 0 + primary-for QGraphicsTextItem (0x7f62dc05e930) + QObject (0x7f62dc05e9a0) 0 + primary-for QGraphicsObject (0x7f62dc053700) + QGraphicsItem (0x7f62dc05ea10) 16 + vptr=((& QGraphicsTextItem::_ZTV17QGraphicsTextItem) + 360u) + +Vtable for QGraphicsSimpleTextItem +QGraphicsSimpleTextItem::_ZTV23QGraphicsSimpleTextItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QGraphicsSimpleTextItem) +16 QGraphicsSimpleTextItem::~QGraphicsSimpleTextItem +24 QGraphicsSimpleTextItem::~QGraphicsSimpleTextItem +32 QGraphicsItem::advance +40 QGraphicsSimpleTextItem::boundingRect +48 QGraphicsSimpleTextItem::shape +56 QGraphicsSimpleTextItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsSimpleTextItem::isObscuredBy +88 QGraphicsSimpleTextItem::opaqueArea +96 QGraphicsSimpleTextItem::paint +104 QGraphicsSimpleTextItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsSimpleTextItem::supportsExtension +296 QGraphicsSimpleTextItem::setExtension +304 QGraphicsSimpleTextItem::extension + +Class QGraphicsSimpleTextItem + size=16 align=8 + base size=16 base align=8 +QGraphicsSimpleTextItem (0x7f62dc07e380) 0 + vptr=((& QGraphicsSimpleTextItem::_ZTV23QGraphicsSimpleTextItem) + 16u) + QAbstractGraphicsShapeItem (0x7f62dbe94000) 0 + primary-for QGraphicsSimpleTextItem (0x7f62dc07e380) + QGraphicsItem (0x7f62dbe94070) 0 + primary-for QAbstractGraphicsShapeItem (0x7f62dbe94000) + +Vtable for QGraphicsItemGroup +QGraphicsItemGroup::_ZTV18QGraphicsItemGroup: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QGraphicsItemGroup) +16 QGraphicsItemGroup::~QGraphicsItemGroup +24 QGraphicsItemGroup::~QGraphicsItemGroup +32 QGraphicsItem::advance +40 QGraphicsItemGroup::boundingRect +48 QGraphicsItem::shape +56 QGraphicsItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsItemGroup::isObscuredBy +88 QGraphicsItemGroup::opaqueArea +96 QGraphicsItemGroup::paint +104 QGraphicsItemGroup::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsItem::supportsExtension +296 QGraphicsItem::setExtension +304 QGraphicsItem::extension + +Class QGraphicsItemGroup + size=16 align=8 + base size=16 base align=8 +QGraphicsItemGroup (0x7f62dbe94f50) 0 + vptr=((& QGraphicsItemGroup::_ZTV18QGraphicsItemGroup) + 16u) + QGraphicsItem (0x7f62dbe949a0) 0 + primary-for QGraphicsItemGroup (0x7f62dbe94f50) + +Vtable for QGraphicsLayoutItem +QGraphicsLayoutItem::_ZTV19QGraphicsLayoutItem: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QGraphicsLayoutItem) +16 QGraphicsLayoutItem::~QGraphicsLayoutItem +24 QGraphicsLayoutItem::~QGraphicsLayoutItem +32 QGraphicsLayoutItem::setGeometry +40 QGraphicsLayoutItem::getContentsMargins +48 QGraphicsLayoutItem::updateGeometry +56 __cxa_pure_virtual + +Class QGraphicsLayoutItem + size=16 align=8 + base size=16 base align=8 +QGraphicsLayoutItem (0x7f62dbeb7850) 0 + vptr=((& QGraphicsLayoutItem::_ZTV19QGraphicsLayoutItem) + 16u) + +Vtable for QGraphicsLayout +QGraphicsLayout::_ZTV15QGraphicsLayout: 13u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QGraphicsLayout) +16 QGraphicsLayout::~QGraphicsLayout +24 QGraphicsLayout::~QGraphicsLayout +32 QGraphicsLayoutItem::setGeometry +40 QGraphicsLayout::getContentsMargins +48 QGraphicsLayout::updateGeometry +56 __cxa_pure_virtual +64 QGraphicsLayout::invalidate +72 QGraphicsLayout::widgetEvent +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual + +Class QGraphicsLayout + size=16 align=8 + base size=16 base align=8 +QGraphicsLayout (0x7f62dbefa070) 0 + vptr=((& QGraphicsLayout::_ZTV15QGraphicsLayout) + 16u) + QGraphicsLayoutItem (0x7f62dbefa0e0) 0 + primary-for QGraphicsLayout (0x7f62dbefa070) + +Vtable for QGraphicsAnchor +QGraphicsAnchor::_ZTV15QGraphicsAnchor: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QGraphicsAnchor) +16 QGraphicsAnchor::metaObject +24 QGraphicsAnchor::qt_metacast +32 QGraphicsAnchor::qt_metacall +40 QGraphicsAnchor::~QGraphicsAnchor +48 QGraphicsAnchor::~QGraphicsAnchor +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QGraphicsAnchor + size=16 align=8 + base size=16 base align=8 +QGraphicsAnchor (0x7f62dbf08850) 0 + vptr=((& QGraphicsAnchor::_ZTV15QGraphicsAnchor) + 16u) + QObject (0x7f62dbf088c0) 0 + primary-for QGraphicsAnchor (0x7f62dbf08850) + +Vtable for QGraphicsAnchorLayout +QGraphicsAnchorLayout::_ZTV21QGraphicsAnchorLayout: 13u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QGraphicsAnchorLayout) +16 QGraphicsAnchorLayout::~QGraphicsAnchorLayout +24 QGraphicsAnchorLayout::~QGraphicsAnchorLayout +32 QGraphicsAnchorLayout::setGeometry +40 QGraphicsLayout::getContentsMargins +48 QGraphicsLayout::updateGeometry +56 QGraphicsAnchorLayout::sizeHint +64 QGraphicsAnchorLayout::invalidate +72 QGraphicsLayout::widgetEvent +80 QGraphicsAnchorLayout::count +88 QGraphicsAnchorLayout::itemAt +96 QGraphicsAnchorLayout::removeAt + +Class QGraphicsAnchorLayout + size=16 align=8 + base size=16 base align=8 +QGraphicsAnchorLayout (0x7f62dbf1dd90) 0 + vptr=((& QGraphicsAnchorLayout::_ZTV21QGraphicsAnchorLayout) + 16u) + QGraphicsLayout (0x7f62dbf1de00) 0 + primary-for QGraphicsAnchorLayout (0x7f62dbf1dd90) + QGraphicsLayoutItem (0x7f62dbf1de70) 0 + primary-for QGraphicsLayout (0x7f62dbf1de00) + +Vtable for QGraphicsGridLayout +QGraphicsGridLayout::_ZTV19QGraphicsGridLayout: 13u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QGraphicsGridLayout) +16 QGraphicsGridLayout::~QGraphicsGridLayout +24 QGraphicsGridLayout::~QGraphicsGridLayout +32 QGraphicsGridLayout::setGeometry +40 QGraphicsLayout::getContentsMargins +48 QGraphicsLayout::updateGeometry +56 QGraphicsGridLayout::sizeHint +64 QGraphicsGridLayout::invalidate +72 QGraphicsLayout::widgetEvent +80 QGraphicsGridLayout::count +88 QGraphicsGridLayout::itemAt +96 QGraphicsGridLayout::removeAt + +Class QGraphicsGridLayout + size=16 align=8 + base size=16 base align=8 +QGraphicsGridLayout (0x7f62dbf340e0) 0 + vptr=((& QGraphicsGridLayout::_ZTV19QGraphicsGridLayout) + 16u) + QGraphicsLayout (0x7f62dbf34150) 0 + primary-for QGraphicsGridLayout (0x7f62dbf340e0) + QGraphicsLayoutItem (0x7f62dbf341c0) 0 + primary-for QGraphicsLayout (0x7f62dbf34150) + +Vtable for QGraphicsItemAnimation +QGraphicsItemAnimation::_ZTV22QGraphicsItemAnimation: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QGraphicsItemAnimation) +16 QGraphicsItemAnimation::metaObject +24 QGraphicsItemAnimation::qt_metacast +32 QGraphicsItemAnimation::qt_metacall +40 QGraphicsItemAnimation::~QGraphicsItemAnimation +48 QGraphicsItemAnimation::~QGraphicsItemAnimation +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsItemAnimation::beforeAnimationStep +120 QGraphicsItemAnimation::afterAnimationStep + +Class QGraphicsItemAnimation + size=24 align=8 + base size=24 base align=8 +QGraphicsItemAnimation (0x7f62dbf534d0) 0 + vptr=((& QGraphicsItemAnimation::_ZTV22QGraphicsItemAnimation) + 16u) + QObject (0x7f62dbf53540) 0 + primary-for QGraphicsItemAnimation (0x7f62dbf534d0) + +Vtable for QGraphicsLinearLayout +QGraphicsLinearLayout::_ZTV21QGraphicsLinearLayout: 13u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QGraphicsLinearLayout) +16 QGraphicsLinearLayout::~QGraphicsLinearLayout +24 QGraphicsLinearLayout::~QGraphicsLinearLayout +32 QGraphicsLinearLayout::setGeometry +40 QGraphicsLayout::getContentsMargins +48 QGraphicsLayout::updateGeometry +56 QGraphicsLinearLayout::sizeHint +64 QGraphicsLinearLayout::invalidate +72 QGraphicsLayout::widgetEvent +80 QGraphicsLinearLayout::count +88 QGraphicsLinearLayout::itemAt +96 QGraphicsLinearLayout::removeAt + +Class QGraphicsLinearLayout + size=16 align=8 + base size=16 base align=8 +QGraphicsLinearLayout (0x7f62dbf6b850) 0 + vptr=((& QGraphicsLinearLayout::_ZTV21QGraphicsLinearLayout) + 16u) + QGraphicsLayout (0x7f62dbf6b8c0) 0 + primary-for QGraphicsLinearLayout (0x7f62dbf6b850) + QGraphicsLayoutItem (0x7f62dbf6b930) 0 + primary-for QGraphicsLayout (0x7f62dbf6b8c0) + +Vtable for QGraphicsWidget +QGraphicsWidget::_ZTV15QGraphicsWidget: 92u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QGraphicsWidget) +16 QGraphicsWidget::metaObject +24 QGraphicsWidget::qt_metacast +32 QGraphicsWidget::qt_metacall +40 QGraphicsWidget::~QGraphicsWidget +48 QGraphicsWidget::~QGraphicsWidget +56 QGraphicsWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsWidget::setGeometry +120 QGraphicsWidget::getContentsMargins +128 QGraphicsWidget::type +136 QGraphicsWidget::paint +144 QGraphicsWidget::paintWindowFrame +152 QGraphicsWidget::boundingRect +160 QGraphicsWidget::shape +168 QGraphicsWidget::initStyleOption +176 QGraphicsWidget::sizeHint +184 QGraphicsWidget::updateGeometry +192 QGraphicsWidget::itemChange +200 QGraphicsWidget::propertyChange +208 QGraphicsWidget::sceneEvent +216 QGraphicsWidget::windowFrameEvent +224 QGraphicsWidget::windowFrameSectionAt +232 QGraphicsWidget::changeEvent +240 QGraphicsWidget::closeEvent +248 QGraphicsWidget::focusInEvent +256 QGraphicsWidget::focusNextPrevChild +264 QGraphicsWidget::focusOutEvent +272 QGraphicsWidget::hideEvent +280 QGraphicsWidget::moveEvent +288 QGraphicsWidget::polishEvent +296 QGraphicsWidget::resizeEvent +304 QGraphicsWidget::showEvent +312 QGraphicsWidget::hoverMoveEvent +320 QGraphicsWidget::hoverLeaveEvent +328 QGraphicsWidget::grabMouseEvent +336 QGraphicsWidget::ungrabMouseEvent +344 QGraphicsWidget::grabKeyboardEvent +352 QGraphicsWidget::ungrabKeyboardEvent +360 (int (*)(...))-0x00000000000000010 +368 (int (*)(...))(& _ZTI15QGraphicsWidget) +376 QGraphicsWidget::_ZThn16_N15QGraphicsWidgetD1Ev +384 QGraphicsWidget::_ZThn16_N15QGraphicsWidgetD0Ev +392 QGraphicsItem::advance +400 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget12boundingRectEv +408 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget5shapeEv +416 QGraphicsItem::contains +424 QGraphicsItem::collidesWithItem +432 QGraphicsItem::collidesWithPath +440 QGraphicsItem::isObscuredBy +448 QGraphicsItem::opaqueArea +456 QGraphicsWidget::_ZThn16_N15QGraphicsWidget5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget +464 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget4typeEv +472 QGraphicsItem::sceneEventFilter +480 QGraphicsWidget::_ZThn16_N15QGraphicsWidget10sceneEventEP6QEvent +488 QGraphicsItem::contextMenuEvent +496 QGraphicsItem::dragEnterEvent +504 QGraphicsItem::dragLeaveEvent +512 QGraphicsItem::dragMoveEvent +520 QGraphicsItem::dropEvent +528 QGraphicsWidget::_ZThn16_N15QGraphicsWidget12focusInEventEP11QFocusEvent +536 QGraphicsWidget::_ZThn16_N15QGraphicsWidget13focusOutEventEP11QFocusEvent +544 QGraphicsItem::hoverEnterEvent +552 QGraphicsWidget::_ZThn16_N15QGraphicsWidget14hoverMoveEventEP24QGraphicsSceneHoverEvent +560 QGraphicsWidget::_ZThn16_N15QGraphicsWidget15hoverLeaveEventEP24QGraphicsSceneHoverEvent +568 QGraphicsItem::keyPressEvent +576 QGraphicsItem::keyReleaseEvent +584 QGraphicsItem::mousePressEvent +592 QGraphicsItem::mouseMoveEvent +600 QGraphicsItem::mouseReleaseEvent +608 QGraphicsItem::mouseDoubleClickEvent +616 QGraphicsItem::wheelEvent +624 QGraphicsItem::inputMethodEvent +632 QGraphicsItem::inputMethodQuery +640 QGraphicsWidget::_ZThn16_N15QGraphicsWidget10itemChangeEN13QGraphicsItem18GraphicsItemChangeERK8QVariant +648 QGraphicsItem::supportsExtension +656 QGraphicsItem::setExtension +664 QGraphicsItem::extension +672 (int (*)(...))-0x00000000000000020 +680 (int (*)(...))(& _ZTI15QGraphicsWidget) +688 QGraphicsWidget::_ZThn32_N15QGraphicsWidgetD1Ev +696 QGraphicsWidget::_ZThn32_N15QGraphicsWidgetD0Ev +704 QGraphicsWidget::_ZThn32_N15QGraphicsWidget11setGeometryERK6QRectF +712 QGraphicsWidget::_ZThn32_NK15QGraphicsWidget18getContentsMarginsEPdS0_S0_S0_ +720 QGraphicsWidget::_ZThn32_N15QGraphicsWidget14updateGeometryEv +728 QGraphicsWidget::_ZThn32_NK15QGraphicsWidget8sizeHintEN2Qt8SizeHintERK6QSizeF + +Class QGraphicsWidget + size=48 align=8 + base size=48 base align=8 +QGraphicsWidget (0x7f62dbf87000) 0 + vptr=((& QGraphicsWidget::_ZTV15QGraphicsWidget) + 16u) + QGraphicsObject (0x7f62dbf87080) 0 + primary-for QGraphicsWidget (0x7f62dbf87000) + QObject (0x7f62dbf86070) 0 + primary-for QGraphicsObject (0x7f62dbf87080) + QGraphicsItem (0x7f62dbf860e0) 16 + vptr=((& QGraphicsWidget::_ZTV15QGraphicsWidget) + 376u) + QGraphicsLayoutItem (0x7f62dbf86150) 32 + vptr=((& QGraphicsWidget::_ZTV15QGraphicsWidget) + 688u) + +Vtable for QGraphicsProxyWidget +QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget: 105u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QGraphicsProxyWidget) +16 QGraphicsProxyWidget::metaObject +24 QGraphicsProxyWidget::qt_metacast +32 QGraphicsProxyWidget::qt_metacall +40 QGraphicsProxyWidget::~QGraphicsProxyWidget +48 QGraphicsProxyWidget::~QGraphicsProxyWidget +56 QGraphicsProxyWidget::event +64 QGraphicsProxyWidget::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsProxyWidget::setGeometry +120 QGraphicsWidget::getContentsMargins +128 QGraphicsProxyWidget::type +136 QGraphicsProxyWidget::paint +144 QGraphicsWidget::paintWindowFrame +152 QGraphicsWidget::boundingRect +160 QGraphicsWidget::shape +168 QGraphicsWidget::initStyleOption +176 QGraphicsProxyWidget::sizeHint +184 QGraphicsWidget::updateGeometry +192 QGraphicsProxyWidget::itemChange +200 QGraphicsWidget::propertyChange +208 QGraphicsWidget::sceneEvent +216 QGraphicsWidget::windowFrameEvent +224 QGraphicsWidget::windowFrameSectionAt +232 QGraphicsWidget::changeEvent +240 QGraphicsWidget::closeEvent +248 QGraphicsProxyWidget::focusInEvent +256 QGraphicsProxyWidget::focusNextPrevChild +264 QGraphicsProxyWidget::focusOutEvent +272 QGraphicsProxyWidget::hideEvent +280 QGraphicsWidget::moveEvent +288 QGraphicsWidget::polishEvent +296 QGraphicsProxyWidget::resizeEvent +304 QGraphicsProxyWidget::showEvent +312 QGraphicsProxyWidget::hoverMoveEvent +320 QGraphicsProxyWidget::hoverLeaveEvent +328 QGraphicsProxyWidget::grabMouseEvent +336 QGraphicsProxyWidget::ungrabMouseEvent +344 QGraphicsWidget::grabKeyboardEvent +352 QGraphicsWidget::ungrabKeyboardEvent +360 QGraphicsProxyWidget::contextMenuEvent +368 QGraphicsProxyWidget::dragEnterEvent +376 QGraphicsProxyWidget::dragLeaveEvent +384 QGraphicsProxyWidget::dragMoveEvent +392 QGraphicsProxyWidget::dropEvent +400 QGraphicsProxyWidget::hoverEnterEvent +408 QGraphicsProxyWidget::mouseMoveEvent +416 QGraphicsProxyWidget::mousePressEvent +424 QGraphicsProxyWidget::mouseReleaseEvent +432 QGraphicsProxyWidget::mouseDoubleClickEvent +440 QGraphicsProxyWidget::wheelEvent +448 QGraphicsProxyWidget::keyPressEvent +456 QGraphicsProxyWidget::keyReleaseEvent +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI20QGraphicsProxyWidget) +480 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidgetD1Ev +488 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidgetD0Ev +496 QGraphicsItem::advance +504 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget12boundingRectEv +512 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget5shapeEv +520 QGraphicsItem::contains +528 QGraphicsItem::collidesWithItem +536 QGraphicsItem::collidesWithPath +544 QGraphicsItem::isObscuredBy +552 QGraphicsItem::opaqueArea +560 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget +568 QGraphicsProxyWidget::_ZThn16_NK20QGraphicsProxyWidget4typeEv +576 QGraphicsItem::sceneEventFilter +584 QGraphicsWidget::_ZThn16_N15QGraphicsWidget10sceneEventEP6QEvent +592 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget16contextMenuEventEP30QGraphicsSceneContextMenuEvent +600 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget14dragEnterEventEP27QGraphicsSceneDragDropEvent +608 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget14dragLeaveEventEP27QGraphicsSceneDragDropEvent +616 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget13dragMoveEventEP27QGraphicsSceneDragDropEvent +624 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget9dropEventEP27QGraphicsSceneDragDropEvent +632 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget12focusInEventEP11QFocusEvent +640 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget13focusOutEventEP11QFocusEvent +648 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget15hoverEnterEventEP24QGraphicsSceneHoverEvent +656 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget14hoverMoveEventEP24QGraphicsSceneHoverEvent +664 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget15hoverLeaveEventEP24QGraphicsSceneHoverEvent +672 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget13keyPressEventEP9QKeyEvent +680 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget15keyReleaseEventEP9QKeyEvent +688 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget15mousePressEventEP24QGraphicsSceneMouseEvent +696 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget14mouseMoveEventEP24QGraphicsSceneMouseEvent +704 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget17mouseReleaseEventEP24QGraphicsSceneMouseEvent +712 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget21mouseDoubleClickEventEP24QGraphicsSceneMouseEvent +720 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget10wheelEventEP24QGraphicsSceneWheelEvent +728 QGraphicsItem::inputMethodEvent +736 QGraphicsItem::inputMethodQuery +744 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget10itemChangeEN13QGraphicsItem18GraphicsItemChangeERK8QVariant +752 QGraphicsItem::supportsExtension +760 QGraphicsItem::setExtension +768 QGraphicsItem::extension +776 (int (*)(...))-0x00000000000000020 +784 (int (*)(...))(& _ZTI20QGraphicsProxyWidget) +792 QGraphicsProxyWidget::_ZThn32_N20QGraphicsProxyWidgetD1Ev +800 QGraphicsProxyWidget::_ZThn32_N20QGraphicsProxyWidgetD0Ev +808 QGraphicsProxyWidget::_ZThn32_N20QGraphicsProxyWidget11setGeometryERK6QRectF +816 QGraphicsWidget::_ZThn32_NK15QGraphicsWidget18getContentsMarginsEPdS0_S0_S0_ +824 QGraphicsWidget::_ZThn32_N15QGraphicsWidget14updateGeometryEv +832 QGraphicsProxyWidget::_ZThn32_NK20QGraphicsProxyWidget8sizeHintEN2Qt8SizeHintERK6QSizeF + +Class QGraphicsProxyWidget + size=48 align=8 + base size=48 base align=8 +QGraphicsProxyWidget (0x7f62dbdbf8c0) 0 + vptr=((& QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget) + 16u) + QGraphicsWidget (0x7f62dbdc5000) 0 + primary-for QGraphicsProxyWidget (0x7f62dbdbf8c0) + QGraphicsObject (0x7f62dbdc5080) 0 + primary-for QGraphicsWidget (0x7f62dbdc5000) + QObject (0x7f62dbdbf930) 0 + primary-for QGraphicsObject (0x7f62dbdc5080) + QGraphicsItem (0x7f62dbdbf9a0) 16 + vptr=((& QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget) + 480u) + QGraphicsLayoutItem (0x7f62dbdbfa10) 32 + vptr=((& QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget) + 792u) + +Vtable for QGraphicsScene +QGraphicsScene::_ZTV14QGraphicsScene: 34u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QGraphicsScene) +16 QGraphicsScene::metaObject +24 QGraphicsScene::qt_metacast +32 QGraphicsScene::qt_metacall +40 QGraphicsScene::~QGraphicsScene +48 QGraphicsScene::~QGraphicsScene +56 QGraphicsScene::event +64 QGraphicsScene::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsScene::inputMethodQuery +120 QGraphicsScene::contextMenuEvent +128 QGraphicsScene::dragEnterEvent +136 QGraphicsScene::dragMoveEvent +144 QGraphicsScene::dragLeaveEvent +152 QGraphicsScene::dropEvent +160 QGraphicsScene::focusInEvent +168 QGraphicsScene::focusOutEvent +176 QGraphicsScene::helpEvent +184 QGraphicsScene::keyPressEvent +192 QGraphicsScene::keyReleaseEvent +200 QGraphicsScene::mousePressEvent +208 QGraphicsScene::mouseMoveEvent +216 QGraphicsScene::mouseReleaseEvent +224 QGraphicsScene::mouseDoubleClickEvent +232 QGraphicsScene::wheelEvent +240 QGraphicsScene::inputMethodEvent +248 QGraphicsScene::drawBackground +256 QGraphicsScene::drawForeground +264 QGraphicsScene::drawItems + +Class QGraphicsScene + size=16 align=8 + base size=16 base align=8 +QGraphicsScene (0x7f62dbdec930) 0 + vptr=((& QGraphicsScene::_ZTV14QGraphicsScene) + 16u) + QObject (0x7f62dbdec9a0) 0 + primary-for QGraphicsScene (0x7f62dbdec930) + +Vtable for QGraphicsSceneEvent +QGraphicsSceneEvent::_ZTV19QGraphicsSceneEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QGraphicsSceneEvent) +16 QGraphicsSceneEvent::~QGraphicsSceneEvent +24 QGraphicsSceneEvent::~QGraphicsSceneEvent + +Class QGraphicsSceneEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneEvent (0x7f62dbc9e850) 0 + vptr=((& QGraphicsSceneEvent::_ZTV19QGraphicsSceneEvent) + 16u) + QEvent (0x7f62dbc9e8c0) 0 + primary-for QGraphicsSceneEvent (0x7f62dbc9e850) + +Vtable for QGraphicsSceneMouseEvent +QGraphicsSceneMouseEvent::_ZTV24QGraphicsSceneMouseEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QGraphicsSceneMouseEvent) +16 QGraphicsSceneMouseEvent::~QGraphicsSceneMouseEvent +24 QGraphicsSceneMouseEvent::~QGraphicsSceneMouseEvent + +Class QGraphicsSceneMouseEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneMouseEvent (0x7f62dbccc310) 0 + vptr=((& QGraphicsSceneMouseEvent::_ZTV24QGraphicsSceneMouseEvent) + 16u) + QGraphicsSceneEvent (0x7f62dbccc380) 0 + primary-for QGraphicsSceneMouseEvent (0x7f62dbccc310) + QEvent (0x7f62dbccc3f0) 0 + primary-for QGraphicsSceneEvent (0x7f62dbccc380) + +Vtable for QGraphicsSceneWheelEvent +QGraphicsSceneWheelEvent::_ZTV24QGraphicsSceneWheelEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QGraphicsSceneWheelEvent) +16 QGraphicsSceneWheelEvent::~QGraphicsSceneWheelEvent +24 QGraphicsSceneWheelEvent::~QGraphicsSceneWheelEvent + +Class QGraphicsSceneWheelEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneWheelEvent (0x7f62dbccccb0) 0 + vptr=((& QGraphicsSceneWheelEvent::_ZTV24QGraphicsSceneWheelEvent) + 16u) + QGraphicsSceneEvent (0x7f62dbcccd20) 0 + primary-for QGraphicsSceneWheelEvent (0x7f62dbccccb0) + QEvent (0x7f62dbcccd90) 0 + primary-for QGraphicsSceneEvent (0x7f62dbcccd20) + +Vtable for QGraphicsSceneContextMenuEvent +QGraphicsSceneContextMenuEvent::_ZTV30QGraphicsSceneContextMenuEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI30QGraphicsSceneContextMenuEvent) +16 QGraphicsSceneContextMenuEvent::~QGraphicsSceneContextMenuEvent +24 QGraphicsSceneContextMenuEvent::~QGraphicsSceneContextMenuEvent + +Class QGraphicsSceneContextMenuEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneContextMenuEvent (0x7f62dbce45b0) 0 + vptr=((& QGraphicsSceneContextMenuEvent::_ZTV30QGraphicsSceneContextMenuEvent) + 16u) + QGraphicsSceneEvent (0x7f62dbce4620) 0 + primary-for QGraphicsSceneContextMenuEvent (0x7f62dbce45b0) + QEvent (0x7f62dbce4690) 0 + primary-for QGraphicsSceneEvent (0x7f62dbce4620) + +Vtable for QGraphicsSceneHoverEvent +QGraphicsSceneHoverEvent::_ZTV24QGraphicsSceneHoverEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QGraphicsSceneHoverEvent) +16 QGraphicsSceneHoverEvent::~QGraphicsSceneHoverEvent +24 QGraphicsSceneHoverEvent::~QGraphicsSceneHoverEvent + +Class QGraphicsSceneHoverEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneHoverEvent (0x7f62dbcef0e0) 0 + vptr=((& QGraphicsSceneHoverEvent::_ZTV24QGraphicsSceneHoverEvent) + 16u) + QGraphicsSceneEvent (0x7f62dbcef150) 0 + primary-for QGraphicsSceneHoverEvent (0x7f62dbcef0e0) + QEvent (0x7f62dbcef1c0) 0 + primary-for QGraphicsSceneEvent (0x7f62dbcef150) + +Vtable for QGraphicsSceneHelpEvent +QGraphicsSceneHelpEvent::_ZTV23QGraphicsSceneHelpEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QGraphicsSceneHelpEvent) +16 QGraphicsSceneHelpEvent::~QGraphicsSceneHelpEvent +24 QGraphicsSceneHelpEvent::~QGraphicsSceneHelpEvent + +Class QGraphicsSceneHelpEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneHelpEvent (0x7f62dbcefa80) 0 + vptr=((& QGraphicsSceneHelpEvent::_ZTV23QGraphicsSceneHelpEvent) + 16u) + QGraphicsSceneEvent (0x7f62dbcefaf0) 0 + primary-for QGraphicsSceneHelpEvent (0x7f62dbcefa80) + QEvent (0x7f62dbcefb60) 0 + primary-for QGraphicsSceneEvent (0x7f62dbcefaf0) + +Vtable for QGraphicsSceneDragDropEvent +QGraphicsSceneDragDropEvent::_ZTV27QGraphicsSceneDragDropEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QGraphicsSceneDragDropEvent) +16 QGraphicsSceneDragDropEvent::~QGraphicsSceneDragDropEvent +24 QGraphicsSceneDragDropEvent::~QGraphicsSceneDragDropEvent + +Class QGraphicsSceneDragDropEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneDragDropEvent (0x7f62dbd02380) 0 + vptr=((& QGraphicsSceneDragDropEvent::_ZTV27QGraphicsSceneDragDropEvent) + 16u) + QGraphicsSceneEvent (0x7f62dbd023f0) 0 + primary-for QGraphicsSceneDragDropEvent (0x7f62dbd02380) + QEvent (0x7f62dbd02460) 0 + primary-for QGraphicsSceneEvent (0x7f62dbd023f0) + +Vtable for QGraphicsSceneResizeEvent +QGraphicsSceneResizeEvent::_ZTV25QGraphicsSceneResizeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QGraphicsSceneResizeEvent) +16 QGraphicsSceneResizeEvent::~QGraphicsSceneResizeEvent +24 QGraphicsSceneResizeEvent::~QGraphicsSceneResizeEvent + +Class QGraphicsSceneResizeEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneResizeEvent (0x7f62dbd02d20) 0 + vptr=((& QGraphicsSceneResizeEvent::_ZTV25QGraphicsSceneResizeEvent) + 16u) + QGraphicsSceneEvent (0x7f62dbd02d90) 0 + primary-for QGraphicsSceneResizeEvent (0x7f62dbd02d20) + QEvent (0x7f62dbd02e00) 0 + primary-for QGraphicsSceneEvent (0x7f62dbd02d90) + +Vtable for QGraphicsSceneMoveEvent +QGraphicsSceneMoveEvent::_ZTV23QGraphicsSceneMoveEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QGraphicsSceneMoveEvent) +16 QGraphicsSceneMoveEvent::~QGraphicsSceneMoveEvent +24 QGraphicsSceneMoveEvent::~QGraphicsSceneMoveEvent + +Class QGraphicsSceneMoveEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneMoveEvent (0x7f62dbd16460) 0 + vptr=((& QGraphicsSceneMoveEvent::_ZTV23QGraphicsSceneMoveEvent) + 16u) + QGraphicsSceneEvent (0x7f62dbd164d0) 0 + primary-for QGraphicsSceneMoveEvent (0x7f62dbd16460) + QEvent (0x7f62dbd16540) 0 + primary-for QGraphicsSceneEvent (0x7f62dbd164d0) + +Vtable for QGraphicsTransform +QGraphicsTransform::_ZTV18QGraphicsTransform: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QGraphicsTransform) +16 QGraphicsTransform::metaObject +24 QGraphicsTransform::qt_metacast +32 QGraphicsTransform::qt_metacall +40 QGraphicsTransform::~QGraphicsTransform +48 QGraphicsTransform::~QGraphicsTransform +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual + +Class QGraphicsTransform + size=16 align=8 + base size=16 base align=8 +QGraphicsTransform (0x7f62dbd16c40) 0 + vptr=((& QGraphicsTransform::_ZTV18QGraphicsTransform) + 16u) + QObject (0x7f62dbd16cb0) 0 + primary-for QGraphicsTransform (0x7f62dbd16c40) + +Vtable for QGraphicsScale +QGraphicsScale::_ZTV14QGraphicsScale: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QGraphicsScale) +16 QGraphicsScale::metaObject +24 QGraphicsScale::qt_metacast +32 QGraphicsScale::qt_metacall +40 QGraphicsScale::~QGraphicsScale +48 QGraphicsScale::~QGraphicsScale +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsScale::applyTo + +Class QGraphicsScale + size=16 align=8 + base size=16 base align=8 +QGraphicsScale (0x7f62dbd34150) 0 + vptr=((& QGraphicsScale::_ZTV14QGraphicsScale) + 16u) + QGraphicsTransform (0x7f62dbd341c0) 0 + primary-for QGraphicsScale (0x7f62dbd34150) + QObject (0x7f62dbd34230) 0 + primary-for QGraphicsTransform (0x7f62dbd341c0) + +Vtable for QGraphicsRotation +QGraphicsRotation::_ZTV17QGraphicsRotation: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QGraphicsRotation) +16 QGraphicsRotation::metaObject +24 QGraphicsRotation::qt_metacast +32 QGraphicsRotation::qt_metacall +40 QGraphicsRotation::~QGraphicsRotation +48 QGraphicsRotation::~QGraphicsRotation +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsRotation::applyTo + +Class QGraphicsRotation + size=16 align=8 + base size=16 base align=8 +QGraphicsRotation (0x7f62dbd48620) 0 + vptr=((& QGraphicsRotation::_ZTV17QGraphicsRotation) + 16u) + QGraphicsTransform (0x7f62dbd48690) 0 + primary-for QGraphicsRotation (0x7f62dbd48620) + QObject (0x7f62dbd48700) 0 + primary-for QGraphicsTransform (0x7f62dbd48690) + +Vtable for QScrollArea +QScrollArea::_ZTV11QScrollArea: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QScrollArea) +16 QScrollArea::metaObject +24 QScrollArea::qt_metacast +32 QScrollArea::qt_metacall +40 QScrollArea::~QScrollArea +48 QScrollArea::~QScrollArea +56 QScrollArea::event +64 QScrollArea::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractScrollArea::mousePressEvent +168 QAbstractScrollArea::mouseReleaseEvent +176 QAbstractScrollArea::mouseDoubleClickEvent +184 QAbstractScrollArea::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractScrollArea::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractScrollArea::paintEvent +256 QWidget::moveEvent +264 QScrollArea::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractScrollArea::dragEnterEvent +312 QAbstractScrollArea::dragMoveEvent +320 QAbstractScrollArea::dragLeaveEvent +328 QAbstractScrollArea::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QScrollArea::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QScrollArea::scrollContentsBy +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI11QScrollArea) +480 QScrollArea::_ZThn16_N11QScrollAreaD1Ev +488 QScrollArea::_ZThn16_N11QScrollAreaD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QScrollArea + size=40 align=8 + base size=40 base align=8 +QScrollArea (0x7f62dbd5baf0) 0 + vptr=((& QScrollArea::_ZTV11QScrollArea) + 16u) + QAbstractScrollArea (0x7f62dbd5bb60) 0 + primary-for QScrollArea (0x7f62dbd5baf0) + QFrame (0x7f62dbd5bbd0) 0 + primary-for QAbstractScrollArea (0x7f62dbd5bb60) + QWidget (0x7f62dbd49c80) 0 + primary-for QFrame (0x7f62dbd5bbd0) + QObject (0x7f62dbd5bc40) 0 + primary-for QWidget (0x7f62dbd49c80) + QPaintDevice (0x7f62dbd5bcb0) 16 + vptr=((& QScrollArea::_ZTV11QScrollArea) + 480u) + +Vtable for QGraphicsView +QGraphicsView::_ZTV13QGraphicsView: 68u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QGraphicsView) +16 QGraphicsView::metaObject +24 QGraphicsView::qt_metacast +32 QGraphicsView::qt_metacall +40 QGraphicsView::~QGraphicsView +48 QGraphicsView::~QGraphicsView +56 QGraphicsView::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QGraphicsView::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QGraphicsView::mousePressEvent +168 QGraphicsView::mouseReleaseEvent +176 QGraphicsView::mouseDoubleClickEvent +184 QGraphicsView::mouseMoveEvent +192 QGraphicsView::wheelEvent +200 QGraphicsView::keyPressEvent +208 QGraphicsView::keyReleaseEvent +216 QGraphicsView::focusInEvent +224 QGraphicsView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QGraphicsView::paintEvent +256 QWidget::moveEvent +264 QGraphicsView::resizeEvent +272 QWidget::closeEvent +280 QGraphicsView::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QGraphicsView::dragEnterEvent +312 QGraphicsView::dragMoveEvent +320 QGraphicsView::dragLeaveEvent +328 QGraphicsView::dropEvent +336 QGraphicsView::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QGraphicsView::inputMethodEvent +384 QGraphicsView::inputMethodQuery +392 QGraphicsView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QGraphicsView::viewportEvent +456 QGraphicsView::scrollContentsBy +464 QGraphicsView::drawBackground +472 QGraphicsView::drawForeground +480 QGraphicsView::drawItems +488 (int (*)(...))-0x00000000000000010 +496 (int (*)(...))(& _ZTI13QGraphicsView) +504 QGraphicsView::_ZThn16_N13QGraphicsViewD1Ev +512 QGraphicsView::_ZThn16_N13QGraphicsViewD0Ev +520 QWidget::_ZThn16_NK7QWidget7devTypeEv +528 QWidget::_ZThn16_NK7QWidget11paintEngineEv +536 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QGraphicsView + size=40 align=8 + base size=40 base align=8 +QGraphicsView (0x7f62dbd7da10) 0 + vptr=((& QGraphicsView::_ZTV13QGraphicsView) + 16u) + QAbstractScrollArea (0x7f62dbd7da80) 0 + primary-for QGraphicsView (0x7f62dbd7da10) + QFrame (0x7f62dbd7daf0) 0 + primary-for QAbstractScrollArea (0x7f62dbd7da80) + QWidget (0x7f62dbd78680) 0 + primary-for QFrame (0x7f62dbd7daf0) + QObject (0x7f62dbd7db60) 0 + primary-for QWidget (0x7f62dbd78680) + QPaintDevice (0x7f62dbd7dbd0) 16 + vptr=((& QGraphicsView::_ZTV13QGraphicsView) + 504u) + +Vtable for QAbstractButton +QAbstractButton::_ZTV15QAbstractButton: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QAbstractButton) +16 QAbstractButton::metaObject +24 QAbstractButton::qt_metacast +32 QAbstractButton::qt_metacall +40 QAbstractButton::~QAbstractButton +48 QAbstractButton::~QAbstractButton +56 QAbstractButton::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QAbstractButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QAbstractButton::focusInEvent +224 QAbstractButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 __cxa_pure_virtual +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractButton::hitButton +456 QAbstractButton::checkStateSet +464 QAbstractButton::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI15QAbstractButton) +488 QAbstractButton::_ZThn16_N15QAbstractButtonD1Ev +496 QAbstractButton::_ZThn16_N15QAbstractButtonD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractButton + size=40 align=8 + base size=40 base align=8 +QAbstractButton (0x7f62dbc6cee0) 0 + vptr=((& QAbstractButton::_ZTV15QAbstractButton) + 16u) + QWidget (0x7f62dbc75380) 0 + primary-for QAbstractButton (0x7f62dbc6cee0) + QObject (0x7f62dbc6cf50) 0 + primary-for QWidget (0x7f62dbc75380) + QPaintDevice (0x7f62dbc7b000) 16 + vptr=((& QAbstractButton::_ZTV15QAbstractButton) + 488u) + +Vtable for QButtonGroup +QButtonGroup::_ZTV12QButtonGroup: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QButtonGroup) +16 QButtonGroup::metaObject +24 QButtonGroup::qt_metacast +32 QButtonGroup::qt_metacall +40 QButtonGroup::~QButtonGroup +48 QButtonGroup::~QButtonGroup +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QButtonGroup + size=16 align=8 + base size=16 base align=8 +QButtonGroup (0x7f62dbaab310) 0 + vptr=((& QButtonGroup::_ZTV12QButtonGroup) + 16u) + QObject (0x7f62dbaab380) 0 + primary-for QButtonGroup (0x7f62dbaab310) + +Vtable for QCalendarWidget +QCalendarWidget::_ZTV15QCalendarWidget: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QCalendarWidget) +16 QCalendarWidget::metaObject +24 QCalendarWidget::qt_metacast +32 QCalendarWidget::qt_metacall +40 QCalendarWidget::~QCalendarWidget +48 QCalendarWidget::~QCalendarWidget +56 QCalendarWidget::event +64 QCalendarWidget::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QCalendarWidget::sizeHint +136 QCalendarWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QCalendarWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QCalendarWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QCalendarWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QCalendarWidget::paintCell +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI15QCalendarWidget) +472 QCalendarWidget::_ZThn16_N15QCalendarWidgetD1Ev +480 QCalendarWidget::_ZThn16_N15QCalendarWidgetD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QCalendarWidget + size=40 align=8 + base size=40 base align=8 +QCalendarWidget (0x7f62dbac3f50) 0 + vptr=((& QCalendarWidget::_ZTV15QCalendarWidget) + 16u) + QWidget (0x7f62dbac1900) 0 + primary-for QCalendarWidget (0x7f62dbac3f50) + QObject (0x7f62dbaca000) 0 + primary-for QWidget (0x7f62dbac1900) + QPaintDevice (0x7f62dbaca070) 16 + vptr=((& QCalendarWidget::_ZTV15QCalendarWidget) + 472u) + +Vtable for QCheckBox +QCheckBox::_ZTV9QCheckBox: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QCheckBox) +16 QCheckBox::metaObject +24 QCheckBox::qt_metacast +32 QCheckBox::qt_metacall +40 QCheckBox::~QCheckBox +48 QCheckBox::~QCheckBox +56 QCheckBox::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QCheckBox::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QCheckBox::mouseMoveEvent +192 QWidget::wheelEvent +200 QAbstractButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QAbstractButton::focusInEvent +224 QAbstractButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QCheckBox::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QCheckBox::hitButton +456 QCheckBox::checkStateSet +464 QCheckBox::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI9QCheckBox) +488 QCheckBox::_ZThn16_N9QCheckBoxD1Ev +496 QCheckBox::_ZThn16_N9QCheckBoxD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QCheckBox + size=40 align=8 + base size=40 base align=8 +QCheckBox (0x7f62dbaf70e0) 0 + vptr=((& QCheckBox::_ZTV9QCheckBox) + 16u) + QAbstractButton (0x7f62dbaf7150) 0 + primary-for QCheckBox (0x7f62dbaf70e0) + QWidget (0x7f62dbaeb900) 0 + primary-for QAbstractButton (0x7f62dbaf7150) + QObject (0x7f62dbaf71c0) 0 + primary-for QWidget (0x7f62dbaeb900) + QPaintDevice (0x7f62dbaf7230) 16 + vptr=((& QCheckBox::_ZTV9QCheckBox) + 488u) + +Vtable for QComboBox +QComboBox::_ZTV9QComboBox: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QComboBox) +16 QComboBox::metaObject +24 QComboBox::qt_metacast +32 QComboBox::qt_metacall +40 QComboBox::~QComboBox +48 QComboBox::~QComboBox +56 QComboBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QComboBox::sizeHint +136 QComboBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QComboBox::mousePressEvent +168 QComboBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QComboBox::wheelEvent +200 QComboBox::keyPressEvent +208 QComboBox::keyReleaseEvent +216 QComboBox::focusInEvent +224 QComboBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QComboBox::paintEvent +256 QWidget::moveEvent +264 QComboBox::resizeEvent +272 QWidget::closeEvent +280 QComboBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QComboBox::showEvent +344 QComboBox::hideEvent +352 QWidget::x11Event +360 QComboBox::changeEvent +368 QWidget::metric +376 QComboBox::inputMethodEvent +384 QComboBox::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QComboBox::showPopup +456 QComboBox::hidePopup +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI9QComboBox) +480 QComboBox::_ZThn16_N9QComboBoxD1Ev +488 QComboBox::_ZThn16_N9QComboBoxD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QComboBox + size=40 align=8 + base size=40 base align=8 +QComboBox (0x7f62dbb198c0) 0 + vptr=((& QComboBox::_ZTV9QComboBox) + 16u) + QWidget (0x7f62dbb13900) 0 + primary-for QComboBox (0x7f62dbb198c0) + QObject (0x7f62dbb19930) 0 + primary-for QWidget (0x7f62dbb13900) + QPaintDevice (0x7f62dbb199a0) 16 + vptr=((& QComboBox::_ZTV9QComboBox) + 480u) + +Vtable for QPushButton +QPushButton::_ZTV11QPushButton: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QPushButton) +16 QPushButton::metaObject +24 QPushButton::qt_metacast +32 QPushButton::qt_metacall +40 QPushButton::~QPushButton +48 QPushButton::~QPushButton +56 QPushButton::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QPushButton::sizeHint +136 QPushButton::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QPushButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QPushButton::focusInEvent +224 QPushButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QPushButton::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractButton::hitButton +456 QAbstractButton::checkStateSet +464 QAbstractButton::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11QPushButton) +488 QPushButton::_ZThn16_N11QPushButtonD1Ev +496 QPushButton::_ZThn16_N11QPushButtonD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPushButton + size=40 align=8 + base size=40 base align=8 +QPushButton (0x7f62db9863f0) 0 + vptr=((& QPushButton::_ZTV11QPushButton) + 16u) + QAbstractButton (0x7f62db986460) 0 + primary-for QPushButton (0x7f62db9863f0) + QWidget (0x7f62dbb83600) 0 + primary-for QAbstractButton (0x7f62db986460) + QObject (0x7f62db9864d0) 0 + primary-for QWidget (0x7f62dbb83600) + QPaintDevice (0x7f62db986540) 16 + vptr=((& QPushButton::_ZTV11QPushButton) + 488u) + +Vtable for QCommandLinkButton +QCommandLinkButton::_ZTV18QCommandLinkButton: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QCommandLinkButton) +16 QCommandLinkButton::metaObject +24 QCommandLinkButton::qt_metacast +32 QCommandLinkButton::qt_metacall +40 QCommandLinkButton::~QCommandLinkButton +48 QCommandLinkButton::~QCommandLinkButton +56 QCommandLinkButton::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QCommandLinkButton::sizeHint +136 QCommandLinkButton::minimumSizeHint +144 QCommandLinkButton::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QPushButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QPushButton::focusInEvent +224 QPushButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QCommandLinkButton::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractButton::hitButton +456 QAbstractButton::checkStateSet +464 QAbstractButton::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI18QCommandLinkButton) +488 QCommandLinkButton::_ZThn16_N18QCommandLinkButtonD1Ev +496 QCommandLinkButton::_ZThn16_N18QCommandLinkButtonD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QCommandLinkButton + size=40 align=8 + base size=40 base align=8 +QCommandLinkButton (0x7f62db9aad20) 0 + vptr=((& QCommandLinkButton::_ZTV18QCommandLinkButton) + 16u) + QPushButton (0x7f62db9aad90) 0 + primary-for QCommandLinkButton (0x7f62db9aad20) + QAbstractButton (0x7f62db9aae00) 0 + primary-for QPushButton (0x7f62db9aad90) + QWidget (0x7f62db9ad600) 0 + primary-for QAbstractButton (0x7f62db9aae00) + QObject (0x7f62db9aae70) 0 + primary-for QWidget (0x7f62db9ad600) + QPaintDevice (0x7f62db9aaee0) 16 + vptr=((& QCommandLinkButton::_ZTV18QCommandLinkButton) + 488u) + +Vtable for QDateTimeEdit +QDateTimeEdit::_ZTV13QDateTimeEdit: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QDateTimeEdit) +16 QDateTimeEdit::metaObject +24 QDateTimeEdit::qt_metacast +32 QDateTimeEdit::qt_metacall +40 QDateTimeEdit::~QDateTimeEdit +48 QDateTimeEdit::~QDateTimeEdit +56 QDateTimeEdit::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QDateTimeEdit::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QDateTimeEdit::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QDateTimeEdit::wheelEvent +200 QDateTimeEdit::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QDateTimeEdit::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QDateTimeEdit::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QAbstractSpinBox::inputMethodQuery +392 QDateTimeEdit::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDateTimeEdit::validate +456 QDateTimeEdit::fixup +464 QDateTimeEdit::stepBy +472 QDateTimeEdit::clear +480 QDateTimeEdit::stepEnabled +488 QDateTimeEdit::dateTimeFromText +496 QDateTimeEdit::textFromDateTime +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI13QDateTimeEdit) +520 QDateTimeEdit::_ZThn16_N13QDateTimeEditD1Ev +528 QDateTimeEdit::_ZThn16_N13QDateTimeEditD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDateTimeEdit + size=40 align=8 + base size=40 base align=8 +QDateTimeEdit (0x7f62db9c78c0) 0 + vptr=((& QDateTimeEdit::_ZTV13QDateTimeEdit) + 16u) + QAbstractSpinBox (0x7f62db9c7930) 0 + primary-for QDateTimeEdit (0x7f62db9c78c0) + QWidget (0x7f62db9ce000) 0 + primary-for QAbstractSpinBox (0x7f62db9c7930) + QObject (0x7f62db9c79a0) 0 + primary-for QWidget (0x7f62db9ce000) + QPaintDevice (0x7f62db9c7a10) 16 + vptr=((& QDateTimeEdit::_ZTV13QDateTimeEdit) + 520u) + +Vtable for QTimeEdit +QTimeEdit::_ZTV9QTimeEdit: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTimeEdit) +16 QTimeEdit::metaObject +24 QTimeEdit::qt_metacast +32 QTimeEdit::qt_metacall +40 QTimeEdit::~QTimeEdit +48 QTimeEdit::~QTimeEdit +56 QDateTimeEdit::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QDateTimeEdit::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QDateTimeEdit::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QDateTimeEdit::wheelEvent +200 QDateTimeEdit::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QDateTimeEdit::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QDateTimeEdit::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QAbstractSpinBox::inputMethodQuery +392 QDateTimeEdit::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDateTimeEdit::validate +456 QDateTimeEdit::fixup +464 QDateTimeEdit::stepBy +472 QDateTimeEdit::clear +480 QDateTimeEdit::stepEnabled +488 QDateTimeEdit::dateTimeFromText +496 QDateTimeEdit::textFromDateTime +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI9QTimeEdit) +520 QTimeEdit::_ZThn16_N9QTimeEditD1Ev +528 QTimeEdit::_ZThn16_N9QTimeEditD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTimeEdit + size=40 align=8 + base size=40 base align=8 +QTimeEdit (0x7f62db9f97e0) 0 + vptr=((& QTimeEdit::_ZTV9QTimeEdit) + 16u) + QDateTimeEdit (0x7f62db9f9850) 0 + primary-for QTimeEdit (0x7f62db9f97e0) + QAbstractSpinBox (0x7f62db9f98c0) 0 + primary-for QDateTimeEdit (0x7f62db9f9850) + QWidget (0x7f62db9cef80) 0 + primary-for QAbstractSpinBox (0x7f62db9f98c0) + QObject (0x7f62db9f9930) 0 + primary-for QWidget (0x7f62db9cef80) + QPaintDevice (0x7f62db9f99a0) 16 + vptr=((& QTimeEdit::_ZTV9QTimeEdit) + 520u) + +Vtable for QDateEdit +QDateEdit::_ZTV9QDateEdit: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QDateEdit) +16 QDateEdit::metaObject +24 QDateEdit::qt_metacast +32 QDateEdit::qt_metacall +40 QDateEdit::~QDateEdit +48 QDateEdit::~QDateEdit +56 QDateTimeEdit::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QDateTimeEdit::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QDateTimeEdit::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QDateTimeEdit::wheelEvent +200 QDateTimeEdit::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QDateTimeEdit::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QDateTimeEdit::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QAbstractSpinBox::inputMethodQuery +392 QDateTimeEdit::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDateTimeEdit::validate +456 QDateTimeEdit::fixup +464 QDateTimeEdit::stepBy +472 QDateTimeEdit::clear +480 QDateTimeEdit::stepEnabled +488 QDateTimeEdit::dateTimeFromText +496 QDateTimeEdit::textFromDateTime +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI9QDateEdit) +520 QDateEdit::_ZThn16_N9QDateEditD1Ev +528 QDateEdit::_ZThn16_N9QDateEditD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDateEdit + size=40 align=8 + base size=40 base align=8 +QDateEdit (0x7f62dba0e8c0) 0 + vptr=((& QDateEdit::_ZTV9QDateEdit) + 16u) + QDateTimeEdit (0x7f62dba0e930) 0 + primary-for QDateEdit (0x7f62dba0e8c0) + QAbstractSpinBox (0x7f62dba0e9a0) 0 + primary-for QDateTimeEdit (0x7f62dba0e930) + QWidget (0x7f62db9ff680) 0 + primary-for QAbstractSpinBox (0x7f62dba0e9a0) + QObject (0x7f62dba0ea10) 0 + primary-for QWidget (0x7f62db9ff680) + QPaintDevice (0x7f62dba0ea80) 16 + vptr=((& QDateEdit::_ZTV9QDateEdit) + 520u) + +Vtable for QDial +QDial::_ZTV5QDial: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QDial) +16 QDial::metaObject +24 QDial::qt_metacast +32 QDial::qt_metacall +40 QDial::~QDial +48 QDial::~QDial +56 QDial::event +64 QObject::eventFilter +72 QAbstractSlider::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QDial::sizeHint +136 QDial::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QDial::mousePressEvent +168 QDial::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QDial::mouseMoveEvent +192 QAbstractSlider::wheelEvent +200 QAbstractSlider::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QDial::paintEvent +256 QWidget::moveEvent +264 QDial::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractSlider::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDial::sliderChange +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI5QDial) +472 QDial::_ZThn16_N5QDialD1Ev +480 QDial::_ZThn16_N5QDialD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDial + size=40 align=8 + base size=40 base align=8 +QDial (0x7f62dba55690) 0 + vptr=((& QDial::_ZTV5QDial) + 16u) + QAbstractSlider (0x7f62dba55700) 0 + primary-for QDial (0x7f62dba55690) + QWidget (0x7f62dba56300) 0 + primary-for QAbstractSlider (0x7f62dba55700) + QObject (0x7f62dba55770) 0 + primary-for QWidget (0x7f62dba56300) + QPaintDevice (0x7f62dba557e0) 16 + vptr=((& QDial::_ZTV5QDial) + 472u) + +Vtable for QDialogButtonBox +QDialogButtonBox::_ZTV16QDialogButtonBox: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QDialogButtonBox) +16 QDialogButtonBox::metaObject +24 QDialogButtonBox::qt_metacast +32 QDialogButtonBox::qt_metacall +40 QDialogButtonBox::~QDialogButtonBox +48 QDialogButtonBox::~QDialogButtonBox +56 QDialogButtonBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QDialogButtonBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI16QDialogButtonBox) +464 QDialogButtonBox::_ZThn16_N16QDialogButtonBoxD1Ev +472 QDialogButtonBox::_ZThn16_N16QDialogButtonBoxD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDialogButtonBox + size=40 align=8 + base size=40 base align=8 +QDialogButtonBox (0x7f62db893310) 0 + vptr=((& QDialogButtonBox::_ZTV16QDialogButtonBox) + 16u) + QWidget (0x7f62dba56d00) 0 + primary-for QDialogButtonBox (0x7f62db893310) + QObject (0x7f62db893380) 0 + primary-for QWidget (0x7f62dba56d00) + QPaintDevice (0x7f62db8933f0) 16 + vptr=((& QDialogButtonBox::_ZTV16QDialogButtonBox) + 464u) + +Vtable for QDockWidget +QDockWidget::_ZTV11QDockWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QDockWidget) +16 QDockWidget::metaObject +24 QDockWidget::qt_metacast +32 QDockWidget::qt_metacall +40 QDockWidget::~QDockWidget +48 QDockWidget::~QDockWidget +56 QDockWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QDockWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QDockWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QDockWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI11QDockWidget) +464 QDockWidget::_ZThn16_N11QDockWidgetD1Ev +472 QDockWidget::_ZThn16_N11QDockWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDockWidget + size=40 align=8 + base size=40 base align=8 +QDockWidget (0x7f62db8e77e0) 0 + vptr=((& QDockWidget::_ZTV11QDockWidget) + 16u) + QWidget (0x7f62db89fe80) 0 + primary-for QDockWidget (0x7f62db8e77e0) + QObject (0x7f62db8e7850) 0 + primary-for QWidget (0x7f62db89fe80) + QPaintDevice (0x7f62db8e78c0) 16 + vptr=((& QDockWidget::_ZTV11QDockWidget) + 464u) + +Vtable for QFocusFrame +QFocusFrame::_ZTV11QFocusFrame: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFocusFrame) +16 QFocusFrame::metaObject +24 QFocusFrame::qt_metacast +32 QFocusFrame::qt_metacall +40 QFocusFrame::~QFocusFrame +48 QFocusFrame::~QFocusFrame +56 QFocusFrame::event +64 QFocusFrame::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFocusFrame::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI11QFocusFrame) +464 QFocusFrame::_ZThn16_N11QFocusFrameD1Ev +472 QFocusFrame::_ZThn16_N11QFocusFrameD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFocusFrame + size=40 align=8 + base size=40 base align=8 +QFocusFrame (0x7f62db78a230) 0 + vptr=((& QFocusFrame::_ZTV11QFocusFrame) + 16u) + QWidget (0x7f62db93c680) 0 + primary-for QFocusFrame (0x7f62db78a230) + QObject (0x7f62db78a2a0) 0 + primary-for QWidget (0x7f62db93c680) + QPaintDevice (0x7f62db78a310) 16 + vptr=((& QFocusFrame::_ZTV11QFocusFrame) + 464u) + +Vtable for QFontComboBox +QFontComboBox::_ZTV13QFontComboBox: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QFontComboBox) +16 QFontComboBox::metaObject +24 QFontComboBox::qt_metacast +32 QFontComboBox::qt_metacall +40 QFontComboBox::~QFontComboBox +48 QFontComboBox::~QFontComboBox +56 QFontComboBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QFontComboBox::sizeHint +136 QComboBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QComboBox::mousePressEvent +168 QComboBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QComboBox::wheelEvent +200 QComboBox::keyPressEvent +208 QComboBox::keyReleaseEvent +216 QComboBox::focusInEvent +224 QComboBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QComboBox::paintEvent +256 QWidget::moveEvent +264 QComboBox::resizeEvent +272 QWidget::closeEvent +280 QComboBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QComboBox::showEvent +344 QComboBox::hideEvent +352 QWidget::x11Event +360 QComboBox::changeEvent +368 QWidget::metric +376 QComboBox::inputMethodEvent +384 QComboBox::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QComboBox::showPopup +456 QComboBox::hidePopup +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI13QFontComboBox) +480 QFontComboBox::_ZThn16_N13QFontComboBoxD1Ev +488 QFontComboBox::_ZThn16_N13QFontComboBoxD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFontComboBox + size=40 align=8 + base size=40 base align=8 +QFontComboBox (0x7f62db79dd90) 0 + vptr=((& QFontComboBox::_ZTV13QFontComboBox) + 16u) + QComboBox (0x7f62db79de00) 0 + primary-for QFontComboBox (0x7f62db79dd90) + QWidget (0x7f62db7a4080) 0 + primary-for QComboBox (0x7f62db79de00) + QObject (0x7f62db79de70) 0 + primary-for QWidget (0x7f62db7a4080) + QPaintDevice (0x7f62db79dee0) 16 + vptr=((& QFontComboBox::_ZTV13QFontComboBox) + 480u) + +Vtable for QGroupBox +QGroupBox::_ZTV9QGroupBox: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QGroupBox) +16 QGroupBox::metaObject +24 QGroupBox::qt_metacast +32 QGroupBox::qt_metacall +40 QGroupBox::~QGroupBox +48 QGroupBox::~QGroupBox +56 QGroupBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QGroupBox::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QGroupBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QGroupBox::mousePressEvent +168 QGroupBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QGroupBox::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QGroupBox::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QGroupBox::paintEvent +256 QWidget::moveEvent +264 QGroupBox::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QGroupBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI9QGroupBox) +464 QGroupBox::_ZThn16_N9QGroupBoxD1Ev +472 QGroupBox::_ZThn16_N9QGroupBoxD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QGroupBox + size=40 align=8 + base size=40 base align=8 +QGroupBox (0x7f62db7eda80) 0 + vptr=((& QGroupBox::_ZTV9QGroupBox) + 16u) + QWidget (0x7f62db7ee280) 0 + primary-for QGroupBox (0x7f62db7eda80) + QObject (0x7f62db7edaf0) 0 + primary-for QWidget (0x7f62db7ee280) + QPaintDevice (0x7f62db7edb60) 16 + vptr=((& QGroupBox::_ZTV9QGroupBox) + 464u) + +Vtable for QLabel +QLabel::_ZTV6QLabel: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QLabel) +16 QLabel::metaObject +24 QLabel::qt_metacast +32 QLabel::qt_metacall +40 QLabel::~QLabel +48 QLabel::~QLabel +56 QLabel::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QLabel::sizeHint +136 QLabel::minimumSizeHint +144 QLabel::heightForWidth +152 QWidget::paintEngine +160 QLabel::mousePressEvent +168 QLabel::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QLabel::mouseMoveEvent +192 QWidget::wheelEvent +200 QLabel::keyPressEvent +208 QWidget::keyReleaseEvent +216 QLabel::focusInEvent +224 QLabel::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QLabel::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QLabel::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QLabel::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QLabel::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI6QLabel) +464 QLabel::_ZThn16_N6QLabelD1Ev +472 QLabel::_ZThn16_N6QLabelD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QLabel + size=40 align=8 + base size=40 base align=8 +QLabel (0x7f62db82c700) 0 + vptr=((& QLabel::_ZTV6QLabel) + 16u) + QFrame (0x7f62db82c770) 0 + primary-for QLabel (0x7f62db82c700) + QWidget (0x7f62db7eec80) 0 + primary-for QFrame (0x7f62db82c770) + QObject (0x7f62db82c7e0) 0 + primary-for QWidget (0x7f62db7eec80) + QPaintDevice (0x7f62db82c850) 16 + vptr=((& QLabel::_ZTV6QLabel) + 464u) + +Vtable for QLCDNumber +QLCDNumber::_ZTV10QLCDNumber: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QLCDNumber) +16 QLCDNumber::metaObject +24 QLCDNumber::qt_metacast +32 QLCDNumber::qt_metacall +40 QLCDNumber::~QLCDNumber +48 QLCDNumber::~QLCDNumber +56 QLCDNumber::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QLCDNumber::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QLCDNumber::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI10QLCDNumber) +464 QLCDNumber::_ZThn16_N10QLCDNumberD1Ev +472 QLCDNumber::_ZThn16_N10QLCDNumberD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QLCDNumber + size=40 align=8 + base size=40 base align=8 +QLCDNumber (0x7f62db85a850) 0 + vptr=((& QLCDNumber::_ZTV10QLCDNumber) + 16u) + QFrame (0x7f62db85a8c0) 0 + primary-for QLCDNumber (0x7f62db85a850) + QWidget (0x7f62db855880) 0 + primary-for QFrame (0x7f62db85a8c0) + QObject (0x7f62db85a930) 0 + primary-for QWidget (0x7f62db855880) + QPaintDevice (0x7f62db85a9a0) 16 + vptr=((& QLCDNumber::_ZTV10QLCDNumber) + 464u) + +Vtable for QMainWindow +QMainWindow::_ZTV11QMainWindow: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMainWindow) +16 QMainWindow::metaObject +24 QMainWindow::qt_metacast +32 QMainWindow::qt_metacall +40 QMainWindow::~QMainWindow +48 QMainWindow::~QMainWindow +56 QMainWindow::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QMainWindow::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QMainWindow::createPopupMenu +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI11QMainWindow) +472 QMainWindow::_ZThn16_N11QMainWindowD1Ev +480 QMainWindow::_ZThn16_N11QMainWindowD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMainWindow + size=40 align=8 + base size=40 base align=8 +QMainWindow (0x7f62db685230) 0 + vptr=((& QMainWindow::_ZTV11QMainWindow) + 16u) + QWidget (0x7f62db87ba00) 0 + primary-for QMainWindow (0x7f62db685230) + QObject (0x7f62db6852a0) 0 + primary-for QWidget (0x7f62db87ba00) + QPaintDevice (0x7f62db685310) 16 + vptr=((& QMainWindow::_ZTV11QMainWindow) + 472u) + +Vtable for QMdiArea +QMdiArea::_ZTV8QMdiArea: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QMdiArea) +16 QMdiArea::metaObject +24 QMdiArea::qt_metacast +32 QMdiArea::qt_metacall +40 QMdiArea::~QMdiArea +48 QMdiArea::~QMdiArea +56 QMdiArea::event +64 QMdiArea::eventFilter +72 QMdiArea::timerEvent +80 QMdiArea::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QMdiArea::sizeHint +136 QMdiArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractScrollArea::mousePressEvent +168 QAbstractScrollArea::mouseReleaseEvent +176 QAbstractScrollArea::mouseDoubleClickEvent +184 QAbstractScrollArea::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractScrollArea::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QMdiArea::paintEvent +256 QWidget::moveEvent +264 QMdiArea::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractScrollArea::dragEnterEvent +312 QAbstractScrollArea::dragMoveEvent +320 QAbstractScrollArea::dragLeaveEvent +328 QAbstractScrollArea::dropEvent +336 QMdiArea::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QMdiArea::viewportEvent +456 QMdiArea::scrollContentsBy +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI8QMdiArea) +480 QMdiArea::_ZThn16_N8QMdiAreaD1Ev +488 QMdiArea::_ZThn16_N8QMdiAreaD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMdiArea + size=40 align=8 + base size=40 base align=8 +QMdiArea (0x7f62db702540) 0 + vptr=((& QMdiArea::_ZTV8QMdiArea) + 16u) + QAbstractScrollArea (0x7f62db7025b0) 0 + primary-for QMdiArea (0x7f62db702540) + QFrame (0x7f62db702620) 0 + primary-for QAbstractScrollArea (0x7f62db7025b0) + QWidget (0x7f62db6adc00) 0 + primary-for QFrame (0x7f62db702620) + QObject (0x7f62db702690) 0 + primary-for QWidget (0x7f62db6adc00) + QPaintDevice (0x7f62db702700) 16 + vptr=((& QMdiArea::_ZTV8QMdiArea) + 480u) + +Vtable for QMdiSubWindow +QMdiSubWindow::_ZTV13QMdiSubWindow: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QMdiSubWindow) +16 QMdiSubWindow::metaObject +24 QMdiSubWindow::qt_metacast +32 QMdiSubWindow::qt_metacall +40 QMdiSubWindow::~QMdiSubWindow +48 QMdiSubWindow::~QMdiSubWindow +56 QMdiSubWindow::event +64 QMdiSubWindow::eventFilter +72 QMdiSubWindow::timerEvent +80 QMdiSubWindow::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QMdiSubWindow::sizeHint +136 QMdiSubWindow::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QMdiSubWindow::mousePressEvent +168 QMdiSubWindow::mouseReleaseEvent +176 QMdiSubWindow::mouseDoubleClickEvent +184 QMdiSubWindow::mouseMoveEvent +192 QWidget::wheelEvent +200 QMdiSubWindow::keyPressEvent +208 QWidget::keyReleaseEvent +216 QMdiSubWindow::focusInEvent +224 QMdiSubWindow::focusOutEvent +232 QWidget::enterEvent +240 QMdiSubWindow::leaveEvent +248 QMdiSubWindow::paintEvent +256 QMdiSubWindow::moveEvent +264 QMdiSubWindow::resizeEvent +272 QMdiSubWindow::closeEvent +280 QMdiSubWindow::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QMdiSubWindow::showEvent +344 QMdiSubWindow::hideEvent +352 QWidget::x11Event +360 QMdiSubWindow::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI13QMdiSubWindow) +464 QMdiSubWindow::_ZThn16_N13QMdiSubWindowD1Ev +472 QMdiSubWindow::_ZThn16_N13QMdiSubWindowD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMdiSubWindow + size=40 align=8 + base size=40 base align=8 +QMdiSubWindow (0x7f62db75ca80) 0 + vptr=((& QMdiSubWindow::_ZTV13QMdiSubWindow) + 16u) + QWidget (0x7f62db70df00) 0 + primary-for QMdiSubWindow (0x7f62db75ca80) + QObject (0x7f62db75caf0) 0 + primary-for QWidget (0x7f62db70df00) + QPaintDevice (0x7f62db75cb60) 16 + vptr=((& QMdiSubWindow::_ZTV13QMdiSubWindow) + 464u) + +Vtable for QMenu +QMenu::_ZTV5QMenu: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QMenu) +16 QMenu::metaObject +24 QMenu::qt_metacast +32 QMenu::qt_metacall +40 QMenu::~QMenu +48 QMenu::~QMenu +56 QMenu::event +64 QObject::eventFilter +72 QMenu::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QMenu::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QMenu::mousePressEvent +168 QMenu::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QMenu::mouseMoveEvent +192 QMenu::wheelEvent +200 QMenu::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QMenu::enterEvent +240 QMenu::leaveEvent +248 QMenu::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QMenu::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QMenu::hideEvent +352 QWidget::x11Event +360 QMenu::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QMenu::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI5QMenu) +464 QMenu::_ZThn16_N5QMenuD1Ev +472 QMenu::_ZThn16_N5QMenuD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMenu + size=40 align=8 + base size=40 base align=8 +QMenu (0x7f62db5d6930) 0 + vptr=((& QMenu::_ZTV5QMenu) + 16u) + QWidget (0x7f62db5f8100) 0 + primary-for QMenu (0x7f62db5d6930) + QObject (0x7f62db5d69a0) 0 + primary-for QWidget (0x7f62db5f8100) + QPaintDevice (0x7f62db5d6a10) 16 + vptr=((& QMenu::_ZTV5QMenu) + 464u) + +Vtable for QMenuBar +QMenuBar::_ZTV8QMenuBar: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QMenuBar) +16 QMenuBar::metaObject +24 QMenuBar::qt_metacast +32 QMenuBar::qt_metacall +40 QMenuBar::~QMenuBar +48 QMenuBar::~QMenuBar +56 QMenuBar::event +64 QMenuBar::eventFilter +72 QMenuBar::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QMenuBar::setVisible +128 QMenuBar::sizeHint +136 QMenuBar::minimumSizeHint +144 QMenuBar::heightForWidth +152 QWidget::paintEngine +160 QMenuBar::mousePressEvent +168 QMenuBar::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QMenuBar::mouseMoveEvent +192 QWidget::wheelEvent +200 QMenuBar::keyPressEvent +208 QWidget::keyReleaseEvent +216 QMenuBar::focusInEvent +224 QMenuBar::focusOutEvent +232 QWidget::enterEvent +240 QMenuBar::leaveEvent +248 QMenuBar::paintEvent +256 QWidget::moveEvent +264 QMenuBar::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QMenuBar::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QMenuBar::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI8QMenuBar) +464 QMenuBar::_ZThn16_N8QMenuBarD1Ev +472 QMenuBar::_ZThn16_N8QMenuBarD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMenuBar + size=40 align=8 + base size=40 base align=8 +QMenuBar (0x7f62db49c770) 0 + vptr=((& QMenuBar::_ZTV8QMenuBar) + 16u) + QWidget (0x7f62db49a980) 0 + primary-for QMenuBar (0x7f62db49c770) + QObject (0x7f62db49c7e0) 0 + primary-for QWidget (0x7f62db49a980) + QPaintDevice (0x7f62db49c850) 16 + vptr=((& QMenuBar::_ZTV8QMenuBar) + 464u) + +Vtable for QMenuItem +QMenuItem::_ZTV9QMenuItem: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QMenuItem) +16 QMenuItem::metaObject +24 QMenuItem::qt_metacast +32 QMenuItem::qt_metacall +40 QMenuItem::~QMenuItem +48 QMenuItem::~QMenuItem +56 QAction::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QMenuItem + size=16 align=8 + base size=16 base align=8 +QMenuItem (0x7f62db53e4d0) 0 + vptr=((& QMenuItem::_ZTV9QMenuItem) + 16u) + QAction (0x7f62db53e540) 0 + primary-for QMenuItem (0x7f62db53e4d0) + QObject (0x7f62db53e5b0) 0 + primary-for QAction (0x7f62db53e540) + +Class QTextEdit::ExtraSelection + size=24 align=8 + base size=24 base align=8 +QTextEdit::ExtraSelection (0x7f62db55d700) 0 + +Vtable for QTextEdit +QTextEdit::_ZTV9QTextEdit: 69u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTextEdit) +16 QTextEdit::metaObject +24 QTextEdit::qt_metacast +32 QTextEdit::qt_metacall +40 QTextEdit::~QTextEdit +48 QTextEdit::~QTextEdit +56 QTextEdit::event +64 QObject::eventFilter +72 QTextEdit::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTextEdit::mousePressEvent +168 QTextEdit::mouseReleaseEvent +176 QTextEdit::mouseDoubleClickEvent +184 QTextEdit::mouseMoveEvent +192 QTextEdit::wheelEvent +200 QTextEdit::keyPressEvent +208 QTextEdit::keyReleaseEvent +216 QTextEdit::focusInEvent +224 QTextEdit::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTextEdit::paintEvent +256 QWidget::moveEvent +264 QTextEdit::resizeEvent +272 QWidget::closeEvent +280 QTextEdit::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QTextEdit::dragEnterEvent +312 QTextEdit::dragMoveEvent +320 QTextEdit::dragLeaveEvent +328 QTextEdit::dropEvent +336 QTextEdit::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QTextEdit::changeEvent +368 QWidget::metric +376 QTextEdit::inputMethodEvent +384 QTextEdit::inputMethodQuery +392 QTextEdit::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QTextEdit::scrollContentsBy +464 QTextEdit::loadResource +472 QTextEdit::createMimeDataFromSelection +480 QTextEdit::canInsertFromMimeData +488 QTextEdit::insertFromMimeData +496 (int (*)(...))-0x00000000000000010 +504 (int (*)(...))(& _ZTI9QTextEdit) +512 QTextEdit::_ZThn16_N9QTextEditD1Ev +520 QTextEdit::_ZThn16_N9QTextEditD0Ev +528 QWidget::_ZThn16_NK7QWidget7devTypeEv +536 QWidget::_ZThn16_NK7QWidget11paintEngineEv +544 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTextEdit + size=40 align=8 + base size=40 base align=8 +QTextEdit (0x7f62db54d770) 0 + vptr=((& QTextEdit::_ZTV9QTextEdit) + 16u) + QAbstractScrollArea (0x7f62db54d7e0) 0 + primary-for QTextEdit (0x7f62db54d770) + QFrame (0x7f62db54d850) 0 + primary-for QAbstractScrollArea (0x7f62db54d7e0) + QWidget (0x7f62db53ab00) 0 + primary-for QFrame (0x7f62db54d850) + QObject (0x7f62db54d8c0) 0 + primary-for QWidget (0x7f62db53ab00) + QPaintDevice (0x7f62db54d930) 16 + vptr=((& QTextEdit::_ZTV9QTextEdit) + 512u) + +Vtable for QPlainTextEdit +QPlainTextEdit::_ZTV14QPlainTextEdit: 69u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QPlainTextEdit) +16 QPlainTextEdit::metaObject +24 QPlainTextEdit::qt_metacast +32 QPlainTextEdit::qt_metacall +40 QPlainTextEdit::~QPlainTextEdit +48 QPlainTextEdit::~QPlainTextEdit +56 QPlainTextEdit::event +64 QObject::eventFilter +72 QPlainTextEdit::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QPlainTextEdit::mousePressEvent +168 QPlainTextEdit::mouseReleaseEvent +176 QPlainTextEdit::mouseDoubleClickEvent +184 QPlainTextEdit::mouseMoveEvent +192 QPlainTextEdit::wheelEvent +200 QPlainTextEdit::keyPressEvent +208 QPlainTextEdit::keyReleaseEvent +216 QPlainTextEdit::focusInEvent +224 QPlainTextEdit::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QPlainTextEdit::paintEvent +256 QWidget::moveEvent +264 QPlainTextEdit::resizeEvent +272 QWidget::closeEvent +280 QPlainTextEdit::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QPlainTextEdit::dragEnterEvent +312 QPlainTextEdit::dragMoveEvent +320 QPlainTextEdit::dragLeaveEvent +328 QPlainTextEdit::dropEvent +336 QPlainTextEdit::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QPlainTextEdit::changeEvent +368 QWidget::metric +376 QPlainTextEdit::inputMethodEvent +384 QPlainTextEdit::inputMethodQuery +392 QPlainTextEdit::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QPlainTextEdit::scrollContentsBy +464 QPlainTextEdit::loadResource +472 QPlainTextEdit::createMimeDataFromSelection +480 QPlainTextEdit::canInsertFromMimeData +488 QPlainTextEdit::insertFromMimeData +496 (int (*)(...))-0x00000000000000010 +504 (int (*)(...))(& _ZTI14QPlainTextEdit) +512 QPlainTextEdit::_ZThn16_N14QPlainTextEditD1Ev +520 QPlainTextEdit::_ZThn16_N14QPlainTextEditD0Ev +528 QWidget::_ZThn16_NK7QWidget7devTypeEv +536 QWidget::_ZThn16_NK7QWidget11paintEngineEv +544 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPlainTextEdit + size=40 align=8 + base size=40 base align=8 +QPlainTextEdit (0x7f62db3f48c0) 0 + vptr=((& QPlainTextEdit::_ZTV14QPlainTextEdit) + 16u) + QAbstractScrollArea (0x7f62db3f4930) 0 + primary-for QPlainTextEdit (0x7f62db3f48c0) + QFrame (0x7f62db3f49a0) 0 + primary-for QAbstractScrollArea (0x7f62db3f4930) + QWidget (0x7f62db3f3400) 0 + primary-for QFrame (0x7f62db3f49a0) + QObject (0x7f62db3f4a10) 0 + primary-for QWidget (0x7f62db3f3400) + QPaintDevice (0x7f62db3f4a80) 16 + vptr=((& QPlainTextEdit::_ZTV14QPlainTextEdit) + 512u) + +Vtable for QPlainTextDocumentLayout +QPlainTextDocumentLayout::_ZTV24QPlainTextDocumentLayout: 24u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QPlainTextDocumentLayout) +16 QPlainTextDocumentLayout::metaObject +24 QPlainTextDocumentLayout::qt_metacast +32 QPlainTextDocumentLayout::qt_metacall +40 QPlainTextDocumentLayout::~QPlainTextDocumentLayout +48 QPlainTextDocumentLayout::~QPlainTextDocumentLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QPlainTextDocumentLayout::draw +120 QPlainTextDocumentLayout::hitTest +128 QPlainTextDocumentLayout::pageCount +136 QPlainTextDocumentLayout::documentSize +144 QPlainTextDocumentLayout::frameBoundingRect +152 QPlainTextDocumentLayout::blockBoundingRect +160 QPlainTextDocumentLayout::documentChanged +168 QAbstractTextDocumentLayout::resizeInlineObject +176 QAbstractTextDocumentLayout::positionInlineObject +184 QAbstractTextDocumentLayout::drawInlineObject + +Class QPlainTextDocumentLayout + size=16 align=8 + base size=16 base align=8 +QPlainTextDocumentLayout (0x7f62db456690) 0 + vptr=((& QPlainTextDocumentLayout::_ZTV24QPlainTextDocumentLayout) + 16u) + QAbstractTextDocumentLayout (0x7f62db456700) 0 + primary-for QPlainTextDocumentLayout (0x7f62db456690) + QObject (0x7f62db456770) 0 + primary-for QAbstractTextDocumentLayout (0x7f62db456700) + +Vtable for QPrintPreviewWidget +QPrintPreviewWidget::_ZTV19QPrintPreviewWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QPrintPreviewWidget) +16 QPrintPreviewWidget::metaObject +24 QPrintPreviewWidget::qt_metacast +32 QPrintPreviewWidget::qt_metacall +40 QPrintPreviewWidget::~QPrintPreviewWidget +48 QPrintPreviewWidget::~QPrintPreviewWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QPrintPreviewWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI19QPrintPreviewWidget) +464 QPrintPreviewWidget::_ZThn16_N19QPrintPreviewWidgetD1Ev +472 QPrintPreviewWidget::_ZThn16_N19QPrintPreviewWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPrintPreviewWidget + size=48 align=8 + base size=48 base align=8 +QPrintPreviewWidget (0x7f62db46eb60) 0 + vptr=((& QPrintPreviewWidget::_ZTV19QPrintPreviewWidget) + 16u) + QWidget (0x7f62db46a600) 0 + primary-for QPrintPreviewWidget (0x7f62db46eb60) + QObject (0x7f62db46ebd0) 0 + primary-for QWidget (0x7f62db46a600) + QPaintDevice (0x7f62db46ec40) 16 + vptr=((& QPrintPreviewWidget::_ZTV19QPrintPreviewWidget) + 464u) + +Vtable for QProgressBar +QProgressBar::_ZTV12QProgressBar: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QProgressBar) +16 QProgressBar::metaObject +24 QProgressBar::qt_metacast +32 QProgressBar::qt_metacall +40 QProgressBar::~QProgressBar +48 QProgressBar::~QProgressBar +56 QProgressBar::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QProgressBar::sizeHint +136 QProgressBar::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QProgressBar::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QProgressBar::text +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI12QProgressBar) +472 QProgressBar::_ZThn16_N12QProgressBarD1Ev +480 QProgressBar::_ZThn16_N12QProgressBarD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QProgressBar + size=40 align=8 + base size=40 base align=8 +QProgressBar (0x7f62db290700) 0 + vptr=((& QProgressBar::_ZTV12QProgressBar) + 16u) + QWidget (0x7f62db293300) 0 + primary-for QProgressBar (0x7f62db290700) + QObject (0x7f62db290770) 0 + primary-for QWidget (0x7f62db293300) + QPaintDevice (0x7f62db2907e0) 16 + vptr=((& QProgressBar::_ZTV12QProgressBar) + 472u) + +Vtable for QRadioButton +QRadioButton::_ZTV12QRadioButton: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QRadioButton) +16 QRadioButton::metaObject +24 QRadioButton::qt_metacast +32 QRadioButton::qt_metacall +40 QRadioButton::~QRadioButton +48 QRadioButton::~QRadioButton +56 QRadioButton::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QRadioButton::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QRadioButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QAbstractButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QAbstractButton::focusInEvent +224 QAbstractButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QRadioButton::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QRadioButton::hitButton +456 QAbstractButton::checkStateSet +464 QAbstractButton::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI12QRadioButton) +488 QRadioButton::_ZThn16_N12QRadioButtonD1Ev +496 QRadioButton::_ZThn16_N12QRadioButtonD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QRadioButton + size=40 align=8 + base size=40 base align=8 +QRadioButton (0x7f62db2b4540) 0 + vptr=((& QRadioButton::_ZTV12QRadioButton) + 16u) + QAbstractButton (0x7f62db2b45b0) 0 + primary-for QRadioButton (0x7f62db2b4540) + QWidget (0x7f62db293e00) 0 + primary-for QAbstractButton (0x7f62db2b45b0) + QObject (0x7f62db2b4620) 0 + primary-for QWidget (0x7f62db293e00) + QPaintDevice (0x7f62db2b4690) 16 + vptr=((& QRadioButton::_ZTV12QRadioButton) + 488u) + +Vtable for QScrollBar +QScrollBar::_ZTV10QScrollBar: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QScrollBar) +16 QScrollBar::metaObject +24 QScrollBar::qt_metacast +32 QScrollBar::qt_metacall +40 QScrollBar::~QScrollBar +48 QScrollBar::~QScrollBar +56 QScrollBar::event +64 QObject::eventFilter +72 QAbstractSlider::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QScrollBar::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QScrollBar::mousePressEvent +168 QScrollBar::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QScrollBar::mouseMoveEvent +192 QAbstractSlider::wheelEvent +200 QAbstractSlider::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QScrollBar::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QScrollBar::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QScrollBar::hideEvent +352 QWidget::x11Event +360 QAbstractSlider::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QScrollBar::sliderChange +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI10QScrollBar) +472 QScrollBar::_ZThn16_N10QScrollBarD1Ev +480 QScrollBar::_ZThn16_N10QScrollBarD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QScrollBar + size=40 align=8 + base size=40 base align=8 +QScrollBar (0x7f62db2d41c0) 0 + vptr=((& QScrollBar::_ZTV10QScrollBar) + 16u) + QAbstractSlider (0x7f62db2d4230) 0 + primary-for QScrollBar (0x7f62db2d41c0) + QWidget (0x7f62db2c9800) 0 + primary-for QAbstractSlider (0x7f62db2d4230) + QObject (0x7f62db2d42a0) 0 + primary-for QWidget (0x7f62db2c9800) + QPaintDevice (0x7f62db2d4310) 16 + vptr=((& QScrollBar::_ZTV10QScrollBar) + 472u) + +Vtable for QSizeGrip +QSizeGrip::_ZTV9QSizeGrip: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QSizeGrip) +16 QSizeGrip::metaObject +24 QSizeGrip::qt_metacast +32 QSizeGrip::qt_metacall +40 QSizeGrip::~QSizeGrip +48 QSizeGrip::~QSizeGrip +56 QSizeGrip::event +64 QSizeGrip::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QSizeGrip::setVisible +128 QSizeGrip::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QSizeGrip::mousePressEvent +168 QSizeGrip::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QSizeGrip::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QSizeGrip::paintEvent +256 QSizeGrip::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QSizeGrip::showEvent +344 QSizeGrip::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI9QSizeGrip) +464 QSizeGrip::_ZThn16_N9QSizeGripD1Ev +472 QSizeGrip::_ZThn16_N9QSizeGripD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSizeGrip + size=40 align=8 + base size=40 base align=8 +QSizeGrip (0x7f62db2f4310) 0 + vptr=((& QSizeGrip::_ZTV9QSizeGrip) + 16u) + QWidget (0x7f62db2f3380) 0 + primary-for QSizeGrip (0x7f62db2f4310) + QObject (0x7f62db2f4380) 0 + primary-for QWidget (0x7f62db2f3380) + QPaintDevice (0x7f62db2f43f0) 16 + vptr=((& QSizeGrip::_ZTV9QSizeGrip) + 464u) + +Vtable for QSpinBox +QSpinBox::_ZTV8QSpinBox: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QSpinBox) +16 QSpinBox::metaObject +24 QSpinBox::qt_metacast +32 QSpinBox::qt_metacall +40 QSpinBox::~QSpinBox +48 QSpinBox::~QSpinBox +56 QSpinBox::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractSpinBox::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractSpinBox::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QAbstractSpinBox::wheelEvent +200 QAbstractSpinBox::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QAbstractSpinBox::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractSpinBox::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QAbstractSpinBox::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QSpinBox::validate +456 QSpinBox::fixup +464 QAbstractSpinBox::stepBy +472 QAbstractSpinBox::clear +480 QAbstractSpinBox::stepEnabled +488 QSpinBox::valueFromText +496 QSpinBox::textFromValue +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI8QSpinBox) +520 QSpinBox::_ZThn16_N8QSpinBoxD1Ev +528 QSpinBox::_ZThn16_N8QSpinBoxD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSpinBox + size=40 align=8 + base size=40 base align=8 +QSpinBox (0x7f62db30be00) 0 + vptr=((& QSpinBox::_ZTV8QSpinBox) + 16u) + QAbstractSpinBox (0x7f62db30be70) 0 + primary-for QSpinBox (0x7f62db30be00) + QWidget (0x7f62db2f3d80) 0 + primary-for QAbstractSpinBox (0x7f62db30be70) + QObject (0x7f62db30bee0) 0 + primary-for QWidget (0x7f62db2f3d80) + QPaintDevice (0x7f62db30bf50) 16 + vptr=((& QSpinBox::_ZTV8QSpinBox) + 520u) + +Vtable for QDoubleSpinBox +QDoubleSpinBox::_ZTV14QDoubleSpinBox: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QDoubleSpinBox) +16 QDoubleSpinBox::metaObject +24 QDoubleSpinBox::qt_metacast +32 QDoubleSpinBox::qt_metacall +40 QDoubleSpinBox::~QDoubleSpinBox +48 QDoubleSpinBox::~QDoubleSpinBox +56 QAbstractSpinBox::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractSpinBox::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractSpinBox::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QAbstractSpinBox::wheelEvent +200 QAbstractSpinBox::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QAbstractSpinBox::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractSpinBox::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QAbstractSpinBox::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDoubleSpinBox::validate +456 QDoubleSpinBox::fixup +464 QAbstractSpinBox::stepBy +472 QAbstractSpinBox::clear +480 QAbstractSpinBox::stepEnabled +488 QDoubleSpinBox::valueFromText +496 QDoubleSpinBox::textFromValue +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI14QDoubleSpinBox) +520 QDoubleSpinBox::_ZThn16_N14QDoubleSpinBoxD1Ev +528 QDoubleSpinBox::_ZThn16_N14QDoubleSpinBoxD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDoubleSpinBox + size=40 align=8 + base size=40 base align=8 +QDoubleSpinBox (0x7f62db338770) 0 + vptr=((& QDoubleSpinBox::_ZTV14QDoubleSpinBox) + 16u) + QAbstractSpinBox (0x7f62db3387e0) 0 + primary-for QDoubleSpinBox (0x7f62db338770) + QWidget (0x7f62db32cf00) 0 + primary-for QAbstractSpinBox (0x7f62db3387e0) + QObject (0x7f62db338850) 0 + primary-for QWidget (0x7f62db32cf00) + QPaintDevice (0x7f62db3388c0) 16 + vptr=((& QDoubleSpinBox::_ZTV14QDoubleSpinBox) + 520u) + +Vtable for QSplashScreen +QSplashScreen::_ZTV13QSplashScreen: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSplashScreen) +16 QSplashScreen::metaObject +24 QSplashScreen::qt_metacast +32 QSplashScreen::qt_metacall +40 QSplashScreen::~QSplashScreen +48 QSplashScreen::~QSplashScreen +56 QSplashScreen::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QSplashScreen::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QSplashScreen::drawContents +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI13QSplashScreen) +472 QSplashScreen::_ZThn16_N13QSplashScreenD1Ev +480 QSplashScreen::_ZThn16_N13QSplashScreenD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSplashScreen + size=40 align=8 + base size=40 base align=8 +QSplashScreen (0x7f62db358230) 0 + vptr=((& QSplashScreen::_ZTV13QSplashScreen) + 16u) + QWidget (0x7f62db33a900) 0 + primary-for QSplashScreen (0x7f62db358230) + QObject (0x7f62db3582a0) 0 + primary-for QWidget (0x7f62db33a900) + QPaintDevice (0x7f62db358310) 16 + vptr=((& QSplashScreen::_ZTV13QSplashScreen) + 472u) + +Vtable for QSplitter +QSplitter::_ZTV9QSplitter: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QSplitter) +16 QSplitter::metaObject +24 QSplitter::qt_metacast +32 QSplitter::qt_metacall +40 QSplitter::~QSplitter +48 QSplitter::~QSplitter +56 QSplitter::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QSplitter::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QSplitter::sizeHint +136 QSplitter::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFrame::paintEvent +256 QWidget::moveEvent +264 QSplitter::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QSplitter::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QSplitter::createHandle +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI9QSplitter) +472 QSplitter::_ZThn16_N9QSplitterD1Ev +480 QSplitter::_ZThn16_N9QSplitterD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSplitter + size=40 align=8 + base size=40 base align=8 +QSplitter (0x7f62db379310) 0 + vptr=((& QSplitter::_ZTV9QSplitter) + 16u) + QFrame (0x7f62db379380) 0 + primary-for QSplitter (0x7f62db379310) + QWidget (0x7f62db375580) 0 + primary-for QFrame (0x7f62db379380) + QObject (0x7f62db3793f0) 0 + primary-for QWidget (0x7f62db375580) + QPaintDevice (0x7f62db379460) 16 + vptr=((& QSplitter::_ZTV9QSplitter) + 472u) + +Vtable for QSplitterHandle +QSplitterHandle::_ZTV15QSplitterHandle: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSplitterHandle) +16 QSplitterHandle::metaObject +24 QSplitterHandle::qt_metacast +32 QSplitterHandle::qt_metacall +40 QSplitterHandle::~QSplitterHandle +48 QSplitterHandle::~QSplitterHandle +56 QSplitterHandle::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QSplitterHandle::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QSplitterHandle::mousePressEvent +168 QSplitterHandle::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QSplitterHandle::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QSplitterHandle::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI15QSplitterHandle) +464 QSplitterHandle::_ZThn16_N15QSplitterHandleD1Ev +472 QSplitterHandle::_ZThn16_N15QSplitterHandleD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSplitterHandle + size=40 align=8 + base size=40 base align=8 +QSplitterHandle (0x7f62db1a7230) 0 + vptr=((& QSplitterHandle::_ZTV15QSplitterHandle) + 16u) + QWidget (0x7f62db1a3780) 0 + primary-for QSplitterHandle (0x7f62db1a7230) + QObject (0x7f62db1a72a0) 0 + primary-for QWidget (0x7f62db1a3780) + QPaintDevice (0x7f62db1a7310) 16 + vptr=((& QSplitterHandle::_ZTV15QSplitterHandle) + 464u) + +Vtable for QStackedWidget +QStackedWidget::_ZTV14QStackedWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QStackedWidget) +16 QStackedWidget::metaObject +24 QStackedWidget::qt_metacast +32 QStackedWidget::qt_metacall +40 QStackedWidget::~QStackedWidget +48 QStackedWidget::~QStackedWidget +56 QStackedWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QFrame::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFrame::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI14QStackedWidget) +464 QStackedWidget::_ZThn16_N14QStackedWidgetD1Ev +472 QStackedWidget::_ZThn16_N14QStackedWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QStackedWidget + size=40 align=8 + base size=40 base align=8 +QStackedWidget (0x7f62db1c0a10) 0 + vptr=((& QStackedWidget::_ZTV14QStackedWidget) + 16u) + QFrame (0x7f62db1c0a80) 0 + primary-for QStackedWidget (0x7f62db1c0a10) + QWidget (0x7f62db1c4180) 0 + primary-for QFrame (0x7f62db1c0a80) + QObject (0x7f62db1c0af0) 0 + primary-for QWidget (0x7f62db1c4180) + QPaintDevice (0x7f62db1c0b60) 16 + vptr=((& QStackedWidget::_ZTV14QStackedWidget) + 464u) + +Vtable for QStatusBar +QStatusBar::_ZTV10QStatusBar: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QStatusBar) +16 QStatusBar::metaObject +24 QStatusBar::qt_metacast +32 QStatusBar::qt_metacall +40 QStatusBar::~QStatusBar +48 QStatusBar::~QStatusBar +56 QStatusBar::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QStatusBar::paintEvent +256 QWidget::moveEvent +264 QStatusBar::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QStatusBar::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI10QStatusBar) +464 QStatusBar::_ZThn16_N10QStatusBarD1Ev +472 QStatusBar::_ZThn16_N10QStatusBarD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QStatusBar + size=40 align=8 + base size=40 base align=8 +QStatusBar (0x7f62db1dc8c0) 0 + vptr=((& QStatusBar::_ZTV10QStatusBar) + 16u) + QWidget (0x7f62db1c4b80) 0 + primary-for QStatusBar (0x7f62db1dc8c0) + QObject (0x7f62db1dc930) 0 + primary-for QWidget (0x7f62db1c4b80) + QPaintDevice (0x7f62db1dc9a0) 16 + vptr=((& QStatusBar::_ZTV10QStatusBar) + 464u) + +Vtable for QTextBrowser +QTextBrowser::_ZTV12QTextBrowser: 74u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextBrowser) +16 QTextBrowser::metaObject +24 QTextBrowser::qt_metacast +32 QTextBrowser::qt_metacall +40 QTextBrowser::~QTextBrowser +48 QTextBrowser::~QTextBrowser +56 QTextBrowser::event +64 QObject::eventFilter +72 QTextEdit::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTextBrowser::mousePressEvent +168 QTextBrowser::mouseReleaseEvent +176 QTextEdit::mouseDoubleClickEvent +184 QTextBrowser::mouseMoveEvent +192 QTextEdit::wheelEvent +200 QTextBrowser::keyPressEvent +208 QTextEdit::keyReleaseEvent +216 QTextEdit::focusInEvent +224 QTextBrowser::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTextBrowser::paintEvent +256 QWidget::moveEvent +264 QTextEdit::resizeEvent +272 QWidget::closeEvent +280 QTextEdit::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QTextEdit::dragEnterEvent +312 QTextEdit::dragMoveEvent +320 QTextEdit::dragLeaveEvent +328 QTextEdit::dropEvent +336 QTextEdit::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QTextEdit::changeEvent +368 QWidget::metric +376 QTextEdit::inputMethodEvent +384 QTextEdit::inputMethodQuery +392 QTextBrowser::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QTextEdit::scrollContentsBy +464 QTextBrowser::loadResource +472 QTextEdit::createMimeDataFromSelection +480 QTextEdit::canInsertFromMimeData +488 QTextEdit::insertFromMimeData +496 QTextBrowser::setSource +504 QTextBrowser::backward +512 QTextBrowser::forward +520 QTextBrowser::home +528 QTextBrowser::reload +536 (int (*)(...))-0x00000000000000010 +544 (int (*)(...))(& _ZTI12QTextBrowser) +552 QTextBrowser::_ZThn16_N12QTextBrowserD1Ev +560 QTextBrowser::_ZThn16_N12QTextBrowserD0Ev +568 QWidget::_ZThn16_NK7QWidget7devTypeEv +576 QWidget::_ZThn16_NK7QWidget11paintEngineEv +584 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTextBrowser + size=40 align=8 + base size=40 base align=8 +QTextBrowser (0x7f62db1ffe00) 0 + vptr=((& QTextBrowser::_ZTV12QTextBrowser) + 16u) + QTextEdit (0x7f62db1ffe70) 0 + primary-for QTextBrowser (0x7f62db1ffe00) + QAbstractScrollArea (0x7f62db1ffee0) 0 + primary-for QTextEdit (0x7f62db1ffe70) + QFrame (0x7f62db1fff50) 0 + primary-for QAbstractScrollArea (0x7f62db1ffee0) + QWidget (0x7f62db1f9b80) 0 + primary-for QFrame (0x7f62db1fff50) + QObject (0x7f62db204000) 0 + primary-for QWidget (0x7f62db1f9b80) + QPaintDevice (0x7f62db204070) 16 + vptr=((& QTextBrowser::_ZTV12QTextBrowser) + 552u) + +Vtable for QToolBar +QToolBar::_ZTV8QToolBar: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QToolBar) +16 QToolBar::metaObject +24 QToolBar::qt_metacast +32 QToolBar::qt_metacall +40 QToolBar::~QToolBar +48 QToolBar::~QToolBar +56 QToolBar::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QToolBar::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QToolBar::paintEvent +256 QWidget::moveEvent +264 QToolBar::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QToolBar::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QToolBar::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI8QToolBar) +464 QToolBar::_ZThn16_N8QToolBarD1Ev +472 QToolBar::_ZThn16_N8QToolBarD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QToolBar + size=40 align=8 + base size=40 base align=8 +QToolBar (0x7f62db223a10) 0 + vptr=((& QToolBar::_ZTV8QToolBar) + 16u) + QWidget (0x7f62db21f580) 0 + primary-for QToolBar (0x7f62db223a10) + QObject (0x7f62db223a80) 0 + primary-for QWidget (0x7f62db21f580) + QPaintDevice (0x7f62db223af0) 16 + vptr=((& QToolBar::_ZTV8QToolBar) + 464u) + +Vtable for QToolBox +QToolBox::_ZTV8QToolBox: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QToolBox) +16 QToolBox::metaObject +24 QToolBox::qt_metacast +32 QToolBox::qt_metacall +40 QToolBox::~QToolBox +48 QToolBox::~QToolBox +56 QToolBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QFrame::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFrame::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QToolBox::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QToolBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QToolBox::itemInserted +456 QToolBox::itemRemoved +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI8QToolBox) +480 QToolBox::_ZThn16_N8QToolBoxD1Ev +488 QToolBox::_ZThn16_N8QToolBoxD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QToolBox + size=40 align=8 + base size=40 base align=8 +QToolBox (0x7f62db260850) 0 + vptr=((& QToolBox::_ZTV8QToolBox) + 16u) + QFrame (0x7f62db2608c0) 0 + primary-for QToolBox (0x7f62db260850) + QWidget (0x7f62db25c680) 0 + primary-for QFrame (0x7f62db2608c0) + QObject (0x7f62db260930) 0 + primary-for QWidget (0x7f62db25c680) + QPaintDevice (0x7f62db2609a0) 16 + vptr=((& QToolBox::_ZTV8QToolBox) + 480u) + +Vtable for QToolButton +QToolButton::_ZTV11QToolButton: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QToolButton) +16 QToolButton::metaObject +24 QToolButton::qt_metacast +32 QToolButton::qt_metacall +40 QToolButton::~QToolButton +48 QToolButton::~QToolButton +56 QToolButton::event +64 QObject::eventFilter +72 QToolButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QToolButton::sizeHint +136 QToolButton::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QToolButton::mousePressEvent +168 QToolButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QAbstractButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QAbstractButton::focusInEvent +224 QAbstractButton::focusOutEvent +232 QToolButton::enterEvent +240 QToolButton::leaveEvent +248 QToolButton::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QToolButton::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QToolButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QToolButton::hitButton +456 QAbstractButton::checkStateSet +464 QToolButton::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11QToolButton) +488 QToolButton::_ZThn16_N11QToolButtonD1Ev +496 QToolButton::_ZThn16_N11QToolButtonD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QToolButton + size=40 align=8 + base size=40 base align=8 +QToolButton (0x7f62db098310) 0 + vptr=((& QToolButton::_ZTV11QToolButton) + 16u) + QAbstractButton (0x7f62db098380) 0 + primary-for QToolButton (0x7f62db098310) + QWidget (0x7f62db095400) 0 + primary-for QAbstractButton (0x7f62db098380) + QObject (0x7f62db0983f0) 0 + primary-for QWidget (0x7f62db095400) + QPaintDevice (0x7f62db098460) 16 + vptr=((& QToolButton::_ZTV11QToolButton) + 488u) + +Vtable for QWorkspace +QWorkspace::_ZTV10QWorkspace: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QWorkspace) +16 QWorkspace::metaObject +24 QWorkspace::qt_metacast +32 QWorkspace::qt_metacall +40 QWorkspace::~QWorkspace +48 QWorkspace::~QWorkspace +56 QWorkspace::event +64 QWorkspace::eventFilter +72 QObject::timerEvent +80 QWorkspace::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWorkspace::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWorkspace::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWorkspace::paintEvent +256 QWidget::moveEvent +264 QWorkspace::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWorkspace::showEvent +344 QWorkspace::hideEvent +352 QWidget::x11Event +360 QWorkspace::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI10QWorkspace) +464 QWorkspace::_ZThn16_N10QWorkspaceD1Ev +472 QWorkspace::_ZThn16_N10QWorkspaceD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWorkspace + size=40 align=8 + base size=40 base align=8 +QWorkspace (0x7f62db0dc620) 0 + vptr=((& QWorkspace::_ZTV10QWorkspace) + 16u) + QWidget (0x7f62db0e0100) 0 + primary-for QWorkspace (0x7f62db0dc620) + QObject (0x7f62db0dc690) 0 + primary-for QWidget (0x7f62db0e0100) + QPaintDevice (0x7f62db0dc700) 16 + vptr=((& QWorkspace::_ZTV10QWorkspace) + 464u) + +Class QSslCertificate + size=8 align=8 + base size=8 base align=8 +QSslCertificate (0x7f62db101700) 0 + +Class QSslCipher + size=8 align=8 + base size=8 base align=8 +QSslCipher (0x7f62db128230) 0 + +Vtable for QAbstractSocket +QAbstractSocket::_ZTV15QAbstractSocket: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QAbstractSocket) +16 QAbstractSocket::metaObject +24 QAbstractSocket::qt_metacast +32 QAbstractSocket::qt_metacall +40 QAbstractSocket::~QAbstractSocket +48 QAbstractSocket::~QAbstractSocket +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractSocket::isSequential +120 QIODevice::open +128 QAbstractSocket::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QAbstractSocket::atEnd +168 QIODevice::reset +176 QAbstractSocket::bytesAvailable +184 QAbstractSocket::bytesToWrite +192 QAbstractSocket::canReadLine +200 QAbstractSocket::waitForReadyRead +208 QAbstractSocket::waitForBytesWritten +216 QAbstractSocket::readData +224 QAbstractSocket::readLineData +232 QAbstractSocket::writeData + +Class QAbstractSocket + size=16 align=8 + base size=16 base align=8 +QAbstractSocket (0x7f62db128c40) 0 + vptr=((& QAbstractSocket::_ZTV15QAbstractSocket) + 16u) + QIODevice (0x7f62db128cb0) 0 + primary-for QAbstractSocket (0x7f62db128c40) + QObject (0x7f62db128d20) 0 + primary-for QIODevice (0x7f62db128cb0) + +Vtable for QTcpSocket +QTcpSocket::_ZTV10QTcpSocket: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTcpSocket) +16 QTcpSocket::metaObject +24 QTcpSocket::qt_metacast +32 QTcpSocket::qt_metacall +40 QTcpSocket::~QTcpSocket +48 QTcpSocket::~QTcpSocket +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractSocket::isSequential +120 QIODevice::open +128 QAbstractSocket::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QAbstractSocket::atEnd +168 QIODevice::reset +176 QAbstractSocket::bytesAvailable +184 QAbstractSocket::bytesToWrite +192 QAbstractSocket::canReadLine +200 QAbstractSocket::waitForReadyRead +208 QAbstractSocket::waitForBytesWritten +216 QAbstractSocket::readData +224 QAbstractSocket::readLineData +232 QAbstractSocket::writeData + +Class QTcpSocket + size=16 align=8 + base size=16 base align=8 +QTcpSocket (0x7f62db179540) 0 + vptr=((& QTcpSocket::_ZTV10QTcpSocket) + 16u) + QAbstractSocket (0x7f62db1795b0) 0 + primary-for QTcpSocket (0x7f62db179540) + QIODevice (0x7f62db179620) 0 + primary-for QAbstractSocket (0x7f62db1795b0) + QObject (0x7f62db179690) 0 + primary-for QIODevice (0x7f62db179620) + +Class QSslError + size=8 align=8 + base size=8 base align=8 +QSslError (0x7f62daf92000) 0 + +Vtable for QSslSocket +QSslSocket::_ZTV10QSslSocket: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QSslSocket) +16 QSslSocket::metaObject +24 QSslSocket::qt_metacast +32 QSslSocket::qt_metacall +40 QSslSocket::~QSslSocket +48 QSslSocket::~QSslSocket +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractSocket::isSequential +120 QIODevice::open +128 QSslSocket::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QSslSocket::atEnd +168 QIODevice::reset +176 QSslSocket::bytesAvailable +184 QSslSocket::bytesToWrite +192 QSslSocket::canReadLine +200 QSslSocket::waitForReadyRead +208 QSslSocket::waitForBytesWritten +216 QSslSocket::readData +224 QAbstractSocket::readLineData +232 QSslSocket::writeData + +Class QSslSocket + size=16 align=8 + base size=16 base align=8 +QSslSocket (0x7f62daf92ee0) 0 + vptr=((& QSslSocket::_ZTV10QSslSocket) + 16u) + QTcpSocket (0x7f62daf92f50) 0 + primary-for QSslSocket (0x7f62daf92ee0) + QAbstractSocket (0x7f62daf92af0) 0 + primary-for QTcpSocket (0x7f62daf92f50) + QIODevice (0x7f62dafa7000) 0 + primary-for QAbstractSocket (0x7f62daf92af0) + QObject (0x7f62dafa7070) 0 + primary-for QIODevice (0x7f62dafa7000) + +Class QSslConfiguration + size=8 align=8 + base size=8 base align=8 +QSslConfiguration (0x7f62dafe2000) 0 + +Class QSslKey + size=8 align=8 + base size=8 base align=8 +QSslKey (0x7f62dafe2d90) 0 + +Class QNetworkRequest + size=8 align=8 + base size=8 base align=8 +QNetworkRequest (0x7f62daffe9a0) 0 + +Class QNetworkCacheMetaData + size=8 align=8 + base size=8 base align=8 +QNetworkCacheMetaData (0x7f62db01a8c0) 0 + +Vtable for QAbstractNetworkCache +QAbstractNetworkCache::_ZTV21QAbstractNetworkCache: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QAbstractNetworkCache) +16 QAbstractNetworkCache::metaObject +24 QAbstractNetworkCache::qt_metacast +32 QAbstractNetworkCache::qt_metacall +40 QAbstractNetworkCache::~QAbstractNetworkCache +48 QAbstractNetworkCache::~QAbstractNetworkCache +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QAbstractNetworkCache + size=16 align=8 + base size=16 base align=8 +QAbstractNetworkCache (0x7f62db035b60) 0 + vptr=((& QAbstractNetworkCache::_ZTV21QAbstractNetworkCache) + 16u) + QObject (0x7f62db035bd0) 0 + primary-for QAbstractNetworkCache (0x7f62db035b60) + +Vtable for QUrlInfo +QUrlInfo::_ZTV8QUrlInfo: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QUrlInfo) +16 QUrlInfo::~QUrlInfo +24 QUrlInfo::~QUrlInfo +32 QUrlInfo::setName +40 QUrlInfo::setDir +48 QUrlInfo::setFile +56 QUrlInfo::setSymLink +64 QUrlInfo::setOwner +72 QUrlInfo::setGroup +80 QUrlInfo::setSize +88 QUrlInfo::setWritable +96 QUrlInfo::setReadable +104 QUrlInfo::setPermissions +112 QUrlInfo::setLastModified + +Class QUrlInfo + size=16 align=8 + base size=16 base align=8 +QUrlInfo (0x7f62db0604d0) 0 + vptr=((& QUrlInfo::_ZTV8QUrlInfo) + 16u) + +Vtable for QFtp +QFtp::_ZTV4QFtp: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI4QFtp) +16 QFtp::metaObject +24 QFtp::qt_metacast +32 QFtp::qt_metacall +40 QFtp::~QFtp +48 QFtp::~QFtp +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QFtp + size=16 align=8 + base size=16 base align=8 +QFtp (0x7f62db070460) 0 + vptr=((& QFtp::_ZTV4QFtp) + 16u) + QObject (0x7f62db0704d0) 0 + primary-for QFtp (0x7f62db070460) + +Vtable for QHttpHeader +QHttpHeader::_ZTV11QHttpHeader: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QHttpHeader) +16 QHttpHeader::~QHttpHeader +24 QHttpHeader::~QHttpHeader +32 QHttpHeader::toString +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QHttpHeader::parseLine + +Class QHttpHeader + size=16 align=8 + base size=16 base align=8 +QHttpHeader (0x7f62dae9ea80) 0 + vptr=((& QHttpHeader::_ZTV11QHttpHeader) + 16u) + +Vtable for QHttpResponseHeader +QHttpResponseHeader::_ZTV19QHttpResponseHeader: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QHttpResponseHeader) +16 QHttpResponseHeader::~QHttpResponseHeader +24 QHttpResponseHeader::~QHttpResponseHeader +32 QHttpResponseHeader::toString +40 QHttpResponseHeader::majorVersion +48 QHttpResponseHeader::minorVersion +56 QHttpResponseHeader::parseLine + +Class QHttpResponseHeader + size=16 align=8 + base size=16 base align=8 +QHttpResponseHeader (0x7f62daea69a0) 0 + vptr=((& QHttpResponseHeader::_ZTV19QHttpResponseHeader) + 16u) + QHttpHeader (0x7f62daea6a10) 0 + primary-for QHttpResponseHeader (0x7f62daea69a0) + +Vtable for QHttpRequestHeader +QHttpRequestHeader::_ZTV18QHttpRequestHeader: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QHttpRequestHeader) +16 QHttpRequestHeader::~QHttpRequestHeader +24 QHttpRequestHeader::~QHttpRequestHeader +32 QHttpRequestHeader::toString +40 QHttpRequestHeader::majorVersion +48 QHttpRequestHeader::minorVersion +56 QHttpRequestHeader::parseLine + +Class QHttpRequestHeader + size=16 align=8 + base size=16 base align=8 +QHttpRequestHeader (0x7f62daec45b0) 0 + vptr=((& QHttpRequestHeader::_ZTV18QHttpRequestHeader) + 16u) + QHttpHeader (0x7f62daec4620) 0 + primary-for QHttpRequestHeader (0x7f62daec45b0) + +Vtable for QHttp +QHttp::_ZTV5QHttp: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QHttp) +16 QHttp::metaObject +24 QHttp::qt_metacast +32 QHttp::qt_metacall +40 QHttp::~QHttp +48 QHttp::~QHttp +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QHttp + size=16 align=8 + base size=16 base align=8 +QHttp (0x7f62daed41c0) 0 + vptr=((& QHttp::_ZTV5QHttp) + 16u) + QObject (0x7f62daed4230) 0 + primary-for QHttp (0x7f62daed41c0) + +Vtable for QNetworkAccessManager +QNetworkAccessManager::_ZTV21QNetworkAccessManager: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QNetworkAccessManager) +16 QNetworkAccessManager::metaObject +24 QNetworkAccessManager::qt_metacast +32 QNetworkAccessManager::qt_metacall +40 QNetworkAccessManager::~QNetworkAccessManager +48 QNetworkAccessManager::~QNetworkAccessManager +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QNetworkAccessManager::createRequest + +Class QNetworkAccessManager + size=16 align=8 + base size=16 base align=8 +QNetworkAccessManager (0x7f62daf043f0) 0 + vptr=((& QNetworkAccessManager::_ZTV21QNetworkAccessManager) + 16u) + QObject (0x7f62daf04460) 0 + primary-for QNetworkAccessManager (0x7f62daf043f0) + +Class QNetworkCookie + size=8 align=8 + base size=8 base align=8 +QNetworkCookie (0x7f62daf1e930) 0 + +Vtable for QNetworkCookieJar +QNetworkCookieJar::_ZTV17QNetworkCookieJar: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QNetworkCookieJar) +16 QNetworkCookieJar::metaObject +24 QNetworkCookieJar::qt_metacast +32 QNetworkCookieJar::qt_metacall +40 QNetworkCookieJar::~QNetworkCookieJar +48 QNetworkCookieJar::~QNetworkCookieJar +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QNetworkCookieJar::cookiesForUrl +120 QNetworkCookieJar::setCookiesFromUrl + +Class QNetworkCookieJar + size=16 align=8 + base size=16 base align=8 +QNetworkCookieJar (0x7f62daf25a80) 0 + vptr=((& QNetworkCookieJar::_ZTV17QNetworkCookieJar) + 16u) + QObject (0x7f62daf25af0) 0 + primary-for QNetworkCookieJar (0x7f62daf25a80) + +Vtable for QNetworkDiskCache +QNetworkDiskCache::_ZTV17QNetworkDiskCache: 23u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QNetworkDiskCache) +16 QNetworkDiskCache::metaObject +24 QNetworkDiskCache::qt_metacast +32 QNetworkDiskCache::qt_metacall +40 QNetworkDiskCache::~QNetworkDiskCache +48 QNetworkDiskCache::~QNetworkDiskCache +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QNetworkDiskCache::metaData +120 QNetworkDiskCache::updateMetaData +128 QNetworkDiskCache::data +136 QNetworkDiskCache::remove +144 QNetworkDiskCache::cacheSize +152 QNetworkDiskCache::prepare +160 QNetworkDiskCache::insert +168 QNetworkDiskCache::clear +176 QNetworkDiskCache::expire + +Class QNetworkDiskCache + size=16 align=8 + base size=16 base align=8 +QNetworkDiskCache (0x7f62daf57930) 0 + vptr=((& QNetworkDiskCache::_ZTV17QNetworkDiskCache) + 16u) + QAbstractNetworkCache (0x7f62daf579a0) 0 + primary-for QNetworkDiskCache (0x7f62daf57930) + QObject (0x7f62daf57a10) 0 + primary-for QAbstractNetworkCache (0x7f62daf579a0) + +Vtable for QNetworkReply +QNetworkReply::_ZTV13QNetworkReply: 33u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QNetworkReply) +16 QNetworkReply::metaObject +24 QNetworkReply::qt_metacast +32 QNetworkReply::qt_metacall +40 QNetworkReply::~QNetworkReply +48 QNetworkReply::~QNetworkReply +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QNetworkReply::isSequential +120 QIODevice::open +128 QNetworkReply::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QIODevice::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 __cxa_pure_virtual +224 QIODevice::readLineData +232 QNetworkReply::writeData +240 __cxa_pure_virtual +248 QNetworkReply::setReadBufferSize +256 QNetworkReply::ignoreSslErrors + +Class QNetworkReply + size=16 align=8 + base size=16 base align=8 +QNetworkReply (0x7f62daf7b2a0) 0 + vptr=((& QNetworkReply::_ZTV13QNetworkReply) + 16u) + QIODevice (0x7f62daf7b310) 0 + primary-for QNetworkReply (0x7f62daf7b2a0) + QObject (0x7f62daf7b380) 0 + primary-for QIODevice (0x7f62daf7b310) + +Class QAuthenticator + size=8 align=8 + base size=8 base align=8 +QAuthenticator (0x7f62dad99ee0) 0 + +Class QIPv6Address + size=16 align=1 + base size=16 base align=1 +QIPv6Address (0x7f62dada27e0) 0 + +Class QHostAddress + size=8 align=8 + base size=8 base align=8 +QHostAddress (0x7f62dada2e00) 0 + +Class QHostInfo + size=8 align=8 + base size=8 base align=8 +QHostInfo (0x7f62dadd2e00) 0 + +Class QNetworkAddressEntry + size=8 align=8 + base size=8 base align=8 +QNetworkAddressEntry (0x7f62dade5770) 0 + +Class QNetworkInterface + size=8 align=8 + base size=8 base align=8 +QNetworkInterface (0x7f62dae07000) 0 + +Class QNetworkProxyQuery + size=8 align=8 + base size=8 base align=8 +QNetworkProxyQuery (0x7f62dae47d20) 0 + +Class QNetworkProxy + size=8 align=8 + base size=8 base align=8 +QNetworkProxy (0x7f62dab8d000) 0 + +Vtable for QNetworkProxyFactory +QNetworkProxyFactory::_ZTV20QNetworkProxyFactory: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QNetworkProxyFactory) +16 QNetworkProxyFactory::~QNetworkProxyFactory +24 QNetworkProxyFactory::~QNetworkProxyFactory +32 __cxa_pure_virtual + +Class QNetworkProxyFactory + size=8 align=8 + base size=8 base align=8 +QNetworkProxyFactory (0x7f62dabfc460) 0 nearly-empty + vptr=((& QNetworkProxyFactory::_ZTV20QNetworkProxyFactory) + 16u) + +Vtable for QLocalServer +QLocalServer::_ZTV12QLocalServer: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QLocalServer) +16 QLocalServer::metaObject +24 QLocalServer::qt_metacast +32 QLocalServer::qt_metacall +40 QLocalServer::~QLocalServer +48 QLocalServer::~QLocalServer +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QLocalServer::hasPendingConnections +120 QLocalServer::nextPendingConnection +128 QLocalServer::incomingConnection + +Class QLocalServer + size=16 align=8 + base size=16 base align=8 +QLocalServer (0x7f62dabfc770) 0 + vptr=((& QLocalServer::_ZTV12QLocalServer) + 16u) + QObject (0x7f62dabfc7e0) 0 + primary-for QLocalServer (0x7f62dabfc770) + +Vtable for QLocalSocket +QLocalSocket::_ZTV12QLocalSocket: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QLocalSocket) +16 QLocalSocket::metaObject +24 QLocalSocket::qt_metacast +32 QLocalSocket::qt_metacall +40 QLocalSocket::~QLocalSocket +48 QLocalSocket::~QLocalSocket +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QLocalSocket::isSequential +120 QIODevice::open +128 QLocalSocket::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QIODevice::atEnd +168 QIODevice::reset +176 QLocalSocket::bytesAvailable +184 QLocalSocket::bytesToWrite +192 QLocalSocket::canReadLine +200 QLocalSocket::waitForReadyRead +208 QLocalSocket::waitForBytesWritten +216 QLocalSocket::readData +224 QIODevice::readLineData +232 QLocalSocket::writeData + +Class QLocalSocket + size=16 align=8 + base size=16 base align=8 +QLocalSocket (0x7f62dac1b150) 0 + vptr=((& QLocalSocket::_ZTV12QLocalSocket) + 16u) + QIODevice (0x7f62dac1b1c0) 0 + primary-for QLocalSocket (0x7f62dac1b150) + QObject (0x7f62dac1b230) 0 + primary-for QIODevice (0x7f62dac1b1c0) + +Vtable for QTcpServer +QTcpServer::_ZTV10QTcpServer: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTcpServer) +16 QTcpServer::metaObject +24 QTcpServer::qt_metacast +32 QTcpServer::qt_metacall +40 QTcpServer::~QTcpServer +48 QTcpServer::~QTcpServer +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTcpServer::hasPendingConnections +120 QTcpServer::nextPendingConnection +128 QTcpServer::incomingConnection + +Class QTcpServer + size=16 align=8 + base size=16 base align=8 +QTcpServer (0x7f62dac41310) 0 + vptr=((& QTcpServer::_ZTV10QTcpServer) + 16u) + QObject (0x7f62dac41380) 0 + primary-for QTcpServer (0x7f62dac41310) + +Vtable for QUdpSocket +QUdpSocket::_ZTV10QUdpSocket: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QUdpSocket) +16 QUdpSocket::metaObject +24 QUdpSocket::qt_metacast +32 QUdpSocket::qt_metacall +40 QUdpSocket::~QUdpSocket +48 QUdpSocket::~QUdpSocket +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractSocket::isSequential +120 QIODevice::open +128 QAbstractSocket::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QAbstractSocket::atEnd +168 QIODevice::reset +176 QAbstractSocket::bytesAvailable +184 QAbstractSocket::bytesToWrite +192 QAbstractSocket::canReadLine +200 QAbstractSocket::waitForReadyRead +208 QAbstractSocket::waitForBytesWritten +216 QAbstractSocket::readData +224 QAbstractSocket::readLineData +232 QAbstractSocket::writeData + +Class QUdpSocket + size=16 align=8 + base size=16 base align=8 +QUdpSocket (0x7f62dac51e00) 0 + vptr=((& QUdpSocket::_ZTV10QUdpSocket) + 16u) + QAbstractSocket (0x7f62dac51e70) 0 + primary-for QUdpSocket (0x7f62dac51e00) + QIODevice (0x7f62dac51ee0) 0 + primary-for QAbstractSocket (0x7f62dac51e70) + QObject (0x7f62dac51f50) 0 + primary-for QIODevice (0x7f62dac51ee0) + +Class QSqlRecord + size=8 align=8 + base size=8 base align=8 +QSqlRecord (0x7f62dab2b1c0) 0 + +Vtable for QSqlDriverCreatorBase +QSqlDriverCreatorBase::_ZTV21QSqlDriverCreatorBase: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QSqlDriverCreatorBase) +16 QSqlDriverCreatorBase::~QSqlDriverCreatorBase +24 QSqlDriverCreatorBase::~QSqlDriverCreatorBase +32 __cxa_pure_virtual + +Class QSqlDriverCreatorBase + size=8 align=8 + base size=8 base align=8 +QSqlDriverCreatorBase (0x7f62dab2be00) 0 nearly-empty + vptr=((& QSqlDriverCreatorBase::_ZTV21QSqlDriverCreatorBase) + 16u) + +Class QSqlDatabase + size=8 align=8 + base size=8 base align=8 +QSqlDatabase (0x7f62dab42930) 0 + +Class QSqlQuery + size=8 align=8 + base size=8 base align=8 +QSqlQuery (0x7f62dab51d20) 0 + +Vtable for QSqlDriver +QSqlDriver::_ZTV10QSqlDriver: 32u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QSqlDriver) +16 QSqlDriver::metaObject +24 QSqlDriver::qt_metacast +32 QSqlDriver::qt_metacall +40 QSqlDriver::~QSqlDriver +48 QSqlDriver::~QSqlDriver +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QSqlDriver::isOpen +120 QSqlDriver::beginTransaction +128 QSqlDriver::commitTransaction +136 QSqlDriver::rollbackTransaction +144 QSqlDriver::tables +152 QSqlDriver::primaryIndex +160 QSqlDriver::record +168 QSqlDriver::formatValue +176 QSqlDriver::escapeIdentifier +184 QSqlDriver::sqlStatement +192 QSqlDriver::handle +200 __cxa_pure_virtual +208 __cxa_pure_virtual +216 __cxa_pure_virtual +224 __cxa_pure_virtual +232 QSqlDriver::setOpen +240 QSqlDriver::setOpenError +248 QSqlDriver::setLastError + +Class QSqlDriver + size=16 align=8 + base size=16 base align=8 +QSqlDriver (0x7f62dab5e7e0) 0 + vptr=((& QSqlDriver::_ZTV10QSqlDriver) + 16u) + QObject (0x7f62dab5e850) 0 + primary-for QSqlDriver (0x7f62dab5e7e0) + +Vtable for QSqlDriverFactoryInterface +QSqlDriverFactoryInterface::_ZTV26QSqlDriverFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QSqlDriverFactoryInterface) +16 QSqlDriverFactoryInterface::~QSqlDriverFactoryInterface +24 QSqlDriverFactoryInterface::~QSqlDriverFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QSqlDriverFactoryInterface + size=8 align=8 + base size=8 base align=8 +QSqlDriverFactoryInterface (0x7f62da9a1070) 0 nearly-empty + vptr=((& QSqlDriverFactoryInterface::_ZTV26QSqlDriverFactoryInterface) + 16u) + QFactoryInterface (0x7f62da9a10e0) 0 nearly-empty + primary-for QSqlDriverFactoryInterface (0x7f62da9a1070) + +Vtable for QSqlDriverPlugin +QSqlDriverPlugin::_ZTV16QSqlDriverPlugin: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QSqlDriverPlugin) +16 QSqlDriverPlugin::metaObject +24 QSqlDriverPlugin::qt_metacast +32 QSqlDriverPlugin::qt_metacall +40 QSqlDriverPlugin::~QSqlDriverPlugin +48 QSqlDriverPlugin::~QSqlDriverPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI16QSqlDriverPlugin) +144 QSqlDriverPlugin::_ZThn16_N16QSqlDriverPluginD1Ev +152 QSqlDriverPlugin::_ZThn16_N16QSqlDriverPluginD0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QSqlDriverPlugin + size=24 align=8 + base size=24 base align=8 +QSqlDriverPlugin (0x7f62da9a2980) 0 + vptr=((& QSqlDriverPlugin::_ZTV16QSqlDriverPlugin) + 16u) + QObject (0x7f62da9a1af0) 0 + primary-for QSqlDriverPlugin (0x7f62da9a2980) + QSqlDriverFactoryInterface (0x7f62da9a1b60) 16 nearly-empty + vptr=((& QSqlDriverPlugin::_ZTV16QSqlDriverPlugin) + 144u) + QFactoryInterface (0x7f62da9a1bd0) 16 nearly-empty + primary-for QSqlDriverFactoryInterface (0x7f62da9a1b60) + +Class QSqlError + size=24 align=8 + base size=24 base align=8 +QSqlError (0x7f62da9b5a10) 0 + +Class QSqlField + size=24 align=8 + base size=24 base align=8 +QSqlField (0x7f62da9bf930) 0 + +Class QSqlIndex + size=32 align=8 + base size=32 base align=8 +QSqlIndex (0x7f62da9d9230) 0 + QSqlRecord (0x7f62da9d92a0) 0 + +Vtable for QSqlResult +QSqlResult::_ZTV10QSqlResult: 29u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QSqlResult) +16 QSqlResult::~QSqlResult +24 QSqlResult::~QSqlResult +32 QSqlResult::handle +40 QSqlResult::setAt +48 QSqlResult::setActive +56 QSqlResult::setLastError +64 QSqlResult::setQuery +72 QSqlResult::setSelect +80 QSqlResult::setForwardOnly +88 QSqlResult::exec +96 QSqlResult::prepare +104 QSqlResult::savePrepare +112 QSqlResult::bindValue +120 QSqlResult::bindValue +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 QSqlResult::fetchNext +168 QSqlResult::fetchPrevious +176 __cxa_pure_virtual +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 __cxa_pure_virtual +208 QSqlResult::record +216 QSqlResult::lastInsertId +224 QSqlResult::virtual_hook + +Class QSqlResult + size=16 align=8 + base size=16 base align=8 +QSqlResult (0x7f62daa0b150) 0 + vptr=((& QSqlResult::_ZTV10QSqlResult) + 16u) + +Vtable for QSqlQueryModel +QSqlQueryModel::_ZTV14QSqlQueryModel: 44u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QSqlQueryModel) +16 QSqlQueryModel::metaObject +24 QSqlQueryModel::qt_metacast +32 QSqlQueryModel::qt_metacall +40 QSqlQueryModel::~QSqlQueryModel +48 QSqlQueryModel::~QSqlQueryModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractTableModel::index +120 QAbstractTableModel::parent +128 QSqlQueryModel::rowCount +136 QSqlQueryModel::columnCount +144 QAbstractTableModel::hasChildren +152 QSqlQueryModel::data +160 QAbstractItemModel::setData +168 QSqlQueryModel::headerData +176 QSqlQueryModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractTableModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QSqlQueryModel::insertColumns +248 QAbstractItemModel::removeRows +256 QSqlQueryModel::removeColumns +264 QSqlQueryModel::fetchMore +272 QSqlQueryModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert +336 QSqlQueryModel::clear +344 QSqlQueryModel::queryChange + +Class QSqlQueryModel + size=16 align=8 + base size=16 base align=8 +QSqlQueryModel (0x7f62daa0ba10) 0 + vptr=((& QSqlQueryModel::_ZTV14QSqlQueryModel) + 16u) + QAbstractTableModel (0x7f62daa0ba80) 0 + primary-for QSqlQueryModel (0x7f62daa0ba10) + QAbstractItemModel (0x7f62daa0baf0) 0 + primary-for QAbstractTableModel (0x7f62daa0ba80) + QObject (0x7f62daa0bb60) 0 + primary-for QAbstractItemModel (0x7f62daa0baf0) + +Vtable for QSqlTableModel +QSqlTableModel::_ZTV14QSqlTableModel: 55u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QSqlTableModel) +16 QSqlTableModel::metaObject +24 QSqlTableModel::qt_metacast +32 QSqlTableModel::qt_metacall +40 QSqlTableModel::~QSqlTableModel +48 QSqlTableModel::~QSqlTableModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractTableModel::index +120 QAbstractTableModel::parent +128 QSqlTableModel::rowCount +136 QSqlQueryModel::columnCount +144 QAbstractTableModel::hasChildren +152 QSqlTableModel::data +160 QSqlTableModel::setData +168 QSqlTableModel::headerData +176 QSqlQueryModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractTableModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QSqlTableModel::insertRows +240 QSqlQueryModel::insertColumns +248 QSqlTableModel::removeRows +256 QSqlTableModel::removeColumns +264 QSqlQueryModel::fetchMore +272 QSqlQueryModel::canFetchMore +280 QSqlTableModel::flags +288 QSqlTableModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QSqlTableModel::submit +328 QSqlTableModel::revert +336 QSqlTableModel::clear +344 QSqlQueryModel::queryChange +352 QSqlTableModel::select +360 QSqlTableModel::setTable +368 QSqlTableModel::setEditStrategy +376 QSqlTableModel::setSort +384 QSqlTableModel::setFilter +392 QSqlTableModel::revertRow +400 QSqlTableModel::updateRowInTable +408 QSqlTableModel::insertRowIntoTable +416 QSqlTableModel::deleteRowFromTable +424 QSqlTableModel::orderByClause +432 QSqlTableModel::selectStatement + +Class QSqlTableModel + size=16 align=8 + base size=16 base align=8 +QSqlTableModel (0x7f62daa46310) 0 + vptr=((& QSqlTableModel::_ZTV14QSqlTableModel) + 16u) + QSqlQueryModel (0x7f62daa46380) 0 + primary-for QSqlTableModel (0x7f62daa46310) + QAbstractTableModel (0x7f62daa463f0) 0 + primary-for QSqlQueryModel (0x7f62daa46380) + QAbstractItemModel (0x7f62daa46460) 0 + primary-for QAbstractTableModel (0x7f62daa463f0) + QObject (0x7f62daa464d0) 0 + primary-for QAbstractItemModel (0x7f62daa46460) + +Class QSqlRelation + size=24 align=8 + base size=24 base align=8 +QSqlRelation (0x7f62daa67e00) 0 + +Vtable for QSqlRelationalTableModel +QSqlRelationalTableModel::_ZTV24QSqlRelationalTableModel: 57u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QSqlRelationalTableModel) +16 QSqlRelationalTableModel::metaObject +24 QSqlRelationalTableModel::qt_metacast +32 QSqlRelationalTableModel::qt_metacall +40 QSqlRelationalTableModel::~QSqlRelationalTableModel +48 QSqlRelationalTableModel::~QSqlRelationalTableModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractTableModel::index +120 QAbstractTableModel::parent +128 QSqlTableModel::rowCount +136 QSqlQueryModel::columnCount +144 QAbstractTableModel::hasChildren +152 QSqlRelationalTableModel::data +160 QSqlRelationalTableModel::setData +168 QSqlTableModel::headerData +176 QSqlQueryModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractTableModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QSqlTableModel::insertRows +240 QSqlQueryModel::insertColumns +248 QSqlTableModel::removeRows +256 QSqlRelationalTableModel::removeColumns +264 QSqlQueryModel::fetchMore +272 QSqlQueryModel::canFetchMore +280 QSqlTableModel::flags +288 QSqlTableModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QSqlTableModel::submit +328 QSqlTableModel::revert +336 QSqlRelationalTableModel::clear +344 QSqlQueryModel::queryChange +352 QSqlRelationalTableModel::select +360 QSqlRelationalTableModel::setTable +368 QSqlTableModel::setEditStrategy +376 QSqlTableModel::setSort +384 QSqlTableModel::setFilter +392 QSqlRelationalTableModel::revertRow +400 QSqlRelationalTableModel::updateRowInTable +408 QSqlRelationalTableModel::insertRowIntoTable +416 QSqlTableModel::deleteRowFromTable +424 QSqlRelationalTableModel::orderByClause +432 QSqlRelationalTableModel::selectStatement +440 QSqlRelationalTableModel::setRelation +448 QSqlRelationalTableModel::relationModel + +Class QSqlRelationalTableModel + size=16 align=8 + base size=16 base align=8 +QSqlRelationalTableModel (0x7f62da888770) 0 + vptr=((& QSqlRelationalTableModel::_ZTV24QSqlRelationalTableModel) + 16u) + QSqlTableModel (0x7f62da8887e0) 0 + primary-for QSqlRelationalTableModel (0x7f62da888770) + QSqlQueryModel (0x7f62da888850) 0 + primary-for QSqlTableModel (0x7f62da8887e0) + QAbstractTableModel (0x7f62da8888c0) 0 + primary-for QSqlQueryModel (0x7f62da888850) + QAbstractItemModel (0x7f62da888930) 0 + primary-for QAbstractTableModel (0x7f62da8888c0) + QObject (0x7f62da8889a0) 0 + primary-for QAbstractItemModel (0x7f62da888930) + +Vtable for Q3SqlCursor +Q3SqlCursor::_ZTV11Q3SqlCursor: 40u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11Q3SqlCursor) +16 Q3SqlCursor::~Q3SqlCursor +24 Q3SqlCursor::~Q3SqlCursor +32 Q3SqlCursor::setValue +40 Q3SqlCursor::primaryIndex +48 Q3SqlCursor::index +56 Q3SqlCursor::setPrimaryIndex +64 Q3SqlCursor::append +72 Q3SqlCursor::insert +80 Q3SqlCursor::remove +88 Q3SqlCursor::clear +96 Q3SqlCursor::setGenerated +104 Q3SqlCursor::setGenerated +112 Q3SqlCursor::editBuffer +120 Q3SqlCursor::primeInsert +128 Q3SqlCursor::primeUpdate +136 Q3SqlCursor::primeDelete +144 Q3SqlCursor::insert +152 Q3SqlCursor::update +160 Q3SqlCursor::del +168 Q3SqlCursor::setMode +176 Q3SqlCursor::setCalculated +184 Q3SqlCursor::setTrimmed +192 Q3SqlCursor::select +200 Q3SqlCursor::setSort +208 Q3SqlCursor::setFilter +216 Q3SqlCursor::setName +224 Q3SqlCursor::seek +232 Q3SqlCursor::next +240 Q3SqlCursor::prev +248 Q3SqlCursor::first +256 Q3SqlCursor::last +264 Q3SqlCursor::exec +272 Q3SqlCursor::calculateField +280 Q3SqlCursor::update +288 Q3SqlCursor::del +296 Q3SqlCursor::toString +304 Q3SqlCursor::toString +312 Q3SqlCursor::toString + +Class Q3SqlCursor + size=32 align=8 + base size=32 base align=8 +Q3SqlCursor (0x7f62da88d980) 0 + vptr=((& Q3SqlCursor::_ZTV11Q3SqlCursor) + 16u) + QSqlRecord (0x7f62da8aa000) 8 + QSqlQuery (0x7f62da8aa070) 16 + +Vtable for Q3DataBrowser +Q3DataBrowser::_ZTV13Q3DataBrowser: 91u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13Q3DataBrowser) +16 Q3DataBrowser::metaObject +24 Q3DataBrowser::qt_metacast +32 Q3DataBrowser::qt_metacall +40 Q3DataBrowser::~Q3DataBrowser +48 Q3DataBrowser::~Q3DataBrowser +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3DataBrowser::setSqlCursor +456 Q3DataBrowser::setForm +464 Q3DataBrowser::setConfirmEdits +472 Q3DataBrowser::setConfirmInsert +480 Q3DataBrowser::setConfirmUpdate +488 Q3DataBrowser::setConfirmDelete +496 Q3DataBrowser::setConfirmCancels +504 Q3DataBrowser::setReadOnly +512 Q3DataBrowser::setAutoEdit +520 Q3DataBrowser::seek +528 Q3DataBrowser::refresh +536 Q3DataBrowser::insert +544 Q3DataBrowser::update +552 Q3DataBrowser::del +560 Q3DataBrowser::first +568 Q3DataBrowser::last +576 Q3DataBrowser::next +584 Q3DataBrowser::prev +592 Q3DataBrowser::readFields +600 Q3DataBrowser::writeFields +608 Q3DataBrowser::clearValues +616 Q3DataBrowser::insertCurrent +624 Q3DataBrowser::updateCurrent +632 Q3DataBrowser::deleteCurrent +640 Q3DataBrowser::currentEdited +648 Q3DataBrowser::confirmEdit +656 Q3DataBrowser::confirmCancel +664 Q3DataBrowser::handleError +672 (int (*)(...))-0x00000000000000010 +680 (int (*)(...))(& _ZTI13Q3DataBrowser) +688 Q3DataBrowser::_ZThn16_N13Q3DataBrowserD1Ev +696 Q3DataBrowser::_ZThn16_N13Q3DataBrowserD0Ev +704 QWidget::_ZThn16_NK7QWidget7devTypeEv +712 QWidget::_ZThn16_NK7QWidget11paintEngineEv +720 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3DataBrowser + size=48 align=8 + base size=48 base align=8 +Q3DataBrowser (0x7f62da8c6b60) 0 + vptr=((& Q3DataBrowser::_ZTV13Q3DataBrowser) + 16u) + QWidget (0x7f62da8cc200) 0 + primary-for Q3DataBrowser (0x7f62da8c6b60) + QObject (0x7f62da8c6bd0) 0 + primary-for QWidget (0x7f62da8cc200) + QPaintDevice (0x7f62da8c6c40) 16 + vptr=((& Q3DataBrowser::_ZTV13Q3DataBrowser) + 688u) + +Vtable for Q3Frame +Q3Frame::_ZTV7Q3Frame: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7Q3Frame) +16 Q3Frame::metaObject +24 Q3Frame::qt_metacast +32 Q3Frame::qt_metacall +40 Q3Frame::~Q3Frame +48 Q3Frame::~Q3Frame +56 QFrame::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QFrame::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 Q3Frame::paintEvent +256 QWidget::moveEvent +264 Q3Frame::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3Frame::frameChanged +456 Q3Frame::drawFrame +464 Q3Frame::drawContents +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI7Q3Frame) +488 Q3Frame::_ZThn16_N7Q3FrameD1Ev +496 Q3Frame::_ZThn16_N7Q3FrameD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3Frame + size=48 align=8 + base size=44 base align=8 +Q3Frame (0x7f62da8f72a0) 0 + vptr=((& Q3Frame::_ZTV7Q3Frame) + 16u) + QFrame (0x7f62da8f7310) 0 + primary-for Q3Frame (0x7f62da8f72a0) + QWidget (0x7f62da8ccc00) 0 + primary-for QFrame (0x7f62da8f7310) + QObject (0x7f62da8f7380) 0 + primary-for QWidget (0x7f62da8ccc00) + QPaintDevice (0x7f62da8f73f0) 16 + vptr=((& Q3Frame::_ZTV7Q3Frame) + 488u) + +Vtable for Q3ScrollView +Q3ScrollView::_ZTV12Q3ScrollView: 102u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12Q3ScrollView) +16 Q3ScrollView::metaObject +24 Q3ScrollView::qt_metacast +32 Q3ScrollView::qt_metacall +40 Q3ScrollView::~Q3ScrollView +48 Q3ScrollView::~Q3ScrollView +56 QFrame::event +64 Q3ScrollView::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 Q3ScrollView::setVisible +128 Q3ScrollView::sizeHint +136 Q3ScrollView::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 Q3ScrollView::mousePressEvent +168 Q3ScrollView::mouseReleaseEvent +176 Q3ScrollView::mouseDoubleClickEvent +184 Q3ScrollView::mouseMoveEvent +192 Q3ScrollView::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 Q3Frame::paintEvent +256 QWidget::moveEvent +264 Q3ScrollView::resizeEvent +272 QWidget::closeEvent +280 Q3ScrollView::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 Q3ScrollView::focusNextPrevChild +400 Q3ScrollView::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 Q3ScrollView::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3ScrollView::frameChanged +456 Q3Frame::drawFrame +464 Q3ScrollView::drawContents +472 Q3ScrollView::setResizePolicy +480 Q3ScrollView::addChild +488 Q3ScrollView::moveChild +496 Q3ScrollView::setVScrollBarMode +504 Q3ScrollView::setHScrollBarMode +512 Q3ScrollView::setCornerWidget +520 Q3ScrollView::setDragAutoScroll +528 Q3ScrollView::resizeContents +536 Q3ScrollView::setContentsPos +544 Q3ScrollView::drawContents +552 Q3ScrollView::drawContentsOffset +560 Q3ScrollView::contentsMousePressEvent +568 Q3ScrollView::contentsMouseReleaseEvent +576 Q3ScrollView::contentsMouseDoubleClickEvent +584 Q3ScrollView::contentsMouseMoveEvent +592 Q3ScrollView::contentsDragEnterEvent +600 Q3ScrollView::contentsDragMoveEvent +608 Q3ScrollView::contentsDragLeaveEvent +616 Q3ScrollView::contentsDropEvent +624 Q3ScrollView::contentsWheelEvent +632 Q3ScrollView::contentsContextMenuEvent +640 Q3ScrollView::viewportPaintEvent +648 Q3ScrollView::viewportResizeEvent +656 Q3ScrollView::viewportMousePressEvent +664 Q3ScrollView::viewportMouseReleaseEvent +672 Q3ScrollView::viewportMouseDoubleClickEvent +680 Q3ScrollView::viewportMouseMoveEvent +688 Q3ScrollView::viewportDragEnterEvent +696 Q3ScrollView::viewportDragMoveEvent +704 Q3ScrollView::viewportDragLeaveEvent +712 Q3ScrollView::viewportDropEvent +720 Q3ScrollView::viewportWheelEvent +728 Q3ScrollView::viewportContextMenuEvent +736 Q3ScrollView::setMargins +744 Q3ScrollView::setHBarGeometry +752 Q3ScrollView::setVBarGeometry +760 (int (*)(...))-0x00000000000000010 +768 (int (*)(...))(& _ZTI12Q3ScrollView) +776 Q3ScrollView::_ZThn16_N12Q3ScrollViewD1Ev +784 Q3ScrollView::_ZThn16_N12Q3ScrollViewD0Ev +792 QWidget::_ZThn16_NK7QWidget7devTypeEv +800 QWidget::_ZThn16_NK7QWidget11paintEngineEv +808 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3ScrollView + size=56 align=8 + base size=56 base align=8 +Q3ScrollView (0x7f62da90fa80) 0 + vptr=((& Q3ScrollView::_ZTV12Q3ScrollView) + 16u) + Q3Frame (0x7f62da90faf0) 0 + primary-for Q3ScrollView (0x7f62da90fa80) + QFrame (0x7f62da90fb60) 0 + primary-for Q3Frame (0x7f62da90faf0) + QWidget (0x7f62da90d500) 0 + primary-for QFrame (0x7f62da90fb60) + QObject (0x7f62da90fbd0) 0 + primary-for QWidget (0x7f62da90d500) + QPaintDevice (0x7f62da90fc40) 16 + vptr=((& Q3ScrollView::_ZTV12Q3ScrollView) + 776u) + +Vtable for Q3PtrCollection +Q3PtrCollection::_ZTV15Q3PtrCollection: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15Q3PtrCollection) +16 __cxa_pure_virtual +24 __cxa_pure_virtual +32 Q3PtrCollection::~Q3PtrCollection +40 Q3PtrCollection::~Q3PtrCollection +48 Q3PtrCollection::newItem +56 __cxa_pure_virtual + +Class Q3PtrCollection + size=16 align=8 + base size=9 base align=8 +Q3PtrCollection (0x7f62da957150) 0 + vptr=((& Q3PtrCollection::_ZTV15Q3PtrCollection) + 16u) + +Vtable for Q3GVector +Q3GVector::_ZTV9Q3GVector: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9Q3GVector) +16 Q3GVector::count +24 Q3GVector::clear +32 Q3GVector::~Q3GVector +40 Q3GVector::~Q3GVector +48 Q3PtrCollection::newItem +56 __cxa_pure_virtual +64 Q3GVector::compareItems +72 Q3GVector::read +80 Q3GVector::write + +Class Q3GVector + size=32 align=8 + base size=32 base align=8 +Q3GVector (0x7f62da9672a0) 0 + vptr=((& Q3GVector::_ZTV9Q3GVector) + 16u) + Q3PtrCollection (0x7f62da967310) 0 + primary-for Q3GVector (0x7f62da9672a0) + +Vtable for Q3Header +Q3Header::_ZTV8Q3Header: 76u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8Q3Header) +16 Q3Header::metaObject +24 Q3Header::qt_metacast +32 Q3Header::qt_metacall +40 Q3Header::~Q3Header +48 Q3Header::~Q3Header +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 Q3Header::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 Q3Header::mousePressEvent +168 Q3Header::mouseReleaseEvent +176 Q3Header::mouseDoubleClickEvent +184 Q3Header::mouseMoveEvent +192 QWidget::wheelEvent +200 Q3Header::keyPressEvent +208 Q3Header::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 Q3Header::paintEvent +256 QWidget::moveEvent +264 Q3Header::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 Q3Header::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 Q3Header::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3Header::setLabel +456 Q3Header::setLabel +464 Q3Header::setOrientation +472 Q3Header::setTracking +480 Q3Header::setClickEnabled +488 Q3Header::setResizeEnabled +496 Q3Header::setMovingEnabled +504 Q3Header::setStretchEnabled +512 Q3Header::setCellSize +520 Q3Header::moveCell +528 Q3Header::setOffset +536 Q3Header::paintSection +544 Q3Header::paintSectionLabel +552 (int (*)(...))-0x00000000000000010 +560 (int (*)(...))(& _ZTI8Q3Header) +568 Q3Header::_ZThn16_N8Q3HeaderD1Ev +576 Q3Header::_ZThn16_N8Q3HeaderD0Ev +584 QWidget::_ZThn16_NK7QWidget7devTypeEv +592 QWidget::_ZThn16_NK7QWidget11paintEngineEv +600 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3Header + size=88 align=8 + base size=88 base align=8 +Q3Header (0x7f62da7a32a0) 0 + vptr=((& Q3Header::_ZTV8Q3Header) + 16u) + QWidget (0x7f62da7a5200) 0 + primary-for Q3Header (0x7f62da7a32a0) + QObject (0x7f62da7a3310) 0 + primary-for QWidget (0x7f62da7a5200) + QPaintDevice (0x7f62da7a3380) 16 + vptr=((& Q3Header::_ZTV8Q3Header) + 568u) + +Class Q3Shared + size=4 align=4 + base size=4 base align=4 +Q3Shared (0x7f62da7decb0) 0 + +Class Q3GArray::array_data + size=24 align=8 + base size=20 base align=8 +Q3GArray::array_data (0x7f62da7e7a80) 0 + Q3Shared (0x7f62da7e7af0) 0 + +Vtable for Q3GArray +Q3GArray::_ZTV8Q3GArray: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8Q3GArray) +16 Q3GArray::~Q3GArray +24 Q3GArray::~Q3GArray +32 Q3GArray::detach +40 Q3GArray::newData +48 Q3GArray::deleteData + +Class Q3GArray + size=16 align=8 + base size=16 base align=8 +Q3GArray (0x7f62da7e7a10) 0 + vptr=((& Q3GArray::_ZTV8Q3GArray) + 16u) + +Class Q3LNode + size=24 align=8 + base size=24 base align=8 +Q3LNode (0x7f62da820f50) 0 + +Vtable for Q3GList +Q3GList::_ZTV7Q3GList: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7Q3GList) +16 Q3GList::count +24 Q3GList::clear +32 Q3GList::~Q3GList +40 Q3GList::~Q3GList +48 Q3PtrCollection::newItem +56 __cxa_pure_virtual +64 Q3GList::compareItems +72 Q3GList::read +80 Q3GList::write + +Class Q3GList + size=56 align=8 + base size=56 base align=8 +Q3GList (0x7f62da834e70) 0 + vptr=((& Q3GList::_ZTV7Q3GList) + 16u) + Q3PtrCollection (0x7f62da834ee0) 0 + primary-for Q3GList (0x7f62da834e70) + +Class Q3GListIterator + size=16 align=8 + base size=16 base align=8 +Q3GListIterator (0x7f62da85bb60) 0 + +Class Q3GListStdIterator + size=8 align=8 + base size=8 base align=8 +Q3GListStdIterator (0x7f62da868af0) 0 + +Class Q3BaseBucket + size=16 align=8 + base size=16 base align=8 +Q3BaseBucket (0x7f62da6a2e00) 0 + +Class Q3StringBucket + size=24 align=8 + base size=24 base align=8 +Q3StringBucket (0x7f62da6ce7e0) 0 + Q3BaseBucket (0x7f62da6ce850) 0 + +Class Q3AsciiBucket + size=24 align=8 + base size=24 base align=8 +Q3AsciiBucket (0x7f62da6d83f0) 0 + Q3BaseBucket (0x7f62da6d8460) 0 + +Class Q3IntBucket + size=24 align=8 + base size=24 base align=8 +Q3IntBucket (0x7f62da6d8e70) 0 + Q3BaseBucket (0x7f62da6d8ee0) 0 + +Class Q3PtrBucket + size=24 align=8 + base size=24 base align=8 +Q3PtrBucket (0x7f62da6e0930) 0 + Q3BaseBucket (0x7f62da6e09a0) 0 + +Vtable for Q3GDict +Q3GDict::_ZTV7Q3GDict: 10u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7Q3GDict) +16 Q3GDict::count +24 Q3GDict::clear +32 Q3GDict::~Q3GDict +40 Q3GDict::~Q3GDict +48 Q3PtrCollection::newItem +56 __cxa_pure_virtual +64 Q3GDict::read +72 Q3GDict::write + +Class Q3GDict + size=48 align=8 + base size=48 base align=8 +Q3GDict (0x7f62da6e93f0) 0 + vptr=((& Q3GDict::_ZTV7Q3GDict) + 16u) + Q3PtrCollection (0x7f62da6e9460) 0 + primary-for Q3GDict (0x7f62da6e93f0) + +Class Q3GDictIterator + size=24 align=8 + base size=20 base align=8 +Q3GDictIterator (0x7f62da6fe540) 0 + +Class Q3TableSelection + size=28 align=4 + base size=28 base align=4 +Q3TableSelection (0x7f62da73f0e0) 0 + +Vtable for Q3TableItem +Q3TableItem::_ZTV11Q3TableItem: 21u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11Q3TableItem) +16 Q3TableItem::~Q3TableItem +24 Q3TableItem::~Q3TableItem +32 Q3TableItem::pixmap +40 Q3TableItem::text +48 Q3TableItem::setPixmap +56 Q3TableItem::setText +64 Q3TableItem::alignment +72 Q3TableItem::setWordWrap +80 Q3TableItem::createEditor +88 Q3TableItem::setContentFromEditor +96 Q3TableItem::setReplaceable +104 Q3TableItem::key +112 Q3TableItem::sizeHint +120 Q3TableItem::setSpan +128 Q3TableItem::setRow +136 Q3TableItem::setCol +144 Q3TableItem::paint +152 Q3TableItem::setEnabled +160 Q3TableItem::rtti + +Class Q3TableItem + size=72 align=8 + base size=72 base align=8 +Q3TableItem (0x7f62da74c850) 0 + vptr=((& Q3TableItem::_ZTV11Q3TableItem) + 16u) + +Vtable for Q3ComboTableItem +Q3ComboTableItem::_ZTV16Q3ComboTableItem: 25u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16Q3ComboTableItem) +16 Q3ComboTableItem::~Q3ComboTableItem +24 Q3ComboTableItem::~Q3ComboTableItem +32 Q3TableItem::pixmap +40 Q3TableItem::text +48 Q3TableItem::setPixmap +56 Q3TableItem::setText +64 Q3TableItem::alignment +72 Q3TableItem::setWordWrap +80 Q3ComboTableItem::createEditor +88 Q3ComboTableItem::setContentFromEditor +96 Q3TableItem::setReplaceable +104 Q3TableItem::key +112 Q3ComboTableItem::sizeHint +120 Q3TableItem::setSpan +128 Q3TableItem::setRow +136 Q3TableItem::setCol +144 Q3ComboTableItem::paint +152 Q3TableItem::setEnabled +160 Q3ComboTableItem::rtti +168 Q3ComboTableItem::setCurrentItem +176 Q3ComboTableItem::setCurrentItem +184 Q3ComboTableItem::setEditable +192 Q3ComboTableItem::setStringList + +Class Q3ComboTableItem + size=96 align=8 + base size=93 base align=8 +Q3ComboTableItem (0x7f62da7630e0) 0 + vptr=((& Q3ComboTableItem::_ZTV16Q3ComboTableItem) + 16u) + Q3TableItem (0x7f62da763150) 0 + primary-for Q3ComboTableItem (0x7f62da7630e0) + +Vtable for Q3CheckTableItem +Q3CheckTableItem::_ZTV16Q3CheckTableItem: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16Q3CheckTableItem) +16 Q3CheckTableItem::~Q3CheckTableItem +24 Q3CheckTableItem::~Q3CheckTableItem +32 Q3TableItem::pixmap +40 Q3TableItem::text +48 Q3TableItem::setPixmap +56 Q3CheckTableItem::setText +64 Q3TableItem::alignment +72 Q3TableItem::setWordWrap +80 Q3CheckTableItem::createEditor +88 Q3CheckTableItem::setContentFromEditor +96 Q3TableItem::setReplaceable +104 Q3TableItem::key +112 Q3CheckTableItem::sizeHint +120 Q3TableItem::setSpan +128 Q3TableItem::setRow +136 Q3TableItem::setCol +144 Q3CheckTableItem::paint +152 Q3TableItem::setEnabled +160 Q3CheckTableItem::rtti +168 Q3CheckTableItem::setChecked + +Class Q3CheckTableItem + size=88 align=8 + base size=81 base align=8 +Q3CheckTableItem (0x7f62da7633f0) 0 + vptr=((& Q3CheckTableItem::_ZTV16Q3CheckTableItem) + 16u) + Q3TableItem (0x7f62da763460) 0 + primary-for Q3CheckTableItem (0x7f62da7633f0) + +Class Q3Table::TableWidget + size=16 align=8 + base size=16 base align=8 +Q3Table::TableWidget (0x7f62da590540) 0 + +Vtable for Q3Table +Q3Table::_ZTV7Q3Table: 183u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7Q3Table) +16 Q3Table::metaObject +24 Q3Table::qt_metacast +32 Q3Table::qt_metacall +40 Q3Table::~Q3Table +48 Q3Table::~Q3Table +56 QFrame::event +64 Q3Table::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 Q3ScrollView::setVisible +128 Q3Table::sizeHint +136 Q3ScrollView::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 Q3ScrollView::mousePressEvent +168 Q3ScrollView::mouseReleaseEvent +176 Q3ScrollView::mouseDoubleClickEvent +184 Q3ScrollView::mouseMoveEvent +192 Q3ScrollView::wheelEvent +200 Q3Table::keyPressEvent +208 QWidget::keyReleaseEvent +216 Q3Table::focusInEvent +224 Q3Table::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 Q3Table::paintEvent +256 QWidget::moveEvent +264 Q3ScrollView::resizeEvent +272 QWidget::closeEvent +280 Q3ScrollView::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 Q3Table::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 Q3Table::inputMethodQuery +392 Q3ScrollView::focusNextPrevChild +400 Q3ScrollView::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 Q3ScrollView::fontChange +432 Q3Table::windowActivationChange +440 QWidget::languageChange +448 Q3ScrollView::frameChanged +456 Q3Frame::drawFrame +464 Q3Table::drawContents +472 Q3ScrollView::setResizePolicy +480 Q3ScrollView::addChild +488 Q3ScrollView::moveChild +496 Q3ScrollView::setVScrollBarMode +504 Q3ScrollView::setHScrollBarMode +512 Q3ScrollView::setCornerWidget +520 Q3ScrollView::setDragAutoScroll +528 Q3ScrollView::resizeContents +536 Q3ScrollView::setContentsPos +544 Q3Table::drawContents +552 Q3ScrollView::drawContentsOffset +560 Q3Table::contentsMousePressEvent +568 Q3Table::contentsMouseReleaseEvent +576 Q3Table::contentsMouseDoubleClickEvent +584 Q3Table::contentsMouseMoveEvent +592 Q3Table::contentsDragEnterEvent +600 Q3Table::contentsDragMoveEvent +608 Q3Table::contentsDragLeaveEvent +616 Q3Table::contentsDropEvent +624 Q3ScrollView::contentsWheelEvent +632 Q3Table::contentsContextMenuEvent +640 Q3ScrollView::viewportPaintEvent +648 Q3Table::viewportResizeEvent +656 Q3ScrollView::viewportMousePressEvent +664 Q3ScrollView::viewportMouseReleaseEvent +672 Q3ScrollView::viewportMouseDoubleClickEvent +680 Q3ScrollView::viewportMouseMoveEvent +688 Q3ScrollView::viewportDragEnterEvent +696 Q3ScrollView::viewportDragMoveEvent +704 Q3ScrollView::viewportDragLeaveEvent +712 Q3ScrollView::viewportDropEvent +720 Q3ScrollView::viewportWheelEvent +728 Q3ScrollView::viewportContextMenuEvent +736 Q3ScrollView::setMargins +744 Q3ScrollView::setHBarGeometry +752 Q3ScrollView::setVBarGeometry +760 Q3Table::setSelectionMode +768 Q3Table::setItem +776 Q3Table::setText +784 Q3Table::setPixmap +792 Q3Table::item +800 Q3Table::text +808 Q3Table::pixmap +816 Q3Table::clearCell +824 Q3Table::cellGeometry +832 Q3Table::columnWidth +840 Q3Table::rowHeight +848 Q3Table::columnPos +856 Q3Table::rowPos +864 Q3Table::columnAt +872 Q3Table::rowAt +880 Q3Table::numRows +888 Q3Table::numCols +896 Q3Table::addSelection +904 Q3Table::removeSelection +912 Q3Table::removeSelection +920 Q3Table::currentSelection +928 Q3Table::selectRow +936 Q3Table::selectColumn +944 Q3Table::sortColumn +952 Q3Table::takeItem +960 Q3Table::setCellWidget +968 Q3Table::cellWidget +976 Q3Table::clearCellWidget +984 Q3Table::cellRect +992 Q3Table::paintCell +1000 Q3Table::paintCell +1008 Q3Table::paintFocus +1016 Q3Table::setFocusStyle +1024 Q3Table::setNumRows +1032 Q3Table::setNumCols +1040 Q3Table::setShowGrid +1048 Q3Table::hideRow +1056 Q3Table::hideColumn +1064 Q3Table::showRow +1072 Q3Table::showColumn +1080 Q3Table::setColumnWidth +1088 Q3Table::setRowHeight +1096 Q3Table::adjustColumn +1104 Q3Table::adjustRow +1112 Q3Table::setColumnStretchable +1120 Q3Table::setRowStretchable +1128 Q3Table::setSorting +1136 Q3Table::swapRows +1144 Q3Table::swapColumns +1152 Q3Table::swapCells +1160 Q3Table::setLeftMargin +1168 Q3Table::setTopMargin +1176 Q3Table::setCurrentCell +1184 Q3Table::setColumnMovingEnabled +1192 Q3Table::setRowMovingEnabled +1200 Q3Table::setReadOnly +1208 Q3Table::setRowReadOnly +1216 Q3Table::setColumnReadOnly +1224 Q3Table::setDragEnabled +1232 Q3Table::insertRows +1240 Q3Table::insertColumns +1248 Q3Table::removeRow +1256 Q3Table::removeRows +1264 Q3Table::removeColumn +1272 Q3Table::removeColumns +1280 Q3Table::editCell +1288 Q3Table::dragObject +1296 Q3Table::startDrag +1304 Q3Table::paintEmptyArea +1312 Q3Table::activateNextCell +1320 Q3Table::createEditor +1328 Q3Table::setCellContentFromEditor +1336 Q3Table::beginEdit +1344 Q3Table::endEdit +1352 Q3Table::resizeData +1360 Q3Table::insertWidget +1368 Q3Table::columnWidthChanged +1376 Q3Table::rowHeightChanged +1384 Q3Table::columnIndexChanged +1392 Q3Table::rowIndexChanged +1400 Q3Table::columnClicked +1408 (int (*)(...))-0x00000000000000010 +1416 (int (*)(...))(& _ZTI7Q3Table) +1424 Q3Table::_ZThn16_N7Q3TableD1Ev +1432 Q3Table::_ZThn16_N7Q3TableD0Ev +1440 QWidget::_ZThn16_NK7QWidget7devTypeEv +1448 QWidget::_ZThn16_NK7QWidget11paintEngineEv +1456 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3Table + size=392 align=8 + base size=388 base align=8 +Q3Table (0x7f62da7635b0) 0 + vptr=((& Q3Table::_ZTV7Q3Table) + 16u) + Q3ScrollView (0x7f62da763620) 0 + primary-for Q3Table (0x7f62da7635b0) + Q3Frame (0x7f62da763690) 0 + primary-for Q3ScrollView (0x7f62da763620) + QFrame (0x7f62da763700) 0 + primary-for Q3Frame (0x7f62da763690) + QWidget (0x7f62da74ba80) 0 + primary-for QFrame (0x7f62da763700) + QObject (0x7f62da763770) 0 + primary-for QWidget (0x7f62da74ba80) + QPaintDevice (0x7f62da7637e0) 16 + vptr=((& Q3Table::_ZTV7Q3Table) + 1424u) + +Vtable for Q3EditorFactory +Q3EditorFactory::_ZTV15Q3EditorFactory: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15Q3EditorFactory) +16 QObject::metaObject +24 QObject::qt_metacast +32 QObject::qt_metacall +40 Q3EditorFactory::~Q3EditorFactory +48 Q3EditorFactory::~Q3EditorFactory +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 Q3EditorFactory::createEditor + +Class Q3EditorFactory + size=16 align=8 + base size=16 base align=8 +Q3EditorFactory (0x7f62da6137e0) 0 + vptr=((& Q3EditorFactory::_ZTV15Q3EditorFactory) + 16u) + QObject (0x7f62da613850) 0 + primary-for Q3EditorFactory (0x7f62da6137e0) + +Vtable for Q3SqlEditorFactory +Q3SqlEditorFactory::_ZTV18Q3SqlEditorFactory: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18Q3SqlEditorFactory) +16 QObject::metaObject +24 QObject::qt_metacast +32 QObject::qt_metacall +40 Q3SqlEditorFactory::~Q3SqlEditorFactory +48 Q3SqlEditorFactory::~Q3SqlEditorFactory +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 Q3SqlEditorFactory::createEditor +120 Q3SqlEditorFactory::createEditor + +Class Q3SqlEditorFactory + size=16 align=8 + base size=16 base align=8 +Q3SqlEditorFactory (0x7f62da619150) 0 + vptr=((& Q3SqlEditorFactory::_ZTV18Q3SqlEditorFactory) + 16u) + Q3EditorFactory (0x7f62da6191c0) 0 + primary-for Q3SqlEditorFactory (0x7f62da619150) + QObject (0x7f62da619230) 0 + primary-for Q3EditorFactory (0x7f62da6191c0) + +Vtable for Q3DataTable +Q3DataTable::_ZTV11Q3DataTable: 214u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11Q3DataTable) +16 Q3DataTable::metaObject +24 Q3DataTable::qt_metacast +32 Q3DataTable::qt_metacall +40 Q3DataTable::~Q3DataTable +48 Q3DataTable::~Q3DataTable +56 QFrame::event +64 Q3DataTable::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 Q3ScrollView::setVisible +128 Q3Table::sizeHint +136 Q3ScrollView::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 Q3ScrollView::mousePressEvent +168 Q3ScrollView::mouseReleaseEvent +176 Q3ScrollView::mouseDoubleClickEvent +184 Q3ScrollView::mouseMoveEvent +192 Q3ScrollView::wheelEvent +200 Q3DataTable::keyPressEvent +208 QWidget::keyReleaseEvent +216 Q3Table::focusInEvent +224 Q3Table::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 Q3Table::paintEvent +256 QWidget::moveEvent +264 Q3DataTable::resizeEvent +272 QWidget::closeEvent +280 Q3ScrollView::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 Q3Table::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 Q3Table::inputMethodQuery +392 Q3ScrollView::focusNextPrevChild +400 Q3ScrollView::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 Q3ScrollView::fontChange +432 Q3Table::windowActivationChange +440 QWidget::languageChange +448 Q3ScrollView::frameChanged +456 Q3Frame::drawFrame +464 Q3DataTable::drawContents +472 Q3ScrollView::setResizePolicy +480 Q3ScrollView::addChild +488 Q3ScrollView::moveChild +496 Q3ScrollView::setVScrollBarMode +504 Q3ScrollView::setHScrollBarMode +512 Q3ScrollView::setCornerWidget +520 Q3ScrollView::setDragAutoScroll +528 Q3ScrollView::resizeContents +536 Q3ScrollView::setContentsPos +544 Q3DataTable::drawContents +552 Q3ScrollView::drawContentsOffset +560 Q3DataTable::contentsMousePressEvent +568 Q3Table::contentsMouseReleaseEvent +576 Q3Table::contentsMouseDoubleClickEvent +584 Q3Table::contentsMouseMoveEvent +592 Q3Table::contentsDragEnterEvent +600 Q3Table::contentsDragMoveEvent +608 Q3Table::contentsDragLeaveEvent +616 Q3Table::contentsDropEvent +624 Q3ScrollView::contentsWheelEvent +632 Q3DataTable::contentsContextMenuEvent +640 Q3ScrollView::viewportPaintEvent +648 Q3Table::viewportResizeEvent +656 Q3ScrollView::viewportMousePressEvent +664 Q3ScrollView::viewportMouseReleaseEvent +672 Q3ScrollView::viewportMouseDoubleClickEvent +680 Q3ScrollView::viewportMouseMoveEvent +688 Q3ScrollView::viewportDragEnterEvent +696 Q3ScrollView::viewportDragMoveEvent +704 Q3ScrollView::viewportDragLeaveEvent +712 Q3ScrollView::viewportDropEvent +720 Q3ScrollView::viewportWheelEvent +728 Q3ScrollView::viewportContextMenuEvent +736 Q3ScrollView::setMargins +744 Q3ScrollView::setHBarGeometry +752 Q3ScrollView::setVBarGeometry +760 Q3Table::setSelectionMode +768 Q3DataTable::setItem +776 Q3Table::setText +784 Q3DataTable::setPixmap +792 Q3DataTable::item +800 Q3DataTable::text +808 Q3Table::pixmap +816 Q3DataTable::clearCell +824 Q3Table::cellGeometry +832 Q3Table::columnWidth +840 Q3Table::rowHeight +848 Q3Table::columnPos +856 Q3Table::rowPos +864 Q3Table::columnAt +872 Q3Table::rowAt +880 Q3DataTable::numRows +888 Q3DataTable::numCols +896 Q3Table::addSelection +904 Q3Table::removeSelection +912 Q3Table::removeSelection +920 Q3Table::currentSelection +928 Q3DataTable::selectRow +936 Q3Table::selectColumn +944 Q3DataTable::sortColumn +952 Q3DataTable::takeItem +960 Q3Table::setCellWidget +968 Q3Table::cellWidget +976 Q3Table::clearCellWidget +984 Q3Table::cellRect +992 Q3Table::paintCell +1000 Q3DataTable::paintCell +1008 Q3Table::paintFocus +1016 Q3Table::setFocusStyle +1024 Q3DataTable::setNumRows +1032 Q3DataTable::setNumCols +1040 Q3Table::setShowGrid +1048 Q3Table::hideRow +1056 Q3DataTable::hideColumn +1064 Q3Table::showRow +1072 Q3DataTable::showColumn +1080 Q3DataTable::setColumnWidth +1088 Q3Table::setRowHeight +1096 Q3DataTable::adjustColumn +1104 Q3Table::adjustRow +1112 Q3DataTable::setColumnStretchable +1120 Q3Table::setRowStretchable +1128 Q3Table::setSorting +1136 Q3Table::swapRows +1144 Q3DataTable::swapColumns +1152 Q3Table::swapCells +1160 Q3Table::setLeftMargin +1168 Q3Table::setTopMargin +1176 Q3Table::setCurrentCell +1184 Q3Table::setColumnMovingEnabled +1192 Q3Table::setRowMovingEnabled +1200 Q3Table::setReadOnly +1208 Q3Table::setRowReadOnly +1216 Q3Table::setColumnReadOnly +1224 Q3Table::setDragEnabled +1232 Q3Table::insertRows +1240 Q3Table::insertColumns +1248 Q3Table::removeRow +1256 Q3Table::removeRows +1264 Q3DataTable::removeColumn +1272 Q3Table::removeColumns +1280 Q3Table::editCell +1288 Q3Table::dragObject +1296 Q3Table::startDrag +1304 Q3Table::paintEmptyArea +1312 Q3DataTable::activateNextCell +1320 Q3DataTable::createEditor +1328 Q3Table::setCellContentFromEditor +1336 Q3DataTable::beginEdit +1344 Q3DataTable::endEdit +1352 Q3DataTable::resizeData +1360 Q3Table::insertWidget +1368 Q3Table::columnWidthChanged +1376 Q3Table::rowHeightChanged +1384 Q3Table::columnIndexChanged +1392 Q3Table::rowIndexChanged +1400 Q3DataTable::columnClicked +1408 Q3DataTable::addColumn +1416 Q3DataTable::setColumn +1424 Q3DataTable::setSqlCursor +1432 Q3DataTable::setNullText +1440 Q3DataTable::setTrueText +1448 Q3DataTable::setFalseText +1456 Q3DataTable::setDateFormat +1464 Q3DataTable::setConfirmEdits +1472 Q3DataTable::setConfirmInsert +1480 Q3DataTable::setConfirmUpdate +1488 Q3DataTable::setConfirmDelete +1496 Q3DataTable::setConfirmCancels +1504 Q3DataTable::setAutoDelete +1512 Q3DataTable::setAutoEdit +1520 Q3DataTable::setFilter +1528 Q3DataTable::setSort +1536 Q3DataTable::setSort +1544 Q3DataTable::find +1552 Q3DataTable::sortAscending +1560 Q3DataTable::sortDescending +1568 Q3DataTable::refresh +1576 Q3DataTable::insertCurrent +1584 Q3DataTable::updateCurrent +1592 Q3DataTable::deleteCurrent +1600 Q3DataTable::confirmEdit +1608 Q3DataTable::confirmCancel +1616 Q3DataTable::handleError +1624 Q3DataTable::beginInsert +1632 Q3DataTable::beginUpdate +1640 Q3DataTable::paintField +1648 Q3DataTable::fieldAlignment +1656 (int (*)(...))-0x00000000000000010 +1664 (int (*)(...))(& _ZTI11Q3DataTable) +1672 Q3DataTable::_ZThn16_N11Q3DataTableD1Ev +1680 Q3DataTable::_ZThn16_N11Q3DataTableD0Ev +1688 QWidget::_ZThn16_NK7QWidget7devTypeEv +1696 QWidget::_ZThn16_NK7QWidget11paintEngineEv +1704 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3DataTable + size=400 align=8 + base size=400 base align=8 +Q3DataTable (0x7f62da619af0) 0 + vptr=((& Q3DataTable::_ZTV11Q3DataTable) + 16u) + Q3Table (0x7f62da619b60) 0 + primary-for Q3DataTable (0x7f62da619af0) + Q3ScrollView (0x7f62da619bd0) 0 + primary-for Q3Table (0x7f62da619b60) + Q3Frame (0x7f62da619c40) 0 + primary-for Q3ScrollView (0x7f62da619bd0) + QFrame (0x7f62da619cb0) 0 + primary-for Q3Frame (0x7f62da619c40) + QWidget (0x7f62da61e080) 0 + primary-for QFrame (0x7f62da619cb0) + QObject (0x7f62da619d20) 0 + primary-for QWidget (0x7f62da61e080) + QPaintDevice (0x7f62da619d90) 16 + vptr=((& Q3DataTable::_ZTV11Q3DataTable) + 1672u) + +Vtable for Q3DataView +Q3DataView::_ZTV10Q3DataView: 69u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10Q3DataView) +16 Q3DataView::metaObject +24 Q3DataView::qt_metacast +32 Q3DataView::qt_metacall +40 Q3DataView::~Q3DataView +48 Q3DataView::~Q3DataView +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3DataView::setForm +456 Q3DataView::setRecord +464 Q3DataView::refresh +472 Q3DataView::readFields +480 Q3DataView::writeFields +488 Q3DataView::clearValues +496 (int (*)(...))-0x00000000000000010 +504 (int (*)(...))(& _ZTI10Q3DataView) +512 Q3DataView::_ZThn16_N10Q3DataViewD1Ev +520 Q3DataView::_ZThn16_N10Q3DataViewD0Ev +528 QWidget::_ZThn16_NK7QWidget7devTypeEv +536 QWidget::_ZThn16_NK7QWidget11paintEngineEv +544 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3DataView + size=48 align=8 + base size=48 base align=8 +Q3DataView (0x7f62da663770) 0 + vptr=((& Q3DataView::_ZTV10Q3DataView) + 16u) + QWidget (0x7f62da61e900) 0 + primary-for Q3DataView (0x7f62da663770) + QObject (0x7f62da6637e0) 0 + primary-for QWidget (0x7f62da61e900) + QPaintDevice (0x7f62da663850) 16 + vptr=((& Q3DataView::_ZTV10Q3DataView) + 512u) + +Vtable for Q3SqlFieldInfo +Q3SqlFieldInfo::_ZTV14Q3SqlFieldInfo: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14Q3SqlFieldInfo) +16 Q3SqlFieldInfo::~Q3SqlFieldInfo +24 Q3SqlFieldInfo::~Q3SqlFieldInfo +32 Q3SqlFieldInfo::setTrim +40 Q3SqlFieldInfo::setGenerated +48 Q3SqlFieldInfo::setCalculated + +Class Q3SqlFieldInfo + size=64 align=8 + base size=64 base align=8 +Q3SqlFieldInfo (0x7f62da46bb60) 0 + vptr=((& Q3SqlFieldInfo::_ZTV14Q3SqlFieldInfo) + 16u) + +Vtable for Q3SqlForm +Q3SqlForm::_ZTV9Q3SqlForm: 26u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9Q3SqlForm) +16 Q3SqlForm::metaObject +24 Q3SqlForm::qt_metacast +32 Q3SqlForm::qt_metacall +40 Q3SqlForm::~Q3SqlForm +48 Q3SqlForm::~Q3SqlForm +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 Q3SqlForm::insert +120 Q3SqlForm::remove +128 Q3SqlForm::setRecord +136 Q3SqlForm::readField +144 Q3SqlForm::writeField +152 Q3SqlForm::readFields +160 Q3SqlForm::writeFields +168 Q3SqlForm::clear +176 Q3SqlForm::clearValues +184 Q3SqlForm::insert +192 Q3SqlForm::remove +200 Q3SqlForm::sync + +Class Q3SqlForm + size=24 align=8 + base size=24 base align=8 +Q3SqlForm (0x7f62da4d72a0) 0 + vptr=((& Q3SqlForm::_ZTV9Q3SqlForm) + 16u) + QObject (0x7f62da4d7310) 0 + primary-for Q3SqlForm (0x7f62da4d72a0) + +Vtable for Q3SqlPropertyMap +Q3SqlPropertyMap::_ZTV16Q3SqlPropertyMap: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16Q3SqlPropertyMap) +16 Q3SqlPropertyMap::~Q3SqlPropertyMap +24 Q3SqlPropertyMap::~Q3SqlPropertyMap +32 Q3SqlPropertyMap::setProperty + +Class Q3SqlPropertyMap + size=16 align=8 + base size=16 base align=8 +Q3SqlPropertyMap (0x7f62da4e9620) 0 + vptr=((& Q3SqlPropertyMap::_ZTV16Q3SqlPropertyMap) + 16u) + +Class Q3SqlRecordInfo + size=8 align=8 + base size=8 base align=8 +Q3SqlRecordInfo (0x7f62da520230) 0 + Q3ValueList (0x7f62da5202a0) 0 + QLinkedList (0x7f62da520310) 0 + +Vtable for Q3SqlSelectCursor +Q3SqlSelectCursor::_ZTV17Q3SqlSelectCursor: 40u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17Q3SqlSelectCursor) +16 Q3SqlSelectCursor::~Q3SqlSelectCursor +24 Q3SqlSelectCursor::~Q3SqlSelectCursor +32 Q3SqlCursor::setValue +40 Q3SqlSelectCursor::primaryIndex +48 Q3SqlSelectCursor::index +56 Q3SqlSelectCursor::setPrimaryIndex +64 Q3SqlSelectCursor::append +72 Q3SqlSelectCursor::insert +80 Q3SqlSelectCursor::remove +88 Q3SqlSelectCursor::clear +96 Q3SqlSelectCursor::setGenerated +104 Q3SqlSelectCursor::setGenerated +112 Q3SqlSelectCursor::editBuffer +120 Q3SqlSelectCursor::primeInsert +128 Q3SqlSelectCursor::primeUpdate +136 Q3SqlSelectCursor::primeDelete +144 Q3SqlSelectCursor::insert +152 Q3SqlSelectCursor::update +160 Q3SqlSelectCursor::del +168 Q3SqlSelectCursor::setMode +176 Q3SqlCursor::setCalculated +184 Q3SqlCursor::setTrimmed +192 Q3SqlSelectCursor::select +200 Q3SqlSelectCursor::setSort +208 Q3SqlSelectCursor::setFilter +216 Q3SqlSelectCursor::setName +224 Q3SqlCursor::seek +232 Q3SqlCursor::next +240 Q3SqlCursor::prev +248 Q3SqlCursor::first +256 Q3SqlCursor::last +264 Q3SqlSelectCursor::exec +272 Q3SqlCursor::calculateField +280 Q3SqlCursor::update +288 Q3SqlCursor::del +296 Q3SqlCursor::toString +304 Q3SqlCursor::toString +312 Q3SqlCursor::toString + +Class Q3SqlSelectCursor + size=40 align=8 + base size=40 base align=8 +Q3SqlSelectCursor (0x7f62da3e6540) 0 + vptr=((& Q3SqlSelectCursor::_ZTV17Q3SqlSelectCursor) + 16u) + Q3SqlCursor (0x7f62da3e4e00) 0 + primary-for Q3SqlSelectCursor (0x7f62da3e6540) + QSqlRecord (0x7f62da3e65b0) 8 + QSqlQuery (0x7f62da3e6620) 16 + +Class Q3StyleSheetItem + size=8 align=8 + base size=8 base align=8 +Q3StyleSheetItem (0x7f62da416620) 0 + +Vtable for Q3StyleSheet +Q3StyleSheet::_ZTV12Q3StyleSheet: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12Q3StyleSheet) +16 Q3StyleSheet::metaObject +24 Q3StyleSheet::qt_metacast +32 Q3StyleSheet::qt_metacall +40 Q3StyleSheet::~Q3StyleSheet +48 Q3StyleSheet::~Q3StyleSheet +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 Q3StyleSheet::scaleFont +120 Q3StyleSheet::error + +Class Q3StyleSheet + size=32 align=8 + base size=32 base align=8 +Q3StyleSheet (0x7f62da42f460) 0 + vptr=((& Q3StyleSheet::_ZTV12Q3StyleSheet) + 16u) + QObject (0x7f62da42f4d0) 0 + primary-for Q3StyleSheet (0x7f62da42f460) + +Vtable for Q3MimeSourceFactory +Q3MimeSourceFactory::_ZTV19Q3MimeSourceFactory: 13u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19Q3MimeSourceFactory) +16 Q3MimeSourceFactory::~Q3MimeSourceFactory +24 Q3MimeSourceFactory::~Q3MimeSourceFactory +32 Q3MimeSourceFactory::data +40 Q3MimeSourceFactory::makeAbsolute +48 Q3MimeSourceFactory::setText +56 Q3MimeSourceFactory::setImage +64 Q3MimeSourceFactory::setPixmap +72 Q3MimeSourceFactory::setData +80 Q3MimeSourceFactory::setFilePath +88 Q3MimeSourceFactory::filePath +96 Q3MimeSourceFactory::setExtensionType + +Class Q3MimeSourceFactory + size=16 align=8 + base size=16 base align=8 +Q3MimeSourceFactory (0x7f62da45ec40) 0 + vptr=((& Q3MimeSourceFactory::_ZTV19Q3MimeSourceFactory) + 16u) + +Class Q3TextEditOptimPrivate::Tag + size=56 align=8 + base size=56 base align=8 +Q3TextEditOptimPrivate::Tag (0x7f62da468540) 0 + +Class Q3TextEditOptimPrivate::Selection + size=8 align=4 + base size=8 base align=4 +Q3TextEditOptimPrivate::Selection (0x7f62da468d90) 0 + +Class Q3TextEditOptimPrivate + size=72 align=8 + base size=72 base align=8 +Q3TextEditOptimPrivate (0x7f62da4684d0) 0 + +Class Q3TextEdit::UndoRedoInfo + size=56 align=8 + base size=56 base align=8 +Q3TextEdit::UndoRedoInfo (0x7f62da2eccb0) 0 + +Vtable for Q3TextEdit +Q3TextEdit::_ZTV10Q3TextEdit: 175u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10Q3TextEdit) +16 Q3TextEdit::metaObject +24 Q3TextEdit::qt_metacast +32 Q3TextEdit::qt_metacall +40 Q3TextEdit::~Q3TextEdit +48 Q3TextEdit::~Q3TextEdit +56 Q3TextEdit::event +64 Q3TextEdit::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 Q3ScrollView::setVisible +128 Q3TextEdit::sizeHint +136 Q3ScrollView::minimumSizeHint +144 Q3TextEdit::heightForWidth +152 QWidget::paintEngine +160 Q3ScrollView::mousePressEvent +168 Q3ScrollView::mouseReleaseEvent +176 Q3ScrollView::mouseDoubleClickEvent +184 Q3ScrollView::mouseMoveEvent +192 Q3ScrollView::wheelEvent +200 Q3TextEdit::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 Q3Frame::paintEvent +256 QWidget::moveEvent +264 Q3TextEdit::resizeEvent +272 QWidget::closeEvent +280 Q3ScrollView::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 Q3TextEdit::changeEvent +368 QWidget::metric +376 Q3TextEdit::inputMethodEvent +384 Q3TextEdit::inputMethodQuery +392 Q3TextEdit::focusNextPrevChild +400 Q3ScrollView::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 Q3ScrollView::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3ScrollView::frameChanged +456 Q3Frame::drawFrame +464 Q3TextEdit::drawContents +472 Q3ScrollView::setResizePolicy +480 Q3ScrollView::addChild +488 Q3ScrollView::moveChild +496 Q3ScrollView::setVScrollBarMode +504 Q3ScrollView::setHScrollBarMode +512 Q3ScrollView::setCornerWidget +520 Q3ScrollView::setDragAutoScroll +528 Q3ScrollView::resizeContents +536 Q3ScrollView::setContentsPos +544 Q3TextEdit::drawContents +552 Q3ScrollView::drawContentsOffset +560 Q3TextEdit::contentsMousePressEvent +568 Q3TextEdit::contentsMouseReleaseEvent +576 Q3TextEdit::contentsMouseDoubleClickEvent +584 Q3TextEdit::contentsMouseMoveEvent +592 Q3TextEdit::contentsDragEnterEvent +600 Q3TextEdit::contentsDragMoveEvent +608 Q3TextEdit::contentsDragLeaveEvent +616 Q3TextEdit::contentsDropEvent +624 Q3TextEdit::contentsWheelEvent +632 Q3TextEdit::contentsContextMenuEvent +640 Q3ScrollView::viewportPaintEvent +648 Q3TextEdit::viewportResizeEvent +656 Q3ScrollView::viewportMousePressEvent +664 Q3ScrollView::viewportMouseReleaseEvent +672 Q3ScrollView::viewportMouseDoubleClickEvent +680 Q3ScrollView::viewportMouseMoveEvent +688 Q3ScrollView::viewportDragEnterEvent +696 Q3ScrollView::viewportDragMoveEvent +704 Q3ScrollView::viewportDragLeaveEvent +712 Q3ScrollView::viewportDropEvent +720 Q3ScrollView::viewportWheelEvent +728 Q3ScrollView::viewportContextMenuEvent +736 Q3ScrollView::setMargins +744 Q3ScrollView::setHBarGeometry +752 Q3ScrollView::setVBarGeometry +760 Q3TextEdit::find +768 Q3TextEdit::getFormat +776 Q3TextEdit::getParagraphFormat +784 Q3TextEdit::setMimeSourceFactory +792 Q3TextEdit::setStyleSheet +800 Q3TextEdit::scrollToAnchor +808 Q3TextEdit::setPaper +816 Q3TextEdit::setLinkUnderline +824 Q3TextEdit::setWordWrap +832 Q3TextEdit::setWrapColumnOrWidth +840 Q3TextEdit::setWrapPolicy +848 Q3TextEdit::copy +856 Q3TextEdit::append +864 Q3TextEdit::setText +872 Q3TextEdit::setTextFormat +880 Q3TextEdit::selectAll +888 Q3TextEdit::setTabStopWidth +896 Q3TextEdit::zoomIn +904 Q3TextEdit::zoomIn +912 Q3TextEdit::zoomOut +920 Q3TextEdit::zoomOut +928 Q3TextEdit::zoomTo +936 Q3TextEdit::sync +944 Q3TextEdit::setReadOnly +952 Q3TextEdit::undo +960 Q3TextEdit::redo +968 Q3TextEdit::cut +976 Q3TextEdit::paste +984 Q3TextEdit::pasteSubType +992 Q3TextEdit::clear +1000 Q3TextEdit::del +1008 Q3TextEdit::indent +1016 Q3TextEdit::setItalic +1024 Q3TextEdit::setBold +1032 Q3TextEdit::setUnderline +1040 Q3TextEdit::setFamily +1048 Q3TextEdit::setPointSize +1056 Q3TextEdit::setColor +1064 Q3TextEdit::setVerticalAlignment +1072 Q3TextEdit::setAlignment +1080 Q3TextEdit::setParagType +1088 Q3TextEdit::setCursorPosition +1096 Q3TextEdit::setSelection +1104 Q3TextEdit::setSelectionAttributes +1112 Q3TextEdit::setModified +1120 Q3TextEdit::resetFormat +1128 Q3TextEdit::setUndoDepth +1136 Q3TextEdit::setFormat +1144 Q3TextEdit::ensureCursorVisible +1152 Q3TextEdit::placeCursor +1160 Q3TextEdit::moveCursor +1168 Q3TextEdit::doKeyboardAction +1176 Q3TextEdit::removeSelectedText +1184 Q3TextEdit::removeSelection +1192 Q3TextEdit::setCurrentFont +1200 Q3TextEdit::setOverwriteMode +1208 Q3TextEdit::scrollToBottom +1216 Q3TextEdit::insert +1224 Q3TextEdit::insert +1232 Q3TextEdit::insertAt +1240 Q3TextEdit::removeParagraph +1248 Q3TextEdit::insertParagraph +1256 Q3TextEdit::setParagraphBackgroundColor +1264 Q3TextEdit::clearParagraphBackground +1272 Q3TextEdit::setUndoRedoEnabled +1280 Q3TextEdit::setTabChangesFocus +1288 Q3TextEdit::createPopupMenu +1296 Q3TextEdit::createPopupMenu +1304 Q3TextEdit::doChangeInterval +1312 Q3TextEdit::sliderReleased +1320 Q3TextEdit::linksEnabled +1328 Q3TextEdit::emitHighlighted +1336 Q3TextEdit::emitLinkClicked +1344 (int (*)(...))-0x00000000000000010 +1352 (int (*)(...))(& _ZTI10Q3TextEdit) +1360 Q3TextEdit::_ZThn16_N10Q3TextEditD1Ev +1368 Q3TextEdit::_ZThn16_N10Q3TextEditD0Ev +1376 QWidget::_ZThn16_NK7QWidget7devTypeEv +1384 QWidget::_ZThn16_NK7QWidget11paintEngineEv +1392 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3TextEdit + size=272 align=8 + base size=266 base align=8 +Q3TextEdit (0x7f62da2cd2a0) 0 + vptr=((& Q3TextEdit::_ZTV10Q3TextEdit) + 16u) + Q3ScrollView (0x7f62da2cd310) 0 + primary-for Q3TextEdit (0x7f62da2cd2a0) + Q3Frame (0x7f62da2cd380) 0 + primary-for Q3ScrollView (0x7f62da2cd310) + QFrame (0x7f62da2cd3f0) 0 + primary-for Q3Frame (0x7f62da2cd380) + QWidget (0x7f62da2cb900) 0 + primary-for QFrame (0x7f62da2cd3f0) + QObject (0x7f62da2cd460) 0 + primary-for QWidget (0x7f62da2cb900) + QPaintDevice (0x7f62da2cd4d0) 16 + vptr=((& Q3TextEdit::_ZTV10Q3TextEdit) + 1360u) + +Vtable for Q3MultiLineEdit +Q3MultiLineEdit::_ZTV15Q3MultiLineEdit: 192u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15Q3MultiLineEdit) +16 Q3MultiLineEdit::metaObject +24 Q3MultiLineEdit::qt_metacast +32 Q3MultiLineEdit::qt_metacall +40 Q3MultiLineEdit::~Q3MultiLineEdit +48 Q3MultiLineEdit::~Q3MultiLineEdit +56 Q3TextEdit::event +64 Q3TextEdit::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 Q3ScrollView::setVisible +128 Q3TextEdit::sizeHint +136 Q3ScrollView::minimumSizeHint +144 Q3TextEdit::heightForWidth +152 QWidget::paintEngine +160 Q3ScrollView::mousePressEvent +168 Q3ScrollView::mouseReleaseEvent +176 Q3ScrollView::mouseDoubleClickEvent +184 Q3ScrollView::mouseMoveEvent +192 Q3ScrollView::wheelEvent +200 Q3TextEdit::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 Q3Frame::paintEvent +256 QWidget::moveEvent +264 Q3TextEdit::resizeEvent +272 QWidget::closeEvent +280 Q3ScrollView::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 Q3TextEdit::changeEvent +368 QWidget::metric +376 Q3TextEdit::inputMethodEvent +384 Q3TextEdit::inputMethodQuery +392 Q3TextEdit::focusNextPrevChild +400 Q3ScrollView::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 Q3ScrollView::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3ScrollView::frameChanged +456 Q3Frame::drawFrame +464 Q3TextEdit::drawContents +472 Q3ScrollView::setResizePolicy +480 Q3ScrollView::addChild +488 Q3ScrollView::moveChild +496 Q3ScrollView::setVScrollBarMode +504 Q3ScrollView::setHScrollBarMode +512 Q3ScrollView::setCornerWidget +520 Q3ScrollView::setDragAutoScroll +528 Q3ScrollView::resizeContents +536 Q3ScrollView::setContentsPos +544 Q3TextEdit::drawContents +552 Q3ScrollView::drawContentsOffset +560 Q3TextEdit::contentsMousePressEvent +568 Q3TextEdit::contentsMouseReleaseEvent +576 Q3TextEdit::contentsMouseDoubleClickEvent +584 Q3TextEdit::contentsMouseMoveEvent +592 Q3TextEdit::contentsDragEnterEvent +600 Q3TextEdit::contentsDragMoveEvent +608 Q3TextEdit::contentsDragLeaveEvent +616 Q3TextEdit::contentsDropEvent +624 Q3TextEdit::contentsWheelEvent +632 Q3TextEdit::contentsContextMenuEvent +640 Q3ScrollView::viewportPaintEvent +648 Q3TextEdit::viewportResizeEvent +656 Q3ScrollView::viewportMousePressEvent +664 Q3ScrollView::viewportMouseReleaseEvent +672 Q3ScrollView::viewportMouseDoubleClickEvent +680 Q3ScrollView::viewportMouseMoveEvent +688 Q3ScrollView::viewportDragEnterEvent +696 Q3ScrollView::viewportDragMoveEvent +704 Q3ScrollView::viewportDragLeaveEvent +712 Q3ScrollView::viewportDropEvent +720 Q3ScrollView::viewportWheelEvent +728 Q3ScrollView::viewportContextMenuEvent +736 Q3ScrollView::setMargins +744 Q3ScrollView::setHBarGeometry +752 Q3ScrollView::setVBarGeometry +760 Q3TextEdit::find +768 Q3TextEdit::getFormat +776 Q3TextEdit::getParagraphFormat +784 Q3TextEdit::setMimeSourceFactory +792 Q3TextEdit::setStyleSheet +800 Q3TextEdit::scrollToAnchor +808 Q3TextEdit::setPaper +816 Q3TextEdit::setLinkUnderline +824 Q3TextEdit::setWordWrap +832 Q3TextEdit::setWrapColumnOrWidth +840 Q3TextEdit::setWrapPolicy +848 Q3TextEdit::copy +856 Q3TextEdit::append +864 Q3TextEdit::setText +872 Q3TextEdit::setTextFormat +880 Q3TextEdit::selectAll +888 Q3TextEdit::setTabStopWidth +896 Q3TextEdit::zoomIn +904 Q3TextEdit::zoomIn +912 Q3TextEdit::zoomOut +920 Q3TextEdit::zoomOut +928 Q3TextEdit::zoomTo +936 Q3TextEdit::sync +944 Q3TextEdit::setReadOnly +952 Q3TextEdit::undo +960 Q3TextEdit::redo +968 Q3TextEdit::cut +976 Q3TextEdit::paste +984 Q3TextEdit::pasteSubType +992 Q3TextEdit::clear +1000 Q3TextEdit::del +1008 Q3TextEdit::indent +1016 Q3TextEdit::setItalic +1024 Q3TextEdit::setBold +1032 Q3TextEdit::setUnderline +1040 Q3TextEdit::setFamily +1048 Q3TextEdit::setPointSize +1056 Q3TextEdit::setColor +1064 Q3TextEdit::setVerticalAlignment +1072 Q3TextEdit::setAlignment +1080 Q3TextEdit::setParagType +1088 Q3MultiLineEdit::setCursorPosition +1096 Q3TextEdit::setSelection +1104 Q3TextEdit::setSelectionAttributes +1112 Q3TextEdit::setModified +1120 Q3TextEdit::resetFormat +1128 Q3TextEdit::setUndoDepth +1136 Q3TextEdit::setFormat +1144 Q3TextEdit::ensureCursorVisible +1152 Q3TextEdit::placeCursor +1160 Q3TextEdit::moveCursor +1168 Q3TextEdit::doKeyboardAction +1176 Q3TextEdit::removeSelectedText +1184 Q3TextEdit::removeSelection +1192 Q3TextEdit::setCurrentFont +1200 Q3TextEdit::setOverwriteMode +1208 Q3TextEdit::scrollToBottom +1216 Q3TextEdit::insert +1224 Q3TextEdit::insert +1232 Q3MultiLineEdit::insertAt +1240 Q3TextEdit::removeParagraph +1248 Q3TextEdit::insertParagraph +1256 Q3TextEdit::setParagraphBackgroundColor +1264 Q3TextEdit::clearParagraphBackground +1272 Q3TextEdit::setUndoRedoEnabled +1280 Q3TextEdit::setTabChangesFocus +1288 Q3TextEdit::createPopupMenu +1296 Q3TextEdit::createPopupMenu +1304 Q3TextEdit::doChangeInterval +1312 Q3TextEdit::sliderReleased +1320 Q3TextEdit::linksEnabled +1328 Q3TextEdit::emitHighlighted +1336 Q3TextEdit::emitLinkClicked +1344 Q3MultiLineEdit::insertLine +1352 Q3MultiLineEdit::insertAt +1360 Q3MultiLineEdit::removeLine +1368 Q3MultiLineEdit::setCursorPosition +1376 Q3MultiLineEdit::setAutoUpdate +1384 Q3MultiLineEdit::insertAndMark +1392 Q3MultiLineEdit::newLine +1400 Q3MultiLineEdit::killLine +1408 Q3MultiLineEdit::pageUp +1416 Q3MultiLineEdit::pageDown +1424 Q3MultiLineEdit::cursorLeft +1432 Q3MultiLineEdit::cursorRight +1440 Q3MultiLineEdit::cursorUp +1448 Q3MultiLineEdit::cursorDown +1456 Q3MultiLineEdit::backspace +1464 Q3MultiLineEdit::home +1472 Q3MultiLineEdit::end +1480 (int (*)(...))-0x00000000000000010 +1488 (int (*)(...))(& _ZTI15Q3MultiLineEdit) +1496 Q3MultiLineEdit::_ZThn16_N15Q3MultiLineEditD1Ev +1504 Q3MultiLineEdit::_ZThn16_N15Q3MultiLineEditD0Ev +1512 QWidget::_ZThn16_NK7QWidget7devTypeEv +1520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +1528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3MultiLineEdit + size=280 align=8 + base size=280 base align=8 +Q3MultiLineEdit (0x7f62da1a53f0) 0 + vptr=((& Q3MultiLineEdit::_ZTV15Q3MultiLineEdit) + 16u) + Q3TextEdit (0x7f62da1a5460) 0 + primary-for Q3MultiLineEdit (0x7f62da1a53f0) + Q3ScrollView (0x7f62da1a54d0) 0 + primary-for Q3TextEdit (0x7f62da1a5460) + Q3Frame (0x7f62da1a5540) 0 + primary-for Q3ScrollView (0x7f62da1a54d0) + QFrame (0x7f62da1a55b0) 0 + primary-for Q3Frame (0x7f62da1a5540) + QWidget (0x7f62da34db00) 0 + primary-for QFrame (0x7f62da1a55b0) + QObject (0x7f62da1a5620) 0 + primary-for QWidget (0x7f62da34db00) + QPaintDevice (0x7f62da1a5690) 16 + vptr=((& Q3MultiLineEdit::_ZTV15Q3MultiLineEdit) + 1496u) + +Class Q3SimpleRichText + size=8 align=8 + base size=8 base align=8 +Q3SimpleRichText (0x7f62da1d6d90) 0 + +Vtable for Q3SyntaxHighlighter +Q3SyntaxHighlighter::_ZTV19Q3SyntaxHighlighter: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19Q3SyntaxHighlighter) +16 Q3SyntaxHighlighter::~Q3SyntaxHighlighter +24 Q3SyntaxHighlighter::~Q3SyntaxHighlighter +32 __cxa_pure_virtual + +Class Q3SyntaxHighlighter + size=32 align=8 + base size=32 base align=8 +Q3SyntaxHighlighter (0x7f62da1e04d0) 0 + vptr=((& Q3SyntaxHighlighter::_ZTV19Q3SyntaxHighlighter) + 16u) + +Vtable for Q3TextBrowser +Q3TextBrowser::_ZTV13Q3TextBrowser: 180u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13Q3TextBrowser) +16 Q3TextBrowser::metaObject +24 Q3TextBrowser::qt_metacast +32 Q3TextBrowser::qt_metacall +40 Q3TextBrowser::~Q3TextBrowser +48 Q3TextBrowser::~Q3TextBrowser +56 Q3TextEdit::event +64 Q3TextEdit::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 Q3ScrollView::setVisible +128 Q3TextEdit::sizeHint +136 Q3ScrollView::minimumSizeHint +144 Q3TextEdit::heightForWidth +152 QWidget::paintEngine +160 Q3ScrollView::mousePressEvent +168 Q3ScrollView::mouseReleaseEvent +176 Q3ScrollView::mouseDoubleClickEvent +184 Q3ScrollView::mouseMoveEvent +192 Q3ScrollView::wheelEvent +200 Q3TextBrowser::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 Q3Frame::paintEvent +256 QWidget::moveEvent +264 Q3TextEdit::resizeEvent +272 QWidget::closeEvent +280 Q3ScrollView::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 Q3TextEdit::changeEvent +368 QWidget::metric +376 Q3TextEdit::inputMethodEvent +384 Q3TextEdit::inputMethodQuery +392 Q3TextEdit::focusNextPrevChild +400 Q3ScrollView::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 Q3ScrollView::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3ScrollView::frameChanged +456 Q3Frame::drawFrame +464 Q3TextEdit::drawContents +472 Q3ScrollView::setResizePolicy +480 Q3ScrollView::addChild +488 Q3ScrollView::moveChild +496 Q3ScrollView::setVScrollBarMode +504 Q3ScrollView::setHScrollBarMode +512 Q3ScrollView::setCornerWidget +520 Q3ScrollView::setDragAutoScroll +528 Q3ScrollView::resizeContents +536 Q3ScrollView::setContentsPos +544 Q3TextEdit::drawContents +552 Q3ScrollView::drawContentsOffset +560 Q3TextEdit::contentsMousePressEvent +568 Q3TextEdit::contentsMouseReleaseEvent +576 Q3TextEdit::contentsMouseDoubleClickEvent +584 Q3TextEdit::contentsMouseMoveEvent +592 Q3TextEdit::contentsDragEnterEvent +600 Q3TextEdit::contentsDragMoveEvent +608 Q3TextEdit::contentsDragLeaveEvent +616 Q3TextEdit::contentsDropEvent +624 Q3TextEdit::contentsWheelEvent +632 Q3TextEdit::contentsContextMenuEvent +640 Q3ScrollView::viewportPaintEvent +648 Q3TextEdit::viewportResizeEvent +656 Q3ScrollView::viewportMousePressEvent +664 Q3ScrollView::viewportMouseReleaseEvent +672 Q3ScrollView::viewportMouseDoubleClickEvent +680 Q3ScrollView::viewportMouseMoveEvent +688 Q3ScrollView::viewportDragEnterEvent +696 Q3ScrollView::viewportDragMoveEvent +704 Q3ScrollView::viewportDragLeaveEvent +712 Q3ScrollView::viewportDropEvent +720 Q3ScrollView::viewportWheelEvent +728 Q3ScrollView::viewportContextMenuEvent +736 Q3ScrollView::setMargins +744 Q3ScrollView::setHBarGeometry +752 Q3ScrollView::setVBarGeometry +760 Q3TextEdit::find +768 Q3TextEdit::getFormat +776 Q3TextEdit::getParagraphFormat +784 Q3TextEdit::setMimeSourceFactory +792 Q3TextEdit::setStyleSheet +800 Q3TextEdit::scrollToAnchor +808 Q3TextEdit::setPaper +816 Q3TextEdit::setLinkUnderline +824 Q3TextEdit::setWordWrap +832 Q3TextEdit::setWrapColumnOrWidth +840 Q3TextEdit::setWrapPolicy +848 Q3TextEdit::copy +856 Q3TextEdit::append +864 Q3TextBrowser::setText +872 Q3TextEdit::setTextFormat +880 Q3TextEdit::selectAll +888 Q3TextEdit::setTabStopWidth +896 Q3TextEdit::zoomIn +904 Q3TextEdit::zoomIn +912 Q3TextEdit::zoomOut +920 Q3TextEdit::zoomOut +928 Q3TextEdit::zoomTo +936 Q3TextEdit::sync +944 Q3TextEdit::setReadOnly +952 Q3TextEdit::undo +960 Q3TextEdit::redo +968 Q3TextEdit::cut +976 Q3TextEdit::paste +984 Q3TextEdit::pasteSubType +992 Q3TextEdit::clear +1000 Q3TextEdit::del +1008 Q3TextEdit::indent +1016 Q3TextEdit::setItalic +1024 Q3TextEdit::setBold +1032 Q3TextEdit::setUnderline +1040 Q3TextEdit::setFamily +1048 Q3TextEdit::setPointSize +1056 Q3TextEdit::setColor +1064 Q3TextEdit::setVerticalAlignment +1072 Q3TextEdit::setAlignment +1080 Q3TextEdit::setParagType +1088 Q3TextEdit::setCursorPosition +1096 Q3TextEdit::setSelection +1104 Q3TextEdit::setSelectionAttributes +1112 Q3TextEdit::setModified +1120 Q3TextEdit::resetFormat +1128 Q3TextEdit::setUndoDepth +1136 Q3TextEdit::setFormat +1144 Q3TextEdit::ensureCursorVisible +1152 Q3TextEdit::placeCursor +1160 Q3TextEdit::moveCursor +1168 Q3TextEdit::doKeyboardAction +1176 Q3TextEdit::removeSelectedText +1184 Q3TextEdit::removeSelection +1192 Q3TextEdit::setCurrentFont +1200 Q3TextEdit::setOverwriteMode +1208 Q3TextEdit::scrollToBottom +1216 Q3TextEdit::insert +1224 Q3TextEdit::insert +1232 Q3TextEdit::insertAt +1240 Q3TextEdit::removeParagraph +1248 Q3TextEdit::insertParagraph +1256 Q3TextEdit::setParagraphBackgroundColor +1264 Q3TextEdit::clearParagraphBackground +1272 Q3TextEdit::setUndoRedoEnabled +1280 Q3TextEdit::setTabChangesFocus +1288 Q3TextEdit::createPopupMenu +1296 Q3TextEdit::createPopupMenu +1304 Q3TextEdit::doChangeInterval +1312 Q3TextEdit::sliderReleased +1320 Q3TextBrowser::linksEnabled +1328 Q3TextBrowser::emitHighlighted +1336 Q3TextBrowser::emitLinkClicked +1344 Q3TextBrowser::setSource +1352 Q3TextBrowser::backward +1360 Q3TextBrowser::forward +1368 Q3TextBrowser::home +1376 Q3TextBrowser::reload +1384 (int (*)(...))-0x00000000000000010 +1392 (int (*)(...))(& _ZTI13Q3TextBrowser) +1400 Q3TextBrowser::_ZThn16_N13Q3TextBrowserD1Ev +1408 Q3TextBrowser::_ZThn16_N13Q3TextBrowserD0Ev +1416 QWidget::_ZThn16_NK7QWidget7devTypeEv +1424 QWidget::_ZThn16_NK7QWidget11paintEngineEv +1432 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3TextBrowser + size=280 align=8 + base size=280 base align=8 +Q3TextBrowser (0x7f62da1e08c0) 0 + vptr=((& Q3TextBrowser::_ZTV13Q3TextBrowser) + 16u) + Q3TextEdit (0x7f62da1e0930) 0 + primary-for Q3TextBrowser (0x7f62da1e08c0) + Q3ScrollView (0x7f62da1e09a0) 0 + primary-for Q3TextEdit (0x7f62da1e0930) + Q3Frame (0x7f62da1e0a10) 0 + primary-for Q3ScrollView (0x7f62da1e09a0) + QFrame (0x7f62da1e0a80) 0 + primary-for Q3Frame (0x7f62da1e0a10) + QWidget (0x7f62da1ee080) 0 + primary-for QFrame (0x7f62da1e0a80) + QObject (0x7f62da1e0af0) 0 + primary-for QWidget (0x7f62da1ee080) + QPaintDevice (0x7f62da1e0b60) 16 + vptr=((& Q3TextBrowser::_ZTV13Q3TextBrowser) + 1400u) + +Class Q3CString + size=8 align=8 + base size=8 base align=8 +Q3CString (0x7f62da212230) 0 + QByteArray (0x7f62da2122a0) 0 + +Vtable for Q3TextStream +Q3TextStream::_ZTV12Q3TextStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12Q3TextStream) +16 Q3TextStream::~Q3TextStream +24 Q3TextStream::~Q3TextStream + +Class Q3TextStream + size=136 align=8 + base size=136 base align=8 +Q3TextStream (0x7f62da0a57e0) 0 + vptr=((& Q3TextStream::_ZTV12Q3TextStream) + 16u) + +Class Q3TSManip + size=24 align=8 + base size=20 base align=8 +Q3TSManip (0x7f62da0e90e0) 0 + +Vtable for Q3TextView +Q3TextView::_ZTV10Q3TextView: 175u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10Q3TextView) +16 Q3TextView::metaObject +24 Q3TextView::qt_metacast +32 Q3TextView::qt_metacall +40 Q3TextView::~Q3TextView +48 Q3TextView::~Q3TextView +56 Q3TextEdit::event +64 Q3TextEdit::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 Q3ScrollView::setVisible +128 Q3TextEdit::sizeHint +136 Q3ScrollView::minimumSizeHint +144 Q3TextEdit::heightForWidth +152 QWidget::paintEngine +160 Q3ScrollView::mousePressEvent +168 Q3ScrollView::mouseReleaseEvent +176 Q3ScrollView::mouseDoubleClickEvent +184 Q3ScrollView::mouseMoveEvent +192 Q3ScrollView::wheelEvent +200 Q3TextEdit::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 Q3Frame::paintEvent +256 QWidget::moveEvent +264 Q3TextEdit::resizeEvent +272 QWidget::closeEvent +280 Q3ScrollView::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 Q3TextEdit::changeEvent +368 QWidget::metric +376 Q3TextEdit::inputMethodEvent +384 Q3TextEdit::inputMethodQuery +392 Q3TextEdit::focusNextPrevChild +400 Q3ScrollView::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 Q3ScrollView::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3ScrollView::frameChanged +456 Q3Frame::drawFrame +464 Q3TextEdit::drawContents +472 Q3ScrollView::setResizePolicy +480 Q3ScrollView::addChild +488 Q3ScrollView::moveChild +496 Q3ScrollView::setVScrollBarMode +504 Q3ScrollView::setHScrollBarMode +512 Q3ScrollView::setCornerWidget +520 Q3ScrollView::setDragAutoScroll +528 Q3ScrollView::resizeContents +536 Q3ScrollView::setContentsPos +544 Q3TextEdit::drawContents +552 Q3ScrollView::drawContentsOffset +560 Q3TextEdit::contentsMousePressEvent +568 Q3TextEdit::contentsMouseReleaseEvent +576 Q3TextEdit::contentsMouseDoubleClickEvent +584 Q3TextEdit::contentsMouseMoveEvent +592 Q3TextEdit::contentsDragEnterEvent +600 Q3TextEdit::contentsDragMoveEvent +608 Q3TextEdit::contentsDragLeaveEvent +616 Q3TextEdit::contentsDropEvent +624 Q3TextEdit::contentsWheelEvent +632 Q3TextEdit::contentsContextMenuEvent +640 Q3ScrollView::viewportPaintEvent +648 Q3TextEdit::viewportResizeEvent +656 Q3ScrollView::viewportMousePressEvent +664 Q3ScrollView::viewportMouseReleaseEvent +672 Q3ScrollView::viewportMouseDoubleClickEvent +680 Q3ScrollView::viewportMouseMoveEvent +688 Q3ScrollView::viewportDragEnterEvent +696 Q3ScrollView::viewportDragMoveEvent +704 Q3ScrollView::viewportDragLeaveEvent +712 Q3ScrollView::viewportDropEvent +720 Q3ScrollView::viewportWheelEvent +728 Q3ScrollView::viewportContextMenuEvent +736 Q3ScrollView::setMargins +744 Q3ScrollView::setHBarGeometry +752 Q3ScrollView::setVBarGeometry +760 Q3TextEdit::find +768 Q3TextEdit::getFormat +776 Q3TextEdit::getParagraphFormat +784 Q3TextEdit::setMimeSourceFactory +792 Q3TextEdit::setStyleSheet +800 Q3TextEdit::scrollToAnchor +808 Q3TextEdit::setPaper +816 Q3TextEdit::setLinkUnderline +824 Q3TextEdit::setWordWrap +832 Q3TextEdit::setWrapColumnOrWidth +840 Q3TextEdit::setWrapPolicy +848 Q3TextEdit::copy +856 Q3TextEdit::append +864 Q3TextEdit::setText +872 Q3TextEdit::setTextFormat +880 Q3TextEdit::selectAll +888 Q3TextEdit::setTabStopWidth +896 Q3TextEdit::zoomIn +904 Q3TextEdit::zoomIn +912 Q3TextEdit::zoomOut +920 Q3TextEdit::zoomOut +928 Q3TextEdit::zoomTo +936 Q3TextEdit::sync +944 Q3TextEdit::setReadOnly +952 Q3TextEdit::undo +960 Q3TextEdit::redo +968 Q3TextEdit::cut +976 Q3TextEdit::paste +984 Q3TextEdit::pasteSubType +992 Q3TextEdit::clear +1000 Q3TextEdit::del +1008 Q3TextEdit::indent +1016 Q3TextEdit::setItalic +1024 Q3TextEdit::setBold +1032 Q3TextEdit::setUnderline +1040 Q3TextEdit::setFamily +1048 Q3TextEdit::setPointSize +1056 Q3TextEdit::setColor +1064 Q3TextEdit::setVerticalAlignment +1072 Q3TextEdit::setAlignment +1080 Q3TextEdit::setParagType +1088 Q3TextEdit::setCursorPosition +1096 Q3TextEdit::setSelection +1104 Q3TextEdit::setSelectionAttributes +1112 Q3TextEdit::setModified +1120 Q3TextEdit::resetFormat +1128 Q3TextEdit::setUndoDepth +1136 Q3TextEdit::setFormat +1144 Q3TextEdit::ensureCursorVisible +1152 Q3TextEdit::placeCursor +1160 Q3TextEdit::moveCursor +1168 Q3TextEdit::doKeyboardAction +1176 Q3TextEdit::removeSelectedText +1184 Q3TextEdit::removeSelection +1192 Q3TextEdit::setCurrentFont +1200 Q3TextEdit::setOverwriteMode +1208 Q3TextEdit::scrollToBottom +1216 Q3TextEdit::insert +1224 Q3TextEdit::insert +1232 Q3TextEdit::insertAt +1240 Q3TextEdit::removeParagraph +1248 Q3TextEdit::insertParagraph +1256 Q3TextEdit::setParagraphBackgroundColor +1264 Q3TextEdit::clearParagraphBackground +1272 Q3TextEdit::setUndoRedoEnabled +1280 Q3TextEdit::setTabChangesFocus +1288 Q3TextEdit::createPopupMenu +1296 Q3TextEdit::createPopupMenu +1304 Q3TextEdit::doChangeInterval +1312 Q3TextEdit::sliderReleased +1320 Q3TextEdit::linksEnabled +1328 Q3TextEdit::emitHighlighted +1336 Q3TextEdit::emitLinkClicked +1344 (int (*)(...))-0x00000000000000010 +1352 (int (*)(...))(& _ZTI10Q3TextView) +1360 Q3TextView::_ZThn16_N10Q3TextViewD1Ev +1368 Q3TextView::_ZThn16_N10Q3TextViewD0Ev +1376 QWidget::_ZThn16_NK7QWidget7devTypeEv +1384 QWidget::_ZThn16_NK7QWidget11paintEngineEv +1392 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3TextView + size=272 align=8 + base size=266 base align=8 +Q3TextView (0x7f62da0f2a80) 0 + vptr=((& Q3TextView::_ZTV10Q3TextView) + 16u) + Q3TextEdit (0x7f62da0f2af0) 0 + primary-for Q3TextView (0x7f62da0f2a80) + Q3ScrollView (0x7f62da0f2b60) 0 + primary-for Q3TextEdit (0x7f62da0f2af0) + Q3Frame (0x7f62da0f2bd0) 0 + primary-for Q3ScrollView (0x7f62da0f2b60) + QFrame (0x7f62da0f2c40) 0 + primary-for Q3Frame (0x7f62da0f2bd0) + QWidget (0x7f62da0e6f80) 0 + primary-for QFrame (0x7f62da0f2c40) + QObject (0x7f62da0f2cb0) 0 + primary-for QWidget (0x7f62da0e6f80) + QPaintDevice (0x7f62da0f2d20) 16 + vptr=((& Q3TextView::_ZTV10Q3TextView) + 1360u) + +Vtable for Q3Url +Q3Url::_ZTV5Q3Url: 19u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5Q3Url) +16 Q3Url::~Q3Url +24 Q3Url::~Q3Url +32 Q3Url::setProtocol +40 Q3Url::setUser +48 Q3Url::setPassword +56 Q3Url::setHost +64 Q3Url::setPort +72 Q3Url::setPath +80 Q3Url::setEncodedPathAndQuery +88 Q3Url::setQuery +96 Q3Url::setRef +104 Q3Url::addPath +112 Q3Url::setFileName +120 Q3Url::toString +128 Q3Url::cdUp +136 Q3Url::reset +144 Q3Url::parse + +Class Q3Url + size=16 align=8 + base size=16 base align=8 +Q3Url (0x7f62da1151c0) 0 + vptr=((& Q3Url::_ZTV5Q3Url) + 16u) + +Vtable for Q3NetworkProtocolFactoryBase +Q3NetworkProtocolFactoryBase::_ZTV28Q3NetworkProtocolFactoryBase: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI28Q3NetworkProtocolFactoryBase) +16 Q3NetworkProtocolFactoryBase::~Q3NetworkProtocolFactoryBase +24 Q3NetworkProtocolFactoryBase::~Q3NetworkProtocolFactoryBase +32 __cxa_pure_virtual + +Class Q3NetworkProtocolFactoryBase + size=8 align=8 + base size=8 base align=8 +Q3NetworkProtocolFactoryBase (0x7f62da135690) 0 nearly-empty + vptr=((& Q3NetworkProtocolFactoryBase::_ZTV28Q3NetworkProtocolFactoryBase) + 16u) + +Vtable for Q3NetworkProtocol +Q3NetworkProtocol::_ZTV17Q3NetworkProtocol: 29u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17Q3NetworkProtocol) +16 Q3NetworkProtocol::metaObject +24 Q3NetworkProtocol::qt_metacast +32 Q3NetworkProtocol::qt_metacall +40 Q3NetworkProtocol::~Q3NetworkProtocol +48 Q3NetworkProtocol::~Q3NetworkProtocol +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 Q3NetworkProtocol::setUrl +120 Q3NetworkProtocol::setAutoDelete +128 Q3NetworkProtocol::supportedOperations +136 Q3NetworkProtocol::addOperation +144 Q3NetworkProtocol::clearOperationQueue +152 Q3NetworkProtocol::stop +160 Q3NetworkProtocol::processOperation +168 Q3NetworkProtocol::operationListChildren +176 Q3NetworkProtocol::operationMkDir +184 Q3NetworkProtocol::operationRemove +192 Q3NetworkProtocol::operationRename +200 Q3NetworkProtocol::operationGet +208 Q3NetworkProtocol::operationPut +216 Q3NetworkProtocol::operationPutChunk +224 Q3NetworkProtocol::checkConnection + +Class Q3NetworkProtocol + size=24 align=8 + base size=24 base align=8 +Q3NetworkProtocol (0x7f62da150af0) 0 + vptr=((& Q3NetworkProtocol::_ZTV17Q3NetworkProtocol) + 16u) + QObject (0x7f62da150b60) 0 + primary-for Q3NetworkProtocol (0x7f62da150af0) + +Vtable for Q3NetworkOperation +Q3NetworkOperation::_ZTV18Q3NetworkOperation: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18Q3NetworkOperation) +16 Q3NetworkOperation::metaObject +24 Q3NetworkOperation::qt_metacast +32 Q3NetworkOperation::qt_metacall +40 Q3NetworkOperation::~Q3NetworkOperation +48 Q3NetworkOperation::~Q3NetworkOperation +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class Q3NetworkOperation + size=24 align=8 + base size=24 base align=8 +Q3NetworkOperation (0x7f62d9f77150) 0 + vptr=((& Q3NetworkOperation::_ZTV18Q3NetworkOperation) + 16u) + QObject (0x7f62d9f771c0) 0 + primary-for Q3NetworkOperation (0x7f62d9f77150) + +Vtable for Q3UrlOperator +Q3UrlOperator::_ZTV13Q3UrlOperator: 51u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13Q3UrlOperator) +16 Q3UrlOperator::metaObject +24 Q3UrlOperator::qt_metacast +32 Q3UrlOperator::qt_metacall +40 Q3UrlOperator::~Q3UrlOperator +48 Q3UrlOperator::~Q3UrlOperator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 Q3UrlOperator::setPath +120 Q3UrlOperator::cdUp +128 Q3UrlOperator::listChildren +136 Q3UrlOperator::mkdir +144 Q3UrlOperator::remove +152 Q3UrlOperator::rename +160 Q3UrlOperator::get +168 Q3UrlOperator::put +176 Q3UrlOperator::copy +184 Q3UrlOperator::copy +192 Q3UrlOperator::isDir +200 Q3UrlOperator::setNameFilter +208 Q3UrlOperator::info +216 Q3UrlOperator::stop +224 Q3UrlOperator::reset +232 Q3UrlOperator::parse +240 Q3UrlOperator::checkValid +248 Q3UrlOperator::clearEntries +256 (int (*)(...))-0x00000000000000010 +264 (int (*)(...))(& _ZTI13Q3UrlOperator) +272 Q3UrlOperator::_ZThn16_N13Q3UrlOperatorD1Ev +280 Q3UrlOperator::_ZThn16_N13Q3UrlOperatorD0Ev +288 Q3Url::setProtocol +296 Q3Url::setUser +304 Q3Url::setPassword +312 Q3Url::setHost +320 Q3Url::setPort +328 Q3UrlOperator::_ZThn16_N13Q3UrlOperator7setPathERK7QString +336 Q3Url::setEncodedPathAndQuery +344 Q3Url::setQuery +352 Q3Url::setRef +360 Q3Url::addPath +368 Q3Url::setFileName +376 Q3Url::toString +384 Q3UrlOperator::_ZThn16_N13Q3UrlOperator4cdUpEv +392 Q3UrlOperator::_ZThn16_N13Q3UrlOperator5resetEv +400 Q3UrlOperator::_ZThn16_N13Q3UrlOperator5parseERK7QString + +Class Q3UrlOperator + size=40 align=8 + base size=40 base align=8 +Q3UrlOperator (0x7f62da163c80) 0 + vptr=((& Q3UrlOperator::_ZTV13Q3UrlOperator) + 16u) + QObject (0x7f62d9f88930) 0 + primary-for Q3UrlOperator (0x7f62da163c80) + Q3Url (0x7f62d9f889a0) 16 + vptr=((& Q3UrlOperator::_ZTV13Q3UrlOperator) + 272u) + +Vtable for Q3FileIconProvider +Q3FileIconProvider::_ZTV18Q3FileIconProvider: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18Q3FileIconProvider) +16 Q3FileIconProvider::metaObject +24 Q3FileIconProvider::qt_metacast +32 Q3FileIconProvider::qt_metacall +40 Q3FileIconProvider::~Q3FileIconProvider +48 Q3FileIconProvider::~Q3FileIconProvider +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 Q3FileIconProvider::pixmap + +Class Q3FileIconProvider + size=16 align=8 + base size=16 base align=8 +Q3FileIconProvider (0x7f62d9fb4000) 0 + vptr=((& Q3FileIconProvider::_ZTV18Q3FileIconProvider) + 16u) + QObject (0x7f62d9fb4070) 0 + primary-for Q3FileIconProvider (0x7f62d9fb4000) + +Vtable for Q3FilePreview +Q3FilePreview::_ZTV13Q3FilePreview: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13Q3FilePreview) +16 Q3FilePreview::~Q3FilePreview +24 Q3FilePreview::~Q3FilePreview +32 __cxa_pure_virtual + +Class Q3FilePreview + size=8 align=8 + base size=8 base align=8 +Q3FilePreview (0x7f62d9fc3310) 0 nearly-empty + vptr=((& Q3FilePreview::_ZTV13Q3FilePreview) + 16u) + +Vtable for Q3FileDialog +Q3FileDialog::_ZTV12Q3FileDialog: 68u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12Q3FileDialog) +16 Q3FileDialog::metaObject +24 Q3FileDialog::qt_metacast +32 Q3FileDialog::qt_metacall +40 Q3FileDialog::~Q3FileDialog +48 Q3FileDialog::~Q3FileDialog +56 QWidget::event +64 Q3FileDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 Q3FileDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 Q3FileDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3FileDialog::done +456 QDialog::accept +464 QDialog::reject +472 Q3FileDialog::setSelectedFilter +480 Q3FileDialog::setSelectedFilter +488 (int (*)(...))-0x00000000000000010 +496 (int (*)(...))(& _ZTI12Q3FileDialog) +504 Q3FileDialog::_ZThn16_N12Q3FileDialogD1Ev +512 Q3FileDialog::_ZThn16_N12Q3FileDialogD0Ev +520 QWidget::_ZThn16_NK7QWidget7devTypeEv +528 QWidget::_ZThn16_NK7QWidget11paintEngineEv +536 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3FileDialog + size=88 align=8 + base size=88 base align=8 +Q3FileDialog (0x7f62d9fc3d90) 0 + vptr=((& Q3FileDialog::_ZTV12Q3FileDialog) + 16u) + QDialog (0x7f62d9fc3e00) 0 + primary-for Q3FileDialog (0x7f62d9fc3d90) + QWidget (0x7f62d9fc8980) 0 + primary-for QDialog (0x7f62d9fc3e00) + QObject (0x7f62d9fc3e70) 0 + primary-for QWidget (0x7f62d9fc8980) + QPaintDevice (0x7f62d9fc3ee0) 16 + vptr=((& Q3FileDialog::_ZTV12Q3FileDialog) + 504u) + +Vtable for Q3ProgressDialog +Q3ProgressDialog::_ZTV16Q3ProgressDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16Q3ProgressDialog) +16 Q3ProgressDialog::metaObject +24 Q3ProgressDialog::qt_metacast +32 Q3ProgressDialog::qt_metacall +40 Q3ProgressDialog::~Q3ProgressDialog +48 Q3ProgressDialog::~Q3ProgressDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 Q3ProgressDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 Q3ProgressDialog::resizeEvent +272 Q3ProgressDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 Q3ProgressDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 Q3ProgressDialog::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI16Q3ProgressDialog) +488 Q3ProgressDialog::_ZThn16_N16Q3ProgressDialogD1Ev +496 Q3ProgressDialog::_ZThn16_N16Q3ProgressDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3ProgressDialog + size=56 align=8 + base size=56 base align=8 +Q3ProgressDialog (0x7f62da008230) 0 + vptr=((& Q3ProgressDialog::_ZTV16Q3ProgressDialog) + 16u) + QDialog (0x7f62da0082a0) 0 + primary-for Q3ProgressDialog (0x7f62da008230) + QWidget (0x7f62d9ff4b00) 0 + primary-for QDialog (0x7f62da0082a0) + QObject (0x7f62da008310) 0 + primary-for QWidget (0x7f62d9ff4b00) + QPaintDevice (0x7f62da008380) 16 + vptr=((& Q3ProgressDialog::_ZTV16Q3ProgressDialog) + 488u) + +Vtable for Q3TabDialog +Q3TabDialog::_ZTV11Q3TabDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11Q3TabDialog) +16 Q3TabDialog::metaObject +24 Q3TabDialog::qt_metacast +32 Q3TabDialog::qt_metacall +40 Q3TabDialog::~Q3TabDialog +48 Q3TabDialog::~Q3TabDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 Q3TabDialog::paintEvent +256 QWidget::moveEvent +264 Q3TabDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 Q3TabDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 Q3TabDialog::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11Q3TabDialog) +488 Q3TabDialog::_ZThn16_N11Q3TabDialogD1Ev +496 Q3TabDialog::_ZThn16_N11Q3TabDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3TabDialog + size=48 align=8 + base size=48 base align=8 +Q3TabDialog (0x7f62da02aa10) 0 + vptr=((& Q3TabDialog::_ZTV11Q3TabDialog) + 16u) + QDialog (0x7f62da02aa80) 0 + primary-for Q3TabDialog (0x7f62da02aa10) + QWidget (0x7f62da02d200) 0 + primary-for QDialog (0x7f62da02aa80) + QObject (0x7f62da02aaf0) 0 + primary-for QWidget (0x7f62da02d200) + QPaintDevice (0x7f62da02ab60) 16 + vptr=((& Q3TabDialog::_ZTV11Q3TabDialog) + 488u) + +Vtable for Q3Wizard +Q3Wizard::_ZTV8Q3Wizard: 82u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8Q3Wizard) +16 Q3Wizard::metaObject +24 Q3Wizard::qt_metacast +32 Q3Wizard::qt_metacall +40 Q3Wizard::~Q3Wizard +48 Q3Wizard::~Q3Wizard +56 QWidget::event +64 Q3Wizard::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 Q3Wizard::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDialog::done +456 QDialog::accept +464 QDialog::reject +472 Q3Wizard::addPage +480 Q3Wizard::insertPage +488 Q3Wizard::removePage +496 Q3Wizard::showPage +504 Q3Wizard::appropriate +512 Q3Wizard::setAppropriate +520 Q3Wizard::setBackEnabled +528 Q3Wizard::setNextEnabled +536 Q3Wizard::setFinishEnabled +544 Q3Wizard::setHelpEnabled +552 Q3Wizard::setFinish +560 Q3Wizard::back +568 Q3Wizard::next +576 Q3Wizard::help +584 Q3Wizard::layOutButtonRow +592 Q3Wizard::layOutTitleRow +600 (int (*)(...))-0x00000000000000010 +608 (int (*)(...))(& _ZTI8Q3Wizard) +616 Q3Wizard::_ZThn16_N8Q3WizardD1Ev +624 Q3Wizard::_ZThn16_N8Q3WizardD0Ev +632 QWidget::_ZThn16_NK7QWidget7devTypeEv +640 QWidget::_ZThn16_NK7QWidget11paintEngineEv +648 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3Wizard + size=48 align=8 + base size=48 base align=8 +Q3Wizard (0x7f62da0515b0) 0 + vptr=((& Q3Wizard::_ZTV8Q3Wizard) + 16u) + QDialog (0x7f62da051620) 0 + primary-for Q3Wizard (0x7f62da0515b0) + QWidget (0x7f62da02d900) 0 + primary-for QDialog (0x7f62da051620) + QObject (0x7f62da051690) 0 + primary-for QWidget (0x7f62da02d900) + QPaintDevice (0x7f62da051700) 16 + vptr=((& Q3Wizard::_ZTV8Q3Wizard) + 616u) + +Vtable for Q3Accel +Q3Accel::_ZTV7Q3Accel: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7Q3Accel) +16 Q3Accel::metaObject +24 Q3Accel::qt_metacast +32 Q3Accel::qt_metacall +40 Q3Accel::~Q3Accel +48 Q3Accel::~Q3Accel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class Q3Accel + size=24 align=8 + base size=24 base align=8 +Q3Accel (0x7f62d9e704d0) 0 + vptr=((& Q3Accel::_ZTV7Q3Accel) + 16u) + QObject (0x7f62d9e70540) 0 + primary-for Q3Accel (0x7f62d9e704d0) + +Vtable for Q3BoxLayout +Q3BoxLayout::_ZTV11Q3BoxLayout: 49u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11Q3BoxLayout) +16 QBoxLayout::metaObject +24 QBoxLayout::qt_metacast +32 QBoxLayout::qt_metacall +40 Q3BoxLayout::~Q3BoxLayout +48 Q3BoxLayout::~Q3BoxLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QBoxLayout::invalidate +120 QLayout::geometry +128 QBoxLayout::addItem +136 QBoxLayout::expandingDirections +144 QBoxLayout::minimumSize +152 QBoxLayout::maximumSize +160 QBoxLayout::setGeometry +168 QBoxLayout::itemAt +176 QBoxLayout::takeAt +184 QLayout::indexOf +192 QBoxLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QBoxLayout::sizeHint +224 QBoxLayout::hasHeightForWidth +232 QBoxLayout::heightForWidth +240 QBoxLayout::minimumHeightForWidth +248 (int (*)(...))-0x00000000000000010 +256 (int (*)(...))(& _ZTI11Q3BoxLayout) +264 Q3BoxLayout::_ZThn16_N11Q3BoxLayoutD1Ev +272 Q3BoxLayout::_ZThn16_N11Q3BoxLayoutD0Ev +280 QBoxLayout::_ZThn16_NK10QBoxLayout8sizeHintEv +288 QBoxLayout::_ZThn16_NK10QBoxLayout11minimumSizeEv +296 QBoxLayout::_ZThn16_NK10QBoxLayout11maximumSizeEv +304 QBoxLayout::_ZThn16_NK10QBoxLayout19expandingDirectionsEv +312 QBoxLayout::_ZThn16_N10QBoxLayout11setGeometryERK5QRect +320 QLayout::_ZThn16_NK7QLayout8geometryEv +328 QLayout::_ZThn16_NK7QLayout7isEmptyEv +336 QBoxLayout::_ZThn16_NK10QBoxLayout17hasHeightForWidthEv +344 QBoxLayout::_ZThn16_NK10QBoxLayout14heightForWidthEi +352 QBoxLayout::_ZThn16_NK10QBoxLayout21minimumHeightForWidthEi +360 QBoxLayout::_ZThn16_N10QBoxLayout10invalidateEv +368 QLayoutItem::widget +376 QLayout::_ZThn16_N7QLayout6layoutEv +384 QLayoutItem::spacerItem + +Class Q3BoxLayout + size=32 align=8 + base size=28 base align=8 +Q3BoxLayout (0x7f62d9e87af0) 0 + vptr=((& Q3BoxLayout::_ZTV11Q3BoxLayout) + 16u) + QBoxLayout (0x7f62d9e87b60) 0 + primary-for Q3BoxLayout (0x7f62d9e87af0) + QLayout (0x7f62d9e72880) 0 + primary-for QBoxLayout (0x7f62d9e87b60) + QObject (0x7f62d9e87bd0) 0 + primary-for QLayout (0x7f62d9e72880) + QLayoutItem (0x7f62d9e87c40) 16 + vptr=((& Q3BoxLayout::_ZTV11Q3BoxLayout) + 264u) + +Vtable for Q3HBoxLayout +Q3HBoxLayout::_ZTV12Q3HBoxLayout: 49u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12Q3HBoxLayout) +16 QBoxLayout::metaObject +24 QBoxLayout::qt_metacast +32 QBoxLayout::qt_metacall +40 Q3HBoxLayout::~Q3HBoxLayout +48 Q3HBoxLayout::~Q3HBoxLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QBoxLayout::invalidate +120 QLayout::geometry +128 QBoxLayout::addItem +136 QBoxLayout::expandingDirections +144 QBoxLayout::minimumSize +152 QBoxLayout::maximumSize +160 QBoxLayout::setGeometry +168 QBoxLayout::itemAt +176 QBoxLayout::takeAt +184 QLayout::indexOf +192 QBoxLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QBoxLayout::sizeHint +224 QBoxLayout::hasHeightForWidth +232 QBoxLayout::heightForWidth +240 QBoxLayout::minimumHeightForWidth +248 (int (*)(...))-0x00000000000000010 +256 (int (*)(...))(& _ZTI12Q3HBoxLayout) +264 Q3HBoxLayout::_ZThn16_N12Q3HBoxLayoutD1Ev +272 Q3HBoxLayout::_ZThn16_N12Q3HBoxLayoutD0Ev +280 QBoxLayout::_ZThn16_NK10QBoxLayout8sizeHintEv +288 QBoxLayout::_ZThn16_NK10QBoxLayout11minimumSizeEv +296 QBoxLayout::_ZThn16_NK10QBoxLayout11maximumSizeEv +304 QBoxLayout::_ZThn16_NK10QBoxLayout19expandingDirectionsEv +312 QBoxLayout::_ZThn16_N10QBoxLayout11setGeometryERK5QRect +320 QLayout::_ZThn16_NK7QLayout8geometryEv +328 QLayout::_ZThn16_NK7QLayout7isEmptyEv +336 QBoxLayout::_ZThn16_NK10QBoxLayout17hasHeightForWidthEv +344 QBoxLayout::_ZThn16_NK10QBoxLayout14heightForWidthEi +352 QBoxLayout::_ZThn16_NK10QBoxLayout21minimumHeightForWidthEi +360 QBoxLayout::_ZThn16_N10QBoxLayout10invalidateEv +368 QLayoutItem::widget +376 QLayout::_ZThn16_N7QLayout6layoutEv +384 QLayoutItem::spacerItem + +Class Q3HBoxLayout + size=32 align=8 + base size=28 base align=8 +Q3HBoxLayout (0x7f62d9eb05b0) 0 + vptr=((& Q3HBoxLayout::_ZTV12Q3HBoxLayout) + 16u) + Q3BoxLayout (0x7f62d9eb0620) 0 + primary-for Q3HBoxLayout (0x7f62d9eb05b0) + QBoxLayout (0x7f62d9eb0690) 0 + primary-for Q3BoxLayout (0x7f62d9eb0620) + QLayout (0x7f62d9eb2200) 0 + primary-for QBoxLayout (0x7f62d9eb0690) + QObject (0x7f62d9eb0700) 0 + primary-for QLayout (0x7f62d9eb2200) + QLayoutItem (0x7f62d9eb0770) 16 + vptr=((& Q3HBoxLayout::_ZTV12Q3HBoxLayout) + 264u) + +Vtable for Q3VBoxLayout +Q3VBoxLayout::_ZTV12Q3VBoxLayout: 49u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12Q3VBoxLayout) +16 QBoxLayout::metaObject +24 QBoxLayout::qt_metacast +32 QBoxLayout::qt_metacall +40 Q3VBoxLayout::~Q3VBoxLayout +48 Q3VBoxLayout::~Q3VBoxLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QBoxLayout::invalidate +120 QLayout::geometry +128 QBoxLayout::addItem +136 QBoxLayout::expandingDirections +144 QBoxLayout::minimumSize +152 QBoxLayout::maximumSize +160 QBoxLayout::setGeometry +168 QBoxLayout::itemAt +176 QBoxLayout::takeAt +184 QLayout::indexOf +192 QBoxLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QBoxLayout::sizeHint +224 QBoxLayout::hasHeightForWidth +232 QBoxLayout::heightForWidth +240 QBoxLayout::minimumHeightForWidth +248 (int (*)(...))-0x00000000000000010 +256 (int (*)(...))(& _ZTI12Q3VBoxLayout) +264 Q3VBoxLayout::_ZThn16_N12Q3VBoxLayoutD1Ev +272 Q3VBoxLayout::_ZThn16_N12Q3VBoxLayoutD0Ev +280 QBoxLayout::_ZThn16_NK10QBoxLayout8sizeHintEv +288 QBoxLayout::_ZThn16_NK10QBoxLayout11minimumSizeEv +296 QBoxLayout::_ZThn16_NK10QBoxLayout11maximumSizeEv +304 QBoxLayout::_ZThn16_NK10QBoxLayout19expandingDirectionsEv +312 QBoxLayout::_ZThn16_N10QBoxLayout11setGeometryERK5QRect +320 QLayout::_ZThn16_NK7QLayout8geometryEv +328 QLayout::_ZThn16_NK7QLayout7isEmptyEv +336 QBoxLayout::_ZThn16_NK10QBoxLayout17hasHeightForWidthEv +344 QBoxLayout::_ZThn16_NK10QBoxLayout14heightForWidthEi +352 QBoxLayout::_ZThn16_NK10QBoxLayout21minimumHeightForWidthEi +360 QBoxLayout::_ZThn16_N10QBoxLayout10invalidateEv +368 QLayoutItem::widget +376 QLayout::_ZThn16_N7QLayout6layoutEv +384 QLayoutItem::spacerItem + +Class Q3VBoxLayout + size=32 align=8 + base size=28 base align=8 +Q3VBoxLayout (0x7f62d9eddbd0) 0 + vptr=((& Q3VBoxLayout::_ZTV12Q3VBoxLayout) + 16u) + Q3BoxLayout (0x7f62d9eddc40) 0 + primary-for Q3VBoxLayout (0x7f62d9eddbd0) + QBoxLayout (0x7f62d9eddcb0) 0 + primary-for Q3BoxLayout (0x7f62d9eddc40) + QLayout (0x7f62d9ed4c80) 0 + primary-for QBoxLayout (0x7f62d9eddcb0) + QObject (0x7f62d9eddd20) 0 + primary-for QLayout (0x7f62d9ed4c80) + QLayoutItem (0x7f62d9eddd90) 16 + vptr=((& Q3VBoxLayout::_ZTV12Q3VBoxLayout) + 264u) + +Vtable for Q3StrList +Q3StrList::_ZTV9Q3StrList: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9Q3StrList) +16 Q3PtrList::count [with type = char] +24 Q3PtrList::clear [with type = char] +32 Q3StrList::~Q3StrList +40 Q3StrList::~Q3StrList +48 Q3StrList::newItem +56 Q3StrList::deleteItem +64 Q3StrList::compareItems +72 Q3StrList::read +80 Q3StrList::write + +Class Q3StrList + size=64 align=8 + base size=57 base align=8 +Q3StrList (0x7f62d9f07700) 0 + vptr=((& Q3StrList::_ZTV9Q3StrList) + 16u) + Q3PtrList (0x7f62d9f07770) 0 + primary-for Q3StrList (0x7f62d9f07700) + Q3GList (0x7f62d9f077e0) 0 + primary-for Q3PtrList (0x7f62d9f07770) + Q3PtrCollection (0x7f62d9f07850) 0 + primary-for Q3GList (0x7f62d9f077e0) + +Vtable for Q3StrIList +Q3StrIList::_ZTV10Q3StrIList: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10Q3StrIList) +16 Q3PtrList::count [with type = char] +24 Q3PtrList::clear [with type = char] +32 Q3StrIList::~Q3StrIList +40 Q3StrIList::~Q3StrIList +48 Q3StrList::newItem +56 Q3StrList::deleteItem +64 Q3StrIList::compareItems +72 Q3StrList::read +80 Q3StrList::write + +Class Q3StrIList + size=64 align=8 + base size=57 base align=8 +Q3StrIList (0x7f62d9d6b150) 0 + vptr=((& Q3StrIList::_ZTV10Q3StrIList) + 16u) + Q3StrList (0x7f62d9d6b1c0) 0 + primary-for Q3StrIList (0x7f62d9d6b150) + Q3PtrList (0x7f62d9d6b230) 0 + primary-for Q3StrList (0x7f62d9d6b1c0) + Q3GList (0x7f62d9d6b2a0) 0 + primary-for Q3PtrList (0x7f62d9d6b230) + Q3PtrCollection (0x7f62d9d6b310) 0 + primary-for Q3GList (0x7f62d9d6b2a0) + +Vtable for Q3DragObject +Q3DragObject::_ZTV12Q3DragObject: 24u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12Q3DragObject) +16 Q3DragObject::metaObject +24 Q3DragObject::qt_metacast +32 Q3DragObject::qt_metacall +40 Q3DragObject::~Q3DragObject +48 Q3DragObject::~Q3DragObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 Q3DragObject::setPixmap +120 Q3DragObject::setPixmap +128 Q3DragObject::drag +136 (int (*)(...))-0x00000000000000010 +144 (int (*)(...))(& _ZTI12Q3DragObject) +152 Q3DragObject::_ZThn16_N12Q3DragObjectD1Ev +160 Q3DragObject::_ZThn16_N12Q3DragObjectD0Ev +168 __cxa_pure_virtual +176 QMimeSource::provides +184 __cxa_pure_virtual + +Class Q3DragObject + size=24 align=8 + base size=24 base align=8 +Q3DragObject (0x7f62d9d85280) 0 + vptr=((& Q3DragObject::_ZTV12Q3DragObject) + 16u) + QObject (0x7f62d9d82b60) 0 + primary-for Q3DragObject (0x7f62d9d85280) + QMimeSource (0x7f62d9d82bd0) 16 nearly-empty + vptr=((& Q3DragObject::_ZTV12Q3DragObject) + 152u) + +Vtable for Q3StoredDrag +Q3StoredDrag::_ZTV12Q3StoredDrag: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12Q3StoredDrag) +16 Q3StoredDrag::metaObject +24 Q3StoredDrag::qt_metacast +32 Q3StoredDrag::qt_metacall +40 Q3StoredDrag::~Q3StoredDrag +48 Q3StoredDrag::~Q3StoredDrag +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 Q3DragObject::setPixmap +120 Q3DragObject::setPixmap +128 Q3DragObject::drag +136 Q3StoredDrag::setEncodedData +144 Q3StoredDrag::format +152 Q3StoredDrag::encodedData +160 (int (*)(...))-0x00000000000000010 +168 (int (*)(...))(& _ZTI12Q3StoredDrag) +176 Q3StoredDrag::_ZThn16_N12Q3StoredDragD1Ev +184 Q3StoredDrag::_ZThn16_N12Q3StoredDragD0Ev +192 Q3StoredDrag::_ZThn16_NK12Q3StoredDrag6formatEi +200 QMimeSource::provides +208 Q3StoredDrag::_ZThn16_NK12Q3StoredDrag11encodedDataEPKc + +Class Q3StoredDrag + size=24 align=8 + base size=24 base align=8 +Q3StoredDrag (0x7f62d9da23f0) 0 + vptr=((& Q3StoredDrag::_ZTV12Q3StoredDrag) + 16u) + Q3DragObject (0x7f62d9d85f00) 0 + primary-for Q3StoredDrag (0x7f62d9da23f0) + QObject (0x7f62d9da2460) 0 + primary-for Q3DragObject (0x7f62d9d85f00) + QMimeSource (0x7f62d9da24d0) 16 nearly-empty + vptr=((& Q3StoredDrag::_ZTV12Q3StoredDrag) + 176u) + +Vtable for Q3TextDrag +Q3TextDrag::_ZTV10Q3TextDrag: 28u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10Q3TextDrag) +16 Q3TextDrag::metaObject +24 Q3TextDrag::qt_metacast +32 Q3TextDrag::qt_metacall +40 Q3TextDrag::~Q3TextDrag +48 Q3TextDrag::~Q3TextDrag +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 Q3DragObject::setPixmap +120 Q3DragObject::setPixmap +128 Q3DragObject::drag +136 Q3TextDrag::setText +144 Q3TextDrag::setSubtype +152 Q3TextDrag::format +160 Q3TextDrag::encodedData +168 (int (*)(...))-0x00000000000000010 +176 (int (*)(...))(& _ZTI10Q3TextDrag) +184 Q3TextDrag::_ZThn16_N10Q3TextDragD1Ev +192 Q3TextDrag::_ZThn16_N10Q3TextDragD0Ev +200 Q3TextDrag::_ZThn16_NK10Q3TextDrag6formatEi +208 QMimeSource::provides +216 Q3TextDrag::_ZThn16_NK10Q3TextDrag11encodedDataEPKc + +Class Q3TextDrag + size=24 align=8 + base size=24 base align=8 +Q3TextDrag (0x7f62d9db4cb0) 0 + vptr=((& Q3TextDrag::_ZTV10Q3TextDrag) + 16u) + Q3DragObject (0x7f62d9da4900) 0 + primary-for Q3TextDrag (0x7f62d9db4cb0) + QObject (0x7f62d9db4d20) 0 + primary-for Q3DragObject (0x7f62d9da4900) + QMimeSource (0x7f62d9db4d90) 16 nearly-empty + vptr=((& Q3TextDrag::_ZTV10Q3TextDrag) + 184u) + +Vtable for Q3ImageDrag +Q3ImageDrag::_ZTV11Q3ImageDrag: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11Q3ImageDrag) +16 Q3ImageDrag::metaObject +24 Q3ImageDrag::qt_metacast +32 Q3ImageDrag::qt_metacall +40 Q3ImageDrag::~Q3ImageDrag +48 Q3ImageDrag::~Q3ImageDrag +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 Q3DragObject::setPixmap +120 Q3DragObject::setPixmap +128 Q3DragObject::drag +136 Q3ImageDrag::setImage +144 Q3ImageDrag::format +152 Q3ImageDrag::encodedData +160 (int (*)(...))-0x00000000000000010 +168 (int (*)(...))(& _ZTI11Q3ImageDrag) +176 Q3ImageDrag::_ZThn16_N11Q3ImageDragD1Ev +184 Q3ImageDrag::_ZThn16_N11Q3ImageDragD0Ev +192 Q3ImageDrag::_ZThn16_NK11Q3ImageDrag6formatEi +200 QMimeSource::provides +208 Q3ImageDrag::_ZThn16_NK11Q3ImageDrag11encodedDataEPKc + +Class Q3ImageDrag + size=24 align=8 + base size=24 base align=8 +Q3ImageDrag (0x7f62d9dd18c0) 0 + vptr=((& Q3ImageDrag::_ZTV11Q3ImageDrag) + 16u) + Q3DragObject (0x7f62d9dd4300) 0 + primary-for Q3ImageDrag (0x7f62d9dd18c0) + QObject (0x7f62d9dd1930) 0 + primary-for Q3DragObject (0x7f62d9dd4300) + QMimeSource (0x7f62d9dd19a0) 16 nearly-empty + vptr=((& Q3ImageDrag::_ZTV11Q3ImageDrag) + 176u) + +Vtable for Q3UriDrag +Q3UriDrag::_ZTV9Q3UriDrag: 28u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9Q3UriDrag) +16 Q3UriDrag::metaObject +24 Q3UriDrag::qt_metacast +32 Q3UriDrag::qt_metacall +40 Q3UriDrag::~Q3UriDrag +48 Q3UriDrag::~Q3UriDrag +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 Q3DragObject::setPixmap +120 Q3DragObject::setPixmap +128 Q3DragObject::drag +136 Q3StoredDrag::setEncodedData +144 Q3StoredDrag::format +152 Q3StoredDrag::encodedData +160 Q3UriDrag::setUris +168 (int (*)(...))-0x00000000000000010 +176 (int (*)(...))(& _ZTI9Q3UriDrag) +184 Q3UriDrag::_ZThn16_N9Q3UriDragD1Ev +192 Q3UriDrag::_ZThn16_N9Q3UriDragD0Ev +200 Q3StoredDrag::_ZThn16_NK12Q3StoredDrag6formatEi +208 QMimeSource::provides +216 Q3StoredDrag::_ZThn16_NK12Q3StoredDrag11encodedDataEPKc + +Class Q3UriDrag + size=24 align=8 + base size=24 base align=8 +Q3UriDrag (0x7f62d9def4d0) 0 + vptr=((& Q3UriDrag::_ZTV9Q3UriDrag) + 16u) + Q3StoredDrag (0x7f62d9def540) 0 + primary-for Q3UriDrag (0x7f62d9def4d0) + Q3DragObject (0x7f62d9dd4d00) 0 + primary-for Q3StoredDrag (0x7f62d9def540) + QObject (0x7f62d9def5b0) 0 + primary-for Q3DragObject (0x7f62d9dd4d00) + QMimeSource (0x7f62d9def620) 16 nearly-empty + vptr=((& Q3UriDrag::_ZTV9Q3UriDrag) + 184u) + +Vtable for Q3ColorDrag +Q3ColorDrag::_ZTV11Q3ColorDrag: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11Q3ColorDrag) +16 Q3ColorDrag::metaObject +24 Q3ColorDrag::qt_metacast +32 Q3ColorDrag::qt_metacall +40 Q3ColorDrag::~Q3ColorDrag +48 Q3ColorDrag::~Q3ColorDrag +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 Q3DragObject::setPixmap +120 Q3DragObject::setPixmap +128 Q3DragObject::drag +136 Q3StoredDrag::setEncodedData +144 Q3StoredDrag::format +152 Q3StoredDrag::encodedData +160 (int (*)(...))-0x00000000000000010 +168 (int (*)(...))(& _ZTI11Q3ColorDrag) +176 Q3ColorDrag::_ZThn16_N11Q3ColorDragD1Ev +184 Q3ColorDrag::_ZThn16_N11Q3ColorDragD0Ev +192 Q3StoredDrag::_ZThn16_NK12Q3StoredDrag6formatEi +200 QMimeSource::provides +208 Q3StoredDrag::_ZThn16_NK12Q3StoredDrag11encodedDataEPKc + +Class Q3ColorDrag + size=40 align=8 + base size=40 base align=8 +Q3ColorDrag (0x7f62d9e0c000) 0 + vptr=((& Q3ColorDrag::_ZTV11Q3ColorDrag) + 16u) + Q3StoredDrag (0x7f62d9e0c070) 0 + primary-for Q3ColorDrag (0x7f62d9e0c000) + Q3DragObject (0x7f62d9e02a80) 0 + primary-for Q3StoredDrag (0x7f62d9e0c070) + QObject (0x7f62d9e0c0e0) 0 + primary-for Q3DragObject (0x7f62d9e02a80) + QMimeSource (0x7f62d9e0c150) 16 nearly-empty + vptr=((& Q3ColorDrag::_ZTV11Q3ColorDrag) + 176u) + +Vtable for Q3DropSite +Q3DropSite::_ZTV10Q3DropSite: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10Q3DropSite) +16 Q3DropSite::~Q3DropSite +24 Q3DropSite::~Q3DropSite + +Class Q3DropSite + size=8 align=8 + base size=8 base align=8 +Q3DropSite (0x7f62d9e1f460) 0 nearly-empty + vptr=((& Q3DropSite::_ZTV10Q3DropSite) + 16u) + +Vtable for Q3GridLayout +Q3GridLayout::_ZTV12Q3GridLayout: 49u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12Q3GridLayout) +16 QGridLayout::metaObject +24 QGridLayout::qt_metacast +32 QGridLayout::qt_metacall +40 Q3GridLayout::~Q3GridLayout +48 Q3GridLayout::~Q3GridLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGridLayout::invalidate +120 QLayout::geometry +128 QGridLayout::addItem +136 QGridLayout::expandingDirections +144 QGridLayout::minimumSize +152 QGridLayout::maximumSize +160 QGridLayout::setGeometry +168 QGridLayout::itemAt +176 QGridLayout::takeAt +184 QLayout::indexOf +192 QGridLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QGridLayout::sizeHint +224 QGridLayout::hasHeightForWidth +232 QGridLayout::heightForWidth +240 QGridLayout::minimumHeightForWidth +248 (int (*)(...))-0x00000000000000010 +256 (int (*)(...))(& _ZTI12Q3GridLayout) +264 Q3GridLayout::_ZThn16_N12Q3GridLayoutD1Ev +272 Q3GridLayout::_ZThn16_N12Q3GridLayoutD0Ev +280 QGridLayout::_ZThn16_NK11QGridLayout8sizeHintEv +288 QGridLayout::_ZThn16_NK11QGridLayout11minimumSizeEv +296 QGridLayout::_ZThn16_NK11QGridLayout11maximumSizeEv +304 QGridLayout::_ZThn16_NK11QGridLayout19expandingDirectionsEv +312 QGridLayout::_ZThn16_N11QGridLayout11setGeometryERK5QRect +320 QLayout::_ZThn16_NK7QLayout8geometryEv +328 QLayout::_ZThn16_NK7QLayout7isEmptyEv +336 QGridLayout::_ZThn16_NK11QGridLayout17hasHeightForWidthEv +344 QGridLayout::_ZThn16_NK11QGridLayout14heightForWidthEi +352 QGridLayout::_ZThn16_NK11QGridLayout21minimumHeightForWidthEi +360 QGridLayout::_ZThn16_N11QGridLayout10invalidateEv +368 QLayoutItem::widget +376 QLayout::_ZThn16_N7QLayout6layoutEv +384 QLayoutItem::spacerItem + +Class Q3GridLayout + size=32 align=8 + base size=28 base align=8 +Q3GridLayout (0x7f62d9e1f620) 0 + vptr=((& Q3GridLayout::_ZTV12Q3GridLayout) + 16u) + QGridLayout (0x7f62d9e1f690) 0 + primary-for Q3GridLayout (0x7f62d9e1f620) + QLayout (0x7f62d9e1d200) 0 + primary-for QGridLayout (0x7f62d9e1f690) + QObject (0x7f62d9e1f700) 0 + primary-for QLayout (0x7f62d9e1d200) + QLayoutItem (0x7f62d9e1f770) 16 + vptr=((& Q3GridLayout::_ZTV12Q3GridLayout) + 264u) + +Vtable for Q3PolygonScanner +Q3PolygonScanner::_ZTV16Q3PolygonScanner: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16Q3PolygonScanner) +16 Q3PolygonScanner::~Q3PolygonScanner +24 Q3PolygonScanner::~Q3PolygonScanner +32 __cxa_pure_virtual + +Class Q3PolygonScanner + size=8 align=8 + base size=8 base align=8 +Q3PolygonScanner (0x7f62d9e44700) 0 nearly-empty + vptr=((& Q3PolygonScanner::_ZTV16Q3PolygonScanner) + 16u) + +Vtable for Q3Process +Q3Process::_ZTV9Q3Process: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9Q3Process) +16 Q3Process::metaObject +24 Q3Process::qt_metacast +32 Q3Process::qt_metacall +40 Q3Process::~Q3Process +48 Q3Process::~Q3Process +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 Q3Process::connectNotify +104 Q3Process::disconnectNotify +112 Q3Process::setArguments +120 Q3Process::addArgument +128 Q3Process::setWorkingDirectory +136 Q3Process::start +144 Q3Process::launch +152 Q3Process::launch +160 Q3Process::readStdout +168 Q3Process::readStderr +176 Q3Process::readLineStdout +184 Q3Process::readLineStderr +192 Q3Process::writeToStdin +200 Q3Process::writeToStdin +208 Q3Process::closeStdin + +Class Q3Process + size=56 align=8 + base size=56 base align=8 +Q3Process (0x7f62d9e4f150) 0 + vptr=((& Q3Process::_ZTV9Q3Process) + 16u) + QObject (0x7f62d9e4f1c0) 0 + primary-for Q3Process (0x7f62d9e4f150) + +Vtable for Q3GCache +Q3GCache::_ZTV8Q3GCache: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8Q3GCache) +16 Q3GCache::count +24 Q3GCache::clear +32 Q3GCache::~Q3GCache +40 Q3GCache::~Q3GCache +48 Q3PtrCollection::newItem +56 __cxa_pure_virtual + +Class Q3GCache + size=48 align=8 + base size=41 base align=8 +Q3GCache (0x7f62d9c737e0) 0 + vptr=((& Q3GCache::_ZTV8Q3GCache) + 16u) + Q3PtrCollection (0x7f62d9c73850) 0 + primary-for Q3GCache (0x7f62d9c737e0) + +Class Q3GCacheIterator + size=8 align=8 + base size=8 base align=8 +Q3GCacheIterator (0x7f62d9c82770) 0 + +Vtable for Q3ObjectDictionary +Q3ObjectDictionary::_ZTV18Q3ObjectDictionary: 10u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18Q3ObjectDictionary) +16 Q3AsciiDict::count [with type = QMetaObject] +24 Q3AsciiDict::clear [with type = QMetaObject] +32 Q3ObjectDictionary::~Q3ObjectDictionary +40 Q3ObjectDictionary::~Q3ObjectDictionary +48 Q3PtrCollection::newItem +56 Q3AsciiDict::deleteItem [with type = QMetaObject] +64 Q3GDict::read +72 Q3GDict::write + +Class Q3ObjectDictionary + size=48 align=8 + base size=48 base align=8 +Q3ObjectDictionary (0x7f62d9d4a930) 0 + vptr=((& Q3ObjectDictionary::_ZTV18Q3ObjectDictionary) + 16u) + Q3AsciiDict (0x7f62d9d4a9a0) 0 + primary-for Q3ObjectDictionary (0x7f62d9d4a930) + Q3GDict (0x7f62d9d4aa10) 0 + primary-for Q3AsciiDict (0x7f62d9d4a9a0) + Q3PtrCollection (0x7f62d9d4aa80) 0 + primary-for Q3GDict (0x7f62d9d4aa10) + +Vtable for Q3Semaphore +Q3Semaphore::_ZTV11Q3Semaphore: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11Q3Semaphore) +16 Q3Semaphore::~Q3Semaphore +24 Q3Semaphore::~Q3Semaphore + +Class Q3Semaphore + size=16 align=8 + base size=16 base align=8 +Q3Semaphore (0x7f62d9bcc2a0) 0 + vptr=((& Q3Semaphore::_ZTV11Q3Semaphore) + 16u) + +Vtable for Q3Signal +Q3Signal::_ZTV8Q3Signal: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8Q3Signal) +16 Q3Signal::metaObject +24 Q3Signal::qt_metacast +32 Q3Signal::qt_metacall +40 Q3Signal::~Q3Signal +48 Q3Signal::~Q3Signal +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class Q3Signal + size=32 align=8 + base size=32 base align=8 +Q3Signal (0x7f62d9bcc850) 0 + vptr=((& Q3Signal::_ZTV8Q3Signal) + 16u) + QObject (0x7f62d9bcc8c0) 0 + primary-for Q3Signal (0x7f62d9bcc850) + +Vtable for Q3StrVec +Q3StrVec::_ZTV8Q3StrVec: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8Q3StrVec) +16 Q3PtrVector::count [with type = char] +24 Q3PtrVector::clear [with type = char] +32 Q3StrVec::~Q3StrVec +40 Q3StrVec::~Q3StrVec +48 Q3StrVec::newItem +56 Q3StrVec::deleteItem +64 Q3StrVec::compareItems +72 Q3StrVec::read +80 Q3StrVec::write + +Class Q3StrVec + size=40 align=8 + base size=33 base align=8 +Q3StrVec (0x7f62d9be7a10) 0 + vptr=((& Q3StrVec::_ZTV8Q3StrVec) + 16u) + Q3PtrVector (0x7f62d9be7a80) 0 + primary-for Q3StrVec (0x7f62d9be7a10) + Q3GVector (0x7f62d9be7af0) 0 + primary-for Q3PtrVector (0x7f62d9be7a80) + Q3PtrCollection (0x7f62d9be7b60) 0 + primary-for Q3GVector (0x7f62d9be7af0) + +Vtable for Q3StrIVec +Q3StrIVec::_ZTV9Q3StrIVec: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9Q3StrIVec) +16 Q3PtrVector::count [with type = char] +24 Q3PtrVector::clear [with type = char] +32 Q3StrIVec::~Q3StrIVec +40 Q3StrIVec::~Q3StrIVec +48 Q3StrVec::newItem +56 Q3StrVec::deleteItem +64 Q3StrIVec::compareItems +72 Q3StrVec::read +80 Q3StrVec::write + +Class Q3StrIVec + size=40 align=8 + base size=33 base align=8 +Q3StrIVec (0x7f62d9c290e0) 0 + vptr=((& Q3StrIVec::_ZTV9Q3StrIVec) + 16u) + Q3StrVec (0x7f62d9c29150) 0 + primary-for Q3StrIVec (0x7f62d9c290e0) + Q3PtrVector (0x7f62d9c291c0) 0 + primary-for Q3StrVec (0x7f62d9c29150) + Q3GVector (0x7f62d9c29230) 0 + primary-for Q3PtrVector (0x7f62d9c291c0) + Q3PtrCollection (0x7f62d9c292a0) 0 + primary-for Q3GVector (0x7f62d9c29230) + +Class Q3PaintDeviceMetrics + size=8 align=8 + base size=8 base align=8 +Q3PaintDeviceMetrics (0x7f62d9a62230) 0 + +Class Q3Painter + size=8 align=8 + base size=8 base align=8 +Q3Painter (0x7f62d9a72230) 0 + QPainter (0x7f62d9a722a0) 0 + +Vtable for Q3Picture +Q3Picture::_ZTV9Q3Picture: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9Q3Picture) +16 Q3Picture::~Q3Picture +24 Q3Picture::~Q3Picture +32 QPicture::devType +40 QPicture::paintEngine +48 QPicture::metric +56 QPicture::setData + +Class Q3Picture + size=24 align=8 + base size=24 base align=8 +Q3Picture (0x7f62d9a944d0) 0 + vptr=((& Q3Picture::_ZTV9Q3Picture) + 16u) + QPicture (0x7f62d9a94540) 0 + primary-for Q3Picture (0x7f62d9a944d0) + QPaintDevice (0x7f62d9a945b0) 0 + primary-for QPicture (0x7f62d9a94540) + +Class Q3PointArray + size=8 align=8 + base size=8 base align=8 +Q3PointArray (0x7f62d9aa1620) 0 + QPolygon (0x7f62d9aa1690) 0 + QVector (0x7f62d9aa1700) 0 + +Class Q3CanvasItemList + size=8 align=8 + base size=8 base align=8 +Q3CanvasItemList (0x7f62d9ada0e0) 0 + Q3ValueList (0x7f62d9ada150) 0 + QLinkedList (0x7f62d9ada1c0) 0 + +Vtable for Q3CanvasItem +Q3CanvasItem::_ZTV12Q3CanvasItem: 23u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12Q3CanvasItem) +16 Q3CanvasItem::~Q3CanvasItem +24 Q3CanvasItem::~Q3CanvasItem +32 Q3CanvasItem::moveBy +40 Q3CanvasItem::setAnimated +48 Q3CanvasItem::setVelocity +56 Q3CanvasItem::advance +64 __cxa_pure_virtual +72 Q3CanvasItem::setCanvas +80 __cxa_pure_virtual +88 Q3CanvasItem::setVisible +96 Q3CanvasItem::setSelected +104 Q3CanvasItem::setEnabled +112 Q3CanvasItem::setActive +120 Q3CanvasItem::rtti +128 __cxa_pure_virtual +136 Q3CanvasItem::boundingRectAdvanced +144 Q3CanvasItem::chunks +152 Q3CanvasItem::addToChunks +160 Q3CanvasItem::removeFromChunks +168 Q3CanvasItem::changeChunks +176 __cxa_pure_virtual + +Class Q3CanvasItem + size=56 align=8 + base size=49 base align=8 +Q3CanvasItem (0x7f62d9ada4d0) 0 + vptr=((& Q3CanvasItem::_ZTV12Q3CanvasItem) + 16u) + +Vtable for Q3Canvas +Q3Canvas::_ZTV8Q3Canvas: 38u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8Q3Canvas) +16 Q3Canvas::metaObject +24 Q3Canvas::qt_metacast +32 Q3Canvas::qt_metacall +40 Q3Canvas::~Q3Canvas +48 Q3Canvas::~Q3Canvas +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 Q3Canvas::setTiles +120 Q3Canvas::setBackgroundPixmap +128 Q3Canvas::setBackgroundColor +136 Q3Canvas::setTile +144 Q3Canvas::resize +152 Q3Canvas::retune +160 Q3Canvas::setChangedChunk +168 Q3Canvas::setChangedChunkContaining +176 Q3Canvas::setAllChanged +184 Q3Canvas::setChanged +192 Q3Canvas::setUnchanged +200 Q3Canvas::addView +208 Q3Canvas::removeView +216 Q3Canvas::addItem +224 Q3Canvas::addAnimation +232 Q3Canvas::removeItem +240 Q3Canvas::removeAnimation +248 Q3Canvas::setAdvancePeriod +256 Q3Canvas::setUpdatePeriod +264 Q3Canvas::setDoubleBuffering +272 Q3Canvas::advance +280 Q3Canvas::update +288 Q3Canvas::drawBackground +296 Q3Canvas::drawForeground + +Class Q3Canvas + size=160 align=8 + base size=154 base align=8 +Q3Canvas (0x7f62d9b153f0) 0 + vptr=((& Q3Canvas::_ZTV8Q3Canvas) + 16u) + QObject (0x7f62d9b15460) 0 + primary-for Q3Canvas (0x7f62d9b153f0) + +Vtable for Q3CanvasView +Q3CanvasView::_ZTV12Q3CanvasView: 102u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12Q3CanvasView) +16 Q3CanvasView::metaObject +24 Q3CanvasView::qt_metacast +32 Q3CanvasView::qt_metacall +40 Q3CanvasView::~Q3CanvasView +48 Q3CanvasView::~Q3CanvasView +56 QFrame::event +64 Q3ScrollView::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 Q3ScrollView::setVisible +128 Q3CanvasView::sizeHint +136 Q3ScrollView::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 Q3ScrollView::mousePressEvent +168 Q3ScrollView::mouseReleaseEvent +176 Q3ScrollView::mouseDoubleClickEvent +184 Q3ScrollView::mouseMoveEvent +192 Q3ScrollView::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 Q3Frame::paintEvent +256 QWidget::moveEvent +264 Q3ScrollView::resizeEvent +272 QWidget::closeEvent +280 Q3ScrollView::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 Q3ScrollView::focusNextPrevChild +400 Q3ScrollView::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 Q3ScrollView::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3ScrollView::frameChanged +456 Q3Frame::drawFrame +464 Q3CanvasView::drawContents +472 Q3ScrollView::setResizePolicy +480 Q3ScrollView::addChild +488 Q3ScrollView::moveChild +496 Q3ScrollView::setVScrollBarMode +504 Q3ScrollView::setHScrollBarMode +512 Q3ScrollView::setCornerWidget +520 Q3ScrollView::setDragAutoScroll +528 Q3ScrollView::resizeContents +536 Q3ScrollView::setContentsPos +544 Q3CanvasView::drawContents +552 Q3ScrollView::drawContentsOffset +560 Q3ScrollView::contentsMousePressEvent +568 Q3ScrollView::contentsMouseReleaseEvent +576 Q3ScrollView::contentsMouseDoubleClickEvent +584 Q3ScrollView::contentsMouseMoveEvent +592 Q3ScrollView::contentsDragEnterEvent +600 Q3ScrollView::contentsDragMoveEvent +608 Q3ScrollView::contentsDragLeaveEvent +616 Q3ScrollView::contentsDropEvent +624 Q3ScrollView::contentsWheelEvent +632 Q3ScrollView::contentsContextMenuEvent +640 Q3ScrollView::viewportPaintEvent +648 Q3ScrollView::viewportResizeEvent +656 Q3ScrollView::viewportMousePressEvent +664 Q3ScrollView::viewportMouseReleaseEvent +672 Q3ScrollView::viewportMouseDoubleClickEvent +680 Q3ScrollView::viewportMouseMoveEvent +688 Q3ScrollView::viewportDragEnterEvent +696 Q3ScrollView::viewportDragMoveEvent +704 Q3ScrollView::viewportDragLeaveEvent +712 Q3ScrollView::viewportDropEvent +720 Q3ScrollView::viewportWheelEvent +728 Q3ScrollView::viewportContextMenuEvent +736 Q3ScrollView::setMargins +744 Q3ScrollView::setHBarGeometry +752 Q3ScrollView::setVBarGeometry +760 (int (*)(...))-0x00000000000000010 +768 (int (*)(...))(& _ZTI12Q3CanvasView) +776 Q3CanvasView::_ZThn16_N12Q3CanvasViewD1Ev +784 Q3CanvasView::_ZThn16_N12Q3CanvasViewD0Ev +792 QWidget::_ZThn16_NK7QWidget7devTypeEv +800 QWidget::_ZThn16_NK7QWidget11paintEngineEv +808 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3CanvasView + size=72 align=8 + base size=72 base align=8 +Q3CanvasView (0x7f62d9b55150) 0 + vptr=((& Q3CanvasView::_ZTV12Q3CanvasView) + 16u) + Q3ScrollView (0x7f62d9b551c0) 0 + primary-for Q3CanvasView (0x7f62d9b55150) + Q3Frame (0x7f62d9b55230) 0 + primary-for Q3ScrollView (0x7f62d9b551c0) + QFrame (0x7f62d9b552a0) 0 + primary-for Q3Frame (0x7f62d9b55230) + QWidget (0x7f62d9b52500) 0 + primary-for QFrame (0x7f62d9b552a0) + QObject (0x7f62d9b55310) 0 + primary-for QWidget (0x7f62d9b52500) + QPaintDevice (0x7f62d9b55380) 16 + vptr=((& Q3CanvasView::_ZTV12Q3CanvasView) + 776u) + +Vtable for Q3CanvasPixmap +Q3CanvasPixmap::_ZTV14Q3CanvasPixmap: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14Q3CanvasPixmap) +16 Q3CanvasPixmap::~Q3CanvasPixmap +24 Q3CanvasPixmap::~Q3CanvasPixmap +32 QPixmap::devType +40 QPixmap::paintEngine +48 QPixmap::metric + +Class Q3CanvasPixmap + size=40 align=8 + base size=40 base align=8 +Q3CanvasPixmap (0x7f62d994e9a0) 0 + vptr=((& Q3CanvasPixmap::_ZTV14Q3CanvasPixmap) + 16u) + QPixmap (0x7f62d994ea10) 0 + primary-for Q3CanvasPixmap (0x7f62d994e9a0) + QPaintDevice (0x7f62d994ea80) 0 + primary-for QPixmap (0x7f62d994ea10) + +Class Q3CanvasPixmapArray + size=16 align=8 + base size=16 base align=8 +Q3CanvasPixmapArray (0x7f62d9954d20) 0 + +Vtable for Q3CanvasSprite +Q3CanvasSprite::_ZTV14Q3CanvasSprite: 26u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14Q3CanvasSprite) +16 Q3CanvasSprite::~Q3CanvasSprite +24 Q3CanvasSprite::~Q3CanvasSprite +32 Q3CanvasItem::moveBy +40 Q3CanvasItem::setAnimated +48 Q3CanvasItem::setVelocity +56 Q3CanvasSprite::advance +64 Q3CanvasSprite::collidesWith +72 Q3CanvasItem::setCanvas +80 Q3CanvasSprite::draw +88 Q3CanvasItem::setVisible +96 Q3CanvasItem::setSelected +104 Q3CanvasItem::setEnabled +112 Q3CanvasItem::setActive +120 Q3CanvasSprite::rtti +128 Q3CanvasSprite::boundingRect +136 Q3CanvasItem::boundingRectAdvanced +144 Q3CanvasItem::chunks +152 Q3CanvasSprite::addToChunks +160 Q3CanvasSprite::removeFromChunks +168 Q3CanvasSprite::changeChunks +176 Q3CanvasSprite::collidesWith +184 Q3CanvasSprite::move +192 Q3CanvasSprite::setFrameAnimation +200 Q3CanvasSprite::imageAdvanced + +Class Q3CanvasSprite + size=72 align=8 + base size=72 base align=8 +Q3CanvasSprite (0x7f62d9963c40) 0 + vptr=((& Q3CanvasSprite::_ZTV14Q3CanvasSprite) + 16u) + Q3CanvasItem (0x7f62d9963cb0) 0 + primary-for Q3CanvasSprite (0x7f62d9963c40) + +Vtable for Q3CanvasPolygonalItem +Q3CanvasPolygonalItem::_ZTV21Q3CanvasPolygonalItem: 28u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21Q3CanvasPolygonalItem) +16 Q3CanvasPolygonalItem::~Q3CanvasPolygonalItem +24 Q3CanvasPolygonalItem::~Q3CanvasPolygonalItem +32 Q3CanvasItem::moveBy +40 Q3CanvasItem::setAnimated +48 Q3CanvasItem::setVelocity +56 Q3CanvasItem::advance +64 Q3CanvasPolygonalItem::collidesWith +72 Q3CanvasItem::setCanvas +80 Q3CanvasPolygonalItem::draw +88 Q3CanvasItem::setVisible +96 Q3CanvasItem::setSelected +104 Q3CanvasItem::setEnabled +112 Q3CanvasItem::setActive +120 Q3CanvasPolygonalItem::rtti +128 Q3CanvasPolygonalItem::boundingRect +136 Q3CanvasItem::boundingRectAdvanced +144 Q3CanvasPolygonalItem::chunks +152 Q3CanvasItem::addToChunks +160 Q3CanvasItem::removeFromChunks +168 Q3CanvasItem::changeChunks +176 Q3CanvasPolygonalItem::collidesWith +184 Q3CanvasPolygonalItem::setPen +192 Q3CanvasPolygonalItem::setBrush +200 __cxa_pure_virtual +208 Q3CanvasPolygonalItem::areaPointsAdvanced +216 __cxa_pure_virtual + +Class Q3CanvasPolygonalItem + size=80 align=8 + base size=73 base align=8 +Q3CanvasPolygonalItem (0x7f62d9981380) 0 + vptr=((& Q3CanvasPolygonalItem::_ZTV21Q3CanvasPolygonalItem) + 16u) + Q3CanvasItem (0x7f62d99813f0) 0 + primary-for Q3CanvasPolygonalItem (0x7f62d9981380) + +Vtable for Q3CanvasRectangle +Q3CanvasRectangle::_ZTV17Q3CanvasRectangle: 28u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17Q3CanvasRectangle) +16 Q3CanvasRectangle::~Q3CanvasRectangle +24 Q3CanvasRectangle::~Q3CanvasRectangle +32 Q3CanvasItem::moveBy +40 Q3CanvasItem::setAnimated +48 Q3CanvasItem::setVelocity +56 Q3CanvasItem::advance +64 Q3CanvasRectangle::collidesWith +72 Q3CanvasItem::setCanvas +80 Q3CanvasPolygonalItem::draw +88 Q3CanvasItem::setVisible +96 Q3CanvasItem::setSelected +104 Q3CanvasItem::setEnabled +112 Q3CanvasItem::setActive +120 Q3CanvasRectangle::rtti +128 Q3CanvasPolygonalItem::boundingRect +136 Q3CanvasItem::boundingRectAdvanced +144 Q3CanvasRectangle::chunks +152 Q3CanvasItem::addToChunks +160 Q3CanvasItem::removeFromChunks +168 Q3CanvasItem::changeChunks +176 Q3CanvasRectangle::collidesWith +184 Q3CanvasPolygonalItem::setPen +192 Q3CanvasPolygonalItem::setBrush +200 Q3CanvasRectangle::areaPoints +208 Q3CanvasPolygonalItem::areaPointsAdvanced +216 Q3CanvasRectangle::drawShape + +Class Q3CanvasRectangle + size=88 align=8 + base size=84 base align=8 +Q3CanvasRectangle (0x7f62d9981700) 0 + vptr=((& Q3CanvasRectangle::_ZTV17Q3CanvasRectangle) + 16u) + Q3CanvasPolygonalItem (0x7f62d9992000) 0 + primary-for Q3CanvasRectangle (0x7f62d9981700) + Q3CanvasItem (0x7f62d9992070) 0 + primary-for Q3CanvasPolygonalItem (0x7f62d9992000) + +Vtable for Q3CanvasPolygon +Q3CanvasPolygon::_ZTV15Q3CanvasPolygon: 28u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15Q3CanvasPolygon) +16 Q3CanvasPolygon::~Q3CanvasPolygon +24 Q3CanvasPolygon::~Q3CanvasPolygon +32 Q3CanvasPolygon::moveBy +40 Q3CanvasItem::setAnimated +48 Q3CanvasItem::setVelocity +56 Q3CanvasItem::advance +64 Q3CanvasPolygonalItem::collidesWith +72 Q3CanvasItem::setCanvas +80 Q3CanvasPolygonalItem::draw +88 Q3CanvasItem::setVisible +96 Q3CanvasItem::setSelected +104 Q3CanvasItem::setEnabled +112 Q3CanvasItem::setActive +120 Q3CanvasPolygon::rtti +128 Q3CanvasPolygonalItem::boundingRect +136 Q3CanvasItem::boundingRectAdvanced +144 Q3CanvasPolygonalItem::chunks +152 Q3CanvasItem::addToChunks +160 Q3CanvasItem::removeFromChunks +168 Q3CanvasItem::changeChunks +176 Q3CanvasPolygonalItem::collidesWith +184 Q3CanvasPolygonalItem::setPen +192 Q3CanvasPolygonalItem::setBrush +200 Q3CanvasPolygon::areaPoints +208 Q3CanvasPolygonalItem::areaPointsAdvanced +216 Q3CanvasPolygon::drawShape + +Class Q3CanvasPolygon + size=88 align=8 + base size=88 base align=8 +Q3CanvasPolygon (0x7f62d99a0380) 0 + vptr=((& Q3CanvasPolygon::_ZTV15Q3CanvasPolygon) + 16u) + Q3CanvasPolygonalItem (0x7f62d99a03f0) 0 + primary-for Q3CanvasPolygon (0x7f62d99a0380) + Q3CanvasItem (0x7f62d99a0460) 0 + primary-for Q3CanvasPolygonalItem (0x7f62d99a03f0) + +Vtable for Q3CanvasSpline +Q3CanvasSpline::_ZTV14Q3CanvasSpline: 28u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14Q3CanvasSpline) +16 Q3CanvasSpline::~Q3CanvasSpline +24 Q3CanvasSpline::~Q3CanvasSpline +32 Q3CanvasPolygon::moveBy +40 Q3CanvasItem::setAnimated +48 Q3CanvasItem::setVelocity +56 Q3CanvasItem::advance +64 Q3CanvasPolygonalItem::collidesWith +72 Q3CanvasItem::setCanvas +80 Q3CanvasPolygonalItem::draw +88 Q3CanvasItem::setVisible +96 Q3CanvasItem::setSelected +104 Q3CanvasItem::setEnabled +112 Q3CanvasItem::setActive +120 Q3CanvasSpline::rtti +128 Q3CanvasPolygonalItem::boundingRect +136 Q3CanvasItem::boundingRectAdvanced +144 Q3CanvasPolygonalItem::chunks +152 Q3CanvasItem::addToChunks +160 Q3CanvasItem::removeFromChunks +168 Q3CanvasItem::changeChunks +176 Q3CanvasPolygonalItem::collidesWith +184 Q3CanvasPolygonalItem::setPen +192 Q3CanvasPolygonalItem::setBrush +200 Q3CanvasPolygon::areaPoints +208 Q3CanvasPolygonalItem::areaPointsAdvanced +216 Q3CanvasPolygon::drawShape + +Class Q3CanvasSpline + size=104 align=8 + base size=97 base align=8 +Q3CanvasSpline (0x7f62d99a0620) 0 + vptr=((& Q3CanvasSpline::_ZTV14Q3CanvasSpline) + 16u) + Q3CanvasPolygon (0x7f62d99a0690) 0 + primary-for Q3CanvasSpline (0x7f62d99a0620) + Q3CanvasPolygonalItem (0x7f62d99a0700) 0 + primary-for Q3CanvasPolygon (0x7f62d99a0690) + Q3CanvasItem (0x7f62d99a0770) 0 + primary-for Q3CanvasPolygonalItem (0x7f62d99a0700) + +Vtable for Q3CanvasLine +Q3CanvasLine::_ZTV12Q3CanvasLine: 28u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12Q3CanvasLine) +16 Q3CanvasLine::~Q3CanvasLine +24 Q3CanvasLine::~Q3CanvasLine +32 Q3CanvasLine::moveBy +40 Q3CanvasItem::setAnimated +48 Q3CanvasItem::setVelocity +56 Q3CanvasItem::advance +64 Q3CanvasPolygonalItem::collidesWith +72 Q3CanvasItem::setCanvas +80 Q3CanvasPolygonalItem::draw +88 Q3CanvasItem::setVisible +96 Q3CanvasItem::setSelected +104 Q3CanvasItem::setEnabled +112 Q3CanvasItem::setActive +120 Q3CanvasLine::rtti +128 Q3CanvasPolygonalItem::boundingRect +136 Q3CanvasItem::boundingRectAdvanced +144 Q3CanvasPolygonalItem::chunks +152 Q3CanvasItem::addToChunks +160 Q3CanvasItem::removeFromChunks +168 Q3CanvasItem::changeChunks +176 Q3CanvasPolygonalItem::collidesWith +184 Q3CanvasLine::setPen +192 Q3CanvasPolygonalItem::setBrush +200 Q3CanvasLine::areaPoints +208 Q3CanvasPolygonalItem::areaPointsAdvanced +216 Q3CanvasLine::drawShape + +Class Q3CanvasLine + size=96 align=8 + base size=92 base align=8 +Q3CanvasLine (0x7f62d99a0930) 0 + vptr=((& Q3CanvasLine::_ZTV12Q3CanvasLine) + 16u) + Q3CanvasPolygonalItem (0x7f62d99a09a0) 0 + primary-for Q3CanvasLine (0x7f62d99a0930) + Q3CanvasItem (0x7f62d99a0a10) 0 + primary-for Q3CanvasPolygonalItem (0x7f62d99a09a0) + +Vtable for Q3CanvasEllipse +Q3CanvasEllipse::_ZTV15Q3CanvasEllipse: 28u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15Q3CanvasEllipse) +16 Q3CanvasEllipse::~Q3CanvasEllipse +24 Q3CanvasEllipse::~Q3CanvasEllipse +32 Q3CanvasItem::moveBy +40 Q3CanvasItem::setAnimated +48 Q3CanvasItem::setVelocity +56 Q3CanvasItem::advance +64 Q3CanvasEllipse::collidesWith +72 Q3CanvasItem::setCanvas +80 Q3CanvasPolygonalItem::draw +88 Q3CanvasItem::setVisible +96 Q3CanvasItem::setSelected +104 Q3CanvasItem::setEnabled +112 Q3CanvasItem::setActive +120 Q3CanvasEllipse::rtti +128 Q3CanvasPolygonalItem::boundingRect +136 Q3CanvasItem::boundingRectAdvanced +144 Q3CanvasPolygonalItem::chunks +152 Q3CanvasItem::addToChunks +160 Q3CanvasItem::removeFromChunks +168 Q3CanvasItem::changeChunks +176 Q3CanvasEllipse::collidesWith +184 Q3CanvasPolygonalItem::setPen +192 Q3CanvasPolygonalItem::setBrush +200 Q3CanvasEllipse::areaPoints +208 Q3CanvasPolygonalItem::areaPointsAdvanced +216 Q3CanvasEllipse::drawShape + +Class Q3CanvasEllipse + size=96 align=8 + base size=92 base align=8 +Q3CanvasEllipse (0x7f62d99b5380) 0 + vptr=((& Q3CanvasEllipse::_ZTV15Q3CanvasEllipse) + 16u) + Q3CanvasPolygonalItem (0x7f62d99b53f0) 0 + primary-for Q3CanvasEllipse (0x7f62d99b5380) + Q3CanvasItem (0x7f62d99b5460) 0 + primary-for Q3CanvasPolygonalItem (0x7f62d99b53f0) + +Vtable for Q3CanvasText +Q3CanvasText::_ZTV12Q3CanvasText: 23u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12Q3CanvasText) +16 Q3CanvasText::~Q3CanvasText +24 Q3CanvasText::~Q3CanvasText +32 Q3CanvasText::moveBy +40 Q3CanvasItem::setAnimated +48 Q3CanvasItem::setVelocity +56 Q3CanvasItem::advance +64 Q3CanvasText::collidesWith +72 Q3CanvasItem::setCanvas +80 Q3CanvasText::draw +88 Q3CanvasItem::setVisible +96 Q3CanvasItem::setSelected +104 Q3CanvasItem::setEnabled +112 Q3CanvasItem::setActive +120 Q3CanvasText::rtti +128 Q3CanvasText::boundingRect +136 Q3CanvasItem::boundingRectAdvanced +144 Q3CanvasItem::chunks +152 Q3CanvasText::addToChunks +160 Q3CanvasText::removeFromChunks +168 Q3CanvasText::changeChunks +176 Q3CanvasText::collidesWith + +Class Q3CanvasText + size=128 align=8 + base size=128 base align=8 +Q3CanvasText (0x7f62d99b5e00) 0 + vptr=((& Q3CanvasText::_ZTV12Q3CanvasText) + 16u) + Q3CanvasItem (0x7f62d99b5e70) 0 + primary-for Q3CanvasText (0x7f62d99b5e00) + +Vtable for Q3IconDragItem +Q3IconDragItem::_ZTV14Q3IconDragItem: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14Q3IconDragItem) +16 Q3IconDragItem::~Q3IconDragItem +24 Q3IconDragItem::~Q3IconDragItem +32 Q3IconDragItem::data +40 Q3IconDragItem::setData + +Class Q3IconDragItem + size=16 align=8 + base size=16 base align=8 +Q3IconDragItem (0x7f62d99c5930) 0 + vptr=((& Q3IconDragItem::_ZTV14Q3IconDragItem) + 16u) + +Vtable for Q3IconDrag +Q3IconDrag::_ZTV10Q3IconDrag: 26u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10Q3IconDrag) +16 Q3IconDrag::metaObject +24 Q3IconDrag::qt_metacast +32 Q3IconDrag::qt_metacall +40 Q3IconDrag::~Q3IconDrag +48 Q3IconDrag::~Q3IconDrag +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 Q3DragObject::setPixmap +120 Q3DragObject::setPixmap +128 Q3DragObject::drag +136 Q3IconDrag::format +144 Q3IconDrag::encodedData +152 (int (*)(...))-0x00000000000000010 +160 (int (*)(...))(& _ZTI10Q3IconDrag) +168 Q3IconDrag::_ZThn16_N10Q3IconDragD1Ev +176 Q3IconDrag::_ZThn16_N10Q3IconDragD0Ev +184 Q3IconDrag::_ZThn16_NK10Q3IconDrag6formatEi +192 QMimeSource::provides +200 Q3IconDrag::_ZThn16_NK10Q3IconDrag11encodedDataEPKc + +Class Q3IconDrag + size=40 align=8 + base size=34 base align=8 +Q3IconDrag (0x7f62d99c5c40) 0 + vptr=((& Q3IconDrag::_ZTV10Q3IconDrag) + 16u) + Q3DragObject (0x7f62d9990c00) 0 + primary-for Q3IconDrag (0x7f62d99c5c40) + QObject (0x7f62d99c5cb0) 0 + primary-for Q3DragObject (0x7f62d9990c00) + QMimeSource (0x7f62d99c5d20) 16 nearly-empty + vptr=((& Q3IconDrag::_ZTV10Q3IconDrag) + 168u) + +Vtable for Q3IconViewItem +Q3IconViewItem::_ZTV14Q3IconViewItem: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14Q3IconViewItem) +16 Q3IconViewItem::~Q3IconViewItem +24 Q3IconViewItem::~Q3IconViewItem +32 Q3IconViewItem::setRenameEnabled +40 Q3IconViewItem::setDragEnabled +48 Q3IconViewItem::setDropEnabled +56 Q3IconViewItem::text +64 Q3IconViewItem::pixmap +72 Q3IconViewItem::picture +80 Q3IconViewItem::key +88 Q3IconViewItem::setSelected +96 Q3IconViewItem::setSelected +104 Q3IconViewItem::setSelectable +112 Q3IconViewItem::repaint +120 Q3IconViewItem::move +128 Q3IconViewItem::moveBy +136 Q3IconViewItem::move +144 Q3IconViewItem::moveBy +152 Q3IconViewItem::acceptDrop +160 Q3IconViewItem::compare +168 Q3IconViewItem::setText +176 Q3IconViewItem::setPixmap +184 Q3IconViewItem::setPicture +192 Q3IconViewItem::setText +200 Q3IconViewItem::setPixmap +208 Q3IconViewItem::setKey +216 Q3IconViewItem::rtti +224 Q3IconViewItem::removeRenameBox +232 Q3IconViewItem::calcRect +240 Q3IconViewItem::paintItem +248 Q3IconViewItem::paintFocus +256 Q3IconViewItem::dropped +264 Q3IconViewItem::dragEntered +272 Q3IconViewItem::dragLeft + +Class Q3IconViewItem + size=160 align=8 + base size=160 base align=8 +Q3IconViewItem (0x7f62d99ddf50) 0 + vptr=((& Q3IconViewItem::_ZTV14Q3IconViewItem) + 16u) + +Vtable for Q3IconView +Q3IconView::_ZTV10Q3IconView: 139u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10Q3IconView) +16 Q3IconView::metaObject +24 Q3IconView::qt_metacast +32 Q3IconView::qt_metacall +40 Q3IconView::~Q3IconView +48 Q3IconView::~Q3IconView +56 QFrame::event +64 Q3IconView::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 Q3ScrollView::setVisible +128 Q3IconView::sizeHint +136 Q3IconView::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 Q3ScrollView::mousePressEvent +168 Q3ScrollView::mouseReleaseEvent +176 Q3ScrollView::mouseDoubleClickEvent +184 Q3ScrollView::mouseMoveEvent +192 Q3ScrollView::wheelEvent +200 Q3IconView::keyPressEvent +208 QWidget::keyReleaseEvent +216 Q3IconView::focusInEvent +224 Q3IconView::focusOutEvent +232 Q3IconView::enterEvent +240 QWidget::leaveEvent +248 Q3Frame::paintEvent +256 QWidget::moveEvent +264 Q3IconView::resizeEvent +272 QWidget::closeEvent +280 Q3ScrollView::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 Q3IconView::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 Q3IconView::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 Q3IconView::inputMethodQuery +392 Q3ScrollView::focusNextPrevChild +400 Q3ScrollView::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 Q3ScrollView::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3ScrollView::frameChanged +456 Q3Frame::drawFrame +464 Q3ScrollView::drawContents +472 Q3ScrollView::setResizePolicy +480 Q3ScrollView::addChild +488 Q3ScrollView::moveChild +496 Q3ScrollView::setVScrollBarMode +504 Q3ScrollView::setHScrollBarMode +512 Q3ScrollView::setCornerWidget +520 Q3ScrollView::setDragAutoScroll +528 Q3ScrollView::resizeContents +536 Q3IconView::setContentsPos +544 Q3IconView::drawContents +552 Q3ScrollView::drawContentsOffset +560 Q3IconView::contentsMousePressEvent +568 Q3IconView::contentsMouseReleaseEvent +576 Q3IconView::contentsMouseDoubleClickEvent +584 Q3IconView::contentsMouseMoveEvent +592 Q3IconView::contentsDragEnterEvent +600 Q3IconView::contentsDragMoveEvent +608 Q3IconView::contentsDragLeaveEvent +616 Q3IconView::contentsDropEvent +624 Q3ScrollView::contentsWheelEvent +632 Q3IconView::contentsContextMenuEvent +640 Q3ScrollView::viewportPaintEvent +648 Q3ScrollView::viewportResizeEvent +656 Q3ScrollView::viewportMousePressEvent +664 Q3ScrollView::viewportMouseReleaseEvent +672 Q3ScrollView::viewportMouseDoubleClickEvent +680 Q3ScrollView::viewportMouseMoveEvent +688 Q3ScrollView::viewportDragEnterEvent +696 Q3ScrollView::viewportDragMoveEvent +704 Q3ScrollView::viewportDragLeaveEvent +712 Q3ScrollView::viewportDropEvent +720 Q3ScrollView::viewportWheelEvent +728 Q3ScrollView::viewportContextMenuEvent +736 Q3ScrollView::setMargins +744 Q3ScrollView::setHBarGeometry +752 Q3ScrollView::setVBarGeometry +760 Q3IconView::insertItem +768 Q3IconView::takeItem +776 Q3IconView::setCurrentItem +784 Q3IconView::setSelected +792 Q3IconView::setSelectionMode +800 Q3IconView::selectAll +808 Q3IconView::clearSelection +816 Q3IconView::invertSelection +824 Q3IconView::repaintItem +832 Q3IconView::clear +840 Q3IconView::setGridX +848 Q3IconView::setGridY +856 Q3IconView::setSpacing +864 Q3IconView::setItemTextPos +872 Q3IconView::setItemTextBackground +880 Q3IconView::setArrangement +888 Q3IconView::setResizeMode +896 Q3IconView::setMaxItemWidth +904 Q3IconView::setMaxItemTextLength +912 Q3IconView::setAutoArrange +920 Q3IconView::setShowToolTips +928 Q3IconView::setItemsMovable +936 Q3IconView::setWordWrapIconText +944 Q3IconView::sort +952 Q3IconView::arrangeItemsInGrid +960 Q3IconView::arrangeItemsInGrid +968 Q3IconView::updateContents +976 Q3IconView::doAutoScroll +984 Q3IconView::adjustItems +992 Q3IconView::slotUpdate +1000 Q3IconView::drawRubber +1008 Q3IconView::dragObject +1016 Q3IconView::startDrag +1024 Q3IconView::insertInGrid +1032 Q3IconView::drawBackground +1040 Q3IconView::drawDragShapes +1048 Q3IconView::initDragEnter +1056 (int (*)(...))-0x00000000000000010 +1064 (int (*)(...))(& _ZTI10Q3IconView) +1072 Q3IconView::_ZThn16_N10Q3IconViewD1Ev +1080 Q3IconView::_ZThn16_N10Q3IconViewD0Ev +1088 QWidget::_ZThn16_NK7QWidget7devTypeEv +1096 QWidget::_ZThn16_NK7QWidget11paintEngineEv +1104 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3IconView + size=64 align=8 + base size=64 base align=8 +Q3IconView (0x7f62d99ebaf0) 0 + vptr=((& Q3IconView::_ZTV10Q3IconView) + 16u) + Q3ScrollView (0x7f62d99ebb60) 0 + primary-for Q3IconView (0x7f62d99ebaf0) + Q3Frame (0x7f62d99ebbd0) 0 + primary-for Q3ScrollView (0x7f62d99ebb60) + QFrame (0x7f62d99ebc40) 0 + primary-for Q3Frame (0x7f62d99ebbd0) + QWidget (0x7f62d99e7380) 0 + primary-for QFrame (0x7f62d99ebc40) + QObject (0x7f62d99ebcb0) 0 + primary-for QWidget (0x7f62d99e7380) + QPaintDevice (0x7f62d99ebd20) 16 + vptr=((& Q3IconView::_ZTV10Q3IconView) + 1072u) + +Vtable for Q3ListBox +Q3ListBox::_ZTV9Q3ListBox: 119u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9Q3ListBox) +16 Q3ListBox::metaObject +24 Q3ListBox::qt_metacast +32 Q3ListBox::qt_metacall +40 Q3ListBox::~Q3ListBox +48 Q3ListBox::~Q3ListBox +56 QFrame::event +64 Q3ListBox::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 Q3ScrollView::setVisible +128 Q3ListBox::sizeHint +136 Q3ListBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 Q3ListBox::mousePressEvent +168 Q3ListBox::mouseReleaseEvent +176 Q3ListBox::mouseDoubleClickEvent +184 Q3ListBox::mouseMoveEvent +192 Q3ScrollView::wheelEvent +200 Q3ListBox::keyPressEvent +208 QWidget::keyReleaseEvent +216 Q3ListBox::focusInEvent +224 Q3ListBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 Q3Frame::paintEvent +256 QWidget::moveEvent +264 Q3ListBox::resizeEvent +272 QWidget::closeEvent +280 Q3ScrollView::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 Q3ListBox::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 Q3ListBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 Q3ListBox::inputMethodQuery +392 Q3ScrollView::focusNextPrevChild +400 Q3ScrollView::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 Q3ScrollView::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3ScrollView::frameChanged +456 Q3Frame::drawFrame +464 Q3ScrollView::drawContents +472 Q3ScrollView::setResizePolicy +480 Q3ScrollView::addChild +488 Q3ScrollView::moveChild +496 Q3ScrollView::setVScrollBarMode +504 Q3ScrollView::setHScrollBarMode +512 Q3ScrollView::setCornerWidget +520 Q3ScrollView::setDragAutoScroll +528 Q3ScrollView::resizeContents +536 Q3ScrollView::setContentsPos +544 Q3ScrollView::drawContents +552 Q3ScrollView::drawContentsOffset +560 Q3ScrollView::contentsMousePressEvent +568 Q3ScrollView::contentsMouseReleaseEvent +576 Q3ScrollView::contentsMouseDoubleClickEvent +584 Q3ScrollView::contentsMouseMoveEvent +592 Q3ScrollView::contentsDragEnterEvent +600 Q3ScrollView::contentsDragMoveEvent +608 Q3ScrollView::contentsDragLeaveEvent +616 Q3ScrollView::contentsDropEvent +624 Q3ScrollView::contentsWheelEvent +632 Q3ListBox::contentsContextMenuEvent +640 Q3ListBox::viewportPaintEvent +648 Q3ScrollView::viewportResizeEvent +656 Q3ScrollView::viewportMousePressEvent +664 Q3ScrollView::viewportMouseReleaseEvent +672 Q3ScrollView::viewportMouseDoubleClickEvent +680 Q3ScrollView::viewportMouseMoveEvent +688 Q3ScrollView::viewportDragEnterEvent +696 Q3ScrollView::viewportDragMoveEvent +704 Q3ScrollView::viewportDragLeaveEvent +712 Q3ScrollView::viewportDropEvent +720 Q3ScrollView::viewportWheelEvent +728 Q3ScrollView::viewportContextMenuEvent +736 Q3ScrollView::setMargins +744 Q3ScrollView::setHBarGeometry +752 Q3ScrollView::setVBarGeometry +760 Q3ListBox::setCurrentItem +768 Q3ListBox::setCurrentItem +776 Q3ListBox::setTopItem +784 Q3ListBox::setBottomItem +792 Q3ListBox::setSelectionMode +800 Q3ListBox::setSelected +808 Q3ListBox::setColumnMode +816 Q3ListBox::setColumnMode +824 Q3ListBox::setRowMode +832 Q3ListBox::setRowMode +840 Q3ListBox::setVariableWidth +848 Q3ListBox::setVariableHeight +856 Q3ListBox::ensureCurrentVisible +864 Q3ListBox::clearSelection +872 Q3ListBox::selectAll +880 Q3ListBox::invertSelection +888 Q3ListBox::paintCell +896 (int (*)(...))-0x00000000000000010 +904 (int (*)(...))(& _ZTI9Q3ListBox) +912 Q3ListBox::_ZThn16_N9Q3ListBoxD1Ev +920 Q3ListBox::_ZThn16_N9Q3ListBoxD0Ev +928 QWidget::_ZThn16_NK7QWidget7devTypeEv +936 QWidget::_ZThn16_NK7QWidget11paintEngineEv +944 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3ListBox + size=64 align=8 + base size=64 base align=8 +Q3ListBox (0x7f62d9859a80) 0 + vptr=((& Q3ListBox::_ZTV9Q3ListBox) + 16u) + Q3ScrollView (0x7f62d9859af0) 0 + primary-for Q3ListBox (0x7f62d9859a80) + Q3Frame (0x7f62d9859b60) 0 + primary-for Q3ScrollView (0x7f62d9859af0) + QFrame (0x7f62d9859bd0) 0 + primary-for Q3Frame (0x7f62d9859b60) + QWidget (0x7f62d9858480) 0 + primary-for QFrame (0x7f62d9859bd0) + QObject (0x7f62d9859c40) 0 + primary-for QWidget (0x7f62d9858480) + QPaintDevice (0x7f62d9859cb0) 16 + vptr=((& Q3ListBox::_ZTV9Q3ListBox) + 912u) + +Vtable for Q3ListBoxItem +Q3ListBoxItem::_ZTV13Q3ListBoxItem: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13Q3ListBoxItem) +16 Q3ListBoxItem::~Q3ListBoxItem +24 Q3ListBoxItem::~Q3ListBoxItem +32 Q3ListBoxItem::text +40 Q3ListBoxItem::pixmap +48 Q3ListBoxItem::height +56 Q3ListBoxItem::width +64 Q3ListBoxItem::rtti +72 __cxa_pure_virtual +80 Q3ListBoxItem::setText + +Class Q3ListBoxItem + size=48 align=8 + base size=48 base align=8 +Q3ListBoxItem (0x7f62d98d3d90) 0 + vptr=((& Q3ListBoxItem::_ZTV13Q3ListBoxItem) + 16u) + +Vtable for Q3ListBoxText +Q3ListBoxText::_ZTV13Q3ListBoxText: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13Q3ListBoxText) +16 Q3ListBoxText::~Q3ListBoxText +24 Q3ListBoxText::~Q3ListBoxText +32 Q3ListBoxItem::text +40 Q3ListBoxItem::pixmap +48 Q3ListBoxText::height +56 Q3ListBoxText::width +64 Q3ListBoxText::rtti +72 Q3ListBoxText::paint +80 Q3ListBoxItem::setText + +Class Q3ListBoxText + size=48 align=8 + base size=48 base align=8 +Q3ListBoxText (0x7f62d98f08c0) 0 + vptr=((& Q3ListBoxText::_ZTV13Q3ListBoxText) + 16u) + Q3ListBoxItem (0x7f62d98f0930) 0 + primary-for Q3ListBoxText (0x7f62d98f08c0) + +Vtable for Q3ListBoxPixmap +Q3ListBoxPixmap::_ZTV15Q3ListBoxPixmap: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15Q3ListBoxPixmap) +16 Q3ListBoxPixmap::~Q3ListBoxPixmap +24 Q3ListBoxPixmap::~Q3ListBoxPixmap +32 Q3ListBoxItem::text +40 Q3ListBoxPixmap::pixmap +48 Q3ListBoxPixmap::height +56 Q3ListBoxPixmap::width +64 Q3ListBoxPixmap::rtti +72 Q3ListBoxPixmap::paint +80 Q3ListBoxItem::setText + +Class Q3ListBoxPixmap + size=72 align=8 + base size=72 base align=8 +Q3ListBoxPixmap (0x7f62d98fa1c0) 0 + vptr=((& Q3ListBoxPixmap::_ZTV15Q3ListBoxPixmap) + 16u) + Q3ListBoxItem (0x7f62d98fa230) 0 + primary-for Q3ListBoxPixmap (0x7f62d98fa1c0) + +Vtable for Q3ListViewItem +Q3ListViewItem::_ZTV14Q3ListViewItem: 41u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14Q3ListViewItem) +16 Q3ListViewItem::~Q3ListViewItem +24 Q3ListViewItem::~Q3ListViewItem +32 Q3ListViewItem::insertItem +40 Q3ListViewItem::takeItem +48 Q3ListViewItem::removeItem +56 Q3ListViewItem::invalidateHeight +64 Q3ListViewItem::width +72 Q3ListViewItem::setText +80 Q3ListViewItem::text +88 Q3ListViewItem::setPixmap +96 Q3ListViewItem::pixmap +104 Q3ListViewItem::key +112 Q3ListViewItem::compare +120 Q3ListViewItem::sortChildItems +128 Q3ListViewItem::setOpen +136 Q3ListViewItem::setup +144 Q3ListViewItem::setSelected +152 Q3ListViewItem::paintCell +160 Q3ListViewItem::paintBranches +168 Q3ListViewItem::paintFocus +176 Q3ListViewItem::setSelectable +184 Q3ListViewItem::setExpandable +192 Q3ListViewItem::sort +200 Q3ListViewItem::setDragEnabled +208 Q3ListViewItem::setDropEnabled +216 Q3ListViewItem::acceptDrop +224 Q3ListViewItem::setRenameEnabled +232 Q3ListViewItem::startRename +240 Q3ListViewItem::setEnabled +248 Q3ListViewItem::rtti +256 Q3ListViewItem::setMultiLinesEnabled +264 Q3ListViewItem::enforceSortOrder +272 Q3ListViewItem::setHeight +280 Q3ListViewItem::activate +288 Q3ListViewItem::dropped +296 Q3ListViewItem::dragEntered +304 Q3ListViewItem::dragLeft +312 Q3ListViewItem::okRename +320 Q3ListViewItem::cancelRename + +Class Q3ListViewItem + size=72 align=8 + base size=72 base align=8 +Q3ListViewItem (0x7f62d98fad90) 0 + vptr=((& Q3ListViewItem::_ZTV14Q3ListViewItem) + 16u) + +Vtable for Q3ListView +Q3ListView::_ZTV10Q3ListView: 134u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10Q3ListView) +16 Q3ListView::metaObject +24 Q3ListView::qt_metacast +32 Q3ListView::qt_metacall +40 Q3ListView::~Q3ListView +48 Q3ListView::~Q3ListView +56 QFrame::event +64 Q3ListView::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 Q3ScrollView::setVisible +128 Q3ListView::sizeHint +136 Q3ListView::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 Q3ScrollView::mousePressEvent +168 Q3ScrollView::mouseReleaseEvent +176 Q3ScrollView::mouseDoubleClickEvent +184 Q3ScrollView::mouseMoveEvent +192 Q3ScrollView::wheelEvent +200 Q3ListView::keyPressEvent +208 QWidget::keyReleaseEvent +216 Q3ListView::focusInEvent +224 Q3ListView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 Q3Frame::paintEvent +256 QWidget::moveEvent +264 Q3ListView::resizeEvent +272 QWidget::closeEvent +280 Q3ScrollView::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 Q3ListView::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 Q3ListView::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 Q3ListView::inputMethodQuery +392 Q3ScrollView::focusNextPrevChild +400 Q3ScrollView::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 Q3ScrollView::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3ScrollView::frameChanged +456 Q3Frame::drawFrame +464 Q3ScrollView::drawContents +472 Q3ScrollView::setResizePolicy +480 Q3ScrollView::addChild +488 Q3ScrollView::moveChild +496 Q3ScrollView::setVScrollBarMode +504 Q3ScrollView::setHScrollBarMode +512 Q3ScrollView::setCornerWidget +520 Q3ScrollView::setDragAutoScroll +528 Q3ScrollView::resizeContents +536 Q3ListView::setContentsPos +544 Q3ScrollView::drawContents +552 Q3ListView::drawContentsOffset +560 Q3ListView::contentsMousePressEvent +568 Q3ListView::contentsMouseReleaseEvent +576 Q3ListView::contentsMouseDoubleClickEvent +584 Q3ListView::contentsMouseMoveEvent +592 Q3ListView::contentsDragEnterEvent +600 Q3ListView::contentsDragMoveEvent +608 Q3ListView::contentsDragLeaveEvent +616 Q3ListView::contentsDropEvent +624 Q3ScrollView::contentsWheelEvent +632 Q3ListView::contentsContextMenuEvent +640 Q3ScrollView::viewportPaintEvent +648 Q3ListView::viewportResizeEvent +656 Q3ScrollView::viewportMousePressEvent +664 Q3ScrollView::viewportMouseReleaseEvent +672 Q3ScrollView::viewportMouseDoubleClickEvent +680 Q3ScrollView::viewportMouseMoveEvent +688 Q3ScrollView::viewportDragEnterEvent +696 Q3ScrollView::viewportDragMoveEvent +704 Q3ScrollView::viewportDragLeaveEvent +712 Q3ScrollView::viewportDropEvent +720 Q3ScrollView::viewportWheelEvent +728 Q3ScrollView::viewportContextMenuEvent +736 Q3ScrollView::setMargins +744 Q3ScrollView::setHBarGeometry +752 Q3ScrollView::setVBarGeometry +760 Q3ListView::setTreeStepSize +768 Q3ListView::insertItem +776 Q3ListView::takeItem +784 Q3ListView::removeItem +792 Q3ListView::addColumn +800 Q3ListView::addColumn +808 Q3ListView::removeColumn +816 Q3ListView::setColumnText +824 Q3ListView::setColumnText +832 Q3ListView::setColumnWidth +840 Q3ListView::setColumnWidthMode +848 Q3ListView::setColumnAlignment +856 Q3ListView::setMultiSelection +864 Q3ListView::clearSelection +872 Q3ListView::setSelected +880 Q3ListView::setOpen +888 Q3ListView::setCurrentItem +896 Q3ListView::setAllColumnsShowFocus +904 Q3ListView::setItemMargin +912 Q3ListView::setRootIsDecorated +920 Q3ListView::setSorting +928 Q3ListView::sort +936 Q3ListView::setShowSortIndicator +944 Q3ListView::setShowToolTips +952 Q3ListView::setResizeMode +960 Q3ListView::setDefaultRenameAction +968 Q3ListView::clear +976 Q3ListView::invertSelection +984 Q3ListView::selectAll +992 Q3ListView::dragObject +1000 Q3ListView::startDrag +1008 Q3ListView::paintEmptyArea +1016 (int (*)(...))-0x00000000000000010 +1024 (int (*)(...))(& _ZTI10Q3ListView) +1032 Q3ListView::_ZThn16_N10Q3ListViewD1Ev +1040 Q3ListView::_ZThn16_N10Q3ListViewD0Ev +1048 QWidget::_ZThn16_NK7QWidget7devTypeEv +1056 QWidget::_ZThn16_NK7QWidget11paintEngineEv +1064 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3ListView + size=64 align=8 + base size=64 base align=8 +Q3ListView (0x7f62d974a7e0) 0 + vptr=((& Q3ListView::_ZTV10Q3ListView) + 16u) + Q3ScrollView (0x7f62d974a850) 0 + primary-for Q3ListView (0x7f62d974a7e0) + Q3Frame (0x7f62d974a8c0) 0 + primary-for Q3ScrollView (0x7f62d974a850) + QFrame (0x7f62d974a930) 0 + primary-for Q3Frame (0x7f62d974a8c0) + QWidget (0x7f62d9746680) 0 + primary-for QFrame (0x7f62d974a930) + QObject (0x7f62d974a9a0) 0 + primary-for QWidget (0x7f62d9746680) + QPaintDevice (0x7f62d974aa10) 16 + vptr=((& Q3ListView::_ZTV10Q3ListView) + 1032u) + +Vtable for Q3CheckListItem +Q3CheckListItem::_ZTV15Q3CheckListItem: 43u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15Q3CheckListItem) +16 Q3CheckListItem::~Q3CheckListItem +24 Q3CheckListItem::~Q3CheckListItem +32 Q3ListViewItem::insertItem +40 Q3ListViewItem::takeItem +48 Q3ListViewItem::removeItem +56 Q3ListViewItem::invalidateHeight +64 Q3CheckListItem::width +72 Q3ListViewItem::setText +80 Q3CheckListItem::text +88 Q3ListViewItem::setPixmap +96 Q3ListViewItem::pixmap +104 Q3ListViewItem::key +112 Q3ListViewItem::compare +120 Q3ListViewItem::sortChildItems +128 Q3ListViewItem::setOpen +136 Q3CheckListItem::setup +144 Q3ListViewItem::setSelected +152 Q3CheckListItem::paintCell +160 Q3ListViewItem::paintBranches +168 Q3CheckListItem::paintFocus +176 Q3ListViewItem::setSelectable +184 Q3ListViewItem::setExpandable +192 Q3ListViewItem::sort +200 Q3ListViewItem::setDragEnabled +208 Q3ListViewItem::setDropEnabled +216 Q3ListViewItem::acceptDrop +224 Q3ListViewItem::setRenameEnabled +232 Q3ListViewItem::startRename +240 Q3ListViewItem::setEnabled +248 Q3CheckListItem::rtti +256 Q3ListViewItem::setMultiLinesEnabled +264 Q3ListViewItem::enforceSortOrder +272 Q3ListViewItem::setHeight +280 Q3CheckListItem::activate +288 Q3ListViewItem::dropped +296 Q3ListViewItem::dragEntered +304 Q3ListViewItem::dragLeft +312 Q3ListViewItem::okRename +320 Q3ListViewItem::cancelRename +328 Q3CheckListItem::setOn +336 Q3CheckListItem::stateChange + +Class Q3CheckListItem + size=88 align=8 + base size=88 base align=8 +Q3CheckListItem (0x7f62d9798a80) 0 + vptr=((& Q3CheckListItem::_ZTV15Q3CheckListItem) + 16u) + Q3ListViewItem (0x7f62d9798af0) 0 + primary-for Q3CheckListItem (0x7f62d9798a80) + +Class Q3ListViewItemIterator + size=24 align=8 + base size=20 base align=8 +Q3ListViewItemIterator (0x7f62d97bf460) 0 + +Class Q3Dns::MailServer + size=16 align=8 + base size=10 base align=8 +Q3Dns::MailServer (0x7f62d97c8bd0) 0 + +Class Q3Dns::Server + size=16 align=8 + base size=14 base align=8 +Q3Dns::Server (0x7f62d97d81c0) 0 + +Vtable for Q3Dns +Q3Dns::_ZTV5Q3Dns: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5Q3Dns) +16 Q3Dns::metaObject +24 Q3Dns::qt_metacast +32 Q3Dns::qt_metacall +40 Q3Dns::~Q3Dns +48 Q3Dns::~Q3Dns +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 Q3Dns::setLabel +120 Q3Dns::setLabel +128 Q3Dns::setRecordType + +Class Q3Dns + size=48 align=8 + base size=48 base align=8 +Q3Dns (0x7f62d97c8620) 0 + vptr=((& Q3Dns::_ZTV5Q3Dns) + 16u) + QObject (0x7f62d97c8690) 0 + primary-for Q3Dns (0x7f62d97c8620) + +Vtable for Q3DnsSocket +Q3DnsSocket::_ZTV11Q3DnsSocket: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11Q3DnsSocket) +16 Q3DnsSocket::metaObject +24 Q3DnsSocket::qt_metacast +32 Q3DnsSocket::qt_metacall +40 Q3DnsSocket::~Q3DnsSocket +48 Q3DnsSocket::~Q3DnsSocket +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 Q3DnsSocket::cleanCache +120 Q3DnsSocket::retransmit +128 Q3DnsSocket::answer + +Class Q3DnsSocket + size=16 align=8 + base size=16 base align=8 +Q3DnsSocket (0x7f62d97f72a0) 0 + vptr=((& Q3DnsSocket::_ZTV11Q3DnsSocket) + 16u) + QObject (0x7f62d97f7310) 0 + primary-for Q3DnsSocket (0x7f62d97f72a0) + +Vtable for Q3Ftp +Q3Ftp::_ZTV5Q3Ftp: 29u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5Q3Ftp) +16 Q3Ftp::metaObject +24 Q3Ftp::qt_metacast +32 Q3Ftp::qt_metacall +40 Q3Ftp::~Q3Ftp +48 Q3Ftp::~Q3Ftp +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 Q3NetworkProtocol::setUrl +120 Q3NetworkProtocol::setAutoDelete +128 Q3Ftp::supportedOperations +136 Q3NetworkProtocol::addOperation +144 Q3NetworkProtocol::clearOperationQueue +152 Q3NetworkProtocol::stop +160 Q3NetworkProtocol::processOperation +168 Q3Ftp::operationListChildren +176 Q3Ftp::operationMkDir +184 Q3Ftp::operationRemove +192 Q3Ftp::operationRename +200 Q3Ftp::operationGet +208 Q3Ftp::operationPut +216 Q3NetworkProtocol::operationPutChunk +224 Q3Ftp::checkConnection + +Class Q3Ftp + size=72 align=8 + base size=65 base align=8 +Q3Ftp (0x7f62d98091c0) 0 + vptr=((& Q3Ftp::_ZTV5Q3Ftp) + 16u) + Q3NetworkProtocol (0x7f62d9809230) 0 + primary-for Q3Ftp (0x7f62d98091c0) + QObject (0x7f62d98092a0) 0 + primary-for Q3NetworkProtocol (0x7f62d9809230) + +Vtable for Q3HttpHeader +Q3HttpHeader::_ZTV12Q3HttpHeader: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12Q3HttpHeader) +16 Q3HttpHeader::~Q3HttpHeader +24 Q3HttpHeader::~Q3HttpHeader +32 Q3HttpHeader::toString +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 Q3HttpHeader::parseLine + +Class Q3HttpHeader + size=24 align=8 + base size=17 base align=8 +Q3HttpHeader (0x7f62d9831700) 0 + vptr=((& Q3HttpHeader::_ZTV12Q3HttpHeader) + 16u) + +Vtable for Q3HttpResponseHeader +Q3HttpResponseHeader::_ZTV20Q3HttpResponseHeader: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20Q3HttpResponseHeader) +16 Q3HttpResponseHeader::~Q3HttpResponseHeader +24 Q3HttpResponseHeader::~Q3HttpResponseHeader +32 Q3HttpResponseHeader::toString +40 Q3HttpResponseHeader::majorVersion +48 Q3HttpResponseHeader::minorVersion +56 Q3HttpResponseHeader::parseLine + +Class Q3HttpResponseHeader + size=40 align=8 + base size=40 base align=8 +Q3HttpResponseHeader (0x7f62d9831ee0) 0 + vptr=((& Q3HttpResponseHeader::_ZTV20Q3HttpResponseHeader) + 16u) + Q3HttpHeader (0x7f62d9831f50) 0 + primary-for Q3HttpResponseHeader (0x7f62d9831ee0) + +Vtable for Q3HttpRequestHeader +Q3HttpRequestHeader::_ZTV19Q3HttpRequestHeader: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19Q3HttpRequestHeader) +16 Q3HttpRequestHeader::~Q3HttpRequestHeader +24 Q3HttpRequestHeader::~Q3HttpRequestHeader +32 Q3HttpRequestHeader::toString +40 Q3HttpRequestHeader::majorVersion +48 Q3HttpRequestHeader::minorVersion +56 Q3HttpRequestHeader::parseLine + +Class Q3HttpRequestHeader + size=48 align=8 + base size=48 base align=8 +Q3HttpRequestHeader (0x7f62d9660310) 0 + vptr=((& Q3HttpRequestHeader::_ZTV19Q3HttpRequestHeader) + 16u) + Q3HttpHeader (0x7f62d9660380) 0 + primary-for Q3HttpRequestHeader (0x7f62d9660310) + +Vtable for Q3Http +Q3Http::_ZTV6Q3Http: 29u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6Q3Http) +16 Q3Http::metaObject +24 Q3Http::qt_metacast +32 Q3Http::qt_metacall +40 Q3Http::~Q3Http +48 Q3Http::~Q3Http +56 QObject::event +64 QObject::eventFilter +72 Q3Http::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 Q3NetworkProtocol::setUrl +120 Q3NetworkProtocol::setAutoDelete +128 Q3Http::supportedOperations +136 Q3NetworkProtocol::addOperation +144 Q3NetworkProtocol::clearOperationQueue +152 Q3NetworkProtocol::stop +160 Q3NetworkProtocol::processOperation +168 Q3NetworkProtocol::operationListChildren +176 Q3NetworkProtocol::operationMkDir +184 Q3NetworkProtocol::operationRemove +192 Q3NetworkProtocol::operationRename +200 Q3Http::operationGet +208 Q3Http::operationPut +216 Q3NetworkProtocol::operationPutChunk +224 Q3NetworkProtocol::checkConnection + +Class Q3Http + size=48 align=8 + base size=44 base align=8 +Q3Http (0x7f62d9660700) 0 + vptr=((& Q3Http::_ZTV6Q3Http) + 16u) + Q3NetworkProtocol (0x7f62d9660770) 0 + primary-for Q3Http (0x7f62d9660700) + QObject (0x7f62d96607e0) 0 + primary-for Q3NetworkProtocol (0x7f62d9660770) + +Vtable for Q3LocalFs +Q3LocalFs::_ZTV9Q3LocalFs: 29u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9Q3LocalFs) +16 Q3LocalFs::metaObject +24 Q3LocalFs::qt_metacast +32 Q3LocalFs::qt_metacall +40 Q3LocalFs::~Q3LocalFs +48 Q3LocalFs::~Q3LocalFs +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 Q3NetworkProtocol::setUrl +120 Q3NetworkProtocol::setAutoDelete +128 Q3LocalFs::supportedOperations +136 Q3NetworkProtocol::addOperation +144 Q3NetworkProtocol::clearOperationQueue +152 Q3NetworkProtocol::stop +160 Q3NetworkProtocol::processOperation +168 Q3LocalFs::operationListChildren +176 Q3LocalFs::operationMkDir +184 Q3LocalFs::operationRemove +192 Q3LocalFs::operationRename +200 Q3LocalFs::operationGet +208 Q3LocalFs::operationPut +216 Q3NetworkProtocol::operationPutChunk +224 Q3NetworkProtocol::checkConnection + +Class Q3LocalFs + size=32 align=8 + base size=32 base align=8 +Q3LocalFs (0x7f62d96909a0) 0 + vptr=((& Q3LocalFs::_ZTV9Q3LocalFs) + 16u) + Q3NetworkProtocol (0x7f62d9690a10) 0 + primary-for Q3LocalFs (0x7f62d96909a0) + QObject (0x7f62d9690a80) 0 + primary-for Q3NetworkProtocol (0x7f62d9690a10) + +Vtable for Q3SocketDevice +Q3SocketDevice::_ZTV14Q3SocketDevice: 41u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14Q3SocketDevice) +16 QIODevice::metaObject +24 QIODevice::qt_metacast +32 QIODevice::qt_metacall +40 Q3SocketDevice::~Q3SocketDevice +48 Q3SocketDevice::~Q3SocketDevice +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 Q3SocketDevice::isSequential +120 Q3SocketDevice::open +128 Q3SocketDevice::close +136 QIODevice::pos +144 Q3SocketDevice::size +152 QIODevice::seek +160 Q3SocketDevice::atEnd +168 QIODevice::reset +176 Q3SocketDevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 Q3SocketDevice::readData +224 QIODevice::readLineData +232 Q3SocketDevice::writeData +240 Q3SocketDevice::setSocket +248 Q3SocketDevice::setBlocking +256 Q3SocketDevice::setAddressReusable +264 Q3SocketDevice::setReceiveBufferSize +272 Q3SocketDevice::setSendBufferSize +280 Q3SocketDevice::connect +288 Q3SocketDevice::bind +296 Q3SocketDevice::listen +304 Q3SocketDevice::accept +312 Q3SocketDevice::writeBlock +320 Q3SocketDevice::setOption + +Class Q3SocketDevice + size=72 align=8 + base size=72 base align=8 +Q3SocketDevice (0x7f62d96a37e0) 0 + vptr=((& Q3SocketDevice::_ZTV14Q3SocketDevice) + 16u) + QIODevice (0x7f62d96a3850) 0 + primary-for Q3SocketDevice (0x7f62d96a37e0) + QObject (0x7f62d96a38c0) 0 + primary-for QIODevice (0x7f62d96a3850) + +Vtable for Q3ServerSocket +Q3ServerSocket::_ZTV14Q3ServerSocket: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14Q3ServerSocket) +16 Q3ServerSocket::metaObject +24 Q3ServerSocket::qt_metacast +32 Q3ServerSocket::qt_metacall +40 Q3ServerSocket::~Q3ServerSocket +48 Q3ServerSocket::~Q3ServerSocket +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 Q3ServerSocket::setSocket +120 __cxa_pure_virtual + +Class Q3ServerSocket + size=24 align=8 + base size=24 base align=8 +Q3ServerSocket (0x7f62d96c4ee0) 0 + vptr=((& Q3ServerSocket::_ZTV14Q3ServerSocket) + 16u) + QObject (0x7f62d96c4f50) 0 + primary-for Q3ServerSocket (0x7f62d96c4ee0) + +Vtable for Q3Socket +Q3Socket::_ZTV8Q3Socket: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8Q3Socket) +16 Q3Socket::metaObject +24 Q3Socket::qt_metacast +32 Q3Socket::qt_metacall +40 Q3Socket::~Q3Socket +48 Q3Socket::~Q3Socket +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 Q3Socket::isSequential +120 Q3Socket::open +128 Q3Socket::close +136 QIODevice::pos +144 Q3Socket::size +152 QIODevice::seek +160 Q3Socket::atEnd +168 QIODevice::reset +176 Q3Socket::bytesAvailable +184 Q3Socket::bytesToWrite +192 Q3Socket::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 Q3Socket::readData +224 QIODevice::readLineData +232 Q3Socket::writeData +240 Q3Socket::setSocket +248 Q3Socket::setSocketDevice +256 Q3Socket::connectToHost +264 Q3Socket::sn_read +272 Q3Socket::sn_write + +Class Q3Socket + size=24 align=8 + base size=24 base align=8 +Q3Socket (0x7f62d96d2380) 0 + vptr=((& Q3Socket::_ZTV8Q3Socket) + 16u) + QIODevice (0x7f62d96e4000) 0 + primary-for Q3Socket (0x7f62d96d2380) + QObject (0x7f62d96e4070) 0 + primary-for QIODevice (0x7f62d96e4000) + +Vtable for Q3Action +Q3Action::_ZTV8Q3Action: 29u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8Q3Action) +16 Q3Action::metaObject +24 Q3Action::qt_metacast +32 Q3Action::qt_metacall +40 Q3Action::~Q3Action +48 Q3Action::~Q3Action +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 Q3Action::setIconSet +120 Q3Action::setText +128 Q3Action::setMenuText +136 Q3Action::setToolTip +144 Q3Action::setStatusTip +152 Q3Action::setWhatsThis +160 Q3Action::setAccel +168 Q3Action::setToggleAction +176 Q3Action::addTo +184 Q3Action::removeFrom +192 Q3Action::addedTo +200 Q3Action::addedTo +208 Q3Action::setOn +216 Q3Action::setEnabled +224 Q3Action::setVisible + +Class Q3Action + size=24 align=8 + base size=24 base align=8 +Q3Action (0x7f62d9705e70) 0 + vptr=((& Q3Action::_ZTV8Q3Action) + 16u) + QObject (0x7f62d9705ee0) 0 + primary-for Q3Action (0x7f62d9705e70) + +Vtable for Q3ActionGroup +Q3ActionGroup::_ZTV13Q3ActionGroup: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13Q3ActionGroup) +16 Q3ActionGroup::metaObject +24 Q3ActionGroup::qt_metacast +32 Q3ActionGroup::qt_metacall +40 Q3ActionGroup::~Q3ActionGroup +48 Q3ActionGroup::~Q3ActionGroup +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 Q3ActionGroup::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 Q3ActionGroup::setIconSet +120 Q3ActionGroup::setText +128 Q3ActionGroup::setMenuText +136 Q3ActionGroup::setToolTip +144 Q3Action::setStatusTip +152 Q3ActionGroup::setWhatsThis +160 Q3Action::setAccel +168 Q3ActionGroup::setToggleAction +176 Q3ActionGroup::addTo +184 Q3ActionGroup::removeFrom +192 Q3ActionGroup::addedTo +200 Q3ActionGroup::addedTo +208 Q3ActionGroup::setOn +216 Q3ActionGroup::setEnabled +224 Q3ActionGroup::setVisible +232 Q3ActionGroup::addedTo +240 Q3ActionGroup::addedTo + +Class Q3ActionGroup + size=32 align=8 + base size=32 base align=8 +Q3ActionGroup (0x7f62d972d700) 0 + vptr=((& Q3ActionGroup::_ZTV13Q3ActionGroup) + 16u) + Q3Action (0x7f62d972d770) 0 + primary-for Q3ActionGroup (0x7f62d972d700) + QObject (0x7f62d972d7e0) 0 + primary-for Q3Action (0x7f62d972d770) + +Vtable for Q3Button +Q3Button::_ZTV8Q3Button: 68u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8Q3Button) +16 Q3Button::metaObject +24 Q3Button::qt_metacast +32 Q3Button::qt_metacall +40 Q3Button::~Q3Button +48 Q3Button::~Q3Button +56 QAbstractButton::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QAbstractButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QAbstractButton::focusInEvent +224 QAbstractButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 Q3Button::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractButton::hitButton +456 QAbstractButton::checkStateSet +464 QAbstractButton::nextCheckState +472 Q3Button::drawButton +480 Q3Button::drawButtonLabel +488 (int (*)(...))-0x00000000000000010 +496 (int (*)(...))(& _ZTI8Q3Button) +504 Q3Button::_ZThn16_N8Q3ButtonD1Ev +512 Q3Button::_ZThn16_N8Q3ButtonD0Ev +520 QWidget::_ZThn16_NK7QWidget7devTypeEv +528 QWidget::_ZThn16_NK7QWidget11paintEngineEv +536 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3Button + size=40 align=8 + base size=40 base align=8 +Q3Button (0x7f62d954e230) 0 + vptr=((& Q3Button::_ZTV8Q3Button) + 16u) + QAbstractButton (0x7f62d954e2a0) 0 + primary-for Q3Button (0x7f62d954e230) + QWidget (0x7f62d9728c80) 0 + primary-for QAbstractButton (0x7f62d954e2a0) + QObject (0x7f62d954e310) 0 + primary-for QWidget (0x7f62d9728c80) + QPaintDevice (0x7f62d954e380) 16 + vptr=((& Q3Button::_ZTV8Q3Button) + 504u) + +Vtable for Q3GroupBox +Q3GroupBox::_ZTV10Q3GroupBox: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10Q3GroupBox) +16 Q3GroupBox::metaObject +24 Q3GroupBox::qt_metacast +32 Q3GroupBox::qt_metacall +40 Q3GroupBox::~Q3GroupBox +48 Q3GroupBox::~Q3GroupBox +56 Q3GroupBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 Q3GroupBox::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QGroupBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QGroupBox::mousePressEvent +168 QGroupBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QGroupBox::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QGroupBox::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QGroupBox::paintEvent +256 QWidget::moveEvent +264 Q3GroupBox::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 Q3GroupBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3GroupBox::setColumnLayout +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI10Q3GroupBox) +472 Q3GroupBox::_ZThn16_N10Q3GroupBoxD1Ev +480 Q3GroupBox::_ZThn16_N10Q3GroupBoxD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3GroupBox + size=48 align=8 + base size=48 base align=8 +Q3GroupBox (0x7f62d9566230) 0 + vptr=((& Q3GroupBox::_ZTV10Q3GroupBox) + 16u) + QGroupBox (0x7f62d95662a0) 0 + primary-for Q3GroupBox (0x7f62d9566230) + QWidget (0x7f62d955d380) 0 + primary-for QGroupBox (0x7f62d95662a0) + QObject (0x7f62d9566310) 0 + primary-for QWidget (0x7f62d955d380) + QPaintDevice (0x7f62d9566380) 16 + vptr=((& Q3GroupBox::_ZTV10Q3GroupBox) + 472u) + +Vtable for Q3ButtonGroup +Q3ButtonGroup::_ZTV13Q3ButtonGroup: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13Q3ButtonGroup) +16 Q3ButtonGroup::metaObject +24 Q3ButtonGroup::qt_metacast +32 Q3ButtonGroup::qt_metacall +40 Q3ButtonGroup::~Q3ButtonGroup +48 Q3ButtonGroup::~Q3ButtonGroup +56 Q3ButtonGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 Q3GroupBox::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QGroupBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QGroupBox::mousePressEvent +168 QGroupBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QGroupBox::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QGroupBox::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QGroupBox::paintEvent +256 QWidget::moveEvent +264 Q3GroupBox::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 Q3GroupBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3GroupBox::setColumnLayout +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI13Q3ButtonGroup) +472 Q3ButtonGroup::_ZThn16_N13Q3ButtonGroupD1Ev +480 Q3ButtonGroup::_ZThn16_N13Q3ButtonGroupD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3ButtonGroup + size=80 align=8 + base size=80 base align=8 +Q3ButtonGroup (0x7f62d958d310) 0 + vptr=((& Q3ButtonGroup::_ZTV13Q3ButtonGroup) + 16u) + Q3GroupBox (0x7f62d958d380) 0 + primary-for Q3ButtonGroup (0x7f62d958d310) + QGroupBox (0x7f62d958d3f0) 0 + primary-for Q3GroupBox (0x7f62d958d380) + QWidget (0x7f62d9586580) 0 + primary-for QGroupBox (0x7f62d958d3f0) + QObject (0x7f62d958d460) 0 + primary-for QWidget (0x7f62d9586580) + QPaintDevice (0x7f62d958d4d0) 16 + vptr=((& Q3ButtonGroup::_ZTV13Q3ButtonGroup) + 472u) + +Vtable for Q3VButtonGroup +Q3VButtonGroup::_ZTV14Q3VButtonGroup: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14Q3VButtonGroup) +16 Q3VButtonGroup::metaObject +24 Q3VButtonGroup::qt_metacast +32 Q3VButtonGroup::qt_metacall +40 Q3VButtonGroup::~Q3VButtonGroup +48 Q3VButtonGroup::~Q3VButtonGroup +56 Q3ButtonGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 Q3GroupBox::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QGroupBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QGroupBox::mousePressEvent +168 QGroupBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QGroupBox::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QGroupBox::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QGroupBox::paintEvent +256 QWidget::moveEvent +264 Q3GroupBox::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 Q3GroupBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3GroupBox::setColumnLayout +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI14Q3VButtonGroup) +472 Q3VButtonGroup::_ZThn16_N14Q3VButtonGroupD1Ev +480 Q3VButtonGroup::_ZThn16_N14Q3VButtonGroupD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3VButtonGroup + size=80 align=8 + base size=80 base align=8 +Q3VButtonGroup (0x7f62d95c2e70) 0 + vptr=((& Q3VButtonGroup::_ZTV14Q3VButtonGroup) + 16u) + Q3ButtonGroup (0x7f62d95c2ee0) 0 + primary-for Q3VButtonGroup (0x7f62d95c2e70) + Q3GroupBox (0x7f62d95c2f50) 0 + primary-for Q3ButtonGroup (0x7f62d95c2ee0) + QGroupBox (0x7f62d95c2000) 0 + primary-for Q3GroupBox (0x7f62d95c2f50) + QWidget (0x7f62d9586f00) 0 + primary-for QGroupBox (0x7f62d95c2000) + QObject (0x7f62d95cd000) 0 + primary-for QWidget (0x7f62d9586f00) + QPaintDevice (0x7f62d95cd070) 16 + vptr=((& Q3VButtonGroup::_ZTV14Q3VButtonGroup) + 472u) + +Vtable for Q3HButtonGroup +Q3HButtonGroup::_ZTV14Q3HButtonGroup: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14Q3HButtonGroup) +16 Q3HButtonGroup::metaObject +24 Q3HButtonGroup::qt_metacast +32 Q3HButtonGroup::qt_metacall +40 Q3HButtonGroup::~Q3HButtonGroup +48 Q3HButtonGroup::~Q3HButtonGroup +56 Q3ButtonGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 Q3GroupBox::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QGroupBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QGroupBox::mousePressEvent +168 QGroupBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QGroupBox::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QGroupBox::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QGroupBox::paintEvent +256 QWidget::moveEvent +264 Q3GroupBox::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 Q3GroupBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3GroupBox::setColumnLayout +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI14Q3HButtonGroup) +472 Q3HButtonGroup::_ZThn16_N14Q3HButtonGroupD1Ev +480 Q3HButtonGroup::_ZThn16_N14Q3HButtonGroupD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3HButtonGroup + size=80 align=8 + base size=80 base align=8 +Q3HButtonGroup (0x7f62d95ee540) 0 + vptr=((& Q3HButtonGroup::_ZTV14Q3HButtonGroup) + 16u) + Q3ButtonGroup (0x7f62d95ee5b0) 0 + primary-for Q3HButtonGroup (0x7f62d95ee540) + Q3GroupBox (0x7f62d95ee620) 0 + primary-for Q3ButtonGroup (0x7f62d95ee5b0) + QGroupBox (0x7f62d95ee690) 0 + primary-for Q3GroupBox (0x7f62d95ee620) + QWidget (0x7f62d95cef80) 0 + primary-for QGroupBox (0x7f62d95ee690) + QObject (0x7f62d95ee700) 0 + primary-for QWidget (0x7f62d95cef80) + QPaintDevice (0x7f62d95ee770) 16 + vptr=((& Q3HButtonGroup::_ZTV14Q3HButtonGroup) + 472u) + +Vtable for Q3ComboBox +Q3ComboBox::_ZTV10Q3ComboBox: 75u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10Q3ComboBox) +16 Q3ComboBox::metaObject +24 Q3ComboBox::qt_metacast +32 Q3ComboBox::qt_metacall +40 Q3ComboBox::~Q3ComboBox +48 Q3ComboBox::~Q3ComboBox +56 QWidget::event +64 Q3ComboBox::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 Q3ComboBox::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 Q3ComboBox::mousePressEvent +168 Q3ComboBox::mouseReleaseEvent +176 Q3ComboBox::mouseDoubleClickEvent +184 Q3ComboBox::mouseMoveEvent +192 Q3ComboBox::wheelEvent +200 Q3ComboBox::keyPressEvent +208 QWidget::keyReleaseEvent +216 Q3ComboBox::focusInEvent +224 Q3ComboBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 Q3ComboBox::paintEvent +256 QWidget::moveEvent +264 Q3ComboBox::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 Q3ComboBox::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3ComboBox::setCurrentItem +456 Q3ComboBox::setCurrentText +464 Q3ComboBox::setAutoResize +472 Q3ComboBox::setSizeLimit +480 Q3ComboBox::setMaxCount +488 Q3ComboBox::setInsertionPolicy +496 Q3ComboBox::setValidator +504 Q3ComboBox::setListBox +512 Q3ComboBox::setLineEdit +520 Q3ComboBox::setAutoCompletion +528 Q3ComboBox::popup +536 Q3ComboBox::setEditText +544 (int (*)(...))-0x00000000000000010 +552 (int (*)(...))(& _ZTI10Q3ComboBox) +560 Q3ComboBox::_ZThn16_N10Q3ComboBoxD1Ev +568 Q3ComboBox::_ZThn16_N10Q3ComboBoxD0Ev +576 QWidget::_ZThn16_NK7QWidget7devTypeEv +584 QWidget::_ZThn16_NK7QWidget11paintEngineEv +592 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3ComboBox + size=48 align=8 + base size=48 base align=8 +Q3ComboBox (0x7f62d9609c40) 0 + vptr=((& Q3ComboBox::_ZTV10Q3ComboBox) + 16u) + QWidget (0x7f62d9613000) 0 + primary-for Q3ComboBox (0x7f62d9609c40) + QObject (0x7f62d9609cb0) 0 + primary-for QWidget (0x7f62d9613000) + QPaintDevice (0x7f62d9609d20) 16 + vptr=((& Q3ComboBox::_ZTV10Q3ComboBox) + 560u) + +Vtable for Q3DateTimeEditBase +Q3DateTimeEditBase::_ZTV18Q3DateTimeEditBase: 69u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18Q3DateTimeEditBase) +16 Q3DateTimeEditBase::metaObject +24 Q3DateTimeEditBase::qt_metacast +32 Q3DateTimeEditBase::qt_metacall +40 Q3DateTimeEditBase::~Q3DateTimeEditBase +48 Q3DateTimeEditBase::~Q3DateTimeEditBase +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 __cxa_pure_virtual +456 __cxa_pure_virtual +464 __cxa_pure_virtual +472 __cxa_pure_virtual +480 __cxa_pure_virtual +488 __cxa_pure_virtual +496 (int (*)(...))-0x00000000000000010 +504 (int (*)(...))(& _ZTI18Q3DateTimeEditBase) +512 Q3DateTimeEditBase::_ZThn16_N18Q3DateTimeEditBaseD1Ev +520 Q3DateTimeEditBase::_ZThn16_N18Q3DateTimeEditBaseD0Ev +528 QWidget::_ZThn16_NK7QWidget7devTypeEv +536 QWidget::_ZThn16_NK7QWidget11paintEngineEv +544 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3DateTimeEditBase + size=40 align=8 + base size=40 base align=8 +Q3DateTimeEditBase (0x7f62d943c8c0) 0 + vptr=((& Q3DateTimeEditBase::_ZTV18Q3DateTimeEditBase) + 16u) + QWidget (0x7f62d9613d00) 0 + primary-for Q3DateTimeEditBase (0x7f62d943c8c0) + QObject (0x7f62d943c930) 0 + primary-for QWidget (0x7f62d9613d00) + QPaintDevice (0x7f62d943c9a0) 16 + vptr=((& Q3DateTimeEditBase::_ZTV18Q3DateTimeEditBase) + 512u) + +Vtable for Q3DateEdit +Q3DateEdit::_ZTV10Q3DateEdit: 81u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10Q3DateEdit) +16 Q3DateEdit::metaObject +24 Q3DateEdit::qt_metacast +32 Q3DateEdit::qt_metacall +40 Q3DateEdit::~Q3DateEdit +48 Q3DateEdit::~Q3DateEdit +56 Q3DateEdit::event +64 QObject::eventFilter +72 Q3DateEdit::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 Q3DateEdit::sizeHint +136 Q3DateEdit::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 Q3DateEdit::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3DateEdit::setFocusSection +456 Q3DateEdit::sectionFormattedText +464 Q3DateEdit::addNumber +472 Q3DateEdit::removeLastNumber +480 Q3DateEdit::stepUp +488 Q3DateEdit::stepDown +496 Q3DateEdit::setDate +504 Q3DateEdit::setOrder +512 Q3DateEdit::setAutoAdvance +520 Q3DateEdit::setMinValue +528 Q3DateEdit::setMaxValue +536 Q3DateEdit::setRange +544 Q3DateEdit::setSeparator +552 Q3DateEdit::setYear +560 Q3DateEdit::setMonth +568 Q3DateEdit::setDay +576 Q3DateEdit::fix +584 Q3DateEdit::outOfRange +592 (int (*)(...))-0x00000000000000010 +600 (int (*)(...))(& _ZTI10Q3DateEdit) +608 Q3DateEdit::_ZThn16_N10Q3DateEditD1Ev +616 Q3DateEdit::_ZThn16_N10Q3DateEditD0Ev +624 QWidget::_ZThn16_NK7QWidget7devTypeEv +632 QWidget::_ZThn16_NK7QWidget11paintEngineEv +640 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3DateEdit + size=48 align=8 + base size=48 base align=8 +Q3DateEdit (0x7f62d94607e0) 0 + vptr=((& Q3DateEdit::_ZTV10Q3DateEdit) + 16u) + Q3DateTimeEditBase (0x7f62d9460850) 0 + primary-for Q3DateEdit (0x7f62d94607e0) + QWidget (0x7f62d9453e80) 0 + primary-for Q3DateTimeEditBase (0x7f62d9460850) + QObject (0x7f62d94608c0) 0 + primary-for QWidget (0x7f62d9453e80) + QPaintDevice (0x7f62d9460930) 16 + vptr=((& Q3DateEdit::_ZTV10Q3DateEdit) + 608u) + +Vtable for Q3TimeEdit +Q3TimeEdit::_ZTV10Q3TimeEdit: 79u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10Q3TimeEdit) +16 Q3TimeEdit::metaObject +24 Q3TimeEdit::qt_metacast +32 Q3TimeEdit::qt_metacall +40 Q3TimeEdit::~Q3TimeEdit +48 Q3TimeEdit::~Q3TimeEdit +56 Q3TimeEdit::event +64 QObject::eventFilter +72 Q3TimeEdit::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 Q3TimeEdit::sizeHint +136 Q3TimeEdit::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 Q3TimeEdit::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3TimeEdit::setFocusSection +456 Q3TimeEdit::sectionFormattedText +464 Q3TimeEdit::addNumber +472 Q3TimeEdit::removeLastNumber +480 Q3TimeEdit::stepUp +488 Q3TimeEdit::stepDown +496 Q3TimeEdit::setTime +504 Q3TimeEdit::setAutoAdvance +512 Q3TimeEdit::setMinValue +520 Q3TimeEdit::setMaxValue +528 Q3TimeEdit::setRange +536 Q3TimeEdit::setSeparator +544 Q3TimeEdit::outOfRange +552 Q3TimeEdit::setHour +560 Q3TimeEdit::setMinute +568 Q3TimeEdit::setSecond +576 (int (*)(...))-0x00000000000000010 +584 (int (*)(...))(& _ZTI10Q3TimeEdit) +592 Q3TimeEdit::_ZThn16_N10Q3TimeEditD1Ev +600 Q3TimeEdit::_ZThn16_N10Q3TimeEditD0Ev +608 QWidget::_ZThn16_NK7QWidget7devTypeEv +616 QWidget::_ZThn16_NK7QWidget11paintEngineEv +624 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3TimeEdit + size=48 align=8 + base size=48 base align=8 +Q3TimeEdit (0x7f62d94888c0) 0 + vptr=((& Q3TimeEdit::_ZTV10Q3TimeEdit) + 16u) + Q3DateTimeEditBase (0x7f62d9488930) 0 + primary-for Q3TimeEdit (0x7f62d94888c0) + QWidget (0x7f62d9469a80) 0 + primary-for Q3DateTimeEditBase (0x7f62d9488930) + QObject (0x7f62d94889a0) 0 + primary-for QWidget (0x7f62d9469a80) + QPaintDevice (0x7f62d9488a10) 16 + vptr=((& Q3TimeEdit::_ZTV10Q3TimeEdit) + 592u) + +Vtable for Q3DateTimeEdit +Q3DateTimeEdit::_ZTV14Q3DateTimeEdit: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14Q3DateTimeEdit) +16 Q3DateTimeEdit::metaObject +24 Q3DateTimeEdit::qt_metacast +32 Q3DateTimeEdit::qt_metacall +40 Q3DateTimeEdit::~Q3DateTimeEdit +48 Q3DateTimeEdit::~Q3DateTimeEdit +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 Q3DateTimeEdit::sizeHint +136 Q3DateTimeEdit::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 Q3DateTimeEdit::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3DateTimeEdit::setDateTime +456 Q3DateTimeEdit::setAutoAdvance +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI14Q3DateTimeEdit) +480 Q3DateTimeEdit::_ZThn16_N14Q3DateTimeEditD1Ev +488 Q3DateTimeEdit::_ZThn16_N14Q3DateTimeEditD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3DateTimeEdit + size=64 align=8 + base size=64 base align=8 +Q3DateTimeEdit (0x7f62d94ab7e0) 0 + vptr=((& Q3DateTimeEdit::_ZTV14Q3DateTimeEdit) + 16u) + QWidget (0x7f62d94a5680) 0 + primary-for Q3DateTimeEdit (0x7f62d94ab7e0) + QObject (0x7f62d94ab850) 0 + primary-for QWidget (0x7f62d94a5680) + QPaintDevice (0x7f62d94ab8c0) 16 + vptr=((& Q3DateTimeEdit::_ZTV14Q3DateTimeEdit) + 480u) + +Vtable for Q3DockWindow +Q3DockWindow::_ZTV12Q3DockWindow: 81u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12Q3DockWindow) +16 Q3DockWindow::metaObject +24 Q3DockWindow::qt_metacast +32 Q3DockWindow::qt_metacall +40 Q3DockWindow::~Q3DockWindow +48 Q3DockWindow::~Q3DockWindow +56 Q3DockWindow::event +64 Q3DockWindow::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 Q3DockWindow::sizeHint +136 Q3DockWindow::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 Q3Frame::paintEvent +256 QWidget::moveEvent +264 Q3DockWindow::resizeEvent +272 QWidget::closeEvent +280 Q3DockWindow::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 Q3DockWindow::showEvent +344 Q3DockWindow::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3Frame::frameChanged +456 Q3DockWindow::drawFrame +464 Q3DockWindow::drawContents +472 Q3DockWindow::setWidget +480 Q3DockWindow::setCloseMode +488 Q3DockWindow::setResizeEnabled +496 Q3DockWindow::setMovingEnabled +504 Q3DockWindow::setHorizontallyStretchable +512 Q3DockWindow::setVerticallyStretchable +520 Q3DockWindow::setOffset +528 Q3DockWindow::setFixedExtentWidth +536 Q3DockWindow::setFixedExtentHeight +544 Q3DockWindow::setNewLine +552 Q3DockWindow::setOpaqueMoving +560 Q3DockWindow::undock +568 Q3DockWindow::undock +576 Q3DockWindow::dock +584 Q3DockWindow::setOrientation +592 (int (*)(...))-0x00000000000000010 +600 (int (*)(...))(& _ZTI12Q3DockWindow) +608 Q3DockWindow::_ZThn16_N12Q3DockWindowD1Ev +616 Q3DockWindow::_ZThn16_N12Q3DockWindowD0Ev +624 QWidget::_ZThn16_NK7QWidget7devTypeEv +632 QWidget::_ZThn16_NK7QWidget11paintEngineEv +640 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3DockWindow + size=256 align=8 + base size=256 base align=8 +Q3DockWindow (0x7f62d94cd150) 0 + vptr=((& Q3DockWindow::_ZTV12Q3DockWindow) + 16u) + Q3Frame (0x7f62d94cd1c0) 0 + primary-for Q3DockWindow (0x7f62d94cd150) + QFrame (0x7f62d94cd230) 0 + primary-for Q3Frame (0x7f62d94cd1c0) + QWidget (0x7f62d94a5f80) 0 + primary-for QFrame (0x7f62d94cd230) + QObject (0x7f62d94cd2a0) 0 + primary-for QWidget (0x7f62d94a5f80) + QPaintDevice (0x7f62d94cd310) 16 + vptr=((& Q3DockWindow::_ZTV12Q3DockWindow) + 608u) + +Vtable for Q3DockAreaLayout +Q3DockAreaLayout::_ZTV16Q3DockAreaLayout: 48u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16Q3DockAreaLayout) +16 Q3DockAreaLayout::metaObject +24 Q3DockAreaLayout::qt_metacast +32 Q3DockAreaLayout::qt_metacall +40 Q3DockAreaLayout::~Q3DockAreaLayout +48 Q3DockAreaLayout::~Q3DockAreaLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 Q3DockAreaLayout::invalidate +120 QLayout::geometry +128 Q3DockAreaLayout::addItem +136 Q3DockAreaLayout::expandingDirections +144 Q3DockAreaLayout::minimumSize +152 QLayout::maximumSize +160 Q3DockAreaLayout::setGeometry +168 Q3DockAreaLayout::itemAt +176 Q3DockAreaLayout::takeAt +184 QLayout::indexOf +192 Q3DockAreaLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 Q3DockAreaLayout::hasHeightForWidth +224 Q3DockAreaLayout::heightForWidth +232 Q3DockAreaLayout::sizeHint +240 (int (*)(...))-0x00000000000000010 +248 (int (*)(...))(& _ZTI16Q3DockAreaLayout) +256 Q3DockAreaLayout::_ZThn16_N16Q3DockAreaLayoutD1Ev +264 Q3DockAreaLayout::_ZThn16_N16Q3DockAreaLayoutD0Ev +272 Q3DockAreaLayout::_ZThn16_NK16Q3DockAreaLayout8sizeHintEv +280 Q3DockAreaLayout::_ZThn16_NK16Q3DockAreaLayout11minimumSizeEv +288 QLayout::_ZThn16_NK7QLayout11maximumSizeEv +296 Q3DockAreaLayout::_ZThn16_NK16Q3DockAreaLayout19expandingDirectionsEv +304 Q3DockAreaLayout::_ZThn16_N16Q3DockAreaLayout11setGeometryERK5QRect +312 QLayout::_ZThn16_NK7QLayout8geometryEv +320 QLayout::_ZThn16_NK7QLayout7isEmptyEv +328 Q3DockAreaLayout::_ZThn16_NK16Q3DockAreaLayout17hasHeightForWidthEv +336 Q3DockAreaLayout::_ZThn16_NK16Q3DockAreaLayout14heightForWidthEi +344 QLayoutItem::minimumHeightForWidth +352 Q3DockAreaLayout::_ZThn16_N16Q3DockAreaLayout10invalidateEv +360 QLayoutItem::widget +368 QLayout::_ZThn16_N7QLayout6layoutEv +376 QLayoutItem::spacerItem + +Class Q3DockAreaLayout + size=88 align=8 + base size=88 base align=8 +Q3DockAreaLayout (0x7f62d9509230) 0 + vptr=((& Q3DockAreaLayout::_ZTV16Q3DockAreaLayout) + 16u) + QLayout (0x7f62d9504500) 0 + primary-for Q3DockAreaLayout (0x7f62d9509230) + QObject (0x7f62d95092a0) 0 + primary-for QLayout (0x7f62d9504500) + QLayoutItem (0x7f62d9509310) 16 + vptr=((& Q3DockAreaLayout::_ZTV16Q3DockAreaLayout) + 256u) + +Class Q3DockArea::DockWindowData + size=32 align=8 + base size=32 base align=8 +Q3DockArea::DockWindowData (0x7f62d938da80) 0 + +Vtable for Q3DockArea +Q3DockArea::_ZTV10Q3DockArea: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10Q3DockArea) +16 Q3DockArea::metaObject +24 Q3DockArea::qt_metacast +32 Q3DockArea::qt_metacall +40 Q3DockArea::~Q3DockArea +48 Q3DockArea::~Q3DockArea +56 QWidget::event +64 Q3DockArea::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI10Q3DockArea) +464 Q3DockArea::_ZThn16_N10Q3DockAreaD1Ev +472 Q3DockArea::_ZThn16_N10Q3DockAreaD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3DockArea + size=88 align=8 + base size=88 base align=8 +Q3DockArea (0x7f62d938d540) 0 + vptr=((& Q3DockArea::_ZTV10Q3DockArea) + 16u) + QWidget (0x7f62d9389a80) 0 + primary-for Q3DockArea (0x7f62d938d540) + QObject (0x7f62d938d5b0) 0 + primary-for QWidget (0x7f62d9389a80) + QPaintDevice (0x7f62d938d620) 16 + vptr=((& Q3DockArea::_ZTV10Q3DockArea) + 464u) + +Vtable for Q3Grid +Q3Grid::_ZTV6Q3Grid: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6Q3Grid) +16 Q3Grid::metaObject +24 Q3Grid::qt_metacast +32 Q3Grid::qt_metacall +40 Q3Grid::~Q3Grid +48 Q3Grid::~Q3Grid +56 QFrame::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 Q3Grid::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 Q3Frame::paintEvent +256 QWidget::moveEvent +264 Q3Frame::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3Grid::frameChanged +456 Q3Frame::drawFrame +464 Q3Frame::drawContents +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI6Q3Grid) +488 Q3Grid::_ZThn16_N6Q3GridD1Ev +496 Q3Grid::_ZThn16_N6Q3GridD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3Grid + size=48 align=8 + base size=44 base align=8 +Q3Grid (0x7f62d93b6930) 0 + vptr=((& Q3Grid::_ZTV6Q3Grid) + 16u) + Q3Frame (0x7f62d93b69a0) 0 + primary-for Q3Grid (0x7f62d93b6930) + QFrame (0x7f62d93b6a10) 0 + primary-for Q3Frame (0x7f62d93b69a0) + QWidget (0x7f62d93b0600) 0 + primary-for QFrame (0x7f62d93b6a10) + QObject (0x7f62d93b6a80) 0 + primary-for QWidget (0x7f62d93b0600) + QPaintDevice (0x7f62d93b6af0) 16 + vptr=((& Q3Grid::_ZTV6Q3Grid) + 488u) + +Vtable for Q3GridView +Q3GridView::_ZTV10Q3GridView: 109u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10Q3GridView) +16 Q3GridView::metaObject +24 Q3GridView::qt_metacast +32 Q3GridView::qt_metacall +40 Q3GridView::~Q3GridView +48 Q3GridView::~Q3GridView +56 QFrame::event +64 Q3ScrollView::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 Q3ScrollView::setVisible +128 Q3ScrollView::sizeHint +136 Q3ScrollView::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 Q3ScrollView::mousePressEvent +168 Q3ScrollView::mouseReleaseEvent +176 Q3ScrollView::mouseDoubleClickEvent +184 Q3ScrollView::mouseMoveEvent +192 Q3ScrollView::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 Q3Frame::paintEvent +256 QWidget::moveEvent +264 Q3ScrollView::resizeEvent +272 QWidget::closeEvent +280 Q3ScrollView::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 Q3ScrollView::focusNextPrevChild +400 Q3ScrollView::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 Q3ScrollView::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3ScrollView::frameChanged +456 Q3Frame::drawFrame +464 Q3GridView::drawContents +472 Q3ScrollView::setResizePolicy +480 Q3ScrollView::addChild +488 Q3ScrollView::moveChild +496 Q3ScrollView::setVScrollBarMode +504 Q3ScrollView::setHScrollBarMode +512 Q3ScrollView::setCornerWidget +520 Q3ScrollView::setDragAutoScroll +528 Q3ScrollView::resizeContents +536 Q3ScrollView::setContentsPos +544 Q3GridView::drawContents +552 Q3ScrollView::drawContentsOffset +560 Q3ScrollView::contentsMousePressEvent +568 Q3ScrollView::contentsMouseReleaseEvent +576 Q3ScrollView::contentsMouseDoubleClickEvent +584 Q3ScrollView::contentsMouseMoveEvent +592 Q3ScrollView::contentsDragEnterEvent +600 Q3ScrollView::contentsDragMoveEvent +608 Q3ScrollView::contentsDragLeaveEvent +616 Q3ScrollView::contentsDropEvent +624 Q3ScrollView::contentsWheelEvent +632 Q3ScrollView::contentsContextMenuEvent +640 Q3ScrollView::viewportPaintEvent +648 Q3ScrollView::viewportResizeEvent +656 Q3ScrollView::viewportMousePressEvent +664 Q3ScrollView::viewportMouseReleaseEvent +672 Q3ScrollView::viewportMouseDoubleClickEvent +680 Q3ScrollView::viewportMouseMoveEvent +688 Q3ScrollView::viewportDragEnterEvent +696 Q3ScrollView::viewportDragMoveEvent +704 Q3ScrollView::viewportDragLeaveEvent +712 Q3ScrollView::viewportDropEvent +720 Q3ScrollView::viewportWheelEvent +728 Q3ScrollView::viewportContextMenuEvent +736 Q3ScrollView::setMargins +744 Q3ScrollView::setHBarGeometry +752 Q3ScrollView::setVBarGeometry +760 Q3GridView::setNumRows +768 Q3GridView::setNumCols +776 Q3GridView::setCellWidth +784 Q3GridView::setCellHeight +792 __cxa_pure_virtual +800 Q3GridView::paintEmptyArea +808 Q3GridView::dimensionChange +816 (int (*)(...))-0x00000000000000010 +824 (int (*)(...))(& _ZTI10Q3GridView) +832 Q3GridView::_ZThn16_N10Q3GridViewD1Ev +840 Q3GridView::_ZThn16_N10Q3GridViewD0Ev +848 QWidget::_ZThn16_NK7QWidget7devTypeEv +856 QWidget::_ZThn16_NK7QWidget11paintEngineEv +864 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3GridView + size=80 align=8 + base size=80 base align=8 +Q3GridView (0x7f62d93c1e70) 0 + vptr=((& Q3GridView::_ZTV10Q3GridView) + 16u) + Q3ScrollView (0x7f62d93c1ee0) 0 + primary-for Q3GridView (0x7f62d93c1e70) + Q3Frame (0x7f62d93c1f50) 0 + primary-for Q3ScrollView (0x7f62d93c1ee0) + QFrame (0x7f62d93c1230) 0 + primary-for Q3Frame (0x7f62d93c1f50) + QWidget (0x7f62d93b0d00) 0 + primary-for QFrame (0x7f62d93c1230) + QObject (0x7f62d93d4000) 0 + primary-for QWidget (0x7f62d93b0d00) + QPaintDevice (0x7f62d93d4070) 16 + vptr=((& Q3GridView::_ZTV10Q3GridView) + 832u) + +Vtable for Q3HBox +Q3HBox::_ZTV6Q3HBox: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6Q3HBox) +16 Q3HBox::metaObject +24 Q3HBox::qt_metacast +32 Q3HBox::qt_metacall +40 Q3HBox::~Q3HBox +48 Q3HBox::~Q3HBox +56 QFrame::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 Q3HBox::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 Q3Frame::paintEvent +256 QWidget::moveEvent +264 Q3Frame::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3HBox::frameChanged +456 Q3Frame::drawFrame +464 Q3Frame::drawContents +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI6Q3HBox) +488 Q3HBox::_ZThn16_N6Q3HBoxD1Ev +496 Q3HBox::_ZThn16_N6Q3HBoxD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3HBox + size=48 align=8 + base size=44 base align=8 +Q3HBox (0x7f62d93f7f50) 0 + vptr=((& Q3HBox::_ZTV6Q3HBox) + 16u) + Q3Frame (0x7f62d93f78c0) 0 + primary-for Q3HBox (0x7f62d93f7f50) + QFrame (0x7f62d93fb000) 0 + primary-for Q3Frame (0x7f62d93f78c0) + QWidget (0x7f62d93e9c00) 0 + primary-for QFrame (0x7f62d93fb000) + QObject (0x7f62d93fb070) 0 + primary-for QWidget (0x7f62d93e9c00) + QPaintDevice (0x7f62d93fb0e0) 16 + vptr=((& Q3HBox::_ZTV6Q3HBox) + 488u) + +Vtable for Q3HGroupBox +Q3HGroupBox::_ZTV11Q3HGroupBox: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11Q3HGroupBox) +16 Q3HGroupBox::metaObject +24 Q3HGroupBox::qt_metacast +32 Q3HGroupBox::qt_metacall +40 Q3HGroupBox::~Q3HGroupBox +48 Q3HGroupBox::~Q3HGroupBox +56 Q3GroupBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 Q3GroupBox::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QGroupBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QGroupBox::mousePressEvent +168 QGroupBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QGroupBox::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QGroupBox::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QGroupBox::paintEvent +256 QWidget::moveEvent +264 Q3GroupBox::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 Q3GroupBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3GroupBox::setColumnLayout +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI11Q3HGroupBox) +472 Q3HGroupBox::_ZThn16_N11Q3HGroupBoxD1Ev +480 Q3HGroupBox::_ZThn16_N11Q3HGroupBoxD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3HGroupBox + size=48 align=8 + base size=48 base align=8 +Q3HGroupBox (0x7f62d94114d0) 0 + vptr=((& Q3HGroupBox::_ZTV11Q3HGroupBox) + 16u) + Q3GroupBox (0x7f62d9411540) 0 + primary-for Q3HGroupBox (0x7f62d94114d0) + QGroupBox (0x7f62d94115b0) 0 + primary-for Q3GroupBox (0x7f62d9411540) + QWidget (0x7f62d940c300) 0 + primary-for QGroupBox (0x7f62d94115b0) + QObject (0x7f62d9411620) 0 + primary-for QWidget (0x7f62d940c300) + QPaintDevice (0x7f62d9411690) 16 + vptr=((& Q3HGroupBox::_ZTV11Q3HGroupBox) + 472u) + +Vtable for Q3ToolBar +Q3ToolBar::_ZTV9Q3ToolBar: 84u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9Q3ToolBar) +16 Q3ToolBar::metaObject +24 Q3ToolBar::qt_metacast +32 Q3ToolBar::qt_metacall +40 Q3ToolBar::~Q3ToolBar +48 Q3ToolBar::~Q3ToolBar +56 Q3ToolBar::event +64 Q3DockWindow::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 Q3ToolBar::setVisible +128 Q3DockWindow::sizeHint +136 Q3ToolBar::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 Q3Frame::paintEvent +256 QWidget::moveEvent +264 Q3ToolBar::resizeEvent +272 QWidget::closeEvent +280 Q3DockWindow::contextMenuEvent +288 QWidget::tabletEvent +296 Q3ToolBar::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 Q3DockWindow::showEvent +344 Q3DockWindow::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 Q3ToolBar::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3Frame::frameChanged +456 Q3DockWindow::drawFrame +464 Q3DockWindow::drawContents +472 Q3DockWindow::setWidget +480 Q3DockWindow::setCloseMode +488 Q3DockWindow::setResizeEnabled +496 Q3DockWindow::setMovingEnabled +504 Q3DockWindow::setHorizontallyStretchable +512 Q3DockWindow::setVerticallyStretchable +520 Q3DockWindow::setOffset +528 Q3DockWindow::setFixedExtentWidth +536 Q3DockWindow::setFixedExtentHeight +544 Q3DockWindow::setNewLine +552 Q3DockWindow::setOpaqueMoving +560 Q3DockWindow::undock +568 Q3DockWindow::undock +576 Q3DockWindow::dock +584 Q3ToolBar::setOrientation +592 Q3ToolBar::setStretchableWidget +600 Q3ToolBar::setLabel +608 Q3ToolBar::clear +616 (int (*)(...))-0x00000000000000010 +624 (int (*)(...))(& _ZTI9Q3ToolBar) +632 Q3ToolBar::_ZThn16_N9Q3ToolBarD1Ev +640 Q3ToolBar::_ZThn16_N9Q3ToolBarD0Ev +648 QWidget::_ZThn16_NK7QWidget7devTypeEv +656 QWidget::_ZThn16_NK7QWidget11paintEngineEv +664 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3ToolBar + size=288 align=8 + base size=288 base align=8 +Q3ToolBar (0x7f62d9423a80) 0 + vptr=((& Q3ToolBar::_ZTV9Q3ToolBar) + 16u) + Q3DockWindow (0x7f62d9423af0) 0 + primary-for Q3ToolBar (0x7f62d9423a80) + Q3Frame (0x7f62d9423b60) 0 + primary-for Q3DockWindow (0x7f62d9423af0) + QFrame (0x7f62d9423bd0) 0 + primary-for Q3Frame (0x7f62d9423b60) + QWidget (0x7f62d940ca00) 0 + primary-for QFrame (0x7f62d9423bd0) + QObject (0x7f62d9423c40) 0 + primary-for QWidget (0x7f62d940ca00) + QPaintDevice (0x7f62d9423cb0) 16 + vptr=((& Q3ToolBar::_ZTV9Q3ToolBar) + 632u) + +Vtable for Q3MainWindow +Q3MainWindow::_ZTV12Q3MainWindow: 87u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12Q3MainWindow) +16 Q3MainWindow::metaObject +24 Q3MainWindow::qt_metacast +32 Q3MainWindow::qt_metacall +40 Q3MainWindow::~Q3MainWindow +48 Q3MainWindow::~Q3MainWindow +56 Q3MainWindow::event +64 Q3MainWindow::eventFilter +72 QObject::timerEvent +80 Q3MainWindow::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 Q3MainWindow::setVisible +128 Q3MainWindow::sizeHint +136 Q3MainWindow::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 Q3MainWindow::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3MainWindow::setCentralWidget +456 Q3MainWindow::setDockEnabled +464 Q3MainWindow::setDockEnabled +472 Q3MainWindow::addDockWindow +480 Q3MainWindow::addDockWindow +488 Q3MainWindow::moveDockWindow +496 Q3MainWindow::moveDockWindow +504 Q3MainWindow::removeDockWindow +512 Q3MainWindow::dockingArea +520 Q3MainWindow::isCustomizable +528 Q3MainWindow::createDockWindowMenu +536 Q3MainWindow::setRightJustification +544 Q3MainWindow::setUsesBigPixmaps +552 Q3MainWindow::setUsesTextLabel +560 Q3MainWindow::setDockWindowsMovable +568 Q3MainWindow::setOpaqueMoving +576 Q3MainWindow::setDockMenuEnabled +584 Q3MainWindow::whatsThis +592 Q3MainWindow::setAppropriate +600 Q3MainWindow::customize +608 Q3MainWindow::setUpLayout +616 Q3MainWindow::showDockMenu +624 Q3MainWindow::setMenuBar +632 Q3MainWindow::setStatusBar +640 (int (*)(...))-0x00000000000000010 +648 (int (*)(...))(& _ZTI12Q3MainWindow) +656 Q3MainWindow::_ZThn16_N12Q3MainWindowD1Ev +664 Q3MainWindow::_ZThn16_N12Q3MainWindowD0Ev +672 QWidget::_ZThn16_NK7QWidget7devTypeEv +680 QWidget::_ZThn16_NK7QWidget11paintEngineEv +688 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3MainWindow + size=40 align=8 + base size=40 base align=8 +Q3MainWindow (0x7f62d9248230) 0 + vptr=((& Q3MainWindow::_ZTV12Q3MainWindow) + 16u) + QWidget (0x7f62d9246100) 0 + primary-for Q3MainWindow (0x7f62d9248230) + QObject (0x7f62d92482a0) 0 + primary-for QWidget (0x7f62d9246100) + QPaintDevice (0x7f62d9248310) 16 + vptr=((& Q3MainWindow::_ZTV12Q3MainWindow) + 656u) + +Vtable for Q3PopupMenu +Q3PopupMenu::_ZTV11Q3PopupMenu: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11Q3PopupMenu) +16 Q3PopupMenu::metaObject +24 Q3PopupMenu::qt_metacast +32 Q3PopupMenu::qt_metacall +40 Q3PopupMenu::~Q3PopupMenu +48 Q3PopupMenu::~Q3PopupMenu +56 QMenu::event +64 QObject::eventFilter +72 QMenu::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QMenu::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QMenu::mousePressEvent +168 QMenu::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QMenu::mouseMoveEvent +192 QMenu::wheelEvent +200 QMenu::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QMenu::enterEvent +240 QMenu::leaveEvent +248 QMenu::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QMenu::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QMenu::hideEvent +352 QWidget::x11Event +360 QMenu::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QMenu::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI11Q3PopupMenu) +464 Q3PopupMenu::_ZThn16_N11Q3PopupMenuD1Ev +472 Q3PopupMenu::_ZThn16_N11Q3PopupMenuD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3PopupMenu + size=40 align=8 + base size=40 base align=8 +Q3PopupMenu (0x7f62d928ab60) 0 + vptr=((& Q3PopupMenu::_ZTV11Q3PopupMenu) + 16u) + QMenu (0x7f62d928abd0) 0 + primary-for Q3PopupMenu (0x7f62d928ab60) + QWidget (0x7f62d9283880) 0 + primary-for QMenu (0x7f62d928abd0) + QObject (0x7f62d928ac40) 0 + primary-for QWidget (0x7f62d9283880) + QPaintDevice (0x7f62d928acb0) 16 + vptr=((& Q3PopupMenu::_ZTV11Q3PopupMenu) + 464u) + +Vtable for Q3ProgressBar +Q3ProgressBar::_ZTV13Q3ProgressBar: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13Q3ProgressBar) +16 Q3ProgressBar::metaObject +24 Q3ProgressBar::qt_metacast +32 Q3ProgressBar::qt_metacall +40 Q3ProgressBar::~Q3ProgressBar +48 Q3ProgressBar::~Q3ProgressBar +56 QFrame::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 Q3ProgressBar::setVisible +128 Q3ProgressBar::sizeHint +136 Q3ProgressBar::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 Q3ProgressBar::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 Q3ProgressBar::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3ProgressBar::setTotalSteps +456 Q3ProgressBar::setProgress +464 Q3ProgressBar::setIndicator +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI13Q3ProgressBar) +488 Q3ProgressBar::_ZThn16_N13Q3ProgressBarD1Ev +496 Q3ProgressBar::_ZThn16_N13Q3ProgressBarD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3ProgressBar + size=80 align=8 + base size=80 base align=8 +Q3ProgressBar (0x7f62d92c00e0) 0 + vptr=((& Q3ProgressBar::_ZTV13Q3ProgressBar) + 16u) + QFrame (0x7f62d92c0150) 0 + primary-for Q3ProgressBar (0x7f62d92c00e0) + QWidget (0x7f62d92bc900) 0 + primary-for QFrame (0x7f62d92c0150) + QObject (0x7f62d92c01c0) 0 + primary-for QWidget (0x7f62d92bc900) + QPaintDevice (0x7f62d92c0230) 16 + vptr=((& Q3ProgressBar::_ZTV13Q3ProgressBar) + 488u) + +Vtable for Q3RangeControl +Q3RangeControl::_ZTV14Q3RangeControl: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14Q3RangeControl) +16 Q3RangeControl::~Q3RangeControl +24 Q3RangeControl::~Q3RangeControl +32 Q3RangeControl::valueChange +40 Q3RangeControl::rangeChange +48 Q3RangeControl::stepChange + +Class Q3RangeControl + size=40 align=8 + base size=40 base align=8 +Q3RangeControl (0x7f62d92e58c0) 0 + vptr=((& Q3RangeControl::_ZTV14Q3RangeControl) + 16u) + +Vtable for Q3SpinWidget +Q3SpinWidget::_ZTV12Q3SpinWidget: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12Q3SpinWidget) +16 Q3SpinWidget::metaObject +24 Q3SpinWidget::qt_metacast +32 Q3SpinWidget::qt_metacall +40 Q3SpinWidget::~Q3SpinWidget +48 Q3SpinWidget::~Q3SpinWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 Q3SpinWidget::mousePressEvent +168 Q3SpinWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 Q3SpinWidget::mouseMoveEvent +192 Q3SpinWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 Q3SpinWidget::paintEvent +256 QWidget::moveEvent +264 Q3SpinWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 Q3SpinWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3SpinWidget::setButtonSymbols +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI12Q3SpinWidget) +472 Q3SpinWidget::_ZThn16_N12Q3SpinWidgetD1Ev +480 Q3SpinWidget::_ZThn16_N12Q3SpinWidgetD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3SpinWidget + size=48 align=8 + base size=48 base align=8 +Q3SpinWidget (0x7f62d92f5bd0) 0 + vptr=((& Q3SpinWidget::_ZTV12Q3SpinWidget) + 16u) + QWidget (0x7f62d92e2e00) 0 + primary-for Q3SpinWidget (0x7f62d92f5bd0) + QObject (0x7f62d92f5c40) 0 + primary-for QWidget (0x7f62d92e2e00) + QPaintDevice (0x7f62d92f5cb0) 16 + vptr=((& Q3SpinWidget::_ZTV12Q3SpinWidget) + 472u) + +Vtable for Q3VBox +Q3VBox::_ZTV6Q3VBox: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6Q3VBox) +16 Q3VBox::metaObject +24 Q3VBox::qt_metacast +32 Q3VBox::qt_metacall +40 Q3VBox::~Q3VBox +48 Q3VBox::~Q3VBox +56 QFrame::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 Q3HBox::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 Q3Frame::paintEvent +256 QWidget::moveEvent +264 Q3Frame::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3HBox::frameChanged +456 Q3Frame::drawFrame +464 Q3Frame::drawContents +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI6Q3VBox) +488 Q3VBox::_ZThn16_N6Q3VBoxD1Ev +496 Q3VBox::_ZThn16_N6Q3VBoxD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3VBox + size=48 align=8 + base size=44 base align=8 +Q3VBox (0x7f62d9316380) 0 + vptr=((& Q3VBox::_ZTV6Q3VBox) + 16u) + Q3HBox (0x7f62d93163f0) 0 + primary-for Q3VBox (0x7f62d9316380) + Q3Frame (0x7f62d9316460) 0 + primary-for Q3HBox (0x7f62d93163f0) + QFrame (0x7f62d93164d0) 0 + primary-for Q3Frame (0x7f62d9316460) + QWidget (0x7f62d9300600) 0 + primary-for QFrame (0x7f62d93164d0) + QObject (0x7f62d9316540) 0 + primary-for QWidget (0x7f62d9300600) + QPaintDevice (0x7f62d93165b0) 16 + vptr=((& Q3VBox::_ZTV6Q3VBox) + 488u) + +Vtable for Q3VGroupBox +Q3VGroupBox::_ZTV11Q3VGroupBox: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11Q3VGroupBox) +16 Q3VGroupBox::metaObject +24 Q3VGroupBox::qt_metacast +32 Q3VGroupBox::qt_metacall +40 Q3VGroupBox::~Q3VGroupBox +48 Q3VGroupBox::~Q3VGroupBox +56 Q3GroupBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 Q3GroupBox::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QGroupBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QGroupBox::mousePressEvent +168 QGroupBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QGroupBox::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QGroupBox::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QGroupBox::paintEvent +256 QWidget::moveEvent +264 Q3GroupBox::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 Q3GroupBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3GroupBox::setColumnLayout +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI11Q3VGroupBox) +472 Q3VGroupBox::_ZThn16_N11Q3VGroupBoxD1Ev +480 Q3VGroupBox::_ZThn16_N11Q3VGroupBoxD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3VGroupBox + size=48 align=8 + base size=48 base align=8 +Q3VGroupBox (0x7f62d9327850) 0 + vptr=((& Q3VGroupBox::_ZTV11Q3VGroupBox) + 16u) + Q3GroupBox (0x7f62d93278c0) 0 + primary-for Q3VGroupBox (0x7f62d9327850) + QGroupBox (0x7f62d9327930) 0 + primary-for Q3GroupBox (0x7f62d93278c0) + QWidget (0x7f62d9300d00) 0 + primary-for QGroupBox (0x7f62d9327930) + QObject (0x7f62d93279a0) 0 + primary-for QWidget (0x7f62d9300d00) + QPaintDevice (0x7f62d9327a10) 16 + vptr=((& Q3VGroupBox::_ZTV11Q3VGroupBox) + 472u) + +Vtable for Q3WhatsThis +Q3WhatsThis::_ZTV11Q3WhatsThis: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11Q3WhatsThis) +16 Q3WhatsThis::metaObject +24 Q3WhatsThis::qt_metacast +32 Q3WhatsThis::qt_metacall +40 Q3WhatsThis::~Q3WhatsThis +48 Q3WhatsThis::~Q3WhatsThis +56 QObject::event +64 Q3WhatsThis::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 Q3WhatsThis::text +120 Q3WhatsThis::clicked + +Class Q3WhatsThis + size=16 align=8 + base size=16 base align=8 +Q3WhatsThis (0x7f62d9334e70) 0 + vptr=((& Q3WhatsThis::_ZTV11Q3WhatsThis) + 16u) + QObject (0x7f62d9334ee0) 0 + primary-for Q3WhatsThis (0x7f62d9334e70) + +Vtable for Q3WidgetStack +Q3WidgetStack::_ZTV13Q3WidgetStack: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13Q3WidgetStack) +16 Q3WidgetStack::metaObject +24 Q3WidgetStack::qt_metacast +32 Q3WidgetStack::qt_metacall +40 Q3WidgetStack::~Q3WidgetStack +48 Q3WidgetStack::~Q3WidgetStack +56 Q3WidgetStack::event +64 QObject::eventFilter +72 QObject::timerEvent +80 Q3WidgetStack::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 Q3WidgetStack::setVisible +128 Q3WidgetStack::sizeHint +136 Q3WidgetStack::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 Q3Frame::paintEvent +256 QWidget::moveEvent +264 Q3WidgetStack::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 Q3WidgetStack::frameChanged +456 Q3Frame::drawFrame +464 Q3Frame::drawContents +472 Q3WidgetStack::setChildGeometries +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI13Q3WidgetStack) +496 Q3WidgetStack::_ZThn16_N13Q3WidgetStackD1Ev +504 Q3WidgetStack::_ZThn16_N13Q3WidgetStackD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3WidgetStack + size=88 align=8 + base size=88 base align=8 +Q3WidgetStack (0x7f62d9158460) 0 + vptr=((& Q3WidgetStack::_ZTV13Q3WidgetStack) + 16u) + Q3Frame (0x7f62d91584d0) 0 + primary-for Q3WidgetStack (0x7f62d9158460) + QFrame (0x7f62d9158540) 0 + primary-for Q3Frame (0x7f62d91584d0) + QWidget (0x7f62d915a280) 0 + primary-for QFrame (0x7f62d9158540) + QObject (0x7f62d91585b0) 0 + primary-for QWidget (0x7f62d915a280) + QPaintDevice (0x7f62d9158620) 16 + vptr=((& Q3WidgetStack::_ZTV13Q3WidgetStack) + 496u) + diff --git a/tests/auto/bic/data/QtCore.4.5.0.linux-gcc-amd64.txt b/tests/auto/bic/data/QtCore.4.5.0.linux-gcc-amd64.txt new file mode 100644 index 0000000..c41d8c1 --- /dev/null +++ b/tests/auto/bic/data/QtCore.4.5.0.linux-gcc-amd64.txt @@ -0,0 +1,2343 @@ +Class QSysInfo + size=1 align=1 + base size=0 base align=1 +QSysInfo (0x7f74d5406460) 0 empty + +Class QBool + size=1 align=1 + base size=1 base align=1 +QBool (0x7f74d541b150) 0 + +Class qIsNull(double)::U + size=8 align=8 + base size=8 base align=8 +qIsNull(double)::U (0x7f74d5433540) 0 + +Class qIsNull(float)::U + size=4 align=4 + base size=4 base align=4 +qIsNull(float)::U (0x7f74d54337e0) 0 + +Class QFlag + size=4 align=4 + base size=4 base align=4 +QFlag (0x7f74d5469620) 0 + +Class QIncompatibleFlag + size=4 align=4 + base size=4 base align=4 +QIncompatibleFlag (0x7f74d5469e00) 0 + +Class QInternal + size=1 align=1 + base size=0 base align=1 +QInternal (0x7f74d4a63540) 0 empty + +Class QGenericArgument + size=16 align=8 + base size=16 base align=8 +QGenericArgument (0x7f74d4a63850) 0 + +Class QGenericReturnArgument + size=16 align=8 + base size=16 base align=8 +QGenericReturnArgument (0x7f74d4a7f3f0) 0 + QGenericArgument (0x7f74d4a7f460) 0 + +Class QMetaObject + size=32 align=8 + base size=32 base align=8 +QMetaObject (0x7f74d4a7fcb0) 0 + +Class QMetaObjectExtraData + size=16 align=8 + base size=16 base align=8 +QMetaObjectExtraData (0x7f74d4aa6cb0) 0 + +Class QLatin1Char + size=1 align=1 + base size=1 base align=1 +QLatin1Char (0x7f74d4ab2700) 0 + +Class QChar + size=2 align=2 + base size=2 base align=2 +QChar (0x7f74d4ab62a0) 0 + +Class QBasicAtomicInt + size=4 align=4 + base size=4 base align=4 +QBasicAtomicInt (0x7f74d491f380) 0 + +Class QAtomicInt + size=4 align=4 + base size=4 base align=4 +QAtomicInt (0x7f74d4959d20) 0 + QBasicAtomicInt (0x7f74d4959d90) 0 + +Class __locale_struct + size=232 align=8 + base size=232 base align=8 +__locale_struct (0x7f74d49801c0) 0 + +Class QByteArray::Data + size=32 align=8 + base size=32 base align=8 +QByteArray::Data (0x7f74d47fd7e0) 0 + +Class QByteArray + size=8 align=8 + base size=8 base align=8 +QByteArray (0x7f74d49b7540) 0 + +Class QByteRef + size=16 align=8 + base size=12 base align=8 +QByteRef (0x7f74d4853a80) 0 + +Class QString::Null + size=1 align=1 + base size=0 base align=1 +QString::Null (0x7f74d475a700) 0 empty + +Class QString::Data + size=32 align=8 + base size=32 base align=8 +QString::Data (0x7f74d4769ee0) 0 + +Class QString + size=8 align=8 + base size=8 base align=8 +QString (0x7f74d46d95b0) 0 + +Class QLatin1String + size=8 align=8 + base size=8 base align=8 +QLatin1String (0x7f74d4644000) 0 + +Class QCharRef + size=16 align=8 + base size=12 base align=8 +QCharRef (0x7f74d44da620) 0 + +Class QConstString + size=8 align=8 + base size=8 base align=8 +QConstString (0x7f74d4424ee0) 0 + QString (0x7f74d4424f50) 0 + +Class QStringRef + size=16 align=8 + base size=16 base align=8 +QStringRef (0x7f74d4445bd0) 0 + +Vtable for std::exception +std::exception::_ZTVSt9exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9exception) +16 std::exception::~exception +24 std::exception::~exception +32 std::exception::what + +Class std::exception + size=8 align=8 + base size=8 base align=8 +std::exception (0x7f74d4300620) 0 nearly-empty + vptr=((& std::exception::_ZTVSt9exception) + 16u) + +Vtable for std::bad_exception +std::bad_exception::_ZTVSt13bad_exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13bad_exception) +16 std::bad_exception::~bad_exception +24 std::bad_exception::~bad_exception +32 std::bad_exception::what + +Class std::bad_exception + size=8 align=8 + base size=8 base align=8 +std::bad_exception (0x7f74d4322000) 0 nearly-empty + vptr=((& std::bad_exception::_ZTVSt13bad_exception) + 16u) + std::exception (0x7f74d4322070) 0 nearly-empty + primary-for std::bad_exception (0x7f74d4322000) + +Vtable for std::bad_alloc +std::bad_alloc::_ZTVSt9bad_alloc: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9bad_alloc) +16 std::bad_alloc::~bad_alloc +24 std::bad_alloc::~bad_alloc +32 std::bad_alloc::what + +Class std::bad_alloc + size=8 align=8 + base size=8 base align=8 +std::bad_alloc (0x7f74d43228c0) 0 nearly-empty + vptr=((& std::bad_alloc::_ZTVSt9bad_alloc) + 16u) + std::exception (0x7f74d4322930) 0 nearly-empty + primary-for std::bad_alloc (0x7f74d43228c0) + +Class std::nothrow_t + size=1 align=1 + base size=0 base align=1 +std::nothrow_t (0x7f74d43330e0) 0 empty + +Class QListData::Data + size=32 align=8 + base size=32 base align=8 +QListData::Data (0x7f74d4333620) 0 + +Class QListData + size=8 align=8 + base size=8 base align=8 +QListData (0x7f74d43335b0) 0 + +Vtable for QObjectData +QObjectData::_ZTV11QObjectData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QObjectData) +16 __cxa_pure_virtual +24 __cxa_pure_virtual + +Class QObjectData + size=40 align=8 + base size=40 base align=8 +QObjectData (0x7f74d4235bd0) 0 + vptr=((& QObjectData::_ZTV11QObjectData) + 16u) + +Vtable for QObject +QObject::_ZTV7QObject: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QObject) +16 QObject::metaObject +24 QObject::qt_metacast +32 QObject::qt_metacall +40 QObject::~QObject +48 QObject::~QObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObject + size=16 align=8 + base size=16 base align=8 +QObject (0x7f74d4235ee0) 0 + vptr=((& QObject::_ZTV7QObject) + 16u) + +Vtable for QObjectUserData +QObjectUserData::_ZTV15QObjectUserData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QObjectUserData) +16 QObjectUserData::~QObjectUserData +24 QObjectUserData::~QObjectUserData + +Class QObjectUserData + size=8 align=8 + base size=8 base align=8 +QObjectUserData (0x7f74d42c93f0) 0 nearly-empty + vptr=((& QObjectUserData::_ZTV15QObjectUserData) + 16u) + +Vtable for QIODevice +QIODevice::_ZTV9QIODevice: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QIODevice) +16 QIODevice::metaObject +24 QIODevice::qt_metacast +32 QIODevice::qt_metacall +40 QIODevice::~QIODevice +48 QIODevice::~QIODevice +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QIODevice::isSequential +120 QIODevice::open +128 QIODevice::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QIODevice::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 __cxa_pure_virtual +224 QIODevice::readLineData +232 __cxa_pure_virtual + +Class QIODevice + size=16 align=8 + base size=16 base align=8 +QIODevice (0x7f74d42c9930) 0 + vptr=((& QIODevice::_ZTV9QIODevice) + 16u) + QObject (0x7f74d42c99a0) 0 + primary-for QIODevice (0x7f74d42c9930) + +Vtable for QDataStream +QDataStream::_ZTV11QDataStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QDataStream) +16 QDataStream::~QDataStream +24 QDataStream::~QDataStream + +Class QDataStream + size=40 align=8 + base size=40 base align=8 +QDataStream (0x7f74d412e2a0) 0 + vptr=((& QDataStream::_ZTV11QDataStream) + 16u) + +Class QHashData::Node + size=16 align=8 + base size=16 base align=8 +QHashData::Node (0x7f74d41b3150) 0 + +Class QHashData + size=40 align=8 + base size=40 base align=8 +QHashData (0x7f74d41b30e0) 0 + +Class QHashDummyValue + size=1 align=1 + base size=0 base align=1 +QHashDummyValue (0x7f74d3fc4ee0) 0 empty + +Class QMapData::Node + size=16 align=8 + base size=16 base align=8 +QMapData::Node (0x7f74d3ed6690) 0 + +Class QMapData + size=128 align=8 + base size=128 base align=8 +QMapData (0x7f74d3ed6620) 0 + +Vtable for QSystemLocale +QSystemLocale::_ZTV13QSystemLocale: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSystemLocale) +16 QSystemLocale::~QSystemLocale +24 QSystemLocale::~QSystemLocale +32 QSystemLocale::query +40 QSystemLocale::fallbackLocale + +Class QSystemLocale + size=8 align=8 + base size=8 base align=8 +QSystemLocale (0x7f74d3debe00) 0 nearly-empty + vptr=((& QSystemLocale::_ZTV13QSystemLocale) + 16u) + +Class QLocale::Data + size=4 align=2 + base size=4 base align=2 +QLocale::Data (0x7f74d3e483f0) 0 + +Class QLocale + size=8 align=8 + base size=8 base align=8 +QLocale (0x7f74d3e0c0e0) 0 + +Class QTextCodec::ConverterState + size=32 align=8 + base size=32 base align=8 +QTextCodec::ConverterState (0x7f74d3e95e70) 0 + +Vtable for QTextCodec +QTextCodec::_ZTV10QTextCodec: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextCodec) +16 __cxa_pure_virtual +24 QTextCodec::aliases +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QTextCodec::~QTextCodec +64 QTextCodec::~QTextCodec + +Class QTextCodec + size=8 align=8 + base size=8 base align=8 +QTextCodec (0x7f74d3e80a80) 0 nearly-empty + vptr=((& QTextCodec::_ZTV10QTextCodec) + 16u) + +Class QTextEncoder + size=40 align=8 + base size=40 base align=8 +QTextEncoder (0x7f74d3d033f0) 0 + +Class QTextDecoder + size=40 align=8 + base size=40 base align=8 +QTextDecoder (0x7f74d3d0c230) 0 + +Class _IO_marker + size=24 align=8 + base size=24 base align=8 +_IO_marker (0x7f74d3d142a0) 0 + +Class _IO_FILE + size=216 align=8 + base size=216 base align=8 +_IO_FILE (0x7f74d3d14310) 0 + +Vtable for QTextStream +QTextStream::_ZTV11QTextStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTextStream) +16 QTextStream::~QTextStream +24 QTextStream::~QTextStream + +Class QTextStream + size=16 align=8 + base size=16 base align=8 +QTextStream (0x7f74d3d143f0) 0 + vptr=((& QTextStream::_ZTV11QTextStream) + 16u) + +Class QTextStreamManipulator + size=40 align=8 + base size=38 base align=8 +QTextStreamManipulator (0x7f74d3dacee0) 0 + +Vtable for QTextIStream +QTextIStream::_ZTV12QTextIStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextIStream) +16 QTextIStream::~QTextIStream +24 QTextIStream::~QTextIStream + +Class QTextIStream + size=16 align=8 + base size=16 base align=8 +QTextIStream (0x7f74d3bd91c0) 0 + vptr=((& QTextIStream::_ZTV12QTextIStream) + 16u) + QTextStream (0x7f74d3bd9230) 0 + primary-for QTextIStream (0x7f74d3bd91c0) + +Vtable for QTextOStream +QTextOStream::_ZTV12QTextOStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextOStream) +16 QTextOStream::~QTextOStream +24 QTextOStream::~QTextOStream + +Class QTextOStream + size=16 align=8 + base size=16 base align=8 +QTextOStream (0x7f74d3bed070) 0 + vptr=((& QTextOStream::_ZTV12QTextOStream) + 16u) + QTextStream (0x7f74d3bed0e0) 0 + primary-for QTextOStream (0x7f74d3bed070) + +Class wait + size=4 align=4 + base size=4 base align=4 +wait (0x7f74d3bfaee0) 0 + +Class timespec + size=16 align=8 + base size=16 base align=8 +timespec (0x7f74d3c07230) 0 + +Class timeval + size=16 align=8 + base size=16 base align=8 +timeval (0x7f74d3c072a0) 0 + +Class __pthread_internal_list + size=16 align=8 + base size=16 base align=8 +__pthread_internal_list (0x7f74d3c073f0) 0 + +Class random_data + size=48 align=8 + base size=48 base align=8 +random_data (0x7f74d3c079a0) 0 + +Class drand48_data + size=24 align=8 + base size=24 base align=8 +drand48_data (0x7f74d3c07a10) 0 + +Class QVectorData + size=16 align=4 + base size=16 base align=4 +QVectorData (0x7f74d3c07a80) 0 + +Class QDebug::Stream + size=40 align=8 + base size=34 base align=8 +QDebug::Stream (0x7f74d3b82230) 0 + +Class QDebug + size=8 align=8 + base size=8 base align=8 +QDebug (0x7f74d3b821c0) 0 + +Class QNoDebug + size=1 align=1 + base size=0 base align=1 +QNoDebug (0x7f74d3a1f070) 0 empty + +Vtable for QFile +QFile::_ZTV5QFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QFile) +16 QFile::metaObject +24 QFile::qt_metacast +32 QFile::qt_metacall +40 QFile::~QFile +48 QFile::~QFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QFile::fileEngine + +Class QFile + size=16 align=8 + base size=16 base align=8 +QFile (0x7f74d3a31620) 0 + vptr=((& QFile::_ZTV5QFile) + 16u) + QIODevice (0x7f74d3a31690) 0 + primary-for QFile (0x7f74d3a31620) + QObject (0x7f74d3a31700) 0 + primary-for QIODevice (0x7f74d3a31690) + +Vtable for QTemporaryFile +QTemporaryFile::_ZTV14QTemporaryFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QTemporaryFile) +16 QTemporaryFile::metaObject +24 QTemporaryFile::qt_metacast +32 QTemporaryFile::qt_metacall +40 QTemporaryFile::~QTemporaryFile +48 QTemporaryFile::~QTemporaryFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QTemporaryFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QTemporaryFile::fileEngine + +Class QTemporaryFile + size=16 align=8 + base size=16 base align=8 +QTemporaryFile (0x7f74d3a9d850) 0 + vptr=((& QTemporaryFile::_ZTV14QTemporaryFile) + 16u) + QFile (0x7f74d3a9d8c0) 0 + primary-for QTemporaryFile (0x7f74d3a9d850) + QIODevice (0x7f74d3a9d930) 0 + primary-for QFile (0x7f74d3a9d8c0) + QObject (0x7f74d3a9d9a0) 0 + primary-for QIODevice (0x7f74d3a9d930) + +Class QFileInfo + size=8 align=8 + base size=8 base align=8 +QFileInfo (0x7f74d38bdf50) 0 + +Class QRegExp + size=8 align=8 + base size=8 base align=8 +QRegExp (0x7f74d391a770) 0 + +Class QStringMatcher + size=1048 align=8 + base size=1048 base align=8 +QStringMatcher (0x7f74d39665b0) 0 + +Class QStringList + size=8 align=8 + base size=8 base align=8 +QStringList (0x7f74d397b070) 0 + QList (0x7f74d397b0e0) 0 + +Class QDir + size=8 align=8 + base size=8 base align=8 +QDir (0x7f74d3808cb0) 0 + +Class QAbstractFileEngine::ExtensionOption + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionOption (0x7f74d38a2e70) 0 empty + +Class QAbstractFileEngine::ExtensionReturn + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionReturn (0x7f74d38a2ee0) 0 empty + +Class QAbstractFileEngine::MapExtensionOption + size=24 align=8 + base size=20 base align=8 +QAbstractFileEngine::MapExtensionOption (0x7f74d38a2f50) 0 + QAbstractFileEngine::ExtensionOption (0x7f74d38b6000) 0 empty + +Class QAbstractFileEngine::MapExtensionReturn + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::MapExtensionReturn (0x7f74d38b61c0) 0 + QAbstractFileEngine::ExtensionReturn (0x7f74d38b6230) 0 empty + +Class QAbstractFileEngine::UnMapExtensionOption + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::UnMapExtensionOption (0x7f74d38b62a0) 0 + QAbstractFileEngine::ExtensionOption (0x7f74d38b6310) 0 empty + +Vtable for QAbstractFileEngine +QAbstractFileEngine::_ZTV19QAbstractFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractFileEngine) +16 QAbstractFileEngine::~QAbstractFileEngine +24 QAbstractFileEngine::~QAbstractFileEngine +32 QAbstractFileEngine::open +40 QAbstractFileEngine::close +48 QAbstractFileEngine::flush +56 QAbstractFileEngine::size +64 QAbstractFileEngine::pos +72 QAbstractFileEngine::seek +80 QAbstractFileEngine::isSequential +88 QAbstractFileEngine::remove +96 QAbstractFileEngine::copy +104 QAbstractFileEngine::rename +112 QAbstractFileEngine::link +120 QAbstractFileEngine::mkdir +128 QAbstractFileEngine::rmdir +136 QAbstractFileEngine::setSize +144 QAbstractFileEngine::caseSensitive +152 QAbstractFileEngine::isRelativePath +160 QAbstractFileEngine::entryList +168 QAbstractFileEngine::fileFlags +176 QAbstractFileEngine::setPermissions +184 QAbstractFileEngine::fileName +192 QAbstractFileEngine::ownerId +200 QAbstractFileEngine::owner +208 QAbstractFileEngine::fileTime +216 QAbstractFileEngine::setFileName +224 QAbstractFileEngine::handle +232 QAbstractFileEngine::beginEntryList +240 QAbstractFileEngine::endEntryList +248 QAbstractFileEngine::read +256 QAbstractFileEngine::readLine +264 QAbstractFileEngine::write +272 QAbstractFileEngine::extension +280 QAbstractFileEngine::supportsExtension + +Class QAbstractFileEngine + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngine (0x7f74d3891e00) 0 + vptr=((& QAbstractFileEngine::_ZTV19QAbstractFileEngine) + 16u) + +Vtable for QAbstractFileEngineHandler +QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QAbstractFileEngineHandler) +16 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +24 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +32 __cxa_pure_virtual + +Class QAbstractFileEngineHandler + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngineHandler (0x7f74d36e7000) 0 nearly-empty + vptr=((& QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler) + 16u) + +Vtable for QAbstractFileEngineIterator +QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QAbstractFileEngineIterator) +16 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +24 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QAbstractFileEngineIterator::currentFileInfo +64 QAbstractFileEngineIterator::entryInfo + +Class QAbstractFileEngineIterator + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngineIterator (0x7f74d36e71c0) 0 + vptr=((& QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator) + 16u) + +Vtable for QFSFileEngine +QFSFileEngine::_ZTV13QFSFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QFSFileEngine) +16 QFSFileEngine::~QFSFileEngine +24 QFSFileEngine::~QFSFileEngine +32 QFSFileEngine::open +40 QFSFileEngine::close +48 QFSFileEngine::flush +56 QFSFileEngine::size +64 QFSFileEngine::pos +72 QFSFileEngine::seek +80 QFSFileEngine::isSequential +88 QFSFileEngine::remove +96 QFSFileEngine::copy +104 QFSFileEngine::rename +112 QFSFileEngine::link +120 QFSFileEngine::mkdir +128 QFSFileEngine::rmdir +136 QFSFileEngine::setSize +144 QFSFileEngine::caseSensitive +152 QFSFileEngine::isRelativePath +160 QFSFileEngine::entryList +168 QFSFileEngine::fileFlags +176 QFSFileEngine::setPermissions +184 QFSFileEngine::fileName +192 QFSFileEngine::ownerId +200 QFSFileEngine::owner +208 QFSFileEngine::fileTime +216 QFSFileEngine::setFileName +224 QFSFileEngine::handle +232 QFSFileEngine::beginEntryList +240 QFSFileEngine::endEntryList +248 QFSFileEngine::read +256 QFSFileEngine::readLine +264 QFSFileEngine::write +272 QFSFileEngine::extension +280 QFSFileEngine::supportsExtension + +Class QFSFileEngine + size=16 align=8 + base size=16 base align=8 +QFSFileEngine (0x7f74d36e7a10) 0 + vptr=((& QFSFileEngine::_ZTV13QFSFileEngine) + 16u) + QAbstractFileEngine (0x7f74d36e7a80) 0 + primary-for QFSFileEngine (0x7f74d36e7a10) + +Vtable for QProcess +QProcess::_ZTV8QProcess: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QProcess) +16 QProcess::metaObject +24 QProcess::qt_metacast +32 QProcess::qt_metacall +40 QProcess::~QProcess +48 QProcess::~QProcess +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QProcess::isSequential +120 QIODevice::open +128 QProcess::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QProcess::atEnd +168 QIODevice::reset +176 QProcess::bytesAvailable +184 QProcess::bytesToWrite +192 QProcess::canReadLine +200 QProcess::waitForReadyRead +208 QProcess::waitForBytesWritten +216 QProcess::readData +224 QIODevice::readLineData +232 QProcess::writeData +240 QProcess::setupChildProcess + +Class QProcess + size=16 align=8 + base size=16 base align=8 +QProcess (0x7f74d36fdd20) 0 + vptr=((& QProcess::_ZTV8QProcess) + 16u) + QIODevice (0x7f74d36fdd90) 0 + primary-for QProcess (0x7f74d36fdd20) + QObject (0x7f74d36fde00) 0 + primary-for QIODevice (0x7f74d36fdd90) + +Class QResource + size=8 align=8 + base size=8 base align=8 +QResource (0x7f74d373a230) 0 + +Vtable for QDirIterator +QDirIterator::_ZTV12QDirIterator: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QDirIterator) +16 QDirIterator::~QDirIterator +24 QDirIterator::~QDirIterator + +Class QDirIterator + size=16 align=8 + base size=16 base align=8 +QDirIterator (0x7f74d373acb0) 0 + vptr=((& QDirIterator::_ZTV12QDirIterator) + 16u) + +Vtable for QBuffer +QBuffer::_ZTV7QBuffer: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QBuffer) +16 QBuffer::metaObject +24 QBuffer::qt_metacast +32 QBuffer::qt_metacall +40 QBuffer::~QBuffer +48 QBuffer::~QBuffer +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QBuffer::connectNotify +104 QBuffer::disconnectNotify +112 QIODevice::isSequential +120 QBuffer::open +128 QBuffer::close +136 QBuffer::pos +144 QBuffer::size +152 QBuffer::seek +160 QBuffer::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QBuffer::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QBuffer::readData +224 QIODevice::readLineData +232 QBuffer::writeData + +Class QBuffer + size=16 align=8 + base size=16 base align=8 +QBuffer (0x7f74d3769a80) 0 + vptr=((& QBuffer::_ZTV7QBuffer) + 16u) + QIODevice (0x7f74d3769af0) 0 + primary-for QBuffer (0x7f74d3769a80) + QObject (0x7f74d3769b60) 0 + primary-for QIODevice (0x7f74d3769af0) + +Vtable for QFileSystemWatcher +QFileSystemWatcher::_ZTV18QFileSystemWatcher: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFileSystemWatcher) +16 QFileSystemWatcher::metaObject +24 QFileSystemWatcher::qt_metacast +32 QFileSystemWatcher::qt_metacall +40 QFileSystemWatcher::~QFileSystemWatcher +48 QFileSystemWatcher::~QFileSystemWatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QFileSystemWatcher + size=16 align=8 + base size=16 base align=8 +QFileSystemWatcher (0x7f74d3792690) 0 + vptr=((& QFileSystemWatcher::_ZTV18QFileSystemWatcher) + 16u) + QObject (0x7f74d3792700) 0 + primary-for QFileSystemWatcher (0x7f74d3792690) + +Class QUrl + size=8 align=8 + base size=8 base align=8 +QUrl (0x7f74d37a5bd0) 0 + +Class QMetaType + size=1 align=1 + base size=0 base align=1 +QMetaType (0x7f74d36103f0) 0 empty + +Class QVariant::PrivateShared + size=16 align=8 + base size=12 base align=8 +QVariant::PrivateShared (0x7f74d34e3930) 0 + +Class QVariant::Private::Data + size=8 align=8 + base size=8 base align=8 +QVariant::Private::Data (0x7f74d34e3c40) 0 + +Class QVariant::Private + size=16 align=8 + base size=12 base align=8 +QVariant::Private (0x7f74d34e3a10) 0 + +Class QVariant::Handler + size=72 align=8 + base size=72 base align=8 +QVariant::Handler (0x7f74d34f1930) 0 + +Class QVariant + size=16 align=8 + base size=16 base align=8 +QVariant (0x7f74d34b2af0) 0 + +Class QVariantComparisonHelper + size=8 align=8 + base size=8 base align=8 +QVariantComparisonHelper (0x7f74d3396cb0) 0 + +Vtable for QSettings +QSettings::_ZTV9QSettings: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QSettings) +16 QSettings::metaObject +24 QSettings::qt_metacast +32 QSettings::qt_metacall +40 QSettings::~QSettings +48 QSettings::~QSettings +56 QSettings::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSettings + size=16 align=8 + base size=16 base align=8 +QSettings (0x7f74d33bacb0) 0 + vptr=((& QSettings::_ZTV9QSettings) + 16u) + QObject (0x7f74d33bad20) 0 + primary-for QSettings (0x7f74d33bacb0) + +Class QXmlStreamStringRef + size=16 align=8 + base size=16 base align=8 +QXmlStreamStringRef (0x7f74d343d070) 0 + +Class QXmlStreamAttribute + size=80 align=8 + base size=73 base align=8 +QXmlStreamAttribute (0x7f74d345b850) 0 + +Class QXmlStreamAttributes + size=8 align=8 + base size=8 base align=8 +QXmlStreamAttributes (0x7f74d3482380) 0 + QVector (0x7f74d34823f0) 0 + +Class QXmlStreamNamespaceDeclaration + size=40 align=8 + base size=40 base align=8 +QXmlStreamNamespaceDeclaration (0x7f74d3482850) 0 + +Class QXmlStreamNotationDeclaration + size=56 align=8 + base size=56 base align=8 +QXmlStreamNotationDeclaration (0x7f74d32c41c0) 0 + +Class QXmlStreamEntityDeclaration + size=88 align=8 + base size=88 base align=8 +QXmlStreamEntityDeclaration (0x7f74d32e3070) 0 + +Vtable for QXmlStreamEntityResolver +QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QXmlStreamEntityResolver) +16 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +24 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +32 QXmlStreamEntityResolver::resolveEntity +40 QXmlStreamEntityResolver::resolveUndeclaredEntity + +Class QXmlStreamEntityResolver + size=8 align=8 + base size=8 base align=8 +QXmlStreamEntityResolver (0x7f74d33009a0) 0 nearly-empty + vptr=((& QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver) + 16u) + +Class QXmlStreamReader + size=8 align=8 + base size=8 base align=8 +QXmlStreamReader (0x7f74d3300b60) 0 + +Class QXmlStreamWriter + size=8 align=8 + base size=8 base align=8 +QXmlStreamWriter (0x7f74d333da10) 0 + +Class QPoint + size=8 align=4 + base size=8 base align=4 +QPoint (0x7f74d337b150) 0 + +Class QPointF + size=16 align=8 + base size=16 base align=8 +QPointF (0x7f74d31b1d90) 0 + +Class QLine + size=16 align=4 + base size=16 base align=4 +QLine (0x7f74d31efbd0) 0 + +Class QLineF + size=32 align=8 + base size=32 base align=8 +QLineF (0x7f74d3228a80) 0 + +Class QSize + size=8 align=4 + base size=8 base align=4 +QSize (0x7f74d3285540) 0 + +Class QSizeF + size=16 align=8 + base size=16 base align=8 +QSizeF (0x7f74d30d0380) 0 + +Class QRect + size=16 align=4 + base size=16 base align=4 +QRect (0x7f74d311e9a0) 0 + +Class QRectF + size=32 align=8 + base size=32 base align=8 +QRectF (0x7f74d2fcc380) 0 + +Class QSharedData + size=4 align=4 + base size=4 base align=4 +QSharedData (0x7f74d3078150) 0 + +Vtable for QtSharedPointer::ExternalRefCountData +QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN15QtSharedPointer20ExternalRefCountDataE) +16 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +24 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +32 QtSharedPointer::ExternalRefCountData::destroy + +Class QtSharedPointer::ExternalRefCountData + size=16 align=8 + base size=16 base align=8 +QtSharedPointer::ExternalRefCountData (0x7f74d2ea7af0) 0 + vptr=((& QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE) + 16u) + +Class QLinkedListData + size=32 align=8 + base size=32 base align=8 +QLinkedListData (0x7f74d2f2fc40) 0 + +Class QBitArray + size=8 align=8 + base size=8 base align=8 +QBitArray (0x7f74d2dfbb60) 0 + +Class QBitRef + size=16 align=8 + base size=12 base align=8 +QBitRef (0x7f74d2e6d930) 0 + +Class QByteArrayMatcher + size=1040 align=8 + base size=1040 base align=8 +QByteArrayMatcher (0x7f74d2c88310) 0 + +Class QCryptographicHash + size=8 align=8 + base size=8 base align=8 +QCryptographicHash (0x7f74d2c99a10) 0 + +Class QTextBoundaryFinder + size=48 align=8 + base size=48 base align=8 +QTextBoundaryFinder (0x7f74d2cc8460) 0 + +Class QDate + size=4 align=4 + base size=4 base align=4 +QDate (0x7f74d2cdd7e0) 0 + +Class QTime + size=4 align=4 + base size=4 base align=4 +QTime (0x7f74d2d05770) 0 + +Class QDateTime + size=8 align=8 + base size=8 base align=8 +QDateTime (0x7f74d2d22d20) 0 + +Vtable for QTimeLine +QTimeLine::_ZTV9QTimeLine: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTimeLine) +16 QTimeLine::metaObject +24 QTimeLine::qt_metacast +32 QTimeLine::qt_metacall +40 QTimeLine::~QTimeLine +48 QTimeLine::~QTimeLine +56 QObject::event +64 QObject::eventFilter +72 QTimeLine::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTimeLine::valueForTime + +Class QTimeLine + size=16 align=8 + base size=16 base align=8 +QTimeLine (0x7f74d2d581c0) 0 + vptr=((& QTimeLine::_ZTV9QTimeLine) + 16u) + QObject (0x7f74d2d58230) 0 + primary-for QTimeLine (0x7f74d2d581c0) + +Vtable for QRunnable +QRunnable::_ZTV9QRunnable: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QRunnable) +16 __cxa_pure_virtual +24 QRunnable::~QRunnable +32 QRunnable::~QRunnable + +Class QRunnable + size=16 align=8 + base size=12 base align=8 +QRunnable (0x7f74d2d7e070) 0 + vptr=((& QRunnable::_ZTV9QRunnable) + 16u) + +Class QMutex + size=8 align=8 + base size=8 base align=8 +QMutex (0x7f74d2b8b700) 0 + +Class QMutexLocker + size=8 align=8 + base size=8 base align=8 +QMutexLocker (0x7f74d2b992a0) 0 + +Vtable for QtConcurrent::Exception +QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent9ExceptionE) +16 QtConcurrent::Exception::~Exception +24 QtConcurrent::Exception::~Exception +32 std::exception::what +40 QtConcurrent::Exception::raise +48 QtConcurrent::Exception::clone + +Class QtConcurrent::Exception + size=8 align=8 + base size=8 base align=8 +QtConcurrent::Exception (0x7f74d2baf5b0) 0 nearly-empty + vptr=((& QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE) + 16u) + std::exception (0x7f74d2baf620) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7f74d2baf5b0) + +Vtable for QtConcurrent::UnhandledException +QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent18UnhandledExceptionE) +16 QtConcurrent::UnhandledException::~UnhandledException +24 QtConcurrent::UnhandledException::~UnhandledException +32 std::exception::what +40 QtConcurrent::UnhandledException::raise +48 QtConcurrent::UnhandledException::clone + +Class QtConcurrent::UnhandledException + size=8 align=8 + base size=8 base align=8 +QtConcurrent::UnhandledException (0x7f74d2baf850) 0 nearly-empty + vptr=((& QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE) + 16u) + QtConcurrent::Exception (0x7f74d2baf8c0) 0 nearly-empty + primary-for QtConcurrent::UnhandledException (0x7f74d2baf850) + std::exception (0x7f74d2baf930) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7f74d2baf8c0) + +Class QtConcurrent::internal::ExceptionHolder + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionHolder (0x7f74d2bafb60) 0 + +Class QtConcurrent::internal::ExceptionStore + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionStore (0x7f74d2bafee0) 0 + +Class QtConcurrent::ResultItem + size=16 align=8 + base size=16 base align=8 +QtConcurrent::ResultItem (0x7f74d2baff50) 0 + +Class QtConcurrent::ResultIteratorBase + size=16 align=8 + base size=12 base align=8 +QtConcurrent::ResultIteratorBase (0x7f74d2bc7e70) 0 + +Vtable for QtConcurrent::ResultStoreBase +QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent15ResultStoreBaseE) +16 QtConcurrent::ResultStoreBase::~ResultStoreBase +24 QtConcurrent::ResultStoreBase::~ResultStoreBase + +Class QtConcurrent::ResultStoreBase + size=48 align=8 + base size=44 base align=8 +QtConcurrent::ResultStoreBase (0x7f74d2bcca10) 0 + vptr=((& QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE) + 16u) + +Vtable for QFutureInterfaceBase +QFutureInterfaceBase::_ZTV20QFutureInterfaceBase: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QFutureInterfaceBase) +16 QFutureInterfaceBase::~QFutureInterfaceBase +24 QFutureInterfaceBase::~QFutureInterfaceBase + +Class QFutureInterfaceBase + size=16 align=8 + base size=16 base align=8 +QFutureInterfaceBase (0x7f74d2c0be70) 0 + vptr=((& QFutureInterfaceBase::_ZTV20QFutureInterfaceBase) + 16u) + +Vtable for QThread +QThread::_ZTV7QThread: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QThread) +16 QThread::metaObject +24 QThread::qt_metacast +32 QThread::qt_metacall +40 QThread::~QThread +48 QThread::~QThread +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QThread::run + +Class QThread + size=16 align=8 + base size=16 base align=8 +QThread (0x7f74d2af0e00) 0 + vptr=((& QThread::_ZTV7QThread) + 16u) + QObject (0x7f74d2af0e70) 0 + primary-for QThread (0x7f74d2af0e00) + +Vtable for QThreadPool +QThreadPool::_ZTV11QThreadPool: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QThreadPool) +16 QThreadPool::metaObject +24 QThreadPool::qt_metacast +32 QThreadPool::qt_metacall +40 QThreadPool::~QThreadPool +48 QThreadPool::~QThreadPool +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QThreadPool + size=16 align=8 + base size=16 base align=8 +QThreadPool (0x7f74d2b22cb0) 0 + vptr=((& QThreadPool::_ZTV11QThreadPool) + 16u) + QObject (0x7f74d2b22d20) 0 + primary-for QThreadPool (0x7f74d2b22cb0) + +Class QWaitCondition + size=8 align=8 + base size=8 base align=8 +QWaitCondition (0x7f74d2b3c540) 0 + +Class QtConcurrent::ThreadEngineSemaphore + size=24 align=8 + base size=24 base align=8 +QtConcurrent::ThreadEngineSemaphore (0x7f74d2b3ca80) 0 + +Vtable for QtConcurrent::ThreadEngineBase +QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent16ThreadEngineBaseE) +16 QtConcurrent::ThreadEngineBase::run +24 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +32 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +40 QtConcurrent::ThreadEngineBase::start +48 QtConcurrent::ThreadEngineBase::finish +56 QtConcurrent::ThreadEngineBase::threadFunction +64 QtConcurrent::ThreadEngineBase::shouldStartThread +72 QtConcurrent::ThreadEngineBase::shouldThrottleThread +80 __cxa_pure_virtual + +Class QtConcurrent::ThreadEngineBase + size=64 align=8 + base size=64 base align=8 +QtConcurrent::ThreadEngineBase (0x7f74d2b5c460) 0 + vptr=((& QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE) + 16u) + QRunnable (0x7f74d2b5c4d0) 0 + primary-for QtConcurrent::ThreadEngineBase (0x7f74d2b5c460) + +VTT for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTTN12QtConcurrent12ThreadEngineIvEE: 2u entries +0 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 24u) +8 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 136u) + +Class std::input_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::input_iterator_tag (0x7f74d299d850) 0 empty + +Class std::output_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::output_iterator_tag (0x7f74d299d8c0) 0 empty + +Class std::forward_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::forward_iterator_tag (0x7f74d299d930) 0 empty + std::input_iterator_tag (0x7f74d299d9a0) 0 empty + +Class std::bidirectional_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::bidirectional_iterator_tag (0x7f74d299da10) 0 empty + std::forward_iterator_tag (0x7f74d299da80) 0 empty + std::input_iterator_tag (0x7f74d299daf0) 0 empty + +Class std::random_access_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::random_access_iterator_tag (0x7f74d299db60) 0 empty + std::bidirectional_iterator_tag (0x7f74d299dbd0) 0 empty + std::forward_iterator_tag (0x7f74d299dc40) 0 empty + std::input_iterator_tag (0x7f74d299dcb0) 0 empty + +Class std::__true_type + size=1 align=1 + base size=0 base align=1 +std::__true_type (0x7f74d29af2a0) 0 empty + +Class std::__false_type + size=1 align=1 + base size=0 base align=1 +std::__false_type (0x7f74d29af310) 0 empty + +Class lconv + size=96 align=8 + base size=96 base align=8 +lconv (0x7f74d278a620) 0 + +Class sched_param + size=4 align=4 + base size=4 base align=4 +sched_param (0x7f74d278aa80) 0 + +Class __sched_param + size=4 align=4 + base size=4 base align=4 +__sched_param (0x7f74d278aaf0) 0 + +Class tm + size=56 align=8 + base size=56 base align=8 +tm (0x7f74d278abd0) 0 + +Class itimerspec + size=32 align=8 + base size=32 base align=8 +itimerspec (0x7f74d278acb0) 0 + +Class _pthread_cleanup_buffer + size=32 align=8 + base size=32 base align=8 +_pthread_cleanup_buffer (0x7f74d278ad20) 0 + +Class __pthread_cleanup_frame + size=24 align=8 + base size=24 base align=8 +__pthread_cleanup_frame (0x7f74d278ae70) 0 + +Class __pthread_cleanup_class + size=24 align=8 + base size=24 base align=8 +__pthread_cleanup_class (0x7f74d278aee0) 0 + +Vtable for __cxxabiv1::__forced_unwind +__cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN10__cxxabiv115__forced_unwindE) +16 __cxxabiv1::__forced_unwind::~__forced_unwind +24 __cxxabiv1::__forced_unwind::~__forced_unwind +32 __cxa_pure_virtual + +Class __cxxabiv1::__forced_unwind + size=8 align=8 + base size=8 base align=8 +__cxxabiv1::__forced_unwind (0x7f74d26a1a80) 0 nearly-empty + vptr=((& __cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE) + 16u) + +Class std::locale + size=8 align=8 + base size=8 base align=8 +std::locale (0x7f74d25525b0) 0 + +Vtable for std::locale::facet +std::locale::facet::_ZTVNSt6locale5facetE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTINSt6locale5facetE) +16 std::locale::facet::~facet +24 std::locale::facet::~facet + +Class std::locale::facet + size=16 align=8 + base size=12 base align=8 +std::locale::facet (0x7f74d23f5cb0) 0 + vptr=((& std::locale::facet::_ZTVNSt6locale5facetE) + 16u) + +Class std::locale::id + size=8 align=8 + base size=8 base align=8 +std::locale::id (0x7f74d24092a0) 0 + +Class std::locale::_Impl + size=40 align=8 + base size=40 base align=8 +std::locale::_Impl (0x7f74d24098c0) 0 + +Vtable for std::ios_base::failure +std::ios_base::failure::_ZTVNSt8ios_base7failureE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTINSt8ios_base7failureE) +16 std::ios_base::failure::~failure +24 std::ios_base::failure::~failure +32 std::ios_base::failure::what + +Class std::ios_base::failure + size=16 align=8 + base size=16 base align=8 +std::ios_base::failure (0x7f74d2298070) 0 + vptr=((& std::ios_base::failure::_ZTVNSt8ios_base7failureE) + 16u) + std::exception (0x7f74d22980e0) 0 nearly-empty + primary-for std::ios_base::failure (0x7f74d2298070) + +Class std::ios_base::_Callback_list + size=24 align=8 + base size=24 base align=8 +std::ios_base::_Callback_list (0x7f74d22a6310) 0 + +Class std::ios_base::_Words + size=16 align=8 + base size=16 base align=8 +std::ios_base::_Words (0x7f74d22a6d90) 0 + +Class std::ios_base::Init + size=1 align=1 + base size=0 base align=1 +std::ios_base::Init (0x7f74d22ad4d0) 0 empty + +Vtable for std::ios_base +std::ios_base::_ZTVSt8ios_base: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt8ios_base) +16 std::ios_base::~ios_base +24 std::ios_base::~ios_base + +Class std::ios_base + size=216 align=8 + base size=216 base align=8 +std::ios_base (0x7f74d2298000) 0 + vptr=((& std::ios_base::_ZTVSt8ios_base) + 16u) + +Class std::ctype_base + size=1 align=1 + base size=0 base align=1 +std::ctype_base (0x7f74d2325930) 0 empty + +Class std::__num_base + size=1 align=1 + base size=0 base align=1 +std::__num_base (0x7f74d224a1c0) 0 empty + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSo: 2u entries +0 ((& std::basic_ostream >::_ZTVSo) + 24u) +8 ((& std::basic_ostream >::_ZTVSo) + 64u) + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSt13basic_ostreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 24u) +8 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 64u) + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSi: 2u entries +0 ((& std::basic_istream >::_ZTVSi) + 24u) +8 ((& std::basic_istream >::_ZTVSi) + 64u) + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSt13basic_istreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 24u) +8 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 64u) + +Construction vtable for std::basic_istream > (0x7f74d1d76310 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd0_Si: 10u entries +0 24u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISi) +24 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +32 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +40 -24u +48 (int (*)(...))-0x00000000000000018 +56 (int (*)(...))(& _ZTISi) +64 std::basic_istream >::_ZTv0_n24_NSiD1Ev +72 std::basic_istream >::_ZTv0_n24_NSiD0Ev + +Construction vtable for std::basic_ostream > (0x7f74d1d76460 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd16_So: 10u entries +0 8u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISo) +24 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +32 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +40 -8u +48 (int (*)(...))-0x00000000000000008 +56 (int (*)(...))(& _ZTISo) +64 std::basic_ostream >::_ZTv0_n24_NSoD1Ev +72 std::basic_ostream >::_ZTv0_n24_NSoD0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSd: 7u entries +0 ((& std::basic_iostream >::_ZTVSd) + 24u) +8 ((& std::basic_iostream >::_ZTCSd0_Si) + 24u) +16 ((& std::basic_iostream >::_ZTCSd0_Si) + 64u) +24 ((& std::basic_iostream >::_ZTCSd16_So) + 24u) +32 ((& std::basic_iostream >::_ZTCSd16_So) + 64u) +40 ((& std::basic_iostream >::_ZTVSd) + 104u) +48 ((& std::basic_iostream >::_ZTVSd) + 64u) + +Construction vtable for std::basic_istream > (0x7f74d1d76620 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E: 10u entries +0 24u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +24 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +32 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +40 -24u +48 (int (*)(...))-0x00000000000000018 +56 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +64 std::basic_istream >::_ZTv0_n24_NSt13basic_istreamIwSt11char_traitsIwEED1Ev +72 std::basic_istream >::_ZTv0_n24_NSt13basic_istreamIwSt11char_traitsIwEED0Ev + +Construction vtable for std::basic_ostream > (0x7f74d1d76770 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE16_St13basic_ostreamIwS1_E: 10u entries +0 8u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +24 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +32 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +40 -8u +48 (int (*)(...))-0x00000000000000008 +56 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +64 std::basic_ostream >::_ZTv0_n24_NSt13basic_ostreamIwSt11char_traitsIwEED1Ev +72 std::basic_ostream >::_ZTv0_n24_NSt13basic_ostreamIwSt11char_traitsIwEED0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSt14basic_iostreamIwSt11char_traitsIwEE: 7u entries +0 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 24u) +8 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 24u) +16 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 64u) +24 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE16_St13basic_ostreamIwS1_E) + 24u) +32 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE16_St13basic_ostreamIwS1_E) + 64u) +40 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 104u) +48 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 64u) + +Class QtConcurrent::BlockSizeManager + size=96 align=8 + base size=92 base align=8 +QtConcurrent::BlockSizeManager (0x7f74d1de0230) 0 + +Vtable for QFutureWatcherBase +QFutureWatcherBase::_ZTV18QFutureWatcherBase: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFutureWatcherBase) +16 QFutureWatcherBase::metaObject +24 QFutureWatcherBase::qt_metacast +32 QFutureWatcherBase::qt_metacall +40 QFutureWatcherBase::~QFutureWatcherBase +48 QFutureWatcherBase::~QFutureWatcherBase +56 QFutureWatcherBase::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QFutureWatcherBase::connectNotify +104 QFutureWatcherBase::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QFutureWatcherBase + size=16 align=8 + base size=16 base align=8 +QFutureWatcherBase (0x7f74d19aabd0) 0 + vptr=((& QFutureWatcherBase::_ZTV18QFutureWatcherBase) + 16u) + QObject (0x7f74d19aac40) 0 + primary-for QFutureWatcherBase (0x7f74d19aabd0) + +Vtable for QFactoryInterface +QFactoryInterface::_ZTV17QFactoryInterface: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QFactoryInterface) +16 QFactoryInterface::~QFactoryInterface +24 QFactoryInterface::~QFactoryInterface +32 __cxa_pure_virtual + +Class QFactoryInterface + size=8 align=8 + base size=8 base align=8 +QFactoryInterface (0x7f74d18c2e00) 0 nearly-empty + vptr=((& QFactoryInterface::_ZTV17QFactoryInterface) + 16u) + +Vtable for QTextCodecFactoryInterface +QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QTextCodecFactoryInterface) +16 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +24 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QTextCodecFactoryInterface + size=8 align=8 + base size=8 base align=8 +QTextCodecFactoryInterface (0x7f74d18e6ee0) 0 nearly-empty + vptr=((& QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface) + 16u) + QFactoryInterface (0x7f74d18e6f50) 0 nearly-empty + primary-for QTextCodecFactoryInterface (0x7f74d18e6ee0) + +Vtable for QTextCodecPlugin +QTextCodecPlugin::_ZTV16QTextCodecPlugin: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QTextCodecPlugin) +16 QTextCodecPlugin::metaObject +24 QTextCodecPlugin::qt_metacast +32 QTextCodecPlugin::qt_metacall +40 QTextCodecPlugin::~QTextCodecPlugin +48 QTextCodecPlugin::~QTextCodecPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 QTextCodecPlugin::keys +160 QTextCodecPlugin::create +168 (int (*)(...))-0x00000000000000010 +176 (int (*)(...))(& _ZTI16QTextCodecPlugin) +184 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD1Ev +192 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD0Ev +200 QTextCodecPlugin::_ZThn16_NK16QTextCodecPlugin4keysEv +208 QTextCodecPlugin::_ZThn16_N16QTextCodecPlugin6createERK7QString + +Class QTextCodecPlugin + size=24 align=8 + base size=24 base align=8 +QTextCodecPlugin (0x7f74d18e9e00) 0 + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 16u) + QObject (0x7f74d18f17e0) 0 + primary-for QTextCodecPlugin (0x7f74d18e9e00) + QTextCodecFactoryInterface (0x7f74d18f1850) 16 nearly-empty + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 184u) + QFactoryInterface (0x7f74d18f18c0) 16 nearly-empty + primary-for QTextCodecFactoryInterface (0x7f74d18f1850) + +Class QLibraryInfo + size=1 align=1 + base size=0 base align=1 +QLibraryInfo (0x7f74d1907700) 0 empty + +Vtable for QTranslator +QTranslator::_ZTV11QTranslator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTranslator) +16 QTranslator::metaObject +24 QTranslator::qt_metacast +32 QTranslator::qt_metacall +40 QTranslator::~QTranslator +48 QTranslator::~QTranslator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTranslator::translate +120 QTranslator::isEmpty + +Class QTranslator + size=16 align=8 + base size=16 base align=8 +QTranslator (0x7f74d194a000) 0 + vptr=((& QTranslator::_ZTV11QTranslator) + 16u) + QObject (0x7f74d194a070) 0 + primary-for QTranslator (0x7f74d194a000) + +Class __exception + size=40 align=8 + base size=40 base align=8 +__exception (0x7f74d195cf50) 0 + +Vtable for QMimeData +QMimeData::_ZTV9QMimeData: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QMimeData) +16 QMimeData::metaObject +24 QMimeData::qt_metacast +32 QMimeData::qt_metacall +40 QMimeData::~QMimeData +48 QMimeData::~QMimeData +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMimeData::hasFormat +120 QMimeData::formats +128 QMimeData::retrieveData + +Class QMimeData + size=16 align=8 + base size=16 base align=8 +QMimeData (0x7f74d17c8150) 0 + vptr=((& QMimeData::_ZTV9QMimeData) + 16u) + QObject (0x7f74d17c81c0) 0 + primary-for QMimeData (0x7f74d17c8150) + +Vtable for QEventLoop +QEventLoop::_ZTV10QEventLoop: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QEventLoop) +16 QEventLoop::metaObject +24 QEventLoop::qt_metacast +32 QEventLoop::qt_metacall +40 QEventLoop::~QEventLoop +48 QEventLoop::~QEventLoop +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QEventLoop + size=16 align=8 + base size=16 base align=8 +QEventLoop (0x7f74d17e19a0) 0 + vptr=((& QEventLoop::_ZTV10QEventLoop) + 16u) + QObject (0x7f74d17e1a10) 0 + primary-for QEventLoop (0x7f74d17e19a0) + +Vtable for QEvent +QEvent::_ZTV6QEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QEvent) +16 QEvent::~QEvent +24 QEvent::~QEvent + +Class QEvent + size=24 align=8 + base size=20 base align=8 +QEvent (0x7f74d1822310) 0 + vptr=((& QEvent::_ZTV6QEvent) + 16u) + +Vtable for QTimerEvent +QTimerEvent::_ZTV11QTimerEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTimerEvent) +16 QTimerEvent::~QTimerEvent +24 QTimerEvent::~QTimerEvent + +Class QTimerEvent + size=24 align=8 + base size=24 base align=8 +QTimerEvent (0x7f74d183aee0) 0 + vptr=((& QTimerEvent::_ZTV11QTimerEvent) + 16u) + QEvent (0x7f74d183af50) 0 + primary-for QTimerEvent (0x7f74d183aee0) + +Vtable for QChildEvent +QChildEvent::_ZTV11QChildEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QChildEvent) +16 QChildEvent::~QChildEvent +24 QChildEvent::~QChildEvent + +Class QChildEvent + size=32 align=8 + base size=32 base align=8 +QChildEvent (0x7f74d183e380) 0 + vptr=((& QChildEvent::_ZTV11QChildEvent) + 16u) + QEvent (0x7f74d183e3f0) 0 + primary-for QChildEvent (0x7f74d183e380) + +Vtable for QCustomEvent +QCustomEvent::_ZTV12QCustomEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QCustomEvent) +16 QCustomEvent::~QCustomEvent +24 QCustomEvent::~QCustomEvent + +Class QCustomEvent + size=24 align=8 + base size=20 base align=8 +QCustomEvent (0x7f74d184f620) 0 + vptr=((& QCustomEvent::_ZTV12QCustomEvent) + 16u) + QEvent (0x7f74d184f690) 0 + primary-for QCustomEvent (0x7f74d184f620) + +Vtable for QDynamicPropertyChangeEvent +QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QDynamicPropertyChangeEvent) +16 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent +24 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent + +Class QDynamicPropertyChangeEvent + size=32 align=8 + base size=32 base align=8 +QDynamicPropertyChangeEvent (0x7f74d184fe00) 0 + vptr=((& QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent) + 16u) + QEvent (0x7f74d184fe70) 0 + primary-for QDynamicPropertyChangeEvent (0x7f74d184fe00) + +Vtable for QCoreApplication +QCoreApplication::_ZTV16QCoreApplication: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QCoreApplication) +16 QCoreApplication::metaObject +24 QCoreApplication::qt_metacast +32 QCoreApplication::qt_metacall +40 QCoreApplication::~QCoreApplication +48 QCoreApplication::~QCoreApplication +56 QCoreApplication::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCoreApplication::notify +120 QCoreApplication::compressEvent + +Class QCoreApplication + size=16 align=8 + base size=16 base align=8 +QCoreApplication (0x7f74d1860230) 0 + vptr=((& QCoreApplication::_ZTV16QCoreApplication) + 16u) + QObject (0x7f74d18602a0) 0 + primary-for QCoreApplication (0x7f74d1860230) + +Vtable for QSharedMemory +QSharedMemory::_ZTV13QSharedMemory: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSharedMemory) +16 QSharedMemory::metaObject +24 QSharedMemory::qt_metacast +32 QSharedMemory::qt_metacall +40 QSharedMemory::~QSharedMemory +48 QSharedMemory::~QSharedMemory +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSharedMemory + size=16 align=8 + base size=16 base align=8 +QSharedMemory (0x7f74d168aa80) 0 + vptr=((& QSharedMemory::_ZTV13QSharedMemory) + 16u) + QObject (0x7f74d168aaf0) 0 + primary-for QSharedMemory (0x7f74d168aa80) + +Class QModelIndex + size=24 align=8 + base size=24 base align=8 +QModelIndex (0x7f74d16aa850) 0 + +Class QPersistentModelIndex + size=8 align=8 + base size=8 base align=8 +QPersistentModelIndex (0x7f74d16d4310) 0 + +Vtable for QAbstractItemModel +QAbstractItemModel::_ZTV18QAbstractItemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractItemModel) +16 QAbstractItemModel::metaObject +24 QAbstractItemModel::qt_metacast +32 QAbstractItemModel::qt_metacall +40 QAbstractItemModel::~QAbstractItemModel +48 QAbstractItemModel::~QAbstractItemModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractItemModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractItemModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractItemModel + size=16 align=8 + base size=16 base align=8 +QAbstractItemModel (0x7f74d16e15b0) 0 + vptr=((& QAbstractItemModel::_ZTV18QAbstractItemModel) + 16u) + QObject (0x7f74d16e1620) 0 + primary-for QAbstractItemModel (0x7f74d16e15b0) + +Vtable for QAbstractTableModel +QAbstractTableModel::_ZTV19QAbstractTableModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractTableModel) +16 QAbstractTableModel::metaObject +24 QAbstractTableModel::qt_metacast +32 QAbstractTableModel::qt_metacall +40 QAbstractTableModel::~QAbstractTableModel +48 QAbstractTableModel::~QAbstractTableModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractTableModel::index +120 QAbstractTableModel::parent +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractTableModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractTableModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractTableModel + size=16 align=8 + base size=16 base align=8 +QAbstractTableModel (0x7f74d1732930) 0 + vptr=((& QAbstractTableModel::_ZTV19QAbstractTableModel) + 16u) + QAbstractItemModel (0x7f74d17329a0) 0 + primary-for QAbstractTableModel (0x7f74d1732930) + QObject (0x7f74d1732a10) 0 + primary-for QAbstractItemModel (0x7f74d17329a0) + +Vtable for QAbstractListModel +QAbstractListModel::_ZTV18QAbstractListModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractListModel) +16 QAbstractListModel::metaObject +24 QAbstractListModel::qt_metacast +32 QAbstractListModel::qt_metacall +40 QAbstractListModel::~QAbstractListModel +48 QAbstractListModel::~QAbstractListModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractListModel::index +120 QAbstractListModel::parent +128 __cxa_pure_virtual +136 QAbstractListModel::columnCount +144 QAbstractListModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractListModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractListModel + size=16 align=8 + base size=16 base align=8 +QAbstractListModel (0x7f74d173fee0) 0 + vptr=((& QAbstractListModel::_ZTV18QAbstractListModel) + 16u) + QAbstractItemModel (0x7f74d173ff50) 0 + primary-for QAbstractListModel (0x7f74d173fee0) + QObject (0x7f74d173f230) 0 + primary-for QAbstractItemModel (0x7f74d173ff50) + +Vtable for QSignalMapper +QSignalMapper::_ZTV13QSignalMapper: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSignalMapper) +16 QSignalMapper::metaObject +24 QSignalMapper::qt_metacast +32 QSignalMapper::qt_metacall +40 QSignalMapper::~QSignalMapper +48 QSignalMapper::~QSignalMapper +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSignalMapper + size=16 align=8 + base size=16 base align=8 +QSignalMapper (0x7f74d1580000) 0 + vptr=((& QSignalMapper::_ZTV13QSignalMapper) + 16u) + QObject (0x7f74d1580070) 0 + primary-for QSignalMapper (0x7f74d1580000) + +Vtable for QObjectCleanupHandler +QObjectCleanupHandler::_ZTV21QObjectCleanupHandler: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QObjectCleanupHandler) +16 QObjectCleanupHandler::metaObject +24 QObjectCleanupHandler::qt_metacast +32 QObjectCleanupHandler::qt_metacall +40 QObjectCleanupHandler::~QObjectCleanupHandler +48 QObjectCleanupHandler::~QObjectCleanupHandler +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObjectCleanupHandler + size=24 align=8 + base size=24 base align=8 +QObjectCleanupHandler (0x7f74d15983f0) 0 + vptr=((& QObjectCleanupHandler::_ZTV21QObjectCleanupHandler) + 16u) + QObject (0x7f74d1598460) 0 + primary-for QObjectCleanupHandler (0x7f74d15983f0) + +Class QBasicTimer + size=4 align=4 + base size=4 base align=4 +QBasicTimer (0x7f74d15a6540) 0 + +Vtable for QSocketNotifier +QSocketNotifier::_ZTV15QSocketNotifier: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSocketNotifier) +16 QSocketNotifier::metaObject +24 QSocketNotifier::qt_metacast +32 QSocketNotifier::qt_metacall +40 QSocketNotifier::~QSocketNotifier +48 QSocketNotifier::~QSocketNotifier +56 QSocketNotifier::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSocketNotifier + size=32 align=8 + base size=25 base align=8 +QSocketNotifier (0x7f74d15b2930) 0 + vptr=((& QSocketNotifier::_ZTV15QSocketNotifier) + 16u) + QObject (0x7f74d15b29a0) 0 + primary-for QSocketNotifier (0x7f74d15b2930) + +Vtable for QTimer +QTimer::_ZTV6QTimer: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QTimer) +16 QTimer::metaObject +24 QTimer::qt_metacast +32 QTimer::qt_metacall +40 QTimer::~QTimer +48 QTimer::~QTimer +56 QObject::event +64 QObject::eventFilter +72 QTimer::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTimer + size=32 align=8 + base size=29 base align=8 +QTimer (0x7f74d15cfcb0) 0 + vptr=((& QTimer::_ZTV6QTimer) + 16u) + QObject (0x7f74d15cfd20) 0 + primary-for QTimer (0x7f74d15cfcb0) + +Vtable for QAbstractEventDispatcher +QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QAbstractEventDispatcher) +16 QAbstractEventDispatcher::metaObject +24 QAbstractEventDispatcher::qt_metacast +32 QAbstractEventDispatcher::qt_metacall +40 QAbstractEventDispatcher::~QAbstractEventDispatcher +48 QAbstractEventDispatcher::~QAbstractEventDispatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 QAbstractEventDispatcher::startingUp +208 QAbstractEventDispatcher::closingDown + +Class QAbstractEventDispatcher + size=16 align=8 + base size=16 base align=8 +QAbstractEventDispatcher (0x7f74d15f32a0) 0 + vptr=((& QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher) + 16u) + QObject (0x7f74d15f3310) 0 + primary-for QAbstractEventDispatcher (0x7f74d15f32a0) + +Class QMetaMethod + size=16 align=8 + base size=12 base align=8 +QMetaMethod (0x7f74d160e150) 0 + +Class QMetaEnum + size=16 align=8 + base size=12 base align=8 +QMetaEnum (0x7f74d162a5b0) 0 + +Class QMetaProperty + size=32 align=8 + base size=32 base align=8 +QMetaProperty (0x7f74d1635310) 0 + +Class QMetaClassInfo + size=16 align=8 + base size=12 base align=8 +QMetaClassInfo (0x7f74d16359a0) 0 + +Class QSystemSemaphore + size=8 align=8 + base size=8 base align=8 +QSystemSemaphore (0x7f74d16474d0) 0 + +Vtable for QLibrary +QLibrary::_ZTV8QLibrary: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QLibrary) +16 QLibrary::metaObject +24 QLibrary::qt_metacast +32 QLibrary::qt_metacall +40 QLibrary::~QLibrary +48 QLibrary::~QLibrary +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QLibrary + size=32 align=8 + base size=25 base align=8 +QLibrary (0x7f74d1647e00) 0 + vptr=((& QLibrary::_ZTV8QLibrary) + 16u) + QObject (0x7f74d1647e70) 0 + primary-for QLibrary (0x7f74d1647e00) + +Vtable for QPluginLoader +QPluginLoader::_ZTV13QPluginLoader: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QPluginLoader) +16 QPluginLoader::metaObject +24 QPluginLoader::qt_metacast +32 QPluginLoader::qt_metacall +40 QPluginLoader::~QPluginLoader +48 QPluginLoader::~QPluginLoader +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QPluginLoader + size=32 align=8 + base size=25 base align=8 +QPluginLoader (0x7f74d148d8c0) 0 + vptr=((& QPluginLoader::_ZTV13QPluginLoader) + 16u) + QObject (0x7f74d148d930) 0 + primary-for QPluginLoader (0x7f74d148d8c0) + +Class QUuid + size=16 align=4 + base size=16 base align=4 +QUuid (0x7f74d14b2070) 0 + +Class QSemaphore + size=8 align=8 + base size=8 base align=8 +QSemaphore (0x7f74d14cf9a0) 0 + +Class QThreadStorageData + size=4 align=4 + base size=4 base align=4 +QThreadStorageData (0x7f74d14cfee0) 0 + +Class QReadWriteLock + size=8 align=8 + base size=8 base align=8 +QReadWriteLock (0x7f74d14e3690) 0 + +Class QReadLocker + size=8 align=8 + base size=8 base align=8 +QReadLocker (0x7f74d14e3d20) 0 + +Class QWriteLocker + size=8 align=8 + base size=8 base align=8 +QWriteLocker (0x7f74d15100e0) 0 + diff --git a/tests/auto/bic/data/QtCore.4.6.0.linux-gcc-amd64.txt b/tests/auto/bic/data/QtCore.4.6.0.linux-gcc-amd64.txt new file mode 100644 index 0000000..effd7c7 --- /dev/null +++ b/tests/auto/bic/data/QtCore.4.6.0.linux-gcc-amd64.txt @@ -0,0 +1,2624 @@ +Class QSysInfo + size=1 align=1 + base size=0 base align=1 +QSysInfo (0x7f3bf8ee7230) 0 empty + +Class QBool + size=1 align=1 + base size=1 base align=1 +QBool (0x7f3bf8ee7e70) 0 + +Class qIsNull(double)::U + size=8 align=8 + base size=8 base align=8 +qIsNull(double)::U (0x7f3bf86f8540) 0 + +Class qIsNull(float)::U + size=4 align=4 + base size=4 base align=4 +qIsNull(float)::U (0x7f3bf86f87e0) 0 + +Class QFlag + size=4 align=4 + base size=4 base align=4 +QFlag (0x7f3bf8731690) 0 + +Class QIncompatibleFlag + size=4 align=4 + base size=4 base align=4 +QIncompatibleFlag (0x7f3bf8731e70) 0 + +Class QLatin1Char + size=1 align=1 + base size=1 base align=1 +QLatin1Char (0x7f3bf87605b0) 0 + +Class QChar + size=2 align=2 + base size=2 base align=2 +QChar (0x7f3bf8788150) 0 + +Class QBasicAtomicInt + size=4 align=4 + base size=4 base align=4 +QBasicAtomicInt (0x7f3bf85ee310) 0 + +Class QAtomicInt + size=4 align=4 + base size=4 base align=4 +QAtomicInt (0x7f3bf862bcb0) 0 + QBasicAtomicInt (0x7f3bf862bd20) 0 + +Class QInternal + size=1 align=1 + base size=0 base align=1 +QInternal (0x7f3bf84804d0) 0 empty + +Class __locale_struct + size=232 align=8 + base size=232 base align=8 +__locale_struct (0x7f3bf8480700) 0 + +Class QByteArray::Data + size=32 align=8 + base size=32 base align=8 +QByteArray::Data (0x7f3bf84bcaf0) 0 + +Class QByteArray + size=8 align=8 + base size=8 base align=8 +QByteArray (0x7f3bf84bca80) 0 + +Class QByteRef + size=16 align=8 + base size=12 base align=8 +QByteRef (0x7f3bf835f380) 0 + +Class QString::Null + size=1 align=1 + base size=0 base align=1 +QString::Null (0x7f3bf825fd20) 0 empty + +Class QString::Data + size=32 align=8 + base size=32 base align=8 +QString::Data (0x7f3bf82775b0) 0 + +Class QString + size=8 align=8 + base size=8 base align=8 +QString (0x7f3bf83d9bd0) 0 + +Class QLatin1String + size=8 align=8 + base size=8 base align=8 +QLatin1String (0x7f3bf814f9a0) 0 + +Class QCharRef + size=16 align=8 + base size=12 base align=8 +QCharRef (0x7f3bf7fef000) 0 + +Class QConstString + size=8 align=8 + base size=8 base align=8 +QConstString (0x7f3bf7f378c0) 0 + QString (0x7f3bf7f37930) 0 + +Class QStringRef + size=16 align=8 + base size=16 base align=8 +QStringRef (0x7f3bf7f5e310) 0 + +Class QGenericArgument + size=16 align=8 + base size=16 base align=8 +QGenericArgument (0x7f3bf7fd6700) 0 + +Class QGenericReturnArgument + size=16 align=8 + base size=16 base align=8 +QGenericReturnArgument (0x7f3bf7de12a0) 0 + QGenericArgument (0x7f3bf7de1310) 0 + +Class QMetaObject + size=32 align=8 + base size=32 base align=8 +QMetaObject (0x7f3bf7de1b60) 0 + +Class QMetaObjectExtraData + size=16 align=8 + base size=16 base align=8 +QMetaObjectExtraData (0x7f3bf7e0abd0) 0 + +Vtable for std::exception +std::exception::_ZTVSt9exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9exception) +16 std::exception::~exception +24 std::exception::~exception +32 std::exception::what + +Class std::exception + size=8 align=8 + base size=8 base align=8 +std::exception (0x7f3bf7e5d1c0) 0 nearly-empty + vptr=((& std::exception::_ZTVSt9exception) + 16u) + +Vtable for std::bad_exception +std::bad_exception::_ZTVSt13bad_exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13bad_exception) +16 std::bad_exception::~bad_exception +24 std::bad_exception::~bad_exception +32 std::bad_exception::what + +Class std::bad_exception + size=8 align=8 + base size=8 base align=8 +std::bad_exception (0x7f3bf7e5d770) 0 nearly-empty + vptr=((& std::bad_exception::_ZTVSt13bad_exception) + 16u) + std::exception (0x7f3bf7e5d7e0) 0 nearly-empty + primary-for std::bad_exception (0x7f3bf7e5d770) + +Vtable for std::bad_alloc +std::bad_alloc::_ZTVSt9bad_alloc: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9bad_alloc) +16 std::bad_alloc::~bad_alloc +24 std::bad_alloc::~bad_alloc +32 std::bad_alloc::what + +Class std::bad_alloc + size=8 align=8 + base size=8 base align=8 +std::bad_alloc (0x7f3bf7e5d930) 0 nearly-empty + vptr=((& std::bad_alloc::_ZTVSt9bad_alloc) + 16u) + std::exception (0x7f3bf7e73000) 0 nearly-empty + primary-for std::bad_alloc (0x7f3bf7e5d930) + +Class std::nothrow_t + size=1 align=1 + base size=0 base align=1 +std::nothrow_t (0x7f3bf7e73850) 0 empty + +Class QListData::Data + size=32 align=8 + base size=32 base align=8 +QListData::Data (0x7f3bf7e73d90) 0 + +Class QListData + size=8 align=8 + base size=8 base align=8 +QListData (0x7f3bf7e73d20) 0 + +Class QScopedPointerPodDeleter + size=1 align=1 + base size=0 base align=1 +QScopedPointerPodDeleter (0x7f3bf7d9d850) 0 empty + +Vtable for QObjectData +QObjectData::_ZTV11QObjectData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QObjectData) +16 __cxa_pure_virtual +24 __cxa_pure_virtual + +Class QObjectData + size=48 align=8 + base size=48 base align=8 +QObjectData (0x7f3bf7dbd2a0) 0 + vptr=((& QObjectData::_ZTV11QObjectData) + 16u) + +Vtable for QObject +QObject::_ZTV7QObject: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QObject) +16 QObject::metaObject +24 QObject::qt_metacast +32 QObject::qt_metacall +40 QObject::~QObject +48 QObject::~QObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObject + size=16 align=8 + base size=16 base align=8 +QObject (0x7f3bf7dbd5b0) 0 + vptr=((& QObject::_ZTV7QObject) + 16u) + +Vtable for QObjectUserData +QObjectUserData::_ZTV15QObjectUserData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QObjectUserData) +16 QObjectUserData::~QObjectUserData +24 QObjectUserData::~QObjectUserData + +Class QObjectUserData + size=8 align=8 + base size=8 base align=8 +QObjectUserData (0x7f3bf7c32b60) 0 nearly-empty + vptr=((& QObjectUserData::_ZTV15QObjectUserData) + 16u) + +Vtable for QIODevice +QIODevice::_ZTV9QIODevice: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QIODevice) +16 QIODevice::metaObject +24 QIODevice::qt_metacast +32 QIODevice::qt_metacall +40 QIODevice::~QIODevice +48 QIODevice::~QIODevice +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QIODevice::isSequential +120 QIODevice::open +128 QIODevice::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QIODevice::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 __cxa_pure_virtual +224 QIODevice::readLineData +232 __cxa_pure_virtual + +Class QIODevice + size=16 align=8 + base size=16 base align=8 +QIODevice (0x7f3bf7c43150) 0 + vptr=((& QIODevice::_ZTV9QIODevice) + 16u) + QObject (0x7f3bf7c431c0) 0 + primary-for QIODevice (0x7f3bf7c43150) + +Class _IO_marker + size=24 align=8 + base size=24 base align=8 +_IO_marker (0x7f3bf7ca7cb0) 0 + +Class _IO_FILE + size=216 align=8 + base size=216 base align=8 +_IO_FILE (0x7f3bf7ca7d20) 0 + +Vtable for QFile +QFile::_ZTV5QFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QFile) +16 QFile::metaObject +24 QFile::qt_metacast +32 QFile::qt_metacall +40 QFile::~QFile +48 QFile::~QFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QFile::fileEngine + +Class QFile + size=16 align=8 + base size=16 base align=8 +QFile (0x7f3bf7ca7e00) 0 + vptr=((& QFile::_ZTV5QFile) + 16u) + QIODevice (0x7f3bf7ca7e70) 0 + primary-for QFile (0x7f3bf7ca7e00) + QObject (0x7f3bf7ca7ee0) 0 + primary-for QIODevice (0x7f3bf7ca7e70) + +Class QFileInfo + size=8 align=8 + base size=8 base align=8 +QFileInfo (0x7f3bf7b48070) 0 + +Vtable for QDataStream +QDataStream::_ZTV11QDataStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QDataStream) +16 QDataStream::~QDataStream +24 QDataStream::~QDataStream + +Class QDataStream + size=40 align=8 + base size=40 base align=8 +QDataStream (0x7f3bf7b9ca10) 0 + vptr=((& QDataStream::_ZTV11QDataStream) + 16u) + +Class QRegExp + size=8 align=8 + base size=8 base align=8 +QRegExp (0x7f3bf7a05e70) 0 + +Class QStringMatcher::Data + size=272 align=8 + base size=272 base align=8 +QStringMatcher::Data (0x7f3bf7a6e2a0) 0 + +Class QStringMatcher + size=1048 align=8 + base size=1048 base align=8 +QStringMatcher (0x7f3bf7a61c40) 0 + +Class QStringList + size=8 align=8 + base size=8 base align=8 +QStringList (0x7f3bf7a6e850) 0 + QList (0x7f3bf7a6e8c0) 0 + +Class QDir + size=8 align=8 + base size=8 base align=8 +QDir (0x7f3bf790c4d0) 0 + +Class QAbstractFileEngine::ExtensionOption + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionOption (0x7f3bf79b48c0) 0 empty + +Class QAbstractFileEngine::ExtensionReturn + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionReturn (0x7f3bf79b4930) 0 empty + +Class QAbstractFileEngine::MapExtensionOption + size=24 align=8 + base size=20 base align=8 +QAbstractFileEngine::MapExtensionOption (0x7f3bf79b49a0) 0 + QAbstractFileEngine::ExtensionOption (0x7f3bf79b4a10) 0 empty + +Class QAbstractFileEngine::MapExtensionReturn + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::MapExtensionReturn (0x7f3bf79b4bd0) 0 + QAbstractFileEngine::ExtensionReturn (0x7f3bf79b4c40) 0 empty + +Class QAbstractFileEngine::UnMapExtensionOption + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::UnMapExtensionOption (0x7f3bf79b4cb0) 0 + QAbstractFileEngine::ExtensionOption (0x7f3bf79b4d20) 0 empty + +Vtable for QAbstractFileEngine +QAbstractFileEngine::_ZTV19QAbstractFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractFileEngine) +16 QAbstractFileEngine::~QAbstractFileEngine +24 QAbstractFileEngine::~QAbstractFileEngine +32 QAbstractFileEngine::open +40 QAbstractFileEngine::close +48 QAbstractFileEngine::flush +56 QAbstractFileEngine::size +64 QAbstractFileEngine::pos +72 QAbstractFileEngine::seek +80 QAbstractFileEngine::isSequential +88 QAbstractFileEngine::remove +96 QAbstractFileEngine::copy +104 QAbstractFileEngine::rename +112 QAbstractFileEngine::link +120 QAbstractFileEngine::mkdir +128 QAbstractFileEngine::rmdir +136 QAbstractFileEngine::setSize +144 QAbstractFileEngine::caseSensitive +152 QAbstractFileEngine::isRelativePath +160 QAbstractFileEngine::entryList +168 QAbstractFileEngine::fileFlags +176 QAbstractFileEngine::setPermissions +184 QAbstractFileEngine::fileName +192 QAbstractFileEngine::ownerId +200 QAbstractFileEngine::owner +208 QAbstractFileEngine::fileTime +216 QAbstractFileEngine::setFileName +224 QAbstractFileEngine::handle +232 QAbstractFileEngine::beginEntryList +240 QAbstractFileEngine::endEntryList +248 QAbstractFileEngine::read +256 QAbstractFileEngine::readLine +264 QAbstractFileEngine::write +272 QAbstractFileEngine::extension +280 QAbstractFileEngine::supportsExtension + +Class QAbstractFileEngine + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngine (0x7f3bf7998850) 0 + vptr=((& QAbstractFileEngine::_ZTV19QAbstractFileEngine) + 16u) + +Vtable for QAbstractFileEngineHandler +QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QAbstractFileEngineHandler) +16 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +24 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +32 __cxa_pure_virtual + +Class QAbstractFileEngineHandler + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngineHandler (0x7f3bf77eabd0) 0 nearly-empty + vptr=((& QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler) + 16u) + +Vtable for QAbstractFileEngineIterator +QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QAbstractFileEngineIterator) +16 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +24 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QAbstractFileEngineIterator::currentFileInfo +64 QAbstractFileEngineIterator::entryInfo + +Class QAbstractFileEngineIterator + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngineIterator (0x7f3bf77ead90) 0 + vptr=((& QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator) + 16u) + +Vtable for QBuffer +QBuffer::_ZTV7QBuffer: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QBuffer) +16 QBuffer::metaObject +24 QBuffer::qt_metacast +32 QBuffer::qt_metacall +40 QBuffer::~QBuffer +48 QBuffer::~QBuffer +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QBuffer::connectNotify +104 QBuffer::disconnectNotify +112 QIODevice::isSequential +120 QBuffer::open +128 QBuffer::close +136 QBuffer::pos +144 QBuffer::size +152 QBuffer::seek +160 QBuffer::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QBuffer::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QBuffer::readData +224 QIODevice::readLineData +232 QBuffer::writeData + +Class QBuffer + size=16 align=8 + base size=16 base align=8 +QBuffer (0x7f3bf77fe690) 0 + vptr=((& QBuffer::_ZTV7QBuffer) + 16u) + QIODevice (0x7f3bf77fe700) 0 + primary-for QBuffer (0x7f3bf77fe690) + QObject (0x7f3bf77fe770) 0 + primary-for QIODevice (0x7f3bf77fe700) + +Class QHashData::Node + size=16 align=8 + base size=16 base align=8 +QHashData::Node (0x7f3bf783ee00) 0 + +Class QHashData + size=40 align=8 + base size=40 base align=8 +QHashData (0x7f3bf783ed90) 0 + +Class QHashDummyValue + size=1 align=1 + base size=0 base align=1 +QHashDummyValue (0x7f3bf7860150) 0 empty + +Class QMapData::Node + size=16 align=8 + base size=16 base align=8 +QMapData::Node (0x7f3bf7761a80) 0 + +Class QMapData + size=128 align=8 + base size=128 base align=8 +QMapData (0x7f3bf7761a10) 0 + +Vtable for QSystemLocale +QSystemLocale::_ZTV13QSystemLocale: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSystemLocale) +16 QSystemLocale::~QSystemLocale +24 QSystemLocale::~QSystemLocale +32 QSystemLocale::query +40 QSystemLocale::fallbackLocale + +Class QSystemLocale + size=8 align=8 + base size=8 base align=8 +QSystemLocale (0x7f3bf769e690) 0 nearly-empty + vptr=((& QSystemLocale::_ZTV13QSystemLocale) + 16u) + +Class QLocale::Data + size=4 align=2 + base size=4 base align=2 +QLocale::Data (0x7f3bf74e6d90) 0 + +Class QLocale + size=8 align=8 + base size=8 base align=8 +QLocale (0x7f3bf769eaf0) 0 + +Class QTextCodec::ConverterState + size=32 align=8 + base size=32 base align=8 +QTextCodec::ConverterState (0x7f3bf753ebd0) 0 + +Vtable for QTextCodec +QTextCodec::_ZTV10QTextCodec: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextCodec) +16 __cxa_pure_virtual +24 QTextCodec::aliases +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QTextCodec::~QTextCodec +64 QTextCodec::~QTextCodec + +Class QTextCodec + size=8 align=8 + base size=8 base align=8 +QTextCodec (0x7f3bf752f460) 0 nearly-empty + vptr=((& QTextCodec::_ZTV10QTextCodec) + 16u) + +Class QTextEncoder + size=40 align=8 + base size=40 base align=8 +QTextEncoder (0x7f3bf75b1150) 0 + +Class QTextDecoder + size=40 align=8 + base size=40 base align=8 +QTextDecoder (0x7f3bf75b1f50) 0 + +Vtable for QTextStream +QTextStream::_ZTV11QTextStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTextStream) +16 QTextStream::~QTextStream +24 QTextStream::~QTextStream + +Class QTextStream + size=16 align=8 + base size=16 base align=8 +QTextStream (0x7f3bf75b9d90) 0 + vptr=((& QTextStream::_ZTV11QTextStream) + 16u) + +Class QTextStreamManipulator + size=40 align=8 + base size=38 base align=8 +QTextStreamManipulator (0x7f3bf7432a80) 0 + +Vtable for QTextIStream +QTextIStream::_ZTV12QTextIStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextIStream) +16 QTextIStream::~QTextIStream +24 QTextIStream::~QTextIStream + +Class QTextIStream + size=16 align=8 + base size=16 base align=8 +QTextIStream (0x7f3bf7462070) 0 + vptr=((& QTextIStream::_ZTV12QTextIStream) + 16u) + QTextStream (0x7f3bf74620e0) 0 + primary-for QTextIStream (0x7f3bf7462070) + +Vtable for QTextOStream +QTextOStream::_ZTV12QTextOStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextOStream) +16 QTextOStream::~QTextOStream +24 QTextOStream::~QTextOStream + +Class QTextOStream + size=16 align=8 + base size=16 base align=8 +QTextOStream (0x7f3bf746fee0) 0 + vptr=((& QTextOStream::_ZTV12QTextOStream) + 16u) + QTextStream (0x7f3bf746ff50) 0 + primary-for QTextOStream (0x7f3bf746fee0) + +Class wait + size=4 align=4 + base size=4 base align=4 +wait (0x7f3bf7484d90) 0 + +Class timespec + size=16 align=8 + base size=16 base align=8 +timespec (0x7f3bf74900e0) 0 + +Class timeval + size=16 align=8 + base size=16 base align=8 +timeval (0x7f3bf7490150) 0 + +Class __pthread_internal_list + size=16 align=8 + base size=16 base align=8 +__pthread_internal_list (0x7f3bf74902a0) 0 + +Class random_data + size=48 align=8 + base size=48 base align=8 +random_data (0x7f3bf7490850) 0 + +Class drand48_data + size=24 align=8 + base size=24 base align=8 +drand48_data (0x7f3bf74908c0) 0 + +Class QVectorData + size=16 align=4 + base size=16 base align=4 +QVectorData (0x7f3bf7490930) 0 + +Class QContiguousCacheData + size=24 align=4 + base size=24 base align=4 +QContiguousCacheData (0x7f3bf724f620) 0 + +Class QDebug::Stream + size=40 align=8 + base size=34 base align=8 +QDebug::Stream (0x7f3bf70af150) 0 + +Class QDebug + size=8 align=8 + base size=8 base align=8 +QDebug (0x7f3bf70af0e0) 0 + +Class QNoDebug + size=1 align=1 + base size=0 base align=1 +QNoDebug (0x7f3bf715e0e0) 0 empty + +Vtable for QDirIterator +QDirIterator::_ZTV12QDirIterator: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QDirIterator) +16 QDirIterator::~QDirIterator +24 QDirIterator::~QDirIterator + +Class QDirIterator + size=16 align=8 + base size=16 base align=8 +QDirIterator (0x7f3bf716f700) 0 + vptr=((& QDirIterator::_ZTV12QDirIterator) + 16u) + +Vtable for QFileSystemWatcher +QFileSystemWatcher::_ZTV18QFileSystemWatcher: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFileSystemWatcher) +16 QFileSystemWatcher::metaObject +24 QFileSystemWatcher::qt_metacast +32 QFileSystemWatcher::qt_metacall +40 QFileSystemWatcher::~QFileSystemWatcher +48 QFileSystemWatcher::~QFileSystemWatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QFileSystemWatcher + size=16 align=8 + base size=16 base align=8 +QFileSystemWatcher (0x7f3bf6fca540) 0 + vptr=((& QFileSystemWatcher::_ZTV18QFileSystemWatcher) + 16u) + QObject (0x7f3bf6fca5b0) 0 + primary-for QFileSystemWatcher (0x7f3bf6fca540) + +Vtable for QFSFileEngine +QFSFileEngine::_ZTV13QFSFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QFSFileEngine) +16 QFSFileEngine::~QFSFileEngine +24 QFSFileEngine::~QFSFileEngine +32 QFSFileEngine::open +40 QFSFileEngine::close +48 QFSFileEngine::flush +56 QFSFileEngine::size +64 QFSFileEngine::pos +72 QFSFileEngine::seek +80 QFSFileEngine::isSequential +88 QFSFileEngine::remove +96 QFSFileEngine::copy +104 QFSFileEngine::rename +112 QFSFileEngine::link +120 QFSFileEngine::mkdir +128 QFSFileEngine::rmdir +136 QFSFileEngine::setSize +144 QFSFileEngine::caseSensitive +152 QFSFileEngine::isRelativePath +160 QFSFileEngine::entryList +168 QFSFileEngine::fileFlags +176 QFSFileEngine::setPermissions +184 QFSFileEngine::fileName +192 QFSFileEngine::ownerId +200 QFSFileEngine::owner +208 QFSFileEngine::fileTime +216 QFSFileEngine::setFileName +224 QFSFileEngine::handle +232 QFSFileEngine::beginEntryList +240 QFSFileEngine::endEntryList +248 QFSFileEngine::read +256 QFSFileEngine::readLine +264 QFSFileEngine::write +272 QFSFileEngine::extension +280 QFSFileEngine::supportsExtension + +Class QFSFileEngine + size=16 align=8 + base size=16 base align=8 +QFSFileEngine (0x7f3bf6fdba80) 0 + vptr=((& QFSFileEngine::_ZTV13QFSFileEngine) + 16u) + QAbstractFileEngine (0x7f3bf6fdbaf0) 0 + primary-for QFSFileEngine (0x7f3bf6fdba80) + +Class QSharedData + size=4 align=4 + base size=4 base align=4 +QSharedData (0x7f3bf6feae70) 0 + +Class QProcessEnvironment + size=8 align=8 + base size=8 base align=8 +QProcessEnvironment (0x7f3bf70361c0) 0 + +Vtable for QProcess +QProcess::_ZTV8QProcess: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QProcess) +16 QProcess::metaObject +24 QProcess::qt_metacast +32 QProcess::qt_metacall +40 QProcess::~QProcess +48 QProcess::~QProcess +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QProcess::isSequential +120 QIODevice::open +128 QProcess::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QProcess::atEnd +168 QIODevice::reset +176 QProcess::bytesAvailable +184 QProcess::bytesToWrite +192 QProcess::canReadLine +200 QProcess::waitForReadyRead +208 QProcess::waitForBytesWritten +216 QProcess::readData +224 QIODevice::readLineData +232 QProcess::writeData +240 QProcess::setupChildProcess + +Class QProcess + size=16 align=8 + base size=16 base align=8 +QProcess (0x7f3bf7036cb0) 0 + vptr=((& QProcess::_ZTV8QProcess) + 16u) + QIODevice (0x7f3bf7036d20) 0 + primary-for QProcess (0x7f3bf7036cb0) + QObject (0x7f3bf7036d90) 0 + primary-for QIODevice (0x7f3bf7036d20) + +Class QResource + size=8 align=8 + base size=8 base align=8 +QResource (0x7f3bf707b1c0) 0 + +Class QMetaType + size=1 align=1 + base size=0 base align=1 +QMetaType (0x7f3bf707be70) 0 empty + +Class QVariant::PrivateShared + size=16 align=8 + base size=12 base align=8 +QVariant::PrivateShared (0x7f3bf6f7b700) 0 + +Class QVariant::Private::Data + size=8 align=8 + base size=8 base align=8 +QVariant::Private::Data (0x7f3bf6f7ba10) 0 + +Class QVariant::Private + size=16 align=8 + base size=12 base align=8 +QVariant::Private (0x7f3bf6f7b7e0) 0 + +Class QVariant::Handler + size=72 align=8 + base size=72 base align=8 +QVariant::Handler (0x7f3bf6f8a700) 0 + +Class QVariant + size=16 align=8 + base size=16 base align=8 +QVariant (0x7f3bf6f4b7e0) 0 + +Class QVariantComparisonHelper + size=8 align=8 + base size=8 base align=8 +QVariantComparisonHelper (0x7f3bf6dff9a0) 0 + +Vtable for QSettings +QSettings::_ZTV9QSettings: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QSettings) +16 QSettings::metaObject +24 QSettings::qt_metacast +32 QSettings::qt_metacall +40 QSettings::~QSettings +48 QSettings::~QSettings +56 QSettings::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSettings + size=16 align=8 + base size=16 base align=8 +QSettings (0x7f3bf6e26ee0) 0 + vptr=((& QSettings::_ZTV9QSettings) + 16u) + QObject (0x7f3bf6e26f50) 0 + primary-for QSettings (0x7f3bf6e26ee0) + +Vtable for QTemporaryFile +QTemporaryFile::_ZTV14QTemporaryFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QTemporaryFile) +16 QTemporaryFile::metaObject +24 QTemporaryFile::qt_metacast +32 QTemporaryFile::qt_metacall +40 QTemporaryFile::~QTemporaryFile +48 QTemporaryFile::~QTemporaryFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QTemporaryFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QTemporaryFile::fileEngine + +Class QTemporaryFile + size=16 align=8 + base size=16 base align=8 +QTemporaryFile (0x7f3bf6ca82a0) 0 + vptr=((& QTemporaryFile::_ZTV14QTemporaryFile) + 16u) + QFile (0x7f3bf6ca8310) 0 + primary-for QTemporaryFile (0x7f3bf6ca82a0) + QIODevice (0x7f3bf6ca8380) 0 + primary-for QFile (0x7f3bf6ca8310) + QObject (0x7f3bf6ca83f0) 0 + primary-for QIODevice (0x7f3bf6ca8380) + +Class QUrl + size=8 align=8 + base size=8 base align=8 +QUrl (0x7f3bf6cc39a0) 0 + +Class QXmlStreamStringRef + size=16 align=8 + base size=16 base align=8 +QXmlStreamStringRef (0x7f3bf6d51070) 0 + +Class QXmlStreamAttribute + size=80 align=8 + base size=73 base align=8 +QXmlStreamAttribute (0x7f3bf6b6b850) 0 + +Class QXmlStreamAttributes + size=8 align=8 + base size=8 base align=8 +QXmlStreamAttributes (0x7f3bf6b94310) 0 + QVector (0x7f3bf6b94380) 0 + +Class QXmlStreamNamespaceDeclaration + size=40 align=8 + base size=40 base align=8 +QXmlStreamNamespaceDeclaration (0x7f3bf6b947e0) 0 + +Class QXmlStreamNotationDeclaration + size=56 align=8 + base size=56 base align=8 +QXmlStreamNotationDeclaration (0x7f3bf6bd51c0) 0 + +Class QXmlStreamEntityDeclaration + size=88 align=8 + base size=88 base align=8 +QXmlStreamEntityDeclaration (0x7f3bf6bf5070) 0 + +Vtable for QXmlStreamEntityResolver +QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QXmlStreamEntityResolver) +16 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +24 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +32 QXmlStreamEntityResolver::resolveEntity +40 QXmlStreamEntityResolver::resolveUndeclaredEntity + +Class QXmlStreamEntityResolver + size=8 align=8 + base size=8 base align=8 +QXmlStreamEntityResolver (0x7f3bf6c119a0) 0 nearly-empty + vptr=((& QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver) + 16u) + +Class QXmlStreamReader + size=8 align=8 + base size=8 base align=8 +QXmlStreamReader (0x7f3bf6c11b60) 0 + +Class QXmlStreamWriter + size=8 align=8 + base size=8 base align=8 +QXmlStreamWriter (0x7f3bf6c58c40) 0 + +Vtable for QAbstractState +QAbstractState::_ZTV14QAbstractState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QAbstractState) +16 QAbstractState::metaObject +24 QAbstractState::qt_metacast +32 QAbstractState::qt_metacall +40 QAbstractState::~QAbstractState +48 QAbstractState::~QAbstractState +56 QAbstractState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QAbstractState + size=16 align=8 + base size=16 base align=8 +QAbstractState (0x7f3bf6a6da80) 0 + vptr=((& QAbstractState::_ZTV14QAbstractState) + 16u) + QObject (0x7f3bf6a6daf0) 0 + primary-for QAbstractState (0x7f3bf6a6da80) + +Vtable for QAbstractTransition +QAbstractTransition::_ZTV19QAbstractTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractTransition) +16 QAbstractTransition::metaObject +24 QAbstractTransition::qt_metacast +32 QAbstractTransition::qt_metacall +40 QAbstractTransition::~QAbstractTransition +48 QAbstractTransition::~QAbstractTransition +56 QAbstractTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QAbstractTransition + size=16 align=8 + base size=16 base align=8 +QAbstractTransition (0x7f3bf6a942a0) 0 + vptr=((& QAbstractTransition::_ZTV19QAbstractTransition) + 16u) + QObject (0x7f3bf6a94310) 0 + primary-for QAbstractTransition (0x7f3bf6a942a0) + +Vtable for QEvent +QEvent::_ZTV6QEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QEvent) +16 QEvent::~QEvent +24 QEvent::~QEvent + +Class QEvent + size=24 align=8 + base size=20 base align=8 +QEvent (0x7f3bf6aa8af0) 0 + vptr=((& QEvent::_ZTV6QEvent) + 16u) + +Vtable for QTimerEvent +QTimerEvent::_ZTV11QTimerEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTimerEvent) +16 QTimerEvent::~QTimerEvent +24 QTimerEvent::~QTimerEvent + +Class QTimerEvent + size=24 align=8 + base size=24 base align=8 +QTimerEvent (0x7f3bf6acb700) 0 + vptr=((& QTimerEvent::_ZTV11QTimerEvent) + 16u) + QEvent (0x7f3bf6acb770) 0 + primary-for QTimerEvent (0x7f3bf6acb700) + +Vtable for QChildEvent +QChildEvent::_ZTV11QChildEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QChildEvent) +16 QChildEvent::~QChildEvent +24 QChildEvent::~QChildEvent + +Class QChildEvent + size=32 align=8 + base size=32 base align=8 +QChildEvent (0x7f3bf6acbb60) 0 + vptr=((& QChildEvent::_ZTV11QChildEvent) + 16u) + QEvent (0x7f3bf6acbbd0) 0 + primary-for QChildEvent (0x7f3bf6acbb60) + +Vtable for QCustomEvent +QCustomEvent::_ZTV12QCustomEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QCustomEvent) +16 QCustomEvent::~QCustomEvent +24 QCustomEvent::~QCustomEvent + +Class QCustomEvent + size=24 align=8 + base size=20 base align=8 +QCustomEvent (0x7f3bf6ad5e00) 0 + vptr=((& QCustomEvent::_ZTV12QCustomEvent) + 16u) + QEvent (0x7f3bf6ad5e70) 0 + primary-for QCustomEvent (0x7f3bf6ad5e00) + +Vtable for QDynamicPropertyChangeEvent +QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QDynamicPropertyChangeEvent) +16 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent +24 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent + +Class QDynamicPropertyChangeEvent + size=32 align=8 + base size=32 base align=8 +QDynamicPropertyChangeEvent (0x7f3bf6ae5620) 0 + vptr=((& QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent) + 16u) + QEvent (0x7f3bf6ae5690) 0 + primary-for QDynamicPropertyChangeEvent (0x7f3bf6ae5620) + +Vtable for QEventTransition +QEventTransition::_ZTV16QEventTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QEventTransition) +16 QEventTransition::metaObject +24 QEventTransition::qt_metacast +32 QEventTransition::qt_metacall +40 QEventTransition::~QEventTransition +48 QEventTransition::~QEventTransition +56 QEventTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QEventTransition::eventTest +120 QEventTransition::onTransition + +Class QEventTransition + size=16 align=8 + base size=16 base align=8 +QEventTransition (0x7f3bf6ae5af0) 0 + vptr=((& QEventTransition::_ZTV16QEventTransition) + 16u) + QAbstractTransition (0x7f3bf6ae5b60) 0 + primary-for QEventTransition (0x7f3bf6ae5af0) + QObject (0x7f3bf6ae5bd0) 0 + primary-for QAbstractTransition (0x7f3bf6ae5b60) + +Vtable for QFinalState +QFinalState::_ZTV11QFinalState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFinalState) +16 QFinalState::metaObject +24 QFinalState::qt_metacast +32 QFinalState::qt_metacall +40 QFinalState::~QFinalState +48 QFinalState::~QFinalState +56 QFinalState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFinalState::onEntry +120 QFinalState::onExit + +Class QFinalState + size=16 align=8 + base size=16 base align=8 +QFinalState (0x7f3bf6b019a0) 0 + vptr=((& QFinalState::_ZTV11QFinalState) + 16u) + QAbstractState (0x7f3bf6b01a10) 0 + primary-for QFinalState (0x7f3bf6b019a0) + QObject (0x7f3bf6b01a80) 0 + primary-for QAbstractState (0x7f3bf6b01a10) + +Vtable for QHistoryState +QHistoryState::_ZTV13QHistoryState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QHistoryState) +16 QHistoryState::metaObject +24 QHistoryState::qt_metacast +32 QHistoryState::qt_metacall +40 QHistoryState::~QHistoryState +48 QHistoryState::~QHistoryState +56 QHistoryState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QHistoryState::onEntry +120 QHistoryState::onExit + +Class QHistoryState + size=16 align=8 + base size=16 base align=8 +QHistoryState (0x7f3bf6b1a230) 0 + vptr=((& QHistoryState::_ZTV13QHistoryState) + 16u) + QAbstractState (0x7f3bf6b1a2a0) 0 + primary-for QHistoryState (0x7f3bf6b1a230) + QObject (0x7f3bf6b1a310) 0 + primary-for QAbstractState (0x7f3bf6b1a2a0) + +Vtable for QSignalTransition +QSignalTransition::_ZTV17QSignalTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QSignalTransition) +16 QSignalTransition::metaObject +24 QSignalTransition::qt_metacast +32 QSignalTransition::qt_metacall +40 QSignalTransition::~QSignalTransition +48 QSignalTransition::~QSignalTransition +56 QSignalTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QSignalTransition::eventTest +120 QSignalTransition::onTransition + +Class QSignalTransition + size=16 align=8 + base size=16 base align=8 +QSignalTransition (0x7f3bf6b2af50) 0 + vptr=((& QSignalTransition::_ZTV17QSignalTransition) + 16u) + QAbstractTransition (0x7f3bf6b32000) 0 + primary-for QSignalTransition (0x7f3bf6b2af50) + QObject (0x7f3bf6b32070) 0 + primary-for QAbstractTransition (0x7f3bf6b32000) + +Vtable for QState +QState::_ZTV6QState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QState) +16 QState::metaObject +24 QState::qt_metacast +32 QState::qt_metacall +40 QState::~QState +48 QState::~QState +56 QState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QState::onEntry +120 QState::onExit + +Class QState + size=16 align=8 + base size=16 base align=8 +QState (0x7f3bf6b46af0) 0 + vptr=((& QState::_ZTV6QState) + 16u) + QAbstractState (0x7f3bf6b46b60) 0 + primary-for QState (0x7f3bf6b46af0) + QObject (0x7f3bf6b46bd0) 0 + primary-for QAbstractState (0x7f3bf6b46b60) + +Vtable for QStateMachine::SignalEvent +QStateMachine::SignalEvent::_ZTVN13QStateMachine11SignalEventE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN13QStateMachine11SignalEventE) +16 QStateMachine::SignalEvent::~SignalEvent +24 QStateMachine::SignalEvent::~SignalEvent + +Class QStateMachine::SignalEvent + size=48 align=8 + base size=48 base align=8 +QStateMachine::SignalEvent (0x7f3bf696a150) 0 + vptr=((& QStateMachine::SignalEvent::_ZTVN13QStateMachine11SignalEventE) + 16u) + QEvent (0x7f3bf696a1c0) 0 + primary-for QStateMachine::SignalEvent (0x7f3bf696a150) + +Vtable for QStateMachine::WrappedEvent +QStateMachine::WrappedEvent::_ZTVN13QStateMachine12WrappedEventE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN13QStateMachine12WrappedEventE) +16 QStateMachine::WrappedEvent::~WrappedEvent +24 QStateMachine::WrappedEvent::~WrappedEvent + +Class QStateMachine::WrappedEvent + size=40 align=8 + base size=40 base align=8 +QStateMachine::WrappedEvent (0x7f3bf696a700) 0 + vptr=((& QStateMachine::WrappedEvent::_ZTVN13QStateMachine12WrappedEventE) + 16u) + QEvent (0x7f3bf696a770) 0 + primary-for QStateMachine::WrappedEvent (0x7f3bf696a700) + +Vtable for QStateMachine +QStateMachine::_ZTV13QStateMachine: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QStateMachine) +16 QStateMachine::metaObject +24 QStateMachine::qt_metacast +32 QStateMachine::qt_metacall +40 QStateMachine::~QStateMachine +48 QStateMachine::~QStateMachine +56 QStateMachine::event +64 QStateMachine::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QStateMachine::onEntry +120 QStateMachine::onExit +128 QStateMachine::beginSelectTransitions +136 QStateMachine::endSelectTransitions +144 QStateMachine::beginMicrostep +152 QStateMachine::endMicrostep + +Class QStateMachine + size=16 align=8 + base size=16 base align=8 +QStateMachine (0x7f3bf6962ee0) 0 + vptr=((& QStateMachine::_ZTV13QStateMachine) + 16u) + QState (0x7f3bf6962f50) 0 + primary-for QStateMachine (0x7f3bf6962ee0) + QAbstractState (0x7f3bf696a000) 0 + primary-for QState (0x7f3bf6962f50) + QObject (0x7f3bf696a070) 0 + primary-for QAbstractState (0x7f3bf696a000) + +Class QBitArray + size=8 align=8 + base size=8 base align=8 +QBitArray (0x7f3bf699a150) 0 + +Class QBitRef + size=16 align=8 + base size=12 base align=8 +QBitRef (0x7f3bf69f2e00) 0 + +Class QByteArrayMatcher::Data + size=272 align=8 + base size=272 base align=8 +QByteArrayMatcher::Data (0x7f3bf6a04af0) 0 + +Class QByteArrayMatcher + size=1040 align=8 + base size=1040 base align=8 +QByteArrayMatcher (0x7f3bf6a044d0) 0 + +Class QCryptographicHash + size=8 align=8 + base size=8 base align=8 +QCryptographicHash (0x7f3bf6a3b150) 0 + +Vtable for QtSharedPointer::ExternalRefCountData +QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN15QtSharedPointer20ExternalRefCountDataE) +16 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +24 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +32 QtSharedPointer::ExternalRefCountData::destroy + +Class QtSharedPointer::ExternalRefCountData + size=16 align=8 + base size=16 base align=8 +QtSharedPointer::ExternalRefCountData (0x7f3bf6866070) 0 + vptr=((& QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE) + 16u) + +Vtable for QtSharedPointer::ExternalRefCountWithDestroyFn +QtSharedPointer::ExternalRefCountWithDestroyFn::_ZTVN15QtSharedPointer29ExternalRefCountWithDestroyFnE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN15QtSharedPointer29ExternalRefCountWithDestroyFnE) +16 QtSharedPointer::ExternalRefCountWithDestroyFn::~ExternalRefCountWithDestroyFn +24 QtSharedPointer::ExternalRefCountWithDestroyFn::~ExternalRefCountWithDestroyFn +32 QtSharedPointer::ExternalRefCountWithDestroyFn::destroy + +Class QtSharedPointer::ExternalRefCountWithDestroyFn + size=24 align=8 + base size=24 base align=8 +QtSharedPointer::ExternalRefCountWithDestroyFn (0x7f3bf687e930) 0 + vptr=((& QtSharedPointer::ExternalRefCountWithDestroyFn::_ZTVN15QtSharedPointer29ExternalRefCountWithDestroyFnE) + 16u) + QtSharedPointer::ExternalRefCountData (0x7f3bf687e9a0) 0 + primary-for QtSharedPointer::ExternalRefCountWithDestroyFn (0x7f3bf687e930) + +Class QDate + size=4 align=4 + base size=4 base align=4 +QDate (0x7f3bf69045b0) 0 + +Class QTime + size=4 align=4 + base size=4 base align=4 +QTime (0x7f3bf6934540) 0 + +Class QDateTime + size=8 align=8 + base size=8 base align=8 +QDateTime (0x7f3bf6950af0) 0 + +Class QEasingCurve + size=8 align=8 + base size=8 base align=8 +QEasingCurve (0x7f3bf6797000) 0 + +Class QPoint + size=8 align=4 + base size=8 base align=4 +QPoint (0x7f3bf6797ee0) 0 + +Class QPointF + size=16 align=8 + base size=16 base align=8 +QPointF (0x7f3bf67daaf0) 0 + +Class QLine + size=16 align=4 + base size=16 base align=4 +QLine (0x7f3bf6818af0) 0 + +Class QLineF + size=32 align=8 + base size=32 base align=8 +QLineF (0x7f3bf68539a0) 0 + +Class QLinkedListData + size=32 align=8 + base size=32 base align=8 +QLinkedListData (0x7f3bf66a8460) 0 + +Class QMargins + size=16 align=4 + base size=16 base align=4 +QMargins (0x7f3bf6566380) 0 + +Class QSize + size=8 align=4 + base size=8 base align=4 +QSize (0x7f3bf6596150) 0 + +Class QSizeF + size=16 align=8 + base size=16 base align=8 +QSizeF (0x7f3bf65d5e00) 0 + +Class QRect + size=16 align=4 + base size=16 base align=4 +QRect (0x7f3bf662a380) 0 + +Class QRectF + size=32 align=8 + base size=32 base align=8 +QRectF (0x7f3bf64d5d20) 0 + +Class QLatin1Literal + size=16 align=8 + base size=16 base align=8 +QLatin1Literal (0x7f3bf6384ee0) 0 + +Class QAbstractConcatenable + size=1 align=1 + base size=0 base align=1 +QAbstractConcatenable (0x7f3bf63973f0) 0 empty + +Class QTextBoundaryFinder + size=48 align=8 + base size=48 base align=8 +QTextBoundaryFinder (0x7f3bf63cd380) 0 + +Vtable for QTimeLine +QTimeLine::_ZTV9QTimeLine: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTimeLine) +16 QTimeLine::metaObject +24 QTimeLine::qt_metacast +32 QTimeLine::qt_metacall +40 QTimeLine::~QTimeLine +48 QTimeLine::~QTimeLine +56 QObject::event +64 QObject::eventFilter +72 QTimeLine::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTimeLine::valueForTime + +Class QTimeLine + size=16 align=8 + base size=16 base align=8 +QTimeLine (0x7f3bf63de700) 0 + vptr=((& QTimeLine::_ZTV9QTimeLine) + 16u) + QObject (0x7f3bf63de770) 0 + primary-for QTimeLine (0x7f3bf63de700) + +Vtable for QRunnable +QRunnable::_ZTV9QRunnable: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QRunnable) +16 __cxa_pure_virtual +24 QRunnable::~QRunnable +32 QRunnable::~QRunnable + +Class QRunnable + size=16 align=8 + base size=12 base align=8 +QRunnable (0x7f3bf6405f50) 0 + vptr=((& QRunnable::_ZTV9QRunnable) + 16u) + +Class QMutex + size=8 align=8 + base size=8 base align=8 +QMutex (0x7f3bf643c620) 0 + +Class QMutexLocker + size=8 align=8 + base size=8 base align=8 +QMutexLocker (0x7f3bf644b1c0) 0 + +Vtable for QtConcurrent::Exception +QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent9ExceptionE) +16 QtConcurrent::Exception::~Exception +24 QtConcurrent::Exception::~Exception +32 std::exception::what +40 QtConcurrent::Exception::raise +48 QtConcurrent::Exception::clone + +Class QtConcurrent::Exception + size=8 align=8 + base size=8 base align=8 +QtConcurrent::Exception (0x7f3bf62614d0) 0 nearly-empty + vptr=((& QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE) + 16u) + std::exception (0x7f3bf6261540) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7f3bf62614d0) + +Vtable for QtConcurrent::UnhandledException +QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent18UnhandledExceptionE) +16 QtConcurrent::UnhandledException::~UnhandledException +24 QtConcurrent::UnhandledException::~UnhandledException +32 std::exception::what +40 QtConcurrent::UnhandledException::raise +48 QtConcurrent::UnhandledException::clone + +Class QtConcurrent::UnhandledException + size=8 align=8 + base size=8 base align=8 +QtConcurrent::UnhandledException (0x7f3bf6261770) 0 nearly-empty + vptr=((& QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE) + 16u) + QtConcurrent::Exception (0x7f3bf62617e0) 0 nearly-empty + primary-for QtConcurrent::UnhandledException (0x7f3bf6261770) + std::exception (0x7f3bf6261850) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7f3bf62617e0) + +Class QtConcurrent::internal::ExceptionHolder + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionHolder (0x7f3bf6261a80) 0 + +Class QtConcurrent::internal::ExceptionStore + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionStore (0x7f3bf6261e00) 0 + +Class QtConcurrent::ResultItem + size=16 align=8 + base size=16 base align=8 +QtConcurrent::ResultItem (0x7f3bf6261e70) 0 + +Class QtConcurrent::ResultIteratorBase + size=16 align=8 + base size=12 base align=8 +QtConcurrent::ResultIteratorBase (0x7f3bf6279d90) 0 + +Vtable for QtConcurrent::ResultStoreBase +QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent15ResultStoreBaseE) +16 QtConcurrent::ResultStoreBase::~ResultStoreBase +24 QtConcurrent::ResultStoreBase::~ResultStoreBase + +Class QtConcurrent::ResultStoreBase + size=48 align=8 + base size=44 base align=8 +QtConcurrent::ResultStoreBase (0x7f3bf627e930) 0 + vptr=((& QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE) + 16u) + +Vtable for QFutureInterfaceBase +QFutureInterfaceBase::_ZTV20QFutureInterfaceBase: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QFutureInterfaceBase) +16 QFutureInterfaceBase::~QFutureInterfaceBase +24 QFutureInterfaceBase::~QFutureInterfaceBase + +Class QFutureInterfaceBase + size=16 align=8 + base size=16 base align=8 +QFutureInterfaceBase (0x7f3bf62bcd90) 0 + vptr=((& QFutureInterfaceBase::_ZTV20QFutureInterfaceBase) + 16u) + +Vtable for QFutureWatcherBase +QFutureWatcherBase::_ZTV18QFutureWatcherBase: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFutureWatcherBase) +16 QFutureWatcherBase::metaObject +24 QFutureWatcherBase::qt_metacast +32 QFutureWatcherBase::qt_metacall +40 QFutureWatcherBase::~QFutureWatcherBase +48 QFutureWatcherBase::~QFutureWatcherBase +56 QFutureWatcherBase::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QFutureWatcherBase::connectNotify +104 QFutureWatcherBase::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QFutureWatcherBase + size=16 align=8 + base size=16 base align=8 +QFutureWatcherBase (0x7f3bf61a3690) 0 + vptr=((& QFutureWatcherBase::_ZTV18QFutureWatcherBase) + 16u) + QObject (0x7f3bf61a3700) 0 + primary-for QFutureWatcherBase (0x7f3bf61a3690) + +Vtable for QThread +QThread::_ZTV7QThread: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QThread) +16 QThread::metaObject +24 QThread::qt_metacast +32 QThread::qt_metacall +40 QThread::~QThread +48 QThread::~QThread +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QThread::run + +Class QThread + size=16 align=8 + base size=16 base align=8 +QThread (0x7f3bf61f4a80) 0 + vptr=((& QThread::_ZTV7QThread) + 16u) + QObject (0x7f3bf61f4af0) 0 + primary-for QThread (0x7f3bf61f4a80) + +Vtable for QThreadPool +QThreadPool::_ZTV11QThreadPool: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QThreadPool) +16 QThreadPool::metaObject +24 QThreadPool::qt_metacast +32 QThreadPool::qt_metacall +40 QThreadPool::~QThreadPool +48 QThreadPool::~QThreadPool +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QThreadPool + size=16 align=8 + base size=16 base align=8 +QThreadPool (0x7f3bf621a930) 0 + vptr=((& QThreadPool::_ZTV11QThreadPool) + 16u) + QObject (0x7f3bf621a9a0) 0 + primary-for QThreadPool (0x7f3bf621a930) + +Class QWaitCondition + size=8 align=8 + base size=8 base align=8 +QWaitCondition (0x7f3bf622cee0) 0 + +Class QSemaphore + size=8 align=8 + base size=8 base align=8 +QSemaphore (0x7f3bf6235460) 0 + +Class QtConcurrent::ThreadEngineBarrier + size=24 align=8 + base size=24 base align=8 +QtConcurrent::ThreadEngineBarrier (0x7f3bf62359a0) 0 + +Vtable for QtConcurrent::ThreadEngineBase +QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent16ThreadEngineBaseE) +16 QtConcurrent::ThreadEngineBase::run +24 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +32 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +40 QtConcurrent::ThreadEngineBase::start +48 QtConcurrent::ThreadEngineBase::finish +56 QtConcurrent::ThreadEngineBase::threadFunction +64 QtConcurrent::ThreadEngineBase::shouldStartThread +72 QtConcurrent::ThreadEngineBase::shouldThrottleThread +80 __cxa_pure_virtual + +Class QtConcurrent::ThreadEngineBase + size=64 align=8 + base size=64 base align=8 +QtConcurrent::ThreadEngineBase (0x7f3bf6235a80) 0 + vptr=((& QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE) + 16u) + QRunnable (0x7f3bf6235af0) 0 + primary-for QtConcurrent::ThreadEngineBase (0x7f3bf6235a80) + +VTT for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTTN12QtConcurrent12ThreadEngineIvEE: 2u entries +0 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 24u) +8 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 136u) + +Class QtConcurrent::BlockSizeManager + size=96 align=8 + base size=92 base align=8 +QtConcurrent::BlockSizeManager (0x7f3bf6081ee0) 0 + +Vtable for QFactoryInterface +QFactoryInterface::_ZTV17QFactoryInterface: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QFactoryInterface) +16 QFactoryInterface::~QFactoryInterface +24 QFactoryInterface::~QFactoryInterface +32 __cxa_pure_virtual + +Class QFactoryInterface + size=8 align=8 + base size=8 base align=8 +QFactoryInterface (0x7f3bf5d25d20) 0 nearly-empty + vptr=((& QFactoryInterface::_ZTV17QFactoryInterface) + 16u) + +Vtable for QTextCodecFactoryInterface +QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QTextCodecFactoryInterface) +16 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +24 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QTextCodecFactoryInterface + size=8 align=8 + base size=8 base align=8 +QTextCodecFactoryInterface (0x7f3bf5b57000) 0 nearly-empty + vptr=((& QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface) + 16u) + QFactoryInterface (0x7f3bf5b57070) 0 nearly-empty + primary-for QTextCodecFactoryInterface (0x7f3bf5b57000) + +Vtable for QTextCodecPlugin +QTextCodecPlugin::_ZTV16QTextCodecPlugin: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QTextCodecPlugin) +16 QTextCodecPlugin::metaObject +24 QTextCodecPlugin::qt_metacast +32 QTextCodecPlugin::qt_metacall +40 QTextCodecPlugin::~QTextCodecPlugin +48 QTextCodecPlugin::~QTextCodecPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 QTextCodecPlugin::keys +160 QTextCodecPlugin::create +168 (int (*)(...))-0x00000000000000010 +176 (int (*)(...))(& _ZTI16QTextCodecPlugin) +184 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD1Ev +192 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD0Ev +200 QTextCodecPlugin::_ZThn16_NK16QTextCodecPlugin4keysEv +208 QTextCodecPlugin::_ZThn16_N16QTextCodecPlugin6createERK7QString + +Class QTextCodecPlugin + size=24 align=8 + base size=24 base align=8 +QTextCodecPlugin (0x7f3bf5b60580) 0 + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 16u) + QObject (0x7f3bf5b57a80) 0 + primary-for QTextCodecPlugin (0x7f3bf5b60580) + QTextCodecFactoryInterface (0x7f3bf5b57af0) 16 nearly-empty + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 184u) + QFactoryInterface (0x7f3bf5b57b60) 16 nearly-empty + primary-for QTextCodecFactoryInterface (0x7f3bf5b57af0) + +Class QLibraryInfo + size=1 align=1 + base size=0 base align=1 +QLibraryInfo (0x7f3bf5bac150) 0 empty + +Vtable for QEventLoop +QEventLoop::_ZTV10QEventLoop: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QEventLoop) +16 QEventLoop::metaObject +24 QEventLoop::qt_metacast +32 QEventLoop::qt_metacall +40 QEventLoop::~QEventLoop +48 QEventLoop::~QEventLoop +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QEventLoop + size=16 align=8 + base size=16 base align=8 +QEventLoop (0x7f3bf5bac2a0) 0 + vptr=((& QEventLoop::_ZTV10QEventLoop) + 16u) + QObject (0x7f3bf5bac310) 0 + primary-for QEventLoop (0x7f3bf5bac2a0) + +Vtable for QAbstractEventDispatcher +QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QAbstractEventDispatcher) +16 QAbstractEventDispatcher::metaObject +24 QAbstractEventDispatcher::qt_metacast +32 QAbstractEventDispatcher::qt_metacall +40 QAbstractEventDispatcher::~QAbstractEventDispatcher +48 QAbstractEventDispatcher::~QAbstractEventDispatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 QAbstractEventDispatcher::startingUp +208 QAbstractEventDispatcher::closingDown + +Class QAbstractEventDispatcher + size=16 align=8 + base size=16 base align=8 +QAbstractEventDispatcher (0x7f3bf5be8bd0) 0 + vptr=((& QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher) + 16u) + QObject (0x7f3bf5be8c40) 0 + primary-for QAbstractEventDispatcher (0x7f3bf5be8bd0) + +Class QModelIndex + size=24 align=8 + base size=24 base align=8 +QModelIndex (0x7f3bf5c0fa80) 0 + +Class QPersistentModelIndex + size=8 align=8 + base size=8 base align=8 +QPersistentModelIndex (0x7f3bf5c38540) 0 + +Vtable for QAbstractItemModel +QAbstractItemModel::_ZTV18QAbstractItemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractItemModel) +16 QAbstractItemModel::metaObject +24 QAbstractItemModel::qt_metacast +32 QAbstractItemModel::qt_metacall +40 QAbstractItemModel::~QAbstractItemModel +48 QAbstractItemModel::~QAbstractItemModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractItemModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractItemModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractItemModel + size=16 align=8 + base size=16 base align=8 +QAbstractItemModel (0x7f3bf5c42850) 0 + vptr=((& QAbstractItemModel::_ZTV18QAbstractItemModel) + 16u) + QObject (0x7f3bf5c428c0) 0 + primary-for QAbstractItemModel (0x7f3bf5c42850) + +Vtable for QAbstractTableModel +QAbstractTableModel::_ZTV19QAbstractTableModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractTableModel) +16 QAbstractTableModel::metaObject +24 QAbstractTableModel::qt_metacast +32 QAbstractTableModel::qt_metacall +40 QAbstractTableModel::~QAbstractTableModel +48 QAbstractTableModel::~QAbstractTableModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractTableModel::index +120 QAbstractTableModel::parent +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractTableModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractTableModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractTableModel + size=16 align=8 + base size=16 base align=8 +QAbstractTableModel (0x7f3bf5a9db60) 0 + vptr=((& QAbstractTableModel::_ZTV19QAbstractTableModel) + 16u) + QAbstractItemModel (0x7f3bf5a9dbd0) 0 + primary-for QAbstractTableModel (0x7f3bf5a9db60) + QObject (0x7f3bf5a9dc40) 0 + primary-for QAbstractItemModel (0x7f3bf5a9dbd0) + +Vtable for QAbstractListModel +QAbstractListModel::_ZTV18QAbstractListModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractListModel) +16 QAbstractListModel::metaObject +24 QAbstractListModel::qt_metacast +32 QAbstractListModel::qt_metacall +40 QAbstractListModel::~QAbstractListModel +48 QAbstractListModel::~QAbstractListModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractListModel::index +120 QAbstractListModel::parent +128 __cxa_pure_virtual +136 QAbstractListModel::columnCount +144 QAbstractListModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractListModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractListModel + size=16 align=8 + base size=16 base align=8 +QAbstractListModel (0x7f3bf5ab90e0) 0 + vptr=((& QAbstractListModel::_ZTV18QAbstractListModel) + 16u) + QAbstractItemModel (0x7f3bf5ab9150) 0 + primary-for QAbstractListModel (0x7f3bf5ab90e0) + QObject (0x7f3bf5ab91c0) 0 + primary-for QAbstractItemModel (0x7f3bf5ab9150) + +Class QBasicTimer + size=4 align=4 + base size=4 base align=4 +QBasicTimer (0x7f3bf5aea230) 0 + +Vtable for QCoreApplication +QCoreApplication::_ZTV16QCoreApplication: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QCoreApplication) +16 QCoreApplication::metaObject +24 QCoreApplication::qt_metacast +32 QCoreApplication::qt_metacall +40 QCoreApplication::~QCoreApplication +48 QCoreApplication::~QCoreApplication +56 QCoreApplication::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCoreApplication::notify +120 QCoreApplication::compressEvent + +Class QCoreApplication + size=16 align=8 + base size=16 base align=8 +QCoreApplication (0x7f3bf5af7620) 0 + vptr=((& QCoreApplication::_ZTV16QCoreApplication) + 16u) + QObject (0x7f3bf5af7690) 0 + primary-for QCoreApplication (0x7f3bf5af7620) + +Class __exception + size=40 align=8 + base size=40 base align=8 +__exception (0x7f3bf5b2b310) 0 + +Class QMetaMethod + size=16 align=8 + base size=12 base align=8 +QMetaMethod (0x7f3bf5997770) 0 + +Class QMetaEnum + size=16 align=8 + base size=12 base align=8 +QMetaEnum (0x7f3bf59b3bd0) 0 + +Class QMetaProperty + size=32 align=8 + base size=32 base align=8 +QMetaProperty (0x7f3bf59c2930) 0 + +Class QMetaClassInfo + size=16 align=8 + base size=12 base align=8 +QMetaClassInfo (0x7f3bf59d1000) 0 + +Vtable for QMimeData +QMimeData::_ZTV9QMimeData: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QMimeData) +16 QMimeData::metaObject +24 QMimeData::qt_metacast +32 QMimeData::qt_metacall +40 QMimeData::~QMimeData +48 QMimeData::~QMimeData +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMimeData::hasFormat +120 QMimeData::formats +128 QMimeData::retrieveData + +Class QMimeData + size=16 align=8 + base size=16 base align=8 +QMimeData (0x7f3bf59d1af0) 0 + vptr=((& QMimeData::_ZTV9QMimeData) + 16u) + QObject (0x7f3bf59d1b60) 0 + primary-for QMimeData (0x7f3bf59d1af0) + +Vtable for QObjectCleanupHandler +QObjectCleanupHandler::_ZTV21QObjectCleanupHandler: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QObjectCleanupHandler) +16 QObjectCleanupHandler::metaObject +24 QObjectCleanupHandler::qt_metacast +32 QObjectCleanupHandler::qt_metacall +40 QObjectCleanupHandler::~QObjectCleanupHandler +48 QObjectCleanupHandler::~QObjectCleanupHandler +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObjectCleanupHandler + size=24 align=8 + base size=24 base align=8 +QObjectCleanupHandler (0x7f3bf59f5380) 0 + vptr=((& QObjectCleanupHandler::_ZTV21QObjectCleanupHandler) + 16u) + QObject (0x7f3bf59f53f0) 0 + primary-for QObjectCleanupHandler (0x7f3bf59f5380) + +Vtable for QSharedMemory +QSharedMemory::_ZTV13QSharedMemory: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSharedMemory) +16 QSharedMemory::metaObject +24 QSharedMemory::qt_metacast +32 QSharedMemory::qt_metacall +40 QSharedMemory::~QSharedMemory +48 QSharedMemory::~QSharedMemory +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSharedMemory + size=16 align=8 + base size=16 base align=8 +QSharedMemory (0x7f3bf5a054d0) 0 + vptr=((& QSharedMemory::_ZTV13QSharedMemory) + 16u) + QObject (0x7f3bf5a05540) 0 + primary-for QSharedMemory (0x7f3bf5a054d0) + +Vtable for QSignalMapper +QSignalMapper::_ZTV13QSignalMapper: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSignalMapper) +16 QSignalMapper::metaObject +24 QSignalMapper::qt_metacast +32 QSignalMapper::qt_metacall +40 QSignalMapper::~QSignalMapper +48 QSignalMapper::~QSignalMapper +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSignalMapper + size=16 align=8 + base size=16 base align=8 +QSignalMapper (0x7f3bf5a212a0) 0 + vptr=((& QSignalMapper::_ZTV13QSignalMapper) + 16u) + QObject (0x7f3bf5a21310) 0 + primary-for QSignalMapper (0x7f3bf5a212a0) + +Vtable for QSocketNotifier +QSocketNotifier::_ZTV15QSocketNotifier: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSocketNotifier) +16 QSocketNotifier::metaObject +24 QSocketNotifier::qt_metacast +32 QSocketNotifier::qt_metacall +40 QSocketNotifier::~QSocketNotifier +48 QSocketNotifier::~QSocketNotifier +56 QSocketNotifier::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSocketNotifier + size=32 align=8 + base size=25 base align=8 +QSocketNotifier (0x7f3bf5a3d690) 0 + vptr=((& QSocketNotifier::_ZTV15QSocketNotifier) + 16u) + QObject (0x7f3bf5a3d700) 0 + primary-for QSocketNotifier (0x7f3bf5a3d690) + +Class QSystemSemaphore + size=8 align=8 + base size=8 base align=8 +QSystemSemaphore (0x7f3bf5856a10) 0 + +Vtable for QTimer +QTimer::_ZTV6QTimer: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QTimer) +16 QTimer::metaObject +24 QTimer::qt_metacast +32 QTimer::qt_metacall +40 QTimer::~QTimer +48 QTimer::~QTimer +56 QObject::event +64 QObject::eventFilter +72 QTimer::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTimer + size=32 align=8 + base size=29 base align=8 +QTimer (0x7f3bf5861460) 0 + vptr=((& QTimer::_ZTV6QTimer) + 16u) + QObject (0x7f3bf58614d0) 0 + primary-for QTimer (0x7f3bf5861460) + +Vtable for QTranslator +QTranslator::_ZTV11QTranslator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTranslator) +16 QTranslator::metaObject +24 QTranslator::qt_metacast +32 QTranslator::qt_metacall +40 QTranslator::~QTranslator +48 QTranslator::~QTranslator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTranslator::translate +120 QTranslator::isEmpty + +Class QTranslator + size=16 align=8 + base size=16 base align=8 +QTranslator (0x7f3bf58859a0) 0 + vptr=((& QTranslator::_ZTV11QTranslator) + 16u) + QObject (0x7f3bf5885a10) 0 + primary-for QTranslator (0x7f3bf58859a0) + +Vtable for QLibrary +QLibrary::_ZTV8QLibrary: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QLibrary) +16 QLibrary::metaObject +24 QLibrary::qt_metacast +32 QLibrary::qt_metacall +40 QLibrary::~QLibrary +48 QLibrary::~QLibrary +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QLibrary + size=32 align=8 + base size=25 base align=8 +QLibrary (0x7f3bf58a1930) 0 + vptr=((& QLibrary::_ZTV8QLibrary) + 16u) + QObject (0x7f3bf58a19a0) 0 + primary-for QLibrary (0x7f3bf58a1930) + +Vtable for QPluginLoader +QPluginLoader::_ZTV13QPluginLoader: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QPluginLoader) +16 QPluginLoader::metaObject +24 QPluginLoader::qt_metacast +32 QPluginLoader::qt_metacall +40 QPluginLoader::~QPluginLoader +48 QPluginLoader::~QPluginLoader +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QPluginLoader + size=32 align=8 + base size=25 base align=8 +QPluginLoader (0x7f3bf58ee3f0) 0 + vptr=((& QPluginLoader::_ZTV13QPluginLoader) + 16u) + QObject (0x7f3bf58ee460) 0 + primary-for QPluginLoader (0x7f3bf58ee3f0) + +Class QUuid + size=16 align=4 + base size=16 base align=4 +QUuid (0x7f3bf58fcb60) 0 + +Class QReadWriteLock + size=8 align=8 + base size=8 base align=8 +QReadWriteLock (0x7f3bf59234d0) 0 + +Class QReadLocker + size=8 align=8 + base size=8 base align=8 +QReadLocker (0x7f3bf5923b60) 0 + +Class QWriteLocker + size=8 align=8 + base size=8 base align=8 +QWriteLocker (0x7f3bf5942ee0) 0 + +Class QThreadStorageData + size=4 align=4 + base size=4 base align=4 +QThreadStorageData (0x7f3bf575c2a0) 0 + +Vtable for QAbstractAnimation +QAbstractAnimation::_ZTV18QAbstractAnimation: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractAnimation) +16 QAbstractAnimation::metaObject +24 QAbstractAnimation::qt_metacast +32 QAbstractAnimation::qt_metacall +40 QAbstractAnimation::~QAbstractAnimation +48 QAbstractAnimation::~QAbstractAnimation +56 QAbstractAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAbstractAnimation::updateState +136 QAbstractAnimation::updateDirection + +Class QAbstractAnimation + size=16 align=8 + base size=16 base align=8 +QAbstractAnimation (0x7f3bf575ca10) 0 + vptr=((& QAbstractAnimation::_ZTV18QAbstractAnimation) + 16u) + QObject (0x7f3bf575ca80) 0 + primary-for QAbstractAnimation (0x7f3bf575ca10) + +Vtable for QAnimationGroup +QAnimationGroup::_ZTV15QAnimationGroup: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QAnimationGroup) +16 QAnimationGroup::metaObject +24 QAnimationGroup::qt_metacast +32 QAnimationGroup::qt_metacall +40 QAnimationGroup::~QAnimationGroup +48 QAnimationGroup::~QAnimationGroup +56 QAnimationGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAbstractAnimation::updateState +136 QAbstractAnimation::updateDirection + +Class QAnimationGroup + size=16 align=8 + base size=16 base align=8 +QAnimationGroup (0x7f3bf5794150) 0 + vptr=((& QAnimationGroup::_ZTV15QAnimationGroup) + 16u) + QAbstractAnimation (0x7f3bf57941c0) 0 + primary-for QAnimationGroup (0x7f3bf5794150) + QObject (0x7f3bf5794230) 0 + primary-for QAbstractAnimation (0x7f3bf57941c0) + +Vtable for QParallelAnimationGroup +QParallelAnimationGroup::_ZTV23QParallelAnimationGroup: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QParallelAnimationGroup) +16 QParallelAnimationGroup::metaObject +24 QParallelAnimationGroup::qt_metacast +32 QParallelAnimationGroup::qt_metacall +40 QParallelAnimationGroup::~QParallelAnimationGroup +48 QParallelAnimationGroup::~QParallelAnimationGroup +56 QParallelAnimationGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QParallelAnimationGroup::duration +120 QParallelAnimationGroup::updateCurrentTime +128 QParallelAnimationGroup::updateState +136 QParallelAnimationGroup::updateDirection + +Class QParallelAnimationGroup + size=16 align=8 + base size=16 base align=8 +QParallelAnimationGroup (0x7f3bf57ae000) 0 + vptr=((& QParallelAnimationGroup::_ZTV23QParallelAnimationGroup) + 16u) + QAnimationGroup (0x7f3bf57ae070) 0 + primary-for QParallelAnimationGroup (0x7f3bf57ae000) + QAbstractAnimation (0x7f3bf57ae0e0) 0 + primary-for QAnimationGroup (0x7f3bf57ae070) + QObject (0x7f3bf57ae150) 0 + primary-for QAbstractAnimation (0x7f3bf57ae0e0) + +Vtable for QPauseAnimation +QPauseAnimation::_ZTV15QPauseAnimation: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QPauseAnimation) +16 QPauseAnimation::metaObject +24 QPauseAnimation::qt_metacast +32 QPauseAnimation::qt_metacall +40 QPauseAnimation::~QPauseAnimation +48 QPauseAnimation::~QPauseAnimation +56 QPauseAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QPauseAnimation::duration +120 QPauseAnimation::updateCurrentTime +128 QAbstractAnimation::updateState +136 QAbstractAnimation::updateDirection + +Class QPauseAnimation + size=16 align=8 + base size=16 base align=8 +QPauseAnimation (0x7f3bf57bce70) 0 + vptr=((& QPauseAnimation::_ZTV15QPauseAnimation) + 16u) + QAbstractAnimation (0x7f3bf57bcee0) 0 + primary-for QPauseAnimation (0x7f3bf57bce70) + QObject (0x7f3bf57bcf50) 0 + primary-for QAbstractAnimation (0x7f3bf57bcee0) + +Vtable for QVariantAnimation +QVariantAnimation::_ZTV17QVariantAnimation: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QVariantAnimation) +16 QVariantAnimation::metaObject +24 QVariantAnimation::qt_metacast +32 QVariantAnimation::qt_metacall +40 QVariantAnimation::~QVariantAnimation +48 QVariantAnimation::~QVariantAnimation +56 QVariantAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QVariantAnimation::duration +120 QVariantAnimation::updateCurrentTime +128 QVariantAnimation::updateState +136 QAbstractAnimation::updateDirection +144 __cxa_pure_virtual +152 QVariantAnimation::interpolated + +Class QVariantAnimation + size=16 align=8 + base size=16 base align=8 +QVariantAnimation (0x7f3bf57d88c0) 0 + vptr=((& QVariantAnimation::_ZTV17QVariantAnimation) + 16u) + QAbstractAnimation (0x7f3bf57d8930) 0 + primary-for QVariantAnimation (0x7f3bf57d88c0) + QObject (0x7f3bf57d89a0) 0 + primary-for QAbstractAnimation (0x7f3bf57d8930) + +Vtable for QPropertyAnimation +QPropertyAnimation::_ZTV18QPropertyAnimation: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QPropertyAnimation) +16 QPropertyAnimation::metaObject +24 QPropertyAnimation::qt_metacast +32 QPropertyAnimation::qt_metacall +40 QPropertyAnimation::~QPropertyAnimation +48 QPropertyAnimation::~QPropertyAnimation +56 QPropertyAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QVariantAnimation::duration +120 QVariantAnimation::updateCurrentTime +128 QPropertyAnimation::updateState +136 QAbstractAnimation::updateDirection +144 QPropertyAnimation::updateCurrentValue +152 QVariantAnimation::interpolated + +Class QPropertyAnimation + size=16 align=8 + base size=16 base align=8 +QPropertyAnimation (0x7f3bf57f6b60) 0 + vptr=((& QPropertyAnimation::_ZTV18QPropertyAnimation) + 16u) + QVariantAnimation (0x7f3bf57f6bd0) 0 + primary-for QPropertyAnimation (0x7f3bf57f6b60) + QAbstractAnimation (0x7f3bf57f6c40) 0 + primary-for QVariantAnimation (0x7f3bf57f6bd0) + QObject (0x7f3bf57f6cb0) 0 + primary-for QAbstractAnimation (0x7f3bf57f6c40) + +Vtable for QSequentialAnimationGroup +QSequentialAnimationGroup::_ZTV25QSequentialAnimationGroup: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QSequentialAnimationGroup) +16 QSequentialAnimationGroup::metaObject +24 QSequentialAnimationGroup::qt_metacast +32 QSequentialAnimationGroup::qt_metacall +40 QSequentialAnimationGroup::~QSequentialAnimationGroup +48 QSequentialAnimationGroup::~QSequentialAnimationGroup +56 QSequentialAnimationGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QSequentialAnimationGroup::duration +120 QSequentialAnimationGroup::updateCurrentTime +128 QSequentialAnimationGroup::updateState +136 QSequentialAnimationGroup::updateDirection + +Class QSequentialAnimationGroup + size=16 align=8 + base size=16 base align=8 +QSequentialAnimationGroup (0x7f3bf5810b60) 0 + vptr=((& QSequentialAnimationGroup::_ZTV25QSequentialAnimationGroup) + 16u) + QAnimationGroup (0x7f3bf5810bd0) 0 + primary-for QSequentialAnimationGroup (0x7f3bf5810b60) + QAbstractAnimation (0x7f3bf5810c40) 0 + primary-for QAnimationGroup (0x7f3bf5810bd0) + QObject (0x7f3bf5810cb0) 0 + primary-for QAbstractAnimation (0x7f3bf5810c40) + diff --git a/tests/auto/bic/data/QtDBus.4.5.0.linux-gcc-amd64.txt b/tests/auto/bic/data/QtDBus.4.5.0.linux-gcc-amd64.txt new file mode 100644 index 0000000..fdc64af --- /dev/null +++ b/tests/auto/bic/data/QtDBus.4.5.0.linux-gcc-amd64.txt @@ -0,0 +1,2997 @@ +Class QSysInfo + size=1 align=1 + base size=0 base align=1 +QSysInfo (0x7fafb8417460) 0 empty + +Class QBool + size=1 align=1 + base size=1 base align=1 +QBool (0x7fafb842c150) 0 + +Class qIsNull(double)::U + size=8 align=8 + base size=8 base align=8 +qIsNull(double)::U (0x7fafb8442540) 0 + +Class qIsNull(float)::U + size=4 align=4 + base size=4 base align=4 +qIsNull(float)::U (0x7fafb84427e0) 0 + +Class QFlag + size=4 align=4 + base size=4 base align=4 +QFlag (0x7fafb847b620) 0 + +Class QIncompatibleFlag + size=4 align=4 + base size=4 base align=4 +QIncompatibleFlag (0x7fafb847be00) 0 + +Class QInternal + size=1 align=1 + base size=0 base align=1 +QInternal (0x7fafb7a75540) 0 empty + +Class QGenericArgument + size=16 align=8 + base size=16 base align=8 +QGenericArgument (0x7fafb7a75850) 0 + +Class QGenericReturnArgument + size=16 align=8 + base size=16 base align=8 +QGenericReturnArgument (0x7fafb7a903f0) 0 + QGenericArgument (0x7fafb7a90460) 0 + +Class QMetaObject + size=32 align=8 + base size=32 base align=8 +QMetaObject (0x7fafb7a90cb0) 0 + +Class QMetaObjectExtraData + size=16 align=8 + base size=16 base align=8 +QMetaObjectExtraData (0x7fafb7ab6cb0) 0 + +Class QLatin1Char + size=1 align=1 + base size=1 base align=1 +QLatin1Char (0x7fafb7ac2700) 0 + +Class QChar + size=2 align=2 + base size=2 base align=2 +QChar (0x7fafb7ac72a0) 0 + +Class QBasicAtomicInt + size=4 align=4 + base size=4 base align=4 +QBasicAtomicInt (0x7fafb7934380) 0 + +Class QAtomicInt + size=4 align=4 + base size=4 base align=4 +QAtomicInt (0x7fafb796dd20) 0 + QBasicAtomicInt (0x7fafb796dd90) 0 + +Class __locale_struct + size=232 align=8 + base size=232 base align=8 +__locale_struct (0x7fafb79941c0) 0 + +Class QByteArray::Data + size=32 align=8 + base size=32 base align=8 +QByteArray::Data (0x7fafb780d7e0) 0 + +Class QByteArray + size=8 align=8 + base size=8 base align=8 +QByteArray (0x7fafb79cc540) 0 + +Class QByteRef + size=16 align=8 + base size=12 base align=8 +QByteRef (0x7fafb7862a80) 0 + +Class QString::Null + size=1 align=1 + base size=0 base align=1 +QString::Null (0x7fafb776b700) 0 empty + +Class QString::Data + size=32 align=8 + base size=32 base align=8 +QString::Data (0x7fafb777aee0) 0 + +Class QString + size=8 align=8 + base size=8 base align=8 +QString (0x7fafb76ea5b0) 0 + +Class QLatin1String + size=8 align=8 + base size=8 base align=8 +QLatin1String (0x7fafb7653000) 0 + +Class QCharRef + size=16 align=8 + base size=12 base align=8 +QCharRef (0x7fafb74eb620) 0 + +Class QConstString + size=8 align=8 + base size=8 base align=8 +QConstString (0x7fafb7435ee0) 0 + QString (0x7fafb7435f50) 0 + +Class QStringRef + size=16 align=8 + base size=16 base align=8 +QStringRef (0x7fafb7455bd0) 0 + +Vtable for std::exception +std::exception::_ZTVSt9exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9exception) +16 std::exception::~exception +24 std::exception::~exception +32 std::exception::what + +Class std::exception + size=8 align=8 + base size=8 base align=8 +std::exception (0x7fafb7311620) 0 nearly-empty + vptr=((& std::exception::_ZTVSt9exception) + 16u) + +Vtable for std::bad_exception +std::bad_exception::_ZTVSt13bad_exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13bad_exception) +16 std::bad_exception::~bad_exception +24 std::bad_exception::~bad_exception +32 std::bad_exception::what + +Class std::bad_exception + size=8 align=8 + base size=8 base align=8 +std::bad_exception (0x7fafb7332000) 0 nearly-empty + vptr=((& std::bad_exception::_ZTVSt13bad_exception) + 16u) + std::exception (0x7fafb7332070) 0 nearly-empty + primary-for std::bad_exception (0x7fafb7332000) + +Vtable for std::bad_alloc +std::bad_alloc::_ZTVSt9bad_alloc: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9bad_alloc) +16 std::bad_alloc::~bad_alloc +24 std::bad_alloc::~bad_alloc +32 std::bad_alloc::what + +Class std::bad_alloc + size=8 align=8 + base size=8 base align=8 +std::bad_alloc (0x7fafb73328c0) 0 nearly-empty + vptr=((& std::bad_alloc::_ZTVSt9bad_alloc) + 16u) + std::exception (0x7fafb7332930) 0 nearly-empty + primary-for std::bad_alloc (0x7fafb73328c0) + +Class std::nothrow_t + size=1 align=1 + base size=0 base align=1 +std::nothrow_t (0x7fafb73440e0) 0 empty + +Class QListData::Data + size=32 align=8 + base size=32 base align=8 +QListData::Data (0x7fafb7344620) 0 + +Class QListData + size=8 align=8 + base size=8 base align=8 +QListData (0x7fafb73445b0) 0 + +Vtable for QObjectData +QObjectData::_ZTV11QObjectData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QObjectData) +16 __cxa_pure_virtual +24 __cxa_pure_virtual + +Class QObjectData + size=40 align=8 + base size=40 base align=8 +QObjectData (0x7fafb7245bd0) 0 + vptr=((& QObjectData::_ZTV11QObjectData) + 16u) + +Vtable for QObject +QObject::_ZTV7QObject: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QObject) +16 QObject::metaObject +24 QObject::qt_metacast +32 QObject::qt_metacall +40 QObject::~QObject +48 QObject::~QObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObject + size=16 align=8 + base size=16 base align=8 +QObject (0x7fafb7245ee0) 0 + vptr=((& QObject::_ZTV7QObject) + 16u) + +Vtable for QObjectUserData +QObjectUserData::_ZTV15QObjectUserData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QObjectUserData) +16 QObjectUserData::~QObjectUserData +24 QObjectUserData::~QObjectUserData + +Class QObjectUserData + size=8 align=8 + base size=8 base align=8 +QObjectUserData (0x7fafb70c83f0) 0 nearly-empty + vptr=((& QObjectUserData::_ZTV15QObjectUserData) + 16u) + +Vtable for QIODevice +QIODevice::_ZTV9QIODevice: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QIODevice) +16 QIODevice::metaObject +24 QIODevice::qt_metacast +32 QIODevice::qt_metacall +40 QIODevice::~QIODevice +48 QIODevice::~QIODevice +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QIODevice::isSequential +120 QIODevice::open +128 QIODevice::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QIODevice::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 __cxa_pure_virtual +224 QIODevice::readLineData +232 __cxa_pure_virtual + +Class QIODevice + size=16 align=8 + base size=16 base align=8 +QIODevice (0x7fafb70c8930) 0 + vptr=((& QIODevice::_ZTV9QIODevice) + 16u) + QObject (0x7fafb70c89a0) 0 + primary-for QIODevice (0x7fafb70c8930) + +Vtable for QDataStream +QDataStream::_ZTV11QDataStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QDataStream) +16 QDataStream::~QDataStream +24 QDataStream::~QDataStream + +Class QDataStream + size=40 align=8 + base size=40 base align=8 +QDataStream (0x7fafb713e2a0) 0 + vptr=((& QDataStream::_ZTV11QDataStream) + 16u) + +Class QHashData::Node + size=16 align=8 + base size=16 base align=8 +QHashData::Node (0x7fafb6fc5150) 0 + +Class QHashData + size=40 align=8 + base size=40 base align=8 +QHashData (0x7fafb6fc50e0) 0 + +Class QHashDummyValue + size=1 align=1 + base size=0 base align=1 +QHashDummyValue (0x7fafb6fd5ee0) 0 empty + +Class QMapData::Node + size=16 align=8 + base size=16 base align=8 +QMapData::Node (0x7fafb6ee6690) 0 + +Class QMapData + size=128 align=8 + base size=128 base align=8 +QMapData (0x7fafb6ee6620) 0 + +Vtable for QSystemLocale +QSystemLocale::_ZTV13QSystemLocale: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSystemLocale) +16 QSystemLocale::~QSystemLocale +24 QSystemLocale::~QSystemLocale +32 QSystemLocale::query +40 QSystemLocale::fallbackLocale + +Class QSystemLocale + size=8 align=8 + base size=8 base align=8 +QSystemLocale (0x7fafb6dfae00) 0 nearly-empty + vptr=((& QSystemLocale::_ZTV13QSystemLocale) + 16u) + +Class QLocale::Data + size=4 align=2 + base size=4 base align=2 +QLocale::Data (0x7fafb6e5b3f0) 0 + +Class QLocale + size=8 align=8 + base size=8 base align=8 +QLocale (0x7fafb6e1c0e0) 0 + +Class QTextCodec::ConverterState + size=32 align=8 + base size=32 base align=8 +QTextCodec::ConverterState (0x7fafb6ea8e70) 0 + +Vtable for QTextCodec +QTextCodec::_ZTV10QTextCodec: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextCodec) +16 __cxa_pure_virtual +24 QTextCodec::aliases +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QTextCodec::~QTextCodec +64 QTextCodec::~QTextCodec + +Class QTextCodec + size=8 align=8 + base size=8 base align=8 +QTextCodec (0x7fafb6e91a80) 0 nearly-empty + vptr=((& QTextCodec::_ZTV10QTextCodec) + 16u) + +Class QTextEncoder + size=40 align=8 + base size=40 base align=8 +QTextEncoder (0x7fafb6d143f0) 0 + +Class QTextDecoder + size=40 align=8 + base size=40 base align=8 +QTextDecoder (0x7fafb6d1d230) 0 + +Class _IO_marker + size=24 align=8 + base size=24 base align=8 +_IO_marker (0x7fafb6d252a0) 0 + +Class _IO_FILE + size=216 align=8 + base size=216 base align=8 +_IO_FILE (0x7fafb6d25310) 0 + +Vtable for QTextStream +QTextStream::_ZTV11QTextStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTextStream) +16 QTextStream::~QTextStream +24 QTextStream::~QTextStream + +Class QTextStream + size=16 align=8 + base size=16 base align=8 +QTextStream (0x7fafb6d253f0) 0 + vptr=((& QTextStream::_ZTV11QTextStream) + 16u) + +Class QTextStreamManipulator + size=40 align=8 + base size=38 base align=8 +QTextStreamManipulator (0x7fafb6bbdee0) 0 + +Vtable for QTextIStream +QTextIStream::_ZTV12QTextIStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextIStream) +16 QTextIStream::~QTextIStream +24 QTextIStream::~QTextIStream + +Class QTextIStream + size=16 align=8 + base size=16 base align=8 +QTextIStream (0x7fafb6bea1c0) 0 + vptr=((& QTextIStream::_ZTV12QTextIStream) + 16u) + QTextStream (0x7fafb6bea230) 0 + primary-for QTextIStream (0x7fafb6bea1c0) + +Vtable for QTextOStream +QTextOStream::_ZTV12QTextOStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextOStream) +16 QTextOStream::~QTextOStream +24 QTextOStream::~QTextOStream + +Class QTextOStream + size=16 align=8 + base size=16 base align=8 +QTextOStream (0x7fafb6bfd070) 0 + vptr=((& QTextOStream::_ZTV12QTextOStream) + 16u) + QTextStream (0x7fafb6bfd0e0) 0 + primary-for QTextOStream (0x7fafb6bfd070) + +Class wait + size=4 align=4 + base size=4 base align=4 +wait (0x7fafb6c0aee0) 0 + +Class timespec + size=16 align=8 + base size=16 base align=8 +timespec (0x7fafb6c17230) 0 + +Class timeval + size=16 align=8 + base size=16 base align=8 +timeval (0x7fafb6c172a0) 0 + +Class __pthread_internal_list + size=16 align=8 + base size=16 base align=8 +__pthread_internal_list (0x7fafb6c173f0) 0 + +Class random_data + size=48 align=8 + base size=48 base align=8 +random_data (0x7fafb6c179a0) 0 + +Class drand48_data + size=24 align=8 + base size=24 base align=8 +drand48_data (0x7fafb6c17a10) 0 + +Class QVectorData + size=16 align=4 + base size=16 base align=4 +QVectorData (0x7fafb6c17a80) 0 + +Class QDebug::Stream + size=40 align=8 + base size=34 base align=8 +QDebug::Stream (0x7fafb6b93230) 0 + +Class QDebug + size=8 align=8 + base size=8 base align=8 +QDebug (0x7fafb6b931c0) 0 + +Class QNoDebug + size=1 align=1 + base size=0 base align=1 +QNoDebug (0x7fafb6a31070) 0 empty + +Vtable for QFile +QFile::_ZTV5QFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QFile) +16 QFile::metaObject +24 QFile::qt_metacast +32 QFile::qt_metacall +40 QFile::~QFile +48 QFile::~QFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QFile::fileEngine + +Class QFile + size=16 align=8 + base size=16 base align=8 +QFile (0x7fafb6a42620) 0 + vptr=((& QFile::_ZTV5QFile) + 16u) + QIODevice (0x7fafb6a42690) 0 + primary-for QFile (0x7fafb6a42620) + QObject (0x7fafb6a42700) 0 + primary-for QIODevice (0x7fafb6a42690) + +Vtable for QTemporaryFile +QTemporaryFile::_ZTV14QTemporaryFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QTemporaryFile) +16 QTemporaryFile::metaObject +24 QTemporaryFile::qt_metacast +32 QTemporaryFile::qt_metacall +40 QTemporaryFile::~QTemporaryFile +48 QTemporaryFile::~QTemporaryFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QTemporaryFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QTemporaryFile::fileEngine + +Class QTemporaryFile + size=16 align=8 + base size=16 base align=8 +QTemporaryFile (0x7fafb6aad850) 0 + vptr=((& QTemporaryFile::_ZTV14QTemporaryFile) + 16u) + QFile (0x7fafb6aad8c0) 0 + primary-for QTemporaryFile (0x7fafb6aad850) + QIODevice (0x7fafb6aad930) 0 + primary-for QFile (0x7fafb6aad8c0) + QObject (0x7fafb6aad9a0) 0 + primary-for QIODevice (0x7fafb6aad930) + +Class QFileInfo + size=8 align=8 + base size=8 base align=8 +QFileInfo (0x7fafb68cef50) 0 + +Class QRegExp + size=8 align=8 + base size=8 base align=8 +QRegExp (0x7fafb692b770) 0 + +Class QStringMatcher + size=1048 align=8 + base size=1048 base align=8 +QStringMatcher (0x7fafb69795b0) 0 + +Class QStringList + size=8 align=8 + base size=8 base align=8 +QStringList (0x7fafb698a070) 0 + QList (0x7fafb698a0e0) 0 + +Class QDir + size=8 align=8 + base size=8 base align=8 +QDir (0x7fafb6818cb0) 0 + +Class QAbstractFileEngine::ExtensionOption + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionOption (0x7fafb68b3e70) 0 empty + +Class QAbstractFileEngine::ExtensionReturn + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionReturn (0x7fafb68b3ee0) 0 empty + +Class QAbstractFileEngine::MapExtensionOption + size=24 align=8 + base size=20 base align=8 +QAbstractFileEngine::MapExtensionOption (0x7fafb68b3f50) 0 + QAbstractFileEngine::ExtensionOption (0x7fafb66c6000) 0 empty + +Class QAbstractFileEngine::MapExtensionReturn + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::MapExtensionReturn (0x7fafb66c61c0) 0 + QAbstractFileEngine::ExtensionReturn (0x7fafb66c6230) 0 empty + +Class QAbstractFileEngine::UnMapExtensionOption + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::UnMapExtensionOption (0x7fafb66c62a0) 0 + QAbstractFileEngine::ExtensionOption (0x7fafb66c6310) 0 empty + +Vtable for QAbstractFileEngine +QAbstractFileEngine::_ZTV19QAbstractFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractFileEngine) +16 QAbstractFileEngine::~QAbstractFileEngine +24 QAbstractFileEngine::~QAbstractFileEngine +32 QAbstractFileEngine::open +40 QAbstractFileEngine::close +48 QAbstractFileEngine::flush +56 QAbstractFileEngine::size +64 QAbstractFileEngine::pos +72 QAbstractFileEngine::seek +80 QAbstractFileEngine::isSequential +88 QAbstractFileEngine::remove +96 QAbstractFileEngine::copy +104 QAbstractFileEngine::rename +112 QAbstractFileEngine::link +120 QAbstractFileEngine::mkdir +128 QAbstractFileEngine::rmdir +136 QAbstractFileEngine::setSize +144 QAbstractFileEngine::caseSensitive +152 QAbstractFileEngine::isRelativePath +160 QAbstractFileEngine::entryList +168 QAbstractFileEngine::fileFlags +176 QAbstractFileEngine::setPermissions +184 QAbstractFileEngine::fileName +192 QAbstractFileEngine::ownerId +200 QAbstractFileEngine::owner +208 QAbstractFileEngine::fileTime +216 QAbstractFileEngine::setFileName +224 QAbstractFileEngine::handle +232 QAbstractFileEngine::beginEntryList +240 QAbstractFileEngine::endEntryList +248 QAbstractFileEngine::read +256 QAbstractFileEngine::readLine +264 QAbstractFileEngine::write +272 QAbstractFileEngine::extension +280 QAbstractFileEngine::supportsExtension + +Class QAbstractFileEngine + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngine (0x7fafb68a3e00) 0 + vptr=((& QAbstractFileEngine::_ZTV19QAbstractFileEngine) + 16u) + +Vtable for QAbstractFileEngineHandler +QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QAbstractFileEngineHandler) +16 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +24 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +32 __cxa_pure_virtual + +Class QAbstractFileEngineHandler + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngineHandler (0x7fafb66f7000) 0 nearly-empty + vptr=((& QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler) + 16u) + +Vtable for QAbstractFileEngineIterator +QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QAbstractFileEngineIterator) +16 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +24 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QAbstractFileEngineIterator::currentFileInfo +64 QAbstractFileEngineIterator::entryInfo + +Class QAbstractFileEngineIterator + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngineIterator (0x7fafb66f71c0) 0 + vptr=((& QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator) + 16u) + +Vtable for QFSFileEngine +QFSFileEngine::_ZTV13QFSFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QFSFileEngine) +16 QFSFileEngine::~QFSFileEngine +24 QFSFileEngine::~QFSFileEngine +32 QFSFileEngine::open +40 QFSFileEngine::close +48 QFSFileEngine::flush +56 QFSFileEngine::size +64 QFSFileEngine::pos +72 QFSFileEngine::seek +80 QFSFileEngine::isSequential +88 QFSFileEngine::remove +96 QFSFileEngine::copy +104 QFSFileEngine::rename +112 QFSFileEngine::link +120 QFSFileEngine::mkdir +128 QFSFileEngine::rmdir +136 QFSFileEngine::setSize +144 QFSFileEngine::caseSensitive +152 QFSFileEngine::isRelativePath +160 QFSFileEngine::entryList +168 QFSFileEngine::fileFlags +176 QFSFileEngine::setPermissions +184 QFSFileEngine::fileName +192 QFSFileEngine::ownerId +200 QFSFileEngine::owner +208 QFSFileEngine::fileTime +216 QFSFileEngine::setFileName +224 QFSFileEngine::handle +232 QFSFileEngine::beginEntryList +240 QFSFileEngine::endEntryList +248 QFSFileEngine::read +256 QFSFileEngine::readLine +264 QFSFileEngine::write +272 QFSFileEngine::extension +280 QFSFileEngine::supportsExtension + +Class QFSFileEngine + size=16 align=8 + base size=16 base align=8 +QFSFileEngine (0x7fafb66f7a10) 0 + vptr=((& QFSFileEngine::_ZTV13QFSFileEngine) + 16u) + QAbstractFileEngine (0x7fafb66f7a80) 0 + primary-for QFSFileEngine (0x7fafb66f7a10) + +Vtable for QProcess +QProcess::_ZTV8QProcess: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QProcess) +16 QProcess::metaObject +24 QProcess::qt_metacast +32 QProcess::qt_metacall +40 QProcess::~QProcess +48 QProcess::~QProcess +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QProcess::isSequential +120 QIODevice::open +128 QProcess::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QProcess::atEnd +168 QIODevice::reset +176 QProcess::bytesAvailable +184 QProcess::bytesToWrite +192 QProcess::canReadLine +200 QProcess::waitForReadyRead +208 QProcess::waitForBytesWritten +216 QProcess::readData +224 QIODevice::readLineData +232 QProcess::writeData +240 QProcess::setupChildProcess + +Class QProcess + size=16 align=8 + base size=16 base align=8 +QProcess (0x7fafb670dd20) 0 + vptr=((& QProcess::_ZTV8QProcess) + 16u) + QIODevice (0x7fafb670dd90) 0 + primary-for QProcess (0x7fafb670dd20) + QObject (0x7fafb670de00) 0 + primary-for QIODevice (0x7fafb670dd90) + +Class QResource + size=8 align=8 + base size=8 base align=8 +QResource (0x7fafb674b230) 0 + +Vtable for QDirIterator +QDirIterator::_ZTV12QDirIterator: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QDirIterator) +16 QDirIterator::~QDirIterator +24 QDirIterator::~QDirIterator + +Class QDirIterator + size=16 align=8 + base size=16 base align=8 +QDirIterator (0x7fafb674bcb0) 0 + vptr=((& QDirIterator::_ZTV12QDirIterator) + 16u) + +Vtable for QBuffer +QBuffer::_ZTV7QBuffer: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QBuffer) +16 QBuffer::metaObject +24 QBuffer::qt_metacast +32 QBuffer::qt_metacall +40 QBuffer::~QBuffer +48 QBuffer::~QBuffer +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QBuffer::connectNotify +104 QBuffer::disconnectNotify +112 QIODevice::isSequential +120 QBuffer::open +128 QBuffer::close +136 QBuffer::pos +144 QBuffer::size +152 QBuffer::seek +160 QBuffer::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QBuffer::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QBuffer::readData +224 QIODevice::readLineData +232 QBuffer::writeData + +Class QBuffer + size=16 align=8 + base size=16 base align=8 +QBuffer (0x7fafb677ca80) 0 + vptr=((& QBuffer::_ZTV7QBuffer) + 16u) + QIODevice (0x7fafb677caf0) 0 + primary-for QBuffer (0x7fafb677ca80) + QObject (0x7fafb677cb60) 0 + primary-for QIODevice (0x7fafb677caf0) + +Vtable for QFileSystemWatcher +QFileSystemWatcher::_ZTV18QFileSystemWatcher: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFileSystemWatcher) +16 QFileSystemWatcher::metaObject +24 QFileSystemWatcher::qt_metacast +32 QFileSystemWatcher::qt_metacall +40 QFileSystemWatcher::~QFileSystemWatcher +48 QFileSystemWatcher::~QFileSystemWatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QFileSystemWatcher + size=16 align=8 + base size=16 base align=8 +QFileSystemWatcher (0x7fafb67a2690) 0 + vptr=((& QFileSystemWatcher::_ZTV18QFileSystemWatcher) + 16u) + QObject (0x7fafb67a2700) 0 + primary-for QFileSystemWatcher (0x7fafb67a2690) + +Class QUrl + size=8 align=8 + base size=8 base align=8 +QUrl (0x7fafb67b5bd0) 0 + +Class QMetaType + size=1 align=1 + base size=0 base align=1 +QMetaType (0x7fafb66213f0) 0 empty + +Class QVariant::PrivateShared + size=16 align=8 + base size=12 base align=8 +QVariant::PrivateShared (0x7fafb64f4930) 0 + +Class QVariant::Private::Data + size=8 align=8 + base size=8 base align=8 +QVariant::Private::Data (0x7fafb64f4c40) 0 + +Class QVariant::Private + size=16 align=8 + base size=12 base align=8 +QVariant::Private (0x7fafb64f4a10) 0 + +Class QVariant::Handler + size=72 align=8 + base size=72 base align=8 +QVariant::Handler (0x7fafb6502930) 0 + +Class QVariant + size=16 align=8 + base size=16 base align=8 +QVariant (0x7fafb64c2af0) 0 + +Class QVariantComparisonHelper + size=8 align=8 + base size=8 base align=8 +QVariantComparisonHelper (0x7fafb63a8cb0) 0 + +Vtable for QSettings +QSettings::_ZTV9QSettings: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QSettings) +16 QSettings::metaObject +24 QSettings::qt_metacast +32 QSettings::qt_metacall +40 QSettings::~QSettings +48 QSettings::~QSettings +56 QSettings::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSettings + size=16 align=8 + base size=16 base align=8 +QSettings (0x7fafb63cdcb0) 0 + vptr=((& QSettings::_ZTV9QSettings) + 16u) + QObject (0x7fafb63cdd20) 0 + primary-for QSettings (0x7fafb63cdcb0) + +Class QXmlStreamStringRef + size=16 align=8 + base size=16 base align=8 +QXmlStreamStringRef (0x7fafb644d070) 0 + +Class QXmlStreamAttribute + size=80 align=8 + base size=73 base align=8 +QXmlStreamAttribute (0x7fafb646b850) 0 + +Class QXmlStreamAttributes + size=8 align=8 + base size=8 base align=8 +QXmlStreamAttributes (0x7fafb6295380) 0 + QVector (0x7fafb62953f0) 0 + +Class QXmlStreamNamespaceDeclaration + size=40 align=8 + base size=40 base align=8 +QXmlStreamNamespaceDeclaration (0x7fafb6295850) 0 + +Class QXmlStreamNotationDeclaration + size=56 align=8 + base size=56 base align=8 +QXmlStreamNotationDeclaration (0x7fafb62d51c0) 0 + +Class QXmlStreamEntityDeclaration + size=88 align=8 + base size=88 base align=8 +QXmlStreamEntityDeclaration (0x7fafb62f4070) 0 + +Vtable for QXmlStreamEntityResolver +QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QXmlStreamEntityResolver) +16 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +24 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +32 QXmlStreamEntityResolver::resolveEntity +40 QXmlStreamEntityResolver::resolveUndeclaredEntity + +Class QXmlStreamEntityResolver + size=8 align=8 + base size=8 base align=8 +QXmlStreamEntityResolver (0x7fafb63109a0) 0 nearly-empty + vptr=((& QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver) + 16u) + +Class QXmlStreamReader + size=8 align=8 + base size=8 base align=8 +QXmlStreamReader (0x7fafb6310b60) 0 + +Class QXmlStreamWriter + size=8 align=8 + base size=8 base align=8 +QXmlStreamWriter (0x7fafb634ea10) 0 + +Class QPoint + size=8 align=4 + base size=8 base align=4 +QPoint (0x7fafb638b150) 0 + +Class QPointF + size=16 align=8 + base size=16 base align=8 +QPointF (0x7fafb61c2d90) 0 + +Class QLine + size=16 align=4 + base size=16 base align=4 +QLine (0x7fafb6200bd0) 0 + +Class QLineF + size=32 align=8 + base size=32 base align=8 +QLineF (0x7fafb623aa80) 0 + +Class QSize + size=8 align=4 + base size=8 base align=4 +QSize (0x7fafb6096540) 0 + +Class QSizeF + size=16 align=8 + base size=16 base align=8 +QSizeF (0x7fafb60e2380) 0 + +Class QRect + size=16 align=4 + base size=16 base align=4 +QRect (0x7fafb612e9a0) 0 + +Class QRectF + size=32 align=8 + base size=32 base align=8 +QRectF (0x7fafb5fde380) 0 + +Class QSharedData + size=4 align=4 + base size=4 base align=4 +QSharedData (0x7fafb5e89150) 0 + +Vtable for QtSharedPointer::ExternalRefCountData +QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN15QtSharedPointer20ExternalRefCountDataE) +16 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +24 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +32 QtSharedPointer::ExternalRefCountData::destroy + +Class QtSharedPointer::ExternalRefCountData + size=16 align=8 + base size=16 base align=8 +QtSharedPointer::ExternalRefCountData (0x7fafb5eb9af0) 0 + vptr=((& QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE) + 16u) + +Class QLinkedListData + size=32 align=8 + base size=32 base align=8 +QLinkedListData (0x7fafb5f3fc40) 0 + +Class QBitArray + size=8 align=8 + base size=8 base align=8 +QBitArray (0x7fafb5e0cb60) 0 + +Class QBitRef + size=16 align=8 + base size=12 base align=8 +QBitRef (0x7fafb5e80930) 0 + +Class QByteArrayMatcher + size=1040 align=8 + base size=1040 base align=8 +QByteArrayMatcher (0x7fafb5c99310) 0 + +Class QCryptographicHash + size=8 align=8 + base size=8 base align=8 +QCryptographicHash (0x7fafb5caba10) 0 + +Class QTextBoundaryFinder + size=48 align=8 + base size=48 base align=8 +QTextBoundaryFinder (0x7fafb5cd9460) 0 + +Class QDate + size=4 align=4 + base size=4 base align=4 +QDate (0x7fafb5cee7e0) 0 + +Class QTime + size=4 align=4 + base size=4 base align=4 +QTime (0x7fafb5d17770) 0 + +Class QDateTime + size=8 align=8 + base size=8 base align=8 +QDateTime (0x7fafb5d35d20) 0 + +Vtable for QTimeLine +QTimeLine::_ZTV9QTimeLine: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTimeLine) +16 QTimeLine::metaObject +24 QTimeLine::qt_metacast +32 QTimeLine::qt_metacall +40 QTimeLine::~QTimeLine +48 QTimeLine::~QTimeLine +56 QObject::event +64 QObject::eventFilter +72 QTimeLine::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTimeLine::valueForTime + +Class QTimeLine + size=16 align=8 + base size=16 base align=8 +QTimeLine (0x7fafb5d691c0) 0 + vptr=((& QTimeLine::_ZTV9QTimeLine) + 16u) + QObject (0x7fafb5d69230) 0 + primary-for QTimeLine (0x7fafb5d691c0) + +Vtable for QRunnable +QRunnable::_ZTV9QRunnable: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QRunnable) +16 __cxa_pure_virtual +24 QRunnable::~QRunnable +32 QRunnable::~QRunnable + +Class QRunnable + size=16 align=8 + base size=12 base align=8 +QRunnable (0x7fafb5b90070) 0 + vptr=((& QRunnable::_ZTV9QRunnable) + 16u) + +Class QMutex + size=8 align=8 + base size=8 base align=8 +QMutex (0x7fafb5b9e700) 0 + +Class QMutexLocker + size=8 align=8 + base size=8 base align=8 +QMutexLocker (0x7fafb5bab2a0) 0 + +Vtable for QtConcurrent::Exception +QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent9ExceptionE) +16 QtConcurrent::Exception::~Exception +24 QtConcurrent::Exception::~Exception +32 std::exception::what +40 QtConcurrent::Exception::raise +48 QtConcurrent::Exception::clone + +Class QtConcurrent::Exception + size=8 align=8 + base size=8 base align=8 +QtConcurrent::Exception (0x7fafb5bc25b0) 0 nearly-empty + vptr=((& QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE) + 16u) + std::exception (0x7fafb5bc2620) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7fafb5bc25b0) + +Vtable for QtConcurrent::UnhandledException +QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent18UnhandledExceptionE) +16 QtConcurrent::UnhandledException::~UnhandledException +24 QtConcurrent::UnhandledException::~UnhandledException +32 std::exception::what +40 QtConcurrent::UnhandledException::raise +48 QtConcurrent::UnhandledException::clone + +Class QtConcurrent::UnhandledException + size=8 align=8 + base size=8 base align=8 +QtConcurrent::UnhandledException (0x7fafb5bc2850) 0 nearly-empty + vptr=((& QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE) + 16u) + QtConcurrent::Exception (0x7fafb5bc28c0) 0 nearly-empty + primary-for QtConcurrent::UnhandledException (0x7fafb5bc2850) + std::exception (0x7fafb5bc2930) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7fafb5bc28c0) + +Class QtConcurrent::internal::ExceptionHolder + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionHolder (0x7fafb5bc2b60) 0 + +Class QtConcurrent::internal::ExceptionStore + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionStore (0x7fafb5bc2ee0) 0 + +Class QtConcurrent::ResultItem + size=16 align=8 + base size=16 base align=8 +QtConcurrent::ResultItem (0x7fafb5bc2f50) 0 + +Class QtConcurrent::ResultIteratorBase + size=16 align=8 + base size=12 base align=8 +QtConcurrent::ResultIteratorBase (0x7fafb5bd8e70) 0 + +Vtable for QtConcurrent::ResultStoreBase +QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent15ResultStoreBaseE) +16 QtConcurrent::ResultStoreBase::~ResultStoreBase +24 QtConcurrent::ResultStoreBase::~ResultStoreBase + +Class QtConcurrent::ResultStoreBase + size=48 align=8 + base size=44 base align=8 +QtConcurrent::ResultStoreBase (0x7fafb5bdda10) 0 + vptr=((& QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE) + 16u) + +Vtable for QFutureInterfaceBase +QFutureInterfaceBase::_ZTV20QFutureInterfaceBase: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QFutureInterfaceBase) +16 QFutureInterfaceBase::~QFutureInterfaceBase +24 QFutureInterfaceBase::~QFutureInterfaceBase + +Class QFutureInterfaceBase + size=16 align=8 + base size=16 base align=8 +QFutureInterfaceBase (0x7fafb5c1ee70) 0 + vptr=((& QFutureInterfaceBase::_ZTV20QFutureInterfaceBase) + 16u) + +Vtable for QThread +QThread::_ZTV7QThread: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QThread) +16 QThread::metaObject +24 QThread::qt_metacast +32 QThread::qt_metacall +40 QThread::~QThread +48 QThread::~QThread +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QThread::run + +Class QThread + size=16 align=8 + base size=16 base align=8 +QThread (0x7fafb5b01e00) 0 + vptr=((& QThread::_ZTV7QThread) + 16u) + QObject (0x7fafb5b01e70) 0 + primary-for QThread (0x7fafb5b01e00) + +Vtable for QThreadPool +QThreadPool::_ZTV11QThreadPool: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QThreadPool) +16 QThreadPool::metaObject +24 QThreadPool::qt_metacast +32 QThreadPool::qt_metacall +40 QThreadPool::~QThreadPool +48 QThreadPool::~QThreadPool +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QThreadPool + size=16 align=8 + base size=16 base align=8 +QThreadPool (0x7fafb5b34cb0) 0 + vptr=((& QThreadPool::_ZTV11QThreadPool) + 16u) + QObject (0x7fafb5b34d20) 0 + primary-for QThreadPool (0x7fafb5b34cb0) + +Class QWaitCondition + size=8 align=8 + base size=8 base align=8 +QWaitCondition (0x7fafb5b4d540) 0 + +Class QtConcurrent::ThreadEngineSemaphore + size=24 align=8 + base size=24 base align=8 +QtConcurrent::ThreadEngineSemaphore (0x7fafb5b4da80) 0 + +Vtable for QtConcurrent::ThreadEngineBase +QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent16ThreadEngineBaseE) +16 QtConcurrent::ThreadEngineBase::run +24 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +32 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +40 QtConcurrent::ThreadEngineBase::start +48 QtConcurrent::ThreadEngineBase::finish +56 QtConcurrent::ThreadEngineBase::threadFunction +64 QtConcurrent::ThreadEngineBase::shouldStartThread +72 QtConcurrent::ThreadEngineBase::shouldThrottleThread +80 __cxa_pure_virtual + +Class QtConcurrent::ThreadEngineBase + size=64 align=8 + base size=64 base align=8 +QtConcurrent::ThreadEngineBase (0x7fafb5b6e460) 0 + vptr=((& QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE) + 16u) + QRunnable (0x7fafb5b6e4d0) 0 + primary-for QtConcurrent::ThreadEngineBase (0x7fafb5b6e460) + +VTT for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTTN12QtConcurrent12ThreadEngineIvEE: 2u entries +0 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 24u) +8 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 136u) + +Class std::input_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::input_iterator_tag (0x7fafb59b0850) 0 empty + +Class std::output_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::output_iterator_tag (0x7fafb59b08c0) 0 empty + +Class std::forward_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::forward_iterator_tag (0x7fafb59b0930) 0 empty + std::input_iterator_tag (0x7fafb59b09a0) 0 empty + +Class std::bidirectional_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::bidirectional_iterator_tag (0x7fafb59b0a10) 0 empty + std::forward_iterator_tag (0x7fafb59b0a80) 0 empty + std::input_iterator_tag (0x7fafb59b0af0) 0 empty + +Class std::random_access_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::random_access_iterator_tag (0x7fafb59b0b60) 0 empty + std::bidirectional_iterator_tag (0x7fafb59b0bd0) 0 empty + std::forward_iterator_tag (0x7fafb59b0c40) 0 empty + std::input_iterator_tag (0x7fafb59b0cb0) 0 empty + +Class std::__true_type + size=1 align=1 + base size=0 base align=1 +std::__true_type (0x7fafb59c02a0) 0 empty + +Class std::__false_type + size=1 align=1 + base size=0 base align=1 +std::__false_type (0x7fafb59c0310) 0 empty + +Class lconv + size=96 align=8 + base size=96 base align=8 +lconv (0x7fafb579c620) 0 + +Class sched_param + size=4 align=4 + base size=4 base align=4 +sched_param (0x7fafb579ca80) 0 + +Class __sched_param + size=4 align=4 + base size=4 base align=4 +__sched_param (0x7fafb579caf0) 0 + +Class tm + size=56 align=8 + base size=56 base align=8 +tm (0x7fafb579cbd0) 0 + +Class itimerspec + size=32 align=8 + base size=32 base align=8 +itimerspec (0x7fafb579ccb0) 0 + +Class _pthread_cleanup_buffer + size=32 align=8 + base size=32 base align=8 +_pthread_cleanup_buffer (0x7fafb579cd20) 0 + +Class __pthread_cleanup_frame + size=24 align=8 + base size=24 base align=8 +__pthread_cleanup_frame (0x7fafb579ce70) 0 + +Class __pthread_cleanup_class + size=24 align=8 + base size=24 base align=8 +__pthread_cleanup_class (0x7fafb579cee0) 0 + +Vtable for __cxxabiv1::__forced_unwind +__cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN10__cxxabiv115__forced_unwindE) +16 __cxxabiv1::__forced_unwind::~__forced_unwind +24 __cxxabiv1::__forced_unwind::~__forced_unwind +32 __cxa_pure_virtual + +Class __cxxabiv1::__forced_unwind + size=8 align=8 + base size=8 base align=8 +__cxxabiv1::__forced_unwind (0x7fafb56b1a80) 0 nearly-empty + vptr=((& __cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE) + 16u) + +Class std::locale + size=8 align=8 + base size=8 base align=8 +std::locale (0x7fafb55635b0) 0 + +Vtable for std::locale::facet +std::locale::facet::_ZTVNSt6locale5facetE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTINSt6locale5facetE) +16 std::locale::facet::~facet +24 std::locale::facet::~facet + +Class std::locale::facet + size=16 align=8 + base size=12 base align=8 +std::locale::facet (0x7fafb5406cb0) 0 + vptr=((& std::locale::facet::_ZTVNSt6locale5facetE) + 16u) + +Class std::locale::id + size=8 align=8 + base size=8 base align=8 +std::locale::id (0x7fafb541b2a0) 0 + +Class std::locale::_Impl + size=40 align=8 + base size=40 base align=8 +std::locale::_Impl (0x7fafb541b8c0) 0 + +Vtable for std::ios_base::failure +std::ios_base::failure::_ZTVNSt8ios_base7failureE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTINSt8ios_base7failureE) +16 std::ios_base::failure::~failure +24 std::ios_base::failure::~failure +32 std::ios_base::failure::what + +Class std::ios_base::failure + size=16 align=8 + base size=16 base align=8 +std::ios_base::failure (0x7fafb52a8070) 0 + vptr=((& std::ios_base::failure::_ZTVNSt8ios_base7failureE) + 16u) + std::exception (0x7fafb52a80e0) 0 nearly-empty + primary-for std::ios_base::failure (0x7fafb52a8070) + +Class std::ios_base::_Callback_list + size=24 align=8 + base size=24 base align=8 +std::ios_base::_Callback_list (0x7fafb52b6310) 0 + +Class std::ios_base::_Words + size=16 align=8 + base size=16 base align=8 +std::ios_base::_Words (0x7fafb52b6d90) 0 + +Class std::ios_base::Init + size=1 align=1 + base size=0 base align=1 +std::ios_base::Init (0x7fafb52be4d0) 0 empty + +Vtable for std::ios_base +std::ios_base::_ZTVSt8ios_base: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt8ios_base) +16 std::ios_base::~ios_base +24 std::ios_base::~ios_base + +Class std::ios_base + size=216 align=8 + base size=216 base align=8 +std::ios_base (0x7fafb52a8000) 0 + vptr=((& std::ios_base::_ZTVSt8ios_base) + 16u) + +Class std::ctype_base + size=1 align=1 + base size=0 base align=1 +std::ctype_base (0x7fafb5335930) 0 empty + +Class std::__num_base + size=1 align=1 + base size=0 base align=1 +std::__num_base (0x7fafb52591c0) 0 empty + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSo: 2u entries +0 ((& std::basic_ostream >::_ZTVSo) + 24u) +8 ((& std::basic_ostream >::_ZTVSo) + 64u) + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSt13basic_ostreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 24u) +8 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 64u) + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSi: 2u entries +0 ((& std::basic_istream >::_ZTVSi) + 24u) +8 ((& std::basic_istream >::_ZTVSi) + 64u) + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSt13basic_istreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 24u) +8 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 64u) + +Construction vtable for std::basic_istream > (0x7fafb4d86310 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd0_Si: 10u entries +0 24u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISi) +24 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +32 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +40 -24u +48 (int (*)(...))-0x00000000000000018 +56 (int (*)(...))(& _ZTISi) +64 std::basic_istream >::_ZTv0_n24_NSiD1Ev +72 std::basic_istream >::_ZTv0_n24_NSiD0Ev + +Construction vtable for std::basic_ostream > (0x7fafb4d86460 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd16_So: 10u entries +0 8u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISo) +24 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +32 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +40 -8u +48 (int (*)(...))-0x00000000000000008 +56 (int (*)(...))(& _ZTISo) +64 std::basic_ostream >::_ZTv0_n24_NSoD1Ev +72 std::basic_ostream >::_ZTv0_n24_NSoD0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSd: 7u entries +0 ((& std::basic_iostream >::_ZTVSd) + 24u) +8 ((& std::basic_iostream >::_ZTCSd0_Si) + 24u) +16 ((& std::basic_iostream >::_ZTCSd0_Si) + 64u) +24 ((& std::basic_iostream >::_ZTCSd16_So) + 24u) +32 ((& std::basic_iostream >::_ZTCSd16_So) + 64u) +40 ((& std::basic_iostream >::_ZTVSd) + 104u) +48 ((& std::basic_iostream >::_ZTVSd) + 64u) + +Construction vtable for std::basic_istream > (0x7fafb4d86620 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E: 10u entries +0 24u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +24 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +32 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +40 -24u +48 (int (*)(...))-0x00000000000000018 +56 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +64 std::basic_istream >::_ZTv0_n24_NSt13basic_istreamIwSt11char_traitsIwEED1Ev +72 std::basic_istream >::_ZTv0_n24_NSt13basic_istreamIwSt11char_traitsIwEED0Ev + +Construction vtable for std::basic_ostream > (0x7fafb4d86770 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE16_St13basic_ostreamIwS1_E: 10u entries +0 8u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +24 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +32 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +40 -8u +48 (int (*)(...))-0x00000000000000008 +56 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +64 std::basic_ostream >::_ZTv0_n24_NSt13basic_ostreamIwSt11char_traitsIwEED1Ev +72 std::basic_ostream >::_ZTv0_n24_NSt13basic_ostreamIwSt11char_traitsIwEED0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSt14basic_iostreamIwSt11char_traitsIwEE: 7u entries +0 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 24u) +8 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 24u) +16 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 64u) +24 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE16_St13basic_ostreamIwS1_E) + 24u) +32 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE16_St13basic_ostreamIwS1_E) + 64u) +40 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 104u) +48 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 64u) + +Class QtConcurrent::BlockSizeManager + size=96 align=8 + base size=92 base align=8 +QtConcurrent::BlockSizeManager (0x7fafb4df1230) 0 + +Vtable for QFutureWatcherBase +QFutureWatcherBase::_ZTV18QFutureWatcherBase: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFutureWatcherBase) +16 QFutureWatcherBase::metaObject +24 QFutureWatcherBase::qt_metacast +32 QFutureWatcherBase::qt_metacall +40 QFutureWatcherBase::~QFutureWatcherBase +48 QFutureWatcherBase::~QFutureWatcherBase +56 QFutureWatcherBase::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QFutureWatcherBase::connectNotify +104 QFutureWatcherBase::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QFutureWatcherBase + size=16 align=8 + base size=16 base align=8 +QFutureWatcherBase (0x7fafb49babd0) 0 + vptr=((& QFutureWatcherBase::_ZTV18QFutureWatcherBase) + 16u) + QObject (0x7fafb49bac40) 0 + primary-for QFutureWatcherBase (0x7fafb49babd0) + +Vtable for QFactoryInterface +QFactoryInterface::_ZTV17QFactoryInterface: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QFactoryInterface) +16 QFactoryInterface::~QFactoryInterface +24 QFactoryInterface::~QFactoryInterface +32 __cxa_pure_virtual + +Class QFactoryInterface + size=8 align=8 + base size=8 base align=8 +QFactoryInterface (0x7fafb48d3e00) 0 nearly-empty + vptr=((& QFactoryInterface::_ZTV17QFactoryInterface) + 16u) + +Vtable for QTextCodecFactoryInterface +QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QTextCodecFactoryInterface) +16 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +24 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QTextCodecFactoryInterface + size=8 align=8 + base size=8 base align=8 +QTextCodecFactoryInterface (0x7fafb48f6ee0) 0 nearly-empty + vptr=((& QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface) + 16u) + QFactoryInterface (0x7fafb48f6f50) 0 nearly-empty + primary-for QTextCodecFactoryInterface (0x7fafb48f6ee0) + +Vtable for QTextCodecPlugin +QTextCodecPlugin::_ZTV16QTextCodecPlugin: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QTextCodecPlugin) +16 QTextCodecPlugin::metaObject +24 QTextCodecPlugin::qt_metacast +32 QTextCodecPlugin::qt_metacall +40 QTextCodecPlugin::~QTextCodecPlugin +48 QTextCodecPlugin::~QTextCodecPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 QTextCodecPlugin::keys +160 QTextCodecPlugin::create +168 (int (*)(...))-0x00000000000000010 +176 (int (*)(...))(& _ZTI16QTextCodecPlugin) +184 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD1Ev +192 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD0Ev +200 QTextCodecPlugin::_ZThn16_NK16QTextCodecPlugin4keysEv +208 QTextCodecPlugin::_ZThn16_N16QTextCodecPlugin6createERK7QString + +Class QTextCodecPlugin + size=24 align=8 + base size=24 base align=8 +QTextCodecPlugin (0x7fafb48f9e00) 0 + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 16u) + QObject (0x7fafb49027e0) 0 + primary-for QTextCodecPlugin (0x7fafb48f9e00) + QTextCodecFactoryInterface (0x7fafb4902850) 16 nearly-empty + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 184u) + QFactoryInterface (0x7fafb49028c0) 16 nearly-empty + primary-for QTextCodecFactoryInterface (0x7fafb4902850) + +Class QLibraryInfo + size=1 align=1 + base size=0 base align=1 +QLibraryInfo (0x7fafb4917700) 0 empty + +Vtable for QTranslator +QTranslator::_ZTV11QTranslator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTranslator) +16 QTranslator::metaObject +24 QTranslator::qt_metacast +32 QTranslator::qt_metacall +40 QTranslator::~QTranslator +48 QTranslator::~QTranslator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTranslator::translate +120 QTranslator::isEmpty + +Class QTranslator + size=16 align=8 + base size=16 base align=8 +QTranslator (0x7fafb495b000) 0 + vptr=((& QTranslator::_ZTV11QTranslator) + 16u) + QObject (0x7fafb495b070) 0 + primary-for QTranslator (0x7fafb495b000) + +Class __exception + size=40 align=8 + base size=40 base align=8 +__exception (0x7fafb496cf50) 0 + +Vtable for QMimeData +QMimeData::_ZTV9QMimeData: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QMimeData) +16 QMimeData::metaObject +24 QMimeData::qt_metacast +32 QMimeData::qt_metacall +40 QMimeData::~QMimeData +48 QMimeData::~QMimeData +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMimeData::hasFormat +120 QMimeData::formats +128 QMimeData::retrieveData + +Class QMimeData + size=16 align=8 + base size=16 base align=8 +QMimeData (0x7fafb47d8150) 0 + vptr=((& QMimeData::_ZTV9QMimeData) + 16u) + QObject (0x7fafb47d81c0) 0 + primary-for QMimeData (0x7fafb47d8150) + +Vtable for QEventLoop +QEventLoop::_ZTV10QEventLoop: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QEventLoop) +16 QEventLoop::metaObject +24 QEventLoop::qt_metacast +32 QEventLoop::qt_metacall +40 QEventLoop::~QEventLoop +48 QEventLoop::~QEventLoop +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QEventLoop + size=16 align=8 + base size=16 base align=8 +QEventLoop (0x7fafb47f19a0) 0 + vptr=((& QEventLoop::_ZTV10QEventLoop) + 16u) + QObject (0x7fafb47f1a10) 0 + primary-for QEventLoop (0x7fafb47f19a0) + +Vtable for QEvent +QEvent::_ZTV6QEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QEvent) +16 QEvent::~QEvent +24 QEvent::~QEvent + +Class QEvent + size=24 align=8 + base size=20 base align=8 +QEvent (0x7fafb4832310) 0 + vptr=((& QEvent::_ZTV6QEvent) + 16u) + +Vtable for QTimerEvent +QTimerEvent::_ZTV11QTimerEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTimerEvent) +16 QTimerEvent::~QTimerEvent +24 QTimerEvent::~QTimerEvent + +Class QTimerEvent + size=24 align=8 + base size=24 base align=8 +QTimerEvent (0x7fafb484cee0) 0 + vptr=((& QTimerEvent::_ZTV11QTimerEvent) + 16u) + QEvent (0x7fafb484cf50) 0 + primary-for QTimerEvent (0x7fafb484cee0) + +Vtable for QChildEvent +QChildEvent::_ZTV11QChildEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QChildEvent) +16 QChildEvent::~QChildEvent +24 QChildEvent::~QChildEvent + +Class QChildEvent + size=32 align=8 + base size=32 base align=8 +QChildEvent (0x7fafb484d380) 0 + vptr=((& QChildEvent::_ZTV11QChildEvent) + 16u) + QEvent (0x7fafb484d3f0) 0 + primary-for QChildEvent (0x7fafb484d380) + +Vtable for QCustomEvent +QCustomEvent::_ZTV12QCustomEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QCustomEvent) +16 QCustomEvent::~QCustomEvent +24 QCustomEvent::~QCustomEvent + +Class QCustomEvent + size=24 align=8 + base size=20 base align=8 +QCustomEvent (0x7fafb4860620) 0 + vptr=((& QCustomEvent::_ZTV12QCustomEvent) + 16u) + QEvent (0x7fafb4860690) 0 + primary-for QCustomEvent (0x7fafb4860620) + +Vtable for QDynamicPropertyChangeEvent +QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QDynamicPropertyChangeEvent) +16 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent +24 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent + +Class QDynamicPropertyChangeEvent + size=32 align=8 + base size=32 base align=8 +QDynamicPropertyChangeEvent (0x7fafb4860e00) 0 + vptr=((& QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent) + 16u) + QEvent (0x7fafb4860e70) 0 + primary-for QDynamicPropertyChangeEvent (0x7fafb4860e00) + +Vtable for QCoreApplication +QCoreApplication::_ZTV16QCoreApplication: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QCoreApplication) +16 QCoreApplication::metaObject +24 QCoreApplication::qt_metacast +32 QCoreApplication::qt_metacall +40 QCoreApplication::~QCoreApplication +48 QCoreApplication::~QCoreApplication +56 QCoreApplication::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCoreApplication::notify +120 QCoreApplication::compressEvent + +Class QCoreApplication + size=16 align=8 + base size=16 base align=8 +QCoreApplication (0x7fafb4870230) 0 + vptr=((& QCoreApplication::_ZTV16QCoreApplication) + 16u) + QObject (0x7fafb48702a0) 0 + primary-for QCoreApplication (0x7fafb4870230) + +Vtable for QSharedMemory +QSharedMemory::_ZTV13QSharedMemory: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSharedMemory) +16 QSharedMemory::metaObject +24 QSharedMemory::qt_metacast +32 QSharedMemory::qt_metacall +40 QSharedMemory::~QSharedMemory +48 QSharedMemory::~QSharedMemory +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSharedMemory + size=16 align=8 + base size=16 base align=8 +QSharedMemory (0x7fafb469aa80) 0 + vptr=((& QSharedMemory::_ZTV13QSharedMemory) + 16u) + QObject (0x7fafb469aaf0) 0 + primary-for QSharedMemory (0x7fafb469aa80) + +Class QModelIndex + size=24 align=8 + base size=24 base align=8 +QModelIndex (0x7fafb46bb850) 0 + +Class QPersistentModelIndex + size=8 align=8 + base size=8 base align=8 +QPersistentModelIndex (0x7fafb46e3310) 0 + +Vtable for QAbstractItemModel +QAbstractItemModel::_ZTV18QAbstractItemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractItemModel) +16 QAbstractItemModel::metaObject +24 QAbstractItemModel::qt_metacast +32 QAbstractItemModel::qt_metacall +40 QAbstractItemModel::~QAbstractItemModel +48 QAbstractItemModel::~QAbstractItemModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractItemModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractItemModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractItemModel + size=16 align=8 + base size=16 base align=8 +QAbstractItemModel (0x7fafb46f15b0) 0 + vptr=((& QAbstractItemModel::_ZTV18QAbstractItemModel) + 16u) + QObject (0x7fafb46f1620) 0 + primary-for QAbstractItemModel (0x7fafb46f15b0) + +Vtable for QAbstractTableModel +QAbstractTableModel::_ZTV19QAbstractTableModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractTableModel) +16 QAbstractTableModel::metaObject +24 QAbstractTableModel::qt_metacast +32 QAbstractTableModel::qt_metacall +40 QAbstractTableModel::~QAbstractTableModel +48 QAbstractTableModel::~QAbstractTableModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractTableModel::index +120 QAbstractTableModel::parent +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractTableModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractTableModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractTableModel + size=16 align=8 + base size=16 base align=8 +QAbstractTableModel (0x7fafb4742930) 0 + vptr=((& QAbstractTableModel::_ZTV19QAbstractTableModel) + 16u) + QAbstractItemModel (0x7fafb47429a0) 0 + primary-for QAbstractTableModel (0x7fafb4742930) + QObject (0x7fafb4742a10) 0 + primary-for QAbstractItemModel (0x7fafb47429a0) + +Vtable for QAbstractListModel +QAbstractListModel::_ZTV18QAbstractListModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractListModel) +16 QAbstractListModel::metaObject +24 QAbstractListModel::qt_metacast +32 QAbstractListModel::qt_metacall +40 QAbstractListModel::~QAbstractListModel +48 QAbstractListModel::~QAbstractListModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractListModel::index +120 QAbstractListModel::parent +128 __cxa_pure_virtual +136 QAbstractListModel::columnCount +144 QAbstractListModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractListModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractListModel + size=16 align=8 + base size=16 base align=8 +QAbstractListModel (0x7fafb474fee0) 0 + vptr=((& QAbstractListModel::_ZTV18QAbstractListModel) + 16u) + QAbstractItemModel (0x7fafb474ff50) 0 + primary-for QAbstractListModel (0x7fafb474fee0) + QObject (0x7fafb474f230) 0 + primary-for QAbstractItemModel (0x7fafb474ff50) + +Vtable for QSignalMapper +QSignalMapper::_ZTV13QSignalMapper: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSignalMapper) +16 QSignalMapper::metaObject +24 QSignalMapper::qt_metacast +32 QSignalMapper::qt_metacall +40 QSignalMapper::~QSignalMapper +48 QSignalMapper::~QSignalMapper +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSignalMapper + size=16 align=8 + base size=16 base align=8 +QSignalMapper (0x7fafb4591000) 0 + vptr=((& QSignalMapper::_ZTV13QSignalMapper) + 16u) + QObject (0x7fafb4591070) 0 + primary-for QSignalMapper (0x7fafb4591000) + +Vtable for QObjectCleanupHandler +QObjectCleanupHandler::_ZTV21QObjectCleanupHandler: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QObjectCleanupHandler) +16 QObjectCleanupHandler::metaObject +24 QObjectCleanupHandler::qt_metacast +32 QObjectCleanupHandler::qt_metacall +40 QObjectCleanupHandler::~QObjectCleanupHandler +48 QObjectCleanupHandler::~QObjectCleanupHandler +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObjectCleanupHandler + size=24 align=8 + base size=24 base align=8 +QObjectCleanupHandler (0x7fafb45a83f0) 0 + vptr=((& QObjectCleanupHandler::_ZTV21QObjectCleanupHandler) + 16u) + QObject (0x7fafb45a8460) 0 + primary-for QObjectCleanupHandler (0x7fafb45a83f0) + +Class QBasicTimer + size=4 align=4 + base size=4 base align=4 +QBasicTimer (0x7fafb45b8540) 0 + +Vtable for QSocketNotifier +QSocketNotifier::_ZTV15QSocketNotifier: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSocketNotifier) +16 QSocketNotifier::metaObject +24 QSocketNotifier::qt_metacast +32 QSocketNotifier::qt_metacall +40 QSocketNotifier::~QSocketNotifier +48 QSocketNotifier::~QSocketNotifier +56 QSocketNotifier::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSocketNotifier + size=32 align=8 + base size=25 base align=8 +QSocketNotifier (0x7fafb45c2930) 0 + vptr=((& QSocketNotifier::_ZTV15QSocketNotifier) + 16u) + QObject (0x7fafb45c29a0) 0 + primary-for QSocketNotifier (0x7fafb45c2930) + +Vtable for QTimer +QTimer::_ZTV6QTimer: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QTimer) +16 QTimer::metaObject +24 QTimer::qt_metacast +32 QTimer::qt_metacall +40 QTimer::~QTimer +48 QTimer::~QTimer +56 QObject::event +64 QObject::eventFilter +72 QTimer::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTimer + size=32 align=8 + base size=29 base align=8 +QTimer (0x7fafb45e0cb0) 0 + vptr=((& QTimer::_ZTV6QTimer) + 16u) + QObject (0x7fafb45e0d20) 0 + primary-for QTimer (0x7fafb45e0cb0) + +Vtable for QAbstractEventDispatcher +QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QAbstractEventDispatcher) +16 QAbstractEventDispatcher::metaObject +24 QAbstractEventDispatcher::qt_metacast +32 QAbstractEventDispatcher::qt_metacall +40 QAbstractEventDispatcher::~QAbstractEventDispatcher +48 QAbstractEventDispatcher::~QAbstractEventDispatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 QAbstractEventDispatcher::startingUp +208 QAbstractEventDispatcher::closingDown + +Class QAbstractEventDispatcher + size=16 align=8 + base size=16 base align=8 +QAbstractEventDispatcher (0x7fafb46042a0) 0 + vptr=((& QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher) + 16u) + QObject (0x7fafb4604310) 0 + primary-for QAbstractEventDispatcher (0x7fafb46042a0) + +Class QMetaMethod + size=16 align=8 + base size=12 base align=8 +QMetaMethod (0x7fafb461f150) 0 + +Class QMetaEnum + size=16 align=8 + base size=12 base align=8 +QMetaEnum (0x7fafb463a5b0) 0 + +Class QMetaProperty + size=32 align=8 + base size=32 base align=8 +QMetaProperty (0x7fafb4646310) 0 + +Class QMetaClassInfo + size=16 align=8 + base size=12 base align=8 +QMetaClassInfo (0x7fafb46469a0) 0 + +Class QSystemSemaphore + size=8 align=8 + base size=8 base align=8 +QSystemSemaphore (0x7fafb46594d0) 0 + +Vtable for QLibrary +QLibrary::_ZTV8QLibrary: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QLibrary) +16 QLibrary::metaObject +24 QLibrary::qt_metacast +32 QLibrary::qt_metacall +40 QLibrary::~QLibrary +48 QLibrary::~QLibrary +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QLibrary + size=32 align=8 + base size=25 base align=8 +QLibrary (0x7fafb4659e00) 0 + vptr=((& QLibrary::_ZTV8QLibrary) + 16u) + QObject (0x7fafb4659e70) 0 + primary-for QLibrary (0x7fafb4659e00) + +Vtable for QPluginLoader +QPluginLoader::_ZTV13QPluginLoader: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QPluginLoader) +16 QPluginLoader::metaObject +24 QPluginLoader::qt_metacast +32 QPluginLoader::qt_metacall +40 QPluginLoader::~QPluginLoader +48 QPluginLoader::~QPluginLoader +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QPluginLoader + size=32 align=8 + base size=25 base align=8 +QPluginLoader (0x7fafb449f8c0) 0 + vptr=((& QPluginLoader::_ZTV13QPluginLoader) + 16u) + QObject (0x7fafb449f930) 0 + primary-for QPluginLoader (0x7fafb449f8c0) + +Class QUuid + size=16 align=4 + base size=16 base align=4 +QUuid (0x7fafb44c2070) 0 + +Class QSemaphore + size=8 align=8 + base size=8 base align=8 +QSemaphore (0x7fafb44e19a0) 0 + +Class QThreadStorageData + size=4 align=4 + base size=4 base align=4 +QThreadStorageData (0x7fafb44e1ee0) 0 + +Class QReadWriteLock + size=8 align=8 + base size=8 base align=8 +QReadWriteLock (0x7fafb44f2690) 0 + +Class QReadLocker + size=8 align=8 + base size=8 base align=8 +QReadLocker (0x7fafb44f2d20) 0 + +Class QWriteLocker + size=8 align=8 + base size=8 base align=8 +QWriteLocker (0x7fafb45210e0) 0 + +Class QDomImplementation + size=8 align=8 + base size=8 base align=8 +QDomImplementation (0x7fafb4533460) 0 + +Class QDomNode + size=8 align=8 + base size=8 base align=8 +QDomNode (0x7fafb4533d90) 0 + +Class QDomNodeList + size=8 align=8 + base size=8 base align=8 +QDomNodeList (0x7fafb4561000) 0 + +Class QDomDocumentType + size=8 align=8 + base size=8 base align=8 +QDomDocumentType (0x7fafb4569070) 0 + QDomNode (0x7fafb45690e0) 0 + +Class QDomDocument + size=8 align=8 + base size=8 base align=8 +QDomDocument (0x7fafb4569bd0) 0 + QDomNode (0x7fafb4569c40) 0 + +Class QDomNamedNodeMap + size=8 align=8 + base size=8 base align=8 +QDomNamedNodeMap (0x7fafb4571af0) 0 + +Class QDomDocumentFragment + size=8 align=8 + base size=8 base align=8 +QDomDocumentFragment (0x7fafb4380930) 0 + QDomNode (0x7fafb43809a0) 0 + +Class QDomCharacterData + size=8 align=8 + base size=8 base align=8 +QDomCharacterData (0x7fafb438c4d0) 0 + QDomNode (0x7fafb438c540) 0 + +Class QDomAttr + size=8 align=8 + base size=8 base align=8 +QDomAttr (0x7fafb438cee0) 0 + QDomNode (0x7fafb438cf50) 0 + +Class QDomElement + size=8 align=8 + base size=8 base align=8 +QDomElement (0x7fafb4394a80) 0 + QDomNode (0x7fafb4394af0) 0 + +Class QDomText + size=8 align=8 + base size=8 base align=8 +QDomText (0x7fafb439cd20) 0 + QDomCharacterData (0x7fafb439cd90) 0 + QDomNode (0x7fafb439ce00) 0 + +Class QDomComment + size=8 align=8 + base size=8 base align=8 +QDomComment (0x7fafb43b2a80) 0 + QDomCharacterData (0x7fafb43b2af0) 0 + QDomNode (0x7fafb43b2b60) 0 + +Class QDomCDATASection + size=8 align=8 + base size=8 base align=8 +QDomCDATASection (0x7fafb43b8690) 0 + QDomText (0x7fafb43b8700) 0 + QDomCharacterData (0x7fafb43b8770) 0 + QDomNode (0x7fafb43b87e0) 0 + +Class QDomNotation + size=8 align=8 + base size=8 base align=8 +QDomNotation (0x7fafb43bc310) 0 + QDomNode (0x7fafb43bc380) 0 + +Class QDomEntity + size=8 align=8 + base size=8 base align=8 +QDomEntity (0x7fafb43bce70) 0 + QDomNode (0x7fafb43bcee0) 0 + +Class QDomEntityReference + size=8 align=8 + base size=8 base align=8 +QDomEntityReference (0x7fafb43c4a10) 0 + QDomNode (0x7fafb43c4a80) 0 + +Class QDomProcessingInstruction + size=8 align=8 + base size=8 base align=8 +QDomProcessingInstruction (0x7fafb43c95b0) 0 + QDomNode (0x7fafb43c9620) 0 + +Class QXmlNamespaceSupport + size=8 align=8 + base size=8 base align=8 +QXmlNamespaceSupport (0x7fafb43d0150) 0 + +Class QXmlAttributes::Attribute + size=32 align=8 + base size=32 base align=8 +QXmlAttributes::Attribute (0x7fafb43d07e0) 0 + +Vtable for QXmlAttributes +QXmlAttributes::_ZTV14QXmlAttributes: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QXmlAttributes) +16 QXmlAttributes::~QXmlAttributes +24 QXmlAttributes::~QXmlAttributes + +Class QXmlAttributes + size=24 align=8 + base size=24 base align=8 +QXmlAttributes (0x7fafb43d0690) 0 + vptr=((& QXmlAttributes::_ZTV14QXmlAttributes) + 16u) + +Vtable for QXmlInputSource +QXmlInputSource::_ZTV15QXmlInputSource: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QXmlInputSource) +16 QXmlInputSource::~QXmlInputSource +24 QXmlInputSource::~QXmlInputSource +32 QXmlInputSource::setData +40 QXmlInputSource::setData +48 QXmlInputSource::fetchData +56 QXmlInputSource::data +64 QXmlInputSource::next +72 QXmlInputSource::reset +80 QXmlInputSource::fromRawData + +Class QXmlInputSource + size=16 align=8 + base size=16 base align=8 +QXmlInputSource (0x7fafb440aee0) 0 + vptr=((& QXmlInputSource::_ZTV15QXmlInputSource) + 16u) + +Class QXmlParseException + size=8 align=8 + base size=8 base align=8 +QXmlParseException (0x7fafb4410230) 0 + +Vtable for QXmlReader +QXmlReader::_ZTV10QXmlReader: 24u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QXmlReader) +16 QXmlReader::~QXmlReader +24 QXmlReader::~QXmlReader +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual + +Class QXmlReader + size=8 align=8 + base size=8 base align=8 +QXmlReader (0x7fafb44104d0) 0 nearly-empty + vptr=((& QXmlReader::_ZTV10QXmlReader) + 16u) + +Vtable for QXmlSimpleReader +QXmlSimpleReader::_ZTV16QXmlSimpleReader: 26u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QXmlSimpleReader) +16 QXmlSimpleReader::~QXmlSimpleReader +24 QXmlSimpleReader::~QXmlSimpleReader +32 QXmlSimpleReader::feature +40 QXmlSimpleReader::setFeature +48 QXmlSimpleReader::hasFeature +56 QXmlSimpleReader::property +64 QXmlSimpleReader::setProperty +72 QXmlSimpleReader::hasProperty +80 QXmlSimpleReader::setEntityResolver +88 QXmlSimpleReader::entityResolver +96 QXmlSimpleReader::setDTDHandler +104 QXmlSimpleReader::DTDHandler +112 QXmlSimpleReader::setContentHandler +120 QXmlSimpleReader::contentHandler +128 QXmlSimpleReader::setErrorHandler +136 QXmlSimpleReader::errorHandler +144 QXmlSimpleReader::setLexicalHandler +152 QXmlSimpleReader::lexicalHandler +160 QXmlSimpleReader::setDeclHandler +168 QXmlSimpleReader::declHandler +176 QXmlSimpleReader::parse +184 QXmlSimpleReader::parse +192 QXmlSimpleReader::parse +200 QXmlSimpleReader::parseContinue + +Class QXmlSimpleReader + size=16 align=8 + base size=16 base align=8 +QXmlSimpleReader (0x7fafb4410ee0) 0 + vptr=((& QXmlSimpleReader::_ZTV16QXmlSimpleReader) + 16u) + QXmlReader (0x7fafb4410f50) 0 nearly-empty + primary-for QXmlSimpleReader (0x7fafb4410ee0) + +Vtable for QXmlLocator +QXmlLocator::_ZTV11QXmlLocator: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QXmlLocator) +16 QXmlLocator::~QXmlLocator +24 QXmlLocator::~QXmlLocator +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QXmlLocator + size=8 align=8 + base size=8 base align=8 +QXmlLocator (0x7fafb4435930) 0 nearly-empty + vptr=((& QXmlLocator::_ZTV11QXmlLocator) + 16u) + +Vtable for QXmlContentHandler +QXmlContentHandler::_ZTV18QXmlContentHandler: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QXmlContentHandler) +16 QXmlContentHandler::~QXmlContentHandler +24 QXmlContentHandler::~QXmlContentHandler +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QXmlContentHandler + size=8 align=8 + base size=8 base align=8 +QXmlContentHandler (0x7fafb4435b60) 0 nearly-empty + vptr=((& QXmlContentHandler::_ZTV18QXmlContentHandler) + 16u) + +Vtable for QXmlErrorHandler +QXmlErrorHandler::_ZTV16QXmlErrorHandler: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QXmlErrorHandler) +16 QXmlErrorHandler::~QXmlErrorHandler +24 QXmlErrorHandler::~QXmlErrorHandler +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual + +Class QXmlErrorHandler + size=8 align=8 + base size=8 base align=8 +QXmlErrorHandler (0x7fafb4448460) 0 nearly-empty + vptr=((& QXmlErrorHandler::_ZTV16QXmlErrorHandler) + 16u) + +Vtable for QXmlDTDHandler +QXmlDTDHandler::_ZTV14QXmlDTDHandler: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QXmlDTDHandler) +16 QXmlDTDHandler::~QXmlDTDHandler +24 QXmlDTDHandler::~QXmlDTDHandler +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual + +Class QXmlDTDHandler + size=8 align=8 + base size=8 base align=8 +QXmlDTDHandler (0x7fafb4448e70) 0 nearly-empty + vptr=((& QXmlDTDHandler::_ZTV14QXmlDTDHandler) + 16u) + +Vtable for QXmlEntityResolver +QXmlEntityResolver::_ZTV18QXmlEntityResolver: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QXmlEntityResolver) +16 QXmlEntityResolver::~QXmlEntityResolver +24 QXmlEntityResolver::~QXmlEntityResolver +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QXmlEntityResolver + size=8 align=8 + base size=8 base align=8 +QXmlEntityResolver (0x7fafb44587e0) 0 nearly-empty + vptr=((& QXmlEntityResolver::_ZTV18QXmlEntityResolver) + 16u) + +Vtable for QXmlLexicalHandler +QXmlLexicalHandler::_ZTV18QXmlLexicalHandler: 12u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QXmlLexicalHandler) +16 QXmlLexicalHandler::~QXmlLexicalHandler +24 QXmlLexicalHandler::~QXmlLexicalHandler +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual + +Class QXmlLexicalHandler + size=8 align=8 + base size=8 base align=8 +QXmlLexicalHandler (0x7fafb4460230) 0 nearly-empty + vptr=((& QXmlLexicalHandler::_ZTV18QXmlLexicalHandler) + 16u) + +Vtable for QXmlDeclHandler +QXmlDeclHandler::_ZTV15QXmlDeclHandler: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QXmlDeclHandler) +16 QXmlDeclHandler::~QXmlDeclHandler +24 QXmlDeclHandler::~QXmlDeclHandler +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual + +Class QXmlDeclHandler + size=8 align=8 + base size=8 base align=8 +QXmlDeclHandler (0x7fafb4460c40) 0 nearly-empty + vptr=((& QXmlDeclHandler::_ZTV15QXmlDeclHandler) + 16u) + +Vtable for QXmlDefaultHandler +QXmlDefaultHandler::_ZTV18QXmlDefaultHandler: 73u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QXmlDefaultHandler) +16 QXmlDefaultHandler::~QXmlDefaultHandler +24 QXmlDefaultHandler::~QXmlDefaultHandler +32 QXmlDefaultHandler::setDocumentLocator +40 QXmlDefaultHandler::startDocument +48 QXmlDefaultHandler::endDocument +56 QXmlDefaultHandler::startPrefixMapping +64 QXmlDefaultHandler::endPrefixMapping +72 QXmlDefaultHandler::startElement +80 QXmlDefaultHandler::endElement +88 QXmlDefaultHandler::characters +96 QXmlDefaultHandler::ignorableWhitespace +104 QXmlDefaultHandler::processingInstruction +112 QXmlDefaultHandler::skippedEntity +120 QXmlDefaultHandler::errorString +128 QXmlDefaultHandler::warning +136 QXmlDefaultHandler::error +144 QXmlDefaultHandler::fatalError +152 QXmlDefaultHandler::notationDecl +160 QXmlDefaultHandler::unparsedEntityDecl +168 QXmlDefaultHandler::resolveEntity +176 QXmlDefaultHandler::startDTD +184 QXmlDefaultHandler::endDTD +192 QXmlDefaultHandler::startEntity +200 QXmlDefaultHandler::endEntity +208 QXmlDefaultHandler::startCDATA +216 QXmlDefaultHandler::endCDATA +224 QXmlDefaultHandler::comment +232 QXmlDefaultHandler::attributeDecl +240 QXmlDefaultHandler::internalEntityDecl +248 QXmlDefaultHandler::externalEntityDecl +256 (int (*)(...))-0x00000000000000008 +264 (int (*)(...))(& _ZTI18QXmlDefaultHandler) +272 QXmlDefaultHandler::_ZThn8_N18QXmlDefaultHandlerD1Ev +280 QXmlDefaultHandler::_ZThn8_N18QXmlDefaultHandlerD0Ev +288 QXmlDefaultHandler::_ZThn8_N18QXmlDefaultHandler7warningERK18QXmlParseException +296 QXmlDefaultHandler::_ZThn8_N18QXmlDefaultHandler5errorERK18QXmlParseException +304 QXmlDefaultHandler::_ZThn8_N18QXmlDefaultHandler10fatalErrorERK18QXmlParseException +312 QXmlDefaultHandler::_ZThn8_NK18QXmlDefaultHandler11errorStringEv +320 (int (*)(...))-0x00000000000000010 +328 (int (*)(...))(& _ZTI18QXmlDefaultHandler) +336 QXmlDefaultHandler::_ZThn16_N18QXmlDefaultHandlerD1Ev +344 QXmlDefaultHandler::_ZThn16_N18QXmlDefaultHandlerD0Ev +352 QXmlDefaultHandler::_ZThn16_N18QXmlDefaultHandler12notationDeclERK7QStringS2_S2_ +360 QXmlDefaultHandler::_ZThn16_N18QXmlDefaultHandler18unparsedEntityDeclERK7QStringS2_S2_S2_ +368 QXmlDefaultHandler::_ZThn16_NK18QXmlDefaultHandler11errorStringEv +376 (int (*)(...))-0x00000000000000018 +384 (int (*)(...))(& _ZTI18QXmlDefaultHandler) +392 QXmlDefaultHandler::_ZThn24_N18QXmlDefaultHandlerD1Ev +400 QXmlDefaultHandler::_ZThn24_N18QXmlDefaultHandlerD0Ev +408 QXmlDefaultHandler::_ZThn24_N18QXmlDefaultHandler13resolveEntityERK7QStringS2_RP15QXmlInputSource +416 QXmlDefaultHandler::_ZThn24_NK18QXmlDefaultHandler11errorStringEv +424 (int (*)(...))-0x00000000000000020 +432 (int (*)(...))(& _ZTI18QXmlDefaultHandler) +440 QXmlDefaultHandler::_ZThn32_N18QXmlDefaultHandlerD1Ev +448 QXmlDefaultHandler::_ZThn32_N18QXmlDefaultHandlerD0Ev +456 QXmlDefaultHandler::_ZThn32_N18QXmlDefaultHandler8startDTDERK7QStringS2_S2_ +464 QXmlDefaultHandler::_ZThn32_N18QXmlDefaultHandler6endDTDEv +472 QXmlDefaultHandler::_ZThn32_N18QXmlDefaultHandler11startEntityERK7QString +480 QXmlDefaultHandler::_ZThn32_N18QXmlDefaultHandler9endEntityERK7QString +488 QXmlDefaultHandler::_ZThn32_N18QXmlDefaultHandler10startCDATAEv +496 QXmlDefaultHandler::_ZThn32_N18QXmlDefaultHandler8endCDATAEv +504 QXmlDefaultHandler::_ZThn32_N18QXmlDefaultHandler7commentERK7QString +512 QXmlDefaultHandler::_ZThn32_NK18QXmlDefaultHandler11errorStringEv +520 (int (*)(...))-0x00000000000000028 +528 (int (*)(...))(& _ZTI18QXmlDefaultHandler) +536 QXmlDefaultHandler::_ZThn40_N18QXmlDefaultHandlerD1Ev +544 QXmlDefaultHandler::_ZThn40_N18QXmlDefaultHandlerD0Ev +552 QXmlDefaultHandler::_ZThn40_N18QXmlDefaultHandler13attributeDeclERK7QStringS2_S2_S2_S2_ +560 QXmlDefaultHandler::_ZThn40_N18QXmlDefaultHandler18internalEntityDeclERK7QStringS2_ +568 QXmlDefaultHandler::_ZThn40_N18QXmlDefaultHandler18externalEntityDeclERK7QStringS2_S2_ +576 QXmlDefaultHandler::_ZThn40_NK18QXmlDefaultHandler11errorStringEv + +Class QXmlDefaultHandler + size=56 align=8 + base size=56 base align=8 +QXmlDefaultHandler (0x7fafb446bc80) 0 + vptr=((& QXmlDefaultHandler::_ZTV18QXmlDefaultHandler) + 16u) + QXmlContentHandler (0x7fafb44725b0) 0 nearly-empty + primary-for QXmlDefaultHandler (0x7fafb446bc80) + QXmlErrorHandler (0x7fafb4472620) 8 nearly-empty + vptr=((& QXmlDefaultHandler::_ZTV18QXmlDefaultHandler) + 272u) + QXmlDTDHandler (0x7fafb4472690) 16 nearly-empty + vptr=((& QXmlDefaultHandler::_ZTV18QXmlDefaultHandler) + 336u) + QXmlEntityResolver (0x7fafb4472700) 24 nearly-empty + vptr=((& QXmlDefaultHandler::_ZTV18QXmlDefaultHandler) + 392u) + QXmlLexicalHandler (0x7fafb4472770) 32 nearly-empty + vptr=((& QXmlDefaultHandler::_ZTV18QXmlDefaultHandler) + 440u) + QXmlDeclHandler (0x7fafb44727e0) 40 nearly-empty + vptr=((& QXmlDefaultHandler::_ZTV18QXmlDefaultHandler) + 536u) + +Class QDBusObjectPath + size=8 align=8 + base size=8 base align=8 +QDBusObjectPath (0x7fafb42c6150) 0 + QString (0x7fafb42c61c0) 0 + +Class QDBusSignature + size=8 align=8 + base size=8 base align=8 +QDBusSignature (0x7fafb430f070) 0 + QString (0x7fafb430f0e0) 0 + +Class QDBusVariant + size=16 align=8 + base size=16 base align=8 +QDBusVariant (0x7fafb4329f50) 0 + QVariant (0x7fafb4358000) 0 + +Class QDBusArgument + size=8 align=8 + base size=8 base align=8 +QDBusArgument (0x7fafb41748c0) 0 + +Vtable for QDBusAbstractAdaptor +QDBusAbstractAdaptor::_ZTV20QDBusAbstractAdaptor: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QDBusAbstractAdaptor) +16 QDBusAbstractAdaptor::metaObject +24 QDBusAbstractAdaptor::qt_metacast +32 QDBusAbstractAdaptor::qt_metacall +40 QDBusAbstractAdaptor::~QDBusAbstractAdaptor +48 QDBusAbstractAdaptor::~QDBusAbstractAdaptor +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QDBusAbstractAdaptor + size=16 align=8 + base size=16 base align=8 +QDBusAbstractAdaptor (0x7fafb42342a0) 0 + vptr=((& QDBusAbstractAdaptor::_ZTV20QDBusAbstractAdaptor) + 16u) + QObject (0x7fafb4234310) 0 + primary-for QDBusAbstractAdaptor (0x7fafb42342a0) + +Class QDBusError + size=32 align=8 + base size=32 base align=8 +QDBusError (0x7fafb4247700) 0 + +Class QDBusMessage + size=8 align=8 + base size=8 base align=8 +QDBusMessage (0x7fafb42531c0) 0 + +Class QDBusConnection + size=8 align=8 + base size=8 base align=8 +QDBusConnection (0x7fafb42720e0) 0 + +Vtable for QDBusAbstractInterface +QDBusAbstractInterface::_ZTV22QDBusAbstractInterface: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QDBusAbstractInterface) +16 QDBusAbstractInterface::metaObject +24 QDBusAbstractInterface::qt_metacast +32 QDBusAbstractInterface::qt_metacall +40 QDBusAbstractInterface::~QDBusAbstractInterface +48 QDBusAbstractInterface::~QDBusAbstractInterface +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QDBusAbstractInterface::connectNotify +104 QDBusAbstractInterface::disconnectNotify + +Class QDBusAbstractInterface + size=16 align=8 + base size=16 base align=8 +QDBusAbstractInterface (0x7fafb40a4850) 0 + vptr=((& QDBusAbstractInterface::_ZTV22QDBusAbstractInterface) + 16u) + QObject (0x7fafb40a48c0) 0 + primary-for QDBusAbstractInterface (0x7fafb40a4850) + +Class QDBusPendingCall + size=8 align=8 + base size=8 base align=8 +QDBusPendingCall (0x7fafb40d3930) 0 + +Vtable for QDBusPendingCallWatcher +QDBusPendingCallWatcher::_ZTV23QDBusPendingCallWatcher: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QDBusPendingCallWatcher) +16 QDBusPendingCallWatcher::metaObject +24 QDBusPendingCallWatcher::qt_metacast +32 QDBusPendingCallWatcher::qt_metacall +40 QDBusPendingCallWatcher::~QDBusPendingCallWatcher +48 QDBusPendingCallWatcher::~QDBusPendingCallWatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QDBusPendingCallWatcher + size=24 align=8 + base size=24 base align=8 +QDBusPendingCallWatcher (0x7fafb4095e80) 0 + vptr=((& QDBusPendingCallWatcher::_ZTV23QDBusPendingCallWatcher) + 16u) + QObject (0x7fafb40d3e00) 0 + primary-for QDBusPendingCallWatcher (0x7fafb4095e80) + QDBusPendingCall (0x7fafb40e8000) 16 + +Class QDBusPendingReplyData + size=8 align=8 + base size=8 base align=8 +QDBusPendingReplyData (0x7fafb40fc4d0) 0 + QDBusPendingCall (0x7fafb40fc540) 0 + +Vtable for QDBusConnectionInterface +QDBusConnectionInterface::_ZTV24QDBusConnectionInterface: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QDBusConnectionInterface) +16 QDBusConnectionInterface::metaObject +24 QDBusConnectionInterface::qt_metacast +32 QDBusConnectionInterface::qt_metacall +40 QDBusConnectionInterface::~QDBusConnectionInterface +48 QDBusConnectionInterface::~QDBusConnectionInterface +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QDBusConnectionInterface::connectNotify +104 QDBusConnectionInterface::disconnectNotify + +Class QDBusConnectionInterface + size=16 align=8 + base size=16 base align=8 +QDBusConnectionInterface (0x7fafb414ce70) 0 + vptr=((& QDBusConnectionInterface::_ZTV24QDBusConnectionInterface) + 16u) + QDBusAbstractInterface (0x7fafb414cee0) 0 + primary-for QDBusConnectionInterface (0x7fafb414ce70) + QObject (0x7fafb414cf50) 0 + primary-for QDBusAbstractInterface (0x7fafb414cee0) + +Vtable for QDBusServer +QDBusServer::_ZTV11QDBusServer: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QDBusServer) +16 QDBusServer::metaObject +24 QDBusServer::qt_metacast +32 QDBusServer::qt_metacall +40 QDBusServer::~QDBusServer +48 QDBusServer::~QDBusServer +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QDBusServer + size=24 align=8 + base size=24 base align=8 +QDBusServer (0x7fafb416aa10) 0 + vptr=((& QDBusServer::_ZTV11QDBusServer) + 16u) + QObject (0x7fafb416aa80) 0 + primary-for QDBusServer (0x7fafb416aa10) + +Class QDBusContext + size=8 align=8 + base size=8 base align=8 +QDBusContext (0x7fafb3f74d20) 0 + +Vtable for QDBusInterface +QDBusInterface::_ZTV14QDBusInterface: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QDBusInterface) +16 QDBusInterface::metaObject +24 QDBusInterface::qt_metacast +32 QDBusInterface::qt_metacall +40 QDBusInterface::~QDBusInterface +48 QDBusInterface::~QDBusInterface +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QDBusAbstractInterface::connectNotify +104 QDBusAbstractInterface::disconnectNotify + +Class QDBusInterface + size=16 align=8 + base size=16 base align=8 +QDBusInterface (0x7fafb3f893f0) 0 + vptr=((& QDBusInterface::_ZTV14QDBusInterface) + 16u) + QDBusAbstractInterface (0x7fafb3f89460) 0 + primary-for QDBusInterface (0x7fafb3f893f0) + QObject (0x7fafb3f894d0) 0 + primary-for QDBusAbstractInterface (0x7fafb3f89460) + +Class QDBusMetaType + size=1 align=1 + base size=0 base align=1 +QDBusMetaType (0x7fafb3f89d90) 0 empty + diff --git a/tests/auto/bic/data/QtDBus.4.6.0.linux-gcc-amd64.txt b/tests/auto/bic/data/QtDBus.4.6.0.linux-gcc-amd64.txt new file mode 100644 index 0000000..177e065 --- /dev/null +++ b/tests/auto/bic/data/QtDBus.4.6.0.linux-gcc-amd64.txt @@ -0,0 +1,2894 @@ +Class QSysInfo + size=1 align=1 + base size=0 base align=1 +QSysInfo (0x7f088f9ed230) 0 empty + +Class QBool + size=1 align=1 + base size=1 base align=1 +QBool (0x7f088f9ede70) 0 + +Class qIsNull(double)::U + size=8 align=8 + base size=8 base align=8 +qIsNull(double)::U (0x7f088f200540) 0 + +Class qIsNull(float)::U + size=4 align=4 + base size=4 base align=4 +qIsNull(float)::U (0x7f088f2007e0) 0 + +Class QFlag + size=4 align=4 + base size=4 base align=4 +QFlag (0x7f088f238690) 0 + +Class QIncompatibleFlag + size=4 align=4 + base size=4 base align=4 +QIncompatibleFlag (0x7f088f238e70) 0 + +Class QLatin1Char + size=1 align=1 + base size=1 base align=1 +QLatin1Char (0x7f088f2675b0) 0 + +Class QChar + size=2 align=2 + base size=2 base align=2 +QChar (0x7f088f28e150) 0 + +Class QBasicAtomicInt + size=4 align=4 + base size=4 base align=4 +QBasicAtomicInt (0x7f088f0f5310) 0 + +Class QAtomicInt + size=4 align=4 + base size=4 base align=4 +QAtomicInt (0x7f088f133cb0) 0 + QBasicAtomicInt (0x7f088f133d20) 0 + +Class QInternal + size=1 align=1 + base size=0 base align=1 +QInternal (0x7f088ef874d0) 0 empty + +Class __locale_struct + size=232 align=8 + base size=232 base align=8 +__locale_struct (0x7f088ef87700) 0 + +Class QByteArray::Data + size=32 align=8 + base size=32 base align=8 +QByteArray::Data (0x7f088efc3af0) 0 + +Class QByteArray + size=8 align=8 + base size=8 base align=8 +QByteArray (0x7f088efc3a80) 0 + +Class QByteRef + size=16 align=8 + base size=12 base align=8 +QByteRef (0x7f088ee66380) 0 + +Class QString::Null + size=1 align=1 + base size=0 base align=1 +QString::Null (0x7f088ed66d20) 0 empty + +Class QString::Data + size=32 align=8 + base size=32 base align=8 +QString::Data (0x7f088ed7e5b0) 0 + +Class QString + size=8 align=8 + base size=8 base align=8 +QString (0x7f088ecdfbd0) 0 + +Class QLatin1String + size=8 align=8 + base size=8 base align=8 +QLatin1String (0x7f088ec569a0) 0 + +Class QCharRef + size=16 align=8 + base size=12 base align=8 +QCharRef (0x7f088eab4000) 0 + +Class QConstString + size=8 align=8 + base size=8 base align=8 +QConstString (0x7f088e9fd8c0) 0 + QString (0x7f088e9fd930) 0 + +Class QStringRef + size=16 align=8 + base size=16 base align=8 +QStringRef (0x7f088ea24310) 0 + +Class QGenericArgument + size=16 align=8 + base size=16 base align=8 +QGenericArgument (0x7f088e89c700) 0 + +Class QGenericReturnArgument + size=16 align=8 + base size=16 base align=8 +QGenericReturnArgument (0x7f088e8a62a0) 0 + QGenericArgument (0x7f088e8a6310) 0 + +Class QMetaObject + size=32 align=8 + base size=32 base align=8 +QMetaObject (0x7f088e8a6b60) 0 + +Class QMetaObjectExtraData + size=16 align=8 + base size=16 base align=8 +QMetaObjectExtraData (0x7f088e8cfbd0) 0 + +Vtable for std::exception +std::exception::_ZTVSt9exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9exception) +16 std::exception::~exception +24 std::exception::~exception +32 std::exception::what + +Class std::exception + size=8 align=8 + base size=8 base align=8 +std::exception (0x7f088e9231c0) 0 nearly-empty + vptr=((& std::exception::_ZTVSt9exception) + 16u) + +Vtable for std::bad_exception +std::bad_exception::_ZTVSt13bad_exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13bad_exception) +16 std::bad_exception::~bad_exception +24 std::bad_exception::~bad_exception +32 std::bad_exception::what + +Class std::bad_exception + size=8 align=8 + base size=8 base align=8 +std::bad_exception (0x7f088e923770) 0 nearly-empty + vptr=((& std::bad_exception::_ZTVSt13bad_exception) + 16u) + std::exception (0x7f088e9237e0) 0 nearly-empty + primary-for std::bad_exception (0x7f088e923770) + +Vtable for std::bad_alloc +std::bad_alloc::_ZTVSt9bad_alloc: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9bad_alloc) +16 std::bad_alloc::~bad_alloc +24 std::bad_alloc::~bad_alloc +32 std::bad_alloc::what + +Class std::bad_alloc + size=8 align=8 + base size=8 base align=8 +std::bad_alloc (0x7f088e923930) 0 nearly-empty + vptr=((& std::bad_alloc::_ZTVSt9bad_alloc) + 16u) + std::exception (0x7f088e939000) 0 nearly-empty + primary-for std::bad_alloc (0x7f088e923930) + +Class std::nothrow_t + size=1 align=1 + base size=0 base align=1 +std::nothrow_t (0x7f088e939850) 0 empty + +Class QListData::Data + size=32 align=8 + base size=32 base align=8 +QListData::Data (0x7f088e939d90) 0 + +Class QListData + size=8 align=8 + base size=8 base align=8 +QListData (0x7f088e939d20) 0 + +Class QScopedPointerPodDeleter + size=1 align=1 + base size=0 base align=1 +QScopedPointerPodDeleter (0x7f088e863850) 0 empty + +Vtable for QObjectData +QObjectData::_ZTV11QObjectData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QObjectData) +16 __cxa_pure_virtual +24 __cxa_pure_virtual + +Class QObjectData + size=48 align=8 + base size=48 base align=8 +QObjectData (0x7f088e8832a0) 0 + vptr=((& QObjectData::_ZTV11QObjectData) + 16u) + +Vtable for QObject +QObject::_ZTV7QObject: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QObject) +16 QObject::metaObject +24 QObject::qt_metacast +32 QObject::qt_metacall +40 QObject::~QObject +48 QObject::~QObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObject + size=16 align=8 + base size=16 base align=8 +QObject (0x7f088e8835b0) 0 + vptr=((& QObject::_ZTV7QObject) + 16u) + +Vtable for QObjectUserData +QObjectUserData::_ZTV15QObjectUserData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QObjectUserData) +16 QObjectUserData::~QObjectUserData +24 QObjectUserData::~QObjectUserData + +Class QObjectUserData + size=8 align=8 + base size=8 base align=8 +QObjectUserData (0x7f088e6f8b60) 0 nearly-empty + vptr=((& QObjectUserData::_ZTV15QObjectUserData) + 16u) + +Vtable for QIODevice +QIODevice::_ZTV9QIODevice: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QIODevice) +16 QIODevice::metaObject +24 QIODevice::qt_metacast +32 QIODevice::qt_metacall +40 QIODevice::~QIODevice +48 QIODevice::~QIODevice +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QIODevice::isSequential +120 QIODevice::open +128 QIODevice::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QIODevice::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 __cxa_pure_virtual +224 QIODevice::readLineData +232 __cxa_pure_virtual + +Class QIODevice + size=16 align=8 + base size=16 base align=8 +QIODevice (0x7f088e709150) 0 + vptr=((& QIODevice::_ZTV9QIODevice) + 16u) + QObject (0x7f088e7091c0) 0 + primary-for QIODevice (0x7f088e709150) + +Class _IO_marker + size=24 align=8 + base size=24 base align=8 +_IO_marker (0x7f088e76ccb0) 0 + +Class _IO_FILE + size=216 align=8 + base size=216 base align=8 +_IO_FILE (0x7f088e76cd20) 0 + +Vtable for QFile +QFile::_ZTV5QFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QFile) +16 QFile::metaObject +24 QFile::qt_metacast +32 QFile::qt_metacall +40 QFile::~QFile +48 QFile::~QFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QFile::fileEngine + +Class QFile + size=16 align=8 + base size=16 base align=8 +QFile (0x7f088e76ce00) 0 + vptr=((& QFile::_ZTV5QFile) + 16u) + QIODevice (0x7f088e76ce70) 0 + primary-for QFile (0x7f088e76ce00) + QObject (0x7f088e76cee0) 0 + primary-for QIODevice (0x7f088e76ce70) + +Class QFileInfo + size=8 align=8 + base size=8 base align=8 +QFileInfo (0x7f088e60d070) 0 + +Vtable for QDataStream +QDataStream::_ZTV11QDataStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QDataStream) +16 QDataStream::~QDataStream +24 QDataStream::~QDataStream + +Class QDataStream + size=40 align=8 + base size=40 base align=8 +QDataStream (0x7f088e662a10) 0 + vptr=((& QDataStream::_ZTV11QDataStream) + 16u) + +Class QRegExp + size=8 align=8 + base size=8 base align=8 +QRegExp (0x7f088e4cbe70) 0 + +Class QStringMatcher::Data + size=272 align=8 + base size=272 base align=8 +QStringMatcher::Data (0x7f088e5332a0) 0 + +Class QStringMatcher + size=1048 align=8 + base size=1048 base align=8 +QStringMatcher (0x7f088e527c40) 0 + +Class QStringList + size=8 align=8 + base size=8 base align=8 +QStringList (0x7f088e533850) 0 + QList (0x7f088e5338c0) 0 + +Class QDir + size=8 align=8 + base size=8 base align=8 +QDir (0x7f088e3d14d0) 0 + +Class QAbstractFileEngine::ExtensionOption + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionOption (0x7f088e4798c0) 0 empty + +Class QAbstractFileEngine::ExtensionReturn + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionReturn (0x7f088e479930) 0 empty + +Class QAbstractFileEngine::MapExtensionOption + size=24 align=8 + base size=20 base align=8 +QAbstractFileEngine::MapExtensionOption (0x7f088e4799a0) 0 + QAbstractFileEngine::ExtensionOption (0x7f088e479a10) 0 empty + +Class QAbstractFileEngine::MapExtensionReturn + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::MapExtensionReturn (0x7f088e479bd0) 0 + QAbstractFileEngine::ExtensionReturn (0x7f088e479c40) 0 empty + +Class QAbstractFileEngine::UnMapExtensionOption + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::UnMapExtensionOption (0x7f088e479cb0) 0 + QAbstractFileEngine::ExtensionOption (0x7f088e479d20) 0 empty + +Vtable for QAbstractFileEngine +QAbstractFileEngine::_ZTV19QAbstractFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractFileEngine) +16 QAbstractFileEngine::~QAbstractFileEngine +24 QAbstractFileEngine::~QAbstractFileEngine +32 QAbstractFileEngine::open +40 QAbstractFileEngine::close +48 QAbstractFileEngine::flush +56 QAbstractFileEngine::size +64 QAbstractFileEngine::pos +72 QAbstractFileEngine::seek +80 QAbstractFileEngine::isSequential +88 QAbstractFileEngine::remove +96 QAbstractFileEngine::copy +104 QAbstractFileEngine::rename +112 QAbstractFileEngine::link +120 QAbstractFileEngine::mkdir +128 QAbstractFileEngine::rmdir +136 QAbstractFileEngine::setSize +144 QAbstractFileEngine::caseSensitive +152 QAbstractFileEngine::isRelativePath +160 QAbstractFileEngine::entryList +168 QAbstractFileEngine::fileFlags +176 QAbstractFileEngine::setPermissions +184 QAbstractFileEngine::fileName +192 QAbstractFileEngine::ownerId +200 QAbstractFileEngine::owner +208 QAbstractFileEngine::fileTime +216 QAbstractFileEngine::setFileName +224 QAbstractFileEngine::handle +232 QAbstractFileEngine::beginEntryList +240 QAbstractFileEngine::endEntryList +248 QAbstractFileEngine::read +256 QAbstractFileEngine::readLine +264 QAbstractFileEngine::write +272 QAbstractFileEngine::extension +280 QAbstractFileEngine::supportsExtension + +Class QAbstractFileEngine + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngine (0x7f088e45e850) 0 + vptr=((& QAbstractFileEngine::_ZTV19QAbstractFileEngine) + 16u) + +Vtable for QAbstractFileEngineHandler +QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QAbstractFileEngineHandler) +16 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +24 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +32 __cxa_pure_virtual + +Class QAbstractFileEngineHandler + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngineHandler (0x7f088e2afbd0) 0 nearly-empty + vptr=((& QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler) + 16u) + +Vtable for QAbstractFileEngineIterator +QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QAbstractFileEngineIterator) +16 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +24 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QAbstractFileEngineIterator::currentFileInfo +64 QAbstractFileEngineIterator::entryInfo + +Class QAbstractFileEngineIterator + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngineIterator (0x7f088e2afd90) 0 + vptr=((& QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator) + 16u) + +Vtable for QBuffer +QBuffer::_ZTV7QBuffer: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QBuffer) +16 QBuffer::metaObject +24 QBuffer::qt_metacast +32 QBuffer::qt_metacall +40 QBuffer::~QBuffer +48 QBuffer::~QBuffer +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QBuffer::connectNotify +104 QBuffer::disconnectNotify +112 QIODevice::isSequential +120 QBuffer::open +128 QBuffer::close +136 QBuffer::pos +144 QBuffer::size +152 QBuffer::seek +160 QBuffer::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QBuffer::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QBuffer::readData +224 QIODevice::readLineData +232 QBuffer::writeData + +Class QBuffer + size=16 align=8 + base size=16 base align=8 +QBuffer (0x7f088e2c3690) 0 + vptr=((& QBuffer::_ZTV7QBuffer) + 16u) + QIODevice (0x7f088e2c3700) 0 + primary-for QBuffer (0x7f088e2c3690) + QObject (0x7f088e2c3770) 0 + primary-for QIODevice (0x7f088e2c3700) + +Class QHashData::Node + size=16 align=8 + base size=16 base align=8 +QHashData::Node (0x7f088e304e00) 0 + +Class QHashData + size=40 align=8 + base size=40 base align=8 +QHashData (0x7f088e304d90) 0 + +Class QHashDummyValue + size=1 align=1 + base size=0 base align=1 +QHashDummyValue (0x7f088e328150) 0 empty + +Class QMapData::Node + size=16 align=8 + base size=16 base align=8 +QMapData::Node (0x7f088e226a80) 0 + +Class QMapData + size=128 align=8 + base size=128 base align=8 +QMapData (0x7f088e226a10) 0 + +Vtable for QSystemLocale +QSystemLocale::_ZTV13QSystemLocale: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSystemLocale) +16 QSystemLocale::~QSystemLocale +24 QSystemLocale::~QSystemLocale +32 QSystemLocale::query +40 QSystemLocale::fallbackLocale + +Class QSystemLocale + size=8 align=8 + base size=8 base align=8 +QSystemLocale (0x7f088e163690) 0 nearly-empty + vptr=((& QSystemLocale::_ZTV13QSystemLocale) + 16u) + +Class QLocale::Data + size=4 align=2 + base size=4 base align=2 +QLocale::Data (0x7f088dfacd90) 0 + +Class QLocale + size=8 align=8 + base size=8 base align=8 +QLocale (0x7f088e163af0) 0 + +Class QTextCodec::ConverterState + size=32 align=8 + base size=32 base align=8 +QTextCodec::ConverterState (0x7f088e003bd0) 0 + +Vtable for QTextCodec +QTextCodec::_ZTV10QTextCodec: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextCodec) +16 __cxa_pure_virtual +24 QTextCodec::aliases +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QTextCodec::~QTextCodec +64 QTextCodec::~QTextCodec + +Class QTextCodec + size=8 align=8 + base size=8 base align=8 +QTextCodec (0x7f088dff4460) 0 nearly-empty + vptr=((& QTextCodec::_ZTV10QTextCodec) + 16u) + +Class QTextEncoder + size=40 align=8 + base size=40 base align=8 +QTextEncoder (0x7f088e077150) 0 + +Class QTextDecoder + size=40 align=8 + base size=40 base align=8 +QTextDecoder (0x7f088e077f50) 0 + +Vtable for QTextStream +QTextStream::_ZTV11QTextStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTextStream) +16 QTextStream::~QTextStream +24 QTextStream::~QTextStream + +Class QTextStream + size=16 align=8 + base size=16 base align=8 +QTextStream (0x7f088e07fd90) 0 + vptr=((& QTextStream::_ZTV11QTextStream) + 16u) + +Class QTextStreamManipulator + size=40 align=8 + base size=38 base align=8 +QTextStreamManipulator (0x7f088def8a80) 0 + +Vtable for QTextIStream +QTextIStream::_ZTV12QTextIStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextIStream) +16 QTextIStream::~QTextIStream +24 QTextIStream::~QTextIStream + +Class QTextIStream + size=16 align=8 + base size=16 base align=8 +QTextIStream (0x7f088df28070) 0 + vptr=((& QTextIStream::_ZTV12QTextIStream) + 16u) + QTextStream (0x7f088df280e0) 0 + primary-for QTextIStream (0x7f088df28070) + +Vtable for QTextOStream +QTextOStream::_ZTV12QTextOStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextOStream) +16 QTextOStream::~QTextOStream +24 QTextOStream::~QTextOStream + +Class QTextOStream + size=16 align=8 + base size=16 base align=8 +QTextOStream (0x7f088df35ee0) 0 + vptr=((& QTextOStream::_ZTV12QTextOStream) + 16u) + QTextStream (0x7f088df35f50) 0 + primary-for QTextOStream (0x7f088df35ee0) + +Class wait + size=4 align=4 + base size=4 base align=4 +wait (0x7f088df4ad90) 0 + +Class timespec + size=16 align=8 + base size=16 base align=8 +timespec (0x7f088df560e0) 0 + +Class timeval + size=16 align=8 + base size=16 base align=8 +timeval (0x7f088df56150) 0 + +Class __pthread_internal_list + size=16 align=8 + base size=16 base align=8 +__pthread_internal_list (0x7f088df562a0) 0 + +Class random_data + size=48 align=8 + base size=48 base align=8 +random_data (0x7f088df56850) 0 + +Class drand48_data + size=24 align=8 + base size=24 base align=8 +drand48_data (0x7f088df568c0) 0 + +Class QVectorData + size=16 align=4 + base size=16 base align=4 +QVectorData (0x7f088df56930) 0 + +Class QContiguousCacheData + size=24 align=4 + base size=24 base align=4 +QContiguousCacheData (0x7f088dd15620) 0 + +Class QDebug::Stream + size=40 align=8 + base size=34 base align=8 +QDebug::Stream (0x7f088db75150) 0 + +Class QDebug + size=8 align=8 + base size=8 base align=8 +QDebug (0x7f088db750e0) 0 + +Class QNoDebug + size=1 align=1 + base size=0 base align=1 +QNoDebug (0x7f088dc230e0) 0 empty + +Vtable for QDirIterator +QDirIterator::_ZTV12QDirIterator: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QDirIterator) +16 QDirIterator::~QDirIterator +24 QDirIterator::~QDirIterator + +Class QDirIterator + size=16 align=8 + base size=16 base align=8 +QDirIterator (0x7f088dc34700) 0 + vptr=((& QDirIterator::_ZTV12QDirIterator) + 16u) + +Vtable for QFileSystemWatcher +QFileSystemWatcher::_ZTV18QFileSystemWatcher: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFileSystemWatcher) +16 QFileSystemWatcher::metaObject +24 QFileSystemWatcher::qt_metacast +32 QFileSystemWatcher::qt_metacall +40 QFileSystemWatcher::~QFileSystemWatcher +48 QFileSystemWatcher::~QFileSystemWatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QFileSystemWatcher + size=16 align=8 + base size=16 base align=8 +QFileSystemWatcher (0x7f088da8e540) 0 + vptr=((& QFileSystemWatcher::_ZTV18QFileSystemWatcher) + 16u) + QObject (0x7f088da8e5b0) 0 + primary-for QFileSystemWatcher (0x7f088da8e540) + +Vtable for QFSFileEngine +QFSFileEngine::_ZTV13QFSFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QFSFileEngine) +16 QFSFileEngine::~QFSFileEngine +24 QFSFileEngine::~QFSFileEngine +32 QFSFileEngine::open +40 QFSFileEngine::close +48 QFSFileEngine::flush +56 QFSFileEngine::size +64 QFSFileEngine::pos +72 QFSFileEngine::seek +80 QFSFileEngine::isSequential +88 QFSFileEngine::remove +96 QFSFileEngine::copy +104 QFSFileEngine::rename +112 QFSFileEngine::link +120 QFSFileEngine::mkdir +128 QFSFileEngine::rmdir +136 QFSFileEngine::setSize +144 QFSFileEngine::caseSensitive +152 QFSFileEngine::isRelativePath +160 QFSFileEngine::entryList +168 QFSFileEngine::fileFlags +176 QFSFileEngine::setPermissions +184 QFSFileEngine::fileName +192 QFSFileEngine::ownerId +200 QFSFileEngine::owner +208 QFSFileEngine::fileTime +216 QFSFileEngine::setFileName +224 QFSFileEngine::handle +232 QFSFileEngine::beginEntryList +240 QFSFileEngine::endEntryList +248 QFSFileEngine::read +256 QFSFileEngine::readLine +264 QFSFileEngine::write +272 QFSFileEngine::extension +280 QFSFileEngine::supportsExtension + +Class QFSFileEngine + size=16 align=8 + base size=16 base align=8 +QFSFileEngine (0x7f088daa1a80) 0 + vptr=((& QFSFileEngine::_ZTV13QFSFileEngine) + 16u) + QAbstractFileEngine (0x7f088daa1af0) 0 + primary-for QFSFileEngine (0x7f088daa1a80) + +Class QSharedData + size=4 align=4 + base size=4 base align=4 +QSharedData (0x7f088dab0e70) 0 + +Class QProcessEnvironment + size=8 align=8 + base size=8 base align=8 +QProcessEnvironment (0x7f088dafb1c0) 0 + +Vtable for QProcess +QProcess::_ZTV8QProcess: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QProcess) +16 QProcess::metaObject +24 QProcess::qt_metacast +32 QProcess::qt_metacall +40 QProcess::~QProcess +48 QProcess::~QProcess +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QProcess::isSequential +120 QIODevice::open +128 QProcess::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QProcess::atEnd +168 QIODevice::reset +176 QProcess::bytesAvailable +184 QProcess::bytesToWrite +192 QProcess::canReadLine +200 QProcess::waitForReadyRead +208 QProcess::waitForBytesWritten +216 QProcess::readData +224 QIODevice::readLineData +232 QProcess::writeData +240 QProcess::setupChildProcess + +Class QProcess + size=16 align=8 + base size=16 base align=8 +QProcess (0x7f088dafbcb0) 0 + vptr=((& QProcess::_ZTV8QProcess) + 16u) + QIODevice (0x7f088dafbd20) 0 + primary-for QProcess (0x7f088dafbcb0) + QObject (0x7f088dafbd90) 0 + primary-for QIODevice (0x7f088dafbd20) + +Class QResource + size=8 align=8 + base size=8 base align=8 +QResource (0x7f088db411c0) 0 + +Class QMetaType + size=1 align=1 + base size=0 base align=1 +QMetaType (0x7f088db41e70) 0 empty + +Class QVariant::PrivateShared + size=16 align=8 + base size=12 base align=8 +QVariant::PrivateShared (0x7f088da3f700) 0 + +Class QVariant::Private::Data + size=8 align=8 + base size=8 base align=8 +QVariant::Private::Data (0x7f088da3fa10) 0 + +Class QVariant::Private + size=16 align=8 + base size=12 base align=8 +QVariant::Private (0x7f088da3f7e0) 0 + +Class QVariant::Handler + size=72 align=8 + base size=72 base align=8 +QVariant::Handler (0x7f088da4f700) 0 + +Class QVariant + size=16 align=8 + base size=16 base align=8 +QVariant (0x7f088da0f7e0) 0 + +Class QVariantComparisonHelper + size=8 align=8 + base size=8 base align=8 +QVariantComparisonHelper (0x7f088d9009a0) 0 + +Vtable for QSettings +QSettings::_ZTV9QSettings: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QSettings) +16 QSettings::metaObject +24 QSettings::qt_metacast +32 QSettings::qt_metacall +40 QSettings::~QSettings +48 QSettings::~QSettings +56 QSettings::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSettings + size=16 align=8 + base size=16 base align=8 +QSettings (0x7f088d926ee0) 0 + vptr=((& QSettings::_ZTV9QSettings) + 16u) + QObject (0x7f088d926f50) 0 + primary-for QSettings (0x7f088d926ee0) + +Vtable for QTemporaryFile +QTemporaryFile::_ZTV14QTemporaryFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QTemporaryFile) +16 QTemporaryFile::metaObject +24 QTemporaryFile::qt_metacast +32 QTemporaryFile::qt_metacall +40 QTemporaryFile::~QTemporaryFile +48 QTemporaryFile::~QTemporaryFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QTemporaryFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QTemporaryFile::fileEngine + +Class QTemporaryFile + size=16 align=8 + base size=16 base align=8 +QTemporaryFile (0x7f088d7a82a0) 0 + vptr=((& QTemporaryFile::_ZTV14QTemporaryFile) + 16u) + QFile (0x7f088d7a8310) 0 + primary-for QTemporaryFile (0x7f088d7a82a0) + QIODevice (0x7f088d7a8380) 0 + primary-for QFile (0x7f088d7a8310) + QObject (0x7f088d7a83f0) 0 + primary-for QIODevice (0x7f088d7a8380) + +Class QUrl + size=8 align=8 + base size=8 base align=8 +QUrl (0x7f088d7c49a0) 0 + +Class QXmlStreamStringRef + size=16 align=8 + base size=16 base align=8 +QXmlStreamStringRef (0x7f088d852070) 0 + +Class QXmlStreamAttribute + size=80 align=8 + base size=73 base align=8 +QXmlStreamAttribute (0x7f088d66d850) 0 + +Class QXmlStreamAttributes + size=8 align=8 + base size=8 base align=8 +QXmlStreamAttributes (0x7f088d695310) 0 + QVector (0x7f088d695380) 0 + +Class QXmlStreamNamespaceDeclaration + size=40 align=8 + base size=40 base align=8 +QXmlStreamNamespaceDeclaration (0x7f088d6957e0) 0 + +Class QXmlStreamNotationDeclaration + size=56 align=8 + base size=56 base align=8 +QXmlStreamNotationDeclaration (0x7f088d6d61c0) 0 + +Class QXmlStreamEntityDeclaration + size=88 align=8 + base size=88 base align=8 +QXmlStreamEntityDeclaration (0x7f088d6f4070) 0 + +Vtable for QXmlStreamEntityResolver +QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QXmlStreamEntityResolver) +16 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +24 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +32 QXmlStreamEntityResolver::resolveEntity +40 QXmlStreamEntityResolver::resolveUndeclaredEntity + +Class QXmlStreamEntityResolver + size=8 align=8 + base size=8 base align=8 +QXmlStreamEntityResolver (0x7f088d7119a0) 0 nearly-empty + vptr=((& QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver) + 16u) + +Class QXmlStreamReader + size=8 align=8 + base size=8 base align=8 +QXmlStreamReader (0x7f088d711b60) 0 + +Class QXmlStreamWriter + size=8 align=8 + base size=8 base align=8 +QXmlStreamWriter (0x7f088d559c40) 0 + +Vtable for QAbstractState +QAbstractState::_ZTV14QAbstractState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QAbstractState) +16 QAbstractState::metaObject +24 QAbstractState::qt_metacast +32 QAbstractState::qt_metacall +40 QAbstractState::~QAbstractState +48 QAbstractState::~QAbstractState +56 QAbstractState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QAbstractState + size=16 align=8 + base size=16 base align=8 +QAbstractState (0x7f088d56ea80) 0 + vptr=((& QAbstractState::_ZTV14QAbstractState) + 16u) + QObject (0x7f088d56eaf0) 0 + primary-for QAbstractState (0x7f088d56ea80) + +Vtable for QAbstractTransition +QAbstractTransition::_ZTV19QAbstractTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractTransition) +16 QAbstractTransition::metaObject +24 QAbstractTransition::qt_metacast +32 QAbstractTransition::qt_metacall +40 QAbstractTransition::~QAbstractTransition +48 QAbstractTransition::~QAbstractTransition +56 QAbstractTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QAbstractTransition + size=16 align=8 + base size=16 base align=8 +QAbstractTransition (0x7f088d5952a0) 0 + vptr=((& QAbstractTransition::_ZTV19QAbstractTransition) + 16u) + QObject (0x7f088d595310) 0 + primary-for QAbstractTransition (0x7f088d5952a0) + +Vtable for QEvent +QEvent::_ZTV6QEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QEvent) +16 QEvent::~QEvent +24 QEvent::~QEvent + +Class QEvent + size=24 align=8 + base size=20 base align=8 +QEvent (0x7f088d5a8af0) 0 + vptr=((& QEvent::_ZTV6QEvent) + 16u) + +Vtable for QTimerEvent +QTimerEvent::_ZTV11QTimerEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTimerEvent) +16 QTimerEvent::~QTimerEvent +24 QTimerEvent::~QTimerEvent + +Class QTimerEvent + size=24 align=8 + base size=24 base align=8 +QTimerEvent (0x7f088d5cb700) 0 + vptr=((& QTimerEvent::_ZTV11QTimerEvent) + 16u) + QEvent (0x7f088d5cb770) 0 + primary-for QTimerEvent (0x7f088d5cb700) + +Vtable for QChildEvent +QChildEvent::_ZTV11QChildEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QChildEvent) +16 QChildEvent::~QChildEvent +24 QChildEvent::~QChildEvent + +Class QChildEvent + size=32 align=8 + base size=32 base align=8 +QChildEvent (0x7f088d5cbb60) 0 + vptr=((& QChildEvent::_ZTV11QChildEvent) + 16u) + QEvent (0x7f088d5cbbd0) 0 + primary-for QChildEvent (0x7f088d5cbb60) + +Vtable for QCustomEvent +QCustomEvent::_ZTV12QCustomEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QCustomEvent) +16 QCustomEvent::~QCustomEvent +24 QCustomEvent::~QCustomEvent + +Class QCustomEvent + size=24 align=8 + base size=20 base align=8 +QCustomEvent (0x7f088d5d4e00) 0 + vptr=((& QCustomEvent::_ZTV12QCustomEvent) + 16u) + QEvent (0x7f088d5d4e70) 0 + primary-for QCustomEvent (0x7f088d5d4e00) + +Vtable for QDynamicPropertyChangeEvent +QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QDynamicPropertyChangeEvent) +16 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent +24 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent + +Class QDynamicPropertyChangeEvent + size=32 align=8 + base size=32 base align=8 +QDynamicPropertyChangeEvent (0x7f088d5e5620) 0 + vptr=((& QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent) + 16u) + QEvent (0x7f088d5e5690) 0 + primary-for QDynamicPropertyChangeEvent (0x7f088d5e5620) + +Vtable for QEventTransition +QEventTransition::_ZTV16QEventTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QEventTransition) +16 QEventTransition::metaObject +24 QEventTransition::qt_metacast +32 QEventTransition::qt_metacall +40 QEventTransition::~QEventTransition +48 QEventTransition::~QEventTransition +56 QEventTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QEventTransition::eventTest +120 QEventTransition::onTransition + +Class QEventTransition + size=16 align=8 + base size=16 base align=8 +QEventTransition (0x7f088d5e5af0) 0 + vptr=((& QEventTransition::_ZTV16QEventTransition) + 16u) + QAbstractTransition (0x7f088d5e5b60) 0 + primary-for QEventTransition (0x7f088d5e5af0) + QObject (0x7f088d5e5bd0) 0 + primary-for QAbstractTransition (0x7f088d5e5b60) + +Vtable for QFinalState +QFinalState::_ZTV11QFinalState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFinalState) +16 QFinalState::metaObject +24 QFinalState::qt_metacast +32 QFinalState::qt_metacall +40 QFinalState::~QFinalState +48 QFinalState::~QFinalState +56 QFinalState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFinalState::onEntry +120 QFinalState::onExit + +Class QFinalState + size=16 align=8 + base size=16 base align=8 +QFinalState (0x7f088d6019a0) 0 + vptr=((& QFinalState::_ZTV11QFinalState) + 16u) + QAbstractState (0x7f088d601a10) 0 + primary-for QFinalState (0x7f088d6019a0) + QObject (0x7f088d601a80) 0 + primary-for QAbstractState (0x7f088d601a10) + +Vtable for QHistoryState +QHistoryState::_ZTV13QHistoryState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QHistoryState) +16 QHistoryState::metaObject +24 QHistoryState::qt_metacast +32 QHistoryState::qt_metacall +40 QHistoryState::~QHistoryState +48 QHistoryState::~QHistoryState +56 QHistoryState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QHistoryState::onEntry +120 QHistoryState::onExit + +Class QHistoryState + size=16 align=8 + base size=16 base align=8 +QHistoryState (0x7f088d61b230) 0 + vptr=((& QHistoryState::_ZTV13QHistoryState) + 16u) + QAbstractState (0x7f088d61b2a0) 0 + primary-for QHistoryState (0x7f088d61b230) + QObject (0x7f088d61b310) 0 + primary-for QAbstractState (0x7f088d61b2a0) + +Vtable for QSignalTransition +QSignalTransition::_ZTV17QSignalTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QSignalTransition) +16 QSignalTransition::metaObject +24 QSignalTransition::qt_metacast +32 QSignalTransition::qt_metacall +40 QSignalTransition::~QSignalTransition +48 QSignalTransition::~QSignalTransition +56 QSignalTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QSignalTransition::eventTest +120 QSignalTransition::onTransition + +Class QSignalTransition + size=16 align=8 + base size=16 base align=8 +QSignalTransition (0x7f088d62af50) 0 + vptr=((& QSignalTransition::_ZTV17QSignalTransition) + 16u) + QAbstractTransition (0x7f088d633000) 0 + primary-for QSignalTransition (0x7f088d62af50) + QObject (0x7f088d633070) 0 + primary-for QAbstractTransition (0x7f088d633000) + +Vtable for QState +QState::_ZTV6QState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QState) +16 QState::metaObject +24 QState::qt_metacast +32 QState::qt_metacall +40 QState::~QState +48 QState::~QState +56 QState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QState::onEntry +120 QState::onExit + +Class QState + size=16 align=8 + base size=16 base align=8 +QState (0x7f088d647af0) 0 + vptr=((& QState::_ZTV6QState) + 16u) + QAbstractState (0x7f088d647b60) 0 + primary-for QState (0x7f088d647af0) + QObject (0x7f088d647bd0) 0 + primary-for QAbstractState (0x7f088d647b60) + +Vtable for QStateMachine::SignalEvent +QStateMachine::SignalEvent::_ZTVN13QStateMachine11SignalEventE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN13QStateMachine11SignalEventE) +16 QStateMachine::SignalEvent::~SignalEvent +24 QStateMachine::SignalEvent::~SignalEvent + +Class QStateMachine::SignalEvent + size=48 align=8 + base size=48 base align=8 +QStateMachine::SignalEvent (0x7f088d46a150) 0 + vptr=((& QStateMachine::SignalEvent::_ZTVN13QStateMachine11SignalEventE) + 16u) + QEvent (0x7f088d46a1c0) 0 + primary-for QStateMachine::SignalEvent (0x7f088d46a150) + +Vtable for QStateMachine::WrappedEvent +QStateMachine::WrappedEvent::_ZTVN13QStateMachine12WrappedEventE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN13QStateMachine12WrappedEventE) +16 QStateMachine::WrappedEvent::~WrappedEvent +24 QStateMachine::WrappedEvent::~WrappedEvent + +Class QStateMachine::WrappedEvent + size=40 align=8 + base size=40 base align=8 +QStateMachine::WrappedEvent (0x7f088d46a700) 0 + vptr=((& QStateMachine::WrappedEvent::_ZTVN13QStateMachine12WrappedEventE) + 16u) + QEvent (0x7f088d46a770) 0 + primary-for QStateMachine::WrappedEvent (0x7f088d46a700) + +Vtable for QStateMachine +QStateMachine::_ZTV13QStateMachine: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QStateMachine) +16 QStateMachine::metaObject +24 QStateMachine::qt_metacast +32 QStateMachine::qt_metacall +40 QStateMachine::~QStateMachine +48 QStateMachine::~QStateMachine +56 QStateMachine::event +64 QStateMachine::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QStateMachine::onEntry +120 QStateMachine::onExit +128 QStateMachine::beginSelectTransitions +136 QStateMachine::endSelectTransitions +144 QStateMachine::beginMicrostep +152 QStateMachine::endMicrostep + +Class QStateMachine + size=16 align=8 + base size=16 base align=8 +QStateMachine (0x7f088d462ee0) 0 + vptr=((& QStateMachine::_ZTV13QStateMachine) + 16u) + QState (0x7f088d462f50) 0 + primary-for QStateMachine (0x7f088d462ee0) + QAbstractState (0x7f088d46a000) 0 + primary-for QState (0x7f088d462f50) + QObject (0x7f088d46a070) 0 + primary-for QAbstractState (0x7f088d46a000) + +Class QBitArray + size=8 align=8 + base size=8 base align=8 +QBitArray (0x7f088d49b150) 0 + +Class QBitRef + size=16 align=8 + base size=12 base align=8 +QBitRef (0x7f088d4f2e00) 0 + +Class QByteArrayMatcher::Data + size=272 align=8 + base size=272 base align=8 +QByteArrayMatcher::Data (0x7f088d505af0) 0 + +Class QByteArrayMatcher + size=1040 align=8 + base size=1040 base align=8 +QByteArrayMatcher (0x7f088d5054d0) 0 + +Class QCryptographicHash + size=8 align=8 + base size=8 base align=8 +QCryptographicHash (0x7f088d53b150) 0 + +Vtable for QtSharedPointer::ExternalRefCountData +QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN15QtSharedPointer20ExternalRefCountDataE) +16 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +24 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +32 QtSharedPointer::ExternalRefCountData::destroy + +Class QtSharedPointer::ExternalRefCountData + size=16 align=8 + base size=16 base align=8 +QtSharedPointer::ExternalRefCountData (0x7f088d366070) 0 + vptr=((& QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE) + 16u) + +Vtable for QtSharedPointer::ExternalRefCountWithDestroyFn +QtSharedPointer::ExternalRefCountWithDestroyFn::_ZTVN15QtSharedPointer29ExternalRefCountWithDestroyFnE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN15QtSharedPointer29ExternalRefCountWithDestroyFnE) +16 QtSharedPointer::ExternalRefCountWithDestroyFn::~ExternalRefCountWithDestroyFn +24 QtSharedPointer::ExternalRefCountWithDestroyFn::~ExternalRefCountWithDestroyFn +32 QtSharedPointer::ExternalRefCountWithDestroyFn::destroy + +Class QtSharedPointer::ExternalRefCountWithDestroyFn + size=24 align=8 + base size=24 base align=8 +QtSharedPointer::ExternalRefCountWithDestroyFn (0x7f088d37f930) 0 + vptr=((& QtSharedPointer::ExternalRefCountWithDestroyFn::_ZTVN15QtSharedPointer29ExternalRefCountWithDestroyFnE) + 16u) + QtSharedPointer::ExternalRefCountData (0x7f088d37f9a0) 0 + primary-for QtSharedPointer::ExternalRefCountWithDestroyFn (0x7f088d37f930) + +Class QDate + size=4 align=4 + base size=4 base align=4 +QDate (0x7f088d4045b0) 0 + +Class QTime + size=4 align=4 + base size=4 base align=4 +QTime (0x7f088d435540) 0 + +Class QDateTime + size=8 align=8 + base size=8 base align=8 +QDateTime (0x7f088d451af0) 0 + +Class QEasingCurve + size=8 align=8 + base size=8 base align=8 +QEasingCurve (0x7f088d297000) 0 + +Class QPoint + size=8 align=4 + base size=8 base align=4 +QPoint (0x7f088d297ee0) 0 + +Class QPointF + size=16 align=8 + base size=16 base align=8 +QPointF (0x7f088d2daaf0) 0 + +Class QLine + size=16 align=4 + base size=16 base align=4 +QLine (0x7f088d318af0) 0 + +Class QLineF + size=32 align=8 + base size=32 base align=8 +QLineF (0x7f088d3549a0) 0 + +Class QLinkedListData + size=32 align=8 + base size=32 base align=8 +QLinkedListData (0x7f088d1a9460) 0 + +Class QMargins + size=16 align=4 + base size=16 base align=4 +QMargins (0x7f088d067380) 0 + +Class QSize + size=8 align=4 + base size=8 base align=4 +QSize (0x7f088d096150) 0 + +Class QSizeF + size=16 align=8 + base size=16 base align=8 +QSizeF (0x7f088d0d5e00) 0 + +Class QRect + size=16 align=4 + base size=16 base align=4 +QRect (0x7f088d12b380) 0 + +Class QRectF + size=32 align=8 + base size=32 base align=8 +QRectF (0x7f088cfd7d20) 0 + +Class QLatin1Literal + size=16 align=8 + base size=16 base align=8 +QLatin1Literal (0x7f088ce85ee0) 0 + +Class QAbstractConcatenable + size=1 align=1 + base size=0 base align=1 +QAbstractConcatenable (0x7f088ce973f0) 0 empty + +Class QTextBoundaryFinder + size=48 align=8 + base size=48 base align=8 +QTextBoundaryFinder (0x7f088cece380) 0 + +Vtable for QTimeLine +QTimeLine::_ZTV9QTimeLine: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTimeLine) +16 QTimeLine::metaObject +24 QTimeLine::qt_metacast +32 QTimeLine::qt_metacall +40 QTimeLine::~QTimeLine +48 QTimeLine::~QTimeLine +56 QObject::event +64 QObject::eventFilter +72 QTimeLine::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTimeLine::valueForTime + +Class QTimeLine + size=16 align=8 + base size=16 base align=8 +QTimeLine (0x7f088cedf700) 0 + vptr=((& QTimeLine::_ZTV9QTimeLine) + 16u) + QObject (0x7f088cedf770) 0 + primary-for QTimeLine (0x7f088cedf700) + +Vtable for QRunnable +QRunnable::_ZTV9QRunnable: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QRunnable) +16 __cxa_pure_virtual +24 QRunnable::~QRunnable +32 QRunnable::~QRunnable + +Class QRunnable + size=16 align=8 + base size=12 base align=8 +QRunnable (0x7f088cf06f50) 0 + vptr=((& QRunnable::_ZTV9QRunnable) + 16u) + +Class QMutex + size=8 align=8 + base size=8 base align=8 +QMutex (0x7f088cf3d620) 0 + +Class QMutexLocker + size=8 align=8 + base size=8 base align=8 +QMutexLocker (0x7f088cf4b1c0) 0 + +Vtable for QtConcurrent::Exception +QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent9ExceptionE) +16 QtConcurrent::Exception::~Exception +24 QtConcurrent::Exception::~Exception +32 std::exception::what +40 QtConcurrent::Exception::raise +48 QtConcurrent::Exception::clone + +Class QtConcurrent::Exception + size=8 align=8 + base size=8 base align=8 +QtConcurrent::Exception (0x7f088cd614d0) 0 nearly-empty + vptr=((& QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE) + 16u) + std::exception (0x7f088cd61540) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7f088cd614d0) + +Vtable for QtConcurrent::UnhandledException +QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent18UnhandledExceptionE) +16 QtConcurrent::UnhandledException::~UnhandledException +24 QtConcurrent::UnhandledException::~UnhandledException +32 std::exception::what +40 QtConcurrent::UnhandledException::raise +48 QtConcurrent::UnhandledException::clone + +Class QtConcurrent::UnhandledException + size=8 align=8 + base size=8 base align=8 +QtConcurrent::UnhandledException (0x7f088cd61770) 0 nearly-empty + vptr=((& QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE) + 16u) + QtConcurrent::Exception (0x7f088cd617e0) 0 nearly-empty + primary-for QtConcurrent::UnhandledException (0x7f088cd61770) + std::exception (0x7f088cd61850) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7f088cd617e0) + +Class QtConcurrent::internal::ExceptionHolder + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionHolder (0x7f088cd61a80) 0 + +Class QtConcurrent::internal::ExceptionStore + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionStore (0x7f088cd61e00) 0 + +Class QtConcurrent::ResultItem + size=16 align=8 + base size=16 base align=8 +QtConcurrent::ResultItem (0x7f088cd61e70) 0 + +Class QtConcurrent::ResultIteratorBase + size=16 align=8 + base size=12 base align=8 +QtConcurrent::ResultIteratorBase (0x7f088cd7bd90) 0 + +Vtable for QtConcurrent::ResultStoreBase +QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent15ResultStoreBaseE) +16 QtConcurrent::ResultStoreBase::~ResultStoreBase +24 QtConcurrent::ResultStoreBase::~ResultStoreBase + +Class QtConcurrent::ResultStoreBase + size=48 align=8 + base size=44 base align=8 +QtConcurrent::ResultStoreBase (0x7f088cd7f930) 0 + vptr=((& QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE) + 16u) + +Vtable for QFutureInterfaceBase +QFutureInterfaceBase::_ZTV20QFutureInterfaceBase: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QFutureInterfaceBase) +16 QFutureInterfaceBase::~QFutureInterfaceBase +24 QFutureInterfaceBase::~QFutureInterfaceBase + +Class QFutureInterfaceBase + size=16 align=8 + base size=16 base align=8 +QFutureInterfaceBase (0x7f088cdbdd90) 0 + vptr=((& QFutureInterfaceBase::_ZTV20QFutureInterfaceBase) + 16u) + +Vtable for QFutureWatcherBase +QFutureWatcherBase::_ZTV18QFutureWatcherBase: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFutureWatcherBase) +16 QFutureWatcherBase::metaObject +24 QFutureWatcherBase::qt_metacast +32 QFutureWatcherBase::qt_metacall +40 QFutureWatcherBase::~QFutureWatcherBase +48 QFutureWatcherBase::~QFutureWatcherBase +56 QFutureWatcherBase::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QFutureWatcherBase::connectNotify +104 QFutureWatcherBase::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QFutureWatcherBase + size=16 align=8 + base size=16 base align=8 +QFutureWatcherBase (0x7f088cca3690) 0 + vptr=((& QFutureWatcherBase::_ZTV18QFutureWatcherBase) + 16u) + QObject (0x7f088cca3700) 0 + primary-for QFutureWatcherBase (0x7f088cca3690) + +Vtable for QThread +QThread::_ZTV7QThread: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QThread) +16 QThread::metaObject +24 QThread::qt_metacast +32 QThread::qt_metacall +40 QThread::~QThread +48 QThread::~QThread +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QThread::run + +Class QThread + size=16 align=8 + base size=16 base align=8 +QThread (0x7f088ccf5a80) 0 + vptr=((& QThread::_ZTV7QThread) + 16u) + QObject (0x7f088ccf5af0) 0 + primary-for QThread (0x7f088ccf5a80) + +Vtable for QThreadPool +QThreadPool::_ZTV11QThreadPool: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QThreadPool) +16 QThreadPool::metaObject +24 QThreadPool::qt_metacast +32 QThreadPool::qt_metacall +40 QThreadPool::~QThreadPool +48 QThreadPool::~QThreadPool +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QThreadPool + size=16 align=8 + base size=16 base align=8 +QThreadPool (0x7f088cd1b930) 0 + vptr=((& QThreadPool::_ZTV11QThreadPool) + 16u) + QObject (0x7f088cd1b9a0) 0 + primary-for QThreadPool (0x7f088cd1b930) + +Class QWaitCondition + size=8 align=8 + base size=8 base align=8 +QWaitCondition (0x7f088cd2cee0) 0 + +Class QSemaphore + size=8 align=8 + base size=8 base align=8 +QSemaphore (0x7f088cd35460) 0 + +Class QtConcurrent::ThreadEngineBarrier + size=24 align=8 + base size=24 base align=8 +QtConcurrent::ThreadEngineBarrier (0x7f088cd359a0) 0 + +Vtable for QtConcurrent::ThreadEngineBase +QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent16ThreadEngineBaseE) +16 QtConcurrent::ThreadEngineBase::run +24 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +32 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +40 QtConcurrent::ThreadEngineBase::start +48 QtConcurrent::ThreadEngineBase::finish +56 QtConcurrent::ThreadEngineBase::threadFunction +64 QtConcurrent::ThreadEngineBase::shouldStartThread +72 QtConcurrent::ThreadEngineBase::shouldThrottleThread +80 __cxa_pure_virtual + +Class QtConcurrent::ThreadEngineBase + size=64 align=8 + base size=64 base align=8 +QtConcurrent::ThreadEngineBase (0x7f088cd35a80) 0 + vptr=((& QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE) + 16u) + QRunnable (0x7f088cd35af0) 0 + primary-for QtConcurrent::ThreadEngineBase (0x7f088cd35a80) + +VTT for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTTN12QtConcurrent12ThreadEngineIvEE: 2u entries +0 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 24u) +8 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 136u) + +Class QtConcurrent::BlockSizeManager + size=96 align=8 + base size=92 base align=8 +QtConcurrent::BlockSizeManager (0x7f088cb82ee0) 0 + +Vtable for QFactoryInterface +QFactoryInterface::_ZTV17QFactoryInterface: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QFactoryInterface) +16 QFactoryInterface::~QFactoryInterface +24 QFactoryInterface::~QFactoryInterface +32 __cxa_pure_virtual + +Class QFactoryInterface + size=8 align=8 + base size=8 base align=8 +QFactoryInterface (0x7f088c825d20) 0 nearly-empty + vptr=((& QFactoryInterface::_ZTV17QFactoryInterface) + 16u) + +Vtable for QTextCodecFactoryInterface +QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QTextCodecFactoryInterface) +16 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +24 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QTextCodecFactoryInterface + size=8 align=8 + base size=8 base align=8 +QTextCodecFactoryInterface (0x7f088c657000) 0 nearly-empty + vptr=((& QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface) + 16u) + QFactoryInterface (0x7f088c657070) 0 nearly-empty + primary-for QTextCodecFactoryInterface (0x7f088c657000) + +Vtable for QTextCodecPlugin +QTextCodecPlugin::_ZTV16QTextCodecPlugin: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QTextCodecPlugin) +16 QTextCodecPlugin::metaObject +24 QTextCodecPlugin::qt_metacast +32 QTextCodecPlugin::qt_metacall +40 QTextCodecPlugin::~QTextCodecPlugin +48 QTextCodecPlugin::~QTextCodecPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 QTextCodecPlugin::keys +160 QTextCodecPlugin::create +168 (int (*)(...))-0x00000000000000010 +176 (int (*)(...))(& _ZTI16QTextCodecPlugin) +184 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD1Ev +192 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD0Ev +200 QTextCodecPlugin::_ZThn16_NK16QTextCodecPlugin4keysEv +208 QTextCodecPlugin::_ZThn16_N16QTextCodecPlugin6createERK7QString + +Class QTextCodecPlugin + size=24 align=8 + base size=24 base align=8 +QTextCodecPlugin (0x7f088c661580) 0 + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 16u) + QObject (0x7f088c657a80) 0 + primary-for QTextCodecPlugin (0x7f088c661580) + QTextCodecFactoryInterface (0x7f088c657af0) 16 nearly-empty + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 184u) + QFactoryInterface (0x7f088c657b60) 16 nearly-empty + primary-for QTextCodecFactoryInterface (0x7f088c657af0) + +Class QLibraryInfo + size=1 align=1 + base size=0 base align=1 +QLibraryInfo (0x7f088c6ad150) 0 empty + +Vtable for QEventLoop +QEventLoop::_ZTV10QEventLoop: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QEventLoop) +16 QEventLoop::metaObject +24 QEventLoop::qt_metacast +32 QEventLoop::qt_metacall +40 QEventLoop::~QEventLoop +48 QEventLoop::~QEventLoop +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QEventLoop + size=16 align=8 + base size=16 base align=8 +QEventLoop (0x7f088c6ad2a0) 0 + vptr=((& QEventLoop::_ZTV10QEventLoop) + 16u) + QObject (0x7f088c6ad310) 0 + primary-for QEventLoop (0x7f088c6ad2a0) + +Vtable for QAbstractEventDispatcher +QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QAbstractEventDispatcher) +16 QAbstractEventDispatcher::metaObject +24 QAbstractEventDispatcher::qt_metacast +32 QAbstractEventDispatcher::qt_metacall +40 QAbstractEventDispatcher::~QAbstractEventDispatcher +48 QAbstractEventDispatcher::~QAbstractEventDispatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 QAbstractEventDispatcher::startingUp +208 QAbstractEventDispatcher::closingDown + +Class QAbstractEventDispatcher + size=16 align=8 + base size=16 base align=8 +QAbstractEventDispatcher (0x7f088c6e8bd0) 0 + vptr=((& QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher) + 16u) + QObject (0x7f088c6e8c40) 0 + primary-for QAbstractEventDispatcher (0x7f088c6e8bd0) + +Class QModelIndex + size=24 align=8 + base size=24 base align=8 +QModelIndex (0x7f088c70ea80) 0 + +Class QPersistentModelIndex + size=8 align=8 + base size=8 base align=8 +QPersistentModelIndex (0x7f088c739540) 0 + +Vtable for QAbstractItemModel +QAbstractItemModel::_ZTV18QAbstractItemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractItemModel) +16 QAbstractItemModel::metaObject +24 QAbstractItemModel::qt_metacast +32 QAbstractItemModel::qt_metacall +40 QAbstractItemModel::~QAbstractItemModel +48 QAbstractItemModel::~QAbstractItemModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractItemModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractItemModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractItemModel + size=16 align=8 + base size=16 base align=8 +QAbstractItemModel (0x7f088c743850) 0 + vptr=((& QAbstractItemModel::_ZTV18QAbstractItemModel) + 16u) + QObject (0x7f088c7438c0) 0 + primary-for QAbstractItemModel (0x7f088c743850) + +Vtable for QAbstractTableModel +QAbstractTableModel::_ZTV19QAbstractTableModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractTableModel) +16 QAbstractTableModel::metaObject +24 QAbstractTableModel::qt_metacast +32 QAbstractTableModel::qt_metacall +40 QAbstractTableModel::~QAbstractTableModel +48 QAbstractTableModel::~QAbstractTableModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractTableModel::index +120 QAbstractTableModel::parent +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractTableModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractTableModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractTableModel + size=16 align=8 + base size=16 base align=8 +QAbstractTableModel (0x7f088c59eb60) 0 + vptr=((& QAbstractTableModel::_ZTV19QAbstractTableModel) + 16u) + QAbstractItemModel (0x7f088c59ebd0) 0 + primary-for QAbstractTableModel (0x7f088c59eb60) + QObject (0x7f088c59ec40) 0 + primary-for QAbstractItemModel (0x7f088c59ebd0) + +Vtable for QAbstractListModel +QAbstractListModel::_ZTV18QAbstractListModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractListModel) +16 QAbstractListModel::metaObject +24 QAbstractListModel::qt_metacast +32 QAbstractListModel::qt_metacall +40 QAbstractListModel::~QAbstractListModel +48 QAbstractListModel::~QAbstractListModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractListModel::index +120 QAbstractListModel::parent +128 __cxa_pure_virtual +136 QAbstractListModel::columnCount +144 QAbstractListModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractListModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractListModel + size=16 align=8 + base size=16 base align=8 +QAbstractListModel (0x7f088c5bb0e0) 0 + vptr=((& QAbstractListModel::_ZTV18QAbstractListModel) + 16u) + QAbstractItemModel (0x7f088c5bb150) 0 + primary-for QAbstractListModel (0x7f088c5bb0e0) + QObject (0x7f088c5bb1c0) 0 + primary-for QAbstractItemModel (0x7f088c5bb150) + +Class QBasicTimer + size=4 align=4 + base size=4 base align=4 +QBasicTimer (0x7f088c5eb230) 0 + +Vtable for QCoreApplication +QCoreApplication::_ZTV16QCoreApplication: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QCoreApplication) +16 QCoreApplication::metaObject +24 QCoreApplication::qt_metacast +32 QCoreApplication::qt_metacall +40 QCoreApplication::~QCoreApplication +48 QCoreApplication::~QCoreApplication +56 QCoreApplication::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCoreApplication::notify +120 QCoreApplication::compressEvent + +Class QCoreApplication + size=16 align=8 + base size=16 base align=8 +QCoreApplication (0x7f088c5f8620) 0 + vptr=((& QCoreApplication::_ZTV16QCoreApplication) + 16u) + QObject (0x7f088c5f8690) 0 + primary-for QCoreApplication (0x7f088c5f8620) + +Class __exception + size=40 align=8 + base size=40 base align=8 +__exception (0x7f088c62b310) 0 + +Class QMetaMethod + size=16 align=8 + base size=12 base align=8 +QMetaMethod (0x7f088c497770) 0 + +Class QMetaEnum + size=16 align=8 + base size=12 base align=8 +QMetaEnum (0x7f088c4b3bd0) 0 + +Class QMetaProperty + size=32 align=8 + base size=32 base align=8 +QMetaProperty (0x7f088c4c3930) 0 + +Class QMetaClassInfo + size=16 align=8 + base size=12 base align=8 +QMetaClassInfo (0x7f088c4d4000) 0 + +Vtable for QMimeData +QMimeData::_ZTV9QMimeData: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QMimeData) +16 QMimeData::metaObject +24 QMimeData::qt_metacast +32 QMimeData::qt_metacall +40 QMimeData::~QMimeData +48 QMimeData::~QMimeData +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMimeData::hasFormat +120 QMimeData::formats +128 QMimeData::retrieveData + +Class QMimeData + size=16 align=8 + base size=16 base align=8 +QMimeData (0x7f088c4d4af0) 0 + vptr=((& QMimeData::_ZTV9QMimeData) + 16u) + QObject (0x7f088c4d4b60) 0 + primary-for QMimeData (0x7f088c4d4af0) + +Vtable for QObjectCleanupHandler +QObjectCleanupHandler::_ZTV21QObjectCleanupHandler: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QObjectCleanupHandler) +16 QObjectCleanupHandler::metaObject +24 QObjectCleanupHandler::qt_metacast +32 QObjectCleanupHandler::qt_metacall +40 QObjectCleanupHandler::~QObjectCleanupHandler +48 QObjectCleanupHandler::~QObjectCleanupHandler +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObjectCleanupHandler + size=24 align=8 + base size=24 base align=8 +QObjectCleanupHandler (0x7f088c4f7380) 0 + vptr=((& QObjectCleanupHandler::_ZTV21QObjectCleanupHandler) + 16u) + QObject (0x7f088c4f73f0) 0 + primary-for QObjectCleanupHandler (0x7f088c4f7380) + +Vtable for QSharedMemory +QSharedMemory::_ZTV13QSharedMemory: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSharedMemory) +16 QSharedMemory::metaObject +24 QSharedMemory::qt_metacast +32 QSharedMemory::qt_metacall +40 QSharedMemory::~QSharedMemory +48 QSharedMemory::~QSharedMemory +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSharedMemory + size=16 align=8 + base size=16 base align=8 +QSharedMemory (0x7f088c5074d0) 0 + vptr=((& QSharedMemory::_ZTV13QSharedMemory) + 16u) + QObject (0x7f088c507540) 0 + primary-for QSharedMemory (0x7f088c5074d0) + +Vtable for QSignalMapper +QSignalMapper::_ZTV13QSignalMapper: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSignalMapper) +16 QSignalMapper::metaObject +24 QSignalMapper::qt_metacast +32 QSignalMapper::qt_metacall +40 QSignalMapper::~QSignalMapper +48 QSignalMapper::~QSignalMapper +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSignalMapper + size=16 align=8 + base size=16 base align=8 +QSignalMapper (0x7f088c5232a0) 0 + vptr=((& QSignalMapper::_ZTV13QSignalMapper) + 16u) + QObject (0x7f088c523310) 0 + primary-for QSignalMapper (0x7f088c5232a0) + +Vtable for QSocketNotifier +QSocketNotifier::_ZTV15QSocketNotifier: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSocketNotifier) +16 QSocketNotifier::metaObject +24 QSocketNotifier::qt_metacast +32 QSocketNotifier::qt_metacall +40 QSocketNotifier::~QSocketNotifier +48 QSocketNotifier::~QSocketNotifier +56 QSocketNotifier::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSocketNotifier + size=32 align=8 + base size=25 base align=8 +QSocketNotifier (0x7f088c53e690) 0 + vptr=((& QSocketNotifier::_ZTV15QSocketNotifier) + 16u) + QObject (0x7f088c53e700) 0 + primary-for QSocketNotifier (0x7f088c53e690) + +Class QSystemSemaphore + size=8 align=8 + base size=8 base align=8 +QSystemSemaphore (0x7f088c358a10) 0 + +Vtable for QTimer +QTimer::_ZTV6QTimer: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QTimer) +16 QTimer::metaObject +24 QTimer::qt_metacast +32 QTimer::qt_metacall +40 QTimer::~QTimer +48 QTimer::~QTimer +56 QObject::event +64 QObject::eventFilter +72 QTimer::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTimer + size=32 align=8 + base size=29 base align=8 +QTimer (0x7f088c363460) 0 + vptr=((& QTimer::_ZTV6QTimer) + 16u) + QObject (0x7f088c3634d0) 0 + primary-for QTimer (0x7f088c363460) + +Vtable for QTranslator +QTranslator::_ZTV11QTranslator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTranslator) +16 QTranslator::metaObject +24 QTranslator::qt_metacast +32 QTranslator::qt_metacall +40 QTranslator::~QTranslator +48 QTranslator::~QTranslator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTranslator::translate +120 QTranslator::isEmpty + +Class QTranslator + size=16 align=8 + base size=16 base align=8 +QTranslator (0x7f088c3889a0) 0 + vptr=((& QTranslator::_ZTV11QTranslator) + 16u) + QObject (0x7f088c388a10) 0 + primary-for QTranslator (0x7f088c3889a0) + +Vtable for QLibrary +QLibrary::_ZTV8QLibrary: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QLibrary) +16 QLibrary::metaObject +24 QLibrary::qt_metacast +32 QLibrary::qt_metacall +40 QLibrary::~QLibrary +48 QLibrary::~QLibrary +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QLibrary + size=32 align=8 + base size=25 base align=8 +QLibrary (0x7f088c3a3930) 0 + vptr=((& QLibrary::_ZTV8QLibrary) + 16u) + QObject (0x7f088c3a39a0) 0 + primary-for QLibrary (0x7f088c3a3930) + +Vtable for QPluginLoader +QPluginLoader::_ZTV13QPluginLoader: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QPluginLoader) +16 QPluginLoader::metaObject +24 QPluginLoader::qt_metacast +32 QPluginLoader::qt_metacall +40 QPluginLoader::~QPluginLoader +48 QPluginLoader::~QPluginLoader +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QPluginLoader + size=32 align=8 + base size=25 base align=8 +QPluginLoader (0x7f088c3ef3f0) 0 + vptr=((& QPluginLoader::_ZTV13QPluginLoader) + 16u) + QObject (0x7f088c3ef460) 0 + primary-for QPluginLoader (0x7f088c3ef3f0) + +Class QUuid + size=16 align=4 + base size=16 base align=4 +QUuid (0x7f088c3feb60) 0 + +Class QReadWriteLock + size=8 align=8 + base size=8 base align=8 +QReadWriteLock (0x7f088c4254d0) 0 + +Class QReadLocker + size=8 align=8 + base size=8 base align=8 +QReadLocker (0x7f088c425b60) 0 + +Class QWriteLocker + size=8 align=8 + base size=8 base align=8 +QWriteLocker (0x7f088c444ee0) 0 + +Class QThreadStorageData + size=4 align=4 + base size=4 base align=4 +QThreadStorageData (0x7f088c25d2a0) 0 + +Vtable for QAbstractAnimation +QAbstractAnimation::_ZTV18QAbstractAnimation: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractAnimation) +16 QAbstractAnimation::metaObject +24 QAbstractAnimation::qt_metacast +32 QAbstractAnimation::qt_metacall +40 QAbstractAnimation::~QAbstractAnimation +48 QAbstractAnimation::~QAbstractAnimation +56 QAbstractAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAbstractAnimation::updateState +136 QAbstractAnimation::updateDirection + +Class QAbstractAnimation + size=16 align=8 + base size=16 base align=8 +QAbstractAnimation (0x7f088c25da10) 0 + vptr=((& QAbstractAnimation::_ZTV18QAbstractAnimation) + 16u) + QObject (0x7f088c25da80) 0 + primary-for QAbstractAnimation (0x7f088c25da10) + +Vtable for QAnimationGroup +QAnimationGroup::_ZTV15QAnimationGroup: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QAnimationGroup) +16 QAnimationGroup::metaObject +24 QAnimationGroup::qt_metacast +32 QAnimationGroup::qt_metacall +40 QAnimationGroup::~QAnimationGroup +48 QAnimationGroup::~QAnimationGroup +56 QAnimationGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAbstractAnimation::updateState +136 QAbstractAnimation::updateDirection + +Class QAnimationGroup + size=16 align=8 + base size=16 base align=8 +QAnimationGroup (0x7f088c295150) 0 + vptr=((& QAnimationGroup::_ZTV15QAnimationGroup) + 16u) + QAbstractAnimation (0x7f088c2951c0) 0 + primary-for QAnimationGroup (0x7f088c295150) + QObject (0x7f088c295230) 0 + primary-for QAbstractAnimation (0x7f088c2951c0) + +Vtable for QParallelAnimationGroup +QParallelAnimationGroup::_ZTV23QParallelAnimationGroup: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QParallelAnimationGroup) +16 QParallelAnimationGroup::metaObject +24 QParallelAnimationGroup::qt_metacast +32 QParallelAnimationGroup::qt_metacall +40 QParallelAnimationGroup::~QParallelAnimationGroup +48 QParallelAnimationGroup::~QParallelAnimationGroup +56 QParallelAnimationGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QParallelAnimationGroup::duration +120 QParallelAnimationGroup::updateCurrentTime +128 QParallelAnimationGroup::updateState +136 QParallelAnimationGroup::updateDirection + +Class QParallelAnimationGroup + size=16 align=8 + base size=16 base align=8 +QParallelAnimationGroup (0x7f088c2af000) 0 + vptr=((& QParallelAnimationGroup::_ZTV23QParallelAnimationGroup) + 16u) + QAnimationGroup (0x7f088c2af070) 0 + primary-for QParallelAnimationGroup (0x7f088c2af000) + QAbstractAnimation (0x7f088c2af0e0) 0 + primary-for QAnimationGroup (0x7f088c2af070) + QObject (0x7f088c2af150) 0 + primary-for QAbstractAnimation (0x7f088c2af0e0) + +Vtable for QPauseAnimation +QPauseAnimation::_ZTV15QPauseAnimation: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QPauseAnimation) +16 QPauseAnimation::metaObject +24 QPauseAnimation::qt_metacast +32 QPauseAnimation::qt_metacall +40 QPauseAnimation::~QPauseAnimation +48 QPauseAnimation::~QPauseAnimation +56 QPauseAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QPauseAnimation::duration +120 QPauseAnimation::updateCurrentTime +128 QAbstractAnimation::updateState +136 QAbstractAnimation::updateDirection + +Class QPauseAnimation + size=16 align=8 + base size=16 base align=8 +QPauseAnimation (0x7f088c2bde70) 0 + vptr=((& QPauseAnimation::_ZTV15QPauseAnimation) + 16u) + QAbstractAnimation (0x7f088c2bdee0) 0 + primary-for QPauseAnimation (0x7f088c2bde70) + QObject (0x7f088c2bdf50) 0 + primary-for QAbstractAnimation (0x7f088c2bdee0) + +Vtable for QVariantAnimation +QVariantAnimation::_ZTV17QVariantAnimation: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QVariantAnimation) +16 QVariantAnimation::metaObject +24 QVariantAnimation::qt_metacast +32 QVariantAnimation::qt_metacall +40 QVariantAnimation::~QVariantAnimation +48 QVariantAnimation::~QVariantAnimation +56 QVariantAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QVariantAnimation::duration +120 QVariantAnimation::updateCurrentTime +128 QVariantAnimation::updateState +136 QAbstractAnimation::updateDirection +144 __cxa_pure_virtual +152 QVariantAnimation::interpolated + +Class QVariantAnimation + size=16 align=8 + base size=16 base align=8 +QVariantAnimation (0x7f088c2da8c0) 0 + vptr=((& QVariantAnimation::_ZTV17QVariantAnimation) + 16u) + QAbstractAnimation (0x7f088c2da930) 0 + primary-for QVariantAnimation (0x7f088c2da8c0) + QObject (0x7f088c2da9a0) 0 + primary-for QAbstractAnimation (0x7f088c2da930) + +Vtable for QPropertyAnimation +QPropertyAnimation::_ZTV18QPropertyAnimation: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QPropertyAnimation) +16 QPropertyAnimation::metaObject +24 QPropertyAnimation::qt_metacast +32 QPropertyAnimation::qt_metacall +40 QPropertyAnimation::~QPropertyAnimation +48 QPropertyAnimation::~QPropertyAnimation +56 QPropertyAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QVariantAnimation::duration +120 QVariantAnimation::updateCurrentTime +128 QPropertyAnimation::updateState +136 QAbstractAnimation::updateDirection +144 QPropertyAnimation::updateCurrentValue +152 QVariantAnimation::interpolated + +Class QPropertyAnimation + size=16 align=8 + base size=16 base align=8 +QPropertyAnimation (0x7f088c2f8b60) 0 + vptr=((& QPropertyAnimation::_ZTV18QPropertyAnimation) + 16u) + QVariantAnimation (0x7f088c2f8bd0) 0 + primary-for QPropertyAnimation (0x7f088c2f8b60) + QAbstractAnimation (0x7f088c2f8c40) 0 + primary-for QVariantAnimation (0x7f088c2f8bd0) + QObject (0x7f088c2f8cb0) 0 + primary-for QAbstractAnimation (0x7f088c2f8c40) + +Vtable for QSequentialAnimationGroup +QSequentialAnimationGroup::_ZTV25QSequentialAnimationGroup: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QSequentialAnimationGroup) +16 QSequentialAnimationGroup::metaObject +24 QSequentialAnimationGroup::qt_metacast +32 QSequentialAnimationGroup::qt_metacall +40 QSequentialAnimationGroup::~QSequentialAnimationGroup +48 QSequentialAnimationGroup::~QSequentialAnimationGroup +56 QSequentialAnimationGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QSequentialAnimationGroup::duration +120 QSequentialAnimationGroup::updateCurrentTime +128 QSequentialAnimationGroup::updateState +136 QSequentialAnimationGroup::updateDirection + +Class QSequentialAnimationGroup + size=16 align=8 + base size=16 base align=8 +QSequentialAnimationGroup (0x7f088c312b60) 0 + vptr=((& QSequentialAnimationGroup::_ZTV25QSequentialAnimationGroup) + 16u) + QAnimationGroup (0x7f088c312bd0) 0 + primary-for QSequentialAnimationGroup (0x7f088c312b60) + QAbstractAnimation (0x7f088c312c40) 0 + primary-for QAnimationGroup (0x7f088c312bd0) + QObject (0x7f088c312cb0) 0 + primary-for QAbstractAnimation (0x7f088c312c40) + +Vtable for QDBusAbstractAdaptor +QDBusAbstractAdaptor::_ZTV20QDBusAbstractAdaptor: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QDBusAbstractAdaptor) +16 QDBusAbstractAdaptor::metaObject +24 QDBusAbstractAdaptor::qt_metacast +32 QDBusAbstractAdaptor::qt_metacall +40 QDBusAbstractAdaptor::~QDBusAbstractAdaptor +48 QDBusAbstractAdaptor::~QDBusAbstractAdaptor +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QDBusAbstractAdaptor + size=16 align=8 + base size=16 base align=8 +QDBusAbstractAdaptor (0x7f088c32abd0) 0 + vptr=((& QDBusAbstractAdaptor::_ZTV20QDBusAbstractAdaptor) + 16u) + QObject (0x7f088c32ac40) 0 + primary-for QDBusAbstractAdaptor (0x7f088c32abd0) + +Class QDBusError + size=32 align=8 + base size=32 base align=8 +QDBusError (0x7f088c345070) 0 + +Class QDBusMessage + size=8 align=8 + base size=8 base align=8 +QDBusMessage (0x7f088c345af0) 0 + +Class QDBusObjectPath + size=8 align=8 + base size=8 base align=8 +QDBusObjectPath (0x7f088c159770) 0 + QString (0x7f088c1597e0) 0 + +Class QDBusSignature + size=8 align=8 + base size=8 base align=8 +QDBusSignature (0x7f088c185690) 0 + QString (0x7f088c185700) 0 + +Class QDBusVariant + size=16 align=8 + base size=16 base align=8 +QDBusVariant (0x7f088c1cf5b0) 0 + QVariant (0x7f088c1cf620) 0 + +Class QDBusConnection + size=8 align=8 + base size=8 base align=8 +QDBusConnection (0x7f088c22b070) 0 + +Vtable for QDBusAbstractInterfaceBase +QDBusAbstractInterfaceBase::_ZTV26QDBusAbstractInterfaceBase: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QDBusAbstractInterfaceBase) +16 QObject::metaObject +24 QObject::qt_metacast +32 QDBusAbstractInterfaceBase::qt_metacall +40 QDBusAbstractInterfaceBase::~QDBusAbstractInterfaceBase +48 QDBusAbstractInterfaceBase::~QDBusAbstractInterfaceBase +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QDBusAbstractInterfaceBase + size=16 align=8 + base size=16 base align=8 +QDBusAbstractInterfaceBase (0x7f088c0627e0) 0 + vptr=((& QDBusAbstractInterfaceBase::_ZTV26QDBusAbstractInterfaceBase) + 16u) + QObject (0x7f088c062850) 0 + primary-for QDBusAbstractInterfaceBase (0x7f088c0627e0) + +Vtable for QDBusAbstractInterface +QDBusAbstractInterface::_ZTV22QDBusAbstractInterface: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QDBusAbstractInterface) +16 QDBusAbstractInterface::metaObject +24 QDBusAbstractInterface::qt_metacast +32 QDBusAbstractInterface::qt_metacall +40 QDBusAbstractInterface::~QDBusAbstractInterface +48 QDBusAbstractInterface::~QDBusAbstractInterface +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QDBusAbstractInterface::connectNotify +104 QDBusAbstractInterface::disconnectNotify + +Class QDBusAbstractInterface + size=16 align=8 + base size=16 base align=8 +QDBusAbstractInterface (0x7f088c062a10) 0 + vptr=((& QDBusAbstractInterface::_ZTV22QDBusAbstractInterface) + 16u) + QDBusAbstractInterfaceBase (0x7f088c078000) 0 + primary-for QDBusAbstractInterface (0x7f088c062a10) + QObject (0x7f088c078070) 0 + primary-for QDBusAbstractInterfaceBase (0x7f088c078000) + +Class QDBusArgument + size=8 align=8 + base size=8 base align=8 +QDBusArgument (0x7f088c09f0e0) 0 + +Class QDBusPendingCall + size=8 align=8 + base size=8 base align=8 +QDBusPendingCall (0x7f088c109a80) 0 + +Vtable for QDBusPendingCallWatcher +QDBusPendingCallWatcher::_ZTV23QDBusPendingCallWatcher: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QDBusPendingCallWatcher) +16 QDBusPendingCallWatcher::metaObject +24 QDBusPendingCallWatcher::qt_metacast +32 QDBusPendingCallWatcher::qt_metacall +40 QDBusPendingCallWatcher::~QDBusPendingCallWatcher +48 QDBusPendingCallWatcher::~QDBusPendingCallWatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QDBusPendingCallWatcher + size=24 align=8 + base size=24 base align=8 +QDBusPendingCallWatcher (0x7f088c145d80) 0 + vptr=((& QDBusPendingCallWatcher::_ZTV23QDBusPendingCallWatcher) + 16u) + QObject (0x7f088bf543f0) 0 + primary-for QDBusPendingCallWatcher (0x7f088c145d80) + QDBusPendingCall (0x7f088bf54460) 16 + +Class QDBusPendingReplyData + size=8 align=8 + base size=8 base align=8 +QDBusPendingReplyData (0x7f088bf778c0) 0 + QDBusPendingCall (0x7f088bf77930) 0 + +Vtable for QDBusConnectionInterface +QDBusConnectionInterface::_ZTV24QDBusConnectionInterface: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QDBusConnectionInterface) +16 QDBusConnectionInterface::metaObject +24 QDBusConnectionInterface::qt_metacast +32 QDBusConnectionInterface::qt_metacall +40 QDBusConnectionInterface::~QDBusConnectionInterface +48 QDBusConnectionInterface::~QDBusConnectionInterface +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QDBusConnectionInterface::connectNotify +104 QDBusConnectionInterface::disconnectNotify + +Class QDBusConnectionInterface + size=16 align=8 + base size=16 base align=8 +QDBusConnectionInterface (0x7f088bfcf2a0) 0 + vptr=((& QDBusConnectionInterface::_ZTV24QDBusConnectionInterface) + 16u) + QDBusAbstractInterface (0x7f088bfcf310) 0 + primary-for QDBusConnectionInterface (0x7f088bfcf2a0) + QDBusAbstractInterfaceBase (0x7f088bfcf380) 0 + primary-for QDBusAbstractInterface (0x7f088bfcf310) + QObject (0x7f088bfcf3f0) 0 + primary-for QDBusAbstractInterfaceBase (0x7f088bfcf380) + +Class QDBusContext + size=8 align=8 + base size=8 base align=8 +QDBusContext (0x7f088bfe7e70) 0 + +Vtable for QDBusInterface +QDBusInterface::_ZTV14QDBusInterface: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QDBusInterface) +16 QDBusInterface::metaObject +24 QDBusInterface::qt_metacast +32 QDBusInterface::qt_metacall +40 QDBusInterface::~QDBusInterface +48 QDBusInterface::~QDBusInterface +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QDBusAbstractInterface::connectNotify +104 QDBusAbstractInterface::disconnectNotify + +Class QDBusInterface + size=16 align=8 + base size=16 base align=8 +QDBusInterface (0x7f088bff1150) 0 + vptr=((& QDBusInterface::_ZTV14QDBusInterface) + 16u) + QDBusAbstractInterface (0x7f088bff11c0) 0 + primary-for QDBusInterface (0x7f088bff1150) + QDBusAbstractInterfaceBase (0x7f088bff1230) 0 + primary-for QDBusAbstractInterface (0x7f088bff11c0) + QObject (0x7f088bff12a0) 0 + primary-for QDBusAbstractInterfaceBase (0x7f088bff1230) + +Class QDBusMetaType + size=1 align=1 + base size=0 base align=1 +QDBusMetaType (0x7f088bff1b60) 0 empty + +Vtable for QDBusServer +QDBusServer::_ZTV11QDBusServer: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QDBusServer) +16 QDBusServer::metaObject +24 QDBusServer::qt_metacast +32 QDBusServer::qt_metacall +40 QDBusServer::~QDBusServer +48 QDBusServer::~QDBusServer +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QDBusServer + size=24 align=8 + base size=24 base align=8 +QDBusServer (0x7f088bff1e00) 0 + vptr=((& QDBusServer::_ZTV11QDBusServer) + 16u) + QObject (0x7f088bff1e70) 0 + primary-for QDBusServer (0x7f088bff1e00) + +Vtable for QDBusServiceWatcher +QDBusServiceWatcher::_ZTV19QDBusServiceWatcher: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QDBusServiceWatcher) +16 QDBusServiceWatcher::metaObject +24 QDBusServiceWatcher::qt_metacast +32 QDBusServiceWatcher::qt_metacall +40 QDBusServiceWatcher::~QDBusServiceWatcher +48 QDBusServiceWatcher::~QDBusServiceWatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QDBusServiceWatcher + size=16 align=8 + base size=16 base align=8 +QDBusServiceWatcher (0x7f088c01a070) 0 + vptr=((& QDBusServiceWatcher::_ZTV19QDBusServiceWatcher) + 16u) + QObject (0x7f088c01a0e0) 0 + primary-for QDBusServiceWatcher (0x7f088c01a070) + diff --git a/tests/auto/bic/data/QtDesigner.4.5.0.linux-gcc-amd64.txt b/tests/auto/bic/data/QtDesigner.4.5.0.linux-gcc-amd64.txt new file mode 100644 index 0000000..d430a84 --- /dev/null +++ b/tests/auto/bic/data/QtDesigner.4.5.0.linux-gcc-amd64.txt @@ -0,0 +1,4460 @@ +Class QSysInfo + size=1 align=1 + base size=0 base align=1 +QSysInfo (0x7f09f7532540) 0 empty + +Class QBool + size=1 align=1 + base size=1 base align=1 +QBool (0x7f09f7545230) 0 + +Class qIsNull(double)::U + size=8 align=8 + base size=8 base align=8 +qIsNull(double)::U (0x7f09f755c620) 0 + +Class qIsNull(float)::U + size=4 align=4 + base size=4 base align=4 +qIsNull(float)::U (0x7f09f755c8c0) 0 + +Class QFlag + size=4 align=4 + base size=4 base align=4 +QFlag (0x7f09f7592700) 0 + +Class QIncompatibleFlag + size=4 align=4 + base size=4 base align=4 +QIncompatibleFlag (0x7f09f7592ee0) 0 + +Class QInternal + size=1 align=1 + base size=0 base align=1 +QInternal (0x7f09f6b71620) 0 empty + +Class QGenericArgument + size=16 align=8 + base size=16 base align=8 +QGenericArgument (0x7f09f6b71930) 0 + +Class QGenericReturnArgument + size=16 align=8 + base size=16 base align=8 +QGenericReturnArgument (0x7f09f6b8c4d0) 0 + QGenericArgument (0x7f09f6b8c540) 0 + +Class QMetaObject + size=32 align=8 + base size=32 base align=8 +QMetaObject (0x7f09f6b8cd90) 0 + +Class QMetaObjectExtraData + size=16 align=8 + base size=16 base align=8 +QMetaObjectExtraData (0x7f09f69b2d90) 0 + +Class QLatin1Char + size=1 align=1 + base size=1 base align=1 +QLatin1Char (0x7f09f69bc7e0) 0 + +Class QChar + size=2 align=2 + base size=2 base align=2 +QChar (0x7f09f69c2380) 0 + +Class QBasicAtomicInt + size=4 align=4 + base size=4 base align=4 +QBasicAtomicInt (0x7f09f6a2f460) 0 + +Class QAtomicInt + size=4 align=4 + base size=4 base align=4 +QAtomicInt (0x7f09f6a6ae00) 0 + QBasicAtomicInt (0x7f09f6a6ae70) 0 + +Class __locale_struct + size=232 align=8 + base size=232 base align=8 +__locale_struct (0x7f09f6a8f2a0) 0 + +Class QByteArray::Data + size=32 align=8 + base size=32 base align=8 +QByteArray::Data (0x7f09f69088c0) 0 + +Class QByteArray + size=8 align=8 + base size=8 base align=8 +QByteArray (0x7f09f68c4620) 0 + +Class QByteRef + size=16 align=8 + base size=12 base align=8 +QByteRef (0x7f09f695eb60) 0 + +Class QString::Null + size=1 align=1 + base size=0 base align=1 +QString::Null (0x7f09f68667e0) 0 empty + +Class QString::Data + size=32 align=8 + base size=32 base align=8 +QString::Data (0x7f09f687f000) 0 + +Class QString + size=8 align=8 + base size=8 base align=8 +QString (0x7f09f67e4690) 0 + +Class QLatin1String + size=8 align=8 + base size=8 base align=8 +QLatin1String (0x7f09f67500e0) 0 + +Class QCharRef + size=16 align=8 + base size=12 base align=8 +QCharRef (0x7f09f65e6700) 0 + +Class QConstString + size=8 align=8 + base size=8 base align=8 +QConstString (0x7f09f653a000) 0 + QString (0x7f09f653a070) 0 + +Class QStringRef + size=16 align=8 + base size=16 base align=8 +QStringRef (0x7f09f6553cb0) 0 + +Vtable for std::exception +std::exception::_ZTVSt9exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9exception) +16 std::exception::~exception +24 std::exception::~exception +32 std::exception::what + +Class std::exception + size=8 align=8 + base size=8 base align=8 +std::exception (0x7f09f640b7e0) 0 nearly-empty + vptr=((& std::exception::_ZTVSt9exception) + 16u) + +Vtable for std::bad_exception +std::bad_exception::_ZTVSt13bad_exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13bad_exception) +16 std::bad_exception::~bad_exception +24 std::bad_exception::~bad_exception +32 std::bad_exception::what + +Class std::bad_exception + size=8 align=8 + base size=8 base align=8 +std::bad_exception (0x7f09f642e0e0) 0 nearly-empty + vptr=((& std::bad_exception::_ZTVSt13bad_exception) + 16u) + std::exception (0x7f09f642e150) 0 nearly-empty + primary-for std::bad_exception (0x7f09f642e0e0) + +Vtable for std::bad_alloc +std::bad_alloc::_ZTVSt9bad_alloc: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9bad_alloc) +16 std::bad_alloc::~bad_alloc +24 std::bad_alloc::~bad_alloc +32 std::bad_alloc::what + +Class std::bad_alloc + size=8 align=8 + base size=8 base align=8 +std::bad_alloc (0x7f09f642e9a0) 0 nearly-empty + vptr=((& std::bad_alloc::_ZTVSt9bad_alloc) + 16u) + std::exception (0x7f09f642ea10) 0 nearly-empty + primary-for std::bad_alloc (0x7f09f642e9a0) + +Class std::nothrow_t + size=1 align=1 + base size=0 base align=1 +std::nothrow_t (0x7f09f643e1c0) 0 empty + +Class QListData::Data + size=32 align=8 + base size=32 base align=8 +QListData::Data (0x7f09f643e700) 0 + +Class QListData + size=8 align=8 + base size=8 base align=8 +QListData (0x7f09f643e690) 0 + +Vtable for QObjectData +QObjectData::_ZTV11QObjectData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QObjectData) +16 __cxa_pure_virtual +24 __cxa_pure_virtual + +Class QObjectData + size=40 align=8 + base size=40 base align=8 +QObjectData (0x7f09f6342cb0) 0 + vptr=((& QObjectData::_ZTV11QObjectData) + 16u) + +Vtable for QObject +QObject::_ZTV7QObject: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QObject) +16 QObject::metaObject +24 QObject::qt_metacast +32 QObject::qt_metacall +40 QObject::~QObject +48 QObject::~QObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObject + size=16 align=8 + base size=16 base align=8 +QObject (0x7f09f6342f50) 0 + vptr=((& QObject::_ZTV7QObject) + 16u) + +Vtable for QObjectUserData +QObjectUserData::_ZTV15QObjectUserData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QObjectUserData) +16 QObjectUserData::~QObjectUserData +24 QObjectUserData::~QObjectUserData + +Class QObjectUserData + size=8 align=8 + base size=8 base align=8 +QObjectUserData (0x7f09f61d34d0) 0 nearly-empty + vptr=((& QObjectUserData::_ZTV15QObjectUserData) + 16u) + +Vtable for QIODevice +QIODevice::_ZTV9QIODevice: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QIODevice) +16 QIODevice::metaObject +24 QIODevice::qt_metacast +32 QIODevice::qt_metacall +40 QIODevice::~QIODevice +48 QIODevice::~QIODevice +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QIODevice::isSequential +120 QIODevice::open +128 QIODevice::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QIODevice::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 __cxa_pure_virtual +224 QIODevice::readLineData +232 __cxa_pure_virtual + +Class QIODevice + size=16 align=8 + base size=16 base align=8 +QIODevice (0x7f09f61d3a10) 0 + vptr=((& QIODevice::_ZTV9QIODevice) + 16u) + QObject (0x7f09f61d3a80) 0 + primary-for QIODevice (0x7f09f61d3a10) + +Vtable for QDataStream +QDataStream::_ZTV11QDataStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QDataStream) +16 QDataStream::~QDataStream +24 QDataStream::~QDataStream + +Class QDataStream + size=40 align=8 + base size=40 base align=8 +QDataStream (0x7f09f6248380) 0 + vptr=((& QDataStream::_ZTV11QDataStream) + 16u) + +Class QHashData::Node + size=16 align=8 + base size=16 base align=8 +QHashData::Node (0x7f09f60ce230) 0 + +Class QHashData + size=40 align=8 + base size=40 base align=8 +QHashData (0x7f09f60ce1c0) 0 + +Class QHashDummyValue + size=1 align=1 + base size=0 base align=1 +QHashDummyValue (0x7f09f60e3000) 0 empty + +Class QMapData::Node + size=16 align=8 + base size=16 base align=8 +QMapData::Node (0x7f09f5ff2770) 0 + +Class QMapData + size=128 align=8 + base size=128 base align=8 +QMapData (0x7f09f5ff2700) 0 + +Vtable for QSystemLocale +QSystemLocale::_ZTV13QSystemLocale: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSystemLocale) +16 QSystemLocale::~QSystemLocale +24 QSystemLocale::~QSystemLocale +32 QSystemLocale::query +40 QSystemLocale::fallbackLocale + +Class QSystemLocale + size=8 align=8 + base size=8 base align=8 +QSystemLocale (0x7f09f5f07ee0) 0 nearly-empty + vptr=((& QSystemLocale::_ZTV13QSystemLocale) + 16u) + +Class QLocale::Data + size=4 align=2 + base size=4 base align=2 +QLocale::Data (0x7f09f5f644d0) 0 + +Class QLocale + size=8 align=8 + base size=8 base align=8 +QLocale (0x7f09f5f241c0) 0 + +Class QTextCodec::ConverterState + size=32 align=8 + base size=32 base align=8 +QTextCodec::ConverterState (0x7f09f5db2f50) 0 + +Vtable for QTextCodec +QTextCodec::_ZTV10QTextCodec: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextCodec) +16 __cxa_pure_virtual +24 QTextCodec::aliases +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QTextCodec::~QTextCodec +64 QTextCodec::~QTextCodec + +Class QTextCodec + size=8 align=8 + base size=8 base align=8 +QTextCodec (0x7f09f5d9db60) 0 nearly-empty + vptr=((& QTextCodec::_ZTV10QTextCodec) + 16u) + +Class QTextEncoder + size=40 align=8 + base size=40 base align=8 +QTextEncoder (0x7f09f5e1f4d0) 0 + +Class QTextDecoder + size=40 align=8 + base size=40 base align=8 +QTextDecoder (0x7f09f5e27310) 0 + +Class _IO_marker + size=24 align=8 + base size=24 base align=8 +_IO_marker (0x7f09f5e31380) 0 + +Class _IO_FILE + size=216 align=8 + base size=216 base align=8 +_IO_FILE (0x7f09f5e313f0) 0 + +Vtable for QTextStream +QTextStream::_ZTV11QTextStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTextStream) +16 QTextStream::~QTextStream +24 QTextStream::~QTextStream + +Class QTextStream + size=16 align=8 + base size=16 base align=8 +QTextStream (0x7f09f5e314d0) 0 + vptr=((& QTextStream::_ZTV11QTextStream) + 16u) + +Class QTextStreamManipulator + size=40 align=8 + base size=38 base align=8 +QTextStreamManipulator (0x7f09f5cd5000) 0 + +Vtable for QTextIStream +QTextIStream::_ZTV12QTextIStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextIStream) +16 QTextIStream::~QTextIStream +24 QTextIStream::~QTextIStream + +Class QTextIStream + size=16 align=8 + base size=16 base align=8 +QTextIStream (0x7f09f5cf52a0) 0 + vptr=((& QTextIStream::_ZTV12QTextIStream) + 16u) + QTextStream (0x7f09f5cf5310) 0 + primary-for QTextIStream (0x7f09f5cf52a0) + +Vtable for QTextOStream +QTextOStream::_ZTV12QTextOStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextOStream) +16 QTextOStream::~QTextOStream +24 QTextOStream::~QTextOStream + +Class QTextOStream + size=16 align=8 + base size=16 base align=8 +QTextOStream (0x7f09f5d0a150) 0 + vptr=((& QTextOStream::_ZTV12QTextOStream) + 16u) + QTextStream (0x7f09f5d0a1c0) 0 + primary-for QTextOStream (0x7f09f5d0a150) + +Class wait + size=4 align=4 + base size=4 base align=4 +wait (0x7f09f5d21000) 0 + +Class timespec + size=16 align=8 + base size=16 base align=8 +timespec (0x7f09f5d21310) 0 + +Class timeval + size=16 align=8 + base size=16 base align=8 +timeval (0x7f09f5d21380) 0 + +Class __pthread_internal_list + size=16 align=8 + base size=16 base align=8 +__pthread_internal_list (0x7f09f5d214d0) 0 + +Class random_data + size=48 align=8 + base size=48 base align=8 +random_data (0x7f09f5d21a80) 0 + +Class drand48_data + size=24 align=8 + base size=24 base align=8 +drand48_data (0x7f09f5d21af0) 0 + +Class QVectorData + size=16 align=4 + base size=16 base align=4 +QVectorData (0x7f09f5d21b60) 0 + +Class QDebug::Stream + size=40 align=8 + base size=34 base align=8 +QDebug::Stream (0x7f09f5a9e310) 0 + +Class QDebug + size=8 align=8 + base size=8 base align=8 +QDebug (0x7f09f5a9e2a0) 0 + +Class QNoDebug + size=1 align=1 + base size=0 base align=1 +QNoDebug (0x7f09f5b3d150) 0 empty + +Vtable for QFile +QFile::_ZTV5QFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QFile) +16 QFile::metaObject +24 QFile::qt_metacast +32 QFile::qt_metacall +40 QFile::~QFile +48 QFile::~QFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QFile::fileEngine + +Class QFile + size=16 align=8 + base size=16 base align=8 +QFile (0x7f09f5b4c700) 0 + vptr=((& QFile::_ZTV5QFile) + 16u) + QIODevice (0x7f09f5b4c770) 0 + primary-for QFile (0x7f09f5b4c700) + QObject (0x7f09f5b4c7e0) 0 + primary-for QIODevice (0x7f09f5b4c770) + +Vtable for QTemporaryFile +QTemporaryFile::_ZTV14QTemporaryFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QTemporaryFile) +16 QTemporaryFile::metaObject +24 QTemporaryFile::qt_metacast +32 QTemporaryFile::qt_metacall +40 QTemporaryFile::~QTemporaryFile +48 QTemporaryFile::~QTemporaryFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QTemporaryFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QTemporaryFile::fileEngine + +Class QTemporaryFile + size=16 align=8 + base size=16 base align=8 +QTemporaryFile (0x7f09f59b9930) 0 + vptr=((& QTemporaryFile::_ZTV14QTemporaryFile) + 16u) + QFile (0x7f09f59b99a0) 0 + primary-for QTemporaryFile (0x7f09f59b9930) + QIODevice (0x7f09f59b9a10) 0 + primary-for QFile (0x7f09f59b99a0) + QObject (0x7f09f59b9a80) 0 + primary-for QIODevice (0x7f09f59b9a10) + +Class QFileInfo + size=8 align=8 + base size=8 base align=8 +QFileInfo (0x7f09f59e1070) 0 + +Class QRegExp + size=8 align=8 + base size=8 base align=8 +QRegExp (0x7f09f5a35850) 0 + +Class QStringMatcher + size=1048 align=8 + base size=1048 base align=8 +QStringMatcher (0x7f09f5a82690) 0 + +Class QStringList + size=8 align=8 + base size=8 base align=8 +QStringList (0x7f09f5894150) 0 + QList (0x7f09f58941c0) 0 + +Class QDir + size=8 align=8 + base size=8 base align=8 +QDir (0x7f09f5925d90) 0 + +Class QAbstractFileEngine::ExtensionOption + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionOption (0x7f09f57bef50) 0 empty + +Class QAbstractFileEngine::ExtensionReturn + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionReturn (0x7f09f57d1000) 0 empty + +Class QAbstractFileEngine::MapExtensionOption + size=24 align=8 + base size=20 base align=8 +QAbstractFileEngine::MapExtensionOption (0x7f09f57d1070) 0 + QAbstractFileEngine::ExtensionOption (0x7f09f57d10e0) 0 empty + +Class QAbstractFileEngine::MapExtensionReturn + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::MapExtensionReturn (0x7f09f57d12a0) 0 + QAbstractFileEngine::ExtensionReturn (0x7f09f57d1310) 0 empty + +Class QAbstractFileEngine::UnMapExtensionOption + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::UnMapExtensionOption (0x7f09f57d1380) 0 + QAbstractFileEngine::ExtensionOption (0x7f09f57d13f0) 0 empty + +Vtable for QAbstractFileEngine +QAbstractFileEngine::_ZTV19QAbstractFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractFileEngine) +16 QAbstractFileEngine::~QAbstractFileEngine +24 QAbstractFileEngine::~QAbstractFileEngine +32 QAbstractFileEngine::open +40 QAbstractFileEngine::close +48 QAbstractFileEngine::flush +56 QAbstractFileEngine::size +64 QAbstractFileEngine::pos +72 QAbstractFileEngine::seek +80 QAbstractFileEngine::isSequential +88 QAbstractFileEngine::remove +96 QAbstractFileEngine::copy +104 QAbstractFileEngine::rename +112 QAbstractFileEngine::link +120 QAbstractFileEngine::mkdir +128 QAbstractFileEngine::rmdir +136 QAbstractFileEngine::setSize +144 QAbstractFileEngine::caseSensitive +152 QAbstractFileEngine::isRelativePath +160 QAbstractFileEngine::entryList +168 QAbstractFileEngine::fileFlags +176 QAbstractFileEngine::setPermissions +184 QAbstractFileEngine::fileName +192 QAbstractFileEngine::ownerId +200 QAbstractFileEngine::owner +208 QAbstractFileEngine::fileTime +216 QAbstractFileEngine::setFileName +224 QAbstractFileEngine::handle +232 QAbstractFileEngine::beginEntryList +240 QAbstractFileEngine::endEntryList +248 QAbstractFileEngine::read +256 QAbstractFileEngine::readLine +264 QAbstractFileEngine::write +272 QAbstractFileEngine::extension +280 QAbstractFileEngine::supportsExtension + +Class QAbstractFileEngine + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngine (0x7f09f57aeee0) 0 + vptr=((& QAbstractFileEngine::_ZTV19QAbstractFileEngine) + 16u) + +Vtable for QAbstractFileEngineHandler +QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QAbstractFileEngineHandler) +16 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +24 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +32 __cxa_pure_virtual + +Class QAbstractFileEngineHandler + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngineHandler (0x7f09f58030e0) 0 nearly-empty + vptr=((& QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler) + 16u) + +Vtable for QAbstractFileEngineIterator +QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QAbstractFileEngineIterator) +16 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +24 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QAbstractFileEngineIterator::currentFileInfo +64 QAbstractFileEngineIterator::entryInfo + +Class QAbstractFileEngineIterator + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngineIterator (0x7f09f58032a0) 0 + vptr=((& QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator) + 16u) + +Vtable for QFSFileEngine +QFSFileEngine::_ZTV13QFSFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QFSFileEngine) +16 QFSFileEngine::~QFSFileEngine +24 QFSFileEngine::~QFSFileEngine +32 QFSFileEngine::open +40 QFSFileEngine::close +48 QFSFileEngine::flush +56 QFSFileEngine::size +64 QFSFileEngine::pos +72 QFSFileEngine::seek +80 QFSFileEngine::isSequential +88 QFSFileEngine::remove +96 QFSFileEngine::copy +104 QFSFileEngine::rename +112 QFSFileEngine::link +120 QFSFileEngine::mkdir +128 QFSFileEngine::rmdir +136 QFSFileEngine::setSize +144 QFSFileEngine::caseSensitive +152 QFSFileEngine::isRelativePath +160 QFSFileEngine::entryList +168 QFSFileEngine::fileFlags +176 QFSFileEngine::setPermissions +184 QFSFileEngine::fileName +192 QFSFileEngine::ownerId +200 QFSFileEngine::owner +208 QFSFileEngine::fileTime +216 QFSFileEngine::setFileName +224 QFSFileEngine::handle +232 QFSFileEngine::beginEntryList +240 QFSFileEngine::endEntryList +248 QFSFileEngine::read +256 QFSFileEngine::readLine +264 QFSFileEngine::write +272 QFSFileEngine::extension +280 QFSFileEngine::supportsExtension + +Class QFSFileEngine + size=16 align=8 + base size=16 base align=8 +QFSFileEngine (0x7f09f5803af0) 0 + vptr=((& QFSFileEngine::_ZTV13QFSFileEngine) + 16u) + QAbstractFileEngine (0x7f09f5803b60) 0 + primary-for QFSFileEngine (0x7f09f5803af0) + +Vtable for QProcess +QProcess::_ZTV8QProcess: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QProcess) +16 QProcess::metaObject +24 QProcess::qt_metacast +32 QProcess::qt_metacall +40 QProcess::~QProcess +48 QProcess::~QProcess +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QProcess::isSequential +120 QIODevice::open +128 QProcess::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QProcess::atEnd +168 QIODevice::reset +176 QProcess::bytesAvailable +184 QProcess::bytesToWrite +192 QProcess::canReadLine +200 QProcess::waitForReadyRead +208 QProcess::waitForBytesWritten +216 QProcess::readData +224 QIODevice::readLineData +232 QProcess::writeData +240 QProcess::setupChildProcess + +Class QProcess + size=16 align=8 + base size=16 base align=8 +QProcess (0x7f09f5818e00) 0 + vptr=((& QProcess::_ZTV8QProcess) + 16u) + QIODevice (0x7f09f5818e70) 0 + primary-for QProcess (0x7f09f5818e00) + QObject (0x7f09f5818ee0) 0 + primary-for QIODevice (0x7f09f5818e70) + +Class QResource + size=8 align=8 + base size=8 base align=8 +QResource (0x7f09f5857310) 0 + +Vtable for QDirIterator +QDirIterator::_ZTV12QDirIterator: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QDirIterator) +16 QDirIterator::~QDirIterator +24 QDirIterator::~QDirIterator + +Class QDirIterator + size=16 align=8 + base size=16 base align=8 +QDirIterator (0x7f09f5857d90) 0 + vptr=((& QDirIterator::_ZTV12QDirIterator) + 16u) + +Vtable for QBuffer +QBuffer::_ZTV7QBuffer: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QBuffer) +16 QBuffer::metaObject +24 QBuffer::qt_metacast +32 QBuffer::qt_metacall +40 QBuffer::~QBuffer +48 QBuffer::~QBuffer +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QBuffer::connectNotify +104 QBuffer::disconnectNotify +112 QIODevice::isSequential +120 QBuffer::open +128 QBuffer::close +136 QBuffer::pos +144 QBuffer::size +152 QBuffer::seek +160 QBuffer::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QBuffer::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QBuffer::readData +224 QIODevice::readLineData +232 QBuffer::writeData + +Class QBuffer + size=16 align=8 + base size=16 base align=8 +QBuffer (0x7f09f5887b60) 0 + vptr=((& QBuffer::_ZTV7QBuffer) + 16u) + QIODevice (0x7f09f5887bd0) 0 + primary-for QBuffer (0x7f09f5887b60) + QObject (0x7f09f5887c40) 0 + primary-for QIODevice (0x7f09f5887bd0) + +Vtable for QFileSystemWatcher +QFileSystemWatcher::_ZTV18QFileSystemWatcher: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFileSystemWatcher) +16 QFileSystemWatcher::metaObject +24 QFileSystemWatcher::qt_metacast +32 QFileSystemWatcher::qt_metacall +40 QFileSystemWatcher::~QFileSystemWatcher +48 QFileSystemWatcher::~QFileSystemWatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QFileSystemWatcher + size=16 align=8 + base size=16 base align=8 +QFileSystemWatcher (0x7f09f568e770) 0 + vptr=((& QFileSystemWatcher::_ZTV18QFileSystemWatcher) + 16u) + QObject (0x7f09f568e7e0) 0 + primary-for QFileSystemWatcher (0x7f09f568e770) + +Class QUrl + size=8 align=8 + base size=8 base align=8 +QUrl (0x7f09f56a2cb0) 0 + +Class QMetaType + size=1 align=1 + base size=0 base align=1 +QMetaType (0x7f09f572b4d0) 0 empty + +Class QVariant::PrivateShared + size=16 align=8 + base size=12 base align=8 +QVariant::PrivateShared (0x7f09f55ffa10) 0 + +Class QVariant::Private::Data + size=8 align=8 + base size=8 base align=8 +QVariant::Private::Data (0x7f09f55ffd20) 0 + +Class QVariant::Private + size=16 align=8 + base size=12 base align=8 +QVariant::Private (0x7f09f55ffaf0) 0 + +Class QVariant::Handler + size=72 align=8 + base size=72 base align=8 +QVariant::Handler (0x7f09f560da10) 0 + +Class QVariant + size=16 align=8 + base size=16 base align=8 +QVariant (0x7f09f55cfbd0) 0 + +Class QVariantComparisonHelper + size=8 align=8 + base size=8 base align=8 +QVariantComparisonHelper (0x7f09f54b2d90) 0 + +Vtable for QSettings +QSettings::_ZTV9QSettings: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QSettings) +16 QSettings::metaObject +24 QSettings::qt_metacast +32 QSettings::qt_metacall +40 QSettings::~QSettings +48 QSettings::~QSettings +56 QSettings::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSettings + size=16 align=8 + base size=16 base align=8 +QSettings (0x7f09f54d7d90) 0 + vptr=((& QSettings::_ZTV9QSettings) + 16u) + QObject (0x7f09f54d7e00) 0 + primary-for QSettings (0x7f09f54d7d90) + +Class QXmlStreamStringRef + size=16 align=8 + base size=16 base align=8 +QXmlStreamStringRef (0x7f09f555a150) 0 + +Class QXmlStreamAttribute + size=80 align=8 + base size=73 base align=8 +QXmlStreamAttribute (0x7f09f53759a0) 0 + +Class QXmlStreamAttributes + size=8 align=8 + base size=8 base align=8 +QXmlStreamAttributes (0x7f09f539f460) 0 + QVector (0x7f09f539f4d0) 0 + +Class QXmlStreamNamespaceDeclaration + size=40 align=8 + base size=40 base align=8 +QXmlStreamNamespaceDeclaration (0x7f09f539f930) 0 + +Class QXmlStreamNotationDeclaration + size=56 align=8 + base size=56 base align=8 +QXmlStreamNotationDeclaration (0x7f09f53df2a0) 0 + +Class QXmlStreamEntityDeclaration + size=88 align=8 + base size=88 base align=8 +QXmlStreamEntityDeclaration (0x7f09f53ff150) 0 + +Vtable for QXmlStreamEntityResolver +QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QXmlStreamEntityResolver) +16 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +24 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +32 QXmlStreamEntityResolver::resolveEntity +40 QXmlStreamEntityResolver::resolveUndeclaredEntity + +Class QXmlStreamEntityResolver + size=8 align=8 + base size=8 base align=8 +QXmlStreamEntityResolver (0x7f09f541ca80) 0 nearly-empty + vptr=((& QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver) + 16u) + +Class QXmlStreamReader + size=8 align=8 + base size=8 base align=8 +QXmlStreamReader (0x7f09f541cc40) 0 + +Class QXmlStreamWriter + size=8 align=8 + base size=8 base align=8 +QXmlStreamWriter (0x7f09f5458af0) 0 + +Class QPoint + size=8 align=4 + base size=8 base align=4 +QPoint (0x7f09f5292230) 0 + +Class QPointF + size=16 align=8 + base size=16 base align=8 +QPointF (0x7f09f52cde70) 0 + +Class QLine + size=16 align=4 + base size=16 base align=4 +QLine (0x7f09f5309cb0) 0 + +Class QLineF + size=32 align=8 + base size=32 base align=8 +QLineF (0x7f09f5343b60) 0 + +Class QSize + size=8 align=4 + base size=8 base align=4 +QSize (0x7f09f519e620) 0 + +Class QSizeF + size=16 align=8 + base size=16 base align=8 +QSizeF (0x7f09f51ec460) 0 + +Class QRect + size=16 align=4 + base size=16 base align=4 +QRect (0x7f09f5238a80) 0 + +Class QRectF + size=32 align=8 + base size=32 base align=8 +QRectF (0x7f09f50ee460) 0 + +Class QSharedData + size=4 align=4 + base size=4 base align=4 +QSharedData (0x7f09f4f93230) 0 + +Vtable for QtSharedPointer::ExternalRefCountData +QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN15QtSharedPointer20ExternalRefCountDataE) +16 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +24 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +32 QtSharedPointer::ExternalRefCountData::destroy + +Class QtSharedPointer::ExternalRefCountData + size=16 align=8 + base size=16 base align=8 +QtSharedPointer::ExternalRefCountData (0x7f09f4fc0bd0) 0 + vptr=((& QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE) + 16u) + +Class QLinkedListData + size=32 align=8 + base size=32 base align=8 +QLinkedListData (0x7f09f5048d20) 0 + +Class QBitArray + size=8 align=8 + base size=8 base align=8 +QBitArray (0x7f09f4f14c40) 0 + +Class QBitRef + size=16 align=8 + base size=12 base align=8 +QBitRef (0x7f09f4d88a10) 0 + +Class QByteArrayMatcher + size=1040 align=8 + base size=1040 base align=8 +QByteArrayMatcher (0x7f09f4da43f0) 0 + +Class QCryptographicHash + size=8 align=8 + base size=8 base align=8 +QCryptographicHash (0x7f09f4db4af0) 0 + +Class QTextBoundaryFinder + size=48 align=8 + base size=48 base align=8 +QTextBoundaryFinder (0x7f09f4de3540) 0 + +Class QDate + size=4 align=4 + base size=4 base align=4 +QDate (0x7f09f4df98c0) 0 + +Class QTime + size=4 align=4 + base size=4 base align=4 +QTime (0x7f09f4e22850) 0 + +Class QDateTime + size=8 align=8 + base size=8 base align=8 +QDateTime (0x7f09f4e3ee00) 0 + +Vtable for QTimeLine +QTimeLine::_ZTV9QTimeLine: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTimeLine) +16 QTimeLine::metaObject +24 QTimeLine::qt_metacast +32 QTimeLine::qt_metacall +40 QTimeLine::~QTimeLine +48 QTimeLine::~QTimeLine +56 QObject::event +64 QObject::eventFilter +72 QTimeLine::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTimeLine::valueForTime + +Class QTimeLine + size=16 align=8 + base size=16 base align=8 +QTimeLine (0x7f09f4c742a0) 0 + vptr=((& QTimeLine::_ZTV9QTimeLine) + 16u) + QObject (0x7f09f4c74310) 0 + primary-for QTimeLine (0x7f09f4c742a0) + +Vtable for QRunnable +QRunnable::_ZTV9QRunnable: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QRunnable) +16 __cxa_pure_virtual +24 QRunnable::~QRunnable +32 QRunnable::~QRunnable + +Class QRunnable + size=16 align=8 + base size=12 base align=8 +QRunnable (0x7f09f4c9c150) 0 + vptr=((& QRunnable::_ZTV9QRunnable) + 16u) + +Class QMutex + size=8 align=8 + base size=8 base align=8 +QMutex (0x7f09f4ca77e0) 0 + +Class QMutexLocker + size=8 align=8 + base size=8 base align=8 +QMutexLocker (0x7f09f4cb7380) 0 + +Vtable for QtConcurrent::Exception +QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent9ExceptionE) +16 QtConcurrent::Exception::~Exception +24 QtConcurrent::Exception::~Exception +32 std::exception::what +40 QtConcurrent::Exception::raise +48 QtConcurrent::Exception::clone + +Class QtConcurrent::Exception + size=8 align=8 + base size=8 base align=8 +QtConcurrent::Exception (0x7f09f4ccc690) 0 nearly-empty + vptr=((& QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE) + 16u) + std::exception (0x7f09f4ccc700) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7f09f4ccc690) + +Vtable for QtConcurrent::UnhandledException +QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent18UnhandledExceptionE) +16 QtConcurrent::UnhandledException::~UnhandledException +24 QtConcurrent::UnhandledException::~UnhandledException +32 std::exception::what +40 QtConcurrent::UnhandledException::raise +48 QtConcurrent::UnhandledException::clone + +Class QtConcurrent::UnhandledException + size=8 align=8 + base size=8 base align=8 +QtConcurrent::UnhandledException (0x7f09f4ccc930) 0 nearly-empty + vptr=((& QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE) + 16u) + QtConcurrent::Exception (0x7f09f4ccc9a0) 0 nearly-empty + primary-for QtConcurrent::UnhandledException (0x7f09f4ccc930) + std::exception (0x7f09f4ccca10) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7f09f4ccc9a0) + +Class QtConcurrent::internal::ExceptionHolder + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionHolder (0x7f09f4cccc40) 0 + +Class QtConcurrent::internal::ExceptionStore + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionStore (0x7f09f4ccc8c0) 0 + +Class QtConcurrent::ResultItem + size=16 align=8 + base size=16 base align=8 +QtConcurrent::ResultItem (0x7f09f4cccbd0) 0 + +Class QtConcurrent::ResultIteratorBase + size=16 align=8 + base size=12 base align=8 +QtConcurrent::ResultIteratorBase (0x7f09f4ce3f50) 0 + +Vtable for QtConcurrent::ResultStoreBase +QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent15ResultStoreBaseE) +16 QtConcurrent::ResultStoreBase::~ResultStoreBase +24 QtConcurrent::ResultStoreBase::~ResultStoreBase + +Class QtConcurrent::ResultStoreBase + size=48 align=8 + base size=44 base align=8 +QtConcurrent::ResultStoreBase (0x7f09f4ce9af0) 0 + vptr=((& QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE) + 16u) + +Vtable for QFutureInterfaceBase +QFutureInterfaceBase::_ZTV20QFutureInterfaceBase: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QFutureInterfaceBase) +16 QFutureInterfaceBase::~QFutureInterfaceBase +24 QFutureInterfaceBase::~QFutureInterfaceBase + +Class QFutureInterfaceBase + size=16 align=8 + base size=16 base align=8 +QFutureInterfaceBase (0x7f09f4d28f50) 0 + vptr=((& QFutureInterfaceBase::_ZTV20QFutureInterfaceBase) + 16u) + +Vtable for QThread +QThread::_ZTV7QThread: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QThread) +16 QThread::metaObject +24 QThread::qt_metacast +32 QThread::qt_metacall +40 QThread::~QThread +48 QThread::~QThread +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QThread::run + +Class QThread + size=16 align=8 + base size=16 base align=8 +QThread (0x7f09f4c0bee0) 0 + vptr=((& QThread::_ZTV7QThread) + 16u) + QObject (0x7f09f4c0bf50) 0 + primary-for QThread (0x7f09f4c0bee0) + +Vtable for QThreadPool +QThreadPool::_ZTV11QThreadPool: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QThreadPool) +16 QThreadPool::metaObject +24 QThreadPool::qt_metacast +32 QThreadPool::qt_metacall +40 QThreadPool::~QThreadPool +48 QThreadPool::~QThreadPool +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QThreadPool + size=16 align=8 + base size=16 base align=8 +QThreadPool (0x7f09f4c3ed90) 0 + vptr=((& QThreadPool::_ZTV11QThreadPool) + 16u) + QObject (0x7f09f4c3ee00) 0 + primary-for QThreadPool (0x7f09f4c3ed90) + +Class QWaitCondition + size=8 align=8 + base size=8 base align=8 +QWaitCondition (0x7f09f4c5a620) 0 + +Class QtConcurrent::ThreadEngineSemaphore + size=24 align=8 + base size=24 base align=8 +QtConcurrent::ThreadEngineSemaphore (0x7f09f4c5ab60) 0 + +Vtable for QtConcurrent::ThreadEngineBase +QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent16ThreadEngineBaseE) +16 QtConcurrent::ThreadEngineBase::run +24 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +32 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +40 QtConcurrent::ThreadEngineBase::start +48 QtConcurrent::ThreadEngineBase::finish +56 QtConcurrent::ThreadEngineBase::threadFunction +64 QtConcurrent::ThreadEngineBase::shouldStartThread +72 QtConcurrent::ThreadEngineBase::shouldThrottleThread +80 __cxa_pure_virtual + +Class QtConcurrent::ThreadEngineBase + size=64 align=8 + base size=64 base align=8 +QtConcurrent::ThreadEngineBase (0x7f09f4a78540) 0 + vptr=((& QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE) + 16u) + QRunnable (0x7f09f4a785b0) 0 + primary-for QtConcurrent::ThreadEngineBase (0x7f09f4a78540) + +VTT for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTTN12QtConcurrent12ThreadEngineIvEE: 2u entries +0 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 24u) +8 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 136u) + +Class std::input_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::input_iterator_tag (0x7f09f4ab9930) 0 empty + +Class std::output_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::output_iterator_tag (0x7f09f4ab99a0) 0 empty + +Class std::forward_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::forward_iterator_tag (0x7f09f4ab9a10) 0 empty + std::input_iterator_tag (0x7f09f4ab9a80) 0 empty + +Class std::bidirectional_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::bidirectional_iterator_tag (0x7f09f4ab9af0) 0 empty + std::forward_iterator_tag (0x7f09f4ab9b60) 0 empty + std::input_iterator_tag (0x7f09f4ab9bd0) 0 empty + +Class std::random_access_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::random_access_iterator_tag (0x7f09f4ab9c40) 0 empty + std::bidirectional_iterator_tag (0x7f09f4ab9cb0) 0 empty + std::forward_iterator_tag (0x7f09f4ab9d20) 0 empty + std::input_iterator_tag (0x7f09f4ab9d90) 0 empty + +Class std::__true_type + size=1 align=1 + base size=0 base align=1 +std::__true_type (0x7f09f4ac9380) 0 empty + +Class std::__false_type + size=1 align=1 + base size=0 base align=1 +std::__false_type (0x7f09f4ac93f0) 0 empty + +Class lconv + size=96 align=8 + base size=96 base align=8 +lconv (0x7f09f48a7700) 0 + +Class sched_param + size=4 align=4 + base size=4 base align=4 +sched_param (0x7f09f48a7b60) 0 + +Class __sched_param + size=4 align=4 + base size=4 base align=4 +__sched_param (0x7f09f48a7bd0) 0 + +Class tm + size=56 align=8 + base size=56 base align=8 +tm (0x7f09f48a7cb0) 0 + +Class itimerspec + size=32 align=8 + base size=32 base align=8 +itimerspec (0x7f09f48a7d90) 0 + +Class _pthread_cleanup_buffer + size=32 align=8 + base size=32 base align=8 +_pthread_cleanup_buffer (0x7f09f48a7e00) 0 + +Class __pthread_cleanup_frame + size=24 align=8 + base size=24 base align=8 +__pthread_cleanup_frame (0x7f09f48a7f50) 0 + +Class __pthread_cleanup_class + size=24 align=8 + base size=24 base align=8 +__pthread_cleanup_class (0x7f09f4905000) 0 + +Vtable for __cxxabiv1::__forced_unwind +__cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN10__cxxabiv115__forced_unwindE) +16 __cxxabiv1::__forced_unwind::~__forced_unwind +24 __cxxabiv1::__forced_unwind::~__forced_unwind +32 __cxa_pure_virtual + +Class __cxxabiv1::__forced_unwind + size=8 align=8 + base size=8 base align=8 +__cxxabiv1::__forced_unwind (0x7f09f47bcb60) 0 nearly-empty + vptr=((& __cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE) + 16u) + +Class std::locale + size=8 align=8 + base size=8 base align=8 +std::locale (0x7f09f446c690) 0 + +Vtable for std::locale::facet +std::locale::facet::_ZTVNSt6locale5facetE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTINSt6locale5facetE) +16 std::locale::facet::~facet +24 std::locale::facet::~facet + +Class std::locale::facet + size=16 align=8 + base size=12 base align=8 +std::locale::facet (0x7f09f4511d90) 0 + vptr=((& std::locale::facet::_ZTVNSt6locale5facetE) + 16u) + +Class std::locale::id + size=8 align=8 + base size=8 base align=8 +std::locale::id (0x7f09f4525380) 0 + +Class std::locale::_Impl + size=40 align=8 + base size=40 base align=8 +std::locale::_Impl (0x7f09f45259a0) 0 + +Vtable for std::ios_base::failure +std::ios_base::failure::_ZTVNSt8ios_base7failureE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTINSt8ios_base7failureE) +16 std::ios_base::failure::~failure +24 std::ios_base::failure::~failure +32 std::ios_base::failure::what + +Class std::ios_base::failure + size=16 align=8 + base size=16 base align=8 +std::ios_base::failure (0x7f09f43b2150) 0 + vptr=((& std::ios_base::failure::_ZTVNSt8ios_base7failureE) + 16u) + std::exception (0x7f09f43b21c0) 0 nearly-empty + primary-for std::ios_base::failure (0x7f09f43b2150) + +Class std::ios_base::_Callback_list + size=24 align=8 + base size=24 base align=8 +std::ios_base::_Callback_list (0x7f09f43c13f0) 0 + +Class std::ios_base::_Words + size=16 align=8 + base size=16 base align=8 +std::ios_base::_Words (0x7f09f43c1e70) 0 + +Class std::ios_base::Init + size=1 align=1 + base size=0 base align=1 +std::ios_base::Init (0x7f09f43c65b0) 0 empty + +Vtable for std::ios_base +std::ios_base::_ZTVSt8ios_base: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt8ios_base) +16 std::ios_base::~ios_base +24 std::ios_base::~ios_base + +Class std::ios_base + size=216 align=8 + base size=216 base align=8 +std::ios_base (0x7f09f43b20e0) 0 + vptr=((& std::ios_base::_ZTVSt8ios_base) + 16u) + +Class std::ctype_base + size=1 align=1 + base size=0 base align=1 +std::ctype_base (0x7f09f443ca10) 0 empty + +Class std::__num_base + size=1 align=1 + base size=0 base align=1 +std::__num_base (0x7f09f415e2a0) 0 empty + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSo: 2u entries +0 ((& std::basic_ostream >::_ZTVSo) + 24u) +8 ((& std::basic_ostream >::_ZTVSo) + 64u) + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSt13basic_ostreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 24u) +8 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 64u) + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSi: 2u entries +0 ((& std::basic_istream >::_ZTVSi) + 24u) +8 ((& std::basic_istream >::_ZTVSi) + 64u) + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSt13basic_istreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 24u) +8 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 64u) + +Construction vtable for std::basic_istream > (0x7f09f3e8b3f0 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd0_Si: 10u entries +0 24u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISi) +24 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +32 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +40 -24u +48 (int (*)(...))-0x00000000000000018 +56 (int (*)(...))(& _ZTISi) +64 std::basic_istream >::_ZTv0_n24_NSiD1Ev +72 std::basic_istream >::_ZTv0_n24_NSiD0Ev + +Construction vtable for std::basic_ostream > (0x7f09f3e8b540 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd16_So: 10u entries +0 8u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISo) +24 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +32 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +40 -8u +48 (int (*)(...))-0x00000000000000008 +56 (int (*)(...))(& _ZTISo) +64 std::basic_ostream >::_ZTv0_n24_NSoD1Ev +72 std::basic_ostream >::_ZTv0_n24_NSoD0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSd: 7u entries +0 ((& std::basic_iostream >::_ZTVSd) + 24u) +8 ((& std::basic_iostream >::_ZTCSd0_Si) + 24u) +16 ((& std::basic_iostream >::_ZTCSd0_Si) + 64u) +24 ((& std::basic_iostream >::_ZTCSd16_So) + 24u) +32 ((& std::basic_iostream >::_ZTCSd16_So) + 64u) +40 ((& std::basic_iostream >::_ZTVSd) + 104u) +48 ((& std::basic_iostream >::_ZTVSd) + 64u) + +Construction vtable for std::basic_istream > (0x7f09f3e8b700 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E: 10u entries +0 24u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +24 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +32 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +40 -24u +48 (int (*)(...))-0x00000000000000018 +56 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +64 std::basic_istream >::_ZTv0_n24_NSt13basic_istreamIwSt11char_traitsIwEED1Ev +72 std::basic_istream >::_ZTv0_n24_NSt13basic_istreamIwSt11char_traitsIwEED0Ev + +Construction vtable for std::basic_ostream > (0x7f09f3e8b850 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE16_St13basic_ostreamIwS1_E: 10u entries +0 8u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +24 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +32 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +40 -8u +48 (int (*)(...))-0x00000000000000008 +56 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +64 std::basic_ostream >::_ZTv0_n24_NSt13basic_ostreamIwSt11char_traitsIwEED1Ev +72 std::basic_ostream >::_ZTv0_n24_NSt13basic_ostreamIwSt11char_traitsIwEED0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSt14basic_iostreamIwSt11char_traitsIwEE: 7u entries +0 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 24u) +8 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 24u) +16 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 64u) +24 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE16_St13basic_ostreamIwS1_E) + 24u) +32 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE16_St13basic_ostreamIwS1_E) + 64u) +40 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 104u) +48 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 64u) + +Class QtConcurrent::BlockSizeManager + size=96 align=8 + base size=92 base align=8 +QtConcurrent::BlockSizeManager (0x7f09f3efb310) 0 + +Vtable for QFutureWatcherBase +QFutureWatcherBase::_ZTV18QFutureWatcherBase: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFutureWatcherBase) +16 QFutureWatcherBase::metaObject +24 QFutureWatcherBase::qt_metacast +32 QFutureWatcherBase::qt_metacall +40 QFutureWatcherBase::~QFutureWatcherBase +48 QFutureWatcherBase::~QFutureWatcherBase +56 QFutureWatcherBase::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QFutureWatcherBase::connectNotify +104 QFutureWatcherBase::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QFutureWatcherBase + size=16 align=8 + base size=16 base align=8 +QFutureWatcherBase (0x7f09f3ac2cb0) 0 + vptr=((& QFutureWatcherBase::_ZTV18QFutureWatcherBase) + 16u) + QObject (0x7f09f3ac2d20) 0 + primary-for QFutureWatcherBase (0x7f09f3ac2cb0) + +Vtable for QFactoryInterface +QFactoryInterface::_ZTV17QFactoryInterface: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QFactoryInterface) +16 QFactoryInterface::~QFactoryInterface +24 QFactoryInterface::~QFactoryInterface +32 __cxa_pure_virtual + +Class QFactoryInterface + size=8 align=8 + base size=8 base align=8 +QFactoryInterface (0x7f09f39deee0) 0 nearly-empty + vptr=((& QFactoryInterface::_ZTV17QFactoryInterface) + 16u) + +Vtable for QTextCodecFactoryInterface +QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QTextCodecFactoryInterface) +16 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +24 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QTextCodecFactoryInterface + size=8 align=8 + base size=8 base align=8 +QTextCodecFactoryInterface (0x7f09f3a0b000) 0 nearly-empty + vptr=((& QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface) + 16u) + QFactoryInterface (0x7f09f3a0b070) 0 nearly-empty + primary-for QTextCodecFactoryInterface (0x7f09f3a0b000) + +Vtable for QTextCodecPlugin +QTextCodecPlugin::_ZTV16QTextCodecPlugin: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QTextCodecPlugin) +16 QTextCodecPlugin::metaObject +24 QTextCodecPlugin::qt_metacast +32 QTextCodecPlugin::qt_metacall +40 QTextCodecPlugin::~QTextCodecPlugin +48 QTextCodecPlugin::~QTextCodecPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 QTextCodecPlugin::keys +160 QTextCodecPlugin::create +168 (int (*)(...))-0x00000000000000010 +176 (int (*)(...))(& _ZTI16QTextCodecPlugin) +184 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD1Ev +192 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD0Ev +200 QTextCodecPlugin::_ZThn16_NK16QTextCodecPlugin4keysEv +208 QTextCodecPlugin::_ZThn16_N16QTextCodecPlugin6createERK7QString + +Class QTextCodecPlugin + size=24 align=8 + base size=24 base align=8 +QTextCodecPlugin (0x7f09f3a05e80) 0 + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 16u) + QObject (0x7f09f3a0b8c0) 0 + primary-for QTextCodecPlugin (0x7f09f3a05e80) + QTextCodecFactoryInterface (0x7f09f3a0b930) 16 nearly-empty + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 184u) + QFactoryInterface (0x7f09f3a0b9a0) 16 nearly-empty + primary-for QTextCodecFactoryInterface (0x7f09f3a0b930) + +Class QLibraryInfo + size=1 align=1 + base size=0 base align=1 +QLibraryInfo (0x7f09f3a247e0) 0 empty + +Vtable for QTranslator +QTranslator::_ZTV11QTranslator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTranslator) +16 QTranslator::metaObject +24 QTranslator::qt_metacast +32 QTranslator::qt_metacall +40 QTranslator::~QTranslator +48 QTranslator::~QTranslator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTranslator::translate +120 QTranslator::isEmpty + +Class QTranslator + size=16 align=8 + base size=16 base align=8 +QTranslator (0x7f09f38630e0) 0 + vptr=((& QTranslator::_ZTV11QTranslator) + 16u) + QObject (0x7f09f3863150) 0 + primary-for QTranslator (0x7f09f38630e0) + +Class __exception + size=40 align=8 + base size=40 base align=8 +__exception (0x7f09f3881070) 0 + +Vtable for QMimeData +QMimeData::_ZTV9QMimeData: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QMimeData) +16 QMimeData::metaObject +24 QMimeData::qt_metacast +32 QMimeData::qt_metacall +40 QMimeData::~QMimeData +48 QMimeData::~QMimeData +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMimeData::hasFormat +120 QMimeData::formats +128 QMimeData::retrieveData + +Class QMimeData + size=16 align=8 + base size=16 base align=8 +QMimeData (0x7f09f38e3230) 0 + vptr=((& QMimeData::_ZTV9QMimeData) + 16u) + QObject (0x7f09f38e32a0) 0 + primary-for QMimeData (0x7f09f38e3230) + +Vtable for QEventLoop +QEventLoop::_ZTV10QEventLoop: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QEventLoop) +16 QEventLoop::metaObject +24 QEventLoop::qt_metacast +32 QEventLoop::qt_metacall +40 QEventLoop::~QEventLoop +48 QEventLoop::~QEventLoop +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QEventLoop + size=16 align=8 + base size=16 base align=8 +QEventLoop (0x7f09f38fda80) 0 + vptr=((& QEventLoop::_ZTV10QEventLoop) + 16u) + QObject (0x7f09f38fdaf0) 0 + primary-for QEventLoop (0x7f09f38fda80) + +Vtable for QEvent +QEvent::_ZTV6QEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QEvent) +16 QEvent::~QEvent +24 QEvent::~QEvent + +Class QEvent + size=24 align=8 + base size=20 base align=8 +QEvent (0x7f09f393c3f0) 0 + vptr=((& QEvent::_ZTV6QEvent) + 16u) + +Vtable for QTimerEvent +QTimerEvent::_ZTV11QTimerEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTimerEvent) +16 QTimerEvent::~QTimerEvent +24 QTimerEvent::~QTimerEvent + +Class QTimerEvent + size=24 align=8 + base size=24 base align=8 +QTimerEvent (0x7f09f375a000) 0 + vptr=((& QTimerEvent::_ZTV11QTimerEvent) + 16u) + QEvent (0x7f09f375a070) 0 + primary-for QTimerEvent (0x7f09f375a000) + +Vtable for QChildEvent +QChildEvent::_ZTV11QChildEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QChildEvent) +16 QChildEvent::~QChildEvent +24 QChildEvent::~QChildEvent + +Class QChildEvent + size=32 align=8 + base size=32 base align=8 +QChildEvent (0x7f09f375a460) 0 + vptr=((& QChildEvent::_ZTV11QChildEvent) + 16u) + QEvent (0x7f09f375a4d0) 0 + primary-for QChildEvent (0x7f09f375a460) + +Vtable for QCustomEvent +QCustomEvent::_ZTV12QCustomEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QCustomEvent) +16 QCustomEvent::~QCustomEvent +24 QCustomEvent::~QCustomEvent + +Class QCustomEvent + size=24 align=8 + base size=20 base align=8 +QCustomEvent (0x7f09f376c700) 0 + vptr=((& QCustomEvent::_ZTV12QCustomEvent) + 16u) + QEvent (0x7f09f376c770) 0 + primary-for QCustomEvent (0x7f09f376c700) + +Vtable for QDynamicPropertyChangeEvent +QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QDynamicPropertyChangeEvent) +16 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent +24 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent + +Class QDynamicPropertyChangeEvent + size=32 align=8 + base size=32 base align=8 +QDynamicPropertyChangeEvent (0x7f09f376cee0) 0 + vptr=((& QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent) + 16u) + QEvent (0x7f09f376cf50) 0 + primary-for QDynamicPropertyChangeEvent (0x7f09f376cee0) + +Vtable for QCoreApplication +QCoreApplication::_ZTV16QCoreApplication: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QCoreApplication) +16 QCoreApplication::metaObject +24 QCoreApplication::qt_metacast +32 QCoreApplication::qt_metacall +40 QCoreApplication::~QCoreApplication +48 QCoreApplication::~QCoreApplication +56 QCoreApplication::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCoreApplication::notify +120 QCoreApplication::compressEvent + +Class QCoreApplication + size=16 align=8 + base size=16 base align=8 +QCoreApplication (0x7f09f377a380) 0 + vptr=((& QCoreApplication::_ZTV16QCoreApplication) + 16u) + QObject (0x7f09f377a3f0) 0 + primary-for QCoreApplication (0x7f09f377a380) + +Vtable for QSharedMemory +QSharedMemory::_ZTV13QSharedMemory: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSharedMemory) +16 QSharedMemory::metaObject +24 QSharedMemory::qt_metacast +32 QSharedMemory::qt_metacall +40 QSharedMemory::~QSharedMemory +48 QSharedMemory::~QSharedMemory +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSharedMemory + size=16 align=8 + base size=16 base align=8 +QSharedMemory (0x7f09f37a6b60) 0 + vptr=((& QSharedMemory::_ZTV13QSharedMemory) + 16u) + QObject (0x7f09f37a6bd0) 0 + primary-for QSharedMemory (0x7f09f37a6b60) + +Class QModelIndex + size=24 align=8 + base size=24 base align=8 +QModelIndex (0x7f09f37c5930) 0 + +Class QPersistentModelIndex + size=8 align=8 + base size=8 base align=8 +QPersistentModelIndex (0x7f09f37f03f0) 0 + +Vtable for QAbstractItemModel +QAbstractItemModel::_ZTV18QAbstractItemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractItemModel) +16 QAbstractItemModel::metaObject +24 QAbstractItemModel::qt_metacast +32 QAbstractItemModel::qt_metacall +40 QAbstractItemModel::~QAbstractItemModel +48 QAbstractItemModel::~QAbstractItemModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractItemModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractItemModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractItemModel + size=16 align=8 + base size=16 base align=8 +QAbstractItemModel (0x7f09f37fc700) 0 + vptr=((& QAbstractItemModel::_ZTV18QAbstractItemModel) + 16u) + QObject (0x7f09f37fc770) 0 + primary-for QAbstractItemModel (0x7f09f37fc700) + +Vtable for QAbstractTableModel +QAbstractTableModel::_ZTV19QAbstractTableModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractTableModel) +16 QAbstractTableModel::metaObject +24 QAbstractTableModel::qt_metacast +32 QAbstractTableModel::qt_metacall +40 QAbstractTableModel::~QAbstractTableModel +48 QAbstractTableModel::~QAbstractTableModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractTableModel::index +120 QAbstractTableModel::parent +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractTableModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractTableModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractTableModel + size=16 align=8 + base size=16 base align=8 +QAbstractTableModel (0x7f09f364fa10) 0 + vptr=((& QAbstractTableModel::_ZTV19QAbstractTableModel) + 16u) + QAbstractItemModel (0x7f09f364fa80) 0 + primary-for QAbstractTableModel (0x7f09f364fa10) + QObject (0x7f09f364faf0) 0 + primary-for QAbstractItemModel (0x7f09f364fa80) + +Vtable for QAbstractListModel +QAbstractListModel::_ZTV18QAbstractListModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractListModel) +16 QAbstractListModel::metaObject +24 QAbstractListModel::qt_metacast +32 QAbstractListModel::qt_metacall +40 QAbstractListModel::~QAbstractListModel +48 QAbstractListModel::~QAbstractListModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractListModel::index +120 QAbstractListModel::parent +128 __cxa_pure_virtual +136 QAbstractListModel::columnCount +144 QAbstractListModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractListModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractListModel + size=16 align=8 + base size=16 base align=8 +QAbstractListModel (0x7f09f365b310) 0 + vptr=((& QAbstractListModel::_ZTV18QAbstractListModel) + 16u) + QAbstractItemModel (0x7f09f3668000) 0 + primary-for QAbstractListModel (0x7f09f365b310) + QObject (0x7f09f3668070) 0 + primary-for QAbstractItemModel (0x7f09f3668000) + +Vtable for QSignalMapper +QSignalMapper::_ZTV13QSignalMapper: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSignalMapper) +16 QSignalMapper::metaObject +24 QSignalMapper::qt_metacast +32 QSignalMapper::qt_metacall +40 QSignalMapper::~QSignalMapper +48 QSignalMapper::~QSignalMapper +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSignalMapper + size=16 align=8 + base size=16 base align=8 +QSignalMapper (0x7f09f369b0e0) 0 + vptr=((& QSignalMapper::_ZTV13QSignalMapper) + 16u) + QObject (0x7f09f369b150) 0 + primary-for QSignalMapper (0x7f09f369b0e0) + +Vtable for QObjectCleanupHandler +QObjectCleanupHandler::_ZTV21QObjectCleanupHandler: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QObjectCleanupHandler) +16 QObjectCleanupHandler::metaObject +24 QObjectCleanupHandler::qt_metacast +32 QObjectCleanupHandler::qt_metacall +40 QObjectCleanupHandler::~QObjectCleanupHandler +48 QObjectCleanupHandler::~QObjectCleanupHandler +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObjectCleanupHandler + size=24 align=8 + base size=24 base align=8 +QObjectCleanupHandler (0x7f09f36b44d0) 0 + vptr=((& QObjectCleanupHandler::_ZTV21QObjectCleanupHandler) + 16u) + QObject (0x7f09f36b4540) 0 + primary-for QObjectCleanupHandler (0x7f09f36b44d0) + +Class QBasicTimer + size=4 align=4 + base size=4 base align=4 +QBasicTimer (0x7f09f36c5620) 0 + +Vtable for QSocketNotifier +QSocketNotifier::_ZTV15QSocketNotifier: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSocketNotifier) +16 QSocketNotifier::metaObject +24 QSocketNotifier::qt_metacast +32 QSocketNotifier::qt_metacall +40 QSocketNotifier::~QSocketNotifier +48 QSocketNotifier::~QSocketNotifier +56 QSocketNotifier::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSocketNotifier + size=32 align=8 + base size=25 base align=8 +QSocketNotifier (0x7f09f36cda10) 0 + vptr=((& QSocketNotifier::_ZTV15QSocketNotifier) + 16u) + QObject (0x7f09f36cda80) 0 + primary-for QSocketNotifier (0x7f09f36cda10) + +Vtable for QTimer +QTimer::_ZTV6QTimer: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QTimer) +16 QTimer::metaObject +24 QTimer::qt_metacast +32 QTimer::qt_metacall +40 QTimer::~QTimer +48 QTimer::~QTimer +56 QObject::event +64 QObject::eventFilter +72 QTimer::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTimer + size=32 align=8 + base size=29 base align=8 +QTimer (0x7f09f36e9d90) 0 + vptr=((& QTimer::_ZTV6QTimer) + 16u) + QObject (0x7f09f36e9e00) 0 + primary-for QTimer (0x7f09f36e9d90) + +Vtable for QAbstractEventDispatcher +QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QAbstractEventDispatcher) +16 QAbstractEventDispatcher::metaObject +24 QAbstractEventDispatcher::qt_metacast +32 QAbstractEventDispatcher::qt_metacall +40 QAbstractEventDispatcher::~QAbstractEventDispatcher +48 QAbstractEventDispatcher::~QAbstractEventDispatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 QAbstractEventDispatcher::startingUp +208 QAbstractEventDispatcher::closingDown + +Class QAbstractEventDispatcher + size=16 align=8 + base size=16 base align=8 +QAbstractEventDispatcher (0x7f09f370e380) 0 + vptr=((& QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher) + 16u) + QObject (0x7f09f370e3f0) 0 + primary-for QAbstractEventDispatcher (0x7f09f370e380) + +Class QMetaMethod + size=16 align=8 + base size=12 base align=8 +QMetaMethod (0x7f09f3729230) 0 + +Class QMetaEnum + size=16 align=8 + base size=12 base align=8 +QMetaEnum (0x7f09f3744690) 0 + +Class QMetaProperty + size=32 align=8 + base size=32 base align=8 +QMetaProperty (0x7f09f35513f0) 0 + +Class QMetaClassInfo + size=16 align=8 + base size=12 base align=8 +QMetaClassInfo (0x7f09f3551a80) 0 + +Class QSystemSemaphore + size=8 align=8 + base size=8 base align=8 +QSystemSemaphore (0x7f09f35635b0) 0 + +Vtable for QLibrary +QLibrary::_ZTV8QLibrary: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QLibrary) +16 QLibrary::metaObject +24 QLibrary::qt_metacast +32 QLibrary::qt_metacall +40 QLibrary::~QLibrary +48 QLibrary::~QLibrary +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QLibrary + size=32 align=8 + base size=25 base align=8 +QLibrary (0x7f09f3563ee0) 0 + vptr=((& QLibrary::_ZTV8QLibrary) + 16u) + QObject (0x7f09f3563f50) 0 + primary-for QLibrary (0x7f09f3563ee0) + +Vtable for QPluginLoader +QPluginLoader::_ZTV13QPluginLoader: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QPluginLoader) +16 QPluginLoader::metaObject +24 QPluginLoader::qt_metacast +32 QPluginLoader::qt_metacall +40 QPluginLoader::~QPluginLoader +48 QPluginLoader::~QPluginLoader +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QPluginLoader + size=32 align=8 + base size=25 base align=8 +QPluginLoader (0x7f09f35aa9a0) 0 + vptr=((& QPluginLoader::_ZTV13QPluginLoader) + 16u) + QObject (0x7f09f35aaa10) 0 + primary-for QPluginLoader (0x7f09f35aa9a0) + +Class QUuid + size=16 align=4 + base size=16 base align=4 +QUuid (0x7f09f35cd150) 0 + +Class QSemaphore + size=8 align=8 + base size=8 base align=8 +QSemaphore (0x7f09f35eba80) 0 + +Class QThreadStorageData + size=4 align=4 + base size=4 base align=4 +QThreadStorageData (0x7f09f35fd000) 0 + +Class QReadWriteLock + size=8 align=8 + base size=8 base align=8 +QReadWriteLock (0x7f09f35fd770) 0 + +Class QReadLocker + size=8 align=8 + base size=8 base align=8 +QReadLocker (0x7f09f35fde00) 0 + +Class QWriteLocker + size=8 align=8 + base size=8 base align=8 +QWriteLocker (0x7f09f362b1c0) 0 + +Class QDomImplementation + size=8 align=8 + base size=8 base align=8 +QDomImplementation (0x7f09f363d540) 0 + +Class QDomNode + size=8 align=8 + base size=8 base align=8 +QDomNode (0x7f09f363de70) 0 + +Class QDomNodeList + size=8 align=8 + base size=8 base align=8 +QDomNodeList (0x7f09f34690e0) 0 + +Class QDomDocumentType + size=8 align=8 + base size=8 base align=8 +QDomDocumentType (0x7f09f3473150) 0 + QDomNode (0x7f09f34731c0) 0 + +Class QDomDocument + size=8 align=8 + base size=8 base align=8 +QDomDocument (0x7f09f3473cb0) 0 + QDomNode (0x7f09f3473d20) 0 + +Class QDomNamedNodeMap + size=8 align=8 + base size=8 base align=8 +QDomNamedNodeMap (0x7f09f347bbd0) 0 + +Class QDomDocumentFragment + size=8 align=8 + base size=8 base align=8 +QDomDocumentFragment (0x7f09f348da10) 0 + QDomNode (0x7f09f348da80) 0 + +Class QDomCharacterData + size=8 align=8 + base size=8 base align=8 +QDomCharacterData (0x7f09f349a5b0) 0 + QDomNode (0x7f09f349a620) 0 + +Class QDomAttr + size=8 align=8 + base size=8 base align=8 +QDomAttr (0x7f09f34a1000) 0 + QDomNode (0x7f09f34a1070) 0 + +Class QDomElement + size=8 align=8 + base size=8 base align=8 +QDomElement (0x7f09f34a1b60) 0 + QDomNode (0x7f09f34a1bd0) 0 + +Class QDomText + size=8 align=8 + base size=8 base align=8 +QDomText (0x7f09f34a8e00) 0 + QDomCharacterData (0x7f09f34a8e70) 0 + QDomNode (0x7f09f34a8ee0) 0 + +Class QDomComment + size=8 align=8 + base size=8 base align=8 +QDomComment (0x7f09f34bfb60) 0 + QDomCharacterData (0x7f09f34bfbd0) 0 + QDomNode (0x7f09f34bfc40) 0 + +Class QDomCDATASection + size=8 align=8 + base size=8 base align=8 +QDomCDATASection (0x7f09f34c4770) 0 + QDomText (0x7f09f34c47e0) 0 + QDomCharacterData (0x7f09f34c4850) 0 + QDomNode (0x7f09f34c48c0) 0 + +Class QDomNotation + size=8 align=8 + base size=8 base align=8 +QDomNotation (0x7f09f34c83f0) 0 + QDomNode (0x7f09f34c8460) 0 + +Class QDomEntity + size=8 align=8 + base size=8 base align=8 +QDomEntity (0x7f09f34c8f50) 0 + QDomNode (0x7f09f34d0000) 0 + +Class QDomEntityReference + size=8 align=8 + base size=8 base align=8 +QDomEntityReference (0x7f09f34d0af0) 0 + QDomNode (0x7f09f34d0b60) 0 + +Class QDomProcessingInstruction + size=8 align=8 + base size=8 base align=8 +QDomProcessingInstruction (0x7f09f34d4690) 0 + QDomNode (0x7f09f34d4700) 0 + +Class QXmlNamespaceSupport + size=8 align=8 + base size=8 base align=8 +QXmlNamespaceSupport (0x7f09f34dc230) 0 + +Class QXmlAttributes::Attribute + size=32 align=8 + base size=32 base align=8 +QXmlAttributes::Attribute (0x7f09f34dc8c0) 0 + +Vtable for QXmlAttributes +QXmlAttributes::_ZTV14QXmlAttributes: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QXmlAttributes) +16 QXmlAttributes::~QXmlAttributes +24 QXmlAttributes::~QXmlAttributes + +Class QXmlAttributes + size=24 align=8 + base size=24 base align=8 +QXmlAttributes (0x7f09f34dc770) 0 + vptr=((& QXmlAttributes::_ZTV14QXmlAttributes) + 16u) + +Vtable for QXmlInputSource +QXmlInputSource::_ZTV15QXmlInputSource: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QXmlInputSource) +16 QXmlInputSource::~QXmlInputSource +24 QXmlInputSource::~QXmlInputSource +32 QXmlInputSource::setData +40 QXmlInputSource::setData +48 QXmlInputSource::fetchData +56 QXmlInputSource::data +64 QXmlInputSource::next +72 QXmlInputSource::reset +80 QXmlInputSource::fromRawData + +Class QXmlInputSource + size=16 align=8 + base size=16 base align=8 +QXmlInputSource (0x7f09f351d000) 0 + vptr=((& QXmlInputSource::_ZTV15QXmlInputSource) + 16u) + +Class QXmlParseException + size=8 align=8 + base size=8 base align=8 +QXmlParseException (0x7f09f351d310) 0 + +Vtable for QXmlReader +QXmlReader::_ZTV10QXmlReader: 24u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QXmlReader) +16 QXmlReader::~QXmlReader +24 QXmlReader::~QXmlReader +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual + +Class QXmlReader + size=8 align=8 + base size=8 base align=8 +QXmlReader (0x7f09f351d5b0) 0 nearly-empty + vptr=((& QXmlReader::_ZTV10QXmlReader) + 16u) + +Vtable for QXmlSimpleReader +QXmlSimpleReader::_ZTV16QXmlSimpleReader: 26u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QXmlSimpleReader) +16 QXmlSimpleReader::~QXmlSimpleReader +24 QXmlSimpleReader::~QXmlSimpleReader +32 QXmlSimpleReader::feature +40 QXmlSimpleReader::setFeature +48 QXmlSimpleReader::hasFeature +56 QXmlSimpleReader::property +64 QXmlSimpleReader::setProperty +72 QXmlSimpleReader::hasProperty +80 QXmlSimpleReader::setEntityResolver +88 QXmlSimpleReader::entityResolver +96 QXmlSimpleReader::setDTDHandler +104 QXmlSimpleReader::DTDHandler +112 QXmlSimpleReader::setContentHandler +120 QXmlSimpleReader::contentHandler +128 QXmlSimpleReader::setErrorHandler +136 QXmlSimpleReader::errorHandler +144 QXmlSimpleReader::setLexicalHandler +152 QXmlSimpleReader::lexicalHandler +160 QXmlSimpleReader::setDeclHandler +168 QXmlSimpleReader::declHandler +176 QXmlSimpleReader::parse +184 QXmlSimpleReader::parse +192 QXmlSimpleReader::parse +200 QXmlSimpleReader::parseContinue + +Class QXmlSimpleReader + size=16 align=8 + base size=16 base align=8 +QXmlSimpleReader (0x7f09f351d2a0) 0 + vptr=((& QXmlSimpleReader::_ZTV16QXmlSimpleReader) + 16u) + QXmlReader (0x7f09f351d690) 0 nearly-empty + primary-for QXmlSimpleReader (0x7f09f351d2a0) + +Vtable for QXmlLocator +QXmlLocator::_ZTV11QXmlLocator: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QXmlLocator) +16 QXmlLocator::~QXmlLocator +24 QXmlLocator::~QXmlLocator +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QXmlLocator + size=8 align=8 + base size=8 base align=8 +QXmlLocator (0x7f09f3539a10) 0 nearly-empty + vptr=((& QXmlLocator::_ZTV11QXmlLocator) + 16u) + +Vtable for QXmlContentHandler +QXmlContentHandler::_ZTV18QXmlContentHandler: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QXmlContentHandler) +16 QXmlContentHandler::~QXmlContentHandler +24 QXmlContentHandler::~QXmlContentHandler +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QXmlContentHandler + size=8 align=8 + base size=8 base align=8 +QXmlContentHandler (0x7f09f3539c40) 0 nearly-empty + vptr=((& QXmlContentHandler::_ZTV18QXmlContentHandler) + 16u) + +Vtable for QXmlErrorHandler +QXmlErrorHandler::_ZTV16QXmlErrorHandler: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QXmlErrorHandler) +16 QXmlErrorHandler::~QXmlErrorHandler +24 QXmlErrorHandler::~QXmlErrorHandler +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual + +Class QXmlErrorHandler + size=8 align=8 + base size=8 base align=8 +QXmlErrorHandler (0x7f09f3352540) 0 nearly-empty + vptr=((& QXmlErrorHandler::_ZTV16QXmlErrorHandler) + 16u) + +Vtable for QXmlDTDHandler +QXmlDTDHandler::_ZTV14QXmlDTDHandler: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QXmlDTDHandler) +16 QXmlDTDHandler::~QXmlDTDHandler +24 QXmlDTDHandler::~QXmlDTDHandler +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual + +Class QXmlDTDHandler + size=8 align=8 + base size=8 base align=8 +QXmlDTDHandler (0x7f09f3352f50) 0 nearly-empty + vptr=((& QXmlDTDHandler::_ZTV14QXmlDTDHandler) + 16u) + +Vtable for QXmlEntityResolver +QXmlEntityResolver::_ZTV18QXmlEntityResolver: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QXmlEntityResolver) +16 QXmlEntityResolver::~QXmlEntityResolver +24 QXmlEntityResolver::~QXmlEntityResolver +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QXmlEntityResolver + size=8 align=8 + base size=8 base align=8 +QXmlEntityResolver (0x7f09f3361930) 0 nearly-empty + vptr=((& QXmlEntityResolver::_ZTV18QXmlEntityResolver) + 16u) + +Vtable for QXmlLexicalHandler +QXmlLexicalHandler::_ZTV18QXmlLexicalHandler: 12u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QXmlLexicalHandler) +16 QXmlLexicalHandler::~QXmlLexicalHandler +24 QXmlLexicalHandler::~QXmlLexicalHandler +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual + +Class QXmlLexicalHandler + size=8 align=8 + base size=8 base align=8 +QXmlLexicalHandler (0x7f09f336c310) 0 nearly-empty + vptr=((& QXmlLexicalHandler::_ZTV18QXmlLexicalHandler) + 16u) + +Vtable for QXmlDeclHandler +QXmlDeclHandler::_ZTV15QXmlDeclHandler: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QXmlDeclHandler) +16 QXmlDeclHandler::~QXmlDeclHandler +24 QXmlDeclHandler::~QXmlDeclHandler +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual + +Class QXmlDeclHandler + size=8 align=8 + base size=8 base align=8 +QXmlDeclHandler (0x7f09f336cd20) 0 nearly-empty + vptr=((& QXmlDeclHandler::_ZTV15QXmlDeclHandler) + 16u) + +Vtable for QXmlDefaultHandler +QXmlDefaultHandler::_ZTV18QXmlDefaultHandler: 73u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QXmlDefaultHandler) +16 QXmlDefaultHandler::~QXmlDefaultHandler +24 QXmlDefaultHandler::~QXmlDefaultHandler +32 QXmlDefaultHandler::setDocumentLocator +40 QXmlDefaultHandler::startDocument +48 QXmlDefaultHandler::endDocument +56 QXmlDefaultHandler::startPrefixMapping +64 QXmlDefaultHandler::endPrefixMapping +72 QXmlDefaultHandler::startElement +80 QXmlDefaultHandler::endElement +88 QXmlDefaultHandler::characters +96 QXmlDefaultHandler::ignorableWhitespace +104 QXmlDefaultHandler::processingInstruction +112 QXmlDefaultHandler::skippedEntity +120 QXmlDefaultHandler::errorString +128 QXmlDefaultHandler::warning +136 QXmlDefaultHandler::error +144 QXmlDefaultHandler::fatalError +152 QXmlDefaultHandler::notationDecl +160 QXmlDefaultHandler::unparsedEntityDecl +168 QXmlDefaultHandler::resolveEntity +176 QXmlDefaultHandler::startDTD +184 QXmlDefaultHandler::endDTD +192 QXmlDefaultHandler::startEntity +200 QXmlDefaultHandler::endEntity +208 QXmlDefaultHandler::startCDATA +216 QXmlDefaultHandler::endCDATA +224 QXmlDefaultHandler::comment +232 QXmlDefaultHandler::attributeDecl +240 QXmlDefaultHandler::internalEntityDecl +248 QXmlDefaultHandler::externalEntityDecl +256 (int (*)(...))-0x00000000000000008 +264 (int (*)(...))(& _ZTI18QXmlDefaultHandler) +272 QXmlDefaultHandler::_ZThn8_N18QXmlDefaultHandlerD1Ev +280 QXmlDefaultHandler::_ZThn8_N18QXmlDefaultHandlerD0Ev +288 QXmlDefaultHandler::_ZThn8_N18QXmlDefaultHandler7warningERK18QXmlParseException +296 QXmlDefaultHandler::_ZThn8_N18QXmlDefaultHandler5errorERK18QXmlParseException +304 QXmlDefaultHandler::_ZThn8_N18QXmlDefaultHandler10fatalErrorERK18QXmlParseException +312 QXmlDefaultHandler::_ZThn8_NK18QXmlDefaultHandler11errorStringEv +320 (int (*)(...))-0x00000000000000010 +328 (int (*)(...))(& _ZTI18QXmlDefaultHandler) +336 QXmlDefaultHandler::_ZThn16_N18QXmlDefaultHandlerD1Ev +344 QXmlDefaultHandler::_ZThn16_N18QXmlDefaultHandlerD0Ev +352 QXmlDefaultHandler::_ZThn16_N18QXmlDefaultHandler12notationDeclERK7QStringS2_S2_ +360 QXmlDefaultHandler::_ZThn16_N18QXmlDefaultHandler18unparsedEntityDeclERK7QStringS2_S2_S2_ +368 QXmlDefaultHandler::_ZThn16_NK18QXmlDefaultHandler11errorStringEv +376 (int (*)(...))-0x00000000000000018 +384 (int (*)(...))(& _ZTI18QXmlDefaultHandler) +392 QXmlDefaultHandler::_ZThn24_N18QXmlDefaultHandlerD1Ev +400 QXmlDefaultHandler::_ZThn24_N18QXmlDefaultHandlerD0Ev +408 QXmlDefaultHandler::_ZThn24_N18QXmlDefaultHandler13resolveEntityERK7QStringS2_RP15QXmlInputSource +416 QXmlDefaultHandler::_ZThn24_NK18QXmlDefaultHandler11errorStringEv +424 (int (*)(...))-0x00000000000000020 +432 (int (*)(...))(& _ZTI18QXmlDefaultHandler) +440 QXmlDefaultHandler::_ZThn32_N18QXmlDefaultHandlerD1Ev +448 QXmlDefaultHandler::_ZThn32_N18QXmlDefaultHandlerD0Ev +456 QXmlDefaultHandler::_ZThn32_N18QXmlDefaultHandler8startDTDERK7QStringS2_S2_ +464 QXmlDefaultHandler::_ZThn32_N18QXmlDefaultHandler6endDTDEv +472 QXmlDefaultHandler::_ZThn32_N18QXmlDefaultHandler11startEntityERK7QString +480 QXmlDefaultHandler::_ZThn32_N18QXmlDefaultHandler9endEntityERK7QString +488 QXmlDefaultHandler::_ZThn32_N18QXmlDefaultHandler10startCDATAEv +496 QXmlDefaultHandler::_ZThn32_N18QXmlDefaultHandler8endCDATAEv +504 QXmlDefaultHandler::_ZThn32_N18QXmlDefaultHandler7commentERK7QString +512 QXmlDefaultHandler::_ZThn32_NK18QXmlDefaultHandler11errorStringEv +520 (int (*)(...))-0x00000000000000028 +528 (int (*)(...))(& _ZTI18QXmlDefaultHandler) +536 QXmlDefaultHandler::_ZThn40_N18QXmlDefaultHandlerD1Ev +544 QXmlDefaultHandler::_ZThn40_N18QXmlDefaultHandlerD0Ev +552 QXmlDefaultHandler::_ZThn40_N18QXmlDefaultHandler13attributeDeclERK7QStringS2_S2_S2_S2_ +560 QXmlDefaultHandler::_ZThn40_N18QXmlDefaultHandler18internalEntityDeclERK7QStringS2_ +568 QXmlDefaultHandler::_ZThn40_N18QXmlDefaultHandler18externalEntityDeclERK7QStringS2_S2_ +576 QXmlDefaultHandler::_ZThn40_NK18QXmlDefaultHandler11errorStringEv + +Class QXmlDefaultHandler + size=56 align=8 + base size=56 base align=8 +QXmlDefaultHandler (0x7f09f3376c80) 0 + vptr=((& QXmlDefaultHandler::_ZTV18QXmlDefaultHandler) + 16u) + QXmlContentHandler (0x7f09f337d690) 0 nearly-empty + primary-for QXmlDefaultHandler (0x7f09f3376c80) + QXmlErrorHandler (0x7f09f337d700) 8 nearly-empty + vptr=((& QXmlDefaultHandler::_ZTV18QXmlDefaultHandler) + 272u) + QXmlDTDHandler (0x7f09f337d770) 16 nearly-empty + vptr=((& QXmlDefaultHandler::_ZTV18QXmlDefaultHandler) + 336u) + QXmlEntityResolver (0x7f09f337d7e0) 24 nearly-empty + vptr=((& QXmlDefaultHandler::_ZTV18QXmlDefaultHandler) + 392u) + QXmlLexicalHandler (0x7f09f337d850) 32 nearly-empty + vptr=((& QXmlDefaultHandler::_ZTV18QXmlDefaultHandler) + 440u) + QXmlDeclHandler (0x7f09f337d8c0) 40 nearly-empty + vptr=((& QXmlDefaultHandler::_ZTV18QXmlDefaultHandler) + 536u) + +Vtable for QAbstractExtensionFactory +QAbstractExtensionFactory::_ZTV25QAbstractExtensionFactory: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QAbstractExtensionFactory) +16 QAbstractExtensionFactory::~QAbstractExtensionFactory +24 QAbstractExtensionFactory::~QAbstractExtensionFactory +32 __cxa_pure_virtual + +Class QAbstractExtensionFactory + size=8 align=8 + base size=8 base align=8 +QAbstractExtensionFactory (0x7f09f33d1230) 0 nearly-empty + vptr=((& QAbstractExtensionFactory::_ZTV25QAbstractExtensionFactory) + 16u) + +Vtable for QAbstractExtensionManager +QAbstractExtensionManager::_ZTV25QAbstractExtensionManager: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QAbstractExtensionManager) +16 QAbstractExtensionManager::~QAbstractExtensionManager +24 QAbstractExtensionManager::~QAbstractExtensionManager +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual + +Class QAbstractExtensionManager + size=8 align=8 + base size=8 base align=8 +QAbstractExtensionManager (0x7f09f33de310) 0 nearly-empty + vptr=((& QAbstractExtensionManager::_ZTV25QAbstractExtensionManager) + 16u) + +Vtable for QDesignerMemberSheetExtension +QDesignerMemberSheetExtension::_ZTV29QDesignerMemberSheetExtension: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI29QDesignerMemberSheetExtension) +16 QDesignerMemberSheetExtension::~QDesignerMemberSheetExtension +24 QDesignerMemberSheetExtension::~QDesignerMemberSheetExtension +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual + +Class QDesignerMemberSheetExtension + size=8 align=8 + base size=8 base align=8 +QDesignerMemberSheetExtension (0x7f09f33ea460) 0 nearly-empty + vptr=((& QDesignerMemberSheetExtension::_ZTV29QDesignerMemberSheetExtension) + 16u) + +Vtable for QDesignerWidgetFactoryInterface +QDesignerWidgetFactoryInterface::_ZTV31QDesignerWidgetFactoryInterface: 21u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI31QDesignerWidgetFactoryInterface) +16 QDesignerWidgetFactoryInterface::metaObject +24 QDesignerWidgetFactoryInterface::qt_metacast +32 QDesignerWidgetFactoryInterface::qt_metacall +40 QDesignerWidgetFactoryInterface::~QDesignerWidgetFactoryInterface +48 QDesignerWidgetFactoryInterface::~QDesignerWidgetFactoryInterface +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual + +Class QDesignerWidgetFactoryInterface + size=16 align=8 + base size=16 base align=8 +QDesignerWidgetFactoryInterface (0x7f09f33feaf0) 0 + vptr=((& QDesignerWidgetFactoryInterface::_ZTV31QDesignerWidgetFactoryInterface) + 16u) + QObject (0x7f09f33feb60) 0 + primary-for QDesignerWidgetFactoryInterface (0x7f09f33feaf0) + +Vtable for QDesignerFormEditorPluginInterface +QDesignerFormEditorPluginInterface::_ZTV34QDesignerFormEditorPluginInterface: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI34QDesignerFormEditorPluginInterface) +16 QDesignerFormEditorPluginInterface::~QDesignerFormEditorPluginInterface +24 QDesignerFormEditorPluginInterface::~QDesignerFormEditorPluginInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual + +Class QDesignerFormEditorPluginInterface + size=8 align=8 + base size=8 base align=8 +QDesignerFormEditorPluginInterface (0x7f09f3415a80) 0 nearly-empty + vptr=((& QDesignerFormEditorPluginInterface::_ZTV34QDesignerFormEditorPluginInterface) + 16u) + +Vtable for QDesignerExtraInfoExtension +QDesignerExtraInfoExtension::_ZTV27QDesignerExtraInfoExtension: 10u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QDesignerExtraInfoExtension) +16 QDesignerExtraInfoExtension::~QDesignerExtraInfoExtension +24 QDesignerExtraInfoExtension::~QDesignerExtraInfoExtension +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual + +Class QDesignerExtraInfoExtension + size=16 align=8 + base size=16 base align=8 +QDesignerExtraInfoExtension (0x7f09f341fc40) 0 + vptr=((& QDesignerExtraInfoExtension::_ZTV27QDesignerExtraInfoExtension) + 16u) + +Vtable for QDesignerDynamicPropertySheetExtension +QDesignerDynamicPropertySheetExtension::_ZTV38QDesignerDynamicPropertySheetExtension: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI38QDesignerDynamicPropertySheetExtension) +16 QDesignerDynamicPropertySheetExtension::~QDesignerDynamicPropertySheetExtension +24 QDesignerDynamicPropertySheetExtension::~QDesignerDynamicPropertySheetExtension +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual + +Class QDesignerDynamicPropertySheetExtension + size=8 align=8 + base size=8 base align=8 +QDesignerDynamicPropertySheetExtension (0x7f09f343b4d0) 0 nearly-empty + vptr=((& QDesignerDynamicPropertySheetExtension::_ZTV38QDesignerDynamicPropertySheetExtension) + 16u) + +Vtable for QDesignerFormWindowToolInterface +QDesignerFormWindowToolInterface::_ZTV32QDesignerFormWindowToolInterface: 23u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI32QDesignerFormWindowToolInterface) +16 QDesignerFormWindowToolInterface::metaObject +24 QDesignerFormWindowToolInterface::qt_metacast +32 QDesignerFormWindowToolInterface::qt_metacall +40 QDesignerFormWindowToolInterface::~QDesignerFormWindowToolInterface +48 QDesignerFormWindowToolInterface::~QDesignerFormWindowToolInterface +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 QDesignerFormWindowToolInterface::saveToDom +168 QDesignerFormWindowToolInterface::loadFromDom +176 __cxa_pure_virtual + +Class QDesignerFormWindowToolInterface + size=16 align=8 + base size=16 base align=8 +QDesignerFormWindowToolInterface (0x7f09f3249b60) 0 + vptr=((& QDesignerFormWindowToolInterface::_ZTV32QDesignerFormWindowToolInterface) + 16u) + QObject (0x7f09f3249bd0) 0 + primary-for QDesignerFormWindowToolInterface (0x7f09f3249b60) + +Vtable for QPaintDevice +QPaintDevice::_ZTV12QPaintDevice: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QPaintDevice) +16 QPaintDevice::~QPaintDevice +24 QPaintDevice::~QPaintDevice +32 QPaintDevice::devType +40 __cxa_pure_virtual +48 QPaintDevice::metric + +Class QPaintDevice + size=16 align=8 + base size=10 base align=8 +QPaintDevice (0x7f09f325ec40) 0 + vptr=((& QPaintDevice::_ZTV12QPaintDevice) + 16u) + +Class QColor + size=16 align=4 + base size=14 base align=4 +QColor (0x7f09f329a000) 0 + +Class QPolygon + size=8 align=8 + base size=8 base align=8 +QPolygon (0x7f09f32e93f0) 0 + QVector (0x7f09f32e9460) 0 + +Class QPolygonF + size=8 align=8 + base size=8 base align=8 +QPolygonF (0x7f09f332d540) 0 + QVector (0x7f09f332d5b0) 0 + +Class QRegion::QRegionData + size=32 align=8 + base size=32 base align=8 +QRegion::QRegionData (0x7f09f3185af0) 0 + +Class QRegion + size=8 align=8 + base size=8 base align=8 +QRegion (0x7f09f316d1c0) 0 + +Class QMatrix + size=48 align=8 + base size=48 base align=8 +QMatrix (0x7f09f31a2310) 0 + +Class QPainterPath::Element + size=24 align=8 + base size=24 base align=8 +QPainterPath::Element (0x7f09f31d2d20) 0 + +Class QPainterPath + size=8 align=8 + base size=8 base align=8 +QPainterPath (0x7f09f31d2cb0) 0 + +Class QPainterPathPrivate + size=16 align=8 + base size=16 base align=8 +QPainterPathPrivate (0x7f09f321b0e0) 0 + +Class QPainterPathStroker + size=8 align=8 + base size=8 base align=8 +QPainterPathStroker (0x7f09f321bc40) 0 + +Class QTransform + size=88 align=8 + base size=88 base align=8 +QTransform (0x7f09f307a7e0) 0 + +Class QImageTextKeyLang + size=16 align=8 + base size=16 base align=8 +QImageTextKeyLang (0x7f09f30f8af0) 0 + +Vtable for QImage +QImage::_ZTV6QImage: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QImage) +16 QImage::~QImage +24 QImage::~QImage +32 QImage::devType +40 QImage::paintEngine +48 QImage::metric + +Class QImage + size=24 align=8 + base size=24 base align=8 +QImage (0x7f09f3148380) 0 + vptr=((& QImage::_ZTV6QImage) + 16u) + QPaintDevice (0x7f09f31483f0) 0 + primary-for QImage (0x7f09f3148380) + +Vtable for QPixmap +QPixmap::_ZTV7QPixmap: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QPixmap) +16 QPixmap::~QPixmap +24 QPixmap::~QPixmap +32 QPixmap::devType +40 QPixmap::paintEngine +48 QPixmap::metric + +Class QPixmap + size=24 align=8 + base size=24 base align=8 +QPixmap (0x7f09f2f3ed90) 0 + vptr=((& QPixmap::_ZTV7QPixmap) + 16u) + QPaintDevice (0x7f09f2f3ee00) 0 + primary-for QPixmap (0x7f09f2f3ed90) + +Class QBrush + size=8 align=8 + base size=8 base align=8 +QBrush (0x7f09f2f91f50) 0 + +Class QBrushData + size=112 align=8 + base size=112 base align=8 +QBrushData (0x7f09f2fb2b60) 0 + +Class QGradient + size=64 align=8 + base size=64 base align=8 +QGradient (0x7f09f2fc0d20) 0 + +Class QLinearGradient + size=64 align=8 + base size=64 base align=8 +QLinearGradient (0x7f09f2dfe7e0) 0 + QGradient (0x7f09f2dfe850) 0 + +Class QRadialGradient + size=64 align=8 + base size=64 base align=8 +QRadialGradient (0x7f09f2dfecb0) 0 + QGradient (0x7f09f2dfed20) 0 + +Class QConicalGradient + size=64 align=8 + base size=64 base align=8 +QConicalGradient (0x7f09f2e112a0) 0 + QGradient (0x7f09f2e11310) 0 + +Class QPalette + size=16 align=8 + base size=12 base align=8 +QPalette (0x7f09f2e11620) 0 + +Class QColorGroup + size=16 align=8 + base size=12 base align=8 +QColorGroup (0x7f09f2e5ef50) 0 + QPalette (0x7f09f2e67000) 0 + +Class QFont + size=16 align=8 + base size=12 base align=8 +QFont (0x7f09f2ea02a0) 0 + +Class QFontMetrics + size=8 align=8 + base size=8 base align=8 +QFontMetrics (0x7f09f2cd6ee0) 0 + +Class QFontMetricsF + size=8 align=8 + base size=8 base align=8 +QFontMetricsF (0x7f09f2cf2380) 0 + +Class QFontInfo + size=8 align=8 + base size=8 base align=8 +QFontInfo (0x7f09f2d072a0) 0 + +Class QSizePolicy + size=4 align=4 + base size=4 base align=4 +QSizePolicy (0x7f09f2d07d90) 0 + +Class QCursor + size=8 align=8 + base size=8 base align=8 +QCursor (0x7f09f2bcdaf0) 0 + +Class QKeySequence + size=8 align=8 + base size=8 base align=8 +QKeySequence (0x7f09f2bd3310) 0 + +Class QWidgetData + size=88 align=8 + base size=88 base align=8 +QWidgetData (0x7f09f2bf5ee0) 0 + +Vtable for QWidget +QWidget::_ZTV7QWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QWidget) +16 QWidget::metaObject +24 QWidget::qt_metacast +32 QWidget::qt_metacall +40 QWidget::~QWidget +48 QWidget::~QWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI7QWidget) +464 QWidget::_ZThn16_N7QWidgetD1Ev +472 QWidget::_ZThn16_N7QWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWidget + size=40 align=8 + base size=40 base align=8 +QWidget (0x7f09f2c1c180) 0 + vptr=((& QWidget::_ZTV7QWidget) + 16u) + QObject (0x7f09f2bf5f50) 0 + primary-for QWidget (0x7f09f2c1c180) + QPaintDevice (0x7f09f2c2f000) 16 + vptr=((& QWidget::_ZTV7QWidget) + 464u) + +Class QIcon + size=8 align=8 + base size=8 base align=8 +QIcon (0x7f09f2b81d20) 0 + +Class QDesignerWidgetBoxInterface::Widget + size=32 align=8 + base size=28 base align=8 +QDesignerWidgetBoxInterface::Widget (0x7f09f2bada80) 0 + +Class QDesignerWidgetBoxInterface::Category + size=24 align=8 + base size=24 base align=8 +QDesignerWidgetBoxInterface::Category (0x7f09f29c51c0) 0 + +Vtable for QDesignerWidgetBoxInterface +QDesignerWidgetBoxInterface::_ZTV27QDesignerWidgetBoxInterface: 76u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QDesignerWidgetBoxInterface) +16 QDesignerWidgetBoxInterface::metaObject +24 QDesignerWidgetBoxInterface::qt_metacast +32 QDesignerWidgetBoxInterface::qt_metacall +40 QDesignerWidgetBoxInterface::~QDesignerWidgetBoxInterface +48 QDesignerWidgetBoxInterface::~QDesignerWidgetBoxInterface +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 __cxa_pure_virtual +456 __cxa_pure_virtual +464 __cxa_pure_virtual +472 __cxa_pure_virtual +480 __cxa_pure_virtual +488 __cxa_pure_virtual +496 __cxa_pure_virtual +504 __cxa_pure_virtual +512 __cxa_pure_virtual +520 __cxa_pure_virtual +528 __cxa_pure_virtual +536 __cxa_pure_virtual +544 __cxa_pure_virtual +552 (int (*)(...))-0x00000000000000010 +560 (int (*)(...))(& _ZTI27QDesignerWidgetBoxInterface) +568 QDesignerWidgetBoxInterface::_ZThn16_N27QDesignerWidgetBoxInterfaceD1Ev +576 QDesignerWidgetBoxInterface::_ZThn16_N27QDesignerWidgetBoxInterfaceD0Ev +584 QWidget::_ZThn16_NK7QWidget7devTypeEv +592 QWidget::_ZThn16_NK7QWidget11paintEngineEv +600 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDesignerWidgetBoxInterface + size=40 align=8 + base size=40 base align=8 +QDesignerWidgetBoxInterface (0x7f09f2bad8c0) 0 + vptr=((& QDesignerWidgetBoxInterface::_ZTV27QDesignerWidgetBoxInterface) + 16u) + QWidget (0x7f09f2bb4580) 0 + primary-for QDesignerWidgetBoxInterface (0x7f09f2bad8c0) + QObject (0x7f09f2bad930) 0 + primary-for QWidget (0x7f09f2bb4580) + QPaintDevice (0x7f09f2bad9a0) 16 + vptr=((& QDesignerWidgetBoxInterface::_ZTV27QDesignerWidgetBoxInterface) + 568u) + +Class QDesignerPromotionInterface::PromotedClass + size=16 align=8 + base size=16 base align=8 +QDesignerPromotionInterface::PromotedClass (0x7f09f2a48150) 0 + +Vtable for QDesignerPromotionInterface +QDesignerPromotionInterface::_ZTV27QDesignerPromotionInterface: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QDesignerPromotionInterface) +16 QDesignerPromotionInterface::~QDesignerPromotionInterface +24 QDesignerPromotionInterface::~QDesignerPromotionInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual + +Class QDesignerPromotionInterface + size=8 align=8 + base size=8 base align=8 +QDesignerPromotionInterface (0x7f09f2a48070) 0 nearly-empty + vptr=((& QDesignerPromotionInterface::_ZTV27QDesignerPromotionInterface) + 16u) + +Vtable for QDesignerFormWindowInterface +QDesignerFormWindowInterface::_ZTV28QDesignerFormWindowInterface: 114u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI28QDesignerFormWindowInterface) +16 QDesignerFormWindowInterface::metaObject +24 QDesignerFormWindowInterface::qt_metacast +32 QDesignerFormWindowInterface::qt_metacall +40 QDesignerFormWindowInterface::~QDesignerFormWindowInterface +48 QDesignerFormWindowInterface::~QDesignerFormWindowInterface +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 __cxa_pure_virtual +456 __cxa_pure_virtual +464 __cxa_pure_virtual +472 __cxa_pure_virtual +480 __cxa_pure_virtual +488 __cxa_pure_virtual +496 __cxa_pure_virtual +504 __cxa_pure_virtual +512 __cxa_pure_virtual +520 __cxa_pure_virtual +528 __cxa_pure_virtual +536 __cxa_pure_virtual +544 __cxa_pure_virtual +552 __cxa_pure_virtual +560 __cxa_pure_virtual +568 __cxa_pure_virtual +576 __cxa_pure_virtual +584 __cxa_pure_virtual +592 __cxa_pure_virtual +600 __cxa_pure_virtual +608 QDesignerFormWindowInterface::core +616 __cxa_pure_virtual +624 __cxa_pure_virtual +632 __cxa_pure_virtual +640 __cxa_pure_virtual +648 __cxa_pure_virtual +656 __cxa_pure_virtual +664 __cxa_pure_virtual +672 __cxa_pure_virtual +680 __cxa_pure_virtual +688 __cxa_pure_virtual +696 __cxa_pure_virtual +704 __cxa_pure_virtual +712 __cxa_pure_virtual +720 __cxa_pure_virtual +728 __cxa_pure_virtual +736 __cxa_pure_virtual +744 __cxa_pure_virtual +752 __cxa_pure_virtual +760 __cxa_pure_virtual +768 __cxa_pure_virtual +776 __cxa_pure_virtual +784 __cxa_pure_virtual +792 __cxa_pure_virtual +800 __cxa_pure_virtual +808 __cxa_pure_virtual +816 __cxa_pure_virtual +824 __cxa_pure_virtual +832 __cxa_pure_virtual +840 __cxa_pure_virtual +848 __cxa_pure_virtual +856 (int (*)(...))-0x00000000000000010 +864 (int (*)(...))(& _ZTI28QDesignerFormWindowInterface) +872 QDesignerFormWindowInterface::_ZThn16_N28QDesignerFormWindowInterfaceD1Ev +880 QDesignerFormWindowInterface::_ZThn16_N28QDesignerFormWindowInterfaceD0Ev +888 QWidget::_ZThn16_NK7QWidget7devTypeEv +896 QWidget::_ZThn16_NK7QWidget11paintEngineEv +904 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDesignerFormWindowInterface + size=40 align=8 + base size=40 base align=8 +QDesignerFormWindowInterface (0x7f09f2a48620) 0 + vptr=((& QDesignerFormWindowInterface::_ZTV28QDesignerFormWindowInterface) + 16u) + QWidget (0x7f09f2a4e000) 0 + primary-for QDesignerFormWindowInterface (0x7f09f2a48620) + QObject (0x7f09f2a48690) 0 + primary-for QWidget (0x7f09f2a4e000) + QPaintDevice (0x7f09f2a48700) 16 + vptr=((& QDesignerFormWindowInterface::_ZTV28QDesignerFormWindowInterface) + 872u) + +Vtable for QDesignerObjectInspectorInterface +QDesignerObjectInspectorInterface::_ZTV33QDesignerObjectInspectorInterface: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI33QDesignerObjectInspectorInterface) +16 QDesignerObjectInspectorInterface::metaObject +24 QDesignerObjectInspectorInterface::qt_metacast +32 QDesignerObjectInspectorInterface::qt_metacall +40 QDesignerObjectInspectorInterface::~QDesignerObjectInspectorInterface +48 QDesignerObjectInspectorInterface::~QDesignerObjectInspectorInterface +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDesignerObjectInspectorInterface::core +456 __cxa_pure_virtual +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI33QDesignerObjectInspectorInterface) +480 QDesignerObjectInspectorInterface::_ZThn16_N33QDesignerObjectInspectorInterfaceD1Ev +488 QDesignerObjectInspectorInterface::_ZThn16_N33QDesignerObjectInspectorInterfaceD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDesignerObjectInspectorInterface + size=40 align=8 + base size=40 base align=8 +QDesignerObjectInspectorInterface (0x7f09f2a76a10) 0 + vptr=((& QDesignerObjectInspectorInterface::_ZTV33QDesignerObjectInspectorInterface) + 16u) + QWidget (0x7f09f2a4e900) 0 + primary-for QDesignerObjectInspectorInterface (0x7f09f2a76a10) + QObject (0x7f09f2a76a80) 0 + primary-for QWidget (0x7f09f2a4e900) + QPaintDevice (0x7f09f2a76af0) 16 + vptr=((& QDesignerObjectInspectorInterface::_ZTV33QDesignerObjectInspectorInterface) + 480u) + +Vtable for QDesignerIconCacheInterface +QDesignerIconCacheInterface::_ZTV27QDesignerIconCacheInterface: 23u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QDesignerIconCacheInterface) +16 QDesignerIconCacheInterface::metaObject +24 QDesignerIconCacheInterface::qt_metacast +32 QDesignerIconCacheInterface::qt_metacall +40 QDesignerIconCacheInterface::~QDesignerIconCacheInterface +48 QDesignerIconCacheInterface::~QDesignerIconCacheInterface +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual + +Class QDesignerIconCacheInterface + size=16 align=8 + base size=16 base align=8 +QDesignerIconCacheInterface (0x7f09f2a8a9a0) 0 + vptr=((& QDesignerIconCacheInterface::_ZTV27QDesignerIconCacheInterface) + 16u) + QObject (0x7f09f2a8aa10) 0 + primary-for QDesignerIconCacheInterface (0x7f09f2a8a9a0) + +Vtable for QDesignerMetaDataBaseItemInterface +QDesignerMetaDataBaseItemInterface::_ZTV34QDesignerMetaDataBaseItemInterface: 10u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI34QDesignerMetaDataBaseItemInterface) +16 QDesignerMetaDataBaseItemInterface::~QDesignerMetaDataBaseItemInterface +24 QDesignerMetaDataBaseItemInterface::~QDesignerMetaDataBaseItemInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual + +Class QDesignerMetaDataBaseItemInterface + size=8 align=8 + base size=8 base align=8 +QDesignerMetaDataBaseItemInterface (0x7f09f2aa80e0) 0 nearly-empty + vptr=((& QDesignerMetaDataBaseItemInterface::_ZTV34QDesignerMetaDataBaseItemInterface) + 16u) + +Vtable for QDesignerMetaDataBaseInterface +QDesignerMetaDataBaseInterface::_ZTV30QDesignerMetaDataBaseInterface: 19u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI30QDesignerMetaDataBaseInterface) +16 QDesignerMetaDataBaseInterface::metaObject +24 QDesignerMetaDataBaseInterface::qt_metacast +32 QDesignerMetaDataBaseInterface::qt_metacall +40 QDesignerMetaDataBaseInterface::~QDesignerMetaDataBaseInterface +48 QDesignerMetaDataBaseInterface::~QDesignerMetaDataBaseInterface +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual + +Class QDesignerMetaDataBaseInterface + size=16 align=8 + base size=16 base align=8 +QDesignerMetaDataBaseInterface (0x7f09f2aa8af0) 0 + vptr=((& QDesignerMetaDataBaseInterface::_ZTV30QDesignerMetaDataBaseInterface) + 16u) + QObject (0x7f09f2aa8b60) 0 + primary-for QDesignerMetaDataBaseInterface (0x7f09f2aa8af0) + +Vtable for QDesignerLayoutDecorationExtension +QDesignerLayoutDecorationExtension::_ZTV34QDesignerLayoutDecorationExtension: 19u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI34QDesignerLayoutDecorationExtension) +16 QDesignerLayoutDecorationExtension::~QDesignerLayoutDecorationExtension +24 QDesignerLayoutDecorationExtension::~QDesignerLayoutDecorationExtension +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual + +Class QDesignerLayoutDecorationExtension + size=8 align=8 + base size=8 base align=8 +QDesignerLayoutDecorationExtension (0x7f09f28b9380) 0 nearly-empty + vptr=((& QDesignerLayoutDecorationExtension::_ZTV34QDesignerLayoutDecorationExtension) + 16u) + +Vtable for QDesignerPropertySheetExtension +QDesignerPropertySheetExtension::_ZTV31QDesignerPropertySheetExtension: 19u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI31QDesignerPropertySheetExtension) +16 QDesignerPropertySheetExtension::~QDesignerPropertySheetExtension +24 QDesignerPropertySheetExtension::~QDesignerPropertySheetExtension +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual + +Class QDesignerPropertySheetExtension + size=8 align=8 + base size=8 base align=8 +QDesignerPropertySheetExtension (0x7f09f28da770) 0 nearly-empty + vptr=((& QDesignerPropertySheetExtension::_ZTV31QDesignerPropertySheetExtension) + 16u) + +Vtable for QDesignerActionEditorInterface +QDesignerActionEditorInterface::_ZTV30QDesignerActionEditorInterface: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI30QDesignerActionEditorInterface) +16 QDesignerActionEditorInterface::metaObject +24 QDesignerActionEditorInterface::qt_metacast +32 QDesignerActionEditorInterface::qt_metacall +40 QDesignerActionEditorInterface::~QDesignerActionEditorInterface +48 QDesignerActionEditorInterface::~QDesignerActionEditorInterface +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDesignerActionEditorInterface::core +456 __cxa_pure_virtual +464 __cxa_pure_virtual +472 __cxa_pure_virtual +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI30QDesignerActionEditorInterface) +496 QDesignerActionEditorInterface::_ZThn16_N30QDesignerActionEditorInterfaceD1Ev +504 QDesignerActionEditorInterface::_ZThn16_N30QDesignerActionEditorInterfaceD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDesignerActionEditorInterface + size=40 align=8 + base size=40 base align=8 +QDesignerActionEditorInterface (0x7f09f28eae00) 0 + vptr=((& QDesignerActionEditorInterface::_ZTV30QDesignerActionEditorInterface) + 16u) + QWidget (0x7f09f28ebb00) 0 + primary-for QDesignerActionEditorInterface (0x7f09f28eae00) + QObject (0x7f09f28eae70) 0 + primary-for QWidget (0x7f09f28ebb00) + QPaintDevice (0x7f09f28eaee0) 16 + vptr=((& QDesignerActionEditorInterface::_ZTV30QDesignerActionEditorInterface) + 496u) + +Vtable for QDesignerIntegrationInterface +QDesignerIntegrationInterface::_ZTV29QDesignerIntegrationInterface: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI29QDesignerIntegrationInterface) +16 QDesignerIntegrationInterface::metaObject +24 QDesignerIntegrationInterface::qt_metacast +32 QDesignerIntegrationInterface::qt_metacall +40 QDesignerIntegrationInterface::~QDesignerIntegrationInterface +48 QDesignerIntegrationInterface::~QDesignerIntegrationInterface +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual + +Class QDesignerIntegrationInterface + size=24 align=8 + base size=24 base align=8 +QDesignerIntegrationInterface (0x7f09f28f9e00) 0 + vptr=((& QDesignerIntegrationInterface::_ZTV29QDesignerIntegrationInterface) + 16u) + QObject (0x7f09f28f9e70) 0 + primary-for QDesignerIntegrationInterface (0x7f09f28f9e00) + +Vtable for QDesignerTaskMenuExtension +QDesignerTaskMenuExtension::_ZTV26QDesignerTaskMenuExtension: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QDesignerTaskMenuExtension) +16 QDesignerTaskMenuExtension::~QDesignerTaskMenuExtension +24 QDesignerTaskMenuExtension::~QDesignerTaskMenuExtension +32 QDesignerTaskMenuExtension::preferredEditAction +40 __cxa_pure_virtual + +Class QDesignerTaskMenuExtension + size=8 align=8 + base size=8 base align=8 +QDesignerTaskMenuExtension (0x7f09f2912e70) 0 nearly-empty + vptr=((& QDesignerTaskMenuExtension::_ZTV26QDesignerTaskMenuExtension) + 16u) + +Vtable for QDesignerFormWindowCursorInterface +QDesignerFormWindowCursorInterface::_ZTV34QDesignerFormWindowCursorInterface: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI34QDesignerFormWindowCursorInterface) +16 QDesignerFormWindowCursorInterface::~QDesignerFormWindowCursorInterface +24 QDesignerFormWindowCursorInterface::~QDesignerFormWindowCursorInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual + +Class QDesignerFormWindowCursorInterface + size=8 align=8 + base size=8 base align=8 +QDesignerFormWindowCursorInterface (0x7f09f292a690) 0 nearly-empty + vptr=((& QDesignerFormWindowCursorInterface::_ZTV34QDesignerFormWindowCursorInterface) + 16u) + +Vtable for QDesignerWidgetDataBaseItemInterface +QDesignerWidgetDataBaseItemInterface::_ZTV36QDesignerWidgetDataBaseItemInterface: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI36QDesignerWidgetDataBaseItemInterface) +16 QDesignerWidgetDataBaseItemInterface::~QDesignerWidgetDataBaseItemInterface +24 QDesignerWidgetDataBaseItemInterface::~QDesignerWidgetDataBaseItemInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 __cxa_pure_virtual +208 __cxa_pure_virtual +216 __cxa_pure_virtual +224 __cxa_pure_virtual +232 __cxa_pure_virtual + +Class QDesignerWidgetDataBaseItemInterface + size=8 align=8 + base size=8 base align=8 +QDesignerWidgetDataBaseItemInterface (0x7f09f293b380) 0 nearly-empty + vptr=((& QDesignerWidgetDataBaseItemInterface::_ZTV36QDesignerWidgetDataBaseItemInterface) + 16u) + +Vtable for QDesignerWidgetDataBaseInterface +QDesignerWidgetDataBaseInterface::_ZTV32QDesignerWidgetDataBaseInterface: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI32QDesignerWidgetDataBaseInterface) +16 QDesignerWidgetDataBaseInterface::metaObject +24 QDesignerWidgetDataBaseInterface::qt_metacast +32 QDesignerWidgetDataBaseInterface::qt_metacall +40 QDesignerWidgetDataBaseInterface::~QDesignerWidgetDataBaseInterface +48 QDesignerWidgetDataBaseInterface::~QDesignerWidgetDataBaseInterface +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QDesignerWidgetDataBaseInterface::count +120 QDesignerWidgetDataBaseInterface::item +128 QDesignerWidgetDataBaseInterface::indexOf +136 QDesignerWidgetDataBaseInterface::insert +144 QDesignerWidgetDataBaseInterface::append +152 QDesignerWidgetDataBaseInterface::indexOfObject +160 QDesignerWidgetDataBaseInterface::indexOfClassName +168 QDesignerWidgetDataBaseInterface::core + +Class QDesignerWidgetDataBaseInterface + size=24 align=8 + base size=24 base align=8 +QDesignerWidgetDataBaseInterface (0x7f09f293bd90) 0 + vptr=((& QDesignerWidgetDataBaseInterface::_ZTV32QDesignerWidgetDataBaseInterface) + 16u) + QObject (0x7f09f293be00) 0 + primary-for QDesignerWidgetDataBaseInterface (0x7f09f293bd90) + +Vtable for QDesignerPropertyEditorInterface +QDesignerPropertyEditorInterface::_ZTV32QDesignerPropertyEditorInterface: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI32QDesignerPropertyEditorInterface) +16 QDesignerPropertyEditorInterface::metaObject +24 QDesignerPropertyEditorInterface::qt_metacast +32 QDesignerPropertyEditorInterface::qt_metacall +40 QDesignerPropertyEditorInterface::~QDesignerPropertyEditorInterface +48 QDesignerPropertyEditorInterface::~QDesignerPropertyEditorInterface +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDesignerPropertyEditorInterface::core +456 __cxa_pure_virtual +464 __cxa_pure_virtual +472 __cxa_pure_virtual +480 __cxa_pure_virtual +488 __cxa_pure_virtual +496 __cxa_pure_virtual +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI32QDesignerPropertyEditorInterface) +520 QDesignerPropertyEditorInterface::_ZThn16_N32QDesignerPropertyEditorInterfaceD1Ev +528 QDesignerPropertyEditorInterface::_ZThn16_N32QDesignerPropertyEditorInterfaceD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDesignerPropertyEditorInterface + size=40 align=8 + base size=40 base align=8 +QDesignerPropertyEditorInterface (0x7f09f29521c0) 0 + vptr=((& QDesignerPropertyEditorInterface::_ZTV32QDesignerPropertyEditorInterface) + 16u) + QWidget (0x7f09f2982280) 0 + primary-for QDesignerPropertyEditorInterface (0x7f09f29521c0) + QObject (0x7f09f2952380) 0 + primary-for QWidget (0x7f09f2982280) + QPaintDevice (0x7f09f2988000) 16 + vptr=((& QDesignerPropertyEditorInterface::_ZTV32QDesignerPropertyEditorInterface) + 520u) + +Vtable for QDesignerFormEditorInterface +QDesignerFormEditorInterface::_ZTV28QDesignerFormEditorInterface: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI28QDesignerFormEditorInterface) +16 QDesignerFormEditorInterface::metaObject +24 QDesignerFormEditorInterface::qt_metacast +32 QDesignerFormEditorInterface::qt_metacall +40 QDesignerFormEditorInterface::~QDesignerFormEditorInterface +48 QDesignerFormEditorInterface::~QDesignerFormEditorInterface +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QDesignerFormEditorInterface + size=120 align=8 + base size=120 base align=8 +QDesignerFormEditorInterface (0x7f09f299f070) 0 + vptr=((& QDesignerFormEditorInterface::_ZTV28QDesignerFormEditorInterface) + 16u) + QObject (0x7f09f299f0e0) 0 + primary-for QDesignerFormEditorInterface (0x7f09f299f070) + +Vtable for QDesignerResourceBrowserInterface +QDesignerResourceBrowserInterface::_ZTV33QDesignerResourceBrowserInterface: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI33QDesignerResourceBrowserInterface) +16 QDesignerResourceBrowserInterface::metaObject +24 QDesignerResourceBrowserInterface::qt_metacast +32 QDesignerResourceBrowserInterface::qt_metacall +40 QDesignerResourceBrowserInterface::~QDesignerResourceBrowserInterface +48 QDesignerResourceBrowserInterface::~QDesignerResourceBrowserInterface +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 __cxa_pure_virtual +456 __cxa_pure_virtual +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI33QDesignerResourceBrowserInterface) +480 QDesignerResourceBrowserInterface::_ZThn16_N33QDesignerResourceBrowserInterfaceD1Ev +488 QDesignerResourceBrowserInterface::_ZThn16_N33QDesignerResourceBrowserInterfaceD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDesignerResourceBrowserInterface + size=40 align=8 + base size=40 base align=8 +QDesignerResourceBrowserInterface (0x7f09f2807770) 0 + vptr=((& QDesignerResourceBrowserInterface::_ZTV33QDesignerResourceBrowserInterface) + 16u) + QWidget (0x7f09f27fe600) 0 + primary-for QDesignerResourceBrowserInterface (0x7f09f2807770) + QObject (0x7f09f28077e0) 0 + primary-for QWidget (0x7f09f27fe600) + QPaintDevice (0x7f09f2807850) 16 + vptr=((& QDesignerResourceBrowserInterface::_ZTV33QDesignerResourceBrowserInterface) + 480u) + +Vtable for QDesignerBrushManagerInterface +QDesignerBrushManagerInterface::_ZTV30QDesignerBrushManagerInterface: 21u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI30QDesignerBrushManagerInterface) +16 QDesignerBrushManagerInterface::metaObject +24 QDesignerBrushManagerInterface::qt_metacast +32 QDesignerBrushManagerInterface::qt_metacall +40 QDesignerBrushManagerInterface::~QDesignerBrushManagerInterface +48 QDesignerBrushManagerInterface::~QDesignerBrushManagerInterface +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual + +Class QDesignerBrushManagerInterface + size=16 align=8 + base size=16 base align=8 +QDesignerBrushManagerInterface (0x7f09f281e700) 0 + vptr=((& QDesignerBrushManagerInterface::_ZTV30QDesignerBrushManagerInterface) + 16u) + QObject (0x7f09f281e770) 0 + primary-for QDesignerBrushManagerInterface (0x7f09f281e700) + +Vtable for QDesignerDnDItemInterface +QDesignerDnDItemInterface::_ZTV25QDesignerDnDItemInterface: 10u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QDesignerDnDItemInterface) +16 QDesignerDnDItemInterface::~QDesignerDnDItemInterface +24 QDesignerDnDItemInterface::~QDesignerDnDItemInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual + +Class QDesignerDnDItemInterface + size=8 align=8 + base size=8 base align=8 +QDesignerDnDItemInterface (0x7f09f2832cb0) 0 nearly-empty + vptr=((& QDesignerDnDItemInterface::_ZTV25QDesignerDnDItemInterface) + 16u) + +Vtable for QDesignerFormWindowManagerInterface +QDesignerFormWindowManagerInterface::_ZTV35QDesignerFormWindowManagerInterface: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI35QDesignerFormWindowManagerInterface) +16 QDesignerFormWindowManagerInterface::metaObject +24 QDesignerFormWindowManagerInterface::qt_metacast +32 QDesignerFormWindowManagerInterface::qt_metacall +40 QDesignerFormWindowManagerInterface::~QDesignerFormWindowManagerInterface +48 QDesignerFormWindowManagerInterface::~QDesignerFormWindowManagerInterface +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QDesignerFormWindowManagerInterface::actionCut +120 QDesignerFormWindowManagerInterface::actionCopy +128 QDesignerFormWindowManagerInterface::actionPaste +136 QDesignerFormWindowManagerInterface::actionDelete +144 QDesignerFormWindowManagerInterface::actionSelectAll +152 QDesignerFormWindowManagerInterface::actionLower +160 QDesignerFormWindowManagerInterface::actionRaise +168 QDesignerFormWindowManagerInterface::actionUndo +176 QDesignerFormWindowManagerInterface::actionRedo +184 QDesignerFormWindowManagerInterface::actionHorizontalLayout +192 QDesignerFormWindowManagerInterface::actionVerticalLayout +200 QDesignerFormWindowManagerInterface::actionSplitHorizontal +208 QDesignerFormWindowManagerInterface::actionSplitVertical +216 QDesignerFormWindowManagerInterface::actionGridLayout +224 QDesignerFormWindowManagerInterface::actionBreakLayout +232 QDesignerFormWindowManagerInterface::actionAdjustSize +240 QDesignerFormWindowManagerInterface::activeFormWindow +248 QDesignerFormWindowManagerInterface::formWindowCount +256 QDesignerFormWindowManagerInterface::formWindow +264 QDesignerFormWindowManagerInterface::createFormWindow +272 QDesignerFormWindowManagerInterface::core +280 __cxa_pure_virtual +288 QDesignerFormWindowManagerInterface::addFormWindow +296 QDesignerFormWindowManagerInterface::removeFormWindow +304 QDesignerFormWindowManagerInterface::setActiveFormWindow + +Class QDesignerFormWindowManagerInterface + size=16 align=8 + base size=16 base align=8 +QDesignerFormWindowManagerInterface (0x7f09f283dc40) 0 + vptr=((& QDesignerFormWindowManagerInterface::_ZTV35QDesignerFormWindowManagerInterface) + 16u) + QObject (0x7f09f283dcb0) 0 + primary-for QDesignerFormWindowManagerInterface (0x7f09f283dc40) + +Vtable for QDesignerLanguageExtension +QDesignerLanguageExtension::_ZTV26QDesignerLanguageExtension: 13u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QDesignerLanguageExtension) +16 QDesignerLanguageExtension::~QDesignerLanguageExtension +24 QDesignerLanguageExtension::~QDesignerLanguageExtension +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual + +Class QDesignerLanguageExtension + size=8 align=8 + base size=8 base align=8 +QDesignerLanguageExtension (0x7f09f285f000) 0 nearly-empty + vptr=((& QDesignerLanguageExtension::_ZTV26QDesignerLanguageExtension) + 16u) + +Vtable for QAbstractFormBuilder +QAbstractFormBuilder::_ZTV20QAbstractFormBuilder: 48u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QAbstractFormBuilder) +16 QAbstractFormBuilder::~QAbstractFormBuilder +24 QAbstractFormBuilder::~QAbstractFormBuilder +32 QAbstractFormBuilder::load +40 QAbstractFormBuilder::save +48 QAbstractFormBuilder::loadExtraInfo +56 QAbstractFormBuilder::create +64 QAbstractFormBuilder::create +72 QAbstractFormBuilder::create +80 QAbstractFormBuilder::create +88 QAbstractFormBuilder::create +96 QAbstractFormBuilder::create +104 QAbstractFormBuilder::addMenuAction +112 QAbstractFormBuilder::applyProperties +120 QAbstractFormBuilder::applyTabStops +128 QAbstractFormBuilder::createWidget +136 QAbstractFormBuilder::createLayout +144 QAbstractFormBuilder::createAction +152 QAbstractFormBuilder::createActionGroup +160 QAbstractFormBuilder::createCustomWidgets +168 QAbstractFormBuilder::createConnections +176 QAbstractFormBuilder::createResources +184 QAbstractFormBuilder::addItem +192 QAbstractFormBuilder::addItem +200 QAbstractFormBuilder::saveExtraInfo +208 QAbstractFormBuilder::saveDom +216 QAbstractFormBuilder::createActionRefDom +224 QAbstractFormBuilder::createDom +232 QAbstractFormBuilder::createDom +240 QAbstractFormBuilder::createDom +248 QAbstractFormBuilder::createDom +256 QAbstractFormBuilder::createDom +264 QAbstractFormBuilder::createDom +272 QAbstractFormBuilder::saveConnections +280 QAbstractFormBuilder::saveCustomWidgets +288 QAbstractFormBuilder::saveTabStops +296 QAbstractFormBuilder::saveResources +304 QAbstractFormBuilder::computeProperties +312 QAbstractFormBuilder::checkProperty +320 QAbstractFormBuilder::createProperty +328 QAbstractFormBuilder::layoutInfo +336 QAbstractFormBuilder::nameToIcon +344 QAbstractFormBuilder::iconToFilePath +352 QAbstractFormBuilder::iconToQrcPath +360 QAbstractFormBuilder::nameToPixmap +368 QAbstractFormBuilder::pixmapToFilePath +376 QAbstractFormBuilder::pixmapToQrcPath + +Class QAbstractFormBuilder + size=48 align=8 + base size=48 base align=8 +QAbstractFormBuilder (0x7f09f286e690) 0 + vptr=((& QAbstractFormBuilder::_ZTV20QAbstractFormBuilder) + 16u) + +Vtable for QFormBuilder +QFormBuilder::_ZTV12QFormBuilder: 49u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QFormBuilder) +16 QFormBuilder::~QFormBuilder +24 QFormBuilder::~QFormBuilder +32 QAbstractFormBuilder::load +40 QAbstractFormBuilder::save +48 QAbstractFormBuilder::loadExtraInfo +56 QFormBuilder::create +64 QFormBuilder::create +72 QFormBuilder::create +80 QFormBuilder::create +88 QFormBuilder::create +96 QFormBuilder::create +104 QAbstractFormBuilder::addMenuAction +112 QFormBuilder::applyProperties +120 QAbstractFormBuilder::applyTabStops +128 QFormBuilder::createWidget +136 QFormBuilder::createLayout +144 QAbstractFormBuilder::createAction +152 QAbstractFormBuilder::createActionGroup +160 QAbstractFormBuilder::createCustomWidgets +168 QFormBuilder::createConnections +176 QAbstractFormBuilder::createResources +184 QFormBuilder::addItem +192 QFormBuilder::addItem +200 QAbstractFormBuilder::saveExtraInfo +208 QAbstractFormBuilder::saveDom +216 QAbstractFormBuilder::createActionRefDom +224 QAbstractFormBuilder::createDom +232 QAbstractFormBuilder::createDom +240 QAbstractFormBuilder::createDom +248 QAbstractFormBuilder::createDom +256 QAbstractFormBuilder::createDom +264 QAbstractFormBuilder::createDom +272 QAbstractFormBuilder::saveConnections +280 QAbstractFormBuilder::saveCustomWidgets +288 QAbstractFormBuilder::saveTabStops +296 QAbstractFormBuilder::saveResources +304 QAbstractFormBuilder::computeProperties +312 QAbstractFormBuilder::checkProperty +320 QAbstractFormBuilder::createProperty +328 QAbstractFormBuilder::layoutInfo +336 QAbstractFormBuilder::nameToIcon +344 QAbstractFormBuilder::iconToFilePath +352 QAbstractFormBuilder::iconToQrcPath +360 QAbstractFormBuilder::nameToPixmap +368 QAbstractFormBuilder::pixmapToFilePath +376 QAbstractFormBuilder::pixmapToQrcPath +384 QFormBuilder::updateCustomWidgets + +Class QFormBuilder + size=64 align=8 + base size=64 base align=8 +QFormBuilder (0x7f09f26baaf0) 0 + vptr=((& QFormBuilder::_ZTV12QFormBuilder) + 16u) + QAbstractFormBuilder (0x7f09f26bab60) 0 + primary-for QFormBuilder (0x7f09f26baaf0) + +Vtable for QDesignerCustomWidgetInterface +QDesignerCustomWidgetInterface::_ZTV30QDesignerCustomWidgetInterface: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI30QDesignerCustomWidgetInterface) +16 QDesignerCustomWidgetInterface::~QDesignerCustomWidgetInterface +24 QDesignerCustomWidgetInterface::~QDesignerCustomWidgetInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 QDesignerCustomWidgetInterface::isInitialized +104 QDesignerCustomWidgetInterface::initialize +112 QDesignerCustomWidgetInterface::domXml +120 QDesignerCustomWidgetInterface::codeTemplate + +Class QDesignerCustomWidgetInterface + size=8 align=8 + base size=8 base align=8 +QDesignerCustomWidgetInterface (0x7f09f26baee0) 0 nearly-empty + vptr=((& QDesignerCustomWidgetInterface::_ZTV30QDesignerCustomWidgetInterface) + 16u) + +Vtable for QDesignerCustomWidgetCollectionInterface +QDesignerCustomWidgetCollectionInterface::_ZTV40QDesignerCustomWidgetCollectionInterface: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI40QDesignerCustomWidgetCollectionInterface) +16 QDesignerCustomWidgetCollectionInterface::~QDesignerCustomWidgetCollectionInterface +24 QDesignerCustomWidgetCollectionInterface::~QDesignerCustomWidgetCollectionInterface +32 __cxa_pure_virtual + +Class QDesignerCustomWidgetCollectionInterface + size=8 align=8 + base size=8 base align=8 +QDesignerCustomWidgetCollectionInterface (0x7f09f27309a0) 0 nearly-empty + vptr=((& QDesignerCustomWidgetCollectionInterface::_ZTV40QDesignerCustomWidgetCollectionInterface) + 16u) + +Vtable for QDesignerContainerExtension +QDesignerContainerExtension::_ZTV27QDesignerContainerExtension: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QDesignerContainerExtension) +16 QDesignerContainerExtension::~QDesignerContainerExtension +24 QDesignerContainerExtension::~QDesignerContainerExtension +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual + +Class QDesignerContainerExtension + size=8 align=8 + base size=8 base align=8 +QDesignerContainerExtension (0x7f09f2740a80) 0 nearly-empty + vptr=((& QDesignerContainerExtension::_ZTV27QDesignerContainerExtension) + 16u) + +Vtable for QExtensionManager +QExtensionManager::_ZTV17QExtensionManager: 24u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QExtensionManager) +16 QExtensionManager::metaObject +24 QExtensionManager::qt_metacast +32 QExtensionManager::qt_metacall +40 QExtensionManager::~QExtensionManager +48 QExtensionManager::~QExtensionManager +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QExtensionManager::registerExtensions +120 QExtensionManager::unregisterExtensions +128 QExtensionManager::extension +136 (int (*)(...))-0x00000000000000010 +144 (int (*)(...))(& _ZTI17QExtensionManager) +152 QExtensionManager::_ZThn16_N17QExtensionManagerD1Ev +160 QExtensionManager::_ZThn16_N17QExtensionManagerD0Ev +168 QExtensionManager::_ZThn16_N17QExtensionManager18registerExtensionsEP25QAbstractExtensionFactoryRK7QString +176 QExtensionManager::_ZThn16_N17QExtensionManager20unregisterExtensionsEP25QAbstractExtensionFactoryRK7QString +184 QExtensionManager::_ZThn16_NK17QExtensionManager9extensionEP7QObjectRK7QString + +Class QExtensionManager + size=40 align=8 + base size=40 base align=8 +QExtensionManager (0x7f09f274fc80) 0 + vptr=((& QExtensionManager::_ZTV17QExtensionManager) + 16u) + QObject (0x7f09f2759150) 0 + primary-for QExtensionManager (0x7f09f274fc80) + QAbstractExtensionManager (0x7f09f27591c0) 16 nearly-empty + vptr=((& QExtensionManager::_ZTV17QExtensionManager) + 152u) + diff --git a/tests/auto/bic/data/QtDesigner.4.6.0.linux-gcc-amd64.txt b/tests/auto/bic/data/QtDesigner.4.6.0.linux-gcc-amd64.txt new file mode 100644 index 0000000..349907e --- /dev/null +++ b/tests/auto/bic/data/QtDesigner.4.6.0.linux-gcc-amd64.txt @@ -0,0 +1,4741 @@ +Class QSysInfo + size=1 align=1 + base size=0 base align=1 +QSysInfo (0x7f0d42e42380) 0 empty + +Class QBool + size=1 align=1 + base size=1 base align=1 +QBool (0x7f0d42e5a000) 0 + +Class qIsNull(double)::U + size=8 align=8 + base size=8 base align=8 +qIsNull(double)::U (0x7f0d42e6f690) 0 + +Class qIsNull(float)::U + size=4 align=4 + base size=4 base align=4 +qIsNull(float)::U (0x7f0d42e6f930) 0 + +Class QFlag + size=4 align=4 + base size=4 base align=4 +QFlag (0x7f0d42ea67e0) 0 + +Class QIncompatibleFlag + size=4 align=4 + base size=4 base align=4 +QIncompatibleFlag (0x7f0d42ebe000) 0 + +Class QLatin1Char + size=1 align=1 + base size=1 base align=1 +QLatin1Char (0x7f0d42ed6700) 0 + +Class QChar + size=2 align=2 + base size=2 base align=2 +QChar (0x7f0d42efd2a0) 0 + +Class QBasicAtomicInt + size=4 align=4 + base size=4 base align=4 +QBasicAtomicInt (0x7f0d42543460) 0 + +Class QAtomicInt + size=4 align=4 + base size=4 base align=4 +QAtomicInt (0x7f0d42580e00) 0 + QBasicAtomicInt (0x7f0d42580e70) 0 + +Class QInternal + size=1 align=1 + base size=0 base align=1 +QInternal (0x7f0d423cf620) 0 empty + +Class __locale_struct + size=232 align=8 + base size=232 base align=8 +__locale_struct (0x7f0d423cf850) 0 + +Class QByteArray::Data + size=32 align=8 + base size=32 base align=8 +QByteArray::Data (0x7f0d42210c40) 0 + +Class QByteArray + size=8 align=8 + base size=8 base align=8 +QByteArray (0x7f0d42210bd0) 0 + +Class QByteRef + size=16 align=8 + base size=12 base align=8 +QByteRef (0x7f0d422b24d0) 0 + +Class QString::Null + size=1 align=1 + base size=0 base align=1 +QString::Null (0x7f0d421b4e70) 0 empty + +Class QString::Data + size=32 align=8 + base size=32 base align=8 +QString::Data (0x7f0d421ca700) 0 + +Class QString + size=8 align=8 + base size=8 base align=8 +QString (0x7f0d4212cd20) 0 + +Class QLatin1String + size=8 align=8 + base size=8 base align=8 +QLatin1String (0x7f0d420a4af0) 0 + +Class QCharRef + size=16 align=8 + base size=12 base align=8 +QCharRef (0x7f0d41f42150) 0 + +Class QConstString + size=8 align=8 + base size=8 base align=8 +QConstString (0x7f0d41e8ba10) 0 + QString (0x7f0d41e8ba80) 0 + +Class QStringRef + size=16 align=8 + base size=16 base align=8 +QStringRef (0x7f0d41eb2460) 0 + +Class QGenericArgument + size=16 align=8 + base size=16 base align=8 +QGenericArgument (0x7f0d41d2b850) 0 + +Class QGenericReturnArgument + size=16 align=8 + base size=16 base align=8 +QGenericReturnArgument (0x7f0d41d363f0) 0 + QGenericArgument (0x7f0d41d36460) 0 + +Class QMetaObject + size=32 align=8 + base size=32 base align=8 +QMetaObject (0x7f0d41d36cb0) 0 + +Class QMetaObjectExtraData + size=16 align=8 + base size=16 base align=8 +QMetaObjectExtraData (0x7f0d41d5cd20) 0 + +Vtable for std::exception +std::exception::_ZTVSt9exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9exception) +16 std::exception::~exception +24 std::exception::~exception +32 std::exception::what + +Class std::exception + size=8 align=8 + base size=8 base align=8 +std::exception (0x7f0d41db0310) 0 nearly-empty + vptr=((& std::exception::_ZTVSt9exception) + 16u) + +Vtable for std::bad_exception +std::bad_exception::_ZTVSt13bad_exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13bad_exception) +16 std::bad_exception::~bad_exception +24 std::bad_exception::~bad_exception +32 std::bad_exception::what + +Class std::bad_exception + size=8 align=8 + base size=8 base align=8 +std::bad_exception (0x7f0d41db08c0) 0 nearly-empty + vptr=((& std::bad_exception::_ZTVSt13bad_exception) + 16u) + std::exception (0x7f0d41db0930) 0 nearly-empty + primary-for std::bad_exception (0x7f0d41db08c0) + +Vtable for std::bad_alloc +std::bad_alloc::_ZTVSt9bad_alloc: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9bad_alloc) +16 std::bad_alloc::~bad_alloc +24 std::bad_alloc::~bad_alloc +32 std::bad_alloc::what + +Class std::bad_alloc + size=8 align=8 + base size=8 base align=8 +std::bad_alloc (0x7f0d41dc60e0) 0 nearly-empty + vptr=((& std::bad_alloc::_ZTVSt9bad_alloc) + 16u) + std::exception (0x7f0d41dc6150) 0 nearly-empty + primary-for std::bad_alloc (0x7f0d41dc60e0) + +Class std::nothrow_t + size=1 align=1 + base size=0 base align=1 +std::nothrow_t (0x7f0d41dc69a0) 0 empty + +Class QListData::Data + size=32 align=8 + base size=32 base align=8 +QListData::Data (0x7f0d41dc6ee0) 0 + +Class QListData + size=8 align=8 + base size=8 base align=8 +QListData (0x7f0d41dc6e70) 0 + +Class QScopedPointerPodDeleter + size=1 align=1 + base size=0 base align=1 +QScopedPointerPodDeleter (0x7f0d41aef9a0) 0 empty + +Vtable for QObjectData +QObjectData::_ZTV11QObjectData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QObjectData) +16 __cxa_pure_virtual +24 __cxa_pure_virtual + +Class QObjectData + size=48 align=8 + base size=48 base align=8 +QObjectData (0x7f0d41b103f0) 0 + vptr=((& QObjectData::_ZTV11QObjectData) + 16u) + +Vtable for QObject +QObject::_ZTV7QObject: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QObject) +16 QObject::metaObject +24 QObject::qt_metacast +32 QObject::qt_metacall +40 QObject::~QObject +48 QObject::~QObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObject + size=16 align=8 + base size=16 base align=8 +QObject (0x7f0d41b10700) 0 + vptr=((& QObject::_ZTV7QObject) + 16u) + +Vtable for QObjectUserData +QObjectUserData::_ZTV15QObjectUserData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QObjectUserData) +16 QObjectUserData::~QObjectUserData +24 QObjectUserData::~QObjectUserData + +Class QObjectUserData + size=8 align=8 + base size=8 base align=8 +QObjectUserData (0x7f0d41b96cb0) 0 nearly-empty + vptr=((& QObjectUserData::_ZTV15QObjectUserData) + 16u) + +Vtable for QIODevice +QIODevice::_ZTV9QIODevice: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QIODevice) +16 QIODevice::metaObject +24 QIODevice::qt_metacast +32 QIODevice::qt_metacall +40 QIODevice::~QIODevice +48 QIODevice::~QIODevice +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QIODevice::isSequential +120 QIODevice::open +128 QIODevice::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QIODevice::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 __cxa_pure_virtual +224 QIODevice::readLineData +232 __cxa_pure_virtual + +Class QIODevice + size=16 align=8 + base size=16 base align=8 +QIODevice (0x7f0d41ba62a0) 0 + vptr=((& QIODevice::_ZTV9QIODevice) + 16u) + QObject (0x7f0d41ba6310) 0 + primary-for QIODevice (0x7f0d41ba62a0) + +Class _IO_marker + size=24 align=8 + base size=24 base align=8 +_IO_marker (0x7f0d41a08e00) 0 + +Class _IO_FILE + size=216 align=8 + base size=216 base align=8 +_IO_FILE (0x7f0d41a08e70) 0 + +Vtable for QFile +QFile::_ZTV5QFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QFile) +16 QFile::metaObject +24 QFile::qt_metacast +32 QFile::qt_metacall +40 QFile::~QFile +48 QFile::~QFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QFile::fileEngine + +Class QFile + size=16 align=8 + base size=16 base align=8 +QFile (0x7f0d41a08f50) 0 + vptr=((& QFile::_ZTV5QFile) + 16u) + QIODevice (0x7f0d41a4e000) 0 + primary-for QFile (0x7f0d41a08f50) + QObject (0x7f0d41a4e070) 0 + primary-for QIODevice (0x7f0d41a4e000) + +Class QFileInfo + size=8 align=8 + base size=8 base align=8 +QFileInfo (0x7f0d41aab1c0) 0 + +Vtable for QDataStream +QDataStream::_ZTV11QDataStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QDataStream) +16 QDataStream::~QDataStream +24 QDataStream::~QDataStream + +Class QDataStream + size=40 align=8 + base size=40 base align=8 +QDataStream (0x7f0d41900b60) 0 + vptr=((& QDataStream::_ZTV11QDataStream) + 16u) + +Class QRegExp + size=8 align=8 + base size=8 base align=8 +QRegExp (0x7f0d419a1000) 0 + +Class QStringMatcher::Data + size=272 align=8 + base size=272 base align=8 +QStringMatcher::Data (0x7f0d419d03f0) 0 + +Class QStringMatcher + size=1048 align=8 + base size=1048 base align=8 +QStringMatcher (0x7f0d419c5d90) 0 + +Class QStringList + size=8 align=8 + base size=8 base align=8 +QStringList (0x7f0d419d09a0) 0 + QList (0x7f0d419d0a10) 0 + +Class QDir + size=8 align=8 + base size=8 base align=8 +QDir (0x7f0d41870620) 0 + +Class QAbstractFileEngine::ExtensionOption + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionOption (0x7f0d41711a10) 0 empty + +Class QAbstractFileEngine::ExtensionReturn + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionReturn (0x7f0d41711a80) 0 empty + +Class QAbstractFileEngine::MapExtensionOption + size=24 align=8 + base size=20 base align=8 +QAbstractFileEngine::MapExtensionOption (0x7f0d41711af0) 0 + QAbstractFileEngine::ExtensionOption (0x7f0d41711b60) 0 empty + +Class QAbstractFileEngine::MapExtensionReturn + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::MapExtensionReturn (0x7f0d41711d20) 0 + QAbstractFileEngine::ExtensionReturn (0x7f0d41711d90) 0 empty + +Class QAbstractFileEngine::UnMapExtensionOption + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::UnMapExtensionOption (0x7f0d41711e00) 0 + QAbstractFileEngine::ExtensionOption (0x7f0d41711e70) 0 empty + +Vtable for QAbstractFileEngine +QAbstractFileEngine::_ZTV19QAbstractFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractFileEngine) +16 QAbstractFileEngine::~QAbstractFileEngine +24 QAbstractFileEngine::~QAbstractFileEngine +32 QAbstractFileEngine::open +40 QAbstractFileEngine::close +48 QAbstractFileEngine::flush +56 QAbstractFileEngine::size +64 QAbstractFileEngine::pos +72 QAbstractFileEngine::seek +80 QAbstractFileEngine::isSequential +88 QAbstractFileEngine::remove +96 QAbstractFileEngine::copy +104 QAbstractFileEngine::rename +112 QAbstractFileEngine::link +120 QAbstractFileEngine::mkdir +128 QAbstractFileEngine::rmdir +136 QAbstractFileEngine::setSize +144 QAbstractFileEngine::caseSensitive +152 QAbstractFileEngine::isRelativePath +160 QAbstractFileEngine::entryList +168 QAbstractFileEngine::fileFlags +176 QAbstractFileEngine::setPermissions +184 QAbstractFileEngine::fileName +192 QAbstractFileEngine::ownerId +200 QAbstractFileEngine::owner +208 QAbstractFileEngine::fileTime +216 QAbstractFileEngine::setFileName +224 QAbstractFileEngine::handle +232 QAbstractFileEngine::beginEntryList +240 QAbstractFileEngine::endEntryList +248 QAbstractFileEngine::read +256 QAbstractFileEngine::readLine +264 QAbstractFileEngine::write +272 QAbstractFileEngine::extension +280 QAbstractFileEngine::supportsExtension + +Class QAbstractFileEngine + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngine (0x7f0d416fc9a0) 0 + vptr=((& QAbstractFileEngine::_ZTV19QAbstractFileEngine) + 16u) + +Vtable for QAbstractFileEngineHandler +QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QAbstractFileEngineHandler) +16 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +24 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +32 __cxa_pure_virtual + +Class QAbstractFileEngineHandler + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngineHandler (0x7f0d4174dd20) 0 nearly-empty + vptr=((& QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler) + 16u) + +Vtable for QAbstractFileEngineIterator +QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QAbstractFileEngineIterator) +16 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +24 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QAbstractFileEngineIterator::currentFileInfo +64 QAbstractFileEngineIterator::entryInfo + +Class QAbstractFileEngineIterator + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngineIterator (0x7f0d4174dee0) 0 + vptr=((& QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator) + 16u) + +Vtable for QBuffer +QBuffer::_ZTV7QBuffer: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QBuffer) +16 QBuffer::metaObject +24 QBuffer::qt_metacast +32 QBuffer::qt_metacall +40 QBuffer::~QBuffer +48 QBuffer::~QBuffer +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QBuffer::connectNotify +104 QBuffer::disconnectNotify +112 QIODevice::isSequential +120 QBuffer::open +128 QBuffer::close +136 QBuffer::pos +144 QBuffer::size +152 QBuffer::seek +160 QBuffer::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QBuffer::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QBuffer::readData +224 QIODevice::readLineData +232 QBuffer::writeData + +Class QBuffer + size=16 align=8 + base size=16 base align=8 +QBuffer (0x7f0d4175f7e0) 0 + vptr=((& QBuffer::_ZTV7QBuffer) + 16u) + QIODevice (0x7f0d4175f850) 0 + primary-for QBuffer (0x7f0d4175f7e0) + QObject (0x7f0d4175f8c0) 0 + primary-for QIODevice (0x7f0d4175f850) + +Class QHashData::Node + size=16 align=8 + base size=16 base align=8 +QHashData::Node (0x7f0d417a2f50) 0 + +Class QHashData + size=40 align=8 + base size=40 base align=8 +QHashData (0x7f0d417a2ee0) 0 + +Class QHashDummyValue + size=1 align=1 + base size=0 base align=1 +QHashDummyValue (0x7f0d417c42a0) 0 empty + +Class QMapData::Node + size=16 align=8 + base size=16 base align=8 +QMapData::Node (0x7f0d416c4bd0) 0 + +Class QMapData + size=128 align=8 + base size=128 base align=8 +QMapData (0x7f0d416c4b60) 0 + +Vtable for QSystemLocale +QSystemLocale::_ZTV13QSystemLocale: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSystemLocale) +16 QSystemLocale::~QSystemLocale +24 QSystemLocale::~QSystemLocale +32 QSystemLocale::query +40 QSystemLocale::fallbackLocale + +Class QSystemLocale + size=8 align=8 + base size=8 base align=8 +QSystemLocale (0x7f0d414007e0) 0 nearly-empty + vptr=((& QSystemLocale::_ZTV13QSystemLocale) + 16u) + +Class QLocale::Data + size=4 align=2 + base size=4 base align=2 +QLocale::Data (0x7f0d4144fee0) 0 + +Class QLocale + size=8 align=8 + base size=8 base align=8 +QLocale (0x7f0d41400c40) 0 + +Class QTextCodec::ConverterState + size=32 align=8 + base size=32 base align=8 +QTextCodec::ConverterState (0x7f0d414a8d20) 0 + +Vtable for QTextCodec +QTextCodec::_ZTV10QTextCodec: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextCodec) +16 __cxa_pure_virtual +24 QTextCodec::aliases +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QTextCodec::~QTextCodec +64 QTextCodec::~QTextCodec + +Class QTextCodec + size=8 align=8 + base size=8 base align=8 +QTextCodec (0x7f0d414985b0) 0 nearly-empty + vptr=((& QTextCodec::_ZTV10QTextCodec) + 16u) + +Class QTextEncoder + size=40 align=8 + base size=40 base align=8 +QTextEncoder (0x7f0d413162a0) 0 + +Class QTextDecoder + size=40 align=8 + base size=40 base align=8 +QTextDecoder (0x7f0d4131d0e0) 0 + +Vtable for QTextStream +QTextStream::_ZTV11QTextStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTextStream) +16 QTextStream::~QTextStream +24 QTextStream::~QTextStream + +Class QTextStream + size=16 align=8 + base size=16 base align=8 +QTextStream (0x7f0d4131dee0) 0 + vptr=((& QTextStream::_ZTV11QTextStream) + 16u) + +Class QTextStreamManipulator + size=40 align=8 + base size=38 base align=8 +QTextStreamManipulator (0x7f0d41397bd0) 0 + +Vtable for QTextIStream +QTextIStream::_ZTV12QTextIStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextIStream) +16 QTextIStream::~QTextIStream +24 QTextIStream::~QTextIStream + +Class QTextIStream + size=16 align=8 + base size=16 base align=8 +QTextIStream (0x7f0d413c81c0) 0 + vptr=((& QTextIStream::_ZTV12QTextIStream) + 16u) + QTextStream (0x7f0d413c8230) 0 + primary-for QTextIStream (0x7f0d413c81c0) + +Vtable for QTextOStream +QTextOStream::_ZTV12QTextOStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextOStream) +16 QTextOStream::~QTextOStream +24 QTextOStream::~QTextOStream + +Class QTextOStream + size=16 align=8 + base size=16 base align=8 +QTextOStream (0x7f0d413db070) 0 + vptr=((& QTextOStream::_ZTV12QTextOStream) + 16u) + QTextStream (0x7f0d413db0e0) 0 + primary-for QTextOStream (0x7f0d413db070) + +Class wait + size=4 align=4 + base size=4 base align=4 +wait (0x7f0d411e7ee0) 0 + +Class timespec + size=16 align=8 + base size=16 base align=8 +timespec (0x7f0d411f2230) 0 + +Class timeval + size=16 align=8 + base size=16 base align=8 +timeval (0x7f0d411f22a0) 0 + +Class __pthread_internal_list + size=16 align=8 + base size=16 base align=8 +__pthread_internal_list (0x7f0d411f23f0) 0 + +Class random_data + size=48 align=8 + base size=48 base align=8 +random_data (0x7f0d411f29a0) 0 + +Class drand48_data + size=24 align=8 + base size=24 base align=8 +drand48_data (0x7f0d411f2a10) 0 + +Class QVectorData + size=16 align=4 + base size=16 base align=4 +QVectorData (0x7f0d411f2a80) 0 + +Class QContiguousCacheData + size=24 align=4 + base size=24 base align=4 +QContiguousCacheData (0x7f0d411aa770) 0 + +Class QDebug::Stream + size=40 align=8 + base size=34 base align=8 +QDebug::Stream (0x7f0d4100e2a0) 0 + +Class QDebug + size=8 align=8 + base size=8 base align=8 +QDebug (0x7f0d4100e230) 0 + +Class QNoDebug + size=1 align=1 + base size=0 base align=1 +QNoDebug (0x7f0d410c0230) 0 empty + +Vtable for QDirIterator +QDirIterator::_ZTV12QDirIterator: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QDirIterator) +16 QDirIterator::~QDirIterator +24 QDirIterator::~QDirIterator + +Class QDirIterator + size=16 align=8 + base size=16 base align=8 +QDirIterator (0x7f0d40ed18c0) 0 + vptr=((& QDirIterator::_ZTV12QDirIterator) + 16u) + +Vtable for QFileSystemWatcher +QFileSystemWatcher::_ZTV18QFileSystemWatcher: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFileSystemWatcher) +16 QFileSystemWatcher::metaObject +24 QFileSystemWatcher::qt_metacast +32 QFileSystemWatcher::qt_metacall +40 QFileSystemWatcher::~QFileSystemWatcher +48 QFileSystemWatcher::~QFileSystemWatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QFileSystemWatcher + size=16 align=8 + base size=16 base align=8 +QFileSystemWatcher (0x7f0d40f21690) 0 + vptr=((& QFileSystemWatcher::_ZTV18QFileSystemWatcher) + 16u) + QObject (0x7f0d40f21700) 0 + primary-for QFileSystemWatcher (0x7f0d40f21690) + +Vtable for QFSFileEngine +QFSFileEngine::_ZTV13QFSFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QFSFileEngine) +16 QFSFileEngine::~QFSFileEngine +24 QFSFileEngine::~QFSFileEngine +32 QFSFileEngine::open +40 QFSFileEngine::close +48 QFSFileEngine::flush +56 QFSFileEngine::size +64 QFSFileEngine::pos +72 QFSFileEngine::seek +80 QFSFileEngine::isSequential +88 QFSFileEngine::remove +96 QFSFileEngine::copy +104 QFSFileEngine::rename +112 QFSFileEngine::link +120 QFSFileEngine::mkdir +128 QFSFileEngine::rmdir +136 QFSFileEngine::setSize +144 QFSFileEngine::caseSensitive +152 QFSFileEngine::isRelativePath +160 QFSFileEngine::entryList +168 QFSFileEngine::fileFlags +176 QFSFileEngine::setPermissions +184 QFSFileEngine::fileName +192 QFSFileEngine::ownerId +200 QFSFileEngine::owner +208 QFSFileEngine::fileTime +216 QFSFileEngine::setFileName +224 QFSFileEngine::handle +232 QFSFileEngine::beginEntryList +240 QFSFileEngine::endEntryList +248 QFSFileEngine::read +256 QFSFileEngine::readLine +264 QFSFileEngine::write +272 QFSFileEngine::extension +280 QFSFileEngine::supportsExtension + +Class QFSFileEngine + size=16 align=8 + base size=16 base align=8 +QFSFileEngine (0x7f0d40f3ebd0) 0 + vptr=((& QFSFileEngine::_ZTV13QFSFileEngine) + 16u) + QAbstractFileEngine (0x7f0d40f3ec40) 0 + primary-for QFSFileEngine (0x7f0d40f3ebd0) + +Class QSharedData + size=4 align=4 + base size=4 base align=4 +QSharedData (0x7f0d40f4f9a0) 0 + +Class QProcessEnvironment + size=8 align=8 + base size=8 base align=8 +QProcessEnvironment (0x7f0d40f97310) 0 + +Vtable for QProcess +QProcess::_ZTV8QProcess: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QProcess) +16 QProcess::metaObject +24 QProcess::qt_metacast +32 QProcess::qt_metacall +40 QProcess::~QProcess +48 QProcess::~QProcess +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QProcess::isSequential +120 QIODevice::open +128 QProcess::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QProcess::atEnd +168 QIODevice::reset +176 QProcess::bytesAvailable +184 QProcess::bytesToWrite +192 QProcess::canReadLine +200 QProcess::waitForReadyRead +208 QProcess::waitForBytesWritten +216 QProcess::readData +224 QIODevice::readLineData +232 QProcess::writeData +240 QProcess::setupChildProcess + +Class QProcess + size=16 align=8 + base size=16 base align=8 +QProcess (0x7f0d40f97e00) 0 + vptr=((& QProcess::_ZTV8QProcess) + 16u) + QIODevice (0x7f0d40f97e70) 0 + primary-for QProcess (0x7f0d40f97e00) + QObject (0x7f0d40f97ee0) 0 + primary-for QIODevice (0x7f0d40f97e70) + +Class QResource + size=8 align=8 + base size=8 base align=8 +QResource (0x7f0d40de0310) 0 + +Class QMetaType + size=1 align=1 + base size=0 base align=1 +QMetaType (0x7f0d40de0460) 0 empty + +Class QVariant::PrivateShared + size=16 align=8 + base size=12 base align=8 +QVariant::PrivateShared (0x7f0d40cdf850) 0 + +Class QVariant::Private::Data + size=8 align=8 + base size=8 base align=8 +QVariant::Private::Data (0x7f0d40cdfb60) 0 + +Class QVariant::Private + size=16 align=8 + base size=12 base align=8 +QVariant::Private (0x7f0d40cdf930) 0 + +Class QVariant::Handler + size=72 align=8 + base size=72 base align=8 +QVariant::Handler (0x7f0d40cee850) 0 + +Class QVariant + size=16 align=8 + base size=16 base align=8 +QVariant (0x7f0d40eae930) 0 + +Class QVariantComparisonHelper + size=8 align=8 + base size=8 base align=8 +QVariantComparisonHelper (0x7f0d40da4af0) 0 + +Vtable for QSettings +QSettings::_ZTV9QSettings: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QSettings) +16 QSettings::metaObject +24 QSettings::qt_metacast +32 QSettings::qt_metacall +40 QSettings::~QSettings +48 QSettings::~QSettings +56 QSettings::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSettings + size=16 align=8 + base size=16 base align=8 +QSettings (0x7f0d40bd0070) 0 + vptr=((& QSettings::_ZTV9QSettings) + 16u) + QObject (0x7f0d40bd00e0) 0 + primary-for QSettings (0x7f0d40bd0070) + +Vtable for QTemporaryFile +QTemporaryFile::_ZTV14QTemporaryFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QTemporaryFile) +16 QTemporaryFile::metaObject +24 QTemporaryFile::qt_metacast +32 QTemporaryFile::qt_metacall +40 QTemporaryFile::~QTemporaryFile +48 QTemporaryFile::~QTemporaryFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QTemporaryFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QTemporaryFile::fileEngine + +Class QTemporaryFile + size=16 align=8 + base size=16 base align=8 +QTemporaryFile (0x7f0d40c493f0) 0 + vptr=((& QTemporaryFile::_ZTV14QTemporaryFile) + 16u) + QFile (0x7f0d40c49460) 0 + primary-for QTemporaryFile (0x7f0d40c493f0) + QIODevice (0x7f0d40c494d0) 0 + primary-for QFile (0x7f0d40c49460) + QObject (0x7f0d40c49540) 0 + primary-for QIODevice (0x7f0d40c494d0) + +Class QUrl + size=8 align=8 + base size=8 base align=8 +QUrl (0x7f0d40c64af0) 0 + +Class QXmlStreamStringRef + size=16 align=8 + base size=16 base align=8 +QXmlStreamStringRef (0x7f0d40aed1c0) 0 + +Class QXmlStreamAttribute + size=80 align=8 + base size=73 base align=8 +QXmlStreamAttribute (0x7f0d40b0aa10) 0 + +Class QXmlStreamAttributes + size=8 align=8 + base size=8 base align=8 +QXmlStreamAttributes (0x7f0d40b33460) 0 + QVector (0x7f0d40b334d0) 0 + +Class QXmlStreamNamespaceDeclaration + size=40 align=8 + base size=40 base align=8 +QXmlStreamNamespaceDeclaration (0x7f0d40b33930) 0 + +Class QXmlStreamNotationDeclaration + size=56 align=8 + base size=56 base align=8 +QXmlStreamNotationDeclaration (0x7f0d40b74310) 0 + +Class QXmlStreamEntityDeclaration + size=88 align=8 + base size=88 base align=8 +QXmlStreamEntityDeclaration (0x7f0d40b8f1c0) 0 + +Vtable for QXmlStreamEntityResolver +QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QXmlStreamEntityResolver) +16 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +24 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +32 QXmlStreamEntityResolver::resolveEntity +40 QXmlStreamEntityResolver::resolveUndeclaredEntity + +Class QXmlStreamEntityResolver + size=8 align=8 + base size=8 base align=8 +QXmlStreamEntityResolver (0x7f0d40bb1af0) 0 nearly-empty + vptr=((& QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver) + 16u) + +Class QXmlStreamReader + size=8 align=8 + base size=8 base align=8 +QXmlStreamReader (0x7f0d40bb1cb0) 0 + +Class QXmlStreamWriter + size=8 align=8 + base size=8 base align=8 +QXmlStreamWriter (0x7f0d409f6d90) 0 + +Vtable for QAbstractState +QAbstractState::_ZTV14QAbstractState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QAbstractState) +16 QAbstractState::metaObject +24 QAbstractState::qt_metacast +32 QAbstractState::qt_metacall +40 QAbstractState::~QAbstractState +48 QAbstractState::~QAbstractState +56 QAbstractState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QAbstractState + size=16 align=8 + base size=16 base align=8 +QAbstractState (0x7f0d40a02bd0) 0 + vptr=((& QAbstractState::_ZTV14QAbstractState) + 16u) + QObject (0x7f0d40a02c40) 0 + primary-for QAbstractState (0x7f0d40a02bd0) + +Vtable for QAbstractTransition +QAbstractTransition::_ZTV19QAbstractTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractTransition) +16 QAbstractTransition::metaObject +24 QAbstractTransition::qt_metacast +32 QAbstractTransition::qt_metacall +40 QAbstractTransition::~QAbstractTransition +48 QAbstractTransition::~QAbstractTransition +56 QAbstractTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QAbstractTransition + size=16 align=8 + base size=16 base align=8 +QAbstractTransition (0x7f0d40a333f0) 0 + vptr=((& QAbstractTransition::_ZTV19QAbstractTransition) + 16u) + QObject (0x7f0d40a33460) 0 + primary-for QAbstractTransition (0x7f0d40a333f0) + +Vtable for QEvent +QEvent::_ZTV6QEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QEvent) +16 QEvent::~QEvent +24 QEvent::~QEvent + +Class QEvent + size=24 align=8 + base size=20 base align=8 +QEvent (0x7f0d40a47c40) 0 + vptr=((& QEvent::_ZTV6QEvent) + 16u) + +Vtable for QTimerEvent +QTimerEvent::_ZTV11QTimerEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTimerEvent) +16 QTimerEvent::~QTimerEvent +24 QTimerEvent::~QTimerEvent + +Class QTimerEvent + size=24 align=8 + base size=24 base align=8 +QTimerEvent (0x7f0d40a68850) 0 + vptr=((& QTimerEvent::_ZTV11QTimerEvent) + 16u) + QEvent (0x7f0d40a688c0) 0 + primary-for QTimerEvent (0x7f0d40a68850) + +Vtable for QChildEvent +QChildEvent::_ZTV11QChildEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QChildEvent) +16 QChildEvent::~QChildEvent +24 QChildEvent::~QChildEvent + +Class QChildEvent + size=32 align=8 + base size=32 base align=8 +QChildEvent (0x7f0d40a68cb0) 0 + vptr=((& QChildEvent::_ZTV11QChildEvent) + 16u) + QEvent (0x7f0d40a68d20) 0 + primary-for QChildEvent (0x7f0d40a68cb0) + +Vtable for QCustomEvent +QCustomEvent::_ZTV12QCustomEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QCustomEvent) +16 QCustomEvent::~QCustomEvent +24 QCustomEvent::~QCustomEvent + +Class QCustomEvent + size=24 align=8 + base size=20 base align=8 +QCustomEvent (0x7f0d40a72f50) 0 + vptr=((& QCustomEvent::_ZTV12QCustomEvent) + 16u) + QEvent (0x7f0d40a81000) 0 + primary-for QCustomEvent (0x7f0d40a72f50) + +Vtable for QDynamicPropertyChangeEvent +QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QDynamicPropertyChangeEvent) +16 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent +24 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent + +Class QDynamicPropertyChangeEvent + size=32 align=8 + base size=32 base align=8 +QDynamicPropertyChangeEvent (0x7f0d40a81770) 0 + vptr=((& QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent) + 16u) + QEvent (0x7f0d40a817e0) 0 + primary-for QDynamicPropertyChangeEvent (0x7f0d40a81770) + +Vtable for QEventTransition +QEventTransition::_ZTV16QEventTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QEventTransition) +16 QEventTransition::metaObject +24 QEventTransition::qt_metacast +32 QEventTransition::qt_metacall +40 QEventTransition::~QEventTransition +48 QEventTransition::~QEventTransition +56 QEventTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QEventTransition::eventTest +120 QEventTransition::onTransition + +Class QEventTransition + size=16 align=8 + base size=16 base align=8 +QEventTransition (0x7f0d40a81c40) 0 + vptr=((& QEventTransition::_ZTV16QEventTransition) + 16u) + QAbstractTransition (0x7f0d40a81cb0) 0 + primary-for QEventTransition (0x7f0d40a81c40) + QObject (0x7f0d40a81d20) 0 + primary-for QAbstractTransition (0x7f0d40a81cb0) + +Vtable for QFinalState +QFinalState::_ZTV11QFinalState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFinalState) +16 QFinalState::metaObject +24 QFinalState::qt_metacast +32 QFinalState::qt_metacall +40 QFinalState::~QFinalState +48 QFinalState::~QFinalState +56 QFinalState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFinalState::onEntry +120 QFinalState::onExit + +Class QFinalState + size=16 align=8 + base size=16 base align=8 +QFinalState (0x7f0d40a9daf0) 0 + vptr=((& QFinalState::_ZTV11QFinalState) + 16u) + QAbstractState (0x7f0d40a9db60) 0 + primary-for QFinalState (0x7f0d40a9daf0) + QObject (0x7f0d40a9dbd0) 0 + primary-for QAbstractState (0x7f0d40a9db60) + +Vtable for QHistoryState +QHistoryState::_ZTV13QHistoryState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QHistoryState) +16 QHistoryState::metaObject +24 QHistoryState::qt_metacast +32 QHistoryState::qt_metacall +40 QHistoryState::~QHistoryState +48 QHistoryState::~QHistoryState +56 QHistoryState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QHistoryState::onEntry +120 QHistoryState::onExit + +Class QHistoryState + size=16 align=8 + base size=16 base align=8 +QHistoryState (0x7f0d408b7380) 0 + vptr=((& QHistoryState::_ZTV13QHistoryState) + 16u) + QAbstractState (0x7f0d408b73f0) 0 + primary-for QHistoryState (0x7f0d408b7380) + QObject (0x7f0d408b7460) 0 + primary-for QAbstractState (0x7f0d408b73f0) + +Vtable for QSignalTransition +QSignalTransition::_ZTV17QSignalTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QSignalTransition) +16 QSignalTransition::metaObject +24 QSignalTransition::qt_metacast +32 QSignalTransition::qt_metacall +40 QSignalTransition::~QSignalTransition +48 QSignalTransition::~QSignalTransition +56 QSignalTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QSignalTransition::eventTest +120 QSignalTransition::onTransition + +Class QSignalTransition + size=16 align=8 + base size=16 base align=8 +QSignalTransition (0x7f0d408d10e0) 0 + vptr=((& QSignalTransition::_ZTV17QSignalTransition) + 16u) + QAbstractTransition (0x7f0d408d1150) 0 + primary-for QSignalTransition (0x7f0d408d10e0) + QObject (0x7f0d408d11c0) 0 + primary-for QAbstractTransition (0x7f0d408d1150) + +Vtable for QState +QState::_ZTV6QState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QState) +16 QState::metaObject +24 QState::qt_metacast +32 QState::qt_metacall +40 QState::~QState +48 QState::~QState +56 QState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QState::onEntry +120 QState::onExit + +Class QState + size=16 align=8 + base size=16 base align=8 +QState (0x7f0d408e6c40) 0 + vptr=((& QState::_ZTV6QState) + 16u) + QAbstractState (0x7f0d408e6cb0) 0 + primary-for QState (0x7f0d408e6c40) + QObject (0x7f0d408e6d20) 0 + primary-for QAbstractState (0x7f0d408e6cb0) + +Vtable for QStateMachine::SignalEvent +QStateMachine::SignalEvent::_ZTVN13QStateMachine11SignalEventE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN13QStateMachine11SignalEventE) +16 QStateMachine::SignalEvent::~SignalEvent +24 QStateMachine::SignalEvent::~SignalEvent + +Class QStateMachine::SignalEvent + size=48 align=8 + base size=48 base align=8 +QStateMachine::SignalEvent (0x7f0d4090a2a0) 0 + vptr=((& QStateMachine::SignalEvent::_ZTVN13QStateMachine11SignalEventE) + 16u) + QEvent (0x7f0d4090a310) 0 + primary-for QStateMachine::SignalEvent (0x7f0d4090a2a0) + +Vtable for QStateMachine::WrappedEvent +QStateMachine::WrappedEvent::_ZTVN13QStateMachine12WrappedEventE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN13QStateMachine12WrappedEventE) +16 QStateMachine::WrappedEvent::~WrappedEvent +24 QStateMachine::WrappedEvent::~WrappedEvent + +Class QStateMachine::WrappedEvent + size=40 align=8 + base size=40 base align=8 +QStateMachine::WrappedEvent (0x7f0d4090a850) 0 + vptr=((& QStateMachine::WrappedEvent::_ZTVN13QStateMachine12WrappedEventE) + 16u) + QEvent (0x7f0d4090a8c0) 0 + primary-for QStateMachine::WrappedEvent (0x7f0d4090a850) + +Vtable for QStateMachine +QStateMachine::_ZTV13QStateMachine: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QStateMachine) +16 QStateMachine::metaObject +24 QStateMachine::qt_metacast +32 QStateMachine::qt_metacall +40 QStateMachine::~QStateMachine +48 QStateMachine::~QStateMachine +56 QStateMachine::event +64 QStateMachine::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QStateMachine::onEntry +120 QStateMachine::onExit +128 QStateMachine::beginSelectTransitions +136 QStateMachine::endSelectTransitions +144 QStateMachine::beginMicrostep +152 QStateMachine::endMicrostep + +Class QStateMachine + size=16 align=8 + base size=16 base align=8 +QStateMachine (0x7f0d4090a070) 0 + vptr=((& QStateMachine::_ZTV13QStateMachine) + 16u) + QState (0x7f0d4090a0e0) 0 + primary-for QStateMachine (0x7f0d4090a070) + QAbstractState (0x7f0d4090a150) 0 + primary-for QState (0x7f0d4090a0e0) + QObject (0x7f0d4090a1c0) 0 + primary-for QAbstractState (0x7f0d4090a150) + +Class QBitArray + size=8 align=8 + base size=8 base align=8 +QBitArray (0x7f0d4093a2a0) 0 + +Class QBitRef + size=16 align=8 + base size=12 base align=8 +QBitRef (0x7f0d4098df50) 0 + +Class QByteArrayMatcher::Data + size=272 align=8 + base size=272 base align=8 +QByteArrayMatcher::Data (0x7f0d409a2c40) 0 + +Class QByteArrayMatcher + size=1040 align=8 + base size=1040 base align=8 +QByteArrayMatcher (0x7f0d409a2620) 0 + +Class QCryptographicHash + size=8 align=8 + base size=8 base align=8 +QCryptographicHash (0x7f0d407d32a0) 0 + +Vtable for QtSharedPointer::ExternalRefCountData +QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN15QtSharedPointer20ExternalRefCountDataE) +16 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +24 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +32 QtSharedPointer::ExternalRefCountData::destroy + +Class QtSharedPointer::ExternalRefCountData + size=16 align=8 + base size=16 base align=8 +QtSharedPointer::ExternalRefCountData (0x7f0d408031c0) 0 + vptr=((& QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE) + 16u) + +Vtable for QtSharedPointer::ExternalRefCountWithDestroyFn +QtSharedPointer::ExternalRefCountWithDestroyFn::_ZTVN15QtSharedPointer29ExternalRefCountWithDestroyFnE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN15QtSharedPointer29ExternalRefCountWithDestroyFnE) +16 QtSharedPointer::ExternalRefCountWithDestroyFn::~ExternalRefCountWithDestroyFn +24 QtSharedPointer::ExternalRefCountWithDestroyFn::~ExternalRefCountWithDestroyFn +32 QtSharedPointer::ExternalRefCountWithDestroyFn::destroy + +Class QtSharedPointer::ExternalRefCountWithDestroyFn + size=24 align=8 + base size=24 base align=8 +QtSharedPointer::ExternalRefCountWithDestroyFn (0x7f0d4081ba80) 0 + vptr=((& QtSharedPointer::ExternalRefCountWithDestroyFn::_ZTVN15QtSharedPointer29ExternalRefCountWithDestroyFnE) + 16u) + QtSharedPointer::ExternalRefCountData (0x7f0d4081baf0) 0 + primary-for QtSharedPointer::ExternalRefCountWithDestroyFn (0x7f0d4081ba80) + +Class QDate + size=4 align=4 + base size=4 base align=4 +QDate (0x7f0d408a0700) 0 + +Class QTime + size=4 align=4 + base size=4 base align=4 +QTime (0x7f0d406d2690) 0 + +Class QDateTime + size=8 align=8 + base size=8 base align=8 +QDateTime (0x7f0d406efc40) 0 + +Class QEasingCurve + size=8 align=8 + base size=8 base align=8 +QEasingCurve (0x7f0d40736150) 0 + +Class QPoint + size=8 align=4 + base size=8 base align=4 +QPoint (0x7f0d40746000) 0 + +Class QPointF + size=16 align=8 + base size=16 base align=8 +QPointF (0x7f0d40778c40) 0 + +Class QLine + size=16 align=4 + base size=16 base align=4 +QLine (0x7f0d407b6c40) 0 + +Class QLineF + size=32 align=8 + base size=32 base align=8 +QLineF (0x7f0d405ebaf0) 0 + +Class QLinkedListData + size=32 align=8 + base size=32 base align=8 +QLinkedListData (0x7f0d406465b0) 0 + +Class QMargins + size=16 align=4 + base size=16 base align=4 +QMargins (0x7f0d405064d0) 0 + +Class QSize + size=8 align=4 + base size=8 base align=4 +QSize (0x7f0d405322a0) 0 + +Class QSizeF + size=16 align=8 + base size=16 base align=8 +QSizeF (0x7f0d40574f50) 0 + +Class QRect + size=16 align=4 + base size=16 base align=4 +QRect (0x7f0d403c84d0) 0 + +Class QRectF + size=32 align=8 + base size=32 base align=8 +QRectF (0x7f0d40476e70) 0 + +Class QLatin1Literal + size=16 align=8 + base size=16 base align=8 +QLatin1Literal (0x7f0d40334000) 0 + +Class QAbstractConcatenable + size=1 align=1 + base size=0 base align=1 +QAbstractConcatenable (0x7f0d40334540) 0 empty + +Class QTextBoundaryFinder + size=48 align=8 + base size=48 base align=8 +QTextBoundaryFinder (0x7f0d4036c4d0) 0 + +Vtable for QTimeLine +QTimeLine::_ZTV9QTimeLine: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTimeLine) +16 QTimeLine::metaObject +24 QTimeLine::qt_metacast +32 QTimeLine::qt_metacall +40 QTimeLine::~QTimeLine +48 QTimeLine::~QTimeLine +56 QObject::event +64 QObject::eventFilter +72 QTimeLine::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTimeLine::valueForTime + +Class QTimeLine + size=16 align=8 + base size=16 base align=8 +QTimeLine (0x7f0d40378850) 0 + vptr=((& QTimeLine::_ZTV9QTimeLine) + 16u) + QObject (0x7f0d403788c0) 0 + primary-for QTimeLine (0x7f0d40378850) + +Vtable for QRunnable +QRunnable::_ZTV9QRunnable: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QRunnable) +16 __cxa_pure_virtual +24 QRunnable::~QRunnable +32 QRunnable::~QRunnable + +Class QRunnable + size=16 align=8 + base size=12 base align=8 +QRunnable (0x7f0d401c40e0) 0 + vptr=((& QRunnable::_ZTV9QRunnable) + 16u) + +Class QMutex + size=8 align=8 + base size=8 base align=8 +QMutex (0x7f0d401da770) 0 + +Class QMutexLocker + size=8 align=8 + base size=8 base align=8 +QMutexLocker (0x7f0d401e9310) 0 + +Vtable for QtConcurrent::Exception +QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent9ExceptionE) +16 QtConcurrent::Exception::~Exception +24 QtConcurrent::Exception::~Exception +32 std::exception::what +40 QtConcurrent::Exception::raise +48 QtConcurrent::Exception::clone + +Class QtConcurrent::Exception + size=8 align=8 + base size=8 base align=8 +QtConcurrent::Exception (0x7f0d401ff620) 0 nearly-empty + vptr=((& QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE) + 16u) + std::exception (0x7f0d401ff690) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7f0d401ff620) + +Vtable for QtConcurrent::UnhandledException +QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent18UnhandledExceptionE) +16 QtConcurrent::UnhandledException::~UnhandledException +24 QtConcurrent::UnhandledException::~UnhandledException +32 std::exception::what +40 QtConcurrent::UnhandledException::raise +48 QtConcurrent::UnhandledException::clone + +Class QtConcurrent::UnhandledException + size=8 align=8 + base size=8 base align=8 +QtConcurrent::UnhandledException (0x7f0d401ff8c0) 0 nearly-empty + vptr=((& QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE) + 16u) + QtConcurrent::Exception (0x7f0d401ff930) 0 nearly-empty + primary-for QtConcurrent::UnhandledException (0x7f0d401ff8c0) + std::exception (0x7f0d401ff9a0) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7f0d401ff930) + +Class QtConcurrent::internal::ExceptionHolder + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionHolder (0x7f0d401ffbd0) 0 + +Class QtConcurrent::internal::ExceptionStore + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionStore (0x7f0d401fff50) 0 + +Class QtConcurrent::ResultItem + size=16 align=8 + base size=16 base align=8 +QtConcurrent::ResultItem (0x7f0d401ff850) 0 + +Class QtConcurrent::ResultIteratorBase + size=16 align=8 + base size=12 base align=8 +QtConcurrent::ResultIteratorBase (0x7f0d40217ee0) 0 + +Vtable for QtConcurrent::ResultStoreBase +QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent15ResultStoreBaseE) +16 QtConcurrent::ResultStoreBase::~ResultStoreBase +24 QtConcurrent::ResultStoreBase::~ResultStoreBase + +Class QtConcurrent::ResultStoreBase + size=48 align=8 + base size=44 base align=8 +QtConcurrent::ResultStoreBase (0x7f0d4021ba80) 0 + vptr=((& QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE) + 16u) + +Vtable for QFutureInterfaceBase +QFutureInterfaceBase::_ZTV20QFutureInterfaceBase: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QFutureInterfaceBase) +16 QFutureInterfaceBase::~QFutureInterfaceBase +24 QFutureInterfaceBase::~QFutureInterfaceBase + +Class QFutureInterfaceBase + size=16 align=8 + base size=16 base align=8 +QFutureInterfaceBase (0x7f0d4025bee0) 0 + vptr=((& QFutureInterfaceBase::_ZTV20QFutureInterfaceBase) + 16u) + +Vtable for QFutureWatcherBase +QFutureWatcherBase::_ZTV18QFutureWatcherBase: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFutureWatcherBase) +16 QFutureWatcherBase::metaObject +24 QFutureWatcherBase::qt_metacast +32 QFutureWatcherBase::qt_metacall +40 QFutureWatcherBase::~QFutureWatcherBase +48 QFutureWatcherBase::~QFutureWatcherBase +56 QFutureWatcherBase::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QFutureWatcherBase::connectNotify +104 QFutureWatcherBase::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QFutureWatcherBase + size=16 align=8 + base size=16 base align=8 +QFutureWatcherBase (0x7f0d4013f7e0) 0 + vptr=((& QFutureWatcherBase::_ZTV18QFutureWatcherBase) + 16u) + QObject (0x7f0d4013f850) 0 + primary-for QFutureWatcherBase (0x7f0d4013f7e0) + +Vtable for QThread +QThread::_ZTV7QThread: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QThread) +16 QThread::metaObject +24 QThread::qt_metacast +32 QThread::qt_metacall +40 QThread::~QThread +48 QThread::~QThread +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QThread::run + +Class QThread + size=16 align=8 + base size=16 base align=8 +QThread (0x7f0d40190bd0) 0 + vptr=((& QThread::_ZTV7QThread) + 16u) + QObject (0x7f0d40190c40) 0 + primary-for QThread (0x7f0d40190bd0) + +Vtable for QThreadPool +QThreadPool::_ZTV11QThreadPool: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QThreadPool) +16 QThreadPool::metaObject +24 QThreadPool::qt_metacast +32 QThreadPool::qt_metacall +40 QThreadPool::~QThreadPool +48 QThreadPool::~QThreadPool +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QThreadPool + size=16 align=8 + base size=16 base align=8 +QThreadPool (0x7f0d3ffb9a80) 0 + vptr=((& QThreadPool::_ZTV11QThreadPool) + 16u) + QObject (0x7f0d3ffb9af0) 0 + primary-for QThreadPool (0x7f0d3ffb9a80) + +Class QWaitCondition + size=8 align=8 + base size=8 base align=8 +QWaitCondition (0x7f0d3ffd2070) 0 + +Class QSemaphore + size=8 align=8 + base size=8 base align=8 +QSemaphore (0x7f0d3ffd25b0) 0 + +Class QtConcurrent::ThreadEngineBarrier + size=24 align=8 + base size=24 base align=8 +QtConcurrent::ThreadEngineBarrier (0x7f0d3ffd2af0) 0 + +Vtable for QtConcurrent::ThreadEngineBase +QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent16ThreadEngineBaseE) +16 QtConcurrent::ThreadEngineBase::run +24 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +32 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +40 QtConcurrent::ThreadEngineBase::start +48 QtConcurrent::ThreadEngineBase::finish +56 QtConcurrent::ThreadEngineBase::threadFunction +64 QtConcurrent::ThreadEngineBase::shouldStartThread +72 QtConcurrent::ThreadEngineBase::shouldThrottleThread +80 __cxa_pure_virtual + +Class QtConcurrent::ThreadEngineBase + size=64 align=8 + base size=64 base align=8 +QtConcurrent::ThreadEngineBase (0x7f0d3ffd2bd0) 0 + vptr=((& QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE) + 16u) + QRunnable (0x7f0d3ffd2c40) 0 + primary-for QtConcurrent::ThreadEngineBase (0x7f0d3ffd2bd0) + +VTT for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTTN12QtConcurrent12ThreadEngineIvEE: 2u entries +0 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 24u) +8 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 136u) + +Class QtConcurrent::BlockSizeManager + size=96 align=8 + base size=92 base align=8 +QtConcurrent::BlockSizeManager (0x7f0d40028070) 0 + +Vtable for QFactoryInterface +QFactoryInterface::_ZTV17QFactoryInterface: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QFactoryInterface) +16 QFactoryInterface::~QFactoryInterface +24 QFactoryInterface::~QFactoryInterface +32 __cxa_pure_virtual + +Class QFactoryInterface + size=8 align=8 + base size=8 base align=8 +QFactoryInterface (0x7f0d3fabfe70) 0 nearly-empty + vptr=((& QFactoryInterface::_ZTV17QFactoryInterface) + 16u) + +Vtable for QTextCodecFactoryInterface +QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QTextCodecFactoryInterface) +16 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +24 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QTextCodecFactoryInterface + size=8 align=8 + base size=8 base align=8 +QTextCodecFactoryInterface (0x7f0d3faf5150) 0 nearly-empty + vptr=((& QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface) + 16u) + QFactoryInterface (0x7f0d3faf51c0) 0 nearly-empty + primary-for QTextCodecFactoryInterface (0x7f0d3faf5150) + +Vtable for QTextCodecPlugin +QTextCodecPlugin::_ZTV16QTextCodecPlugin: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QTextCodecPlugin) +16 QTextCodecPlugin::metaObject +24 QTextCodecPlugin::qt_metacast +32 QTextCodecPlugin::qt_metacall +40 QTextCodecPlugin::~QTextCodecPlugin +48 QTextCodecPlugin::~QTextCodecPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 QTextCodecPlugin::keys +160 QTextCodecPlugin::create +168 (int (*)(...))-0x00000000000000010 +176 (int (*)(...))(& _ZTI16QTextCodecPlugin) +184 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD1Ev +192 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD0Ev +200 QTextCodecPlugin::_ZThn16_NK16QTextCodecPlugin4keysEv +208 QTextCodecPlugin::_ZThn16_N16QTextCodecPlugin6createERK7QString + +Class QTextCodecPlugin + size=24 align=8 + base size=24 base align=8 +QTextCodecPlugin (0x7f0d3fafc600) 0 + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 16u) + QObject (0x7f0d3faf5bd0) 0 + primary-for QTextCodecPlugin (0x7f0d3fafc600) + QTextCodecFactoryInterface (0x7f0d3faf5c40) 16 nearly-empty + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 184u) + QFactoryInterface (0x7f0d3faf5cb0) 16 nearly-empty + primary-for QTextCodecFactoryInterface (0x7f0d3faf5c40) + +Class QLibraryInfo + size=1 align=1 + base size=0 base align=1 +QLibraryInfo (0x7f0d3fb4a2a0) 0 empty + +Vtable for QEventLoop +QEventLoop::_ZTV10QEventLoop: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QEventLoop) +16 QEventLoop::metaObject +24 QEventLoop::qt_metacast +32 QEventLoop::qt_metacall +40 QEventLoop::~QEventLoop +48 QEventLoop::~QEventLoop +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QEventLoop + size=16 align=8 + base size=16 base align=8 +QEventLoop (0x7f0d3fb4a3f0) 0 + vptr=((& QEventLoop::_ZTV10QEventLoop) + 16u) + QObject (0x7f0d3fb4a460) 0 + primary-for QEventLoop (0x7f0d3fb4a3f0) + +Vtable for QAbstractEventDispatcher +QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QAbstractEventDispatcher) +16 QAbstractEventDispatcher::metaObject +24 QAbstractEventDispatcher::qt_metacast +32 QAbstractEventDispatcher::qt_metacall +40 QAbstractEventDispatcher::~QAbstractEventDispatcher +48 QAbstractEventDispatcher::~QAbstractEventDispatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 QAbstractEventDispatcher::startingUp +208 QAbstractEventDispatcher::closingDown + +Class QAbstractEventDispatcher + size=16 align=8 + base size=16 base align=8 +QAbstractEventDispatcher (0x7f0d3fb85d20) 0 + vptr=((& QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher) + 16u) + QObject (0x7f0d3fb85d90) 0 + primary-for QAbstractEventDispatcher (0x7f0d3fb85d20) + +Class QModelIndex + size=24 align=8 + base size=24 base align=8 +QModelIndex (0x7f0d3f9acbd0) 0 + +Class QPersistentModelIndex + size=8 align=8 + base size=8 base align=8 +QPersistentModelIndex (0x7f0d3f9d9690) 0 + +Vtable for QAbstractItemModel +QAbstractItemModel::_ZTV18QAbstractItemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractItemModel) +16 QAbstractItemModel::metaObject +24 QAbstractItemModel::qt_metacast +32 QAbstractItemModel::qt_metacall +40 QAbstractItemModel::~QAbstractItemModel +48 QAbstractItemModel::~QAbstractItemModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractItemModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractItemModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractItemModel + size=16 align=8 + base size=16 base align=8 +QAbstractItemModel (0x7f0d3f9e19a0) 0 + vptr=((& QAbstractItemModel::_ZTV18QAbstractItemModel) + 16u) + QObject (0x7f0d3f9e1a10) 0 + primary-for QAbstractItemModel (0x7f0d3f9e19a0) + +Vtable for QAbstractTableModel +QAbstractTableModel::_ZTV19QAbstractTableModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractTableModel) +16 QAbstractTableModel::metaObject +24 QAbstractTableModel::qt_metacast +32 QAbstractTableModel::qt_metacall +40 QAbstractTableModel::~QAbstractTableModel +48 QAbstractTableModel::~QAbstractTableModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractTableModel::index +120 QAbstractTableModel::parent +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractTableModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractTableModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractTableModel + size=16 align=8 + base size=16 base align=8 +QAbstractTableModel (0x7f0d3fa3dcb0) 0 + vptr=((& QAbstractTableModel::_ZTV19QAbstractTableModel) + 16u) + QAbstractItemModel (0x7f0d3fa3dd20) 0 + primary-for QAbstractTableModel (0x7f0d3fa3dcb0) + QObject (0x7f0d3fa3dd90) 0 + primary-for QAbstractItemModel (0x7f0d3fa3dd20) + +Vtable for QAbstractListModel +QAbstractListModel::_ZTV18QAbstractListModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractListModel) +16 QAbstractListModel::metaObject +24 QAbstractListModel::qt_metacast +32 QAbstractListModel::qt_metacall +40 QAbstractListModel::~QAbstractListModel +48 QAbstractListModel::~QAbstractListModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractListModel::index +120 QAbstractListModel::parent +128 __cxa_pure_virtual +136 QAbstractListModel::columnCount +144 QAbstractListModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractListModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractListModel + size=16 align=8 + base size=16 base align=8 +QAbstractListModel (0x7f0d3fa58230) 0 + vptr=((& QAbstractListModel::_ZTV18QAbstractListModel) + 16u) + QAbstractItemModel (0x7f0d3fa582a0) 0 + primary-for QAbstractListModel (0x7f0d3fa58230) + QObject (0x7f0d3fa58310) 0 + primary-for QAbstractItemModel (0x7f0d3fa582a0) + +Class QBasicTimer + size=4 align=4 + base size=4 base align=4 +QBasicTimer (0x7f0d3fa89380) 0 + +Vtable for QCoreApplication +QCoreApplication::_ZTV16QCoreApplication: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QCoreApplication) +16 QCoreApplication::metaObject +24 QCoreApplication::qt_metacast +32 QCoreApplication::qt_metacall +40 QCoreApplication::~QCoreApplication +48 QCoreApplication::~QCoreApplication +56 QCoreApplication::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCoreApplication::notify +120 QCoreApplication::compressEvent + +Class QCoreApplication + size=16 align=8 + base size=16 base align=8 +QCoreApplication (0x7f0d3fa95770) 0 + vptr=((& QCoreApplication::_ZTV16QCoreApplication) + 16u) + QObject (0x7f0d3fa957e0) 0 + primary-for QCoreApplication (0x7f0d3fa95770) + +Class __exception + size=40 align=8 + base size=40 base align=8 +__exception (0x7f0d3f8cb460) 0 + +Class QMetaMethod + size=16 align=8 + base size=12 base align=8 +QMetaMethod (0x7f0d3f9388c0) 0 + +Class QMetaEnum + size=16 align=8 + base size=12 base align=8 +QMetaEnum (0x7f0d3f952d20) 0 + +Class QMetaProperty + size=32 align=8 + base size=32 base align=8 +QMetaProperty (0x7f0d3f961a80) 0 + +Class QMetaClassInfo + size=16 align=8 + base size=12 base align=8 +QMetaClassInfo (0x7f0d3f971150) 0 + +Vtable for QMimeData +QMimeData::_ZTV9QMimeData: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QMimeData) +16 QMimeData::metaObject +24 QMimeData::qt_metacast +32 QMimeData::qt_metacall +40 QMimeData::~QMimeData +48 QMimeData::~QMimeData +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMimeData::hasFormat +120 QMimeData::formats +128 QMimeData::retrieveData + +Class QMimeData + size=16 align=8 + base size=16 base align=8 +QMimeData (0x7f0d3f971c40) 0 + vptr=((& QMimeData::_ZTV9QMimeData) + 16u) + QObject (0x7f0d3f971cb0) 0 + primary-for QMimeData (0x7f0d3f971c40) + +Vtable for QObjectCleanupHandler +QObjectCleanupHandler::_ZTV21QObjectCleanupHandler: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QObjectCleanupHandler) +16 QObjectCleanupHandler::metaObject +24 QObjectCleanupHandler::qt_metacast +32 QObjectCleanupHandler::qt_metacall +40 QObjectCleanupHandler::~QObjectCleanupHandler +48 QObjectCleanupHandler::~QObjectCleanupHandler +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObjectCleanupHandler + size=24 align=8 + base size=24 base align=8 +QObjectCleanupHandler (0x7f0d3f9944d0) 0 + vptr=((& QObjectCleanupHandler::_ZTV21QObjectCleanupHandler) + 16u) + QObject (0x7f0d3f994540) 0 + primary-for QObjectCleanupHandler (0x7f0d3f9944d0) + +Vtable for QSharedMemory +QSharedMemory::_ZTV13QSharedMemory: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSharedMemory) +16 QSharedMemory::metaObject +24 QSharedMemory::qt_metacast +32 QSharedMemory::qt_metacall +40 QSharedMemory::~QSharedMemory +48 QSharedMemory::~QSharedMemory +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSharedMemory + size=16 align=8 + base size=16 base align=8 +QSharedMemory (0x7f0d3f9a6620) 0 + vptr=((& QSharedMemory::_ZTV13QSharedMemory) + 16u) + QObject (0x7f0d3f9a6690) 0 + primary-for QSharedMemory (0x7f0d3f9a6620) + +Vtable for QSignalMapper +QSignalMapper::_ZTV13QSignalMapper: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSignalMapper) +16 QSignalMapper::metaObject +24 QSignalMapper::qt_metacast +32 QSignalMapper::qt_metacall +40 QSignalMapper::~QSignalMapper +48 QSignalMapper::~QSignalMapper +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSignalMapper + size=16 align=8 + base size=16 base align=8 +QSignalMapper (0x7f0d3f7c23f0) 0 + vptr=((& QSignalMapper::_ZTV13QSignalMapper) + 16u) + QObject (0x7f0d3f7c2460) 0 + primary-for QSignalMapper (0x7f0d3f7c23f0) + +Vtable for QSocketNotifier +QSocketNotifier::_ZTV15QSocketNotifier: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSocketNotifier) +16 QSocketNotifier::metaObject +24 QSocketNotifier::qt_metacast +32 QSocketNotifier::qt_metacall +40 QSocketNotifier::~QSocketNotifier +48 QSocketNotifier::~QSocketNotifier +56 QSocketNotifier::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSocketNotifier + size=32 align=8 + base size=25 base align=8 +QSocketNotifier (0x7f0d3f7da7e0) 0 + vptr=((& QSocketNotifier::_ZTV15QSocketNotifier) + 16u) + QObject (0x7f0d3f7da850) 0 + primary-for QSocketNotifier (0x7f0d3f7da7e0) + +Class QSystemSemaphore + size=8 align=8 + base size=8 base align=8 +QSystemSemaphore (0x7f0d3f7f4b60) 0 + +Vtable for QTimer +QTimer::_ZTV6QTimer: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QTimer) +16 QTimer::metaObject +24 QTimer::qt_metacast +32 QTimer::qt_metacall +40 QTimer::~QTimer +48 QTimer::~QTimer +56 QObject::event +64 QObject::eventFilter +72 QTimer::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTimer + size=32 align=8 + base size=29 base align=8 +QTimer (0x7f0d3f8005b0) 0 + vptr=((& QTimer::_ZTV6QTimer) + 16u) + QObject (0x7f0d3f800620) 0 + primary-for QTimer (0x7f0d3f8005b0) + +Vtable for QTranslator +QTranslator::_ZTV11QTranslator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTranslator) +16 QTranslator::metaObject +24 QTranslator::qt_metacast +32 QTranslator::qt_metacall +40 QTranslator::~QTranslator +48 QTranslator::~QTranslator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTranslator::translate +120 QTranslator::isEmpty + +Class QTranslator + size=16 align=8 + base size=16 base align=8 +QTranslator (0x7f0d3f825af0) 0 + vptr=((& QTranslator::_ZTV11QTranslator) + 16u) + QObject (0x7f0d3f825b60) 0 + primary-for QTranslator (0x7f0d3f825af0) + +Vtable for QLibrary +QLibrary::_ZTV8QLibrary: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QLibrary) +16 QLibrary::metaObject +24 QLibrary::qt_metacast +32 QLibrary::qt_metacall +40 QLibrary::~QLibrary +48 QLibrary::~QLibrary +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QLibrary + size=32 align=8 + base size=25 base align=8 +QLibrary (0x7f0d3f840a80) 0 + vptr=((& QLibrary::_ZTV8QLibrary) + 16u) + QObject (0x7f0d3f840af0) 0 + primary-for QLibrary (0x7f0d3f840a80) + +Vtable for QPluginLoader +QPluginLoader::_ZTV13QPluginLoader: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QPluginLoader) +16 QPluginLoader::metaObject +24 QPluginLoader::qt_metacast +32 QPluginLoader::qt_metacall +40 QPluginLoader::~QPluginLoader +48 QPluginLoader::~QPluginLoader +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QPluginLoader + size=32 align=8 + base size=25 base align=8 +QPluginLoader (0x7f0d3f88f540) 0 + vptr=((& QPluginLoader::_ZTV13QPluginLoader) + 16u) + QObject (0x7f0d3f88f5b0) 0 + primary-for QPluginLoader (0x7f0d3f88f540) + +Class QUuid + size=16 align=4 + base size=16 base align=4 +QUuid (0x7f0d3f897d20) 0 + +Class QReadWriteLock + size=8 align=8 + base size=8 base align=8 +QReadWriteLock (0x7f0d3f6c4620) 0 + +Class QReadLocker + size=8 align=8 + base size=8 base align=8 +QReadLocker (0x7f0d3f6c4cb0) 0 + +Class QWriteLocker + size=8 align=8 + base size=8 base align=8 +QWriteLocker (0x7f0d3f6ea070) 0 + +Class QThreadStorageData + size=4 align=4 + base size=4 base align=4 +QThreadStorageData (0x7f0d3f6fa3f0) 0 + +Vtable for QAbstractAnimation +QAbstractAnimation::_ZTV18QAbstractAnimation: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractAnimation) +16 QAbstractAnimation::metaObject +24 QAbstractAnimation::qt_metacast +32 QAbstractAnimation::qt_metacall +40 QAbstractAnimation::~QAbstractAnimation +48 QAbstractAnimation::~QAbstractAnimation +56 QAbstractAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAbstractAnimation::updateState +136 QAbstractAnimation::updateDirection + +Class QAbstractAnimation + size=16 align=8 + base size=16 base align=8 +QAbstractAnimation (0x7f0d3f6fab60) 0 + vptr=((& QAbstractAnimation::_ZTV18QAbstractAnimation) + 16u) + QObject (0x7f0d3f6fabd0) 0 + primary-for QAbstractAnimation (0x7f0d3f6fab60) + +Vtable for QAnimationGroup +QAnimationGroup::_ZTV15QAnimationGroup: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QAnimationGroup) +16 QAnimationGroup::metaObject +24 QAnimationGroup::qt_metacast +32 QAnimationGroup::qt_metacall +40 QAnimationGroup::~QAnimationGroup +48 QAnimationGroup::~QAnimationGroup +56 QAnimationGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAbstractAnimation::updateState +136 QAbstractAnimation::updateDirection + +Class QAnimationGroup + size=16 align=8 + base size=16 base align=8 +QAnimationGroup (0x7f0d3f7332a0) 0 + vptr=((& QAnimationGroup::_ZTV15QAnimationGroup) + 16u) + QAbstractAnimation (0x7f0d3f733310) 0 + primary-for QAnimationGroup (0x7f0d3f7332a0) + QObject (0x7f0d3f733380) 0 + primary-for QAbstractAnimation (0x7f0d3f733310) + +Vtable for QParallelAnimationGroup +QParallelAnimationGroup::_ZTV23QParallelAnimationGroup: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QParallelAnimationGroup) +16 QParallelAnimationGroup::metaObject +24 QParallelAnimationGroup::qt_metacast +32 QParallelAnimationGroup::qt_metacall +40 QParallelAnimationGroup::~QParallelAnimationGroup +48 QParallelAnimationGroup::~QParallelAnimationGroup +56 QParallelAnimationGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QParallelAnimationGroup::duration +120 QParallelAnimationGroup::updateCurrentTime +128 QParallelAnimationGroup::updateState +136 QParallelAnimationGroup::updateDirection + +Class QParallelAnimationGroup + size=16 align=8 + base size=16 base align=8 +QParallelAnimationGroup (0x7f0d3f74d150) 0 + vptr=((& QParallelAnimationGroup::_ZTV23QParallelAnimationGroup) + 16u) + QAnimationGroup (0x7f0d3f74d1c0) 0 + primary-for QParallelAnimationGroup (0x7f0d3f74d150) + QAbstractAnimation (0x7f0d3f74d230) 0 + primary-for QAnimationGroup (0x7f0d3f74d1c0) + QObject (0x7f0d3f74d2a0) 0 + primary-for QAbstractAnimation (0x7f0d3f74d230) + +Vtable for QPauseAnimation +QPauseAnimation::_ZTV15QPauseAnimation: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QPauseAnimation) +16 QPauseAnimation::metaObject +24 QPauseAnimation::qt_metacast +32 QPauseAnimation::qt_metacall +40 QPauseAnimation::~QPauseAnimation +48 QPauseAnimation::~QPauseAnimation +56 QPauseAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QPauseAnimation::duration +120 QPauseAnimation::updateCurrentTime +128 QAbstractAnimation::updateState +136 QAbstractAnimation::updateDirection + +Class QPauseAnimation + size=16 align=8 + base size=16 base align=8 +QPauseAnimation (0x7f0d3f765000) 0 + vptr=((& QPauseAnimation::_ZTV15QPauseAnimation) + 16u) + QAbstractAnimation (0x7f0d3f765070) 0 + primary-for QPauseAnimation (0x7f0d3f765000) + QObject (0x7f0d3f7650e0) 0 + primary-for QAbstractAnimation (0x7f0d3f765070) + +Vtable for QVariantAnimation +QVariantAnimation::_ZTV17QVariantAnimation: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QVariantAnimation) +16 QVariantAnimation::metaObject +24 QVariantAnimation::qt_metacast +32 QVariantAnimation::qt_metacall +40 QVariantAnimation::~QVariantAnimation +48 QVariantAnimation::~QVariantAnimation +56 QVariantAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QVariantAnimation::duration +120 QVariantAnimation::updateCurrentTime +128 QVariantAnimation::updateState +136 QAbstractAnimation::updateDirection +144 __cxa_pure_virtual +152 QVariantAnimation::interpolated + +Class QVariantAnimation + size=16 align=8 + base size=16 base align=8 +QVariantAnimation (0x7f0d3f779a10) 0 + vptr=((& QVariantAnimation::_ZTV17QVariantAnimation) + 16u) + QAbstractAnimation (0x7f0d3f779a80) 0 + primary-for QVariantAnimation (0x7f0d3f779a10) + QObject (0x7f0d3f779af0) 0 + primary-for QAbstractAnimation (0x7f0d3f779a80) + +Vtable for QPropertyAnimation +QPropertyAnimation::_ZTV18QPropertyAnimation: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QPropertyAnimation) +16 QPropertyAnimation::metaObject +24 QPropertyAnimation::qt_metacast +32 QPropertyAnimation::qt_metacall +40 QPropertyAnimation::~QPropertyAnimation +48 QPropertyAnimation::~QPropertyAnimation +56 QPropertyAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QVariantAnimation::duration +120 QVariantAnimation::updateCurrentTime +128 QPropertyAnimation::updateState +136 QAbstractAnimation::updateDirection +144 QPropertyAnimation::updateCurrentValue +152 QVariantAnimation::interpolated + +Class QPropertyAnimation + size=16 align=8 + base size=16 base align=8 +QPropertyAnimation (0x7f0d3f797cb0) 0 + vptr=((& QPropertyAnimation::_ZTV18QPropertyAnimation) + 16u) + QVariantAnimation (0x7f0d3f797d20) 0 + primary-for QPropertyAnimation (0x7f0d3f797cb0) + QAbstractAnimation (0x7f0d3f797d90) 0 + primary-for QVariantAnimation (0x7f0d3f797d20) + QObject (0x7f0d3f797e00) 0 + primary-for QAbstractAnimation (0x7f0d3f797d90) + +Vtable for QSequentialAnimationGroup +QSequentialAnimationGroup::_ZTV25QSequentialAnimationGroup: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QSequentialAnimationGroup) +16 QSequentialAnimationGroup::metaObject +24 QSequentialAnimationGroup::qt_metacast +32 QSequentialAnimationGroup::qt_metacall +40 QSequentialAnimationGroup::~QSequentialAnimationGroup +48 QSequentialAnimationGroup::~QSequentialAnimationGroup +56 QSequentialAnimationGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QSequentialAnimationGroup::duration +120 QSequentialAnimationGroup::updateCurrentTime +128 QSequentialAnimationGroup::updateState +136 QSequentialAnimationGroup::updateDirection + +Class QSequentialAnimationGroup + size=16 align=8 + base size=16 base align=8 +QSequentialAnimationGroup (0x7f0d3f5afcb0) 0 + vptr=((& QSequentialAnimationGroup::_ZTV25QSequentialAnimationGroup) + 16u) + QAnimationGroup (0x7f0d3f5afd20) 0 + primary-for QSequentialAnimationGroup (0x7f0d3f5afcb0) + QAbstractAnimation (0x7f0d3f5afd90) 0 + primary-for QAnimationGroup (0x7f0d3f5afd20) + QObject (0x7f0d3f5afe00) 0 + primary-for QAbstractAnimation (0x7f0d3f5afd90) + +Class QDomImplementation + size=8 align=8 + base size=8 base align=8 +QDomImplementation (0x7f0d3f5c9d20) 0 + +Class QDomNode + size=8 align=8 + base size=8 base align=8 +QDomNode (0x7f0d3f5d7690) 0 + +Class QDomNodeList + size=8 align=8 + base size=8 base align=8 +QDomNodeList (0x7f0d3f5e68c0) 0 + +Class QDomDocumentType + size=8 align=8 + base size=8 base align=8 +QDomDocumentType (0x7f0d3f5fd930) 0 + QDomNode (0x7f0d3f5fd9a0) 0 + +Class QDomDocument + size=8 align=8 + base size=8 base align=8 +QDomDocument (0x7f0d3f6054d0) 0 + QDomNode (0x7f0d3f605540) 0 + +Class QDomNamedNodeMap + size=8 align=8 + base size=8 base align=8 +QDomNamedNodeMap (0x7f0d3f6113f0) 0 + +Class QDomDocumentFragment + size=8 align=8 + base size=8 base align=8 +QDomDocumentFragment (0x7f0d3f625230) 0 + QDomNode (0x7f0d3f6252a0) 0 + +Class QDomCharacterData + size=8 align=8 + base size=8 base align=8 +QDomCharacterData (0x7f0d3f625d90) 0 + QDomNode (0x7f0d3f625e00) 0 + +Class QDomAttr + size=8 align=8 + base size=8 base align=8 +QDomAttr (0x7f0d3f62b7e0) 0 + QDomNode (0x7f0d3f62b850) 0 + +Class QDomElement + size=8 align=8 + base size=8 base align=8 +QDomElement (0x7f0d3f634380) 0 + QDomNode (0x7f0d3f6343f0) 0 + +Class QDomText + size=8 align=8 + base size=8 base align=8 +QDomText (0x7f0d3f648620) 0 + QDomCharacterData (0x7f0d3f648690) 0 + QDomNode (0x7f0d3f648700) 0 + +Class QDomComment + size=8 align=8 + base size=8 base align=8 +QDomComment (0x7f0d3f64e380) 0 + QDomCharacterData (0x7f0d3f64e3f0) 0 + QDomNode (0x7f0d3f64e460) 0 + +Class QDomCDATASection + size=8 align=8 + base size=8 base align=8 +QDomCDATASection (0x7f0d3f64ef50) 0 + QDomText (0x7f0d3f656000) 0 + QDomCharacterData (0x7f0d3f656070) 0 + QDomNode (0x7f0d3f6560e0) 0 + +Class QDomNotation + size=8 align=8 + base size=8 base align=8 +QDomNotation (0x7f0d3f656bd0) 0 + QDomNode (0x7f0d3f656c40) 0 + +Class QDomEntity + size=8 align=8 + base size=8 base align=8 +QDomEntity (0x7f0d3f65b770) 0 + QDomNode (0x7f0d3f65b7e0) 0 + +Class QDomEntityReference + size=8 align=8 + base size=8 base align=8 +QDomEntityReference (0x7f0d3f662310) 0 + QDomNode (0x7f0d3f662380) 0 + +Class QDomProcessingInstruction + size=8 align=8 + base size=8 base align=8 +QDomProcessingInstruction (0x7f0d3f662e70) 0 + QDomNode (0x7f0d3f662ee0) 0 + +Class QXmlNamespaceSupport + size=8 align=8 + base size=8 base align=8 +QXmlNamespaceSupport (0x7f0d3f668a10) 0 + +Class QXmlAttributes::Attribute + size=32 align=8 + base size=32 base align=8 +QXmlAttributes::Attribute (0x7f0d3f6760e0) 0 + +Vtable for QXmlAttributes +QXmlAttributes::_ZTV14QXmlAttributes: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QXmlAttributes) +16 QXmlAttributes::~QXmlAttributes +24 QXmlAttributes::~QXmlAttributes + +Class QXmlAttributes + size=24 align=8 + base size=24 base align=8 +QXmlAttributes (0x7f0d3f668f50) 0 + vptr=((& QXmlAttributes::_ZTV14QXmlAttributes) + 16u) + +Vtable for QXmlInputSource +QXmlInputSource::_ZTV15QXmlInputSource: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QXmlInputSource) +16 QXmlInputSource::~QXmlInputSource +24 QXmlInputSource::~QXmlInputSource +32 QXmlInputSource::setData +40 QXmlInputSource::setData +48 QXmlInputSource::fetchData +56 QXmlInputSource::data +64 QXmlInputSource::next +72 QXmlInputSource::reset +80 QXmlInputSource::fromRawData + +Class QXmlInputSource + size=16 align=8 + base size=16 base align=8 +QXmlInputSource (0x7f0d3f4a87e0) 0 + vptr=((& QXmlInputSource::_ZTV15QXmlInputSource) + 16u) + +Class QXmlParseException + size=8 align=8 + base size=8 base align=8 +QXmlParseException (0x7f0d3f4a8af0) 0 + +Vtable for QXmlReader +QXmlReader::_ZTV10QXmlReader: 24u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QXmlReader) +16 QXmlReader::~QXmlReader +24 QXmlReader::~QXmlReader +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual + +Class QXmlReader + size=8 align=8 + base size=8 base align=8 +QXmlReader (0x7f0d3f4a8a80) 0 nearly-empty + vptr=((& QXmlReader::_ZTV10QXmlReader) + 16u) + +Vtable for QXmlSimpleReader +QXmlSimpleReader::_ZTV16QXmlSimpleReader: 26u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QXmlSimpleReader) +16 QXmlSimpleReader::~QXmlSimpleReader +24 QXmlSimpleReader::~QXmlSimpleReader +32 QXmlSimpleReader::feature +40 QXmlSimpleReader::setFeature +48 QXmlSimpleReader::hasFeature +56 QXmlSimpleReader::property +64 QXmlSimpleReader::setProperty +72 QXmlSimpleReader::hasProperty +80 QXmlSimpleReader::setEntityResolver +88 QXmlSimpleReader::entityResolver +96 QXmlSimpleReader::setDTDHandler +104 QXmlSimpleReader::DTDHandler +112 QXmlSimpleReader::setContentHandler +120 QXmlSimpleReader::contentHandler +128 QXmlSimpleReader::setErrorHandler +136 QXmlSimpleReader::errorHandler +144 QXmlSimpleReader::setLexicalHandler +152 QXmlSimpleReader::lexicalHandler +160 QXmlSimpleReader::setDeclHandler +168 QXmlSimpleReader::declHandler +176 QXmlSimpleReader::parse +184 QXmlSimpleReader::parse +192 QXmlSimpleReader::parse +200 QXmlSimpleReader::parseContinue + +Class QXmlSimpleReader + size=16 align=8 + base size=16 base align=8 +QXmlSimpleReader (0x7f0d3f4ca930) 0 + vptr=((& QXmlSimpleReader::_ZTV16QXmlSimpleReader) + 16u) + QXmlReader (0x7f0d3f4ca9a0) 0 nearly-empty + primary-for QXmlSimpleReader (0x7f0d3f4ca930) + +Vtable for QXmlLocator +QXmlLocator::_ZTV11QXmlLocator: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QXmlLocator) +16 QXmlLocator::~QXmlLocator +24 QXmlLocator::~QXmlLocator +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QXmlLocator + size=8 align=8 + base size=8 base align=8 +QXmlLocator (0x7f0d3f4e8540) 0 nearly-empty + vptr=((& QXmlLocator::_ZTV11QXmlLocator) + 16u) + +Vtable for QXmlContentHandler +QXmlContentHandler::_ZTV18QXmlContentHandler: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QXmlContentHandler) +16 QXmlContentHandler::~QXmlContentHandler +24 QXmlContentHandler::~QXmlContentHandler +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QXmlContentHandler + size=8 align=8 + base size=8 base align=8 +QXmlContentHandler (0x7f0d3f4e8770) 0 nearly-empty + vptr=((& QXmlContentHandler::_ZTV18QXmlContentHandler) + 16u) + +Vtable for QXmlErrorHandler +QXmlErrorHandler::_ZTV16QXmlErrorHandler: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QXmlErrorHandler) +16 QXmlErrorHandler::~QXmlErrorHandler +24 QXmlErrorHandler::~QXmlErrorHandler +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual + +Class QXmlErrorHandler + size=8 align=8 + base size=8 base align=8 +QXmlErrorHandler (0x7f0d3f4f80e0) 0 nearly-empty + vptr=((& QXmlErrorHandler::_ZTV16QXmlErrorHandler) + 16u) + +Vtable for QXmlDTDHandler +QXmlDTDHandler::_ZTV14QXmlDTDHandler: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QXmlDTDHandler) +16 QXmlDTDHandler::~QXmlDTDHandler +24 QXmlDTDHandler::~QXmlDTDHandler +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual + +Class QXmlDTDHandler + size=8 align=8 + base size=8 base align=8 +QXmlDTDHandler (0x7f0d3f4f8af0) 0 nearly-empty + vptr=((& QXmlDTDHandler::_ZTV14QXmlDTDHandler) + 16u) + +Vtable for QXmlEntityResolver +QXmlEntityResolver::_ZTV18QXmlEntityResolver: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QXmlEntityResolver) +16 QXmlEntityResolver::~QXmlEntityResolver +24 QXmlEntityResolver::~QXmlEntityResolver +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QXmlEntityResolver + size=8 align=8 + base size=8 base align=8 +QXmlEntityResolver (0x7f0d3f507460) 0 nearly-empty + vptr=((& QXmlEntityResolver::_ZTV18QXmlEntityResolver) + 16u) + +Vtable for QXmlLexicalHandler +QXmlLexicalHandler::_ZTV18QXmlLexicalHandler: 12u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QXmlLexicalHandler) +16 QXmlLexicalHandler::~QXmlLexicalHandler +24 QXmlLexicalHandler::~QXmlLexicalHandler +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual + +Class QXmlLexicalHandler + size=8 align=8 + base size=8 base align=8 +QXmlLexicalHandler (0x7f0d3f507ee0) 0 nearly-empty + vptr=((& QXmlLexicalHandler::_ZTV18QXmlLexicalHandler) + 16u) + +Vtable for QXmlDeclHandler +QXmlDeclHandler::_ZTV15QXmlDeclHandler: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QXmlDeclHandler) +16 QXmlDeclHandler::~QXmlDeclHandler +24 QXmlDeclHandler::~QXmlDeclHandler +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual + +Class QXmlDeclHandler + size=8 align=8 + base size=8 base align=8 +QXmlDeclHandler (0x7f0d3f518850) 0 nearly-empty + vptr=((& QXmlDeclHandler::_ZTV15QXmlDeclHandler) + 16u) + +Vtable for QXmlDefaultHandler +QXmlDefaultHandler::_ZTV18QXmlDefaultHandler: 73u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QXmlDefaultHandler) +16 QXmlDefaultHandler::~QXmlDefaultHandler +24 QXmlDefaultHandler::~QXmlDefaultHandler +32 QXmlDefaultHandler::setDocumentLocator +40 QXmlDefaultHandler::startDocument +48 QXmlDefaultHandler::endDocument +56 QXmlDefaultHandler::startPrefixMapping +64 QXmlDefaultHandler::endPrefixMapping +72 QXmlDefaultHandler::startElement +80 QXmlDefaultHandler::endElement +88 QXmlDefaultHandler::characters +96 QXmlDefaultHandler::ignorableWhitespace +104 QXmlDefaultHandler::processingInstruction +112 QXmlDefaultHandler::skippedEntity +120 QXmlDefaultHandler::errorString +128 QXmlDefaultHandler::warning +136 QXmlDefaultHandler::error +144 QXmlDefaultHandler::fatalError +152 QXmlDefaultHandler::notationDecl +160 QXmlDefaultHandler::unparsedEntityDecl +168 QXmlDefaultHandler::resolveEntity +176 QXmlDefaultHandler::startDTD +184 QXmlDefaultHandler::endDTD +192 QXmlDefaultHandler::startEntity +200 QXmlDefaultHandler::endEntity +208 QXmlDefaultHandler::startCDATA +216 QXmlDefaultHandler::endCDATA +224 QXmlDefaultHandler::comment +232 QXmlDefaultHandler::attributeDecl +240 QXmlDefaultHandler::internalEntityDecl +248 QXmlDefaultHandler::externalEntityDecl +256 (int (*)(...))-0x00000000000000008 +264 (int (*)(...))(& _ZTI18QXmlDefaultHandler) +272 QXmlDefaultHandler::_ZThn8_N18QXmlDefaultHandlerD1Ev +280 QXmlDefaultHandler::_ZThn8_N18QXmlDefaultHandlerD0Ev +288 QXmlDefaultHandler::_ZThn8_N18QXmlDefaultHandler7warningERK18QXmlParseException +296 QXmlDefaultHandler::_ZThn8_N18QXmlDefaultHandler5errorERK18QXmlParseException +304 QXmlDefaultHandler::_ZThn8_N18QXmlDefaultHandler10fatalErrorERK18QXmlParseException +312 QXmlDefaultHandler::_ZThn8_NK18QXmlDefaultHandler11errorStringEv +320 (int (*)(...))-0x00000000000000010 +328 (int (*)(...))(& _ZTI18QXmlDefaultHandler) +336 QXmlDefaultHandler::_ZThn16_N18QXmlDefaultHandlerD1Ev +344 QXmlDefaultHandler::_ZThn16_N18QXmlDefaultHandlerD0Ev +352 QXmlDefaultHandler::_ZThn16_N18QXmlDefaultHandler12notationDeclERK7QStringS2_S2_ +360 QXmlDefaultHandler::_ZThn16_N18QXmlDefaultHandler18unparsedEntityDeclERK7QStringS2_S2_S2_ +368 QXmlDefaultHandler::_ZThn16_NK18QXmlDefaultHandler11errorStringEv +376 (int (*)(...))-0x00000000000000018 +384 (int (*)(...))(& _ZTI18QXmlDefaultHandler) +392 QXmlDefaultHandler::_ZThn24_N18QXmlDefaultHandlerD1Ev +400 QXmlDefaultHandler::_ZThn24_N18QXmlDefaultHandlerD0Ev +408 QXmlDefaultHandler::_ZThn24_N18QXmlDefaultHandler13resolveEntityERK7QStringS2_RP15QXmlInputSource +416 QXmlDefaultHandler::_ZThn24_NK18QXmlDefaultHandler11errorStringEv +424 (int (*)(...))-0x00000000000000020 +432 (int (*)(...))(& _ZTI18QXmlDefaultHandler) +440 QXmlDefaultHandler::_ZThn32_N18QXmlDefaultHandlerD1Ev +448 QXmlDefaultHandler::_ZThn32_N18QXmlDefaultHandlerD0Ev +456 QXmlDefaultHandler::_ZThn32_N18QXmlDefaultHandler8startDTDERK7QStringS2_S2_ +464 QXmlDefaultHandler::_ZThn32_N18QXmlDefaultHandler6endDTDEv +472 QXmlDefaultHandler::_ZThn32_N18QXmlDefaultHandler11startEntityERK7QString +480 QXmlDefaultHandler::_ZThn32_N18QXmlDefaultHandler9endEntityERK7QString +488 QXmlDefaultHandler::_ZThn32_N18QXmlDefaultHandler10startCDATAEv +496 QXmlDefaultHandler::_ZThn32_N18QXmlDefaultHandler8endCDATAEv +504 QXmlDefaultHandler::_ZThn32_N18QXmlDefaultHandler7commentERK7QString +512 QXmlDefaultHandler::_ZThn32_NK18QXmlDefaultHandler11errorStringEv +520 (int (*)(...))-0x00000000000000028 +528 (int (*)(...))(& _ZTI18QXmlDefaultHandler) +536 QXmlDefaultHandler::_ZThn40_N18QXmlDefaultHandlerD1Ev +544 QXmlDefaultHandler::_ZThn40_N18QXmlDefaultHandlerD0Ev +552 QXmlDefaultHandler::_ZThn40_N18QXmlDefaultHandler13attributeDeclERK7QStringS2_S2_S2_S2_ +560 QXmlDefaultHandler::_ZThn40_N18QXmlDefaultHandler18internalEntityDeclERK7QStringS2_ +568 QXmlDefaultHandler::_ZThn40_N18QXmlDefaultHandler18externalEntityDeclERK7QStringS2_S2_ +576 QXmlDefaultHandler::_ZThn40_NK18QXmlDefaultHandler11errorStringEv + +Class QXmlDefaultHandler + size=56 align=8 + base size=56 base align=8 +QXmlDefaultHandler (0x7f0d3f51f6e0) 0 + vptr=((& QXmlDefaultHandler::_ZTV18QXmlDefaultHandler) + 16u) + QXmlContentHandler (0x7f0d3f525230) 0 nearly-empty + primary-for QXmlDefaultHandler (0x7f0d3f51f6e0) + QXmlErrorHandler (0x7f0d3f5252a0) 8 nearly-empty + vptr=((& QXmlDefaultHandler::_ZTV18QXmlDefaultHandler) + 272u) + QXmlDTDHandler (0x7f0d3f525310) 16 nearly-empty + vptr=((& QXmlDefaultHandler::_ZTV18QXmlDefaultHandler) + 336u) + QXmlEntityResolver (0x7f0d3f525380) 24 nearly-empty + vptr=((& QXmlDefaultHandler::_ZTV18QXmlDefaultHandler) + 392u) + QXmlLexicalHandler (0x7f0d3f5253f0) 32 nearly-empty + vptr=((& QXmlDefaultHandler::_ZTV18QXmlDefaultHandler) + 440u) + QXmlDeclHandler (0x7f0d3f525460) 40 nearly-empty + vptr=((& QXmlDefaultHandler::_ZTV18QXmlDefaultHandler) + 536u) + +Vtable for QPaintDevice +QPaintDevice::_ZTV12QPaintDevice: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QPaintDevice) +16 QPaintDevice::~QPaintDevice +24 QPaintDevice::~QPaintDevice +32 QPaintDevice::devType +40 __cxa_pure_virtual +48 QPaintDevice::metric + +Class QPaintDevice + size=16 align=8 + base size=10 base align=8 +QPaintDevice (0x7f0d3f56ed90) 0 + vptr=((& QPaintDevice::_ZTV12QPaintDevice) + 16u) + +Class QColor + size=16 align=4 + base size=14 base align=4 +QColor (0x7f0d3f5a5700) 0 + +Class QPolygon + size=8 align=8 + base size=8 base align=8 +QPolygon (0x7f0d3f3fcee0) 0 + QVector (0x7f0d3f3fcf50) 0 + +Class QPolygonF + size=8 align=8 + base size=8 base align=8 +QPolygonF (0x7f0d3f44a460) 0 + QVector (0x7f0d3f44a4d0) 0 + +Class QRegion::QRegionData + size=32 align=8 + base size=32 base align=8 +QRegion::QRegionData (0x7f0d3f4a4ee0) 0 + +Class QRegion + size=8 align=8 + base size=8 base align=8 +QRegion (0x7f0d3f48a5b0) 0 + +Class QMatrix + size=48 align=8 + base size=48 base align=8 +QMatrix (0x7f0d3f2bf700) 0 + +Class QPainterPath::Element + size=24 align=8 + base size=24 base align=8 +QPainterPath::Element (0x7f0d3f302850) 0 + +Class QPainterPath + size=8 align=8 + base size=8 base align=8 +QPainterPath (0x7f0d3f3027e0) 0 + +Class QPainterPathPrivate + size=16 align=8 + base size=16 base align=8 +QPainterPathPrivate (0x7f0d3f355f50) 0 + +Class QPainterPathStroker + size=8 align=8 + base size=8 base align=8 +QPainterPathStroker (0x7f0d3f35ea80) 0 + +Class QTransform + size=88 align=8 + base size=88 base align=8 +QTransform (0x7f0d3f1caa80) 0 + +Class QImageTextKeyLang + size=16 align=8 + base size=16 base align=8 +QImageTextKeyLang (0x7f0d3f2770e0) 0 + +Vtable for QImage +QImage::_ZTV6QImage: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QImage) +16 QImage::~QImage +24 QImage::~QImage +32 QImage::devType +40 QImage::paintEngine +48 QImage::metric + +Class QImage + size=24 align=8 + base size=24 base align=8 +QImage (0x7f0d3f2a1930) 0 + vptr=((& QImage::_ZTV6QImage) + 16u) + QPaintDevice (0x7f0d3f2a19a0) 0 + primary-for QImage (0x7f0d3f2a1930) + +Vtable for QPixmap +QPixmap::_ZTV7QPixmap: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QPixmap) +16 QPixmap::~QPixmap +24 QPixmap::~QPixmap +32 QPixmap::devType +40 QPixmap::paintEngine +48 QPixmap::metric + +Class QPixmap + size=24 align=8 + base size=24 base align=8 +QPixmap (0x7f0d3f1480e0) 0 + vptr=((& QPixmap::_ZTV7QPixmap) + 16u) + QPaintDevice (0x7f0d3f148150) 0 + primary-for QPixmap (0x7f0d3f1480e0) + +Class QBrush + size=8 align=8 + base size=8 base align=8 +QBrush (0x7f0d3f1a63f0) 0 + +Class QBrushData + size=112 align=8 + base size=112 base align=8 +QBrushData (0x7f0d3efc0e00) 0 + +Class QGradient + size=64 align=8 + base size=64 base align=8 +QGradient (0x7f0d3efe6000) 0 + +Class QLinearGradient + size=64 align=8 + base size=64 base align=8 +QLinearGradient (0x7f0d3f014a80) 0 + QGradient (0x7f0d3f014af0) 0 + +Class QRadialGradient + size=64 align=8 + base size=64 base align=8 +QRadialGradient (0x7f0d3f014f50) 0 + QGradient (0x7f0d3f021000) 0 + +Class QConicalGradient + size=64 align=8 + base size=64 base align=8 +QConicalGradient (0x7f0d3f021540) 0 + QGradient (0x7f0d3f0215b0) 0 + +Class QPalette + size=16 align=8 + base size=12 base align=8 +QPalette (0x7f0d3f0218c0) 0 + +Class QColorGroup + size=16 align=8 + base size=12 base align=8 +QColorGroup (0x7f0d3f07e230) 0 + QPalette (0x7f0d3f07e2a0) 0 + +Class QFont + size=16 align=8 + base size=12 base align=8 +QFont (0x7f0d3eeb6540) 0 + +Class QFontMetrics + size=8 align=8 + base size=8 base align=8 +QFontMetrics (0x7f0d3eeff230) 0 + +Class QFontMetricsF + size=8 align=8 + base size=8 base align=8 +QFontMetricsF (0x7f0d3ef13690) 0 + +Class QFontInfo + size=8 align=8 + base size=8 base align=8 +QFontInfo (0x7f0d3ef275b0) 0 + +Class QSizePolicy + size=4 align=4 + base size=4 base align=4 +QSizePolicy (0x7f0d3ef340e0) 0 + +Class QCursor + size=8 align=8 + base size=8 base align=8 +QCursor (0x7f0d3edf80e0) 0 + +Class QKeySequence + size=8 align=8 + base size=8 base align=8 +QKeySequence (0x7f0d3edf88c0) 0 + +Class QWidgetData + size=88 align=8 + base size=88 base align=8 +QWidgetData (0x7f0d3ee41230) 0 + +Vtable for QWidget +QWidget::_ZTV7QWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QWidget) +16 QWidget::metaObject +24 QWidget::qt_metacast +32 QWidget::qt_metacall +40 QWidget::~QWidget +48 QWidget::~QWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI7QWidget) +464 QWidget::_ZThn16_N7QWidgetD1Ev +472 QWidget::_ZThn16_N7QWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWidget + size=40 align=8 + base size=40 base align=8 +QWidget (0x7f0d3ee33d00) 0 + vptr=((& QWidget::_ZTV7QWidget) + 16u) + QObject (0x7f0d3ee412a0) 0 + primary-for QWidget (0x7f0d3ee33d00) + QPaintDevice (0x7f0d3ee41310) 16 + vptr=((& QWidget::_ZTV7QWidget) + 464u) + +Vtable for QDesignerActionEditorInterface +QDesignerActionEditorInterface::_ZTV30QDesignerActionEditorInterface: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI30QDesignerActionEditorInterface) +16 QDesignerActionEditorInterface::metaObject +24 QDesignerActionEditorInterface::qt_metacast +32 QDesignerActionEditorInterface::qt_metacall +40 QDesignerActionEditorInterface::~QDesignerActionEditorInterface +48 QDesignerActionEditorInterface::~QDesignerActionEditorInterface +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDesignerActionEditorInterface::core +456 __cxa_pure_virtual +464 __cxa_pure_virtual +472 __cxa_pure_virtual +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI30QDesignerActionEditorInterface) +496 QDesignerActionEditorInterface::_ZThn16_N30QDesignerActionEditorInterfaceD1Ev +504 QDesignerActionEditorInterface::_ZThn16_N30QDesignerActionEditorInterfaceD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDesignerActionEditorInterface + size=40 align=8 + base size=40 base align=8 +QDesignerActionEditorInterface (0x7f0d3ebbc310) 0 + vptr=((& QDesignerActionEditorInterface::_ZTV30QDesignerActionEditorInterface) + 16u) + QWidget (0x7f0d3ebb5980) 0 + primary-for QDesignerActionEditorInterface (0x7f0d3ebbc310) + QObject (0x7f0d3ebbc380) 0 + primary-for QWidget (0x7f0d3ebb5980) + QPaintDevice (0x7f0d3ebbc3f0) 16 + vptr=((& QDesignerActionEditorInterface::_ZTV30QDesignerActionEditorInterface) + 496u) + +Vtable for QDesignerBrushManagerInterface +QDesignerBrushManagerInterface::_ZTV30QDesignerBrushManagerInterface: 21u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI30QDesignerBrushManagerInterface) +16 QDesignerBrushManagerInterface::metaObject +24 QDesignerBrushManagerInterface::qt_metacast +32 QDesignerBrushManagerInterface::qt_metacall +40 QDesignerBrushManagerInterface::~QDesignerBrushManagerInterface +48 QDesignerBrushManagerInterface::~QDesignerBrushManagerInterface +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual + +Class QDesignerBrushManagerInterface + size=16 align=8 + base size=16 base align=8 +QDesignerBrushManagerInterface (0x7f0d3ebd32a0) 0 + vptr=((& QDesignerBrushManagerInterface::_ZTV30QDesignerBrushManagerInterface) + 16u) + QObject (0x7f0d3ebd3310) 0 + primary-for QDesignerBrushManagerInterface (0x7f0d3ebd32a0) + +Vtable for QDesignerDnDItemInterface +QDesignerDnDItemInterface::_ZTV25QDesignerDnDItemInterface: 10u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QDesignerDnDItemInterface) +16 QDesignerDnDItemInterface::~QDesignerDnDItemInterface +24 QDesignerDnDItemInterface::~QDesignerDnDItemInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual + +Class QDesignerDnDItemInterface + size=8 align=8 + base size=8 base align=8 +QDesignerDnDItemInterface (0x7f0d3ebe7850) 0 nearly-empty + vptr=((& QDesignerDnDItemInterface::_ZTV25QDesignerDnDItemInterface) + 16u) + +Vtable for QDesignerFormEditorInterface +QDesignerFormEditorInterface::_ZTV28QDesignerFormEditorInterface: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI28QDesignerFormEditorInterface) +16 QDesignerFormEditorInterface::metaObject +24 QDesignerFormEditorInterface::qt_metacast +32 QDesignerFormEditorInterface::qt_metacall +40 QDesignerFormEditorInterface::~QDesignerFormEditorInterface +48 QDesignerFormEditorInterface::~QDesignerFormEditorInterface +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QDesignerFormEditorInterface + size=120 align=8 + base size=120 base align=8 +QDesignerFormEditorInterface (0x7f0d3ebf27e0) 0 + vptr=((& QDesignerFormEditorInterface::_ZTV28QDesignerFormEditorInterface) + 16u) + QObject (0x7f0d3ebf2850) 0 + primary-for QDesignerFormEditorInterface (0x7f0d3ebf27e0) + +Vtable for QDesignerFormEditorPluginInterface +QDesignerFormEditorPluginInterface::_ZTV34QDesignerFormEditorPluginInterface: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI34QDesignerFormEditorPluginInterface) +16 QDesignerFormEditorPluginInterface::~QDesignerFormEditorPluginInterface +24 QDesignerFormEditorPluginInterface::~QDesignerFormEditorPluginInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual + +Class QDesignerFormEditorPluginInterface + size=8 align=8 + base size=8 base align=8 +QDesignerFormEditorPluginInterface (0x7f0d3ec54000) 0 nearly-empty + vptr=((& QDesignerFormEditorPluginInterface::_ZTV34QDesignerFormEditorPluginInterface) + 16u) + +Vtable for QDesignerFormWindowInterface +QDesignerFormWindowInterface::_ZTV28QDesignerFormWindowInterface: 114u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI28QDesignerFormWindowInterface) +16 QDesignerFormWindowInterface::metaObject +24 QDesignerFormWindowInterface::qt_metacast +32 QDesignerFormWindowInterface::qt_metacall +40 QDesignerFormWindowInterface::~QDesignerFormWindowInterface +48 QDesignerFormWindowInterface::~QDesignerFormWindowInterface +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 __cxa_pure_virtual +456 __cxa_pure_virtual +464 __cxa_pure_virtual +472 __cxa_pure_virtual +480 __cxa_pure_virtual +488 __cxa_pure_virtual +496 __cxa_pure_virtual +504 __cxa_pure_virtual +512 __cxa_pure_virtual +520 __cxa_pure_virtual +528 __cxa_pure_virtual +536 __cxa_pure_virtual +544 __cxa_pure_virtual +552 __cxa_pure_virtual +560 __cxa_pure_virtual +568 __cxa_pure_virtual +576 __cxa_pure_virtual +584 __cxa_pure_virtual +592 __cxa_pure_virtual +600 __cxa_pure_virtual +608 QDesignerFormWindowInterface::core +616 __cxa_pure_virtual +624 __cxa_pure_virtual +632 __cxa_pure_virtual +640 __cxa_pure_virtual +648 __cxa_pure_virtual +656 __cxa_pure_virtual +664 __cxa_pure_virtual +672 __cxa_pure_virtual +680 __cxa_pure_virtual +688 __cxa_pure_virtual +696 __cxa_pure_virtual +704 __cxa_pure_virtual +712 __cxa_pure_virtual +720 __cxa_pure_virtual +728 __cxa_pure_virtual +736 __cxa_pure_virtual +744 __cxa_pure_virtual +752 __cxa_pure_virtual +760 __cxa_pure_virtual +768 __cxa_pure_virtual +776 __cxa_pure_virtual +784 __cxa_pure_virtual +792 __cxa_pure_virtual +800 __cxa_pure_virtual +808 __cxa_pure_virtual +816 __cxa_pure_virtual +824 __cxa_pure_virtual +832 __cxa_pure_virtual +840 __cxa_pure_virtual +848 __cxa_pure_virtual +856 (int (*)(...))-0x00000000000000010 +864 (int (*)(...))(& _ZTI28QDesignerFormWindowInterface) +872 QDesignerFormWindowInterface::_ZThn16_N28QDesignerFormWindowInterfaceD1Ev +880 QDesignerFormWindowInterface::_ZThn16_N28QDesignerFormWindowInterfaceD0Ev +888 QWidget::_ZThn16_NK7QWidget7devTypeEv +896 QWidget::_ZThn16_NK7QWidget11paintEngineEv +904 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDesignerFormWindowInterface + size=40 align=8 + base size=40 base align=8 +QDesignerFormWindowInterface (0x7f0d3ec77310) 0 + vptr=((& QDesignerFormWindowInterface::_ZTV28QDesignerFormWindowInterface) + 16u) + QWidget (0x7f0d3ec74580) 0 + primary-for QDesignerFormWindowInterface (0x7f0d3ec77310) + QObject (0x7f0d3ec77380) 0 + primary-for QWidget (0x7f0d3ec74580) + QPaintDevice (0x7f0d3ec773f0) 16 + vptr=((& QDesignerFormWindowInterface::_ZTV28QDesignerFormWindowInterface) + 872u) + +Vtable for QDesignerFormWindowCursorInterface +QDesignerFormWindowCursorInterface::_ZTV34QDesignerFormWindowCursorInterface: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI34QDesignerFormWindowCursorInterface) +16 QDesignerFormWindowCursorInterface::~QDesignerFormWindowCursorInterface +24 QDesignerFormWindowCursorInterface::~QDesignerFormWindowCursorInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual + +Class QDesignerFormWindowCursorInterface + size=8 align=8 + base size=8 base align=8 +QDesignerFormWindowCursorInterface (0x7f0d3eaa0770) 0 nearly-empty + vptr=((& QDesignerFormWindowCursorInterface::_ZTV34QDesignerFormWindowCursorInterface) + 16u) + +Vtable for QDesignerFormWindowManagerInterface +QDesignerFormWindowManagerInterface::_ZTV35QDesignerFormWindowManagerInterface: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI35QDesignerFormWindowManagerInterface) +16 QDesignerFormWindowManagerInterface::metaObject +24 QDesignerFormWindowManagerInterface::qt_metacast +32 QDesignerFormWindowManagerInterface::qt_metacall +40 QDesignerFormWindowManagerInterface::~QDesignerFormWindowManagerInterface +48 QDesignerFormWindowManagerInterface::~QDesignerFormWindowManagerInterface +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QDesignerFormWindowManagerInterface::actionCut +120 QDesignerFormWindowManagerInterface::actionCopy +128 QDesignerFormWindowManagerInterface::actionPaste +136 QDesignerFormWindowManagerInterface::actionDelete +144 QDesignerFormWindowManagerInterface::actionSelectAll +152 QDesignerFormWindowManagerInterface::actionLower +160 QDesignerFormWindowManagerInterface::actionRaise +168 QDesignerFormWindowManagerInterface::actionUndo +176 QDesignerFormWindowManagerInterface::actionRedo +184 QDesignerFormWindowManagerInterface::actionHorizontalLayout +192 QDesignerFormWindowManagerInterface::actionVerticalLayout +200 QDesignerFormWindowManagerInterface::actionSplitHorizontal +208 QDesignerFormWindowManagerInterface::actionSplitVertical +216 QDesignerFormWindowManagerInterface::actionGridLayout +224 QDesignerFormWindowManagerInterface::actionBreakLayout +232 QDesignerFormWindowManagerInterface::actionAdjustSize +240 QDesignerFormWindowManagerInterface::activeFormWindow +248 QDesignerFormWindowManagerInterface::formWindowCount +256 QDesignerFormWindowManagerInterface::formWindow +264 QDesignerFormWindowManagerInterface::createFormWindow +272 QDesignerFormWindowManagerInterface::core +280 __cxa_pure_virtual +288 QDesignerFormWindowManagerInterface::addFormWindow +296 QDesignerFormWindowManagerInterface::removeFormWindow +304 QDesignerFormWindowManagerInterface::setActiveFormWindow + +Class QDesignerFormWindowManagerInterface + size=16 align=8 + base size=16 base align=8 +QDesignerFormWindowManagerInterface (0x7f0d3eaaf460) 0 + vptr=((& QDesignerFormWindowManagerInterface::_ZTV35QDesignerFormWindowManagerInterface) + 16u) + QObject (0x7f0d3eaaf4d0) 0 + primary-for QDesignerFormWindowManagerInterface (0x7f0d3eaaf460) + +Vtable for QDesignerFormWindowToolInterface +QDesignerFormWindowToolInterface::_ZTV32QDesignerFormWindowToolInterface: 23u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI32QDesignerFormWindowToolInterface) +16 QDesignerFormWindowToolInterface::metaObject +24 QDesignerFormWindowToolInterface::qt_metacast +32 QDesignerFormWindowToolInterface::qt_metacall +40 QDesignerFormWindowToolInterface::~QDesignerFormWindowToolInterface +48 QDesignerFormWindowToolInterface::~QDesignerFormWindowToolInterface +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 QDesignerFormWindowToolInterface::saveToDom +168 QDesignerFormWindowToolInterface::loadFromDom +176 __cxa_pure_virtual + +Class QDesignerFormWindowToolInterface + size=16 align=8 + base size=16 base align=8 +QDesignerFormWindowToolInterface (0x7f0d3eacc7e0) 0 + vptr=((& QDesignerFormWindowToolInterface::_ZTV32QDesignerFormWindowToolInterface) + 16u) + QObject (0x7f0d3eacc850) 0 + primary-for QDesignerFormWindowToolInterface (0x7f0d3eacc7e0) + +Vtable for QDesignerIconCacheInterface +QDesignerIconCacheInterface::_ZTV27QDesignerIconCacheInterface: 23u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QDesignerIconCacheInterface) +16 QDesignerIconCacheInterface::metaObject +24 QDesignerIconCacheInterface::qt_metacast +32 QDesignerIconCacheInterface::qt_metacall +40 QDesignerIconCacheInterface::~QDesignerIconCacheInterface +48 QDesignerIconCacheInterface::~QDesignerIconCacheInterface +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual + +Class QDesignerIconCacheInterface + size=16 align=8 + base size=16 base align=8 +QDesignerIconCacheInterface (0x7f0d3eadf8c0) 0 + vptr=((& QDesignerIconCacheInterface::_ZTV27QDesignerIconCacheInterface) + 16u) + QObject (0x7f0d3eadf930) 0 + primary-for QDesignerIconCacheInterface (0x7f0d3eadf8c0) + +Vtable for QDesignerIntegrationInterface +QDesignerIntegrationInterface::_ZTV29QDesignerIntegrationInterface: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI29QDesignerIntegrationInterface) +16 QDesignerIntegrationInterface::metaObject +24 QDesignerIntegrationInterface::qt_metacast +32 QDesignerIntegrationInterface::qt_metacall +40 QDesignerIntegrationInterface::~QDesignerIntegrationInterface +48 QDesignerIntegrationInterface::~QDesignerIntegrationInterface +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual + +Class QDesignerIntegrationInterface + size=24 align=8 + base size=24 base align=8 +QDesignerIntegrationInterface (0x7f0d3eafb000) 0 + vptr=((& QDesignerIntegrationInterface::_ZTV29QDesignerIntegrationInterface) + 16u) + QObject (0x7f0d3eafb070) 0 + primary-for QDesignerIntegrationInterface (0x7f0d3eafb000) + +Vtable for QAbstractExtensionFactory +QAbstractExtensionFactory::_ZTV25QAbstractExtensionFactory: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QAbstractExtensionFactory) +16 QAbstractExtensionFactory::~QAbstractExtensionFactory +24 QAbstractExtensionFactory::~QAbstractExtensionFactory +32 __cxa_pure_virtual + +Class QAbstractExtensionFactory + size=8 align=8 + base size=8 base align=8 +QAbstractExtensionFactory (0x7f0d3eb0d070) 0 nearly-empty + vptr=((& QAbstractExtensionFactory::_ZTV25QAbstractExtensionFactory) + 16u) + +Vtable for QAbstractExtensionManager +QAbstractExtensionManager::_ZTV25QAbstractExtensionManager: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QAbstractExtensionManager) +16 QAbstractExtensionManager::~QAbstractExtensionManager +24 QAbstractExtensionManager::~QAbstractExtensionManager +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual + +Class QAbstractExtensionManager + size=8 align=8 + base size=8 base align=8 +QAbstractExtensionManager (0x7f0d3eb19310) 0 nearly-empty + vptr=((& QAbstractExtensionManager::_ZTV25QAbstractExtensionManager) + 16u) + +Vtable for QDesignerLanguageExtension +QDesignerLanguageExtension::_ZTV26QDesignerLanguageExtension: 13u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QDesignerLanguageExtension) +16 QDesignerLanguageExtension::~QDesignerLanguageExtension +24 QDesignerLanguageExtension::~QDesignerLanguageExtension +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual + +Class QDesignerLanguageExtension + size=8 align=8 + base size=8 base align=8 +QDesignerLanguageExtension (0x7f0d3eb29620) 0 nearly-empty + vptr=((& QDesignerLanguageExtension::_ZTV26QDesignerLanguageExtension) + 16u) + +Vtable for QDesignerMetaDataBaseItemInterface +QDesignerMetaDataBaseItemInterface::_ZTV34QDesignerMetaDataBaseItemInterface: 10u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI34QDesignerMetaDataBaseItemInterface) +16 QDesignerMetaDataBaseItemInterface::~QDesignerMetaDataBaseItemInterface +24 QDesignerMetaDataBaseItemInterface::~QDesignerMetaDataBaseItemInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual + +Class QDesignerMetaDataBaseItemInterface + size=8 align=8 + base size=8 base align=8 +QDesignerMetaDataBaseItemInterface (0x7f0d3eb39e70) 0 nearly-empty + vptr=((& QDesignerMetaDataBaseItemInterface::_ZTV34QDesignerMetaDataBaseItemInterface) + 16u) + +Vtable for QDesignerMetaDataBaseInterface +QDesignerMetaDataBaseInterface::_ZTV30QDesignerMetaDataBaseInterface: 19u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI30QDesignerMetaDataBaseInterface) +16 QDesignerMetaDataBaseInterface::metaObject +24 QDesignerMetaDataBaseInterface::qt_metacast +32 QDesignerMetaDataBaseInterface::qt_metacall +40 QDesignerMetaDataBaseInterface::~QDesignerMetaDataBaseInterface +48 QDesignerMetaDataBaseInterface::~QDesignerMetaDataBaseInterface +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual + +Class QDesignerMetaDataBaseInterface + size=16 align=8 + base size=16 base align=8 +QDesignerMetaDataBaseInterface (0x7f0d3eb4b850) 0 + vptr=((& QDesignerMetaDataBaseInterface::_ZTV30QDesignerMetaDataBaseInterface) + 16u) + QObject (0x7f0d3eb4b8c0) 0 + primary-for QDesignerMetaDataBaseInterface (0x7f0d3eb4b850) + +Vtable for QDesignerObjectInspectorInterface +QDesignerObjectInspectorInterface::_ZTV33QDesignerObjectInspectorInterface: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI33QDesignerObjectInspectorInterface) +16 QDesignerObjectInspectorInterface::metaObject +24 QDesignerObjectInspectorInterface::qt_metacast +32 QDesignerObjectInspectorInterface::qt_metacall +40 QDesignerObjectInspectorInterface::~QDesignerObjectInspectorInterface +48 QDesignerObjectInspectorInterface::~QDesignerObjectInspectorInterface +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDesignerObjectInspectorInterface::core +456 __cxa_pure_virtual +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI33QDesignerObjectInspectorInterface) +480 QDesignerObjectInspectorInterface::_ZThn16_N33QDesignerObjectInspectorInterfaceD1Ev +488 QDesignerObjectInspectorInterface::_ZThn16_N33QDesignerObjectInspectorInterfaceD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDesignerObjectInspectorInterface + size=40 align=8 + base size=40 base align=8 +QDesignerObjectInspectorInterface (0x7f0d3eb56d90) 0 + vptr=((& QDesignerObjectInspectorInterface::_ZTV33QDesignerObjectInspectorInterface) + 16u) + QWidget (0x7f0d3eb4dd00) 0 + primary-for QDesignerObjectInspectorInterface (0x7f0d3eb56d90) + QObject (0x7f0d3eb56e00) 0 + primary-for QWidget (0x7f0d3eb4dd00) + QPaintDevice (0x7f0d3eb56e70) 16 + vptr=((& QDesignerObjectInspectorInterface::_ZTV33QDesignerObjectInspectorInterface) + 480u) + +Class QDesignerPromotionInterface::PromotedClass + size=16 align=8 + base size=16 base align=8 +QDesignerPromotionInterface::PromotedClass (0x7f0d3eb64e00) 0 + +Vtable for QDesignerPromotionInterface +QDesignerPromotionInterface::_ZTV27QDesignerPromotionInterface: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QDesignerPromotionInterface) +16 QDesignerPromotionInterface::~QDesignerPromotionInterface +24 QDesignerPromotionInterface::~QDesignerPromotionInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual + +Class QDesignerPromotionInterface + size=8 align=8 + base size=8 base align=8 +QDesignerPromotionInterface (0x7f0d3eb64d20) 0 nearly-empty + vptr=((& QDesignerPromotionInterface::_ZTV27QDesignerPromotionInterface) + 16u) + +Vtable for QDesignerPropertyEditorInterface +QDesignerPropertyEditorInterface::_ZTV32QDesignerPropertyEditorInterface: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI32QDesignerPropertyEditorInterface) +16 QDesignerPropertyEditorInterface::metaObject +24 QDesignerPropertyEditorInterface::qt_metacast +32 QDesignerPropertyEditorInterface::qt_metacall +40 QDesignerPropertyEditorInterface::~QDesignerPropertyEditorInterface +48 QDesignerPropertyEditorInterface::~QDesignerPropertyEditorInterface +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDesignerPropertyEditorInterface::core +456 __cxa_pure_virtual +464 __cxa_pure_virtual +472 __cxa_pure_virtual +480 __cxa_pure_virtual +488 __cxa_pure_virtual +496 __cxa_pure_virtual +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI32QDesignerPropertyEditorInterface) +520 QDesignerPropertyEditorInterface::_ZThn16_N32QDesignerPropertyEditorInterfaceD1Ev +528 QDesignerPropertyEditorInterface::_ZThn16_N32QDesignerPropertyEditorInterfaceD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDesignerPropertyEditorInterface + size=40 align=8 + base size=40 base align=8 +QDesignerPropertyEditorInterface (0x7f0d3eb772a0) 0 + vptr=((& QDesignerPropertyEditorInterface::_ZTV32QDesignerPropertyEditorInterface) + 16u) + QWidget (0x7f0d3eb6f500) 0 + primary-for QDesignerPropertyEditorInterface (0x7f0d3eb772a0) + QObject (0x7f0d3eb77310) 0 + primary-for QWidget (0x7f0d3eb6f500) + QPaintDevice (0x7f0d3eb77380) 16 + vptr=((& QDesignerPropertyEditorInterface::_ZTV32QDesignerPropertyEditorInterface) + 520u) + +Vtable for QDesignerResourceBrowserInterface +QDesignerResourceBrowserInterface::_ZTV33QDesignerResourceBrowserInterface: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI33QDesignerResourceBrowserInterface) +16 QDesignerResourceBrowserInterface::metaObject +24 QDesignerResourceBrowserInterface::qt_metacast +32 QDesignerResourceBrowserInterface::qt_metacall +40 QDesignerResourceBrowserInterface::~QDesignerResourceBrowserInterface +48 QDesignerResourceBrowserInterface::~QDesignerResourceBrowserInterface +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 __cxa_pure_virtual +456 __cxa_pure_virtual +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI33QDesignerResourceBrowserInterface) +480 QDesignerResourceBrowserInterface::_ZThn16_N33QDesignerResourceBrowserInterfaceD1Ev +488 QDesignerResourceBrowserInterface::_ZThn16_N33QDesignerResourceBrowserInterfaceD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDesignerResourceBrowserInterface + size=40 align=8 + base size=40 base align=8 +QDesignerResourceBrowserInterface (0x7f0d3eb91380) 0 + vptr=((& QDesignerResourceBrowserInterface::_ZTV33QDesignerResourceBrowserInterface) + 16u) + QWidget (0x7f0d3eb6fc00) 0 + primary-for QDesignerResourceBrowserInterface (0x7f0d3eb91380) + QObject (0x7f0d3eb913f0) 0 + primary-for QWidget (0x7f0d3eb6fc00) + QPaintDevice (0x7f0d3eb91460) 16 + vptr=((& QDesignerResourceBrowserInterface::_ZTV33QDesignerResourceBrowserInterface) + 480u) + +Class QIcon + size=8 align=8 + base size=8 base align=8 +QIcon (0x7f0d3e9a6310) 0 + +Class QDesignerWidgetBoxInterface::Widget + size=32 align=8 + base size=28 base align=8 +QDesignerWidgetBoxInterface::Widget (0x7f0d3e9d90e0) 0 + +Class QDesignerWidgetBoxInterface::Category + size=24 align=8 + base size=24 base align=8 +QDesignerWidgetBoxInterface::Category (0x7f0d3e9d97e0) 0 + +Vtable for QDesignerWidgetBoxInterface +QDesignerWidgetBoxInterface::_ZTV27QDesignerWidgetBoxInterface: 76u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QDesignerWidgetBoxInterface) +16 QDesignerWidgetBoxInterface::metaObject +24 QDesignerWidgetBoxInterface::qt_metacast +32 QDesignerWidgetBoxInterface::qt_metacall +40 QDesignerWidgetBoxInterface::~QDesignerWidgetBoxInterface +48 QDesignerWidgetBoxInterface::~QDesignerWidgetBoxInterface +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 __cxa_pure_virtual +456 __cxa_pure_virtual +464 __cxa_pure_virtual +472 __cxa_pure_virtual +480 __cxa_pure_virtual +488 __cxa_pure_virtual +496 __cxa_pure_virtual +504 __cxa_pure_virtual +512 __cxa_pure_virtual +520 __cxa_pure_virtual +528 __cxa_pure_virtual +536 __cxa_pure_virtual +544 __cxa_pure_virtual +552 (int (*)(...))-0x00000000000000010 +560 (int (*)(...))(& _ZTI27QDesignerWidgetBoxInterface) +568 QDesignerWidgetBoxInterface::_ZThn16_N27QDesignerWidgetBoxInterfaceD1Ev +576 QDesignerWidgetBoxInterface::_ZThn16_N27QDesignerWidgetBoxInterfaceD0Ev +584 QWidget::_ZThn16_NK7QWidget7devTypeEv +592 QWidget::_ZThn16_NK7QWidget11paintEngineEv +600 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDesignerWidgetBoxInterface + size=40 align=8 + base size=40 base align=8 +QDesignerWidgetBoxInterface (0x7f0d3e9caee0) 0 + vptr=((& QDesignerWidgetBoxInterface::_ZTV27QDesignerWidgetBoxInterface) + 16u) + QWidget (0x7f0d3e9ccc00) 0 + primary-for QDesignerWidgetBoxInterface (0x7f0d3e9caee0) + QObject (0x7f0d3e9caf50) 0 + primary-for QWidget (0x7f0d3e9ccc00) + QPaintDevice (0x7f0d3e9d9000) 16 + vptr=((& QDesignerWidgetBoxInterface::_ZTV27QDesignerWidgetBoxInterface) + 568u) + +Vtable for QDesignerWidgetDataBaseItemInterface +QDesignerWidgetDataBaseItemInterface::_ZTV36QDesignerWidgetDataBaseItemInterface: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI36QDesignerWidgetDataBaseItemInterface) +16 QDesignerWidgetDataBaseItemInterface::~QDesignerWidgetDataBaseItemInterface +24 QDesignerWidgetDataBaseItemInterface::~QDesignerWidgetDataBaseItemInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 __cxa_pure_virtual +208 __cxa_pure_virtual +216 __cxa_pure_virtual +224 __cxa_pure_virtual +232 __cxa_pure_virtual + +Class QDesignerWidgetDataBaseItemInterface + size=8 align=8 + base size=8 base align=8 +QDesignerWidgetDataBaseItemInterface (0x7f0d3ea61690) 0 nearly-empty + vptr=((& QDesignerWidgetDataBaseItemInterface::_ZTV36QDesignerWidgetDataBaseItemInterface) + 16u) + +Vtable for QDesignerWidgetDataBaseInterface +QDesignerWidgetDataBaseInterface::_ZTV32QDesignerWidgetDataBaseInterface: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI32QDesignerWidgetDataBaseInterface) +16 QDesignerWidgetDataBaseInterface::metaObject +24 QDesignerWidgetDataBaseInterface::qt_metacast +32 QDesignerWidgetDataBaseInterface::qt_metacall +40 QDesignerWidgetDataBaseInterface::~QDesignerWidgetDataBaseInterface +48 QDesignerWidgetDataBaseInterface::~QDesignerWidgetDataBaseInterface +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QDesignerWidgetDataBaseInterface::count +120 QDesignerWidgetDataBaseInterface::item +128 QDesignerWidgetDataBaseInterface::indexOf +136 QDesignerWidgetDataBaseInterface::insert +144 QDesignerWidgetDataBaseInterface::append +152 QDesignerWidgetDataBaseInterface::indexOfObject +160 QDesignerWidgetDataBaseInterface::indexOfClassName +168 QDesignerWidgetDataBaseInterface::core + +Class QDesignerWidgetDataBaseInterface + size=24 align=8 + base size=24 base align=8 +QDesignerWidgetDataBaseInterface (0x7f0d3ea77070) 0 + vptr=((& QDesignerWidgetDataBaseInterface::_ZTV32QDesignerWidgetDataBaseInterface) + 16u) + QObject (0x7f0d3ea770e0) 0 + primary-for QDesignerWidgetDataBaseInterface (0x7f0d3ea77070) + +Vtable for QDesignerWidgetFactoryInterface +QDesignerWidgetFactoryInterface::_ZTV31QDesignerWidgetFactoryInterface: 21u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI31QDesignerWidgetFactoryInterface) +16 QDesignerWidgetFactoryInterface::metaObject +24 QDesignerWidgetFactoryInterface::qt_metacast +32 QDesignerWidgetFactoryInterface::qt_metacall +40 QDesignerWidgetFactoryInterface::~QDesignerWidgetFactoryInterface +48 QDesignerWidgetFactoryInterface::~QDesignerWidgetFactoryInterface +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual + +Class QDesignerWidgetFactoryInterface + size=16 align=8 + base size=16 base align=8 +QDesignerWidgetFactoryInterface (0x7f0d3e81d230) 0 + vptr=((& QDesignerWidgetFactoryInterface::_ZTV31QDesignerWidgetFactoryInterface) + 16u) + QObject (0x7f0d3e81d2a0) 0 + primary-for QDesignerWidgetFactoryInterface (0x7f0d3e81d230) + +Vtable for QDesignerDynamicPropertySheetExtension +QDesignerDynamicPropertySheetExtension::_ZTV38QDesignerDynamicPropertySheetExtension: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI38QDesignerDynamicPropertySheetExtension) +16 QDesignerDynamicPropertySheetExtension::~QDesignerDynamicPropertySheetExtension +24 QDesignerDynamicPropertySheetExtension::~QDesignerDynamicPropertySheetExtension +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual + +Class QDesignerDynamicPropertySheetExtension + size=8 align=8 + base size=8 base align=8 +QDesignerDynamicPropertySheetExtension (0x7f0d3e82e1c0) 0 nearly-empty + vptr=((& QDesignerDynamicPropertySheetExtension::_ZTV38QDesignerDynamicPropertySheetExtension) + 16u) + +Vtable for QDesignerExtraInfoExtension +QDesignerExtraInfoExtension::_ZTV27QDesignerExtraInfoExtension: 10u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QDesignerExtraInfoExtension) +16 QDesignerExtraInfoExtension::~QDesignerExtraInfoExtension +24 QDesignerExtraInfoExtension::~QDesignerExtraInfoExtension +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual + +Class QDesignerExtraInfoExtension + size=16 align=8 + base size=16 base align=8 +QDesignerExtraInfoExtension (0x7f0d3e83fa10) 0 + vptr=((& QDesignerExtraInfoExtension::_ZTV27QDesignerExtraInfoExtension) + 16u) + +Vtable for QDesignerLayoutDecorationExtension +QDesignerLayoutDecorationExtension::_ZTV34QDesignerLayoutDecorationExtension: 19u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI34QDesignerLayoutDecorationExtension) +16 QDesignerLayoutDecorationExtension::~QDesignerLayoutDecorationExtension +24 QDesignerLayoutDecorationExtension::~QDesignerLayoutDecorationExtension +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual + +Class QDesignerLayoutDecorationExtension + size=8 align=8 + base size=8 base align=8 +QDesignerLayoutDecorationExtension (0x7f0d3e85e460) 0 nearly-empty + vptr=((& QDesignerLayoutDecorationExtension::_ZTV34QDesignerLayoutDecorationExtension) + 16u) + +Vtable for QDesignerMemberSheetExtension +QDesignerMemberSheetExtension::_ZTV29QDesignerMemberSheetExtension: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI29QDesignerMemberSheetExtension) +16 QDesignerMemberSheetExtension::~QDesignerMemberSheetExtension +24 QDesignerMemberSheetExtension::~QDesignerMemberSheetExtension +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual + +Class QDesignerMemberSheetExtension + size=8 align=8 + base size=8 base align=8 +QDesignerMemberSheetExtension (0x7f0d3e870e00) 0 nearly-empty + vptr=((& QDesignerMemberSheetExtension::_ZTV29QDesignerMemberSheetExtension) + 16u) + +Vtable for QDesignerPropertySheetExtension +QDesignerPropertySheetExtension::_ZTV31QDesignerPropertySheetExtension: 19u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI31QDesignerPropertySheetExtension) +16 QDesignerPropertySheetExtension::~QDesignerPropertySheetExtension +24 QDesignerPropertySheetExtension::~QDesignerPropertySheetExtension +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual + +Class QDesignerPropertySheetExtension + size=8 align=8 + base size=8 base align=8 +QDesignerPropertySheetExtension (0x7f0d3e891690) 0 nearly-empty + vptr=((& QDesignerPropertySheetExtension::_ZTV31QDesignerPropertySheetExtension) + 16u) + +Vtable for QDesignerTaskMenuExtension +QDesignerTaskMenuExtension::_ZTV26QDesignerTaskMenuExtension: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QDesignerTaskMenuExtension) +16 QDesignerTaskMenuExtension::~QDesignerTaskMenuExtension +24 QDesignerTaskMenuExtension::~QDesignerTaskMenuExtension +32 QDesignerTaskMenuExtension::preferredEditAction +40 __cxa_pure_virtual + +Class QDesignerTaskMenuExtension + size=8 align=8 + base size=8 base align=8 +QDesignerTaskMenuExtension (0x7f0d3e89fee0) 0 nearly-empty + vptr=((& QDesignerTaskMenuExtension::_ZTV26QDesignerTaskMenuExtension) + 16u) + +Vtable for QAbstractFormBuilder +QAbstractFormBuilder::_ZTV20QAbstractFormBuilder: 48u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QAbstractFormBuilder) +16 QAbstractFormBuilder::~QAbstractFormBuilder +24 QAbstractFormBuilder::~QAbstractFormBuilder +32 QAbstractFormBuilder::load +40 QAbstractFormBuilder::save +48 QAbstractFormBuilder::loadExtraInfo +56 QAbstractFormBuilder::create +64 QAbstractFormBuilder::create +72 QAbstractFormBuilder::create +80 QAbstractFormBuilder::create +88 QAbstractFormBuilder::create +96 QAbstractFormBuilder::create +104 QAbstractFormBuilder::addMenuAction +112 QAbstractFormBuilder::applyProperties +120 QAbstractFormBuilder::applyTabStops +128 QAbstractFormBuilder::createWidget +136 QAbstractFormBuilder::createLayout +144 QAbstractFormBuilder::createAction +152 QAbstractFormBuilder::createActionGroup +160 QAbstractFormBuilder::createCustomWidgets +168 QAbstractFormBuilder::createConnections +176 QAbstractFormBuilder::createResources +184 QAbstractFormBuilder::addItem +192 QAbstractFormBuilder::addItem +200 QAbstractFormBuilder::saveExtraInfo +208 QAbstractFormBuilder::saveDom +216 QAbstractFormBuilder::createActionRefDom +224 QAbstractFormBuilder::createDom +232 QAbstractFormBuilder::createDom +240 QAbstractFormBuilder::createDom +248 QAbstractFormBuilder::createDom +256 QAbstractFormBuilder::createDom +264 QAbstractFormBuilder::createDom +272 QAbstractFormBuilder::saveConnections +280 QAbstractFormBuilder::saveCustomWidgets +288 QAbstractFormBuilder::saveTabStops +296 QAbstractFormBuilder::saveResources +304 QAbstractFormBuilder::computeProperties +312 QAbstractFormBuilder::checkProperty +320 QAbstractFormBuilder::createProperty +328 QAbstractFormBuilder::layoutInfo +336 QAbstractFormBuilder::nameToIcon +344 QAbstractFormBuilder::iconToFilePath +352 QAbstractFormBuilder::iconToQrcPath +360 QAbstractFormBuilder::nameToPixmap +368 QAbstractFormBuilder::pixmapToFilePath +376 QAbstractFormBuilder::pixmapToQrcPath + +Class QAbstractFormBuilder + size=48 align=8 + base size=48 base align=8 +QAbstractFormBuilder (0x7f0d3e8bd930) 0 + vptr=((& QAbstractFormBuilder::_ZTV20QAbstractFormBuilder) + 16u) + +Vtable for QDesignerContainerExtension +QDesignerContainerExtension::_ZTV27QDesignerContainerExtension: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QDesignerContainerExtension) +16 QDesignerContainerExtension::~QDesignerContainerExtension +24 QDesignerContainerExtension::~QDesignerContainerExtension +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual + +Class QDesignerContainerExtension + size=8 align=8 + base size=8 base align=8 +QDesignerContainerExtension (0x7f0d3e8e7e70) 0 nearly-empty + vptr=((& QDesignerContainerExtension::_ZTV27QDesignerContainerExtension) + 16u) + +Vtable for QDesignerCustomWidgetInterface +QDesignerCustomWidgetInterface::_ZTV30QDesignerCustomWidgetInterface: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI30QDesignerCustomWidgetInterface) +16 QDesignerCustomWidgetInterface::~QDesignerCustomWidgetInterface +24 QDesignerCustomWidgetInterface::~QDesignerCustomWidgetInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 QDesignerCustomWidgetInterface::isInitialized +104 QDesignerCustomWidgetInterface::initialize +112 QDesignerCustomWidgetInterface::domXml +120 QDesignerCustomWidgetInterface::codeTemplate + +Class QDesignerCustomWidgetInterface + size=8 align=8 + base size=8 base align=8 +QDesignerCustomWidgetInterface (0x7f0d3e75c460) 0 nearly-empty + vptr=((& QDesignerCustomWidgetInterface::_ZTV30QDesignerCustomWidgetInterface) + 16u) + +Vtable for QDesignerCustomWidgetCollectionInterface +QDesignerCustomWidgetCollectionInterface::_ZTV40QDesignerCustomWidgetCollectionInterface: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI40QDesignerCustomWidgetCollectionInterface) +16 QDesignerCustomWidgetCollectionInterface::~QDesignerCustomWidgetCollectionInterface +24 QDesignerCustomWidgetCollectionInterface::~QDesignerCustomWidgetCollectionInterface +32 __cxa_pure_virtual + +Class QDesignerCustomWidgetCollectionInterface + size=8 align=8 + base size=8 base align=8 +QDesignerCustomWidgetCollectionInterface (0x7f0d3e777380) 0 nearly-empty + vptr=((& QDesignerCustomWidgetCollectionInterface::_ZTV40QDesignerCustomWidgetCollectionInterface) + 16u) + +Vtable for QFormBuilder +QFormBuilder::_ZTV12QFormBuilder: 49u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QFormBuilder) +16 QFormBuilder::~QFormBuilder +24 QFormBuilder::~QFormBuilder +32 QAbstractFormBuilder::load +40 QAbstractFormBuilder::save +48 QAbstractFormBuilder::loadExtraInfo +56 QFormBuilder::create +64 QFormBuilder::create +72 QFormBuilder::create +80 QFormBuilder::create +88 QFormBuilder::create +96 QFormBuilder::create +104 QAbstractFormBuilder::addMenuAction +112 QFormBuilder::applyProperties +120 QAbstractFormBuilder::applyTabStops +128 QFormBuilder::createWidget +136 QFormBuilder::createLayout +144 QAbstractFormBuilder::createAction +152 QAbstractFormBuilder::createActionGroup +160 QAbstractFormBuilder::createCustomWidgets +168 QFormBuilder::createConnections +176 QAbstractFormBuilder::createResources +184 QFormBuilder::addItem +192 QFormBuilder::addItem +200 QAbstractFormBuilder::saveExtraInfo +208 QAbstractFormBuilder::saveDom +216 QAbstractFormBuilder::createActionRefDom +224 QAbstractFormBuilder::createDom +232 QAbstractFormBuilder::createDom +240 QAbstractFormBuilder::createDom +248 QAbstractFormBuilder::createDom +256 QAbstractFormBuilder::createDom +264 QAbstractFormBuilder::createDom +272 QAbstractFormBuilder::saveConnections +280 QAbstractFormBuilder::saveCustomWidgets +288 QAbstractFormBuilder::saveTabStops +296 QAbstractFormBuilder::saveResources +304 QAbstractFormBuilder::computeProperties +312 QAbstractFormBuilder::checkProperty +320 QAbstractFormBuilder::createProperty +328 QAbstractFormBuilder::layoutInfo +336 QAbstractFormBuilder::nameToIcon +344 QAbstractFormBuilder::iconToFilePath +352 QAbstractFormBuilder::iconToQrcPath +360 QAbstractFormBuilder::nameToPixmap +368 QAbstractFormBuilder::pixmapToFilePath +376 QAbstractFormBuilder::pixmapToQrcPath +384 QFormBuilder::updateCustomWidgets + +Class QFormBuilder + size=64 align=8 + base size=64 base align=8 +QFormBuilder (0x7f0d3e786620) 0 + vptr=((& QFormBuilder::_ZTV12QFormBuilder) + 16u) + QAbstractFormBuilder (0x7f0d3e786690) 0 + primary-for QFormBuilder (0x7f0d3e786620) + +Vtable for QExtensionManager +QExtensionManager::_ZTV17QExtensionManager: 24u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QExtensionManager) +16 QExtensionManager::metaObject +24 QExtensionManager::qt_metacast +32 QExtensionManager::qt_metacall +40 QExtensionManager::~QExtensionManager +48 QExtensionManager::~QExtensionManager +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QExtensionManager::registerExtensions +120 QExtensionManager::unregisterExtensions +128 QExtensionManager::extension +136 (int (*)(...))-0x00000000000000010 +144 (int (*)(...))(& _ZTI17QExtensionManager) +152 QExtensionManager::_ZThn16_N17QExtensionManagerD1Ev +160 QExtensionManager::_ZThn16_N17QExtensionManagerD0Ev +168 QExtensionManager::_ZThn16_N17QExtensionManager18registerExtensionsEP25QAbstractExtensionFactoryRK7QString +176 QExtensionManager::_ZThn16_N17QExtensionManager20unregisterExtensionsEP25QAbstractExtensionFactoryRK7QString +184 QExtensionManager::_ZThn16_NK17QExtensionManager9extensionEP7QObjectRK7QString + +Class QExtensionManager + size=40 align=8 + base size=40 base align=8 +QExtensionManager (0x7f0d3e782c00) 0 + vptr=((& QExtensionManager::_ZTV17QExtensionManager) + 16u) + QObject (0x7f0d3e786a10) 0 + primary-for QExtensionManager (0x7f0d3e782c00) + QAbstractExtensionManager (0x7f0d3e786a80) 16 nearly-empty + vptr=((& QExtensionManager::_ZTV17QExtensionManager) + 152u) + diff --git a/tests/auto/bic/data/QtGui.4.5.0.linux-gcc-amd64.txt b/tests/auto/bic/data/QtGui.4.5.0.linux-gcc-amd64.txt new file mode 100644 index 0000000..601eab8 --- /dev/null +++ b/tests/auto/bic/data/QtGui.4.5.0.linux-gcc-amd64.txt @@ -0,0 +1,15618 @@ +Class QSysInfo + size=1 align=1 + base size=0 base align=1 +QSysInfo (0x7f1df2f7c460) 0 empty + +Class QBool + size=1 align=1 + base size=1 base align=1 +QBool (0x7f1df2f93150) 0 + +Class qIsNull(double)::U + size=8 align=8 + base size=8 base align=8 +qIsNull(double)::U (0x7f1df2faa540) 0 + +Class qIsNull(float)::U + size=4 align=4 + base size=4 base align=4 +qIsNull(float)::U (0x7f1df2faa7e0) 0 + +Class QFlag + size=4 align=4 + base size=4 base align=4 +QFlag (0x7f1df2fe2620) 0 + +Class QIncompatibleFlag + size=4 align=4 + base size=4 base align=4 +QIncompatibleFlag (0x7f1df2fe2e00) 0 + +Class QInternal + size=1 align=1 + base size=0 base align=1 +QInternal (0x7f1df2ddb540) 0 empty + +Class QGenericArgument + size=16 align=8 + base size=16 base align=8 +QGenericArgument (0x7f1df2ddb850) 0 + +Class QGenericReturnArgument + size=16 align=8 + base size=16 base align=8 +QGenericReturnArgument (0x7f1df2df73f0) 0 + QGenericArgument (0x7f1df2df7460) 0 + +Class QMetaObject + size=32 align=8 + base size=32 base align=8 +QMetaObject (0x7f1df2df7cb0) 0 + +Class QMetaObjectExtraData + size=16 align=8 + base size=16 base align=8 +QMetaObjectExtraData (0x7f1df2e1fcb0) 0 + +Class QLatin1Char + size=1 align=1 + base size=1 base align=1 +QLatin1Char (0x7f1df2e29700) 0 + +Class QChar + size=2 align=2 + base size=2 base align=2 +QChar (0x7f1df2e2f2a0) 0 + +Class QBasicAtomicInt + size=4 align=4 + base size=4 base align=4 +QBasicAtomicInt (0x7f1df2c97380) 0 + +Class QAtomicInt + size=4 align=4 + base size=4 base align=4 +QAtomicInt (0x7f1df2cd4d20) 0 + QBasicAtomicInt (0x7f1df2cd4d90) 0 + +Class __locale_struct + size=232 align=8 + base size=232 base align=8 +__locale_struct (0x7f1df2cf81c0) 0 + +Class QByteArray::Data + size=32 align=8 + base size=32 base align=8 +QByteArray::Data (0x7f1df2b737e0) 0 + +Class QByteArray + size=8 align=8 + base size=8 base align=8 +QByteArray (0x7f1df2d30540) 0 + +Class QByteRef + size=16 align=8 + base size=12 base align=8 +QByteRef (0x7f1df2bcaa80) 0 + +Class QString::Null + size=1 align=1 + base size=0 base align=1 +QString::Null (0x7f1df2ad3700) 0 empty + +Class QString::Data + size=32 align=8 + base size=32 base align=8 +QString::Data (0x7f1df2ae3ee0) 0 + +Class QString + size=8 align=8 + base size=8 base align=8 +QString (0x7f1df2c525b0) 0 + +Class QLatin1String + size=8 align=8 + base size=8 base align=8 +QLatin1String (0x7f1df29bc000) 0 + +Class QCharRef + size=16 align=8 + base size=12 base align=8 +QCharRef (0x7f1df2a54620) 0 + +Class QConstString + size=8 align=8 + base size=8 base align=8 +QConstString (0x7f1df279bee0) 0 + QString (0x7f1df279bf50) 0 + +Class QStringRef + size=16 align=8 + base size=16 base align=8 +QStringRef (0x7f1df27bcbd0) 0 + +Vtable for std::exception +std::exception::_ZTVSt9exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9exception) +16 std::exception::~exception +24 std::exception::~exception +32 std::exception::what + +Class std::exception + size=8 align=8 + base size=8 base align=8 +std::exception (0x7f1df2676620) 0 nearly-empty + vptr=((& std::exception::_ZTVSt9exception) + 16u) + +Vtable for std::bad_exception +std::bad_exception::_ZTVSt13bad_exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13bad_exception) +16 std::bad_exception::~bad_exception +24 std::bad_exception::~bad_exception +32 std::bad_exception::what + +Class std::bad_exception + size=8 align=8 + base size=8 base align=8 +std::bad_exception (0x7f1df2699000) 0 nearly-empty + vptr=((& std::bad_exception::_ZTVSt13bad_exception) + 16u) + std::exception (0x7f1df2699070) 0 nearly-empty + primary-for std::bad_exception (0x7f1df2699000) + +Vtable for std::bad_alloc +std::bad_alloc::_ZTVSt9bad_alloc: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9bad_alloc) +16 std::bad_alloc::~bad_alloc +24 std::bad_alloc::~bad_alloc +32 std::bad_alloc::what + +Class std::bad_alloc + size=8 align=8 + base size=8 base align=8 +std::bad_alloc (0x7f1df26998c0) 0 nearly-empty + vptr=((& std::bad_alloc::_ZTVSt9bad_alloc) + 16u) + std::exception (0x7f1df2699930) 0 nearly-empty + primary-for std::bad_alloc (0x7f1df26998c0) + +Class std::nothrow_t + size=1 align=1 + base size=0 base align=1 +std::nothrow_t (0x7f1df26aa0e0) 0 empty + +Class QListData::Data + size=32 align=8 + base size=32 base align=8 +QListData::Data (0x7f1df26aa620) 0 + +Class QListData + size=8 align=8 + base size=8 base align=8 +QListData (0x7f1df26aa5b0) 0 + +Vtable for QObjectData +QObjectData::_ZTV11QObjectData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QObjectData) +16 __cxa_pure_virtual +24 __cxa_pure_virtual + +Class QObjectData + size=40 align=8 + base size=40 base align=8 +QObjectData (0x7f1df25afbd0) 0 + vptr=((& QObjectData::_ZTV11QObjectData) + 16u) + +Vtable for QObject +QObject::_ZTV7QObject: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QObject) +16 QObject::metaObject +24 QObject::qt_metacast +32 QObject::qt_metacall +40 QObject::~QObject +48 QObject::~QObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObject + size=16 align=8 + base size=16 base align=8 +QObject (0x7f1df25afee0) 0 + vptr=((& QObject::_ZTV7QObject) + 16u) + +Vtable for QObjectUserData +QObjectUserData::_ZTV15QObjectUserData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QObjectUserData) +16 QObjectUserData::~QObjectUserData +24 QObjectUserData::~QObjectUserData + +Class QObjectUserData + size=8 align=8 + base size=8 base align=8 +QObjectUserData (0x7f1df26403f0) 0 nearly-empty + vptr=((& QObjectUserData::_ZTV15QObjectUserData) + 16u) + +Vtable for QIODevice +QIODevice::_ZTV9QIODevice: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QIODevice) +16 QIODevice::metaObject +24 QIODevice::qt_metacast +32 QIODevice::qt_metacall +40 QIODevice::~QIODevice +48 QIODevice::~QIODevice +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QIODevice::isSequential +120 QIODevice::open +128 QIODevice::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QIODevice::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 __cxa_pure_virtual +224 QIODevice::readLineData +232 __cxa_pure_virtual + +Class QIODevice + size=16 align=8 + base size=16 base align=8 +QIODevice (0x7f1df2640930) 0 + vptr=((& QIODevice::_ZTV9QIODevice) + 16u) + QObject (0x7f1df26409a0) 0 + primary-for QIODevice (0x7f1df2640930) + +Vtable for QDataStream +QDataStream::_ZTV11QDataStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QDataStream) +16 QDataStream::~QDataStream +24 QDataStream::~QDataStream + +Class QDataStream + size=40 align=8 + base size=40 base align=8 +QDataStream (0x7f1df24b42a0) 0 + vptr=((& QDataStream::_ZTV11QDataStream) + 16u) + +Class QHashData::Node + size=16 align=8 + base size=16 base align=8 +QHashData::Node (0x7f1df253c150) 0 + +Class QHashData + size=40 align=8 + base size=40 base align=8 +QHashData (0x7f1df253c0e0) 0 + +Class QHashDummyValue + size=1 align=1 + base size=0 base align=1 +QHashDummyValue (0x7f1df254bee0) 0 empty + +Class QMapData::Node + size=16 align=8 + base size=16 base align=8 +QMapData::Node (0x7f1df225f690) 0 + +Class QMapData + size=128 align=8 + base size=128 base align=8 +QMapData (0x7f1df225f620) 0 + +Vtable for QSystemLocale +QSystemLocale::_ZTV13QSystemLocale: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSystemLocale) +16 QSystemLocale::~QSystemLocale +24 QSystemLocale::~QSystemLocale +32 QSystemLocale::query +40 QSystemLocale::fallbackLocale + +Class QSystemLocale + size=8 align=8 + base size=8 base align=8 +QSystemLocale (0x7f1df2172e00) 0 nearly-empty + vptr=((& QSystemLocale::_ZTV13QSystemLocale) + 16u) + +Class QLocale::Data + size=4 align=2 + base size=4 base align=2 +QLocale::Data (0x7f1df21d13f0) 0 + +Class QLocale + size=8 align=8 + base size=8 base align=8 +QLocale (0x7f1df21950e0) 0 + +Class QTextCodec::ConverterState + size=32 align=8 + base size=32 base align=8 +QTextCodec::ConverterState (0x7f1df221fe70) 0 + +Vtable for QTextCodec +QTextCodec::_ZTV10QTextCodec: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextCodec) +16 __cxa_pure_virtual +24 QTextCodec::aliases +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QTextCodec::~QTextCodec +64 QTextCodec::~QTextCodec + +Class QTextCodec + size=8 align=8 + base size=8 base align=8 +QTextCodec (0x7f1df2207a80) 0 nearly-empty + vptr=((& QTextCodec::_ZTV10QTextCodec) + 16u) + +Class QTextEncoder + size=40 align=8 + base size=40 base align=8 +QTextEncoder (0x7f1df208a3f0) 0 + +Class QTextDecoder + size=40 align=8 + base size=40 base align=8 +QTextDecoder (0x7f1df2093230) 0 + +Class _IO_marker + size=24 align=8 + base size=24 base align=8 +_IO_marker (0x7f1df209d2a0) 0 + +Class _IO_FILE + size=216 align=8 + base size=216 base align=8 +_IO_FILE (0x7f1df209d310) 0 + +Vtable for QTextStream +QTextStream::_ZTV11QTextStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTextStream) +16 QTextStream::~QTextStream +24 QTextStream::~QTextStream + +Class QTextStream + size=16 align=8 + base size=16 base align=8 +QTextStream (0x7f1df209d3f0) 0 + vptr=((& QTextStream::_ZTV11QTextStream) + 16u) + +Class QTextStreamManipulator + size=40 align=8 + base size=38 base align=8 +QTextStreamManipulator (0x7f1df2135ee0) 0 + +Vtable for QTextIStream +QTextIStream::_ZTV12QTextIStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextIStream) +16 QTextIStream::~QTextIStream +24 QTextIStream::~QTextIStream + +Class QTextIStream + size=16 align=8 + base size=16 base align=8 +QTextIStream (0x7f1df1f601c0) 0 + vptr=((& QTextIStream::_ZTV12QTextIStream) + 16u) + QTextStream (0x7f1df1f60230) 0 + primary-for QTextIStream (0x7f1df1f601c0) + +Vtable for QTextOStream +QTextOStream::_ZTV12QTextOStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextOStream) +16 QTextOStream::~QTextOStream +24 QTextOStream::~QTextOStream + +Class QTextOStream + size=16 align=8 + base size=16 base align=8 +QTextOStream (0x7f1df1f75070) 0 + vptr=((& QTextOStream::_ZTV12QTextOStream) + 16u) + QTextStream (0x7f1df1f750e0) 0 + primary-for QTextOStream (0x7f1df1f75070) + +Class wait + size=4 align=4 + base size=4 base align=4 +wait (0x7f1df1f81ee0) 0 + +Class timespec + size=16 align=8 + base size=16 base align=8 +timespec (0x7f1df1f8f230) 0 + +Class timeval + size=16 align=8 + base size=16 base align=8 +timeval (0x7f1df1f8f2a0) 0 + +Class __pthread_internal_list + size=16 align=8 + base size=16 base align=8 +__pthread_internal_list (0x7f1df1f8f3f0) 0 + +Class random_data + size=48 align=8 + base size=48 base align=8 +random_data (0x7f1df1f8f9a0) 0 + +Class drand48_data + size=24 align=8 + base size=24 base align=8 +drand48_data (0x7f1df1f8fa10) 0 + +Class QVectorData + size=16 align=4 + base size=16 base align=4 +QVectorData (0x7f1df1f8fa80) 0 + +Class QDebug::Stream + size=40 align=8 + base size=34 base align=8 +QDebug::Stream (0x7f1df1f0b230) 0 + +Class QDebug + size=8 align=8 + base size=8 base align=8 +QDebug (0x7f1df1f0b1c0) 0 + +Class QNoDebug + size=1 align=1 + base size=0 base align=1 +QNoDebug (0x7f1df1da9070) 0 empty + +Vtable for QFile +QFile::_ZTV5QFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QFile) +16 QFile::metaObject +24 QFile::qt_metacast +32 QFile::qt_metacall +40 QFile::~QFile +48 QFile::~QFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QFile::fileEngine + +Class QFile + size=16 align=8 + base size=16 base align=8 +QFile (0x7f1df1dba620) 0 + vptr=((& QFile::_ZTV5QFile) + 16u) + QIODevice (0x7f1df1dba690) 0 + primary-for QFile (0x7f1df1dba620) + QObject (0x7f1df1dba700) 0 + primary-for QIODevice (0x7f1df1dba690) + +Vtable for QTemporaryFile +QTemporaryFile::_ZTV14QTemporaryFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QTemporaryFile) +16 QTemporaryFile::metaObject +24 QTemporaryFile::qt_metacast +32 QTemporaryFile::qt_metacall +40 QTemporaryFile::~QTemporaryFile +48 QTemporaryFile::~QTemporaryFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QTemporaryFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QTemporaryFile::fileEngine + +Class QTemporaryFile + size=16 align=8 + base size=16 base align=8 +QTemporaryFile (0x7f1df1e23850) 0 + vptr=((& QTemporaryFile::_ZTV14QTemporaryFile) + 16u) + QFile (0x7f1df1e238c0) 0 + primary-for QTemporaryFile (0x7f1df1e23850) + QIODevice (0x7f1df1e23930) 0 + primary-for QFile (0x7f1df1e238c0) + QObject (0x7f1df1e239a0) 0 + primary-for QIODevice (0x7f1df1e23930) + +Class QFileInfo + size=8 align=8 + base size=8 base align=8 +QFileInfo (0x7f1df1e47f50) 0 + +Class QRegExp + size=8 align=8 + base size=8 base align=8 +QRegExp (0x7f1df1ca2770) 0 + +Class QStringMatcher + size=1048 align=8 + base size=1048 base align=8 +QStringMatcher (0x7f1df1cf05b0) 0 + +Class QStringList + size=8 align=8 + base size=8 base align=8 +QStringList (0x7f1df1d01070) 0 + QList (0x7f1df1d010e0) 0 + +Class QDir + size=8 align=8 + base size=8 base align=8 +QDir (0x7f1df1b91cb0) 0 + +Class QAbstractFileEngine::ExtensionOption + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionOption (0x7f1df1c28e70) 0 empty + +Class QAbstractFileEngine::ExtensionReturn + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionReturn (0x7f1df1c28ee0) 0 empty + +Class QAbstractFileEngine::MapExtensionOption + size=24 align=8 + base size=20 base align=8 +QAbstractFileEngine::MapExtensionOption (0x7f1df1c28f50) 0 + QAbstractFileEngine::ExtensionOption (0x7f1df1c3e000) 0 empty + +Class QAbstractFileEngine::MapExtensionReturn + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::MapExtensionReturn (0x7f1df1c3e1c0) 0 + QAbstractFileEngine::ExtensionReturn (0x7f1df1c3e230) 0 empty + +Class QAbstractFileEngine::UnMapExtensionOption + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::UnMapExtensionOption (0x7f1df1c3e2a0) 0 + QAbstractFileEngine::ExtensionOption (0x7f1df1c3e310) 0 empty + +Vtable for QAbstractFileEngine +QAbstractFileEngine::_ZTV19QAbstractFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractFileEngine) +16 QAbstractFileEngine::~QAbstractFileEngine +24 QAbstractFileEngine::~QAbstractFileEngine +32 QAbstractFileEngine::open +40 QAbstractFileEngine::close +48 QAbstractFileEngine::flush +56 QAbstractFileEngine::size +64 QAbstractFileEngine::pos +72 QAbstractFileEngine::seek +80 QAbstractFileEngine::isSequential +88 QAbstractFileEngine::remove +96 QAbstractFileEngine::copy +104 QAbstractFileEngine::rename +112 QAbstractFileEngine::link +120 QAbstractFileEngine::mkdir +128 QAbstractFileEngine::rmdir +136 QAbstractFileEngine::setSize +144 QAbstractFileEngine::caseSensitive +152 QAbstractFileEngine::isRelativePath +160 QAbstractFileEngine::entryList +168 QAbstractFileEngine::fileFlags +176 QAbstractFileEngine::setPermissions +184 QAbstractFileEngine::fileName +192 QAbstractFileEngine::ownerId +200 QAbstractFileEngine::owner +208 QAbstractFileEngine::fileTime +216 QAbstractFileEngine::setFileName +224 QAbstractFileEngine::handle +232 QAbstractFileEngine::beginEntryList +240 QAbstractFileEngine::endEntryList +248 QAbstractFileEngine::read +256 QAbstractFileEngine::readLine +264 QAbstractFileEngine::write +272 QAbstractFileEngine::extension +280 QAbstractFileEngine::supportsExtension + +Class QAbstractFileEngine + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngine (0x7f1df1c1ae00) 0 + vptr=((& QAbstractFileEngine::_ZTV19QAbstractFileEngine) + 16u) + +Vtable for QAbstractFileEngineHandler +QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QAbstractFileEngineHandler) +16 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +24 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +32 __cxa_pure_virtual + +Class QAbstractFileEngineHandler + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngineHandler (0x7f1df1a6d000) 0 nearly-empty + vptr=((& QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler) + 16u) + +Vtable for QAbstractFileEngineIterator +QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QAbstractFileEngineIterator) +16 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +24 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QAbstractFileEngineIterator::currentFileInfo +64 QAbstractFileEngineIterator::entryInfo + +Class QAbstractFileEngineIterator + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngineIterator (0x7f1df1a6d1c0) 0 + vptr=((& QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator) + 16u) + +Vtable for QFSFileEngine +QFSFileEngine::_ZTV13QFSFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QFSFileEngine) +16 QFSFileEngine::~QFSFileEngine +24 QFSFileEngine::~QFSFileEngine +32 QFSFileEngine::open +40 QFSFileEngine::close +48 QFSFileEngine::flush +56 QFSFileEngine::size +64 QFSFileEngine::pos +72 QFSFileEngine::seek +80 QFSFileEngine::isSequential +88 QFSFileEngine::remove +96 QFSFileEngine::copy +104 QFSFileEngine::rename +112 QFSFileEngine::link +120 QFSFileEngine::mkdir +128 QFSFileEngine::rmdir +136 QFSFileEngine::setSize +144 QFSFileEngine::caseSensitive +152 QFSFileEngine::isRelativePath +160 QFSFileEngine::entryList +168 QFSFileEngine::fileFlags +176 QFSFileEngine::setPermissions +184 QFSFileEngine::fileName +192 QFSFileEngine::ownerId +200 QFSFileEngine::owner +208 QFSFileEngine::fileTime +216 QFSFileEngine::setFileName +224 QFSFileEngine::handle +232 QFSFileEngine::beginEntryList +240 QFSFileEngine::endEntryList +248 QFSFileEngine::read +256 QFSFileEngine::readLine +264 QFSFileEngine::write +272 QFSFileEngine::extension +280 QFSFileEngine::supportsExtension + +Class QFSFileEngine + size=16 align=8 + base size=16 base align=8 +QFSFileEngine (0x7f1df1a6da10) 0 + vptr=((& QFSFileEngine::_ZTV13QFSFileEngine) + 16u) + QAbstractFileEngine (0x7f1df1a6da80) 0 + primary-for QFSFileEngine (0x7f1df1a6da10) + +Vtable for QProcess +QProcess::_ZTV8QProcess: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QProcess) +16 QProcess::metaObject +24 QProcess::qt_metacast +32 QProcess::qt_metacall +40 QProcess::~QProcess +48 QProcess::~QProcess +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QProcess::isSequential +120 QIODevice::open +128 QProcess::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QProcess::atEnd +168 QIODevice::reset +176 QProcess::bytesAvailable +184 QProcess::bytesToWrite +192 QProcess::canReadLine +200 QProcess::waitForReadyRead +208 QProcess::waitForBytesWritten +216 QProcess::readData +224 QIODevice::readLineData +232 QProcess::writeData +240 QProcess::setupChildProcess + +Class QProcess + size=16 align=8 + base size=16 base align=8 +QProcess (0x7f1df1a86d20) 0 + vptr=((& QProcess::_ZTV8QProcess) + 16u) + QIODevice (0x7f1df1a86d90) 0 + primary-for QProcess (0x7f1df1a86d20) + QObject (0x7f1df1a86e00) 0 + primary-for QIODevice (0x7f1df1a86d90) + +Class QResource + size=8 align=8 + base size=8 base align=8 +QResource (0x7f1df1ac1230) 0 + +Vtable for QDirIterator +QDirIterator::_ZTV12QDirIterator: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QDirIterator) +16 QDirIterator::~QDirIterator +24 QDirIterator::~QDirIterator + +Class QDirIterator + size=16 align=8 + base size=16 base align=8 +QDirIterator (0x7f1df1ac1cb0) 0 + vptr=((& QDirIterator::_ZTV12QDirIterator) + 16u) + +Vtable for QBuffer +QBuffer::_ZTV7QBuffer: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QBuffer) +16 QBuffer::metaObject +24 QBuffer::qt_metacast +32 QBuffer::qt_metacall +40 QBuffer::~QBuffer +48 QBuffer::~QBuffer +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QBuffer::connectNotify +104 QBuffer::disconnectNotify +112 QIODevice::isSequential +120 QBuffer::open +128 QBuffer::close +136 QBuffer::pos +144 QBuffer::size +152 QBuffer::seek +160 QBuffer::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QBuffer::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QBuffer::readData +224 QIODevice::readLineData +232 QBuffer::writeData + +Class QBuffer + size=16 align=8 + base size=16 base align=8 +QBuffer (0x7f1df1af4a80) 0 + vptr=((& QBuffer::_ZTV7QBuffer) + 16u) + QIODevice (0x7f1df1af4af0) 0 + primary-for QBuffer (0x7f1df1af4a80) + QObject (0x7f1df1af4b60) 0 + primary-for QIODevice (0x7f1df1af4af0) + +Vtable for QFileSystemWatcher +QFileSystemWatcher::_ZTV18QFileSystemWatcher: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFileSystemWatcher) +16 QFileSystemWatcher::metaObject +24 QFileSystemWatcher::qt_metacast +32 QFileSystemWatcher::qt_metacall +40 QFileSystemWatcher::~QFileSystemWatcher +48 QFileSystemWatcher::~QFileSystemWatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QFileSystemWatcher + size=16 align=8 + base size=16 base align=8 +QFileSystemWatcher (0x7f1df1b1a690) 0 + vptr=((& QFileSystemWatcher::_ZTV18QFileSystemWatcher) + 16u) + QObject (0x7f1df1b1a700) 0 + primary-for QFileSystemWatcher (0x7f1df1b1a690) + +Class QUrl + size=8 align=8 + base size=8 base align=8 +QUrl (0x7f1df1b2cbd0) 0 + +Class QMetaType + size=1 align=1 + base size=0 base align=1 +QMetaType (0x7f1df19923f0) 0 empty + +Class QVariant::PrivateShared + size=16 align=8 + base size=12 base align=8 +QVariant::PrivateShared (0x7f1df1869930) 0 + +Class QVariant::Private::Data + size=8 align=8 + base size=8 base align=8 +QVariant::Private::Data (0x7f1df1869c40) 0 + +Class QVariant::Private + size=16 align=8 + base size=12 base align=8 +QVariant::Private (0x7f1df1869a10) 0 + +Class QVariant::Handler + size=72 align=8 + base size=72 base align=8 +QVariant::Handler (0x7f1df1879930) 0 + +Class QVariant + size=16 align=8 + base size=16 base align=8 +QVariant (0x7f1df1839af0) 0 + +Class QVariantComparisonHelper + size=8 align=8 + base size=8 base align=8 +QVariantComparisonHelper (0x7f1df1925cb0) 0 + +Vtable for QSettings +QSettings::_ZTV9QSettings: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QSettings) +16 QSettings::metaObject +24 QSettings::qt_metacast +32 QSettings::qt_metacall +40 QSettings::~QSettings +48 QSettings::~QSettings +56 QSettings::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSettings + size=16 align=8 + base size=16 base align=8 +QSettings (0x7f1df1742cb0) 0 + vptr=((& QSettings::_ZTV9QSettings) + 16u) + QObject (0x7f1df1742d20) 0 + primary-for QSettings (0x7f1df1742cb0) + +Class QXmlStreamStringRef + size=16 align=8 + base size=16 base align=8 +QXmlStreamStringRef (0x7f1df17c6070) 0 + +Class QXmlStreamAttribute + size=80 align=8 + base size=73 base align=8 +QXmlStreamAttribute (0x7f1df17e3850) 0 + +Class QXmlStreamAttributes + size=8 align=8 + base size=8 base align=8 +QXmlStreamAttributes (0x7f1df180c380) 0 + QVector (0x7f1df180c3f0) 0 + +Class QXmlStreamNamespaceDeclaration + size=40 align=8 + base size=40 base align=8 +QXmlStreamNamespaceDeclaration (0x7f1df180c850) 0 + +Class QXmlStreamNotationDeclaration + size=56 align=8 + base size=56 base align=8 +QXmlStreamNotationDeclaration (0x7f1df164b1c0) 0 + +Class QXmlStreamEntityDeclaration + size=88 align=8 + base size=88 base align=8 +QXmlStreamEntityDeclaration (0x7f1df166b070) 0 + +Vtable for QXmlStreamEntityResolver +QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QXmlStreamEntityResolver) +16 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +24 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +32 QXmlStreamEntityResolver::resolveEntity +40 QXmlStreamEntityResolver::resolveUndeclaredEntity + +Class QXmlStreamEntityResolver + size=8 align=8 + base size=8 base align=8 +QXmlStreamEntityResolver (0x7f1df16879a0) 0 nearly-empty + vptr=((& QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver) + 16u) + +Class QXmlStreamReader + size=8 align=8 + base size=8 base align=8 +QXmlStreamReader (0x7f1df1687b60) 0 + +Class QXmlStreamWriter + size=8 align=8 + base size=8 base align=8 +QXmlStreamWriter (0x7f1df16c4a10) 0 + +Class QPoint + size=8 align=4 + base size=8 base align=4 +QPoint (0x7f1df1700150) 0 + +Class QPointF + size=16 align=8 + base size=16 base align=8 +QPointF (0x7f1df1538d90) 0 + +Class QLine + size=16 align=4 + base size=16 base align=4 +QLine (0x7f1df1575bd0) 0 + +Class QLineF + size=32 align=8 + base size=32 base align=8 +QLineF (0x7f1df15b0a80) 0 + +Class QSize + size=8 align=4 + base size=8 base align=4 +QSize (0x7f1df160a540) 0 + +Class QSizeF + size=16 align=8 + base size=16 base align=8 +QSizeF (0x7f1df1457380) 0 + +Class QRect + size=16 align=4 + base size=16 base align=4 +QRect (0x7f1df14a19a0) 0 + +Class QRectF + size=32 align=8 + base size=32 base align=8 +QRectF (0x7f1df1353380) 0 + +Class QSharedData + size=4 align=4 + base size=4 base align=4 +QSharedData (0x7f1df13fd150) 0 + +Vtable for QtSharedPointer::ExternalRefCountData +QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN15QtSharedPointer20ExternalRefCountDataE) +16 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +24 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +32 QtSharedPointer::ExternalRefCountData::destroy + +Class QtSharedPointer::ExternalRefCountData + size=16 align=8 + base size=16 base align=8 +QtSharedPointer::ExternalRefCountData (0x7f1df122eaf0) 0 + vptr=((& QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE) + 16u) + +Class QLinkedListData + size=32 align=8 + base size=32 base align=8 +QLinkedListData (0x7f1df12b4c40) 0 + +Class QBitArray + size=8 align=8 + base size=8 base align=8 +QBitArray (0x7f1df117fb60) 0 + +Class QBitRef + size=16 align=8 + base size=12 base align=8 +QBitRef (0x7f1df11f4930) 0 + +Class QByteArrayMatcher + size=1040 align=8 + base size=1040 base align=8 +QByteArrayMatcher (0x7f1df120e310) 0 + +Class QCryptographicHash + size=8 align=8 + base size=8 base align=8 +QCryptographicHash (0x7f1df1221a10) 0 + +Class QTextBoundaryFinder + size=48 align=8 + base size=48 base align=8 +QTextBoundaryFinder (0x7f1df104e460) 0 + +Class QDate + size=4 align=4 + base size=4 base align=4 +QDate (0x7f1df10647e0) 0 + +Class QTime + size=4 align=4 + base size=4 base align=4 +QTime (0x7f1df108d770) 0 + +Class QDateTime + size=8 align=8 + base size=8 base align=8 +QDateTime (0x7f1df10abd20) 0 + +Vtable for QTimeLine +QTimeLine::_ZTV9QTimeLine: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTimeLine) +16 QTimeLine::metaObject +24 QTimeLine::qt_metacast +32 QTimeLine::qt_metacall +40 QTimeLine::~QTimeLine +48 QTimeLine::~QTimeLine +56 QObject::event +64 QObject::eventFilter +72 QTimeLine::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTimeLine::valueForTime + +Class QTimeLine + size=16 align=8 + base size=16 base align=8 +QTimeLine (0x7f1df10de1c0) 0 + vptr=((& QTimeLine::_ZTV9QTimeLine) + 16u) + QObject (0x7f1df10de230) 0 + primary-for QTimeLine (0x7f1df10de1c0) + +Vtable for QRunnable +QRunnable::_ZTV9QRunnable: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QRunnable) +16 __cxa_pure_virtual +24 QRunnable::~QRunnable +32 QRunnable::~QRunnable + +Class QRunnable + size=16 align=8 + base size=12 base align=8 +QRunnable (0x7f1df1106070) 0 + vptr=((& QRunnable::_ZTV9QRunnable) + 16u) + +Class QMutex + size=8 align=8 + base size=8 base align=8 +QMutex (0x7f1df1112700) 0 + +Class QMutexLocker + size=8 align=8 + base size=8 base align=8 +QMutexLocker (0x7f1df11222a0) 0 + +Vtable for QtConcurrent::Exception +QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent9ExceptionE) +16 QtConcurrent::Exception::~Exception +24 QtConcurrent::Exception::~Exception +32 std::exception::what +40 QtConcurrent::Exception::raise +48 QtConcurrent::Exception::clone + +Class QtConcurrent::Exception + size=8 align=8 + base size=8 base align=8 +QtConcurrent::Exception (0x7f1df0f395b0) 0 nearly-empty + vptr=((& QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE) + 16u) + std::exception (0x7f1df0f39620) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7f1df0f395b0) + +Vtable for QtConcurrent::UnhandledException +QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent18UnhandledExceptionE) +16 QtConcurrent::UnhandledException::~UnhandledException +24 QtConcurrent::UnhandledException::~UnhandledException +32 std::exception::what +40 QtConcurrent::UnhandledException::raise +48 QtConcurrent::UnhandledException::clone + +Class QtConcurrent::UnhandledException + size=8 align=8 + base size=8 base align=8 +QtConcurrent::UnhandledException (0x7f1df0f39850) 0 nearly-empty + vptr=((& QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE) + 16u) + QtConcurrent::Exception (0x7f1df0f398c0) 0 nearly-empty + primary-for QtConcurrent::UnhandledException (0x7f1df0f39850) + std::exception (0x7f1df0f39930) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7f1df0f398c0) + +Class QtConcurrent::internal::ExceptionHolder + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionHolder (0x7f1df0f39b60) 0 + +Class QtConcurrent::internal::ExceptionStore + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionStore (0x7f1df0f39ee0) 0 + +Class QtConcurrent::ResultItem + size=16 align=8 + base size=16 base align=8 +QtConcurrent::ResultItem (0x7f1df0f39f50) 0 + +Class QtConcurrent::ResultIteratorBase + size=16 align=8 + base size=12 base align=8 +QtConcurrent::ResultIteratorBase (0x7f1df0f4fe70) 0 + +Vtable for QtConcurrent::ResultStoreBase +QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent15ResultStoreBaseE) +16 QtConcurrent::ResultStoreBase::~ResultStoreBase +24 QtConcurrent::ResultStoreBase::~ResultStoreBase + +Class QtConcurrent::ResultStoreBase + size=48 align=8 + base size=44 base align=8 +QtConcurrent::ResultStoreBase (0x7f1df0f52a10) 0 + vptr=((& QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE) + 16u) + +Vtable for QFutureInterfaceBase +QFutureInterfaceBase::_ZTV20QFutureInterfaceBase: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QFutureInterfaceBase) +16 QFutureInterfaceBase::~QFutureInterfaceBase +24 QFutureInterfaceBase::~QFutureInterfaceBase + +Class QFutureInterfaceBase + size=16 align=8 + base size=16 base align=8 +QFutureInterfaceBase (0x7f1df0f93e70) 0 + vptr=((& QFutureInterfaceBase::_ZTV20QFutureInterfaceBase) + 16u) + +Vtable for QThread +QThread::_ZTV7QThread: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QThread) +16 QThread::metaObject +24 QThread::qt_metacast +32 QThread::qt_metacall +40 QThread::~QThread +48 QThread::~QThread +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QThread::run + +Class QThread + size=16 align=8 + base size=16 base align=8 +QThread (0x7f1df0e76e00) 0 + vptr=((& QThread::_ZTV7QThread) + 16u) + QObject (0x7f1df0e76e70) 0 + primary-for QThread (0x7f1df0e76e00) + +Vtable for QThreadPool +QThreadPool::_ZTV11QThreadPool: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QThreadPool) +16 QThreadPool::metaObject +24 QThreadPool::qt_metacast +32 QThreadPool::qt_metacall +40 QThreadPool::~QThreadPool +48 QThreadPool::~QThreadPool +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QThreadPool + size=16 align=8 + base size=16 base align=8 +QThreadPool (0x7f1df0ea9cb0) 0 + vptr=((& QThreadPool::_ZTV11QThreadPool) + 16u) + QObject (0x7f1df0ea9d20) 0 + primary-for QThreadPool (0x7f1df0ea9cb0) + +Class QWaitCondition + size=8 align=8 + base size=8 base align=8 +QWaitCondition (0x7f1df0ec3540) 0 + +Class QtConcurrent::ThreadEngineSemaphore + size=24 align=8 + base size=24 base align=8 +QtConcurrent::ThreadEngineSemaphore (0x7f1df0ec3a80) 0 + +Vtable for QtConcurrent::ThreadEngineBase +QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent16ThreadEngineBaseE) +16 QtConcurrent::ThreadEngineBase::run +24 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +32 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +40 QtConcurrent::ThreadEngineBase::start +48 QtConcurrent::ThreadEngineBase::finish +56 QtConcurrent::ThreadEngineBase::threadFunction +64 QtConcurrent::ThreadEngineBase::shouldStartThread +72 QtConcurrent::ThreadEngineBase::shouldThrottleThread +80 __cxa_pure_virtual + +Class QtConcurrent::ThreadEngineBase + size=64 align=8 + base size=64 base align=8 +QtConcurrent::ThreadEngineBase (0x7f1df0ee1460) 0 + vptr=((& QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE) + 16u) + QRunnable (0x7f1df0ee14d0) 0 + primary-for QtConcurrent::ThreadEngineBase (0x7f1df0ee1460) + +VTT for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTTN12QtConcurrent12ThreadEngineIvEE: 2u entries +0 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 24u) +8 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 136u) + +Class std::input_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::input_iterator_tag (0x7f1df0f24850) 0 empty + +Class std::output_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::output_iterator_tag (0x7f1df0f248c0) 0 empty + +Class std::forward_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::forward_iterator_tag (0x7f1df0f24930) 0 empty + std::input_iterator_tag (0x7f1df0f249a0) 0 empty + +Class std::bidirectional_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::bidirectional_iterator_tag (0x7f1df0f24a10) 0 empty + std::forward_iterator_tag (0x7f1df0f24a80) 0 empty + std::input_iterator_tag (0x7f1df0f24af0) 0 empty + +Class std::random_access_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::random_access_iterator_tag (0x7f1df0f24b60) 0 empty + std::bidirectional_iterator_tag (0x7f1df0f24bd0) 0 empty + std::forward_iterator_tag (0x7f1df0f24c40) 0 empty + std::input_iterator_tag (0x7f1df0f24cb0) 0 empty + +Class std::__true_type + size=1 align=1 + base size=0 base align=1 +std::__true_type (0x7f1df0d372a0) 0 empty + +Class std::__false_type + size=1 align=1 + base size=0 base align=1 +std::__false_type (0x7f1df0d37310) 0 empty + +Class lconv + size=96 align=8 + base size=96 base align=8 +lconv (0x7f1df0d13620) 0 + +Class sched_param + size=4 align=4 + base size=4 base align=4 +sched_param (0x7f1df0d13a80) 0 + +Class __sched_param + size=4 align=4 + base size=4 base align=4 +__sched_param (0x7f1df0d13af0) 0 + +Class tm + size=56 align=8 + base size=56 base align=8 +tm (0x7f1df0d13bd0) 0 + +Class itimerspec + size=32 align=8 + base size=32 base align=8 +itimerspec (0x7f1df0d13cb0) 0 + +Class _pthread_cleanup_buffer + size=32 align=8 + base size=32 base align=8 +_pthread_cleanup_buffer (0x7f1df0d13d20) 0 + +Class __pthread_cleanup_frame + size=24 align=8 + base size=24 base align=8 +__pthread_cleanup_frame (0x7f1df0d13e70) 0 + +Class __pthread_cleanup_class + size=24 align=8 + base size=24 base align=8 +__pthread_cleanup_class (0x7f1df0d13ee0) 0 + +Vtable for __cxxabiv1::__forced_unwind +__cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN10__cxxabiv115__forced_unwindE) +16 __cxxabiv1::__forced_unwind::~__forced_unwind +24 __cxxabiv1::__forced_unwind::~__forced_unwind +32 __cxa_pure_virtual + +Class __cxxabiv1::__forced_unwind + size=8 align=8 + base size=8 base align=8 +__cxxabiv1::__forced_unwind (0x7f1df0a1ea80) 0 nearly-empty + vptr=((& __cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE) + 16u) + +Class std::locale + size=8 align=8 + base size=8 base align=8 +std::locale (0x7f1df08d05b0) 0 + +Vtable for std::locale::facet +std::locale::facet::_ZTVNSt6locale5facetE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTINSt6locale5facetE) +16 std::locale::facet::~facet +24 std::locale::facet::~facet + +Class std::locale::facet + size=16 align=8 + base size=12 base align=8 +std::locale::facet (0x7f1df0773cb0) 0 + vptr=((& std::locale::facet::_ZTVNSt6locale5facetE) + 16u) + +Class std::locale::id + size=8 align=8 + base size=8 base align=8 +std::locale::id (0x7f1df07882a0) 0 + +Class std::locale::_Impl + size=40 align=8 + base size=40 base align=8 +std::locale::_Impl (0x7f1df07888c0) 0 + +Vtable for std::ios_base::failure +std::ios_base::failure::_ZTVNSt8ios_base7failureE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTINSt8ios_base7failureE) +16 std::ios_base::failure::~failure +24 std::ios_base::failure::~failure +32 std::ios_base::failure::what + +Class std::ios_base::failure + size=16 align=8 + base size=16 base align=8 +std::ios_base::failure (0x7f1df0815070) 0 + vptr=((& std::ios_base::failure::_ZTVNSt8ios_base7failureE) + 16u) + std::exception (0x7f1df08150e0) 0 nearly-empty + primary-for std::ios_base::failure (0x7f1df0815070) + +Class std::ios_base::_Callback_list + size=24 align=8 + base size=24 base align=8 +std::ios_base::_Callback_list (0x7f1df0623310) 0 + +Class std::ios_base::_Words + size=16 align=8 + base size=16 base align=8 +std::ios_base::_Words (0x7f1df0623d90) 0 + +Class std::ios_base::Init + size=1 align=1 + base size=0 base align=1 +std::ios_base::Init (0x7f1df062b4d0) 0 empty + +Vtable for std::ios_base +std::ios_base::_ZTVSt8ios_base: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt8ios_base) +16 std::ios_base::~ios_base +24 std::ios_base::~ios_base + +Class std::ios_base + size=216 align=8 + base size=216 base align=8 +std::ios_base (0x7f1df0815000) 0 + vptr=((& std::ios_base::_ZTVSt8ios_base) + 16u) + +Class std::ctype_base + size=1 align=1 + base size=0 base align=1 +std::ctype_base (0x7f1df06a1930) 0 empty + +Class std::__num_base + size=1 align=1 + base size=0 base align=1 +std::__num_base (0x7f1df05c71c0) 0 empty + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSo: 2u entries +0 ((& std::basic_ostream >::_ZTVSo) + 24u) +8 ((& std::basic_ostream >::_ZTVSo) + 64u) + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSt13basic_ostreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 24u) +8 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 64u) + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSi: 2u entries +0 ((& std::basic_istream >::_ZTVSi) + 24u) +8 ((& std::basic_istream >::_ZTVSi) + 64u) + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSt13basic_istreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 24u) +8 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 64u) + +Construction vtable for std::basic_istream > (0x7f1df02fb310 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd0_Si: 10u entries +0 24u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISi) +24 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +32 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +40 -24u +48 (int (*)(...))-0x00000000000000018 +56 (int (*)(...))(& _ZTISi) +64 std::basic_istream >::_ZTv0_n24_NSiD1Ev +72 std::basic_istream >::_ZTv0_n24_NSiD0Ev + +Construction vtable for std::basic_ostream > (0x7f1df02fb460 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd16_So: 10u entries +0 8u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISo) +24 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +32 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +40 -8u +48 (int (*)(...))-0x00000000000000008 +56 (int (*)(...))(& _ZTISo) +64 std::basic_ostream >::_ZTv0_n24_NSoD1Ev +72 std::basic_ostream >::_ZTv0_n24_NSoD0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSd: 7u entries +0 ((& std::basic_iostream >::_ZTVSd) + 24u) +8 ((& std::basic_iostream >::_ZTCSd0_Si) + 24u) +16 ((& std::basic_iostream >::_ZTCSd0_Si) + 64u) +24 ((& std::basic_iostream >::_ZTCSd16_So) + 24u) +32 ((& std::basic_iostream >::_ZTCSd16_So) + 64u) +40 ((& std::basic_iostream >::_ZTVSd) + 104u) +48 ((& std::basic_iostream >::_ZTVSd) + 64u) + +Construction vtable for std::basic_istream > (0x7f1df02fb620 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E: 10u entries +0 24u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +24 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +32 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +40 -24u +48 (int (*)(...))-0x00000000000000018 +56 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +64 std::basic_istream >::_ZTv0_n24_NSt13basic_istreamIwSt11char_traitsIwEED1Ev +72 std::basic_istream >::_ZTv0_n24_NSt13basic_istreamIwSt11char_traitsIwEED0Ev + +Construction vtable for std::basic_ostream > (0x7f1df02fb770 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE16_St13basic_ostreamIwS1_E: 10u entries +0 8u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +24 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +32 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +40 -8u +48 (int (*)(...))-0x00000000000000008 +56 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +64 std::basic_ostream >::_ZTv0_n24_NSt13basic_ostreamIwSt11char_traitsIwEED1Ev +72 std::basic_ostream >::_ZTv0_n24_NSt13basic_ostreamIwSt11char_traitsIwEED0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSt14basic_iostreamIwSt11char_traitsIwEE: 7u entries +0 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 24u) +8 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 24u) +16 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 64u) +24 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE16_St13basic_ostreamIwS1_E) + 24u) +32 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE16_St13basic_ostreamIwS1_E) + 64u) +40 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 104u) +48 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 64u) + +Class QtConcurrent::BlockSizeManager + size=96 align=8 + base size=92 base align=8 +QtConcurrent::BlockSizeManager (0x7f1df0166230) 0 + +Vtable for QFutureWatcherBase +QFutureWatcherBase::_ZTV18QFutureWatcherBase: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFutureWatcherBase) +16 QFutureWatcherBase::metaObject +24 QFutureWatcherBase::qt_metacast +32 QFutureWatcherBase::qt_metacall +40 QFutureWatcherBase::~QFutureWatcherBase +48 QFutureWatcherBase::~QFutureWatcherBase +56 QFutureWatcherBase::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QFutureWatcherBase::connectNotify +104 QFutureWatcherBase::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QFutureWatcherBase + size=16 align=8 + base size=16 base align=8 +QFutureWatcherBase (0x7f1defd32bd0) 0 + vptr=((& QFutureWatcherBase::_ZTV18QFutureWatcherBase) + 16u) + QObject (0x7f1defd32c40) 0 + primary-for QFutureWatcherBase (0x7f1defd32bd0) + +Vtable for QFactoryInterface +QFactoryInterface::_ZTV17QFactoryInterface: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QFactoryInterface) +16 QFactoryInterface::~QFactoryInterface +24 QFactoryInterface::~QFactoryInterface +32 __cxa_pure_virtual + +Class QFactoryInterface + size=8 align=8 + base size=8 base align=8 +QFactoryInterface (0x7f1defc4ae00) 0 nearly-empty + vptr=((& QFactoryInterface::_ZTV17QFactoryInterface) + 16u) + +Vtable for QTextCodecFactoryInterface +QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QTextCodecFactoryInterface) +16 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +24 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QTextCodecFactoryInterface + size=8 align=8 + base size=8 base align=8 +QTextCodecFactoryInterface (0x7f1defc6aee0) 0 nearly-empty + vptr=((& QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface) + 16u) + QFactoryInterface (0x7f1defc6af50) 0 nearly-empty + primary-for QTextCodecFactoryInterface (0x7f1defc6aee0) + +Vtable for QTextCodecPlugin +QTextCodecPlugin::_ZTV16QTextCodecPlugin: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QTextCodecPlugin) +16 QTextCodecPlugin::metaObject +24 QTextCodecPlugin::qt_metacast +32 QTextCodecPlugin::qt_metacall +40 QTextCodecPlugin::~QTextCodecPlugin +48 QTextCodecPlugin::~QTextCodecPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 QTextCodecPlugin::keys +160 QTextCodecPlugin::create +168 (int (*)(...))-0x00000000000000010 +176 (int (*)(...))(& _ZTI16QTextCodecPlugin) +184 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD1Ev +192 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD0Ev +200 QTextCodecPlugin::_ZThn16_NK16QTextCodecPlugin4keysEv +208 QTextCodecPlugin::_ZThn16_N16QTextCodecPlugin6createERK7QString + +Class QTextCodecPlugin + size=24 align=8 + base size=24 base align=8 +QTextCodecPlugin (0x7f1defc70e00) 0 + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 16u) + QObject (0x7f1defc767e0) 0 + primary-for QTextCodecPlugin (0x7f1defc70e00) + QTextCodecFactoryInterface (0x7f1defc76850) 16 nearly-empty + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 184u) + QFactoryInterface (0x7f1defc768c0) 16 nearly-empty + primary-for QTextCodecFactoryInterface (0x7f1defc76850) + +Class QLibraryInfo + size=1 align=1 + base size=0 base align=1 +QLibraryInfo (0x7f1defc8e700) 0 empty + +Vtable for QTranslator +QTranslator::_ZTV11QTranslator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTranslator) +16 QTranslator::metaObject +24 QTranslator::qt_metacast +32 QTranslator::qt_metacall +40 QTranslator::~QTranslator +48 QTranslator::~QTranslator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTranslator::translate +120 QTranslator::isEmpty + +Class QTranslator + size=16 align=8 + base size=16 base align=8 +QTranslator (0x7f1defcd1000) 0 + vptr=((& QTranslator::_ZTV11QTranslator) + 16u) + QObject (0x7f1defcd1070) 0 + primary-for QTranslator (0x7f1defcd1000) + +Class __exception + size=40 align=8 + base size=40 base align=8 +__exception (0x7f1defce4f50) 0 + +Vtable for QMimeData +QMimeData::_ZTV9QMimeData: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QMimeData) +16 QMimeData::metaObject +24 QMimeData::qt_metacast +32 QMimeData::qt_metacall +40 QMimeData::~QMimeData +48 QMimeData::~QMimeData +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMimeData::hasFormat +120 QMimeData::formats +128 QMimeData::retrieveData + +Class QMimeData + size=16 align=8 + base size=16 base align=8 +QMimeData (0x7f1defb50150) 0 + vptr=((& QMimeData::_ZTV9QMimeData) + 16u) + QObject (0x7f1defb501c0) 0 + primary-for QMimeData (0x7f1defb50150) + +Vtable for QEventLoop +QEventLoop::_ZTV10QEventLoop: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QEventLoop) +16 QEventLoop::metaObject +24 QEventLoop::qt_metacast +32 QEventLoop::qt_metacall +40 QEventLoop::~QEventLoop +48 QEventLoop::~QEventLoop +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QEventLoop + size=16 align=8 + base size=16 base align=8 +QEventLoop (0x7f1defb679a0) 0 + vptr=((& QEventLoop::_ZTV10QEventLoop) + 16u) + QObject (0x7f1defb67a10) 0 + primary-for QEventLoop (0x7f1defb679a0) + +Vtable for QEvent +QEvent::_ZTV6QEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QEvent) +16 QEvent::~QEvent +24 QEvent::~QEvent + +Class QEvent + size=24 align=8 + base size=20 base align=8 +QEvent (0x7f1defba7310) 0 + vptr=((& QEvent::_ZTV6QEvent) + 16u) + +Vtable for QTimerEvent +QTimerEvent::_ZTV11QTimerEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTimerEvent) +16 QTimerEvent::~QTimerEvent +24 QTimerEvent::~QTimerEvent + +Class QTimerEvent + size=24 align=8 + base size=24 base align=8 +QTimerEvent (0x7f1defbc1ee0) 0 + vptr=((& QTimerEvent::_ZTV11QTimerEvent) + 16u) + QEvent (0x7f1defbc1f50) 0 + primary-for QTimerEvent (0x7f1defbc1ee0) + +Vtable for QChildEvent +QChildEvent::_ZTV11QChildEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QChildEvent) +16 QChildEvent::~QChildEvent +24 QChildEvent::~QChildEvent + +Class QChildEvent + size=32 align=8 + base size=32 base align=8 +QChildEvent (0x7f1defbc4380) 0 + vptr=((& QChildEvent::_ZTV11QChildEvent) + 16u) + QEvent (0x7f1defbc43f0) 0 + primary-for QChildEvent (0x7f1defbc4380) + +Vtable for QCustomEvent +QCustomEvent::_ZTV12QCustomEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QCustomEvent) +16 QCustomEvent::~QCustomEvent +24 QCustomEvent::~QCustomEvent + +Class QCustomEvent + size=24 align=8 + base size=20 base align=8 +QCustomEvent (0x7f1defbd7620) 0 + vptr=((& QCustomEvent::_ZTV12QCustomEvent) + 16u) + QEvent (0x7f1defbd7690) 0 + primary-for QCustomEvent (0x7f1defbd7620) + +Vtable for QDynamicPropertyChangeEvent +QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QDynamicPropertyChangeEvent) +16 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent +24 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent + +Class QDynamicPropertyChangeEvent + size=32 align=8 + base size=32 base align=8 +QDynamicPropertyChangeEvent (0x7f1defbd7e00) 0 + vptr=((& QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent) + 16u) + QEvent (0x7f1defbd7e70) 0 + primary-for QDynamicPropertyChangeEvent (0x7f1defbd7e00) + +Vtable for QCoreApplication +QCoreApplication::_ZTV16QCoreApplication: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QCoreApplication) +16 QCoreApplication::metaObject +24 QCoreApplication::qt_metacast +32 QCoreApplication::qt_metacall +40 QCoreApplication::~QCoreApplication +48 QCoreApplication::~QCoreApplication +56 QCoreApplication::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCoreApplication::notify +120 QCoreApplication::compressEvent + +Class QCoreApplication + size=16 align=8 + base size=16 base align=8 +QCoreApplication (0x7f1defbe5230) 0 + vptr=((& QCoreApplication::_ZTV16QCoreApplication) + 16u) + QObject (0x7f1defbe52a0) 0 + primary-for QCoreApplication (0x7f1defbe5230) + +Vtable for QSharedMemory +QSharedMemory::_ZTV13QSharedMemory: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSharedMemory) +16 QSharedMemory::metaObject +24 QSharedMemory::qt_metacast +32 QSharedMemory::qt_metacall +40 QSharedMemory::~QSharedMemory +48 QSharedMemory::~QSharedMemory +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSharedMemory + size=16 align=8 + base size=16 base align=8 +QSharedMemory (0x7f1defc12a80) 0 + vptr=((& QSharedMemory::_ZTV13QSharedMemory) + 16u) + QObject (0x7f1defc12af0) 0 + primary-for QSharedMemory (0x7f1defc12a80) + +Class QModelIndex + size=24 align=8 + base size=24 base align=8 +QModelIndex (0x7f1defa2f850) 0 + +Class QPersistentModelIndex + size=8 align=8 + base size=8 base align=8 +QPersistentModelIndex (0x7f1defa58310) 0 + +Vtable for QAbstractItemModel +QAbstractItemModel::_ZTV18QAbstractItemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractItemModel) +16 QAbstractItemModel::metaObject +24 QAbstractItemModel::qt_metacast +32 QAbstractItemModel::qt_metacall +40 QAbstractItemModel::~QAbstractItemModel +48 QAbstractItemModel::~QAbstractItemModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractItemModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractItemModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractItemModel + size=16 align=8 + base size=16 base align=8 +QAbstractItemModel (0x7f1defa655b0) 0 + vptr=((& QAbstractItemModel::_ZTV18QAbstractItemModel) + 16u) + QObject (0x7f1defa65620) 0 + primary-for QAbstractItemModel (0x7f1defa655b0) + +Vtable for QAbstractTableModel +QAbstractTableModel::_ZTV19QAbstractTableModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractTableModel) +16 QAbstractTableModel::metaObject +24 QAbstractTableModel::qt_metacast +32 QAbstractTableModel::qt_metacall +40 QAbstractTableModel::~QAbstractTableModel +48 QAbstractTableModel::~QAbstractTableModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractTableModel::index +120 QAbstractTableModel::parent +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractTableModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractTableModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractTableModel + size=16 align=8 + base size=16 base align=8 +QAbstractTableModel (0x7f1defab9930) 0 + vptr=((& QAbstractTableModel::_ZTV19QAbstractTableModel) + 16u) + QAbstractItemModel (0x7f1defab99a0) 0 + primary-for QAbstractTableModel (0x7f1defab9930) + QObject (0x7f1defab9a10) 0 + primary-for QAbstractItemModel (0x7f1defab99a0) + +Vtable for QAbstractListModel +QAbstractListModel::_ZTV18QAbstractListModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractListModel) +16 QAbstractListModel::metaObject +24 QAbstractListModel::qt_metacast +32 QAbstractListModel::qt_metacall +40 QAbstractListModel::~QAbstractListModel +48 QAbstractListModel::~QAbstractListModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractListModel::index +120 QAbstractListModel::parent +128 __cxa_pure_virtual +136 QAbstractListModel::columnCount +144 QAbstractListModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractListModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractListModel + size=16 align=8 + base size=16 base align=8 +QAbstractListModel (0x7f1defac5ee0) 0 + vptr=((& QAbstractListModel::_ZTV18QAbstractListModel) + 16u) + QAbstractItemModel (0x7f1defac5f50) 0 + primary-for QAbstractListModel (0x7f1defac5ee0) + QObject (0x7f1defac5230) 0 + primary-for QAbstractItemModel (0x7f1defac5f50) + +Vtable for QSignalMapper +QSignalMapper::_ZTV13QSignalMapper: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSignalMapper) +16 QSignalMapper::metaObject +24 QSignalMapper::qt_metacast +32 QSignalMapper::qt_metacall +40 QSignalMapper::~QSignalMapper +48 QSignalMapper::~QSignalMapper +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSignalMapper + size=16 align=8 + base size=16 base align=8 +QSignalMapper (0x7f1defb06000) 0 + vptr=((& QSignalMapper::_ZTV13QSignalMapper) + 16u) + QObject (0x7f1defb06070) 0 + primary-for QSignalMapper (0x7f1defb06000) + +Vtable for QObjectCleanupHandler +QObjectCleanupHandler::_ZTV21QObjectCleanupHandler: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QObjectCleanupHandler) +16 QObjectCleanupHandler::metaObject +24 QObjectCleanupHandler::qt_metacast +32 QObjectCleanupHandler::qt_metacall +40 QObjectCleanupHandler::~QObjectCleanupHandler +48 QObjectCleanupHandler::~QObjectCleanupHandler +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObjectCleanupHandler + size=24 align=8 + base size=24 base align=8 +QObjectCleanupHandler (0x7f1def9203f0) 0 + vptr=((& QObjectCleanupHandler::_ZTV21QObjectCleanupHandler) + 16u) + QObject (0x7f1def920460) 0 + primary-for QObjectCleanupHandler (0x7f1def9203f0) + +Class QBasicTimer + size=4 align=4 + base size=4 base align=4 +QBasicTimer (0x7f1def92f540) 0 + +Vtable for QSocketNotifier +QSocketNotifier::_ZTV15QSocketNotifier: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSocketNotifier) +16 QSocketNotifier::metaObject +24 QSocketNotifier::qt_metacast +32 QSocketNotifier::qt_metacall +40 QSocketNotifier::~QSocketNotifier +48 QSocketNotifier::~QSocketNotifier +56 QSocketNotifier::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSocketNotifier + size=32 align=8 + base size=25 base align=8 +QSocketNotifier (0x7f1def939930) 0 + vptr=((& QSocketNotifier::_ZTV15QSocketNotifier) + 16u) + QObject (0x7f1def9399a0) 0 + primary-for QSocketNotifier (0x7f1def939930) + +Vtable for QTimer +QTimer::_ZTV6QTimer: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QTimer) +16 QTimer::metaObject +24 QTimer::qt_metacast +32 QTimer::qt_metacall +40 QTimer::~QTimer +48 QTimer::~QTimer +56 QObject::event +64 QObject::eventFilter +72 QTimer::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTimer + size=32 align=8 + base size=29 base align=8 +QTimer (0x7f1def955cb0) 0 + vptr=((& QTimer::_ZTV6QTimer) + 16u) + QObject (0x7f1def955d20) 0 + primary-for QTimer (0x7f1def955cb0) + +Vtable for QAbstractEventDispatcher +QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QAbstractEventDispatcher) +16 QAbstractEventDispatcher::metaObject +24 QAbstractEventDispatcher::qt_metacast +32 QAbstractEventDispatcher::qt_metacall +40 QAbstractEventDispatcher::~QAbstractEventDispatcher +48 QAbstractEventDispatcher::~QAbstractEventDispatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 QAbstractEventDispatcher::startingUp +208 QAbstractEventDispatcher::closingDown + +Class QAbstractEventDispatcher + size=16 align=8 + base size=16 base align=8 +QAbstractEventDispatcher (0x7f1def9782a0) 0 + vptr=((& QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher) + 16u) + QObject (0x7f1def978310) 0 + primary-for QAbstractEventDispatcher (0x7f1def9782a0) + +Class QMetaMethod + size=16 align=8 + base size=12 base align=8 +QMetaMethod (0x7f1def993150) 0 + +Class QMetaEnum + size=16 align=8 + base size=12 base align=8 +QMetaEnum (0x7f1def9af5b0) 0 + +Class QMetaProperty + size=32 align=8 + base size=32 base align=8 +QMetaProperty (0x7f1def9bb310) 0 + +Class QMetaClassInfo + size=16 align=8 + base size=12 base align=8 +QMetaClassInfo (0x7f1def9bb9a0) 0 + +Class QSystemSemaphore + size=8 align=8 + base size=8 base align=8 +QSystemSemaphore (0x7f1def9ce4d0) 0 + +Vtable for QLibrary +QLibrary::_ZTV8QLibrary: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QLibrary) +16 QLibrary::metaObject +24 QLibrary::qt_metacast +32 QLibrary::qt_metacall +40 QLibrary::~QLibrary +48 QLibrary::~QLibrary +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QLibrary + size=32 align=8 + base size=25 base align=8 +QLibrary (0x7f1def9cee00) 0 + vptr=((& QLibrary::_ZTV8QLibrary) + 16u) + QObject (0x7f1def9cee70) 0 + primary-for QLibrary (0x7f1def9cee00) + +Vtable for QPluginLoader +QPluginLoader::_ZTV13QPluginLoader: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QPluginLoader) +16 QPluginLoader::metaObject +24 QPluginLoader::qt_metacast +32 QPluginLoader::qt_metacall +40 QPluginLoader::~QPluginLoader +48 QPluginLoader::~QPluginLoader +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QPluginLoader + size=32 align=8 + base size=25 base align=8 +QPluginLoader (0x7f1defa158c0) 0 + vptr=((& QPluginLoader::_ZTV13QPluginLoader) + 16u) + QObject (0x7f1defa15930) 0 + primary-for QPluginLoader (0x7f1defa158c0) + +Class QUuid + size=16 align=4 + base size=16 base align=4 +QUuid (0x7f1def836070) 0 + +Class QSemaphore + size=8 align=8 + base size=8 base align=8 +QSemaphore (0x7f1def8569a0) 0 + +Class QThreadStorageData + size=4 align=4 + base size=4 base align=4 +QThreadStorageData (0x7f1def856ee0) 0 + +Class QReadWriteLock + size=8 align=8 + base size=8 base align=8 +QReadWriteLock (0x7f1def867690) 0 + +Class QReadLocker + size=8 align=8 + base size=8 base align=8 +QReadLocker (0x7f1def867d20) 0 + +Class QWriteLocker + size=8 align=8 + base size=8 base align=8 +QWriteLocker (0x7f1def8980e0) 0 + +Class QColor + size=16 align=4 + base size=14 base align=4 +QColor (0x7f1def8b2e70) 0 + +Class QFont + size=16 align=8 + base size=12 base align=8 +QFont (0x7f1def9090e0) 0 + +Class QPolygon + size=8 align=8 + base size=8 base align=8 +QPolygon (0x7f1def742ee0) 0 + QVector (0x7f1def742f50) 0 + +Class QPolygonF + size=8 align=8 + base size=8 base align=8 +QPolygonF (0x7f1def7a9070) 0 + QVector (0x7f1def7a90e0) 0 + +Class QRegion::QRegionData + size=32 align=8 + base size=32 base align=8 +QRegion::QRegionData (0x7f1def7e35b0) 0 + +Class QRegion + size=8 align=8 + base size=8 base align=8 +QRegion (0x7f1def7c1cb0) 0 + +Class QMatrix + size=48 align=8 + base size=48 base align=8 +QMatrix (0x7f1def7f6e00) 0 + +Class QPainterPath::Element + size=24 align=8 + base size=24 base align=8 +QPainterPath::Element (0x7f1def62c850) 0 + +Class QPainterPath + size=8 align=8 + base size=8 base align=8 +QPainterPath (0x7f1def62c7e0) 0 + +Class QPainterPathPrivate + size=16 align=8 + base size=16 base align=8 +QPainterPathPrivate (0x7f1def670bd0) 0 + +Class QPainterPathStroker + size=8 align=8 + base size=8 base align=8 +QPainterPathStroker (0x7f1def679770) 0 + +Class QTransform + size=88 align=8 + base size=88 base align=8 +QTransform (0x7f1def6dd310) 0 + +Vtable for QPaintDevice +QPaintDevice::_ZTV12QPaintDevice: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QPaintDevice) +16 QPaintDevice::~QPaintDevice +24 QPaintDevice::~QPaintDevice +32 QPaintDevice::devType +40 __cxa_pure_virtual +48 QPaintDevice::metric + +Class QPaintDevice + size=16 align=8 + base size=10 base align=8 +QPaintDevice (0x7f1def554620) 0 + vptr=((& QPaintDevice::_ZTV12QPaintDevice) + 16u) + +Class QImageTextKeyLang + size=16 align=8 + base size=16 base align=8 +QImageTextKeyLang (0x7f1def578f50) 0 + +Vtable for QImage +QImage::_ZTV6QImage: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QImage) +16 QImage::~QImage +24 QImage::~QImage +32 QImage::devType +40 QImage::paintEngine +48 QImage::metric + +Class QImage + size=24 align=8 + base size=24 base align=8 +QImage (0x7f1def5a77e0) 0 + vptr=((& QImage::_ZTV6QImage) + 16u) + QPaintDevice (0x7f1def5a7850) 0 + primary-for QImage (0x7f1def5a77e0) + +Vtable for QPixmap +QPixmap::_ZTV7QPixmap: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QPixmap) +16 QPixmap::~QPixmap +24 QPixmap::~QPixmap +32 QPixmap::devType +40 QPixmap::paintEngine +48 QPixmap::metric + +Class QPixmap + size=24 align=8 + base size=24 base align=8 +QPixmap (0x7f1def448230) 0 + vptr=((& QPixmap::_ZTV7QPixmap) + 16u) + QPaintDevice (0x7f1def4482a0) 0 + primary-for QPixmap (0x7f1def448230) + +Class QBrush + size=8 align=8 + base size=8 base align=8 +QBrush (0x7f1def4953f0) 0 + +Class QBrushData + size=112 align=8 + base size=112 base align=8 +QBrushData (0x7f1def4b8000) 0 + +Class QGradient + size=64 align=8 + base size=64 base align=8 +QGradient (0x7f1def4c91c0) 0 + +Class QLinearGradient + size=64 align=8 + base size=64 base align=8 +QLinearGradient (0x7f1def4d9cb0) 0 + QGradient (0x7f1def4d9d20) 0 + +Class QRadialGradient + size=64 align=8 + base size=64 base align=8 +QRadialGradient (0x7f1def505150) 0 + QGradient (0x7f1def5051c0) 0 + +Class QConicalGradient + size=64 align=8 + base size=64 base align=8 +QConicalGradient (0x7f1def505700) 0 + QGradient (0x7f1def505770) 0 + +Class QPen + size=8 align=8 + base size=8 base align=8 +QPen (0x7f1def505a80) 0 + +Class QTextOption::Tab + size=16 align=8 + base size=14 base align=8 +QTextOption::Tab (0x7f1def2ae230) 0 + +Class QTextOption + size=32 align=8 + base size=32 base align=8 +QTextOption (0x7f1def2ae1c0) 0 + +Class QTextLength + size=16 align=8 + base size=16 base align=8 +QTextLength (0x7f1def30a620) 0 + +Class QTextFormat + size=16 align=8 + base size=12 base align=8 +QTextFormat (0x7f1def3259a0) 0 + +Class QTextCharFormat + size=16 align=8 + base size=12 base align=8 +QTextCharFormat (0x7f1def1cea10) 0 + QTextFormat (0x7f1def1cea80) 0 + +Class QTextBlockFormat + size=16 align=8 + base size=12 base align=8 +QTextBlockFormat (0x7f1def23a690) 0 + QTextFormat (0x7f1def23a700) 0 + +Class QTextListFormat + size=16 align=8 + base size=12 base align=8 +QTextListFormat (0x7f1def25bcb0) 0 + QTextFormat (0x7f1def25bd20) 0 + +Class QTextImageFormat + size=16 align=8 + base size=12 base align=8 +QTextImageFormat (0x7f1def26c1c0) 0 + QTextCharFormat (0x7f1def26c230) 0 + QTextFormat (0x7f1def26c2a0) 0 + +Class QTextFrameFormat + size=16 align=8 + base size=12 base align=8 +QTextFrameFormat (0x7f1def2788c0) 0 + QTextFormat (0x7f1def278930) 0 + +Class QTextTableFormat + size=16 align=8 + base size=12 base align=8 +QTextTableFormat (0x7f1def0ad7e0) 0 + QTextFrameFormat (0x7f1def0ad850) 0 + QTextFormat (0x7f1def0ad8c0) 0 + +Class QTextTableCellFormat + size=16 align=8 + base size=12 base align=8 +QTextTableCellFormat (0x7f1def0c8690) 0 + QTextCharFormat (0x7f1def0c8700) 0 + QTextFormat (0x7f1def0c8770) 0 + +Vtable for QTextObject +QTextObject::_ZTV11QTextObject: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTextObject) +16 QTextObject::metaObject +24 QTextObject::qt_metacast +32 QTextObject::qt_metacall +40 QTextObject::~QTextObject +48 QTextObject::~QTextObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTextObject + size=16 align=8 + base size=16 base align=8 +QTextObject (0x7f1def0deb60) 0 + vptr=((& QTextObject::_ZTV11QTextObject) + 16u) + QObject (0x7f1def0debd0) 0 + primary-for QTextObject (0x7f1def0deb60) + +Vtable for QTextBlockGroup +QTextBlockGroup::_ZTV15QTextBlockGroup: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QTextBlockGroup) +16 QTextBlockGroup::metaObject +24 QTextBlockGroup::qt_metacast +32 QTextBlockGroup::qt_metacall +40 QTextBlockGroup::~QTextBlockGroup +48 QTextBlockGroup::~QTextBlockGroup +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTextBlockGroup::blockInserted +120 QTextBlockGroup::blockRemoved +128 QTextBlockGroup::blockFormatChanged + +Class QTextBlockGroup + size=16 align=8 + base size=16 base align=8 +QTextBlockGroup (0x7f1def0f73f0) 0 + vptr=((& QTextBlockGroup::_ZTV15QTextBlockGroup) + 16u) + QTextObject (0x7f1def0f7460) 0 + primary-for QTextBlockGroup (0x7f1def0f73f0) + QObject (0x7f1def0f74d0) 0 + primary-for QTextObject (0x7f1def0f7460) + +Vtable for QTextFrameLayoutData +QTextFrameLayoutData::_ZTV20QTextFrameLayoutData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QTextFrameLayoutData) +16 QTextFrameLayoutData::~QTextFrameLayoutData +24 QTextFrameLayoutData::~QTextFrameLayoutData + +Class QTextFrameLayoutData + size=8 align=8 + base size=8 base align=8 +QTextFrameLayoutData (0x7f1def108cb0) 0 nearly-empty + vptr=((& QTextFrameLayoutData::_ZTV20QTextFrameLayoutData) + 16u) + +Class QTextFrame::iterator + size=32 align=8 + base size=28 base align=8 +QTextFrame::iterator (0x7f1def112700) 0 + +Vtable for QTextFrame +QTextFrame::_ZTV10QTextFrame: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextFrame) +16 QTextFrame::metaObject +24 QTextFrame::qt_metacast +32 QTextFrame::qt_metacall +40 QTextFrame::~QTextFrame +48 QTextFrame::~QTextFrame +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTextFrame + size=16 align=8 + base size=16 base align=8 +QTextFrame (0x7f1def108e00) 0 + vptr=((& QTextFrame::_ZTV10QTextFrame) + 16u) + QTextObject (0x7f1def108e70) 0 + primary-for QTextFrame (0x7f1def108e00) + QObject (0x7f1def108ee0) 0 + primary-for QTextObject (0x7f1def108e70) + +Vtable for QTextBlockUserData +QTextBlockUserData::_ZTV18QTextBlockUserData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QTextBlockUserData) +16 QTextBlockUserData::~QTextBlockUserData +24 QTextBlockUserData::~QTextBlockUserData + +Class QTextBlockUserData + size=8 align=8 + base size=8 base align=8 +QTextBlockUserData (0x7f1def145850) 0 nearly-empty + vptr=((& QTextBlockUserData::_ZTV18QTextBlockUserData) + 16u) + +Class QTextBlock::iterator + size=24 align=8 + base size=20 base align=8 +QTextBlock::iterator (0x7f1def1511c0) 0 + +Class QTextBlock + size=16 align=8 + base size=12 base align=8 +QTextBlock (0x7f1def1459a0) 0 + +Class QTextFragment + size=16 align=8 + base size=16 base align=8 +QTextFragment (0x7f1def189310) 0 + +Class QFontMetrics + size=8 align=8 + base size=8 base align=8 +QFontMetrics (0x7f1deefa54d0) 0 + +Class QFontMetricsF + size=8 align=8 + base size=8 base align=8 +QFontMetricsF (0x7f1deefbd930) 0 + +Class QFontDatabase + size=8 align=8 + base size=8 base align=8 +QFontDatabase (0x7f1deefc9850) 0 + +Vtable for QAbstractUndoItem +QAbstractUndoItem::_ZTV17QAbstractUndoItem: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAbstractUndoItem) +16 __cxa_pure_virtual +24 __cxa_pure_virtual +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QAbstractUndoItem + size=8 align=8 + base size=8 base align=8 +QAbstractUndoItem (0x7f1deefdf850) 0 nearly-empty + vptr=((& QAbstractUndoItem::_ZTV17QAbstractUndoItem) + 16u) + +Vtable for QTextDocument +QTextDocument::_ZTV13QTextDocument: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QTextDocument) +16 QTextDocument::metaObject +24 QTextDocument::qt_metacast +32 QTextDocument::qt_metacall +40 QTextDocument::~QTextDocument +48 QTextDocument::~QTextDocument +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTextDocument::clear +120 QTextDocument::createObject +128 QTextDocument::loadResource + +Class QTextDocument + size=16 align=8 + base size=16 base align=8 +QTextDocument (0x7f1deeff42a0) 0 + vptr=((& QTextDocument::_ZTV13QTextDocument) + 16u) + QObject (0x7f1deeff4310) 0 + primary-for QTextDocument (0x7f1deeff42a0) + +Class QTextTableCell + size=16 align=8 + base size=12 base align=8 +QTextTableCell (0x7f1def0542a0) 0 + +Vtable for QTextTable +QTextTable::_ZTV10QTextTable: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextTable) +16 QTextTable::metaObject +24 QTextTable::qt_metacast +32 QTextTable::qt_metacall +40 QTextTable::~QTextTable +48 QTextTable::~QTextTable +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTextTable + size=16 align=8 + base size=16 base align=8 +QTextTable (0x7f1def06d3f0) 0 + vptr=((& QTextTable::_ZTV10QTextTable) + 16u) + QTextFrame (0x7f1def06d460) 0 + primary-for QTextTable (0x7f1def06d3f0) + QTextObject (0x7f1def06d4d0) 0 + primary-for QTextFrame (0x7f1def06d460) + QObject (0x7f1def06d540) 0 + primary-for QTextObject (0x7f1def06d4d0) + +Class QTextDocumentWriter + size=8 align=8 + base size=8 base align=8 +QTextDocumentWriter (0x7f1def088bd0) 0 + +Class QKeySequence + size=8 align=8 + base size=8 base align=8 +QKeySequence (0x7f1deee922a0) 0 + +Vtable for QMimeSource +QMimeSource::_ZTV11QMimeSource: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMimeSource) +16 QMimeSource::~QMimeSource +24 QMimeSource::~QMimeSource +32 __cxa_pure_virtual +40 QMimeSource::provides +48 __cxa_pure_virtual + +Class QMimeSource + size=8 align=8 + base size=8 base align=8 +QMimeSource (0x7f1deeeafe70) 0 nearly-empty + vptr=((& QMimeSource::_ZTV11QMimeSource) + 16u) + +Vtable for QDrag +QDrag::_ZTV5QDrag: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QDrag) +16 QDrag::metaObject +24 QDrag::qt_metacast +32 QDrag::qt_metacall +40 QDrag::~QDrag +48 QDrag::~QDrag +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QDrag + size=16 align=8 + base size=16 base align=8 +QDrag (0x7f1deeeaff50) 0 + vptr=((& QDrag::_ZTV5QDrag) + 16u) + QObject (0x7f1deeedc000) 0 + primary-for QDrag (0x7f1deeeaff50) + +Vtable for QInputEvent +QInputEvent::_ZTV11QInputEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QInputEvent) +16 QInputEvent::~QInputEvent +24 QInputEvent::~QInputEvent + +Class QInputEvent + size=24 align=8 + base size=24 base align=8 +QInputEvent (0x7f1deeef0770) 0 + vptr=((& QInputEvent::_ZTV11QInputEvent) + 16u) + QEvent (0x7f1deeef07e0) 0 + primary-for QInputEvent (0x7f1deeef0770) + +Vtable for QMouseEvent +QMouseEvent::_ZTV11QMouseEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMouseEvent) +16 QMouseEvent::~QMouseEvent +24 QMouseEvent::~QMouseEvent + +Class QMouseEvent + size=48 align=8 + base size=48 base align=8 +QMouseEvent (0x7f1deeef0d20) 0 + vptr=((& QMouseEvent::_ZTV11QMouseEvent) + 16u) + QInputEvent (0x7f1deeef0d90) 0 + primary-for QMouseEvent (0x7f1deeef0d20) + QEvent (0x7f1deeef0e00) 0 + primary-for QInputEvent (0x7f1deeef0d90) + +Vtable for QHoverEvent +QHoverEvent::_ZTV11QHoverEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QHoverEvent) +16 QHoverEvent::~QHoverEvent +24 QHoverEvent::~QHoverEvent + +Class QHoverEvent + size=40 align=8 + base size=36 base align=8 +QHoverEvent (0x7f1deef0fb60) 0 + vptr=((& QHoverEvent::_ZTV11QHoverEvent) + 16u) + QEvent (0x7f1deef0fbd0) 0 + primary-for QHoverEvent (0x7f1deef0fb60) + +Vtable for QWheelEvent +QWheelEvent::_ZTV11QWheelEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QWheelEvent) +16 QWheelEvent::~QWheelEvent +24 QWheelEvent::~QWheelEvent + +Class QWheelEvent + size=56 align=8 + base size=52 base align=8 +QWheelEvent (0x7f1deef27230) 0 + vptr=((& QWheelEvent::_ZTV11QWheelEvent) + 16u) + QInputEvent (0x7f1deef272a0) 0 + primary-for QWheelEvent (0x7f1deef27230) + QEvent (0x7f1deef27310) 0 + primary-for QInputEvent (0x7f1deef272a0) + +Vtable for QTabletEvent +QTabletEvent::_ZTV12QTabletEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTabletEvent) +16 QTabletEvent::~QTabletEvent +24 QTabletEvent::~QTabletEvent + +Class QTabletEvent + size=120 align=8 + base size=120 base align=8 +QTabletEvent (0x7f1deef3c070) 0 + vptr=((& QTabletEvent::_ZTV12QTabletEvent) + 16u) + QInputEvent (0x7f1deef3c0e0) 0 + primary-for QTabletEvent (0x7f1deef3c070) + QEvent (0x7f1deef3c150) 0 + primary-for QInputEvent (0x7f1deef3c0e0) + +Vtable for QKeyEvent +QKeyEvent::_ZTV9QKeyEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QKeyEvent) +16 QKeyEvent::~QKeyEvent +24 QKeyEvent::~QKeyEvent + +Class QKeyEvent + size=40 align=8 + base size=39 base align=8 +QKeyEvent (0x7f1deef59380) 0 + vptr=((& QKeyEvent::_ZTV9QKeyEvent) + 16u) + QInputEvent (0x7f1deef593f0) 0 + primary-for QKeyEvent (0x7f1deef59380) + QEvent (0x7f1deef59460) 0 + primary-for QInputEvent (0x7f1deef593f0) + +Vtable for QFocusEvent +QFocusEvent::_ZTV11QFocusEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFocusEvent) +16 QFocusEvent::~QFocusEvent +24 QFocusEvent::~QFocusEvent + +Class QFocusEvent + size=24 align=8 + base size=24 base align=8 +QFocusEvent (0x7f1deef7ccb0) 0 + vptr=((& QFocusEvent::_ZTV11QFocusEvent) + 16u) + QEvent (0x7f1deef7cd20) 0 + primary-for QFocusEvent (0x7f1deef7ccb0) + +Vtable for QPaintEvent +QPaintEvent::_ZTV11QPaintEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QPaintEvent) +16 QPaintEvent::~QPaintEvent +24 QPaintEvent::~QPaintEvent + +Class QPaintEvent + size=56 align=8 + base size=49 base align=8 +QPaintEvent (0x7f1deed89770) 0 + vptr=((& QPaintEvent::_ZTV11QPaintEvent) + 16u) + QEvent (0x7f1deed897e0) 0 + primary-for QPaintEvent (0x7f1deed89770) + +Vtable for QUpdateLaterEvent +QUpdateLaterEvent::_ZTV17QUpdateLaterEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QUpdateLaterEvent) +16 QUpdateLaterEvent::~QUpdateLaterEvent +24 QUpdateLaterEvent::~QUpdateLaterEvent + +Class QUpdateLaterEvent + size=32 align=8 + base size=32 base align=8 +QUpdateLaterEvent (0x7f1deed97380) 0 + vptr=((& QUpdateLaterEvent::_ZTV17QUpdateLaterEvent) + 16u) + QEvent (0x7f1deed973f0) 0 + primary-for QUpdateLaterEvent (0x7f1deed97380) + +Vtable for QMoveEvent +QMoveEvent::_ZTV10QMoveEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QMoveEvent) +16 QMoveEvent::~QMoveEvent +24 QMoveEvent::~QMoveEvent + +Class QMoveEvent + size=40 align=8 + base size=36 base align=8 +QMoveEvent (0x7f1deed977e0) 0 + vptr=((& QMoveEvent::_ZTV10QMoveEvent) + 16u) + QEvent (0x7f1deed97850) 0 + primary-for QMoveEvent (0x7f1deed977e0) + +Vtable for QResizeEvent +QResizeEvent::_ZTV12QResizeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QResizeEvent) +16 QResizeEvent::~QResizeEvent +24 QResizeEvent::~QResizeEvent + +Class QResizeEvent + size=40 align=8 + base size=36 base align=8 +QResizeEvent (0x7f1deed97e70) 0 + vptr=((& QResizeEvent::_ZTV12QResizeEvent) + 16u) + QEvent (0x7f1deed97ee0) 0 + primary-for QResizeEvent (0x7f1deed97e70) + +Vtable for QCloseEvent +QCloseEvent::_ZTV11QCloseEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QCloseEvent) +16 QCloseEvent::~QCloseEvent +24 QCloseEvent::~QCloseEvent + +Class QCloseEvent + size=24 align=8 + base size=20 base align=8 +QCloseEvent (0x7f1deeda83f0) 0 + vptr=((& QCloseEvent::_ZTV11QCloseEvent) + 16u) + QEvent (0x7f1deeda8460) 0 + primary-for QCloseEvent (0x7f1deeda83f0) + +Vtable for QIconDragEvent +QIconDragEvent::_ZTV14QIconDragEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QIconDragEvent) +16 QIconDragEvent::~QIconDragEvent +24 QIconDragEvent::~QIconDragEvent + +Class QIconDragEvent + size=24 align=8 + base size=20 base align=8 +QIconDragEvent (0x7f1deeda8620) 0 + vptr=((& QIconDragEvent::_ZTV14QIconDragEvent) + 16u) + QEvent (0x7f1deeda8690) 0 + primary-for QIconDragEvent (0x7f1deeda8620) + +Vtable for QShowEvent +QShowEvent::_ZTV10QShowEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QShowEvent) +16 QShowEvent::~QShowEvent +24 QShowEvent::~QShowEvent + +Class QShowEvent + size=24 align=8 + base size=20 base align=8 +QShowEvent (0x7f1deeda8850) 0 + vptr=((& QShowEvent::_ZTV10QShowEvent) + 16u) + QEvent (0x7f1deeda88c0) 0 + primary-for QShowEvent (0x7f1deeda8850) + +Vtable for QHideEvent +QHideEvent::_ZTV10QHideEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QHideEvent) +16 QHideEvent::~QHideEvent +24 QHideEvent::~QHideEvent + +Class QHideEvent + size=24 align=8 + base size=20 base align=8 +QHideEvent (0x7f1deeda8a80) 0 + vptr=((& QHideEvent::_ZTV10QHideEvent) + 16u) + QEvent (0x7f1deeda8af0) 0 + primary-for QHideEvent (0x7f1deeda8a80) + +Vtable for QContextMenuEvent +QContextMenuEvent::_ZTV17QContextMenuEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QContextMenuEvent) +16 QContextMenuEvent::~QContextMenuEvent +24 QContextMenuEvent::~QContextMenuEvent + +Class QContextMenuEvent + size=48 align=8 + base size=41 base align=8 +QContextMenuEvent (0x7f1deeda8cb0) 0 + vptr=((& QContextMenuEvent::_ZTV17QContextMenuEvent) + 16u) + QInputEvent (0x7f1deeda8d20) 0 + primary-for QContextMenuEvent (0x7f1deeda8cb0) + QEvent (0x7f1deeda8d90) 0 + primary-for QInputEvent (0x7f1deeda8d20) + +Class QInputMethodEvent::Attribute + size=32 align=8 + base size=32 base align=8 +QInputMethodEvent::Attribute (0x7f1deedc2850) 0 + +Vtable for QInputMethodEvent +QInputMethodEvent::_ZTV17QInputMethodEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QInputMethodEvent) +16 QInputMethodEvent::~QInputMethodEvent +24 QInputMethodEvent::~QInputMethodEvent + +Class QInputMethodEvent + size=56 align=8 + base size=56 base align=8 +QInputMethodEvent (0x7f1deedc2770) 0 + vptr=((& QInputMethodEvent::_ZTV17QInputMethodEvent) + 16u) + QEvent (0x7f1deedc27e0) 0 + primary-for QInputMethodEvent (0x7f1deedc2770) + +Vtable for QDropEvent +QDropEvent::_ZTV10QDropEvent: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QDropEvent) +16 QDropEvent::~QDropEvent +24 QDropEvent::~QDropEvent +32 QDropEvent::format +40 QDropEvent::encodedData +48 QDropEvent::provides +56 (int (*)(...))-0x00000000000000018 +64 (int (*)(...))(& _ZTI10QDropEvent) +72 QDropEvent::_ZThn24_N10QDropEventD1Ev +80 QDropEvent::_ZThn24_N10QDropEventD0Ev +88 QDropEvent::_ZThn24_NK10QDropEvent6formatEi +96 QDropEvent::_ZThn24_NK10QDropEvent8providesEPKc +104 QDropEvent::_ZThn24_NK10QDropEvent11encodedDataEPKc + +Class QDropEvent + size=80 align=8 + base size=80 base align=8 +QDropEvent (0x7f1deedfb200) 0 + vptr=((& QDropEvent::_ZTV10QDropEvent) + 16u) + QEvent (0x7f1deedf8f50) 0 + primary-for QDropEvent (0x7f1deedfb200) + QMimeSource (0x7f1deedfc000) 24 nearly-empty + vptr=((& QDropEvent::_ZTV10QDropEvent) + 72u) + +Vtable for QDragMoveEvent +QDragMoveEvent::_ZTV14QDragMoveEvent: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QDragMoveEvent) +16 QDragMoveEvent::~QDragMoveEvent +24 QDragMoveEvent::~QDragMoveEvent +32 QDropEvent::format +40 QDropEvent::encodedData +48 QDropEvent::provides +56 (int (*)(...))-0x00000000000000018 +64 (int (*)(...))(& _ZTI14QDragMoveEvent) +72 QDragMoveEvent::_ZThn24_N14QDragMoveEventD1Ev +80 QDragMoveEvent::_ZThn24_N14QDragMoveEventD0Ev +88 QDropEvent::_ZThn24_NK10QDropEvent6formatEi +96 QDropEvent::_ZThn24_NK10QDropEvent8providesEPKc +104 QDropEvent::_ZThn24_NK10QDropEvent11encodedDataEPKc + +Class QDragMoveEvent + size=96 align=8 + base size=96 base align=8 +QDragMoveEvent (0x7f1deee15cb0) 0 + vptr=((& QDragMoveEvent::_ZTV14QDragMoveEvent) + 16u) + QDropEvent (0x7f1deee14900) 0 + primary-for QDragMoveEvent (0x7f1deee15cb0) + QEvent (0x7f1deee15d20) 0 + primary-for QDropEvent (0x7f1deee14900) + QMimeSource (0x7f1deee15d90) 24 nearly-empty + vptr=((& QDragMoveEvent::_ZTV14QDragMoveEvent) + 72u) + +Vtable for QDragEnterEvent +QDragEnterEvent::_ZTV15QDragEnterEvent: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QDragEnterEvent) +16 QDragEnterEvent::~QDragEnterEvent +24 QDragEnterEvent::~QDragEnterEvent +32 QDropEvent::format +40 QDropEvent::encodedData +48 QDropEvent::provides +56 (int (*)(...))-0x00000000000000018 +64 (int (*)(...))(& _ZTI15QDragEnterEvent) +72 QDragEnterEvent::_ZThn24_N15QDragEnterEventD1Ev +80 QDragEnterEvent::_ZThn24_N15QDragEnterEventD0Ev +88 QDropEvent::_ZThn24_NK10QDropEvent6formatEi +96 QDropEvent::_ZThn24_NK10QDropEvent8providesEPKc +104 QDropEvent::_ZThn24_NK10QDropEvent11encodedDataEPKc + +Class QDragEnterEvent + size=96 align=8 + base size=96 base align=8 +QDragEnterEvent (0x7f1deee27460) 0 + vptr=((& QDragEnterEvent::_ZTV15QDragEnterEvent) + 16u) + QDragMoveEvent (0x7f1deee274d0) 0 + primary-for QDragEnterEvent (0x7f1deee27460) + QDropEvent (0x7f1deee25280) 0 + primary-for QDragMoveEvent (0x7f1deee274d0) + QEvent (0x7f1deee27540) 0 + primary-for QDropEvent (0x7f1deee25280) + QMimeSource (0x7f1deee275b0) 24 nearly-empty + vptr=((& QDragEnterEvent::_ZTV15QDragEnterEvent) + 72u) + +Vtable for QDragResponseEvent +QDragResponseEvent::_ZTV18QDragResponseEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QDragResponseEvent) +16 QDragResponseEvent::~QDragResponseEvent +24 QDragResponseEvent::~QDragResponseEvent + +Class QDragResponseEvent + size=24 align=8 + base size=21 base align=8 +QDragResponseEvent (0x7f1deee27770) 0 + vptr=((& QDragResponseEvent::_ZTV18QDragResponseEvent) + 16u) + QEvent (0x7f1deee277e0) 0 + primary-for QDragResponseEvent (0x7f1deee27770) + +Vtable for QDragLeaveEvent +QDragLeaveEvent::_ZTV15QDragLeaveEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QDragLeaveEvent) +16 QDragLeaveEvent::~QDragLeaveEvent +24 QDragLeaveEvent::~QDragLeaveEvent + +Class QDragLeaveEvent + size=24 align=8 + base size=20 base align=8 +QDragLeaveEvent (0x7f1deee27bd0) 0 + vptr=((& QDragLeaveEvent::_ZTV15QDragLeaveEvent) + 16u) + QEvent (0x7f1deee27c40) 0 + primary-for QDragLeaveEvent (0x7f1deee27bd0) + +Vtable for QHelpEvent +QHelpEvent::_ZTV10QHelpEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QHelpEvent) +16 QHelpEvent::~QHelpEvent +24 QHelpEvent::~QHelpEvent + +Class QHelpEvent + size=40 align=8 + base size=36 base align=8 +QHelpEvent (0x7f1deee27e00) 0 + vptr=((& QHelpEvent::_ZTV10QHelpEvent) + 16u) + QEvent (0x7f1deee27e70) 0 + primary-for QHelpEvent (0x7f1deee27e00) + +Vtable for QStatusTipEvent +QStatusTipEvent::_ZTV15QStatusTipEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QStatusTipEvent) +16 QStatusTipEvent::~QStatusTipEvent +24 QStatusTipEvent::~QStatusTipEvent + +Class QStatusTipEvent + size=32 align=8 + base size=32 base align=8 +QStatusTipEvent (0x7f1deee38e70) 0 + vptr=((& QStatusTipEvent::_ZTV15QStatusTipEvent) + 16u) + QEvent (0x7f1deee38ee0) 0 + primary-for QStatusTipEvent (0x7f1deee38e70) + +Vtable for QWhatsThisClickedEvent +QWhatsThisClickedEvent::_ZTV22QWhatsThisClickedEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QWhatsThisClickedEvent) +16 QWhatsThisClickedEvent::~QWhatsThisClickedEvent +24 QWhatsThisClickedEvent::~QWhatsThisClickedEvent + +Class QWhatsThisClickedEvent + size=32 align=8 + base size=32 base align=8 +QWhatsThisClickedEvent (0x7f1deee3d380) 0 + vptr=((& QWhatsThisClickedEvent::_ZTV22QWhatsThisClickedEvent) + 16u) + QEvent (0x7f1deee3d3f0) 0 + primary-for QWhatsThisClickedEvent (0x7f1deee3d380) + +Vtable for QActionEvent +QActionEvent::_ZTV12QActionEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QActionEvent) +16 QActionEvent::~QActionEvent +24 QActionEvent::~QActionEvent + +Class QActionEvent + size=40 align=8 + base size=40 base align=8 +QActionEvent (0x7f1deee3d850) 0 + vptr=((& QActionEvent::_ZTV12QActionEvent) + 16u) + QEvent (0x7f1deee3d8c0) 0 + primary-for QActionEvent (0x7f1deee3d850) + +Vtable for QFileOpenEvent +QFileOpenEvent::_ZTV14QFileOpenEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QFileOpenEvent) +16 QFileOpenEvent::~QFileOpenEvent +24 QFileOpenEvent::~QFileOpenEvent + +Class QFileOpenEvent + size=32 align=8 + base size=32 base align=8 +QFileOpenEvent (0x7f1deee3dee0) 0 + vptr=((& QFileOpenEvent::_ZTV14QFileOpenEvent) + 16u) + QEvent (0x7f1deee3df50) 0 + primary-for QFileOpenEvent (0x7f1deee3dee0) + +Vtable for QToolBarChangeEvent +QToolBarChangeEvent::_ZTV19QToolBarChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QToolBarChangeEvent) +16 QToolBarChangeEvent::~QToolBarChangeEvent +24 QToolBarChangeEvent::~QToolBarChangeEvent + +Class QToolBarChangeEvent + size=24 align=8 + base size=21 base align=8 +QToolBarChangeEvent (0x7f1deee51230) 0 + vptr=((& QToolBarChangeEvent::_ZTV19QToolBarChangeEvent) + 16u) + QEvent (0x7f1deee512a0) 0 + primary-for QToolBarChangeEvent (0x7f1deee51230) + +Vtable for QShortcutEvent +QShortcutEvent::_ZTV14QShortcutEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QShortcutEvent) +16 QShortcutEvent::~QShortcutEvent +24 QShortcutEvent::~QShortcutEvent + +Class QShortcutEvent + size=40 align=8 + base size=40 base align=8 +QShortcutEvent (0x7f1deee51770) 0 + vptr=((& QShortcutEvent::_ZTV14QShortcutEvent) + 16u) + QEvent (0x7f1deee517e0) 0 + primary-for QShortcutEvent (0x7f1deee51770) + +Vtable for QClipboardEvent +QClipboardEvent::_ZTV15QClipboardEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QClipboardEvent) +16 QClipboardEvent::~QClipboardEvent +24 QClipboardEvent::~QClipboardEvent + +Class QClipboardEvent + size=24 align=8 + base size=20 base align=8 +QClipboardEvent (0x7f1deee5e620) 0 + vptr=((& QClipboardEvent::_ZTV15QClipboardEvent) + 16u) + QEvent (0x7f1deee5e690) 0 + primary-for QClipboardEvent (0x7f1deee5e620) + +Vtable for QWindowStateChangeEvent +QWindowStateChangeEvent::_ZTV23QWindowStateChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QWindowStateChangeEvent) +16 QWindowStateChangeEvent::~QWindowStateChangeEvent +24 QWindowStateChangeEvent::~QWindowStateChangeEvent + +Class QWindowStateChangeEvent + size=24 align=8 + base size=24 base align=8 +QWindowStateChangeEvent (0x7f1deee5ea80) 0 + vptr=((& QWindowStateChangeEvent::_ZTV23QWindowStateChangeEvent) + 16u) + QEvent (0x7f1deee5eaf0) 0 + primary-for QWindowStateChangeEvent (0x7f1deee5ea80) + +Vtable for QMenubarUpdatedEvent +QMenubarUpdatedEvent::_ZTV20QMenubarUpdatedEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QMenubarUpdatedEvent) +16 QMenubarUpdatedEvent::~QMenubarUpdatedEvent +24 QMenubarUpdatedEvent::~QMenubarUpdatedEvent + +Class QMenubarUpdatedEvent + size=32 align=8 + base size=32 base align=8 +QMenubarUpdatedEvent (0x7f1deee5e7e0) 0 + vptr=((& QMenubarUpdatedEvent::_ZTV20QMenubarUpdatedEvent) + 16u) + QEvent (0x7f1deee5ecb0) 0 + primary-for QMenubarUpdatedEvent (0x7f1deee5e7e0) + +Class QTextInlineObject + size=16 align=8 + base size=16 base align=8 +QTextInlineObject (0x7f1deee6ba10) 0 + +Class QTextLayout::FormatRange + size=24 align=8 + base size=24 base align=8 +QTextLayout::FormatRange (0x7f1deee7bcb0) 0 + +Class QTextLayout + size=8 align=8 + base size=8 base align=8 +QTextLayout (0x7f1deee7ba10) 0 + +Class QTextLine + size=16 align=8 + base size=16 base align=8 +QTextLine (0x7f1deec95a80) 0 + +Vtable for QTextList +QTextList::_ZTV9QTextList: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTextList) +16 QTextList::metaObject +24 QTextList::qt_metacast +32 QTextList::qt_metacall +40 QTextList::~QTextList +48 QTextList::~QTextList +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTextBlockGroup::blockInserted +120 QTextBlockGroup::blockRemoved +128 QTextBlockGroup::blockFormatChanged + +Class QTextList + size=16 align=8 + base size=16 base align=8 +QTextList (0x7f1deecc7310) 0 + vptr=((& QTextList::_ZTV9QTextList) + 16u) + QTextBlockGroup (0x7f1deecc7380) 0 + primary-for QTextList (0x7f1deecc7310) + QTextObject (0x7f1deecc73f0) 0 + primary-for QTextBlockGroup (0x7f1deecc7380) + QObject (0x7f1deecc7460) 0 + primary-for QTextObject (0x7f1deecc73f0) + +Class QFontInfo + size=8 align=8 + base size=8 base align=8 +QFontInfo (0x7f1deeced1c0) 0 + +Class QTextDocumentFragment + size=8 align=8 + base size=8 base align=8 +QTextDocumentFragment (0x7f1deecedcb0) 0 + +Class QTextCursor + size=8 align=8 + base size=8 base align=8 +QTextCursor (0x7f1deecf8700) 0 + +Class QPalette + size=16 align=8 + base size=12 base align=8 +QPalette (0x7f1deed0bbd0) 0 + +Class QColorGroup + size=16 align=8 + base size=12 base align=8 +QColorGroup (0x7f1deed724d0) 0 + QPalette (0x7f1deed72540) 0 + +Class QAbstractTextDocumentLayout::Selection + size=24 align=8 + base size=24 base align=8 +QAbstractTextDocumentLayout::Selection (0x7f1deeba9a10) 0 + +Class QAbstractTextDocumentLayout::PaintContext + size=64 align=8 + base size=64 base align=8 +QAbstractTextDocumentLayout::PaintContext (0x7f1deeba9a80) 0 + +Vtable for QAbstractTextDocumentLayout +QAbstractTextDocumentLayout::_ZTV27QAbstractTextDocumentLayout: 24u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QAbstractTextDocumentLayout) +16 QAbstractTextDocumentLayout::metaObject +24 QAbstractTextDocumentLayout::qt_metacast +32 QAbstractTextDocumentLayout::qt_metacall +40 QAbstractTextDocumentLayout::~QAbstractTextDocumentLayout +48 QAbstractTextDocumentLayout::~QAbstractTextDocumentLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 QAbstractTextDocumentLayout::resizeInlineObject +176 QAbstractTextDocumentLayout::positionInlineObject +184 QAbstractTextDocumentLayout::drawInlineObject + +Class QAbstractTextDocumentLayout + size=16 align=8 + base size=16 base align=8 +QAbstractTextDocumentLayout (0x7f1deeba97e0) 0 + vptr=((& QAbstractTextDocumentLayout::_ZTV27QAbstractTextDocumentLayout) + 16u) + QObject (0x7f1deeba9850) 0 + primary-for QAbstractTextDocumentLayout (0x7f1deeba97e0) + +Vtable for QTextObjectInterface +QTextObjectInterface::_ZTV20QTextObjectInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QTextObjectInterface) +16 QTextObjectInterface::~QTextObjectInterface +24 QTextObjectInterface::~QTextObjectInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QTextObjectInterface + size=8 align=8 + base size=8 base align=8 +QTextObjectInterface (0x7f1deebf1150) 0 nearly-empty + vptr=((& QTextObjectInterface::_ZTV20QTextObjectInterface) + 16u) + +Vtable for QSyntaxHighlighter +QSyntaxHighlighter::_ZTV18QSyntaxHighlighter: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QSyntaxHighlighter) +16 QSyntaxHighlighter::metaObject +24 QSyntaxHighlighter::qt_metacast +32 QSyntaxHighlighter::qt_metacall +40 QSyntaxHighlighter::~QSyntaxHighlighter +48 QSyntaxHighlighter::~QSyntaxHighlighter +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual + +Class QSyntaxHighlighter + size=16 align=8 + base size=16 base align=8 +QSyntaxHighlighter (0x7f1deebfd2a0) 0 + vptr=((& QSyntaxHighlighter::_ZTV18QSyntaxHighlighter) + 16u) + QObject (0x7f1deebfd310) 0 + primary-for QSyntaxHighlighter (0x7f1deebfd2a0) + +Vtable for QUndoGroup +QUndoGroup::_ZTV10QUndoGroup: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QUndoGroup) +16 QUndoGroup::metaObject +24 QUndoGroup::qt_metacast +32 QUndoGroup::qt_metacall +40 QUndoGroup::~QUndoGroup +48 QUndoGroup::~QUndoGroup +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QUndoGroup + size=16 align=8 + base size=16 base align=8 +QUndoGroup (0x7f1deec13c40) 0 + vptr=((& QUndoGroup::_ZTV10QUndoGroup) + 16u) + QObject (0x7f1deec13cb0) 0 + primary-for QUndoGroup (0x7f1deec13c40) + +Class QDesktopServices + size=1 align=1 + base size=0 base align=1 +QDesktopServices (0x7f1deec307e0) 0 empty + +Class QSizePolicy + size=4 align=4 + base size=4 base align=4 +QSizePolicy (0x7f1deec30930) 0 + +Class QCursor + size=8 align=8 + base size=8 base align=8 +QCursor (0x7f1deeaec690) 0 + +Class QWidgetData + size=88 align=8 + base size=88 base align=8 +QWidgetData (0x7f1deeaece70) 0 + +Vtable for QWidget +QWidget::_ZTV7QWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QWidget) +16 QWidget::metaObject +24 QWidget::qt_metacast +32 QWidget::qt_metacall +40 QWidget::~QWidget +48 QWidget::~QWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI7QWidget) +464 QWidget::_ZThn16_N7QWidgetD1Ev +472 QWidget::_ZThn16_N7QWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWidget + size=40 align=8 + base size=40 base align=8 +QWidget (0x7f1deeae8a00) 0 + vptr=((& QWidget::_ZTV7QWidget) + 16u) + QObject (0x7f1deeaecee0) 0 + primary-for QWidget (0x7f1deeae8a00) + QPaintDevice (0x7f1deeaecf50) 16 + vptr=((& QWidget::_ZTV7QWidget) + 464u) + +Vtable for QFrame +QFrame::_ZTV6QFrame: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QFrame) +16 QFrame::metaObject +24 QFrame::qt_metacast +32 QFrame::qt_metacall +40 QFrame::~QFrame +48 QFrame::~QFrame +56 QFrame::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QFrame::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFrame::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI6QFrame) +464 QFrame::_ZThn16_N6QFrameD1Ev +472 QFrame::_ZThn16_N6QFrameD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFrame + size=40 align=8 + base size=40 base align=8 +QFrame (0x7f1deea6ccb0) 0 + vptr=((& QFrame::_ZTV6QFrame) + 16u) + QWidget (0x7f1deea71400) 0 + primary-for QFrame (0x7f1deea6ccb0) + QObject (0x7f1deea6cd20) 0 + primary-for QWidget (0x7f1deea71400) + QPaintDevice (0x7f1deea6cd90) 16 + vptr=((& QFrame::_ZTV6QFrame) + 464u) + +Vtable for QAbstractScrollArea +QAbstractScrollArea::_ZTV19QAbstractScrollArea: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractScrollArea) +16 QAbstractScrollArea::metaObject +24 QAbstractScrollArea::qt_metacast +32 QAbstractScrollArea::qt_metacall +40 QAbstractScrollArea::~QAbstractScrollArea +48 QAbstractScrollArea::~QAbstractScrollArea +56 QAbstractScrollArea::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractScrollArea::mousePressEvent +168 QAbstractScrollArea::mouseReleaseEvent +176 QAbstractScrollArea::mouseDoubleClickEvent +184 QAbstractScrollArea::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractScrollArea::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractScrollArea::paintEvent +256 QWidget::moveEvent +264 QAbstractScrollArea::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractScrollArea::dragEnterEvent +312 QAbstractScrollArea::dragMoveEvent +320 QAbstractScrollArea::dragLeaveEvent +328 QAbstractScrollArea::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QAbstractScrollArea::scrollContentsBy +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI19QAbstractScrollArea) +480 QAbstractScrollArea::_ZThn16_N19QAbstractScrollAreaD1Ev +488 QAbstractScrollArea::_ZThn16_N19QAbstractScrollAreaD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractScrollArea + size=40 align=8 + base size=40 base align=8 +QAbstractScrollArea (0x7f1dee894310) 0 + vptr=((& QAbstractScrollArea::_ZTV19QAbstractScrollArea) + 16u) + QFrame (0x7f1dee894380) 0 + primary-for QAbstractScrollArea (0x7f1dee894310) + QWidget (0x7f1dee889700) 0 + primary-for QFrame (0x7f1dee894380) + QObject (0x7f1dee8943f0) 0 + primary-for QWidget (0x7f1dee889700) + QPaintDevice (0x7f1dee894460) 16 + vptr=((& QAbstractScrollArea::_ZTV19QAbstractScrollArea) + 480u) + +Class QItemSelectionRange + size=16 align=8 + base size=16 base align=8 +QItemSelectionRange (0x7f1dee8b7230) 0 + +Vtable for QItemSelectionModel +QItemSelectionModel::_ZTV19QItemSelectionModel: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QItemSelectionModel) +16 QItemSelectionModel::metaObject +24 QItemSelectionModel::qt_metacast +32 QItemSelectionModel::qt_metacall +40 QItemSelectionModel::~QItemSelectionModel +48 QItemSelectionModel::~QItemSelectionModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QItemSelectionModel::select +120 QItemSelectionModel::select +128 QItemSelectionModel::clear +136 QItemSelectionModel::reset + +Class QItemSelectionModel + size=16 align=8 + base size=16 base align=8 +QItemSelectionModel (0x7f1dee91d700) 0 + vptr=((& QItemSelectionModel::_ZTV19QItemSelectionModel) + 16u) + QObject (0x7f1dee91d770) 0 + primary-for QItemSelectionModel (0x7f1dee91d700) + +Class QItemSelection + size=8 align=8 + base size=8 base align=8 +QItemSelection (0x7f1dee95ebd0) 0 + QList (0x7f1dee95ec40) 0 + +Vtable for QValidator +QValidator::_ZTV10QValidator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QValidator) +16 QValidator::metaObject +24 QValidator::qt_metacast +32 QValidator::qt_metacall +40 QValidator::~QValidator +48 QValidator::~QValidator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 QValidator::fixup + +Class QValidator + size=16 align=8 + base size=16 base align=8 +QValidator (0x7f1dee7994d0) 0 + vptr=((& QValidator::_ZTV10QValidator) + 16u) + QObject (0x7f1dee799540) 0 + primary-for QValidator (0x7f1dee7994d0) + +Vtable for QIntValidator +QIntValidator::_ZTV13QIntValidator: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QIntValidator) +16 QIntValidator::metaObject +24 QIntValidator::qt_metacast +32 QIntValidator::qt_metacall +40 QIntValidator::~QIntValidator +48 QIntValidator::~QIntValidator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QIntValidator::validate +120 QValidator::fixup +128 QIntValidator::setRange + +Class QIntValidator + size=24 align=8 + base size=24 base align=8 +QIntValidator (0x7f1dee7b2310) 0 + vptr=((& QIntValidator::_ZTV13QIntValidator) + 16u) + QValidator (0x7f1dee7b2380) 0 + primary-for QIntValidator (0x7f1dee7b2310) + QObject (0x7f1dee7b23f0) 0 + primary-for QValidator (0x7f1dee7b2380) + +Vtable for QDoubleValidator +QDoubleValidator::_ZTV16QDoubleValidator: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QDoubleValidator) +16 QDoubleValidator::metaObject +24 QDoubleValidator::qt_metacast +32 QDoubleValidator::qt_metacall +40 QDoubleValidator::~QDoubleValidator +48 QDoubleValidator::~QDoubleValidator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QDoubleValidator::validate +120 QValidator::fixup +128 QDoubleValidator::setRange + +Class QDoubleValidator + size=40 align=8 + base size=36 base align=8 +QDoubleValidator (0x7f1dee7cb2a0) 0 + vptr=((& QDoubleValidator::_ZTV16QDoubleValidator) + 16u) + QValidator (0x7f1dee7cb310) 0 + primary-for QDoubleValidator (0x7f1dee7cb2a0) + QObject (0x7f1dee7cb380) 0 + primary-for QValidator (0x7f1dee7cb310) + +Vtable for QRegExpValidator +QRegExpValidator::_ZTV16QRegExpValidator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QRegExpValidator) +16 QRegExpValidator::metaObject +24 QRegExpValidator::qt_metacast +32 QRegExpValidator::qt_metacall +40 QRegExpValidator::~QRegExpValidator +48 QRegExpValidator::~QRegExpValidator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QRegExpValidator::validate +120 QValidator::fixup + +Class QRegExpValidator + size=24 align=8 + base size=24 base align=8 +QRegExpValidator (0x7f1dee7e8b60) 0 + vptr=((& QRegExpValidator::_ZTV16QRegExpValidator) + 16u) + QValidator (0x7f1dee7e8bd0) 0 + primary-for QRegExpValidator (0x7f1dee7e8b60) + QObject (0x7f1dee7e8c40) 0 + primary-for QValidator (0x7f1dee7e8bd0) + +Vtable for QAbstractSpinBox +QAbstractSpinBox::_ZTV16QAbstractSpinBox: 68u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QAbstractSpinBox) +16 QAbstractSpinBox::metaObject +24 QAbstractSpinBox::qt_metacast +32 QAbstractSpinBox::qt_metacall +40 QAbstractSpinBox::~QAbstractSpinBox +48 QAbstractSpinBox::~QAbstractSpinBox +56 QAbstractSpinBox::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractSpinBox::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractSpinBox::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QAbstractSpinBox::wheelEvent +200 QAbstractSpinBox::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QAbstractSpinBox::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractSpinBox::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractSpinBox::validate +456 QAbstractSpinBox::fixup +464 QAbstractSpinBox::stepBy +472 QAbstractSpinBox::clear +480 QAbstractSpinBox::stepEnabled +488 (int (*)(...))-0x00000000000000010 +496 (int (*)(...))(& _ZTI16QAbstractSpinBox) +504 QAbstractSpinBox::_ZThn16_N16QAbstractSpinBoxD1Ev +512 QAbstractSpinBox::_ZThn16_N16QAbstractSpinBoxD0Ev +520 QWidget::_ZThn16_NK7QWidget7devTypeEv +528 QWidget::_ZThn16_NK7QWidget11paintEngineEv +536 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractSpinBox + size=40 align=8 + base size=40 base align=8 +QAbstractSpinBox (0x7f1dee7fc7e0) 0 + vptr=((& QAbstractSpinBox::_ZTV16QAbstractSpinBox) + 16u) + QWidget (0x7f1dee7eb700) 0 + primary-for QAbstractSpinBox (0x7f1dee7fc7e0) + QObject (0x7f1dee7fc850) 0 + primary-for QWidget (0x7f1dee7eb700) + QPaintDevice (0x7f1dee7fc8c0) 16 + vptr=((& QAbstractSpinBox::_ZTV16QAbstractSpinBox) + 504u) + +Class QIcon + size=8 align=8 + base size=8 base align=8 +QIcon (0x7f1dee84a7e0) 0 + +Vtable for QAbstractSlider +QAbstractSlider::_ZTV15QAbstractSlider: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QAbstractSlider) +16 QAbstractSlider::metaObject +24 QAbstractSlider::qt_metacast +32 QAbstractSlider::qt_metacall +40 QAbstractSlider::~QAbstractSlider +48 QAbstractSlider::~QAbstractSlider +56 QAbstractSlider::event +64 QObject::eventFilter +72 QAbstractSlider::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QAbstractSlider::wheelEvent +200 QAbstractSlider::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractSlider::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractSlider::sliderChange +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI15QAbstractSlider) +472 QAbstractSlider::_ZThn16_N15QAbstractSliderD1Ev +480 QAbstractSlider::_ZThn16_N15QAbstractSliderD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractSlider + size=40 align=8 + base size=40 base align=8 +QAbstractSlider (0x7f1dee688380) 0 + vptr=((& QAbstractSlider::_ZTV15QAbstractSlider) + 16u) + QWidget (0x7f1dee68b380) 0 + primary-for QAbstractSlider (0x7f1dee688380) + QObject (0x7f1dee6883f0) 0 + primary-for QWidget (0x7f1dee68b380) + QPaintDevice (0x7f1dee688460) 16 + vptr=((& QAbstractSlider::_ZTV15QAbstractSlider) + 472u) + +Vtable for QSlider +QSlider::_ZTV7QSlider: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QSlider) +16 QSlider::metaObject +24 QSlider::qt_metacast +32 QSlider::qt_metacall +40 QSlider::~QSlider +48 QSlider::~QSlider +56 QSlider::event +64 QObject::eventFilter +72 QAbstractSlider::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QSlider::sizeHint +136 QSlider::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QSlider::mousePressEvent +168 QSlider::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QSlider::mouseMoveEvent +192 QAbstractSlider::wheelEvent +200 QAbstractSlider::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QSlider::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractSlider::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractSlider::sliderChange +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI7QSlider) +472 QSlider::_ZThn16_N7QSliderD1Ev +480 QSlider::_ZThn16_N7QSliderD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSlider + size=40 align=8 + base size=40 base align=8 +QSlider (0x7f1dee6bf1c0) 0 + vptr=((& QSlider::_ZTV7QSlider) + 16u) + QAbstractSlider (0x7f1dee6bf230) 0 + primary-for QSlider (0x7f1dee6bf1c0) + QWidget (0x7f1dee6bc380) 0 + primary-for QAbstractSlider (0x7f1dee6bf230) + QObject (0x7f1dee6bf2a0) 0 + primary-for QWidget (0x7f1dee6bc380) + QPaintDevice (0x7f1dee6bf310) 16 + vptr=((& QSlider::_ZTV7QSlider) + 472u) + +Vtable for QStyle +QStyle::_ZTV6QStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QStyle) +16 QStyle::metaObject +24 QStyle::qt_metacast +32 QStyle::qt_metacall +40 QStyle::~QStyle +48 QStyle::~QStyle +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QStyle::polish +120 QStyle::unpolish +128 QStyle::polish +136 QStyle::unpolish +144 QStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QStyle::standardPalette +192 __cxa_pure_virtual +200 __cxa_pure_virtual +208 __cxa_pure_virtual +216 __cxa_pure_virtual +224 __cxa_pure_virtual +232 __cxa_pure_virtual +240 __cxa_pure_virtual +248 __cxa_pure_virtual +256 __cxa_pure_virtual +264 __cxa_pure_virtual +272 __cxa_pure_virtual + +Class QStyle + size=16 align=8 + base size=16 base align=8 +QStyle (0x7f1dee6e5770) 0 + vptr=((& QStyle::_ZTV6QStyle) + 16u) + QObject (0x7f1dee6e57e0) 0 + primary-for QStyle (0x7f1dee6e5770) + +Vtable for QTabBar +QTabBar::_ZTV7QTabBar: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QTabBar) +16 QTabBar::metaObject +24 QTabBar::qt_metacast +32 QTabBar::qt_metacall +40 QTabBar::~QTabBar +48 QTabBar::~QTabBar +56 QTabBar::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QTabBar::sizeHint +136 QTabBar::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTabBar::mousePressEvent +168 QTabBar::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QTabBar::mouseMoveEvent +192 QTabBar::wheelEvent +200 QTabBar::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTabBar::paintEvent +256 QWidget::moveEvent +264 QTabBar::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QTabBar::showEvent +344 QTabBar::hideEvent +352 QWidget::x11Event +360 QTabBar::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QTabBar::tabSizeHint +456 QTabBar::tabInserted +464 QTabBar::tabRemoved +472 QTabBar::tabLayoutChange +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI7QTabBar) +496 QTabBar::_ZThn16_N7QTabBarD1Ev +504 QTabBar::_ZThn16_N7QTabBarD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTabBar + size=40 align=8 + base size=40 base align=8 +QTabBar (0x7f1dee5964d0) 0 + vptr=((& QTabBar::_ZTV7QTabBar) + 16u) + QWidget (0x7f1dee73ae80) 0 + primary-for QTabBar (0x7f1dee5964d0) + QObject (0x7f1dee596540) 0 + primary-for QWidget (0x7f1dee73ae80) + QPaintDevice (0x7f1dee5965b0) 16 + vptr=((& QTabBar::_ZTV7QTabBar) + 496u) + +Vtable for QTabWidget +QTabWidget::_ZTV10QTabWidget: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTabWidget) +16 QTabWidget::metaObject +24 QTabWidget::qt_metacast +32 QTabWidget::qt_metacall +40 QTabWidget::~QTabWidget +48 QTabWidget::~QTabWidget +56 QTabWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QTabWidget::sizeHint +136 QTabWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QTabWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTabWidget::paintEvent +256 QWidget::moveEvent +264 QTabWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QTabWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QTabWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QTabWidget::tabInserted +456 QTabWidget::tabRemoved +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI10QTabWidget) +480 QTabWidget::_ZThn16_N10QTabWidgetD1Ev +488 QTabWidget::_ZThn16_N10QTabWidgetD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTabWidget + size=40 align=8 + base size=40 base align=8 +QTabWidget (0x7f1dee5c8af0) 0 + vptr=((& QTabWidget::_ZTV10QTabWidget) + 16u) + QWidget (0x7f1dee5cb180) 0 + primary-for QTabWidget (0x7f1dee5c8af0) + QObject (0x7f1dee5c8b60) 0 + primary-for QWidget (0x7f1dee5cb180) + QPaintDevice (0x7f1dee5c8bd0) 16 + vptr=((& QTabWidget::_ZTV10QTabWidget) + 480u) + +Vtable for QRubberBand +QRubberBand::_ZTV11QRubberBand: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QRubberBand) +16 QRubberBand::metaObject +24 QRubberBand::qt_metacast +32 QRubberBand::qt_metacall +40 QRubberBand::~QRubberBand +48 QRubberBand::~QRubberBand +56 QRubberBand::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QRubberBand::paintEvent +256 QRubberBand::moveEvent +264 QRubberBand::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QRubberBand::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QRubberBand::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI11QRubberBand) +464 QRubberBand::_ZThn16_N11QRubberBandD1Ev +472 QRubberBand::_ZThn16_N11QRubberBandD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QRubberBand + size=40 align=8 + base size=40 base align=8 +QRubberBand (0x7f1dee61f4d0) 0 + vptr=((& QRubberBand::_ZTV11QRubberBand) + 16u) + QWidget (0x7f1dee61e200) 0 + primary-for QRubberBand (0x7f1dee61f4d0) + QObject (0x7f1dee61f540) 0 + primary-for QWidget (0x7f1dee61e200) + QPaintDevice (0x7f1dee61f5b0) 16 + vptr=((& QRubberBand::_ZTV11QRubberBand) + 464u) + +Class QStyleOption + size=56 align=8 + base size=56 base align=8 +QStyleOption (0x7f1dee6417e0) 0 + +Class QStyleOptionFocusRect + size=72 align=8 + base size=72 base align=8 +QStyleOptionFocusRect (0x7f1dee64f540) 0 + QStyleOption (0x7f1dee64f5b0) 0 + +Class QStyleOptionFrame + size=64 align=8 + base size=64 base align=8 +QStyleOptionFrame (0x7f1dee658540) 0 + QStyleOption (0x7f1dee6585b0) 0 + +Class QStyleOptionFrameV2 + size=72 align=8 + base size=68 base align=8 +QStyleOptionFrameV2 (0x7f1dee6654d0) 0 + QStyleOptionFrame (0x7f1dee665540) 0 + QStyleOption (0x7f1dee6655b0) 0 + +Class QStyleOptionFrameV3 + size=72 align=8 + base size=72 base align=8 +QStyleOptionFrameV3 (0x7f1dee495d90) 0 + QStyleOptionFrameV2 (0x7f1dee495e00) 0 + QStyleOptionFrame (0x7f1dee495e70) 0 + QStyleOption (0x7f1dee495ee0) 0 + +Class QStyleOptionTabWidgetFrame + size=96 align=8 + base size=92 base align=8 +QStyleOptionTabWidgetFrame (0x7f1dee4b6690) 0 + QStyleOption (0x7f1dee4b6700) 0 + +Class QStyleOptionTabBarBase + size=96 align=8 + base size=92 base align=8 +QStyleOptionTabBarBase (0x7f1dee4c5e00) 0 + QStyleOption (0x7f1dee4c5e70) 0 + +Class QStyleOptionTabBarBaseV2 + size=96 align=8 + base size=93 base align=8 +QStyleOptionTabBarBaseV2 (0x7f1dee4d81c0) 0 + QStyleOptionTabBarBase (0x7f1dee4d8230) 0 + QStyleOption (0x7f1dee4d82a0) 0 + +Class QStyleOptionHeader + size=112 align=8 + base size=108 base align=8 +QStyleOptionHeader (0x7f1dee4e1850) 0 + QStyleOption (0x7f1dee4e18c0) 0 + +Class QStyleOptionButton + size=88 align=8 + base size=88 base align=8 +QStyleOptionButton (0x7f1dee4fba10) 0 + QStyleOption (0x7f1dee4fba80) 0 + +Class QStyleOptionTab + size=96 align=8 + base size=96 base align=8 +QStyleOptionTab (0x7f1dee5483f0) 0 + QStyleOption (0x7f1dee548460) 0 + +Class QStyleOptionTabV2 + size=104 align=8 + base size=104 base align=8 +QStyleOptionTabV2 (0x7f1dee393380) 0 + QStyleOptionTab (0x7f1dee3933f0) 0 + QStyleOption (0x7f1dee393460) 0 + +Class QStyleOptionTabV3 + size=128 align=8 + base size=124 base align=8 +QStyleOptionTabV3 (0x7f1dee39dd90) 0 + QStyleOptionTabV2 (0x7f1dee39de00) 0 + QStyleOptionTab (0x7f1dee39de70) 0 + QStyleOption (0x7f1dee39dee0) 0 + +Class QStyleOptionToolBar + size=80 align=8 + base size=80 base align=8 +QStyleOptionToolBar (0x7f1dee3bb3f0) 0 + QStyleOption (0x7f1dee3bb460) 0 + +Class QStyleOptionProgressBar + size=88 align=8 + base size=85 base align=8 +QStyleOptionProgressBar (0x7f1dee3efbd0) 0 + QStyleOption (0x7f1dee3efc40) 0 + +Class QStyleOptionProgressBarV2 + size=96 align=8 + base size=94 base align=8 +QStyleOptionProgressBarV2 (0x7f1dee413380) 0 + QStyleOptionProgressBar (0x7f1dee4133f0) 0 + QStyleOption (0x7f1dee413460) 0 + +Class QStyleOptionMenuItem + size=128 align=8 + base size=128 base align=8 +QStyleOptionMenuItem (0x7f1dee413c40) 0 + QStyleOption (0x7f1dee413cb0) 0 + +Class QStyleOptionQ3ListViewItem + size=80 align=8 + base size=76 base align=8 +QStyleOptionQ3ListViewItem (0x7f1dee42de70) 0 + QStyleOption (0x7f1dee42dee0) 0 + +Class QStyleOptionQ3DockWindow + size=64 align=8 + base size=58 base align=8 +QStyleOptionQ3DockWindow (0x7f1dee279310) 0 + QStyleOption (0x7f1dee279380) 0 + +Class QStyleOptionDockWidget + size=72 align=8 + base size=67 base align=8 +QStyleOptionDockWidget (0x7f1dee2852a0) 0 + QStyleOption (0x7f1dee285310) 0 + +Class QStyleOptionDockWidgetV2 + size=72 align=8 + base size=68 base align=8 +QStyleOptionDockWidgetV2 (0x7f1dee294690) 0 + QStyleOptionDockWidget (0x7f1dee294700) 0 + QStyleOption (0x7f1dee294770) 0 + +Class QStyleOptionViewItem + size=104 align=8 + base size=97 base align=8 +QStyleOptionViewItem (0x7f1dee29ce70) 0 + QStyleOption (0x7f1dee29cee0) 0 + +Class QStyleOptionViewItemV2 + size=104 align=8 + base size=104 base align=8 +QStyleOptionViewItemV2 (0x7f1dee2b6a10) 0 + QStyleOptionViewItem (0x7f1dee2b6a80) 0 + QStyleOption (0x7f1dee2b6af0) 0 + +Class QStyleOptionViewItemV3 + size=120 align=8 + base size=120 base align=8 +QStyleOptionViewItemV3 (0x7f1dee2fe460) 0 + QStyleOptionViewItemV2 (0x7f1dee2fe4d0) 0 + QStyleOptionViewItem (0x7f1dee2fe540) 0 + QStyleOption (0x7f1dee2fe5b0) 0 + +Class QStyleOptionViewItemV4 + size=184 align=8 + base size=184 base align=8 +QStyleOptionViewItemV4 (0x7f1dee309d20) 0 + QStyleOptionViewItemV3 (0x7f1dee309d90) 0 + QStyleOptionViewItemV2 (0x7f1dee309e00) 0 + QStyleOptionViewItem (0x7f1dee309e70) 0 + QStyleOption (0x7f1dee309ee0) 0 + +Class QStyleOptionToolBox + size=72 align=8 + base size=72 base align=8 +QStyleOptionToolBox (0x7f1dee32b460) 0 + QStyleOption (0x7f1dee32b4d0) 0 + +Class QStyleOptionToolBoxV2 + size=80 align=8 + base size=80 base align=8 +QStyleOptionToolBoxV2 (0x7f1dee33a930) 0 + QStyleOptionToolBox (0x7f1dee33a9a0) 0 + QStyleOption (0x7f1dee33aa10) 0 + +Class QStyleOptionRubberBand + size=64 align=8 + base size=61 base align=8 +QStyleOptionRubberBand (0x7f1dee34f620) 0 + QStyleOption (0x7f1dee34f690) 0 + +Class QStyleOptionComplex + size=64 align=8 + base size=64 base align=8 +QStyleOptionComplex (0x7f1dee35a700) 0 + QStyleOption (0x7f1dee35a770) 0 + +Class QStyleOptionSlider + size=120 align=8 + base size=113 base align=8 +QStyleOptionSlider (0x7f1dee362ee0) 0 + QStyleOptionComplex (0x7f1dee362f50) 0 + QStyleOption (0x7f1dee362310) 0 + +Class QStyleOptionSpinBox + size=80 align=8 + base size=73 base align=8 +QStyleOptionSpinBox (0x7f1dee17bcb0) 0 + QStyleOptionComplex (0x7f1dee17bd20) 0 + QStyleOption (0x7f1dee17bd90) 0 + +Class QStyleOptionQ3ListView + size=112 align=8 + base size=105 base align=8 +QStyleOptionQ3ListView (0x7f1dee18b1c0) 0 + QStyleOptionComplex (0x7f1dee18b230) 0 + QStyleOption (0x7f1dee18b2a0) 0 + +Class QStyleOptionToolButton + size=128 align=8 + base size=128 base align=8 +QStyleOptionToolButton (0x7f1dee1bee00) 0 + QStyleOptionComplex (0x7f1dee1bee70) 0 + QStyleOption (0x7f1dee1beee0) 0 + +Class QStyleOptionComboBox + size=112 align=8 + base size=112 base align=8 +QStyleOptionComboBox (0x7f1dee214070) 0 + QStyleOptionComplex (0x7f1dee2140e0) 0 + QStyleOption (0x7f1dee214150) 0 + +Class QStyleOptionTitleBar + size=88 align=8 + base size=88 base align=8 +QStyleOptionTitleBar (0x7f1dee222b60) 0 + QStyleOptionComplex (0x7f1dee222bd0) 0 + QStyleOption (0x7f1dee222c40) 0 + +Class QStyleOptionGroupBox + size=112 align=8 + base size=108 base align=8 +QStyleOptionGroupBox (0x7f1dee2393f0) 0 + QStyleOptionComplex (0x7f1dee239460) 0 + QStyleOption (0x7f1dee2394d0) 0 + +Class QStyleOptionSizeGrip + size=72 align=8 + base size=68 base align=8 +QStyleOptionSizeGrip (0x7f1dee24f000) 0 + QStyleOptionComplex (0x7f1dee24f070) 0 + QStyleOption (0x7f1dee24f0e0) 0 + +Class QStyleOptionGraphicsItem + size=144 align=8 + base size=144 base align=8 +QStyleOptionGraphicsItem (0x7f1dee24ff50) 0 + QStyleOption (0x7f1dee24f700) 0 + +Class QStyleHintReturn + size=8 align=4 + base size=8 base align=4 +QStyleHintReturn (0x7f1dee2672a0) 0 + +Class QStyleHintReturnMask + size=16 align=8 + base size=16 base align=8 +QStyleHintReturnMask (0x7f1dee267700) 0 + QStyleHintReturn (0x7f1dee267770) 0 + +Class QStyleHintReturnVariant + size=24 align=8 + base size=24 base align=8 +QStyleHintReturnVariant (0x7f1dee267930) 0 + QStyleHintReturn (0x7f1dee2679a0) 0 + +Vtable for QAbstractItemDelegate +QAbstractItemDelegate::_ZTV21QAbstractItemDelegate: 21u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QAbstractItemDelegate) +16 QAbstractItemDelegate::metaObject +24 QAbstractItemDelegate::qt_metacast +32 QAbstractItemDelegate::qt_metacall +40 QAbstractItemDelegate::~QAbstractItemDelegate +48 QAbstractItemDelegate::~QAbstractItemDelegate +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAbstractItemDelegate::createEditor +136 QAbstractItemDelegate::setEditorData +144 QAbstractItemDelegate::setModelData +152 QAbstractItemDelegate::updateEditorGeometry +160 QAbstractItemDelegate::editorEvent + +Class QAbstractItemDelegate + size=16 align=8 + base size=16 base align=8 +QAbstractItemDelegate (0x7f1dee267e00) 0 + vptr=((& QAbstractItemDelegate::_ZTV21QAbstractItemDelegate) + 16u) + QObject (0x7f1dee267e70) 0 + primary-for QAbstractItemDelegate (0x7f1dee267e00) + +Vtable for QAbstractItemView +QAbstractItemView::_ZTV17QAbstractItemView: 103u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAbstractItemView) +16 QAbstractItemView::metaObject +24 QAbstractItemView::qt_metacast +32 QAbstractItemView::qt_metacall +40 QAbstractItemView::~QAbstractItemView +48 QAbstractItemView::~QAbstractItemView +56 QAbstractItemView::event +64 QObject::eventFilter +72 QAbstractItemView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QAbstractItemView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QAbstractItemView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractScrollArea::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QAbstractScrollArea::scrollContentsBy +464 QAbstractItemView::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 __cxa_pure_virtual +496 __cxa_pure_virtual +504 __cxa_pure_virtual +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QAbstractItemView::reset +536 QAbstractItemView::setRootIndex +544 QAbstractItemView::doItemsLayout +552 QAbstractItemView::selectAll +560 QAbstractItemView::dataChanged +568 QAbstractItemView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QAbstractItemView::selectionChanged +592 QAbstractItemView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QAbstractItemView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 __cxa_pure_virtual +688 __cxa_pure_virtual +696 __cxa_pure_virtual +704 __cxa_pure_virtual +712 __cxa_pure_virtual +720 __cxa_pure_virtual +728 QAbstractItemView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 (int (*)(...))-0x00000000000000010 +776 (int (*)(...))(& _ZTI17QAbstractItemView) +784 QAbstractItemView::_ZThn16_N17QAbstractItemViewD1Ev +792 QAbstractItemView::_ZThn16_N17QAbstractItemViewD0Ev +800 QWidget::_ZThn16_NK7QWidget7devTypeEv +808 QWidget::_ZThn16_NK7QWidget11paintEngineEv +816 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractItemView + size=40 align=8 + base size=40 base align=8 +QAbstractItemView (0x7f1dee0ac4d0) 0 + vptr=((& QAbstractItemView::_ZTV17QAbstractItemView) + 16u) + QAbstractScrollArea (0x7f1dee0ac540) 0 + primary-for QAbstractItemView (0x7f1dee0ac4d0) + QFrame (0x7f1dee0ac5b0) 0 + primary-for QAbstractScrollArea (0x7f1dee0ac540) + QWidget (0x7f1dee0ae000) 0 + primary-for QFrame (0x7f1dee0ac5b0) + QObject (0x7f1dee0ac620) 0 + primary-for QWidget (0x7f1dee0ae000) + QPaintDevice (0x7f1dee0ac690) 16 + vptr=((& QAbstractItemView::_ZTV17QAbstractItemView) + 784u) + +Vtable for QListView +QListView::_ZTV9QListView: 103u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QListView) +16 QListView::metaObject +24 QListView::qt_metacast +32 QListView::qt_metacall +40 QListView::~QListView +48 QListView::~QListView +56 QListView::event +64 QObject::eventFilter +72 QListView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QListView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QListView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QListView::paintEvent +256 QWidget::moveEvent +264 QListView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QListView::dragMoveEvent +320 QListView::dragLeaveEvent +328 QListView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QListView::scrollContentsBy +464 QAbstractItemView::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QListView::visualRect +496 QListView::scrollTo +504 QListView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QListView::reset +536 QListView::setRootIndex +544 QListView::doItemsLayout +552 QAbstractItemView::selectAll +560 QListView::dataChanged +568 QListView::rowsInserted +576 QListView::rowsAboutToBeRemoved +584 QListView::selectionChanged +592 QListView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QListView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QListView::moveCursor +688 QListView::horizontalOffset +696 QListView::verticalOffset +704 QListView::isIndexHidden +712 QListView::setSelection +720 QListView::visualRegionForSelection +728 QListView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QListView::startDrag +760 QListView::viewOptions +768 (int (*)(...))-0x00000000000000010 +776 (int (*)(...))(& _ZTI9QListView) +784 QListView::_ZThn16_N9QListViewD1Ev +792 QListView::_ZThn16_N9QListViewD0Ev +800 QWidget::_ZThn16_NK7QWidget7devTypeEv +808 QWidget::_ZThn16_NK7QWidget11paintEngineEv +816 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QListView + size=40 align=8 + base size=40 base align=8 +QListView (0x7f1dee11fcb0) 0 + vptr=((& QListView::_ZTV9QListView) + 16u) + QAbstractItemView (0x7f1dee11fd20) 0 + primary-for QListView (0x7f1dee11fcb0) + QAbstractScrollArea (0x7f1dee11fd90) 0 + primary-for QAbstractItemView (0x7f1dee11fd20) + QFrame (0x7f1dee11fe00) 0 + primary-for QAbstractScrollArea (0x7f1dee11fd90) + QWidget (0x7f1dee0ff680) 0 + primary-for QFrame (0x7f1dee11fe00) + QObject (0x7f1dee11fe70) 0 + primary-for QWidget (0x7f1dee0ff680) + QPaintDevice (0x7f1dee11fee0) 16 + vptr=((& QListView::_ZTV9QListView) + 784u) + +Vtable for QUndoView +QUndoView::_ZTV9QUndoView: 103u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QUndoView) +16 QUndoView::metaObject +24 QUndoView::qt_metacast +32 QUndoView::qt_metacall +40 QUndoView::~QUndoView +48 QUndoView::~QUndoView +56 QListView::event +64 QObject::eventFilter +72 QListView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QListView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QListView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QListView::paintEvent +256 QWidget::moveEvent +264 QListView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QListView::dragMoveEvent +320 QListView::dragLeaveEvent +328 QListView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QListView::scrollContentsBy +464 QAbstractItemView::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QListView::visualRect +496 QListView::scrollTo +504 QListView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QListView::reset +536 QListView::setRootIndex +544 QListView::doItemsLayout +552 QAbstractItemView::selectAll +560 QListView::dataChanged +568 QListView::rowsInserted +576 QListView::rowsAboutToBeRemoved +584 QListView::selectionChanged +592 QListView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QListView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QListView::moveCursor +688 QListView::horizontalOffset +696 QListView::verticalOffset +704 QListView::isIndexHidden +712 QListView::setSelection +720 QListView::visualRegionForSelection +728 QListView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QListView::startDrag +760 QListView::viewOptions +768 (int (*)(...))-0x00000000000000010 +776 (int (*)(...))(& _ZTI9QUndoView) +784 QUndoView::_ZThn16_N9QUndoViewD1Ev +792 QUndoView::_ZThn16_N9QUndoViewD0Ev +800 QWidget::_ZThn16_NK7QWidget7devTypeEv +808 QWidget::_ZThn16_NK7QWidget11paintEngineEv +816 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QUndoView + size=40 align=8 + base size=40 base align=8 +QUndoView (0x7f1dee16c380) 0 + vptr=((& QUndoView::_ZTV9QUndoView) + 16u) + QListView (0x7f1dee16c3f0) 0 + primary-for QUndoView (0x7f1dee16c380) + QAbstractItemView (0x7f1dee16c460) 0 + primary-for QListView (0x7f1dee16c3f0) + QAbstractScrollArea (0x7f1dee16c4d0) 0 + primary-for QAbstractItemView (0x7f1dee16c460) + QFrame (0x7f1dee16c540) 0 + primary-for QAbstractScrollArea (0x7f1dee16c4d0) + QWidget (0x7f1dee164580) 0 + primary-for QFrame (0x7f1dee16c540) + QObject (0x7f1dee16c5b0) 0 + primary-for QWidget (0x7f1dee164580) + QPaintDevice (0x7f1dee16c620) 16 + vptr=((& QUndoView::_ZTV9QUndoView) + 784u) + +Vtable for QCompleter +QCompleter::_ZTV10QCompleter: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QCompleter) +16 QCompleter::metaObject +24 QCompleter::qt_metacast +32 QCompleter::qt_metacall +40 QCompleter::~QCompleter +48 QCompleter::~QCompleter +56 QCompleter::event +64 QCompleter::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCompleter::pathFromIndex +120 QCompleter::splitPath + +Class QCompleter + size=16 align=8 + base size=16 base align=8 +QCompleter (0x7f1dedf86070) 0 + vptr=((& QCompleter::_ZTV10QCompleter) + 16u) + QObject (0x7f1dedf860e0) 0 + primary-for QCompleter (0x7f1dedf86070) + +Vtable for QUndoCommand +QUndoCommand::_ZTV12QUndoCommand: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QUndoCommand) +16 QUndoCommand::~QUndoCommand +24 QUndoCommand::~QUndoCommand +32 QUndoCommand::undo +40 QUndoCommand::redo +48 QUndoCommand::id +56 QUndoCommand::mergeWith + +Class QUndoCommand + size=16 align=8 + base size=16 base align=8 +QUndoCommand (0x7f1dedfaa000) 0 + vptr=((& QUndoCommand::_ZTV12QUndoCommand) + 16u) + +Vtable for QUndoStack +QUndoStack::_ZTV10QUndoStack: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QUndoStack) +16 QUndoStack::metaObject +24 QUndoStack::qt_metacast +32 QUndoStack::qt_metacall +40 QUndoStack::~QUndoStack +48 QUndoStack::~QUndoStack +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QUndoStack + size=16 align=8 + base size=16 base align=8 +QUndoStack (0x7f1dedfaa930) 0 + vptr=((& QUndoStack::_ZTV10QUndoStack) + 16u) + QObject (0x7f1dedfaa9a0) 0 + primary-for QUndoStack (0x7f1dedfaa930) + +Vtable for QSystemTrayIcon +QSystemTrayIcon::_ZTV15QSystemTrayIcon: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSystemTrayIcon) +16 QSystemTrayIcon::metaObject +24 QSystemTrayIcon::qt_metacast +32 QSystemTrayIcon::qt_metacall +40 QSystemTrayIcon::~QSystemTrayIcon +48 QSystemTrayIcon::~QSystemTrayIcon +56 QSystemTrayIcon::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSystemTrayIcon + size=16 align=8 + base size=16 base align=8 +QSystemTrayIcon (0x7f1dedfce460) 0 + vptr=((& QSystemTrayIcon::_ZTV15QSystemTrayIcon) + 16u) + QObject (0x7f1dedfce4d0) 0 + primary-for QSystemTrayIcon (0x7f1dedfce460) + +Vtable for QDialog +QDialog::_ZTV7QDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QDialog) +16 QDialog::metaObject +24 QDialog::qt_metacast +32 QDialog::qt_metacall +40 QDialog::~QDialog +48 QDialog::~QDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI7QDialog) +488 QDialog::_ZThn16_N7QDialogD1Ev +496 QDialog::_ZThn16_N7QDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDialog + size=40 align=8 + base size=40 base align=8 +QDialog (0x7f1dedfeb690) 0 + vptr=((& QDialog::_ZTV7QDialog) + 16u) + QWidget (0x7f1dedfea380) 0 + primary-for QDialog (0x7f1dedfeb690) + QObject (0x7f1dedfeb700) 0 + primary-for QWidget (0x7f1dedfea380) + QPaintDevice (0x7f1dedfeb770) 16 + vptr=((& QDialog::_ZTV7QDialog) + 488u) + +Vtable for QAbstractPageSetupDialog +QAbstractPageSetupDialog::_ZTV24QAbstractPageSetupDialog: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QAbstractPageSetupDialog) +16 QAbstractPageSetupDialog::metaObject +24 QAbstractPageSetupDialog::qt_metacast +32 QAbstractPageSetupDialog::qt_metacall +40 QAbstractPageSetupDialog::~QAbstractPageSetupDialog +48 QAbstractPageSetupDialog::~QAbstractPageSetupDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractPageSetupDialog::done +456 QDialog::accept +464 QDialog::reject +472 __cxa_pure_virtual +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI24QAbstractPageSetupDialog) +496 QAbstractPageSetupDialog::_ZThn16_N24QAbstractPageSetupDialogD1Ev +504 QAbstractPageSetupDialog::_ZThn16_N24QAbstractPageSetupDialogD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractPageSetupDialog + size=40 align=8 + base size=40 base align=8 +QAbstractPageSetupDialog (0x7f1dee0114d0) 0 + vptr=((& QAbstractPageSetupDialog::_ZTV24QAbstractPageSetupDialog) + 16u) + QDialog (0x7f1dee011540) 0 + primary-for QAbstractPageSetupDialog (0x7f1dee0114d0) + QWidget (0x7f1dedfead80) 0 + primary-for QDialog (0x7f1dee011540) + QObject (0x7f1dee0115b0) 0 + primary-for QWidget (0x7f1dedfead80) + QPaintDevice (0x7f1dee011620) 16 + vptr=((& QAbstractPageSetupDialog::_ZTV24QAbstractPageSetupDialog) + 496u) + +Vtable for QColorDialog +QColorDialog::_ZTV12QColorDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QColorDialog) +16 QColorDialog::metaObject +24 QColorDialog::qt_metacast +32 QColorDialog::qt_metacall +40 QColorDialog::~QColorDialog +48 QColorDialog::~QColorDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QColorDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QColorDialog::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QColorDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI12QColorDialog) +488 QColorDialog::_ZThn16_N12QColorDialogD1Ev +496 QColorDialog::_ZThn16_N12QColorDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QColorDialog + size=40 align=8 + base size=40 base align=8 +QColorDialog (0x7f1dee026a80) 0 + vptr=((& QColorDialog::_ZTV12QColorDialog) + 16u) + QDialog (0x7f1dee026af0) 0 + primary-for QColorDialog (0x7f1dee026a80) + QWidget (0x7f1dee023680) 0 + primary-for QDialog (0x7f1dee026af0) + QObject (0x7f1dee026b60) 0 + primary-for QWidget (0x7f1dee023680) + QPaintDevice (0x7f1dee026bd0) 16 + vptr=((& QColorDialog::_ZTV12QColorDialog) + 488u) + +Vtable for QFontDialog +QFontDialog::_ZTV11QFontDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFontDialog) +16 QFontDialog::metaObject +24 QFontDialog::qt_metacast +32 QFontDialog::qt_metacall +40 QFontDialog::~QFontDialog +48 QFontDialog::~QFontDialog +56 QWidget::event +64 QFontDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QFontDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFontDialog::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QFontDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11QFontDialog) +488 QFontDialog::_ZThn16_N11QFontDialogD1Ev +496 QFontDialog::_ZThn16_N11QFontDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFontDialog + size=40 align=8 + base size=40 base align=8 +QFontDialog (0x7f1dede72e00) 0 + vptr=((& QFontDialog::_ZTV11QFontDialog) + 16u) + QDialog (0x7f1dede72e70) 0 + primary-for QFontDialog (0x7f1dede72e00) + QWidget (0x7f1dee059900) 0 + primary-for QDialog (0x7f1dede72e70) + QObject (0x7f1dede72ee0) 0 + primary-for QWidget (0x7f1dee059900) + QPaintDevice (0x7f1dede72f50) 16 + vptr=((& QFontDialog::_ZTV11QFontDialog) + 488u) + +Vtable for QMessageBox +QMessageBox::_ZTV11QMessageBox: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMessageBox) +16 QMessageBox::metaObject +24 QMessageBox::qt_metacast +32 QMessageBox::qt_metacall +40 QMessageBox::~QMessageBox +48 QMessageBox::~QMessageBox +56 QMessageBox::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QMessageBox::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QMessageBox::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QMessageBox::resizeEvent +272 QMessageBox::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QMessageBox::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QMessageBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11QMessageBox) +488 QMessageBox::_ZThn16_N11QMessageBoxD1Ev +496 QMessageBox::_ZThn16_N11QMessageBoxD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMessageBox + size=40 align=8 + base size=40 base align=8 +QMessageBox (0x7f1dedee62a0) 0 + vptr=((& QMessageBox::_ZTV11QMessageBox) + 16u) + QDialog (0x7f1dedee6310) 0 + primary-for QMessageBox (0x7f1dedee62a0) + QWidget (0x7f1dedea7b00) 0 + primary-for QDialog (0x7f1dedee6310) + QObject (0x7f1dedee6380) 0 + primary-for QWidget (0x7f1dedea7b00) + QPaintDevice (0x7f1dedee63f0) 16 + vptr=((& QMessageBox::_ZTV11QMessageBox) + 488u) + +Vtable for QProgressDialog +QProgressDialog::_ZTV15QProgressDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QProgressDialog) +16 QProgressDialog::metaObject +24 QProgressDialog::qt_metacast +32 QProgressDialog::qt_metacall +40 QProgressDialog::~QProgressDialog +48 QProgressDialog::~QProgressDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QProgressDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QProgressDialog::resizeEvent +272 QProgressDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QProgressDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QProgressDialog::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI15QProgressDialog) +488 QProgressDialog::_ZThn16_N15QProgressDialogD1Ev +496 QProgressDialog::_ZThn16_N15QProgressDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QProgressDialog + size=40 align=8 + base size=40 base align=8 +QProgressDialog (0x7f1dedf61bd0) 0 + vptr=((& QProgressDialog::_ZTV15QProgressDialog) + 16u) + QDialog (0x7f1dedf61c40) 0 + primary-for QProgressDialog (0x7f1dedf61bd0) + QWidget (0x7f1dedd77100) 0 + primary-for QDialog (0x7f1dedf61c40) + QObject (0x7f1dedf61cb0) 0 + primary-for QWidget (0x7f1dedd77100) + QPaintDevice (0x7f1dedf61d20) 16 + vptr=((& QProgressDialog::_ZTV15QProgressDialog) + 488u) + +Vtable for QErrorMessage +QErrorMessage::_ZTV13QErrorMessage: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QErrorMessage) +16 QErrorMessage::metaObject +24 QErrorMessage::qt_metacast +32 QErrorMessage::qt_metacall +40 QErrorMessage::~QErrorMessage +48 QErrorMessage::~QErrorMessage +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QErrorMessage::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QErrorMessage::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI13QErrorMessage) +488 QErrorMessage::_ZThn16_N13QErrorMessageD1Ev +496 QErrorMessage::_ZThn16_N13QErrorMessageD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QErrorMessage + size=40 align=8 + base size=40 base align=8 +QErrorMessage (0x7f1dedd9a7e0) 0 + vptr=((& QErrorMessage::_ZTV13QErrorMessage) + 16u) + QDialog (0x7f1dedd9a850) 0 + primary-for QErrorMessage (0x7f1dedd9a7e0) + QWidget (0x7f1dedd77a00) 0 + primary-for QDialog (0x7f1dedd9a850) + QObject (0x7f1dedd9a8c0) 0 + primary-for QWidget (0x7f1dedd77a00) + QPaintDevice (0x7f1dedd9a930) 16 + vptr=((& QErrorMessage::_ZTV13QErrorMessage) + 488u) + +Vtable for QPrintPreviewDialog +QPrintPreviewDialog::_ZTV19QPrintPreviewDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QPrintPreviewDialog) +16 QPrintPreviewDialog::metaObject +24 QPrintPreviewDialog::qt_metacast +32 QPrintPreviewDialog::qt_metacall +40 QPrintPreviewDialog::~QPrintPreviewDialog +48 QPrintPreviewDialog::~QPrintPreviewDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QPrintPreviewDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QPrintPreviewDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI19QPrintPreviewDialog) +488 QPrintPreviewDialog::_ZThn16_N19QPrintPreviewDialogD1Ev +496 QPrintPreviewDialog::_ZThn16_N19QPrintPreviewDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPrintPreviewDialog + size=48 align=8 + base size=48 base align=8 +QPrintPreviewDialog (0x7f1deddb73f0) 0 + vptr=((& QPrintPreviewDialog::_ZTV19QPrintPreviewDialog) + 16u) + QDialog (0x7f1deddb7460) 0 + primary-for QPrintPreviewDialog (0x7f1deddb73f0) + QWidget (0x7f1deddb3480) 0 + primary-for QDialog (0x7f1deddb7460) + QObject (0x7f1deddb74d0) 0 + primary-for QWidget (0x7f1deddb3480) + QPaintDevice (0x7f1deddb7540) 16 + vptr=((& QPrintPreviewDialog::_ZTV19QPrintPreviewDialog) + 488u) + +Vtable for QFileDialog +QFileDialog::_ZTV11QFileDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFileDialog) +16 QFileDialog::metaObject +24 QFileDialog::qt_metacast +32 QFileDialog::qt_metacall +40 QFileDialog::~QFileDialog +48 QFileDialog::~QFileDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QFileDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFileDialog::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QFileDialog::done +456 QFileDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11QFileDialog) +488 QFileDialog::_ZThn16_N11QFileDialogD1Ev +496 QFileDialog::_ZThn16_N11QFileDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFileDialog + size=40 align=8 + base size=40 base align=8 +QFileDialog (0x7f1deddcea80) 0 + vptr=((& QFileDialog::_ZTV11QFileDialog) + 16u) + QDialog (0x7f1deddceaf0) 0 + primary-for QFileDialog (0x7f1deddcea80) + QWidget (0x7f1deddb3d80) 0 + primary-for QDialog (0x7f1deddceaf0) + QObject (0x7f1deddceb60) 0 + primary-for QWidget (0x7f1deddb3d80) + QPaintDevice (0x7f1deddcebd0) 16 + vptr=((& QFileDialog::_ZTV11QFileDialog) + 488u) + +Vtable for QAbstractPrintDialog +QAbstractPrintDialog::_ZTV20QAbstractPrintDialog: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QAbstractPrintDialog) +16 QAbstractPrintDialog::metaObject +24 QAbstractPrintDialog::qt_metacast +32 QAbstractPrintDialog::qt_metacall +40 QAbstractPrintDialog::~QAbstractPrintDialog +48 QAbstractPrintDialog::~QAbstractPrintDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDialog::done +456 QDialog::accept +464 QDialog::reject +472 __cxa_pure_virtual +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI20QAbstractPrintDialog) +496 QAbstractPrintDialog::_ZThn16_N20QAbstractPrintDialogD1Ev +504 QAbstractPrintDialog::_ZThn16_N20QAbstractPrintDialogD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractPrintDialog + size=40 align=8 + base size=40 base align=8 +QAbstractPrintDialog (0x7f1dede63070) 0 + vptr=((& QAbstractPrintDialog::_ZTV20QAbstractPrintDialog) + 16u) + QDialog (0x7f1dede630e0) 0 + primary-for QAbstractPrintDialog (0x7f1dede63070) + QWidget (0x7f1dede60200) 0 + primary-for QDialog (0x7f1dede630e0) + QObject (0x7f1dede63150) 0 + primary-for QWidget (0x7f1dede60200) + QPaintDevice (0x7f1dede631c0) 16 + vptr=((& QAbstractPrintDialog::_ZTV20QAbstractPrintDialog) + 496u) + +Vtable for QUnixPrintWidget +QUnixPrintWidget::_ZTV16QUnixPrintWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QUnixPrintWidget) +16 QUnixPrintWidget::metaObject +24 QUnixPrintWidget::qt_metacast +32 QUnixPrintWidget::qt_metacall +40 QUnixPrintWidget::~QUnixPrintWidget +48 QUnixPrintWidget::~QUnixPrintWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI16QUnixPrintWidget) +464 QUnixPrintWidget::_ZThn16_N16QUnixPrintWidgetD1Ev +472 QUnixPrintWidget::_ZThn16_N16QUnixPrintWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QUnixPrintWidget + size=48 align=8 + base size=48 base align=8 +QUnixPrintWidget (0x7f1dedcbe150) 0 + vptr=((& QUnixPrintWidget::_ZTV16QUnixPrintWidget) + 16u) + QWidget (0x7f1dedc8d580) 0 + primary-for QUnixPrintWidget (0x7f1dedcbe150) + QObject (0x7f1dedcbe1c0) 0 + primary-for QWidget (0x7f1dedc8d580) + QPaintDevice (0x7f1dedcbe230) 16 + vptr=((& QUnixPrintWidget::_ZTV16QUnixPrintWidget) + 464u) + +Vtable for QPrintDialog +QPrintDialog::_ZTV12QPrintDialog: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QPrintDialog) +16 QPrintDialog::metaObject +24 QPrintDialog::qt_metacast +32 QPrintDialog::qt_metacall +40 QPrintDialog::~QPrintDialog +48 QPrintDialog::~QPrintDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QPrintDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QPrintDialog::done +456 QPrintDialog::accept +464 QDialog::reject +472 QPrintDialog::exec +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI12QPrintDialog) +496 QPrintDialog::_ZThn16_N12QPrintDialogD1Ev +504 QPrintDialog::_ZThn16_N12QPrintDialogD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPrintDialog + size=40 align=8 + base size=40 base align=8 +QPrintDialog (0x7f1dedcd3070) 0 + vptr=((& QPrintDialog::_ZTV12QPrintDialog) + 16u) + QAbstractPrintDialog (0x7f1dedcd30e0) 0 + primary-for QPrintDialog (0x7f1dedcd3070) + QDialog (0x7f1dedcd3150) 0 + primary-for QAbstractPrintDialog (0x7f1dedcd30e0) + QWidget (0x7f1dedc8dc80) 0 + primary-for QDialog (0x7f1dedcd3150) + QObject (0x7f1dedcd31c0) 0 + primary-for QWidget (0x7f1dedc8dc80) + QPaintDevice (0x7f1dedcd3230) 16 + vptr=((& QPrintDialog::_ZTV12QPrintDialog) + 496u) + +Vtable for QWizard +QWizard::_ZTV7QWizard: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QWizard) +16 QWizard::metaObject +24 QWizard::qt_metacast +32 QWizard::qt_metacall +40 QWizard::~QWizard +48 QWizard::~QWizard +56 QWizard::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWizard::setVisible +128 QWizard::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWizard::paintEvent +256 QWidget::moveEvent +264 QWizard::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QWizard::done +456 QDialog::accept +464 QDialog::reject +472 QWizard::validateCurrentPage +480 QWizard::nextId +488 QWizard::initializePage +496 QWizard::cleanupPage +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI7QWizard) +520 QWizard::_ZThn16_N7QWizardD1Ev +528 QWizard::_ZThn16_N7QWizardD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWizard + size=40 align=8 + base size=40 base align=8 +QWizard (0x7f1dedcebbd0) 0 + vptr=((& QWizard::_ZTV7QWizard) + 16u) + QDialog (0x7f1dedcebc40) 0 + primary-for QWizard (0x7f1dedcebbd0) + QWidget (0x7f1dedce6580) 0 + primary-for QDialog (0x7f1dedcebc40) + QObject (0x7f1dedcebcb0) 0 + primary-for QWidget (0x7f1dedce6580) + QPaintDevice (0x7f1dedcebd20) 16 + vptr=((& QWizard::_ZTV7QWizard) + 520u) + +Vtable for QWizardPage +QWizardPage::_ZTV11QWizardPage: 68u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QWizardPage) +16 QWizardPage::metaObject +24 QWizardPage::qt_metacast +32 QWizardPage::qt_metacall +40 QWizardPage::~QWizardPage +48 QWizardPage::~QWizardPage +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QWizardPage::initializePage +456 QWizardPage::cleanupPage +464 QWizardPage::validatePage +472 QWizardPage::isComplete +480 QWizardPage::nextId +488 (int (*)(...))-0x00000000000000010 +496 (int (*)(...))(& _ZTI11QWizardPage) +504 QWizardPage::_ZThn16_N11QWizardPageD1Ev +512 QWizardPage::_ZThn16_N11QWizardPageD0Ev +520 QWidget::_ZThn16_NK7QWidget7devTypeEv +528 QWidget::_ZThn16_NK7QWidget11paintEngineEv +536 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWizardPage + size=40 align=8 + base size=40 base align=8 +QWizardPage (0x7f1dedd41f50) 0 + vptr=((& QWizardPage::_ZTV11QWizardPage) + 16u) + QWidget (0x7f1dedd1e780) 0 + primary-for QWizardPage (0x7f1dedd41f50) + QObject (0x7f1dedd5c000) 0 + primary-for QWidget (0x7f1dedd1e780) + QPaintDevice (0x7f1dedd5c070) 16 + vptr=((& QWizardPage::_ZTV11QWizardPage) + 504u) + +Vtable for QPageSetupDialog +QPageSetupDialog::_ZTV16QPageSetupDialog: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QPageSetupDialog) +16 QPageSetupDialog::metaObject +24 QPageSetupDialog::qt_metacast +32 QPageSetupDialog::qt_metacall +40 QPageSetupDialog::~QPageSetupDialog +48 QPageSetupDialog::~QPageSetupDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractPageSetupDialog::done +456 QDialog::accept +464 QDialog::reject +472 QPageSetupDialog::exec +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI16QPageSetupDialog) +496 QPageSetupDialog::_ZThn16_N16QPageSetupDialogD1Ev +504 QPageSetupDialog::_ZThn16_N16QPageSetupDialogD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPageSetupDialog + size=40 align=8 + base size=40 base align=8 +QPageSetupDialog (0x7f1dedb74a80) 0 + vptr=((& QPageSetupDialog::_ZTV16QPageSetupDialog) + 16u) + QAbstractPageSetupDialog (0x7f1dedb74af0) 0 + primary-for QPageSetupDialog (0x7f1dedb74a80) + QDialog (0x7f1dedb74b60) 0 + primary-for QAbstractPageSetupDialog (0x7f1dedb74af0) + QWidget (0x7f1dedb78080) 0 + primary-for QDialog (0x7f1dedb74b60) + QObject (0x7f1dedb74bd0) 0 + primary-for QWidget (0x7f1dedb78080) + QPaintDevice (0x7f1dedb74c40) 16 + vptr=((& QPageSetupDialog::_ZTV16QPageSetupDialog) + 496u) + +Vtable for QLineEdit +QLineEdit::_ZTV9QLineEdit: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QLineEdit) +16 QLineEdit::metaObject +24 QLineEdit::qt_metacast +32 QLineEdit::qt_metacall +40 QLineEdit::~QLineEdit +48 QLineEdit::~QLineEdit +56 QLineEdit::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QLineEdit::sizeHint +136 QLineEdit::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QLineEdit::mousePressEvent +168 QLineEdit::mouseReleaseEvent +176 QLineEdit::mouseDoubleClickEvent +184 QLineEdit::mouseMoveEvent +192 QWidget::wheelEvent +200 QLineEdit::keyPressEvent +208 QWidget::keyReleaseEvent +216 QLineEdit::focusInEvent +224 QLineEdit::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QLineEdit::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QLineEdit::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QLineEdit::dragEnterEvent +312 QLineEdit::dragMoveEvent +320 QLineEdit::dragLeaveEvent +328 QLineEdit::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QLineEdit::changeEvent +368 QWidget::metric +376 QLineEdit::inputMethodEvent +384 QLineEdit::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI9QLineEdit) +464 QLineEdit::_ZThn16_N9QLineEditD1Ev +472 QLineEdit::_ZThn16_N9QLineEditD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QLineEdit + size=40 align=8 + base size=40 base align=8 +QLineEdit (0x7f1dedb92a10) 0 + vptr=((& QLineEdit::_ZTV9QLineEdit) + 16u) + QWidget (0x7f1dedb78b00) 0 + primary-for QLineEdit (0x7f1dedb92a10) + QObject (0x7f1dedb92a80) 0 + primary-for QWidget (0x7f1dedb78b00) + QPaintDevice (0x7f1dedb92af0) 16 + vptr=((& QLineEdit::_ZTV9QLineEdit) + 464u) + +Vtable for QInputDialog +QInputDialog::_ZTV12QInputDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QInputDialog) +16 QInputDialog::metaObject +24 QInputDialog::qt_metacast +32 QInputDialog::qt_metacall +40 QInputDialog::~QInputDialog +48 QInputDialog::~QInputDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QInputDialog::setVisible +128 QInputDialog::sizeHint +136 QInputDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QInputDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI12QInputDialog) +488 QInputDialog::_ZThn16_N12QInputDialogD1Ev +496 QInputDialog::_ZThn16_N12QInputDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QInputDialog + size=40 align=8 + base size=40 base align=8 +QInputDialog (0x7f1dedbe3930) 0 + vptr=((& QInputDialog::_ZTV12QInputDialog) + 16u) + QDialog (0x7f1dedbe39a0) 0 + primary-for QInputDialog (0x7f1dedbe3930) + QWidget (0x7f1dedbe0980) 0 + primary-for QDialog (0x7f1dedbe39a0) + QObject (0x7f1dedbe3a10) 0 + primary-for QWidget (0x7f1dedbe0980) + QPaintDevice (0x7f1dedbe3a80) 16 + vptr=((& QInputDialog::_ZTV12QInputDialog) + 488u) + +Vtable for QFileSystemModel +QFileSystemModel::_ZTV16QFileSystemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QFileSystemModel) +16 QFileSystemModel::metaObject +24 QFileSystemModel::qt_metacast +32 QFileSystemModel::qt_metacall +40 QFileSystemModel::~QFileSystemModel +48 QFileSystemModel::~QFileSystemModel +56 QFileSystemModel::event +64 QObject::eventFilter +72 QFileSystemModel::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFileSystemModel::index +120 QFileSystemModel::parent +128 QFileSystemModel::rowCount +136 QFileSystemModel::columnCount +144 QFileSystemModel::hasChildren +152 QFileSystemModel::data +160 QFileSystemModel::setData +168 QFileSystemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QFileSystemModel::mimeTypes +208 QFileSystemModel::mimeData +216 QFileSystemModel::dropMimeData +224 QFileSystemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QFileSystemModel::fetchMore +272 QFileSystemModel::canFetchMore +280 QFileSystemModel::flags +288 QFileSystemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QFileSystemModel + size=16 align=8 + base size=16 base align=8 +QFileSystemModel (0x7f1dedc457e0) 0 + vptr=((& QFileSystemModel::_ZTV16QFileSystemModel) + 16u) + QAbstractItemModel (0x7f1dedc45850) 0 + primary-for QFileSystemModel (0x7f1dedc457e0) + QObject (0x7f1dedc458c0) 0 + primary-for QAbstractItemModel (0x7f1dedc45850) + +Class QPixmapCache + size=1 align=1 + base size=0 base align=1 +QPixmapCache (0x7f1deda8aee0) 0 empty + +Vtable for QImageIOHandler +QImageIOHandler::_ZTV15QImageIOHandler: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QImageIOHandler) +16 QImageIOHandler::~QImageIOHandler +24 QImageIOHandler::~QImageIOHandler +32 QImageIOHandler::name +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QImageIOHandler::write +64 QImageIOHandler::option +72 QImageIOHandler::setOption +80 QImageIOHandler::supportsOption +88 QImageIOHandler::jumpToNextImage +96 QImageIOHandler::jumpToImage +104 QImageIOHandler::loopCount +112 QImageIOHandler::imageCount +120 QImageIOHandler::nextImageDelay +128 QImageIOHandler::currentImageNumber +136 QImageIOHandler::currentImageRect + +Class QImageIOHandler + size=16 align=8 + base size=16 base align=8 +QImageIOHandler (0x7f1deda8af50) 0 + vptr=((& QImageIOHandler::_ZTV15QImageIOHandler) + 16u) + +Vtable for QImageIOHandlerFactoryInterface +QImageIOHandlerFactoryInterface::_ZTV31QImageIOHandlerFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI31QImageIOHandlerFactoryInterface) +16 QImageIOHandlerFactoryInterface::~QImageIOHandlerFactoryInterface +24 QImageIOHandlerFactoryInterface::~QImageIOHandlerFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QImageIOHandlerFactoryInterface + size=8 align=8 + base size=8 base align=8 +QImageIOHandlerFactoryInterface (0x7f1deda9bb60) 0 nearly-empty + vptr=((& QImageIOHandlerFactoryInterface::_ZTV31QImageIOHandlerFactoryInterface) + 16u) + QFactoryInterface (0x7f1deda9bbd0) 0 nearly-empty + primary-for QImageIOHandlerFactoryInterface (0x7f1deda9bb60) + +Vtable for QImageIOPlugin +QImageIOPlugin::_ZTV14QImageIOPlugin: 23u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QImageIOPlugin) +16 QImageIOPlugin::metaObject +24 QImageIOPlugin::qt_metacast +32 QImageIOPlugin::qt_metacall +40 QImageIOPlugin::~QImageIOPlugin +48 QImageIOPlugin::~QImageIOPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 (int (*)(...))-0x00000000000000010 +144 (int (*)(...))(& _ZTI14QImageIOPlugin) +152 QImageIOPlugin::_ZThn16_N14QImageIOPluginD1Ev +160 QImageIOPlugin::_ZThn16_N14QImageIOPluginD0Ev +168 __cxa_pure_virtual +176 __cxa_pure_virtual + +Class QImageIOPlugin + size=24 align=8 + base size=24 base align=8 +QImageIOPlugin (0x7f1deda9fb00) 0 + vptr=((& QImageIOPlugin::_ZTV14QImageIOPlugin) + 16u) + QObject (0x7f1dedaaf3f0) 0 + primary-for QImageIOPlugin (0x7f1deda9fb00) + QImageIOHandlerFactoryInterface (0x7f1dedaaf460) 16 nearly-empty + vptr=((& QImageIOPlugin::_ZTV14QImageIOPlugin) + 152u) + QFactoryInterface (0x7f1dedaaf4d0) 16 nearly-empty + primary-for QImageIOHandlerFactoryInterface (0x7f1dedaaf460) + +Vtable for QPicture +QPicture::_ZTV8QPicture: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QPicture) +16 QPicture::~QPicture +24 QPicture::~QPicture +32 QPicture::devType +40 QPicture::paintEngine +48 QPicture::metric +56 QPicture::setData + +Class QPicture + size=24 align=8 + base size=24 base align=8 +QPicture (0x7f1dedb024d0) 0 + vptr=((& QPicture::_ZTV8QPicture) + 16u) + QPaintDevice (0x7f1dedb02540) 0 + primary-for QPicture (0x7f1dedb024d0) + +Class QPictureIO + size=8 align=8 + base size=8 base align=8 +QPictureIO (0x7f1dedb1b070) 0 + +Class QImageReader + size=8 align=8 + base size=8 base align=8 +QImageReader (0x7f1dedb1b690) 0 + +Class QImageWriter + size=8 align=8 + base size=8 base align=8 +QImageWriter (0x7f1dedb380e0) 0 + +Vtable for QMovie +QMovie::_ZTV6QMovie: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QMovie) +16 QMovie::metaObject +24 QMovie::qt_metacast +32 QMovie::qt_metacall +40 QMovie::~QMovie +48 QMovie::~QMovie +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QMovie + size=16 align=8 + base size=16 base align=8 +QMovie (0x7f1dedb38930) 0 + vptr=((& QMovie::_ZTV6QMovie) + 16u) + QObject (0x7f1dedb389a0) 0 + primary-for QMovie (0x7f1dedb38930) + +Vtable for QIconEngineFactoryInterface +QIconEngineFactoryInterface::_ZTV27QIconEngineFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QIconEngineFactoryInterface) +16 QIconEngineFactoryInterface::~QIconEngineFactoryInterface +24 QIconEngineFactoryInterface::~QIconEngineFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QIconEngineFactoryInterface + size=8 align=8 + base size=8 base align=8 +QIconEngineFactoryInterface (0x7f1ded97d9a0) 0 nearly-empty + vptr=((& QIconEngineFactoryInterface::_ZTV27QIconEngineFactoryInterface) + 16u) + QFactoryInterface (0x7f1ded97da10) 0 nearly-empty + primary-for QIconEngineFactoryInterface (0x7f1ded97d9a0) + +Vtable for QIconEnginePlugin +QIconEnginePlugin::_ZTV17QIconEnginePlugin: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QIconEnginePlugin) +16 QIconEnginePlugin::metaObject +24 QIconEnginePlugin::qt_metacast +32 QIconEnginePlugin::qt_metacall +40 QIconEnginePlugin::~QIconEnginePlugin +48 QIconEnginePlugin::~QIconEnginePlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI17QIconEnginePlugin) +144 QIconEnginePlugin::_ZThn16_N17QIconEnginePluginD1Ev +152 QIconEnginePlugin::_ZThn16_N17QIconEnginePluginD0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QIconEnginePlugin + size=24 align=8 + base size=24 base align=8 +QIconEnginePlugin (0x7f1ded97be80) 0 + vptr=((& QIconEnginePlugin::_ZTV17QIconEnginePlugin) + 16u) + QObject (0x7f1ded986230) 0 + primary-for QIconEnginePlugin (0x7f1ded97be80) + QIconEngineFactoryInterface (0x7f1ded9862a0) 16 nearly-empty + vptr=((& QIconEnginePlugin::_ZTV17QIconEnginePlugin) + 144u) + QFactoryInterface (0x7f1ded986310) 16 nearly-empty + primary-for QIconEngineFactoryInterface (0x7f1ded9862a0) + +Vtable for QIconEngineFactoryInterfaceV2 +QIconEngineFactoryInterfaceV2::_ZTV29QIconEngineFactoryInterfaceV2: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI29QIconEngineFactoryInterfaceV2) +16 QIconEngineFactoryInterfaceV2::~QIconEngineFactoryInterfaceV2 +24 QIconEngineFactoryInterfaceV2::~QIconEngineFactoryInterfaceV2 +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QIconEngineFactoryInterfaceV2 + size=8 align=8 + base size=8 base align=8 +QIconEngineFactoryInterfaceV2 (0x7f1ded9961c0) 0 nearly-empty + vptr=((& QIconEngineFactoryInterfaceV2::_ZTV29QIconEngineFactoryInterfaceV2) + 16u) + QFactoryInterface (0x7f1ded996230) 0 nearly-empty + primary-for QIconEngineFactoryInterfaceV2 (0x7f1ded9961c0) + +Vtable for QIconEnginePluginV2 +QIconEnginePluginV2::_ZTV19QIconEnginePluginV2: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QIconEnginePluginV2) +16 QIconEnginePluginV2::metaObject +24 QIconEnginePluginV2::qt_metacast +32 QIconEnginePluginV2::qt_metacall +40 QIconEnginePluginV2::~QIconEnginePluginV2 +48 QIconEnginePluginV2::~QIconEnginePluginV2 +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI19QIconEnginePluginV2) +144 QIconEnginePluginV2::_ZThn16_N19QIconEnginePluginV2D1Ev +152 QIconEnginePluginV2::_ZThn16_N19QIconEnginePluginV2D0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QIconEnginePluginV2 + size=24 align=8 + base size=24 base align=8 +QIconEnginePluginV2 (0x7f1ded990d00) 0 + vptr=((& QIconEnginePluginV2::_ZTV19QIconEnginePluginV2) + 16u) + QObject (0x7f1ded996af0) 0 + primary-for QIconEnginePluginV2 (0x7f1ded990d00) + QIconEngineFactoryInterfaceV2 (0x7f1ded996b60) 16 nearly-empty + vptr=((& QIconEnginePluginV2::_ZTV19QIconEnginePluginV2) + 144u) + QFactoryInterface (0x7f1ded996bd0) 16 nearly-empty + primary-for QIconEngineFactoryInterfaceV2 (0x7f1ded996b60) + +Vtable for QIconEngine +QIconEngine::_ZTV11QIconEngine: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QIconEngine) +16 QIconEngine::~QIconEngine +24 QIconEngine::~QIconEngine +32 __cxa_pure_virtual +40 QIconEngine::actualSize +48 QIconEngine::pixmap +56 QIconEngine::addPixmap +64 QIconEngine::addFile + +Class QIconEngine + size=8 align=8 + base size=8 base align=8 +QIconEngine (0x7f1ded9ada80) 0 nearly-empty + vptr=((& QIconEngine::_ZTV11QIconEngine) + 16u) + +Class QIconEngineV2::AvailableSizesArgument + size=16 align=8 + base size=16 base align=8 +QIconEngineV2::AvailableSizesArgument (0x7f1ded9b82a0) 0 + +Vtable for QIconEngineV2 +QIconEngineV2::_ZTV13QIconEngineV2: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QIconEngineV2) +16 QIconEngineV2::~QIconEngineV2 +24 QIconEngineV2::~QIconEngineV2 +32 __cxa_pure_virtual +40 QIconEngine::actualSize +48 QIconEngine::pixmap +56 QIconEngine::addPixmap +64 QIconEngine::addFile +72 QIconEngineV2::key +80 QIconEngineV2::clone +88 QIconEngineV2::read +96 QIconEngineV2::write +104 QIconEngineV2::virtual_hook + +Class QIconEngineV2 + size=8 align=8 + base size=8 base align=8 +QIconEngineV2 (0x7f1ded9b8070) 0 nearly-empty + vptr=((& QIconEngineV2::_ZTV13QIconEngineV2) + 16u) + QIconEngine (0x7f1ded9b80e0) 0 nearly-empty + primary-for QIconEngineV2 (0x7f1ded9b8070) + +Vtable for QBitmap +QBitmap::_ZTV7QBitmap: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QBitmap) +16 QBitmap::~QBitmap +24 QBitmap::~QBitmap +32 QPixmap::devType +40 QPixmap::paintEngine +48 QPixmap::metric + +Class QBitmap + size=24 align=8 + base size=24 base align=8 +QBitmap (0x7f1ded9b8a80) 0 + vptr=((& QBitmap::_ZTV7QBitmap) + 16u) + QPixmap (0x7f1ded9b8af0) 0 + primary-for QBitmap (0x7f1ded9b8a80) + QPaintDevice (0x7f1ded9b8b60) 0 + primary-for QPixmap (0x7f1ded9b8af0) + +Vtable for QPictureFormatInterface +QPictureFormatInterface::_ZTV23QPictureFormatInterface: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QPictureFormatInterface) +16 QPictureFormatInterface::~QPictureFormatInterface +24 QPictureFormatInterface::~QPictureFormatInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual + +Class QPictureFormatInterface + size=8 align=8 + base size=8 base align=8 +QPictureFormatInterface (0x7f1deda11bd0) 0 nearly-empty + vptr=((& QPictureFormatInterface::_ZTV23QPictureFormatInterface) + 16u) + QFactoryInterface (0x7f1deda11c40) 0 nearly-empty + primary-for QPictureFormatInterface (0x7f1deda11bd0) + +Vtable for QPictureFormatPlugin +QPictureFormatPlugin::_ZTV20QPictureFormatPlugin: 26u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QPictureFormatPlugin) +16 QPictureFormatPlugin::metaObject +24 QPictureFormatPlugin::qt_metacast +32 QPictureFormatPlugin::qt_metacall +40 QPictureFormatPlugin::~QPictureFormatPlugin +48 QPictureFormatPlugin::~QPictureFormatPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 QPictureFormatPlugin::loadPicture +128 QPictureFormatPlugin::savePicture +136 __cxa_pure_virtual +144 (int (*)(...))-0x00000000000000010 +152 (int (*)(...))(& _ZTI20QPictureFormatPlugin) +160 QPictureFormatPlugin::_ZThn16_N20QPictureFormatPluginD1Ev +168 QPictureFormatPlugin::_ZThn16_N20QPictureFormatPluginD0Ev +176 __cxa_pure_virtual +184 QPictureFormatPlugin::_ZThn16_N20QPictureFormatPlugin11loadPictureERK7QStringS2_P8QPicture +192 QPictureFormatPlugin::_ZThn16_N20QPictureFormatPlugin11savePictureERK7QStringS2_RK8QPicture +200 __cxa_pure_virtual + +Class QPictureFormatPlugin + size=24 align=8 + base size=24 base align=8 +QPictureFormatPlugin (0x7f1deda17a00) 0 + vptr=((& QPictureFormatPlugin::_ZTV20QPictureFormatPlugin) + 16u) + QObject (0x7f1deda1f3f0) 0 + primary-for QPictureFormatPlugin (0x7f1deda17a00) + QPictureFormatInterface (0x7f1deda1f460) 16 nearly-empty + vptr=((& QPictureFormatPlugin::_ZTV20QPictureFormatPlugin) + 160u) + QFactoryInterface (0x7f1deda1f4d0) 16 nearly-empty + primary-for QPictureFormatInterface (0x7f1deda1f460) + +Class QVFbHeader + size=1088 align=8 + base size=1088 base align=8 +QVFbHeader (0x7f1deda34380) 0 + +Class QVFbKeyData + size=12 align=4 + base size=12 base align=4 +QVFbKeyData (0x7f1deda343f0) 0 + +Vtable for QWSEmbedWidget +QWSEmbedWidget::_ZTV14QWSEmbedWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QWSEmbedWidget) +16 QWSEmbedWidget::metaObject +24 QWSEmbedWidget::qt_metacast +32 QWSEmbedWidget::qt_metacall +40 QWSEmbedWidget::~QWSEmbedWidget +48 QWSEmbedWidget::~QWSEmbedWidget +56 QWidget::event +64 QWSEmbedWidget::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWSEmbedWidget::moveEvent +264 QWSEmbedWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWSEmbedWidget::showEvent +344 QWSEmbedWidget::hideEvent +352 QWidget::x11Event +360 QWSEmbedWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI14QWSEmbedWidget) +464 QWSEmbedWidget::_ZThn16_N14QWSEmbedWidgetD1Ev +472 QWSEmbedWidget::_ZThn16_N14QWSEmbedWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWSEmbedWidget + size=40 align=8 + base size=40 base align=8 +QWSEmbedWidget (0x7f1deda34460) 0 + vptr=((& QWSEmbedWidget::_ZTV14QWSEmbedWidget) + 16u) + QWidget (0x7f1deda33200) 0 + primary-for QWSEmbedWidget (0x7f1deda34460) + QObject (0x7f1deda344d0) 0 + primary-for QWidget (0x7f1deda33200) + QPaintDevice (0x7f1deda34540) 16 + vptr=((& QWSEmbedWidget::_ZTV14QWSEmbedWidget) + 464u) + +Class QColormap + size=8 align=8 + base size=8 base align=8 +QColormap (0x7f1deda4b930) 0 + +Vtable for QPrinter +QPrinter::_ZTV8QPrinter: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QPrinter) +16 QPrinter::~QPrinter +24 QPrinter::~QPrinter +32 QPrinter::devType +40 QPrinter::paintEngine +48 QPrinter::metric + +Class QPrinter + size=24 align=8 + base size=24 base align=8 +QPrinter (0x7f1deda54150) 0 + vptr=((& QPrinter::_ZTV8QPrinter) + 16u) + QPaintDevice (0x7f1deda541c0) 0 + primary-for QPrinter (0x7f1deda54150) + +Vtable for QPrintEngine +QPrintEngine::_ZTV12QPrintEngine: 10u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QPrintEngine) +16 QPrintEngine::~QPrintEngine +24 QPrintEngine::~QPrintEngine +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual + +Class QPrintEngine + size=8 align=8 + base size=8 base align=8 +QPrintEngine (0x7f1ded896620) 0 nearly-empty + vptr=((& QPrintEngine::_ZTV12QPrintEngine) + 16u) + +Class QPainter + size=8 align=8 + base size=8 base align=8 +QPainter (0x7f1ded8a5380) 0 + +Class QStylePainter + size=24 align=8 + base size=24 base align=8 +QStylePainter (0x7f1ded6a8c40) 0 + QPainter (0x7f1ded6a8cb0) 0 + +Class QPrinterInfo + size=8 align=8 + base size=8 base align=8 +QPrinterInfo (0x7f1ded6dc230) 0 + +Class QTextItem + size=1 align=1 + base size=0 base align=1 +QTextItem (0x7f1ded6df700) 0 empty + +Vtable for QPaintEngine +QPaintEngine::_ZTV12QPaintEngine: 24u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QPaintEngine) +16 QPaintEngine::~QPaintEngine +24 QPaintEngine::~QPaintEngine +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QPaintEngine::drawRects +64 QPaintEngine::drawRects +72 QPaintEngine::drawLines +80 QPaintEngine::drawLines +88 QPaintEngine::drawEllipse +96 QPaintEngine::drawEllipse +104 QPaintEngine::drawPath +112 QPaintEngine::drawPoints +120 QPaintEngine::drawPoints +128 QPaintEngine::drawPolygon +136 QPaintEngine::drawPolygon +144 __cxa_pure_virtual +152 QPaintEngine::drawTextItem +160 QPaintEngine::drawTiledPixmap +168 QPaintEngine::drawImage +176 QPaintEngine::coordinateOffset +184 __cxa_pure_virtual + +Class QPaintEngine + size=32 align=8 + base size=32 base align=8 +QPaintEngine (0x7f1ded6dfd20) 0 + vptr=((& QPaintEngine::_ZTV12QPaintEngine) + 16u) + +Class QPaintEngineState + size=4 align=4 + base size=4 base align=4 +QPaintEngineState (0x7f1ded7287e0) 0 + +Class QTreeWidgetItemIterator + size=24 align=8 + base size=20 base align=8 +QTreeWidgetItemIterator (0x7f1ded5e3af0) 0 + +Vtable for QDataWidgetMapper +QDataWidgetMapper::_ZTV17QDataWidgetMapper: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QDataWidgetMapper) +16 QDataWidgetMapper::metaObject +24 QDataWidgetMapper::qt_metacast +32 QDataWidgetMapper::qt_metacall +40 QDataWidgetMapper::~QDataWidgetMapper +48 QDataWidgetMapper::~QDataWidgetMapper +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QDataWidgetMapper::setCurrentIndex + +Class QDataWidgetMapper + size=16 align=8 + base size=16 base align=8 +QDataWidgetMapper (0x7f1ded63f690) 0 + vptr=((& QDataWidgetMapper::_ZTV17QDataWidgetMapper) + 16u) + QObject (0x7f1ded63f700) 0 + primary-for QDataWidgetMapper (0x7f1ded63f690) + +Vtable for QFileIconProvider +QFileIconProvider::_ZTV17QFileIconProvider: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QFileIconProvider) +16 QFileIconProvider::~QFileIconProvider +24 QFileIconProvider::~QFileIconProvider +32 QFileIconProvider::icon +40 QFileIconProvider::icon +48 QFileIconProvider::type + +Class QFileIconProvider + size=16 align=8 + base size=16 base align=8 +QFileIconProvider (0x7f1ded478150) 0 + vptr=((& QFileIconProvider::_ZTV17QFileIconProvider) + 16u) + +Vtable for QStringListModel +QStringListModel::_ZTV16QStringListModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QStringListModel) +16 QStringListModel::metaObject +24 QStringListModel::qt_metacast +32 QStringListModel::qt_metacall +40 QStringListModel::~QStringListModel +48 QStringListModel::~QStringListModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractListModel::index +120 QAbstractListModel::parent +128 QStringListModel::rowCount +136 QAbstractListModel::columnCount +144 QAbstractListModel::hasChildren +152 QStringListModel::data +160 QStringListModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractListModel::dropMimeData +224 QStringListModel::supportedDropActions +232 QStringListModel::insertRows +240 QAbstractItemModel::insertColumns +248 QStringListModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QStringListModel::flags +288 QStringListModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QStringListModel + size=24 align=8 + base size=24 base align=8 +QStringListModel (0x7f1ded478c40) 0 + vptr=((& QStringListModel::_ZTV16QStringListModel) + 16u) + QAbstractListModel (0x7f1ded478cb0) 0 + primary-for QStringListModel (0x7f1ded478c40) + QAbstractItemModel (0x7f1ded478d20) 0 + primary-for QAbstractListModel (0x7f1ded478cb0) + QObject (0x7f1ded478d90) 0 + primary-for QAbstractItemModel (0x7f1ded478d20) + +Vtable for QListWidgetItem +QListWidgetItem::_ZTV15QListWidgetItem: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QListWidgetItem) +16 QListWidgetItem::~QListWidgetItem +24 QListWidgetItem::~QListWidgetItem +32 QListWidgetItem::clone +40 QListWidgetItem::setBackgroundColor +48 QListWidgetItem::data +56 QListWidgetItem::setData +64 QListWidgetItem::operator< +72 QListWidgetItem::read +80 QListWidgetItem::write + +Class QListWidgetItem + size=48 align=8 + base size=44 base align=8 +QListWidgetItem (0x7f1ded498230) 0 + vptr=((& QListWidgetItem::_ZTV15QListWidgetItem) + 16u) + +Vtable for QListWidget +QListWidget::_ZTV11QListWidget: 107u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QListWidget) +16 QListWidget::metaObject +24 QListWidget::qt_metacast +32 QListWidget::qt_metacall +40 QListWidget::~QListWidget +48 QListWidget::~QListWidget +56 QListWidget::event +64 QObject::eventFilter +72 QListView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QListView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QListView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QListView::paintEvent +256 QWidget::moveEvent +264 QListView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QListView::dragMoveEvent +320 QListView::dragLeaveEvent +328 QListWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QListView::scrollContentsBy +464 QListWidget::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QListView::visualRect +496 QListView::scrollTo +504 QListView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QListView::reset +536 QListView::setRootIndex +544 QListView::doItemsLayout +552 QAbstractItemView::selectAll +560 QListView::dataChanged +568 QListView::rowsInserted +576 QListView::rowsAboutToBeRemoved +584 QListView::selectionChanged +592 QListView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QListView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QListView::moveCursor +688 QListView::horizontalOffset +696 QListView::verticalOffset +704 QListView::isIndexHidden +712 QListView::setSelection +720 QListView::visualRegionForSelection +728 QListView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QListView::startDrag +760 QListView::viewOptions +768 QListWidget::mimeTypes +776 QListWidget::mimeData +784 QListWidget::dropMimeData +792 QListWidget::supportedDropActions +800 (int (*)(...))-0x00000000000000010 +808 (int (*)(...))(& _ZTI11QListWidget) +816 QListWidget::_ZThn16_N11QListWidgetD1Ev +824 QListWidget::_ZThn16_N11QListWidgetD0Ev +832 QWidget::_ZThn16_NK7QWidget7devTypeEv +840 QWidget::_ZThn16_NK7QWidget11paintEngineEv +848 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QListWidget + size=40 align=8 + base size=40 base align=8 +QListWidget (0x7f1ded50d9a0) 0 + vptr=((& QListWidget::_ZTV11QListWidget) + 16u) + QListView (0x7f1ded50da10) 0 + primary-for QListWidget (0x7f1ded50d9a0) + QAbstractItemView (0x7f1ded50da80) 0 + primary-for QListView (0x7f1ded50da10) + QAbstractScrollArea (0x7f1ded50daf0) 0 + primary-for QAbstractItemView (0x7f1ded50da80) + QFrame (0x7f1ded50db60) 0 + primary-for QAbstractScrollArea (0x7f1ded50daf0) + QWidget (0x7f1ded50a580) 0 + primary-for QFrame (0x7f1ded50db60) + QObject (0x7f1ded50dbd0) 0 + primary-for QWidget (0x7f1ded50a580) + QPaintDevice (0x7f1ded50dc40) 16 + vptr=((& QListWidget::_ZTV11QListWidget) + 816u) + +Vtable for QDirModel +QDirModel::_ZTV9QDirModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QDirModel) +16 QDirModel::metaObject +24 QDirModel::qt_metacast +32 QDirModel::qt_metacall +40 QDirModel::~QDirModel +48 QDirModel::~QDirModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QDirModel::index +120 QDirModel::parent +128 QDirModel::rowCount +136 QDirModel::columnCount +144 QDirModel::hasChildren +152 QDirModel::data +160 QDirModel::setData +168 QDirModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QDirModel::mimeTypes +208 QDirModel::mimeData +216 QDirModel::dropMimeData +224 QDirModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QDirModel::flags +288 QDirModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QDirModel + size=16 align=8 + base size=16 base align=8 +QDirModel (0x7f1ded546e00) 0 + vptr=((& QDirModel::_ZTV9QDirModel) + 16u) + QAbstractItemModel (0x7f1ded546e70) 0 + primary-for QDirModel (0x7f1ded546e00) + QObject (0x7f1ded546ee0) 0 + primary-for QAbstractItemModel (0x7f1ded546e70) + +Vtable for QColumnView +QColumnView::_ZTV11QColumnView: 104u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QColumnView) +16 QColumnView::metaObject +24 QColumnView::qt_metacast +32 QColumnView::qt_metacall +40 QColumnView::~QColumnView +48 QColumnView::~QColumnView +56 QAbstractItemView::event +64 QObject::eventFilter +72 QAbstractItemView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QColumnView::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QAbstractItemView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QAbstractItemView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractScrollArea::paintEvent +256 QWidget::moveEvent +264 QColumnView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QColumnView::scrollContentsBy +464 QColumnView::setModel +472 QColumnView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QColumnView::visualRect +496 QColumnView::scrollTo +504 QColumnView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QAbstractItemView::reset +536 QColumnView::setRootIndex +544 QAbstractItemView::doItemsLayout +552 QColumnView::selectAll +560 QAbstractItemView::dataChanged +568 QAbstractItemView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QAbstractItemView::selectionChanged +592 QColumnView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QAbstractItemView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QColumnView::moveCursor +688 QColumnView::horizontalOffset +696 QColumnView::verticalOffset +704 QColumnView::isIndexHidden +712 QColumnView::setSelection +720 QColumnView::visualRegionForSelection +728 QAbstractItemView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 QColumnView::createColumn +776 (int (*)(...))-0x00000000000000010 +784 (int (*)(...))(& _ZTI11QColumnView) +792 QColumnView::_ZThn16_N11QColumnViewD1Ev +800 QColumnView::_ZThn16_N11QColumnViewD0Ev +808 QWidget::_ZThn16_NK7QWidget7devTypeEv +816 QWidget::_ZThn16_NK7QWidget11paintEngineEv +824 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QColumnView + size=40 align=8 + base size=40 base align=8 +QColumnView (0x7f1ded3740e0) 0 + vptr=((& QColumnView::_ZTV11QColumnView) + 16u) + QAbstractItemView (0x7f1ded374150) 0 + primary-for QColumnView (0x7f1ded3740e0) + QAbstractScrollArea (0x7f1ded3741c0) 0 + primary-for QAbstractItemView (0x7f1ded374150) + QFrame (0x7f1ded374230) 0 + primary-for QAbstractScrollArea (0x7f1ded3741c0) + QWidget (0x7f1ded549d00) 0 + primary-for QFrame (0x7f1ded374230) + QObject (0x7f1ded3742a0) 0 + primary-for QWidget (0x7f1ded549d00) + QPaintDevice (0x7f1ded374310) 16 + vptr=((& QColumnView::_ZTV11QColumnView) + 792u) + +Vtable for QStandardItem +QStandardItem::_ZTV13QStandardItem: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QStandardItem) +16 QStandardItem::~QStandardItem +24 QStandardItem::~QStandardItem +32 QStandardItem::data +40 QStandardItem::setData +48 QStandardItem::clone +56 QStandardItem::type +64 QStandardItem::read +72 QStandardItem::write +80 QStandardItem::operator< + +Class QStandardItem + size=16 align=8 + base size=16 base align=8 +QStandardItem (0x7f1ded399230) 0 + vptr=((& QStandardItem::_ZTV13QStandardItem) + 16u) + +Vtable for QStandardItemModel +QStandardItemModel::_ZTV18QStandardItemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QStandardItemModel) +16 QStandardItemModel::metaObject +24 QStandardItemModel::qt_metacast +32 QStandardItemModel::qt_metacall +40 QStandardItemModel::~QStandardItemModel +48 QStandardItemModel::~QStandardItemModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QStandardItemModel::index +120 QStandardItemModel::parent +128 QStandardItemModel::rowCount +136 QStandardItemModel::columnCount +144 QStandardItemModel::hasChildren +152 QStandardItemModel::data +160 QStandardItemModel::setData +168 QStandardItemModel::headerData +176 QStandardItemModel::setHeaderData +184 QStandardItemModel::itemData +192 QStandardItemModel::setItemData +200 QStandardItemModel::mimeTypes +208 QStandardItemModel::mimeData +216 QStandardItemModel::dropMimeData +224 QStandardItemModel::supportedDropActions +232 QStandardItemModel::insertRows +240 QStandardItemModel::insertColumns +248 QStandardItemModel::removeRows +256 QStandardItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QStandardItemModel::flags +288 QStandardItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QStandardItemModel + size=16 align=8 + base size=16 base align=8 +QStandardItemModel (0x7f1ded275e00) 0 + vptr=((& QStandardItemModel::_ZTV18QStandardItemModel) + 16u) + QAbstractItemModel (0x7f1ded275e70) 0 + primary-for QStandardItemModel (0x7f1ded275e00) + QObject (0x7f1ded275ee0) 0 + primary-for QAbstractItemModel (0x7f1ded275e70) + +Vtable for QAbstractProxyModel +QAbstractProxyModel::_ZTV19QAbstractProxyModel: 47u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractProxyModel) +16 QAbstractProxyModel::metaObject +24 QAbstractProxyModel::qt_metacast +32 QAbstractProxyModel::qt_metacall +40 QAbstractProxyModel::~QAbstractProxyModel +48 QAbstractProxyModel::~QAbstractProxyModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractItemModel::hasChildren +152 QAbstractProxyModel::data +160 QAbstractProxyModel::setData +168 QAbstractProxyModel::headerData +176 QAbstractProxyModel::setHeaderData +184 QAbstractProxyModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractItemModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractProxyModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractProxyModel::submit +328 QAbstractProxyModel::revert +336 QAbstractProxyModel::setSourceModel +344 __cxa_pure_virtual +352 __cxa_pure_virtual +360 QAbstractProxyModel::mapSelectionToSource +368 QAbstractProxyModel::mapSelectionFromSource + +Class QAbstractProxyModel + size=16 align=8 + base size=16 base align=8 +QAbstractProxyModel (0x7f1ded2b39a0) 0 + vptr=((& QAbstractProxyModel::_ZTV19QAbstractProxyModel) + 16u) + QAbstractItemModel (0x7f1ded2b3a10) 0 + primary-for QAbstractProxyModel (0x7f1ded2b39a0) + QObject (0x7f1ded2b3a80) 0 + primary-for QAbstractItemModel (0x7f1ded2b3a10) + +Vtable for QSortFilterProxyModel +QSortFilterProxyModel::_ZTV21QSortFilterProxyModel: 50u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QSortFilterProxyModel) +16 QSortFilterProxyModel::metaObject +24 QSortFilterProxyModel::qt_metacast +32 QSortFilterProxyModel::qt_metacall +40 QSortFilterProxyModel::~QSortFilterProxyModel +48 QSortFilterProxyModel::~QSortFilterProxyModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QSortFilterProxyModel::index +120 QSortFilterProxyModel::parent +128 QSortFilterProxyModel::rowCount +136 QSortFilterProxyModel::columnCount +144 QSortFilterProxyModel::hasChildren +152 QSortFilterProxyModel::data +160 QSortFilterProxyModel::setData +168 QSortFilterProxyModel::headerData +176 QSortFilterProxyModel::setHeaderData +184 QAbstractProxyModel::itemData +192 QAbstractItemModel::setItemData +200 QSortFilterProxyModel::mimeTypes +208 QSortFilterProxyModel::mimeData +216 QSortFilterProxyModel::dropMimeData +224 QSortFilterProxyModel::supportedDropActions +232 QSortFilterProxyModel::insertRows +240 QSortFilterProxyModel::insertColumns +248 QSortFilterProxyModel::removeRows +256 QSortFilterProxyModel::removeColumns +264 QSortFilterProxyModel::fetchMore +272 QSortFilterProxyModel::canFetchMore +280 QSortFilterProxyModel::flags +288 QSortFilterProxyModel::sort +296 QSortFilterProxyModel::buddy +304 QSortFilterProxyModel::match +312 QSortFilterProxyModel::span +320 QAbstractProxyModel::submit +328 QAbstractProxyModel::revert +336 QSortFilterProxyModel::setSourceModel +344 QSortFilterProxyModel::mapToSource +352 QSortFilterProxyModel::mapFromSource +360 QSortFilterProxyModel::mapSelectionToSource +368 QSortFilterProxyModel::mapSelectionFromSource +376 QSortFilterProxyModel::filterAcceptsRow +384 QSortFilterProxyModel::filterAcceptsColumn +392 QSortFilterProxyModel::lessThan + +Class QSortFilterProxyModel + size=16 align=8 + base size=16 base align=8 +QSortFilterProxyModel (0x7f1ded2dd5b0) 0 + vptr=((& QSortFilterProxyModel::_ZTV21QSortFilterProxyModel) + 16u) + QAbstractProxyModel (0x7f1ded2dd620) 0 + primary-for QSortFilterProxyModel (0x7f1ded2dd5b0) + QAbstractItemModel (0x7f1ded2dd690) 0 + primary-for QAbstractProxyModel (0x7f1ded2dd620) + QObject (0x7f1ded2dd700) 0 + primary-for QAbstractItemModel (0x7f1ded2dd690) + +Vtable for QStyledItemDelegate +QStyledItemDelegate::_ZTV19QStyledItemDelegate: 23u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QStyledItemDelegate) +16 QStyledItemDelegate::metaObject +24 QStyledItemDelegate::qt_metacast +32 QStyledItemDelegate::qt_metacall +40 QStyledItemDelegate::~QStyledItemDelegate +48 QStyledItemDelegate::~QStyledItemDelegate +56 QObject::event +64 QStyledItemDelegate::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QStyledItemDelegate::paint +120 QStyledItemDelegate::sizeHint +128 QStyledItemDelegate::createEditor +136 QStyledItemDelegate::setEditorData +144 QStyledItemDelegate::setModelData +152 QStyledItemDelegate::updateEditorGeometry +160 QStyledItemDelegate::editorEvent +168 QStyledItemDelegate::displayText +176 QStyledItemDelegate::initStyleOption + +Class QStyledItemDelegate + size=16 align=8 + base size=16 base align=8 +QStyledItemDelegate (0x7f1ded30f4d0) 0 + vptr=((& QStyledItemDelegate::_ZTV19QStyledItemDelegate) + 16u) + QAbstractItemDelegate (0x7f1ded30f540) 0 + primary-for QStyledItemDelegate (0x7f1ded30f4d0) + QObject (0x7f1ded30f5b0) 0 + primary-for QAbstractItemDelegate (0x7f1ded30f540) + +Vtable for QItemDelegate +QItemDelegate::_ZTV13QItemDelegate: 25u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QItemDelegate) +16 QItemDelegate::metaObject +24 QItemDelegate::qt_metacast +32 QItemDelegate::qt_metacall +40 QItemDelegate::~QItemDelegate +48 QItemDelegate::~QItemDelegate +56 QObject::event +64 QItemDelegate::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QItemDelegate::paint +120 QItemDelegate::sizeHint +128 QItemDelegate::createEditor +136 QItemDelegate::setEditorData +144 QItemDelegate::setModelData +152 QItemDelegate::updateEditorGeometry +160 QItemDelegate::editorEvent +168 QItemDelegate::drawDisplay +176 QItemDelegate::drawDecoration +184 QItemDelegate::drawFocus +192 QItemDelegate::drawCheck + +Class QItemDelegate + size=16 align=8 + base size=16 base align=8 +QItemDelegate (0x7f1ded321e70) 0 + vptr=((& QItemDelegate::_ZTV13QItemDelegate) + 16u) + QAbstractItemDelegate (0x7f1ded321ee0) 0 + primary-for QItemDelegate (0x7f1ded321e70) + QObject (0x7f1ded321f50) 0 + primary-for QAbstractItemDelegate (0x7f1ded321ee0) + +Vtable for QTableView +QTableView::_ZTV10QTableView: 103u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTableView) +16 QTableView::metaObject +24 QTableView::qt_metacast +32 QTableView::qt_metacall +40 QTableView::~QTableView +48 QTableView::~QTableView +56 QAbstractItemView::event +64 QObject::eventFilter +72 QTableView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QAbstractItemView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QAbstractItemView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTableView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QTableView::scrollContentsBy +464 QTableView::setModel +472 QTableView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QTableView::visualRect +496 QTableView::scrollTo +504 QTableView::indexAt +512 QTableView::sizeHintForRow +520 QTableView::sizeHintForColumn +528 QAbstractItemView::reset +536 QTableView::setRootIndex +544 QAbstractItemView::doItemsLayout +552 QAbstractItemView::selectAll +560 QAbstractItemView::dataChanged +568 QAbstractItemView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QTableView::selectionChanged +592 QTableView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QTableView::updateGeometries +624 QTableView::verticalScrollbarAction +632 QTableView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QTableView::moveCursor +688 QTableView::horizontalOffset +696 QTableView::verticalOffset +704 QTableView::isIndexHidden +712 QTableView::setSelection +720 QTableView::visualRegionForSelection +728 QTableView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QTableView::viewOptions +768 (int (*)(...))-0x00000000000000010 +776 (int (*)(...))(& _ZTI10QTableView) +784 QTableView::_ZThn16_N10QTableViewD1Ev +792 QTableView::_ZThn16_N10QTableViewD0Ev +800 QWidget::_ZThn16_NK7QWidget7devTypeEv +808 QWidget::_ZThn16_NK7QWidget11paintEngineEv +816 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTableView + size=40 align=8 + base size=40 base align=8 +QTableView (0x7f1ded346850) 0 + vptr=((& QTableView::_ZTV10QTableView) + 16u) + QAbstractItemView (0x7f1ded3468c0) 0 + primary-for QTableView (0x7f1ded346850) + QAbstractScrollArea (0x7f1ded346930) 0 + primary-for QAbstractItemView (0x7f1ded3468c0) + QFrame (0x7f1ded3469a0) 0 + primary-for QAbstractScrollArea (0x7f1ded346930) + QWidget (0x7f1ded342500) 0 + primary-for QFrame (0x7f1ded3469a0) + QObject (0x7f1ded346a10) 0 + primary-for QWidget (0x7f1ded342500) + QPaintDevice (0x7f1ded346a80) 16 + vptr=((& QTableView::_ZTV10QTableView) + 784u) + +Class QTableWidgetSelectionRange + size=16 align=4 + base size=16 base align=4 +QTableWidgetSelectionRange (0x7f1ded179620) 0 + +Vtable for QTableWidgetItem +QTableWidgetItem::_ZTV16QTableWidgetItem: 10u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QTableWidgetItem) +16 QTableWidgetItem::~QTableWidgetItem +24 QTableWidgetItem::~QTableWidgetItem +32 QTableWidgetItem::clone +40 QTableWidgetItem::data +48 QTableWidgetItem::setData +56 QTableWidgetItem::operator< +64 QTableWidgetItem::read +72 QTableWidgetItem::write + +Class QTableWidgetItem + size=48 align=8 + base size=44 base align=8 +QTableWidgetItem (0x7f1ded181af0) 0 + vptr=((& QTableWidgetItem::_ZTV16QTableWidgetItem) + 16u) + +Vtable for QTableWidget +QTableWidget::_ZTV12QTableWidget: 107u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTableWidget) +16 QTableWidget::metaObject +24 QTableWidget::qt_metacast +32 QTableWidget::qt_metacall +40 QTableWidget::~QTableWidget +48 QTableWidget::~QTableWidget +56 QTableWidget::event +64 QObject::eventFilter +72 QTableView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QAbstractItemView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QAbstractItemView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTableView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QTableWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QTableView::scrollContentsBy +464 QTableWidget::setModel +472 QTableView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QTableView::visualRect +496 QTableView::scrollTo +504 QTableView::indexAt +512 QTableView::sizeHintForRow +520 QTableView::sizeHintForColumn +528 QAbstractItemView::reset +536 QTableView::setRootIndex +544 QAbstractItemView::doItemsLayout +552 QAbstractItemView::selectAll +560 QAbstractItemView::dataChanged +568 QAbstractItemView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QTableView::selectionChanged +592 QTableView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QTableView::updateGeometries +624 QTableView::verticalScrollbarAction +632 QTableView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QTableView::moveCursor +688 QTableView::horizontalOffset +696 QTableView::verticalOffset +704 QTableView::isIndexHidden +712 QTableView::setSelection +720 QTableView::visualRegionForSelection +728 QTableView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QTableView::viewOptions +768 QTableWidget::mimeTypes +776 QTableWidget::mimeData +784 QTableWidget::dropMimeData +792 QTableWidget::supportedDropActions +800 (int (*)(...))-0x00000000000000010 +808 (int (*)(...))(& _ZTI12QTableWidget) +816 QTableWidget::_ZThn16_N12QTableWidgetD1Ev +824 QTableWidget::_ZThn16_N12QTableWidgetD0Ev +832 QWidget::_ZThn16_NK7QWidget7devTypeEv +840 QWidget::_ZThn16_NK7QWidget11paintEngineEv +848 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTableWidget + size=40 align=8 + base size=40 base align=8 +QTableWidget (0x7f1ded1f80e0) 0 + vptr=((& QTableWidget::_ZTV12QTableWidget) + 16u) + QTableView (0x7f1ded1f8150) 0 + primary-for QTableWidget (0x7f1ded1f80e0) + QAbstractItemView (0x7f1ded1f81c0) 0 + primary-for QTableView (0x7f1ded1f8150) + QAbstractScrollArea (0x7f1ded1f8230) 0 + primary-for QAbstractItemView (0x7f1ded1f81c0) + QFrame (0x7f1ded1f82a0) 0 + primary-for QAbstractScrollArea (0x7f1ded1f8230) + QWidget (0x7f1ded1f3580) 0 + primary-for QFrame (0x7f1ded1f82a0) + QObject (0x7f1ded1f8310) 0 + primary-for QWidget (0x7f1ded1f3580) + QPaintDevice (0x7f1ded1f8380) 16 + vptr=((& QTableWidget::_ZTV12QTableWidget) + 816u) + +Vtable for QTreeView +QTreeView::_ZTV9QTreeView: 105u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTreeView) +16 QTreeView::metaObject +24 QTreeView::qt_metacast +32 QTreeView::qt_metacall +40 QTreeView::~QTreeView +48 QTreeView::~QTreeView +56 QAbstractItemView::event +64 QObject::eventFilter +72 QTreeView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTreeView::mousePressEvent +168 QTreeView::mouseReleaseEvent +176 QTreeView::mouseDoubleClickEvent +184 QTreeView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QTreeView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTreeView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QTreeView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QTreeView::viewportEvent +456 QTreeView::scrollContentsBy +464 QTreeView::setModel +472 QTreeView::setSelectionModel +480 QTreeView::keyboardSearch +488 QTreeView::visualRect +496 QTreeView::scrollTo +504 QTreeView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QTreeView::sizeHintForColumn +528 QTreeView::reset +536 QTreeView::setRootIndex +544 QTreeView::doItemsLayout +552 QTreeView::selectAll +560 QTreeView::dataChanged +568 QTreeView::rowsInserted +576 QTreeView::rowsAboutToBeRemoved +584 QTreeView::selectionChanged +592 QTreeView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QTreeView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QTreeView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QTreeView::moveCursor +688 QTreeView::horizontalOffset +696 QTreeView::verticalOffset +704 QTreeView::isIndexHidden +712 QTreeView::setSelection +720 QTreeView::visualRegionForSelection +728 QTreeView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 QTreeView::drawRow +776 QTreeView::drawBranches +784 (int (*)(...))-0x00000000000000010 +792 (int (*)(...))(& _ZTI9QTreeView) +800 QTreeView::_ZThn16_N9QTreeViewD1Ev +808 QTreeView::_ZThn16_N9QTreeViewD0Ev +816 QWidget::_ZThn16_NK7QWidget7devTypeEv +824 QWidget::_ZThn16_NK7QWidget11paintEngineEv +832 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTreeView + size=40 align=8 + base size=40 base align=8 +QTreeView (0x7f1ded236070) 0 + vptr=((& QTreeView::_ZTV9QTreeView) + 16u) + QAbstractItemView (0x7f1ded2360e0) 0 + primary-for QTreeView (0x7f1ded236070) + QAbstractScrollArea (0x7f1ded236150) 0 + primary-for QAbstractItemView (0x7f1ded2360e0) + QFrame (0x7f1ded2361c0) 0 + primary-for QAbstractScrollArea (0x7f1ded236150) + QWidget (0x7f1ded230e00) 0 + primary-for QFrame (0x7f1ded2361c0) + QObject (0x7f1ded236230) 0 + primary-for QWidget (0x7f1ded230e00) + QPaintDevice (0x7f1ded2362a0) 16 + vptr=((& QTreeView::_ZTV9QTreeView) + 800u) + +Vtable for QProxyModel +QProxyModel::_ZTV11QProxyModel: 43u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QProxyModel) +16 QProxyModel::metaObject +24 QProxyModel::qt_metacast +32 QProxyModel::qt_metacall +40 QProxyModel::~QProxyModel +48 QProxyModel::~QProxyModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QProxyModel::index +120 QProxyModel::parent +128 QProxyModel::rowCount +136 QProxyModel::columnCount +144 QProxyModel::hasChildren +152 QProxyModel::data +160 QProxyModel::setData +168 QProxyModel::headerData +176 QProxyModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QProxyModel::mimeTypes +208 QProxyModel::mimeData +216 QProxyModel::dropMimeData +224 QProxyModel::supportedDropActions +232 QProxyModel::insertRows +240 QProxyModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QProxyModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QProxyModel::flags +288 QProxyModel::sort +296 QAbstractItemModel::buddy +304 QProxyModel::match +312 QProxyModel::span +320 QProxyModel::submit +328 QProxyModel::revert +336 QProxyModel::setModel + +Class QProxyModel + size=16 align=8 + base size=16 base align=8 +QProxyModel (0x7f1ded05ae00) 0 + vptr=((& QProxyModel::_ZTV11QProxyModel) + 16u) + QAbstractItemModel (0x7f1ded05ae70) 0 + primary-for QProxyModel (0x7f1ded05ae00) + QObject (0x7f1ded05aee0) 0 + primary-for QAbstractItemModel (0x7f1ded05ae70) + +Vtable for QHeaderView +QHeaderView::_ZTV11QHeaderView: 105u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QHeaderView) +16 QHeaderView::metaObject +24 QHeaderView::qt_metacast +32 QHeaderView::qt_metacall +40 QHeaderView::~QHeaderView +48 QHeaderView::~QHeaderView +56 QHeaderView::event +64 QObject::eventFilter +72 QAbstractItemView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QHeaderView::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QHeaderView::mousePressEvent +168 QHeaderView::mouseReleaseEvent +176 QHeaderView::mouseDoubleClickEvent +184 QHeaderView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QHeaderView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QHeaderView::viewportEvent +456 QHeaderView::scrollContentsBy +464 QHeaderView::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QHeaderView::visualRect +496 QHeaderView::scrollTo +504 QHeaderView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QHeaderView::reset +536 QAbstractItemView::setRootIndex +544 QHeaderView::doItemsLayout +552 QAbstractItemView::selectAll +560 QHeaderView::dataChanged +568 QHeaderView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QAbstractItemView::selectionChanged +592 QHeaderView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QHeaderView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QHeaderView::moveCursor +688 QHeaderView::horizontalOffset +696 QHeaderView::verticalOffset +704 QHeaderView::isIndexHidden +712 QHeaderView::setSelection +720 QHeaderView::visualRegionForSelection +728 QAbstractItemView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 QHeaderView::paintSection +776 QHeaderView::sectionSizeFromContents +784 (int (*)(...))-0x00000000000000010 +792 (int (*)(...))(& _ZTI11QHeaderView) +800 QHeaderView::_ZThn16_N11QHeaderViewD1Ev +808 QHeaderView::_ZThn16_N11QHeaderViewD0Ev +816 QWidget::_ZThn16_NK7QWidget7devTypeEv +824 QWidget::_ZThn16_NK7QWidget11paintEngineEv +832 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QHeaderView + size=40 align=8 + base size=40 base align=8 +QHeaderView (0x7f1ded07ecb0) 0 + vptr=((& QHeaderView::_ZTV11QHeaderView) + 16u) + QAbstractItemView (0x7f1ded07ed20) 0 + primary-for QHeaderView (0x7f1ded07ecb0) + QAbstractScrollArea (0x7f1ded07ed90) 0 + primary-for QAbstractItemView (0x7f1ded07ed20) + QFrame (0x7f1ded07ee00) 0 + primary-for QAbstractScrollArea (0x7f1ded07ed90) + QWidget (0x7f1ded056f80) 0 + primary-for QFrame (0x7f1ded07ee00) + QObject (0x7f1ded07ee70) 0 + primary-for QWidget (0x7f1ded056f80) + QPaintDevice (0x7f1ded07eee0) 16 + vptr=((& QHeaderView::_ZTV11QHeaderView) + 800u) + +Vtable for QItemEditorCreatorBase +QItemEditorCreatorBase::_ZTV22QItemEditorCreatorBase: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QItemEditorCreatorBase) +16 QItemEditorCreatorBase::~QItemEditorCreatorBase +24 QItemEditorCreatorBase::~QItemEditorCreatorBase +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QItemEditorCreatorBase + size=8 align=8 + base size=8 base align=8 +QItemEditorCreatorBase (0x7f1ded0c08c0) 0 nearly-empty + vptr=((& QItemEditorCreatorBase::_ZTV22QItemEditorCreatorBase) + 16u) + +Vtable for QItemEditorFactory +QItemEditorFactory::_ZTV18QItemEditorFactory: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QItemEditorFactory) +16 QItemEditorFactory::~QItemEditorFactory +24 QItemEditorFactory::~QItemEditorFactory +32 QItemEditorFactory::createEditor +40 QItemEditorFactory::valuePropertyName + +Class QItemEditorFactory + size=16 align=8 + base size=16 base align=8 +QItemEditorFactory (0x7f1ded0cb770) 0 + vptr=((& QItemEditorFactory::_ZTV18QItemEditorFactory) + 16u) + +Vtable for QTreeWidgetItem +QTreeWidgetItem::_ZTV15QTreeWidgetItem: 10u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QTreeWidgetItem) +16 QTreeWidgetItem::~QTreeWidgetItem +24 QTreeWidgetItem::~QTreeWidgetItem +32 QTreeWidgetItem::clone +40 QTreeWidgetItem::data +48 QTreeWidgetItem::setData +56 QTreeWidgetItem::operator< +64 QTreeWidgetItem::read +72 QTreeWidgetItem::write + +Class QTreeWidgetItem + size=64 align=8 + base size=60 base align=8 +QTreeWidgetItem (0x7f1ded0d7a10) 0 + vptr=((& QTreeWidgetItem::_ZTV15QTreeWidgetItem) + 16u) + +Vtable for QTreeWidget +QTreeWidget::_ZTV11QTreeWidget: 109u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTreeWidget) +16 QTreeWidget::metaObject +24 QTreeWidget::qt_metacast +32 QTreeWidget::qt_metacall +40 QTreeWidget::~QTreeWidget +48 QTreeWidget::~QTreeWidget +56 QTreeWidget::event +64 QObject::eventFilter +72 QTreeView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTreeView::mousePressEvent +168 QTreeView::mouseReleaseEvent +176 QTreeView::mouseDoubleClickEvent +184 QTreeView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QTreeView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTreeView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QTreeView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QTreeWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QTreeView::viewportEvent +456 QTreeView::scrollContentsBy +464 QTreeWidget::setModel +472 QTreeWidget::setSelectionModel +480 QTreeView::keyboardSearch +488 QTreeView::visualRect +496 QTreeView::scrollTo +504 QTreeView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QTreeView::sizeHintForColumn +528 QTreeView::reset +536 QTreeView::setRootIndex +544 QTreeView::doItemsLayout +552 QTreeView::selectAll +560 QTreeView::dataChanged +568 QTreeView::rowsInserted +576 QTreeView::rowsAboutToBeRemoved +584 QTreeView::selectionChanged +592 QTreeView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QTreeView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QTreeView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QTreeView::moveCursor +688 QTreeView::horizontalOffset +696 QTreeView::verticalOffset +704 QTreeView::isIndexHidden +712 QTreeView::setSelection +720 QTreeView::visualRegionForSelection +728 QTreeView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 QTreeView::drawRow +776 QTreeView::drawBranches +784 QTreeWidget::mimeTypes +792 QTreeWidget::mimeData +800 QTreeWidget::dropMimeData +808 QTreeWidget::supportedDropActions +816 (int (*)(...))-0x00000000000000010 +824 (int (*)(...))(& _ZTI11QTreeWidget) +832 QTreeWidget::_ZThn16_N11QTreeWidgetD1Ev +840 QTreeWidget::_ZThn16_N11QTreeWidgetD0Ev +848 QWidget::_ZThn16_NK7QWidget7devTypeEv +856 QWidget::_ZThn16_NK7QWidget11paintEngineEv +864 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTreeWidget + size=40 align=8 + base size=40 base align=8 +QTreeWidget (0x7f1decf9ff50) 0 + vptr=((& QTreeWidget::_ZTV11QTreeWidget) + 16u) + QTreeView (0x7f1decfa7000) 0 + primary-for QTreeWidget (0x7f1decf9ff50) + QAbstractItemView (0x7f1decfa7070) 0 + primary-for QTreeView (0x7f1decfa7000) + QAbstractScrollArea (0x7f1decfa70e0) 0 + primary-for QAbstractItemView (0x7f1decfa7070) + QFrame (0x7f1decfa7150) 0 + primary-for QAbstractScrollArea (0x7f1decfa70e0) + QWidget (0x7f1decf98e00) 0 + primary-for QFrame (0x7f1decfa7150) + QObject (0x7f1decfa71c0) 0 + primary-for QWidget (0x7f1decf98e00) + QPaintDevice (0x7f1decfa7230) 16 + vptr=((& QTreeWidget::_ZTV11QTreeWidget) + 832u) + +Vtable for QAccessibleBridge +QAccessibleBridge::_ZTV17QAccessibleBridge: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAccessibleBridge) +16 QAccessibleBridge::~QAccessibleBridge +24 QAccessibleBridge::~QAccessibleBridge +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QAccessibleBridge + size=8 align=8 + base size=8 base align=8 +QAccessibleBridge (0x7f1ded008310) 0 nearly-empty + vptr=((& QAccessibleBridge::_ZTV17QAccessibleBridge) + 16u) + +Vtable for QAccessibleBridgeFactoryInterface +QAccessibleBridgeFactoryInterface::_ZTV33QAccessibleBridgeFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI33QAccessibleBridgeFactoryInterface) +16 QAccessibleBridgeFactoryInterface::~QAccessibleBridgeFactoryInterface +24 QAccessibleBridgeFactoryInterface::~QAccessibleBridgeFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QAccessibleBridgeFactoryInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleBridgeFactoryInterface (0x7f1ded008d90) 0 nearly-empty + vptr=((& QAccessibleBridgeFactoryInterface::_ZTV33QAccessibleBridgeFactoryInterface) + 16u) + QFactoryInterface (0x7f1ded008e00) 0 nearly-empty + primary-for QAccessibleBridgeFactoryInterface (0x7f1ded008d90) + +Vtable for QAccessibleBridgePlugin +QAccessibleBridgePlugin::_ZTV23QAccessibleBridgePlugin: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QAccessibleBridgePlugin) +16 QAccessibleBridgePlugin::metaObject +24 QAccessibleBridgePlugin::qt_metacast +32 QAccessibleBridgePlugin::qt_metacall +40 QAccessibleBridgePlugin::~QAccessibleBridgePlugin +48 QAccessibleBridgePlugin::~QAccessibleBridgePlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI23QAccessibleBridgePlugin) +144 QAccessibleBridgePlugin::_ZThn16_N23QAccessibleBridgePluginD1Ev +152 QAccessibleBridgePlugin::_ZThn16_N23QAccessibleBridgePluginD0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QAccessibleBridgePlugin + size=24 align=8 + base size=24 base align=8 +QAccessibleBridgePlugin (0x7f1ded017500) 0 + vptr=((& QAccessibleBridgePlugin::_ZTV23QAccessibleBridgePlugin) + 16u) + QObject (0x7f1ded0185b0) 0 + primary-for QAccessibleBridgePlugin (0x7f1ded017500) + QAccessibleBridgeFactoryInterface (0x7f1ded018620) 16 nearly-empty + vptr=((& QAccessibleBridgePlugin::_ZTV23QAccessibleBridgePlugin) + 144u) + QFactoryInterface (0x7f1ded018690) 16 nearly-empty + primary-for QAccessibleBridgeFactoryInterface (0x7f1ded018620) + +Class QAccessible + size=1 align=1 + base size=0 base align=1 +QAccessible (0x7f1ded02a540) 0 empty + +Vtable for QAccessibleInterface +QAccessibleInterface::_ZTV20QAccessibleInterface: 19u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QAccessibleInterface) +16 QAccessibleInterface::~QAccessibleInterface +24 QAccessibleInterface::~QAccessibleInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual + +Class QAccessibleInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleInterface (0x7f1dececb700) 0 nearly-empty + vptr=((& QAccessibleInterface::_ZTV20QAccessibleInterface) + 16u) + QAccessible (0x7f1dececb770) 0 empty + +Vtable for QAccessibleInterfaceEx +QAccessibleInterfaceEx::_ZTV22QAccessibleInterfaceEx: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QAccessibleInterfaceEx) +16 QAccessibleInterfaceEx::~QAccessibleInterfaceEx +24 QAccessibleInterfaceEx::~QAccessibleInterfaceEx +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 QAccessibleInterfaceEx::virtual_hook +168 QAccessibleInterfaceEx::interface_cast + +Class QAccessibleInterfaceEx + size=8 align=8 + base size=8 base align=8 +QAccessibleInterfaceEx (0x7f1decf29000) 0 nearly-empty + vptr=((& QAccessibleInterfaceEx::_ZTV22QAccessibleInterfaceEx) + 16u) + QAccessibleInterface (0x7f1decf29070) 0 nearly-empty + primary-for QAccessibleInterfaceEx (0x7f1decf29000) + QAccessible (0x7f1decf290e0) 0 empty + +Vtable for QAccessibleEvent +QAccessibleEvent::_ZTV16QAccessibleEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QAccessibleEvent) +16 QAccessibleEvent::~QAccessibleEvent +24 QAccessibleEvent::~QAccessibleEvent + +Class QAccessibleEvent + size=32 align=8 + base size=32 base align=8 +QAccessibleEvent (0x7f1decf29380) 0 + vptr=((& QAccessibleEvent::_ZTV16QAccessibleEvent) + 16u) + QEvent (0x7f1decf293f0) 0 + primary-for QAccessibleEvent (0x7f1decf29380) + +Vtable for QAccessibleObject +QAccessibleObject::_ZTV17QAccessibleObject: 19u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAccessibleObject) +16 QAccessibleObject::~QAccessibleObject +24 QAccessibleObject::~QAccessibleObject +32 QAccessibleObject::isValid +40 QAccessibleObject::object +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 QAccessibleObject::setText +104 QAccessibleObject::rect +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAccessibleObject::userActionCount +136 QAccessibleObject::actionText +144 QAccessibleObject::doAction + +Class QAccessibleObject + size=16 align=8 + base size=16 base align=8 +QAccessibleObject (0x7f1decf42230) 0 + vptr=((& QAccessibleObject::_ZTV17QAccessibleObject) + 16u) + QAccessibleInterface (0x7f1decf422a0) 0 nearly-empty + primary-for QAccessibleObject (0x7f1decf42230) + QAccessible (0x7f1decf42310) 0 empty + +Vtable for QAccessibleObjectEx +QAccessibleObjectEx::_ZTV19QAccessibleObjectEx: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAccessibleObjectEx) +16 QAccessibleObjectEx::~QAccessibleObjectEx +24 QAccessibleObjectEx::~QAccessibleObjectEx +32 QAccessibleObjectEx::isValid +40 QAccessibleObjectEx::object +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 QAccessibleObjectEx::setText +104 QAccessibleObjectEx::rect +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAccessibleObjectEx::userActionCount +136 QAccessibleObjectEx::actionText +144 QAccessibleObjectEx::doAction +152 __cxa_pure_virtual +160 QAccessibleInterfaceEx::virtual_hook +168 QAccessibleInterfaceEx::interface_cast + +Class QAccessibleObjectEx + size=16 align=8 + base size=16 base align=8 +QAccessibleObjectEx (0x7f1decf42a10) 0 + vptr=((& QAccessibleObjectEx::_ZTV19QAccessibleObjectEx) + 16u) + QAccessibleInterfaceEx (0x7f1decf42a80) 0 nearly-empty + primary-for QAccessibleObjectEx (0x7f1decf42a10) + QAccessibleInterface (0x7f1decf42af0) 0 nearly-empty + primary-for QAccessibleInterfaceEx (0x7f1decf42a80) + QAccessible (0x7f1decf42b60) 0 empty + +Vtable for QAccessibleApplication +QAccessibleApplication::_ZTV22QAccessibleApplication: 19u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QAccessibleApplication) +16 QAccessibleApplication::~QAccessibleApplication +24 QAccessibleApplication::~QAccessibleApplication +32 QAccessibleObject::isValid +40 QAccessibleObject::object +48 QAccessibleApplication::childCount +56 QAccessibleApplication::indexOfChild +64 QAccessibleApplication::relationTo +72 QAccessibleApplication::childAt +80 QAccessibleApplication::navigate +88 QAccessibleApplication::text +96 QAccessibleObject::setText +104 QAccessibleObject::rect +112 QAccessibleApplication::role +120 QAccessibleApplication::state +128 QAccessibleApplication::userActionCount +136 QAccessibleApplication::actionText +144 QAccessibleApplication::doAction + +Class QAccessibleApplication + size=16 align=8 + base size=16 base align=8 +QAccessibleApplication (0x7f1decd52230) 0 + vptr=((& QAccessibleApplication::_ZTV22QAccessibleApplication) + 16u) + QAccessibleObject (0x7f1decd522a0) 0 + primary-for QAccessibleApplication (0x7f1decd52230) + QAccessibleInterface (0x7f1decd52310) 0 nearly-empty + primary-for QAccessibleObject (0x7f1decd522a0) + QAccessible (0x7f1decd52380) 0 empty + +Vtable for QAccessibleWidget +QAccessibleWidget::_ZTV17QAccessibleWidget: 19u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAccessibleWidget) +16 QAccessibleWidget::~QAccessibleWidget +24 QAccessibleWidget::~QAccessibleWidget +32 QAccessibleObject::isValid +40 QAccessibleObject::object +48 QAccessibleWidget::childCount +56 QAccessibleWidget::indexOfChild +64 QAccessibleWidget::relationTo +72 QAccessibleWidget::childAt +80 QAccessibleWidget::navigate +88 QAccessibleWidget::text +96 QAccessibleObject::setText +104 QAccessibleWidget::rect +112 QAccessibleWidget::role +120 QAccessibleWidget::state +128 QAccessibleWidget::userActionCount +136 QAccessibleWidget::actionText +144 QAccessibleWidget::doAction + +Class QAccessibleWidget + size=24 align=8 + base size=24 base align=8 +QAccessibleWidget (0x7f1decd52c40) 0 + vptr=((& QAccessibleWidget::_ZTV17QAccessibleWidget) + 16u) + QAccessibleObject (0x7f1decd52cb0) 0 + primary-for QAccessibleWidget (0x7f1decd52c40) + QAccessibleInterface (0x7f1decd52d20) 0 nearly-empty + primary-for QAccessibleObject (0x7f1decd52cb0) + QAccessible (0x7f1decd52d90) 0 empty + +Vtable for QAccessibleWidgetEx +QAccessibleWidgetEx::_ZTV19QAccessibleWidgetEx: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAccessibleWidgetEx) +16 QAccessibleWidgetEx::~QAccessibleWidgetEx +24 QAccessibleWidgetEx::~QAccessibleWidgetEx +32 QAccessibleObjectEx::isValid +40 QAccessibleObjectEx::object +48 QAccessibleWidgetEx::childCount +56 QAccessibleWidgetEx::indexOfChild +64 QAccessibleWidgetEx::relationTo +72 QAccessibleWidgetEx::childAt +80 QAccessibleWidgetEx::navigate +88 QAccessibleWidgetEx::text +96 QAccessibleObjectEx::setText +104 QAccessibleWidgetEx::rect +112 QAccessibleWidgetEx::role +120 QAccessibleWidgetEx::state +128 QAccessibleObjectEx::userActionCount +136 QAccessibleWidgetEx::actionText +144 QAccessibleWidgetEx::doAction +152 QAccessibleWidgetEx::invokeMethodEx +160 QAccessibleInterfaceEx::virtual_hook +168 QAccessibleInterfaceEx::interface_cast + +Class QAccessibleWidgetEx + size=24 align=8 + base size=24 base align=8 +QAccessibleWidgetEx (0x7f1decd60c40) 0 + vptr=((& QAccessibleWidgetEx::_ZTV19QAccessibleWidgetEx) + 16u) + QAccessibleObjectEx (0x7f1decd60cb0) 0 + primary-for QAccessibleWidgetEx (0x7f1decd60c40) + QAccessibleInterfaceEx (0x7f1decd60d20) 0 nearly-empty + primary-for QAccessibleObjectEx (0x7f1decd60cb0) + QAccessibleInterface (0x7f1decd60d90) 0 nearly-empty + primary-for QAccessibleInterfaceEx (0x7f1decd60d20) + QAccessible (0x7f1decd60e00) 0 empty + +Vtable for QAccessible2Interface +QAccessible2Interface::_ZTV21QAccessible2Interface: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QAccessible2Interface) +16 QAccessible2Interface::~QAccessible2Interface +24 QAccessible2Interface::~QAccessible2Interface + +Class QAccessible2Interface + size=8 align=8 + base size=8 base align=8 +QAccessible2Interface (0x7f1decd6dd90) 0 nearly-empty + vptr=((& QAccessible2Interface::_ZTV21QAccessible2Interface) + 16u) + +Vtable for QAccessibleTextInterface +QAccessibleTextInterface::_ZTV24QAccessibleTextInterface: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QAccessibleTextInterface) +16 QAccessibleTextInterface::~QAccessibleTextInterface +24 QAccessibleTextInterface::~QAccessibleTextInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual + +Class QAccessibleTextInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleTextInterface (0x7f1decd7dcb0) 0 nearly-empty + vptr=((& QAccessibleTextInterface::_ZTV24QAccessibleTextInterface) + 16u) + QAccessible2Interface (0x7f1decd7dd20) 0 nearly-empty + primary-for QAccessibleTextInterface (0x7f1decd7dcb0) + +Vtable for QAccessibleEditableTextInterface +QAccessibleEditableTextInterface::_ZTV32QAccessibleEditableTextInterface: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI32QAccessibleEditableTextInterface) +16 QAccessibleEditableTextInterface::~QAccessibleEditableTextInterface +24 QAccessibleEditableTextInterface::~QAccessibleEditableTextInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual + +Class QAccessibleEditableTextInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleEditableTextInterface (0x7f1decd8db60) 0 nearly-empty + vptr=((& QAccessibleEditableTextInterface::_ZTV32QAccessibleEditableTextInterface) + 16u) + QAccessible2Interface (0x7f1decd8dbd0) 0 nearly-empty + primary-for QAccessibleEditableTextInterface (0x7f1decd8db60) + +Vtable for QAccessibleSimpleEditableTextInterface +QAccessibleSimpleEditableTextInterface::_ZTV38QAccessibleSimpleEditableTextInterface: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI38QAccessibleSimpleEditableTextInterface) +16 QAccessibleSimpleEditableTextInterface::~QAccessibleSimpleEditableTextInterface +24 QAccessibleSimpleEditableTextInterface::~QAccessibleSimpleEditableTextInterface +32 QAccessibleSimpleEditableTextInterface::copyText +40 QAccessibleSimpleEditableTextInterface::deleteText +48 QAccessibleSimpleEditableTextInterface::insertText +56 QAccessibleSimpleEditableTextInterface::cutText +64 QAccessibleSimpleEditableTextInterface::pasteText +72 QAccessibleSimpleEditableTextInterface::replaceText +80 QAccessibleSimpleEditableTextInterface::setAttributes + +Class QAccessibleSimpleEditableTextInterface + size=16 align=8 + base size=16 base align=8 +QAccessibleSimpleEditableTextInterface (0x7f1decd9ba10) 0 + vptr=((& QAccessibleSimpleEditableTextInterface::_ZTV38QAccessibleSimpleEditableTextInterface) + 16u) + QAccessibleEditableTextInterface (0x7f1decd9ba80) 0 nearly-empty + primary-for QAccessibleSimpleEditableTextInterface (0x7f1decd9ba10) + QAccessible2Interface (0x7f1decd9baf0) 0 nearly-empty + primary-for QAccessibleEditableTextInterface (0x7f1decd9ba80) + +Vtable for QAccessibleValueInterface +QAccessibleValueInterface::_ZTV25QAccessibleValueInterface: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QAccessibleValueInterface) +16 QAccessibleValueInterface::~QAccessibleValueInterface +24 QAccessibleValueInterface::~QAccessibleValueInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual + +Class QAccessibleValueInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleValueInterface (0x7f1decd9bd20) 0 nearly-empty + vptr=((& QAccessibleValueInterface::_ZTV25QAccessibleValueInterface) + 16u) + QAccessible2Interface (0x7f1decd9bd90) 0 nearly-empty + primary-for QAccessibleValueInterface (0x7f1decd9bd20) + +Vtable for QAccessibleTableInterface +QAccessibleTableInterface::_ZTV25QAccessibleTableInterface: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QAccessibleTableInterface) +16 QAccessibleTableInterface::~QAccessibleTableInterface +24 QAccessibleTableInterface::~QAccessibleTableInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 __cxa_pure_virtual +208 __cxa_pure_virtual +216 __cxa_pure_virtual +224 __cxa_pure_virtual +232 __cxa_pure_virtual + +Class QAccessibleTableInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleTableInterface (0x7f1decdaab60) 0 nearly-empty + vptr=((& QAccessibleTableInterface::_ZTV25QAccessibleTableInterface) + 16u) + QAccessible2Interface (0x7f1decdaabd0) 0 nearly-empty + primary-for QAccessibleTableInterface (0x7f1decdaab60) + +Vtable for QAccessibleFactoryInterface +QAccessibleFactoryInterface::_ZTV27QAccessibleFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QAccessibleFactoryInterface) +16 QAccessibleFactoryInterface::~QAccessibleFactoryInterface +24 QAccessibleFactoryInterface::~QAccessibleFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QAccessibleFactoryInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleFactoryInterface (0x7f1decdaec80) 0 nearly-empty + vptr=((& QAccessibleFactoryInterface::_ZTV27QAccessibleFactoryInterface) + 16u) + QAccessible (0x7f1decdaaf50) 0 empty + QFactoryInterface (0x7f1decdaad90) 0 nearly-empty + primary-for QAccessibleFactoryInterface (0x7f1decdaec80) + +Vtable for QAccessiblePlugin +QAccessiblePlugin::_ZTV17QAccessiblePlugin: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAccessiblePlugin) +16 QAccessiblePlugin::metaObject +24 QAccessiblePlugin::qt_metacast +32 QAccessiblePlugin::qt_metacall +40 QAccessiblePlugin::~QAccessiblePlugin +48 QAccessiblePlugin::~QAccessiblePlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI17QAccessiblePlugin) +144 QAccessiblePlugin::_ZThn16_N17QAccessiblePluginD1Ev +152 QAccessiblePlugin::_ZThn16_N17QAccessiblePluginD0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QAccessiblePlugin + size=24 align=8 + base size=24 base align=8 +QAccessiblePlugin (0x7f1decdc3480) 0 + vptr=((& QAccessiblePlugin::_ZTV17QAccessiblePlugin) + 16u) + QObject (0x7f1decdc07e0) 0 + primary-for QAccessiblePlugin (0x7f1decdc3480) + QAccessibleFactoryInterface (0x7f1decdc3500) 16 nearly-empty + vptr=((& QAccessiblePlugin::_ZTV17QAccessiblePlugin) + 144u) + QAccessible (0x7f1decdc0850) 16 empty + QFactoryInterface (0x7f1decdc08c0) 16 nearly-empty + primary-for QAccessibleFactoryInterface (0x7f1decdc3500) + +Vtable for QLayoutItem +QLayoutItem::_ZTV11QLayoutItem: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QLayoutItem) +16 QLayoutItem::~QLayoutItem +24 QLayoutItem::~QLayoutItem +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 QLayoutItem::hasHeightForWidth +96 QLayoutItem::heightForWidth +104 QLayoutItem::minimumHeightForWidth +112 QLayoutItem::invalidate +120 QLayoutItem::widget +128 QLayoutItem::layout +136 QLayoutItem::spacerItem + +Class QLayoutItem + size=16 align=8 + base size=12 base align=8 +QLayoutItem (0x7f1decdd27e0) 0 + vptr=((& QLayoutItem::_ZTV11QLayoutItem) + 16u) + +Vtable for QSpacerItem +QSpacerItem::_ZTV11QSpacerItem: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QSpacerItem) +16 QSpacerItem::~QSpacerItem +24 QSpacerItem::~QSpacerItem +32 QSpacerItem::sizeHint +40 QSpacerItem::minimumSize +48 QSpacerItem::maximumSize +56 QSpacerItem::expandingDirections +64 QSpacerItem::setGeometry +72 QSpacerItem::geometry +80 QSpacerItem::isEmpty +88 QLayoutItem::hasHeightForWidth +96 QLayoutItem::heightForWidth +104 QLayoutItem::minimumHeightForWidth +112 QLayoutItem::invalidate +120 QLayoutItem::widget +128 QLayoutItem::layout +136 QSpacerItem::spacerItem + +Class QSpacerItem + size=40 align=8 + base size=40 base align=8 +QSpacerItem (0x7f1decde4380) 0 + vptr=((& QSpacerItem::_ZTV11QSpacerItem) + 16u) + QLayoutItem (0x7f1decde43f0) 0 + primary-for QSpacerItem (0x7f1decde4380) + +Vtable for QWidgetItem +QWidgetItem::_ZTV11QWidgetItem: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QWidgetItem) +16 QWidgetItem::~QWidgetItem +24 QWidgetItem::~QWidgetItem +32 QWidgetItem::sizeHint +40 QWidgetItem::minimumSize +48 QWidgetItem::maximumSize +56 QWidgetItem::expandingDirections +64 QWidgetItem::setGeometry +72 QWidgetItem::geometry +80 QWidgetItem::isEmpty +88 QWidgetItem::hasHeightForWidth +96 QWidgetItem::heightForWidth +104 QLayoutItem::minimumHeightForWidth +112 QLayoutItem::invalidate +120 QWidgetItem::widget +128 QLayoutItem::layout +136 QLayoutItem::spacerItem + +Class QWidgetItem + size=24 align=8 + base size=24 base align=8 +QWidgetItem (0x7f1decdf38c0) 0 + vptr=((& QWidgetItem::_ZTV11QWidgetItem) + 16u) + QLayoutItem (0x7f1decdf3930) 0 + primary-for QWidgetItem (0x7f1decdf38c0) + +Vtable for QWidgetItemV2 +QWidgetItemV2::_ZTV13QWidgetItemV2: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QWidgetItemV2) +16 QWidgetItemV2::~QWidgetItemV2 +24 QWidgetItemV2::~QWidgetItemV2 +32 QWidgetItemV2::sizeHint +40 QWidgetItemV2::minimumSize +48 QWidgetItemV2::maximumSize +56 QWidgetItem::expandingDirections +64 QWidgetItem::setGeometry +72 QWidgetItem::geometry +80 QWidgetItem::isEmpty +88 QWidgetItem::hasHeightForWidth +96 QWidgetItemV2::heightForWidth +104 QLayoutItem::minimumHeightForWidth +112 QLayoutItem::invalidate +120 QWidgetItem::widget +128 QLayoutItem::layout +136 QLayoutItem::spacerItem + +Class QWidgetItemV2 + size=88 align=8 + base size=88 base align=8 +QWidgetItemV2 (0x7f1decdff700) 0 + vptr=((& QWidgetItemV2::_ZTV13QWidgetItemV2) + 16u) + QWidgetItem (0x7f1decdff770) 0 + primary-for QWidgetItemV2 (0x7f1decdff700) + QLayoutItem (0x7f1decdff7e0) 0 + primary-for QWidgetItem (0x7f1decdff770) + +Class QLayoutIterator + size=16 align=8 + base size=12 base align=8 +QLayoutIterator (0x7f1dece0e540) 0 + +Vtable for QLayout +QLayout::_ZTV7QLayout: 45u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QLayout) +16 QLayout::metaObject +24 QLayout::qt_metacast +32 QLayout::qt_metacall +40 QLayout::~QLayout +48 QLayout::~QLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QLayout::invalidate +120 QLayout::geometry +128 __cxa_pure_virtual +136 QLayout::expandingDirections +144 QLayout::minimumSize +152 QLayout::maximumSize +160 QLayout::setGeometry +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 QLayout::indexOf +192 __cxa_pure_virtual +200 QLayout::isEmpty +208 QLayout::layout +216 (int (*)(...))-0x00000000000000010 +224 (int (*)(...))(& _ZTI7QLayout) +232 QLayout::_ZThn16_N7QLayoutD1Ev +240 QLayout::_ZThn16_N7QLayoutD0Ev +248 __cxa_pure_virtual +256 QLayout::_ZThn16_NK7QLayout11minimumSizeEv +264 QLayout::_ZThn16_NK7QLayout11maximumSizeEv +272 QLayout::_ZThn16_NK7QLayout19expandingDirectionsEv +280 QLayout::_ZThn16_N7QLayout11setGeometryERK5QRect +288 QLayout::_ZThn16_NK7QLayout8geometryEv +296 QLayout::_ZThn16_NK7QLayout7isEmptyEv +304 QLayoutItem::hasHeightForWidth +312 QLayoutItem::heightForWidth +320 QLayoutItem::minimumHeightForWidth +328 QLayout::_ZThn16_N7QLayout10invalidateEv +336 QLayoutItem::widget +344 QLayout::_ZThn16_N7QLayout6layoutEv +352 QLayoutItem::spacerItem + +Class QLayout + size=32 align=8 + base size=28 base align=8 +QLayout (0x7f1dece1c180) 0 + vptr=((& QLayout::_ZTV7QLayout) + 16u) + QObject (0x7f1dece1a690) 0 + primary-for QLayout (0x7f1dece1c180) + QLayoutItem (0x7f1dece1a700) 16 + vptr=((& QLayout::_ZTV7QLayout) + 232u) + +Vtable for QBoxLayout +QBoxLayout::_ZTV10QBoxLayout: 49u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QBoxLayout) +16 QBoxLayout::metaObject +24 QBoxLayout::qt_metacast +32 QBoxLayout::qt_metacall +40 QBoxLayout::~QBoxLayout +48 QBoxLayout::~QBoxLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QBoxLayout::invalidate +120 QLayout::geometry +128 QBoxLayout::addItem +136 QBoxLayout::expandingDirections +144 QBoxLayout::minimumSize +152 QBoxLayout::maximumSize +160 QBoxLayout::setGeometry +168 QBoxLayout::itemAt +176 QBoxLayout::takeAt +184 QLayout::indexOf +192 QBoxLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QBoxLayout::sizeHint +224 QBoxLayout::hasHeightForWidth +232 QBoxLayout::heightForWidth +240 QBoxLayout::minimumHeightForWidth +248 (int (*)(...))-0x00000000000000010 +256 (int (*)(...))(& _ZTI10QBoxLayout) +264 QBoxLayout::_ZThn16_N10QBoxLayoutD1Ev +272 QBoxLayout::_ZThn16_N10QBoxLayoutD0Ev +280 QBoxLayout::_ZThn16_NK10QBoxLayout8sizeHintEv +288 QBoxLayout::_ZThn16_NK10QBoxLayout11minimumSizeEv +296 QBoxLayout::_ZThn16_NK10QBoxLayout11maximumSizeEv +304 QBoxLayout::_ZThn16_NK10QBoxLayout19expandingDirectionsEv +312 QBoxLayout::_ZThn16_N10QBoxLayout11setGeometryERK5QRect +320 QLayout::_ZThn16_NK7QLayout8geometryEv +328 QLayout::_ZThn16_NK7QLayout7isEmptyEv +336 QBoxLayout::_ZThn16_NK10QBoxLayout17hasHeightForWidthEv +344 QBoxLayout::_ZThn16_NK10QBoxLayout14heightForWidthEi +352 QBoxLayout::_ZThn16_NK10QBoxLayout21minimumHeightForWidthEi +360 QBoxLayout::_ZThn16_N10QBoxLayout10invalidateEv +368 QLayoutItem::widget +376 QLayout::_ZThn16_N7QLayout6layoutEv +384 QLayoutItem::spacerItem + +Class QBoxLayout + size=32 align=8 + base size=28 base align=8 +QBoxLayout (0x7f1decc54bd0) 0 + vptr=((& QBoxLayout::_ZTV10QBoxLayout) + 16u) + QLayout (0x7f1decc59200) 0 + primary-for QBoxLayout (0x7f1decc54bd0) + QObject (0x7f1decc54c40) 0 + primary-for QLayout (0x7f1decc59200) + QLayoutItem (0x7f1decc54cb0) 16 + vptr=((& QBoxLayout::_ZTV10QBoxLayout) + 264u) + +Vtable for QHBoxLayout +QHBoxLayout::_ZTV11QHBoxLayout: 49u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QHBoxLayout) +16 QHBoxLayout::metaObject +24 QHBoxLayout::qt_metacast +32 QHBoxLayout::qt_metacall +40 QHBoxLayout::~QHBoxLayout +48 QHBoxLayout::~QHBoxLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QBoxLayout::invalidate +120 QLayout::geometry +128 QBoxLayout::addItem +136 QBoxLayout::expandingDirections +144 QBoxLayout::minimumSize +152 QBoxLayout::maximumSize +160 QBoxLayout::setGeometry +168 QBoxLayout::itemAt +176 QBoxLayout::takeAt +184 QLayout::indexOf +192 QBoxLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QBoxLayout::sizeHint +224 QBoxLayout::hasHeightForWidth +232 QBoxLayout::heightForWidth +240 QBoxLayout::minimumHeightForWidth +248 (int (*)(...))-0x00000000000000010 +256 (int (*)(...))(& _ZTI11QHBoxLayout) +264 QHBoxLayout::_ZThn16_N11QHBoxLayoutD1Ev +272 QHBoxLayout::_ZThn16_N11QHBoxLayoutD0Ev +280 QBoxLayout::_ZThn16_NK10QBoxLayout8sizeHintEv +288 QBoxLayout::_ZThn16_NK10QBoxLayout11minimumSizeEv +296 QBoxLayout::_ZThn16_NK10QBoxLayout11maximumSizeEv +304 QBoxLayout::_ZThn16_NK10QBoxLayout19expandingDirectionsEv +312 QBoxLayout::_ZThn16_N10QBoxLayout11setGeometryERK5QRect +320 QLayout::_ZThn16_NK7QLayout8geometryEv +328 QLayout::_ZThn16_NK7QLayout7isEmptyEv +336 QBoxLayout::_ZThn16_NK10QBoxLayout17hasHeightForWidthEv +344 QBoxLayout::_ZThn16_NK10QBoxLayout14heightForWidthEi +352 QBoxLayout::_ZThn16_NK10QBoxLayout21minimumHeightForWidthEi +360 QBoxLayout::_ZThn16_N10QBoxLayout10invalidateEv +368 QLayoutItem::widget +376 QLayout::_ZThn16_N7QLayout6layoutEv +384 QLayoutItem::spacerItem + +Class QHBoxLayout + size=32 align=8 + base size=28 base align=8 +QHBoxLayout (0x7f1decc83620) 0 + vptr=((& QHBoxLayout::_ZTV11QHBoxLayout) + 16u) + QBoxLayout (0x7f1decc83690) 0 + primary-for QHBoxLayout (0x7f1decc83620) + QLayout (0x7f1decc59f80) 0 + primary-for QBoxLayout (0x7f1decc83690) + QObject (0x7f1decc83700) 0 + primary-for QLayout (0x7f1decc59f80) + QLayoutItem (0x7f1decc83770) 16 + vptr=((& QHBoxLayout::_ZTV11QHBoxLayout) + 264u) + +Vtable for QVBoxLayout +QVBoxLayout::_ZTV11QVBoxLayout: 49u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QVBoxLayout) +16 QVBoxLayout::metaObject +24 QVBoxLayout::qt_metacast +32 QVBoxLayout::qt_metacall +40 QVBoxLayout::~QVBoxLayout +48 QVBoxLayout::~QVBoxLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QBoxLayout::invalidate +120 QLayout::geometry +128 QBoxLayout::addItem +136 QBoxLayout::expandingDirections +144 QBoxLayout::minimumSize +152 QBoxLayout::maximumSize +160 QBoxLayout::setGeometry +168 QBoxLayout::itemAt +176 QBoxLayout::takeAt +184 QLayout::indexOf +192 QBoxLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QBoxLayout::sizeHint +224 QBoxLayout::hasHeightForWidth +232 QBoxLayout::heightForWidth +240 QBoxLayout::minimumHeightForWidth +248 (int (*)(...))-0x00000000000000010 +256 (int (*)(...))(& _ZTI11QVBoxLayout) +264 QVBoxLayout::_ZThn16_N11QVBoxLayoutD1Ev +272 QVBoxLayout::_ZThn16_N11QVBoxLayoutD0Ev +280 QBoxLayout::_ZThn16_NK10QBoxLayout8sizeHintEv +288 QBoxLayout::_ZThn16_NK10QBoxLayout11minimumSizeEv +296 QBoxLayout::_ZThn16_NK10QBoxLayout11maximumSizeEv +304 QBoxLayout::_ZThn16_NK10QBoxLayout19expandingDirectionsEv +312 QBoxLayout::_ZThn16_N10QBoxLayout11setGeometryERK5QRect +320 QLayout::_ZThn16_NK7QLayout8geometryEv +328 QLayout::_ZThn16_NK7QLayout7isEmptyEv +336 QBoxLayout::_ZThn16_NK10QBoxLayout17hasHeightForWidthEv +344 QBoxLayout::_ZThn16_NK10QBoxLayout14heightForWidthEi +352 QBoxLayout::_ZThn16_NK10QBoxLayout21minimumHeightForWidthEi +360 QBoxLayout::_ZThn16_N10QBoxLayout10invalidateEv +368 QLayoutItem::widget +376 QLayout::_ZThn16_N7QLayout6layoutEv +384 QLayoutItem::spacerItem + +Class QVBoxLayout + size=32 align=8 + base size=28 base align=8 +QVBoxLayout (0x7f1decc8fcb0) 0 + vptr=((& QVBoxLayout::_ZTV11QVBoxLayout) + 16u) + QBoxLayout (0x7f1decc8fd20) 0 + primary-for QVBoxLayout (0x7f1decc8fcb0) + QLayout (0x7f1decc88680) 0 + primary-for QBoxLayout (0x7f1decc8fd20) + QObject (0x7f1decc8fd90) 0 + primary-for QLayout (0x7f1decc88680) + QLayoutItem (0x7f1decc8fe00) 16 + vptr=((& QVBoxLayout::_ZTV11QVBoxLayout) + 264u) + +Vtable for QGridLayout +QGridLayout::_ZTV11QGridLayout: 49u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QGridLayout) +16 QGridLayout::metaObject +24 QGridLayout::qt_metacast +32 QGridLayout::qt_metacall +40 QGridLayout::~QGridLayout +48 QGridLayout::~QGridLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGridLayout::invalidate +120 QLayout::geometry +128 QGridLayout::addItem +136 QGridLayout::expandingDirections +144 QGridLayout::minimumSize +152 QGridLayout::maximumSize +160 QGridLayout::setGeometry +168 QGridLayout::itemAt +176 QGridLayout::takeAt +184 QLayout::indexOf +192 QGridLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QGridLayout::sizeHint +224 QGridLayout::hasHeightForWidth +232 QGridLayout::heightForWidth +240 QGridLayout::minimumHeightForWidth +248 (int (*)(...))-0x00000000000000010 +256 (int (*)(...))(& _ZTI11QGridLayout) +264 QGridLayout::_ZThn16_N11QGridLayoutD1Ev +272 QGridLayout::_ZThn16_N11QGridLayoutD0Ev +280 QGridLayout::_ZThn16_NK11QGridLayout8sizeHintEv +288 QGridLayout::_ZThn16_NK11QGridLayout11minimumSizeEv +296 QGridLayout::_ZThn16_NK11QGridLayout11maximumSizeEv +304 QGridLayout::_ZThn16_NK11QGridLayout19expandingDirectionsEv +312 QGridLayout::_ZThn16_N11QGridLayout11setGeometryERK5QRect +320 QLayout::_ZThn16_NK7QLayout8geometryEv +328 QLayout::_ZThn16_NK7QLayout7isEmptyEv +336 QGridLayout::_ZThn16_NK11QGridLayout17hasHeightForWidthEv +344 QGridLayout::_ZThn16_NK11QGridLayout14heightForWidthEi +352 QGridLayout::_ZThn16_NK11QGridLayout21minimumHeightForWidthEi +360 QGridLayout::_ZThn16_N11QGridLayout10invalidateEv +368 QLayoutItem::widget +376 QLayout::_ZThn16_N7QLayout6layoutEv +384 QLayoutItem::spacerItem + +Class QGridLayout + size=32 align=8 + base size=28 base align=8 +QGridLayout (0x7f1deccb32a0) 0 + vptr=((& QGridLayout::_ZTV11QGridLayout) + 16u) + QLayout (0x7f1decc88d80) 0 + primary-for QGridLayout (0x7f1deccb32a0) + QObject (0x7f1deccb3310) 0 + primary-for QLayout (0x7f1decc88d80) + QLayoutItem (0x7f1deccb3380) 16 + vptr=((& QGridLayout::_ZTV11QGridLayout) + 264u) + +Vtable for QFormLayout +QFormLayout::_ZTV11QFormLayout: 48u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFormLayout) +16 QFormLayout::metaObject +24 QFormLayout::qt_metacast +32 QFormLayout::qt_metacall +40 QFormLayout::~QFormLayout +48 QFormLayout::~QFormLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFormLayout::invalidate +120 QLayout::geometry +128 QFormLayout::addItem +136 QFormLayout::expandingDirections +144 QFormLayout::minimumSize +152 QLayout::maximumSize +160 QFormLayout::setGeometry +168 QFormLayout::itemAt +176 QFormLayout::takeAt +184 QLayout::indexOf +192 QFormLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QFormLayout::sizeHint +224 QFormLayout::hasHeightForWidth +232 QFormLayout::heightForWidth +240 (int (*)(...))-0x00000000000000010 +248 (int (*)(...))(& _ZTI11QFormLayout) +256 QFormLayout::_ZThn16_N11QFormLayoutD1Ev +264 QFormLayout::_ZThn16_N11QFormLayoutD0Ev +272 QFormLayout::_ZThn16_NK11QFormLayout8sizeHintEv +280 QFormLayout::_ZThn16_NK11QFormLayout11minimumSizeEv +288 QLayout::_ZThn16_NK7QLayout11maximumSizeEv +296 QFormLayout::_ZThn16_NK11QFormLayout19expandingDirectionsEv +304 QFormLayout::_ZThn16_N11QFormLayout11setGeometryERK5QRect +312 QLayout::_ZThn16_NK7QLayout8geometryEv +320 QLayout::_ZThn16_NK7QLayout7isEmptyEv +328 QFormLayout::_ZThn16_NK11QFormLayout17hasHeightForWidthEv +336 QFormLayout::_ZThn16_NK11QFormLayout14heightForWidthEi +344 QLayoutItem::minimumHeightForWidth +352 QFormLayout::_ZThn16_N11QFormLayout10invalidateEv +360 QLayoutItem::widget +368 QLayout::_ZThn16_N7QLayout6layoutEv +376 QLayoutItem::spacerItem + +Class QFormLayout + size=32 align=8 + base size=28 base align=8 +QFormLayout (0x7f1decd00310) 0 + vptr=((& QFormLayout::_ZTV11QFormLayout) + 16u) + QLayout (0x7f1deccfab80) 0 + primary-for QFormLayout (0x7f1decd00310) + QObject (0x7f1decd00380) 0 + primary-for QLayout (0x7f1deccfab80) + QLayoutItem (0x7f1decd003f0) 16 + vptr=((& QFormLayout::_ZTV11QFormLayout) + 256u) + +Vtable for QClipboard +QClipboard::_ZTV10QClipboard: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QClipboard) +16 QClipboard::metaObject +24 QClipboard::qt_metacast +32 QClipboard::qt_metacall +40 QClipboard::~QClipboard +48 QClipboard::~QClipboard +56 QClipboard::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QClipboard::connectNotify +104 QObject::disconnectNotify + +Class QClipboard + size=16 align=8 + base size=16 base align=8 +QClipboard (0x7f1decd2a770) 0 + vptr=((& QClipboard::_ZTV10QClipboard) + 16u) + QObject (0x7f1decd2a7e0) 0 + primary-for QClipboard (0x7f1decd2a770) + +Class QWhatsThis + size=1 align=1 + base size=0 base align=1 +QWhatsThis (0x7f1decd4c4d0) 0 empty + +Vtable for QDesktopWidget +QDesktopWidget::_ZTV14QDesktopWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QDesktopWidget) +16 QDesktopWidget::metaObject +24 QDesktopWidget::qt_metacast +32 QDesktopWidget::qt_metacall +40 QDesktopWidget::~QDesktopWidget +48 QDesktopWidget::~QDesktopWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDesktopWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI14QDesktopWidget) +464 QDesktopWidget::_ZThn16_N14QDesktopWidgetD1Ev +472 QDesktopWidget::_ZThn16_N14QDesktopWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDesktopWidget + size=40 align=8 + base size=40 base align=8 +QDesktopWidget (0x7f1decd4c5b0) 0 + vptr=((& QDesktopWidget::_ZTV14QDesktopWidget) + 16u) + QWidget (0x7f1decd48400) 0 + primary-for QDesktopWidget (0x7f1decd4c5b0) + QObject (0x7f1decd4c620) 0 + primary-for QWidget (0x7f1decd48400) + QPaintDevice (0x7f1decd4c690) 16 + vptr=((& QDesktopWidget::_ZTV14QDesktopWidget) + 464u) + +Vtable for QShortcut +QShortcut::_ZTV9QShortcut: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QShortcut) +16 QShortcut::metaObject +24 QShortcut::qt_metacast +32 QShortcut::qt_metacall +40 QShortcut::~QShortcut +48 QShortcut::~QShortcut +56 QShortcut::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QShortcut + size=16 align=8 + base size=16 base align=8 +QShortcut (0x7f1decb725b0) 0 + vptr=((& QShortcut::_ZTV9QShortcut) + 16u) + QObject (0x7f1decb72620) 0 + primary-for QShortcut (0x7f1decb725b0) + +Vtable for QSessionManager +QSessionManager::_ZTV15QSessionManager: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSessionManager) +16 QSessionManager::metaObject +24 QSessionManager::qt_metacast +32 QSessionManager::qt_metacall +40 QSessionManager::~QSessionManager +48 QSessionManager::~QSessionManager +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSessionManager + size=16 align=8 + base size=16 base align=8 +QSessionManager (0x7f1decb85d20) 0 + vptr=((& QSessionManager::_ZTV15QSessionManager) + 16u) + QObject (0x7f1decb85d90) 0 + primary-for QSessionManager (0x7f1decb85d20) + +Vtable for QApplication +QApplication::_ZTV12QApplication: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QApplication) +16 QApplication::metaObject +24 QApplication::qt_metacast +32 QApplication::qt_metacall +40 QApplication::~QApplication +48 QApplication::~QApplication +56 QApplication::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QApplication::notify +120 QApplication::compressEvent +128 QApplication::x11EventFilter +136 QApplication::x11ClientMessage +144 QApplication::commitData +152 QApplication::saveState + +Class QApplication + size=16 align=8 + base size=16 base align=8 +QApplication (0x7f1decba32a0) 0 + vptr=((& QApplication::_ZTV12QApplication) + 16u) + QCoreApplication (0x7f1decba3310) 0 + primary-for QApplication (0x7f1decba32a0) + QObject (0x7f1decba3380) 0 + primary-for QCoreApplication (0x7f1decba3310) + +Vtable for QAction +QAction::_ZTV7QAction: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QAction) +16 QAction::metaObject +24 QAction::qt_metacast +32 QAction::qt_metacall +40 QAction::~QAction +48 QAction::~QAction +56 QAction::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QAction + size=16 align=8 + base size=16 base align=8 +QAction (0x7f1decbeaee0) 0 + vptr=((& QAction::_ZTV7QAction) + 16u) + QObject (0x7f1decbeaf50) 0 + primary-for QAction (0x7f1decbeaee0) + +Vtable for QActionGroup +QActionGroup::_ZTV12QActionGroup: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QActionGroup) +16 QActionGroup::metaObject +24 QActionGroup::qt_metacast +32 QActionGroup::qt_metacall +40 QActionGroup::~QActionGroup +48 QActionGroup::~QActionGroup +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QActionGroup + size=16 align=8 + base size=16 base align=8 +QActionGroup (0x7f1decc2e700) 0 + vptr=((& QActionGroup::_ZTV12QActionGroup) + 16u) + QObject (0x7f1decc2e770) 0 + primary-for QActionGroup (0x7f1decc2e700) + +Vtable for QSound +QSound::_ZTV6QSound: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QSound) +16 QSound::metaObject +24 QSound::qt_metacast +32 QSound::qt_metacall +40 QSound::~QSound +48 QSound::~QSound +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSound + size=16 align=8 + base size=16 base align=8 +QSound (0x7f1decc4baf0) 0 + vptr=((& QSound::_ZTV6QSound) + 16u) + QObject (0x7f1decc4bb60) 0 + primary-for QSound (0x7f1decc4baf0) + +Vtable for QStackedLayout +QStackedLayout::_ZTV14QStackedLayout: 46u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QStackedLayout) +16 QStackedLayout::metaObject +24 QStackedLayout::qt_metacast +32 QStackedLayout::qt_metacall +40 QStackedLayout::~QStackedLayout +48 QStackedLayout::~QStackedLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QLayout::invalidate +120 QLayout::geometry +128 QStackedLayout::addItem +136 QLayout::expandingDirections +144 QStackedLayout::minimumSize +152 QLayout::maximumSize +160 QStackedLayout::setGeometry +168 QStackedLayout::itemAt +176 QStackedLayout::takeAt +184 QLayout::indexOf +192 QStackedLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QStackedLayout::sizeHint +224 (int (*)(...))-0x00000000000000010 +232 (int (*)(...))(& _ZTI14QStackedLayout) +240 QStackedLayout::_ZThn16_N14QStackedLayoutD1Ev +248 QStackedLayout::_ZThn16_N14QStackedLayoutD0Ev +256 QStackedLayout::_ZThn16_NK14QStackedLayout8sizeHintEv +264 QStackedLayout::_ZThn16_NK14QStackedLayout11minimumSizeEv +272 QLayout::_ZThn16_NK7QLayout11maximumSizeEv +280 QLayout::_ZThn16_NK7QLayout19expandingDirectionsEv +288 QStackedLayout::_ZThn16_N14QStackedLayout11setGeometryERK5QRect +296 QLayout::_ZThn16_NK7QLayout8geometryEv +304 QLayout::_ZThn16_NK7QLayout7isEmptyEv +312 QLayoutItem::hasHeightForWidth +320 QLayoutItem::heightForWidth +328 QLayoutItem::minimumHeightForWidth +336 QLayout::_ZThn16_N7QLayout10invalidateEv +344 QLayoutItem::widget +352 QLayout::_ZThn16_N7QLayout6layoutEv +360 QLayoutItem::spacerItem + +Class QStackedLayout + size=32 align=8 + base size=28 base align=8 +QStackedLayout (0x7f1deca892a0) 0 + vptr=((& QStackedLayout::_ZTV14QStackedLayout) + 16u) + QLayout (0x7f1deca71a80) 0 + primary-for QStackedLayout (0x7f1deca892a0) + QObject (0x7f1deca89310) 0 + primary-for QLayout (0x7f1deca71a80) + QLayoutItem (0x7f1deca89380) 16 + vptr=((& QStackedLayout::_ZTV14QStackedLayout) + 240u) + +Vtable for QWidgetAction +QWidgetAction::_ZTV13QWidgetAction: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QWidgetAction) +16 QWidgetAction::metaObject +24 QWidgetAction::qt_metacast +32 QWidgetAction::qt_metacall +40 QWidgetAction::~QWidgetAction +48 QWidgetAction::~QWidgetAction +56 QWidgetAction::event +64 QWidgetAction::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidgetAction::createWidget +120 QWidgetAction::deleteWidget + +Class QWidgetAction + size=16 align=8 + base size=16 base align=8 +QWidgetAction (0x7f1decaa62a0) 0 + vptr=((& QWidgetAction::_ZTV13QWidgetAction) + 16u) + QAction (0x7f1decaa6310) 0 + primary-for QWidgetAction (0x7f1decaa62a0) + QObject (0x7f1decaa6380) 0 + primary-for QAction (0x7f1decaa6310) + +Class QToolTip + size=1 align=1 + base size=0 base align=1 +QToolTip (0x7f1decabac40) 0 empty + +Vtable for QCommonStyle +QCommonStyle::_ZTV12QCommonStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QCommonStyle) +16 QCommonStyle::metaObject +24 QCommonStyle::qt_metacast +32 QCommonStyle::qt_metacall +40 QCommonStyle::~QCommonStyle +48 QCommonStyle::~QCommonStyle +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCommonStyle::polish +120 QCommonStyle::unpolish +128 QCommonStyle::polish +136 QCommonStyle::unpolish +144 QCommonStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QStyle::standardPalette +192 QCommonStyle::drawPrimitive +200 QCommonStyle::drawControl +208 QCommonStyle::subElementRect +216 QCommonStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QCommonStyle::subControlRect +240 QCommonStyle::pixelMetric +248 QCommonStyle::sizeFromContents +256 QCommonStyle::styleHint +264 QCommonStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QCommonStyle + size=16 align=8 + base size=16 base align=8 +QCommonStyle (0x7f1decac6230) 0 + vptr=((& QCommonStyle::_ZTV12QCommonStyle) + 16u) + QStyle (0x7f1decac62a0) 0 + primary-for QCommonStyle (0x7f1decac6230) + QObject (0x7f1decac6310) 0 + primary-for QStyle (0x7f1decac62a0) + +Vtable for QMotifStyle +QMotifStyle::_ZTV11QMotifStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMotifStyle) +16 QMotifStyle::metaObject +24 QMotifStyle::qt_metacast +32 QMotifStyle::qt_metacall +40 QMotifStyle::~QMotifStyle +48 QMotifStyle::~QMotifStyle +56 QMotifStyle::event +64 QMotifStyle::eventFilter +72 QMotifStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMotifStyle::polish +120 QMotifStyle::unpolish +128 QMotifStyle::polish +136 QMotifStyle::unpolish +144 QMotifStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QMotifStyle::standardPalette +192 QMotifStyle::drawPrimitive +200 QMotifStyle::drawControl +208 QMotifStyle::subElementRect +216 QMotifStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QMotifStyle::subControlRect +240 QMotifStyle::pixelMetric +248 QMotifStyle::sizeFromContents +256 QMotifStyle::styleHint +264 QMotifStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QMotifStyle + size=32 align=8 + base size=25 base align=8 +QMotifStyle (0x7f1decae5230) 0 + vptr=((& QMotifStyle::_ZTV11QMotifStyle) + 16u) + QCommonStyle (0x7f1decae52a0) 0 + primary-for QMotifStyle (0x7f1decae5230) + QStyle (0x7f1decae5310) 0 + primary-for QCommonStyle (0x7f1decae52a0) + QObject (0x7f1decae5380) 0 + primary-for QStyle (0x7f1decae5310) + +Vtable for QWindowsStyle +QWindowsStyle::_ZTV13QWindowsStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QWindowsStyle) +16 QWindowsStyle::metaObject +24 QWindowsStyle::qt_metacast +32 QWindowsStyle::qt_metacall +40 QWindowsStyle::~QWindowsStyle +48 QWindowsStyle::~QWindowsStyle +56 QObject::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWindowsStyle::polish +120 QWindowsStyle::unpolish +128 QWindowsStyle::polish +136 QWindowsStyle::unpolish +144 QWindowsStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QStyle::standardPalette +192 QWindowsStyle::drawPrimitive +200 QWindowsStyle::drawControl +208 QWindowsStyle::subElementRect +216 QWindowsStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QCommonStyle::subControlRect +240 QWindowsStyle::pixelMetric +248 QWindowsStyle::sizeFromContents +256 QWindowsStyle::styleHint +264 QWindowsStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QWindowsStyle + size=24 align=8 + base size=24 base align=8 +QWindowsStyle (0x7f1decb0d150) 0 + vptr=((& QWindowsStyle::_ZTV13QWindowsStyle) + 16u) + QCommonStyle (0x7f1decb0d1c0) 0 + primary-for QWindowsStyle (0x7f1decb0d150) + QStyle (0x7f1decb0d230) 0 + primary-for QCommonStyle (0x7f1decb0d1c0) + QObject (0x7f1decb0d2a0) 0 + primary-for QStyle (0x7f1decb0d230) + +Vtable for QCleanlooksStyle +QCleanlooksStyle::_ZTV16QCleanlooksStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QCleanlooksStyle) +16 QCleanlooksStyle::metaObject +24 QCleanlooksStyle::qt_metacast +32 QCleanlooksStyle::qt_metacall +40 QCleanlooksStyle::~QCleanlooksStyle +48 QCleanlooksStyle::~QCleanlooksStyle +56 QObject::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCleanlooksStyle::polish +120 QCleanlooksStyle::unpolish +128 QCleanlooksStyle::polish +136 QCleanlooksStyle::unpolish +144 QCleanlooksStyle::polish +152 QStyle::itemTextRect +160 QCleanlooksStyle::itemPixmapRect +168 QCleanlooksStyle::drawItemText +176 QCleanlooksStyle::drawItemPixmap +184 QCleanlooksStyle::standardPalette +192 QCleanlooksStyle::drawPrimitive +200 QCleanlooksStyle::drawControl +208 QCleanlooksStyle::subElementRect +216 QCleanlooksStyle::drawComplexControl +224 QCleanlooksStyle::hitTestComplexControl +232 QCleanlooksStyle::subControlRect +240 QCleanlooksStyle::pixelMetric +248 QCleanlooksStyle::sizeFromContents +256 QCleanlooksStyle::styleHint +264 QCleanlooksStyle::standardPixmap +272 QCleanlooksStyle::generatedIconPixmap + +Class QCleanlooksStyle + size=24 align=8 + base size=24 base align=8 +QCleanlooksStyle (0x7f1decb26ee0) 0 + vptr=((& QCleanlooksStyle::_ZTV16QCleanlooksStyle) + 16u) + QWindowsStyle (0x7f1decb26f50) 0 + primary-for QCleanlooksStyle (0x7f1decb26ee0) + QCommonStyle (0x7f1decb2d000) 0 + primary-for QWindowsStyle (0x7f1decb26f50) + QStyle (0x7f1decb2d070) 0 + primary-for QCommonStyle (0x7f1decb2d000) + QObject (0x7f1decb2d0e0) 0 + primary-for QStyle (0x7f1decb2d070) + +Vtable for QStyleFactoryInterface +QStyleFactoryInterface::_ZTV22QStyleFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QStyleFactoryInterface) +16 QStyleFactoryInterface::~QStyleFactoryInterface +24 QStyleFactoryInterface::~QStyleFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QStyleFactoryInterface + size=8 align=8 + base size=8 base align=8 +QStyleFactoryInterface (0x7f1decb49cb0) 0 nearly-empty + vptr=((& QStyleFactoryInterface::_ZTV22QStyleFactoryInterface) + 16u) + QFactoryInterface (0x7f1decb49d20) 0 nearly-empty + primary-for QStyleFactoryInterface (0x7f1decb49cb0) + +Vtable for QStylePlugin +QStylePlugin::_ZTV12QStylePlugin: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QStylePlugin) +16 QStylePlugin::metaObject +24 QStylePlugin::qt_metacast +32 QStylePlugin::qt_metacall +40 QStylePlugin::~QStylePlugin +48 QStylePlugin::~QStylePlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI12QStylePlugin) +144 QStylePlugin::_ZThn16_N12QStylePluginD1Ev +152 QStylePlugin::_ZThn16_N12QStylePluginD0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QStylePlugin + size=24 align=8 + base size=24 base align=8 +QStylePlugin (0x7f1decb2ef80) 0 + vptr=((& QStylePlugin::_ZTV12QStylePlugin) + 16u) + QObject (0x7f1dec953540) 0 + primary-for QStylePlugin (0x7f1decb2ef80) + QStyleFactoryInterface (0x7f1dec9535b0) 16 nearly-empty + vptr=((& QStylePlugin::_ZTV12QStylePlugin) + 144u) + QFactoryInterface (0x7f1dec953620) 16 nearly-empty + primary-for QStyleFactoryInterface (0x7f1dec9535b0) + +Vtable for QWindowsXPStyle +QWindowsXPStyle::_ZTV15QWindowsXPStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QWindowsXPStyle) +16 QWindowsXPStyle::metaObject +24 QWindowsXPStyle::qt_metacast +32 QWindowsXPStyle::qt_metacall +40 QWindowsXPStyle::~QWindowsXPStyle +48 QWindowsXPStyle::~QWindowsXPStyle +56 QObject::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWindowsXPStyle::polish +120 QWindowsXPStyle::unpolish +128 QWindowsXPStyle::polish +136 QWindowsXPStyle::unpolish +144 QWindowsXPStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QWindowsXPStyle::standardPalette +192 QWindowsXPStyle::drawPrimitive +200 QWindowsXPStyle::drawControl +208 QWindowsXPStyle::subElementRect +216 QWindowsXPStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QWindowsXPStyle::subControlRect +240 QWindowsXPStyle::pixelMetric +248 QWindowsXPStyle::sizeFromContents +256 QWindowsXPStyle::styleHint +264 QWindowsXPStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QWindowsXPStyle + size=32 align=8 + base size=32 base align=8 +QWindowsXPStyle (0x7f1dec9644d0) 0 + vptr=((& QWindowsXPStyle::_ZTV15QWindowsXPStyle) + 16u) + QWindowsStyle (0x7f1dec964540) 0 + primary-for QWindowsXPStyle (0x7f1dec9644d0) + QCommonStyle (0x7f1dec9645b0) 0 + primary-for QWindowsStyle (0x7f1dec964540) + QStyle (0x7f1dec964620) 0 + primary-for QCommonStyle (0x7f1dec9645b0) + QObject (0x7f1dec964690) 0 + primary-for QStyle (0x7f1dec964620) + +Vtable for QCDEStyle +QCDEStyle::_ZTV9QCDEStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QCDEStyle) +16 QCDEStyle::metaObject +24 QCDEStyle::qt_metacast +32 QCDEStyle::qt_metacall +40 QCDEStyle::~QCDEStyle +48 QCDEStyle::~QCDEStyle +56 QMotifStyle::event +64 QMotifStyle::eventFilter +72 QMotifStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMotifStyle::polish +120 QMotifStyle::unpolish +128 QMotifStyle::polish +136 QMotifStyle::unpolish +144 QMotifStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QCDEStyle::standardPalette +192 QCDEStyle::drawPrimitive +200 QCDEStyle::drawControl +208 QMotifStyle::subElementRect +216 QMotifStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QMotifStyle::subControlRect +240 QCDEStyle::pixelMetric +248 QMotifStyle::sizeFromContents +256 QMotifStyle::styleHint +264 QMotifStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QCDEStyle + size=32 align=8 + base size=25 base align=8 +QCDEStyle (0x7f1dec986380) 0 + vptr=((& QCDEStyle::_ZTV9QCDEStyle) + 16u) + QMotifStyle (0x7f1dec9863f0) 0 + primary-for QCDEStyle (0x7f1dec986380) + QCommonStyle (0x7f1dec986460) 0 + primary-for QMotifStyle (0x7f1dec9863f0) + QStyle (0x7f1dec9864d0) 0 + primary-for QCommonStyle (0x7f1dec986460) + QObject (0x7f1dec986540) 0 + primary-for QStyle (0x7f1dec9864d0) + +Vtable for QPlastiqueStyle +QPlastiqueStyle::_ZTV15QPlastiqueStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QPlastiqueStyle) +16 QPlastiqueStyle::metaObject +24 QPlastiqueStyle::qt_metacast +32 QPlastiqueStyle::qt_metacall +40 QPlastiqueStyle::~QPlastiqueStyle +48 QPlastiqueStyle::~QPlastiqueStyle +56 QObject::event +64 QPlastiqueStyle::eventFilter +72 QPlastiqueStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QPlastiqueStyle::polish +120 QPlastiqueStyle::unpolish +128 QPlastiqueStyle::polish +136 QPlastiqueStyle::unpolish +144 QPlastiqueStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QPlastiqueStyle::standardPalette +192 QPlastiqueStyle::drawPrimitive +200 QPlastiqueStyle::drawControl +208 QPlastiqueStyle::subElementRect +216 QPlastiqueStyle::drawComplexControl +224 QPlastiqueStyle::hitTestComplexControl +232 QPlastiqueStyle::subControlRect +240 QPlastiqueStyle::pixelMetric +248 QPlastiqueStyle::sizeFromContents +256 QPlastiqueStyle::styleHint +264 QPlastiqueStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QPlastiqueStyle + size=32 align=8 + base size=32 base align=8 +QPlastiqueStyle (0x7f1dec99a4d0) 0 + vptr=((& QPlastiqueStyle::_ZTV15QPlastiqueStyle) + 16u) + QWindowsStyle (0x7f1dec99a540) 0 + primary-for QPlastiqueStyle (0x7f1dec99a4d0) + QCommonStyle (0x7f1dec99a5b0) 0 + primary-for QWindowsStyle (0x7f1dec99a540) + QStyle (0x7f1dec99a620) 0 + primary-for QCommonStyle (0x7f1dec99a5b0) + QObject (0x7f1dec99a690) 0 + primary-for QStyle (0x7f1dec99a620) + +Vtable for QWindowsVistaStyle +QWindowsVistaStyle::_ZTV18QWindowsVistaStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QWindowsVistaStyle) +16 QWindowsVistaStyle::metaObject +24 QWindowsVistaStyle::qt_metacast +32 QWindowsVistaStyle::qt_metacall +40 QWindowsVistaStyle::~QWindowsVistaStyle +48 QWindowsVistaStyle::~QWindowsVistaStyle +56 QWindowsVistaStyle::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWindowsVistaStyle::polish +120 QWindowsVistaStyle::unpolish +128 QWindowsVistaStyle::polish +136 QWindowsVistaStyle::unpolish +144 QWindowsVistaStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QWindowsVistaStyle::standardPalette +192 QWindowsVistaStyle::drawPrimitive +200 QWindowsVistaStyle::drawControl +208 QWindowsVistaStyle::subElementRect +216 QWindowsVistaStyle::drawComplexControl +224 QWindowsVistaStyle::hitTestComplexControl +232 QWindowsVistaStyle::subControlRect +240 QWindowsVistaStyle::pixelMetric +248 QWindowsVistaStyle::sizeFromContents +256 QWindowsVistaStyle::styleHint +264 QWindowsVistaStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QWindowsVistaStyle + size=32 align=8 + base size=32 base align=8 +QWindowsVistaStyle (0x7f1dec9ba620) 0 + vptr=((& QWindowsVistaStyle::_ZTV18QWindowsVistaStyle) + 16u) + QWindowsXPStyle (0x7f1dec9ba690) 0 + primary-for QWindowsVistaStyle (0x7f1dec9ba620) + QWindowsStyle (0x7f1dec9ba700) 0 + primary-for QWindowsXPStyle (0x7f1dec9ba690) + QCommonStyle (0x7f1dec9ba770) 0 + primary-for QWindowsStyle (0x7f1dec9ba700) + QStyle (0x7f1dec9ba7e0) 0 + primary-for QCommonStyle (0x7f1dec9ba770) + QObject (0x7f1dec9ba850) 0 + primary-for QStyle (0x7f1dec9ba7e0) + +Vtable for QWindowsCEStyle +QWindowsCEStyle::_ZTV15QWindowsCEStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QWindowsCEStyle) +16 QWindowsCEStyle::metaObject +24 QWindowsCEStyle::qt_metacast +32 QWindowsCEStyle::qt_metacall +40 QWindowsCEStyle::~QWindowsCEStyle +48 QWindowsCEStyle::~QWindowsCEStyle +56 QObject::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWindowsCEStyle::polish +120 QWindowsStyle::unpolish +128 QWindowsCEStyle::polish +136 QWindowsStyle::unpolish +144 QWindowsCEStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QWindowsCEStyle::drawItemText +176 QStyle::drawItemPixmap +184 QWindowsCEStyle::standardPalette +192 QWindowsCEStyle::drawPrimitive +200 QWindowsCEStyle::drawControl +208 QWindowsCEStyle::subElementRect +216 QWindowsCEStyle::drawComplexControl +224 QWindowsCEStyle::hitTestComplexControl +232 QWindowsCEStyle::subControlRect +240 QWindowsCEStyle::pixelMetric +248 QWindowsCEStyle::sizeFromContents +256 QWindowsCEStyle::styleHint +264 QWindowsCEStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QWindowsCEStyle + size=24 align=8 + base size=24 base align=8 +QWindowsCEStyle (0x7f1dec9d8620) 0 + vptr=((& QWindowsCEStyle::_ZTV15QWindowsCEStyle) + 16u) + QWindowsStyle (0x7f1dec9d8690) 0 + primary-for QWindowsCEStyle (0x7f1dec9d8620) + QCommonStyle (0x7f1dec9d8700) 0 + primary-for QWindowsStyle (0x7f1dec9d8690) + QStyle (0x7f1dec9d8770) 0 + primary-for QCommonStyle (0x7f1dec9d8700) + QObject (0x7f1dec9d87e0) 0 + primary-for QStyle (0x7f1dec9d8770) + +Vtable for QWindowsMobileStyle +QWindowsMobileStyle::_ZTV19QWindowsMobileStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QWindowsMobileStyle) +16 QWindowsMobileStyle::metaObject +24 QWindowsMobileStyle::qt_metacast +32 QWindowsMobileStyle::qt_metacall +40 QWindowsMobileStyle::~QWindowsMobileStyle +48 QWindowsMobileStyle::~QWindowsMobileStyle +56 QObject::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWindowsMobileStyle::polish +120 QWindowsMobileStyle::unpolish +128 QWindowsMobileStyle::polish +136 QWindowsMobileStyle::unpolish +144 QWindowsMobileStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QWindowsMobileStyle::standardPalette +192 QWindowsMobileStyle::drawPrimitive +200 QWindowsMobileStyle::drawControl +208 QWindowsMobileStyle::subElementRect +216 QWindowsMobileStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QWindowsMobileStyle::subControlRect +240 QWindowsMobileStyle::pixelMetric +248 QWindowsMobileStyle::sizeFromContents +256 QWindowsMobileStyle::styleHint +264 QWindowsMobileStyle::standardPixmap +272 QWindowsMobileStyle::generatedIconPixmap + +Class QWindowsMobileStyle + size=24 align=8 + base size=24 base align=8 +QWindowsMobileStyle (0x7f1dec9ebd20) 0 + vptr=((& QWindowsMobileStyle::_ZTV19QWindowsMobileStyle) + 16u) + QWindowsStyle (0x7f1dec9ebd90) 0 + primary-for QWindowsMobileStyle (0x7f1dec9ebd20) + QCommonStyle (0x7f1dec9ebe00) 0 + primary-for QWindowsStyle (0x7f1dec9ebd90) + QStyle (0x7f1dec9ebe70) 0 + primary-for QCommonStyle (0x7f1dec9ebe00) + QObject (0x7f1dec9ebee0) 0 + primary-for QStyle (0x7f1dec9ebe70) + +Class QStyleFactory + size=1 align=1 + base size=0 base align=1 +QStyleFactory (0x7f1deca12690) 0 empty + +Vtable for QInputContextFactoryInterface +QInputContextFactoryInterface::_ZTV29QInputContextFactoryInterface: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI29QInputContextFactoryInterface) +16 QInputContextFactoryInterface::~QInputContextFactoryInterface +24 QInputContextFactoryInterface::~QInputContextFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual + +Class QInputContextFactoryInterface + size=8 align=8 + base size=8 base align=8 +QInputContextFactoryInterface (0x7f1deca12700) 0 nearly-empty + vptr=((& QInputContextFactoryInterface::_ZTV29QInputContextFactoryInterface) + 16u) + QFactoryInterface (0x7f1deca12770) 0 nearly-empty + primary-for QInputContextFactoryInterface (0x7f1deca12700) + +Vtable for QInputContextPlugin +QInputContextPlugin::_ZTV19QInputContextPlugin: 28u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QInputContextPlugin) +16 QInputContextPlugin::metaObject +24 QInputContextPlugin::qt_metacast +32 QInputContextPlugin::qt_metacall +40 QInputContextPlugin::~QInputContextPlugin +48 QInputContextPlugin::~QInputContextPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 (int (*)(...))-0x00000000000000010 +160 (int (*)(...))(& _ZTI19QInputContextPlugin) +168 QInputContextPlugin::_ZThn16_N19QInputContextPluginD1Ev +176 QInputContextPlugin::_ZThn16_N19QInputContextPluginD0Ev +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 __cxa_pure_virtual +208 __cxa_pure_virtual +216 __cxa_pure_virtual + +Class QInputContextPlugin + size=24 align=8 + base size=24 base align=8 +QInputContextPlugin (0x7f1deca0cd80) 0 + vptr=((& QInputContextPlugin::_ZTV19QInputContextPlugin) + 16u) + QObject (0x7f1deca12f50) 0 + primary-for QInputContextPlugin (0x7f1deca0cd80) + QInputContextFactoryInterface (0x7f1deca127e0) 16 nearly-empty + vptr=((& QInputContextPlugin::_ZTV19QInputContextPlugin) + 168u) + QFactoryInterface (0x7f1deca1d000) 16 nearly-empty + primary-for QInputContextFactoryInterface (0x7f1deca127e0) + +Class QInputContextFactory + size=1 align=1 + base size=0 base align=1 +QInputContextFactory (0x7f1deca1dee0) 0 empty + +Vtable for QInputContext +QInputContext::_ZTV13QInputContext: 26u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QInputContext) +16 QInputContext::metaObject +24 QInputContext::qt_metacast +32 QInputContext::qt_metacall +40 QInputContext::~QInputContext +48 QInputContext::~QInputContext +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 QInputContext::update +144 QInputContext::mouseHandler +152 QInputContext::font +160 __cxa_pure_virtual +168 QInputContext::setFocusWidget +176 QInputContext::widgetDestroyed +184 QInputContext::actions +192 QInputContext::x11FilterEvent +200 QInputContext::filterEvent + +Class QInputContext + size=16 align=8 + base size=16 base align=8 +QInputContext (0x7f1deca1df50) 0 + vptr=((& QInputContext::_ZTV13QInputContext) + 16u) + QObject (0x7f1deca1d2a0) 0 + primary-for QInputContext (0x7f1deca1df50) + +Vtable for QGraphicsItem +QGraphicsItem::_ZTV13QGraphicsItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QGraphicsItem) +16 QGraphicsItem::~QGraphicsItem +24 QGraphicsItem::~QGraphicsItem +32 QGraphicsItem::advance +40 __cxa_pure_virtual +48 QGraphicsItem::shape +56 QGraphicsItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsItem::isObscuredBy +88 QGraphicsItem::opaqueArea +96 __cxa_pure_virtual +104 QGraphicsItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsItem::supportsExtension +296 QGraphicsItem::setExtension +304 QGraphicsItem::extension + +Class QGraphicsItem + size=16 align=8 + base size=16 base align=8 +QGraphicsItem (0x7f1deca44850) 0 + vptr=((& QGraphicsItem::_ZTV13QGraphicsItem) + 16u) + +Vtable for QAbstractGraphicsShapeItem +QAbstractGraphicsShapeItem::_ZTV26QAbstractGraphicsShapeItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QAbstractGraphicsShapeItem) +16 QAbstractGraphicsShapeItem::~QAbstractGraphicsShapeItem +24 QAbstractGraphicsShapeItem::~QAbstractGraphicsShapeItem +32 QGraphicsItem::advance +40 __cxa_pure_virtual +48 QGraphicsItem::shape +56 QGraphicsItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QAbstractGraphicsShapeItem::isObscuredBy +88 QAbstractGraphicsShapeItem::opaqueArea +96 __cxa_pure_virtual +104 QGraphicsItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsItem::supportsExtension +296 QGraphicsItem::setExtension +304 QGraphicsItem::extension + +Class QAbstractGraphicsShapeItem + size=16 align=8 + base size=16 base align=8 +QAbstractGraphicsShapeItem (0x7f1dec91b380) 0 + vptr=((& QAbstractGraphicsShapeItem::_ZTV26QAbstractGraphicsShapeItem) + 16u) + QGraphicsItem (0x7f1dec91b3f0) 0 + primary-for QAbstractGraphicsShapeItem (0x7f1dec91b380) + +Vtable for QGraphicsPathItem +QGraphicsPathItem::_ZTV17QGraphicsPathItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QGraphicsPathItem) +16 QGraphicsPathItem::~QGraphicsPathItem +24 QGraphicsPathItem::~QGraphicsPathItem +32 QGraphicsItem::advance +40 QGraphicsPathItem::boundingRect +48 QGraphicsPathItem::shape +56 QGraphicsPathItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsPathItem::isObscuredBy +88 QGraphicsPathItem::opaqueArea +96 QGraphicsPathItem::paint +104 QGraphicsPathItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsPathItem::supportsExtension +296 QGraphicsPathItem::setExtension +304 QGraphicsPathItem::extension + +Class QGraphicsPathItem + size=16 align=8 + base size=16 base align=8 +QGraphicsPathItem (0x7f1dec9261c0) 0 + vptr=((& QGraphicsPathItem::_ZTV17QGraphicsPathItem) + 16u) + QAbstractGraphicsShapeItem (0x7f1dec926230) 0 + primary-for QGraphicsPathItem (0x7f1dec9261c0) + QGraphicsItem (0x7f1dec9262a0) 0 + primary-for QAbstractGraphicsShapeItem (0x7f1dec926230) + +Vtable for QGraphicsRectItem +QGraphicsRectItem::_ZTV17QGraphicsRectItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QGraphicsRectItem) +16 QGraphicsRectItem::~QGraphicsRectItem +24 QGraphicsRectItem::~QGraphicsRectItem +32 QGraphicsItem::advance +40 QGraphicsRectItem::boundingRect +48 QGraphicsRectItem::shape +56 QGraphicsRectItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsRectItem::isObscuredBy +88 QGraphicsRectItem::opaqueArea +96 QGraphicsRectItem::paint +104 QGraphicsRectItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsRectItem::supportsExtension +296 QGraphicsRectItem::setExtension +304 QGraphicsRectItem::extension + +Class QGraphicsRectItem + size=16 align=8 + base size=16 base align=8 +QGraphicsRectItem (0x7f1dec938150) 0 + vptr=((& QGraphicsRectItem::_ZTV17QGraphicsRectItem) + 16u) + QAbstractGraphicsShapeItem (0x7f1dec9381c0) 0 + primary-for QGraphicsRectItem (0x7f1dec938150) + QGraphicsItem (0x7f1dec938230) 0 + primary-for QAbstractGraphicsShapeItem (0x7f1dec9381c0) + +Vtable for QGraphicsEllipseItem +QGraphicsEllipseItem::_ZTV20QGraphicsEllipseItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QGraphicsEllipseItem) +16 QGraphicsEllipseItem::~QGraphicsEllipseItem +24 QGraphicsEllipseItem::~QGraphicsEllipseItem +32 QGraphicsItem::advance +40 QGraphicsEllipseItem::boundingRect +48 QGraphicsEllipseItem::shape +56 QGraphicsEllipseItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsEllipseItem::isObscuredBy +88 QGraphicsEllipseItem::opaqueArea +96 QGraphicsEllipseItem::paint +104 QGraphicsEllipseItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsEllipseItem::supportsExtension +296 QGraphicsEllipseItem::setExtension +304 QGraphicsEllipseItem::extension + +Class QGraphicsEllipseItem + size=16 align=8 + base size=16 base align=8 +QGraphicsEllipseItem (0x7f1dec947460) 0 + vptr=((& QGraphicsEllipseItem::_ZTV20QGraphicsEllipseItem) + 16u) + QAbstractGraphicsShapeItem (0x7f1dec9474d0) 0 + primary-for QGraphicsEllipseItem (0x7f1dec947460) + QGraphicsItem (0x7f1dec947540) 0 + primary-for QAbstractGraphicsShapeItem (0x7f1dec9474d0) + +Vtable for QGraphicsPolygonItem +QGraphicsPolygonItem::_ZTV20QGraphicsPolygonItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QGraphicsPolygonItem) +16 QGraphicsPolygonItem::~QGraphicsPolygonItem +24 QGraphicsPolygonItem::~QGraphicsPolygonItem +32 QGraphicsItem::advance +40 QGraphicsPolygonItem::boundingRect +48 QGraphicsPolygonItem::shape +56 QGraphicsPolygonItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsPolygonItem::isObscuredBy +88 QGraphicsPolygonItem::opaqueArea +96 QGraphicsPolygonItem::paint +104 QGraphicsPolygonItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsPolygonItem::supportsExtension +296 QGraphicsPolygonItem::setExtension +304 QGraphicsPolygonItem::extension + +Class QGraphicsPolygonItem + size=16 align=8 + base size=16 base align=8 +QGraphicsPolygonItem (0x7f1dec759770) 0 + vptr=((& QGraphicsPolygonItem::_ZTV20QGraphicsPolygonItem) + 16u) + QAbstractGraphicsShapeItem (0x7f1dec7597e0) 0 + primary-for QGraphicsPolygonItem (0x7f1dec759770) + QGraphicsItem (0x7f1dec759850) 0 + primary-for QAbstractGraphicsShapeItem (0x7f1dec7597e0) + +Vtable for QGraphicsLineItem +QGraphicsLineItem::_ZTV17QGraphicsLineItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QGraphicsLineItem) +16 QGraphicsLineItem::~QGraphicsLineItem +24 QGraphicsLineItem::~QGraphicsLineItem +32 QGraphicsItem::advance +40 QGraphicsLineItem::boundingRect +48 QGraphicsLineItem::shape +56 QGraphicsLineItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsLineItem::isObscuredBy +88 QGraphicsLineItem::opaqueArea +96 QGraphicsLineItem::paint +104 QGraphicsLineItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsLineItem::supportsExtension +296 QGraphicsLineItem::setExtension +304 QGraphicsLineItem::extension + +Class QGraphicsLineItem + size=16 align=8 + base size=16 base align=8 +QGraphicsLineItem (0x7f1dec769770) 0 + vptr=((& QGraphicsLineItem::_ZTV17QGraphicsLineItem) + 16u) + QGraphicsItem (0x7f1dec7697e0) 0 + primary-for QGraphicsLineItem (0x7f1dec769770) + +Vtable for QGraphicsPixmapItem +QGraphicsPixmapItem::_ZTV19QGraphicsPixmapItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QGraphicsPixmapItem) +16 QGraphicsPixmapItem::~QGraphicsPixmapItem +24 QGraphicsPixmapItem::~QGraphicsPixmapItem +32 QGraphicsItem::advance +40 QGraphicsPixmapItem::boundingRect +48 QGraphicsPixmapItem::shape +56 QGraphicsPixmapItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsPixmapItem::isObscuredBy +88 QGraphicsPixmapItem::opaqueArea +96 QGraphicsPixmapItem::paint +104 QGraphicsPixmapItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsPixmapItem::supportsExtension +296 QGraphicsPixmapItem::setExtension +304 QGraphicsPixmapItem::extension + +Class QGraphicsPixmapItem + size=16 align=8 + base size=16 base align=8 +QGraphicsPixmapItem (0x7f1dec778a10) 0 + vptr=((& QGraphicsPixmapItem::_ZTV19QGraphicsPixmapItem) + 16u) + QGraphicsItem (0x7f1dec778a80) 0 + primary-for QGraphicsPixmapItem (0x7f1dec778a10) + +Vtable for QGraphicsTextItem +QGraphicsTextItem::_ZTV17QGraphicsTextItem: 82u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QGraphicsTextItem) +16 QGraphicsTextItem::metaObject +24 QGraphicsTextItem::qt_metacast +32 QGraphicsTextItem::qt_metacall +40 QGraphicsTextItem::~QGraphicsTextItem +48 QGraphicsTextItem::~QGraphicsTextItem +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsTextItem::boundingRect +120 QGraphicsTextItem::shape +128 QGraphicsTextItem::contains +136 QGraphicsTextItem::paint +144 QGraphicsTextItem::isObscuredBy +152 QGraphicsTextItem::opaqueArea +160 QGraphicsTextItem::type +168 QGraphicsTextItem::sceneEvent +176 QGraphicsTextItem::mousePressEvent +184 QGraphicsTextItem::mouseMoveEvent +192 QGraphicsTextItem::mouseReleaseEvent +200 QGraphicsTextItem::mouseDoubleClickEvent +208 QGraphicsTextItem::contextMenuEvent +216 QGraphicsTextItem::keyPressEvent +224 QGraphicsTextItem::keyReleaseEvent +232 QGraphicsTextItem::focusInEvent +240 QGraphicsTextItem::focusOutEvent +248 QGraphicsTextItem::dragEnterEvent +256 QGraphicsTextItem::dragLeaveEvent +264 QGraphicsTextItem::dragMoveEvent +272 QGraphicsTextItem::dropEvent +280 QGraphicsTextItem::inputMethodEvent +288 QGraphicsTextItem::hoverEnterEvent +296 QGraphicsTextItem::hoverMoveEvent +304 QGraphicsTextItem::hoverLeaveEvent +312 QGraphicsTextItem::inputMethodQuery +320 QGraphicsTextItem::supportsExtension +328 QGraphicsTextItem::setExtension +336 QGraphicsTextItem::extension +344 (int (*)(...))-0x00000000000000010 +352 (int (*)(...))(& _ZTI17QGraphicsTextItem) +360 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItemD1Ev +368 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItemD0Ev +376 QGraphicsItem::advance +384 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem12boundingRectEv +392 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem5shapeEv +400 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem8containsERK7QPointF +408 QGraphicsItem::collidesWithItem +416 QGraphicsItem::collidesWithPath +424 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem12isObscuredByEPK13QGraphicsItem +432 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem10opaqueAreaEv +440 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget +448 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem4typeEv +456 QGraphicsItem::sceneEventFilter +464 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem10sceneEventEP6QEvent +472 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem16contextMenuEventEP30QGraphicsSceneContextMenuEvent +480 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem14dragEnterEventEP27QGraphicsSceneDragDropEvent +488 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem14dragLeaveEventEP27QGraphicsSceneDragDropEvent +496 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem13dragMoveEventEP27QGraphicsSceneDragDropEvent +504 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem9dropEventEP27QGraphicsSceneDragDropEvent +512 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem12focusInEventEP11QFocusEvent +520 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem13focusOutEventEP11QFocusEvent +528 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem15hoverEnterEventEP24QGraphicsSceneHoverEvent +536 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem14hoverMoveEventEP24QGraphicsSceneHoverEvent +544 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem15hoverLeaveEventEP24QGraphicsSceneHoverEvent +552 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem13keyPressEventEP9QKeyEvent +560 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem15keyReleaseEventEP9QKeyEvent +568 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem15mousePressEventEP24QGraphicsSceneMouseEvent +576 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem14mouseMoveEventEP24QGraphicsSceneMouseEvent +584 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem17mouseReleaseEventEP24QGraphicsSceneMouseEvent +592 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem21mouseDoubleClickEventEP24QGraphicsSceneMouseEvent +600 QGraphicsItem::wheelEvent +608 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem16inputMethodEventEP17QInputMethodEvent +616 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem16inputMethodQueryEN2Qt16InputMethodQueryE +624 QGraphicsItem::itemChange +632 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem17supportsExtensionEN13QGraphicsItem9ExtensionE +640 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem12setExtensionEN13QGraphicsItem9ExtensionERK8QVariant +648 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem9extensionERK8QVariant + +Class QGraphicsTextItem + size=40 align=8 + base size=40 base align=8 +QGraphicsTextItem (0x7f1dec75bf80) 0 + vptr=((& QGraphicsTextItem::_ZTV17QGraphicsTextItem) + 16u) + QObject (0x7f1dec789c40) 0 + primary-for QGraphicsTextItem (0x7f1dec75bf80) + QGraphicsItem (0x7f1dec789cb0) 16 + vptr=((& QGraphicsTextItem::_ZTV17QGraphicsTextItem) + 360u) + +Vtable for QGraphicsSimpleTextItem +QGraphicsSimpleTextItem::_ZTV23QGraphicsSimpleTextItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QGraphicsSimpleTextItem) +16 QGraphicsSimpleTextItem::~QGraphicsSimpleTextItem +24 QGraphicsSimpleTextItem::~QGraphicsSimpleTextItem +32 QGraphicsItem::advance +40 QGraphicsSimpleTextItem::boundingRect +48 QGraphicsSimpleTextItem::shape +56 QGraphicsSimpleTextItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsSimpleTextItem::isObscuredBy +88 QGraphicsSimpleTextItem::opaqueArea +96 QGraphicsSimpleTextItem::paint +104 QGraphicsSimpleTextItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsSimpleTextItem::supportsExtension +296 QGraphicsSimpleTextItem::setExtension +304 QGraphicsSimpleTextItem::extension + +Class QGraphicsSimpleTextItem + size=16 align=8 + base size=16 base align=8 +QGraphicsSimpleTextItem (0x7f1dec7c31c0) 0 + vptr=((& QGraphicsSimpleTextItem::_ZTV23QGraphicsSimpleTextItem) + 16u) + QAbstractGraphicsShapeItem (0x7f1dec7c3230) 0 + primary-for QGraphicsSimpleTextItem (0x7f1dec7c31c0) + QGraphicsItem (0x7f1dec7c32a0) 0 + primary-for QAbstractGraphicsShapeItem (0x7f1dec7c3230) + +Vtable for QGraphicsItemGroup +QGraphicsItemGroup::_ZTV18QGraphicsItemGroup: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QGraphicsItemGroup) +16 QGraphicsItemGroup::~QGraphicsItemGroup +24 QGraphicsItemGroup::~QGraphicsItemGroup +32 QGraphicsItem::advance +40 QGraphicsItemGroup::boundingRect +48 QGraphicsItem::shape +56 QGraphicsItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsItemGroup::isObscuredBy +88 QGraphicsItemGroup::opaqueArea +96 QGraphicsItemGroup::paint +104 QGraphicsItemGroup::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsItem::supportsExtension +296 QGraphicsItem::setExtension +304 QGraphicsItem::extension + +Class QGraphicsItemGroup + size=16 align=8 + base size=16 base align=8 +QGraphicsItemGroup (0x7f1dec7d3150) 0 + vptr=((& QGraphicsItemGroup::_ZTV18QGraphicsItemGroup) + 16u) + QGraphicsItem (0x7f1dec7d31c0) 0 + primary-for QGraphicsItemGroup (0x7f1dec7d3150) + +Vtable for QGraphicsLayoutItem +QGraphicsLayoutItem::_ZTV19QGraphicsLayoutItem: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QGraphicsLayoutItem) +16 QGraphicsLayoutItem::~QGraphicsLayoutItem +24 QGraphicsLayoutItem::~QGraphicsLayoutItem +32 QGraphicsLayoutItem::setGeometry +40 QGraphicsLayoutItem::getContentsMargins +48 QGraphicsLayoutItem::updateGeometry +56 __cxa_pure_virtual + +Class QGraphicsLayoutItem + size=16 align=8 + base size=16 base align=8 +QGraphicsLayoutItem (0x7f1dec7e2a80) 0 + vptr=((& QGraphicsLayoutItem::_ZTV19QGraphicsLayoutItem) + 16u) + +Vtable for QGraphicsLayout +QGraphicsLayout::_ZTV15QGraphicsLayout: 13u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QGraphicsLayout) +16 QGraphicsLayout::~QGraphicsLayout +24 QGraphicsLayout::~QGraphicsLayout +32 QGraphicsLayoutItem::setGeometry +40 QGraphicsLayout::getContentsMargins +48 QGraphicsLayout::updateGeometry +56 __cxa_pure_virtual +64 QGraphicsLayout::invalidate +72 QGraphicsLayout::widgetEvent +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual + +Class QGraphicsLayout + size=16 align=8 + base size=16 base align=8 +QGraphicsLayout (0x7f1dec80f7e0) 0 + vptr=((& QGraphicsLayout::_ZTV15QGraphicsLayout) + 16u) + QGraphicsLayoutItem (0x7f1dec80f850) 0 + primary-for QGraphicsLayout (0x7f1dec80f7e0) + +Vtable for QGraphicsScene +QGraphicsScene::_ZTV14QGraphicsScene: 34u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QGraphicsScene) +16 QGraphicsScene::metaObject +24 QGraphicsScene::qt_metacast +32 QGraphicsScene::qt_metacall +40 QGraphicsScene::~QGraphicsScene +48 QGraphicsScene::~QGraphicsScene +56 QGraphicsScene::event +64 QGraphicsScene::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsScene::inputMethodQuery +120 QGraphicsScene::contextMenuEvent +128 QGraphicsScene::dragEnterEvent +136 QGraphicsScene::dragMoveEvent +144 QGraphicsScene::dragLeaveEvent +152 QGraphicsScene::dropEvent +160 QGraphicsScene::focusInEvent +168 QGraphicsScene::focusOutEvent +176 QGraphicsScene::helpEvent +184 QGraphicsScene::keyPressEvent +192 QGraphicsScene::keyReleaseEvent +200 QGraphicsScene::mousePressEvent +208 QGraphicsScene::mouseMoveEvent +216 QGraphicsScene::mouseReleaseEvent +224 QGraphicsScene::mouseDoubleClickEvent +232 QGraphicsScene::wheelEvent +240 QGraphicsScene::inputMethodEvent +248 QGraphicsScene::drawBackground +256 QGraphicsScene::drawForeground +264 QGraphicsScene::drawItems + +Class QGraphicsScene + size=16 align=8 + base size=16 base align=8 +QGraphicsScene (0x7f1dec81c700) 0 + vptr=((& QGraphicsScene::_ZTV14QGraphicsScene) + 16u) + QObject (0x7f1dec81c770) 0 + primary-for QGraphicsScene (0x7f1dec81c700) + +Vtable for QGraphicsLinearLayout +QGraphicsLinearLayout::_ZTV21QGraphicsLinearLayout: 13u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QGraphicsLinearLayout) +16 QGraphicsLinearLayout::~QGraphicsLinearLayout +24 QGraphicsLinearLayout::~QGraphicsLinearLayout +32 QGraphicsLinearLayout::setGeometry +40 QGraphicsLayout::getContentsMargins +48 QGraphicsLayout::updateGeometry +56 QGraphicsLinearLayout::sizeHint +64 QGraphicsLinearLayout::invalidate +72 QGraphicsLayout::widgetEvent +80 QGraphicsLinearLayout::count +88 QGraphicsLinearLayout::itemAt +96 QGraphicsLinearLayout::removeAt + +Class QGraphicsLinearLayout + size=16 align=8 + base size=16 base align=8 +QGraphicsLinearLayout (0x7f1dec6c2d20) 0 + vptr=((& QGraphicsLinearLayout::_ZTV21QGraphicsLinearLayout) + 16u) + QGraphicsLayout (0x7f1dec6c2d90) 0 + primary-for QGraphicsLinearLayout (0x7f1dec6c2d20) + QGraphicsLayoutItem (0x7f1dec6c2e00) 0 + primary-for QGraphicsLayout (0x7f1dec6c2d90) + +Vtable for QScrollArea +QScrollArea::_ZTV11QScrollArea: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QScrollArea) +16 QScrollArea::metaObject +24 QScrollArea::qt_metacast +32 QScrollArea::qt_metacall +40 QScrollArea::~QScrollArea +48 QScrollArea::~QScrollArea +56 QScrollArea::event +64 QScrollArea::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractScrollArea::mousePressEvent +168 QAbstractScrollArea::mouseReleaseEvent +176 QAbstractScrollArea::mouseDoubleClickEvent +184 QAbstractScrollArea::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractScrollArea::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractScrollArea::paintEvent +256 QWidget::moveEvent +264 QScrollArea::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractScrollArea::dragEnterEvent +312 QAbstractScrollArea::dragMoveEvent +320 QAbstractScrollArea::dragLeaveEvent +328 QAbstractScrollArea::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QScrollArea::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QScrollArea::scrollContentsBy +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI11QScrollArea) +480 QScrollArea::_ZThn16_N11QScrollAreaD1Ev +488 QScrollArea::_ZThn16_N11QScrollAreaD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QScrollArea + size=40 align=8 + base size=40 base align=8 +QScrollArea (0x7f1dec6f2540) 0 + vptr=((& QScrollArea::_ZTV11QScrollArea) + 16u) + QAbstractScrollArea (0x7f1dec6f25b0) 0 + primary-for QScrollArea (0x7f1dec6f2540) + QFrame (0x7f1dec6f2620) 0 + primary-for QAbstractScrollArea (0x7f1dec6f25b0) + QWidget (0x7f1dec6c1880) 0 + primary-for QFrame (0x7f1dec6f2620) + QObject (0x7f1dec6f2690) 0 + primary-for QWidget (0x7f1dec6c1880) + QPaintDevice (0x7f1dec6f2700) 16 + vptr=((& QScrollArea::_ZTV11QScrollArea) + 480u) + +Vtable for QGraphicsView +QGraphicsView::_ZTV13QGraphicsView: 68u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QGraphicsView) +16 QGraphicsView::metaObject +24 QGraphicsView::qt_metacast +32 QGraphicsView::qt_metacall +40 QGraphicsView::~QGraphicsView +48 QGraphicsView::~QGraphicsView +56 QGraphicsView::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QGraphicsView::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QGraphicsView::mousePressEvent +168 QGraphicsView::mouseReleaseEvent +176 QGraphicsView::mouseDoubleClickEvent +184 QGraphicsView::mouseMoveEvent +192 QGraphicsView::wheelEvent +200 QGraphicsView::keyPressEvent +208 QGraphicsView::keyReleaseEvent +216 QGraphicsView::focusInEvent +224 QGraphicsView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QGraphicsView::paintEvent +256 QWidget::moveEvent +264 QGraphicsView::resizeEvent +272 QWidget::closeEvent +280 QGraphicsView::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QGraphicsView::dragEnterEvent +312 QGraphicsView::dragMoveEvent +320 QGraphicsView::dragLeaveEvent +328 QGraphicsView::dropEvent +336 QGraphicsView::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QGraphicsView::inputMethodEvent +384 QGraphicsView::inputMethodQuery +392 QGraphicsView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QGraphicsView::viewportEvent +456 QGraphicsView::scrollContentsBy +464 QGraphicsView::drawBackground +472 QGraphicsView::drawForeground +480 QGraphicsView::drawItems +488 (int (*)(...))-0x00000000000000010 +496 (int (*)(...))(& _ZTI13QGraphicsView) +504 QGraphicsView::_ZThn16_N13QGraphicsViewD1Ev +512 QGraphicsView::_ZThn16_N13QGraphicsViewD0Ev +520 QWidget::_ZThn16_NK7QWidget7devTypeEv +528 QWidget::_ZThn16_NK7QWidget11paintEngineEv +536 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QGraphicsView + size=40 align=8 + base size=40 base align=8 +QGraphicsView (0x7f1dec710460) 0 + vptr=((& QGraphicsView::_ZTV13QGraphicsView) + 16u) + QAbstractScrollArea (0x7f1dec7104d0) 0 + primary-for QGraphicsView (0x7f1dec710460) + QFrame (0x7f1dec710540) 0 + primary-for QAbstractScrollArea (0x7f1dec7104d0) + QWidget (0x7f1dec70f180) 0 + primary-for QFrame (0x7f1dec710540) + QObject (0x7f1dec7105b0) 0 + primary-for QWidget (0x7f1dec70f180) + QPaintDevice (0x7f1dec710620) 16 + vptr=((& QGraphicsView::_ZTV13QGraphicsView) + 504u) + +Vtable for QGraphicsWidget +QGraphicsWidget::_ZTV15QGraphicsWidget: 92u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QGraphicsWidget) +16 QGraphicsWidget::metaObject +24 QGraphicsWidget::qt_metacast +32 QGraphicsWidget::qt_metacall +40 QGraphicsWidget::~QGraphicsWidget +48 QGraphicsWidget::~QGraphicsWidget +56 QGraphicsWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsWidget::setGeometry +120 QGraphicsWidget::getContentsMargins +128 QGraphicsWidget::type +136 QGraphicsWidget::paint +144 QGraphicsWidget::paintWindowFrame +152 QGraphicsWidget::boundingRect +160 QGraphicsWidget::shape +168 QGraphicsWidget::initStyleOption +176 QGraphicsWidget::sizeHint +184 QGraphicsWidget::updateGeometry +192 QGraphicsWidget::itemChange +200 QGraphicsWidget::propertyChange +208 QGraphicsWidget::sceneEvent +216 QGraphicsWidget::windowFrameEvent +224 QGraphicsWidget::windowFrameSectionAt +232 QGraphicsWidget::changeEvent +240 QGraphicsWidget::closeEvent +248 QGraphicsWidget::focusInEvent +256 QGraphicsWidget::focusNextPrevChild +264 QGraphicsWidget::focusOutEvent +272 QGraphicsWidget::hideEvent +280 QGraphicsWidget::moveEvent +288 QGraphicsWidget::polishEvent +296 QGraphicsWidget::resizeEvent +304 QGraphicsWidget::showEvent +312 QGraphicsWidget::hoverMoveEvent +320 QGraphicsWidget::hoverLeaveEvent +328 QGraphicsWidget::grabMouseEvent +336 QGraphicsWidget::ungrabMouseEvent +344 QGraphicsWidget::grabKeyboardEvent +352 QGraphicsWidget::ungrabKeyboardEvent +360 (int (*)(...))-0x00000000000000010 +368 (int (*)(...))(& _ZTI15QGraphicsWidget) +376 QGraphicsWidget::_ZThn16_N15QGraphicsWidgetD1Ev +384 QGraphicsWidget::_ZThn16_N15QGraphicsWidgetD0Ev +392 QGraphicsItem::advance +400 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget12boundingRectEv +408 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget5shapeEv +416 QGraphicsItem::contains +424 QGraphicsItem::collidesWithItem +432 QGraphicsItem::collidesWithPath +440 QGraphicsItem::isObscuredBy +448 QGraphicsItem::opaqueArea +456 QGraphicsWidget::_ZThn16_N15QGraphicsWidget5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget +464 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget4typeEv +472 QGraphicsItem::sceneEventFilter +480 QGraphicsWidget::_ZThn16_N15QGraphicsWidget10sceneEventEP6QEvent +488 QGraphicsItem::contextMenuEvent +496 QGraphicsItem::dragEnterEvent +504 QGraphicsItem::dragLeaveEvent +512 QGraphicsItem::dragMoveEvent +520 QGraphicsItem::dropEvent +528 QGraphicsWidget::_ZThn16_N15QGraphicsWidget12focusInEventEP11QFocusEvent +536 QGraphicsWidget::_ZThn16_N15QGraphicsWidget13focusOutEventEP11QFocusEvent +544 QGraphicsItem::hoverEnterEvent +552 QGraphicsWidget::_ZThn16_N15QGraphicsWidget14hoverMoveEventEP24QGraphicsSceneHoverEvent +560 QGraphicsWidget::_ZThn16_N15QGraphicsWidget15hoverLeaveEventEP24QGraphicsSceneHoverEvent +568 QGraphicsItem::keyPressEvent +576 QGraphicsItem::keyReleaseEvent +584 QGraphicsItem::mousePressEvent +592 QGraphicsItem::mouseMoveEvent +600 QGraphicsItem::mouseReleaseEvent +608 QGraphicsItem::mouseDoubleClickEvent +616 QGraphicsItem::wheelEvent +624 QGraphicsItem::inputMethodEvent +632 QGraphicsItem::inputMethodQuery +640 QGraphicsWidget::_ZThn16_N15QGraphicsWidget10itemChangeEN13QGraphicsItem18GraphicsItemChangeERK8QVariant +648 QGraphicsItem::supportsExtension +656 QGraphicsItem::setExtension +664 QGraphicsItem::extension +672 (int (*)(...))-0x00000000000000020 +680 (int (*)(...))(& _ZTI15QGraphicsWidget) +688 QGraphicsWidget::_ZThn32_N15QGraphicsWidgetD1Ev +696 QGraphicsWidget::_ZThn32_N15QGraphicsWidgetD0Ev +704 QGraphicsWidget::_ZThn32_N15QGraphicsWidget11setGeometryERK6QRectF +712 QGraphicsWidget::_ZThn32_NK15QGraphicsWidget18getContentsMarginsEPdS0_S0_S0_ +720 QGraphicsWidget::_ZThn32_N15QGraphicsWidget14updateGeometryEv +728 QGraphicsWidget::_ZThn32_NK15QGraphicsWidget8sizeHintEN2Qt8SizeHintERK6QSizeF + +Class QGraphicsWidget + size=48 align=8 + base size=48 base align=8 +QGraphicsWidget (0x7f1dec5e7d00) 0 + vptr=((& QGraphicsWidget::_ZTV15QGraphicsWidget) + 16u) + QObject (0x7f1dec5f3930) 0 + primary-for QGraphicsWidget (0x7f1dec5e7d00) + QGraphicsItem (0x7f1dec5f39a0) 16 + vptr=((& QGraphicsWidget::_ZTV15QGraphicsWidget) + 376u) + QGraphicsLayoutItem (0x7f1dec5f3a10) 32 + vptr=((& QGraphicsWidget::_ZTV15QGraphicsWidget) + 688u) + +Vtable for QGraphicsProxyWidget +QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget: 105u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QGraphicsProxyWidget) +16 QGraphicsProxyWidget::metaObject +24 QGraphicsProxyWidget::qt_metacast +32 QGraphicsProxyWidget::qt_metacall +40 QGraphicsProxyWidget::~QGraphicsProxyWidget +48 QGraphicsProxyWidget::~QGraphicsProxyWidget +56 QGraphicsProxyWidget::event +64 QGraphicsProxyWidget::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsProxyWidget::setGeometry +120 QGraphicsWidget::getContentsMargins +128 QGraphicsProxyWidget::type +136 QGraphicsProxyWidget::paint +144 QGraphicsWidget::paintWindowFrame +152 QGraphicsWidget::boundingRect +160 QGraphicsWidget::shape +168 QGraphicsWidget::initStyleOption +176 QGraphicsProxyWidget::sizeHint +184 QGraphicsWidget::updateGeometry +192 QGraphicsProxyWidget::itemChange +200 QGraphicsWidget::propertyChange +208 QGraphicsWidget::sceneEvent +216 QGraphicsWidget::windowFrameEvent +224 QGraphicsWidget::windowFrameSectionAt +232 QGraphicsWidget::changeEvent +240 QGraphicsWidget::closeEvent +248 QGraphicsProxyWidget::focusInEvent +256 QGraphicsProxyWidget::focusNextPrevChild +264 QGraphicsProxyWidget::focusOutEvent +272 QGraphicsProxyWidget::hideEvent +280 QGraphicsWidget::moveEvent +288 QGraphicsWidget::polishEvent +296 QGraphicsProxyWidget::resizeEvent +304 QGraphicsProxyWidget::showEvent +312 QGraphicsProxyWidget::hoverMoveEvent +320 QGraphicsProxyWidget::hoverLeaveEvent +328 QGraphicsProxyWidget::grabMouseEvent +336 QGraphicsProxyWidget::ungrabMouseEvent +344 QGraphicsWidget::grabKeyboardEvent +352 QGraphicsWidget::ungrabKeyboardEvent +360 QGraphicsProxyWidget::contextMenuEvent +368 QGraphicsProxyWidget::dragEnterEvent +376 QGraphicsProxyWidget::dragLeaveEvent +384 QGraphicsProxyWidget::dragMoveEvent +392 QGraphicsProxyWidget::dropEvent +400 QGraphicsProxyWidget::hoverEnterEvent +408 QGraphicsProxyWidget::mouseMoveEvent +416 QGraphicsProxyWidget::mousePressEvent +424 QGraphicsProxyWidget::mouseReleaseEvent +432 QGraphicsProxyWidget::mouseDoubleClickEvent +440 QGraphicsProxyWidget::wheelEvent +448 QGraphicsProxyWidget::keyPressEvent +456 QGraphicsProxyWidget::keyReleaseEvent +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI20QGraphicsProxyWidget) +480 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidgetD1Ev +488 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidgetD0Ev +496 QGraphicsItem::advance +504 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget12boundingRectEv +512 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget5shapeEv +520 QGraphicsItem::contains +528 QGraphicsItem::collidesWithItem +536 QGraphicsItem::collidesWithPath +544 QGraphicsItem::isObscuredBy +552 QGraphicsItem::opaqueArea +560 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget +568 QGraphicsProxyWidget::_ZThn16_NK20QGraphicsProxyWidget4typeEv +576 QGraphicsItem::sceneEventFilter +584 QGraphicsWidget::_ZThn16_N15QGraphicsWidget10sceneEventEP6QEvent +592 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget16contextMenuEventEP30QGraphicsSceneContextMenuEvent +600 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget14dragEnterEventEP27QGraphicsSceneDragDropEvent +608 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget14dragLeaveEventEP27QGraphicsSceneDragDropEvent +616 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget13dragMoveEventEP27QGraphicsSceneDragDropEvent +624 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget9dropEventEP27QGraphicsSceneDragDropEvent +632 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget12focusInEventEP11QFocusEvent +640 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget13focusOutEventEP11QFocusEvent +648 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget15hoverEnterEventEP24QGraphicsSceneHoverEvent +656 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget14hoverMoveEventEP24QGraphicsSceneHoverEvent +664 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget15hoverLeaveEventEP24QGraphicsSceneHoverEvent +672 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget13keyPressEventEP9QKeyEvent +680 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget15keyReleaseEventEP9QKeyEvent +688 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget15mousePressEventEP24QGraphicsSceneMouseEvent +696 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget14mouseMoveEventEP24QGraphicsSceneMouseEvent +704 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget17mouseReleaseEventEP24QGraphicsSceneMouseEvent +712 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget21mouseDoubleClickEventEP24QGraphicsSceneMouseEvent +720 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget10wheelEventEP24QGraphicsSceneWheelEvent +728 QGraphicsItem::inputMethodEvent +736 QGraphicsItem::inputMethodQuery +744 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget10itemChangeEN13QGraphicsItem18GraphicsItemChangeERK8QVariant +752 QGraphicsItem::supportsExtension +760 QGraphicsItem::setExtension +768 QGraphicsItem::extension +776 (int (*)(...))-0x00000000000000020 +784 (int (*)(...))(& _ZTI20QGraphicsProxyWidget) +792 QGraphicsProxyWidget::_ZThn32_N20QGraphicsProxyWidgetD1Ev +800 QGraphicsProxyWidget::_ZThn32_N20QGraphicsProxyWidgetD0Ev +808 QGraphicsProxyWidget::_ZThn32_N20QGraphicsProxyWidget11setGeometryERK6QRectF +816 QGraphicsWidget::_ZThn32_NK15QGraphicsWidget18getContentsMarginsEPdS0_S0_S0_ +824 QGraphicsWidget::_ZThn32_N15QGraphicsWidget14updateGeometryEv +832 QGraphicsProxyWidget::_ZThn32_NK20QGraphicsProxyWidget8sizeHintEN2Qt8SizeHintERK6QSizeF + +Class QGraphicsProxyWidget + size=48 align=8 + base size=48 base align=8 +QGraphicsProxyWidget (0x7f1dec63c1c0) 0 + vptr=((& QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget) + 16u) + QGraphicsWidget (0x7f1dec62cb80) 0 + primary-for QGraphicsProxyWidget (0x7f1dec63c1c0) + QObject (0x7f1dec63c230) 0 + primary-for QGraphicsWidget (0x7f1dec62cb80) + QGraphicsItem (0x7f1dec63c2a0) 16 + vptr=((& QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget) + 480u) + QGraphicsLayoutItem (0x7f1dec63c310) 32 + vptr=((& QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget) + 792u) + +Vtable for QGraphicsSceneEvent +QGraphicsSceneEvent::_ZTV19QGraphicsSceneEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QGraphicsSceneEvent) +16 QGraphicsSceneEvent::~QGraphicsSceneEvent +24 QGraphicsSceneEvent::~QGraphicsSceneEvent + +Class QGraphicsSceneEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneEvent (0x7f1dec466230) 0 + vptr=((& QGraphicsSceneEvent::_ZTV19QGraphicsSceneEvent) + 16u) + QEvent (0x7f1dec4662a0) 0 + primary-for QGraphicsSceneEvent (0x7f1dec466230) + +Vtable for QGraphicsSceneMouseEvent +QGraphicsSceneMouseEvent::_ZTV24QGraphicsSceneMouseEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QGraphicsSceneMouseEvent) +16 QGraphicsSceneMouseEvent::~QGraphicsSceneMouseEvent +24 QGraphicsSceneMouseEvent::~QGraphicsSceneMouseEvent + +Class QGraphicsSceneMouseEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneMouseEvent (0x7f1dec466b60) 0 + vptr=((& QGraphicsSceneMouseEvent::_ZTV24QGraphicsSceneMouseEvent) + 16u) + QGraphicsSceneEvent (0x7f1dec466bd0) 0 + primary-for QGraphicsSceneMouseEvent (0x7f1dec466b60) + QEvent (0x7f1dec466c40) 0 + primary-for QGraphicsSceneEvent (0x7f1dec466bd0) + +Vtable for QGraphicsSceneWheelEvent +QGraphicsSceneWheelEvent::_ZTV24QGraphicsSceneWheelEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QGraphicsSceneWheelEvent) +16 QGraphicsSceneWheelEvent::~QGraphicsSceneWheelEvent +24 QGraphicsSceneWheelEvent::~QGraphicsSceneWheelEvent + +Class QGraphicsSceneWheelEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneWheelEvent (0x7f1dec477460) 0 + vptr=((& QGraphicsSceneWheelEvent::_ZTV24QGraphicsSceneWheelEvent) + 16u) + QGraphicsSceneEvent (0x7f1dec4774d0) 0 + primary-for QGraphicsSceneWheelEvent (0x7f1dec477460) + QEvent (0x7f1dec477540) 0 + primary-for QGraphicsSceneEvent (0x7f1dec4774d0) + +Vtable for QGraphicsSceneContextMenuEvent +QGraphicsSceneContextMenuEvent::_ZTV30QGraphicsSceneContextMenuEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI30QGraphicsSceneContextMenuEvent) +16 QGraphicsSceneContextMenuEvent::~QGraphicsSceneContextMenuEvent +24 QGraphicsSceneContextMenuEvent::~QGraphicsSceneContextMenuEvent + +Class QGraphicsSceneContextMenuEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneContextMenuEvent (0x7f1dec477e00) 0 + vptr=((& QGraphicsSceneContextMenuEvent::_ZTV30QGraphicsSceneContextMenuEvent) + 16u) + QGraphicsSceneEvent (0x7f1dec477e70) 0 + primary-for QGraphicsSceneContextMenuEvent (0x7f1dec477e00) + QEvent (0x7f1dec477ee0) 0 + primary-for QGraphicsSceneEvent (0x7f1dec477e70) + +Vtable for QGraphicsSceneHoverEvent +QGraphicsSceneHoverEvent::_ZTV24QGraphicsSceneHoverEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QGraphicsSceneHoverEvent) +16 QGraphicsSceneHoverEvent::~QGraphicsSceneHoverEvent +24 QGraphicsSceneHoverEvent::~QGraphicsSceneHoverEvent + +Class QGraphicsSceneHoverEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneHoverEvent (0x7f1dec485930) 0 + vptr=((& QGraphicsSceneHoverEvent::_ZTV24QGraphicsSceneHoverEvent) + 16u) + QGraphicsSceneEvent (0x7f1dec4859a0) 0 + primary-for QGraphicsSceneHoverEvent (0x7f1dec485930) + QEvent (0x7f1dec485a10) 0 + primary-for QGraphicsSceneEvent (0x7f1dec4859a0) + +Vtable for QGraphicsSceneHelpEvent +QGraphicsSceneHelpEvent::_ZTV23QGraphicsSceneHelpEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QGraphicsSceneHelpEvent) +16 QGraphicsSceneHelpEvent::~QGraphicsSceneHelpEvent +24 QGraphicsSceneHelpEvent::~QGraphicsSceneHelpEvent + +Class QGraphicsSceneHelpEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneHelpEvent (0x7f1dec496230) 0 + vptr=((& QGraphicsSceneHelpEvent::_ZTV23QGraphicsSceneHelpEvent) + 16u) + QGraphicsSceneEvent (0x7f1dec4962a0) 0 + primary-for QGraphicsSceneHelpEvent (0x7f1dec496230) + QEvent (0x7f1dec496310) 0 + primary-for QGraphicsSceneEvent (0x7f1dec4962a0) + +Vtable for QGraphicsSceneDragDropEvent +QGraphicsSceneDragDropEvent::_ZTV27QGraphicsSceneDragDropEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QGraphicsSceneDragDropEvent) +16 QGraphicsSceneDragDropEvent::~QGraphicsSceneDragDropEvent +24 QGraphicsSceneDragDropEvent::~QGraphicsSceneDragDropEvent + +Class QGraphicsSceneDragDropEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneDragDropEvent (0x7f1dec496bd0) 0 + vptr=((& QGraphicsSceneDragDropEvent::_ZTV27QGraphicsSceneDragDropEvent) + 16u) + QGraphicsSceneEvent (0x7f1dec496c40) 0 + primary-for QGraphicsSceneDragDropEvent (0x7f1dec496bd0) + QEvent (0x7f1dec496cb0) 0 + primary-for QGraphicsSceneEvent (0x7f1dec496c40) + +Vtable for QGraphicsSceneResizeEvent +QGraphicsSceneResizeEvent::_ZTV25QGraphicsSceneResizeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QGraphicsSceneResizeEvent) +16 QGraphicsSceneResizeEvent::~QGraphicsSceneResizeEvent +24 QGraphicsSceneResizeEvent::~QGraphicsSceneResizeEvent + +Class QGraphicsSceneResizeEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneResizeEvent (0x7f1dec4a74d0) 0 + vptr=((& QGraphicsSceneResizeEvent::_ZTV25QGraphicsSceneResizeEvent) + 16u) + QGraphicsSceneEvent (0x7f1dec4a7540) 0 + primary-for QGraphicsSceneResizeEvent (0x7f1dec4a74d0) + QEvent (0x7f1dec4a75b0) 0 + primary-for QGraphicsSceneEvent (0x7f1dec4a7540) + +Vtable for QGraphicsSceneMoveEvent +QGraphicsSceneMoveEvent::_ZTV23QGraphicsSceneMoveEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QGraphicsSceneMoveEvent) +16 QGraphicsSceneMoveEvent::~QGraphicsSceneMoveEvent +24 QGraphicsSceneMoveEvent::~QGraphicsSceneMoveEvent + +Class QGraphicsSceneMoveEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneMoveEvent (0x7f1dec4a7cb0) 0 + vptr=((& QGraphicsSceneMoveEvent::_ZTV23QGraphicsSceneMoveEvent) + 16u) + QGraphicsSceneEvent (0x7f1dec4a7d20) 0 + primary-for QGraphicsSceneMoveEvent (0x7f1dec4a7cb0) + QEvent (0x7f1dec4a7d90) 0 + primary-for QGraphicsSceneEvent (0x7f1dec4a7d20) + +Vtable for QGraphicsItemAnimation +QGraphicsItemAnimation::_ZTV22QGraphicsItemAnimation: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QGraphicsItemAnimation) +16 QGraphicsItemAnimation::metaObject +24 QGraphicsItemAnimation::qt_metacast +32 QGraphicsItemAnimation::qt_metacall +40 QGraphicsItemAnimation::~QGraphicsItemAnimation +48 QGraphicsItemAnimation::~QGraphicsItemAnimation +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsItemAnimation::beforeAnimationStep +120 QGraphicsItemAnimation::afterAnimationStep + +Class QGraphicsItemAnimation + size=24 align=8 + base size=24 base align=8 +QGraphicsItemAnimation (0x7f1dec4b83f0) 0 + vptr=((& QGraphicsItemAnimation::_ZTV22QGraphicsItemAnimation) + 16u) + QObject (0x7f1dec4b8460) 0 + primary-for QGraphicsItemAnimation (0x7f1dec4b83f0) + +Vtable for QGraphicsGridLayout +QGraphicsGridLayout::_ZTV19QGraphicsGridLayout: 13u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QGraphicsGridLayout) +16 QGraphicsGridLayout::~QGraphicsGridLayout +24 QGraphicsGridLayout::~QGraphicsGridLayout +32 QGraphicsGridLayout::setGeometry +40 QGraphicsLayout::getContentsMargins +48 QGraphicsLayout::updateGeometry +56 QGraphicsGridLayout::sizeHint +64 QGraphicsGridLayout::invalidate +72 QGraphicsLayout::widgetEvent +80 QGraphicsGridLayout::count +88 QGraphicsGridLayout::itemAt +96 QGraphicsGridLayout::removeAt + +Class QGraphicsGridLayout + size=16 align=8 + base size=16 base align=8 +QGraphicsGridLayout (0x7f1dec4d1770) 0 + vptr=((& QGraphicsGridLayout::_ZTV19QGraphicsGridLayout) + 16u) + QGraphicsLayout (0x7f1dec4d17e0) 0 + primary-for QGraphicsGridLayout (0x7f1dec4d1770) + QGraphicsLayoutItem (0x7f1dec4d1850) 0 + primary-for QGraphicsLayout (0x7f1dec4d17e0) + +Vtable for QAbstractButton +QAbstractButton::_ZTV15QAbstractButton: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QAbstractButton) +16 QAbstractButton::metaObject +24 QAbstractButton::qt_metacast +32 QAbstractButton::qt_metacall +40 QAbstractButton::~QAbstractButton +48 QAbstractButton::~QAbstractButton +56 QAbstractButton::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QAbstractButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QAbstractButton::focusInEvent +224 QAbstractButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 __cxa_pure_virtual +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractButton::hitButton +456 QAbstractButton::checkStateSet +464 QAbstractButton::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI15QAbstractButton) +488 QAbstractButton::_ZThn16_N15QAbstractButtonD1Ev +496 QAbstractButton::_ZThn16_N15QAbstractButtonD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractButton + size=40 align=8 + base size=40 base align=8 +QAbstractButton (0x7f1dec4ebbd0) 0 + vptr=((& QAbstractButton::_ZTV15QAbstractButton) + 16u) + QWidget (0x7f1dec4ce800) 0 + primary-for QAbstractButton (0x7f1dec4ebbd0) + QObject (0x7f1dec4ebc40) 0 + primary-for QWidget (0x7f1dec4ce800) + QPaintDevice (0x7f1dec4ebcb0) 16 + vptr=((& QAbstractButton::_ZTV15QAbstractButton) + 488u) + +Vtable for QCheckBox +QCheckBox::_ZTV9QCheckBox: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QCheckBox) +16 QCheckBox::metaObject +24 QCheckBox::qt_metacast +32 QCheckBox::qt_metacall +40 QCheckBox::~QCheckBox +48 QCheckBox::~QCheckBox +56 QCheckBox::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QCheckBox::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QCheckBox::mouseMoveEvent +192 QWidget::wheelEvent +200 QAbstractButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QAbstractButton::focusInEvent +224 QAbstractButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QCheckBox::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QCheckBox::hitButton +456 QCheckBox::checkStateSet +464 QCheckBox::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI9QCheckBox) +488 QCheckBox::_ZThn16_N9QCheckBoxD1Ev +496 QCheckBox::_ZThn16_N9QCheckBoxD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QCheckBox + size=40 align=8 + base size=40 base align=8 +QCheckBox (0x7f1dec51ff50) 0 + vptr=((& QCheckBox::_ZTV9QCheckBox) + 16u) + QAbstractButton (0x7f1dec526000) 0 + primary-for QCheckBox (0x7f1dec51ff50) + QWidget (0x7f1dec527000) 0 + primary-for QAbstractButton (0x7f1dec526000) + QObject (0x7f1dec526070) 0 + primary-for QWidget (0x7f1dec527000) + QPaintDevice (0x7f1dec5260e0) 16 + vptr=((& QCheckBox::_ZTV9QCheckBox) + 488u) + +Vtable for QMenu +QMenu::_ZTV5QMenu: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QMenu) +16 QMenu::metaObject +24 QMenu::qt_metacast +32 QMenu::qt_metacall +40 QMenu::~QMenu +48 QMenu::~QMenu +56 QMenu::event +64 QObject::eventFilter +72 QMenu::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QMenu::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QMenu::mousePressEvent +168 QMenu::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QMenu::mouseMoveEvent +192 QMenu::wheelEvent +200 QMenu::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QMenu::enterEvent +240 QMenu::leaveEvent +248 QMenu::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QMenu::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QMenu::hideEvent +352 QWidget::x11Event +360 QMenu::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QMenu::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI5QMenu) +464 QMenu::_ZThn16_N5QMenuD1Ev +472 QMenu::_ZThn16_N5QMenuD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMenu + size=40 align=8 + base size=40 base align=8 +QMenu (0x7f1dec347770) 0 + vptr=((& QMenu::_ZTV5QMenu) + 16u) + QWidget (0x7f1dec527f00) 0 + primary-for QMenu (0x7f1dec347770) + QObject (0x7f1dec3477e0) 0 + primary-for QWidget (0x7f1dec527f00) + QPaintDevice (0x7f1dec347850) 16 + vptr=((& QMenu::_ZTV5QMenu) + 464u) + +Vtable for QPrintPreviewWidget +QPrintPreviewWidget::_ZTV19QPrintPreviewWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QPrintPreviewWidget) +16 QPrintPreviewWidget::metaObject +24 QPrintPreviewWidget::qt_metacast +32 QPrintPreviewWidget::qt_metacall +40 QPrintPreviewWidget::~QPrintPreviewWidget +48 QPrintPreviewWidget::~QPrintPreviewWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QPrintPreviewWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI19QPrintPreviewWidget) +464 QPrintPreviewWidget::_ZThn16_N19QPrintPreviewWidgetD1Ev +472 QPrintPreviewWidget::_ZThn16_N19QPrintPreviewWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPrintPreviewWidget + size=48 align=8 + base size=48 base align=8 +QPrintPreviewWidget (0x7f1dec3ef5b0) 0 + vptr=((& QPrintPreviewWidget::_ZTV19QPrintPreviewWidget) + 16u) + QWidget (0x7f1dec3ed680) 0 + primary-for QPrintPreviewWidget (0x7f1dec3ef5b0) + QObject (0x7f1dec3ef620) 0 + primary-for QWidget (0x7f1dec3ed680) + QPaintDevice (0x7f1dec3ef690) 16 + vptr=((& QPrintPreviewWidget::_ZTV19QPrintPreviewWidget) + 464u) + +Vtable for QWorkspace +QWorkspace::_ZTV10QWorkspace: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QWorkspace) +16 QWorkspace::metaObject +24 QWorkspace::qt_metacast +32 QWorkspace::qt_metacall +40 QWorkspace::~QWorkspace +48 QWorkspace::~QWorkspace +56 QWorkspace::event +64 QWorkspace::eventFilter +72 QObject::timerEvent +80 QWorkspace::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWorkspace::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWorkspace::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWorkspace::paintEvent +256 QWidget::moveEvent +264 QWorkspace::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWorkspace::showEvent +344 QWorkspace::hideEvent +352 QWidget::x11Event +360 QWorkspace::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI10QWorkspace) +464 QWorkspace::_ZThn16_N10QWorkspaceD1Ev +472 QWorkspace::_ZThn16_N10QWorkspaceD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWorkspace + size=40 align=8 + base size=40 base align=8 +QWorkspace (0x7f1dec413070) 0 + vptr=((& QWorkspace::_ZTV10QWorkspace) + 16u) + QWidget (0x7f1dec40f280) 0 + primary-for QWorkspace (0x7f1dec413070) + QObject (0x7f1dec4130e0) 0 + primary-for QWidget (0x7f1dec40f280) + QPaintDevice (0x7f1dec413150) 16 + vptr=((& QWorkspace::_ZTV10QWorkspace) + 464u) + +Vtable for QButtonGroup +QButtonGroup::_ZTV12QButtonGroup: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QButtonGroup) +16 QButtonGroup::metaObject +24 QButtonGroup::qt_metacast +32 QButtonGroup::qt_metacall +40 QButtonGroup::~QButtonGroup +48 QButtonGroup::~QButtonGroup +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QButtonGroup + size=16 align=8 + base size=16 base align=8 +QButtonGroup (0x7f1dec435150) 0 + vptr=((& QButtonGroup::_ZTV12QButtonGroup) + 16u) + QObject (0x7f1dec4351c0) 0 + primary-for QButtonGroup (0x7f1dec435150) + +Vtable for QSpinBox +QSpinBox::_ZTV8QSpinBox: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QSpinBox) +16 QSpinBox::metaObject +24 QSpinBox::qt_metacast +32 QSpinBox::qt_metacall +40 QSpinBox::~QSpinBox +48 QSpinBox::~QSpinBox +56 QSpinBox::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractSpinBox::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractSpinBox::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QAbstractSpinBox::wheelEvent +200 QAbstractSpinBox::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QAbstractSpinBox::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractSpinBox::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QSpinBox::validate +456 QSpinBox::fixup +464 QAbstractSpinBox::stepBy +472 QAbstractSpinBox::clear +480 QAbstractSpinBox::stepEnabled +488 QSpinBox::valueFromText +496 QSpinBox::textFromValue +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI8QSpinBox) +520 QSpinBox::_ZThn16_N8QSpinBoxD1Ev +528 QSpinBox::_ZThn16_N8QSpinBoxD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSpinBox + size=40 align=8 + base size=40 base align=8 +QSpinBox (0x7f1dec24bd90) 0 + vptr=((& QSpinBox::_ZTV8QSpinBox) + 16u) + QAbstractSpinBox (0x7f1dec24be00) 0 + primary-for QSpinBox (0x7f1dec24bd90) + QWidget (0x7f1dec247800) 0 + primary-for QAbstractSpinBox (0x7f1dec24be00) + QObject (0x7f1dec24be70) 0 + primary-for QWidget (0x7f1dec247800) + QPaintDevice (0x7f1dec24bee0) 16 + vptr=((& QSpinBox::_ZTV8QSpinBox) + 520u) + +Vtable for QDoubleSpinBox +QDoubleSpinBox::_ZTV14QDoubleSpinBox: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QDoubleSpinBox) +16 QDoubleSpinBox::metaObject +24 QDoubleSpinBox::qt_metacast +32 QDoubleSpinBox::qt_metacall +40 QDoubleSpinBox::~QDoubleSpinBox +48 QDoubleSpinBox::~QDoubleSpinBox +56 QAbstractSpinBox::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractSpinBox::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractSpinBox::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QAbstractSpinBox::wheelEvent +200 QAbstractSpinBox::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QAbstractSpinBox::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractSpinBox::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDoubleSpinBox::validate +456 QDoubleSpinBox::fixup +464 QAbstractSpinBox::stepBy +472 QAbstractSpinBox::clear +480 QAbstractSpinBox::stepEnabled +488 QDoubleSpinBox::valueFromText +496 QDoubleSpinBox::textFromValue +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI14QDoubleSpinBox) +520 QDoubleSpinBox::_ZThn16_N14QDoubleSpinBoxD1Ev +528 QDoubleSpinBox::_ZThn16_N14QDoubleSpinBoxD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDoubleSpinBox + size=40 align=8 + base size=40 base align=8 +QDoubleSpinBox (0x7f1dec274700) 0 + vptr=((& QDoubleSpinBox::_ZTV14QDoubleSpinBox) + 16u) + QAbstractSpinBox (0x7f1dec274770) 0 + primary-for QDoubleSpinBox (0x7f1dec274700) + QWidget (0x7f1dec271880) 0 + primary-for QAbstractSpinBox (0x7f1dec274770) + QObject (0x7f1dec2747e0) 0 + primary-for QWidget (0x7f1dec271880) + QPaintDevice (0x7f1dec274850) 16 + vptr=((& QDoubleSpinBox::_ZTV14QDoubleSpinBox) + 520u) + +Vtable for QLCDNumber +QLCDNumber::_ZTV10QLCDNumber: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QLCDNumber) +16 QLCDNumber::metaObject +24 QLCDNumber::qt_metacast +32 QLCDNumber::qt_metacall +40 QLCDNumber::~QLCDNumber +48 QLCDNumber::~QLCDNumber +56 QLCDNumber::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QLCDNumber::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QLCDNumber::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI10QLCDNumber) +464 QLCDNumber::_ZThn16_N10QLCDNumberD1Ev +472 QLCDNumber::_ZThn16_N10QLCDNumberD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QLCDNumber + size=40 align=8 + base size=40 base align=8 +QLCDNumber (0x7f1dec2951c0) 0 + vptr=((& QLCDNumber::_ZTV10QLCDNumber) + 16u) + QFrame (0x7f1dec295230) 0 + primary-for QLCDNumber (0x7f1dec2951c0) + QWidget (0x7f1dec294180) 0 + primary-for QFrame (0x7f1dec295230) + QObject (0x7f1dec2952a0) 0 + primary-for QWidget (0x7f1dec294180) + QPaintDevice (0x7f1dec295310) 16 + vptr=((& QLCDNumber::_ZTV10QLCDNumber) + 464u) + +Vtable for QStackedWidget +QStackedWidget::_ZTV14QStackedWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QStackedWidget) +16 QStackedWidget::metaObject +24 QStackedWidget::qt_metacast +32 QStackedWidget::qt_metacall +40 QStackedWidget::~QStackedWidget +48 QStackedWidget::~QStackedWidget +56 QStackedWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QFrame::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFrame::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI14QStackedWidget) +464 QStackedWidget::_ZThn16_N14QStackedWidgetD1Ev +472 QStackedWidget::_ZThn16_N14QStackedWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QStackedWidget + size=40 align=8 + base size=40 base align=8 +QStackedWidget (0x7f1dec2b6d20) 0 + vptr=((& QStackedWidget::_ZTV14QStackedWidget) + 16u) + QFrame (0x7f1dec2b6d90) 0 + primary-for QStackedWidget (0x7f1dec2b6d20) + QWidget (0x7f1dec2bb200) 0 + primary-for QFrame (0x7f1dec2b6d90) + QObject (0x7f1dec2b6e00) 0 + primary-for QWidget (0x7f1dec2bb200) + QPaintDevice (0x7f1dec2b6e70) 16 + vptr=((& QStackedWidget::_ZTV14QStackedWidget) + 464u) + +Vtable for QMdiArea +QMdiArea::_ZTV8QMdiArea: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QMdiArea) +16 QMdiArea::metaObject +24 QMdiArea::qt_metacast +32 QMdiArea::qt_metacall +40 QMdiArea::~QMdiArea +48 QMdiArea::~QMdiArea +56 QMdiArea::event +64 QMdiArea::eventFilter +72 QMdiArea::timerEvent +80 QMdiArea::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QMdiArea::sizeHint +136 QMdiArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractScrollArea::mousePressEvent +168 QAbstractScrollArea::mouseReleaseEvent +176 QAbstractScrollArea::mouseDoubleClickEvent +184 QAbstractScrollArea::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractScrollArea::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QMdiArea::paintEvent +256 QWidget::moveEvent +264 QMdiArea::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractScrollArea::dragEnterEvent +312 QAbstractScrollArea::dragMoveEvent +320 QAbstractScrollArea::dragLeaveEvent +328 QAbstractScrollArea::dropEvent +336 QMdiArea::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QMdiArea::viewportEvent +456 QMdiArea::scrollContentsBy +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI8QMdiArea) +480 QMdiArea::_ZThn16_N8QMdiAreaD1Ev +488 QMdiArea::_ZThn16_N8QMdiAreaD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMdiArea + size=40 align=8 + base size=40 base align=8 +QMdiArea (0x7f1dec2d2bd0) 0 + vptr=((& QMdiArea::_ZTV8QMdiArea) + 16u) + QAbstractScrollArea (0x7f1dec2d2c40) 0 + primary-for QMdiArea (0x7f1dec2d2bd0) + QFrame (0x7f1dec2d2cb0) 0 + primary-for QAbstractScrollArea (0x7f1dec2d2c40) + QWidget (0x7f1dec2bbb00) 0 + primary-for QFrame (0x7f1dec2d2cb0) + QObject (0x7f1dec2d2d20) 0 + primary-for QWidget (0x7f1dec2bbb00) + QPaintDevice (0x7f1dec2d2d90) 16 + vptr=((& QMdiArea::_ZTV8QMdiArea) + 480u) + +Vtable for QPushButton +QPushButton::_ZTV11QPushButton: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QPushButton) +16 QPushButton::metaObject +24 QPushButton::qt_metacast +32 QPushButton::qt_metacall +40 QPushButton::~QPushButton +48 QPushButton::~QPushButton +56 QPushButton::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QPushButton::sizeHint +136 QPushButton::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QPushButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QPushButton::focusInEvent +224 QPushButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QPushButton::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractButton::hitButton +456 QAbstractButton::checkStateSet +464 QAbstractButton::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11QPushButton) +488 QPushButton::_ZThn16_N11QPushButtonD1Ev +496 QPushButton::_ZThn16_N11QPushButtonD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPushButton + size=40 align=8 + base size=40 base align=8 +QPushButton (0x7f1dec147150) 0 + vptr=((& QPushButton::_ZTV11QPushButton) + 16u) + QAbstractButton (0x7f1dec1471c0) 0 + primary-for QPushButton (0x7f1dec147150) + QWidget (0x7f1dec2f7d00) 0 + primary-for QAbstractButton (0x7f1dec1471c0) + QObject (0x7f1dec147230) 0 + primary-for QWidget (0x7f1dec2f7d00) + QPaintDevice (0x7f1dec1472a0) 16 + vptr=((& QPushButton::_ZTV11QPushButton) + 488u) + +Vtable for QMdiSubWindow +QMdiSubWindow::_ZTV13QMdiSubWindow: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QMdiSubWindow) +16 QMdiSubWindow::metaObject +24 QMdiSubWindow::qt_metacast +32 QMdiSubWindow::qt_metacall +40 QMdiSubWindow::~QMdiSubWindow +48 QMdiSubWindow::~QMdiSubWindow +56 QMdiSubWindow::event +64 QMdiSubWindow::eventFilter +72 QMdiSubWindow::timerEvent +80 QMdiSubWindow::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QMdiSubWindow::sizeHint +136 QMdiSubWindow::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QMdiSubWindow::mousePressEvent +168 QMdiSubWindow::mouseReleaseEvent +176 QMdiSubWindow::mouseDoubleClickEvent +184 QMdiSubWindow::mouseMoveEvent +192 QWidget::wheelEvent +200 QMdiSubWindow::keyPressEvent +208 QWidget::keyReleaseEvent +216 QMdiSubWindow::focusInEvent +224 QMdiSubWindow::focusOutEvent +232 QWidget::enterEvent +240 QMdiSubWindow::leaveEvent +248 QMdiSubWindow::paintEvent +256 QMdiSubWindow::moveEvent +264 QMdiSubWindow::resizeEvent +272 QMdiSubWindow::closeEvent +280 QMdiSubWindow::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QMdiSubWindow::showEvent +344 QMdiSubWindow::hideEvent +352 QWidget::x11Event +360 QMdiSubWindow::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI13QMdiSubWindow) +464 QMdiSubWindow::_ZThn16_N13QMdiSubWindowD1Ev +472 QMdiSubWindow::_ZThn16_N13QMdiSubWindowD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMdiSubWindow + size=40 align=8 + base size=40 base align=8 +QMdiSubWindow (0x7f1dec16ba80) 0 + vptr=((& QMdiSubWindow::_ZTV13QMdiSubWindow) + 16u) + QWidget (0x7f1dec162c00) 0 + primary-for QMdiSubWindow (0x7f1dec16ba80) + QObject (0x7f1dec16baf0) 0 + primary-for QWidget (0x7f1dec162c00) + QPaintDevice (0x7f1dec16bb60) 16 + vptr=((& QMdiSubWindow::_ZTV13QMdiSubWindow) + 464u) + +Vtable for QSplashScreen +QSplashScreen::_ZTV13QSplashScreen: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSplashScreen) +16 QSplashScreen::metaObject +24 QSplashScreen::qt_metacast +32 QSplashScreen::qt_metacall +40 QSplashScreen::~QSplashScreen +48 QSplashScreen::~QSplashScreen +56 QSplashScreen::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QSplashScreen::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QSplashScreen::drawContents +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI13QSplashScreen) +472 QSplashScreen::_ZThn16_N13QSplashScreenD1Ev +480 QSplashScreen::_ZThn16_N13QSplashScreenD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSplashScreen + size=40 align=8 + base size=40 base align=8 +QSplashScreen (0x7f1dec1be930) 0 + vptr=((& QSplashScreen::_ZTV13QSplashScreen) + 16u) + QWidget (0x7f1dec18cd00) 0 + primary-for QSplashScreen (0x7f1dec1be930) + QObject (0x7f1dec1be9a0) 0 + primary-for QWidget (0x7f1dec18cd00) + QPaintDevice (0x7f1dec1bea10) 16 + vptr=((& QSplashScreen::_ZTV13QSplashScreen) + 472u) + +Vtable for QDateTimeEdit +QDateTimeEdit::_ZTV13QDateTimeEdit: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QDateTimeEdit) +16 QDateTimeEdit::metaObject +24 QDateTimeEdit::qt_metacast +32 QDateTimeEdit::qt_metacall +40 QDateTimeEdit::~QDateTimeEdit +48 QDateTimeEdit::~QDateTimeEdit +56 QDateTimeEdit::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QDateTimeEdit::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QDateTimeEdit::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QDateTimeEdit::wheelEvent +200 QDateTimeEdit::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QDateTimeEdit::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QDateTimeEdit::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QDateTimeEdit::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDateTimeEdit::validate +456 QDateTimeEdit::fixup +464 QDateTimeEdit::stepBy +472 QDateTimeEdit::clear +480 QDateTimeEdit::stepEnabled +488 QDateTimeEdit::dateTimeFromText +496 QDateTimeEdit::textFromDateTime +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI13QDateTimeEdit) +520 QDateTimeEdit::_ZThn16_N13QDateTimeEditD1Ev +528 QDateTimeEdit::_ZThn16_N13QDateTimeEditD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDateTimeEdit + size=40 align=8 + base size=40 base align=8 +QDateTimeEdit (0x7f1dec1f9a10) 0 + vptr=((& QDateTimeEdit::_ZTV13QDateTimeEdit) + 16u) + QAbstractSpinBox (0x7f1dec1f9a80) 0 + primary-for QDateTimeEdit (0x7f1dec1f9a10) + QWidget (0x7f1dec1f2880) 0 + primary-for QAbstractSpinBox (0x7f1dec1f9a80) + QObject (0x7f1dec1f9af0) 0 + primary-for QWidget (0x7f1dec1f2880) + QPaintDevice (0x7f1dec1f9b60) 16 + vptr=((& QDateTimeEdit::_ZTV13QDateTimeEdit) + 520u) + +Vtable for QTimeEdit +QTimeEdit::_ZTV9QTimeEdit: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTimeEdit) +16 QTimeEdit::metaObject +24 QTimeEdit::qt_metacast +32 QTimeEdit::qt_metacall +40 QTimeEdit::~QTimeEdit +48 QTimeEdit::~QTimeEdit +56 QDateTimeEdit::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QDateTimeEdit::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QDateTimeEdit::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QDateTimeEdit::wheelEvent +200 QDateTimeEdit::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QDateTimeEdit::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QDateTimeEdit::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QDateTimeEdit::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDateTimeEdit::validate +456 QDateTimeEdit::fixup +464 QDateTimeEdit::stepBy +472 QDateTimeEdit::clear +480 QDateTimeEdit::stepEnabled +488 QDateTimeEdit::dateTimeFromText +496 QDateTimeEdit::textFromDateTime +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI9QTimeEdit) +520 QTimeEdit::_ZThn16_N9QTimeEditD1Ev +528 QTimeEdit::_ZThn16_N9QTimeEditD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTimeEdit + size=40 align=8 + base size=40 base align=8 +QTimeEdit (0x7f1dec229930) 0 + vptr=((& QTimeEdit::_ZTV9QTimeEdit) + 16u) + QDateTimeEdit (0x7f1dec2299a0) 0 + primary-for QTimeEdit (0x7f1dec229930) + QAbstractSpinBox (0x7f1dec229a10) 0 + primary-for QDateTimeEdit (0x7f1dec2299a0) + QWidget (0x7f1dec221700) 0 + primary-for QAbstractSpinBox (0x7f1dec229a10) + QObject (0x7f1dec229a80) 0 + primary-for QWidget (0x7f1dec221700) + QPaintDevice (0x7f1dec229af0) 16 + vptr=((& QTimeEdit::_ZTV9QTimeEdit) + 520u) + +Vtable for QDateEdit +QDateEdit::_ZTV9QDateEdit: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QDateEdit) +16 QDateEdit::metaObject +24 QDateEdit::qt_metacast +32 QDateEdit::qt_metacall +40 QDateEdit::~QDateEdit +48 QDateEdit::~QDateEdit +56 QDateTimeEdit::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QDateTimeEdit::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QDateTimeEdit::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QDateTimeEdit::wheelEvent +200 QDateTimeEdit::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QDateTimeEdit::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QDateTimeEdit::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QDateTimeEdit::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDateTimeEdit::validate +456 QDateTimeEdit::fixup +464 QDateTimeEdit::stepBy +472 QDateTimeEdit::clear +480 QDateTimeEdit::stepEnabled +488 QDateTimeEdit::dateTimeFromText +496 QDateTimeEdit::textFromDateTime +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI9QDateEdit) +520 QDateEdit::_ZThn16_N9QDateEditD1Ev +528 QDateEdit::_ZThn16_N9QDateEditD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDateEdit + size=40 align=8 + base size=40 base align=8 +QDateEdit (0x7f1dec23ba10) 0 + vptr=((& QDateEdit::_ZTV9QDateEdit) + 16u) + QDateTimeEdit (0x7f1dec23ba80) 0 + primary-for QDateEdit (0x7f1dec23ba10) + QAbstractSpinBox (0x7f1dec23baf0) 0 + primary-for QDateTimeEdit (0x7f1dec23ba80) + QWidget (0x7f1dec221e00) 0 + primary-for QAbstractSpinBox (0x7f1dec23baf0) + QObject (0x7f1dec23bb60) 0 + primary-for QWidget (0x7f1dec221e00) + QPaintDevice (0x7f1dec23bbd0) 16 + vptr=((& QDateEdit::_ZTV9QDateEdit) + 520u) + +Vtable for QLabel +QLabel::_ZTV6QLabel: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QLabel) +16 QLabel::metaObject +24 QLabel::qt_metacast +32 QLabel::qt_metacall +40 QLabel::~QLabel +48 QLabel::~QLabel +56 QLabel::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QLabel::sizeHint +136 QLabel::minimumSizeHint +144 QLabel::heightForWidth +152 QWidget::paintEngine +160 QLabel::mousePressEvent +168 QLabel::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QLabel::mouseMoveEvent +192 QWidget::wheelEvent +200 QLabel::keyPressEvent +208 QWidget::keyReleaseEvent +216 QLabel::focusInEvent +224 QLabel::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QLabel::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QLabel::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QLabel::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QLabel::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI6QLabel) +464 QLabel::_ZThn16_N6QLabelD1Ev +472 QLabel::_ZThn16_N6QLabelD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QLabel + size=40 align=8 + base size=40 base align=8 +QLabel (0x7f1dec0817e0) 0 + vptr=((& QLabel::_ZTV6QLabel) + 16u) + QFrame (0x7f1dec081850) 0 + primary-for QLabel (0x7f1dec0817e0) + QWidget (0x7f1dec050a80) 0 + primary-for QFrame (0x7f1dec081850) + QObject (0x7f1dec0818c0) 0 + primary-for QWidget (0x7f1dec050a80) + QPaintDevice (0x7f1dec081930) 16 + vptr=((& QLabel::_ZTV6QLabel) + 464u) + +Vtable for QDockWidget +QDockWidget::_ZTV11QDockWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QDockWidget) +16 QDockWidget::metaObject +24 QDockWidget::qt_metacast +32 QDockWidget::qt_metacall +40 QDockWidget::~QDockWidget +48 QDockWidget::~QDockWidget +56 QDockWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QDockWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QDockWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QDockWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI11QDockWidget) +464 QDockWidget::_ZThn16_N11QDockWidgetD1Ev +472 QDockWidget::_ZThn16_N11QDockWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDockWidget + size=40 align=8 + base size=40 base align=8 +QDockWidget (0x7f1dec0ca930) 0 + vptr=((& QDockWidget::_ZTV11QDockWidget) + 16u) + QWidget (0x7f1dec0c6580) 0 + primary-for QDockWidget (0x7f1dec0ca930) + QObject (0x7f1dec0ca9a0) 0 + primary-for QWidget (0x7f1dec0c6580) + QPaintDevice (0x7f1dec0caa10) 16 + vptr=((& QDockWidget::_ZTV11QDockWidget) + 464u) + +Vtable for QGroupBox +QGroupBox::_ZTV9QGroupBox: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QGroupBox) +16 QGroupBox::metaObject +24 QGroupBox::qt_metacast +32 QGroupBox::qt_metacall +40 QGroupBox::~QGroupBox +48 QGroupBox::~QGroupBox +56 QGroupBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QGroupBox::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QGroupBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QGroupBox::mousePressEvent +168 QGroupBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QGroupBox::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QGroupBox::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QGroupBox::paintEvent +256 QWidget::moveEvent +264 QGroupBox::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QGroupBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI9QGroupBox) +464 QGroupBox::_ZThn16_N9QGroupBoxD1Ev +472 QGroupBox::_ZThn16_N9QGroupBoxD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QGroupBox + size=40 align=8 + base size=40 base align=8 +QGroupBox (0x7f1debf46380) 0 + vptr=((& QGroupBox::_ZTV9QGroupBox) + 16u) + QWidget (0x7f1dec0eec80) 0 + primary-for QGroupBox (0x7f1debf46380) + QObject (0x7f1debf463f0) 0 + primary-for QWidget (0x7f1dec0eec80) + QPaintDevice (0x7f1debf46460) 16 + vptr=((& QGroupBox::_ZTV9QGroupBox) + 464u) + +Vtable for QDialogButtonBox +QDialogButtonBox::_ZTV16QDialogButtonBox: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QDialogButtonBox) +16 QDialogButtonBox::metaObject +24 QDialogButtonBox::qt_metacast +32 QDialogButtonBox::qt_metacall +40 QDialogButtonBox::~QDialogButtonBox +48 QDialogButtonBox::~QDialogButtonBox +56 QDialogButtonBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QDialogButtonBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI16QDialogButtonBox) +464 QDialogButtonBox::_ZThn16_N16QDialogButtonBoxD1Ev +472 QDialogButtonBox::_ZThn16_N16QDialogButtonBoxD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDialogButtonBox + size=40 align=8 + base size=40 base align=8 +QDialogButtonBox (0x7f1debf67000) 0 + vptr=((& QDialogButtonBox::_ZTV16QDialogButtonBox) + 16u) + QWidget (0x7f1debf5f580) 0 + primary-for QDialogButtonBox (0x7f1debf67000) + QObject (0x7f1debf67070) 0 + primary-for QWidget (0x7f1debf5f580) + QPaintDevice (0x7f1debf670e0) 16 + vptr=((& QDialogButtonBox::_ZTV16QDialogButtonBox) + 464u) + +Vtable for QMainWindow +QMainWindow::_ZTV11QMainWindow: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMainWindow) +16 QMainWindow::metaObject +24 QMainWindow::qt_metacast +32 QMainWindow::qt_metacall +40 QMainWindow::~QMainWindow +48 QMainWindow::~QMainWindow +56 QMainWindow::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QMainWindow::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QMainWindow::createPopupMenu +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI11QMainWindow) +472 QMainWindow::_ZThn16_N11QMainWindowD1Ev +480 QMainWindow::_ZThn16_N11QMainWindowD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMainWindow + size=40 align=8 + base size=40 base align=8 +QMainWindow (0x7f1debfd84d0) 0 + vptr=((& QMainWindow::_ZTV11QMainWindow) + 16u) + QWidget (0x7f1debf8f600) 0 + primary-for QMainWindow (0x7f1debfd84d0) + QObject (0x7f1debfd8540) 0 + primary-for QWidget (0x7f1debf8f600) + QPaintDevice (0x7f1debfd85b0) 16 + vptr=((& QMainWindow::_ZTV11QMainWindow) + 472u) + +Class QTextEdit::ExtraSelection + size=24 align=8 + base size=24 base align=8 +QTextEdit::ExtraSelection (0x7f1debe5b770) 0 + +Vtable for QTextEdit +QTextEdit::_ZTV9QTextEdit: 69u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTextEdit) +16 QTextEdit::metaObject +24 QTextEdit::qt_metacast +32 QTextEdit::qt_metacall +40 QTextEdit::~QTextEdit +48 QTextEdit::~QTextEdit +56 QTextEdit::event +64 QObject::eventFilter +72 QTextEdit::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTextEdit::mousePressEvent +168 QTextEdit::mouseReleaseEvent +176 QTextEdit::mouseDoubleClickEvent +184 QTextEdit::mouseMoveEvent +192 QTextEdit::wheelEvent +200 QTextEdit::keyPressEvent +208 QTextEdit::keyReleaseEvent +216 QTextEdit::focusInEvent +224 QTextEdit::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTextEdit::paintEvent +256 QWidget::moveEvent +264 QTextEdit::resizeEvent +272 QWidget::closeEvent +280 QTextEdit::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QTextEdit::dragEnterEvent +312 QTextEdit::dragMoveEvent +320 QTextEdit::dragLeaveEvent +328 QTextEdit::dropEvent +336 QTextEdit::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QTextEdit::changeEvent +368 QWidget::metric +376 QTextEdit::inputMethodEvent +384 QTextEdit::inputMethodQuery +392 QTextEdit::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QTextEdit::scrollContentsBy +464 QTextEdit::loadResource +472 QTextEdit::createMimeDataFromSelection +480 QTextEdit::canInsertFromMimeData +488 QTextEdit::insertFromMimeData +496 (int (*)(...))-0x00000000000000010 +504 (int (*)(...))(& _ZTI9QTextEdit) +512 QTextEdit::_ZThn16_N9QTextEditD1Ev +520 QTextEdit::_ZThn16_N9QTextEditD0Ev +528 QWidget::_ZThn16_NK7QWidget7devTypeEv +536 QWidget::_ZThn16_NK7QWidget11paintEngineEv +544 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTextEdit + size=40 align=8 + base size=40 base align=8 +QTextEdit (0x7f1dec0327e0) 0 + vptr=((& QTextEdit::_ZTV9QTextEdit) + 16u) + QAbstractScrollArea (0x7f1dec032850) 0 + primary-for QTextEdit (0x7f1dec0327e0) + QFrame (0x7f1dec0328c0) 0 + primary-for QAbstractScrollArea (0x7f1dec032850) + QWidget (0x7f1dec005700) 0 + primary-for QFrame (0x7f1dec0328c0) + QObject (0x7f1dec032930) 0 + primary-for QWidget (0x7f1dec005700) + QPaintDevice (0x7f1dec0329a0) 16 + vptr=((& QTextEdit::_ZTV9QTextEdit) + 512u) + +Vtable for QPlainTextEdit +QPlainTextEdit::_ZTV14QPlainTextEdit: 69u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QPlainTextEdit) +16 QPlainTextEdit::metaObject +24 QPlainTextEdit::qt_metacast +32 QPlainTextEdit::qt_metacall +40 QPlainTextEdit::~QPlainTextEdit +48 QPlainTextEdit::~QPlainTextEdit +56 QPlainTextEdit::event +64 QObject::eventFilter +72 QPlainTextEdit::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QPlainTextEdit::mousePressEvent +168 QPlainTextEdit::mouseReleaseEvent +176 QPlainTextEdit::mouseDoubleClickEvent +184 QPlainTextEdit::mouseMoveEvent +192 QPlainTextEdit::wheelEvent +200 QPlainTextEdit::keyPressEvent +208 QPlainTextEdit::keyReleaseEvent +216 QPlainTextEdit::focusInEvent +224 QPlainTextEdit::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QPlainTextEdit::paintEvent +256 QWidget::moveEvent +264 QPlainTextEdit::resizeEvent +272 QWidget::closeEvent +280 QPlainTextEdit::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QPlainTextEdit::dragEnterEvent +312 QPlainTextEdit::dragMoveEvent +320 QPlainTextEdit::dragLeaveEvent +328 QPlainTextEdit::dropEvent +336 QPlainTextEdit::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QPlainTextEdit::changeEvent +368 QWidget::metric +376 QPlainTextEdit::inputMethodEvent +384 QPlainTextEdit::inputMethodQuery +392 QPlainTextEdit::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QPlainTextEdit::scrollContentsBy +464 QPlainTextEdit::loadResource +472 QPlainTextEdit::createMimeDataFromSelection +480 QPlainTextEdit::canInsertFromMimeData +488 QPlainTextEdit::insertFromMimeData +496 (int (*)(...))-0x00000000000000010 +504 (int (*)(...))(& _ZTI14QPlainTextEdit) +512 QPlainTextEdit::_ZThn16_N14QPlainTextEditD1Ev +520 QPlainTextEdit::_ZThn16_N14QPlainTextEditD0Ev +528 QWidget::_ZThn16_NK7QWidget7devTypeEv +536 QWidget::_ZThn16_NK7QWidget11paintEngineEv +544 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPlainTextEdit + size=40 align=8 + base size=40 base align=8 +QPlainTextEdit (0x7f1debef2930) 0 + vptr=((& QPlainTextEdit::_ZTV14QPlainTextEdit) + 16u) + QAbstractScrollArea (0x7f1debef29a0) 0 + primary-for QPlainTextEdit (0x7f1debef2930) + QFrame (0x7f1debef2a10) 0 + primary-for QAbstractScrollArea (0x7f1debef29a0) + QWidget (0x7f1debec4f00) 0 + primary-for QFrame (0x7f1debef2a10) + QObject (0x7f1debef2a80) 0 + primary-for QWidget (0x7f1debec4f00) + QPaintDevice (0x7f1debef2af0) 16 + vptr=((& QPlainTextEdit::_ZTV14QPlainTextEdit) + 512u) + +Vtable for QPlainTextDocumentLayout +QPlainTextDocumentLayout::_ZTV24QPlainTextDocumentLayout: 24u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QPlainTextDocumentLayout) +16 QPlainTextDocumentLayout::metaObject +24 QPlainTextDocumentLayout::qt_metacast +32 QPlainTextDocumentLayout::qt_metacall +40 QPlainTextDocumentLayout::~QPlainTextDocumentLayout +48 QPlainTextDocumentLayout::~QPlainTextDocumentLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QPlainTextDocumentLayout::draw +120 QPlainTextDocumentLayout::hitTest +128 QPlainTextDocumentLayout::pageCount +136 QPlainTextDocumentLayout::documentSize +144 QPlainTextDocumentLayout::frameBoundingRect +152 QPlainTextDocumentLayout::blockBoundingRect +160 QPlainTextDocumentLayout::documentChanged +168 QAbstractTextDocumentLayout::resizeInlineObject +176 QAbstractTextDocumentLayout::positionInlineObject +184 QAbstractTextDocumentLayout::drawInlineObject + +Class QPlainTextDocumentLayout + size=16 align=8 + base size=16 base align=8 +QPlainTextDocumentLayout (0x7f1debd51700) 0 + vptr=((& QPlainTextDocumentLayout::_ZTV24QPlainTextDocumentLayout) + 16u) + QAbstractTextDocumentLayout (0x7f1debd51770) 0 + primary-for QPlainTextDocumentLayout (0x7f1debd51700) + QObject (0x7f1debd517e0) 0 + primary-for QAbstractTextDocumentLayout (0x7f1debd51770) + +Vtable for QProgressBar +QProgressBar::_ZTV12QProgressBar: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QProgressBar) +16 QProgressBar::metaObject +24 QProgressBar::qt_metacast +32 QProgressBar::qt_metacall +40 QProgressBar::~QProgressBar +48 QProgressBar::~QProgressBar +56 QProgressBar::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QProgressBar::sizeHint +136 QProgressBar::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QProgressBar::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QProgressBar::text +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI12QProgressBar) +472 QProgressBar::_ZThn16_N12QProgressBarD1Ev +480 QProgressBar::_ZThn16_N12QProgressBarD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QProgressBar + size=40 align=8 + base size=40 base align=8 +QProgressBar (0x7f1debd65bd0) 0 + vptr=((& QProgressBar::_ZTV12QProgressBar) + 16u) + QWidget (0x7f1debd50f00) 0 + primary-for QProgressBar (0x7f1debd65bd0) + QObject (0x7f1debd65c40) 0 + primary-for QWidget (0x7f1debd50f00) + QPaintDevice (0x7f1debd65cb0) 16 + vptr=((& QProgressBar::_ZTV12QProgressBar) + 472u) + +Vtable for QScrollBar +QScrollBar::_ZTV10QScrollBar: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QScrollBar) +16 QScrollBar::metaObject +24 QScrollBar::qt_metacast +32 QScrollBar::qt_metacall +40 QScrollBar::~QScrollBar +48 QScrollBar::~QScrollBar +56 QScrollBar::event +64 QObject::eventFilter +72 QAbstractSlider::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QScrollBar::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QScrollBar::mousePressEvent +168 QScrollBar::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QScrollBar::mouseMoveEvent +192 QAbstractSlider::wheelEvent +200 QAbstractSlider::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QScrollBar::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QScrollBar::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QScrollBar::hideEvent +352 QWidget::x11Event +360 QAbstractSlider::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QScrollBar::sliderChange +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI10QScrollBar) +472 QScrollBar::_ZThn16_N10QScrollBarD1Ev +480 QScrollBar::_ZThn16_N10QScrollBarD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QScrollBar + size=40 align=8 + base size=40 base align=8 +QScrollBar (0x7f1debd8aa10) 0 + vptr=((& QScrollBar::_ZTV10QScrollBar) + 16u) + QAbstractSlider (0x7f1debd8aa80) 0 + primary-for QScrollBar (0x7f1debd8aa10) + QWidget (0x7f1debd6d900) 0 + primary-for QAbstractSlider (0x7f1debd8aa80) + QObject (0x7f1debd8aaf0) 0 + primary-for QWidget (0x7f1debd6d900) + QPaintDevice (0x7f1debd8ab60) 16 + vptr=((& QScrollBar::_ZTV10QScrollBar) + 472u) + +Vtable for QSizeGrip +QSizeGrip::_ZTV9QSizeGrip: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QSizeGrip) +16 QSizeGrip::metaObject +24 QSizeGrip::qt_metacast +32 QSizeGrip::qt_metacall +40 QSizeGrip::~QSizeGrip +48 QSizeGrip::~QSizeGrip +56 QSizeGrip::event +64 QSizeGrip::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QSizeGrip::setVisible +128 QSizeGrip::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QSizeGrip::mousePressEvent +168 QSizeGrip::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QSizeGrip::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QSizeGrip::paintEvent +256 QSizeGrip::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QSizeGrip::showEvent +344 QSizeGrip::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI9QSizeGrip) +464 QSizeGrip::_ZThn16_N9QSizeGripD1Ev +472 QSizeGrip::_ZThn16_N9QSizeGripD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSizeGrip + size=40 align=8 + base size=40 base align=8 +QSizeGrip (0x7f1debdaab60) 0 + vptr=((& QSizeGrip::_ZTV9QSizeGrip) + 16u) + QWidget (0x7f1debdad380) 0 + primary-for QSizeGrip (0x7f1debdaab60) + QObject (0x7f1debdaabd0) 0 + primary-for QWidget (0x7f1debdad380) + QPaintDevice (0x7f1debdaac40) 16 + vptr=((& QSizeGrip::_ZTV9QSizeGrip) + 464u) + +Vtable for QTextBrowser +QTextBrowser::_ZTV12QTextBrowser: 74u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextBrowser) +16 QTextBrowser::metaObject +24 QTextBrowser::qt_metacast +32 QTextBrowser::qt_metacall +40 QTextBrowser::~QTextBrowser +48 QTextBrowser::~QTextBrowser +56 QTextBrowser::event +64 QObject::eventFilter +72 QTextEdit::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTextBrowser::mousePressEvent +168 QTextBrowser::mouseReleaseEvent +176 QTextEdit::mouseDoubleClickEvent +184 QTextBrowser::mouseMoveEvent +192 QTextEdit::wheelEvent +200 QTextBrowser::keyPressEvent +208 QTextEdit::keyReleaseEvent +216 QTextEdit::focusInEvent +224 QTextBrowser::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTextBrowser::paintEvent +256 QWidget::moveEvent +264 QTextEdit::resizeEvent +272 QWidget::closeEvent +280 QTextEdit::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QTextEdit::dragEnterEvent +312 QTextEdit::dragMoveEvent +320 QTextEdit::dragLeaveEvent +328 QTextEdit::dropEvent +336 QTextEdit::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QTextEdit::changeEvent +368 QWidget::metric +376 QTextEdit::inputMethodEvent +384 QTextEdit::inputMethodQuery +392 QTextBrowser::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QTextEdit::scrollContentsBy +464 QTextBrowser::loadResource +472 QTextEdit::createMimeDataFromSelection +480 QTextEdit::canInsertFromMimeData +488 QTextEdit::insertFromMimeData +496 QTextBrowser::setSource +504 QTextBrowser::backward +512 QTextBrowser::forward +520 QTextBrowser::home +528 QTextBrowser::reload +536 (int (*)(...))-0x00000000000000010 +544 (int (*)(...))(& _ZTI12QTextBrowser) +552 QTextBrowser::_ZThn16_N12QTextBrowserD1Ev +560 QTextBrowser::_ZThn16_N12QTextBrowserD0Ev +568 QWidget::_ZThn16_NK7QWidget7devTypeEv +576 QWidget::_ZThn16_NK7QWidget11paintEngineEv +584 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTextBrowser + size=40 align=8 + base size=40 base align=8 +QTextBrowser (0x7f1debdc8690) 0 + vptr=((& QTextBrowser::_ZTV12QTextBrowser) + 16u) + QTextEdit (0x7f1debdc8700) 0 + primary-for QTextBrowser (0x7f1debdc8690) + QAbstractScrollArea (0x7f1debdc8770) 0 + primary-for QTextEdit (0x7f1debdc8700) + QFrame (0x7f1debdc87e0) 0 + primary-for QAbstractScrollArea (0x7f1debdc8770) + QWidget (0x7f1debdadc80) 0 + primary-for QFrame (0x7f1debdc87e0) + QObject (0x7f1debdc8850) 0 + primary-for QWidget (0x7f1debdadc80) + QPaintDevice (0x7f1debdc88c0) 16 + vptr=((& QTextBrowser::_ZTV12QTextBrowser) + 552u) + +Vtable for QStatusBar +QStatusBar::_ZTV10QStatusBar: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QStatusBar) +16 QStatusBar::metaObject +24 QStatusBar::qt_metacast +32 QStatusBar::qt_metacall +40 QStatusBar::~QStatusBar +48 QStatusBar::~QStatusBar +56 QStatusBar::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QStatusBar::paintEvent +256 QWidget::moveEvent +264 QStatusBar::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QStatusBar::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI10QStatusBar) +464 QStatusBar::_ZThn16_N10QStatusBarD1Ev +472 QStatusBar::_ZThn16_N10QStatusBarD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QStatusBar + size=40 align=8 + base size=40 base align=8 +QStatusBar (0x7f1debdee2a0) 0 + vptr=((& QStatusBar::_ZTV10QStatusBar) + 16u) + QWidget (0x7f1debde5580) 0 + primary-for QStatusBar (0x7f1debdee2a0) + QObject (0x7f1debdee310) 0 + primary-for QWidget (0x7f1debde5580) + QPaintDevice (0x7f1debdee380) 16 + vptr=((& QStatusBar::_ZTV10QStatusBar) + 464u) + +Vtable for QToolButton +QToolButton::_ZTV11QToolButton: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QToolButton) +16 QToolButton::metaObject +24 QToolButton::qt_metacast +32 QToolButton::qt_metacall +40 QToolButton::~QToolButton +48 QToolButton::~QToolButton +56 QToolButton::event +64 QObject::eventFilter +72 QToolButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QToolButton::sizeHint +136 QToolButton::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QToolButton::mousePressEvent +168 QToolButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QAbstractButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QAbstractButton::focusInEvent +224 QAbstractButton::focusOutEvent +232 QToolButton::enterEvent +240 QToolButton::leaveEvent +248 QToolButton::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QToolButton::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QToolButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QToolButton::hitButton +456 QAbstractButton::checkStateSet +464 QToolButton::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11QToolButton) +488 QToolButton::_ZThn16_N11QToolButtonD1Ev +496 QToolButton::_ZThn16_N11QToolButtonD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QToolButton + size=40 align=8 + base size=40 base align=8 +QToolButton (0x7f1debe0e7e0) 0 + vptr=((& QToolButton::_ZTV11QToolButton) + 16u) + QAbstractButton (0x7f1debe0e850) 0 + primary-for QToolButton (0x7f1debe0e7e0) + QWidget (0x7f1debe0d480) 0 + primary-for QAbstractButton (0x7f1debe0e850) + QObject (0x7f1debe0e8c0) 0 + primary-for QWidget (0x7f1debe0d480) + QPaintDevice (0x7f1debe0e930) 16 + vptr=((& QToolButton::_ZTV11QToolButton) + 488u) + +Vtable for QComboBox +QComboBox::_ZTV9QComboBox: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QComboBox) +16 QComboBox::metaObject +24 QComboBox::qt_metacast +32 QComboBox::qt_metacall +40 QComboBox::~QComboBox +48 QComboBox::~QComboBox +56 QComboBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QComboBox::sizeHint +136 QComboBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QComboBox::mousePressEvent +168 QComboBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QComboBox::wheelEvent +200 QComboBox::keyPressEvent +208 QComboBox::keyReleaseEvent +216 QComboBox::focusInEvent +224 QComboBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QComboBox::paintEvent +256 QWidget::moveEvent +264 QComboBox::resizeEvent +272 QWidget::closeEvent +280 QComboBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QComboBox::showEvent +344 QComboBox::hideEvent +352 QWidget::x11Event +360 QComboBox::changeEvent +368 QWidget::metric +376 QComboBox::inputMethodEvent +384 QComboBox::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QComboBox::showPopup +456 QComboBox::hidePopup +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI9QComboBox) +480 QComboBox::_ZThn16_N9QComboBoxD1Ev +488 QComboBox::_ZThn16_N9QComboBoxD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QComboBox + size=40 align=8 + base size=40 base align=8 +QComboBox (0x7f1debc4faf0) 0 + vptr=((& QComboBox::_ZTV9QComboBox) + 16u) + QWidget (0x7f1debc57080) 0 + primary-for QComboBox (0x7f1debc4faf0) + QObject (0x7f1debc4fb60) 0 + primary-for QWidget (0x7f1debc57080) + QPaintDevice (0x7f1debc4fbd0) 16 + vptr=((& QComboBox::_ZTV9QComboBox) + 480u) + +Vtable for QCommandLinkButton +QCommandLinkButton::_ZTV18QCommandLinkButton: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QCommandLinkButton) +16 QCommandLinkButton::metaObject +24 QCommandLinkButton::qt_metacast +32 QCommandLinkButton::qt_metacall +40 QCommandLinkButton::~QCommandLinkButton +48 QCommandLinkButton::~QCommandLinkButton +56 QCommandLinkButton::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QCommandLinkButton::sizeHint +136 QCommandLinkButton::minimumSizeHint +144 QCommandLinkButton::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QPushButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QPushButton::focusInEvent +224 QPushButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QCommandLinkButton::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractButton::hitButton +456 QAbstractButton::checkStateSet +464 QAbstractButton::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI18QCommandLinkButton) +488 QCommandLinkButton::_ZThn16_N18QCommandLinkButtonD1Ev +496 QCommandLinkButton::_ZThn16_N18QCommandLinkButtonD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QCommandLinkButton + size=40 align=8 + base size=40 base align=8 +QCommandLinkButton (0x7f1debcbf620) 0 + vptr=((& QCommandLinkButton::_ZTV18QCommandLinkButton) + 16u) + QPushButton (0x7f1debcbf690) 0 + primary-for QCommandLinkButton (0x7f1debcbf620) + QAbstractButton (0x7f1debcbf700) 0 + primary-for QPushButton (0x7f1debcbf690) + QWidget (0x7f1debcbac80) 0 + primary-for QAbstractButton (0x7f1debcbf700) + QObject (0x7f1debcbf770) 0 + primary-for QWidget (0x7f1debcbac80) + QPaintDevice (0x7f1debcbf7e0) 16 + vptr=((& QCommandLinkButton::_ZTV18QCommandLinkButton) + 488u) + +Vtable for QMenuItem +QMenuItem::_ZTV9QMenuItem: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QMenuItem) +16 QMenuItem::metaObject +24 QMenuItem::qt_metacast +32 QMenuItem::qt_metacall +40 QMenuItem::~QMenuItem +48 QMenuItem::~QMenuItem +56 QAction::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QMenuItem + size=16 align=8 + base size=16 base align=8 +QMenuItem (0x7f1debce01c0) 0 + vptr=((& QMenuItem::_ZTV9QMenuItem) + 16u) + QAction (0x7f1debce0230) 0 + primary-for QMenuItem (0x7f1debce01c0) + QObject (0x7f1debce02a0) 0 + primary-for QAction (0x7f1debce0230) + +Vtable for QCalendarWidget +QCalendarWidget::_ZTV15QCalendarWidget: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QCalendarWidget) +16 QCalendarWidget::metaObject +24 QCalendarWidget::qt_metacast +32 QCalendarWidget::qt_metacall +40 QCalendarWidget::~QCalendarWidget +48 QCalendarWidget::~QCalendarWidget +56 QCalendarWidget::event +64 QCalendarWidget::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QCalendarWidget::sizeHint +136 QCalendarWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QCalendarWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QCalendarWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QCalendarWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QCalendarWidget::paintCell +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI15QCalendarWidget) +472 QCalendarWidget::_ZThn16_N15QCalendarWidgetD1Ev +480 QCalendarWidget::_ZThn16_N15QCalendarWidgetD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QCalendarWidget + size=40 align=8 + base size=40 base align=8 +QCalendarWidget (0x7f1debcef000) 0 + vptr=((& QCalendarWidget::_ZTV15QCalendarWidget) + 16u) + QWidget (0x7f1debcd8c00) 0 + primary-for QCalendarWidget (0x7f1debcef000) + QObject (0x7f1debcef070) 0 + primary-for QWidget (0x7f1debcd8c00) + QPaintDevice (0x7f1debcef0e0) 16 + vptr=((& QCalendarWidget::_ZTV15QCalendarWidget) + 472u) + +Vtable for QRadioButton +QRadioButton::_ZTV12QRadioButton: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QRadioButton) +16 QRadioButton::metaObject +24 QRadioButton::qt_metacast +32 QRadioButton::qt_metacall +40 QRadioButton::~QRadioButton +48 QRadioButton::~QRadioButton +56 QRadioButton::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QRadioButton::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QRadioButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QAbstractButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QAbstractButton::focusInEvent +224 QAbstractButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QRadioButton::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QRadioButton::hitButton +456 QAbstractButton::checkStateSet +464 QAbstractButton::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI12QRadioButton) +488 QRadioButton::_ZThn16_N12QRadioButtonD1Ev +496 QRadioButton::_ZThn16_N12QRadioButtonD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QRadioButton + size=40 align=8 + base size=40 base align=8 +QRadioButton (0x7f1debd1b150) 0 + vptr=((& QRadioButton::_ZTV12QRadioButton) + 16u) + QAbstractButton (0x7f1debd1b1c0) 0 + primary-for QRadioButton (0x7f1debd1b150) + QWidget (0x7f1debcf4b00) 0 + primary-for QAbstractButton (0x7f1debd1b1c0) + QObject (0x7f1debd1b230) 0 + primary-for QWidget (0x7f1debcf4b00) + QPaintDevice (0x7f1debd1b2a0) 16 + vptr=((& QRadioButton::_ZTV12QRadioButton) + 488u) + +Vtable for QMenuBar +QMenuBar::_ZTV8QMenuBar: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QMenuBar) +16 QMenuBar::metaObject +24 QMenuBar::qt_metacast +32 QMenuBar::qt_metacall +40 QMenuBar::~QMenuBar +48 QMenuBar::~QMenuBar +56 QMenuBar::event +64 QMenuBar::eventFilter +72 QMenuBar::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QMenuBar::setVisible +128 QMenuBar::sizeHint +136 QMenuBar::minimumSizeHint +144 QMenuBar::heightForWidth +152 QWidget::paintEngine +160 QMenuBar::mousePressEvent +168 QMenuBar::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QMenuBar::mouseMoveEvent +192 QWidget::wheelEvent +200 QMenuBar::keyPressEvent +208 QWidget::keyReleaseEvent +216 QMenuBar::focusInEvent +224 QMenuBar::focusOutEvent +232 QWidget::enterEvent +240 QMenuBar::leaveEvent +248 QMenuBar::paintEvent +256 QWidget::moveEvent +264 QMenuBar::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QMenuBar::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QMenuBar::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI8QMenuBar) +464 QMenuBar::_ZThn16_N8QMenuBarD1Ev +472 QMenuBar::_ZThn16_N8QMenuBarD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMenuBar + size=40 align=8 + base size=40 base align=8 +QMenuBar (0x7f1debd31d90) 0 + vptr=((& QMenuBar::_ZTV8QMenuBar) + 16u) + QWidget (0x7f1debd34400) 0 + primary-for QMenuBar (0x7f1debd31d90) + QObject (0x7f1debd31e00) 0 + primary-for QWidget (0x7f1debd34400) + QPaintDevice (0x7f1debd31e70) 16 + vptr=((& QMenuBar::_ZTV8QMenuBar) + 464u) + +Vtable for QFocusFrame +QFocusFrame::_ZTV11QFocusFrame: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFocusFrame) +16 QFocusFrame::metaObject +24 QFocusFrame::qt_metacast +32 QFocusFrame::qt_metacall +40 QFocusFrame::~QFocusFrame +48 QFocusFrame::~QFocusFrame +56 QFocusFrame::event +64 QFocusFrame::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFocusFrame::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI11QFocusFrame) +464 QFocusFrame::_ZThn16_N11QFocusFrameD1Ev +472 QFocusFrame::_ZThn16_N11QFocusFrameD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFocusFrame + size=40 align=8 + base size=40 base align=8 +QFocusFrame (0x7f1debbcbcb0) 0 + vptr=((& QFocusFrame::_ZTV11QFocusFrame) + 16u) + QWidget (0x7f1debbcae00) 0 + primary-for QFocusFrame (0x7f1debbcbcb0) + QObject (0x7f1debbcbd20) 0 + primary-for QWidget (0x7f1debbcae00) + QPaintDevice (0x7f1debbcbd90) 16 + vptr=((& QFocusFrame::_ZTV11QFocusFrame) + 464u) + +Vtable for QFontComboBox +QFontComboBox::_ZTV13QFontComboBox: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QFontComboBox) +16 QFontComboBox::metaObject +24 QFontComboBox::qt_metacast +32 QFontComboBox::qt_metacall +40 QFontComboBox::~QFontComboBox +48 QFontComboBox::~QFontComboBox +56 QFontComboBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QFontComboBox::sizeHint +136 QComboBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QComboBox::mousePressEvent +168 QComboBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QComboBox::wheelEvent +200 QComboBox::keyPressEvent +208 QComboBox::keyReleaseEvent +216 QComboBox::focusInEvent +224 QComboBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QComboBox::paintEvent +256 QWidget::moveEvent +264 QComboBox::resizeEvent +272 QWidget::closeEvent +280 QComboBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QComboBox::showEvent +344 QComboBox::hideEvent +352 QWidget::x11Event +360 QComboBox::changeEvent +368 QWidget::metric +376 QComboBox::inputMethodEvent +384 QComboBox::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QComboBox::showPopup +456 QComboBox::hidePopup +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI13QFontComboBox) +480 QFontComboBox::_ZThn16_N13QFontComboBoxD1Ev +488 QFontComboBox::_ZThn16_N13QFontComboBoxD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFontComboBox + size=40 align=8 + base size=40 base align=8 +QFontComboBox (0x7f1debbe6850) 0 + vptr=((& QFontComboBox::_ZTV13QFontComboBox) + 16u) + QComboBox (0x7f1debbe68c0) 0 + primary-for QFontComboBox (0x7f1debbe6850) + QWidget (0x7f1debbe0700) 0 + primary-for QComboBox (0x7f1debbe68c0) + QObject (0x7f1debbe6930) 0 + primary-for QWidget (0x7f1debbe0700) + QPaintDevice (0x7f1debbe69a0) 16 + vptr=((& QFontComboBox::_ZTV13QFontComboBox) + 480u) + +Vtable for QToolBar +QToolBar::_ZTV8QToolBar: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QToolBar) +16 QToolBar::metaObject +24 QToolBar::qt_metacast +32 QToolBar::qt_metacall +40 QToolBar::~QToolBar +48 QToolBar::~QToolBar +56 QToolBar::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QToolBar::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QToolBar::paintEvent +256 QWidget::moveEvent +264 QToolBar::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QToolBar::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QToolBar::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI8QToolBar) +464 QToolBar::_ZThn16_N8QToolBarD1Ev +472 QToolBar::_ZThn16_N8QToolBarD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QToolBar + size=40 align=8 + base size=40 base align=8 +QToolBar (0x7f1deba53540) 0 + vptr=((& QToolBar::_ZTV8QToolBar) + 16u) + QWidget (0x7f1debc02800) 0 + primary-for QToolBar (0x7f1deba53540) + QObject (0x7f1deba535b0) 0 + primary-for QWidget (0x7f1debc02800) + QPaintDevice (0x7f1deba53620) 16 + vptr=((& QToolBar::_ZTV8QToolBar) + 464u) + +Vtable for QToolBox +QToolBox::_ZTV8QToolBox: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QToolBox) +16 QToolBox::metaObject +24 QToolBox::qt_metacast +32 QToolBox::qt_metacall +40 QToolBox::~QToolBox +48 QToolBox::~QToolBox +56 QToolBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QFrame::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFrame::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QToolBox::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QToolBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QToolBox::itemInserted +456 QToolBox::itemRemoved +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI8QToolBox) +480 QToolBox::_ZThn16_N8QToolBoxD1Ev +488 QToolBox::_ZThn16_N8QToolBoxD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QToolBox + size=40 align=8 + base size=40 base align=8 +QToolBox (0x7f1deba89380) 0 + vptr=((& QToolBox::_ZTV8QToolBox) + 16u) + QFrame (0x7f1deba893f0) 0 + primary-for QToolBox (0x7f1deba89380) + QWidget (0x7f1deba86800) 0 + primary-for QFrame (0x7f1deba893f0) + QObject (0x7f1deba89460) 0 + primary-for QWidget (0x7f1deba86800) + QPaintDevice (0x7f1deba894d0) 16 + vptr=((& QToolBox::_ZTV8QToolBox) + 480u) + +Vtable for QSplitter +QSplitter::_ZTV9QSplitter: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QSplitter) +16 QSplitter::metaObject +24 QSplitter::qt_metacast +32 QSplitter::qt_metacall +40 QSplitter::~QSplitter +48 QSplitter::~QSplitter +56 QSplitter::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QSplitter::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QSplitter::sizeHint +136 QSplitter::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFrame::paintEvent +256 QWidget::moveEvent +264 QSplitter::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QSplitter::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QSplitter::createHandle +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI9QSplitter) +472 QSplitter::_ZThn16_N9QSplitterD1Ev +480 QSplitter::_ZThn16_N9QSplitterD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSplitter + size=40 align=8 + base size=40 base align=8 +QSplitter (0x7f1debac2000) 0 + vptr=((& QSplitter::_ZTV9QSplitter) + 16u) + QFrame (0x7f1debac2070) 0 + primary-for QSplitter (0x7f1debac2000) + QWidget (0x7f1debabe480) 0 + primary-for QFrame (0x7f1debac2070) + QObject (0x7f1debac20e0) 0 + primary-for QWidget (0x7f1debabe480) + QPaintDevice (0x7f1debac2150) 16 + vptr=((& QSplitter::_ZTV9QSplitter) + 472u) + +Vtable for QSplitterHandle +QSplitterHandle::_ZTV15QSplitterHandle: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSplitterHandle) +16 QSplitterHandle::metaObject +24 QSplitterHandle::qt_metacast +32 QSplitterHandle::qt_metacall +40 QSplitterHandle::~QSplitterHandle +48 QSplitterHandle::~QSplitterHandle +56 QSplitterHandle::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QSplitterHandle::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QSplitterHandle::mousePressEvent +168 QSplitterHandle::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QSplitterHandle::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QSplitterHandle::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI15QSplitterHandle) +464 QSplitterHandle::_ZThn16_N15QSplitterHandleD1Ev +472 QSplitterHandle::_ZThn16_N15QSplitterHandleD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSplitterHandle + size=40 align=8 + base size=40 base align=8 +QSplitterHandle (0x7f1debaef0e0) 0 + vptr=((& QSplitterHandle::_ZTV15QSplitterHandle) + 16u) + QWidget (0x7f1debae9580) 0 + primary-for QSplitterHandle (0x7f1debaef0e0) + QObject (0x7f1debaef150) 0 + primary-for QWidget (0x7f1debae9580) + QPaintDevice (0x7f1debaef1c0) 16 + vptr=((& QSplitterHandle::_ZTV15QSplitterHandle) + 464u) + +Vtable for QDial +QDial::_ZTV5QDial: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QDial) +16 QDial::metaObject +24 QDial::qt_metacast +32 QDial::qt_metacall +40 QDial::~QDial +48 QDial::~QDial +56 QDial::event +64 QObject::eventFilter +72 QAbstractSlider::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QDial::sizeHint +136 QDial::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QDial::mousePressEvent +168 QDial::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QDial::mouseMoveEvent +192 QAbstractSlider::wheelEvent +200 QAbstractSlider::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QDial::paintEvent +256 QWidget::moveEvent +264 QDial::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractSlider::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDial::sliderChange +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI5QDial) +472 QDial::_ZThn16_N5QDialD1Ev +480 QDial::_ZThn16_N5QDialD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDial + size=40 align=8 + base size=40 base align=8 +QDial (0x7f1debb088c0) 0 + vptr=((& QDial::_ZTV5QDial) + 16u) + QAbstractSlider (0x7f1debb08930) 0 + primary-for QDial (0x7f1debb088c0) + QWidget (0x7f1debae9e80) 0 + primary-for QAbstractSlider (0x7f1debb08930) + QObject (0x7f1debb089a0) 0 + primary-for QWidget (0x7f1debae9e80) + QPaintDevice (0x7f1debb08a10) 16 + vptr=((& QDial::_ZTV5QDial) + 472u) + diff --git a/tests/auto/bic/data/QtGui.4.6.0.linux-gcc-amd64.txt b/tests/auto/bic/data/QtGui.4.6.0.linux-gcc-amd64.txt new file mode 100644 index 0000000..4e545bc --- /dev/null +++ b/tests/auto/bic/data/QtGui.4.6.0.linux-gcc-amd64.txt @@ -0,0 +1,16713 @@ +Class QSysInfo + size=1 align=1 + base size=0 base align=1 +QSysInfo (0x7fc3910c1230) 0 empty + +Class QBool + size=1 align=1 + base size=1 base align=1 +QBool (0x7fc3910c1e70) 0 + +Class qIsNull(double)::U + size=8 align=8 + base size=8 base align=8 +qIsNull(double)::U (0x7fc3906c7540) 0 + +Class qIsNull(float)::U + size=4 align=4 + base size=4 base align=4 +qIsNull(float)::U (0x7fc3906c77e0) 0 + +Class QFlag + size=4 align=4 + base size=4 base align=4 +QFlag (0x7fc390703690) 0 + +Class QIncompatibleFlag + size=4 align=4 + base size=4 base align=4 +QIncompatibleFlag (0x7fc390703e70) 0 + +Class QLatin1Char + size=1 align=1 + base size=1 base align=1 +QLatin1Char (0x7fc3907305b0) 0 + +Class QChar + size=2 align=2 + base size=2 base align=2 +QChar (0x7fc390755150) 0 + +Class QBasicAtomicInt + size=4 align=4 + base size=4 base align=4 +QBasicAtomicInt (0x7fc3905be310) 0 + +Class QAtomicInt + size=4 align=4 + base size=4 base align=4 +QAtomicInt (0x7fc3905facb0) 0 + QBasicAtomicInt (0x7fc3905fad20) 0 + +Class QInternal + size=1 align=1 + base size=0 base align=1 +QInternal (0x7fc3904544d0) 0 empty + +Class __locale_struct + size=232 align=8 + base size=232 base align=8 +__locale_struct (0x7fc390454700) 0 + +Class QByteArray::Data + size=32 align=8 + base size=32 base align=8 +QByteArray::Data (0x7fc39048daf0) 0 + +Class QByteArray + size=8 align=8 + base size=8 base align=8 +QByteArray (0x7fc39048da80) 0 + +Class QByteRef + size=16 align=8 + base size=12 base align=8 +QByteRef (0x7fc39032f380) 0 + +Class QString::Null + size=1 align=1 + base size=0 base align=1 +QString::Null (0x7fc390230d20) 0 empty + +Class QString::Data + size=32 align=8 + base size=32 base align=8 +QString::Data (0x7fc3902485b0) 0 + +Class QString + size=8 align=8 + base size=8 base align=8 +QString (0x7fc3903abbd0) 0 + +Class QLatin1String + size=8 align=8 + base size=8 base align=8 +QLatin1String (0x7fc39011d9a0) 0 + +Class QCharRef + size=16 align=8 + base size=12 base align=8 +QCharRef (0x7fc38ffbe000) 0 + +Class QConstString + size=8 align=8 + base size=8 base align=8 +QConstString (0x7fc38ff068c0) 0 + QString (0x7fc38ff06930) 0 + +Class QStringRef + size=16 align=8 + base size=16 base align=8 +QStringRef (0x7fc38ff2b310) 0 + +Class QGenericArgument + size=16 align=8 + base size=16 base align=8 +QGenericArgument (0x7fc38ffa6700) 0 + +Class QGenericReturnArgument + size=16 align=8 + base size=16 base align=8 +QGenericReturnArgument (0x7fc38ffaf2a0) 0 + QGenericArgument (0x7fc38ffaf310) 0 + +Class QMetaObject + size=32 align=8 + base size=32 base align=8 +QMetaObject (0x7fc38ffafb60) 0 + +Class QMetaObjectExtraData + size=16 align=8 + base size=16 base align=8 +QMetaObjectExtraData (0x7fc38fdd7bd0) 0 + +Vtable for std::exception +std::exception::_ZTVSt9exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9exception) +16 std::exception::~exception +24 std::exception::~exception +32 std::exception::what + +Class std::exception + size=8 align=8 + base size=8 base align=8 +std::exception (0x7fc38fe2b1c0) 0 nearly-empty + vptr=((& std::exception::_ZTVSt9exception) + 16u) + +Vtable for std::bad_exception +std::bad_exception::_ZTVSt13bad_exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13bad_exception) +16 std::bad_exception::~bad_exception +24 std::bad_exception::~bad_exception +32 std::bad_exception::what + +Class std::bad_exception + size=8 align=8 + base size=8 base align=8 +std::bad_exception (0x7fc38fe2b770) 0 nearly-empty + vptr=((& std::bad_exception::_ZTVSt13bad_exception) + 16u) + std::exception (0x7fc38fe2b7e0) 0 nearly-empty + primary-for std::bad_exception (0x7fc38fe2b770) + +Vtable for std::bad_alloc +std::bad_alloc::_ZTVSt9bad_alloc: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9bad_alloc) +16 std::bad_alloc::~bad_alloc +24 std::bad_alloc::~bad_alloc +32 std::bad_alloc::what + +Class std::bad_alloc + size=8 align=8 + base size=8 base align=8 +std::bad_alloc (0x7fc38fe2b930) 0 nearly-empty + vptr=((& std::bad_alloc::_ZTVSt9bad_alloc) + 16u) + std::exception (0x7fc38fe42000) 0 nearly-empty + primary-for std::bad_alloc (0x7fc38fe2b930) + +Class std::nothrow_t + size=1 align=1 + base size=0 base align=1 +std::nothrow_t (0x7fc38fe42850) 0 empty + +Class QListData::Data + size=32 align=8 + base size=32 base align=8 +QListData::Data (0x7fc38fe42d90) 0 + +Class QListData + size=8 align=8 + base size=8 base align=8 +QListData (0x7fc38fe42d20) 0 + +Class QScopedPointerPodDeleter + size=1 align=1 + base size=0 base align=1 +QScopedPointerPodDeleter (0x7fc38fd6d850) 0 empty + +Vtable for QObjectData +QObjectData::_ZTV11QObjectData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QObjectData) +16 __cxa_pure_virtual +24 __cxa_pure_virtual + +Class QObjectData + size=48 align=8 + base size=48 base align=8 +QObjectData (0x7fc38fd8e2a0) 0 + vptr=((& QObjectData::_ZTV11QObjectData) + 16u) + +Vtable for QObject +QObject::_ZTV7QObject: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QObject) +16 QObject::metaObject +24 QObject::qt_metacast +32 QObject::qt_metacall +40 QObject::~QObject +48 QObject::~QObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObject + size=16 align=8 + base size=16 base align=8 +QObject (0x7fc38fd8e5b0) 0 + vptr=((& QObject::_ZTV7QObject) + 16u) + +Vtable for QObjectUserData +QObjectUserData::_ZTV15QObjectUserData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QObjectUserData) +16 QObjectUserData::~QObjectUserData +24 QObjectUserData::~QObjectUserData + +Class QObjectUserData + size=8 align=8 + base size=8 base align=8 +QObjectUserData (0x7fc38fc12b60) 0 nearly-empty + vptr=((& QObjectUserData::_ZTV15QObjectUserData) + 16u) + +Vtable for QIODevice +QIODevice::_ZTV9QIODevice: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QIODevice) +16 QIODevice::metaObject +24 QIODevice::qt_metacast +32 QIODevice::qt_metacall +40 QIODevice::~QIODevice +48 QIODevice::~QIODevice +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QIODevice::isSequential +120 QIODevice::open +128 QIODevice::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QIODevice::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 __cxa_pure_virtual +224 QIODevice::readLineData +232 __cxa_pure_virtual + +Class QIODevice + size=16 align=8 + base size=16 base align=8 +QIODevice (0x7fc38fc21150) 0 + vptr=((& QIODevice::_ZTV9QIODevice) + 16u) + QObject (0x7fc38fc211c0) 0 + primary-for QIODevice (0x7fc38fc21150) + +Class _IO_marker + size=24 align=8 + base size=24 base align=8 +_IO_marker (0x7fc38fc84cb0) 0 + +Class _IO_FILE + size=216 align=8 + base size=216 base align=8 +_IO_FILE (0x7fc38fc84d20) 0 + +Vtable for QFile +QFile::_ZTV5QFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QFile) +16 QFile::metaObject +24 QFile::qt_metacast +32 QFile::qt_metacall +40 QFile::~QFile +48 QFile::~QFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QFile::fileEngine + +Class QFile + size=16 align=8 + base size=16 base align=8 +QFile (0x7fc38fc84e00) 0 + vptr=((& QFile::_ZTV5QFile) + 16u) + QIODevice (0x7fc38fc84e70) 0 + primary-for QFile (0x7fc38fc84e00) + QObject (0x7fc38fc84ee0) 0 + primary-for QIODevice (0x7fc38fc84e70) + +Class QFileInfo + size=8 align=8 + base size=8 base align=8 +QFileInfo (0x7fc38fb27070) 0 + +Vtable for QDataStream +QDataStream::_ZTV11QDataStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QDataStream) +16 QDataStream::~QDataStream +24 QDataStream::~QDataStream + +Class QDataStream + size=40 align=8 + base size=40 base align=8 +QDataStream (0x7fc38fb77a10) 0 + vptr=((& QDataStream::_ZTV11QDataStream) + 16u) + +Class QRegExp + size=8 align=8 + base size=8 base align=8 +QRegExp (0x7fc38f9e4e70) 0 + +Class QStringMatcher::Data + size=272 align=8 + base size=272 base align=8 +QStringMatcher::Data (0x7fc38fa4b2a0) 0 + +Class QStringMatcher + size=1048 align=8 + base size=1048 base align=8 +QStringMatcher (0x7fc38fa3ec40) 0 + +Class QStringList + size=8 align=8 + base size=8 base align=8 +QStringList (0x7fc38fa4b850) 0 + QList (0x7fc38fa4b8c0) 0 + +Class QDir + size=8 align=8 + base size=8 base align=8 +QDir (0x7fc38f8ea4d0) 0 + +Class QAbstractFileEngine::ExtensionOption + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionOption (0x7fc38f9928c0) 0 empty + +Class QAbstractFileEngine::ExtensionReturn + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionReturn (0x7fc38f992930) 0 empty + +Class QAbstractFileEngine::MapExtensionOption + size=24 align=8 + base size=20 base align=8 +QAbstractFileEngine::MapExtensionOption (0x7fc38f9929a0) 0 + QAbstractFileEngine::ExtensionOption (0x7fc38f992a10) 0 empty + +Class QAbstractFileEngine::MapExtensionReturn + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::MapExtensionReturn (0x7fc38f992bd0) 0 + QAbstractFileEngine::ExtensionReturn (0x7fc38f992c40) 0 empty + +Class QAbstractFileEngine::UnMapExtensionOption + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::UnMapExtensionOption (0x7fc38f992cb0) 0 + QAbstractFileEngine::ExtensionOption (0x7fc38f992d20) 0 empty + +Vtable for QAbstractFileEngine +QAbstractFileEngine::_ZTV19QAbstractFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractFileEngine) +16 QAbstractFileEngine::~QAbstractFileEngine +24 QAbstractFileEngine::~QAbstractFileEngine +32 QAbstractFileEngine::open +40 QAbstractFileEngine::close +48 QAbstractFileEngine::flush +56 QAbstractFileEngine::size +64 QAbstractFileEngine::pos +72 QAbstractFileEngine::seek +80 QAbstractFileEngine::isSequential +88 QAbstractFileEngine::remove +96 QAbstractFileEngine::copy +104 QAbstractFileEngine::rename +112 QAbstractFileEngine::link +120 QAbstractFileEngine::mkdir +128 QAbstractFileEngine::rmdir +136 QAbstractFileEngine::setSize +144 QAbstractFileEngine::caseSensitive +152 QAbstractFileEngine::isRelativePath +160 QAbstractFileEngine::entryList +168 QAbstractFileEngine::fileFlags +176 QAbstractFileEngine::setPermissions +184 QAbstractFileEngine::fileName +192 QAbstractFileEngine::ownerId +200 QAbstractFileEngine::owner +208 QAbstractFileEngine::fileTime +216 QAbstractFileEngine::setFileName +224 QAbstractFileEngine::handle +232 QAbstractFileEngine::beginEntryList +240 QAbstractFileEngine::endEntryList +248 QAbstractFileEngine::read +256 QAbstractFileEngine::readLine +264 QAbstractFileEngine::write +272 QAbstractFileEngine::extension +280 QAbstractFileEngine::supportsExtension + +Class QAbstractFileEngine + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngine (0x7fc38f975850) 0 + vptr=((& QAbstractFileEngine::_ZTV19QAbstractFileEngine) + 16u) + +Vtable for QAbstractFileEngineHandler +QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QAbstractFileEngineHandler) +16 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +24 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +32 __cxa_pure_virtual + +Class QAbstractFileEngineHandler + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngineHandler (0x7fc38f7c5bd0) 0 nearly-empty + vptr=((& QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler) + 16u) + +Vtable for QAbstractFileEngineIterator +QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QAbstractFileEngineIterator) +16 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +24 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QAbstractFileEngineIterator::currentFileInfo +64 QAbstractFileEngineIterator::entryInfo + +Class QAbstractFileEngineIterator + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngineIterator (0x7fc38f7c5d90) 0 + vptr=((& QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator) + 16u) + +Vtable for QBuffer +QBuffer::_ZTV7QBuffer: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QBuffer) +16 QBuffer::metaObject +24 QBuffer::qt_metacast +32 QBuffer::qt_metacall +40 QBuffer::~QBuffer +48 QBuffer::~QBuffer +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QBuffer::connectNotify +104 QBuffer::disconnectNotify +112 QIODevice::isSequential +120 QBuffer::open +128 QBuffer::close +136 QBuffer::pos +144 QBuffer::size +152 QBuffer::seek +160 QBuffer::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QBuffer::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QBuffer::readData +224 QIODevice::readLineData +232 QBuffer::writeData + +Class QBuffer + size=16 align=8 + base size=16 base align=8 +QBuffer (0x7fc38f7d9690) 0 + vptr=((& QBuffer::_ZTV7QBuffer) + 16u) + QIODevice (0x7fc38f7d9700) 0 + primary-for QBuffer (0x7fc38f7d9690) + QObject (0x7fc38f7d9770) 0 + primary-for QIODevice (0x7fc38f7d9700) + +Class QHashData::Node + size=16 align=8 + base size=16 base align=8 +QHashData::Node (0x7fc38f81de00) 0 + +Class QHashData + size=40 align=8 + base size=40 base align=8 +QHashData (0x7fc38f81dd90) 0 + +Class QHashDummyValue + size=1 align=1 + base size=0 base align=1 +QHashDummyValue (0x7fc38f83f150) 0 empty + +Class QMapData::Node + size=16 align=8 + base size=16 base align=8 +QMapData::Node (0x7fc38f742a80) 0 + +Class QMapData + size=128 align=8 + base size=128 base align=8 +QMapData (0x7fc38f742a10) 0 + +Vtable for QSystemLocale +QSystemLocale::_ZTV13QSystemLocale: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSystemLocale) +16 QSystemLocale::~QSystemLocale +24 QSystemLocale::~QSystemLocale +32 QSystemLocale::query +40 QSystemLocale::fallbackLocale + +Class QSystemLocale + size=8 align=8 + base size=8 base align=8 +QSystemLocale (0x7fc38f67c690) 0 nearly-empty + vptr=((& QSystemLocale::_ZTV13QSystemLocale) + 16u) + +Class QLocale::Data + size=4 align=2 + base size=4 base align=2 +QLocale::Data (0x7fc38f4c6d90) 0 + +Class QLocale + size=8 align=8 + base size=8 base align=8 +QLocale (0x7fc38f67caf0) 0 + +Class QTextCodec::ConverterState + size=32 align=8 + base size=32 base align=8 +QTextCodec::ConverterState (0x7fc38f51abd0) 0 + +Vtable for QTextCodec +QTextCodec::_ZTV10QTextCodec: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextCodec) +16 __cxa_pure_virtual +24 QTextCodec::aliases +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QTextCodec::~QTextCodec +64 QTextCodec::~QTextCodec + +Class QTextCodec + size=8 align=8 + base size=8 base align=8 +QTextCodec (0x7fc38f50e460) 0 nearly-empty + vptr=((& QTextCodec::_ZTV10QTextCodec) + 16u) + +Class QTextEncoder + size=40 align=8 + base size=40 base align=8 +QTextEncoder (0x7fc38f58e150) 0 + +Class QTextDecoder + size=40 align=8 + base size=40 base align=8 +QTextDecoder (0x7fc38f58ef50) 0 + +Vtable for QTextStream +QTextStream::_ZTV11QTextStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTextStream) +16 QTextStream::~QTextStream +24 QTextStream::~QTextStream + +Class QTextStream + size=16 align=8 + base size=16 base align=8 +QTextStream (0x7fc38f597d90) 0 + vptr=((& QTextStream::_ZTV11QTextStream) + 16u) + +Class QTextStreamManipulator + size=40 align=8 + base size=38 base align=8 +QTextStreamManipulator (0x7fc38f411a80) 0 + +Vtable for QTextIStream +QTextIStream::_ZTV12QTextIStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextIStream) +16 QTextIStream::~QTextIStream +24 QTextIStream::~QTextIStream + +Class QTextIStream + size=16 align=8 + base size=16 base align=8 +QTextIStream (0x7fc38f443070) 0 + vptr=((& QTextIStream::_ZTV12QTextIStream) + 16u) + QTextStream (0x7fc38f4430e0) 0 + primary-for QTextIStream (0x7fc38f443070) + +Vtable for QTextOStream +QTextOStream::_ZTV12QTextOStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextOStream) +16 QTextOStream::~QTextOStream +24 QTextOStream::~QTextOStream + +Class QTextOStream + size=16 align=8 + base size=16 base align=8 +QTextOStream (0x7fc38f44fee0) 0 + vptr=((& QTextOStream::_ZTV12QTextOStream) + 16u) + QTextStream (0x7fc38f44ff50) 0 + primary-for QTextOStream (0x7fc38f44fee0) + +Class wait + size=4 align=4 + base size=4 base align=4 +wait (0x7fc38f462d90) 0 + +Class timespec + size=16 align=8 + base size=16 base align=8 +timespec (0x7fc38f46f0e0) 0 + +Class timeval + size=16 align=8 + base size=16 base align=8 +timeval (0x7fc38f46f150) 0 + +Class __pthread_internal_list + size=16 align=8 + base size=16 base align=8 +__pthread_internal_list (0x7fc38f46f2a0) 0 + +Class random_data + size=48 align=8 + base size=48 base align=8 +random_data (0x7fc38f46f850) 0 + +Class drand48_data + size=24 align=8 + base size=24 base align=8 +drand48_data (0x7fc38f46f8c0) 0 + +Class QVectorData + size=16 align=4 + base size=16 base align=4 +QVectorData (0x7fc38f46f930) 0 + +Class QContiguousCacheData + size=24 align=4 + base size=24 base align=4 +QContiguousCacheData (0x7fc38f22d620) 0 + +Class QDebug::Stream + size=40 align=8 + base size=34 base align=8 +QDebug::Stream (0x7fc38f08d150) 0 + +Class QDebug + size=8 align=8 + base size=8 base align=8 +QDebug (0x7fc38f08d0e0) 0 + +Class QNoDebug + size=1 align=1 + base size=0 base align=1 +QNoDebug (0x7fc38f13b0e0) 0 empty + +Vtable for QDirIterator +QDirIterator::_ZTV12QDirIterator: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QDirIterator) +16 QDirIterator::~QDirIterator +24 QDirIterator::~QDirIterator + +Class QDirIterator + size=16 align=8 + base size=16 base align=8 +QDirIterator (0x7fc38f14b700) 0 + vptr=((& QDirIterator::_ZTV12QDirIterator) + 16u) + +Vtable for QFileSystemWatcher +QFileSystemWatcher::_ZTV18QFileSystemWatcher: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFileSystemWatcher) +16 QFileSystemWatcher::metaObject +24 QFileSystemWatcher::qt_metacast +32 QFileSystemWatcher::qt_metacall +40 QFileSystemWatcher::~QFileSystemWatcher +48 QFileSystemWatcher::~QFileSystemWatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QFileSystemWatcher + size=16 align=8 + base size=16 base align=8 +QFileSystemWatcher (0x7fc38efa8540) 0 + vptr=((& QFileSystemWatcher::_ZTV18QFileSystemWatcher) + 16u) + QObject (0x7fc38efa85b0) 0 + primary-for QFileSystemWatcher (0x7fc38efa8540) + +Vtable for QFSFileEngine +QFSFileEngine::_ZTV13QFSFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QFSFileEngine) +16 QFSFileEngine::~QFSFileEngine +24 QFSFileEngine::~QFSFileEngine +32 QFSFileEngine::open +40 QFSFileEngine::close +48 QFSFileEngine::flush +56 QFSFileEngine::size +64 QFSFileEngine::pos +72 QFSFileEngine::seek +80 QFSFileEngine::isSequential +88 QFSFileEngine::remove +96 QFSFileEngine::copy +104 QFSFileEngine::rename +112 QFSFileEngine::link +120 QFSFileEngine::mkdir +128 QFSFileEngine::rmdir +136 QFSFileEngine::setSize +144 QFSFileEngine::caseSensitive +152 QFSFileEngine::isRelativePath +160 QFSFileEngine::entryList +168 QFSFileEngine::fileFlags +176 QFSFileEngine::setPermissions +184 QFSFileEngine::fileName +192 QFSFileEngine::ownerId +200 QFSFileEngine::owner +208 QFSFileEngine::fileTime +216 QFSFileEngine::setFileName +224 QFSFileEngine::handle +232 QFSFileEngine::beginEntryList +240 QFSFileEngine::endEntryList +248 QFSFileEngine::read +256 QFSFileEngine::readLine +264 QFSFileEngine::write +272 QFSFileEngine::extension +280 QFSFileEngine::supportsExtension + +Class QFSFileEngine + size=16 align=8 + base size=16 base align=8 +QFSFileEngine (0x7fc38efbaa80) 0 + vptr=((& QFSFileEngine::_ZTV13QFSFileEngine) + 16u) + QAbstractFileEngine (0x7fc38efbaaf0) 0 + primary-for QFSFileEngine (0x7fc38efbaa80) + +Class QSharedData + size=4 align=4 + base size=4 base align=4 +QSharedData (0x7fc38efcae70) 0 + +Class QProcessEnvironment + size=8 align=8 + base size=8 base align=8 +QProcessEnvironment (0x7fc38f0121c0) 0 + +Vtable for QProcess +QProcess::_ZTV8QProcess: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QProcess) +16 QProcess::metaObject +24 QProcess::qt_metacast +32 QProcess::qt_metacall +40 QProcess::~QProcess +48 QProcess::~QProcess +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QProcess::isSequential +120 QIODevice::open +128 QProcess::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QProcess::atEnd +168 QIODevice::reset +176 QProcess::bytesAvailable +184 QProcess::bytesToWrite +192 QProcess::canReadLine +200 QProcess::waitForReadyRead +208 QProcess::waitForBytesWritten +216 QProcess::readData +224 QIODevice::readLineData +232 QProcess::writeData +240 QProcess::setupChildProcess + +Class QProcess + size=16 align=8 + base size=16 base align=8 +QProcess (0x7fc38f012cb0) 0 + vptr=((& QProcess::_ZTV8QProcess) + 16u) + QIODevice (0x7fc38f012d20) 0 + primary-for QProcess (0x7fc38f012cb0) + QObject (0x7fc38f012d90) 0 + primary-for QIODevice (0x7fc38f012d20) + +Class QResource + size=8 align=8 + base size=8 base align=8 +QResource (0x7fc38f05b1c0) 0 + +Class QMetaType + size=1 align=1 + base size=0 base align=1 +QMetaType (0x7fc38f05be70) 0 empty + +Class QVariant::PrivateShared + size=16 align=8 + base size=12 base align=8 +QVariant::PrivateShared (0x7fc38ef59700) 0 + +Class QVariant::Private::Data + size=8 align=8 + base size=8 base align=8 +QVariant::Private::Data (0x7fc38ef59a10) 0 + +Class QVariant::Private + size=16 align=8 + base size=12 base align=8 +QVariant::Private (0x7fc38ef597e0) 0 + +Class QVariant::Handler + size=72 align=8 + base size=72 base align=8 +QVariant::Handler (0x7fc38ef67700) 0 + +Class QVariant + size=16 align=8 + base size=16 base align=8 +QVariant (0x7fc38ef287e0) 0 + +Class QVariantComparisonHelper + size=8 align=8 + base size=8 base align=8 +QVariantComparisonHelper (0x7fc38ee199a0) 0 + +Vtable for QSettings +QSettings::_ZTV9QSettings: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QSettings) +16 QSettings::metaObject +24 QSettings::qt_metacast +32 QSettings::qt_metacall +40 QSettings::~QSettings +48 QSettings::~QSettings +56 QSettings::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSettings + size=16 align=8 + base size=16 base align=8 +QSettings (0x7fc38ee3eee0) 0 + vptr=((& QSettings::_ZTV9QSettings) + 16u) + QObject (0x7fc38ee3ef50) 0 + primary-for QSettings (0x7fc38ee3eee0) + +Vtable for QTemporaryFile +QTemporaryFile::_ZTV14QTemporaryFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QTemporaryFile) +16 QTemporaryFile::metaObject +24 QTemporaryFile::qt_metacast +32 QTemporaryFile::qt_metacall +40 QTemporaryFile::~QTemporaryFile +48 QTemporaryFile::~QTemporaryFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QTemporaryFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QTemporaryFile::fileEngine + +Class QTemporaryFile + size=16 align=8 + base size=16 base align=8 +QTemporaryFile (0x7fc38ecc12a0) 0 + vptr=((& QTemporaryFile::_ZTV14QTemporaryFile) + 16u) + QFile (0x7fc38ecc1310) 0 + primary-for QTemporaryFile (0x7fc38ecc12a0) + QIODevice (0x7fc38ecc1380) 0 + primary-for QFile (0x7fc38ecc1310) + QObject (0x7fc38ecc13f0) 0 + primary-for QIODevice (0x7fc38ecc1380) + +Class QUrl + size=8 align=8 + base size=8 base align=8 +QUrl (0x7fc38ecdd9a0) 0 + +Class QXmlStreamStringRef + size=16 align=8 + base size=16 base align=8 +QXmlStreamStringRef (0x7fc38ed6b070) 0 + +Class QXmlStreamAttribute + size=80 align=8 + base size=73 base align=8 +QXmlStreamAttribute (0x7fc38eb84850) 0 + +Class QXmlStreamAttributes + size=8 align=8 + base size=8 base align=8 +QXmlStreamAttributes (0x7fc38ebac310) 0 + QVector (0x7fc38ebac380) 0 + +Class QXmlStreamNamespaceDeclaration + size=40 align=8 + base size=40 base align=8 +QXmlStreamNamespaceDeclaration (0x7fc38ebac7e0) 0 + +Class QXmlStreamNotationDeclaration + size=56 align=8 + base size=56 base align=8 +QXmlStreamNotationDeclaration (0x7fc38ebee1c0) 0 + +Class QXmlStreamEntityDeclaration + size=88 align=8 + base size=88 base align=8 +QXmlStreamEntityDeclaration (0x7fc38ec10070) 0 + +Vtable for QXmlStreamEntityResolver +QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QXmlStreamEntityResolver) +16 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +24 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +32 QXmlStreamEntityResolver::resolveEntity +40 QXmlStreamEntityResolver::resolveUndeclaredEntity + +Class QXmlStreamEntityResolver + size=8 align=8 + base size=8 base align=8 +QXmlStreamEntityResolver (0x7fc38ec299a0) 0 nearly-empty + vptr=((& QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver) + 16u) + +Class QXmlStreamReader + size=8 align=8 + base size=8 base align=8 +QXmlStreamReader (0x7fc38ec29b60) 0 + +Class QXmlStreamWriter + size=8 align=8 + base size=8 base align=8 +QXmlStreamWriter (0x7fc38ec72c40) 0 + +Vtable for QAbstractState +QAbstractState::_ZTV14QAbstractState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QAbstractState) +16 QAbstractState::metaObject +24 QAbstractState::qt_metacast +32 QAbstractState::qt_metacall +40 QAbstractState::~QAbstractState +48 QAbstractState::~QAbstractState +56 QAbstractState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QAbstractState + size=16 align=8 + base size=16 base align=8 +QAbstractState (0x7fc38ea7fa80) 0 + vptr=((& QAbstractState::_ZTV14QAbstractState) + 16u) + QObject (0x7fc38ea7faf0) 0 + primary-for QAbstractState (0x7fc38ea7fa80) + +Vtable for QAbstractTransition +QAbstractTransition::_ZTV19QAbstractTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractTransition) +16 QAbstractTransition::metaObject +24 QAbstractTransition::qt_metacast +32 QAbstractTransition::qt_metacall +40 QAbstractTransition::~QAbstractTransition +48 QAbstractTransition::~QAbstractTransition +56 QAbstractTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QAbstractTransition + size=16 align=8 + base size=16 base align=8 +QAbstractTransition (0x7fc38eaa52a0) 0 + vptr=((& QAbstractTransition::_ZTV19QAbstractTransition) + 16u) + QObject (0x7fc38eaa5310) 0 + primary-for QAbstractTransition (0x7fc38eaa52a0) + +Vtable for QEvent +QEvent::_ZTV6QEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QEvent) +16 QEvent::~QEvent +24 QEvent::~QEvent + +Class QEvent + size=24 align=8 + base size=20 base align=8 +QEvent (0x7fc38eab8af0) 0 + vptr=((& QEvent::_ZTV6QEvent) + 16u) + +Vtable for QTimerEvent +QTimerEvent::_ZTV11QTimerEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTimerEvent) +16 QTimerEvent::~QTimerEvent +24 QTimerEvent::~QTimerEvent + +Class QTimerEvent + size=24 align=8 + base size=24 base align=8 +QTimerEvent (0x7fc38eada700) 0 + vptr=((& QTimerEvent::_ZTV11QTimerEvent) + 16u) + QEvent (0x7fc38eada770) 0 + primary-for QTimerEvent (0x7fc38eada700) + +Vtable for QChildEvent +QChildEvent::_ZTV11QChildEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QChildEvent) +16 QChildEvent::~QChildEvent +24 QChildEvent::~QChildEvent + +Class QChildEvent + size=32 align=8 + base size=32 base align=8 +QChildEvent (0x7fc38eadab60) 0 + vptr=((& QChildEvent::_ZTV11QChildEvent) + 16u) + QEvent (0x7fc38eadabd0) 0 + primary-for QChildEvent (0x7fc38eadab60) + +Vtable for QCustomEvent +QCustomEvent::_ZTV12QCustomEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QCustomEvent) +16 QCustomEvent::~QCustomEvent +24 QCustomEvent::~QCustomEvent + +Class QCustomEvent + size=24 align=8 + base size=20 base align=8 +QCustomEvent (0x7fc38eae4e00) 0 + vptr=((& QCustomEvent::_ZTV12QCustomEvent) + 16u) + QEvent (0x7fc38eae4e70) 0 + primary-for QCustomEvent (0x7fc38eae4e00) + +Vtable for QDynamicPropertyChangeEvent +QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QDynamicPropertyChangeEvent) +16 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent +24 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent + +Class QDynamicPropertyChangeEvent + size=32 align=8 + base size=32 base align=8 +QDynamicPropertyChangeEvent (0x7fc38eaf6620) 0 + vptr=((& QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent) + 16u) + QEvent (0x7fc38eaf6690) 0 + primary-for QDynamicPropertyChangeEvent (0x7fc38eaf6620) + +Vtable for QEventTransition +QEventTransition::_ZTV16QEventTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QEventTransition) +16 QEventTransition::metaObject +24 QEventTransition::qt_metacast +32 QEventTransition::qt_metacall +40 QEventTransition::~QEventTransition +48 QEventTransition::~QEventTransition +56 QEventTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QEventTransition::eventTest +120 QEventTransition::onTransition + +Class QEventTransition + size=16 align=8 + base size=16 base align=8 +QEventTransition (0x7fc38eaf6af0) 0 + vptr=((& QEventTransition::_ZTV16QEventTransition) + 16u) + QAbstractTransition (0x7fc38eaf6b60) 0 + primary-for QEventTransition (0x7fc38eaf6af0) + QObject (0x7fc38eaf6bd0) 0 + primary-for QAbstractTransition (0x7fc38eaf6b60) + +Vtable for QFinalState +QFinalState::_ZTV11QFinalState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFinalState) +16 QFinalState::metaObject +24 QFinalState::qt_metacast +32 QFinalState::qt_metacall +40 QFinalState::~QFinalState +48 QFinalState::~QFinalState +56 QFinalState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFinalState::onEntry +120 QFinalState::onExit + +Class QFinalState + size=16 align=8 + base size=16 base align=8 +QFinalState (0x7fc38eb119a0) 0 + vptr=((& QFinalState::_ZTV11QFinalState) + 16u) + QAbstractState (0x7fc38eb11a10) 0 + primary-for QFinalState (0x7fc38eb119a0) + QObject (0x7fc38eb11a80) 0 + primary-for QAbstractState (0x7fc38eb11a10) + +Vtable for QHistoryState +QHistoryState::_ZTV13QHistoryState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QHistoryState) +16 QHistoryState::metaObject +24 QHistoryState::qt_metacast +32 QHistoryState::qt_metacall +40 QHistoryState::~QHistoryState +48 QHistoryState::~QHistoryState +56 QHistoryState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QHistoryState::onEntry +120 QHistoryState::onExit + +Class QHistoryState + size=16 align=8 + base size=16 base align=8 +QHistoryState (0x7fc38eb29230) 0 + vptr=((& QHistoryState::_ZTV13QHistoryState) + 16u) + QAbstractState (0x7fc38eb292a0) 0 + primary-for QHistoryState (0x7fc38eb29230) + QObject (0x7fc38eb29310) 0 + primary-for QAbstractState (0x7fc38eb292a0) + +Vtable for QSignalTransition +QSignalTransition::_ZTV17QSignalTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QSignalTransition) +16 QSignalTransition::metaObject +24 QSignalTransition::qt_metacast +32 QSignalTransition::qt_metacall +40 QSignalTransition::~QSignalTransition +48 QSignalTransition::~QSignalTransition +56 QSignalTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QSignalTransition::eventTest +120 QSignalTransition::onTransition + +Class QSignalTransition + size=16 align=8 + base size=16 base align=8 +QSignalTransition (0x7fc38eb3cf50) 0 + vptr=((& QSignalTransition::_ZTV17QSignalTransition) + 16u) + QAbstractTransition (0x7fc38eb45000) 0 + primary-for QSignalTransition (0x7fc38eb3cf50) + QObject (0x7fc38eb45070) 0 + primary-for QAbstractTransition (0x7fc38eb45000) + +Vtable for QState +QState::_ZTV6QState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QState) +16 QState::metaObject +24 QState::qt_metacast +32 QState::qt_metacall +40 QState::~QState +48 QState::~QState +56 QState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QState::onEntry +120 QState::onExit + +Class QState + size=16 align=8 + base size=16 base align=8 +QState (0x7fc38eb54af0) 0 + vptr=((& QState::_ZTV6QState) + 16u) + QAbstractState (0x7fc38eb54b60) 0 + primary-for QState (0x7fc38eb54af0) + QObject (0x7fc38eb54bd0) 0 + primary-for QAbstractState (0x7fc38eb54b60) + +Vtable for QStateMachine::SignalEvent +QStateMachine::SignalEvent::_ZTVN13QStateMachine11SignalEventE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN13QStateMachine11SignalEventE) +16 QStateMachine::SignalEvent::~SignalEvent +24 QStateMachine::SignalEvent::~SignalEvent + +Class QStateMachine::SignalEvent + size=48 align=8 + base size=48 base align=8 +QStateMachine::SignalEvent (0x7fc38e97b150) 0 + vptr=((& QStateMachine::SignalEvent::_ZTVN13QStateMachine11SignalEventE) + 16u) + QEvent (0x7fc38e97b1c0) 0 + primary-for QStateMachine::SignalEvent (0x7fc38e97b150) + +Vtable for QStateMachine::WrappedEvent +QStateMachine::WrappedEvent::_ZTVN13QStateMachine12WrappedEventE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN13QStateMachine12WrappedEventE) +16 QStateMachine::WrappedEvent::~WrappedEvent +24 QStateMachine::WrappedEvent::~WrappedEvent + +Class QStateMachine::WrappedEvent + size=40 align=8 + base size=40 base align=8 +QStateMachine::WrappedEvent (0x7fc38e97b700) 0 + vptr=((& QStateMachine::WrappedEvent::_ZTVN13QStateMachine12WrappedEventE) + 16u) + QEvent (0x7fc38e97b770) 0 + primary-for QStateMachine::WrappedEvent (0x7fc38e97b700) + +Vtable for QStateMachine +QStateMachine::_ZTV13QStateMachine: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QStateMachine) +16 QStateMachine::metaObject +24 QStateMachine::qt_metacast +32 QStateMachine::qt_metacall +40 QStateMachine::~QStateMachine +48 QStateMachine::~QStateMachine +56 QStateMachine::event +64 QStateMachine::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QStateMachine::onEntry +120 QStateMachine::onExit +128 QStateMachine::beginSelectTransitions +136 QStateMachine::endSelectTransitions +144 QStateMachine::beginMicrostep +152 QStateMachine::endMicrostep + +Class QStateMachine + size=16 align=8 + base size=16 base align=8 +QStateMachine (0x7fc38eb72ee0) 0 + vptr=((& QStateMachine::_ZTV13QStateMachine) + 16u) + QState (0x7fc38eb72f50) 0 + primary-for QStateMachine (0x7fc38eb72ee0) + QAbstractState (0x7fc38e97b000) 0 + primary-for QState (0x7fc38eb72f50) + QObject (0x7fc38e97b070) 0 + primary-for QAbstractState (0x7fc38e97b000) + +Class QBitArray + size=8 align=8 + base size=8 base align=8 +QBitArray (0x7fc38e9ac150) 0 + +Class QBitRef + size=16 align=8 + base size=12 base align=8 +QBitRef (0x7fc38ea00e00) 0 + +Class QByteArrayMatcher::Data + size=272 align=8 + base size=272 base align=8 +QByteArrayMatcher::Data (0x7fc38ea13af0) 0 + +Class QByteArrayMatcher + size=1040 align=8 + base size=1040 base align=8 +QByteArrayMatcher (0x7fc38ea134d0) 0 + +Class QCryptographicHash + size=8 align=8 + base size=8 base align=8 +QCryptographicHash (0x7fc38ea4b150) 0 + +Vtable for QtSharedPointer::ExternalRefCountData +QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN15QtSharedPointer20ExternalRefCountDataE) +16 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +24 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +32 QtSharedPointer::ExternalRefCountData::destroy + +Class QtSharedPointer::ExternalRefCountData + size=16 align=8 + base size=16 base align=8 +QtSharedPointer::ExternalRefCountData (0x7fc38e876070) 0 + vptr=((& QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE) + 16u) + +Vtable for QtSharedPointer::ExternalRefCountWithDestroyFn +QtSharedPointer::ExternalRefCountWithDestroyFn::_ZTVN15QtSharedPointer29ExternalRefCountWithDestroyFnE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN15QtSharedPointer29ExternalRefCountWithDestroyFnE) +16 QtSharedPointer::ExternalRefCountWithDestroyFn::~ExternalRefCountWithDestroyFn +24 QtSharedPointer::ExternalRefCountWithDestroyFn::~ExternalRefCountWithDestroyFn +32 QtSharedPointer::ExternalRefCountWithDestroyFn::destroy + +Class QtSharedPointer::ExternalRefCountWithDestroyFn + size=24 align=8 + base size=24 base align=8 +QtSharedPointer::ExternalRefCountWithDestroyFn (0x7fc38e88e930) 0 + vptr=((& QtSharedPointer::ExternalRefCountWithDestroyFn::_ZTVN15QtSharedPointer29ExternalRefCountWithDestroyFnE) + 16u) + QtSharedPointer::ExternalRefCountData (0x7fc38e88e9a0) 0 + primary-for QtSharedPointer::ExternalRefCountWithDestroyFn (0x7fc38e88e930) + +Class QDate + size=4 align=4 + base size=4 base align=4 +QDate (0x7fc38e9165b0) 0 + +Class QTime + size=4 align=4 + base size=4 base align=4 +QTime (0x7fc38e946540) 0 + +Class QDateTime + size=8 align=8 + base size=8 base align=8 +QDateTime (0x7fc38e963af0) 0 + +Class QEasingCurve + size=8 align=8 + base size=8 base align=8 +QEasingCurve (0x7fc38e7a9000) 0 + +Class QPoint + size=8 align=4 + base size=8 base align=4 +QPoint (0x7fc38e7a9ee0) 0 + +Class QPointF + size=16 align=8 + base size=16 base align=8 +QPointF (0x7fc38e7e9af0) 0 + +Class QLine + size=16 align=4 + base size=16 base align=4 +QLine (0x7fc38e829af0) 0 + +Class QLineF + size=32 align=8 + base size=32 base align=8 +QLineF (0x7fc38e8649a0) 0 + +Class QLinkedListData + size=32 align=8 + base size=32 base align=8 +QLinkedListData (0x7fc38e6ba460) 0 + +Class QMargins + size=16 align=4 + base size=16 base align=4 +QMargins (0x7fc38e578380) 0 + +Class QSize + size=8 align=4 + base size=8 base align=4 +QSize (0x7fc38e5a5150) 0 + +Class QSizeF + size=16 align=8 + base size=16 base align=8 +QSizeF (0x7fc38e5e7e00) 0 + +Class QRect + size=16 align=4 + base size=16 base align=4 +QRect (0x7fc38e638380) 0 + +Class QRectF + size=32 align=8 + base size=32 base align=8 +QRectF (0x7fc38e4e6d20) 0 + +Class QLatin1Literal + size=16 align=8 + base size=16 base align=8 +QLatin1Literal (0x7fc38e395ee0) 0 + +Class QAbstractConcatenable + size=1 align=1 + base size=0 base align=1 +QAbstractConcatenable (0x7fc38e3a73f0) 0 empty + +Class QTextBoundaryFinder + size=48 align=8 + base size=48 base align=8 +QTextBoundaryFinder (0x7fc38e3de380) 0 + +Vtable for QTimeLine +QTimeLine::_ZTV9QTimeLine: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTimeLine) +16 QTimeLine::metaObject +24 QTimeLine::qt_metacast +32 QTimeLine::qt_metacall +40 QTimeLine::~QTimeLine +48 QTimeLine::~QTimeLine +56 QObject::event +64 QObject::eventFilter +72 QTimeLine::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTimeLine::valueForTime + +Class QTimeLine + size=16 align=8 + base size=16 base align=8 +QTimeLine (0x7fc38e3ed700) 0 + vptr=((& QTimeLine::_ZTV9QTimeLine) + 16u) + QObject (0x7fc38e3ed770) 0 + primary-for QTimeLine (0x7fc38e3ed700) + +Vtable for QRunnable +QRunnable::_ZTV9QRunnable: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QRunnable) +16 __cxa_pure_virtual +24 QRunnable::~QRunnable +32 QRunnable::~QRunnable + +Class QRunnable + size=16 align=8 + base size=12 base align=8 +QRunnable (0x7fc38e416f50) 0 + vptr=((& QRunnable::_ZTV9QRunnable) + 16u) + +Class QMutex + size=8 align=8 + base size=8 base align=8 +QMutex (0x7fc38e44e620) 0 + +Class QMutexLocker + size=8 align=8 + base size=8 base align=8 +QMutexLocker (0x7fc38e45d1c0) 0 + +Vtable for QtConcurrent::Exception +QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent9ExceptionE) +16 QtConcurrent::Exception::~Exception +24 QtConcurrent::Exception::~Exception +32 std::exception::what +40 QtConcurrent::Exception::raise +48 QtConcurrent::Exception::clone + +Class QtConcurrent::Exception + size=8 align=8 + base size=8 base align=8 +QtConcurrent::Exception (0x7fc38e2724d0) 0 nearly-empty + vptr=((& QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE) + 16u) + std::exception (0x7fc38e272540) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7fc38e2724d0) + +Vtable for QtConcurrent::UnhandledException +QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent18UnhandledExceptionE) +16 QtConcurrent::UnhandledException::~UnhandledException +24 QtConcurrent::UnhandledException::~UnhandledException +32 std::exception::what +40 QtConcurrent::UnhandledException::raise +48 QtConcurrent::UnhandledException::clone + +Class QtConcurrent::UnhandledException + size=8 align=8 + base size=8 base align=8 +QtConcurrent::UnhandledException (0x7fc38e272770) 0 nearly-empty + vptr=((& QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE) + 16u) + QtConcurrent::Exception (0x7fc38e2727e0) 0 nearly-empty + primary-for QtConcurrent::UnhandledException (0x7fc38e272770) + std::exception (0x7fc38e272850) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7fc38e2727e0) + +Class QtConcurrent::internal::ExceptionHolder + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionHolder (0x7fc38e272a80) 0 + +Class QtConcurrent::internal::ExceptionStore + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionStore (0x7fc38e272e00) 0 + +Class QtConcurrent::ResultItem + size=16 align=8 + base size=16 base align=8 +QtConcurrent::ResultItem (0x7fc38e272e70) 0 + +Class QtConcurrent::ResultIteratorBase + size=16 align=8 + base size=12 base align=8 +QtConcurrent::ResultIteratorBase (0x7fc38e28ad90) 0 + +Vtable for QtConcurrent::ResultStoreBase +QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent15ResultStoreBaseE) +16 QtConcurrent::ResultStoreBase::~ResultStoreBase +24 QtConcurrent::ResultStoreBase::~ResultStoreBase + +Class QtConcurrent::ResultStoreBase + size=48 align=8 + base size=44 base align=8 +QtConcurrent::ResultStoreBase (0x7fc38e28e930) 0 + vptr=((& QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE) + 16u) + +Vtable for QFutureInterfaceBase +QFutureInterfaceBase::_ZTV20QFutureInterfaceBase: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QFutureInterfaceBase) +16 QFutureInterfaceBase::~QFutureInterfaceBase +24 QFutureInterfaceBase::~QFutureInterfaceBase + +Class QFutureInterfaceBase + size=16 align=8 + base size=16 base align=8 +QFutureInterfaceBase (0x7fc38e2cdd90) 0 + vptr=((& QFutureInterfaceBase::_ZTV20QFutureInterfaceBase) + 16u) + +Vtable for QFutureWatcherBase +QFutureWatcherBase::_ZTV18QFutureWatcherBase: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFutureWatcherBase) +16 QFutureWatcherBase::metaObject +24 QFutureWatcherBase::qt_metacast +32 QFutureWatcherBase::qt_metacall +40 QFutureWatcherBase::~QFutureWatcherBase +48 QFutureWatcherBase::~QFutureWatcherBase +56 QFutureWatcherBase::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QFutureWatcherBase::connectNotify +104 QFutureWatcherBase::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QFutureWatcherBase + size=16 align=8 + base size=16 base align=8 +QFutureWatcherBase (0x7fc38e1b3690) 0 + vptr=((& QFutureWatcherBase::_ZTV18QFutureWatcherBase) + 16u) + QObject (0x7fc38e1b3700) 0 + primary-for QFutureWatcherBase (0x7fc38e1b3690) + +Vtable for QThread +QThread::_ZTV7QThread: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QThread) +16 QThread::metaObject +24 QThread::qt_metacast +32 QThread::qt_metacall +40 QThread::~QThread +48 QThread::~QThread +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QThread::run + +Class QThread + size=16 align=8 + base size=16 base align=8 +QThread (0x7fc38e205a80) 0 + vptr=((& QThread::_ZTV7QThread) + 16u) + QObject (0x7fc38e205af0) 0 + primary-for QThread (0x7fc38e205a80) + +Vtable for QThreadPool +QThreadPool::_ZTV11QThreadPool: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QThreadPool) +16 QThreadPool::metaObject +24 QThreadPool::qt_metacast +32 QThreadPool::qt_metacall +40 QThreadPool::~QThreadPool +48 QThreadPool::~QThreadPool +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QThreadPool + size=16 align=8 + base size=16 base align=8 +QThreadPool (0x7fc38e22b930) 0 + vptr=((& QThreadPool::_ZTV11QThreadPool) + 16u) + QObject (0x7fc38e22b9a0) 0 + primary-for QThreadPool (0x7fc38e22b930) + +Class QWaitCondition + size=8 align=8 + base size=8 base align=8 +QWaitCondition (0x7fc38e23aee0) 0 + +Class QSemaphore + size=8 align=8 + base size=8 base align=8 +QSemaphore (0x7fc38e246460) 0 + +Class QtConcurrent::ThreadEngineBarrier + size=24 align=8 + base size=24 base align=8 +QtConcurrent::ThreadEngineBarrier (0x7fc38e2469a0) 0 + +Vtable for QtConcurrent::ThreadEngineBase +QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent16ThreadEngineBaseE) +16 QtConcurrent::ThreadEngineBase::run +24 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +32 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +40 QtConcurrent::ThreadEngineBase::start +48 QtConcurrent::ThreadEngineBase::finish +56 QtConcurrent::ThreadEngineBase::threadFunction +64 QtConcurrent::ThreadEngineBase::shouldStartThread +72 QtConcurrent::ThreadEngineBase::shouldThrottleThread +80 __cxa_pure_virtual + +Class QtConcurrent::ThreadEngineBase + size=64 align=8 + base size=64 base align=8 +QtConcurrent::ThreadEngineBase (0x7fc38e246a80) 0 + vptr=((& QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE) + 16u) + QRunnable (0x7fc38e246af0) 0 + primary-for QtConcurrent::ThreadEngineBase (0x7fc38e246a80) + +VTT for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTTN12QtConcurrent12ThreadEngineIvEE: 2u entries +0 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 24u) +8 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 136u) + +Class QtConcurrent::BlockSizeManager + size=96 align=8 + base size=92 base align=8 +QtConcurrent::BlockSizeManager (0x7fc38e092ee0) 0 + +Vtable for QFactoryInterface +QFactoryInterface::_ZTV17QFactoryInterface: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QFactoryInterface) +16 QFactoryInterface::~QFactoryInterface +24 QFactoryInterface::~QFactoryInterface +32 __cxa_pure_virtual + +Class QFactoryInterface + size=8 align=8 + base size=8 base align=8 +QFactoryInterface (0x7fc38dd3cd20) 0 nearly-empty + vptr=((& QFactoryInterface::_ZTV17QFactoryInterface) + 16u) + +Vtable for QTextCodecFactoryInterface +QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QTextCodecFactoryInterface) +16 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +24 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QTextCodecFactoryInterface + size=8 align=8 + base size=8 base align=8 +QTextCodecFactoryInterface (0x7fc38db6f000) 0 nearly-empty + vptr=((& QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface) + 16u) + QFactoryInterface (0x7fc38db6f070) 0 nearly-empty + primary-for QTextCodecFactoryInterface (0x7fc38db6f000) + +Vtable for QTextCodecPlugin +QTextCodecPlugin::_ZTV16QTextCodecPlugin: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QTextCodecPlugin) +16 QTextCodecPlugin::metaObject +24 QTextCodecPlugin::qt_metacast +32 QTextCodecPlugin::qt_metacall +40 QTextCodecPlugin::~QTextCodecPlugin +48 QTextCodecPlugin::~QTextCodecPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 QTextCodecPlugin::keys +160 QTextCodecPlugin::create +168 (int (*)(...))-0x00000000000000010 +176 (int (*)(...))(& _ZTI16QTextCodecPlugin) +184 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD1Ev +192 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD0Ev +200 QTextCodecPlugin::_ZThn16_NK16QTextCodecPlugin4keysEv +208 QTextCodecPlugin::_ZThn16_N16QTextCodecPlugin6createERK7QString + +Class QTextCodecPlugin + size=24 align=8 + base size=24 base align=8 +QTextCodecPlugin (0x7fc38db78580) 0 + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 16u) + QObject (0x7fc38db6fa80) 0 + primary-for QTextCodecPlugin (0x7fc38db78580) + QTextCodecFactoryInterface (0x7fc38db6faf0) 16 nearly-empty + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 184u) + QFactoryInterface (0x7fc38db6fb60) 16 nearly-empty + primary-for QTextCodecFactoryInterface (0x7fc38db6faf0) + +Class QLibraryInfo + size=1 align=1 + base size=0 base align=1 +QLibraryInfo (0x7fc38dbc6150) 0 empty + +Vtable for QEventLoop +QEventLoop::_ZTV10QEventLoop: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QEventLoop) +16 QEventLoop::metaObject +24 QEventLoop::qt_metacast +32 QEventLoop::qt_metacall +40 QEventLoop::~QEventLoop +48 QEventLoop::~QEventLoop +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QEventLoop + size=16 align=8 + base size=16 base align=8 +QEventLoop (0x7fc38dbc62a0) 0 + vptr=((& QEventLoop::_ZTV10QEventLoop) + 16u) + QObject (0x7fc38dbc6310) 0 + primary-for QEventLoop (0x7fc38dbc62a0) + +Vtable for QAbstractEventDispatcher +QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QAbstractEventDispatcher) +16 QAbstractEventDispatcher::metaObject +24 QAbstractEventDispatcher::qt_metacast +32 QAbstractEventDispatcher::qt_metacall +40 QAbstractEventDispatcher::~QAbstractEventDispatcher +48 QAbstractEventDispatcher::~QAbstractEventDispatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 QAbstractEventDispatcher::startingUp +208 QAbstractEventDispatcher::closingDown + +Class QAbstractEventDispatcher + size=16 align=8 + base size=16 base align=8 +QAbstractEventDispatcher (0x7fc38dbfebd0) 0 + vptr=((& QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher) + 16u) + QObject (0x7fc38dbfec40) 0 + primary-for QAbstractEventDispatcher (0x7fc38dbfebd0) + +Class QModelIndex + size=24 align=8 + base size=24 base align=8 +QModelIndex (0x7fc38dc28a80) 0 + +Class QPersistentModelIndex + size=8 align=8 + base size=8 base align=8 +QPersistentModelIndex (0x7fc38dc52540) 0 + +Vtable for QAbstractItemModel +QAbstractItemModel::_ZTV18QAbstractItemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractItemModel) +16 QAbstractItemModel::metaObject +24 QAbstractItemModel::qt_metacast +32 QAbstractItemModel::qt_metacall +40 QAbstractItemModel::~QAbstractItemModel +48 QAbstractItemModel::~QAbstractItemModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractItemModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractItemModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractItemModel + size=16 align=8 + base size=16 base align=8 +QAbstractItemModel (0x7fc38dc5c850) 0 + vptr=((& QAbstractItemModel::_ZTV18QAbstractItemModel) + 16u) + QObject (0x7fc38dc5c8c0) 0 + primary-for QAbstractItemModel (0x7fc38dc5c850) + +Vtable for QAbstractTableModel +QAbstractTableModel::_ZTV19QAbstractTableModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractTableModel) +16 QAbstractTableModel::metaObject +24 QAbstractTableModel::qt_metacast +32 QAbstractTableModel::qt_metacall +40 QAbstractTableModel::~QAbstractTableModel +48 QAbstractTableModel::~QAbstractTableModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractTableModel::index +120 QAbstractTableModel::parent +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractTableModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractTableModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractTableModel + size=16 align=8 + base size=16 base align=8 +QAbstractTableModel (0x7fc38dab9b60) 0 + vptr=((& QAbstractTableModel::_ZTV19QAbstractTableModel) + 16u) + QAbstractItemModel (0x7fc38dab9bd0) 0 + primary-for QAbstractTableModel (0x7fc38dab9b60) + QObject (0x7fc38dab9c40) 0 + primary-for QAbstractItemModel (0x7fc38dab9bd0) + +Vtable for QAbstractListModel +QAbstractListModel::_ZTV18QAbstractListModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractListModel) +16 QAbstractListModel::metaObject +24 QAbstractListModel::qt_metacast +32 QAbstractListModel::qt_metacall +40 QAbstractListModel::~QAbstractListModel +48 QAbstractListModel::~QAbstractListModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractListModel::index +120 QAbstractListModel::parent +128 __cxa_pure_virtual +136 QAbstractListModel::columnCount +144 QAbstractListModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractListModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractListModel + size=16 align=8 + base size=16 base align=8 +QAbstractListModel (0x7fc38dad30e0) 0 + vptr=((& QAbstractListModel::_ZTV18QAbstractListModel) + 16u) + QAbstractItemModel (0x7fc38dad3150) 0 + primary-for QAbstractListModel (0x7fc38dad30e0) + QObject (0x7fc38dad31c0) 0 + primary-for QAbstractItemModel (0x7fc38dad3150) + +Class QBasicTimer + size=4 align=4 + base size=4 base align=4 +QBasicTimer (0x7fc38db05230) 0 + +Vtable for QCoreApplication +QCoreApplication::_ZTV16QCoreApplication: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QCoreApplication) +16 QCoreApplication::metaObject +24 QCoreApplication::qt_metacast +32 QCoreApplication::qt_metacall +40 QCoreApplication::~QCoreApplication +48 QCoreApplication::~QCoreApplication +56 QCoreApplication::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCoreApplication::notify +120 QCoreApplication::compressEvent + +Class QCoreApplication + size=16 align=8 + base size=16 base align=8 +QCoreApplication (0x7fc38db0f620) 0 + vptr=((& QCoreApplication::_ZTV16QCoreApplication) + 16u) + QObject (0x7fc38db0f690) 0 + primary-for QCoreApplication (0x7fc38db0f620) + +Class __exception + size=40 align=8 + base size=40 base align=8 +__exception (0x7fc38db44310) 0 + +Class QMetaMethod + size=16 align=8 + base size=12 base align=8 +QMetaMethod (0x7fc38d9b0770) 0 + +Class QMetaEnum + size=16 align=8 + base size=12 base align=8 +QMetaEnum (0x7fc38d9cabd0) 0 + +Class QMetaProperty + size=32 align=8 + base size=32 base align=8 +QMetaProperty (0x7fc38d9d9930) 0 + +Class QMetaClassInfo + size=16 align=8 + base size=12 base align=8 +QMetaClassInfo (0x7fc38d9ea000) 0 + +Vtable for QMimeData +QMimeData::_ZTV9QMimeData: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QMimeData) +16 QMimeData::metaObject +24 QMimeData::qt_metacast +32 QMimeData::qt_metacall +40 QMimeData::~QMimeData +48 QMimeData::~QMimeData +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMimeData::hasFormat +120 QMimeData::formats +128 QMimeData::retrieveData + +Class QMimeData + size=16 align=8 + base size=16 base align=8 +QMimeData (0x7fc38d9eaaf0) 0 + vptr=((& QMimeData::_ZTV9QMimeData) + 16u) + QObject (0x7fc38d9eab60) 0 + primary-for QMimeData (0x7fc38d9eaaf0) + +Vtable for QObjectCleanupHandler +QObjectCleanupHandler::_ZTV21QObjectCleanupHandler: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QObjectCleanupHandler) +16 QObjectCleanupHandler::metaObject +24 QObjectCleanupHandler::qt_metacast +32 QObjectCleanupHandler::qt_metacall +40 QObjectCleanupHandler::~QObjectCleanupHandler +48 QObjectCleanupHandler::~QObjectCleanupHandler +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObjectCleanupHandler + size=24 align=8 + base size=24 base align=8 +QObjectCleanupHandler (0x7fc38da0d380) 0 + vptr=((& QObjectCleanupHandler::_ZTV21QObjectCleanupHandler) + 16u) + QObject (0x7fc38da0d3f0) 0 + primary-for QObjectCleanupHandler (0x7fc38da0d380) + +Vtable for QSharedMemory +QSharedMemory::_ZTV13QSharedMemory: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSharedMemory) +16 QSharedMemory::metaObject +24 QSharedMemory::qt_metacast +32 QSharedMemory::qt_metacall +40 QSharedMemory::~QSharedMemory +48 QSharedMemory::~QSharedMemory +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSharedMemory + size=16 align=8 + base size=16 base align=8 +QSharedMemory (0x7fc38da1f4d0) 0 + vptr=((& QSharedMemory::_ZTV13QSharedMemory) + 16u) + QObject (0x7fc38da1f540) 0 + primary-for QSharedMemory (0x7fc38da1f4d0) + +Vtable for QSignalMapper +QSignalMapper::_ZTV13QSignalMapper: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSignalMapper) +16 QSignalMapper::metaObject +24 QSignalMapper::qt_metacast +32 QSignalMapper::qt_metacall +40 QSignalMapper::~QSignalMapper +48 QSignalMapper::~QSignalMapper +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSignalMapper + size=16 align=8 + base size=16 base align=8 +QSignalMapper (0x7fc38da3c2a0) 0 + vptr=((& QSignalMapper::_ZTV13QSignalMapper) + 16u) + QObject (0x7fc38da3c310) 0 + primary-for QSignalMapper (0x7fc38da3c2a0) + +Vtable for QSocketNotifier +QSocketNotifier::_ZTV15QSocketNotifier: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSocketNotifier) +16 QSocketNotifier::metaObject +24 QSocketNotifier::qt_metacast +32 QSocketNotifier::qt_metacall +40 QSocketNotifier::~QSocketNotifier +48 QSocketNotifier::~QSocketNotifier +56 QSocketNotifier::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSocketNotifier + size=32 align=8 + base size=25 base align=8 +QSocketNotifier (0x7fc38da55690) 0 + vptr=((& QSocketNotifier::_ZTV15QSocketNotifier) + 16u) + QObject (0x7fc38da55700) 0 + primary-for QSocketNotifier (0x7fc38da55690) + +Class QSystemSemaphore + size=8 align=8 + base size=8 base align=8 +QSystemSemaphore (0x7fc38d86fa10) 0 + +Vtable for QTimer +QTimer::_ZTV6QTimer: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QTimer) +16 QTimer::metaObject +24 QTimer::qt_metacast +32 QTimer::qt_metacall +40 QTimer::~QTimer +48 QTimer::~QTimer +56 QObject::event +64 QObject::eventFilter +72 QTimer::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTimer + size=32 align=8 + base size=29 base align=8 +QTimer (0x7fc38d87a460) 0 + vptr=((& QTimer::_ZTV6QTimer) + 16u) + QObject (0x7fc38d87a4d0) 0 + primary-for QTimer (0x7fc38d87a460) + +Vtable for QTranslator +QTranslator::_ZTV11QTranslator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTranslator) +16 QTranslator::metaObject +24 QTranslator::qt_metacast +32 QTranslator::qt_metacall +40 QTranslator::~QTranslator +48 QTranslator::~QTranslator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTranslator::translate +120 QTranslator::isEmpty + +Class QTranslator + size=16 align=8 + base size=16 base align=8 +QTranslator (0x7fc38d89f9a0) 0 + vptr=((& QTranslator::_ZTV11QTranslator) + 16u) + QObject (0x7fc38d89fa10) 0 + primary-for QTranslator (0x7fc38d89f9a0) + +Vtable for QLibrary +QLibrary::_ZTV8QLibrary: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QLibrary) +16 QLibrary::metaObject +24 QLibrary::qt_metacast +32 QLibrary::qt_metacall +40 QLibrary::~QLibrary +48 QLibrary::~QLibrary +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QLibrary + size=32 align=8 + base size=25 base align=8 +QLibrary (0x7fc38d8b9930) 0 + vptr=((& QLibrary::_ZTV8QLibrary) + 16u) + QObject (0x7fc38d8b99a0) 0 + primary-for QLibrary (0x7fc38d8b9930) + +Vtable for QPluginLoader +QPluginLoader::_ZTV13QPluginLoader: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QPluginLoader) +16 QPluginLoader::metaObject +24 QPluginLoader::qt_metacast +32 QPluginLoader::qt_metacall +40 QPluginLoader::~QPluginLoader +48 QPluginLoader::~QPluginLoader +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QPluginLoader + size=32 align=8 + base size=25 base align=8 +QPluginLoader (0x7fc38d9063f0) 0 + vptr=((& QPluginLoader::_ZTV13QPluginLoader) + 16u) + QObject (0x7fc38d906460) 0 + primary-for QPluginLoader (0x7fc38d9063f0) + +Class QUuid + size=16 align=4 + base size=16 base align=4 +QUuid (0x7fc38d915b60) 0 + +Class QReadWriteLock + size=8 align=8 + base size=8 base align=8 +QReadWriteLock (0x7fc38d93e4d0) 0 + +Class QReadLocker + size=8 align=8 + base size=8 base align=8 +QReadLocker (0x7fc38d93eb60) 0 + +Class QWriteLocker + size=8 align=8 + base size=8 base align=8 +QWriteLocker (0x7fc38d95cee0) 0 + +Class QThreadStorageData + size=4 align=4 + base size=4 base align=4 +QThreadStorageData (0x7fc38d7762a0) 0 + +Vtable for QAbstractAnimation +QAbstractAnimation::_ZTV18QAbstractAnimation: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractAnimation) +16 QAbstractAnimation::metaObject +24 QAbstractAnimation::qt_metacast +32 QAbstractAnimation::qt_metacall +40 QAbstractAnimation::~QAbstractAnimation +48 QAbstractAnimation::~QAbstractAnimation +56 QAbstractAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAbstractAnimation::updateState +136 QAbstractAnimation::updateDirection + +Class QAbstractAnimation + size=16 align=8 + base size=16 base align=8 +QAbstractAnimation (0x7fc38d776a10) 0 + vptr=((& QAbstractAnimation::_ZTV18QAbstractAnimation) + 16u) + QObject (0x7fc38d776a80) 0 + primary-for QAbstractAnimation (0x7fc38d776a10) + +Vtable for QAnimationGroup +QAnimationGroup::_ZTV15QAnimationGroup: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QAnimationGroup) +16 QAnimationGroup::metaObject +24 QAnimationGroup::qt_metacast +32 QAnimationGroup::qt_metacall +40 QAnimationGroup::~QAnimationGroup +48 QAnimationGroup::~QAnimationGroup +56 QAnimationGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAbstractAnimation::updateState +136 QAbstractAnimation::updateDirection + +Class QAnimationGroup + size=16 align=8 + base size=16 base align=8 +QAnimationGroup (0x7fc38d7ad150) 0 + vptr=((& QAnimationGroup::_ZTV15QAnimationGroup) + 16u) + QAbstractAnimation (0x7fc38d7ad1c0) 0 + primary-for QAnimationGroup (0x7fc38d7ad150) + QObject (0x7fc38d7ad230) 0 + primary-for QAbstractAnimation (0x7fc38d7ad1c0) + +Vtable for QParallelAnimationGroup +QParallelAnimationGroup::_ZTV23QParallelAnimationGroup: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QParallelAnimationGroup) +16 QParallelAnimationGroup::metaObject +24 QParallelAnimationGroup::qt_metacast +32 QParallelAnimationGroup::qt_metacall +40 QParallelAnimationGroup::~QParallelAnimationGroup +48 QParallelAnimationGroup::~QParallelAnimationGroup +56 QParallelAnimationGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QParallelAnimationGroup::duration +120 QParallelAnimationGroup::updateCurrentTime +128 QParallelAnimationGroup::updateState +136 QParallelAnimationGroup::updateDirection + +Class QParallelAnimationGroup + size=16 align=8 + base size=16 base align=8 +QParallelAnimationGroup (0x7fc38d7c7000) 0 + vptr=((& QParallelAnimationGroup::_ZTV23QParallelAnimationGroup) + 16u) + QAnimationGroup (0x7fc38d7c7070) 0 + primary-for QParallelAnimationGroup (0x7fc38d7c7000) + QAbstractAnimation (0x7fc38d7c70e0) 0 + primary-for QAnimationGroup (0x7fc38d7c7070) + QObject (0x7fc38d7c7150) 0 + primary-for QAbstractAnimation (0x7fc38d7c70e0) + +Vtable for QPauseAnimation +QPauseAnimation::_ZTV15QPauseAnimation: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QPauseAnimation) +16 QPauseAnimation::metaObject +24 QPauseAnimation::qt_metacast +32 QPauseAnimation::qt_metacall +40 QPauseAnimation::~QPauseAnimation +48 QPauseAnimation::~QPauseAnimation +56 QPauseAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QPauseAnimation::duration +120 QPauseAnimation::updateCurrentTime +128 QAbstractAnimation::updateState +136 QAbstractAnimation::updateDirection + +Class QPauseAnimation + size=16 align=8 + base size=16 base align=8 +QPauseAnimation (0x7fc38d7d5e70) 0 + vptr=((& QPauseAnimation::_ZTV15QPauseAnimation) + 16u) + QAbstractAnimation (0x7fc38d7d5ee0) 0 + primary-for QPauseAnimation (0x7fc38d7d5e70) + QObject (0x7fc38d7d5f50) 0 + primary-for QAbstractAnimation (0x7fc38d7d5ee0) + +Vtable for QVariantAnimation +QVariantAnimation::_ZTV17QVariantAnimation: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QVariantAnimation) +16 QVariantAnimation::metaObject +24 QVariantAnimation::qt_metacast +32 QVariantAnimation::qt_metacall +40 QVariantAnimation::~QVariantAnimation +48 QVariantAnimation::~QVariantAnimation +56 QVariantAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QVariantAnimation::duration +120 QVariantAnimation::updateCurrentTime +128 QVariantAnimation::updateState +136 QAbstractAnimation::updateDirection +144 __cxa_pure_virtual +152 QVariantAnimation::interpolated + +Class QVariantAnimation + size=16 align=8 + base size=16 base align=8 +QVariantAnimation (0x7fc38d7f28c0) 0 + vptr=((& QVariantAnimation::_ZTV17QVariantAnimation) + 16u) + QAbstractAnimation (0x7fc38d7f2930) 0 + primary-for QVariantAnimation (0x7fc38d7f28c0) + QObject (0x7fc38d7f29a0) 0 + primary-for QAbstractAnimation (0x7fc38d7f2930) + +Vtable for QPropertyAnimation +QPropertyAnimation::_ZTV18QPropertyAnimation: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QPropertyAnimation) +16 QPropertyAnimation::metaObject +24 QPropertyAnimation::qt_metacast +32 QPropertyAnimation::qt_metacall +40 QPropertyAnimation::~QPropertyAnimation +48 QPropertyAnimation::~QPropertyAnimation +56 QPropertyAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QVariantAnimation::duration +120 QVariantAnimation::updateCurrentTime +128 QPropertyAnimation::updateState +136 QAbstractAnimation::updateDirection +144 QPropertyAnimation::updateCurrentValue +152 QVariantAnimation::interpolated + +Class QPropertyAnimation + size=16 align=8 + base size=16 base align=8 +QPropertyAnimation (0x7fc38d810b60) 0 + vptr=((& QPropertyAnimation::_ZTV18QPropertyAnimation) + 16u) + QVariantAnimation (0x7fc38d810bd0) 0 + primary-for QPropertyAnimation (0x7fc38d810b60) + QAbstractAnimation (0x7fc38d810c40) 0 + primary-for QVariantAnimation (0x7fc38d810bd0) + QObject (0x7fc38d810cb0) 0 + primary-for QAbstractAnimation (0x7fc38d810c40) + +Vtable for QSequentialAnimationGroup +QSequentialAnimationGroup::_ZTV25QSequentialAnimationGroup: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QSequentialAnimationGroup) +16 QSequentialAnimationGroup::metaObject +24 QSequentialAnimationGroup::qt_metacast +32 QSequentialAnimationGroup::qt_metacall +40 QSequentialAnimationGroup::~QSequentialAnimationGroup +48 QSequentialAnimationGroup::~QSequentialAnimationGroup +56 QSequentialAnimationGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QSequentialAnimationGroup::duration +120 QSequentialAnimationGroup::updateCurrentTime +128 QSequentialAnimationGroup::updateState +136 QSequentialAnimationGroup::updateDirection + +Class QSequentialAnimationGroup + size=16 align=8 + base size=16 base align=8 +QSequentialAnimationGroup (0x7fc38d829b60) 0 + vptr=((& QSequentialAnimationGroup::_ZTV25QSequentialAnimationGroup) + 16u) + QAnimationGroup (0x7fc38d829bd0) 0 + primary-for QSequentialAnimationGroup (0x7fc38d829b60) + QAbstractAnimation (0x7fc38d829c40) 0 + primary-for QAnimationGroup (0x7fc38d829bd0) + QObject (0x7fc38d829cb0) 0 + primary-for QAbstractAnimation (0x7fc38d829c40) + +Class QColor + size=16 align=4 + base size=14 base align=4 +QColor (0x7fc38d852620) 0 + +Class QRegion::QRegionData + size=32 align=8 + base size=32 base align=8 +QRegion::QRegionData (0x7fc38d6ca5b0) 0 + +Class QRegion + size=8 align=8 + base size=8 base align=8 +QRegion (0x7fc38d6a6cb0) 0 + +Class QKeySequence + size=8 align=8 + base size=8 base align=8 +QKeySequence (0x7fc38d6dfe00) 0 + +Vtable for QMimeSource +QMimeSource::_ZTV11QMimeSource: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMimeSource) +16 QMimeSource::~QMimeSource +24 QMimeSource::~QMimeSource +32 __cxa_pure_virtual +40 QMimeSource::provides +48 __cxa_pure_virtual + +Class QMimeSource + size=8 align=8 + base size=8 base align=8 +QMimeSource (0x7fc38d71f770) 0 nearly-empty + vptr=((& QMimeSource::_ZTV11QMimeSource) + 16u) + +Vtable for QDrag +QDrag::_ZTV5QDrag: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QDrag) +16 QDrag::metaObject +24 QDrag::qt_metacast +32 QDrag::qt_metacall +40 QDrag::~QDrag +48 QDrag::~QDrag +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QDrag + size=16 align=8 + base size=16 base align=8 +QDrag (0x7fc38d71f8c0) 0 + vptr=((& QDrag::_ZTV5QDrag) + 16u) + QObject (0x7fc38d71f930) 0 + primary-for QDrag (0x7fc38d71f8c0) + +Vtable for QInputEvent +QInputEvent::_ZTV11QInputEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QInputEvent) +16 QInputEvent::~QInputEvent +24 QInputEvent::~QInputEvent + +Class QInputEvent + size=24 align=8 + base size=24 base align=8 +QInputEvent (0x7fc38d745070) 0 + vptr=((& QInputEvent::_ZTV11QInputEvent) + 16u) + QEvent (0x7fc38d7450e0) 0 + primary-for QInputEvent (0x7fc38d745070) + +Vtable for QMouseEvent +QMouseEvent::_ZTV11QMouseEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMouseEvent) +16 QMouseEvent::~QMouseEvent +24 QMouseEvent::~QMouseEvent + +Class QMouseEvent + size=48 align=8 + base size=48 base align=8 +QMouseEvent (0x7fc38d745930) 0 + vptr=((& QMouseEvent::_ZTV11QMouseEvent) + 16u) + QInputEvent (0x7fc38d7459a0) 0 + primary-for QMouseEvent (0x7fc38d745930) + QEvent (0x7fc38d745a10) 0 + primary-for QInputEvent (0x7fc38d7459a0) + +Vtable for QHoverEvent +QHoverEvent::_ZTV11QHoverEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QHoverEvent) +16 QHoverEvent::~QHoverEvent +24 QHoverEvent::~QHoverEvent + +Class QHoverEvent + size=40 align=8 + base size=36 base align=8 +QHoverEvent (0x7fc38d572700) 0 + vptr=((& QHoverEvent::_ZTV11QHoverEvent) + 16u) + QEvent (0x7fc38d572770) 0 + primary-for QHoverEvent (0x7fc38d572700) + +Vtable for QWheelEvent +QWheelEvent::_ZTV11QWheelEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QWheelEvent) +16 QWheelEvent::~QWheelEvent +24 QWheelEvent::~QWheelEvent + +Class QWheelEvent + size=56 align=8 + base size=52 base align=8 +QWheelEvent (0x7fc38d572e70) 0 + vptr=((& QWheelEvent::_ZTV11QWheelEvent) + 16u) + QInputEvent (0x7fc38d572ee0) 0 + primary-for QWheelEvent (0x7fc38d572e70) + QEvent (0x7fc38d572f50) 0 + primary-for QInputEvent (0x7fc38d572ee0) + +Vtable for QTabletEvent +QTabletEvent::_ZTV12QTabletEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTabletEvent) +16 QTabletEvent::~QTabletEvent +24 QTabletEvent::~QTabletEvent + +Class QTabletEvent + size=120 align=8 + base size=120 base align=8 +QTabletEvent (0x7fc38d58cc40) 0 + vptr=((& QTabletEvent::_ZTV12QTabletEvent) + 16u) + QInputEvent (0x7fc38d58ccb0) 0 + primary-for QTabletEvent (0x7fc38d58cc40) + QEvent (0x7fc38d58cd20) 0 + primary-for QInputEvent (0x7fc38d58ccb0) + +Vtable for QKeyEvent +QKeyEvent::_ZTV9QKeyEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QKeyEvent) +16 QKeyEvent::~QKeyEvent +24 QKeyEvent::~QKeyEvent + +Class QKeyEvent + size=40 align=8 + base size=39 base align=8 +QKeyEvent (0x7fc38d5abf50) 0 + vptr=((& QKeyEvent::_ZTV9QKeyEvent) + 16u) + QInputEvent (0x7fc38d5b1000) 0 + primary-for QKeyEvent (0x7fc38d5abf50) + QEvent (0x7fc38d5b1070) 0 + primary-for QInputEvent (0x7fc38d5b1000) + +Vtable for QFocusEvent +QFocusEvent::_ZTV11QFocusEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFocusEvent) +16 QFocusEvent::~QFocusEvent +24 QFocusEvent::~QFocusEvent + +Class QFocusEvent + size=24 align=8 + base size=24 base align=8 +QFocusEvent (0x7fc38d5d4930) 0 + vptr=((& QFocusEvent::_ZTV11QFocusEvent) + 16u) + QEvent (0x7fc38d5d49a0) 0 + primary-for QFocusEvent (0x7fc38d5d4930) + +Vtable for QPaintEvent +QPaintEvent::_ZTV11QPaintEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QPaintEvent) +16 QPaintEvent::~QPaintEvent +24 QPaintEvent::~QPaintEvent + +Class QPaintEvent + size=56 align=8 + base size=49 base align=8 +QPaintEvent (0x7fc38d5e1380) 0 + vptr=((& QPaintEvent::_ZTV11QPaintEvent) + 16u) + QEvent (0x7fc38d5e13f0) 0 + primary-for QPaintEvent (0x7fc38d5e1380) + +Vtable for QUpdateLaterEvent +QUpdateLaterEvent::_ZTV17QUpdateLaterEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QUpdateLaterEvent) +16 QUpdateLaterEvent::~QUpdateLaterEvent +24 QUpdateLaterEvent::~QUpdateLaterEvent + +Class QUpdateLaterEvent + size=32 align=8 + base size=32 base align=8 +QUpdateLaterEvent (0x7fc38d5ed000) 0 + vptr=((& QUpdateLaterEvent::_ZTV17QUpdateLaterEvent) + 16u) + QEvent (0x7fc38d5ed070) 0 + primary-for QUpdateLaterEvent (0x7fc38d5ed000) + +Vtable for QMoveEvent +QMoveEvent::_ZTV10QMoveEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QMoveEvent) +16 QMoveEvent::~QMoveEvent +24 QMoveEvent::~QMoveEvent + +Class QMoveEvent + size=40 align=8 + base size=36 base align=8 +QMoveEvent (0x7fc38d5ed460) 0 + vptr=((& QMoveEvent::_ZTV10QMoveEvent) + 16u) + QEvent (0x7fc38d5ed4d0) 0 + primary-for QMoveEvent (0x7fc38d5ed460) + +Vtable for QResizeEvent +QResizeEvent::_ZTV12QResizeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QResizeEvent) +16 QResizeEvent::~QResizeEvent +24 QResizeEvent::~QResizeEvent + +Class QResizeEvent + size=40 align=8 + base size=36 base align=8 +QResizeEvent (0x7fc38d5edaf0) 0 + vptr=((& QResizeEvent::_ZTV12QResizeEvent) + 16u) + QEvent (0x7fc38d5edb60) 0 + primary-for QResizeEvent (0x7fc38d5edaf0) + +Vtable for QCloseEvent +QCloseEvent::_ZTV11QCloseEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QCloseEvent) +16 QCloseEvent::~QCloseEvent +24 QCloseEvent::~QCloseEvent + +Class QCloseEvent + size=24 align=8 + base size=20 base align=8 +QCloseEvent (0x7fc38d5fe070) 0 + vptr=((& QCloseEvent::_ZTV11QCloseEvent) + 16u) + QEvent (0x7fc38d5fe0e0) 0 + primary-for QCloseEvent (0x7fc38d5fe070) + +Vtable for QIconDragEvent +QIconDragEvent::_ZTV14QIconDragEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QIconDragEvent) +16 QIconDragEvent::~QIconDragEvent +24 QIconDragEvent::~QIconDragEvent + +Class QIconDragEvent + size=24 align=8 + base size=20 base align=8 +QIconDragEvent (0x7fc38d5fe2a0) 0 + vptr=((& QIconDragEvent::_ZTV14QIconDragEvent) + 16u) + QEvent (0x7fc38d5fe310) 0 + primary-for QIconDragEvent (0x7fc38d5fe2a0) + +Vtable for QShowEvent +QShowEvent::_ZTV10QShowEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QShowEvent) +16 QShowEvent::~QShowEvent +24 QShowEvent::~QShowEvent + +Class QShowEvent + size=24 align=8 + base size=20 base align=8 +QShowEvent (0x7fc38d5fe4d0) 0 + vptr=((& QShowEvent::_ZTV10QShowEvent) + 16u) + QEvent (0x7fc38d5fe540) 0 + primary-for QShowEvent (0x7fc38d5fe4d0) + +Vtable for QHideEvent +QHideEvent::_ZTV10QHideEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QHideEvent) +16 QHideEvent::~QHideEvent +24 QHideEvent::~QHideEvent + +Class QHideEvent + size=24 align=8 + base size=20 base align=8 +QHideEvent (0x7fc38d5fe700) 0 + vptr=((& QHideEvent::_ZTV10QHideEvent) + 16u) + QEvent (0x7fc38d5fe770) 0 + primary-for QHideEvent (0x7fc38d5fe700) + +Vtable for QContextMenuEvent +QContextMenuEvent::_ZTV17QContextMenuEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QContextMenuEvent) +16 QContextMenuEvent::~QContextMenuEvent +24 QContextMenuEvent::~QContextMenuEvent + +Class QContextMenuEvent + size=48 align=8 + base size=41 base align=8 +QContextMenuEvent (0x7fc38d5fe930) 0 + vptr=((& QContextMenuEvent::_ZTV17QContextMenuEvent) + 16u) + QInputEvent (0x7fc38d5fe9a0) 0 + primary-for QContextMenuEvent (0x7fc38d5fe930) + QEvent (0x7fc38d5fea10) 0 + primary-for QInputEvent (0x7fc38d5fe9a0) + +Class QInputMethodEvent::Attribute + size=32 align=8 + base size=32 base align=8 +QInputMethodEvent::Attribute (0x7fc38d6184d0) 0 + +Vtable for QInputMethodEvent +QInputMethodEvent::_ZTV17QInputMethodEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QInputMethodEvent) +16 QInputMethodEvent::~QInputMethodEvent +24 QInputMethodEvent::~QInputMethodEvent + +Class QInputMethodEvent + size=56 align=8 + base size=56 base align=8 +QInputMethodEvent (0x7fc38d6183f0) 0 + vptr=((& QInputMethodEvent::_ZTV17QInputMethodEvent) + 16u) + QEvent (0x7fc38d618460) 0 + primary-for QInputMethodEvent (0x7fc38d6183f0) + +Vtable for QDropEvent +QDropEvent::_ZTV10QDropEvent: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QDropEvent) +16 QDropEvent::~QDropEvent +24 QDropEvent::~QDropEvent +32 QDropEvent::format +40 QDropEvent::encodedData +48 QDropEvent::provides +56 (int (*)(...))-0x00000000000000018 +64 (int (*)(...))(& _ZTI10QDropEvent) +72 QDropEvent::_ZThn24_N10QDropEventD1Ev +80 QDropEvent::_ZThn24_N10QDropEventD0Ev +88 QDropEvent::_ZThn24_NK10QDropEvent6formatEi +96 QDropEvent::_ZThn24_NK10QDropEvent8providesEPKc +104 QDropEvent::_ZThn24_NK10QDropEvent11encodedDataEPKc + +Class QDropEvent + size=80 align=8 + base size=80 base align=8 +QDropEvent (0x7fc38d652200) 0 + vptr=((& QDropEvent::_ZTV10QDropEvent) + 16u) + QEvent (0x7fc38d651bd0) 0 + primary-for QDropEvent (0x7fc38d652200) + QMimeSource (0x7fc38d651c40) 24 nearly-empty + vptr=((& QDropEvent::_ZTV10QDropEvent) + 72u) + +Vtable for QDragMoveEvent +QDragMoveEvent::_ZTV14QDragMoveEvent: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QDragMoveEvent) +16 QDragMoveEvent::~QDragMoveEvent +24 QDragMoveEvent::~QDragMoveEvent +32 QDropEvent::format +40 QDropEvent::encodedData +48 QDropEvent::provides +56 (int (*)(...))-0x00000000000000018 +64 (int (*)(...))(& _ZTI14QDragMoveEvent) +72 QDragMoveEvent::_ZThn24_N14QDragMoveEventD1Ev +80 QDragMoveEvent::_ZThn24_N14QDragMoveEventD0Ev +88 QDropEvent::_ZThn24_NK10QDropEvent6formatEi +96 QDropEvent::_ZThn24_NK10QDropEvent8providesEPKc +104 QDropEvent::_ZThn24_NK10QDropEvent11encodedDataEPKc + +Class QDragMoveEvent + size=96 align=8 + base size=96 base align=8 +QDragMoveEvent (0x7fc38d66c930) 0 + vptr=((& QDragMoveEvent::_ZTV14QDragMoveEvent) + 16u) + QDropEvent (0x7fc38d669900) 0 + primary-for QDragMoveEvent (0x7fc38d66c930) + QEvent (0x7fc38d66c9a0) 0 + primary-for QDropEvent (0x7fc38d669900) + QMimeSource (0x7fc38d66ca10) 24 nearly-empty + vptr=((& QDragMoveEvent::_ZTV14QDragMoveEvent) + 72u) + +Vtable for QDragEnterEvent +QDragEnterEvent::_ZTV15QDragEnterEvent: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QDragEnterEvent) +16 QDragEnterEvent::~QDragEnterEvent +24 QDragEnterEvent::~QDragEnterEvent +32 QDropEvent::format +40 QDropEvent::encodedData +48 QDropEvent::provides +56 (int (*)(...))-0x00000000000000018 +64 (int (*)(...))(& _ZTI15QDragEnterEvent) +72 QDragEnterEvent::_ZThn24_N15QDragEnterEventD1Ev +80 QDragEnterEvent::_ZThn24_N15QDragEnterEventD0Ev +88 QDropEvent::_ZThn24_NK10QDropEvent6formatEi +96 QDropEvent::_ZThn24_NK10QDropEvent8providesEPKc +104 QDropEvent::_ZThn24_NK10QDropEvent11encodedDataEPKc + +Class QDragEnterEvent + size=96 align=8 + base size=96 base align=8 +QDragEnterEvent (0x7fc38d47c0e0) 0 + vptr=((& QDragEnterEvent::_ZTV15QDragEnterEvent) + 16u) + QDragMoveEvent (0x7fc38d47c150) 0 + primary-for QDragEnterEvent (0x7fc38d47c0e0) + QDropEvent (0x7fc38d47a280) 0 + primary-for QDragMoveEvent (0x7fc38d47c150) + QEvent (0x7fc38d47c1c0) 0 + primary-for QDropEvent (0x7fc38d47a280) + QMimeSource (0x7fc38d47c230) 24 nearly-empty + vptr=((& QDragEnterEvent::_ZTV15QDragEnterEvent) + 72u) + +Vtable for QDragResponseEvent +QDragResponseEvent::_ZTV18QDragResponseEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QDragResponseEvent) +16 QDragResponseEvent::~QDragResponseEvent +24 QDragResponseEvent::~QDragResponseEvent + +Class QDragResponseEvent + size=24 align=8 + base size=21 base align=8 +QDragResponseEvent (0x7fc38d47c3f0) 0 + vptr=((& QDragResponseEvent::_ZTV18QDragResponseEvent) + 16u) + QEvent (0x7fc38d47c460) 0 + primary-for QDragResponseEvent (0x7fc38d47c3f0) + +Vtable for QDragLeaveEvent +QDragLeaveEvent::_ZTV15QDragLeaveEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QDragLeaveEvent) +16 QDragLeaveEvent::~QDragLeaveEvent +24 QDragLeaveEvent::~QDragLeaveEvent + +Class QDragLeaveEvent + size=24 align=8 + base size=20 base align=8 +QDragLeaveEvent (0x7fc38d47c850) 0 + vptr=((& QDragLeaveEvent::_ZTV15QDragLeaveEvent) + 16u) + QEvent (0x7fc38d47c8c0) 0 + primary-for QDragLeaveEvent (0x7fc38d47c850) + +Vtable for QHelpEvent +QHelpEvent::_ZTV10QHelpEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QHelpEvent) +16 QHelpEvent::~QHelpEvent +24 QHelpEvent::~QHelpEvent + +Class QHelpEvent + size=40 align=8 + base size=36 base align=8 +QHelpEvent (0x7fc38d47ca80) 0 + vptr=((& QHelpEvent::_ZTV10QHelpEvent) + 16u) + QEvent (0x7fc38d47caf0) 0 + primary-for QHelpEvent (0x7fc38d47ca80) + +Vtable for QStatusTipEvent +QStatusTipEvent::_ZTV15QStatusTipEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QStatusTipEvent) +16 QStatusTipEvent::~QStatusTipEvent +24 QStatusTipEvent::~QStatusTipEvent + +Class QStatusTipEvent + size=32 align=8 + base size=32 base align=8 +QStatusTipEvent (0x7fc38d48eaf0) 0 + vptr=((& QStatusTipEvent::_ZTV15QStatusTipEvent) + 16u) + QEvent (0x7fc38d48eb60) 0 + primary-for QStatusTipEvent (0x7fc38d48eaf0) + +Vtable for QWhatsThisClickedEvent +QWhatsThisClickedEvent::_ZTV22QWhatsThisClickedEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QWhatsThisClickedEvent) +16 QWhatsThisClickedEvent::~QWhatsThisClickedEvent +24 QWhatsThisClickedEvent::~QWhatsThisClickedEvent + +Class QWhatsThisClickedEvent + size=32 align=8 + base size=32 base align=8 +QWhatsThisClickedEvent (0x7fc38d48ecb0) 0 + vptr=((& QWhatsThisClickedEvent::_ZTV22QWhatsThisClickedEvent) + 16u) + QEvent (0x7fc38d497000) 0 + primary-for QWhatsThisClickedEvent (0x7fc38d48ecb0) + +Vtable for QActionEvent +QActionEvent::_ZTV12QActionEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QActionEvent) +16 QActionEvent::~QActionEvent +24 QActionEvent::~QActionEvent + +Class QActionEvent + size=40 align=8 + base size=40 base align=8 +QActionEvent (0x7fc38d497460) 0 + vptr=((& QActionEvent::_ZTV12QActionEvent) + 16u) + QEvent (0x7fc38d4974d0) 0 + primary-for QActionEvent (0x7fc38d497460) + +Vtable for QFileOpenEvent +QFileOpenEvent::_ZTV14QFileOpenEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QFileOpenEvent) +16 QFileOpenEvent::~QFileOpenEvent +24 QFileOpenEvent::~QFileOpenEvent + +Class QFileOpenEvent + size=32 align=8 + base size=32 base align=8 +QFileOpenEvent (0x7fc38d497af0) 0 + vptr=((& QFileOpenEvent::_ZTV14QFileOpenEvent) + 16u) + QEvent (0x7fc38d497b60) 0 + primary-for QFileOpenEvent (0x7fc38d497af0) + +Vtable for QToolBarChangeEvent +QToolBarChangeEvent::_ZTV19QToolBarChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QToolBarChangeEvent) +16 QToolBarChangeEvent::~QToolBarChangeEvent +24 QToolBarChangeEvent::~QToolBarChangeEvent + +Class QToolBarChangeEvent + size=24 align=8 + base size=21 base align=8 +QToolBarChangeEvent (0x7fc38d497620) 0 + vptr=((& QToolBarChangeEvent::_ZTV19QToolBarChangeEvent) + 16u) + QEvent (0x7fc38d497d20) 0 + primary-for QToolBarChangeEvent (0x7fc38d497620) + +Vtable for QShortcutEvent +QShortcutEvent::_ZTV14QShortcutEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QShortcutEvent) +16 QShortcutEvent::~QShortcutEvent +24 QShortcutEvent::~QShortcutEvent + +Class QShortcutEvent + size=40 align=8 + base size=40 base align=8 +QShortcutEvent (0x7fc38d4aa460) 0 + vptr=((& QShortcutEvent::_ZTV14QShortcutEvent) + 16u) + QEvent (0x7fc38d4aa4d0) 0 + primary-for QShortcutEvent (0x7fc38d4aa460) + +Vtable for QClipboardEvent +QClipboardEvent::_ZTV15QClipboardEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QClipboardEvent) +16 QClipboardEvent::~QClipboardEvent +24 QClipboardEvent::~QClipboardEvent + +Class QClipboardEvent + size=24 align=8 + base size=20 base align=8 +QClipboardEvent (0x7fc38d4b5310) 0 + vptr=((& QClipboardEvent::_ZTV15QClipboardEvent) + 16u) + QEvent (0x7fc38d4b5380) 0 + primary-for QClipboardEvent (0x7fc38d4b5310) + +Vtable for QWindowStateChangeEvent +QWindowStateChangeEvent::_ZTV23QWindowStateChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QWindowStateChangeEvent) +16 QWindowStateChangeEvent::~QWindowStateChangeEvent +24 QWindowStateChangeEvent::~QWindowStateChangeEvent + +Class QWindowStateChangeEvent + size=24 align=8 + base size=24 base align=8 +QWindowStateChangeEvent (0x7fc38d4b5770) 0 + vptr=((& QWindowStateChangeEvent::_ZTV23QWindowStateChangeEvent) + 16u) + QEvent (0x7fc38d4b57e0) 0 + primary-for QWindowStateChangeEvent (0x7fc38d4b5770) + +Vtable for QMenubarUpdatedEvent +QMenubarUpdatedEvent::_ZTV20QMenubarUpdatedEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QMenubarUpdatedEvent) +16 QMenubarUpdatedEvent::~QMenubarUpdatedEvent +24 QMenubarUpdatedEvent::~QMenubarUpdatedEvent + +Class QMenubarUpdatedEvent + size=32 align=8 + base size=32 base align=8 +QMenubarUpdatedEvent (0x7fc38d4b5cb0) 0 + vptr=((& QMenubarUpdatedEvent::_ZTV20QMenubarUpdatedEvent) + 16u) + QEvent (0x7fc38d4b5d20) 0 + primary-for QMenubarUpdatedEvent (0x7fc38d4b5cb0) + +Class QTouchEvent::TouchPoint + size=8 align=8 + base size=8 base align=8 +QTouchEvent::TouchPoint (0x7fc38d4c67e0) 0 + +Vtable for QTouchEvent +QTouchEvent::_ZTV11QTouchEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTouchEvent) +16 QTouchEvent::~QTouchEvent +24 QTouchEvent::~QTouchEvent + +Class QTouchEvent + size=48 align=8 + base size=48 base align=8 +QTouchEvent (0x7fc38d4c6690) 0 + vptr=((& QTouchEvent::_ZTV11QTouchEvent) + 16u) + QInputEvent (0x7fc38d4c6700) 0 + primary-for QTouchEvent (0x7fc38d4c6690) + QEvent (0x7fc38d4c6770) 0 + primary-for QInputEvent (0x7fc38d4c6700) + +Vtable for QGestureEvent +QGestureEvent::_ZTV13QGestureEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QGestureEvent) +16 QGestureEvent::~QGestureEvent +24 QGestureEvent::~QGestureEvent + +Class QGestureEvent + size=24 align=8 + base size=20 base align=8 +QGestureEvent (0x7fc38d50dd20) 0 + vptr=((& QGestureEvent::_ZTV13QGestureEvent) + 16u) + QEvent (0x7fc38d50dd90) 0 + primary-for QGestureEvent (0x7fc38d50dd20) + +Class QFont + size=16 align=8 + base size=12 base align=8 +QFont (0x7fc38d512310) 0 + +Class QPolygon + size=8 align=8 + base size=8 base align=8 +QPolygon (0x7fc38d5630e0) 0 + QVector (0x7fc38d563150) 0 + +Class QPolygonF + size=8 align=8 + base size=8 base align=8 +QPolygonF (0x7fc38d39f620) 0 + QVector (0x7fc38d39f690) 0 + +Class QMatrix + size=48 align=8 + base size=48 base align=8 +QMatrix (0x7fc38d3e3770) 0 + +Class QPainterPath::Element + size=24 align=8 + base size=24 base align=8 +QPainterPath::Element (0x7fc38d4278c0) 0 + +Class QPainterPath + size=8 align=8 + base size=8 base align=8 +QPainterPath (0x7fc38d427850) 0 + +Class QPainterPathPrivate + size=16 align=8 + base size=16 base align=8 +QPainterPathPrivate (0x7fc38d282000) 0 + +Class QPainterPathStroker + size=8 align=8 + base size=8 base align=8 +QPainterPathStroker (0x7fc38d282af0) 0 + +Class QTransform + size=88 align=8 + base size=88 base align=8 +QTransform (0x7fc38d2edaf0) 0 + +Vtable for QPaintDevice +QPaintDevice::_ZTV12QPaintDevice: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QPaintDevice) +16 QPaintDevice::~QPaintDevice +24 QPaintDevice::~QPaintDevice +32 QPaintDevice::devType +40 __cxa_pure_virtual +48 QPaintDevice::metric + +Class QPaintDevice + size=16 align=8 + base size=10 base align=8 +QPaintDevice (0x7fc38d19a150) 0 + vptr=((& QPaintDevice::_ZTV12QPaintDevice) + 16u) + +Class QImageTextKeyLang + size=16 align=8 + base size=16 base align=8 +QImageTextKeyLang (0x7fc38d1bf070) 0 + +Vtable for QImage +QImage::_ZTV6QImage: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QImage) +16 QImage::~QImage +24 QImage::~QImage +32 QImage::devType +40 QImage::paintEngine +48 QImage::metric + +Class QImage + size=24 align=8 + base size=24 base align=8 +QImage (0x7fc38d1e98c0) 0 + vptr=((& QImage::_ZTV6QImage) + 16u) + QPaintDevice (0x7fc38d1e9930) 0 + primary-for QImage (0x7fc38d1e98c0) + +Vtable for QPixmap +QPixmap::_ZTV7QPixmap: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QPixmap) +16 QPixmap::~QPixmap +24 QPixmap::~QPixmap +32 QPixmap::devType +40 QPixmap::paintEngine +48 QPixmap::metric + +Class QPixmap + size=24 align=8 + base size=24 base align=8 +QPixmap (0x7fc38d08c070) 0 + vptr=((& QPixmap::_ZTV7QPixmap) + 16u) + QPaintDevice (0x7fc38d08c0e0) 0 + primary-for QPixmap (0x7fc38d08c070) + +Class QBrush + size=8 align=8 + base size=8 base align=8 +QBrush (0x7fc38d0ea380) 0 + +Class QBrushData + size=112 align=8 + base size=112 base align=8 +QBrushData (0x7fc38d105d90) 0 + +Class QGradient + size=64 align=8 + base size=64 base align=8 +QGradient (0x7fc38d11af50) 0 + +Class QLinearGradient + size=64 align=8 + base size=64 base align=8 +QLinearGradient (0x7fc38d15ca10) 0 + QGradient (0x7fc38d15ca80) 0 + +Class QRadialGradient + size=64 align=8 + base size=64 base align=8 +QRadialGradient (0x7fc38d15cee0) 0 + QGradient (0x7fc38d15cf50) 0 + +Class QConicalGradient + size=64 align=8 + base size=64 base align=8 +QConicalGradient (0x7fc38cf664d0) 0 + QGradient (0x7fc38cf66540) 0 + +Class QPen + size=8 align=8 + base size=8 base align=8 +QPen (0x7fc38cf66850) 0 + +Class QTextOption::Tab + size=16 align=8 + base size=14 base align=8 +QTextOption::Tab (0x7fc38cf82e00) 0 + +Class QTextOption + size=32 align=8 + base size=32 base align=8 +QTextOption (0x7fc38cf82d90) 0 + +Class QTextLength + size=16 align=8 + base size=16 base align=8 +QTextLength (0x7fc38cff3150) 0 + +Class QTextFormat + size=16 align=8 + base size=12 base align=8 +QTextFormat (0x7fc38d00e4d0) 0 + +Class QTextCharFormat + size=16 align=8 + base size=12 base align=8 +QTextCharFormat (0x7fc38cec5540) 0 + QTextFormat (0x7fc38cec55b0) 0 + +Class QTextBlockFormat + size=16 align=8 + base size=12 base align=8 +QTextBlockFormat (0x7fc38cf281c0) 0 + QTextFormat (0x7fc38cf28230) 0 + +Class QTextListFormat + size=16 align=8 + base size=12 base align=8 +QTextListFormat (0x7fc38cf477e0) 0 + QTextFormat (0x7fc38cf47850) 0 + +Class QTextImageFormat + size=16 align=8 + base size=12 base align=8 +QTextImageFormat (0x7fc38cf53d20) 0 + QTextCharFormat (0x7fc38cf53d90) 0 + QTextFormat (0x7fc38cf53e00) 0 + +Class QTextFrameFormat + size=16 align=8 + base size=12 base align=8 +QTextFrameFormat (0x7fc38cd64460) 0 + QTextFormat (0x7fc38cd644d0) 0 + +Class QTextTableFormat + size=16 align=8 + base size=12 base align=8 +QTextTableFormat (0x7fc38cd9a380) 0 + QTextFrameFormat (0x7fc38cd9a3f0) 0 + QTextFormat (0x7fc38cd9a460) 0 + +Class QTextTableCellFormat + size=16 align=8 + base size=12 base align=8 +QTextTableCellFormat (0x7fc38cdb5230) 0 + QTextCharFormat (0x7fc38cdb52a0) 0 + QTextFormat (0x7fc38cdb5310) 0 + +Class QTextInlineObject + size=16 align=8 + base size=16 base align=8 +QTextInlineObject (0x7fc38cdc9700) 0 + +Class QTextLayout::FormatRange + size=24 align=8 + base size=24 base align=8 +QTextLayout::FormatRange (0x7fc38cdd5a10) 0 + +Class QTextLayout + size=8 align=8 + base size=8 base align=8 +QTextLayout (0x7fc38cdd5770) 0 + +Class QTextLine + size=16 align=8 + base size=16 base align=8 +QTextLine (0x7fc38cdee770) 0 + +Vtable for QAbstractUndoItem +QAbstractUndoItem::_ZTV17QAbstractUndoItem: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAbstractUndoItem) +16 __cxa_pure_virtual +24 __cxa_pure_virtual +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QAbstractUndoItem + size=8 align=8 + base size=8 base align=8 +QAbstractUndoItem (0x7fc38ce24070) 0 nearly-empty + vptr=((& QAbstractUndoItem::_ZTV17QAbstractUndoItem) + 16u) + +Vtable for QTextDocument +QTextDocument::_ZTV13QTextDocument: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QTextDocument) +16 QTextDocument::metaObject +24 QTextDocument::qt_metacast +32 QTextDocument::qt_metacall +40 QTextDocument::~QTextDocument +48 QTextDocument::~QTextDocument +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTextDocument::clear +120 QTextDocument::createObject +128 QTextDocument::loadResource + +Class QTextDocument + size=16 align=8 + base size=16 base align=8 +QTextDocument (0x7fc38ce24af0) 0 + vptr=((& QTextDocument::_ZTV13QTextDocument) + 16u) + QObject (0x7fc38ce24b60) 0 + primary-for QTextDocument (0x7fc38ce24af0) + +Class QTextCursor + size=8 align=8 + base size=8 base align=8 +QTextCursor (0x7fc38cc80a80) 0 + +Class QPalette + size=16 align=8 + base size=12 base align=8 +QPalette (0x7fc38cc94f50) 0 + +Class QColorGroup + size=16 align=8 + base size=12 base align=8 +QColorGroup (0x7fc38cd06850) 0 + QPalette (0x7fc38cd068c0) 0 + +Class QAbstractTextDocumentLayout::Selection + size=24 align=8 + base size=24 base align=8 +QAbstractTextDocumentLayout::Selection (0x7fc38cd3ed90) 0 + +Class QAbstractTextDocumentLayout::PaintContext + size=64 align=8 + base size=64 base align=8 +QAbstractTextDocumentLayout::PaintContext (0x7fc38cd3ee00) 0 + +Vtable for QAbstractTextDocumentLayout +QAbstractTextDocumentLayout::_ZTV27QAbstractTextDocumentLayout: 24u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QAbstractTextDocumentLayout) +16 QAbstractTextDocumentLayout::metaObject +24 QAbstractTextDocumentLayout::qt_metacast +32 QAbstractTextDocumentLayout::qt_metacall +40 QAbstractTextDocumentLayout::~QAbstractTextDocumentLayout +48 QAbstractTextDocumentLayout::~QAbstractTextDocumentLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 QAbstractTextDocumentLayout::resizeInlineObject +176 QAbstractTextDocumentLayout::positionInlineObject +184 QAbstractTextDocumentLayout::drawInlineObject + +Class QAbstractTextDocumentLayout + size=16 align=8 + base size=16 base align=8 +QAbstractTextDocumentLayout (0x7fc38cd3eb60) 0 + vptr=((& QAbstractTextDocumentLayout::_ZTV27QAbstractTextDocumentLayout) + 16u) + QObject (0x7fc38cd3ebd0) 0 + primary-for QAbstractTextDocumentLayout (0x7fc38cd3eb60) + +Vtable for QTextObjectInterface +QTextObjectInterface::_ZTV20QTextObjectInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QTextObjectInterface) +16 QTextObjectInterface::~QTextObjectInterface +24 QTextObjectInterface::~QTextObjectInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QTextObjectInterface + size=8 align=8 + base size=8 base align=8 +QTextObjectInterface (0x7fc38cb764d0) 0 nearly-empty + vptr=((& QTextObjectInterface::_ZTV20QTextObjectInterface) + 16u) + +Class QFontDatabase + size=8 align=8 + base size=8 base align=8 +QFontDatabase (0x7fc38cb827e0) 0 + +Class QFontInfo + size=8 align=8 + base size=8 base align=8 +QFontInfo (0x7fc38cb927e0) 0 + +Class QFontMetrics + size=8 align=8 + base size=8 base align=8 +QFontMetrics (0x7fc38cba4310) 0 + +Class QFontMetricsF + size=8 align=8 + base size=8 base align=8 +QFontMetricsF (0x7fc38cbb8770) 0 + +Vtable for QTextObject +QTextObject::_ZTV11QTextObject: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTextObject) +16 QTextObject::metaObject +24 QTextObject::qt_metacast +32 QTextObject::qt_metacall +40 QTextObject::~QTextObject +48 QTextObject::~QTextObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTextObject + size=16 align=8 + base size=16 base align=8 +QTextObject (0x7fc38cbce690) 0 + vptr=((& QTextObject::_ZTV11QTextObject) + 16u) + QObject (0x7fc38cbce700) 0 + primary-for QTextObject (0x7fc38cbce690) + +Vtable for QTextBlockGroup +QTextBlockGroup::_ZTV15QTextBlockGroup: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QTextBlockGroup) +16 QTextBlockGroup::metaObject +24 QTextBlockGroup::qt_metacast +32 QTextBlockGroup::qt_metacall +40 QTextBlockGroup::~QTextBlockGroup +48 QTextBlockGroup::~QTextBlockGroup +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTextBlockGroup::blockInserted +120 QTextBlockGroup::blockRemoved +128 QTextBlockGroup::blockFormatChanged + +Class QTextBlockGroup + size=16 align=8 + base size=16 base align=8 +QTextBlockGroup (0x7fc38cbe0ee0) 0 + vptr=((& QTextBlockGroup::_ZTV15QTextBlockGroup) + 16u) + QTextObject (0x7fc38cbe0f50) 0 + primary-for QTextBlockGroup (0x7fc38cbe0ee0) + QObject (0x7fc38cbe8000) 0 + primary-for QTextObject (0x7fc38cbe0f50) + +Vtable for QTextFrameLayoutData +QTextFrameLayoutData::_ZTV20QTextFrameLayoutData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QTextFrameLayoutData) +16 QTextFrameLayoutData::~QTextFrameLayoutData +24 QTextFrameLayoutData::~QTextFrameLayoutData + +Class QTextFrameLayoutData + size=8 align=8 + base size=8 base align=8 +QTextFrameLayoutData (0x7fc38cbfd7e0) 0 nearly-empty + vptr=((& QTextFrameLayoutData::_ZTV20QTextFrameLayoutData) + 16u) + +Class QTextFrame::iterator + size=32 align=8 + base size=28 base align=8 +QTextFrame::iterator (0x7fc38cc07230) 0 + +Vtable for QTextFrame +QTextFrame::_ZTV10QTextFrame: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextFrame) +16 QTextFrame::metaObject +24 QTextFrame::qt_metacast +32 QTextFrame::qt_metacall +40 QTextFrame::~QTextFrame +48 QTextFrame::~QTextFrame +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTextFrame + size=16 align=8 + base size=16 base align=8 +QTextFrame (0x7fc38cbfd930) 0 + vptr=((& QTextFrame::_ZTV10QTextFrame) + 16u) + QTextObject (0x7fc38cbfd9a0) 0 + primary-for QTextFrame (0x7fc38cbfd930) + QObject (0x7fc38cbfda10) 0 + primary-for QTextObject (0x7fc38cbfd9a0) + +Vtable for QTextBlockUserData +QTextBlockUserData::_ZTV18QTextBlockUserData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QTextBlockUserData) +16 QTextBlockUserData::~QTextBlockUserData +24 QTextBlockUserData::~QTextBlockUserData + +Class QTextBlockUserData + size=8 align=8 + base size=8 base align=8 +QTextBlockUserData (0x7fc38cc3b380) 0 nearly-empty + vptr=((& QTextBlockUserData::_ZTV18QTextBlockUserData) + 16u) + +Class QTextBlock::iterator + size=24 align=8 + base size=20 base align=8 +QTextBlock::iterator (0x7fc38cc3bcb0) 0 + +Class QTextBlock + size=16 align=8 + base size=12 base align=8 +QTextBlock (0x7fc38cc3b4d0) 0 + +Class QTextFragment + size=16 align=8 + base size=16 base align=8 +QTextFragment (0x7fc38c9f2e00) 0 + +Vtable for QSyntaxHighlighter +QSyntaxHighlighter::_ZTV18QSyntaxHighlighter: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QSyntaxHighlighter) +16 QSyntaxHighlighter::metaObject +24 QSyntaxHighlighter::qt_metacast +32 QSyntaxHighlighter::qt_metacall +40 QSyntaxHighlighter::~QSyntaxHighlighter +48 QSyntaxHighlighter::~QSyntaxHighlighter +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual + +Class QSyntaxHighlighter + size=16 align=8 + base size=16 base align=8 +QSyntaxHighlighter (0x7fc38ca1b000) 0 + vptr=((& QSyntaxHighlighter::_ZTV18QSyntaxHighlighter) + 16u) + QObject (0x7fc38ca1b070) 0 + primary-for QSyntaxHighlighter (0x7fc38ca1b000) + +Class QTextDocumentFragment + size=8 align=8 + base size=8 base align=8 +QTextDocumentFragment (0x7fc38ca349a0) 0 + +Class QTextDocumentWriter + size=8 align=8 + base size=8 base align=8 +QTextDocumentWriter (0x7fc38ca3b3f0) 0 + +Vtable for QTextList +QTextList::_ZTV9QTextList: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTextList) +16 QTextList::metaObject +24 QTextList::qt_metacast +32 QTextList::qt_metacall +40 QTextList::~QTextList +48 QTextList::~QTextList +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTextBlockGroup::blockInserted +120 QTextBlockGroup::blockRemoved +128 QTextBlockGroup::blockFormatChanged + +Class QTextList + size=16 align=8 + base size=16 base align=8 +QTextList (0x7fc38ca3ba80) 0 + vptr=((& QTextList::_ZTV9QTextList) + 16u) + QTextBlockGroup (0x7fc38ca3baf0) 0 + primary-for QTextList (0x7fc38ca3ba80) + QTextObject (0x7fc38ca3bb60) 0 + primary-for QTextBlockGroup (0x7fc38ca3baf0) + QObject (0x7fc38ca3bbd0) 0 + primary-for QTextObject (0x7fc38ca3bb60) + +Class QTextTableCell + size=16 align=8 + base size=12 base align=8 +QTextTableCell (0x7fc38ca65930) 0 + +Vtable for QTextTable +QTextTable::_ZTV10QTextTable: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextTable) +16 QTextTable::metaObject +24 QTextTable::qt_metacast +32 QTextTable::qt_metacall +40 QTextTable::~QTextTable +48 QTextTable::~QTextTable +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTextTable + size=16 align=8 + base size=16 base align=8 +QTextTable (0x7fc38ca7aa80) 0 + vptr=((& QTextTable::_ZTV10QTextTable) + 16u) + QTextFrame (0x7fc38ca7aaf0) 0 + primary-for QTextTable (0x7fc38ca7aa80) + QTextObject (0x7fc38ca7ab60) 0 + primary-for QTextFrame (0x7fc38ca7aaf0) + QObject (0x7fc38ca7abd0) 0 + primary-for QTextObject (0x7fc38ca7ab60) + +Vtable for QCompleter +QCompleter::_ZTV10QCompleter: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QCompleter) +16 QCompleter::metaObject +24 QCompleter::qt_metacast +32 QCompleter::qt_metacall +40 QCompleter::~QCompleter +48 QCompleter::~QCompleter +56 QCompleter::event +64 QCompleter::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCompleter::pathFromIndex +120 QCompleter::splitPath + +Class QCompleter + size=16 align=8 + base size=16 base align=8 +QCompleter (0x7fc38caa22a0) 0 + vptr=((& QCompleter::_ZTV10QCompleter) + 16u) + QObject (0x7fc38caa2310) 0 + primary-for QCompleter (0x7fc38caa22a0) + +Class QDesktopServices + size=1 align=1 + base size=0 base align=1 +QDesktopServices (0x7fc38cac6230) 0 empty + +Class QIcon + size=8 align=8 + base size=8 base align=8 +QIcon (0x7fc38cac6380) 0 + +Vtable for QSystemTrayIcon +QSystemTrayIcon::_ZTV15QSystemTrayIcon: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSystemTrayIcon) +16 QSystemTrayIcon::metaObject +24 QSystemTrayIcon::qt_metacast +32 QSystemTrayIcon::qt_metacall +40 QSystemTrayIcon::~QSystemTrayIcon +48 QSystemTrayIcon::~QSystemTrayIcon +56 QSystemTrayIcon::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSystemTrayIcon + size=16 align=8 + base size=16 base align=8 +QSystemTrayIcon (0x7fc38c8eef50) 0 + vptr=((& QSystemTrayIcon::_ZTV15QSystemTrayIcon) + 16u) + QObject (0x7fc38c8ff000) 0 + primary-for QSystemTrayIcon (0x7fc38c8eef50) + +Vtable for QUndoGroup +QUndoGroup::_ZTV10QUndoGroup: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QUndoGroup) +16 QUndoGroup::metaObject +24 QUndoGroup::qt_metacast +32 QUndoGroup::qt_metacall +40 QUndoGroup::~QUndoGroup +48 QUndoGroup::~QUndoGroup +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QUndoGroup + size=16 align=8 + base size=16 base align=8 +QUndoGroup (0x7fc38c91d1c0) 0 + vptr=((& QUndoGroup::_ZTV10QUndoGroup) + 16u) + QObject (0x7fc38c91d230) 0 + primary-for QUndoGroup (0x7fc38c91d1c0) + +Vtable for QUndoCommand +QUndoCommand::_ZTV12QUndoCommand: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QUndoCommand) +16 QUndoCommand::~QUndoCommand +24 QUndoCommand::~QUndoCommand +32 QUndoCommand::undo +40 QUndoCommand::redo +48 QUndoCommand::id +56 QUndoCommand::mergeWith + +Class QUndoCommand + size=16 align=8 + base size=16 base align=8 +QUndoCommand (0x7fc38c932d20) 0 + vptr=((& QUndoCommand::_ZTV12QUndoCommand) + 16u) + +Vtable for QUndoStack +QUndoStack::_ZTV10QUndoStack: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QUndoStack) +16 QUndoStack::metaObject +24 QUndoStack::qt_metacast +32 QUndoStack::qt_metacall +40 QUndoStack::~QUndoStack +48 QUndoStack::~QUndoStack +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QUndoStack + size=16 align=8 + base size=16 base align=8 +QUndoStack (0x7fc38c93b690) 0 + vptr=((& QUndoStack::_ZTV10QUndoStack) + 16u) + QObject (0x7fc38c93b700) 0 + primary-for QUndoStack (0x7fc38c93b690) + +Class QSizePolicy + size=4 align=4 + base size=4 base align=4 +QSizePolicy (0x7fc38c9611c0) 0 + +Class QCursor + size=8 align=8 + base size=8 base align=8 +QCursor (0x7fc38c82f1c0) 0 + +Class QWidgetData + size=88 align=8 + base size=88 base align=8 +QWidgetData (0x7fc38c82f9a0) 0 + +Vtable for QWidget +QWidget::_ZTV7QWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QWidget) +16 QWidget::metaObject +24 QWidget::qt_metacast +32 QWidget::qt_metacall +40 QWidget::~QWidget +48 QWidget::~QWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI7QWidget) +464 QWidget::_ZThn16_N7QWidgetD1Ev +472 QWidget::_ZThn16_N7QWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWidget + size=40 align=8 + base size=40 base align=8 +QWidget (0x7fc38c827a00) 0 + vptr=((& QWidget::_ZTV7QWidget) + 16u) + QObject (0x7fc38c82fa10) 0 + primary-for QWidget (0x7fc38c827a00) + QPaintDevice (0x7fc38c82fa80) 16 + vptr=((& QWidget::_ZTV7QWidget) + 464u) + +Vtable for QFrame +QFrame::_ZTV6QFrame: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QFrame) +16 QFrame::metaObject +24 QFrame::qt_metacast +32 QFrame::qt_metacall +40 QFrame::~QFrame +48 QFrame::~QFrame +56 QFrame::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QFrame::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFrame::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI6QFrame) +464 QFrame::_ZThn16_N6QFrameD1Ev +472 QFrame::_ZThn16_N6QFrameD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFrame + size=40 align=8 + base size=40 base align=8 +QFrame (0x7fc38c7b7a80) 0 + vptr=((& QFrame::_ZTV6QFrame) + 16u) + QWidget (0x7fc38c7ba680) 0 + primary-for QFrame (0x7fc38c7b7a80) + QObject (0x7fc38c7b7af0) 0 + primary-for QWidget (0x7fc38c7ba680) + QPaintDevice (0x7fc38c7b7b60) 16 + vptr=((& QFrame::_ZTV6QFrame) + 464u) + +Vtable for QAbstractScrollArea +QAbstractScrollArea::_ZTV19QAbstractScrollArea: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractScrollArea) +16 QAbstractScrollArea::metaObject +24 QAbstractScrollArea::qt_metacast +32 QAbstractScrollArea::qt_metacall +40 QAbstractScrollArea::~QAbstractScrollArea +48 QAbstractScrollArea::~QAbstractScrollArea +56 QAbstractScrollArea::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractScrollArea::mousePressEvent +168 QAbstractScrollArea::mouseReleaseEvent +176 QAbstractScrollArea::mouseDoubleClickEvent +184 QAbstractScrollArea::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractScrollArea::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractScrollArea::paintEvent +256 QWidget::moveEvent +264 QAbstractScrollArea::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractScrollArea::dragEnterEvent +312 QAbstractScrollArea::dragMoveEvent +320 QAbstractScrollArea::dragLeaveEvent +328 QAbstractScrollArea::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QAbstractScrollArea::scrollContentsBy +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI19QAbstractScrollArea) +480 QAbstractScrollArea::_ZThn16_N19QAbstractScrollAreaD1Ev +488 QAbstractScrollArea::_ZThn16_N19QAbstractScrollAreaD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractScrollArea + size=40 align=8 + base size=40 base align=8 +QAbstractScrollArea (0x7fc38c5e30e0) 0 + vptr=((& QAbstractScrollArea::_ZTV19QAbstractScrollArea) + 16u) + QFrame (0x7fc38c5e3150) 0 + primary-for QAbstractScrollArea (0x7fc38c5e30e0) + QWidget (0x7fc38c7c8a80) 0 + primary-for QFrame (0x7fc38c5e3150) + QObject (0x7fc38c5e31c0) 0 + primary-for QWidget (0x7fc38c7c8a80) + QPaintDevice (0x7fc38c5e3230) 16 + vptr=((& QAbstractScrollArea::_ZTV19QAbstractScrollArea) + 480u) + +Class QItemSelectionRange + size=16 align=8 + base size=16 base align=8 +QItemSelectionRange (0x7fc38c60b000) 0 + +Vtable for QItemSelectionModel +QItemSelectionModel::_ZTV19QItemSelectionModel: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QItemSelectionModel) +16 QItemSelectionModel::metaObject +24 QItemSelectionModel::qt_metacast +32 QItemSelectionModel::qt_metacall +40 QItemSelectionModel::~QItemSelectionModel +48 QItemSelectionModel::~QItemSelectionModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QItemSelectionModel::select +120 QItemSelectionModel::select +128 QItemSelectionModel::clear +136 QItemSelectionModel::reset + +Class QItemSelectionModel + size=16 align=8 + base size=16 base align=8 +QItemSelectionModel (0x7fc38c6724d0) 0 + vptr=((& QItemSelectionModel::_ZTV19QItemSelectionModel) + 16u) + QObject (0x7fc38c672540) 0 + primary-for QItemSelectionModel (0x7fc38c6724d0) + +Class QItemSelection + size=8 align=8 + base size=8 base align=8 +QItemSelection (0x7fc38c6b39a0) 0 + QList (0x7fc38c6b3a10) 0 + +Vtable for QValidator +QValidator::_ZTV10QValidator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QValidator) +16 QValidator::metaObject +24 QValidator::qt_metacast +32 QValidator::qt_metacall +40 QValidator::~QValidator +48 QValidator::~QValidator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 QValidator::fixup + +Class QValidator + size=16 align=8 + base size=16 base align=8 +QValidator (0x7fc38c4f22a0) 0 + vptr=((& QValidator::_ZTV10QValidator) + 16u) + QObject (0x7fc38c4f2310) 0 + primary-for QValidator (0x7fc38c4f22a0) + +Vtable for QIntValidator +QIntValidator::_ZTV13QIntValidator: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QIntValidator) +16 QIntValidator::metaObject +24 QIntValidator::qt_metacast +32 QIntValidator::qt_metacall +40 QIntValidator::~QIntValidator +48 QIntValidator::~QIntValidator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QIntValidator::validate +120 QValidator::fixup +128 QIntValidator::setRange + +Class QIntValidator + size=24 align=8 + base size=24 base align=8 +QIntValidator (0x7fc38c50e0e0) 0 + vptr=((& QIntValidator::_ZTV13QIntValidator) + 16u) + QValidator (0x7fc38c50e150) 0 + primary-for QIntValidator (0x7fc38c50e0e0) + QObject (0x7fc38c50e1c0) 0 + primary-for QValidator (0x7fc38c50e150) + +Vtable for QDoubleValidator +QDoubleValidator::_ZTV16QDoubleValidator: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QDoubleValidator) +16 QDoubleValidator::metaObject +24 QDoubleValidator::qt_metacast +32 QDoubleValidator::qt_metacall +40 QDoubleValidator::~QDoubleValidator +48 QDoubleValidator::~QDoubleValidator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QDoubleValidator::validate +120 QValidator::fixup +128 QDoubleValidator::setRange + +Class QDoubleValidator + size=40 align=8 + base size=36 base align=8 +QDoubleValidator (0x7fc38c523070) 0 + vptr=((& QDoubleValidator::_ZTV16QDoubleValidator) + 16u) + QValidator (0x7fc38c5230e0) 0 + primary-for QDoubleValidator (0x7fc38c523070) + QObject (0x7fc38c523150) 0 + primary-for QValidator (0x7fc38c5230e0) + +Vtable for QRegExpValidator +QRegExpValidator::_ZTV16QRegExpValidator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QRegExpValidator) +16 QRegExpValidator::metaObject +24 QRegExpValidator::qt_metacast +32 QRegExpValidator::qt_metacall +40 QRegExpValidator::~QRegExpValidator +48 QRegExpValidator::~QRegExpValidator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QRegExpValidator::validate +120 QValidator::fixup + +Class QRegExpValidator + size=24 align=8 + base size=24 base align=8 +QRegExpValidator (0x7fc38c53f930) 0 + vptr=((& QRegExpValidator::_ZTV16QRegExpValidator) + 16u) + QValidator (0x7fc38c53f9a0) 0 + primary-for QRegExpValidator (0x7fc38c53f930) + QObject (0x7fc38c53fa10) 0 + primary-for QValidator (0x7fc38c53f9a0) + +Vtable for QAbstractSpinBox +QAbstractSpinBox::_ZTV16QAbstractSpinBox: 68u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QAbstractSpinBox) +16 QAbstractSpinBox::metaObject +24 QAbstractSpinBox::qt_metacast +32 QAbstractSpinBox::qt_metacall +40 QAbstractSpinBox::~QAbstractSpinBox +48 QAbstractSpinBox::~QAbstractSpinBox +56 QAbstractSpinBox::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractSpinBox::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractSpinBox::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QAbstractSpinBox::wheelEvent +200 QAbstractSpinBox::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QAbstractSpinBox::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractSpinBox::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QAbstractSpinBox::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractSpinBox::validate +456 QAbstractSpinBox::fixup +464 QAbstractSpinBox::stepBy +472 QAbstractSpinBox::clear +480 QAbstractSpinBox::stepEnabled +488 (int (*)(...))-0x00000000000000010 +496 (int (*)(...))(& _ZTI16QAbstractSpinBox) +504 QAbstractSpinBox::_ZThn16_N16QAbstractSpinBoxD1Ev +512 QAbstractSpinBox::_ZThn16_N16QAbstractSpinBoxD0Ev +520 QWidget::_ZThn16_NK7QWidget7devTypeEv +528 QWidget::_ZThn16_NK7QWidget11paintEngineEv +536 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractSpinBox + size=40 align=8 + base size=40 base align=8 +QAbstractSpinBox (0x7fc38c5565b0) 0 + vptr=((& QAbstractSpinBox::_ZTV16QAbstractSpinBox) + 16u) + QWidget (0x7fc38c53ce80) 0 + primary-for QAbstractSpinBox (0x7fc38c5565b0) + QObject (0x7fc38c556620) 0 + primary-for QWidget (0x7fc38c53ce80) + QPaintDevice (0x7fc38c556690) 16 + vptr=((& QAbstractSpinBox::_ZTV16QAbstractSpinBox) + 504u) + +Vtable for QAbstractSlider +QAbstractSlider::_ZTV15QAbstractSlider: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QAbstractSlider) +16 QAbstractSlider::metaObject +24 QAbstractSlider::qt_metacast +32 QAbstractSlider::qt_metacall +40 QAbstractSlider::~QAbstractSlider +48 QAbstractSlider::~QAbstractSlider +56 QAbstractSlider::event +64 QObject::eventFilter +72 QAbstractSlider::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QAbstractSlider::wheelEvent +200 QAbstractSlider::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractSlider::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractSlider::sliderChange +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI15QAbstractSlider) +472 QAbstractSlider::_ZThn16_N15QAbstractSliderD1Ev +480 QAbstractSlider::_ZThn16_N15QAbstractSliderD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractSlider + size=40 align=8 + base size=40 base align=8 +QAbstractSlider (0x7fc38c5b25b0) 0 + vptr=((& QAbstractSlider::_ZTV15QAbstractSlider) + 16u) + QWidget (0x7fc38c5b3200) 0 + primary-for QAbstractSlider (0x7fc38c5b25b0) + QObject (0x7fc38c5b2620) 0 + primary-for QWidget (0x7fc38c5b3200) + QPaintDevice (0x7fc38c5b2690) 16 + vptr=((& QAbstractSlider::_ZTV15QAbstractSlider) + 472u) + +Vtable for QSlider +QSlider::_ZTV7QSlider: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QSlider) +16 QSlider::metaObject +24 QSlider::qt_metacast +32 QSlider::qt_metacall +40 QSlider::~QSlider +48 QSlider::~QSlider +56 QSlider::event +64 QObject::eventFilter +72 QAbstractSlider::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QSlider::sizeHint +136 QSlider::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QSlider::mousePressEvent +168 QSlider::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QSlider::mouseMoveEvent +192 QAbstractSlider::wheelEvent +200 QAbstractSlider::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QSlider::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractSlider::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractSlider::sliderChange +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI7QSlider) +472 QSlider::_ZThn16_N7QSliderD1Ev +480 QSlider::_ZThn16_N7QSliderD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSlider + size=40 align=8 + base size=40 base align=8 +QSlider (0x7fc38c3ec3f0) 0 + vptr=((& QSlider::_ZTV7QSlider) + 16u) + QAbstractSlider (0x7fc38c3ec460) 0 + primary-for QSlider (0x7fc38c3ec3f0) + QWidget (0x7fc38c3ea300) 0 + primary-for QAbstractSlider (0x7fc38c3ec460) + QObject (0x7fc38c3ec4d0) 0 + primary-for QWidget (0x7fc38c3ea300) + QPaintDevice (0x7fc38c3ec540) 16 + vptr=((& QSlider::_ZTV7QSlider) + 472u) + +Vtable for QStyle +QStyle::_ZTV6QStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QStyle) +16 QStyle::metaObject +24 QStyle::qt_metacast +32 QStyle::qt_metacall +40 QStyle::~QStyle +48 QStyle::~QStyle +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QStyle::polish +120 QStyle::unpolish +128 QStyle::polish +136 QStyle::unpolish +144 QStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QStyle::standardPalette +192 __cxa_pure_virtual +200 __cxa_pure_virtual +208 __cxa_pure_virtual +216 __cxa_pure_virtual +224 __cxa_pure_virtual +232 __cxa_pure_virtual +240 __cxa_pure_virtual +248 __cxa_pure_virtual +256 __cxa_pure_virtual +264 __cxa_pure_virtual +272 __cxa_pure_virtual + +Class QStyle + size=16 align=8 + base size=16 base align=8 +QStyle (0x7fc38c4119a0) 0 + vptr=((& QStyle::_ZTV6QStyle) + 16u) + QObject (0x7fc38c411a10) 0 + primary-for QStyle (0x7fc38c4119a0) + +Vtable for QTabBar +QTabBar::_ZTV7QTabBar: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QTabBar) +16 QTabBar::metaObject +24 QTabBar::qt_metacast +32 QTabBar::qt_metacall +40 QTabBar::~QTabBar +48 QTabBar::~QTabBar +56 QTabBar::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QTabBar::sizeHint +136 QTabBar::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTabBar::mousePressEvent +168 QTabBar::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QTabBar::mouseMoveEvent +192 QTabBar::wheelEvent +200 QTabBar::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTabBar::paintEvent +256 QWidget::moveEvent +264 QTabBar::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QTabBar::showEvent +344 QTabBar::hideEvent +352 QWidget::x11Event +360 QTabBar::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QTabBar::tabSizeHint +456 QTabBar::tabInserted +464 QTabBar::tabRemoved +472 QTabBar::tabLayoutChange +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI7QTabBar) +496 QTabBar::_ZThn16_N7QTabBarD1Ev +504 QTabBar::_ZThn16_N7QTabBarD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTabBar + size=40 align=8 + base size=40 base align=8 +QTabBar (0x7fc38c4c2850) 0 + vptr=((& QTabBar::_ZTV7QTabBar) + 16u) + QWidget (0x7fc38c4c3300) 0 + primary-for QTabBar (0x7fc38c4c2850) + QObject (0x7fc38c4c28c0) 0 + primary-for QWidget (0x7fc38c4c3300) + QPaintDevice (0x7fc38c4c2930) 16 + vptr=((& QTabBar::_ZTV7QTabBar) + 496u) + +Vtable for QTabWidget +QTabWidget::_ZTV10QTabWidget: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTabWidget) +16 QTabWidget::metaObject +24 QTabWidget::qt_metacast +32 QTabWidget::qt_metacall +40 QTabWidget::~QTabWidget +48 QTabWidget::~QTabWidget +56 QTabWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QTabWidget::sizeHint +136 QTabWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QTabWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTabWidget::paintEvent +256 QWidget::moveEvent +264 QTabWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QTabWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QTabWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QTabWidget::tabInserted +456 QTabWidget::tabRemoved +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI10QTabWidget) +480 QTabWidget::_ZThn16_N10QTabWidgetD1Ev +488 QTabWidget::_ZThn16_N10QTabWidgetD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTabWidget + size=40 align=8 + base size=40 base align=8 +QTabWidget (0x7fc38c2ede70) 0 + vptr=((& QTabWidget::_ZTV10QTabWidget) + 16u) + QWidget (0x7fc38c2ea700) 0 + primary-for QTabWidget (0x7fc38c2ede70) + QObject (0x7fc38c2edee0) 0 + primary-for QWidget (0x7fc38c2ea700) + QPaintDevice (0x7fc38c2edf50) 16 + vptr=((& QTabWidget::_ZTV10QTabWidget) + 480u) + +Vtable for QRubberBand +QRubberBand::_ZTV11QRubberBand: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QRubberBand) +16 QRubberBand::metaObject +24 QRubberBand::qt_metacast +32 QRubberBand::qt_metacall +40 QRubberBand::~QRubberBand +48 QRubberBand::~QRubberBand +56 QRubberBand::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QRubberBand::paintEvent +256 QRubberBand::moveEvent +264 QRubberBand::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QRubberBand::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QRubberBand::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI11QRubberBand) +464 QRubberBand::_ZThn16_N11QRubberBandD1Ev +472 QRubberBand::_ZThn16_N11QRubberBandD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QRubberBand + size=40 align=8 + base size=40 base align=8 +QRubberBand (0x7fc38c342850) 0 + vptr=((& QRubberBand::_ZTV11QRubberBand) + 16u) + QWidget (0x7fc38c341880) 0 + primary-for QRubberBand (0x7fc38c342850) + QObject (0x7fc38c3428c0) 0 + primary-for QWidget (0x7fc38c341880) + QPaintDevice (0x7fc38c342930) 16 + vptr=((& QRubberBand::_ZTV11QRubberBand) + 464u) + +Class QStyleOption + size=56 align=8 + base size=56 base align=8 +QStyleOption (0x7fc38c366b60) 0 + +Class QStyleOptionFocusRect + size=72 align=8 + base size=72 base align=8 +QStyleOptionFocusRect (0x7fc38c3738c0) 0 + QStyleOption (0x7fc38c373930) 0 + +Class QStyleOptionFrame + size=64 align=8 + base size=64 base align=8 +QStyleOptionFrame (0x7fc38c37e8c0) 0 + QStyleOption (0x7fc38c37e930) 0 + +Class QStyleOptionFrameV2 + size=72 align=8 + base size=68 base align=8 +QStyleOptionFrameV2 (0x7fc38c38c850) 0 + QStyleOptionFrame (0x7fc38c38c8c0) 0 + QStyleOption (0x7fc38c38c930) 0 + +Class QStyleOptionFrameV3 + size=72 align=8 + base size=72 base align=8 +QStyleOptionFrameV3 (0x7fc38c1d3150) 0 + QStyleOptionFrameV2 (0x7fc38c1d31c0) 0 + QStyleOptionFrame (0x7fc38c1d3230) 0 + QStyleOption (0x7fc38c1d32a0) 0 + +Class QStyleOptionTabWidgetFrame + size=96 align=8 + base size=92 base align=8 +QStyleOptionTabWidgetFrame (0x7fc38c1dfa10) 0 + QStyleOption (0x7fc38c1dfa80) 0 + +Class QStyleOptionTabWidgetFrameV2 + size=128 align=8 + base size=124 base align=8 +QStyleOptionTabWidgetFrameV2 (0x7fc38c1f51c0) 0 + QStyleOptionTabWidgetFrame (0x7fc38c1f5230) 0 + QStyleOption (0x7fc38c1f52a0) 0 + +Class QStyleOptionTabBarBase + size=96 align=8 + base size=92 base align=8 +QStyleOptionTabBarBase (0x7fc38c1fdaf0) 0 + QStyleOption (0x7fc38c1fdb60) 0 + +Class QStyleOptionTabBarBaseV2 + size=96 align=8 + base size=93 base align=8 +QStyleOptionTabBarBaseV2 (0x7fc38c209ee0) 0 + QStyleOptionTabBarBase (0x7fc38c209f50) 0 + QStyleOption (0x7fc38c209310) 0 + +Class QStyleOptionHeader + size=112 align=8 + base size=108 base align=8 +QStyleOptionHeader (0x7fc38c21f540) 0 + QStyleOption (0x7fc38c21f5b0) 0 + +Class QStyleOptionButton + size=88 align=8 + base size=88 base align=8 +QStyleOptionButton (0x7fc38c237700) 0 + QStyleOption (0x7fc38c237770) 0 + +Class QStyleOptionTab + size=96 align=8 + base size=96 base align=8 +QStyleOptionTab (0x7fc38c2850e0) 0 + QStyleOption (0x7fc38c285150) 0 + +Class QStyleOptionTabV2 + size=104 align=8 + base size=104 base align=8 +QStyleOptionTabV2 (0x7fc38c0d4070) 0 + QStyleOptionTab (0x7fc38c0d40e0) 0 + QStyleOption (0x7fc38c0d4150) 0 + +Class QStyleOptionTabV3 + size=128 align=8 + base size=124 base align=8 +QStyleOptionTabV3 (0x7fc38c0dea80) 0 + QStyleOptionTabV2 (0x7fc38c0deaf0) 0 + QStyleOptionTab (0x7fc38c0deb60) 0 + QStyleOption (0x7fc38c0debd0) 0 + +Class QStyleOptionToolBar + size=80 align=8 + base size=80 base align=8 +QStyleOptionToolBar (0x7fc38c0fd0e0) 0 + QStyleOption (0x7fc38c0fd150) 0 + +Class QStyleOptionProgressBar + size=88 align=8 + base size=85 base align=8 +QStyleOptionProgressBar (0x7fc38c1318c0) 0 + QStyleOption (0x7fc38c131930) 0 + +Class QStyleOptionProgressBarV2 + size=96 align=8 + base size=94 base align=8 +QStyleOptionProgressBarV2 (0x7fc38c158070) 0 + QStyleOptionProgressBar (0x7fc38c1580e0) 0 + QStyleOption (0x7fc38c158150) 0 + +Class QStyleOptionMenuItem + size=128 align=8 + base size=128 base align=8 +QStyleOptionMenuItem (0x7fc38c158930) 0 + QStyleOption (0x7fc38c1589a0) 0 + +Class QStyleOptionQ3ListViewItem + size=80 align=8 + base size=76 base align=8 +QStyleOptionQ3ListViewItem (0x7fc38c172b60) 0 + QStyleOption (0x7fc38c172bd0) 0 + +Class QStyleOptionQ3DockWindow + size=64 align=8 + base size=58 base align=8 +QStyleOptionQ3DockWindow (0x7fc38bfc0000) 0 + QStyleOption (0x7fc38bfc0070) 0 + +Class QStyleOptionDockWidget + size=72 align=8 + base size=67 base align=8 +QStyleOptionDockWidget (0x7fc38bfc0690) 0 + QStyleOption (0x7fc38bfcd000) 0 + +Class QStyleOptionDockWidgetV2 + size=72 align=8 + base size=68 base align=8 +QStyleOptionDockWidgetV2 (0x7fc38bfdb380) 0 + QStyleOptionDockWidget (0x7fc38bfdb3f0) 0 + QStyleOption (0x7fc38bfdb460) 0 + +Class QStyleOptionViewItem + size=104 align=8 + base size=97 base align=8 +QStyleOptionViewItem (0x7fc38bfe3b60) 0 + QStyleOption (0x7fc38bfe3bd0) 0 + +Class QStyleOptionViewItemV2 + size=104 align=8 + base size=104 base align=8 +QStyleOptionViewItemV2 (0x7fc38bffb700) 0 + QStyleOptionViewItem (0x7fc38bffb770) 0 + QStyleOption (0x7fc38bffb7e0) 0 + +Class QStyleOptionViewItemV3 + size=120 align=8 + base size=120 base align=8 +QStyleOptionViewItemV3 (0x7fc38c04a150) 0 + QStyleOptionViewItemV2 (0x7fc38c04a1c0) 0 + QStyleOptionViewItem (0x7fc38c04a230) 0 + QStyleOption (0x7fc38c04a2a0) 0 + +Class QStyleOptionViewItemV4 + size=184 align=8 + base size=184 base align=8 +QStyleOptionViewItemV4 (0x7fc38c054a10) 0 + QStyleOptionViewItemV3 (0x7fc38c054a80) 0 + QStyleOptionViewItemV2 (0x7fc38c054af0) 0 + QStyleOptionViewItem (0x7fc38c054b60) 0 + QStyleOption (0x7fc38c054bd0) 0 + +Class QStyleOptionToolBox + size=72 align=8 + base size=72 base align=8 +QStyleOptionToolBox (0x7fc38c076150) 0 + QStyleOption (0x7fc38c0761c0) 0 + +Class QStyleOptionToolBoxV2 + size=80 align=8 + base size=80 base align=8 +QStyleOptionToolBoxV2 (0x7fc38c082620) 0 + QStyleOptionToolBox (0x7fc38c082690) 0 + QStyleOption (0x7fc38c082700) 0 + +Class QStyleOptionRubberBand + size=64 align=8 + base size=61 base align=8 +QStyleOptionRubberBand (0x7fc38c099310) 0 + QStyleOption (0x7fc38c099380) 0 + +Class QStyleOptionComplex + size=64 align=8 + base size=64 base align=8 +QStyleOptionComplex (0x7fc38c0a23f0) 0 + QStyleOption (0x7fc38c0a2460) 0 + +Class QStyleOptionSlider + size=120 align=8 + base size=113 base align=8 +QStyleOptionSlider (0x7fc38c0adbd0) 0 + QStyleOptionComplex (0x7fc38c0adc40) 0 + QStyleOption (0x7fc38c0adcb0) 0 + +Class QStyleOptionSpinBox + size=80 align=8 + base size=73 base align=8 +QStyleOptionSpinBox (0x7fc38bec39a0) 0 + QStyleOptionComplex (0x7fc38bec3a10) 0 + QStyleOption (0x7fc38bec3a80) 0 + +Class QStyleOptionQ3ListView + size=112 align=8 + base size=105 base align=8 +QStyleOptionQ3ListView (0x7fc38beccee0) 0 + QStyleOptionComplex (0x7fc38beccf50) 0 + QStyleOption (0x7fc38becc380) 0 + +Class QStyleOptionToolButton + size=128 align=8 + base size=128 base align=8 +QStyleOptionToolButton (0x7fc38bf05af0) 0 + QStyleOptionComplex (0x7fc38bf05b60) 0 + QStyleOption (0x7fc38bf05bd0) 0 + +Class QStyleOptionComboBox + size=112 align=8 + base size=112 base align=8 +QStyleOptionComboBox (0x7fc38bf45d20) 0 + QStyleOptionComplex (0x7fc38bf45d90) 0 + QStyleOption (0x7fc38bf45e00) 0 + +Class QStyleOptionTitleBar + size=88 align=8 + base size=88 base align=8 +QStyleOptionTitleBar (0x7fc38bf6c850) 0 + QStyleOptionComplex (0x7fc38bf6c8c0) 0 + QStyleOption (0x7fc38bf6c930) 0 + +Class QStyleOptionGroupBox + size=112 align=8 + base size=108 base align=8 +QStyleOptionGroupBox (0x7fc38bf840e0) 0 + QStyleOptionComplex (0x7fc38bf84150) 0 + QStyleOption (0x7fc38bf841c0) 0 + +Class QStyleOptionSizeGrip + size=72 align=8 + base size=68 base align=8 +QStyleOptionSizeGrip (0x7fc38bf93cb0) 0 + QStyleOptionComplex (0x7fc38bf93d20) 0 + QStyleOption (0x7fc38bf93d90) 0 + +Class QStyleOptionGraphicsItem + size=144 align=8 + base size=144 base align=8 +QStyleOptionGraphicsItem (0x7fc38bf9dc40) 0 + QStyleOption (0x7fc38bf9dcb0) 0 + +Class QStyleHintReturn + size=8 align=4 + base size=8 base align=4 +QStyleHintReturn (0x7fc38bfaa2a0) 0 + +Class QStyleHintReturnMask + size=16 align=8 + base size=16 base align=8 +QStyleHintReturnMask (0x7fc38bdc93f0) 0 + QStyleHintReturn (0x7fc38bdc9460) 0 + +Class QStyleHintReturnVariant + size=24 align=8 + base size=24 base align=8 +QStyleHintReturnVariant (0x7fc38bdc9620) 0 + QStyleHintReturn (0x7fc38bdc9690) 0 + +Vtable for QAbstractItemDelegate +QAbstractItemDelegate::_ZTV21QAbstractItemDelegate: 21u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QAbstractItemDelegate) +16 QAbstractItemDelegate::metaObject +24 QAbstractItemDelegate::qt_metacast +32 QAbstractItemDelegate::qt_metacall +40 QAbstractItemDelegate::~QAbstractItemDelegate +48 QAbstractItemDelegate::~QAbstractItemDelegate +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAbstractItemDelegate::createEditor +136 QAbstractItemDelegate::setEditorData +144 QAbstractItemDelegate::setModelData +152 QAbstractItemDelegate::updateEditorGeometry +160 QAbstractItemDelegate::editorEvent + +Class QAbstractItemDelegate + size=16 align=8 + base size=16 base align=8 +QAbstractItemDelegate (0x7fc38bdc9af0) 0 + vptr=((& QAbstractItemDelegate::_ZTV21QAbstractItemDelegate) + 16u) + QObject (0x7fc38bdc9b60) 0 + primary-for QAbstractItemDelegate (0x7fc38bdc9af0) + +Vtable for QAbstractItemView +QAbstractItemView::_ZTV17QAbstractItemView: 103u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAbstractItemView) +16 QAbstractItemView::metaObject +24 QAbstractItemView::qt_metacast +32 QAbstractItemView::qt_metacall +40 QAbstractItemView::~QAbstractItemView +48 QAbstractItemView::~QAbstractItemView +56 QAbstractItemView::event +64 QObject::eventFilter +72 QAbstractItemView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QAbstractItemView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QAbstractItemView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractScrollArea::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QAbstractScrollArea::scrollContentsBy +464 QAbstractItemView::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 __cxa_pure_virtual +496 __cxa_pure_virtual +504 __cxa_pure_virtual +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QAbstractItemView::reset +536 QAbstractItemView::setRootIndex +544 QAbstractItemView::doItemsLayout +552 QAbstractItemView::selectAll +560 QAbstractItemView::dataChanged +568 QAbstractItemView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QAbstractItemView::selectionChanged +592 QAbstractItemView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QAbstractItemView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 __cxa_pure_virtual +688 __cxa_pure_virtual +696 __cxa_pure_virtual +704 __cxa_pure_virtual +712 __cxa_pure_virtual +720 __cxa_pure_virtual +728 QAbstractItemView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 (int (*)(...))-0x00000000000000010 +776 (int (*)(...))(& _ZTI17QAbstractItemView) +784 QAbstractItemView::_ZThn16_N17QAbstractItemViewD1Ev +792 QAbstractItemView::_ZThn16_N17QAbstractItemViewD0Ev +800 QWidget::_ZThn16_NK7QWidget7devTypeEv +808 QWidget::_ZThn16_NK7QWidget11paintEngineEv +816 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractItemView + size=40 align=8 + base size=40 base align=8 +QAbstractItemView (0x7fc38bdf91c0) 0 + vptr=((& QAbstractItemView::_ZTV17QAbstractItemView) + 16u) + QAbstractScrollArea (0x7fc38bdf9230) 0 + primary-for QAbstractItemView (0x7fc38bdf91c0) + QFrame (0x7fc38bdf92a0) 0 + primary-for QAbstractScrollArea (0x7fc38bdf9230) + QWidget (0x7fc38bdd7d80) 0 + primary-for QFrame (0x7fc38bdf92a0) + QObject (0x7fc38bdf9310) 0 + primary-for QWidget (0x7fc38bdd7d80) + QPaintDevice (0x7fc38bdf9380) 16 + vptr=((& QAbstractItemView::_ZTV17QAbstractItemView) + 784u) + +Vtable for QListView +QListView::_ZTV9QListView: 103u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QListView) +16 QListView::metaObject +24 QListView::qt_metacast +32 QListView::qt_metacall +40 QListView::~QListView +48 QListView::~QListView +56 QListView::event +64 QObject::eventFilter +72 QListView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QListView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QListView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QListView::paintEvent +256 QWidget::moveEvent +264 QListView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QListView::dragMoveEvent +320 QListView::dragLeaveEvent +328 QListView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QListView::scrollContentsBy +464 QAbstractItemView::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QListView::visualRect +496 QListView::scrollTo +504 QListView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QListView::reset +536 QListView::setRootIndex +544 QListView::doItemsLayout +552 QAbstractItemView::selectAll +560 QListView::dataChanged +568 QListView::rowsInserted +576 QListView::rowsAboutToBeRemoved +584 QListView::selectionChanged +592 QListView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QListView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QListView::moveCursor +688 QListView::horizontalOffset +696 QListView::verticalOffset +704 QListView::isIndexHidden +712 QListView::setSelection +720 QListView::visualRegionForSelection +728 QListView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QListView::startDrag +760 QListView::viewOptions +768 (int (*)(...))-0x00000000000000010 +776 (int (*)(...))(& _ZTI9QListView) +784 QListView::_ZThn16_N9QListViewD1Ev +792 QListView::_ZThn16_N9QListViewD0Ev +800 QWidget::_ZThn16_NK7QWidget7devTypeEv +808 QWidget::_ZThn16_NK7QWidget11paintEngineEv +816 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QListView + size=40 align=8 + base size=40 base align=8 +QListView (0x7fc38be6e9a0) 0 + vptr=((& QListView::_ZTV9QListView) + 16u) + QAbstractItemView (0x7fc38be6ea10) 0 + primary-for QListView (0x7fc38be6e9a0) + QAbstractScrollArea (0x7fc38be6ea80) 0 + primary-for QAbstractItemView (0x7fc38be6ea10) + QFrame (0x7fc38be6eaf0) 0 + primary-for QAbstractScrollArea (0x7fc38be6ea80) + QWidget (0x7fc38be59500) 0 + primary-for QFrame (0x7fc38be6eaf0) + QObject (0x7fc38be6eb60) 0 + primary-for QWidget (0x7fc38be59500) + QPaintDevice (0x7fc38be6ebd0) 16 + vptr=((& QListView::_ZTV9QListView) + 784u) + +Vtable for QUndoView +QUndoView::_ZTV9QUndoView: 103u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QUndoView) +16 QUndoView::metaObject +24 QUndoView::qt_metacast +32 QUndoView::qt_metacall +40 QUndoView::~QUndoView +48 QUndoView::~QUndoView +56 QListView::event +64 QObject::eventFilter +72 QListView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QListView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QListView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QListView::paintEvent +256 QWidget::moveEvent +264 QListView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QListView::dragMoveEvent +320 QListView::dragLeaveEvent +328 QListView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QListView::scrollContentsBy +464 QAbstractItemView::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QListView::visualRect +496 QListView::scrollTo +504 QListView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QListView::reset +536 QListView::setRootIndex +544 QListView::doItemsLayout +552 QAbstractItemView::selectAll +560 QListView::dataChanged +568 QListView::rowsInserted +576 QListView::rowsAboutToBeRemoved +584 QListView::selectionChanged +592 QListView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QListView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QListView::moveCursor +688 QListView::horizontalOffset +696 QListView::verticalOffset +704 QListView::isIndexHidden +712 QListView::setSelection +720 QListView::visualRegionForSelection +728 QListView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QListView::startDrag +760 QListView::viewOptions +768 (int (*)(...))-0x00000000000000010 +776 (int (*)(...))(& _ZTI9QUndoView) +784 QUndoView::_ZThn16_N9QUndoViewD1Ev +792 QUndoView::_ZThn16_N9QUndoViewD0Ev +800 QWidget::_ZThn16_NK7QWidget7devTypeEv +808 QWidget::_ZThn16_NK7QWidget11paintEngineEv +816 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QUndoView + size=40 align=8 + base size=40 base align=8 +QUndoView (0x7fc38bcbc070) 0 + vptr=((& QUndoView::_ZTV9QUndoView) + 16u) + QListView (0x7fc38bcbc0e0) 0 + primary-for QUndoView (0x7fc38bcbc070) + QAbstractItemView (0x7fc38bcbc150) 0 + primary-for QListView (0x7fc38bcbc0e0) + QAbstractScrollArea (0x7fc38bcbc1c0) 0 + primary-for QAbstractItemView (0x7fc38bcbc150) + QFrame (0x7fc38bcbc230) 0 + primary-for QAbstractScrollArea (0x7fc38bcbc1c0) + QWidget (0x7fc38beb7500) 0 + primary-for QFrame (0x7fc38bcbc230) + QObject (0x7fc38bcbc2a0) 0 + primary-for QWidget (0x7fc38beb7500) + QPaintDevice (0x7fc38bcbc310) 16 + vptr=((& QUndoView::_ZTV9QUndoView) + 784u) + +Vtable for QDialog +QDialog::_ZTV7QDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QDialog) +16 QDialog::metaObject +24 QDialog::qt_metacast +32 QDialog::qt_metacall +40 QDialog::~QDialog +48 QDialog::~QDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI7QDialog) +488 QDialog::_ZThn16_N7QDialogD1Ev +496 QDialog::_ZThn16_N7QDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDialog + size=40 align=8 + base size=40 base align=8 +QDialog (0x7fc38bcd5d20) 0 + vptr=((& QDialog::_ZTV7QDialog) + 16u) + QWidget (0x7fc38beb7f00) 0 + primary-for QDialog (0x7fc38bcd5d20) + QObject (0x7fc38bcd5d90) 0 + primary-for QWidget (0x7fc38beb7f00) + QPaintDevice (0x7fc38bcd5e00) 16 + vptr=((& QDialog::_ZTV7QDialog) + 488u) + +Vtable for QAbstractPageSetupDialog +QAbstractPageSetupDialog::_ZTV24QAbstractPageSetupDialog: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QAbstractPageSetupDialog) +16 QAbstractPageSetupDialog::metaObject +24 QAbstractPageSetupDialog::qt_metacast +32 QAbstractPageSetupDialog::qt_metacall +40 QAbstractPageSetupDialog::~QAbstractPageSetupDialog +48 QAbstractPageSetupDialog::~QAbstractPageSetupDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractPageSetupDialog::done +456 QDialog::accept +464 QDialog::reject +472 __cxa_pure_virtual +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI24QAbstractPageSetupDialog) +496 QAbstractPageSetupDialog::_ZThn16_N24QAbstractPageSetupDialogD1Ev +504 QAbstractPageSetupDialog::_ZThn16_N24QAbstractPageSetupDialogD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractPageSetupDialog + size=40 align=8 + base size=40 base align=8 +QAbstractPageSetupDialog (0x7fc38bcfcb60) 0 + vptr=((& QAbstractPageSetupDialog::_ZTV24QAbstractPageSetupDialog) + 16u) + QDialog (0x7fc38bcfcbd0) 0 + primary-for QAbstractPageSetupDialog (0x7fc38bcfcb60) + QWidget (0x7fc38bcdda00) 0 + primary-for QDialog (0x7fc38bcfcbd0) + QObject (0x7fc38bcfcc40) 0 + primary-for QWidget (0x7fc38bcdda00) + QPaintDevice (0x7fc38bcfccb0) 16 + vptr=((& QAbstractPageSetupDialog::_ZTV24QAbstractPageSetupDialog) + 496u) + +Vtable for QAbstractPrintDialog +QAbstractPrintDialog::_ZTV20QAbstractPrintDialog: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QAbstractPrintDialog) +16 QAbstractPrintDialog::metaObject +24 QAbstractPrintDialog::qt_metacast +32 QAbstractPrintDialog::qt_metacall +40 QAbstractPrintDialog::~QAbstractPrintDialog +48 QAbstractPrintDialog::~QAbstractPrintDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDialog::done +456 QDialog::accept +464 QDialog::reject +472 __cxa_pure_virtual +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI20QAbstractPrintDialog) +496 QAbstractPrintDialog::_ZThn16_N20QAbstractPrintDialogD1Ev +504 QAbstractPrintDialog::_ZThn16_N20QAbstractPrintDialogD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractPrintDialog + size=40 align=8 + base size=40 base align=8 +QAbstractPrintDialog (0x7fc38bd1b150) 0 + vptr=((& QAbstractPrintDialog::_ZTV20QAbstractPrintDialog) + 16u) + QDialog (0x7fc38bd1b1c0) 0 + primary-for QAbstractPrintDialog (0x7fc38bd1b150) + QWidget (0x7fc38bd13400) 0 + primary-for QDialog (0x7fc38bd1b1c0) + QObject (0x7fc38bd1b230) 0 + primary-for QWidget (0x7fc38bd13400) + QPaintDevice (0x7fc38bd1b2a0) 16 + vptr=((& QAbstractPrintDialog::_ZTV20QAbstractPrintDialog) + 496u) + +Vtable for QColorDialog +QColorDialog::_ZTV12QColorDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QColorDialog) +16 QColorDialog::metaObject +24 QColorDialog::qt_metacast +32 QColorDialog::qt_metacall +40 QColorDialog::~QColorDialog +48 QColorDialog::~QColorDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QColorDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QColorDialog::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QColorDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI12QColorDialog) +488 QColorDialog::_ZThn16_N12QColorDialogD1Ev +496 QColorDialog::_ZThn16_N12QColorDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QColorDialog + size=40 align=8 + base size=40 base align=8 +QColorDialog (0x7fc38bd76230) 0 + vptr=((& QColorDialog::_ZTV12QColorDialog) + 16u) + QDialog (0x7fc38bd762a0) 0 + primary-for QColorDialog (0x7fc38bd76230) + QWidget (0x7fc38bd37880) 0 + primary-for QDialog (0x7fc38bd762a0) + QObject (0x7fc38bd76310) 0 + primary-for QWidget (0x7fc38bd37880) + QPaintDevice (0x7fc38bd76380) 16 + vptr=((& QColorDialog::_ZTV12QColorDialog) + 488u) + +Vtable for QErrorMessage +QErrorMessage::_ZTV13QErrorMessage: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QErrorMessage) +16 QErrorMessage::metaObject +24 QErrorMessage::qt_metacast +32 QErrorMessage::qt_metacall +40 QErrorMessage::~QErrorMessage +48 QErrorMessage::~QErrorMessage +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QErrorMessage::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QErrorMessage::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI13QErrorMessage) +488 QErrorMessage::_ZThn16_N13QErrorMessageD1Ev +496 QErrorMessage::_ZThn16_N13QErrorMessageD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QErrorMessage + size=40 align=8 + base size=40 base align=8 +QErrorMessage (0x7fc38bbd85b0) 0 + vptr=((& QErrorMessage::_ZTV13QErrorMessage) + 16u) + QDialog (0x7fc38bbd8620) 0 + primary-for QErrorMessage (0x7fc38bbd85b0) + QWidget (0x7fc38bda0c00) 0 + primary-for QDialog (0x7fc38bbd8620) + QObject (0x7fc38bbd8690) 0 + primary-for QWidget (0x7fc38bda0c00) + QPaintDevice (0x7fc38bbd8700) 16 + vptr=((& QErrorMessage::_ZTV13QErrorMessage) + 488u) + +Vtable for QFileDialog +QFileDialog::_ZTV11QFileDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFileDialog) +16 QFileDialog::metaObject +24 QFileDialog::qt_metacast +32 QFileDialog::qt_metacall +40 QFileDialog::~QFileDialog +48 QFileDialog::~QFileDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QFileDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFileDialog::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QFileDialog::done +456 QFileDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11QFileDialog) +488 QFileDialog::_ZThn16_N11QFileDialogD1Ev +496 QFileDialog::_ZThn16_N11QFileDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFileDialog + size=40 align=8 + base size=40 base align=8 +QFileDialog (0x7fc38bbf41c0) 0 + vptr=((& QFileDialog::_ZTV11QFileDialog) + 16u) + QDialog (0x7fc38bbf4230) 0 + primary-for QFileDialog (0x7fc38bbf41c0) + QWidget (0x7fc38bbec780) 0 + primary-for QDialog (0x7fc38bbf4230) + QObject (0x7fc38bbf42a0) 0 + primary-for QWidget (0x7fc38bbec780) + QPaintDevice (0x7fc38bbf4310) 16 + vptr=((& QFileDialog::_ZTV11QFileDialog) + 488u) + +Vtable for QFileSystemModel +QFileSystemModel::_ZTV16QFileSystemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QFileSystemModel) +16 QFileSystemModel::metaObject +24 QFileSystemModel::qt_metacast +32 QFileSystemModel::qt_metacall +40 QFileSystemModel::~QFileSystemModel +48 QFileSystemModel::~QFileSystemModel +56 QFileSystemModel::event +64 QObject::eventFilter +72 QFileSystemModel::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFileSystemModel::index +120 QFileSystemModel::parent +128 QFileSystemModel::rowCount +136 QFileSystemModel::columnCount +144 QFileSystemModel::hasChildren +152 QFileSystemModel::data +160 QFileSystemModel::setData +168 QFileSystemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QFileSystemModel::mimeTypes +208 QFileSystemModel::mimeData +216 QFileSystemModel::dropMimeData +224 QFileSystemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QFileSystemModel::fetchMore +272 QFileSystemModel::canFetchMore +280 QFileSystemModel::flags +288 QFileSystemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QFileSystemModel + size=16 align=8 + base size=16 base align=8 +QFileSystemModel (0x7fc38bc71770) 0 + vptr=((& QFileSystemModel::_ZTV16QFileSystemModel) + 16u) + QAbstractItemModel (0x7fc38bc717e0) 0 + primary-for QFileSystemModel (0x7fc38bc71770) + QObject (0x7fc38bc71850) 0 + primary-for QAbstractItemModel (0x7fc38bc717e0) + +Vtable for QFontDialog +QFontDialog::_ZTV11QFontDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFontDialog) +16 QFontDialog::metaObject +24 QFontDialog::qt_metacast +32 QFontDialog::qt_metacall +40 QFontDialog::~QFontDialog +48 QFontDialog::~QFontDialog +56 QWidget::event +64 QFontDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QFontDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFontDialog::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QFontDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11QFontDialog) +488 QFontDialog::_ZThn16_N11QFontDialogD1Ev +496 QFontDialog::_ZThn16_N11QFontDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFontDialog + size=40 align=8 + base size=40 base align=8 +QFontDialog (0x7fc38bcb4e70) 0 + vptr=((& QFontDialog::_ZTV11QFontDialog) + 16u) + QDialog (0x7fc38bcb4ee0) 0 + primary-for QFontDialog (0x7fc38bcb4e70) + QWidget (0x7fc38babd500) 0 + primary-for QDialog (0x7fc38bcb4ee0) + QObject (0x7fc38bcb4f50) 0 + primary-for QWidget (0x7fc38babd500) + QPaintDevice (0x7fc38bac3000) 16 + vptr=((& QFontDialog::_ZTV11QFontDialog) + 488u) + +Vtable for QLineEdit +QLineEdit::_ZTV9QLineEdit: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QLineEdit) +16 QLineEdit::metaObject +24 QLineEdit::qt_metacast +32 QLineEdit::qt_metacall +40 QLineEdit::~QLineEdit +48 QLineEdit::~QLineEdit +56 QLineEdit::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QLineEdit::sizeHint +136 QLineEdit::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QLineEdit::mousePressEvent +168 QLineEdit::mouseReleaseEvent +176 QLineEdit::mouseDoubleClickEvent +184 QLineEdit::mouseMoveEvent +192 QWidget::wheelEvent +200 QLineEdit::keyPressEvent +208 QWidget::keyReleaseEvent +216 QLineEdit::focusInEvent +224 QLineEdit::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QLineEdit::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QLineEdit::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QLineEdit::dragEnterEvent +312 QLineEdit::dragMoveEvent +320 QLineEdit::dragLeaveEvent +328 QLineEdit::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QLineEdit::changeEvent +368 QWidget::metric +376 QLineEdit::inputMethodEvent +384 QLineEdit::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI9QLineEdit) +464 QLineEdit::_ZThn16_N9QLineEditD1Ev +472 QLineEdit::_ZThn16_N9QLineEditD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QLineEdit + size=40 align=8 + base size=40 base align=8 +QLineEdit (0x7fc38bb24310) 0 + vptr=((& QLineEdit::_ZTV9QLineEdit) + 16u) + QWidget (0x7fc38bae6800) 0 + primary-for QLineEdit (0x7fc38bb24310) + QObject (0x7fc38bb24380) 0 + primary-for QWidget (0x7fc38bae6800) + QPaintDevice (0x7fc38bb243f0) 16 + vptr=((& QLineEdit::_ZTV9QLineEdit) + 464u) + +Vtable for QInputDialog +QInputDialog::_ZTV12QInputDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QInputDialog) +16 QInputDialog::metaObject +24 QInputDialog::qt_metacast +32 QInputDialog::qt_metacall +40 QInputDialog::~QInputDialog +48 QInputDialog::~QInputDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QInputDialog::setVisible +128 QInputDialog::sizeHint +136 QInputDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QInputDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI12QInputDialog) +488 QInputDialog::_ZThn16_N12QInputDialogD1Ev +496 QInputDialog::_ZThn16_N12QInputDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QInputDialog + size=40 align=8 + base size=40 base align=8 +QInputDialog (0x7fc38bb75070) 0 + vptr=((& QInputDialog::_ZTV12QInputDialog) + 16u) + QDialog (0x7fc38bb750e0) 0 + primary-for QInputDialog (0x7fc38bb75070) + QWidget (0x7fc38bb70780) 0 + primary-for QDialog (0x7fc38bb750e0) + QObject (0x7fc38bb75150) 0 + primary-for QWidget (0x7fc38bb70780) + QPaintDevice (0x7fc38bb751c0) 16 + vptr=((& QInputDialog::_ZTV12QInputDialog) + 488u) + +Vtable for QMessageBox +QMessageBox::_ZTV11QMessageBox: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMessageBox) +16 QMessageBox::metaObject +24 QMessageBox::qt_metacast +32 QMessageBox::qt_metacall +40 QMessageBox::~QMessageBox +48 QMessageBox::~QMessageBox +56 QMessageBox::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QMessageBox::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QMessageBox::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QMessageBox::resizeEvent +272 QMessageBox::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QMessageBox::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QMessageBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11QMessageBox) +488 QMessageBox::_ZThn16_N11QMessageBoxD1Ev +496 QMessageBox::_ZThn16_N11QMessageBoxD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMessageBox + size=40 align=8 + base size=40 base align=8 +QMessageBox (0x7fc38b9d4ee0) 0 + vptr=((& QMessageBox::_ZTV11QMessageBox) + 16u) + QDialog (0x7fc38b9d4f50) 0 + primary-for QMessageBox (0x7fc38b9d4ee0) + QWidget (0x7fc38b9ed100) 0 + primary-for QDialog (0x7fc38b9d4f50) + QObject (0x7fc38b9ee000) 0 + primary-for QWidget (0x7fc38b9ed100) + QPaintDevice (0x7fc38b9ee070) 16 + vptr=((& QMessageBox::_ZTV11QMessageBox) + 488u) + +Vtable for QPageSetupDialog +QPageSetupDialog::_ZTV16QPageSetupDialog: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QPageSetupDialog) +16 QPageSetupDialog::metaObject +24 QPageSetupDialog::qt_metacast +32 QPageSetupDialog::qt_metacall +40 QPageSetupDialog::~QPageSetupDialog +48 QPageSetupDialog::~QPageSetupDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractPageSetupDialog::done +456 QDialog::accept +464 QDialog::reject +472 QPageSetupDialog::exec +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI16QPageSetupDialog) +496 QPageSetupDialog::_ZThn16_N16QPageSetupDialogD1Ev +504 QPageSetupDialog::_ZThn16_N16QPageSetupDialogD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPageSetupDialog + size=40 align=8 + base size=40 base align=8 +QPageSetupDialog (0x7fc38ba6d850) 0 + vptr=((& QPageSetupDialog::_ZTV16QPageSetupDialog) + 16u) + QAbstractPageSetupDialog (0x7fc38ba6d8c0) 0 + primary-for QPageSetupDialog (0x7fc38ba6d850) + QDialog (0x7fc38ba6d930) 0 + primary-for QAbstractPageSetupDialog (0x7fc38ba6d8c0) + QWidget (0x7fc38ba52800) 0 + primary-for QDialog (0x7fc38ba6d930) + QObject (0x7fc38ba6d9a0) 0 + primary-for QWidget (0x7fc38ba52800) + QPaintDevice (0x7fc38ba6da10) 16 + vptr=((& QPageSetupDialog::_ZTV16QPageSetupDialog) + 496u) + +Vtable for QUnixPrintWidget +QUnixPrintWidget::_ZTV16QUnixPrintWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QUnixPrintWidget) +16 QUnixPrintWidget::metaObject +24 QUnixPrintWidget::qt_metacast +32 QUnixPrintWidget::qt_metacall +40 QUnixPrintWidget::~QUnixPrintWidget +48 QUnixPrintWidget::~QUnixPrintWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI16QUnixPrintWidget) +464 QUnixPrintWidget::_ZThn16_N16QUnixPrintWidgetD1Ev +472 QUnixPrintWidget::_ZThn16_N16QUnixPrintWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QUnixPrintWidget + size=48 align=8 + base size=48 base align=8 +QUnixPrintWidget (0x7fc38baa37e0) 0 + vptr=((& QUnixPrintWidget::_ZTV16QUnixPrintWidget) + 16u) + QWidget (0x7fc38baa2380) 0 + primary-for QUnixPrintWidget (0x7fc38baa37e0) + QObject (0x7fc38baa3850) 0 + primary-for QWidget (0x7fc38baa2380) + QPaintDevice (0x7fc38baa38c0) 16 + vptr=((& QUnixPrintWidget::_ZTV16QUnixPrintWidget) + 464u) + +Vtable for QPrintDialog +QPrintDialog::_ZTV12QPrintDialog: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QPrintDialog) +16 QPrintDialog::metaObject +24 QPrintDialog::qt_metacast +32 QPrintDialog::qt_metacall +40 QPrintDialog::~QPrintDialog +48 QPrintDialog::~QPrintDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QPrintDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QPrintDialog::done +456 QPrintDialog::accept +464 QDialog::reject +472 QPrintDialog::exec +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI12QPrintDialog) +496 QPrintDialog::_ZThn16_N12QPrintDialogD1Ev +504 QPrintDialog::_ZThn16_N12QPrintDialogD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPrintDialog + size=40 align=8 + base size=40 base align=8 +QPrintDialog (0x7fc38b8b9700) 0 + vptr=((& QPrintDialog::_ZTV12QPrintDialog) + 16u) + QAbstractPrintDialog (0x7fc38b8b9770) 0 + primary-for QPrintDialog (0x7fc38b8b9700) + QDialog (0x7fc38b8b97e0) 0 + primary-for QAbstractPrintDialog (0x7fc38b8b9770) + QWidget (0x7fc38baa2a80) 0 + primary-for QDialog (0x7fc38b8b97e0) + QObject (0x7fc38b8b9850) 0 + primary-for QWidget (0x7fc38baa2a80) + QPaintDevice (0x7fc38b8b98c0) 16 + vptr=((& QPrintDialog::_ZTV12QPrintDialog) + 496u) + +Vtable for QPrintPreviewDialog +QPrintPreviewDialog::_ZTV19QPrintPreviewDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QPrintPreviewDialog) +16 QPrintPreviewDialog::metaObject +24 QPrintPreviewDialog::qt_metacast +32 QPrintPreviewDialog::qt_metacall +40 QPrintPreviewDialog::~QPrintPreviewDialog +48 QPrintPreviewDialog::~QPrintPreviewDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QPrintPreviewDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QPrintPreviewDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI19QPrintPreviewDialog) +488 QPrintPreviewDialog::_ZThn16_N19QPrintPreviewDialogD1Ev +496 QPrintPreviewDialog::_ZThn16_N19QPrintPreviewDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPrintPreviewDialog + size=48 align=8 + base size=48 base align=8 +QPrintPreviewDialog (0x7fc38b8d62a0) 0 + vptr=((& QPrintPreviewDialog::_ZTV19QPrintPreviewDialog) + 16u) + QDialog (0x7fc38b8d6310) 0 + primary-for QPrintPreviewDialog (0x7fc38b8d62a0) + QWidget (0x7fc38b8d1480) 0 + primary-for QDialog (0x7fc38b8d6310) + QObject (0x7fc38b8d6380) 0 + primary-for QWidget (0x7fc38b8d1480) + QPaintDevice (0x7fc38b8d63f0) 16 + vptr=((& QPrintPreviewDialog::_ZTV19QPrintPreviewDialog) + 488u) + +Vtable for QProgressDialog +QProgressDialog::_ZTV15QProgressDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QProgressDialog) +16 QProgressDialog::metaObject +24 QProgressDialog::qt_metacast +32 QProgressDialog::qt_metacall +40 QProgressDialog::~QProgressDialog +48 QProgressDialog::~QProgressDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QProgressDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QProgressDialog::resizeEvent +272 QProgressDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QProgressDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QProgressDialog::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI15QProgressDialog) +488 QProgressDialog::_ZThn16_N15QProgressDialogD1Ev +496 QProgressDialog::_ZThn16_N15QProgressDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QProgressDialog + size=40 align=8 + base size=40 base align=8 +QProgressDialog (0x7fc38b8eda10) 0 + vptr=((& QProgressDialog::_ZTV15QProgressDialog) + 16u) + QDialog (0x7fc38b8eda80) 0 + primary-for QProgressDialog (0x7fc38b8eda10) + QWidget (0x7fc38b8d1e80) 0 + primary-for QDialog (0x7fc38b8eda80) + QObject (0x7fc38b8edaf0) 0 + primary-for QWidget (0x7fc38b8d1e80) + QPaintDevice (0x7fc38b8edb60) 16 + vptr=((& QProgressDialog::_ZTV15QProgressDialog) + 488u) + +Vtable for QWizard +QWizard::_ZTV7QWizard: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QWizard) +16 QWizard::metaObject +24 QWizard::qt_metacast +32 QWizard::qt_metacall +40 QWizard::~QWizard +48 QWizard::~QWizard +56 QWizard::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWizard::setVisible +128 QWizard::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWizard::paintEvent +256 QWidget::moveEvent +264 QWizard::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QWizard::done +456 QDialog::accept +464 QDialog::reject +472 QWizard::validateCurrentPage +480 QWizard::nextId +488 QWizard::initializePage +496 QWizard::cleanupPage +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI7QWizard) +520 QWizard::_ZThn16_N7QWizardD1Ev +528 QWizard::_ZThn16_N7QWizardD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWizard + size=40 align=8 + base size=40 base align=8 +QWizard (0x7fc38b913620) 0 + vptr=((& QWizard::_ZTV7QWizard) + 16u) + QDialog (0x7fc38b913690) 0 + primary-for QWizard (0x7fc38b913620) + QWidget (0x7fc38b90d880) 0 + primary-for QDialog (0x7fc38b913690) + QObject (0x7fc38b913700) 0 + primary-for QWidget (0x7fc38b90d880) + QPaintDevice (0x7fc38b913770) 16 + vptr=((& QWizard::_ZTV7QWizard) + 520u) + +Vtable for QWizardPage +QWizardPage::_ZTV11QWizardPage: 68u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QWizardPage) +16 QWizardPage::metaObject +24 QWizardPage::qt_metacast +32 QWizardPage::qt_metacall +40 QWizardPage::~QWizardPage +48 QWizardPage::~QWizardPage +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QWizardPage::initializePage +456 QWizardPage::cleanupPage +464 QWizardPage::validatePage +472 QWizardPage::isComplete +480 QWizardPage::nextId +488 (int (*)(...))-0x00000000000000010 +496 (int (*)(...))(& _ZTI11QWizardPage) +504 QWizardPage::_ZThn16_N11QWizardPageD1Ev +512 QWizardPage::_ZThn16_N11QWizardPageD0Ev +520 QWidget::_ZThn16_NK7QWidget7devTypeEv +528 QWidget::_ZThn16_NK7QWidget11paintEngineEv +536 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWizardPage + size=40 align=8 + base size=40 base align=8 +QWizardPage (0x7fc38b96c9a0) 0 + vptr=((& QWizardPage::_ZTV11QWizardPage) + 16u) + QWidget (0x7fc38b941b80) 0 + primary-for QWizardPage (0x7fc38b96c9a0) + QObject (0x7fc38b96ca10) 0 + primary-for QWidget (0x7fc38b941b80) + QPaintDevice (0x7fc38b96ca80) 16 + vptr=((& QWizardPage::_ZTV11QWizardPage) + 504u) + +Vtable for QKeyEventTransition +QKeyEventTransition::_ZTV19QKeyEventTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QKeyEventTransition) +16 QKeyEventTransition::metaObject +24 QKeyEventTransition::qt_metacast +32 QKeyEventTransition::qt_metacall +40 QKeyEventTransition::~QKeyEventTransition +48 QKeyEventTransition::~QKeyEventTransition +56 QEventTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QKeyEventTransition::eventTest +120 QKeyEventTransition::onTransition + +Class QKeyEventTransition + size=16 align=8 + base size=16 base align=8 +QKeyEventTransition (0x7fc38b9a44d0) 0 + vptr=((& QKeyEventTransition::_ZTV19QKeyEventTransition) + 16u) + QEventTransition (0x7fc38b9a4540) 0 + primary-for QKeyEventTransition (0x7fc38b9a44d0) + QAbstractTransition (0x7fc38b9a45b0) 0 + primary-for QEventTransition (0x7fc38b9a4540) + QObject (0x7fc38b9a4620) 0 + primary-for QAbstractTransition (0x7fc38b9a45b0) + +Vtable for QMouseEventTransition +QMouseEventTransition::_ZTV21QMouseEventTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QMouseEventTransition) +16 QMouseEventTransition::metaObject +24 QMouseEventTransition::qt_metacast +32 QMouseEventTransition::qt_metacall +40 QMouseEventTransition::~QMouseEventTransition +48 QMouseEventTransition::~QMouseEventTransition +56 QEventTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMouseEventTransition::eventTest +120 QMouseEventTransition::onTransition + +Class QMouseEventTransition + size=16 align=8 + base size=16 base align=8 +QMouseEventTransition (0x7fc38b7b5f50) 0 + vptr=((& QMouseEventTransition::_ZTV21QMouseEventTransition) + 16u) + QEventTransition (0x7fc38b7bf000) 0 + primary-for QMouseEventTransition (0x7fc38b7b5f50) + QAbstractTransition (0x7fc38b7bf070) 0 + primary-for QEventTransition (0x7fc38b7bf000) + QObject (0x7fc38b7bf0e0) 0 + primary-for QAbstractTransition (0x7fc38b7bf070) + +Vtable for QBitmap +QBitmap::_ZTV7QBitmap: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QBitmap) +16 QBitmap::~QBitmap +24 QBitmap::~QBitmap +32 QPixmap::devType +40 QPixmap::paintEngine +48 QPixmap::metric + +Class QBitmap + size=24 align=8 + base size=24 base align=8 +QBitmap (0x7fc38b7d3a10) 0 + vptr=((& QBitmap::_ZTV7QBitmap) + 16u) + QPixmap (0x7fc38b7d3a80) 0 + primary-for QBitmap (0x7fc38b7d3a10) + QPaintDevice (0x7fc38b7d3af0) 0 + primary-for QPixmap (0x7fc38b7d3a80) + +Vtable for QIconEngine +QIconEngine::_ZTV11QIconEngine: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QIconEngine) +16 QIconEngine::~QIconEngine +24 QIconEngine::~QIconEngine +32 __cxa_pure_virtual +40 QIconEngine::actualSize +48 QIconEngine::pixmap +56 QIconEngine::addPixmap +64 QIconEngine::addFile + +Class QIconEngine + size=8 align=8 + base size=8 base align=8 +QIconEngine (0x7fc38b8048c0) 0 nearly-empty + vptr=((& QIconEngine::_ZTV11QIconEngine) + 16u) + +Class QIconEngineV2::AvailableSizesArgument + size=16 align=8 + base size=16 base align=8 +QIconEngineV2::AvailableSizesArgument (0x7fc38b810070) 0 + +Vtable for QIconEngineV2 +QIconEngineV2::_ZTV13QIconEngineV2: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QIconEngineV2) +16 QIconEngineV2::~QIconEngineV2 +24 QIconEngineV2::~QIconEngineV2 +32 __cxa_pure_virtual +40 QIconEngine::actualSize +48 QIconEngine::pixmap +56 QIconEngine::addPixmap +64 QIconEngine::addFile +72 QIconEngineV2::key +80 QIconEngineV2::clone +88 QIconEngineV2::read +96 QIconEngineV2::write +104 QIconEngineV2::virtual_hook + +Class QIconEngineV2 + size=8 align=8 + base size=8 base align=8 +QIconEngineV2 (0x7fc38b804e70) 0 nearly-empty + vptr=((& QIconEngineV2::_ZTV13QIconEngineV2) + 16u) + QIconEngine (0x7fc38b804ee0) 0 nearly-empty + primary-for QIconEngineV2 (0x7fc38b804e70) + +Vtable for QIconEngineFactoryInterface +QIconEngineFactoryInterface::_ZTV27QIconEngineFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QIconEngineFactoryInterface) +16 QIconEngineFactoryInterface::~QIconEngineFactoryInterface +24 QIconEngineFactoryInterface::~QIconEngineFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QIconEngineFactoryInterface + size=8 align=8 + base size=8 base align=8 +QIconEngineFactoryInterface (0x7fc38b810850) 0 nearly-empty + vptr=((& QIconEngineFactoryInterface::_ZTV27QIconEngineFactoryInterface) + 16u) + QFactoryInterface (0x7fc38b8108c0) 0 nearly-empty + primary-for QIconEngineFactoryInterface (0x7fc38b810850) + +Vtable for QIconEnginePlugin +QIconEnginePlugin::_ZTV17QIconEnginePlugin: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QIconEnginePlugin) +16 QIconEnginePlugin::metaObject +24 QIconEnginePlugin::qt_metacast +32 QIconEnginePlugin::qt_metacall +40 QIconEnginePlugin::~QIconEnginePlugin +48 QIconEnginePlugin::~QIconEnginePlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI17QIconEnginePlugin) +144 QIconEnginePlugin::_ZThn16_N17QIconEnginePluginD1Ev +152 QIconEnginePlugin::_ZThn16_N17QIconEnginePluginD0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QIconEnginePlugin + size=24 align=8 + base size=24 base align=8 +QIconEnginePlugin (0x7fc38b80af80) 0 + vptr=((& QIconEnginePlugin::_ZTV17QIconEnginePlugin) + 16u) + QObject (0x7fc38b8471c0) 0 + primary-for QIconEnginePlugin (0x7fc38b80af80) + QIconEngineFactoryInterface (0x7fc38b847230) 16 nearly-empty + vptr=((& QIconEnginePlugin::_ZTV17QIconEnginePlugin) + 144u) + QFactoryInterface (0x7fc38b8472a0) 16 nearly-empty + primary-for QIconEngineFactoryInterface (0x7fc38b847230) + +Vtable for QIconEngineFactoryInterfaceV2 +QIconEngineFactoryInterfaceV2::_ZTV29QIconEngineFactoryInterfaceV2: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI29QIconEngineFactoryInterfaceV2) +16 QIconEngineFactoryInterfaceV2::~QIconEngineFactoryInterfaceV2 +24 QIconEngineFactoryInterfaceV2::~QIconEngineFactoryInterfaceV2 +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QIconEngineFactoryInterfaceV2 + size=8 align=8 + base size=8 base align=8 +QIconEngineFactoryInterfaceV2 (0x7fc38b859150) 0 nearly-empty + vptr=((& QIconEngineFactoryInterfaceV2::_ZTV29QIconEngineFactoryInterfaceV2) + 16u) + QFactoryInterface (0x7fc38b8591c0) 0 nearly-empty + primary-for QIconEngineFactoryInterfaceV2 (0x7fc38b859150) + +Vtable for QIconEnginePluginV2 +QIconEnginePluginV2::_ZTV19QIconEnginePluginV2: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QIconEnginePluginV2) +16 QIconEnginePluginV2::metaObject +24 QIconEnginePluginV2::qt_metacast +32 QIconEnginePluginV2::qt_metacall +40 QIconEnginePluginV2::~QIconEnginePluginV2 +48 QIconEnginePluginV2::~QIconEnginePluginV2 +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI19QIconEnginePluginV2) +144 QIconEnginePluginV2::_ZThn16_N19QIconEnginePluginV2D1Ev +152 QIconEnginePluginV2::_ZThn16_N19QIconEnginePluginV2D0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QIconEnginePluginV2 + size=24 align=8 + base size=24 base align=8 +QIconEnginePluginV2 (0x7fc38b865000) 0 + vptr=((& QIconEnginePluginV2::_ZTV19QIconEnginePluginV2) + 16u) + QObject (0x7fc38b859c40) 0 + primary-for QIconEnginePluginV2 (0x7fc38b865000) + QIconEngineFactoryInterfaceV2 (0x7fc38b859cb0) 16 nearly-empty + vptr=((& QIconEnginePluginV2::_ZTV19QIconEnginePluginV2) + 144u) + QFactoryInterface (0x7fc38b859d20) 16 nearly-empty + primary-for QIconEngineFactoryInterfaceV2 (0x7fc38b859cb0) + +Vtable for QImageIOHandler +QImageIOHandler::_ZTV15QImageIOHandler: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QImageIOHandler) +16 QImageIOHandler::~QImageIOHandler +24 QImageIOHandler::~QImageIOHandler +32 QImageIOHandler::name +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QImageIOHandler::write +64 QImageIOHandler::option +72 QImageIOHandler::setOption +80 QImageIOHandler::supportsOption +88 QImageIOHandler::jumpToNextImage +96 QImageIOHandler::jumpToImage +104 QImageIOHandler::loopCount +112 QImageIOHandler::imageCount +120 QImageIOHandler::nextImageDelay +128 QImageIOHandler::currentImageNumber +136 QImageIOHandler::currentImageRect + +Class QImageIOHandler + size=16 align=8 + base size=16 base align=8 +QImageIOHandler (0x7fc38b86dbd0) 0 + vptr=((& QImageIOHandler::_ZTV15QImageIOHandler) + 16u) + +Vtable for QImageIOHandlerFactoryInterface +QImageIOHandlerFactoryInterface::_ZTV31QImageIOHandlerFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI31QImageIOHandlerFactoryInterface) +16 QImageIOHandlerFactoryInterface::~QImageIOHandlerFactoryInterface +24 QImageIOHandlerFactoryInterface::~QImageIOHandlerFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QImageIOHandlerFactoryInterface + size=8 align=8 + base size=8 base align=8 +QImageIOHandlerFactoryInterface (0x7fc38b8889a0) 0 nearly-empty + vptr=((& QImageIOHandlerFactoryInterface::_ZTV31QImageIOHandlerFactoryInterface) + 16u) + QFactoryInterface (0x7fc38b888a10) 0 nearly-empty + primary-for QImageIOHandlerFactoryInterface (0x7fc38b8889a0) + +Vtable for QImageIOPlugin +QImageIOPlugin::_ZTV14QImageIOPlugin: 23u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QImageIOPlugin) +16 QImageIOPlugin::metaObject +24 QImageIOPlugin::qt_metacast +32 QImageIOPlugin::qt_metacall +40 QImageIOPlugin::~QImageIOPlugin +48 QImageIOPlugin::~QImageIOPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 (int (*)(...))-0x00000000000000010 +144 (int (*)(...))(& _ZTI14QImageIOPlugin) +152 QImageIOPlugin::_ZThn16_N14QImageIOPluginD1Ev +160 QImageIOPlugin::_ZThn16_N14QImageIOPluginD0Ev +168 __cxa_pure_virtual +176 __cxa_pure_virtual + +Class QImageIOPlugin + size=24 align=8 + base size=24 base align=8 +QImageIOPlugin (0x7fc38b88ec00) 0 + vptr=((& QImageIOPlugin::_ZTV14QImageIOPlugin) + 16u) + QObject (0x7fc38b8993f0) 0 + primary-for QImageIOPlugin (0x7fc38b88ec00) + QImageIOHandlerFactoryInterface (0x7fc38b899460) 16 nearly-empty + vptr=((& QImageIOPlugin::_ZTV14QImageIOPlugin) + 152u) + QFactoryInterface (0x7fc38b8994d0) 16 nearly-empty + primary-for QImageIOHandlerFactoryInterface (0x7fc38b899460) + +Class QImageReader + size=8 align=8 + base size=8 base align=8 +QImageReader (0x7fc38b6ee4d0) 0 + +Class QImageWriter + size=8 align=8 + base size=8 base align=8 +QImageWriter (0x7fc38b6eeee0) 0 + +Vtable for QMovie +QMovie::_ZTV6QMovie: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QMovie) +16 QMovie::metaObject +24 QMovie::qt_metacast +32 QMovie::qt_metacall +40 QMovie::~QMovie +48 QMovie::~QMovie +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QMovie + size=16 align=8 + base size=16 base align=8 +QMovie (0x7fc38b704770) 0 + vptr=((& QMovie::_ZTV6QMovie) + 16u) + QObject (0x7fc38b7047e0) 0 + primary-for QMovie (0x7fc38b704770) + +Vtable for QPicture +QPicture::_ZTV8QPicture: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QPicture) +16 QPicture::~QPicture +24 QPicture::~QPicture +32 QPicture::devType +40 QPicture::paintEngine +48 QPicture::metric +56 QPicture::setData + +Class QPicture + size=24 align=8 + base size=24 base align=8 +QPicture (0x7fc38b7497e0) 0 + vptr=((& QPicture::_ZTV8QPicture) + 16u) + QPaintDevice (0x7fc38b749850) 0 + primary-for QPicture (0x7fc38b7497e0) + +Class QPictureIO + size=8 align=8 + base size=8 base align=8 +QPictureIO (0x7fc38b76b310) 0 + +Vtable for QPictureFormatInterface +QPictureFormatInterface::_ZTV23QPictureFormatInterface: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QPictureFormatInterface) +16 QPictureFormatInterface::~QPictureFormatInterface +24 QPictureFormatInterface::~QPictureFormatInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual + +Class QPictureFormatInterface + size=8 align=8 + base size=8 base align=8 +QPictureFormatInterface (0x7fc38b76b930) 0 nearly-empty + vptr=((& QPictureFormatInterface::_ZTV23QPictureFormatInterface) + 16u) + QFactoryInterface (0x7fc38b76b9a0) 0 nearly-empty + primary-for QPictureFormatInterface (0x7fc38b76b930) + +Vtable for QPictureFormatPlugin +QPictureFormatPlugin::_ZTV20QPictureFormatPlugin: 26u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QPictureFormatPlugin) +16 QPictureFormatPlugin::metaObject +24 QPictureFormatPlugin::qt_metacast +32 QPictureFormatPlugin::qt_metacall +40 QPictureFormatPlugin::~QPictureFormatPlugin +48 QPictureFormatPlugin::~QPictureFormatPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 QPictureFormatPlugin::loadPicture +128 QPictureFormatPlugin::savePicture +136 __cxa_pure_virtual +144 (int (*)(...))-0x00000000000000010 +152 (int (*)(...))(& _ZTI20QPictureFormatPlugin) +160 QPictureFormatPlugin::_ZThn16_N20QPictureFormatPluginD1Ev +168 QPictureFormatPlugin::_ZThn16_N20QPictureFormatPluginD0Ev +176 __cxa_pure_virtual +184 QPictureFormatPlugin::_ZThn16_N20QPictureFormatPlugin11loadPictureERK7QStringS2_P8QPicture +192 QPictureFormatPlugin::_ZThn16_N20QPictureFormatPlugin11savePictureERK7QStringS2_RK8QPicture +200 __cxa_pure_virtual + +Class QPictureFormatPlugin + size=24 align=8 + base size=24 base align=8 +QPictureFormatPlugin (0x7fc38b788300) 0 + vptr=((& QPictureFormatPlugin::_ZTV20QPictureFormatPlugin) + 16u) + QObject (0x7fc38b789310) 0 + primary-for QPictureFormatPlugin (0x7fc38b788300) + QPictureFormatInterface (0x7fc38b789380) 16 nearly-empty + vptr=((& QPictureFormatPlugin::_ZTV20QPictureFormatPlugin) + 160u) + QFactoryInterface (0x7fc38b7893f0) 16 nearly-empty + primary-for QPictureFormatInterface (0x7fc38b789380) + +Class QPixmapCache::Key + size=8 align=8 + base size=8 base align=8 +QPixmapCache::Key (0x7fc38b799310) 0 + +Class QPixmapCache + size=1 align=1 + base size=0 base align=1 +QPixmapCache (0x7fc38b7992a0) 0 empty + +Vtable for QGraphicsEffect +QGraphicsEffect::_ZTV15QGraphicsEffect: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QGraphicsEffect) +16 QGraphicsEffect::metaObject +24 QGraphicsEffect::qt_metacast +32 QGraphicsEffect::qt_metacall +40 QGraphicsEffect::~QGraphicsEffect +48 QGraphicsEffect::~QGraphicsEffect +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsEffect::boundingRectFor +120 __cxa_pure_virtual +128 QGraphicsEffect::sourceChanged + +Class QGraphicsEffect + size=16 align=8 + base size=16 base align=8 +QGraphicsEffect (0x7fc38b7a1150) 0 + vptr=((& QGraphicsEffect::_ZTV15QGraphicsEffect) + 16u) + QObject (0x7fc38b7a11c0) 0 + primary-for QGraphicsEffect (0x7fc38b7a1150) + +Vtable for QGraphicsColorizeEffect +QGraphicsColorizeEffect::_ZTV23QGraphicsColorizeEffect: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QGraphicsColorizeEffect) +16 QGraphicsColorizeEffect::metaObject +24 QGraphicsColorizeEffect::qt_metacast +32 QGraphicsColorizeEffect::qt_metacall +40 QGraphicsColorizeEffect::~QGraphicsColorizeEffect +48 QGraphicsColorizeEffect::~QGraphicsColorizeEffect +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsEffect::boundingRectFor +120 QGraphicsColorizeEffect::draw +128 QGraphicsEffect::sourceChanged + +Class QGraphicsColorizeEffect + size=16 align=8 + base size=16 base align=8 +QGraphicsColorizeEffect (0x7fc38b5e8c40) 0 + vptr=((& QGraphicsColorizeEffect::_ZTV23QGraphicsColorizeEffect) + 16u) + QGraphicsEffect (0x7fc38b5e8cb0) 0 + primary-for QGraphicsColorizeEffect (0x7fc38b5e8c40) + QObject (0x7fc38b5e8d20) 0 + primary-for QGraphicsEffect (0x7fc38b5e8cb0) + +Vtable for QGraphicsBlurEffect +QGraphicsBlurEffect::_ZTV19QGraphicsBlurEffect: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QGraphicsBlurEffect) +16 QGraphicsBlurEffect::metaObject +24 QGraphicsBlurEffect::qt_metacast +32 QGraphicsBlurEffect::qt_metacall +40 QGraphicsBlurEffect::~QGraphicsBlurEffect +48 QGraphicsBlurEffect::~QGraphicsBlurEffect +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsBlurEffect::boundingRectFor +120 QGraphicsBlurEffect::draw +128 QGraphicsEffect::sourceChanged + +Class QGraphicsBlurEffect + size=16 align=8 + base size=16 base align=8 +QGraphicsBlurEffect (0x7fc38b6175b0) 0 + vptr=((& QGraphicsBlurEffect::_ZTV19QGraphicsBlurEffect) + 16u) + QGraphicsEffect (0x7fc38b617620) 0 + primary-for QGraphicsBlurEffect (0x7fc38b6175b0) + QObject (0x7fc38b617690) 0 + primary-for QGraphicsEffect (0x7fc38b617620) + +Vtable for QGraphicsDropShadowEffect +QGraphicsDropShadowEffect::_ZTV25QGraphicsDropShadowEffect: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QGraphicsDropShadowEffect) +16 QGraphicsDropShadowEffect::metaObject +24 QGraphicsDropShadowEffect::qt_metacast +32 QGraphicsDropShadowEffect::qt_metacall +40 QGraphicsDropShadowEffect::~QGraphicsDropShadowEffect +48 QGraphicsDropShadowEffect::~QGraphicsDropShadowEffect +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsDropShadowEffect::boundingRectFor +120 QGraphicsDropShadowEffect::draw +128 QGraphicsEffect::sourceChanged + +Class QGraphicsDropShadowEffect + size=16 align=8 + base size=16 base align=8 +QGraphicsDropShadowEffect (0x7fc38b6750e0) 0 + vptr=((& QGraphicsDropShadowEffect::_ZTV25QGraphicsDropShadowEffect) + 16u) + QGraphicsEffect (0x7fc38b675150) 0 + primary-for QGraphicsDropShadowEffect (0x7fc38b6750e0) + QObject (0x7fc38b6751c0) 0 + primary-for QGraphicsEffect (0x7fc38b675150) + +Vtable for QGraphicsOpacityEffect +QGraphicsOpacityEffect::_ZTV22QGraphicsOpacityEffect: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QGraphicsOpacityEffect) +16 QGraphicsOpacityEffect::metaObject +24 QGraphicsOpacityEffect::qt_metacast +32 QGraphicsOpacityEffect::qt_metacall +40 QGraphicsOpacityEffect::~QGraphicsOpacityEffect +48 QGraphicsOpacityEffect::~QGraphicsOpacityEffect +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsEffect::boundingRectFor +120 QGraphicsOpacityEffect::draw +128 QGraphicsEffect::sourceChanged + +Class QGraphicsOpacityEffect + size=16 align=8 + base size=16 base align=8 +QGraphicsOpacityEffect (0x7fc38b6955b0) 0 + vptr=((& QGraphicsOpacityEffect::_ZTV22QGraphicsOpacityEffect) + 16u) + QGraphicsEffect (0x7fc38b695620) 0 + primary-for QGraphicsOpacityEffect (0x7fc38b6955b0) + QObject (0x7fc38b695690) 0 + primary-for QGraphicsEffect (0x7fc38b695620) + +Class QVFbHeader + size=1088 align=8 + base size=1088 base align=8 +QVFbHeader (0x7fc38b6a6ee0) 0 + +Class QVFbKeyData + size=12 align=4 + base size=12 base align=4 +QVFbKeyData (0x7fc38b6a6f50) 0 + +Vtable for QWSEmbedWidget +QWSEmbedWidget::_ZTV14QWSEmbedWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QWSEmbedWidget) +16 QWSEmbedWidget::metaObject +24 QWSEmbedWidget::qt_metacast +32 QWSEmbedWidget::qt_metacall +40 QWSEmbedWidget::~QWSEmbedWidget +48 QWSEmbedWidget::~QWSEmbedWidget +56 QWidget::event +64 QWSEmbedWidget::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWSEmbedWidget::moveEvent +264 QWSEmbedWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWSEmbedWidget::showEvent +344 QWSEmbedWidget::hideEvent +352 QWidget::x11Event +360 QWSEmbedWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI14QWSEmbedWidget) +464 QWSEmbedWidget::_ZThn16_N14QWSEmbedWidgetD1Ev +472 QWSEmbedWidget::_ZThn16_N14QWSEmbedWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWSEmbedWidget + size=40 align=8 + base size=40 base align=8 +QWSEmbedWidget (0x7fc38b6b0000) 0 + vptr=((& QWSEmbedWidget::_ZTV14QWSEmbedWidget) + 16u) + QWidget (0x7fc38b6a3900) 0 + primary-for QWSEmbedWidget (0x7fc38b6b0000) + QObject (0x7fc38b6b0070) 0 + primary-for QWidget (0x7fc38b6a3900) + QPaintDevice (0x7fc38b6b00e0) 16 + vptr=((& QWSEmbedWidget::_ZTV14QWSEmbedWidget) + 464u) + +Class QColormap + size=8 align=8 + base size=8 base align=8 +QColormap (0x7fc38b4c84d0) 0 + +Class QTileRules + size=8 align=4 + base size=8 base align=4 +QTileRules (0x7fc38b4c8cb0) 0 + +Class QDrawPixmaps::Data + size=80 align=8 + base size=80 base align=8 +QDrawPixmaps::Data (0x7fc38b4dfd20) 0 + +Class QPainter + size=8 align=8 + base size=8 base align=8 +QPainter (0x7fc38b4dfe00) 0 + +Class QTextItem + size=1 align=1 + base size=0 base align=1 +QTextItem (0x7fc38b30d8c0) 0 empty + +Vtable for QPaintEngine +QPaintEngine::_ZTV12QPaintEngine: 24u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QPaintEngine) +16 QPaintEngine::~QPaintEngine +24 QPaintEngine::~QPaintEngine +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QPaintEngine::drawRects +64 QPaintEngine::drawRects +72 QPaintEngine::drawLines +80 QPaintEngine::drawLines +88 QPaintEngine::drawEllipse +96 QPaintEngine::drawEllipse +104 QPaintEngine::drawPath +112 QPaintEngine::drawPoints +120 QPaintEngine::drawPoints +128 QPaintEngine::drawPolygon +136 QPaintEngine::drawPolygon +144 __cxa_pure_virtual +152 QPaintEngine::drawTextItem +160 QPaintEngine::drawTiledPixmap +168 QPaintEngine::drawImage +176 QPaintEngine::coordinateOffset +184 __cxa_pure_virtual + +Class QPaintEngine + size=32 align=8 + base size=32 base align=8 +QPaintEngine (0x7fc38b30dee0) 0 + vptr=((& QPaintEngine::_ZTV12QPaintEngine) + 16u) + +Class QPaintEngineState + size=4 align=4 + base size=4 base align=4 +QPaintEngineState (0x7fc38b358b60) 0 + +Vtable for QPrinter +QPrinter::_ZTV8QPrinter: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QPrinter) +16 QPrinter::~QPrinter +24 QPrinter::~QPrinter +32 QPrinter::devType +40 QPrinter::paintEngine +48 QPrinter::metric + +Class QPrinter + size=24 align=8 + base size=24 base align=8 +QPrinter (0x7fc38b226e70) 0 + vptr=((& QPrinter::_ZTV8QPrinter) + 16u) + QPaintDevice (0x7fc38b226ee0) 0 + primary-for QPrinter (0x7fc38b226e70) + +Vtable for QPrintEngine +QPrintEngine::_ZTV12QPrintEngine: 10u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QPrintEngine) +16 QPrintEngine::~QPrintEngine +24 QPrintEngine::~QPrintEngine +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual + +Class QPrintEngine + size=8 align=8 + base size=8 base align=8 +QPrintEngine (0x7fc38b28d540) 0 nearly-empty + vptr=((& QPrintEngine::_ZTV12QPrintEngine) + 16u) + +Class QPrinterInfo + size=8 align=8 + base size=8 base align=8 +QPrinterInfo (0x7fc38b29a2a0) 0 + +Class QStylePainter + size=24 align=8 + base size=24 base align=8 +QStylePainter (0x7fc38b2a29a0) 0 + QPainter (0x7fc38b2a2a10) 0 + +Vtable for QAbstractProxyModel +QAbstractProxyModel::_ZTV19QAbstractProxyModel: 47u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractProxyModel) +16 QAbstractProxyModel::metaObject +24 QAbstractProxyModel::qt_metacast +32 QAbstractProxyModel::qt_metacall +40 QAbstractProxyModel::~QAbstractProxyModel +48 QAbstractProxyModel::~QAbstractProxyModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractItemModel::hasChildren +152 QAbstractProxyModel::data +160 QAbstractProxyModel::setData +168 QAbstractProxyModel::headerData +176 QAbstractProxyModel::setHeaderData +184 QAbstractProxyModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractItemModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractProxyModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractProxyModel::submit +328 QAbstractProxyModel::revert +336 QAbstractProxyModel::setSourceModel +344 __cxa_pure_virtual +352 __cxa_pure_virtual +360 QAbstractProxyModel::mapSelectionToSource +368 QAbstractProxyModel::mapSelectionFromSource + +Class QAbstractProxyModel + size=16 align=8 + base size=16 base align=8 +QAbstractProxyModel (0x7fc38b0d0ee0) 0 + vptr=((& QAbstractProxyModel::_ZTV19QAbstractProxyModel) + 16u) + QAbstractItemModel (0x7fc38b0d0f50) 0 + primary-for QAbstractProxyModel (0x7fc38b0d0ee0) + QObject (0x7fc38b0d6000) 0 + primary-for QAbstractItemModel (0x7fc38b0d0f50) + +Vtable for QColumnView +QColumnView::_ZTV11QColumnView: 104u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QColumnView) +16 QColumnView::metaObject +24 QColumnView::qt_metacast +32 QColumnView::qt_metacall +40 QColumnView::~QColumnView +48 QColumnView::~QColumnView +56 QAbstractItemView::event +64 QObject::eventFilter +72 QAbstractItemView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QColumnView::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QAbstractItemView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QAbstractItemView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractScrollArea::paintEvent +256 QWidget::moveEvent +264 QColumnView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QColumnView::scrollContentsBy +464 QColumnView::setModel +472 QColumnView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QColumnView::visualRect +496 QColumnView::scrollTo +504 QColumnView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QAbstractItemView::reset +536 QColumnView::setRootIndex +544 QAbstractItemView::doItemsLayout +552 QColumnView::selectAll +560 QAbstractItemView::dataChanged +568 QColumnView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QAbstractItemView::selectionChanged +592 QColumnView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QAbstractItemView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QColumnView::moveCursor +688 QColumnView::horizontalOffset +696 QColumnView::verticalOffset +704 QColumnView::isIndexHidden +712 QColumnView::setSelection +720 QColumnView::visualRegionForSelection +728 QAbstractItemView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 QColumnView::createColumn +776 (int (*)(...))-0x00000000000000010 +784 (int (*)(...))(& _ZTI11QColumnView) +792 QColumnView::_ZThn16_N11QColumnViewD1Ev +800 QColumnView::_ZThn16_N11QColumnViewD0Ev +808 QWidget::_ZThn16_NK7QWidget7devTypeEv +816 QWidget::_ZThn16_NK7QWidget11paintEngineEv +824 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QColumnView + size=40 align=8 + base size=40 base align=8 +QColumnView (0x7fc38b0ebaf0) 0 + vptr=((& QColumnView::_ZTV11QColumnView) + 16u) + QAbstractItemView (0x7fc38b0ebb60) 0 + primary-for QColumnView (0x7fc38b0ebaf0) + QAbstractScrollArea (0x7fc38b0ebbd0) 0 + primary-for QAbstractItemView (0x7fc38b0ebb60) + QFrame (0x7fc38b0ebc40) 0 + primary-for QAbstractScrollArea (0x7fc38b0ebbd0) + QWidget (0x7fc38b0f2200) 0 + primary-for QFrame (0x7fc38b0ebc40) + QObject (0x7fc38b0ebcb0) 0 + primary-for QWidget (0x7fc38b0f2200) + QPaintDevice (0x7fc38b0ebd20) 16 + vptr=((& QColumnView::_ZTV11QColumnView) + 792u) + +Vtable for QDataWidgetMapper +QDataWidgetMapper::_ZTV17QDataWidgetMapper: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QDataWidgetMapper) +16 QDataWidgetMapper::metaObject +24 QDataWidgetMapper::qt_metacast +32 QDataWidgetMapper::qt_metacall +40 QDataWidgetMapper::~QDataWidgetMapper +48 QDataWidgetMapper::~QDataWidgetMapper +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QDataWidgetMapper::setCurrentIndex + +Class QDataWidgetMapper + size=16 align=8 + base size=16 base align=8 +QDataWidgetMapper (0x7fc38b111c40) 0 + vptr=((& QDataWidgetMapper::_ZTV17QDataWidgetMapper) + 16u) + QObject (0x7fc38b111cb0) 0 + primary-for QDataWidgetMapper (0x7fc38b111c40) + +Vtable for QFileIconProvider +QFileIconProvider::_ZTV17QFileIconProvider: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QFileIconProvider) +16 QFileIconProvider::~QFileIconProvider +24 QFileIconProvider::~QFileIconProvider +32 QFileIconProvider::icon +40 QFileIconProvider::icon +48 QFileIconProvider::type + +Class QFileIconProvider + size=16 align=8 + base size=16 base align=8 +QFileIconProvider (0x7fc38b131700) 0 + vptr=((& QFileIconProvider::_ZTV17QFileIconProvider) + 16u) + +Vtable for QDirModel +QDirModel::_ZTV9QDirModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QDirModel) +16 QDirModel::metaObject +24 QDirModel::qt_metacast +32 QDirModel::qt_metacall +40 QDirModel::~QDirModel +48 QDirModel::~QDirModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QDirModel::index +120 QDirModel::parent +128 QDirModel::rowCount +136 QDirModel::columnCount +144 QDirModel::hasChildren +152 QDirModel::data +160 QDirModel::setData +168 QDirModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QDirModel::mimeTypes +208 QDirModel::mimeData +216 QDirModel::dropMimeData +224 QDirModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QDirModel::flags +288 QDirModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QDirModel + size=16 align=8 + base size=16 base align=8 +QDirModel (0x7fc38b146380) 0 + vptr=((& QDirModel::_ZTV9QDirModel) + 16u) + QAbstractItemModel (0x7fc38b1463f0) 0 + primary-for QDirModel (0x7fc38b146380) + QObject (0x7fc38b146460) 0 + primary-for QAbstractItemModel (0x7fc38b1463f0) + +Vtable for QHeaderView +QHeaderView::_ZTV11QHeaderView: 105u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QHeaderView) +16 QHeaderView::metaObject +24 QHeaderView::qt_metacast +32 QHeaderView::qt_metacall +40 QHeaderView::~QHeaderView +48 QHeaderView::~QHeaderView +56 QHeaderView::event +64 QObject::eventFilter +72 QAbstractItemView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QHeaderView::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QHeaderView::mousePressEvent +168 QHeaderView::mouseReleaseEvent +176 QHeaderView::mouseDoubleClickEvent +184 QHeaderView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QHeaderView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QHeaderView::viewportEvent +456 QHeaderView::scrollContentsBy +464 QHeaderView::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QHeaderView::visualRect +496 QHeaderView::scrollTo +504 QHeaderView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QHeaderView::reset +536 QAbstractItemView::setRootIndex +544 QHeaderView::doItemsLayout +552 QAbstractItemView::selectAll +560 QHeaderView::dataChanged +568 QHeaderView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QAbstractItemView::selectionChanged +592 QHeaderView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QHeaderView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QHeaderView::moveCursor +688 QHeaderView::horizontalOffset +696 QHeaderView::verticalOffset +704 QHeaderView::isIndexHidden +712 QHeaderView::setSelection +720 QHeaderView::visualRegionForSelection +728 QAbstractItemView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 QHeaderView::paintSection +776 QHeaderView::sectionSizeFromContents +784 (int (*)(...))-0x00000000000000010 +792 (int (*)(...))(& _ZTI11QHeaderView) +800 QHeaderView::_ZThn16_N11QHeaderViewD1Ev +808 QHeaderView::_ZThn16_N11QHeaderViewD0Ev +816 QWidget::_ZThn16_NK7QWidget7devTypeEv +824 QWidget::_ZThn16_NK7QWidget11paintEngineEv +832 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QHeaderView + size=40 align=8 + base size=40 base align=8 +QHeaderView (0x7fc38b171620) 0 + vptr=((& QHeaderView::_ZTV11QHeaderView) + 16u) + QAbstractItemView (0x7fc38b171690) 0 + primary-for QHeaderView (0x7fc38b171620) + QAbstractScrollArea (0x7fc38b171700) 0 + primary-for QAbstractItemView (0x7fc38b171690) + QFrame (0x7fc38b171770) 0 + primary-for QAbstractScrollArea (0x7fc38b171700) + QWidget (0x7fc38b14d980) 0 + primary-for QFrame (0x7fc38b171770) + QObject (0x7fc38b1717e0) 0 + primary-for QWidget (0x7fc38b14d980) + QPaintDevice (0x7fc38b171850) 16 + vptr=((& QHeaderView::_ZTV11QHeaderView) + 800u) + +Vtable for QItemDelegate +QItemDelegate::_ZTV13QItemDelegate: 25u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QItemDelegate) +16 QItemDelegate::metaObject +24 QItemDelegate::qt_metacast +32 QItemDelegate::qt_metacall +40 QItemDelegate::~QItemDelegate +48 QItemDelegate::~QItemDelegate +56 QObject::event +64 QItemDelegate::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QItemDelegate::paint +120 QItemDelegate::sizeHint +128 QItemDelegate::createEditor +136 QItemDelegate::setEditorData +144 QItemDelegate::setModelData +152 QItemDelegate::updateEditorGeometry +160 QItemDelegate::editorEvent +168 QItemDelegate::drawDisplay +176 QItemDelegate::drawDecoration +184 QItemDelegate::drawFocus +192 QItemDelegate::drawCheck + +Class QItemDelegate + size=16 align=8 + base size=16 base align=8 +QItemDelegate (0x7fc38afb5230) 0 + vptr=((& QItemDelegate::_ZTV13QItemDelegate) + 16u) + QAbstractItemDelegate (0x7fc38afb52a0) 0 + primary-for QItemDelegate (0x7fc38afb5230) + QObject (0x7fc38afb5310) 0 + primary-for QAbstractItemDelegate (0x7fc38afb52a0) + +Vtable for QItemEditorCreatorBase +QItemEditorCreatorBase::_ZTV22QItemEditorCreatorBase: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QItemEditorCreatorBase) +16 QItemEditorCreatorBase::~QItemEditorCreatorBase +24 QItemEditorCreatorBase::~QItemEditorCreatorBase +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QItemEditorCreatorBase + size=8 align=8 + base size=8 base align=8 +QItemEditorCreatorBase (0x7fc38afd2bd0) 0 nearly-empty + vptr=((& QItemEditorCreatorBase::_ZTV22QItemEditorCreatorBase) + 16u) + +Vtable for QItemEditorFactory +QItemEditorFactory::_ZTV18QItemEditorFactory: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QItemEditorFactory) +16 QItemEditorFactory::~QItemEditorFactory +24 QItemEditorFactory::~QItemEditorFactory +32 QItemEditorFactory::createEditor +40 QItemEditorFactory::valuePropertyName + +Class QItemEditorFactory + size=16 align=8 + base size=16 base align=8 +QItemEditorFactory (0x7fc38afdda80) 0 + vptr=((& QItemEditorFactory::_ZTV18QItemEditorFactory) + 16u) + +Vtable for QListWidgetItem +QListWidgetItem::_ZTV15QListWidgetItem: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QListWidgetItem) +16 QListWidgetItem::~QListWidgetItem +24 QListWidgetItem::~QListWidgetItem +32 QListWidgetItem::clone +40 QListWidgetItem::setBackgroundColor +48 QListWidgetItem::data +56 QListWidgetItem::setData +64 QListWidgetItem::operator< +72 QListWidgetItem::read +80 QListWidgetItem::write + +Class QListWidgetItem + size=48 align=8 + base size=44 base align=8 +QListWidgetItem (0x7fc38afead20) 0 + vptr=((& QListWidgetItem::_ZTV15QListWidgetItem) + 16u) + +Vtable for QListWidget +QListWidget::_ZTV11QListWidget: 107u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QListWidget) +16 QListWidget::metaObject +24 QListWidget::qt_metacast +32 QListWidget::qt_metacall +40 QListWidget::~QListWidget +48 QListWidget::~QListWidget +56 QListWidget::event +64 QObject::eventFilter +72 QListView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QListView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QListView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QListView::paintEvent +256 QWidget::moveEvent +264 QListView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QListView::dragMoveEvent +320 QListView::dragLeaveEvent +328 QListWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QListView::scrollContentsBy +464 QListWidget::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QListView::visualRect +496 QListView::scrollTo +504 QListView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QListView::reset +536 QListView::setRootIndex +544 QListView::doItemsLayout +552 QAbstractItemView::selectAll +560 QListView::dataChanged +568 QListView::rowsInserted +576 QListView::rowsAboutToBeRemoved +584 QListView::selectionChanged +592 QListView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QListView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QListView::moveCursor +688 QListView::horizontalOffset +696 QListView::verticalOffset +704 QListView::isIndexHidden +712 QListView::setSelection +720 QListView::visualRegionForSelection +728 QListView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QListView::startDrag +760 QListView::viewOptions +768 QListWidget::mimeTypes +776 QListWidget::mimeData +784 QListWidget::dropMimeData +792 QListWidget::supportedDropActions +800 (int (*)(...))-0x00000000000000010 +808 (int (*)(...))(& _ZTI11QListWidget) +816 QListWidget::_ZThn16_N11QListWidgetD1Ev +824 QListWidget::_ZThn16_N11QListWidgetD0Ev +832 QWidget::_ZThn16_NK7QWidget7devTypeEv +840 QWidget::_ZThn16_NK7QWidget11paintEngineEv +848 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QListWidget + size=40 align=8 + base size=40 base align=8 +QListWidget (0x7fc38b07c3f0) 0 + vptr=((& QListWidget::_ZTV11QListWidget) + 16u) + QListView (0x7fc38b07c460) 0 + primary-for QListWidget (0x7fc38b07c3f0) + QAbstractItemView (0x7fc38b07c4d0) 0 + primary-for QListView (0x7fc38b07c460) + QAbstractScrollArea (0x7fc38b07c540) 0 + primary-for QAbstractItemView (0x7fc38b07c4d0) + QFrame (0x7fc38b07c5b0) 0 + primary-for QAbstractScrollArea (0x7fc38b07c540) + QWidget (0x7fc38b074a00) 0 + primary-for QFrame (0x7fc38b07c5b0) + QObject (0x7fc38b07c620) 0 + primary-for QWidget (0x7fc38b074a00) + QPaintDevice (0x7fc38b07c690) 16 + vptr=((& QListWidget::_ZTV11QListWidget) + 816u) + +Vtable for QProxyModel +QProxyModel::_ZTV11QProxyModel: 43u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QProxyModel) +16 QProxyModel::metaObject +24 QProxyModel::qt_metacast +32 QProxyModel::qt_metacall +40 QProxyModel::~QProxyModel +48 QProxyModel::~QProxyModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QProxyModel::index +120 QProxyModel::parent +128 QProxyModel::rowCount +136 QProxyModel::columnCount +144 QProxyModel::hasChildren +152 QProxyModel::data +160 QProxyModel::setData +168 QProxyModel::headerData +176 QProxyModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QProxyModel::mimeTypes +208 QProxyModel::mimeData +216 QProxyModel::dropMimeData +224 QProxyModel::supportedDropActions +232 QProxyModel::insertRows +240 QProxyModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QProxyModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QProxyModel::flags +288 QProxyModel::sort +296 QAbstractItemModel::buddy +304 QProxyModel::match +312 QProxyModel::span +320 QProxyModel::submit +328 QProxyModel::revert +336 QProxyModel::setModel + +Class QProxyModel + size=16 align=8 + base size=16 base align=8 +QProxyModel (0x7fc38aeb6850) 0 + vptr=((& QProxyModel::_ZTV11QProxyModel) + 16u) + QAbstractItemModel (0x7fc38aeb68c0) 0 + primary-for QProxyModel (0x7fc38aeb6850) + QObject (0x7fc38aeb6930) 0 + primary-for QAbstractItemModel (0x7fc38aeb68c0) + +Vtable for QSortFilterProxyModel +QSortFilterProxyModel::_ZTV21QSortFilterProxyModel: 50u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QSortFilterProxyModel) +16 QSortFilterProxyModel::metaObject +24 QSortFilterProxyModel::qt_metacast +32 QSortFilterProxyModel::qt_metacall +40 QSortFilterProxyModel::~QSortFilterProxyModel +48 QSortFilterProxyModel::~QSortFilterProxyModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QSortFilterProxyModel::index +120 QSortFilterProxyModel::parent +128 QSortFilterProxyModel::rowCount +136 QSortFilterProxyModel::columnCount +144 QSortFilterProxyModel::hasChildren +152 QSortFilterProxyModel::data +160 QSortFilterProxyModel::setData +168 QSortFilterProxyModel::headerData +176 QSortFilterProxyModel::setHeaderData +184 QAbstractProxyModel::itemData +192 QAbstractItemModel::setItemData +200 QSortFilterProxyModel::mimeTypes +208 QSortFilterProxyModel::mimeData +216 QSortFilterProxyModel::dropMimeData +224 QSortFilterProxyModel::supportedDropActions +232 QSortFilterProxyModel::insertRows +240 QSortFilterProxyModel::insertColumns +248 QSortFilterProxyModel::removeRows +256 QSortFilterProxyModel::removeColumns +264 QSortFilterProxyModel::fetchMore +272 QSortFilterProxyModel::canFetchMore +280 QSortFilterProxyModel::flags +288 QSortFilterProxyModel::sort +296 QSortFilterProxyModel::buddy +304 QSortFilterProxyModel::match +312 QSortFilterProxyModel::span +320 QAbstractProxyModel::submit +328 QAbstractProxyModel::revert +336 QSortFilterProxyModel::setSourceModel +344 QSortFilterProxyModel::mapToSource +352 QSortFilterProxyModel::mapFromSource +360 QSortFilterProxyModel::mapSelectionToSource +368 QSortFilterProxyModel::mapSelectionFromSource +376 QSortFilterProxyModel::filterAcceptsRow +384 QSortFilterProxyModel::filterAcceptsColumn +392 QSortFilterProxyModel::lessThan + +Class QSortFilterProxyModel + size=16 align=8 + base size=16 base align=8 +QSortFilterProxyModel (0x7fc38aed9700) 0 + vptr=((& QSortFilterProxyModel::_ZTV21QSortFilterProxyModel) + 16u) + QAbstractProxyModel (0x7fc38aed9770) 0 + primary-for QSortFilterProxyModel (0x7fc38aed9700) + QAbstractItemModel (0x7fc38aed97e0) 0 + primary-for QAbstractProxyModel (0x7fc38aed9770) + QObject (0x7fc38aed9850) 0 + primary-for QAbstractItemModel (0x7fc38aed97e0) + +Vtable for QStandardItem +QStandardItem::_ZTV13QStandardItem: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QStandardItem) +16 QStandardItem::~QStandardItem +24 QStandardItem::~QStandardItem +32 QStandardItem::data +40 QStandardItem::setData +48 QStandardItem::clone +56 QStandardItem::type +64 QStandardItem::read +72 QStandardItem::write +80 QStandardItem::operator< + +Class QStandardItem + size=16 align=8 + base size=16 base align=8 +QStandardItem (0x7fc38af08620) 0 + vptr=((& QStandardItem::_ZTV13QStandardItem) + 16u) + +Vtable for QStandardItemModel +QStandardItemModel::_ZTV18QStandardItemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QStandardItemModel) +16 QStandardItemModel::metaObject +24 QStandardItemModel::qt_metacast +32 QStandardItemModel::qt_metacall +40 QStandardItemModel::~QStandardItemModel +48 QStandardItemModel::~QStandardItemModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QStandardItemModel::index +120 QStandardItemModel::parent +128 QStandardItemModel::rowCount +136 QStandardItemModel::columnCount +144 QStandardItemModel::hasChildren +152 QStandardItemModel::data +160 QStandardItemModel::setData +168 QStandardItemModel::headerData +176 QStandardItemModel::setHeaderData +184 QStandardItemModel::itemData +192 QStandardItemModel::setItemData +200 QStandardItemModel::mimeTypes +208 QStandardItemModel::mimeData +216 QStandardItemModel::dropMimeData +224 QStandardItemModel::supportedDropActions +232 QStandardItemModel::insertRows +240 QStandardItemModel::insertColumns +248 QStandardItemModel::removeRows +256 QStandardItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QStandardItemModel::flags +288 QStandardItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QStandardItemModel + size=16 align=8 + base size=16 base align=8 +QStandardItemModel (0x7fc38adf33f0) 0 + vptr=((& QStandardItemModel::_ZTV18QStandardItemModel) + 16u) + QAbstractItemModel (0x7fc38adf3460) 0 + primary-for QStandardItemModel (0x7fc38adf33f0) + QObject (0x7fc38adf34d0) 0 + primary-for QAbstractItemModel (0x7fc38adf3460) + +Vtable for QStringListModel +QStringListModel::_ZTV16QStringListModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QStringListModel) +16 QStringListModel::metaObject +24 QStringListModel::qt_metacast +32 QStringListModel::qt_metacall +40 QStringListModel::~QStringListModel +48 QStringListModel::~QStringListModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractListModel::index +120 QAbstractListModel::parent +128 QStringListModel::rowCount +136 QAbstractListModel::columnCount +144 QAbstractListModel::hasChildren +152 QStringListModel::data +160 QStringListModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractListModel::dropMimeData +224 QStringListModel::supportedDropActions +232 QStringListModel::insertRows +240 QAbstractItemModel::insertColumns +248 QStringListModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QStringListModel::flags +288 QStringListModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QStringListModel + size=24 align=8 + base size=24 base align=8 +QStringListModel (0x7fc38ae2ef50) 0 + vptr=((& QStringListModel::_ZTV16QStringListModel) + 16u) + QAbstractListModel (0x7fc38ae42000) 0 + primary-for QStringListModel (0x7fc38ae2ef50) + QAbstractItemModel (0x7fc38ae42070) 0 + primary-for QAbstractListModel (0x7fc38ae42000) + QObject (0x7fc38ae420e0) 0 + primary-for QAbstractItemModel (0x7fc38ae42070) + +Vtable for QStyledItemDelegate +QStyledItemDelegate::_ZTV19QStyledItemDelegate: 23u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QStyledItemDelegate) +16 QStyledItemDelegate::metaObject +24 QStyledItemDelegate::qt_metacast +32 QStyledItemDelegate::qt_metacall +40 QStyledItemDelegate::~QStyledItemDelegate +48 QStyledItemDelegate::~QStyledItemDelegate +56 QObject::event +64 QStyledItemDelegate::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QStyledItemDelegate::paint +120 QStyledItemDelegate::sizeHint +128 QStyledItemDelegate::createEditor +136 QStyledItemDelegate::setEditorData +144 QStyledItemDelegate::setModelData +152 QStyledItemDelegate::updateEditorGeometry +160 QStyledItemDelegate::editorEvent +168 QStyledItemDelegate::displayText +176 QStyledItemDelegate::initStyleOption + +Class QStyledItemDelegate + size=16 align=8 + base size=16 base align=8 +QStyledItemDelegate (0x7fc38ae595b0) 0 + vptr=((& QStyledItemDelegate::_ZTV19QStyledItemDelegate) + 16u) + QAbstractItemDelegate (0x7fc38ae59620) 0 + primary-for QStyledItemDelegate (0x7fc38ae595b0) + QObject (0x7fc38ae59690) 0 + primary-for QAbstractItemDelegate (0x7fc38ae59620) + +Vtable for QTableView +QTableView::_ZTV10QTableView: 103u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTableView) +16 QTableView::metaObject +24 QTableView::qt_metacast +32 QTableView::qt_metacall +40 QTableView::~QTableView +48 QTableView::~QTableView +56 QAbstractItemView::event +64 QObject::eventFilter +72 QTableView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QAbstractItemView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QAbstractItemView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTableView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QTableView::scrollContentsBy +464 QTableView::setModel +472 QTableView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QTableView::visualRect +496 QTableView::scrollTo +504 QTableView::indexAt +512 QTableView::sizeHintForRow +520 QTableView::sizeHintForColumn +528 QAbstractItemView::reset +536 QTableView::setRootIndex +544 QAbstractItemView::doItemsLayout +552 QAbstractItemView::selectAll +560 QAbstractItemView::dataChanged +568 QAbstractItemView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QTableView::selectionChanged +592 QTableView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QTableView::updateGeometries +624 QTableView::verticalScrollbarAction +632 QTableView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QTableView::moveCursor +688 QTableView::horizontalOffset +696 QTableView::verticalOffset +704 QTableView::isIndexHidden +712 QTableView::setSelection +720 QTableView::visualRegionForSelection +728 QTableView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QTableView::viewOptions +768 (int (*)(...))-0x00000000000000010 +776 (int (*)(...))(& _ZTI10QTableView) +784 QTableView::_ZThn16_N10QTableViewD1Ev +792 QTableView::_ZThn16_N10QTableViewD0Ev +800 QWidget::_ZThn16_NK7QWidget7devTypeEv +808 QWidget::_ZThn16_NK7QWidget11paintEngineEv +816 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTableView + size=40 align=8 + base size=40 base align=8 +QTableView (0x7fc38ae70f50) 0 + vptr=((& QTableView::_ZTV10QTableView) + 16u) + QAbstractItemView (0x7fc38ae77000) 0 + primary-for QTableView (0x7fc38ae70f50) + QAbstractScrollArea (0x7fc38ae77070) 0 + primary-for QAbstractItemView (0x7fc38ae77000) + QFrame (0x7fc38ae770e0) 0 + primary-for QAbstractScrollArea (0x7fc38ae77070) + QWidget (0x7fc38ae58b00) 0 + primary-for QFrame (0x7fc38ae770e0) + QObject (0x7fc38ae77150) 0 + primary-for QWidget (0x7fc38ae58b00) + QPaintDevice (0x7fc38ae771c0) 16 + vptr=((& QTableView::_ZTV10QTableView) + 784u) + +Class QTableWidgetSelectionRange + size=16 align=4 + base size=16 base align=4 +QTableWidgetSelectionRange (0x7fc38aea2d20) 0 + +Vtable for QTableWidgetItem +QTableWidgetItem::_ZTV16QTableWidgetItem: 10u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QTableWidgetItem) +16 QTableWidgetItem::~QTableWidgetItem +24 QTableWidgetItem::~QTableWidgetItem +32 QTableWidgetItem::clone +40 QTableWidgetItem::data +48 QTableWidgetItem::setData +56 QTableWidgetItem::operator< +64 QTableWidgetItem::read +72 QTableWidgetItem::write + +Class QTableWidgetItem + size=48 align=8 + base size=44 base align=8 +QTableWidgetItem (0x7fc38acb2230) 0 + vptr=((& QTableWidgetItem::_ZTV16QTableWidgetItem) + 16u) + +Vtable for QTableWidget +QTableWidget::_ZTV12QTableWidget: 107u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTableWidget) +16 QTableWidget::metaObject +24 QTableWidget::qt_metacast +32 QTableWidget::qt_metacall +40 QTableWidget::~QTableWidget +48 QTableWidget::~QTableWidget +56 QTableWidget::event +64 QObject::eventFilter +72 QTableView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QAbstractItemView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QAbstractItemView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTableView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QTableWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QTableView::scrollContentsBy +464 QTableWidget::setModel +472 QTableView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QTableView::visualRect +496 QTableView::scrollTo +504 QTableView::indexAt +512 QTableView::sizeHintForRow +520 QTableView::sizeHintForColumn +528 QAbstractItemView::reset +536 QTableView::setRootIndex +544 QAbstractItemView::doItemsLayout +552 QAbstractItemView::selectAll +560 QAbstractItemView::dataChanged +568 QAbstractItemView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QTableView::selectionChanged +592 QTableView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QTableView::updateGeometries +624 QTableView::verticalScrollbarAction +632 QTableView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QTableView::moveCursor +688 QTableView::horizontalOffset +696 QTableView::verticalOffset +704 QTableView::isIndexHidden +712 QTableView::setSelection +720 QTableView::visualRegionForSelection +728 QTableView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QTableView::viewOptions +768 QTableWidget::mimeTypes +776 QTableWidget::mimeData +784 QTableWidget::dropMimeData +792 QTableWidget::supportedDropActions +800 (int (*)(...))-0x00000000000000010 +808 (int (*)(...))(& _ZTI12QTableWidget) +816 QTableWidget::_ZThn16_N12QTableWidgetD1Ev +824 QTableWidget::_ZThn16_N12QTableWidgetD0Ev +832 QWidget::_ZThn16_NK7QWidget7devTypeEv +840 QWidget::_ZThn16_NK7QWidget11paintEngineEv +848 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTableWidget + size=40 align=8 + base size=40 base align=8 +QTableWidget (0x7fc38ad267e0) 0 + vptr=((& QTableWidget::_ZTV12QTableWidget) + 16u) + QTableView (0x7fc38ad26850) 0 + primary-for QTableWidget (0x7fc38ad267e0) + QAbstractItemView (0x7fc38ad268c0) 0 + primary-for QTableView (0x7fc38ad26850) + QAbstractScrollArea (0x7fc38ad26930) 0 + primary-for QAbstractItemView (0x7fc38ad268c0) + QFrame (0x7fc38ad269a0) 0 + primary-for QAbstractScrollArea (0x7fc38ad26930) + QWidget (0x7fc38ad1bc80) 0 + primary-for QFrame (0x7fc38ad269a0) + QObject (0x7fc38ad26a10) 0 + primary-for QWidget (0x7fc38ad1bc80) + QPaintDevice (0x7fc38ad26a80) 16 + vptr=((& QTableWidget::_ZTV12QTableWidget) + 816u) + +Vtable for QTreeView +QTreeView::_ZTV9QTreeView: 105u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTreeView) +16 QTreeView::metaObject +24 QTreeView::qt_metacast +32 QTreeView::qt_metacall +40 QTreeView::~QTreeView +48 QTreeView::~QTreeView +56 QAbstractItemView::event +64 QObject::eventFilter +72 QTreeView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTreeView::mousePressEvent +168 QTreeView::mouseReleaseEvent +176 QTreeView::mouseDoubleClickEvent +184 QTreeView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QTreeView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTreeView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QTreeView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QTreeView::viewportEvent +456 QTreeView::scrollContentsBy +464 QTreeView::setModel +472 QTreeView::setSelectionModel +480 QTreeView::keyboardSearch +488 QTreeView::visualRect +496 QTreeView::scrollTo +504 QTreeView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QTreeView::sizeHintForColumn +528 QTreeView::reset +536 QTreeView::setRootIndex +544 QTreeView::doItemsLayout +552 QTreeView::selectAll +560 QTreeView::dataChanged +568 QTreeView::rowsInserted +576 QTreeView::rowsAboutToBeRemoved +584 QTreeView::selectionChanged +592 QTreeView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QTreeView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QTreeView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QTreeView::moveCursor +688 QTreeView::horizontalOffset +696 QTreeView::verticalOffset +704 QTreeView::isIndexHidden +712 QTreeView::setSelection +720 QTreeView::visualRegionForSelection +728 QTreeView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 QTreeView::drawRow +776 QTreeView::drawBranches +784 (int (*)(...))-0x00000000000000010 +792 (int (*)(...))(& _ZTI9QTreeView) +800 QTreeView::_ZThn16_N9QTreeViewD1Ev +808 QTreeView::_ZThn16_N9QTreeViewD0Ev +816 QWidget::_ZThn16_NK7QWidget7devTypeEv +824 QWidget::_ZThn16_NK7QWidget11paintEngineEv +832 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTreeView + size=40 align=8 + base size=40 base align=8 +QTreeView (0x7fc38ad64770) 0 + vptr=((& QTreeView::_ZTV9QTreeView) + 16u) + QAbstractItemView (0x7fc38ad647e0) 0 + primary-for QTreeView (0x7fc38ad64770) + QAbstractScrollArea (0x7fc38ad64850) 0 + primary-for QAbstractItemView (0x7fc38ad647e0) + QFrame (0x7fc38ad648c0) 0 + primary-for QAbstractScrollArea (0x7fc38ad64850) + QWidget (0x7fc38ad63600) 0 + primary-for QFrame (0x7fc38ad648c0) + QObject (0x7fc38ad64930) 0 + primary-for QWidget (0x7fc38ad63600) + QPaintDevice (0x7fc38ad649a0) 16 + vptr=((& QTreeView::_ZTV9QTreeView) + 800u) + +Class QTreeWidgetItemIterator + size=24 align=8 + base size=20 base align=8 +QTreeWidgetItemIterator (0x7fc38ad9e540) 0 + +Vtable for QTreeWidgetItem +QTreeWidgetItem::_ZTV15QTreeWidgetItem: 10u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QTreeWidgetItem) +16 QTreeWidgetItem::~QTreeWidgetItem +24 QTreeWidgetItem::~QTreeWidgetItem +32 QTreeWidgetItem::clone +40 QTreeWidgetItem::data +48 QTreeWidgetItem::setData +56 QTreeWidgetItem::operator< +64 QTreeWidgetItem::read +72 QTreeWidgetItem::write + +Class QTreeWidgetItem + size=64 align=8 + base size=60 base align=8 +QTreeWidgetItem (0x7fc38ac0b2a0) 0 + vptr=((& QTreeWidgetItem::_ZTV15QTreeWidgetItem) + 16u) + +Vtable for QTreeWidget +QTreeWidget::_ZTV11QTreeWidget: 109u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTreeWidget) +16 QTreeWidget::metaObject +24 QTreeWidget::qt_metacast +32 QTreeWidget::qt_metacall +40 QTreeWidget::~QTreeWidget +48 QTreeWidget::~QTreeWidget +56 QTreeWidget::event +64 QObject::eventFilter +72 QTreeView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTreeView::mousePressEvent +168 QTreeView::mouseReleaseEvent +176 QTreeView::mouseDoubleClickEvent +184 QTreeView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QTreeView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTreeView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QTreeView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QTreeWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QTreeView::viewportEvent +456 QTreeView::scrollContentsBy +464 QTreeWidget::setModel +472 QTreeWidget::setSelectionModel +480 QTreeView::keyboardSearch +488 QTreeView::visualRect +496 QTreeView::scrollTo +504 QTreeView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QTreeView::sizeHintForColumn +528 QTreeView::reset +536 QTreeView::setRootIndex +544 QTreeView::doItemsLayout +552 QTreeView::selectAll +560 QTreeView::dataChanged +568 QTreeView::rowsInserted +576 QTreeView::rowsAboutToBeRemoved +584 QTreeView::selectionChanged +592 QTreeView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QTreeView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QTreeView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QTreeView::moveCursor +688 QTreeView::horizontalOffset +696 QTreeView::verticalOffset +704 QTreeView::isIndexHidden +712 QTreeView::setSelection +720 QTreeView::visualRegionForSelection +728 QTreeView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 QTreeView::drawRow +776 QTreeView::drawBranches +784 QTreeWidget::mimeTypes +792 QTreeWidget::mimeData +800 QTreeWidget::dropMimeData +808 QTreeWidget::supportedDropActions +816 (int (*)(...))-0x00000000000000010 +824 (int (*)(...))(& _ZTI11QTreeWidget) +832 QTreeWidget::_ZThn16_N11QTreeWidgetD1Ev +840 QTreeWidget::_ZThn16_N11QTreeWidgetD0Ev +848 QWidget::_ZThn16_NK7QWidget7devTypeEv +856 QWidget::_ZThn16_NK7QWidget11paintEngineEv +864 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTreeWidget + size=40 align=8 + base size=40 base align=8 +QTreeWidget (0x7fc38aab98c0) 0 + vptr=((& QTreeWidget::_ZTV11QTreeWidget) + 16u) + QTreeView (0x7fc38aab9930) 0 + primary-for QTreeWidget (0x7fc38aab98c0) + QAbstractItemView (0x7fc38aab99a0) 0 + primary-for QTreeView (0x7fc38aab9930) + QAbstractScrollArea (0x7fc38aab9a10) 0 + primary-for QAbstractItemView (0x7fc38aab99a0) + QFrame (0x7fc38aab9a80) 0 + primary-for QAbstractScrollArea (0x7fc38aab9a10) + QWidget (0x7fc38aaba200) 0 + primary-for QFrame (0x7fc38aab9a80) + QObject (0x7fc38aab9af0) 0 + primary-for QWidget (0x7fc38aaba200) + QPaintDevice (0x7fc38aab9b60) 16 + vptr=((& QTreeWidget::_ZTV11QTreeWidget) + 832u) + +Class QAccessible + size=1 align=1 + base size=0 base align=1 +QAccessible (0x7fc38ab00c40) 0 empty + +Vtable for QAccessibleInterface +QAccessibleInterface::_ZTV20QAccessibleInterface: 19u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QAccessibleInterface) +16 QAccessibleInterface::~QAccessibleInterface +24 QAccessibleInterface::~QAccessibleInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual + +Class QAccessibleInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleInterface (0x7fc38a9abe00) 0 nearly-empty + vptr=((& QAccessibleInterface::_ZTV20QAccessibleInterface) + 16u) + QAccessible (0x7fc38a9abe70) 0 empty + +Vtable for QAccessibleInterfaceEx +QAccessibleInterfaceEx::_ZTV22QAccessibleInterfaceEx: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QAccessibleInterfaceEx) +16 QAccessibleInterfaceEx::~QAccessibleInterfaceEx +24 QAccessibleInterfaceEx::~QAccessibleInterfaceEx +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 QAccessibleInterfaceEx::virtual_hook +168 QAccessibleInterfaceEx::interface_cast + +Class QAccessibleInterfaceEx + size=8 align=8 + base size=8 base align=8 +QAccessibleInterfaceEx (0x7fc38aa27b60) 0 nearly-empty + vptr=((& QAccessibleInterfaceEx::_ZTV22QAccessibleInterfaceEx) + 16u) + QAccessibleInterface (0x7fc38aa27bd0) 0 nearly-empty + primary-for QAccessibleInterfaceEx (0x7fc38aa27b60) + QAccessible (0x7fc38aa27c40) 0 empty + +Vtable for QAccessibleEvent +QAccessibleEvent::_ZTV16QAccessibleEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QAccessibleEvent) +16 QAccessibleEvent::~QAccessibleEvent +24 QAccessibleEvent::~QAccessibleEvent + +Class QAccessibleEvent + size=32 align=8 + base size=32 base align=8 +QAccessibleEvent (0x7fc38aa27ee0) 0 + vptr=((& QAccessibleEvent::_ZTV16QAccessibleEvent) + 16u) + QEvent (0x7fc38aa27f50) 0 + primary-for QAccessibleEvent (0x7fc38aa27ee0) + +Vtable for QAccessible2Interface +QAccessible2Interface::_ZTV21QAccessible2Interface: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QAccessible2Interface) +16 QAccessible2Interface::~QAccessible2Interface +24 QAccessible2Interface::~QAccessible2Interface + +Class QAccessible2Interface + size=8 align=8 + base size=8 base align=8 +QAccessible2Interface (0x7fc38aa3cf50) 0 nearly-empty + vptr=((& QAccessible2Interface::_ZTV21QAccessible2Interface) + 16u) + +Vtable for QAccessibleTextInterface +QAccessibleTextInterface::_ZTV24QAccessibleTextInterface: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QAccessibleTextInterface) +16 QAccessibleTextInterface::~QAccessibleTextInterface +24 QAccessibleTextInterface::~QAccessibleTextInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual + +Class QAccessibleTextInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleTextInterface (0x7fc38aa531c0) 0 nearly-empty + vptr=((& QAccessibleTextInterface::_ZTV24QAccessibleTextInterface) + 16u) + QAccessible2Interface (0x7fc38aa53230) 0 nearly-empty + primary-for QAccessibleTextInterface (0x7fc38aa531c0) + +Vtable for QAccessibleEditableTextInterface +QAccessibleEditableTextInterface::_ZTV32QAccessibleEditableTextInterface: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI32QAccessibleEditableTextInterface) +16 QAccessibleEditableTextInterface::~QAccessibleEditableTextInterface +24 QAccessibleEditableTextInterface::~QAccessibleEditableTextInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual + +Class QAccessibleEditableTextInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleEditableTextInterface (0x7fc38aa65070) 0 nearly-empty + vptr=((& QAccessibleEditableTextInterface::_ZTV32QAccessibleEditableTextInterface) + 16u) + QAccessible2Interface (0x7fc38aa650e0) 0 nearly-empty + primary-for QAccessibleEditableTextInterface (0x7fc38aa65070) + +Vtable for QAccessibleSimpleEditableTextInterface +QAccessibleSimpleEditableTextInterface::_ZTV38QAccessibleSimpleEditableTextInterface: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI38QAccessibleSimpleEditableTextInterface) +16 QAccessibleSimpleEditableTextInterface::~QAccessibleSimpleEditableTextInterface +24 QAccessibleSimpleEditableTextInterface::~QAccessibleSimpleEditableTextInterface +32 QAccessibleSimpleEditableTextInterface::copyText +40 QAccessibleSimpleEditableTextInterface::deleteText +48 QAccessibleSimpleEditableTextInterface::insertText +56 QAccessibleSimpleEditableTextInterface::cutText +64 QAccessibleSimpleEditableTextInterface::pasteText +72 QAccessibleSimpleEditableTextInterface::replaceText +80 QAccessibleSimpleEditableTextInterface::setAttributes + +Class QAccessibleSimpleEditableTextInterface + size=16 align=8 + base size=16 base align=8 +QAccessibleSimpleEditableTextInterface (0x7fc38aa65f50) 0 + vptr=((& QAccessibleSimpleEditableTextInterface::_ZTV38QAccessibleSimpleEditableTextInterface) + 16u) + QAccessibleEditableTextInterface (0x7fc38aa65310) 0 nearly-empty + primary-for QAccessibleSimpleEditableTextInterface (0x7fc38aa65f50) + QAccessible2Interface (0x7fc38aa6f000) 0 nearly-empty + primary-for QAccessibleEditableTextInterface (0x7fc38aa65310) + +Vtable for QAccessibleValueInterface +QAccessibleValueInterface::_ZTV25QAccessibleValueInterface: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QAccessibleValueInterface) +16 QAccessibleValueInterface::~QAccessibleValueInterface +24 QAccessibleValueInterface::~QAccessibleValueInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual + +Class QAccessibleValueInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleValueInterface (0x7fc38aa6f230) 0 nearly-empty + vptr=((& QAccessibleValueInterface::_ZTV25QAccessibleValueInterface) + 16u) + QAccessible2Interface (0x7fc38aa6f2a0) 0 nearly-empty + primary-for QAccessibleValueInterface (0x7fc38aa6f230) + +Vtable for QAccessibleTableInterface +QAccessibleTableInterface::_ZTV25QAccessibleTableInterface: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QAccessibleTableInterface) +16 QAccessibleTableInterface::~QAccessibleTableInterface +24 QAccessibleTableInterface::~QAccessibleTableInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 __cxa_pure_virtual +208 __cxa_pure_virtual +216 __cxa_pure_virtual +224 __cxa_pure_virtual +232 __cxa_pure_virtual + +Class QAccessibleTableInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleTableInterface (0x7fc38aa80070) 0 nearly-empty + vptr=((& QAccessibleTableInterface::_ZTV25QAccessibleTableInterface) + 16u) + QAccessible2Interface (0x7fc38aa800e0) 0 nearly-empty + primary-for QAccessibleTableInterface (0x7fc38aa80070) + +Vtable for QAccessibleActionInterface +QAccessibleActionInterface::_ZTV26QAccessibleActionInterface: 10u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QAccessibleActionInterface) +16 QAccessibleActionInterface::~QAccessibleActionInterface +24 QAccessibleActionInterface::~QAccessibleActionInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual + +Class QAccessibleActionInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleActionInterface (0x7fc38aa80460) 0 nearly-empty + vptr=((& QAccessibleActionInterface::_ZTV26QAccessibleActionInterface) + 16u) + QAccessible2Interface (0x7fc38aa804d0) 0 nearly-empty + primary-for QAccessibleActionInterface (0x7fc38aa80460) + +Vtable for QAccessibleImageInterface +QAccessibleImageInterface::_ZTV25QAccessibleImageInterface: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QAccessibleImageInterface) +16 QAccessibleImageInterface::~QAccessibleImageInterface +24 QAccessibleImageInterface::~QAccessibleImageInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual + +Class QAccessibleImageInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleImageInterface (0x7fc38aa80850) 0 nearly-empty + vptr=((& QAccessibleImageInterface::_ZTV25QAccessibleImageInterface) + 16u) + QAccessible2Interface (0x7fc38aa808c0) 0 nearly-empty + primary-for QAccessibleImageInterface (0x7fc38aa80850) + +Vtable for QAccessibleBridge +QAccessibleBridge::_ZTV17QAccessibleBridge: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAccessibleBridge) +16 QAccessibleBridge::~QAccessibleBridge +24 QAccessibleBridge::~QAccessibleBridge +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QAccessibleBridge + size=8 align=8 + base size=8 base align=8 +QAccessibleBridge (0x7fc38aa80c40) 0 nearly-empty + vptr=((& QAccessibleBridge::_ZTV17QAccessibleBridge) + 16u) + +Vtable for QAccessibleBridgeFactoryInterface +QAccessibleBridgeFactoryInterface::_ZTV33QAccessibleBridgeFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI33QAccessibleBridgeFactoryInterface) +16 QAccessibleBridgeFactoryInterface::~QAccessibleBridgeFactoryInterface +24 QAccessibleBridgeFactoryInterface::~QAccessibleBridgeFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QAccessibleBridgeFactoryInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleBridgeFactoryInterface (0x7fc38aa9a540) 0 nearly-empty + vptr=((& QAccessibleBridgeFactoryInterface::_ZTV33QAccessibleBridgeFactoryInterface) + 16u) + QFactoryInterface (0x7fc38aa9a5b0) 0 nearly-empty + primary-for QAccessibleBridgeFactoryInterface (0x7fc38aa9a540) + +Vtable for QAccessibleBridgePlugin +QAccessibleBridgePlugin::_ZTV23QAccessibleBridgePlugin: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QAccessibleBridgePlugin) +16 QAccessibleBridgePlugin::metaObject +24 QAccessibleBridgePlugin::qt_metacast +32 QAccessibleBridgePlugin::qt_metacall +40 QAccessibleBridgePlugin::~QAccessibleBridgePlugin +48 QAccessibleBridgePlugin::~QAccessibleBridgePlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI23QAccessibleBridgePlugin) +144 QAccessibleBridgePlugin::_ZThn16_N23QAccessibleBridgePluginD1Ev +152 QAccessibleBridgePlugin::_ZThn16_N23QAccessibleBridgePluginD0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QAccessibleBridgePlugin + size=24 align=8 + base size=24 base align=8 +QAccessibleBridgePlugin (0x7fc38aaa5580) 0 + vptr=((& QAccessibleBridgePlugin::_ZTV23QAccessibleBridgePlugin) + 16u) + QObject (0x7fc38aa9a620) 0 + primary-for QAccessibleBridgePlugin (0x7fc38aaa5580) + QAccessibleBridgeFactoryInterface (0x7fc38a8aa000) 16 nearly-empty + vptr=((& QAccessibleBridgePlugin::_ZTV23QAccessibleBridgePlugin) + 144u) + QFactoryInterface (0x7fc38a8aa070) 16 nearly-empty + primary-for QAccessibleBridgeFactoryInterface (0x7fc38a8aa000) + +Vtable for QAccessibleObject +QAccessibleObject::_ZTV17QAccessibleObject: 19u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAccessibleObject) +16 QAccessibleObject::~QAccessibleObject +24 QAccessibleObject::~QAccessibleObject +32 QAccessibleObject::isValid +40 QAccessibleObject::object +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 QAccessibleObject::setText +104 QAccessibleObject::rect +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAccessibleObject::userActionCount +136 QAccessibleObject::actionText +144 QAccessibleObject::doAction + +Class QAccessibleObject + size=16 align=8 + base size=16 base align=8 +QAccessibleObject (0x7fc38a8aaf50) 0 + vptr=((& QAccessibleObject::_ZTV17QAccessibleObject) + 16u) + QAccessibleInterface (0x7fc38a8aa310) 0 nearly-empty + primary-for QAccessibleObject (0x7fc38a8aaf50) + QAccessible (0x7fc38a8bb000) 0 empty + +Vtable for QAccessibleObjectEx +QAccessibleObjectEx::_ZTV19QAccessibleObjectEx: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAccessibleObjectEx) +16 QAccessibleObjectEx::~QAccessibleObjectEx +24 QAccessibleObjectEx::~QAccessibleObjectEx +32 QAccessibleObjectEx::isValid +40 QAccessibleObjectEx::object +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 QAccessibleObjectEx::setText +104 QAccessibleObjectEx::rect +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAccessibleObjectEx::userActionCount +136 QAccessibleObjectEx::actionText +144 QAccessibleObjectEx::doAction +152 __cxa_pure_virtual +160 QAccessibleInterfaceEx::virtual_hook +168 QAccessibleInterfaceEx::interface_cast + +Class QAccessibleObjectEx + size=16 align=8 + base size=16 base align=8 +QAccessibleObjectEx (0x7fc38a8bb700) 0 + vptr=((& QAccessibleObjectEx::_ZTV19QAccessibleObjectEx) + 16u) + QAccessibleInterfaceEx (0x7fc38a8bb770) 0 nearly-empty + primary-for QAccessibleObjectEx (0x7fc38a8bb700) + QAccessibleInterface (0x7fc38a8bb7e0) 0 nearly-empty + primary-for QAccessibleInterfaceEx (0x7fc38a8bb770) + QAccessible (0x7fc38a8bb850) 0 empty + +Vtable for QAccessibleApplication +QAccessibleApplication::_ZTV22QAccessibleApplication: 19u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QAccessibleApplication) +16 QAccessibleApplication::~QAccessibleApplication +24 QAccessibleApplication::~QAccessibleApplication +32 QAccessibleObject::isValid +40 QAccessibleObject::object +48 QAccessibleApplication::childCount +56 QAccessibleApplication::indexOfChild +64 QAccessibleApplication::relationTo +72 QAccessibleApplication::childAt +80 QAccessibleApplication::navigate +88 QAccessibleApplication::text +96 QAccessibleObject::setText +104 QAccessibleObject::rect +112 QAccessibleApplication::role +120 QAccessibleApplication::state +128 QAccessibleApplication::userActionCount +136 QAccessibleApplication::actionText +144 QAccessibleApplication::doAction + +Class QAccessibleApplication + size=16 align=8 + base size=16 base align=8 +QAccessibleApplication (0x7fc38a8bbf50) 0 + vptr=((& QAccessibleApplication::_ZTV22QAccessibleApplication) + 16u) + QAccessibleObject (0x7fc38a8bb690) 0 + primary-for QAccessibleApplication (0x7fc38a8bbf50) + QAccessibleInterface (0x7fc38a8bbee0) 0 nearly-empty + primary-for QAccessibleObject (0x7fc38a8bb690) + QAccessible (0x7fc38a8cd000) 0 empty + +Vtable for QAccessibleFactoryInterface +QAccessibleFactoryInterface::_ZTV27QAccessibleFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QAccessibleFactoryInterface) +16 QAccessibleFactoryInterface::~QAccessibleFactoryInterface +24 QAccessibleFactoryInterface::~QAccessibleFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QAccessibleFactoryInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleFactoryInterface (0x7fc38aaa5e00) 0 nearly-empty + vptr=((& QAccessibleFactoryInterface::_ZTV27QAccessibleFactoryInterface) + 16u) + QAccessible (0x7fc38a8cd8c0) 0 empty + QFactoryInterface (0x7fc38a8cd930) 0 nearly-empty + primary-for QAccessibleFactoryInterface (0x7fc38aaa5e00) + +Vtable for QAccessiblePlugin +QAccessiblePlugin::_ZTV17QAccessiblePlugin: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAccessiblePlugin) +16 QAccessiblePlugin::metaObject +24 QAccessiblePlugin::qt_metacast +32 QAccessiblePlugin::qt_metacall +40 QAccessiblePlugin::~QAccessiblePlugin +48 QAccessiblePlugin::~QAccessiblePlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI17QAccessiblePlugin) +144 QAccessiblePlugin::_ZThn16_N17QAccessiblePluginD1Ev +152 QAccessiblePlugin::_ZThn16_N17QAccessiblePluginD0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QAccessiblePlugin + size=24 align=8 + base size=24 base align=8 +QAccessiblePlugin (0x7fc38a8d8800) 0 + vptr=((& QAccessiblePlugin::_ZTV17QAccessiblePlugin) + 16u) + QObject (0x7fc38a8df2a0) 0 + primary-for QAccessiblePlugin (0x7fc38a8d8800) + QAccessibleFactoryInterface (0x7fc38a8d8880) 16 nearly-empty + vptr=((& QAccessiblePlugin::_ZTV17QAccessiblePlugin) + 144u) + QAccessible (0x7fc38a8df310) 16 empty + QFactoryInterface (0x7fc38a8df380) 16 nearly-empty + primary-for QAccessibleFactoryInterface (0x7fc38a8d8880) + +Vtable for QAccessibleWidget +QAccessibleWidget::_ZTV17QAccessibleWidget: 19u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAccessibleWidget) +16 QAccessibleWidget::~QAccessibleWidget +24 QAccessibleWidget::~QAccessibleWidget +32 QAccessibleObject::isValid +40 QAccessibleObject::object +48 QAccessibleWidget::childCount +56 QAccessibleWidget::indexOfChild +64 QAccessibleWidget::relationTo +72 QAccessibleWidget::childAt +80 QAccessibleWidget::navigate +88 QAccessibleWidget::text +96 QAccessibleObject::setText +104 QAccessibleWidget::rect +112 QAccessibleWidget::role +120 QAccessibleWidget::state +128 QAccessibleWidget::userActionCount +136 QAccessibleWidget::actionText +144 QAccessibleWidget::doAction + +Class QAccessibleWidget + size=24 align=8 + base size=24 base align=8 +QAccessibleWidget (0x7fc38a8ef310) 0 + vptr=((& QAccessibleWidget::_ZTV17QAccessibleWidget) + 16u) + QAccessibleObject (0x7fc38a8ef380) 0 + primary-for QAccessibleWidget (0x7fc38a8ef310) + QAccessibleInterface (0x7fc38a8ef3f0) 0 nearly-empty + primary-for QAccessibleObject (0x7fc38a8ef380) + QAccessible (0x7fc38a8ef460) 0 empty + +Vtable for QAccessibleWidgetEx +QAccessibleWidgetEx::_ZTV19QAccessibleWidgetEx: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAccessibleWidgetEx) +16 QAccessibleWidgetEx::~QAccessibleWidgetEx +24 QAccessibleWidgetEx::~QAccessibleWidgetEx +32 QAccessibleObjectEx::isValid +40 QAccessibleObjectEx::object +48 QAccessibleWidgetEx::childCount +56 QAccessibleWidgetEx::indexOfChild +64 QAccessibleWidgetEx::relationTo +72 QAccessibleWidgetEx::childAt +80 QAccessibleWidgetEx::navigate +88 QAccessibleWidgetEx::text +96 QAccessibleObjectEx::setText +104 QAccessibleWidgetEx::rect +112 QAccessibleWidgetEx::role +120 QAccessibleWidgetEx::state +128 QAccessibleObjectEx::userActionCount +136 QAccessibleWidgetEx::actionText +144 QAccessibleWidgetEx::doAction +152 QAccessibleWidgetEx::invokeMethodEx +160 QAccessibleInterfaceEx::virtual_hook +168 QAccessibleInterfaceEx::interface_cast + +Class QAccessibleWidgetEx + size=24 align=8 + base size=24 base align=8 +QAccessibleWidgetEx (0x7fc38a8fb3f0) 0 + vptr=((& QAccessibleWidgetEx::_ZTV19QAccessibleWidgetEx) + 16u) + QAccessibleObjectEx (0x7fc38a8fb460) 0 + primary-for QAccessibleWidgetEx (0x7fc38a8fb3f0) + QAccessibleInterfaceEx (0x7fc38a8fb4d0) 0 nearly-empty + primary-for QAccessibleObjectEx (0x7fc38a8fb460) + QAccessibleInterface (0x7fc38a8fb540) 0 nearly-empty + primary-for QAccessibleInterfaceEx (0x7fc38a8fb4d0) + QAccessible (0x7fc38a8fb5b0) 0 empty + +Vtable for QAction +QAction::_ZTV7QAction: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QAction) +16 QAction::metaObject +24 QAction::qt_metacast +32 QAction::qt_metacall +40 QAction::~QAction +48 QAction::~QAction +56 QAction::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QAction + size=16 align=8 + base size=16 base align=8 +QAction (0x7fc38a909540) 0 + vptr=((& QAction::_ZTV7QAction) + 16u) + QObject (0x7fc38a9095b0) 0 + primary-for QAction (0x7fc38a909540) + +Vtable for QActionGroup +QActionGroup::_ZTV12QActionGroup: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QActionGroup) +16 QActionGroup::metaObject +24 QActionGroup::qt_metacast +32 QActionGroup::qt_metacall +40 QActionGroup::~QActionGroup +48 QActionGroup::~QActionGroup +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QActionGroup + size=16 align=8 + base size=16 base align=8 +QActionGroup (0x7fc38a952070) 0 + vptr=((& QActionGroup::_ZTV12QActionGroup) + 16u) + QObject (0x7fc38a9520e0) 0 + primary-for QActionGroup (0x7fc38a952070) + +Vtable for QApplication +QApplication::_ZTV12QApplication: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QApplication) +16 QApplication::metaObject +24 QApplication::qt_metacast +32 QApplication::qt_metacall +40 QApplication::~QApplication +48 QApplication::~QApplication +56 QApplication::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QApplication::notify +120 QApplication::compressEvent +128 QApplication::x11EventFilter +136 QApplication::x11ClientMessage +144 QApplication::commitData +152 QApplication::saveState + +Class QApplication + size=16 align=8 + base size=16 base align=8 +QApplication (0x7fc38a995460) 0 + vptr=((& QApplication::_ZTV12QApplication) + 16u) + QCoreApplication (0x7fc38a9954d0) 0 + primary-for QApplication (0x7fc38a995460) + QObject (0x7fc38a995540) 0 + primary-for QCoreApplication (0x7fc38a9954d0) + +Vtable for QLayoutItem +QLayoutItem::_ZTV11QLayoutItem: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QLayoutItem) +16 QLayoutItem::~QLayoutItem +24 QLayoutItem::~QLayoutItem +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 QLayoutItem::hasHeightForWidth +96 QLayoutItem::heightForWidth +104 QLayoutItem::minimumHeightForWidth +112 QLayoutItem::invalidate +120 QLayoutItem::widget +128 QLayoutItem::layout +136 QLayoutItem::spacerItem + +Class QLayoutItem + size=16 align=8 + base size=12 base align=8 +QLayoutItem (0x7fc38a7e70e0) 0 + vptr=((& QLayoutItem::_ZTV11QLayoutItem) + 16u) + +Vtable for QSpacerItem +QSpacerItem::_ZTV11QSpacerItem: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QSpacerItem) +16 QSpacerItem::~QSpacerItem +24 QSpacerItem::~QSpacerItem +32 QSpacerItem::sizeHint +40 QSpacerItem::minimumSize +48 QSpacerItem::maximumSize +56 QSpacerItem::expandingDirections +64 QSpacerItem::setGeometry +72 QSpacerItem::geometry +80 QSpacerItem::isEmpty +88 QLayoutItem::hasHeightForWidth +96 QLayoutItem::heightForWidth +104 QLayoutItem::minimumHeightForWidth +112 QLayoutItem::invalidate +120 QLayoutItem::widget +128 QLayoutItem::layout +136 QSpacerItem::spacerItem + +Class QSpacerItem + size=40 align=8 + base size=40 base align=8 +QSpacerItem (0x7fc38a7e7cb0) 0 + vptr=((& QSpacerItem::_ZTV11QSpacerItem) + 16u) + QLayoutItem (0x7fc38a7e7d20) 0 + primary-for QSpacerItem (0x7fc38a7e7cb0) + +Vtable for QWidgetItem +QWidgetItem::_ZTV11QWidgetItem: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QWidgetItem) +16 QWidgetItem::~QWidgetItem +24 QWidgetItem::~QWidgetItem +32 QWidgetItem::sizeHint +40 QWidgetItem::minimumSize +48 QWidgetItem::maximumSize +56 QWidgetItem::expandingDirections +64 QWidgetItem::setGeometry +72 QWidgetItem::geometry +80 QWidgetItem::isEmpty +88 QWidgetItem::hasHeightForWidth +96 QWidgetItem::heightForWidth +104 QLayoutItem::minimumHeightForWidth +112 QLayoutItem::invalidate +120 QWidgetItem::widget +128 QLayoutItem::layout +136 QLayoutItem::spacerItem + +Class QWidgetItem + size=24 align=8 + base size=24 base align=8 +QWidgetItem (0x7fc38a8031c0) 0 + vptr=((& QWidgetItem::_ZTV11QWidgetItem) + 16u) + QLayoutItem (0x7fc38a803230) 0 + primary-for QWidgetItem (0x7fc38a8031c0) + +Vtable for QWidgetItemV2 +QWidgetItemV2::_ZTV13QWidgetItemV2: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QWidgetItemV2) +16 QWidgetItemV2::~QWidgetItemV2 +24 QWidgetItemV2::~QWidgetItemV2 +32 QWidgetItemV2::sizeHint +40 QWidgetItemV2::minimumSize +48 QWidgetItemV2::maximumSize +56 QWidgetItem::expandingDirections +64 QWidgetItem::setGeometry +72 QWidgetItem::geometry +80 QWidgetItem::isEmpty +88 QWidgetItem::hasHeightForWidth +96 QWidgetItemV2::heightForWidth +104 QLayoutItem::minimumHeightForWidth +112 QLayoutItem::invalidate +120 QWidgetItem::widget +128 QLayoutItem::layout +136 QLayoutItem::spacerItem + +Class QWidgetItemV2 + size=88 align=8 + base size=88 base align=8 +QWidgetItemV2 (0x7fc38a815000) 0 + vptr=((& QWidgetItemV2::_ZTV13QWidgetItemV2) + 16u) + QWidgetItem (0x7fc38a815070) 0 + primary-for QWidgetItemV2 (0x7fc38a815000) + QLayoutItem (0x7fc38a8150e0) 0 + primary-for QWidgetItem (0x7fc38a815070) + +Class QLayoutIterator + size=16 align=8 + base size=12 base align=8 +QLayoutIterator (0x7fc38a815e70) 0 + +Vtable for QLayout +QLayout::_ZTV7QLayout: 45u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QLayout) +16 QLayout::metaObject +24 QLayout::qt_metacast +32 QLayout::qt_metacall +40 QLayout::~QLayout +48 QLayout::~QLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QLayout::invalidate +120 QLayout::geometry +128 __cxa_pure_virtual +136 QLayout::expandingDirections +144 QLayout::minimumSize +152 QLayout::maximumSize +160 QLayout::setGeometry +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 QLayout::indexOf +192 __cxa_pure_virtual +200 QLayout::isEmpty +208 QLayout::layout +216 (int (*)(...))-0x00000000000000010 +224 (int (*)(...))(& _ZTI7QLayout) +232 QLayout::_ZThn16_N7QLayoutD1Ev +240 QLayout::_ZThn16_N7QLayoutD0Ev +248 __cxa_pure_virtual +256 QLayout::_ZThn16_NK7QLayout11minimumSizeEv +264 QLayout::_ZThn16_NK7QLayout11maximumSizeEv +272 QLayout::_ZThn16_NK7QLayout19expandingDirectionsEv +280 QLayout::_ZThn16_N7QLayout11setGeometryERK5QRect +288 QLayout::_ZThn16_NK7QLayout8geometryEv +296 QLayout::_ZThn16_NK7QLayout7isEmptyEv +304 QLayoutItem::hasHeightForWidth +312 QLayoutItem::heightForWidth +320 QLayoutItem::minimumHeightForWidth +328 QLayout::_ZThn16_N7QLayout10invalidateEv +336 QLayoutItem::widget +344 QLayout::_ZThn16_N7QLayout6layoutEv +352 QLayoutItem::spacerItem + +Class QLayout + size=32 align=8 + base size=28 base align=8 +QLayout (0x7fc38a828380) 0 + vptr=((& QLayout::_ZTV7QLayout) + 16u) + QObject (0x7fc38a827f50) 0 + primary-for QLayout (0x7fc38a828380) + QLayoutItem (0x7fc38a82b000) 16 + vptr=((& QLayout::_ZTV7QLayout) + 232u) + +Vtable for QGridLayout +QGridLayout::_ZTV11QGridLayout: 49u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QGridLayout) +16 QGridLayout::metaObject +24 QGridLayout::qt_metacast +32 QGridLayout::qt_metacall +40 QGridLayout::~QGridLayout +48 QGridLayout::~QGridLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGridLayout::invalidate +120 QLayout::geometry +128 QGridLayout::addItem +136 QGridLayout::expandingDirections +144 QGridLayout::minimumSize +152 QGridLayout::maximumSize +160 QGridLayout::setGeometry +168 QGridLayout::itemAt +176 QGridLayout::takeAt +184 QLayout::indexOf +192 QGridLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QGridLayout::sizeHint +224 QGridLayout::hasHeightForWidth +232 QGridLayout::heightForWidth +240 QGridLayout::minimumHeightForWidth +248 (int (*)(...))-0x00000000000000010 +256 (int (*)(...))(& _ZTI11QGridLayout) +264 QGridLayout::_ZThn16_N11QGridLayoutD1Ev +272 QGridLayout::_ZThn16_N11QGridLayoutD0Ev +280 QGridLayout::_ZThn16_NK11QGridLayout8sizeHintEv +288 QGridLayout::_ZThn16_NK11QGridLayout11minimumSizeEv +296 QGridLayout::_ZThn16_NK11QGridLayout11maximumSizeEv +304 QGridLayout::_ZThn16_NK11QGridLayout19expandingDirectionsEv +312 QGridLayout::_ZThn16_N11QGridLayout11setGeometryERK5QRect +320 QLayout::_ZThn16_NK7QLayout8geometryEv +328 QLayout::_ZThn16_NK7QLayout7isEmptyEv +336 QGridLayout::_ZThn16_NK11QGridLayout17hasHeightForWidthEv +344 QGridLayout::_ZThn16_NK11QGridLayout14heightForWidthEi +352 QGridLayout::_ZThn16_NK11QGridLayout21minimumHeightForWidthEi +360 QGridLayout::_ZThn16_N11QGridLayout10invalidateEv +368 QLayoutItem::widget +376 QLayout::_ZThn16_N7QLayout6layoutEv +384 QLayoutItem::spacerItem + +Class QGridLayout + size=32 align=8 + base size=28 base align=8 +QGridLayout (0x7fc38a86a4d0) 0 + vptr=((& QGridLayout::_ZTV11QGridLayout) + 16u) + QLayout (0x7fc38a866500) 0 + primary-for QGridLayout (0x7fc38a86a4d0) + QObject (0x7fc38a86a540) 0 + primary-for QLayout (0x7fc38a866500) + QLayoutItem (0x7fc38a86a5b0) 16 + vptr=((& QGridLayout::_ZTV11QGridLayout) + 264u) + +Vtable for QBoxLayout +QBoxLayout::_ZTV10QBoxLayout: 49u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QBoxLayout) +16 QBoxLayout::metaObject +24 QBoxLayout::qt_metacast +32 QBoxLayout::qt_metacall +40 QBoxLayout::~QBoxLayout +48 QBoxLayout::~QBoxLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QBoxLayout::invalidate +120 QLayout::geometry +128 QBoxLayout::addItem +136 QBoxLayout::expandingDirections +144 QBoxLayout::minimumSize +152 QBoxLayout::maximumSize +160 QBoxLayout::setGeometry +168 QBoxLayout::itemAt +176 QBoxLayout::takeAt +184 QLayout::indexOf +192 QBoxLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QBoxLayout::sizeHint +224 QBoxLayout::hasHeightForWidth +232 QBoxLayout::heightForWidth +240 QBoxLayout::minimumHeightForWidth +248 (int (*)(...))-0x00000000000000010 +256 (int (*)(...))(& _ZTI10QBoxLayout) +264 QBoxLayout::_ZThn16_N10QBoxLayoutD1Ev +272 QBoxLayout::_ZThn16_N10QBoxLayoutD0Ev +280 QBoxLayout::_ZThn16_NK10QBoxLayout8sizeHintEv +288 QBoxLayout::_ZThn16_NK10QBoxLayout11minimumSizeEv +296 QBoxLayout::_ZThn16_NK10QBoxLayout11maximumSizeEv +304 QBoxLayout::_ZThn16_NK10QBoxLayout19expandingDirectionsEv +312 QBoxLayout::_ZThn16_N10QBoxLayout11setGeometryERK5QRect +320 QLayout::_ZThn16_NK7QLayout8geometryEv +328 QLayout::_ZThn16_NK7QLayout7isEmptyEv +336 QBoxLayout::_ZThn16_NK10QBoxLayout17hasHeightForWidthEv +344 QBoxLayout::_ZThn16_NK10QBoxLayout14heightForWidthEi +352 QBoxLayout::_ZThn16_NK10QBoxLayout21minimumHeightForWidthEi +360 QBoxLayout::_ZThn16_N10QBoxLayout10invalidateEv +368 QLayoutItem::widget +376 QLayout::_ZThn16_N7QLayout6layoutEv +384 QLayoutItem::spacerItem + +Class QBoxLayout + size=32 align=8 + base size=28 base align=8 +QBoxLayout (0x7fc38a6b5540) 0 + vptr=((& QBoxLayout::_ZTV10QBoxLayout) + 16u) + QLayout (0x7fc38a6b4400) 0 + primary-for QBoxLayout (0x7fc38a6b5540) + QObject (0x7fc38a6b55b0) 0 + primary-for QLayout (0x7fc38a6b4400) + QLayoutItem (0x7fc38a6b5620) 16 + vptr=((& QBoxLayout::_ZTV10QBoxLayout) + 264u) + +Vtable for QHBoxLayout +QHBoxLayout::_ZTV11QHBoxLayout: 49u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QHBoxLayout) +16 QHBoxLayout::metaObject +24 QHBoxLayout::qt_metacast +32 QHBoxLayout::qt_metacall +40 QHBoxLayout::~QHBoxLayout +48 QHBoxLayout::~QHBoxLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QBoxLayout::invalidate +120 QLayout::geometry +128 QBoxLayout::addItem +136 QBoxLayout::expandingDirections +144 QBoxLayout::minimumSize +152 QBoxLayout::maximumSize +160 QBoxLayout::setGeometry +168 QBoxLayout::itemAt +176 QBoxLayout::takeAt +184 QLayout::indexOf +192 QBoxLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QBoxLayout::sizeHint +224 QBoxLayout::hasHeightForWidth +232 QBoxLayout::heightForWidth +240 QBoxLayout::minimumHeightForWidth +248 (int (*)(...))-0x00000000000000010 +256 (int (*)(...))(& _ZTI11QHBoxLayout) +264 QHBoxLayout::_ZThn16_N11QHBoxLayoutD1Ev +272 QHBoxLayout::_ZThn16_N11QHBoxLayoutD0Ev +280 QBoxLayout::_ZThn16_NK10QBoxLayout8sizeHintEv +288 QBoxLayout::_ZThn16_NK10QBoxLayout11minimumSizeEv +296 QBoxLayout::_ZThn16_NK10QBoxLayout11maximumSizeEv +304 QBoxLayout::_ZThn16_NK10QBoxLayout19expandingDirectionsEv +312 QBoxLayout::_ZThn16_N10QBoxLayout11setGeometryERK5QRect +320 QLayout::_ZThn16_NK7QLayout8geometryEv +328 QLayout::_ZThn16_NK7QLayout7isEmptyEv +336 QBoxLayout::_ZThn16_NK10QBoxLayout17hasHeightForWidthEv +344 QBoxLayout::_ZThn16_NK10QBoxLayout14heightForWidthEi +352 QBoxLayout::_ZThn16_NK10QBoxLayout21minimumHeightForWidthEi +360 QBoxLayout::_ZThn16_N10QBoxLayout10invalidateEv +368 QLayoutItem::widget +376 QLayout::_ZThn16_N7QLayout6layoutEv +384 QLayoutItem::spacerItem + +Class QHBoxLayout + size=32 align=8 + base size=28 base align=8 +QHBoxLayout (0x7fc38a6d9f50) 0 + vptr=((& QHBoxLayout::_ZTV11QHBoxLayout) + 16u) + QBoxLayout (0x7fc38a6e3000) 0 + primary-for QHBoxLayout (0x7fc38a6d9f50) + QLayout (0x7fc38a6e1280) 0 + primary-for QBoxLayout (0x7fc38a6e3000) + QObject (0x7fc38a6e3070) 0 + primary-for QLayout (0x7fc38a6e1280) + QLayoutItem (0x7fc38a6e30e0) 16 + vptr=((& QHBoxLayout::_ZTV11QHBoxLayout) + 264u) + +Vtable for QVBoxLayout +QVBoxLayout::_ZTV11QVBoxLayout: 49u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QVBoxLayout) +16 QVBoxLayout::metaObject +24 QVBoxLayout::qt_metacast +32 QVBoxLayout::qt_metacall +40 QVBoxLayout::~QVBoxLayout +48 QVBoxLayout::~QVBoxLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QBoxLayout::invalidate +120 QLayout::geometry +128 QBoxLayout::addItem +136 QBoxLayout::expandingDirections +144 QBoxLayout::minimumSize +152 QBoxLayout::maximumSize +160 QBoxLayout::setGeometry +168 QBoxLayout::itemAt +176 QBoxLayout::takeAt +184 QLayout::indexOf +192 QBoxLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QBoxLayout::sizeHint +224 QBoxLayout::hasHeightForWidth +232 QBoxLayout::heightForWidth +240 QBoxLayout::minimumHeightForWidth +248 (int (*)(...))-0x00000000000000010 +256 (int (*)(...))(& _ZTI11QVBoxLayout) +264 QVBoxLayout::_ZThn16_N11QVBoxLayoutD1Ev +272 QVBoxLayout::_ZThn16_N11QVBoxLayoutD0Ev +280 QBoxLayout::_ZThn16_NK10QBoxLayout8sizeHintEv +288 QBoxLayout::_ZThn16_NK10QBoxLayout11minimumSizeEv +296 QBoxLayout::_ZThn16_NK10QBoxLayout11maximumSizeEv +304 QBoxLayout::_ZThn16_NK10QBoxLayout19expandingDirectionsEv +312 QBoxLayout::_ZThn16_N10QBoxLayout11setGeometryERK5QRect +320 QLayout::_ZThn16_NK7QLayout8geometryEv +328 QLayout::_ZThn16_NK7QLayout7isEmptyEv +336 QBoxLayout::_ZThn16_NK10QBoxLayout17hasHeightForWidthEv +344 QBoxLayout::_ZThn16_NK10QBoxLayout14heightForWidthEi +352 QBoxLayout::_ZThn16_NK10QBoxLayout21minimumHeightForWidthEi +360 QBoxLayout::_ZThn16_N10QBoxLayout10invalidateEv +368 QLayoutItem::widget +376 QLayout::_ZThn16_N7QLayout6layoutEv +384 QLayoutItem::spacerItem + +Class QVBoxLayout + size=32 align=8 + base size=28 base align=8 +QVBoxLayout (0x7fc38a6f75b0) 0 + vptr=((& QVBoxLayout::_ZTV11QVBoxLayout) + 16u) + QBoxLayout (0x7fc38a6f7620) 0 + primary-for QVBoxLayout (0x7fc38a6f75b0) + QLayout (0x7fc38a6e1980) 0 + primary-for QBoxLayout (0x7fc38a6f7620) + QObject (0x7fc38a6f7690) 0 + primary-for QLayout (0x7fc38a6e1980) + QLayoutItem (0x7fc38a6f7700) 16 + vptr=((& QVBoxLayout::_ZTV11QVBoxLayout) + 264u) + +Vtable for QClipboard +QClipboard::_ZTV10QClipboard: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QClipboard) +16 QClipboard::metaObject +24 QClipboard::qt_metacast +32 QClipboard::qt_metacall +40 QClipboard::~QClipboard +48 QClipboard::~QClipboard +56 QClipboard::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QClipboard::connectNotify +104 QObject::disconnectNotify + +Class QClipboard + size=16 align=8 + base size=16 base align=8 +QClipboard (0x7fc38a708c40) 0 + vptr=((& QClipboard::_ZTV10QClipboard) + 16u) + QObject (0x7fc38a708cb0) 0 + primary-for QClipboard (0x7fc38a708c40) + +Vtable for QDesktopWidget +QDesktopWidget::_ZTV14QDesktopWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QDesktopWidget) +16 QDesktopWidget::metaObject +24 QDesktopWidget::qt_metacast +32 QDesktopWidget::qt_metacall +40 QDesktopWidget::~QDesktopWidget +48 QDesktopWidget::~QDesktopWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDesktopWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI14QDesktopWidget) +464 QDesktopWidget::_ZThn16_N14QDesktopWidgetD1Ev +472 QDesktopWidget::_ZThn16_N14QDesktopWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDesktopWidget + size=40 align=8 + base size=40 base align=8 +QDesktopWidget (0x7fc38a731930) 0 + vptr=((& QDesktopWidget::_ZTV14QDesktopWidget) + 16u) + QWidget (0x7fc38a711c00) 0 + primary-for QDesktopWidget (0x7fc38a731930) + QObject (0x7fc38a7319a0) 0 + primary-for QWidget (0x7fc38a711c00) + QPaintDevice (0x7fc38a731a10) 16 + vptr=((& QDesktopWidget::_ZTV14QDesktopWidget) + 464u) + +Vtable for QFormLayout +QFormLayout::_ZTV11QFormLayout: 48u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFormLayout) +16 QFormLayout::metaObject +24 QFormLayout::qt_metacast +32 QFormLayout::qt_metacall +40 QFormLayout::~QFormLayout +48 QFormLayout::~QFormLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFormLayout::invalidate +120 QLayout::geometry +128 QFormLayout::addItem +136 QFormLayout::expandingDirections +144 QFormLayout::minimumSize +152 QLayout::maximumSize +160 QFormLayout::setGeometry +168 QFormLayout::itemAt +176 QFormLayout::takeAt +184 QLayout::indexOf +192 QFormLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QFormLayout::sizeHint +224 QFormLayout::hasHeightForWidth +232 QFormLayout::heightForWidth +240 (int (*)(...))-0x00000000000000010 +248 (int (*)(...))(& _ZTI11QFormLayout) +256 QFormLayout::_ZThn16_N11QFormLayoutD1Ev +264 QFormLayout::_ZThn16_N11QFormLayoutD0Ev +272 QFormLayout::_ZThn16_NK11QFormLayout8sizeHintEv +280 QFormLayout::_ZThn16_NK11QFormLayout11minimumSizeEv +288 QLayout::_ZThn16_NK7QLayout11maximumSizeEv +296 QFormLayout::_ZThn16_NK11QFormLayout19expandingDirectionsEv +304 QFormLayout::_ZThn16_N11QFormLayout11setGeometryERK5QRect +312 QLayout::_ZThn16_NK7QLayout8geometryEv +320 QLayout::_ZThn16_NK7QLayout7isEmptyEv +328 QFormLayout::_ZThn16_NK11QFormLayout17hasHeightForWidthEv +336 QFormLayout::_ZThn16_NK11QFormLayout14heightForWidthEi +344 QLayoutItem::minimumHeightForWidth +352 QFormLayout::_ZThn16_N11QFormLayout10invalidateEv +360 QLayoutItem::widget +368 QLayout::_ZThn16_N7QLayout6layoutEv +376 QLayoutItem::spacerItem + +Class QFormLayout + size=32 align=8 + base size=28 base align=8 +QFormLayout (0x7fc38a74f9a0) 0 + vptr=((& QFormLayout::_ZTV11QFormLayout) + 16u) + QLayout (0x7fc38a74ab80) 0 + primary-for QFormLayout (0x7fc38a74f9a0) + QObject (0x7fc38a74fa10) 0 + primary-for QLayout (0x7fc38a74ab80) + QLayoutItem (0x7fc38a74fa80) 16 + vptr=((& QFormLayout::_ZTV11QFormLayout) + 256u) + +Vtable for QGesture +QGesture::_ZTV8QGesture: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QGesture) +16 QGesture::metaObject +24 QGesture::qt_metacast +32 QGesture::qt_metacall +40 QGesture::~QGesture +48 QGesture::~QGesture +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QGesture + size=16 align=8 + base size=16 base align=8 +QGesture (0x7fc38a785150) 0 + vptr=((& QGesture::_ZTV8QGesture) + 16u) + QObject (0x7fc38a7851c0) 0 + primary-for QGesture (0x7fc38a785150) + +Vtable for QPanGesture +QPanGesture::_ZTV11QPanGesture: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QPanGesture) +16 QPanGesture::metaObject +24 QPanGesture::qt_metacast +32 QPanGesture::qt_metacall +40 QPanGesture::~QPanGesture +48 QPanGesture::~QPanGesture +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QPanGesture + size=16 align=8 + base size=16 base align=8 +QPanGesture (0x7fc38a79e850) 0 + vptr=((& QPanGesture::_ZTV11QPanGesture) + 16u) + QGesture (0x7fc38a79e8c0) 0 + primary-for QPanGesture (0x7fc38a79e850) + QObject (0x7fc38a79e930) 0 + primary-for QGesture (0x7fc38a79e8c0) + +Vtable for QPinchGesture +QPinchGesture::_ZTV13QPinchGesture: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QPinchGesture) +16 QPinchGesture::metaObject +24 QPinchGesture::qt_metacast +32 QPinchGesture::qt_metacall +40 QPinchGesture::~QPinchGesture +48 QPinchGesture::~QPinchGesture +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QPinchGesture + size=16 align=8 + base size=16 base align=8 +QPinchGesture (0x7fc38a5afcb0) 0 + vptr=((& QPinchGesture::_ZTV13QPinchGesture) + 16u) + QGesture (0x7fc38a5afd20) 0 + primary-for QPinchGesture (0x7fc38a5afcb0) + QObject (0x7fc38a5afd90) 0 + primary-for QGesture (0x7fc38a5afd20) + +Vtable for QSwipeGesture +QSwipeGesture::_ZTV13QSwipeGesture: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSwipeGesture) +16 QSwipeGesture::metaObject +24 QSwipeGesture::qt_metacast +32 QSwipeGesture::qt_metacall +40 QSwipeGesture::~QSwipeGesture +48 QSwipeGesture::~QSwipeGesture +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSwipeGesture + size=16 align=8 + base size=16 base align=8 +QSwipeGesture (0x7fc38a5d0d20) 0 + vptr=((& QSwipeGesture::_ZTV13QSwipeGesture) + 16u) + QGesture (0x7fc38a5d0d90) 0 + primary-for QSwipeGesture (0x7fc38a5d0d20) + QObject (0x7fc38a5d0e00) 0 + primary-for QGesture (0x7fc38a5d0d90) + +Vtable for QTapGesture +QTapGesture::_ZTV11QTapGesture: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTapGesture) +16 QTapGesture::metaObject +24 QTapGesture::qt_metacast +32 QTapGesture::qt_metacall +40 QTapGesture::~QTapGesture +48 QTapGesture::~QTapGesture +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTapGesture + size=16 align=8 + base size=16 base align=8 +QTapGesture (0x7fc38a5ef460) 0 + vptr=((& QTapGesture::_ZTV11QTapGesture) + 16u) + QGesture (0x7fc38a5ef4d0) 0 + primary-for QTapGesture (0x7fc38a5ef460) + QObject (0x7fc38a5ef540) 0 + primary-for QGesture (0x7fc38a5ef4d0) + +Vtable for QTapAndHoldGesture +QTapAndHoldGesture::_ZTV18QTapAndHoldGesture: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QTapAndHoldGesture) +16 QTapAndHoldGesture::metaObject +24 QTapAndHoldGesture::qt_metacast +32 QTapAndHoldGesture::qt_metacall +40 QTapAndHoldGesture::~QTapAndHoldGesture +48 QTapAndHoldGesture::~QTapAndHoldGesture +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTapAndHoldGesture + size=16 align=8 + base size=16 base align=8 +QTapAndHoldGesture (0x7fc38a5fe8c0) 0 + vptr=((& QTapAndHoldGesture::_ZTV18QTapAndHoldGesture) + 16u) + QGesture (0x7fc38a5fe930) 0 + primary-for QTapAndHoldGesture (0x7fc38a5fe8c0) + QObject (0x7fc38a5fe9a0) 0 + primary-for QGesture (0x7fc38a5fe930) + +Vtable for QGestureRecognizer +QGestureRecognizer::_ZTV18QGestureRecognizer: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QGestureRecognizer) +16 QGestureRecognizer::~QGestureRecognizer +24 QGestureRecognizer::~QGestureRecognizer +32 QGestureRecognizer::create +40 __cxa_pure_virtual +48 QGestureRecognizer::reset + +Class QGestureRecognizer + size=8 align=8 + base size=8 base align=8 +QGestureRecognizer (0x7fc38a61a310) 0 nearly-empty + vptr=((& QGestureRecognizer::_ZTV18QGestureRecognizer) + 16u) + +Vtable for QSessionManager +QSessionManager::_ZTV15QSessionManager: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSessionManager) +16 QSessionManager::metaObject +24 QSessionManager::qt_metacast +32 QSessionManager::qt_metacall +40 QSessionManager::~QSessionManager +48 QSessionManager::~QSessionManager +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSessionManager + size=16 align=8 + base size=16 base align=8 +QSessionManager (0x7fc38a651620) 0 + vptr=((& QSessionManager::_ZTV15QSessionManager) + 16u) + QObject (0x7fc38a651690) 0 + primary-for QSessionManager (0x7fc38a651620) + +Vtable for QShortcut +QShortcut::_ZTV9QShortcut: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QShortcut) +16 QShortcut::metaObject +24 QShortcut::qt_metacast +32 QShortcut::qt_metacall +40 QShortcut::~QShortcut +48 QShortcut::~QShortcut +56 QShortcut::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QShortcut + size=16 align=8 + base size=16 base align=8 +QShortcut (0x7fc38a681b60) 0 + vptr=((& QShortcut::_ZTV9QShortcut) + 16u) + QObject (0x7fc38a681bd0) 0 + primary-for QShortcut (0x7fc38a681b60) + +Vtable for QSound +QSound::_ZTV6QSound: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QSound) +16 QSound::metaObject +24 QSound::qt_metacast +32 QSound::qt_metacall +40 QSound::~QSound +48 QSound::~QSound +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSound + size=16 align=8 + base size=16 base align=8 +QSound (0x7fc38a69d310) 0 + vptr=((& QSound::_ZTV6QSound) + 16u) + QObject (0x7fc38a69d380) 0 + primary-for QSound (0x7fc38a69d310) + +Vtable for QStackedLayout +QStackedLayout::_ZTV14QStackedLayout: 46u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QStackedLayout) +16 QStackedLayout::metaObject +24 QStackedLayout::qt_metacast +32 QStackedLayout::qt_metacall +40 QStackedLayout::~QStackedLayout +48 QStackedLayout::~QStackedLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QLayout::invalidate +120 QLayout::geometry +128 QStackedLayout::addItem +136 QLayout::expandingDirections +144 QStackedLayout::minimumSize +152 QLayout::maximumSize +160 QStackedLayout::setGeometry +168 QStackedLayout::itemAt +176 QStackedLayout::takeAt +184 QLayout::indexOf +192 QStackedLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QStackedLayout::sizeHint +224 (int (*)(...))-0x00000000000000010 +232 (int (*)(...))(& _ZTI14QStackedLayout) +240 QStackedLayout::_ZThn16_N14QStackedLayoutD1Ev +248 QStackedLayout::_ZThn16_N14QStackedLayoutD0Ev +256 QStackedLayout::_ZThn16_NK14QStackedLayout8sizeHintEv +264 QStackedLayout::_ZThn16_NK14QStackedLayout11minimumSizeEv +272 QLayout::_ZThn16_NK7QLayout11maximumSizeEv +280 QLayout::_ZThn16_NK7QLayout19expandingDirectionsEv +288 QStackedLayout::_ZThn16_N14QStackedLayout11setGeometryERK5QRect +296 QLayout::_ZThn16_NK7QLayout8geometryEv +304 QLayout::_ZThn16_NK7QLayout7isEmptyEv +312 QLayoutItem::hasHeightForWidth +320 QLayoutItem::heightForWidth +328 QLayoutItem::minimumHeightForWidth +336 QLayout::_ZThn16_N7QLayout10invalidateEv +344 QLayoutItem::widget +352 QLayout::_ZThn16_N7QLayout6layoutEv +360 QLayoutItem::spacerItem + +Class QStackedLayout + size=32 align=8 + base size=28 base align=8 +QStackedLayout (0x7fc38a4b2a80) 0 + vptr=((& QStackedLayout::_ZTV14QStackedLayout) + 16u) + QLayout (0x7fc38a4aa880) 0 + primary-for QStackedLayout (0x7fc38a4b2a80) + QObject (0x7fc38a4b2af0) 0 + primary-for QLayout (0x7fc38a4aa880) + QLayoutItem (0x7fc38a4b2b60) 16 + vptr=((& QStackedLayout::_ZTV14QStackedLayout) + 240u) + +Class QToolTip + size=1 align=1 + base size=0 base align=1 +QToolTip (0x7fc38a4d1a80) 0 empty + +Class QWhatsThis + size=1 align=1 + base size=0 base align=1 +QWhatsThis (0x7fc38a4df070) 0 empty + +Vtable for QWidgetAction +QWidgetAction::_ZTV13QWidgetAction: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QWidgetAction) +16 QWidgetAction::metaObject +24 QWidgetAction::qt_metacast +32 QWidgetAction::qt_metacall +40 QWidgetAction::~QWidgetAction +48 QWidgetAction::~QWidgetAction +56 QWidgetAction::event +64 QWidgetAction::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidgetAction::createWidget +120 QWidgetAction::deleteWidget + +Class QWidgetAction + size=16 align=8 + base size=16 base align=8 +QWidgetAction (0x7fc38a4df150) 0 + vptr=((& QWidgetAction::_ZTV13QWidgetAction) + 16u) + QAction (0x7fc38a4df1c0) 0 + primary-for QWidgetAction (0x7fc38a4df150) + QObject (0x7fc38a4df230) 0 + primary-for QAction (0x7fc38a4df1c0) + +Class QVector3D + size=12 align=4 + base size=12 base align=4 +QVector3D (0x7fc38a3ae1c0) 0 + +Class QVector4D + size=16 align=4 + base size=16 base align=4 +QVector4D (0x7fc38a410cb0) 0 + +Class QQuaternion + size=32 align=8 + base size=32 base align=8 +QQuaternion (0x7fc38a487d20) 0 + +Class QMatrix4x4 + size=136 align=8 + base size=132 base align=8 +QMatrix4x4 (0x7fc38a305b60) 0 + +Class QVector2D + size=8 align=4 + base size=8 base align=4 +QVector2D (0x7fc38a152d90) 0 + +Vtable for QCommonStyle +QCommonStyle::_ZTV12QCommonStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QCommonStyle) +16 QCommonStyle::metaObject +24 QCommonStyle::qt_metacast +32 QCommonStyle::qt_metacall +40 QCommonStyle::~QCommonStyle +48 QCommonStyle::~QCommonStyle +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCommonStyle::polish +120 QCommonStyle::unpolish +128 QCommonStyle::polish +136 QCommonStyle::unpolish +144 QCommonStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QStyle::standardPalette +192 QCommonStyle::drawPrimitive +200 QCommonStyle::drawControl +208 QCommonStyle::subElementRect +216 QCommonStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QCommonStyle::subControlRect +240 QCommonStyle::pixelMetric +248 QCommonStyle::sizeFromContents +256 QCommonStyle::styleHint +264 QCommonStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QCommonStyle + size=16 align=8 + base size=16 base align=8 +QCommonStyle (0x7fc389fb52a0) 0 + vptr=((& QCommonStyle::_ZTV12QCommonStyle) + 16u) + QStyle (0x7fc389fb5310) 0 + primary-for QCommonStyle (0x7fc389fb52a0) + QObject (0x7fc389fb5380) 0 + primary-for QStyle (0x7fc389fb5310) + +Vtable for QMotifStyle +QMotifStyle::_ZTV11QMotifStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMotifStyle) +16 QMotifStyle::metaObject +24 QMotifStyle::qt_metacast +32 QMotifStyle::qt_metacall +40 QMotifStyle::~QMotifStyle +48 QMotifStyle::~QMotifStyle +56 QMotifStyle::event +64 QMotifStyle::eventFilter +72 QMotifStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMotifStyle::polish +120 QMotifStyle::unpolish +128 QMotifStyle::polish +136 QMotifStyle::unpolish +144 QMotifStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QMotifStyle::standardPalette +192 QMotifStyle::drawPrimitive +200 QMotifStyle::drawControl +208 QMotifStyle::subElementRect +216 QMotifStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QMotifStyle::subControlRect +240 QMotifStyle::pixelMetric +248 QMotifStyle::sizeFromContents +256 QMotifStyle::styleHint +264 QMotifStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QMotifStyle + size=32 align=8 + base size=25 base align=8 +QMotifStyle (0x7fc389fd82a0) 0 + vptr=((& QMotifStyle::_ZTV11QMotifStyle) + 16u) + QCommonStyle (0x7fc389fd8310) 0 + primary-for QMotifStyle (0x7fc389fd82a0) + QStyle (0x7fc389fd8380) 0 + primary-for QCommonStyle (0x7fc389fd8310) + QObject (0x7fc389fd83f0) 0 + primary-for QStyle (0x7fc389fd8380) + +Vtable for QCDEStyle +QCDEStyle::_ZTV9QCDEStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QCDEStyle) +16 QCDEStyle::metaObject +24 QCDEStyle::qt_metacast +32 QCDEStyle::qt_metacall +40 QCDEStyle::~QCDEStyle +48 QCDEStyle::~QCDEStyle +56 QMotifStyle::event +64 QMotifStyle::eventFilter +72 QMotifStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMotifStyle::polish +120 QMotifStyle::unpolish +128 QMotifStyle::polish +136 QMotifStyle::unpolish +144 QMotifStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QCDEStyle::standardPalette +192 QCDEStyle::drawPrimitive +200 QCDEStyle::drawControl +208 QMotifStyle::subElementRect +216 QMotifStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QMotifStyle::subControlRect +240 QCDEStyle::pixelMetric +248 QMotifStyle::sizeFromContents +256 QMotifStyle::styleHint +264 QMotifStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QCDEStyle + size=32 align=8 + base size=25 base align=8 +QCDEStyle (0x7fc38a0011c0) 0 + vptr=((& QCDEStyle::_ZTV9QCDEStyle) + 16u) + QMotifStyle (0x7fc38a001230) 0 + primary-for QCDEStyle (0x7fc38a0011c0) + QCommonStyle (0x7fc38a0012a0) 0 + primary-for QMotifStyle (0x7fc38a001230) + QStyle (0x7fc38a001310) 0 + primary-for QCommonStyle (0x7fc38a0012a0) + QObject (0x7fc38a001380) 0 + primary-for QStyle (0x7fc38a001310) + +Vtable for QWindowsStyle +QWindowsStyle::_ZTV13QWindowsStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QWindowsStyle) +16 QWindowsStyle::metaObject +24 QWindowsStyle::qt_metacast +32 QWindowsStyle::qt_metacall +40 QWindowsStyle::~QWindowsStyle +48 QWindowsStyle::~QWindowsStyle +56 QObject::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWindowsStyle::polish +120 QWindowsStyle::unpolish +128 QWindowsStyle::polish +136 QWindowsStyle::unpolish +144 QWindowsStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QStyle::standardPalette +192 QWindowsStyle::drawPrimitive +200 QWindowsStyle::drawControl +208 QWindowsStyle::subElementRect +216 QWindowsStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QCommonStyle::subControlRect +240 QWindowsStyle::pixelMetric +248 QWindowsStyle::sizeFromContents +256 QWindowsStyle::styleHint +264 QWindowsStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QWindowsStyle + size=24 align=8 + base size=24 base align=8 +QWindowsStyle (0x7fc38a014310) 0 + vptr=((& QWindowsStyle::_ZTV13QWindowsStyle) + 16u) + QCommonStyle (0x7fc38a014380) 0 + primary-for QWindowsStyle (0x7fc38a014310) + QStyle (0x7fc38a0143f0) 0 + primary-for QCommonStyle (0x7fc38a014380) + QObject (0x7fc38a014460) 0 + primary-for QStyle (0x7fc38a0143f0) + +Vtable for QCleanlooksStyle +QCleanlooksStyle::_ZTV16QCleanlooksStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QCleanlooksStyle) +16 QCleanlooksStyle::metaObject +24 QCleanlooksStyle::qt_metacast +32 QCleanlooksStyle::qt_metacall +40 QCleanlooksStyle::~QCleanlooksStyle +48 QCleanlooksStyle::~QCleanlooksStyle +56 QObject::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCleanlooksStyle::polish +120 QCleanlooksStyle::unpolish +128 QCleanlooksStyle::polish +136 QCleanlooksStyle::unpolish +144 QCleanlooksStyle::polish +152 QStyle::itemTextRect +160 QCleanlooksStyle::itemPixmapRect +168 QCleanlooksStyle::drawItemText +176 QCleanlooksStyle::drawItemPixmap +184 QCleanlooksStyle::standardPalette +192 QCleanlooksStyle::drawPrimitive +200 QCleanlooksStyle::drawControl +208 QCleanlooksStyle::subElementRect +216 QCleanlooksStyle::drawComplexControl +224 QCleanlooksStyle::hitTestComplexControl +232 QCleanlooksStyle::subControlRect +240 QCleanlooksStyle::pixelMetric +248 QCleanlooksStyle::sizeFromContents +256 QCleanlooksStyle::styleHint +264 QCleanlooksStyle::standardPixmap +272 QCleanlooksStyle::generatedIconPixmap + +Class QCleanlooksStyle + size=24 align=8 + base size=24 base align=8 +QCleanlooksStyle (0x7fc38a0350e0) 0 + vptr=((& QCleanlooksStyle::_ZTV16QCleanlooksStyle) + 16u) + QWindowsStyle (0x7fc38a035150) 0 + primary-for QCleanlooksStyle (0x7fc38a0350e0) + QCommonStyle (0x7fc38a0351c0) 0 + primary-for QWindowsStyle (0x7fc38a035150) + QStyle (0x7fc38a035230) 0 + primary-for QCommonStyle (0x7fc38a0351c0) + QObject (0x7fc38a0352a0) 0 + primary-for QStyle (0x7fc38a035230) + +Vtable for QPlastiqueStyle +QPlastiqueStyle::_ZTV15QPlastiqueStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QPlastiqueStyle) +16 QPlastiqueStyle::metaObject +24 QPlastiqueStyle::qt_metacast +32 QPlastiqueStyle::qt_metacall +40 QPlastiqueStyle::~QPlastiqueStyle +48 QPlastiqueStyle::~QPlastiqueStyle +56 QObject::event +64 QPlastiqueStyle::eventFilter +72 QPlastiqueStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QPlastiqueStyle::polish +120 QPlastiqueStyle::unpolish +128 QPlastiqueStyle::polish +136 QPlastiqueStyle::unpolish +144 QPlastiqueStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QPlastiqueStyle::standardPalette +192 QPlastiqueStyle::drawPrimitive +200 QPlastiqueStyle::drawControl +208 QPlastiqueStyle::subElementRect +216 QPlastiqueStyle::drawComplexControl +224 QPlastiqueStyle::hitTestComplexControl +232 QPlastiqueStyle::subControlRect +240 QPlastiqueStyle::pixelMetric +248 QPlastiqueStyle::sizeFromContents +256 QPlastiqueStyle::styleHint +264 QPlastiqueStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QPlastiqueStyle + size=32 align=8 + base size=32 base align=8 +QPlastiqueStyle (0x7fc38a04fe70) 0 + vptr=((& QPlastiqueStyle::_ZTV15QPlastiqueStyle) + 16u) + QWindowsStyle (0x7fc38a04fee0) 0 + primary-for QPlastiqueStyle (0x7fc38a04fe70) + QCommonStyle (0x7fc38a04ff50) 0 + primary-for QWindowsStyle (0x7fc38a04fee0) + QStyle (0x7fc38a056000) 0 + primary-for QCommonStyle (0x7fc38a04ff50) + QObject (0x7fc38a056070) 0 + primary-for QStyle (0x7fc38a056000) + +Vtable for QProxyStyle +QProxyStyle::_ZTV11QProxyStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QProxyStyle) +16 QProxyStyle::metaObject +24 QProxyStyle::qt_metacast +32 QProxyStyle::qt_metacall +40 QProxyStyle::~QProxyStyle +48 QProxyStyle::~QProxyStyle +56 QProxyStyle::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QProxyStyle::polish +120 QProxyStyle::unpolish +128 QProxyStyle::polish +136 QProxyStyle::unpolish +144 QProxyStyle::polish +152 QProxyStyle::itemTextRect +160 QProxyStyle::itemPixmapRect +168 QProxyStyle::drawItemText +176 QProxyStyle::drawItemPixmap +184 QProxyStyle::standardPalette +192 QProxyStyle::drawPrimitive +200 QProxyStyle::drawControl +208 QProxyStyle::subElementRect +216 QProxyStyle::drawComplexControl +224 QProxyStyle::hitTestComplexControl +232 QProxyStyle::subControlRect +240 QProxyStyle::pixelMetric +248 QProxyStyle::sizeFromContents +256 QProxyStyle::styleHint +264 QProxyStyle::standardPixmap +272 QProxyStyle::generatedIconPixmap + +Class QProxyStyle + size=16 align=8 + base size=16 base align=8 +QProxyStyle (0x7fc38a07a000) 0 + vptr=((& QProxyStyle::_ZTV11QProxyStyle) + 16u) + QCommonStyle (0x7fc38a07a070) 0 + primary-for QProxyStyle (0x7fc38a07a000) + QStyle (0x7fc38a07a0e0) 0 + primary-for QCommonStyle (0x7fc38a07a070) + QObject (0x7fc38a07a150) 0 + primary-for QStyle (0x7fc38a07a0e0) + +Vtable for QS60Style +QS60Style::_ZTV9QS60Style: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QS60Style) +16 QS60Style::metaObject +24 QS60Style::qt_metacast +32 QS60Style::qt_metacall +40 QS60Style::~QS60Style +48 QS60Style::~QS60Style +56 QS60Style::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QS60Style::polish +120 QS60Style::unpolish +128 QS60Style::polish +136 QS60Style::unpolish +144 QCommonStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QStyle::standardPalette +192 QS60Style::drawPrimitive +200 QS60Style::drawControl +208 QS60Style::subElementRect +216 QS60Style::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QS60Style::subControlRect +240 QS60Style::pixelMetric +248 QS60Style::sizeFromContents +256 QS60Style::styleHint +264 QCommonStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QS60Style + size=16 align=8 + base size=16 base align=8 +QS60Style (0x7fc38a0994d0) 0 + vptr=((& QS60Style::_ZTV9QS60Style) + 16u) + QCommonStyle (0x7fc38a099540) 0 + primary-for QS60Style (0x7fc38a0994d0) + QStyle (0x7fc38a0995b0) 0 + primary-for QCommonStyle (0x7fc38a099540) + QObject (0x7fc38a099620) 0 + primary-for QStyle (0x7fc38a0995b0) + +Class QStyleFactory + size=1 align=1 + base size=0 base align=1 +QStyleFactory (0x7fc389ebe310) 0 empty + +Vtable for QStyleFactoryInterface +QStyleFactoryInterface::_ZTV22QStyleFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QStyleFactoryInterface) +16 QStyleFactoryInterface::~QStyleFactoryInterface +24 QStyleFactoryInterface::~QStyleFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QStyleFactoryInterface + size=8 align=8 + base size=8 base align=8 +QStyleFactoryInterface (0x7fc389ebe380) 0 nearly-empty + vptr=((& QStyleFactoryInterface::_ZTV22QStyleFactoryInterface) + 16u) + QFactoryInterface (0x7fc389ebe3f0) 0 nearly-empty + primary-for QStyleFactoryInterface (0x7fc389ebe380) + +Vtable for QStylePlugin +QStylePlugin::_ZTV12QStylePlugin: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QStylePlugin) +16 QStylePlugin::metaObject +24 QStylePlugin::qt_metacast +32 QStylePlugin::qt_metacall +40 QStylePlugin::~QStylePlugin +48 QStylePlugin::~QStylePlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI12QStylePlugin) +144 QStylePlugin::_ZThn16_N12QStylePluginD1Ev +152 QStylePlugin::_ZThn16_N12QStylePluginD0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QStylePlugin + size=24 align=8 + base size=24 base align=8 +QStylePlugin (0x7fc389ec9000) 0 + vptr=((& QStylePlugin::_ZTV12QStylePlugin) + 16u) + QObject (0x7fc389ebee00) 0 + primary-for QStylePlugin (0x7fc389ec9000) + QStyleFactoryInterface (0x7fc389ebee70) 16 nearly-empty + vptr=((& QStylePlugin::_ZTV12QStylePlugin) + 144u) + QFactoryInterface (0x7fc389ebeee0) 16 nearly-empty + primary-for QStyleFactoryInterface (0x7fc389ebee70) + +Vtable for QWindowsCEStyle +QWindowsCEStyle::_ZTV15QWindowsCEStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QWindowsCEStyle) +16 QWindowsCEStyle::metaObject +24 QWindowsCEStyle::qt_metacast +32 QWindowsCEStyle::qt_metacall +40 QWindowsCEStyle::~QWindowsCEStyle +48 QWindowsCEStyle::~QWindowsCEStyle +56 QObject::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWindowsCEStyle::polish +120 QWindowsStyle::unpolish +128 QWindowsCEStyle::polish +136 QWindowsStyle::unpolish +144 QWindowsCEStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QWindowsCEStyle::drawItemText +176 QStyle::drawItemPixmap +184 QWindowsCEStyle::standardPalette +192 QWindowsCEStyle::drawPrimitive +200 QWindowsCEStyle::drawControl +208 QWindowsCEStyle::subElementRect +216 QWindowsCEStyle::drawComplexControl +224 QWindowsCEStyle::hitTestComplexControl +232 QWindowsCEStyle::subControlRect +240 QWindowsCEStyle::pixelMetric +248 QWindowsCEStyle::sizeFromContents +256 QWindowsCEStyle::styleHint +264 QWindowsCEStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QWindowsCEStyle + size=24 align=8 + base size=24 base align=8 +QWindowsCEStyle (0x7fc389eccd90) 0 + vptr=((& QWindowsCEStyle::_ZTV15QWindowsCEStyle) + 16u) + QWindowsStyle (0x7fc389ecce00) 0 + primary-for QWindowsCEStyle (0x7fc389eccd90) + QCommonStyle (0x7fc389ecce70) 0 + primary-for QWindowsStyle (0x7fc389ecce00) + QStyle (0x7fc389eccee0) 0 + primary-for QCommonStyle (0x7fc389ecce70) + QObject (0x7fc389eccf50) 0 + primary-for QStyle (0x7fc389eccee0) + +Vtable for QWindowsMobileStyle +QWindowsMobileStyle::_ZTV19QWindowsMobileStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QWindowsMobileStyle) +16 QWindowsMobileStyle::metaObject +24 QWindowsMobileStyle::qt_metacast +32 QWindowsMobileStyle::qt_metacall +40 QWindowsMobileStyle::~QWindowsMobileStyle +48 QWindowsMobileStyle::~QWindowsMobileStyle +56 QObject::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWindowsMobileStyle::polish +120 QWindowsMobileStyle::unpolish +128 QWindowsMobileStyle::polish +136 QWindowsMobileStyle::unpolish +144 QWindowsMobileStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QWindowsMobileStyle::standardPalette +192 QWindowsMobileStyle::drawPrimitive +200 QWindowsMobileStyle::drawControl +208 QWindowsMobileStyle::subElementRect +216 QWindowsMobileStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QWindowsMobileStyle::subControlRect +240 QWindowsMobileStyle::pixelMetric +248 QWindowsMobileStyle::sizeFromContents +256 QWindowsMobileStyle::styleHint +264 QWindowsMobileStyle::standardPixmap +272 QWindowsMobileStyle::generatedIconPixmap + +Class QWindowsMobileStyle + size=24 align=8 + base size=24 base align=8 +QWindowsMobileStyle (0x7fc389ef33f0) 0 + vptr=((& QWindowsMobileStyle::_ZTV19QWindowsMobileStyle) + 16u) + QWindowsStyle (0x7fc389ef3460) 0 + primary-for QWindowsMobileStyle (0x7fc389ef33f0) + QCommonStyle (0x7fc389ef34d0) 0 + primary-for QWindowsStyle (0x7fc389ef3460) + QStyle (0x7fc389ef3540) 0 + primary-for QCommonStyle (0x7fc389ef34d0) + QObject (0x7fc389ef35b0) 0 + primary-for QStyle (0x7fc389ef3540) + +Vtable for QWindowsXPStyle +QWindowsXPStyle::_ZTV15QWindowsXPStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QWindowsXPStyle) +16 QWindowsXPStyle::metaObject +24 QWindowsXPStyle::qt_metacast +32 QWindowsXPStyle::qt_metacall +40 QWindowsXPStyle::~QWindowsXPStyle +48 QWindowsXPStyle::~QWindowsXPStyle +56 QObject::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWindowsXPStyle::polish +120 QWindowsXPStyle::unpolish +128 QWindowsXPStyle::polish +136 QWindowsXPStyle::unpolish +144 QWindowsXPStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QWindowsXPStyle::standardPalette +192 QWindowsXPStyle::drawPrimitive +200 QWindowsXPStyle::drawControl +208 QWindowsXPStyle::subElementRect +216 QWindowsXPStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QWindowsXPStyle::subControlRect +240 QWindowsXPStyle::pixelMetric +248 QWindowsXPStyle::sizeFromContents +256 QWindowsXPStyle::styleHint +264 QWindowsXPStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QWindowsXPStyle + size=32 align=8 + base size=32 base align=8 +QWindowsXPStyle (0x7fc389f0cd90) 0 + vptr=((& QWindowsXPStyle::_ZTV15QWindowsXPStyle) + 16u) + QWindowsStyle (0x7fc389f0ce00) 0 + primary-for QWindowsXPStyle (0x7fc389f0cd90) + QCommonStyle (0x7fc389f0ce70) 0 + primary-for QWindowsStyle (0x7fc389f0ce00) + QStyle (0x7fc389f0cee0) 0 + primary-for QCommonStyle (0x7fc389f0ce70) + QObject (0x7fc389f0cf50) 0 + primary-for QStyle (0x7fc389f0cee0) + +Vtable for QWindowsVistaStyle +QWindowsVistaStyle::_ZTV18QWindowsVistaStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QWindowsVistaStyle) +16 QWindowsVistaStyle::metaObject +24 QWindowsVistaStyle::qt_metacast +32 QWindowsVistaStyle::qt_metacall +40 QWindowsVistaStyle::~QWindowsVistaStyle +48 QWindowsVistaStyle::~QWindowsVistaStyle +56 QWindowsVistaStyle::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWindowsVistaStyle::polish +120 QWindowsVistaStyle::unpolish +128 QWindowsVistaStyle::polish +136 QWindowsVistaStyle::unpolish +144 QWindowsVistaStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QWindowsVistaStyle::standardPalette +192 QWindowsVistaStyle::drawPrimitive +200 QWindowsVistaStyle::drawControl +208 QWindowsVistaStyle::subElementRect +216 QWindowsVistaStyle::drawComplexControl +224 QWindowsVistaStyle::hitTestComplexControl +232 QWindowsVistaStyle::subControlRect +240 QWindowsVistaStyle::pixelMetric +248 QWindowsVistaStyle::sizeFromContents +256 QWindowsVistaStyle::styleHint +264 QWindowsVistaStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QWindowsVistaStyle + size=32 align=8 + base size=32 base align=8 +QWindowsVistaStyle (0x7fc389f2cc40) 0 + vptr=((& QWindowsVistaStyle::_ZTV18QWindowsVistaStyle) + 16u) + QWindowsXPStyle (0x7fc389f2ccb0) 0 + primary-for QWindowsVistaStyle (0x7fc389f2cc40) + QWindowsStyle (0x7fc389f2cd20) 0 + primary-for QWindowsXPStyle (0x7fc389f2ccb0) + QCommonStyle (0x7fc389f2cd90) 0 + primary-for QWindowsStyle (0x7fc389f2cd20) + QStyle (0x7fc389f2ce00) 0 + primary-for QCommonStyle (0x7fc389f2cd90) + QObject (0x7fc389f2ce70) 0 + primary-for QStyle (0x7fc389f2ce00) + +Vtable for QInputContext +QInputContext::_ZTV13QInputContext: 26u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QInputContext) +16 QInputContext::metaObject +24 QInputContext::qt_metacast +32 QInputContext::qt_metacall +40 QInputContext::~QInputContext +48 QInputContext::~QInputContext +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 QInputContext::update +144 QInputContext::mouseHandler +152 QInputContext::font +160 __cxa_pure_virtual +168 QInputContext::setFocusWidget +176 QInputContext::widgetDestroyed +184 QInputContext::actions +192 QInputContext::x11FilterEvent +200 QInputContext::filterEvent + +Class QInputContext + size=16 align=8 + base size=16 base align=8 +QInputContext (0x7fc389f4cc40) 0 + vptr=((& QInputContext::_ZTV13QInputContext) + 16u) + QObject (0x7fc389f4ccb0) 0 + primary-for QInputContext (0x7fc389f4cc40) + +Class QInputContextFactory + size=1 align=1 + base size=0 base align=1 +QInputContextFactory (0x7fc389f6e5b0) 0 empty + +Vtable for QInputContextFactoryInterface +QInputContextFactoryInterface::_ZTV29QInputContextFactoryInterface: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI29QInputContextFactoryInterface) +16 QInputContextFactoryInterface::~QInputContextFactoryInterface +24 QInputContextFactoryInterface::~QInputContextFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual + +Class QInputContextFactoryInterface + size=8 align=8 + base size=8 base align=8 +QInputContextFactoryInterface (0x7fc389f6e620) 0 nearly-empty + vptr=((& QInputContextFactoryInterface::_ZTV29QInputContextFactoryInterface) + 16u) + QFactoryInterface (0x7fc389f6e690) 0 nearly-empty + primary-for QInputContextFactoryInterface (0x7fc389f6e620) + +Vtable for QInputContextPlugin +QInputContextPlugin::_ZTV19QInputContextPlugin: 28u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QInputContextPlugin) +16 QInputContextPlugin::metaObject +24 QInputContextPlugin::qt_metacast +32 QInputContextPlugin::qt_metacall +40 QInputContextPlugin::~QInputContextPlugin +48 QInputContextPlugin::~QInputContextPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 (int (*)(...))-0x00000000000000010 +160 (int (*)(...))(& _ZTI19QInputContextPlugin) +168 QInputContextPlugin::_ZThn16_N19QInputContextPluginD1Ev +176 QInputContextPlugin::_ZThn16_N19QInputContextPluginD0Ev +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 __cxa_pure_virtual +208 __cxa_pure_virtual +216 __cxa_pure_virtual + +Class QInputContextPlugin + size=24 align=8 + base size=24 base align=8 +QInputContextPlugin (0x7fc389f69e80) 0 + vptr=((& QInputContextPlugin::_ZTV19QInputContextPlugin) + 16u) + QObject (0x7fc389f7c000) 0 + primary-for QInputContextPlugin (0x7fc389f69e80) + QInputContextFactoryInterface (0x7fc389f7c070) 16 nearly-empty + vptr=((& QInputContextPlugin::_ZTV19QInputContextPlugin) + 168u) + QFactoryInterface (0x7fc389f7c0e0) 16 nearly-empty + primary-for QInputContextFactoryInterface (0x7fc389f7c070) + +Vtable for QGraphicsItem +QGraphicsItem::_ZTV13QGraphicsItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QGraphicsItem) +16 QGraphicsItem::~QGraphicsItem +24 QGraphicsItem::~QGraphicsItem +32 QGraphicsItem::advance +40 __cxa_pure_virtual +48 QGraphicsItem::shape +56 QGraphicsItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsItem::isObscuredBy +88 QGraphicsItem::opaqueArea +96 __cxa_pure_virtual +104 QGraphicsItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsItem::supportsExtension +296 QGraphicsItem::setExtension +304 QGraphicsItem::extension + +Class QGraphicsItem + size=16 align=8 + base size=16 base align=8 +QGraphicsItem (0x7fc389f7c380) 0 + vptr=((& QGraphicsItem::_ZTV13QGraphicsItem) + 16u) + +Vtable for QGraphicsObject +QGraphicsObject::_ZTV15QGraphicsObject: 53u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QGraphicsObject) +16 QGraphicsObject::metaObject +24 QGraphicsObject::qt_metacast +32 QGraphicsObject::qt_metacall +40 QGraphicsObject::~QGraphicsObject +48 QGraphicsObject::~QGraphicsObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 (int (*)(...))-0x00000000000000010 +120 (int (*)(...))(& _ZTI15QGraphicsObject) +128 QGraphicsObject::_ZThn16_N15QGraphicsObjectD1Ev +136 QGraphicsObject::_ZThn16_N15QGraphicsObjectD0Ev +144 QGraphicsItem::advance +152 __cxa_pure_virtual +160 QGraphicsItem::shape +168 QGraphicsItem::contains +176 QGraphicsItem::collidesWithItem +184 QGraphicsItem::collidesWithPath +192 QGraphicsItem::isObscuredBy +200 QGraphicsItem::opaqueArea +208 __cxa_pure_virtual +216 QGraphicsItem::type +224 QGraphicsItem::sceneEventFilter +232 QGraphicsItem::sceneEvent +240 QGraphicsItem::contextMenuEvent +248 QGraphicsItem::dragEnterEvent +256 QGraphicsItem::dragLeaveEvent +264 QGraphicsItem::dragMoveEvent +272 QGraphicsItem::dropEvent +280 QGraphicsItem::focusInEvent +288 QGraphicsItem::focusOutEvent +296 QGraphicsItem::hoverEnterEvent +304 QGraphicsItem::hoverMoveEvent +312 QGraphicsItem::hoverLeaveEvent +320 QGraphicsItem::keyPressEvent +328 QGraphicsItem::keyReleaseEvent +336 QGraphicsItem::mousePressEvent +344 QGraphicsItem::mouseMoveEvent +352 QGraphicsItem::mouseReleaseEvent +360 QGraphicsItem::mouseDoubleClickEvent +368 QGraphicsItem::wheelEvent +376 QGraphicsItem::inputMethodEvent +384 QGraphicsItem::inputMethodQuery +392 QGraphicsItem::itemChange +400 QGraphicsItem::supportsExtension +408 QGraphicsItem::setExtension +416 QGraphicsItem::extension + +Class QGraphicsObject + size=32 align=8 + base size=32 base align=8 +QGraphicsObject (0x7fc389e76c80) 0 + vptr=((& QGraphicsObject::_ZTV15QGraphicsObject) + 16u) + QObject (0x7fc389e7cf50) 0 + primary-for QGraphicsObject (0x7fc389e76c80) + QGraphicsItem (0x7fc389e87000) 16 + vptr=((& QGraphicsObject::_ZTV15QGraphicsObject) + 128u) + +Vtable for QAbstractGraphicsShapeItem +QAbstractGraphicsShapeItem::_ZTV26QAbstractGraphicsShapeItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QAbstractGraphicsShapeItem) +16 QAbstractGraphicsShapeItem::~QAbstractGraphicsShapeItem +24 QAbstractGraphicsShapeItem::~QAbstractGraphicsShapeItem +32 QGraphicsItem::advance +40 __cxa_pure_virtual +48 QGraphicsItem::shape +56 QGraphicsItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QAbstractGraphicsShapeItem::isObscuredBy +88 QAbstractGraphicsShapeItem::opaqueArea +96 __cxa_pure_virtual +104 QGraphicsItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsItem::supportsExtension +296 QGraphicsItem::setExtension +304 QGraphicsItem::extension + +Class QAbstractGraphicsShapeItem + size=16 align=8 + base size=16 base align=8 +QAbstractGraphicsShapeItem (0x7fc389e9d070) 0 + vptr=((& QAbstractGraphicsShapeItem::_ZTV26QAbstractGraphicsShapeItem) + 16u) + QGraphicsItem (0x7fc389e9d0e0) 0 + primary-for QAbstractGraphicsShapeItem (0x7fc389e9d070) + +Vtable for QGraphicsPathItem +QGraphicsPathItem::_ZTV17QGraphicsPathItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QGraphicsPathItem) +16 QGraphicsPathItem::~QGraphicsPathItem +24 QGraphicsPathItem::~QGraphicsPathItem +32 QGraphicsItem::advance +40 QGraphicsPathItem::boundingRect +48 QGraphicsPathItem::shape +56 QGraphicsPathItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsPathItem::isObscuredBy +88 QGraphicsPathItem::opaqueArea +96 QGraphicsPathItem::paint +104 QGraphicsPathItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsPathItem::supportsExtension +296 QGraphicsPathItem::setExtension +304 QGraphicsPathItem::extension + +Class QGraphicsPathItem + size=16 align=8 + base size=16 base align=8 +QGraphicsPathItem (0x7fc389e9dee0) 0 + vptr=((& QGraphicsPathItem::_ZTV17QGraphicsPathItem) + 16u) + QAbstractGraphicsShapeItem (0x7fc389e9df50) 0 + primary-for QGraphicsPathItem (0x7fc389e9dee0) + QGraphicsItem (0x7fc389e9d930) 0 + primary-for QAbstractGraphicsShapeItem (0x7fc389e9df50) + +Vtable for QGraphicsRectItem +QGraphicsRectItem::_ZTV17QGraphicsRectItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QGraphicsRectItem) +16 QGraphicsRectItem::~QGraphicsRectItem +24 QGraphicsRectItem::~QGraphicsRectItem +32 QGraphicsItem::advance +40 QGraphicsRectItem::boundingRect +48 QGraphicsRectItem::shape +56 QGraphicsRectItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsRectItem::isObscuredBy +88 QGraphicsRectItem::opaqueArea +96 QGraphicsRectItem::paint +104 QGraphicsRectItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsRectItem::supportsExtension +296 QGraphicsRectItem::setExtension +304 QGraphicsRectItem::extension + +Class QGraphicsRectItem + size=16 align=8 + base size=16 base align=8 +QGraphicsRectItem (0x7fc389ca3e70) 0 + vptr=((& QGraphicsRectItem::_ZTV17QGraphicsRectItem) + 16u) + QAbstractGraphicsShapeItem (0x7fc389ca3ee0) 0 + primary-for QGraphicsRectItem (0x7fc389ca3e70) + QGraphicsItem (0x7fc389ca3f50) 0 + primary-for QAbstractGraphicsShapeItem (0x7fc389ca3ee0) + +Vtable for QGraphicsEllipseItem +QGraphicsEllipseItem::_ZTV20QGraphicsEllipseItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QGraphicsEllipseItem) +16 QGraphicsEllipseItem::~QGraphicsEllipseItem +24 QGraphicsEllipseItem::~QGraphicsEllipseItem +32 QGraphicsItem::advance +40 QGraphicsEllipseItem::boundingRect +48 QGraphicsEllipseItem::shape +56 QGraphicsEllipseItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsEllipseItem::isObscuredBy +88 QGraphicsEllipseItem::opaqueArea +96 QGraphicsEllipseItem::paint +104 QGraphicsEllipseItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsEllipseItem::supportsExtension +296 QGraphicsEllipseItem::setExtension +304 QGraphicsEllipseItem::extension + +Class QGraphicsEllipseItem + size=16 align=8 + base size=16 base align=8 +QGraphicsEllipseItem (0x7fc389cc9150) 0 + vptr=((& QGraphicsEllipseItem::_ZTV20QGraphicsEllipseItem) + 16u) + QAbstractGraphicsShapeItem (0x7fc389cc91c0) 0 + primary-for QGraphicsEllipseItem (0x7fc389cc9150) + QGraphicsItem (0x7fc389cc9230) 0 + primary-for QAbstractGraphicsShapeItem (0x7fc389cc91c0) + +Vtable for QGraphicsPolygonItem +QGraphicsPolygonItem::_ZTV20QGraphicsPolygonItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QGraphicsPolygonItem) +16 QGraphicsPolygonItem::~QGraphicsPolygonItem +24 QGraphicsPolygonItem::~QGraphicsPolygonItem +32 QGraphicsItem::advance +40 QGraphicsPolygonItem::boundingRect +48 QGraphicsPolygonItem::shape +56 QGraphicsPolygonItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsPolygonItem::isObscuredBy +88 QGraphicsPolygonItem::opaqueArea +96 QGraphicsPolygonItem::paint +104 QGraphicsPolygonItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsPolygonItem::supportsExtension +296 QGraphicsPolygonItem::setExtension +304 QGraphicsPolygonItem::extension + +Class QGraphicsPolygonItem + size=16 align=8 + base size=16 base align=8 +QGraphicsPolygonItem (0x7fc389cdc460) 0 + vptr=((& QGraphicsPolygonItem::_ZTV20QGraphicsPolygonItem) + 16u) + QAbstractGraphicsShapeItem (0x7fc389cdc4d0) 0 + primary-for QGraphicsPolygonItem (0x7fc389cdc460) + QGraphicsItem (0x7fc389cdc540) 0 + primary-for QAbstractGraphicsShapeItem (0x7fc389cdc4d0) + +Vtable for QGraphicsLineItem +QGraphicsLineItem::_ZTV17QGraphicsLineItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QGraphicsLineItem) +16 QGraphicsLineItem::~QGraphicsLineItem +24 QGraphicsLineItem::~QGraphicsLineItem +32 QGraphicsItem::advance +40 QGraphicsLineItem::boundingRect +48 QGraphicsLineItem::shape +56 QGraphicsLineItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsLineItem::isObscuredBy +88 QGraphicsLineItem::opaqueArea +96 QGraphicsLineItem::paint +104 QGraphicsLineItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsLineItem::supportsExtension +296 QGraphicsLineItem::setExtension +304 QGraphicsLineItem::extension + +Class QGraphicsLineItem + size=16 align=8 + base size=16 base align=8 +QGraphicsLineItem (0x7fc389cef3f0) 0 + vptr=((& QGraphicsLineItem::_ZTV17QGraphicsLineItem) + 16u) + QGraphicsItem (0x7fc389cef460) 0 + primary-for QGraphicsLineItem (0x7fc389cef3f0) + +Vtable for QGraphicsPixmapItem +QGraphicsPixmapItem::_ZTV19QGraphicsPixmapItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QGraphicsPixmapItem) +16 QGraphicsPixmapItem::~QGraphicsPixmapItem +24 QGraphicsPixmapItem::~QGraphicsPixmapItem +32 QGraphicsItem::advance +40 QGraphicsPixmapItem::boundingRect +48 QGraphicsPixmapItem::shape +56 QGraphicsPixmapItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsPixmapItem::isObscuredBy +88 QGraphicsPixmapItem::opaqueArea +96 QGraphicsPixmapItem::paint +104 QGraphicsPixmapItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsPixmapItem::supportsExtension +296 QGraphicsPixmapItem::setExtension +304 QGraphicsPixmapItem::extension + +Class QGraphicsPixmapItem + size=16 align=8 + base size=16 base align=8 +QGraphicsPixmapItem (0x7fc389d03690) 0 + vptr=((& QGraphicsPixmapItem::_ZTV19QGraphicsPixmapItem) + 16u) + QGraphicsItem (0x7fc389d03700) 0 + primary-for QGraphicsPixmapItem (0x7fc389d03690) + +Vtable for QGraphicsTextItem +QGraphicsTextItem::_ZTV17QGraphicsTextItem: 82u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QGraphicsTextItem) +16 QGraphicsTextItem::metaObject +24 QGraphicsTextItem::qt_metacast +32 QGraphicsTextItem::qt_metacall +40 QGraphicsTextItem::~QGraphicsTextItem +48 QGraphicsTextItem::~QGraphicsTextItem +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsTextItem::boundingRect +120 QGraphicsTextItem::shape +128 QGraphicsTextItem::contains +136 QGraphicsTextItem::paint +144 QGraphicsTextItem::isObscuredBy +152 QGraphicsTextItem::opaqueArea +160 QGraphicsTextItem::type +168 QGraphicsTextItem::sceneEvent +176 QGraphicsTextItem::mousePressEvent +184 QGraphicsTextItem::mouseMoveEvent +192 QGraphicsTextItem::mouseReleaseEvent +200 QGraphicsTextItem::mouseDoubleClickEvent +208 QGraphicsTextItem::contextMenuEvent +216 QGraphicsTextItem::keyPressEvent +224 QGraphicsTextItem::keyReleaseEvent +232 QGraphicsTextItem::focusInEvent +240 QGraphicsTextItem::focusOutEvent +248 QGraphicsTextItem::dragEnterEvent +256 QGraphicsTextItem::dragLeaveEvent +264 QGraphicsTextItem::dragMoveEvent +272 QGraphicsTextItem::dropEvent +280 QGraphicsTextItem::inputMethodEvent +288 QGraphicsTextItem::hoverEnterEvent +296 QGraphicsTextItem::hoverMoveEvent +304 QGraphicsTextItem::hoverLeaveEvent +312 QGraphicsTextItem::inputMethodQuery +320 QGraphicsTextItem::supportsExtension +328 QGraphicsTextItem::setExtension +336 QGraphicsTextItem::extension +344 (int (*)(...))-0x00000000000000010 +352 (int (*)(...))(& _ZTI17QGraphicsTextItem) +360 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItemD1Ev +368 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItemD0Ev +376 QGraphicsItem::advance +384 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem12boundingRectEv +392 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem5shapeEv +400 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem8containsERK7QPointF +408 QGraphicsItem::collidesWithItem +416 QGraphicsItem::collidesWithPath +424 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem12isObscuredByEPK13QGraphicsItem +432 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem10opaqueAreaEv +440 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget +448 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem4typeEv +456 QGraphicsItem::sceneEventFilter +464 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem10sceneEventEP6QEvent +472 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem16contextMenuEventEP30QGraphicsSceneContextMenuEvent +480 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem14dragEnterEventEP27QGraphicsSceneDragDropEvent +488 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem14dragLeaveEventEP27QGraphicsSceneDragDropEvent +496 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem13dragMoveEventEP27QGraphicsSceneDragDropEvent +504 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem9dropEventEP27QGraphicsSceneDragDropEvent +512 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem12focusInEventEP11QFocusEvent +520 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem13focusOutEventEP11QFocusEvent +528 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem15hoverEnterEventEP24QGraphicsSceneHoverEvent +536 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem14hoverMoveEventEP24QGraphicsSceneHoverEvent +544 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem15hoverLeaveEventEP24QGraphicsSceneHoverEvent +552 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem13keyPressEventEP9QKeyEvent +560 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem15keyReleaseEventEP9QKeyEvent +568 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem15mousePressEventEP24QGraphicsSceneMouseEvent +576 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem14mouseMoveEventEP24QGraphicsSceneMouseEvent +584 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem17mouseReleaseEventEP24QGraphicsSceneMouseEvent +592 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem21mouseDoubleClickEventEP24QGraphicsSceneMouseEvent +600 QGraphicsItem::wheelEvent +608 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem16inputMethodEventEP17QInputMethodEvent +616 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem16inputMethodQueryEN2Qt16InputMethodQueryE +624 QGraphicsItem::itemChange +632 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem17supportsExtensionEN13QGraphicsItem9ExtensionE +640 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem12setExtensionEN13QGraphicsItem9ExtensionERK8QVariant +648 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem9extensionERK8QVariant + +Class QGraphicsTextItem + size=40 align=8 + base size=40 base align=8 +QGraphicsTextItem (0x7fc389d12930) 0 + vptr=((& QGraphicsTextItem::_ZTV17QGraphicsTextItem) + 16u) + QGraphicsObject (0x7fc389d07700) 0 + primary-for QGraphicsTextItem (0x7fc389d12930) + QObject (0x7fc389d129a0) 0 + primary-for QGraphicsObject (0x7fc389d07700) + QGraphicsItem (0x7fc389d12a10) 16 + vptr=((& QGraphicsTextItem::_ZTV17QGraphicsTextItem) + 360u) + +Vtable for QGraphicsSimpleTextItem +QGraphicsSimpleTextItem::_ZTV23QGraphicsSimpleTextItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QGraphicsSimpleTextItem) +16 QGraphicsSimpleTextItem::~QGraphicsSimpleTextItem +24 QGraphicsSimpleTextItem::~QGraphicsSimpleTextItem +32 QGraphicsItem::advance +40 QGraphicsSimpleTextItem::boundingRect +48 QGraphicsSimpleTextItem::shape +56 QGraphicsSimpleTextItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsSimpleTextItem::isObscuredBy +88 QGraphicsSimpleTextItem::opaqueArea +96 QGraphicsSimpleTextItem::paint +104 QGraphicsSimpleTextItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsSimpleTextItem::supportsExtension +296 QGraphicsSimpleTextItem::setExtension +304 QGraphicsSimpleTextItem::extension + +Class QGraphicsSimpleTextItem + size=16 align=8 + base size=16 base align=8 +QGraphicsSimpleTextItem (0x7fc389d33380) 0 + vptr=((& QGraphicsSimpleTextItem::_ZTV23QGraphicsSimpleTextItem) + 16u) + QAbstractGraphicsShapeItem (0x7fc389d49000) 0 + primary-for QGraphicsSimpleTextItem (0x7fc389d33380) + QGraphicsItem (0x7fc389d49070) 0 + primary-for QAbstractGraphicsShapeItem (0x7fc389d49000) + +Vtable for QGraphicsItemGroup +QGraphicsItemGroup::_ZTV18QGraphicsItemGroup: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QGraphicsItemGroup) +16 QGraphicsItemGroup::~QGraphicsItemGroup +24 QGraphicsItemGroup::~QGraphicsItemGroup +32 QGraphicsItem::advance +40 QGraphicsItemGroup::boundingRect +48 QGraphicsItem::shape +56 QGraphicsItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsItemGroup::isObscuredBy +88 QGraphicsItemGroup::opaqueArea +96 QGraphicsItemGroup::paint +104 QGraphicsItemGroup::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsItem::supportsExtension +296 QGraphicsItem::setExtension +304 QGraphicsItem::extension + +Class QGraphicsItemGroup + size=16 align=8 + base size=16 base align=8 +QGraphicsItemGroup (0x7fc389d49f50) 0 + vptr=((& QGraphicsItemGroup::_ZTV18QGraphicsItemGroup) + 16u) + QGraphicsItem (0x7fc389d499a0) 0 + primary-for QGraphicsItemGroup (0x7fc389d49f50) + +Vtable for QGraphicsLayoutItem +QGraphicsLayoutItem::_ZTV19QGraphicsLayoutItem: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QGraphicsLayoutItem) +16 QGraphicsLayoutItem::~QGraphicsLayoutItem +24 QGraphicsLayoutItem::~QGraphicsLayoutItem +32 QGraphicsLayoutItem::setGeometry +40 QGraphicsLayoutItem::getContentsMargins +48 QGraphicsLayoutItem::updateGeometry +56 __cxa_pure_virtual + +Class QGraphicsLayoutItem + size=16 align=8 + base size=16 base align=8 +QGraphicsLayoutItem (0x7fc389d6c850) 0 + vptr=((& QGraphicsLayoutItem::_ZTV19QGraphicsLayoutItem) + 16u) + +Vtable for QGraphicsLayout +QGraphicsLayout::_ZTV15QGraphicsLayout: 13u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QGraphicsLayout) +16 QGraphicsLayout::~QGraphicsLayout +24 QGraphicsLayout::~QGraphicsLayout +32 QGraphicsLayoutItem::setGeometry +40 QGraphicsLayout::getContentsMargins +48 QGraphicsLayout::updateGeometry +56 __cxa_pure_virtual +64 QGraphicsLayout::invalidate +72 QGraphicsLayout::widgetEvent +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual + +Class QGraphicsLayout + size=16 align=8 + base size=16 base align=8 +QGraphicsLayout (0x7fc389baf070) 0 + vptr=((& QGraphicsLayout::_ZTV15QGraphicsLayout) + 16u) + QGraphicsLayoutItem (0x7fc389baf0e0) 0 + primary-for QGraphicsLayout (0x7fc389baf070) + +Vtable for QGraphicsAnchor +QGraphicsAnchor::_ZTV15QGraphicsAnchor: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QGraphicsAnchor) +16 QGraphicsAnchor::metaObject +24 QGraphicsAnchor::qt_metacast +32 QGraphicsAnchor::qt_metacall +40 QGraphicsAnchor::~QGraphicsAnchor +48 QGraphicsAnchor::~QGraphicsAnchor +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QGraphicsAnchor + size=16 align=8 + base size=16 base align=8 +QGraphicsAnchor (0x7fc389bbd850) 0 + vptr=((& QGraphicsAnchor::_ZTV15QGraphicsAnchor) + 16u) + QObject (0x7fc389bbd8c0) 0 + primary-for QGraphicsAnchor (0x7fc389bbd850) + +Vtable for QGraphicsAnchorLayout +QGraphicsAnchorLayout::_ZTV21QGraphicsAnchorLayout: 13u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QGraphicsAnchorLayout) +16 QGraphicsAnchorLayout::~QGraphicsAnchorLayout +24 QGraphicsAnchorLayout::~QGraphicsAnchorLayout +32 QGraphicsAnchorLayout::setGeometry +40 QGraphicsLayout::getContentsMargins +48 QGraphicsLayout::updateGeometry +56 QGraphicsAnchorLayout::sizeHint +64 QGraphicsAnchorLayout::invalidate +72 QGraphicsLayout::widgetEvent +80 QGraphicsAnchorLayout::count +88 QGraphicsAnchorLayout::itemAt +96 QGraphicsAnchorLayout::removeAt + +Class QGraphicsAnchorLayout + size=16 align=8 + base size=16 base align=8 +QGraphicsAnchorLayout (0x7fc389bd0d90) 0 + vptr=((& QGraphicsAnchorLayout::_ZTV21QGraphicsAnchorLayout) + 16u) + QGraphicsLayout (0x7fc389bd0e00) 0 + primary-for QGraphicsAnchorLayout (0x7fc389bd0d90) + QGraphicsLayoutItem (0x7fc389bd0e70) 0 + primary-for QGraphicsLayout (0x7fc389bd0e00) + +Vtable for QGraphicsGridLayout +QGraphicsGridLayout::_ZTV19QGraphicsGridLayout: 13u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QGraphicsGridLayout) +16 QGraphicsGridLayout::~QGraphicsGridLayout +24 QGraphicsGridLayout::~QGraphicsGridLayout +32 QGraphicsGridLayout::setGeometry +40 QGraphicsLayout::getContentsMargins +48 QGraphicsLayout::updateGeometry +56 QGraphicsGridLayout::sizeHint +64 QGraphicsGridLayout::invalidate +72 QGraphicsLayout::widgetEvent +80 QGraphicsGridLayout::count +88 QGraphicsGridLayout::itemAt +96 QGraphicsGridLayout::removeAt + +Class QGraphicsGridLayout + size=16 align=8 + base size=16 base align=8 +QGraphicsGridLayout (0x7fc389be90e0) 0 + vptr=((& QGraphicsGridLayout::_ZTV19QGraphicsGridLayout) + 16u) + QGraphicsLayout (0x7fc389be9150) 0 + primary-for QGraphicsGridLayout (0x7fc389be90e0) + QGraphicsLayoutItem (0x7fc389be91c0) 0 + primary-for QGraphicsLayout (0x7fc389be9150) + +Vtable for QGraphicsItemAnimation +QGraphicsItemAnimation::_ZTV22QGraphicsItemAnimation: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QGraphicsItemAnimation) +16 QGraphicsItemAnimation::metaObject +24 QGraphicsItemAnimation::qt_metacast +32 QGraphicsItemAnimation::qt_metacall +40 QGraphicsItemAnimation::~QGraphicsItemAnimation +48 QGraphicsItemAnimation::~QGraphicsItemAnimation +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsItemAnimation::beforeAnimationStep +120 QGraphicsItemAnimation::afterAnimationStep + +Class QGraphicsItemAnimation + size=24 align=8 + base size=24 base align=8 +QGraphicsItemAnimation (0x7fc389c054d0) 0 + vptr=((& QGraphicsItemAnimation::_ZTV22QGraphicsItemAnimation) + 16u) + QObject (0x7fc389c05540) 0 + primary-for QGraphicsItemAnimation (0x7fc389c054d0) + +Vtable for QGraphicsLinearLayout +QGraphicsLinearLayout::_ZTV21QGraphicsLinearLayout: 13u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QGraphicsLinearLayout) +16 QGraphicsLinearLayout::~QGraphicsLinearLayout +24 QGraphicsLinearLayout::~QGraphicsLinearLayout +32 QGraphicsLinearLayout::setGeometry +40 QGraphicsLayout::getContentsMargins +48 QGraphicsLayout::updateGeometry +56 QGraphicsLinearLayout::sizeHint +64 QGraphicsLinearLayout::invalidate +72 QGraphicsLayout::widgetEvent +80 QGraphicsLinearLayout::count +88 QGraphicsLinearLayout::itemAt +96 QGraphicsLinearLayout::removeAt + +Class QGraphicsLinearLayout + size=16 align=8 + base size=16 base align=8 +QGraphicsLinearLayout (0x7fc389c1f850) 0 + vptr=((& QGraphicsLinearLayout::_ZTV21QGraphicsLinearLayout) + 16u) + QGraphicsLayout (0x7fc389c1f8c0) 0 + primary-for QGraphicsLinearLayout (0x7fc389c1f850) + QGraphicsLayoutItem (0x7fc389c1f930) 0 + primary-for QGraphicsLayout (0x7fc389c1f8c0) + +Vtable for QGraphicsWidget +QGraphicsWidget::_ZTV15QGraphicsWidget: 92u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QGraphicsWidget) +16 QGraphicsWidget::metaObject +24 QGraphicsWidget::qt_metacast +32 QGraphicsWidget::qt_metacall +40 QGraphicsWidget::~QGraphicsWidget +48 QGraphicsWidget::~QGraphicsWidget +56 QGraphicsWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsWidget::setGeometry +120 QGraphicsWidget::getContentsMargins +128 QGraphicsWidget::type +136 QGraphicsWidget::paint +144 QGraphicsWidget::paintWindowFrame +152 QGraphicsWidget::boundingRect +160 QGraphicsWidget::shape +168 QGraphicsWidget::initStyleOption +176 QGraphicsWidget::sizeHint +184 QGraphicsWidget::updateGeometry +192 QGraphicsWidget::itemChange +200 QGraphicsWidget::propertyChange +208 QGraphicsWidget::sceneEvent +216 QGraphicsWidget::windowFrameEvent +224 QGraphicsWidget::windowFrameSectionAt +232 QGraphicsWidget::changeEvent +240 QGraphicsWidget::closeEvent +248 QGraphicsWidget::focusInEvent +256 QGraphicsWidget::focusNextPrevChild +264 QGraphicsWidget::focusOutEvent +272 QGraphicsWidget::hideEvent +280 QGraphicsWidget::moveEvent +288 QGraphicsWidget::polishEvent +296 QGraphicsWidget::resizeEvent +304 QGraphicsWidget::showEvent +312 QGraphicsWidget::hoverMoveEvent +320 QGraphicsWidget::hoverLeaveEvent +328 QGraphicsWidget::grabMouseEvent +336 QGraphicsWidget::ungrabMouseEvent +344 QGraphicsWidget::grabKeyboardEvent +352 QGraphicsWidget::ungrabKeyboardEvent +360 (int (*)(...))-0x00000000000000010 +368 (int (*)(...))(& _ZTI15QGraphicsWidget) +376 QGraphicsWidget::_ZThn16_N15QGraphicsWidgetD1Ev +384 QGraphicsWidget::_ZThn16_N15QGraphicsWidgetD0Ev +392 QGraphicsItem::advance +400 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget12boundingRectEv +408 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget5shapeEv +416 QGraphicsItem::contains +424 QGraphicsItem::collidesWithItem +432 QGraphicsItem::collidesWithPath +440 QGraphicsItem::isObscuredBy +448 QGraphicsItem::opaqueArea +456 QGraphicsWidget::_ZThn16_N15QGraphicsWidget5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget +464 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget4typeEv +472 QGraphicsItem::sceneEventFilter +480 QGraphicsWidget::_ZThn16_N15QGraphicsWidget10sceneEventEP6QEvent +488 QGraphicsItem::contextMenuEvent +496 QGraphicsItem::dragEnterEvent +504 QGraphicsItem::dragLeaveEvent +512 QGraphicsItem::dragMoveEvent +520 QGraphicsItem::dropEvent +528 QGraphicsWidget::_ZThn16_N15QGraphicsWidget12focusInEventEP11QFocusEvent +536 QGraphicsWidget::_ZThn16_N15QGraphicsWidget13focusOutEventEP11QFocusEvent +544 QGraphicsItem::hoverEnterEvent +552 QGraphicsWidget::_ZThn16_N15QGraphicsWidget14hoverMoveEventEP24QGraphicsSceneHoverEvent +560 QGraphicsWidget::_ZThn16_N15QGraphicsWidget15hoverLeaveEventEP24QGraphicsSceneHoverEvent +568 QGraphicsItem::keyPressEvent +576 QGraphicsItem::keyReleaseEvent +584 QGraphicsItem::mousePressEvent +592 QGraphicsItem::mouseMoveEvent +600 QGraphicsItem::mouseReleaseEvent +608 QGraphicsItem::mouseDoubleClickEvent +616 QGraphicsItem::wheelEvent +624 QGraphicsItem::inputMethodEvent +632 QGraphicsItem::inputMethodQuery +640 QGraphicsWidget::_ZThn16_N15QGraphicsWidget10itemChangeEN13QGraphicsItem18GraphicsItemChangeERK8QVariant +648 QGraphicsItem::supportsExtension +656 QGraphicsItem::setExtension +664 QGraphicsItem::extension +672 (int (*)(...))-0x00000000000000020 +680 (int (*)(...))(& _ZTI15QGraphicsWidget) +688 QGraphicsWidget::_ZThn32_N15QGraphicsWidgetD1Ev +696 QGraphicsWidget::_ZThn32_N15QGraphicsWidgetD0Ev +704 QGraphicsWidget::_ZThn32_N15QGraphicsWidget11setGeometryERK6QRectF +712 QGraphicsWidget::_ZThn32_NK15QGraphicsWidget18getContentsMarginsEPdS0_S0_S0_ +720 QGraphicsWidget::_ZThn32_N15QGraphicsWidget14updateGeometryEv +728 QGraphicsWidget::_ZThn32_NK15QGraphicsWidget8sizeHintEN2Qt8SizeHintERK6QSizeF + +Class QGraphicsWidget + size=48 align=8 + base size=48 base align=8 +QGraphicsWidget (0x7fc389c3c000) 0 + vptr=((& QGraphicsWidget::_ZTV15QGraphicsWidget) + 16u) + QGraphicsObject (0x7fc389c3c080) 0 + primary-for QGraphicsWidget (0x7fc389c3c000) + QObject (0x7fc389c3b070) 0 + primary-for QGraphicsObject (0x7fc389c3c080) + QGraphicsItem (0x7fc389c3b0e0) 16 + vptr=((& QGraphicsWidget::_ZTV15QGraphicsWidget) + 376u) + QGraphicsLayoutItem (0x7fc389c3b150) 32 + vptr=((& QGraphicsWidget::_ZTV15QGraphicsWidget) + 688u) + +Vtable for QGraphicsProxyWidget +QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget: 105u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QGraphicsProxyWidget) +16 QGraphicsProxyWidget::metaObject +24 QGraphicsProxyWidget::qt_metacast +32 QGraphicsProxyWidget::qt_metacall +40 QGraphicsProxyWidget::~QGraphicsProxyWidget +48 QGraphicsProxyWidget::~QGraphicsProxyWidget +56 QGraphicsProxyWidget::event +64 QGraphicsProxyWidget::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsProxyWidget::setGeometry +120 QGraphicsWidget::getContentsMargins +128 QGraphicsProxyWidget::type +136 QGraphicsProxyWidget::paint +144 QGraphicsWidget::paintWindowFrame +152 QGraphicsWidget::boundingRect +160 QGraphicsWidget::shape +168 QGraphicsWidget::initStyleOption +176 QGraphicsProxyWidget::sizeHint +184 QGraphicsWidget::updateGeometry +192 QGraphicsProxyWidget::itemChange +200 QGraphicsWidget::propertyChange +208 QGraphicsWidget::sceneEvent +216 QGraphicsWidget::windowFrameEvent +224 QGraphicsWidget::windowFrameSectionAt +232 QGraphicsWidget::changeEvent +240 QGraphicsWidget::closeEvent +248 QGraphicsProxyWidget::focusInEvent +256 QGraphicsProxyWidget::focusNextPrevChild +264 QGraphicsProxyWidget::focusOutEvent +272 QGraphicsProxyWidget::hideEvent +280 QGraphicsWidget::moveEvent +288 QGraphicsWidget::polishEvent +296 QGraphicsProxyWidget::resizeEvent +304 QGraphicsProxyWidget::showEvent +312 QGraphicsProxyWidget::hoverMoveEvent +320 QGraphicsProxyWidget::hoverLeaveEvent +328 QGraphicsProxyWidget::grabMouseEvent +336 QGraphicsProxyWidget::ungrabMouseEvent +344 QGraphicsWidget::grabKeyboardEvent +352 QGraphicsWidget::ungrabKeyboardEvent +360 QGraphicsProxyWidget::contextMenuEvent +368 QGraphicsProxyWidget::dragEnterEvent +376 QGraphicsProxyWidget::dragLeaveEvent +384 QGraphicsProxyWidget::dragMoveEvent +392 QGraphicsProxyWidget::dropEvent +400 QGraphicsProxyWidget::hoverEnterEvent +408 QGraphicsProxyWidget::mouseMoveEvent +416 QGraphicsProxyWidget::mousePressEvent +424 QGraphicsProxyWidget::mouseReleaseEvent +432 QGraphicsProxyWidget::mouseDoubleClickEvent +440 QGraphicsProxyWidget::wheelEvent +448 QGraphicsProxyWidget::keyPressEvent +456 QGraphicsProxyWidget::keyReleaseEvent +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI20QGraphicsProxyWidget) +480 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidgetD1Ev +488 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidgetD0Ev +496 QGraphicsItem::advance +504 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget12boundingRectEv +512 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget5shapeEv +520 QGraphicsItem::contains +528 QGraphicsItem::collidesWithItem +536 QGraphicsItem::collidesWithPath +544 QGraphicsItem::isObscuredBy +552 QGraphicsItem::opaqueArea +560 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget +568 QGraphicsProxyWidget::_ZThn16_NK20QGraphicsProxyWidget4typeEv +576 QGraphicsItem::sceneEventFilter +584 QGraphicsWidget::_ZThn16_N15QGraphicsWidget10sceneEventEP6QEvent +592 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget16contextMenuEventEP30QGraphicsSceneContextMenuEvent +600 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget14dragEnterEventEP27QGraphicsSceneDragDropEvent +608 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget14dragLeaveEventEP27QGraphicsSceneDragDropEvent +616 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget13dragMoveEventEP27QGraphicsSceneDragDropEvent +624 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget9dropEventEP27QGraphicsSceneDragDropEvent +632 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget12focusInEventEP11QFocusEvent +640 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget13focusOutEventEP11QFocusEvent +648 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget15hoverEnterEventEP24QGraphicsSceneHoverEvent +656 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget14hoverMoveEventEP24QGraphicsSceneHoverEvent +664 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget15hoverLeaveEventEP24QGraphicsSceneHoverEvent +672 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget13keyPressEventEP9QKeyEvent +680 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget15keyReleaseEventEP9QKeyEvent +688 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget15mousePressEventEP24QGraphicsSceneMouseEvent +696 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget14mouseMoveEventEP24QGraphicsSceneMouseEvent +704 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget17mouseReleaseEventEP24QGraphicsSceneMouseEvent +712 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget21mouseDoubleClickEventEP24QGraphicsSceneMouseEvent +720 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget10wheelEventEP24QGraphicsSceneWheelEvent +728 QGraphicsItem::inputMethodEvent +736 QGraphicsItem::inputMethodQuery +744 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget10itemChangeEN13QGraphicsItem18GraphicsItemChangeERK8QVariant +752 QGraphicsItem::supportsExtension +760 QGraphicsItem::setExtension +768 QGraphicsItem::extension +776 (int (*)(...))-0x00000000000000020 +784 (int (*)(...))(& _ZTI20QGraphicsProxyWidget) +792 QGraphicsProxyWidget::_ZThn32_N20QGraphicsProxyWidgetD1Ev +800 QGraphicsProxyWidget::_ZThn32_N20QGraphicsProxyWidgetD0Ev +808 QGraphicsProxyWidget::_ZThn32_N20QGraphicsProxyWidget11setGeometryERK6QRectF +816 QGraphicsWidget::_ZThn32_NK15QGraphicsWidget18getContentsMarginsEPdS0_S0_S0_ +824 QGraphicsWidget::_ZThn32_N15QGraphicsWidget14updateGeometryEv +832 QGraphicsProxyWidget::_ZThn32_NK20QGraphicsProxyWidget8sizeHintEN2Qt8SizeHintERK6QSizeF + +Class QGraphicsProxyWidget + size=48 align=8 + base size=48 base align=8 +QGraphicsProxyWidget (0x7fc389c748c0) 0 + vptr=((& QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget) + 16u) + QGraphicsWidget (0x7fc389c79000) 0 + primary-for QGraphicsProxyWidget (0x7fc389c748c0) + QGraphicsObject (0x7fc389c79080) 0 + primary-for QGraphicsWidget (0x7fc389c79000) + QObject (0x7fc389c74930) 0 + primary-for QGraphicsObject (0x7fc389c79080) + QGraphicsItem (0x7fc389c749a0) 16 + vptr=((& QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget) + 480u) + QGraphicsLayoutItem (0x7fc389c74a10) 32 + vptr=((& QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget) + 792u) + +Vtable for QGraphicsScene +QGraphicsScene::_ZTV14QGraphicsScene: 34u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QGraphicsScene) +16 QGraphicsScene::metaObject +24 QGraphicsScene::qt_metacast +32 QGraphicsScene::qt_metacall +40 QGraphicsScene::~QGraphicsScene +48 QGraphicsScene::~QGraphicsScene +56 QGraphicsScene::event +64 QGraphicsScene::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsScene::inputMethodQuery +120 QGraphicsScene::contextMenuEvent +128 QGraphicsScene::dragEnterEvent +136 QGraphicsScene::dragMoveEvent +144 QGraphicsScene::dragLeaveEvent +152 QGraphicsScene::dropEvent +160 QGraphicsScene::focusInEvent +168 QGraphicsScene::focusOutEvent +176 QGraphicsScene::helpEvent +184 QGraphicsScene::keyPressEvent +192 QGraphicsScene::keyReleaseEvent +200 QGraphicsScene::mousePressEvent +208 QGraphicsScene::mouseMoveEvent +216 QGraphicsScene::mouseReleaseEvent +224 QGraphicsScene::mouseDoubleClickEvent +232 QGraphicsScene::wheelEvent +240 QGraphicsScene::inputMethodEvent +248 QGraphicsScene::drawBackground +256 QGraphicsScene::drawForeground +264 QGraphicsScene::drawItems + +Class QGraphicsScene + size=16 align=8 + base size=16 base align=8 +QGraphicsScene (0x7fc389ca1930) 0 + vptr=((& QGraphicsScene::_ZTV14QGraphicsScene) + 16u) + QObject (0x7fc389ca19a0) 0 + primary-for QGraphicsScene (0x7fc389ca1930) + +Vtable for QGraphicsSceneEvent +QGraphicsSceneEvent::_ZTV19QGraphicsSceneEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QGraphicsSceneEvent) +16 QGraphicsSceneEvent::~QGraphicsSceneEvent +24 QGraphicsSceneEvent::~QGraphicsSceneEvent + +Class QGraphicsSceneEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneEvent (0x7fc389b53850) 0 + vptr=((& QGraphicsSceneEvent::_ZTV19QGraphicsSceneEvent) + 16u) + QEvent (0x7fc389b538c0) 0 + primary-for QGraphicsSceneEvent (0x7fc389b53850) + +Vtable for QGraphicsSceneMouseEvent +QGraphicsSceneMouseEvent::_ZTV24QGraphicsSceneMouseEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QGraphicsSceneMouseEvent) +16 QGraphicsSceneMouseEvent::~QGraphicsSceneMouseEvent +24 QGraphicsSceneMouseEvent::~QGraphicsSceneMouseEvent + +Class QGraphicsSceneMouseEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneMouseEvent (0x7fc389b82310) 0 + vptr=((& QGraphicsSceneMouseEvent::_ZTV24QGraphicsSceneMouseEvent) + 16u) + QGraphicsSceneEvent (0x7fc389b82380) 0 + primary-for QGraphicsSceneMouseEvent (0x7fc389b82310) + QEvent (0x7fc389b823f0) 0 + primary-for QGraphicsSceneEvent (0x7fc389b82380) + +Vtable for QGraphicsSceneWheelEvent +QGraphicsSceneWheelEvent::_ZTV24QGraphicsSceneWheelEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QGraphicsSceneWheelEvent) +16 QGraphicsSceneWheelEvent::~QGraphicsSceneWheelEvent +24 QGraphicsSceneWheelEvent::~QGraphicsSceneWheelEvent + +Class QGraphicsSceneWheelEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneWheelEvent (0x7fc389b82cb0) 0 + vptr=((& QGraphicsSceneWheelEvent::_ZTV24QGraphicsSceneWheelEvent) + 16u) + QGraphicsSceneEvent (0x7fc389b82d20) 0 + primary-for QGraphicsSceneWheelEvent (0x7fc389b82cb0) + QEvent (0x7fc389b82d90) 0 + primary-for QGraphicsSceneEvent (0x7fc389b82d20) + +Vtable for QGraphicsSceneContextMenuEvent +QGraphicsSceneContextMenuEvent::_ZTV30QGraphicsSceneContextMenuEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI30QGraphicsSceneContextMenuEvent) +16 QGraphicsSceneContextMenuEvent::~QGraphicsSceneContextMenuEvent +24 QGraphicsSceneContextMenuEvent::~QGraphicsSceneContextMenuEvent + +Class QGraphicsSceneContextMenuEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneContextMenuEvent (0x7fc389b985b0) 0 + vptr=((& QGraphicsSceneContextMenuEvent::_ZTV30QGraphicsSceneContextMenuEvent) + 16u) + QGraphicsSceneEvent (0x7fc389b98620) 0 + primary-for QGraphicsSceneContextMenuEvent (0x7fc389b985b0) + QEvent (0x7fc389b98690) 0 + primary-for QGraphicsSceneEvent (0x7fc389b98620) + +Vtable for QGraphicsSceneHoverEvent +QGraphicsSceneHoverEvent::_ZTV24QGraphicsSceneHoverEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QGraphicsSceneHoverEvent) +16 QGraphicsSceneHoverEvent::~QGraphicsSceneHoverEvent +24 QGraphicsSceneHoverEvent::~QGraphicsSceneHoverEvent + +Class QGraphicsSceneHoverEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneHoverEvent (0x7fc3899a40e0) 0 + vptr=((& QGraphicsSceneHoverEvent::_ZTV24QGraphicsSceneHoverEvent) + 16u) + QGraphicsSceneEvent (0x7fc3899a4150) 0 + primary-for QGraphicsSceneHoverEvent (0x7fc3899a40e0) + QEvent (0x7fc3899a41c0) 0 + primary-for QGraphicsSceneEvent (0x7fc3899a4150) + +Vtable for QGraphicsSceneHelpEvent +QGraphicsSceneHelpEvent::_ZTV23QGraphicsSceneHelpEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QGraphicsSceneHelpEvent) +16 QGraphicsSceneHelpEvent::~QGraphicsSceneHelpEvent +24 QGraphicsSceneHelpEvent::~QGraphicsSceneHelpEvent + +Class QGraphicsSceneHelpEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneHelpEvent (0x7fc3899a4a80) 0 + vptr=((& QGraphicsSceneHelpEvent::_ZTV23QGraphicsSceneHelpEvent) + 16u) + QGraphicsSceneEvent (0x7fc3899a4af0) 0 + primary-for QGraphicsSceneHelpEvent (0x7fc3899a4a80) + QEvent (0x7fc3899a4b60) 0 + primary-for QGraphicsSceneEvent (0x7fc3899a4af0) + +Vtable for QGraphicsSceneDragDropEvent +QGraphicsSceneDragDropEvent::_ZTV27QGraphicsSceneDragDropEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QGraphicsSceneDragDropEvent) +16 QGraphicsSceneDragDropEvent::~QGraphicsSceneDragDropEvent +24 QGraphicsSceneDragDropEvent::~QGraphicsSceneDragDropEvent + +Class QGraphicsSceneDragDropEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneDragDropEvent (0x7fc3899b6380) 0 + vptr=((& QGraphicsSceneDragDropEvent::_ZTV27QGraphicsSceneDragDropEvent) + 16u) + QGraphicsSceneEvent (0x7fc3899b63f0) 0 + primary-for QGraphicsSceneDragDropEvent (0x7fc3899b6380) + QEvent (0x7fc3899b6460) 0 + primary-for QGraphicsSceneEvent (0x7fc3899b63f0) + +Vtable for QGraphicsSceneResizeEvent +QGraphicsSceneResizeEvent::_ZTV25QGraphicsSceneResizeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QGraphicsSceneResizeEvent) +16 QGraphicsSceneResizeEvent::~QGraphicsSceneResizeEvent +24 QGraphicsSceneResizeEvent::~QGraphicsSceneResizeEvent + +Class QGraphicsSceneResizeEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneResizeEvent (0x7fc3899b6d20) 0 + vptr=((& QGraphicsSceneResizeEvent::_ZTV25QGraphicsSceneResizeEvent) + 16u) + QGraphicsSceneEvent (0x7fc3899b6d90) 0 + primary-for QGraphicsSceneResizeEvent (0x7fc3899b6d20) + QEvent (0x7fc3899b6e00) 0 + primary-for QGraphicsSceneEvent (0x7fc3899b6d90) + +Vtable for QGraphicsSceneMoveEvent +QGraphicsSceneMoveEvent::_ZTV23QGraphicsSceneMoveEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QGraphicsSceneMoveEvent) +16 QGraphicsSceneMoveEvent::~QGraphicsSceneMoveEvent +24 QGraphicsSceneMoveEvent::~QGraphicsSceneMoveEvent + +Class QGraphicsSceneMoveEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneMoveEvent (0x7fc3899cb460) 0 + vptr=((& QGraphicsSceneMoveEvent::_ZTV23QGraphicsSceneMoveEvent) + 16u) + QGraphicsSceneEvent (0x7fc3899cb4d0) 0 + primary-for QGraphicsSceneMoveEvent (0x7fc3899cb460) + QEvent (0x7fc3899cb540) 0 + primary-for QGraphicsSceneEvent (0x7fc3899cb4d0) + +Vtable for QGraphicsTransform +QGraphicsTransform::_ZTV18QGraphicsTransform: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QGraphicsTransform) +16 QGraphicsTransform::metaObject +24 QGraphicsTransform::qt_metacast +32 QGraphicsTransform::qt_metacall +40 QGraphicsTransform::~QGraphicsTransform +48 QGraphicsTransform::~QGraphicsTransform +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual + +Class QGraphicsTransform + size=16 align=8 + base size=16 base align=8 +QGraphicsTransform (0x7fc3899cbc40) 0 + vptr=((& QGraphicsTransform::_ZTV18QGraphicsTransform) + 16u) + QObject (0x7fc3899cbcb0) 0 + primary-for QGraphicsTransform (0x7fc3899cbc40) + +Vtable for QGraphicsScale +QGraphicsScale::_ZTV14QGraphicsScale: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QGraphicsScale) +16 QGraphicsScale::metaObject +24 QGraphicsScale::qt_metacast +32 QGraphicsScale::qt_metacall +40 QGraphicsScale::~QGraphicsScale +48 QGraphicsScale::~QGraphicsScale +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsScale::applyTo + +Class QGraphicsScale + size=16 align=8 + base size=16 base align=8 +QGraphicsScale (0x7fc3899e9150) 0 + vptr=((& QGraphicsScale::_ZTV14QGraphicsScale) + 16u) + QGraphicsTransform (0x7fc3899e91c0) 0 + primary-for QGraphicsScale (0x7fc3899e9150) + QObject (0x7fc3899e9230) 0 + primary-for QGraphicsTransform (0x7fc3899e91c0) + +Vtable for QGraphicsRotation +QGraphicsRotation::_ZTV17QGraphicsRotation: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QGraphicsRotation) +16 QGraphicsRotation::metaObject +24 QGraphicsRotation::qt_metacast +32 QGraphicsRotation::qt_metacall +40 QGraphicsRotation::~QGraphicsRotation +48 QGraphicsRotation::~QGraphicsRotation +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsRotation::applyTo + +Class QGraphicsRotation + size=16 align=8 + base size=16 base align=8 +QGraphicsRotation (0x7fc3899fe620) 0 + vptr=((& QGraphicsRotation::_ZTV17QGraphicsRotation) + 16u) + QGraphicsTransform (0x7fc3899fe690) 0 + primary-for QGraphicsRotation (0x7fc3899fe620) + QObject (0x7fc3899fe700) 0 + primary-for QGraphicsTransform (0x7fc3899fe690) + +Vtable for QScrollArea +QScrollArea::_ZTV11QScrollArea: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QScrollArea) +16 QScrollArea::metaObject +24 QScrollArea::qt_metacast +32 QScrollArea::qt_metacall +40 QScrollArea::~QScrollArea +48 QScrollArea::~QScrollArea +56 QScrollArea::event +64 QScrollArea::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractScrollArea::mousePressEvent +168 QAbstractScrollArea::mouseReleaseEvent +176 QAbstractScrollArea::mouseDoubleClickEvent +184 QAbstractScrollArea::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractScrollArea::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractScrollArea::paintEvent +256 QWidget::moveEvent +264 QScrollArea::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractScrollArea::dragEnterEvent +312 QAbstractScrollArea::dragMoveEvent +320 QAbstractScrollArea::dragLeaveEvent +328 QAbstractScrollArea::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QScrollArea::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QScrollArea::scrollContentsBy +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI11QScrollArea) +480 QScrollArea::_ZThn16_N11QScrollAreaD1Ev +488 QScrollArea::_ZThn16_N11QScrollAreaD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QScrollArea + size=40 align=8 + base size=40 base align=8 +QScrollArea (0x7fc389a0faf0) 0 + vptr=((& QScrollArea::_ZTV11QScrollArea) + 16u) + QAbstractScrollArea (0x7fc389a0fb60) 0 + primary-for QScrollArea (0x7fc389a0faf0) + QFrame (0x7fc389a0fbd0) 0 + primary-for QAbstractScrollArea (0x7fc389a0fb60) + QWidget (0x7fc3899ffc80) 0 + primary-for QFrame (0x7fc389a0fbd0) + QObject (0x7fc389a0fc40) 0 + primary-for QWidget (0x7fc3899ffc80) + QPaintDevice (0x7fc389a0fcb0) 16 + vptr=((& QScrollArea::_ZTV11QScrollArea) + 480u) + +Vtable for QGraphicsView +QGraphicsView::_ZTV13QGraphicsView: 68u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QGraphicsView) +16 QGraphicsView::metaObject +24 QGraphicsView::qt_metacast +32 QGraphicsView::qt_metacall +40 QGraphicsView::~QGraphicsView +48 QGraphicsView::~QGraphicsView +56 QGraphicsView::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QGraphicsView::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QGraphicsView::mousePressEvent +168 QGraphicsView::mouseReleaseEvent +176 QGraphicsView::mouseDoubleClickEvent +184 QGraphicsView::mouseMoveEvent +192 QGraphicsView::wheelEvent +200 QGraphicsView::keyPressEvent +208 QGraphicsView::keyReleaseEvent +216 QGraphicsView::focusInEvent +224 QGraphicsView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QGraphicsView::paintEvent +256 QWidget::moveEvent +264 QGraphicsView::resizeEvent +272 QWidget::closeEvent +280 QGraphicsView::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QGraphicsView::dragEnterEvent +312 QGraphicsView::dragMoveEvent +320 QGraphicsView::dragLeaveEvent +328 QGraphicsView::dropEvent +336 QGraphicsView::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QGraphicsView::inputMethodEvent +384 QGraphicsView::inputMethodQuery +392 QGraphicsView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QGraphicsView::viewportEvent +456 QGraphicsView::scrollContentsBy +464 QGraphicsView::drawBackground +472 QGraphicsView::drawForeground +480 QGraphicsView::drawItems +488 (int (*)(...))-0x00000000000000010 +496 (int (*)(...))(& _ZTI13QGraphicsView) +504 QGraphicsView::_ZThn16_N13QGraphicsViewD1Ev +512 QGraphicsView::_ZThn16_N13QGraphicsViewD0Ev +520 QWidget::_ZThn16_NK7QWidget7devTypeEv +528 QWidget::_ZThn16_NK7QWidget11paintEngineEv +536 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QGraphicsView + size=40 align=8 + base size=40 base align=8 +QGraphicsView (0x7fc389a31a10) 0 + vptr=((& QGraphicsView::_ZTV13QGraphicsView) + 16u) + QAbstractScrollArea (0x7fc389a31a80) 0 + primary-for QGraphicsView (0x7fc389a31a10) + QFrame (0x7fc389a31af0) 0 + primary-for QAbstractScrollArea (0x7fc389a31a80) + QWidget (0x7fc389a2c680) 0 + primary-for QFrame (0x7fc389a31af0) + QObject (0x7fc389a31b60) 0 + primary-for QWidget (0x7fc389a2c680) + QPaintDevice (0x7fc389a31bd0) 16 + vptr=((& QGraphicsView::_ZTV13QGraphicsView) + 504u) + +Vtable for QAbstractButton +QAbstractButton::_ZTV15QAbstractButton: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QAbstractButton) +16 QAbstractButton::metaObject +24 QAbstractButton::qt_metacast +32 QAbstractButton::qt_metacall +40 QAbstractButton::~QAbstractButton +48 QAbstractButton::~QAbstractButton +56 QAbstractButton::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QAbstractButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QAbstractButton::focusInEvent +224 QAbstractButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 __cxa_pure_virtual +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractButton::hitButton +456 QAbstractButton::checkStateSet +464 QAbstractButton::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI15QAbstractButton) +488 QAbstractButton::_ZThn16_N15QAbstractButtonD1Ev +496 QAbstractButton::_ZThn16_N15QAbstractButtonD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractButton + size=40 align=8 + base size=40 base align=8 +QAbstractButton (0x7fc389920ee0) 0 + vptr=((& QAbstractButton::_ZTV15QAbstractButton) + 16u) + QWidget (0x7fc38992a380) 0 + primary-for QAbstractButton (0x7fc389920ee0) + QObject (0x7fc389920f50) 0 + primary-for QWidget (0x7fc38992a380) + QPaintDevice (0x7fc38992f000) 16 + vptr=((& QAbstractButton::_ZTV15QAbstractButton) + 488u) + +Vtable for QButtonGroup +QButtonGroup::_ZTV12QButtonGroup: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QButtonGroup) +16 QButtonGroup::metaObject +24 QButtonGroup::qt_metacast +32 QButtonGroup::qt_metacall +40 QButtonGroup::~QButtonGroup +48 QButtonGroup::~QButtonGroup +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QButtonGroup + size=16 align=8 + base size=16 base align=8 +QButtonGroup (0x7fc389960310) 0 + vptr=((& QButtonGroup::_ZTV12QButtonGroup) + 16u) + QObject (0x7fc389960380) 0 + primary-for QButtonGroup (0x7fc389960310) + +Vtable for QCalendarWidget +QCalendarWidget::_ZTV15QCalendarWidget: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QCalendarWidget) +16 QCalendarWidget::metaObject +24 QCalendarWidget::qt_metacast +32 QCalendarWidget::qt_metacall +40 QCalendarWidget::~QCalendarWidget +48 QCalendarWidget::~QCalendarWidget +56 QCalendarWidget::event +64 QCalendarWidget::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QCalendarWidget::sizeHint +136 QCalendarWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QCalendarWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QCalendarWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QCalendarWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QCalendarWidget::paintCell +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI15QCalendarWidget) +472 QCalendarWidget::_ZThn16_N15QCalendarWidgetD1Ev +480 QCalendarWidget::_ZThn16_N15QCalendarWidgetD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QCalendarWidget + size=40 align=8 + base size=40 base align=8 +QCalendarWidget (0x7fc389979f50) 0 + vptr=((& QCalendarWidget::_ZTV15QCalendarWidget) + 16u) + QWidget (0x7fc389976900) 0 + primary-for QCalendarWidget (0x7fc389979f50) + QObject (0x7fc389980000) 0 + primary-for QWidget (0x7fc389976900) + QPaintDevice (0x7fc389980070) 16 + vptr=((& QCalendarWidget::_ZTV15QCalendarWidget) + 472u) + +Vtable for QCheckBox +QCheckBox::_ZTV9QCheckBox: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QCheckBox) +16 QCheckBox::metaObject +24 QCheckBox::qt_metacast +32 QCheckBox::qt_metacall +40 QCheckBox::~QCheckBox +48 QCheckBox::~QCheckBox +56 QCheckBox::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QCheckBox::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QCheckBox::mouseMoveEvent +192 QWidget::wheelEvent +200 QAbstractButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QAbstractButton::focusInEvent +224 QAbstractButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QCheckBox::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QCheckBox::hitButton +456 QCheckBox::checkStateSet +464 QCheckBox::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI9QCheckBox) +488 QCheckBox::_ZThn16_N9QCheckBoxD1Ev +496 QCheckBox::_ZThn16_N9QCheckBoxD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QCheckBox + size=40 align=8 + base size=40 base align=8 +QCheckBox (0x7fc3897aa0e0) 0 + vptr=((& QCheckBox::_ZTV9QCheckBox) + 16u) + QAbstractButton (0x7fc3897aa150) 0 + primary-for QCheckBox (0x7fc3897aa0e0) + QWidget (0x7fc38999e900) 0 + primary-for QAbstractButton (0x7fc3897aa150) + QObject (0x7fc3897aa1c0) 0 + primary-for QWidget (0x7fc38999e900) + QPaintDevice (0x7fc3897aa230) 16 + vptr=((& QCheckBox::_ZTV9QCheckBox) + 488u) + +Vtable for QComboBox +QComboBox::_ZTV9QComboBox: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QComboBox) +16 QComboBox::metaObject +24 QComboBox::qt_metacast +32 QComboBox::qt_metacall +40 QComboBox::~QComboBox +48 QComboBox::~QComboBox +56 QComboBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QComboBox::sizeHint +136 QComboBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QComboBox::mousePressEvent +168 QComboBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QComboBox::wheelEvent +200 QComboBox::keyPressEvent +208 QComboBox::keyReleaseEvent +216 QComboBox::focusInEvent +224 QComboBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QComboBox::paintEvent +256 QWidget::moveEvent +264 QComboBox::resizeEvent +272 QWidget::closeEvent +280 QComboBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QComboBox::showEvent +344 QComboBox::hideEvent +352 QWidget::x11Event +360 QComboBox::changeEvent +368 QWidget::metric +376 QComboBox::inputMethodEvent +384 QComboBox::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QComboBox::showPopup +456 QComboBox::hidePopup +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI9QComboBox) +480 QComboBox::_ZThn16_N9QComboBoxD1Ev +488 QComboBox::_ZThn16_N9QComboBoxD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QComboBox + size=40 align=8 + base size=40 base align=8 +QComboBox (0x7fc3897cc8c0) 0 + vptr=((& QComboBox::_ZTV9QComboBox) + 16u) + QWidget (0x7fc3897c6900) 0 + primary-for QComboBox (0x7fc3897cc8c0) + QObject (0x7fc3897cc930) 0 + primary-for QWidget (0x7fc3897c6900) + QPaintDevice (0x7fc3897cc9a0) 16 + vptr=((& QComboBox::_ZTV9QComboBox) + 480u) + +Vtable for QPushButton +QPushButton::_ZTV11QPushButton: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QPushButton) +16 QPushButton::metaObject +24 QPushButton::qt_metacast +32 QPushButton::qt_metacall +40 QPushButton::~QPushButton +48 QPushButton::~QPushButton +56 QPushButton::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QPushButton::sizeHint +136 QPushButton::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QPushButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QPushButton::focusInEvent +224 QPushButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QPushButton::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractButton::hitButton +456 QAbstractButton::checkStateSet +464 QAbstractButton::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11QPushButton) +488 QPushButton::_ZThn16_N11QPushButtonD1Ev +496 QPushButton::_ZThn16_N11QPushButtonD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPushButton + size=40 align=8 + base size=40 base align=8 +QPushButton (0x7fc38983b3f0) 0 + vptr=((& QPushButton::_ZTV11QPushButton) + 16u) + QAbstractButton (0x7fc38983b460) 0 + primary-for QPushButton (0x7fc38983b3f0) + QWidget (0x7fc389837600) 0 + primary-for QAbstractButton (0x7fc38983b460) + QObject (0x7fc38983b4d0) 0 + primary-for QWidget (0x7fc389837600) + QPaintDevice (0x7fc38983b540) 16 + vptr=((& QPushButton::_ZTV11QPushButton) + 488u) + +Vtable for QCommandLinkButton +QCommandLinkButton::_ZTV18QCommandLinkButton: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QCommandLinkButton) +16 QCommandLinkButton::metaObject +24 QCommandLinkButton::qt_metacast +32 QCommandLinkButton::qt_metacall +40 QCommandLinkButton::~QCommandLinkButton +48 QCommandLinkButton::~QCommandLinkButton +56 QCommandLinkButton::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QCommandLinkButton::sizeHint +136 QCommandLinkButton::minimumSizeHint +144 QCommandLinkButton::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QPushButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QPushButton::focusInEvent +224 QPushButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QCommandLinkButton::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractButton::hitButton +456 QAbstractButton::checkStateSet +464 QAbstractButton::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI18QCommandLinkButton) +488 QCommandLinkButton::_ZThn16_N18QCommandLinkButtonD1Ev +496 QCommandLinkButton::_ZThn16_N18QCommandLinkButtonD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QCommandLinkButton + size=40 align=8 + base size=40 base align=8 +QCommandLinkButton (0x7fc38985fd20) 0 + vptr=((& QCommandLinkButton::_ZTV18QCommandLinkButton) + 16u) + QPushButton (0x7fc38985fd90) 0 + primary-for QCommandLinkButton (0x7fc38985fd20) + QAbstractButton (0x7fc38985fe00) 0 + primary-for QPushButton (0x7fc38985fd90) + QWidget (0x7fc389861600) 0 + primary-for QAbstractButton (0x7fc38985fe00) + QObject (0x7fc38985fe70) 0 + primary-for QWidget (0x7fc389861600) + QPaintDevice (0x7fc38985fee0) 16 + vptr=((& QCommandLinkButton::_ZTV18QCommandLinkButton) + 488u) + +Vtable for QDateTimeEdit +QDateTimeEdit::_ZTV13QDateTimeEdit: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QDateTimeEdit) +16 QDateTimeEdit::metaObject +24 QDateTimeEdit::qt_metacast +32 QDateTimeEdit::qt_metacall +40 QDateTimeEdit::~QDateTimeEdit +48 QDateTimeEdit::~QDateTimeEdit +56 QDateTimeEdit::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QDateTimeEdit::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QDateTimeEdit::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QDateTimeEdit::wheelEvent +200 QDateTimeEdit::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QDateTimeEdit::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QDateTimeEdit::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QAbstractSpinBox::inputMethodQuery +392 QDateTimeEdit::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDateTimeEdit::validate +456 QDateTimeEdit::fixup +464 QDateTimeEdit::stepBy +472 QDateTimeEdit::clear +480 QDateTimeEdit::stepEnabled +488 QDateTimeEdit::dateTimeFromText +496 QDateTimeEdit::textFromDateTime +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI13QDateTimeEdit) +520 QDateTimeEdit::_ZThn16_N13QDateTimeEditD1Ev +528 QDateTimeEdit::_ZThn16_N13QDateTimeEditD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDateTimeEdit + size=40 align=8 + base size=40 base align=8 +QDateTimeEdit (0x7fc38987b8c0) 0 + vptr=((& QDateTimeEdit::_ZTV13QDateTimeEdit) + 16u) + QAbstractSpinBox (0x7fc38987b930) 0 + primary-for QDateTimeEdit (0x7fc38987b8c0) + QWidget (0x7fc389881000) 0 + primary-for QAbstractSpinBox (0x7fc38987b930) + QObject (0x7fc38987b9a0) 0 + primary-for QWidget (0x7fc389881000) + QPaintDevice (0x7fc38987ba10) 16 + vptr=((& QDateTimeEdit::_ZTV13QDateTimeEdit) + 520u) + +Vtable for QTimeEdit +QTimeEdit::_ZTV9QTimeEdit: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTimeEdit) +16 QTimeEdit::metaObject +24 QTimeEdit::qt_metacast +32 QTimeEdit::qt_metacall +40 QTimeEdit::~QTimeEdit +48 QTimeEdit::~QTimeEdit +56 QDateTimeEdit::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QDateTimeEdit::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QDateTimeEdit::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QDateTimeEdit::wheelEvent +200 QDateTimeEdit::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QDateTimeEdit::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QDateTimeEdit::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QAbstractSpinBox::inputMethodQuery +392 QDateTimeEdit::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDateTimeEdit::validate +456 QDateTimeEdit::fixup +464 QDateTimeEdit::stepBy +472 QDateTimeEdit::clear +480 QDateTimeEdit::stepEnabled +488 QDateTimeEdit::dateTimeFromText +496 QDateTimeEdit::textFromDateTime +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI9QTimeEdit) +520 QTimeEdit::_ZThn16_N9QTimeEditD1Ev +528 QTimeEdit::_ZThn16_N9QTimeEditD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTimeEdit + size=40 align=8 + base size=40 base align=8 +QTimeEdit (0x7fc3896ad7e0) 0 + vptr=((& QTimeEdit::_ZTV9QTimeEdit) + 16u) + QDateTimeEdit (0x7fc3896ad850) 0 + primary-for QTimeEdit (0x7fc3896ad7e0) + QAbstractSpinBox (0x7fc3896ad8c0) 0 + primary-for QDateTimeEdit (0x7fc3896ad850) + QWidget (0x7fc389881f80) 0 + primary-for QAbstractSpinBox (0x7fc3896ad8c0) + QObject (0x7fc3896ad930) 0 + primary-for QWidget (0x7fc389881f80) + QPaintDevice (0x7fc3896ad9a0) 16 + vptr=((& QTimeEdit::_ZTV9QTimeEdit) + 520u) + +Vtable for QDateEdit +QDateEdit::_ZTV9QDateEdit: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QDateEdit) +16 QDateEdit::metaObject +24 QDateEdit::qt_metacast +32 QDateEdit::qt_metacall +40 QDateEdit::~QDateEdit +48 QDateEdit::~QDateEdit +56 QDateTimeEdit::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QDateTimeEdit::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QDateTimeEdit::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QDateTimeEdit::wheelEvent +200 QDateTimeEdit::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QDateTimeEdit::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QDateTimeEdit::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QAbstractSpinBox::inputMethodQuery +392 QDateTimeEdit::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDateTimeEdit::validate +456 QDateTimeEdit::fixup +464 QDateTimeEdit::stepBy +472 QDateTimeEdit::clear +480 QDateTimeEdit::stepEnabled +488 QDateTimeEdit::dateTimeFromText +496 QDateTimeEdit::textFromDateTime +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI9QDateEdit) +520 QDateEdit::_ZThn16_N9QDateEditD1Ev +528 QDateEdit::_ZThn16_N9QDateEditD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDateEdit + size=40 align=8 + base size=40 base align=8 +QDateEdit (0x7fc3896c28c0) 0 + vptr=((& QDateEdit::_ZTV9QDateEdit) + 16u) + QDateTimeEdit (0x7fc3896c2930) 0 + primary-for QDateEdit (0x7fc3896c28c0) + QAbstractSpinBox (0x7fc3896c29a0) 0 + primary-for QDateTimeEdit (0x7fc3896c2930) + QWidget (0x7fc3896b3680) 0 + primary-for QAbstractSpinBox (0x7fc3896c29a0) + QObject (0x7fc3896c2a10) 0 + primary-for QWidget (0x7fc3896b3680) + QPaintDevice (0x7fc3896c2a80) 16 + vptr=((& QDateEdit::_ZTV9QDateEdit) + 520u) + +Vtable for QDial +QDial::_ZTV5QDial: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QDial) +16 QDial::metaObject +24 QDial::qt_metacast +32 QDial::qt_metacall +40 QDial::~QDial +48 QDial::~QDial +56 QDial::event +64 QObject::eventFilter +72 QAbstractSlider::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QDial::sizeHint +136 QDial::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QDial::mousePressEvent +168 QDial::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QDial::mouseMoveEvent +192 QAbstractSlider::wheelEvent +200 QAbstractSlider::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QDial::paintEvent +256 QWidget::moveEvent +264 QDial::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractSlider::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDial::sliderChange +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI5QDial) +472 QDial::_ZThn16_N5QDialD1Ev +480 QDial::_ZThn16_N5QDialD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDial + size=40 align=8 + base size=40 base align=8 +QDial (0x7fc389708690) 0 + vptr=((& QDial::_ZTV5QDial) + 16u) + QAbstractSlider (0x7fc389708700) 0 + primary-for QDial (0x7fc389708690) + QWidget (0x7fc389709300) 0 + primary-for QAbstractSlider (0x7fc389708700) + QObject (0x7fc389708770) 0 + primary-for QWidget (0x7fc389709300) + QPaintDevice (0x7fc3897087e0) 16 + vptr=((& QDial::_ZTV5QDial) + 472u) + +Vtable for QDialogButtonBox +QDialogButtonBox::_ZTV16QDialogButtonBox: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QDialogButtonBox) +16 QDialogButtonBox::metaObject +24 QDialogButtonBox::qt_metacast +32 QDialogButtonBox::qt_metacall +40 QDialogButtonBox::~QDialogButtonBox +48 QDialogButtonBox::~QDialogButtonBox +56 QDialogButtonBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QDialogButtonBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI16QDialogButtonBox) +464 QDialogButtonBox::_ZThn16_N16QDialogButtonBoxD1Ev +472 QDialogButtonBox::_ZThn16_N16QDialogButtonBoxD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDialogButtonBox + size=40 align=8 + base size=40 base align=8 +QDialogButtonBox (0x7fc389747310) 0 + vptr=((& QDialogButtonBox::_ZTV16QDialogButtonBox) + 16u) + QWidget (0x7fc389709d00) 0 + primary-for QDialogButtonBox (0x7fc389747310) + QObject (0x7fc389747380) 0 + primary-for QWidget (0x7fc389709d00) + QPaintDevice (0x7fc3897473f0) 16 + vptr=((& QDialogButtonBox::_ZTV16QDialogButtonBox) + 464u) + +Vtable for QDockWidget +QDockWidget::_ZTV11QDockWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QDockWidget) +16 QDockWidget::metaObject +24 QDockWidget::qt_metacast +32 QDockWidget::qt_metacall +40 QDockWidget::~QDockWidget +48 QDockWidget::~QDockWidget +56 QDockWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QDockWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QDockWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QDockWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI11QDockWidget) +464 QDockWidget::_ZThn16_N11QDockWidgetD1Ev +472 QDockWidget::_ZThn16_N11QDockWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDockWidget + size=40 align=8 + base size=40 base align=8 +QDockWidget (0x7fc38959c7e0) 0 + vptr=((& QDockWidget::_ZTV11QDockWidget) + 16u) + QWidget (0x7fc389754e80) 0 + primary-for QDockWidget (0x7fc38959c7e0) + QObject (0x7fc38959c850) 0 + primary-for QWidget (0x7fc389754e80) + QPaintDevice (0x7fc38959c8c0) 16 + vptr=((& QDockWidget::_ZTV11QDockWidget) + 464u) + +Vtable for QFocusFrame +QFocusFrame::_ZTV11QFocusFrame: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFocusFrame) +16 QFocusFrame::metaObject +24 QFocusFrame::qt_metacast +32 QFocusFrame::qt_metacall +40 QFocusFrame::~QFocusFrame +48 QFocusFrame::~QFocusFrame +56 QFocusFrame::event +64 QFocusFrame::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFocusFrame::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI11QFocusFrame) +464 QFocusFrame::_ZThn16_N11QFocusFrameD1Ev +472 QFocusFrame::_ZThn16_N11QFocusFrameD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFocusFrame + size=40 align=8 + base size=40 base align=8 +QFocusFrame (0x7fc38963e230) 0 + vptr=((& QFocusFrame::_ZTV11QFocusFrame) + 16u) + QWidget (0x7fc3895f1680) 0 + primary-for QFocusFrame (0x7fc38963e230) + QObject (0x7fc38963e2a0) 0 + primary-for QWidget (0x7fc3895f1680) + QPaintDevice (0x7fc38963e310) 16 + vptr=((& QFocusFrame::_ZTV11QFocusFrame) + 464u) + +Vtable for QFontComboBox +QFontComboBox::_ZTV13QFontComboBox: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QFontComboBox) +16 QFontComboBox::metaObject +24 QFontComboBox::qt_metacast +32 QFontComboBox::qt_metacall +40 QFontComboBox::~QFontComboBox +48 QFontComboBox::~QFontComboBox +56 QFontComboBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QFontComboBox::sizeHint +136 QComboBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QComboBox::mousePressEvent +168 QComboBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QComboBox::wheelEvent +200 QComboBox::keyPressEvent +208 QComboBox::keyReleaseEvent +216 QComboBox::focusInEvent +224 QComboBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QComboBox::paintEvent +256 QWidget::moveEvent +264 QComboBox::resizeEvent +272 QWidget::closeEvent +280 QComboBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QComboBox::showEvent +344 QComboBox::hideEvent +352 QWidget::x11Event +360 QComboBox::changeEvent +368 QWidget::metric +376 QComboBox::inputMethodEvent +384 QComboBox::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QComboBox::showPopup +456 QComboBox::hidePopup +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI13QFontComboBox) +480 QFontComboBox::_ZThn16_N13QFontComboBoxD1Ev +488 QFontComboBox::_ZThn16_N13QFontComboBoxD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFontComboBox + size=40 align=8 + base size=40 base align=8 +QFontComboBox (0x7fc389651d90) 0 + vptr=((& QFontComboBox::_ZTV13QFontComboBox) + 16u) + QComboBox (0x7fc389651e00) 0 + primary-for QFontComboBox (0x7fc389651d90) + QWidget (0x7fc389659080) 0 + primary-for QComboBox (0x7fc389651e00) + QObject (0x7fc389651e70) 0 + primary-for QWidget (0x7fc389659080) + QPaintDevice (0x7fc389651ee0) 16 + vptr=((& QFontComboBox::_ZTV13QFontComboBox) + 480u) + +Vtable for QGroupBox +QGroupBox::_ZTV9QGroupBox: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QGroupBox) +16 QGroupBox::metaObject +24 QGroupBox::qt_metacast +32 QGroupBox::qt_metacall +40 QGroupBox::~QGroupBox +48 QGroupBox::~QGroupBox +56 QGroupBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QGroupBox::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QGroupBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QGroupBox::mousePressEvent +168 QGroupBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QGroupBox::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QGroupBox::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QGroupBox::paintEvent +256 QWidget::moveEvent +264 QGroupBox::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QGroupBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI9QGroupBox) +464 QGroupBox::_ZThn16_N9QGroupBoxD1Ev +472 QGroupBox::_ZThn16_N9QGroupBoxD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QGroupBox + size=40 align=8 + base size=40 base align=8 +QGroupBox (0x7fc3894a1a80) 0 + vptr=((& QGroupBox::_ZTV9QGroupBox) + 16u) + QWidget (0x7fc3894a3280) 0 + primary-for QGroupBox (0x7fc3894a1a80) + QObject (0x7fc3894a1af0) 0 + primary-for QWidget (0x7fc3894a3280) + QPaintDevice (0x7fc3894a1b60) 16 + vptr=((& QGroupBox::_ZTV9QGroupBox) + 464u) + +Vtable for QLabel +QLabel::_ZTV6QLabel: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QLabel) +16 QLabel::metaObject +24 QLabel::qt_metacast +32 QLabel::qt_metacall +40 QLabel::~QLabel +48 QLabel::~QLabel +56 QLabel::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QLabel::sizeHint +136 QLabel::minimumSizeHint +144 QLabel::heightForWidth +152 QWidget::paintEngine +160 QLabel::mousePressEvent +168 QLabel::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QLabel::mouseMoveEvent +192 QWidget::wheelEvent +200 QLabel::keyPressEvent +208 QWidget::keyReleaseEvent +216 QLabel::focusInEvent +224 QLabel::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QLabel::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QLabel::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QLabel::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QLabel::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI6QLabel) +464 QLabel::_ZThn16_N6QLabelD1Ev +472 QLabel::_ZThn16_N6QLabelD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QLabel + size=40 align=8 + base size=40 base align=8 +QLabel (0x7fc3894e1700) 0 + vptr=((& QLabel::_ZTV6QLabel) + 16u) + QFrame (0x7fc3894e1770) 0 + primary-for QLabel (0x7fc3894e1700) + QWidget (0x7fc3894a3c80) 0 + primary-for QFrame (0x7fc3894e1770) + QObject (0x7fc3894e17e0) 0 + primary-for QWidget (0x7fc3894a3c80) + QPaintDevice (0x7fc3894e1850) 16 + vptr=((& QLabel::_ZTV6QLabel) + 464u) + +Vtable for QLCDNumber +QLCDNumber::_ZTV10QLCDNumber: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QLCDNumber) +16 QLCDNumber::metaObject +24 QLCDNumber::qt_metacast +32 QLCDNumber::qt_metacall +40 QLCDNumber::~QLCDNumber +48 QLCDNumber::~QLCDNumber +56 QLCDNumber::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QLCDNumber::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QLCDNumber::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI10QLCDNumber) +464 QLCDNumber::_ZThn16_N10QLCDNumberD1Ev +472 QLCDNumber::_ZThn16_N10QLCDNumberD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QLCDNumber + size=40 align=8 + base size=40 base align=8 +QLCDNumber (0x7fc38950f850) 0 + vptr=((& QLCDNumber::_ZTV10QLCDNumber) + 16u) + QFrame (0x7fc38950f8c0) 0 + primary-for QLCDNumber (0x7fc38950f850) + QWidget (0x7fc389509880) 0 + primary-for QFrame (0x7fc38950f8c0) + QObject (0x7fc38950f930) 0 + primary-for QWidget (0x7fc389509880) + QPaintDevice (0x7fc38950f9a0) 16 + vptr=((& QLCDNumber::_ZTV10QLCDNumber) + 464u) + +Vtable for QMainWindow +QMainWindow::_ZTV11QMainWindow: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMainWindow) +16 QMainWindow::metaObject +24 QMainWindow::qt_metacast +32 QMainWindow::qt_metacall +40 QMainWindow::~QMainWindow +48 QMainWindow::~QMainWindow +56 QMainWindow::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QMainWindow::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QMainWindow::createPopupMenu +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI11QMainWindow) +472 QMainWindow::_ZThn16_N11QMainWindowD1Ev +480 QMainWindow::_ZThn16_N11QMainWindowD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMainWindow + size=40 align=8 + base size=40 base align=8 +QMainWindow (0x7fc389539230) 0 + vptr=((& QMainWindow::_ZTV11QMainWindow) + 16u) + QWidget (0x7fc38952fa00) 0 + primary-for QMainWindow (0x7fc389539230) + QObject (0x7fc3895392a0) 0 + primary-for QWidget (0x7fc38952fa00) + QPaintDevice (0x7fc389539310) 16 + vptr=((& QMainWindow::_ZTV11QMainWindow) + 472u) + +Vtable for QMdiArea +QMdiArea::_ZTV8QMdiArea: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QMdiArea) +16 QMdiArea::metaObject +24 QMdiArea::qt_metacast +32 QMdiArea::qt_metacall +40 QMdiArea::~QMdiArea +48 QMdiArea::~QMdiArea +56 QMdiArea::event +64 QMdiArea::eventFilter +72 QMdiArea::timerEvent +80 QMdiArea::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QMdiArea::sizeHint +136 QMdiArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractScrollArea::mousePressEvent +168 QAbstractScrollArea::mouseReleaseEvent +176 QAbstractScrollArea::mouseDoubleClickEvent +184 QAbstractScrollArea::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractScrollArea::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QMdiArea::paintEvent +256 QWidget::moveEvent +264 QMdiArea::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractScrollArea::dragEnterEvent +312 QAbstractScrollArea::dragMoveEvent +320 QAbstractScrollArea::dragLeaveEvent +328 QAbstractScrollArea::dropEvent +336 QMdiArea::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QMdiArea::viewportEvent +456 QMdiArea::scrollContentsBy +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI8QMdiArea) +480 QMdiArea::_ZThn16_N8QMdiAreaD1Ev +488 QMdiArea::_ZThn16_N8QMdiAreaD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMdiArea + size=40 align=8 + base size=40 base align=8 +QMdiArea (0x7fc3893b7540) 0 + vptr=((& QMdiArea::_ZTV8QMdiArea) + 16u) + QAbstractScrollArea (0x7fc3893b75b0) 0 + primary-for QMdiArea (0x7fc3893b7540) + QFrame (0x7fc3893b7620) 0 + primary-for QAbstractScrollArea (0x7fc3893b75b0) + QWidget (0x7fc389562c00) 0 + primary-for QFrame (0x7fc3893b7620) + QObject (0x7fc3893b7690) 0 + primary-for QWidget (0x7fc389562c00) + QPaintDevice (0x7fc3893b7700) 16 + vptr=((& QMdiArea::_ZTV8QMdiArea) + 480u) + +Vtable for QMdiSubWindow +QMdiSubWindow::_ZTV13QMdiSubWindow: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QMdiSubWindow) +16 QMdiSubWindow::metaObject +24 QMdiSubWindow::qt_metacast +32 QMdiSubWindow::qt_metacall +40 QMdiSubWindow::~QMdiSubWindow +48 QMdiSubWindow::~QMdiSubWindow +56 QMdiSubWindow::event +64 QMdiSubWindow::eventFilter +72 QMdiSubWindow::timerEvent +80 QMdiSubWindow::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QMdiSubWindow::sizeHint +136 QMdiSubWindow::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QMdiSubWindow::mousePressEvent +168 QMdiSubWindow::mouseReleaseEvent +176 QMdiSubWindow::mouseDoubleClickEvent +184 QMdiSubWindow::mouseMoveEvent +192 QWidget::wheelEvent +200 QMdiSubWindow::keyPressEvent +208 QWidget::keyReleaseEvent +216 QMdiSubWindow::focusInEvent +224 QMdiSubWindow::focusOutEvent +232 QWidget::enterEvent +240 QMdiSubWindow::leaveEvent +248 QMdiSubWindow::paintEvent +256 QMdiSubWindow::moveEvent +264 QMdiSubWindow::resizeEvent +272 QMdiSubWindow::closeEvent +280 QMdiSubWindow::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QMdiSubWindow::showEvent +344 QMdiSubWindow::hideEvent +352 QWidget::x11Event +360 QMdiSubWindow::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI13QMdiSubWindow) +464 QMdiSubWindow::_ZThn16_N13QMdiSubWindowD1Ev +472 QMdiSubWindow::_ZThn16_N13QMdiSubWindowD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMdiSubWindow + size=40 align=8 + base size=40 base align=8 +QMdiSubWindow (0x7fc389411a80) 0 + vptr=((& QMdiSubWindow::_ZTV13QMdiSubWindow) + 16u) + QWidget (0x7fc3893c3f00) 0 + primary-for QMdiSubWindow (0x7fc389411a80) + QObject (0x7fc389411af0) 0 + primary-for QWidget (0x7fc3893c3f00) + QPaintDevice (0x7fc389411b60) 16 + vptr=((& QMdiSubWindow::_ZTV13QMdiSubWindow) + 464u) + +Vtable for QMenu +QMenu::_ZTV5QMenu: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QMenu) +16 QMenu::metaObject +24 QMenu::qt_metacast +32 QMenu::qt_metacall +40 QMenu::~QMenu +48 QMenu::~QMenu +56 QMenu::event +64 QObject::eventFilter +72 QMenu::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QMenu::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QMenu::mousePressEvent +168 QMenu::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QMenu::mouseMoveEvent +192 QMenu::wheelEvent +200 QMenu::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QMenu::enterEvent +240 QMenu::leaveEvent +248 QMenu::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QMenu::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QMenu::hideEvent +352 QWidget::x11Event +360 QMenu::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QMenu::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI5QMenu) +464 QMenu::_ZThn16_N5QMenuD1Ev +472 QMenu::_ZThn16_N5QMenuD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMenu + size=40 align=8 + base size=40 base align=8 +QMenu (0x7fc38948a930) 0 + vptr=((& QMenu::_ZTV5QMenu) + 16u) + QWidget (0x7fc3892ad100) 0 + primary-for QMenu (0x7fc38948a930) + QObject (0x7fc38948a9a0) 0 + primary-for QWidget (0x7fc3892ad100) + QPaintDevice (0x7fc38948aa10) 16 + vptr=((& QMenu::_ZTV5QMenu) + 464u) + +Vtable for QMenuBar +QMenuBar::_ZTV8QMenuBar: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QMenuBar) +16 QMenuBar::metaObject +24 QMenuBar::qt_metacast +32 QMenuBar::qt_metacall +40 QMenuBar::~QMenuBar +48 QMenuBar::~QMenuBar +56 QMenuBar::event +64 QMenuBar::eventFilter +72 QMenuBar::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QMenuBar::setVisible +128 QMenuBar::sizeHint +136 QMenuBar::minimumSizeHint +144 QMenuBar::heightForWidth +152 QWidget::paintEngine +160 QMenuBar::mousePressEvent +168 QMenuBar::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QMenuBar::mouseMoveEvent +192 QWidget::wheelEvent +200 QMenuBar::keyPressEvent +208 QWidget::keyReleaseEvent +216 QMenuBar::focusInEvent +224 QMenuBar::focusOutEvent +232 QWidget::enterEvent +240 QMenuBar::leaveEvent +248 QMenuBar::paintEvent +256 QWidget::moveEvent +264 QMenuBar::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QMenuBar::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QMenuBar::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI8QMenuBar) +464 QMenuBar::_ZThn16_N8QMenuBarD1Ev +472 QMenuBar::_ZThn16_N8QMenuBarD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMenuBar + size=40 align=8 + base size=40 base align=8 +QMenuBar (0x7fc389352770) 0 + vptr=((& QMenuBar::_ZTV8QMenuBar) + 16u) + QWidget (0x7fc389350980) 0 + primary-for QMenuBar (0x7fc389352770) + QObject (0x7fc3893527e0) 0 + primary-for QWidget (0x7fc389350980) + QPaintDevice (0x7fc389352850) 16 + vptr=((& QMenuBar::_ZTV8QMenuBar) + 464u) + +Vtable for QMenuItem +QMenuItem::_ZTV9QMenuItem: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QMenuItem) +16 QMenuItem::metaObject +24 QMenuItem::qt_metacast +32 QMenuItem::qt_metacall +40 QMenuItem::~QMenuItem +48 QMenuItem::~QMenuItem +56 QAction::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QMenuItem + size=16 align=8 + base size=16 base align=8 +QMenuItem (0x7fc3891f34d0) 0 + vptr=((& QMenuItem::_ZTV9QMenuItem) + 16u) + QAction (0x7fc3891f3540) 0 + primary-for QMenuItem (0x7fc3891f34d0) + QObject (0x7fc3891f35b0) 0 + primary-for QAction (0x7fc3891f3540) + +Class QTextEdit::ExtraSelection + size=24 align=8 + base size=24 base align=8 +QTextEdit::ExtraSelection (0x7fc389214700) 0 + +Vtable for QTextEdit +QTextEdit::_ZTV9QTextEdit: 69u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTextEdit) +16 QTextEdit::metaObject +24 QTextEdit::qt_metacast +32 QTextEdit::qt_metacall +40 QTextEdit::~QTextEdit +48 QTextEdit::~QTextEdit +56 QTextEdit::event +64 QObject::eventFilter +72 QTextEdit::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTextEdit::mousePressEvent +168 QTextEdit::mouseReleaseEvent +176 QTextEdit::mouseDoubleClickEvent +184 QTextEdit::mouseMoveEvent +192 QTextEdit::wheelEvent +200 QTextEdit::keyPressEvent +208 QTextEdit::keyReleaseEvent +216 QTextEdit::focusInEvent +224 QTextEdit::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTextEdit::paintEvent +256 QWidget::moveEvent +264 QTextEdit::resizeEvent +272 QWidget::closeEvent +280 QTextEdit::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QTextEdit::dragEnterEvent +312 QTextEdit::dragMoveEvent +320 QTextEdit::dragLeaveEvent +328 QTextEdit::dropEvent +336 QTextEdit::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QTextEdit::changeEvent +368 QWidget::metric +376 QTextEdit::inputMethodEvent +384 QTextEdit::inputMethodQuery +392 QTextEdit::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QTextEdit::scrollContentsBy +464 QTextEdit::loadResource +472 QTextEdit::createMimeDataFromSelection +480 QTextEdit::canInsertFromMimeData +488 QTextEdit::insertFromMimeData +496 (int (*)(...))-0x00000000000000010 +504 (int (*)(...))(& _ZTI9QTextEdit) +512 QTextEdit::_ZThn16_N9QTextEditD1Ev +520 QTextEdit::_ZThn16_N9QTextEditD0Ev +528 QWidget::_ZThn16_NK7QWidget7devTypeEv +536 QWidget::_ZThn16_NK7QWidget11paintEngineEv +544 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTextEdit + size=40 align=8 + base size=40 base align=8 +QTextEdit (0x7fc389204770) 0 + vptr=((& QTextEdit::_ZTV9QTextEdit) + 16u) + QAbstractScrollArea (0x7fc3892047e0) 0 + primary-for QTextEdit (0x7fc389204770) + QFrame (0x7fc389204850) 0 + primary-for QAbstractScrollArea (0x7fc3892047e0) + QWidget (0x7fc3891f0b00) 0 + primary-for QFrame (0x7fc389204850) + QObject (0x7fc3892048c0) 0 + primary-for QWidget (0x7fc3891f0b00) + QPaintDevice (0x7fc389204930) 16 + vptr=((& QTextEdit::_ZTV9QTextEdit) + 512u) + +Vtable for QPlainTextEdit +QPlainTextEdit::_ZTV14QPlainTextEdit: 69u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QPlainTextEdit) +16 QPlainTextEdit::metaObject +24 QPlainTextEdit::qt_metacast +32 QPlainTextEdit::qt_metacall +40 QPlainTextEdit::~QPlainTextEdit +48 QPlainTextEdit::~QPlainTextEdit +56 QPlainTextEdit::event +64 QObject::eventFilter +72 QPlainTextEdit::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QPlainTextEdit::mousePressEvent +168 QPlainTextEdit::mouseReleaseEvent +176 QPlainTextEdit::mouseDoubleClickEvent +184 QPlainTextEdit::mouseMoveEvent +192 QPlainTextEdit::wheelEvent +200 QPlainTextEdit::keyPressEvent +208 QPlainTextEdit::keyReleaseEvent +216 QPlainTextEdit::focusInEvent +224 QPlainTextEdit::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QPlainTextEdit::paintEvent +256 QWidget::moveEvent +264 QPlainTextEdit::resizeEvent +272 QWidget::closeEvent +280 QPlainTextEdit::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QPlainTextEdit::dragEnterEvent +312 QPlainTextEdit::dragMoveEvent +320 QPlainTextEdit::dragLeaveEvent +328 QPlainTextEdit::dropEvent +336 QPlainTextEdit::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QPlainTextEdit::changeEvent +368 QWidget::metric +376 QPlainTextEdit::inputMethodEvent +384 QPlainTextEdit::inputMethodQuery +392 QPlainTextEdit::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QPlainTextEdit::scrollContentsBy +464 QPlainTextEdit::loadResource +472 QPlainTextEdit::createMimeDataFromSelection +480 QPlainTextEdit::canInsertFromMimeData +488 QPlainTextEdit::insertFromMimeData +496 (int (*)(...))-0x00000000000000010 +504 (int (*)(...))(& _ZTI14QPlainTextEdit) +512 QPlainTextEdit::_ZThn16_N14QPlainTextEditD1Ev +520 QPlainTextEdit::_ZThn16_N14QPlainTextEditD0Ev +528 QWidget::_ZThn16_NK7QWidget7devTypeEv +536 QWidget::_ZThn16_NK7QWidget11paintEngineEv +544 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPlainTextEdit + size=40 align=8 + base size=40 base align=8 +QPlainTextEdit (0x7fc3890aa8c0) 0 + vptr=((& QPlainTextEdit::_ZTV14QPlainTextEdit) + 16u) + QAbstractScrollArea (0x7fc3890aa930) 0 + primary-for QPlainTextEdit (0x7fc3890aa8c0) + QFrame (0x7fc3890aa9a0) 0 + primary-for QAbstractScrollArea (0x7fc3890aa930) + QWidget (0x7fc3890a9400) 0 + primary-for QFrame (0x7fc3890aa9a0) + QObject (0x7fc3890aaa10) 0 + primary-for QWidget (0x7fc3890a9400) + QPaintDevice (0x7fc3890aaa80) 16 + vptr=((& QPlainTextEdit::_ZTV14QPlainTextEdit) + 512u) + +Vtable for QPlainTextDocumentLayout +QPlainTextDocumentLayout::_ZTV24QPlainTextDocumentLayout: 24u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QPlainTextDocumentLayout) +16 QPlainTextDocumentLayout::metaObject +24 QPlainTextDocumentLayout::qt_metacast +32 QPlainTextDocumentLayout::qt_metacall +40 QPlainTextDocumentLayout::~QPlainTextDocumentLayout +48 QPlainTextDocumentLayout::~QPlainTextDocumentLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QPlainTextDocumentLayout::draw +120 QPlainTextDocumentLayout::hitTest +128 QPlainTextDocumentLayout::pageCount +136 QPlainTextDocumentLayout::documentSize +144 QPlainTextDocumentLayout::frameBoundingRect +152 QPlainTextDocumentLayout::blockBoundingRect +160 QPlainTextDocumentLayout::documentChanged +168 QAbstractTextDocumentLayout::resizeInlineObject +176 QAbstractTextDocumentLayout::positionInlineObject +184 QAbstractTextDocumentLayout::drawInlineObject + +Class QPlainTextDocumentLayout + size=16 align=8 + base size=16 base align=8 +QPlainTextDocumentLayout (0x7fc38910d690) 0 + vptr=((& QPlainTextDocumentLayout::_ZTV24QPlainTextDocumentLayout) + 16u) + QAbstractTextDocumentLayout (0x7fc38910d700) 0 + primary-for QPlainTextDocumentLayout (0x7fc38910d690) + QObject (0x7fc38910d770) 0 + primary-for QAbstractTextDocumentLayout (0x7fc38910d700) + +Vtable for QPrintPreviewWidget +QPrintPreviewWidget::_ZTV19QPrintPreviewWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QPrintPreviewWidget) +16 QPrintPreviewWidget::metaObject +24 QPrintPreviewWidget::qt_metacast +32 QPrintPreviewWidget::qt_metacall +40 QPrintPreviewWidget::~QPrintPreviewWidget +48 QPrintPreviewWidget::~QPrintPreviewWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QPrintPreviewWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI19QPrintPreviewWidget) +464 QPrintPreviewWidget::_ZThn16_N19QPrintPreviewWidgetD1Ev +472 QPrintPreviewWidget::_ZThn16_N19QPrintPreviewWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPrintPreviewWidget + size=48 align=8 + base size=48 base align=8 +QPrintPreviewWidget (0x7fc389124b60) 0 + vptr=((& QPrintPreviewWidget::_ZTV19QPrintPreviewWidget) + 16u) + QWidget (0x7fc38911f600) 0 + primary-for QPrintPreviewWidget (0x7fc389124b60) + QObject (0x7fc389124bd0) 0 + primary-for QWidget (0x7fc38911f600) + QPaintDevice (0x7fc389124c40) 16 + vptr=((& QPrintPreviewWidget::_ZTV19QPrintPreviewWidget) + 464u) + +Vtable for QProgressBar +QProgressBar::_ZTV12QProgressBar: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QProgressBar) +16 QProgressBar::metaObject +24 QProgressBar::qt_metacast +32 QProgressBar::qt_metacall +40 QProgressBar::~QProgressBar +48 QProgressBar::~QProgressBar +56 QProgressBar::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QProgressBar::sizeHint +136 QProgressBar::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QProgressBar::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QProgressBar::text +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI12QProgressBar) +472 QProgressBar::_ZThn16_N12QProgressBarD1Ev +480 QProgressBar::_ZThn16_N12QProgressBarD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QProgressBar + size=40 align=8 + base size=40 base align=8 +QProgressBar (0x7fc389147700) 0 + vptr=((& QProgressBar::_ZTV12QProgressBar) + 16u) + QWidget (0x7fc389149300) 0 + primary-for QProgressBar (0x7fc389147700) + QObject (0x7fc389147770) 0 + primary-for QWidget (0x7fc389149300) + QPaintDevice (0x7fc3891477e0) 16 + vptr=((& QProgressBar::_ZTV12QProgressBar) + 472u) + +Vtable for QRadioButton +QRadioButton::_ZTV12QRadioButton: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QRadioButton) +16 QRadioButton::metaObject +24 QRadioButton::qt_metacast +32 QRadioButton::qt_metacall +40 QRadioButton::~QRadioButton +48 QRadioButton::~QRadioButton +56 QRadioButton::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QRadioButton::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QRadioButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QAbstractButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QAbstractButton::focusInEvent +224 QAbstractButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QRadioButton::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QRadioButton::hitButton +456 QAbstractButton::checkStateSet +464 QAbstractButton::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI12QRadioButton) +488 QRadioButton::_ZThn16_N12QRadioButtonD1Ev +496 QRadioButton::_ZThn16_N12QRadioButtonD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QRadioButton + size=40 align=8 + base size=40 base align=8 +QRadioButton (0x7fc38916b540) 0 + vptr=((& QRadioButton::_ZTV12QRadioButton) + 16u) + QAbstractButton (0x7fc38916b5b0) 0 + primary-for QRadioButton (0x7fc38916b540) + QWidget (0x7fc389149e00) 0 + primary-for QAbstractButton (0x7fc38916b5b0) + QObject (0x7fc38916b620) 0 + primary-for QWidget (0x7fc389149e00) + QPaintDevice (0x7fc38916b690) 16 + vptr=((& QRadioButton::_ZTV12QRadioButton) + 488u) + +Vtable for QScrollBar +QScrollBar::_ZTV10QScrollBar: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QScrollBar) +16 QScrollBar::metaObject +24 QScrollBar::qt_metacast +32 QScrollBar::qt_metacall +40 QScrollBar::~QScrollBar +48 QScrollBar::~QScrollBar +56 QScrollBar::event +64 QObject::eventFilter +72 QAbstractSlider::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QScrollBar::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QScrollBar::mousePressEvent +168 QScrollBar::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QScrollBar::mouseMoveEvent +192 QAbstractSlider::wheelEvent +200 QAbstractSlider::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QScrollBar::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QScrollBar::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QScrollBar::hideEvent +352 QWidget::x11Event +360 QAbstractSlider::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QScrollBar::sliderChange +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI10QScrollBar) +472 QScrollBar::_ZThn16_N10QScrollBarD1Ev +480 QScrollBar::_ZThn16_N10QScrollBarD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QScrollBar + size=40 align=8 + base size=40 base align=8 +QScrollBar (0x7fc38918d1c0) 0 + vptr=((& QScrollBar::_ZTV10QScrollBar) + 16u) + QAbstractSlider (0x7fc38918d230) 0 + primary-for QScrollBar (0x7fc38918d1c0) + QWidget (0x7fc389182800) 0 + primary-for QAbstractSlider (0x7fc38918d230) + QObject (0x7fc38918d2a0) 0 + primary-for QWidget (0x7fc389182800) + QPaintDevice (0x7fc38918d310) 16 + vptr=((& QScrollBar::_ZTV10QScrollBar) + 472u) + +Vtable for QSizeGrip +QSizeGrip::_ZTV9QSizeGrip: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QSizeGrip) +16 QSizeGrip::metaObject +24 QSizeGrip::qt_metacast +32 QSizeGrip::qt_metacall +40 QSizeGrip::~QSizeGrip +48 QSizeGrip::~QSizeGrip +56 QSizeGrip::event +64 QSizeGrip::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QSizeGrip::setVisible +128 QSizeGrip::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QSizeGrip::mousePressEvent +168 QSizeGrip::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QSizeGrip::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QSizeGrip::paintEvent +256 QSizeGrip::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QSizeGrip::showEvent +344 QSizeGrip::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI9QSizeGrip) +464 QSizeGrip::_ZThn16_N9QSizeGripD1Ev +472 QSizeGrip::_ZThn16_N9QSizeGripD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSizeGrip + size=40 align=8 + base size=40 base align=8 +QSizeGrip (0x7fc388fab310) 0 + vptr=((& QSizeGrip::_ZTV9QSizeGrip) + 16u) + QWidget (0x7fc388fa9380) 0 + primary-for QSizeGrip (0x7fc388fab310) + QObject (0x7fc388fab380) 0 + primary-for QWidget (0x7fc388fa9380) + QPaintDevice (0x7fc388fab3f0) 16 + vptr=((& QSizeGrip::_ZTV9QSizeGrip) + 464u) + +Vtable for QSpinBox +QSpinBox::_ZTV8QSpinBox: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QSpinBox) +16 QSpinBox::metaObject +24 QSpinBox::qt_metacast +32 QSpinBox::qt_metacall +40 QSpinBox::~QSpinBox +48 QSpinBox::~QSpinBox +56 QSpinBox::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractSpinBox::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractSpinBox::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QAbstractSpinBox::wheelEvent +200 QAbstractSpinBox::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QAbstractSpinBox::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractSpinBox::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QAbstractSpinBox::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QSpinBox::validate +456 QSpinBox::fixup +464 QAbstractSpinBox::stepBy +472 QAbstractSpinBox::clear +480 QAbstractSpinBox::stepEnabled +488 QSpinBox::valueFromText +496 QSpinBox::textFromValue +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI8QSpinBox) +520 QSpinBox::_ZThn16_N8QSpinBoxD1Ev +528 QSpinBox::_ZThn16_N8QSpinBoxD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSpinBox + size=40 align=8 + base size=40 base align=8 +QSpinBox (0x7fc388fc1e00) 0 + vptr=((& QSpinBox::_ZTV8QSpinBox) + 16u) + QAbstractSpinBox (0x7fc388fc1e70) 0 + primary-for QSpinBox (0x7fc388fc1e00) + QWidget (0x7fc388fa9d80) 0 + primary-for QAbstractSpinBox (0x7fc388fc1e70) + QObject (0x7fc388fc1ee0) 0 + primary-for QWidget (0x7fc388fa9d80) + QPaintDevice (0x7fc388fc1f50) 16 + vptr=((& QSpinBox::_ZTV8QSpinBox) + 520u) + +Vtable for QDoubleSpinBox +QDoubleSpinBox::_ZTV14QDoubleSpinBox: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QDoubleSpinBox) +16 QDoubleSpinBox::metaObject +24 QDoubleSpinBox::qt_metacast +32 QDoubleSpinBox::qt_metacall +40 QDoubleSpinBox::~QDoubleSpinBox +48 QDoubleSpinBox::~QDoubleSpinBox +56 QAbstractSpinBox::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractSpinBox::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractSpinBox::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QAbstractSpinBox::wheelEvent +200 QAbstractSpinBox::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QAbstractSpinBox::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractSpinBox::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QAbstractSpinBox::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDoubleSpinBox::validate +456 QDoubleSpinBox::fixup +464 QAbstractSpinBox::stepBy +472 QAbstractSpinBox::clear +480 QAbstractSpinBox::stepEnabled +488 QDoubleSpinBox::valueFromText +496 QDoubleSpinBox::textFromValue +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI14QDoubleSpinBox) +520 QDoubleSpinBox::_ZThn16_N14QDoubleSpinBoxD1Ev +528 QDoubleSpinBox::_ZThn16_N14QDoubleSpinBoxD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDoubleSpinBox + size=40 align=8 + base size=40 base align=8 +QDoubleSpinBox (0x7fc388fed770) 0 + vptr=((& QDoubleSpinBox::_ZTV14QDoubleSpinBox) + 16u) + QAbstractSpinBox (0x7fc388fed7e0) 0 + primary-for QDoubleSpinBox (0x7fc388fed770) + QWidget (0x7fc388fe1f00) 0 + primary-for QAbstractSpinBox (0x7fc388fed7e0) + QObject (0x7fc388fed850) 0 + primary-for QWidget (0x7fc388fe1f00) + QPaintDevice (0x7fc388fed8c0) 16 + vptr=((& QDoubleSpinBox::_ZTV14QDoubleSpinBox) + 520u) + +Vtable for QSplashScreen +QSplashScreen::_ZTV13QSplashScreen: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSplashScreen) +16 QSplashScreen::metaObject +24 QSplashScreen::qt_metacast +32 QSplashScreen::qt_metacall +40 QSplashScreen::~QSplashScreen +48 QSplashScreen::~QSplashScreen +56 QSplashScreen::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QSplashScreen::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QSplashScreen::drawContents +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI13QSplashScreen) +472 QSplashScreen::_ZThn16_N13QSplashScreenD1Ev +480 QSplashScreen::_ZThn16_N13QSplashScreenD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSplashScreen + size=40 align=8 + base size=40 base align=8 +QSplashScreen (0x7fc38900c230) 0 + vptr=((& QSplashScreen::_ZTV13QSplashScreen) + 16u) + QWidget (0x7fc388ff0900) 0 + primary-for QSplashScreen (0x7fc38900c230) + QObject (0x7fc38900c2a0) 0 + primary-for QWidget (0x7fc388ff0900) + QPaintDevice (0x7fc38900c310) 16 + vptr=((& QSplashScreen::_ZTV13QSplashScreen) + 472u) + +Vtable for QSplitter +QSplitter::_ZTV9QSplitter: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QSplitter) +16 QSplitter::metaObject +24 QSplitter::qt_metacast +32 QSplitter::qt_metacall +40 QSplitter::~QSplitter +48 QSplitter::~QSplitter +56 QSplitter::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QSplitter::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QSplitter::sizeHint +136 QSplitter::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFrame::paintEvent +256 QWidget::moveEvent +264 QSplitter::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QSplitter::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QSplitter::createHandle +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI9QSplitter) +472 QSplitter::_ZThn16_N9QSplitterD1Ev +480 QSplitter::_ZThn16_N9QSplitterD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSplitter + size=40 align=8 + base size=40 base align=8 +QSplitter (0x7fc389030310) 0 + vptr=((& QSplitter::_ZTV9QSplitter) + 16u) + QFrame (0x7fc389030380) 0 + primary-for QSplitter (0x7fc389030310) + QWidget (0x7fc38902b580) 0 + primary-for QFrame (0x7fc389030380) + QObject (0x7fc3890303f0) 0 + primary-for QWidget (0x7fc38902b580) + QPaintDevice (0x7fc389030460) 16 + vptr=((& QSplitter::_ZTV9QSplitter) + 472u) + +Vtable for QSplitterHandle +QSplitterHandle::_ZTV15QSplitterHandle: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSplitterHandle) +16 QSplitterHandle::metaObject +24 QSplitterHandle::qt_metacast +32 QSplitterHandle::qt_metacall +40 QSplitterHandle::~QSplitterHandle +48 QSplitterHandle::~QSplitterHandle +56 QSplitterHandle::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QSplitterHandle::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QSplitterHandle::mousePressEvent +168 QSplitterHandle::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QSplitterHandle::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QSplitterHandle::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI15QSplitterHandle) +464 QSplitterHandle::_ZThn16_N15QSplitterHandleD1Ev +472 QSplitterHandle::_ZThn16_N15QSplitterHandleD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSplitterHandle + size=40 align=8 + base size=40 base align=8 +QSplitterHandle (0x7fc38905c230) 0 + vptr=((& QSplitterHandle::_ZTV15QSplitterHandle) + 16u) + QWidget (0x7fc389059780) 0 + primary-for QSplitterHandle (0x7fc38905c230) + QObject (0x7fc38905c2a0) 0 + primary-for QWidget (0x7fc389059780) + QPaintDevice (0x7fc38905c310) 16 + vptr=((& QSplitterHandle::_ZTV15QSplitterHandle) + 464u) + +Vtable for QStackedWidget +QStackedWidget::_ZTV14QStackedWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QStackedWidget) +16 QStackedWidget::metaObject +24 QStackedWidget::qt_metacast +32 QStackedWidget::qt_metacall +40 QStackedWidget::~QStackedWidget +48 QStackedWidget::~QStackedWidget +56 QStackedWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QFrame::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFrame::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI14QStackedWidget) +464 QStackedWidget::_ZThn16_N14QStackedWidgetD1Ev +472 QStackedWidget::_ZThn16_N14QStackedWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QStackedWidget + size=40 align=8 + base size=40 base align=8 +QStackedWidget (0x7fc389076a10) 0 + vptr=((& QStackedWidget::_ZTV14QStackedWidget) + 16u) + QFrame (0x7fc389076a80) 0 + primary-for QStackedWidget (0x7fc389076a10) + QWidget (0x7fc389079180) 0 + primary-for QFrame (0x7fc389076a80) + QObject (0x7fc389076af0) 0 + primary-for QWidget (0x7fc389079180) + QPaintDevice (0x7fc389076b60) 16 + vptr=((& QStackedWidget::_ZTV14QStackedWidget) + 464u) + +Vtable for QStatusBar +QStatusBar::_ZTV10QStatusBar: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QStatusBar) +16 QStatusBar::metaObject +24 QStatusBar::qt_metacast +32 QStatusBar::qt_metacall +40 QStatusBar::~QStatusBar +48 QStatusBar::~QStatusBar +56 QStatusBar::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QStatusBar::paintEvent +256 QWidget::moveEvent +264 QStatusBar::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QStatusBar::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI10QStatusBar) +464 QStatusBar::_ZThn16_N10QStatusBarD1Ev +472 QStatusBar::_ZThn16_N10QStatusBarD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QStatusBar + size=40 align=8 + base size=40 base align=8 +QStatusBar (0x7fc3890928c0) 0 + vptr=((& QStatusBar::_ZTV10QStatusBar) + 16u) + QWidget (0x7fc389079b80) 0 + primary-for QStatusBar (0x7fc3890928c0) + QObject (0x7fc389092930) 0 + primary-for QWidget (0x7fc389079b80) + QPaintDevice (0x7fc3890929a0) 16 + vptr=((& QStatusBar::_ZTV10QStatusBar) + 464u) + +Vtable for QTextBrowser +QTextBrowser::_ZTV12QTextBrowser: 74u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextBrowser) +16 QTextBrowser::metaObject +24 QTextBrowser::qt_metacast +32 QTextBrowser::qt_metacall +40 QTextBrowser::~QTextBrowser +48 QTextBrowser::~QTextBrowser +56 QTextBrowser::event +64 QObject::eventFilter +72 QTextEdit::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTextBrowser::mousePressEvent +168 QTextBrowser::mouseReleaseEvent +176 QTextEdit::mouseDoubleClickEvent +184 QTextBrowser::mouseMoveEvent +192 QTextEdit::wheelEvent +200 QTextBrowser::keyPressEvent +208 QTextEdit::keyReleaseEvent +216 QTextEdit::focusInEvent +224 QTextBrowser::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTextBrowser::paintEvent +256 QWidget::moveEvent +264 QTextEdit::resizeEvent +272 QWidget::closeEvent +280 QTextEdit::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QTextEdit::dragEnterEvent +312 QTextEdit::dragMoveEvent +320 QTextEdit::dragLeaveEvent +328 QTextEdit::dropEvent +336 QTextEdit::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QTextEdit::changeEvent +368 QWidget::metric +376 QTextEdit::inputMethodEvent +384 QTextEdit::inputMethodQuery +392 QTextBrowser::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QTextEdit::scrollContentsBy +464 QTextBrowser::loadResource +472 QTextEdit::createMimeDataFromSelection +480 QTextEdit::canInsertFromMimeData +488 QTextEdit::insertFromMimeData +496 QTextBrowser::setSource +504 QTextBrowser::backward +512 QTextBrowser::forward +520 QTextBrowser::home +528 QTextBrowser::reload +536 (int (*)(...))-0x00000000000000010 +544 (int (*)(...))(& _ZTI12QTextBrowser) +552 QTextBrowser::_ZThn16_N12QTextBrowserD1Ev +560 QTextBrowser::_ZThn16_N12QTextBrowserD0Ev +568 QWidget::_ZThn16_NK7QWidget7devTypeEv +576 QWidget::_ZThn16_NK7QWidget11paintEngineEv +584 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTextBrowser + size=40 align=8 + base size=40 base align=8 +QTextBrowser (0x7fc388eb4e00) 0 + vptr=((& QTextBrowser::_ZTV12QTextBrowser) + 16u) + QTextEdit (0x7fc388eb4e70) 0 + primary-for QTextBrowser (0x7fc388eb4e00) + QAbstractScrollArea (0x7fc388eb4ee0) 0 + primary-for QTextEdit (0x7fc388eb4e70) + QFrame (0x7fc388eb4f50) 0 + primary-for QAbstractScrollArea (0x7fc388eb4ee0) + QWidget (0x7fc388eafb80) 0 + primary-for QFrame (0x7fc388eb4f50) + QObject (0x7fc388eb9000) 0 + primary-for QWidget (0x7fc388eafb80) + QPaintDevice (0x7fc388eb9070) 16 + vptr=((& QTextBrowser::_ZTV12QTextBrowser) + 552u) + +Vtable for QToolBar +QToolBar::_ZTV8QToolBar: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QToolBar) +16 QToolBar::metaObject +24 QToolBar::qt_metacast +32 QToolBar::qt_metacall +40 QToolBar::~QToolBar +48 QToolBar::~QToolBar +56 QToolBar::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QToolBar::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QToolBar::paintEvent +256 QWidget::moveEvent +264 QToolBar::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QToolBar::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QToolBar::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI8QToolBar) +464 QToolBar::_ZThn16_N8QToolBarD1Ev +472 QToolBar::_ZThn16_N8QToolBarD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QToolBar + size=40 align=8 + base size=40 base align=8 +QToolBar (0x7fc388ed9a10) 0 + vptr=((& QToolBar::_ZTV8QToolBar) + 16u) + QWidget (0x7fc388ed6580) 0 + primary-for QToolBar (0x7fc388ed9a10) + QObject (0x7fc388ed9a80) 0 + primary-for QWidget (0x7fc388ed6580) + QPaintDevice (0x7fc388ed9af0) 16 + vptr=((& QToolBar::_ZTV8QToolBar) + 464u) + +Vtable for QToolBox +QToolBox::_ZTV8QToolBox: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QToolBox) +16 QToolBox::metaObject +24 QToolBox::qt_metacast +32 QToolBox::qt_metacall +40 QToolBox::~QToolBox +48 QToolBox::~QToolBox +56 QToolBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QFrame::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFrame::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QToolBox::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QToolBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QToolBox::itemInserted +456 QToolBox::itemRemoved +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI8QToolBox) +480 QToolBox::_ZThn16_N8QToolBoxD1Ev +488 QToolBox::_ZThn16_N8QToolBoxD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QToolBox + size=40 align=8 + base size=40 base align=8 +QToolBox (0x7fc388f14850) 0 + vptr=((& QToolBox::_ZTV8QToolBox) + 16u) + QFrame (0x7fc388f148c0) 0 + primary-for QToolBox (0x7fc388f14850) + QWidget (0x7fc388f12680) 0 + primary-for QFrame (0x7fc388f148c0) + QObject (0x7fc388f14930) 0 + primary-for QWidget (0x7fc388f12680) + QPaintDevice (0x7fc388f149a0) 16 + vptr=((& QToolBox::_ZTV8QToolBox) + 480u) + +Vtable for QToolButton +QToolButton::_ZTV11QToolButton: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QToolButton) +16 QToolButton::metaObject +24 QToolButton::qt_metacast +32 QToolButton::qt_metacall +40 QToolButton::~QToolButton +48 QToolButton::~QToolButton +56 QToolButton::event +64 QObject::eventFilter +72 QToolButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QToolButton::sizeHint +136 QToolButton::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QToolButton::mousePressEvent +168 QToolButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QAbstractButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QAbstractButton::focusInEvent +224 QAbstractButton::focusOutEvent +232 QToolButton::enterEvent +240 QToolButton::leaveEvent +248 QToolButton::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QToolButton::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QToolButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QToolButton::hitButton +456 QAbstractButton::checkStateSet +464 QToolButton::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11QToolButton) +488 QToolButton::_ZThn16_N11QToolButtonD1Ev +496 QToolButton::_ZThn16_N11QToolButtonD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QToolButton + size=40 align=8 + base size=40 base align=8 +QToolButton (0x7fc388f4d310) 0 + vptr=((& QToolButton::_ZTV11QToolButton) + 16u) + QAbstractButton (0x7fc388f4d380) 0 + primary-for QToolButton (0x7fc388f4d310) + QWidget (0x7fc388f4a400) 0 + primary-for QAbstractButton (0x7fc388f4d380) + QObject (0x7fc388f4d3f0) 0 + primary-for QWidget (0x7fc388f4a400) + QPaintDevice (0x7fc388f4d460) 16 + vptr=((& QToolButton::_ZTV11QToolButton) + 488u) + +Vtable for QWorkspace +QWorkspace::_ZTV10QWorkspace: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QWorkspace) +16 QWorkspace::metaObject +24 QWorkspace::qt_metacast +32 QWorkspace::qt_metacall +40 QWorkspace::~QWorkspace +48 QWorkspace::~QWorkspace +56 QWorkspace::event +64 QWorkspace::eventFilter +72 QObject::timerEvent +80 QWorkspace::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWorkspace::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWorkspace::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWorkspace::paintEvent +256 QWidget::moveEvent +264 QWorkspace::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWorkspace::showEvent +344 QWorkspace::hideEvent +352 QWidget::x11Event +360 QWorkspace::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI10QWorkspace) +464 QWorkspace::_ZThn16_N10QWorkspaceD1Ev +472 QWorkspace::_ZThn16_N10QWorkspaceD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWorkspace + size=40 align=8 + base size=40 base align=8 +QWorkspace (0x7fc388f93620) 0 + vptr=((& QWorkspace::_ZTV10QWorkspace) + 16u) + QWidget (0x7fc388f97100) 0 + primary-for QWorkspace (0x7fc388f93620) + QObject (0x7fc388f93690) 0 + primary-for QWidget (0x7fc388f97100) + QPaintDevice (0x7fc388f93700) 16 + vptr=((& QWorkspace::_ZTV10QWorkspace) + 464u) + diff --git a/tests/auto/bic/data/QtHelp.4.5.0.linux-gcc-amd64.txt b/tests/auto/bic/data/QtHelp.4.5.0.linux-gcc-amd64.txt new file mode 100644 index 0000000..2c50e2e --- /dev/null +++ b/tests/auto/bic/data/QtHelp.4.5.0.linux-gcc-amd64.txt @@ -0,0 +1,6357 @@ +Class QSysInfo + size=1 align=1 + base size=0 base align=1 +QSysInfo (0x7f0a726b2460) 0 empty + +Class QBool + size=1 align=1 + base size=1 base align=1 +QBool (0x7f0a726c8150) 0 + +Class qIsNull(double)::U + size=8 align=8 + base size=8 base align=8 +qIsNull(double)::U (0x7f0a726dd540) 0 + +Class qIsNull(float)::U + size=4 align=4 + base size=4 base align=4 +qIsNull(float)::U (0x7f0a726dd7e0) 0 + +Class QFlag + size=4 align=4 + base size=4 base align=4 +QFlag (0x7f0a71cf4620) 0 + +Class QIncompatibleFlag + size=4 align=4 + base size=4 base align=4 +QIncompatibleFlag (0x7f0a71cf4e00) 0 + +Class QInternal + size=1 align=1 + base size=0 base align=1 +QInternal (0x7f0a71af1540) 0 empty + +Class QGenericArgument + size=16 align=8 + base size=16 base align=8 +QGenericArgument (0x7f0a71af1850) 0 + +Class QGenericReturnArgument + size=16 align=8 + base size=16 base align=8 +QGenericReturnArgument (0x7f0a71b0d3f0) 0 + QGenericArgument (0x7f0a71b0d460) 0 + +Class QMetaObject + size=32 align=8 + base size=32 base align=8 +QMetaObject (0x7f0a71b0dcb0) 0 + +Class QMetaObjectExtraData + size=16 align=8 + base size=16 base align=8 +QMetaObjectExtraData (0x7f0a71b33cb0) 0 + +Class QLatin1Char + size=1 align=1 + base size=1 base align=1 +QLatin1Char (0x7f0a71b3e700) 0 + +Class QChar + size=2 align=2 + base size=2 base align=2 +QChar (0x7f0a71b442a0) 0 + +Class QBasicAtomicInt + size=4 align=4 + base size=4 base align=4 +QBasicAtomicInt (0x7f0a71bb0380) 0 + +Class QAtomicInt + size=4 align=4 + base size=4 base align=4 +QAtomicInt (0x7f0a719e6d20) 0 + QBasicAtomicInt (0x7f0a719e6d90) 0 + +Class __locale_struct + size=232 align=8 + base size=232 base align=8 +__locale_struct (0x7f0a71a0c1c0) 0 + +Class QByteArray::Data + size=32 align=8 + base size=32 base align=8 +QByteArray::Data (0x7f0a71a897e0) 0 + +Class QByteArray + size=8 align=8 + base size=8 base align=8 +QByteArray (0x7f0a71a44540) 0 + +Class QByteRef + size=16 align=8 + base size=12 base align=8 +QByteRef (0x7f0a718dea80) 0 + +Class QString::Null + size=1 align=1 + base size=0 base align=1 +QString::Null (0x7f0a717e7700) 0 empty + +Class QString::Data + size=32 align=8 + base size=32 base align=8 +QString::Data (0x7f0a717f6ee0) 0 + +Class QString + size=8 align=8 + base size=8 base align=8 +QString (0x7f0a719675b0) 0 + +Class QLatin1String + size=8 align=8 + base size=8 base align=8 +QLatin1String (0x7f0a718d1000) 0 + +Class QCharRef + size=16 align=8 + base size=12 base align=8 +QCharRef (0x7f0a71767620) 0 + +Class QConstString + size=8 align=8 + base size=8 base align=8 +QConstString (0x7f0a716b1ee0) 0 + QString (0x7f0a716b1f50) 0 + +Class QStringRef + size=16 align=8 + base size=16 base align=8 +QStringRef (0x7f0a716d3bd0) 0 + +Vtable for std::exception +std::exception::_ZTVSt9exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9exception) +16 std::exception::~exception +24 std::exception::~exception +32 std::exception::what + +Class std::exception + size=8 align=8 + base size=8 base align=8 +std::exception (0x7f0a7158c620) 0 nearly-empty + vptr=((& std::exception::_ZTVSt9exception) + 16u) + +Vtable for std::bad_exception +std::bad_exception::_ZTVSt13bad_exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13bad_exception) +16 std::bad_exception::~bad_exception +24 std::bad_exception::~bad_exception +32 std::bad_exception::what + +Class std::bad_exception + size=8 align=8 + base size=8 base align=8 +std::bad_exception (0x7f0a715af000) 0 nearly-empty + vptr=((& std::bad_exception::_ZTVSt13bad_exception) + 16u) + std::exception (0x7f0a715af070) 0 nearly-empty + primary-for std::bad_exception (0x7f0a715af000) + +Vtable for std::bad_alloc +std::bad_alloc::_ZTVSt9bad_alloc: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9bad_alloc) +16 std::bad_alloc::~bad_alloc +24 std::bad_alloc::~bad_alloc +32 std::bad_alloc::what + +Class std::bad_alloc + size=8 align=8 + base size=8 base align=8 +std::bad_alloc (0x7f0a715af8c0) 0 nearly-empty + vptr=((& std::bad_alloc::_ZTVSt9bad_alloc) + 16u) + std::exception (0x7f0a715af930) 0 nearly-empty + primary-for std::bad_alloc (0x7f0a715af8c0) + +Class std::nothrow_t + size=1 align=1 + base size=0 base align=1 +std::nothrow_t (0x7f0a715c00e0) 0 empty + +Class QListData::Data + size=32 align=8 + base size=32 base align=8 +QListData::Data (0x7f0a715c0620) 0 + +Class QListData + size=8 align=8 + base size=8 base align=8 +QListData (0x7f0a715c05b0) 0 + +Vtable for QObjectData +QObjectData::_ZTV11QObjectData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QObjectData) +16 __cxa_pure_virtual +24 __cxa_pure_virtual + +Class QObjectData + size=40 align=8 + base size=40 base align=8 +QObjectData (0x7f0a714c2bd0) 0 + vptr=((& QObjectData::_ZTV11QObjectData) + 16u) + +Vtable for QObject +QObject::_ZTV7QObject: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QObject) +16 QObject::metaObject +24 QObject::qt_metacast +32 QObject::qt_metacall +40 QObject::~QObject +48 QObject::~QObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObject + size=16 align=8 + base size=16 base align=8 +QObject (0x7f0a714c2ee0) 0 + vptr=((& QObject::_ZTV7QObject) + 16u) + +Vtable for QObjectUserData +QObjectUserData::_ZTV15QObjectUserData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QObjectUserData) +16 QObjectUserData::~QObjectUserData +24 QObjectUserData::~QObjectUserData + +Class QObjectUserData + size=8 align=8 + base size=8 base align=8 +QObjectUserData (0x7f0a713563f0) 0 nearly-empty + vptr=((& QObjectUserData::_ZTV15QObjectUserData) + 16u) + +Vtable for QIODevice +QIODevice::_ZTV9QIODevice: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QIODevice) +16 QIODevice::metaObject +24 QIODevice::qt_metacast +32 QIODevice::qt_metacall +40 QIODevice::~QIODevice +48 QIODevice::~QIODevice +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QIODevice::isSequential +120 QIODevice::open +128 QIODevice::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QIODevice::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 __cxa_pure_virtual +224 QIODevice::readLineData +232 __cxa_pure_virtual + +Class QIODevice + size=16 align=8 + base size=16 base align=8 +QIODevice (0x7f0a71356930) 0 + vptr=((& QIODevice::_ZTV9QIODevice) + 16u) + QObject (0x7f0a713569a0) 0 + primary-for QIODevice (0x7f0a71356930) + +Vtable for QDataStream +QDataStream::_ZTV11QDataStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QDataStream) +16 QDataStream::~QDataStream +24 QDataStream::~QDataStream + +Class QDataStream + size=40 align=8 + base size=40 base align=8 +QDataStream (0x7f0a713cc2a0) 0 + vptr=((& QDataStream::_ZTV11QDataStream) + 16u) + +Class QHashData::Node + size=16 align=8 + base size=16 base align=8 +QHashData::Node (0x7f0a71251150) 0 + +Class QHashData + size=40 align=8 + base size=40 base align=8 +QHashData (0x7f0a712510e0) 0 + +Class QHashDummyValue + size=1 align=1 + base size=0 base align=1 +QHashDummyValue (0x7f0a71260ee0) 0 empty + +Class QMapData::Node + size=16 align=8 + base size=16 base align=8 +QMapData::Node (0x7f0a71173690) 0 + +Class QMapData + size=128 align=8 + base size=128 base align=8 +QMapData (0x7f0a71173620) 0 + +Vtable for QSystemLocale +QSystemLocale::_ZTV13QSystemLocale: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSystemLocale) +16 QSystemLocale::~QSystemLocale +24 QSystemLocale::~QSystemLocale +32 QSystemLocale::query +40 QSystemLocale::fallbackLocale + +Class QSystemLocale + size=8 align=8 + base size=8 base align=8 +QSystemLocale (0x7f0a71089e00) 0 nearly-empty + vptr=((& QSystemLocale::_ZTV13QSystemLocale) + 16u) + +Class QLocale::Data + size=4 align=2 + base size=4 base align=2 +QLocale::Data (0x7f0a70ee63f0) 0 + +Class QLocale + size=8 align=8 + base size=8 base align=8 +QLocale (0x7f0a710a90e0) 0 + +Class QTextCodec::ConverterState + size=32 align=8 + base size=32 base align=8 +QTextCodec::ConverterState (0x7f0a70f34e70) 0 + +Vtable for QTextCodec +QTextCodec::_ZTV10QTextCodec: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextCodec) +16 __cxa_pure_virtual +24 QTextCodec::aliases +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QTextCodec::~QTextCodec +64 QTextCodec::~QTextCodec + +Class QTextCodec + size=8 align=8 + base size=8 base align=8 +QTextCodec (0x7f0a70f1ea80) 0 nearly-empty + vptr=((& QTextCodec::_ZTV10QTextCodec) + 16u) + +Class QTextEncoder + size=40 align=8 + base size=40 base align=8 +QTextEncoder (0x7f0a70fa13f0) 0 + +Class QTextDecoder + size=40 align=8 + base size=40 base align=8 +QTextDecoder (0x7f0a70fa8230) 0 + +Class _IO_marker + size=24 align=8 + base size=24 base align=8 +_IO_marker (0x7f0a70fb22a0) 0 + +Class _IO_FILE + size=216 align=8 + base size=216 base align=8 +_IO_FILE (0x7f0a70fb2310) 0 + +Vtable for QTextStream +QTextStream::_ZTV11QTextStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTextStream) +16 QTextStream::~QTextStream +24 QTextStream::~QTextStream + +Class QTextStream + size=16 align=8 + base size=16 base align=8 +QTextStream (0x7f0a70fb23f0) 0 + vptr=((& QTextStream::_ZTV11QTextStream) + 16u) + +Class QTextStreamManipulator + size=40 align=8 + base size=38 base align=8 +QTextStreamManipulator (0x7f0a70e4aee0) 0 + +Vtable for QTextIStream +QTextIStream::_ZTV12QTextIStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextIStream) +16 QTextIStream::~QTextIStream +24 QTextIStream::~QTextIStream + +Class QTextIStream + size=16 align=8 + base size=16 base align=8 +QTextIStream (0x7f0a70e771c0) 0 + vptr=((& QTextIStream::_ZTV12QTextIStream) + 16u) + QTextStream (0x7f0a70e77230) 0 + primary-for QTextIStream (0x7f0a70e771c0) + +Vtable for QTextOStream +QTextOStream::_ZTV12QTextOStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextOStream) +16 QTextOStream::~QTextOStream +24 QTextOStream::~QTextOStream + +Class QTextOStream + size=16 align=8 + base size=16 base align=8 +QTextOStream (0x7f0a70e8a070) 0 + vptr=((& QTextOStream::_ZTV12QTextOStream) + 16u) + QTextStream (0x7f0a70e8a0e0) 0 + primary-for QTextOStream (0x7f0a70e8a070) + +Class wait + size=4 align=4 + base size=4 base align=4 +wait (0x7f0a70e98ee0) 0 + +Class timespec + size=16 align=8 + base size=16 base align=8 +timespec (0x7f0a70ea4230) 0 + +Class timeval + size=16 align=8 + base size=16 base align=8 +timeval (0x7f0a70ea42a0) 0 + +Class __pthread_internal_list + size=16 align=8 + base size=16 base align=8 +__pthread_internal_list (0x7f0a70ea43f0) 0 + +Class random_data + size=48 align=8 + base size=48 base align=8 +random_data (0x7f0a70ea49a0) 0 + +Class drand48_data + size=24 align=8 + base size=24 base align=8 +drand48_data (0x7f0a70ea4a10) 0 + +Class QVectorData + size=16 align=4 + base size=16 base align=4 +QVectorData (0x7f0a70ea4a80) 0 + +Class QDebug::Stream + size=40 align=8 + base size=34 base align=8 +QDebug::Stream (0x7f0a70c1f230) 0 + +Class QDebug + size=8 align=8 + base size=8 base align=8 +QDebug (0x7f0a70c1f1c0) 0 + +Class QNoDebug + size=1 align=1 + base size=0 base align=1 +QNoDebug (0x7f0a70cbe070) 0 empty + +Vtable for QFile +QFile::_ZTV5QFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QFile) +16 QFile::metaObject +24 QFile::qt_metacast +32 QFile::qt_metacall +40 QFile::~QFile +48 QFile::~QFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QFile::fileEngine + +Class QFile + size=16 align=8 + base size=16 base align=8 +QFile (0x7f0a70ccf620) 0 + vptr=((& QFile::_ZTV5QFile) + 16u) + QIODevice (0x7f0a70ccf690) 0 + primary-for QFile (0x7f0a70ccf620) + QObject (0x7f0a70ccf700) 0 + primary-for QIODevice (0x7f0a70ccf690) + +Vtable for QTemporaryFile +QTemporaryFile::_ZTV14QTemporaryFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QTemporaryFile) +16 QTemporaryFile::metaObject +24 QTemporaryFile::qt_metacast +32 QTemporaryFile::qt_metacall +40 QTemporaryFile::~QTemporaryFile +48 QTemporaryFile::~QTemporaryFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QTemporaryFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QTemporaryFile::fileEngine + +Class QTemporaryFile + size=16 align=8 + base size=16 base align=8 +QTemporaryFile (0x7f0a70b39850) 0 + vptr=((& QTemporaryFile::_ZTV14QTemporaryFile) + 16u) + QFile (0x7f0a70b398c0) 0 + primary-for QTemporaryFile (0x7f0a70b39850) + QIODevice (0x7f0a70b39930) 0 + primary-for QFile (0x7f0a70b398c0) + QObject (0x7f0a70b399a0) 0 + primary-for QIODevice (0x7f0a70b39930) + +Class QFileInfo + size=8 align=8 + base size=8 base align=8 +QFileInfo (0x7f0a70b5af50) 0 + +Class QRegExp + size=8 align=8 + base size=8 base align=8 +QRegExp (0x7f0a70bb8770) 0 + +Class QStringMatcher + size=1048 align=8 + base size=1048 base align=8 +QStringMatcher (0x7f0a70a045b0) 0 + +Class QStringList + size=8 align=8 + base size=8 base align=8 +QStringList (0x7f0a70a16070) 0 + QList (0x7f0a70a160e0) 0 + +Class QDir + size=8 align=8 + base size=8 base align=8 +QDir (0x7f0a70aa5cb0) 0 + +Class QAbstractFileEngine::ExtensionOption + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionOption (0x7f0a7093fe70) 0 empty + +Class QAbstractFileEngine::ExtensionReturn + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionReturn (0x7f0a7093fee0) 0 empty + +Class QAbstractFileEngine::MapExtensionOption + size=24 align=8 + base size=20 base align=8 +QAbstractFileEngine::MapExtensionOption (0x7f0a7093ff50) 0 + QAbstractFileEngine::ExtensionOption (0x7f0a70954000) 0 empty + +Class QAbstractFileEngine::MapExtensionReturn + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::MapExtensionReturn (0x7f0a709541c0) 0 + QAbstractFileEngine::ExtensionReturn (0x7f0a70954230) 0 empty + +Class QAbstractFileEngine::UnMapExtensionOption + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::UnMapExtensionOption (0x7f0a709542a0) 0 + QAbstractFileEngine::ExtensionOption (0x7f0a70954310) 0 empty + +Vtable for QAbstractFileEngine +QAbstractFileEngine::_ZTV19QAbstractFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractFileEngine) +16 QAbstractFileEngine::~QAbstractFileEngine +24 QAbstractFileEngine::~QAbstractFileEngine +32 QAbstractFileEngine::open +40 QAbstractFileEngine::close +48 QAbstractFileEngine::flush +56 QAbstractFileEngine::size +64 QAbstractFileEngine::pos +72 QAbstractFileEngine::seek +80 QAbstractFileEngine::isSequential +88 QAbstractFileEngine::remove +96 QAbstractFileEngine::copy +104 QAbstractFileEngine::rename +112 QAbstractFileEngine::link +120 QAbstractFileEngine::mkdir +128 QAbstractFileEngine::rmdir +136 QAbstractFileEngine::setSize +144 QAbstractFileEngine::caseSensitive +152 QAbstractFileEngine::isRelativePath +160 QAbstractFileEngine::entryList +168 QAbstractFileEngine::fileFlags +176 QAbstractFileEngine::setPermissions +184 QAbstractFileEngine::fileName +192 QAbstractFileEngine::ownerId +200 QAbstractFileEngine::owner +208 QAbstractFileEngine::fileTime +216 QAbstractFileEngine::setFileName +224 QAbstractFileEngine::handle +232 QAbstractFileEngine::beginEntryList +240 QAbstractFileEngine::endEntryList +248 QAbstractFileEngine::read +256 QAbstractFileEngine::readLine +264 QAbstractFileEngine::write +272 QAbstractFileEngine::extension +280 QAbstractFileEngine::supportsExtension + +Class QAbstractFileEngine + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngine (0x7f0a7092fe00) 0 + vptr=((& QAbstractFileEngine::_ZTV19QAbstractFileEngine) + 16u) + +Vtable for QAbstractFileEngineHandler +QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QAbstractFileEngineHandler) +16 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +24 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +32 __cxa_pure_virtual + +Class QAbstractFileEngineHandler + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngineHandler (0x7f0a70983000) 0 nearly-empty + vptr=((& QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler) + 16u) + +Vtable for QAbstractFileEngineIterator +QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QAbstractFileEngineIterator) +16 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +24 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QAbstractFileEngineIterator::currentFileInfo +64 QAbstractFileEngineIterator::entryInfo + +Class QAbstractFileEngineIterator + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngineIterator (0x7f0a709831c0) 0 + vptr=((& QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator) + 16u) + +Vtable for QFSFileEngine +QFSFileEngine::_ZTV13QFSFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QFSFileEngine) +16 QFSFileEngine::~QFSFileEngine +24 QFSFileEngine::~QFSFileEngine +32 QFSFileEngine::open +40 QFSFileEngine::close +48 QFSFileEngine::flush +56 QFSFileEngine::size +64 QFSFileEngine::pos +72 QFSFileEngine::seek +80 QFSFileEngine::isSequential +88 QFSFileEngine::remove +96 QFSFileEngine::copy +104 QFSFileEngine::rename +112 QFSFileEngine::link +120 QFSFileEngine::mkdir +128 QFSFileEngine::rmdir +136 QFSFileEngine::setSize +144 QFSFileEngine::caseSensitive +152 QFSFileEngine::isRelativePath +160 QFSFileEngine::entryList +168 QFSFileEngine::fileFlags +176 QFSFileEngine::setPermissions +184 QFSFileEngine::fileName +192 QFSFileEngine::ownerId +200 QFSFileEngine::owner +208 QFSFileEngine::fileTime +216 QFSFileEngine::setFileName +224 QFSFileEngine::handle +232 QFSFileEngine::beginEntryList +240 QFSFileEngine::endEntryList +248 QFSFileEngine::read +256 QFSFileEngine::readLine +264 QFSFileEngine::write +272 QFSFileEngine::extension +280 QFSFileEngine::supportsExtension + +Class QFSFileEngine + size=16 align=8 + base size=16 base align=8 +QFSFileEngine (0x7f0a70983a10) 0 + vptr=((& QFSFileEngine::_ZTV13QFSFileEngine) + 16u) + QAbstractFileEngine (0x7f0a70983a80) 0 + primary-for QFSFileEngine (0x7f0a70983a10) + +Vtable for QProcess +QProcess::_ZTV8QProcess: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QProcess) +16 QProcess::metaObject +24 QProcess::qt_metacast +32 QProcess::qt_metacall +40 QProcess::~QProcess +48 QProcess::~QProcess +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QProcess::isSequential +120 QIODevice::open +128 QProcess::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QProcess::atEnd +168 QIODevice::reset +176 QProcess::bytesAvailable +184 QProcess::bytesToWrite +192 QProcess::canReadLine +200 QProcess::waitForReadyRead +208 QProcess::waitForBytesWritten +216 QProcess::readData +224 QIODevice::readLineData +232 QProcess::writeData +240 QProcess::setupChildProcess + +Class QProcess + size=16 align=8 + base size=16 base align=8 +QProcess (0x7f0a7099ad20) 0 + vptr=((& QProcess::_ZTV8QProcess) + 16u) + QIODevice (0x7f0a7099ad90) 0 + primary-for QProcess (0x7f0a7099ad20) + QObject (0x7f0a7099ae00) 0 + primary-for QIODevice (0x7f0a7099ad90) + +Class QResource + size=8 align=8 + base size=8 base align=8 +QResource (0x7f0a707b7230) 0 + +Vtable for QDirIterator +QDirIterator::_ZTV12QDirIterator: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QDirIterator) +16 QDirIterator::~QDirIterator +24 QDirIterator::~QDirIterator + +Class QDirIterator + size=16 align=8 + base size=16 base align=8 +QDirIterator (0x7f0a707b7cb0) 0 + vptr=((& QDirIterator::_ZTV12QDirIterator) + 16u) + +Vtable for QBuffer +QBuffer::_ZTV7QBuffer: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QBuffer) +16 QBuffer::metaObject +24 QBuffer::qt_metacast +32 QBuffer::qt_metacall +40 QBuffer::~QBuffer +48 QBuffer::~QBuffer +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QBuffer::connectNotify +104 QBuffer::disconnectNotify +112 QIODevice::isSequential +120 QBuffer::open +128 QBuffer::close +136 QBuffer::pos +144 QBuffer::size +152 QBuffer::seek +160 QBuffer::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QBuffer::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QBuffer::readData +224 QIODevice::readLineData +232 QBuffer::writeData + +Class QBuffer + size=16 align=8 + base size=16 base align=8 +QBuffer (0x7f0a707e7a80) 0 + vptr=((& QBuffer::_ZTV7QBuffer) + 16u) + QIODevice (0x7f0a707e7af0) 0 + primary-for QBuffer (0x7f0a707e7a80) + QObject (0x7f0a707e7b60) 0 + primary-for QIODevice (0x7f0a707e7af0) + +Vtable for QFileSystemWatcher +QFileSystemWatcher::_ZTV18QFileSystemWatcher: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFileSystemWatcher) +16 QFileSystemWatcher::metaObject +24 QFileSystemWatcher::qt_metacast +32 QFileSystemWatcher::qt_metacall +40 QFileSystemWatcher::~QFileSystemWatcher +48 QFileSystemWatcher::~QFileSystemWatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QFileSystemWatcher + size=16 align=8 + base size=16 base align=8 +QFileSystemWatcher (0x7f0a7080f690) 0 + vptr=((& QFileSystemWatcher::_ZTV18QFileSystemWatcher) + 16u) + QObject (0x7f0a7080f700) 0 + primary-for QFileSystemWatcher (0x7f0a7080f690) + +Class QUrl + size=8 align=8 + base size=8 base align=8 +QUrl (0x7f0a70823bd0) 0 + +Class QMetaType + size=1 align=1 + base size=0 base align=1 +QMetaType (0x7f0a708ad3f0) 0 empty + +Class QVariant::PrivateShared + size=16 align=8 + base size=12 base align=8 +QVariant::PrivateShared (0x7f0a7077e930) 0 + +Class QVariant::Private::Data + size=8 align=8 + base size=8 base align=8 +QVariant::Private::Data (0x7f0a7077ec40) 0 + +Class QVariant::Private + size=16 align=8 + base size=12 base align=8 +QVariant::Private (0x7f0a7077ea10) 0 + +Class QVariant::Handler + size=72 align=8 + base size=72 base align=8 +QVariant::Handler (0x7f0a7078d930) 0 + +Class QVariant + size=16 align=8 + base size=16 base align=8 +QVariant (0x7f0a7074eaf0) 0 + +Class QVariantComparisonHelper + size=8 align=8 + base size=8 base align=8 +QVariantComparisonHelper (0x7f0a70635cb0) 0 + +Vtable for QSettings +QSettings::_ZTV9QSettings: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QSettings) +16 QSettings::metaObject +24 QSettings::qt_metacast +32 QSettings::qt_metacall +40 QSettings::~QSettings +48 QSettings::~QSettings +56 QSettings::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSettings + size=16 align=8 + base size=16 base align=8 +QSettings (0x7f0a70659cb0) 0 + vptr=((& QSettings::_ZTV9QSettings) + 16u) + QObject (0x7f0a70659d20) 0 + primary-for QSettings (0x7f0a70659cb0) + +Class QXmlStreamStringRef + size=16 align=8 + base size=16 base align=8 +QXmlStreamStringRef (0x7f0a704da070) 0 + +Class QXmlStreamAttribute + size=80 align=8 + base size=73 base align=8 +QXmlStreamAttribute (0x7f0a704f8850) 0 + +Class QXmlStreamAttributes + size=8 align=8 + base size=8 base align=8 +QXmlStreamAttributes (0x7f0a70520380) 0 + QVector (0x7f0a705203f0) 0 + +Class QXmlStreamNamespaceDeclaration + size=40 align=8 + base size=40 base align=8 +QXmlStreamNamespaceDeclaration (0x7f0a70520850) 0 + +Class QXmlStreamNotationDeclaration + size=56 align=8 + base size=56 base align=8 +QXmlStreamNotationDeclaration (0x7f0a705611c0) 0 + +Class QXmlStreamEntityDeclaration + size=88 align=8 + base size=88 base align=8 +QXmlStreamEntityDeclaration (0x7f0a7057f070) 0 + +Vtable for QXmlStreamEntityResolver +QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QXmlStreamEntityResolver) +16 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +24 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +32 QXmlStreamEntityResolver::resolveEntity +40 QXmlStreamEntityResolver::resolveUndeclaredEntity + +Class QXmlStreamEntityResolver + size=8 align=8 + base size=8 base align=8 +QXmlStreamEntityResolver (0x7f0a7059c9a0) 0 nearly-empty + vptr=((& QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver) + 16u) + +Class QXmlStreamReader + size=8 align=8 + base size=8 base align=8 +QXmlStreamReader (0x7f0a7059cb60) 0 + +Class QXmlStreamWriter + size=8 align=8 + base size=8 base align=8 +QXmlStreamWriter (0x7f0a703daa10) 0 + +Class QPoint + size=8 align=4 + base size=8 base align=4 +QPoint (0x7f0a70418150) 0 + +Class QPointF + size=16 align=8 + base size=16 base align=8 +QPointF (0x7f0a7044ed90) 0 + +Class QLine + size=16 align=4 + base size=16 base align=4 +QLine (0x7f0a7048bbd0) 0 + +Class QLineF + size=32 align=8 + base size=32 base align=8 +QLineF (0x7f0a702c6a80) 0 + +Class QSize + size=8 align=4 + base size=8 base align=4 +QSize (0x7f0a70322540) 0 + +Class QSizeF + size=16 align=8 + base size=16 base align=8 +QSizeF (0x7f0a7036d380) 0 + +Class QRect + size=16 align=4 + base size=16 base align=4 +QRect (0x7f0a701ba9a0) 0 + +Class QRectF + size=32 align=8 + base size=32 base align=8 +QRectF (0x7f0a70271380) 0 + +Class QSharedData + size=4 align=4 + base size=4 base align=4 +QSharedData (0x7f0a70115150) 0 + +Vtable for QtSharedPointer::ExternalRefCountData +QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN15QtSharedPointer20ExternalRefCountDataE) +16 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +24 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +32 QtSharedPointer::ExternalRefCountData::destroy + +Class QtSharedPointer::ExternalRefCountData + size=16 align=8 + base size=16 base align=8 +QtSharedPointer::ExternalRefCountData (0x7f0a70144af0) 0 + vptr=((& QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE) + 16u) + +Class QLinkedListData + size=32 align=8 + base size=32 base align=8 +QLinkedListData (0x7f0a6ffcbc40) 0 + +Class QBitArray + size=8 align=8 + base size=8 base align=8 +QBitArray (0x7f0a70097b60) 0 + +Class QBitRef + size=16 align=8 + base size=12 base align=8 +QBitRef (0x7f0a6ff0b930) 0 + +Class QByteArrayMatcher + size=1040 align=8 + base size=1040 base align=8 +QByteArrayMatcher (0x7f0a6ff25310) 0 + +Class QCryptographicHash + size=8 align=8 + base size=8 base align=8 +QCryptographicHash (0x7f0a6ff36a10) 0 + +Class QTextBoundaryFinder + size=48 align=8 + base size=48 base align=8 +QTextBoundaryFinder (0x7f0a6ff64460) 0 + +Class QDate + size=4 align=4 + base size=4 base align=4 +QDate (0x7f0a6ff797e0) 0 + +Class QTime + size=4 align=4 + base size=4 base align=4 +QTime (0x7f0a6fda3770) 0 + +Class QDateTime + size=8 align=8 + base size=8 base align=8 +QDateTime (0x7f0a6fdc1d20) 0 + +Vtable for QTimeLine +QTimeLine::_ZTV9QTimeLine: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTimeLine) +16 QTimeLine::metaObject +24 QTimeLine::qt_metacast +32 QTimeLine::qt_metacall +40 QTimeLine::~QTimeLine +48 QTimeLine::~QTimeLine +56 QObject::event +64 QObject::eventFilter +72 QTimeLine::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTimeLine::valueForTime + +Class QTimeLine + size=16 align=8 + base size=16 base align=8 +QTimeLine (0x7f0a6fdf51c0) 0 + vptr=((& QTimeLine::_ZTV9QTimeLine) + 16u) + QObject (0x7f0a6fdf5230) 0 + primary-for QTimeLine (0x7f0a6fdf51c0) + +Vtable for QRunnable +QRunnable::_ZTV9QRunnable: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QRunnable) +16 __cxa_pure_virtual +24 QRunnable::~QRunnable +32 QRunnable::~QRunnable + +Class QRunnable + size=16 align=8 + base size=12 base align=8 +QRunnable (0x7f0a6fe1b070) 0 + vptr=((& QRunnable::_ZTV9QRunnable) + 16u) + +Class QMutex + size=8 align=8 + base size=8 base align=8 +QMutex (0x7f0a6fe29700) 0 + +Class QMutexLocker + size=8 align=8 + base size=8 base align=8 +QMutexLocker (0x7f0a6fe372a0) 0 + +Vtable for QtConcurrent::Exception +QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent9ExceptionE) +16 QtConcurrent::Exception::~Exception +24 QtConcurrent::Exception::~Exception +32 std::exception::what +40 QtConcurrent::Exception::raise +48 QtConcurrent::Exception::clone + +Class QtConcurrent::Exception + size=8 align=8 + base size=8 base align=8 +QtConcurrent::Exception (0x7f0a6fe4e5b0) 0 nearly-empty + vptr=((& QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE) + 16u) + std::exception (0x7f0a6fe4e620) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7f0a6fe4e5b0) + +Vtable for QtConcurrent::UnhandledException +QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent18UnhandledExceptionE) +16 QtConcurrent::UnhandledException::~UnhandledException +24 QtConcurrent::UnhandledException::~UnhandledException +32 std::exception::what +40 QtConcurrent::UnhandledException::raise +48 QtConcurrent::UnhandledException::clone + +Class QtConcurrent::UnhandledException + size=8 align=8 + base size=8 base align=8 +QtConcurrent::UnhandledException (0x7f0a6fe4e850) 0 nearly-empty + vptr=((& QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE) + 16u) + QtConcurrent::Exception (0x7f0a6fe4e8c0) 0 nearly-empty + primary-for QtConcurrent::UnhandledException (0x7f0a6fe4e850) + std::exception (0x7f0a6fe4e930) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7f0a6fe4e8c0) + +Class QtConcurrent::internal::ExceptionHolder + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionHolder (0x7f0a6fe4eb60) 0 + +Class QtConcurrent::internal::ExceptionStore + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionStore (0x7f0a6fe4eee0) 0 + +Class QtConcurrent::ResultItem + size=16 align=8 + base size=16 base align=8 +QtConcurrent::ResultItem (0x7f0a6fe4ef50) 0 + +Class QtConcurrent::ResultIteratorBase + size=16 align=8 + base size=12 base align=8 +QtConcurrent::ResultIteratorBase (0x7f0a6fe66e70) 0 + +Vtable for QtConcurrent::ResultStoreBase +QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent15ResultStoreBaseE) +16 QtConcurrent::ResultStoreBase::~ResultStoreBase +24 QtConcurrent::ResultStoreBase::~ResultStoreBase + +Class QtConcurrent::ResultStoreBase + size=48 align=8 + base size=44 base align=8 +QtConcurrent::ResultStoreBase (0x7f0a6fe69a10) 0 + vptr=((& QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE) + 16u) + +Vtable for QFutureInterfaceBase +QFutureInterfaceBase::_ZTV20QFutureInterfaceBase: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QFutureInterfaceBase) +16 QFutureInterfaceBase::~QFutureInterfaceBase +24 QFutureInterfaceBase::~QFutureInterfaceBase + +Class QFutureInterfaceBase + size=16 align=8 + base size=16 base align=8 +QFutureInterfaceBase (0x7f0a6fca9e70) 0 + vptr=((& QFutureInterfaceBase::_ZTV20QFutureInterfaceBase) + 16u) + +Vtable for QThread +QThread::_ZTV7QThread: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QThread) +16 QThread::metaObject +24 QThread::qt_metacast +32 QThread::qt_metacall +40 QThread::~QThread +48 QThread::~QThread +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QThread::run + +Class QThread + size=16 align=8 + base size=16 base align=8 +QThread (0x7f0a6fd8be00) 0 + vptr=((& QThread::_ZTV7QThread) + 16u) + QObject (0x7f0a6fd8be70) 0 + primary-for QThread (0x7f0a6fd8be00) + +Vtable for QThreadPool +QThreadPool::_ZTV11QThreadPool: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QThreadPool) +16 QThreadPool::metaObject +24 QThreadPool::qt_metacast +32 QThreadPool::qt_metacall +40 QThreadPool::~QThreadPool +48 QThreadPool::~QThreadPool +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QThreadPool + size=16 align=8 + base size=16 base align=8 +QThreadPool (0x7f0a6fbc0cb0) 0 + vptr=((& QThreadPool::_ZTV11QThreadPool) + 16u) + QObject (0x7f0a6fbc0d20) 0 + primary-for QThreadPool (0x7f0a6fbc0cb0) + +Class QWaitCondition + size=8 align=8 + base size=8 base align=8 +QWaitCondition (0x7f0a6fbd9540) 0 + +Class QtConcurrent::ThreadEngineSemaphore + size=24 align=8 + base size=24 base align=8 +QtConcurrent::ThreadEngineSemaphore (0x7f0a6fbd9a80) 0 + +Vtable for QtConcurrent::ThreadEngineBase +QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent16ThreadEngineBaseE) +16 QtConcurrent::ThreadEngineBase::run +24 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +32 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +40 QtConcurrent::ThreadEngineBase::start +48 QtConcurrent::ThreadEngineBase::finish +56 QtConcurrent::ThreadEngineBase::threadFunction +64 QtConcurrent::ThreadEngineBase::shouldStartThread +72 QtConcurrent::ThreadEngineBase::shouldThrottleThread +80 __cxa_pure_virtual + +Class QtConcurrent::ThreadEngineBase + size=64 align=8 + base size=64 base align=8 +QtConcurrent::ThreadEngineBase (0x7f0a6fbf9460) 0 + vptr=((& QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE) + 16u) + QRunnable (0x7f0a6fbf94d0) 0 + primary-for QtConcurrent::ThreadEngineBase (0x7f0a6fbf9460) + +VTT for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTTN12QtConcurrent12ThreadEngineIvEE: 2u entries +0 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 24u) +8 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 136u) + +Class std::input_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::input_iterator_tag (0x7f0a6fc3c850) 0 empty + +Class std::output_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::output_iterator_tag (0x7f0a6fc3c8c0) 0 empty + +Class std::forward_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::forward_iterator_tag (0x7f0a6fc3c930) 0 empty + std::input_iterator_tag (0x7f0a6fc3c9a0) 0 empty + +Class std::bidirectional_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::bidirectional_iterator_tag (0x7f0a6fc3ca10) 0 empty + std::forward_iterator_tag (0x7f0a6fc3ca80) 0 empty + std::input_iterator_tag (0x7f0a6fc3caf0) 0 empty + +Class std::random_access_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::random_access_iterator_tag (0x7f0a6fc3cb60) 0 empty + std::bidirectional_iterator_tag (0x7f0a6fc3cbd0) 0 empty + std::forward_iterator_tag (0x7f0a6fc3cc40) 0 empty + std::input_iterator_tag (0x7f0a6fc3ccb0) 0 empty + +Class std::__true_type + size=1 align=1 + base size=0 base align=1 +std::__true_type (0x7f0a6fc4d2a0) 0 empty + +Class std::__false_type + size=1 align=1 + base size=0 base align=1 +std::__false_type (0x7f0a6fc4d310) 0 empty + +Class lconv + size=96 align=8 + base size=96 base align=8 +lconv (0x7f0a6fa29620) 0 + +Class sched_param + size=4 align=4 + base size=4 base align=4 +sched_param (0x7f0a6fa29a80) 0 + +Class __sched_param + size=4 align=4 + base size=4 base align=4 +__sched_param (0x7f0a6fa29af0) 0 + +Class tm + size=56 align=8 + base size=56 base align=8 +tm (0x7f0a6fa29bd0) 0 + +Class itimerspec + size=32 align=8 + base size=32 base align=8 +itimerspec (0x7f0a6fa29cb0) 0 + +Class _pthread_cleanup_buffer + size=32 align=8 + base size=32 base align=8 +_pthread_cleanup_buffer (0x7f0a6fa29d20) 0 + +Class __pthread_cleanup_frame + size=24 align=8 + base size=24 base align=8 +__pthread_cleanup_frame (0x7f0a6fa29e70) 0 + +Class __pthread_cleanup_class + size=24 align=8 + base size=24 base align=8 +__pthread_cleanup_class (0x7f0a6fa29ee0) 0 + +Vtable for __cxxabiv1::__forced_unwind +__cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN10__cxxabiv115__forced_unwindE) +16 __cxxabiv1::__forced_unwind::~__forced_unwind +24 __cxxabiv1::__forced_unwind::~__forced_unwind +32 __cxa_pure_virtual + +Class __cxxabiv1::__forced_unwind + size=8 align=8 + base size=8 base align=8 +__cxxabiv1::__forced_unwind (0x7f0a6f93da80) 0 nearly-empty + vptr=((& __cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE) + 16u) + +Class std::locale + size=8 align=8 + base size=8 base align=8 +std::locale (0x7f0a6f5ee5b0) 0 + +Vtable for std::locale::facet +std::locale::facet::_ZTVNSt6locale5facetE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTINSt6locale5facetE) +16 std::locale::facet::~facet +24 std::locale::facet::~facet + +Class std::locale::facet + size=16 align=8 + base size=12 base align=8 +std::locale::facet (0x7f0a6f692cb0) 0 + vptr=((& std::locale::facet::_ZTVNSt6locale5facetE) + 16u) + +Class std::locale::id + size=8 align=8 + base size=8 base align=8 +std::locale::id (0x7f0a6f4a62a0) 0 + +Class std::locale::_Impl + size=40 align=8 + base size=40 base align=8 +std::locale::_Impl (0x7f0a6f4a68c0) 0 + +Vtable for std::ios_base::failure +std::ios_base::failure::_ZTVNSt8ios_base7failureE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTINSt8ios_base7failureE) +16 std::ios_base::failure::~failure +24 std::ios_base::failure::~failure +32 std::ios_base::failure::what + +Class std::ios_base::failure + size=16 align=8 + base size=16 base align=8 +std::ios_base::failure (0x7f0a6f534070) 0 + vptr=((& std::ios_base::failure::_ZTVNSt8ios_base7failureE) + 16u) + std::exception (0x7f0a6f5340e0) 0 nearly-empty + primary-for std::ios_base::failure (0x7f0a6f534070) + +Class std::ios_base::_Callback_list + size=24 align=8 + base size=24 base align=8 +std::ios_base::_Callback_list (0x7f0a6f541310) 0 + +Class std::ios_base::_Words + size=16 align=8 + base size=16 base align=8 +std::ios_base::_Words (0x7f0a6f541d90) 0 + +Class std::ios_base::Init + size=1 align=1 + base size=0 base align=1 +std::ios_base::Init (0x7f0a6f54a4d0) 0 empty + +Vtable for std::ios_base +std::ios_base::_ZTVSt8ios_base: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt8ios_base) +16 std::ios_base::~ios_base +24 std::ios_base::~ios_base + +Class std::ios_base + size=216 align=8 + base size=216 base align=8 +std::ios_base (0x7f0a6f534000) 0 + vptr=((& std::ios_base::_ZTVSt8ios_base) + 16u) + +Class std::ctype_base + size=1 align=1 + base size=0 base align=1 +std::ctype_base (0x7f0a6f3c1930) 0 empty + +Class std::__num_base + size=1 align=1 + base size=0 base align=1 +std::__num_base (0x7f0a6f2dd1c0) 0 empty + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSo: 2u entries +0 ((& std::basic_ostream >::_ZTVSo) + 24u) +8 ((& std::basic_ostream >::_ZTVSo) + 64u) + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSt13basic_ostreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 24u) +8 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 64u) + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSi: 2u entries +0 ((& std::basic_istream >::_ZTVSi) + 24u) +8 ((& std::basic_istream >::_ZTVSi) + 64u) + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSt13basic_istreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 24u) +8 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 64u) + +Construction vtable for std::basic_istream > (0x7f0a6f012310 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd0_Si: 10u entries +0 24u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISi) +24 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +32 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +40 -24u +48 (int (*)(...))-0x00000000000000018 +56 (int (*)(...))(& _ZTISi) +64 std::basic_istream >::_ZTv0_n24_NSiD1Ev +72 std::basic_istream >::_ZTv0_n24_NSiD0Ev + +Construction vtable for std::basic_ostream > (0x7f0a6f012460 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd16_So: 10u entries +0 8u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISo) +24 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +32 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +40 -8u +48 (int (*)(...))-0x00000000000000008 +56 (int (*)(...))(& _ZTISo) +64 std::basic_ostream >::_ZTv0_n24_NSoD1Ev +72 std::basic_ostream >::_ZTv0_n24_NSoD0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSd: 7u entries +0 ((& std::basic_iostream >::_ZTVSd) + 24u) +8 ((& std::basic_iostream >::_ZTCSd0_Si) + 24u) +16 ((& std::basic_iostream >::_ZTCSd0_Si) + 64u) +24 ((& std::basic_iostream >::_ZTCSd16_So) + 24u) +32 ((& std::basic_iostream >::_ZTCSd16_So) + 64u) +40 ((& std::basic_iostream >::_ZTVSd) + 104u) +48 ((& std::basic_iostream >::_ZTVSd) + 64u) + +Construction vtable for std::basic_istream > (0x7f0a6f012620 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E: 10u entries +0 24u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +24 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +32 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +40 -24u +48 (int (*)(...))-0x00000000000000018 +56 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +64 std::basic_istream >::_ZTv0_n24_NSt13basic_istreamIwSt11char_traitsIwEED1Ev +72 std::basic_istream >::_ZTv0_n24_NSt13basic_istreamIwSt11char_traitsIwEED0Ev + +Construction vtable for std::basic_ostream > (0x7f0a6f012770 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE16_St13basic_ostreamIwS1_E: 10u entries +0 8u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +24 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +32 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +40 -8u +48 (int (*)(...))-0x00000000000000008 +56 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +64 std::basic_ostream >::_ZTv0_n24_NSt13basic_ostreamIwSt11char_traitsIwEED1Ev +72 std::basic_ostream >::_ZTv0_n24_NSt13basic_ostreamIwSt11char_traitsIwEED0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSt14basic_iostreamIwSt11char_traitsIwEE: 7u entries +0 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 24u) +8 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 24u) +16 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 64u) +24 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE16_St13basic_ostreamIwS1_E) + 24u) +32 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE16_St13basic_ostreamIwS1_E) + 64u) +40 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 104u) +48 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 64u) + +Class QtConcurrent::BlockSizeManager + size=96 align=8 + base size=92 base align=8 +QtConcurrent::BlockSizeManager (0x7f0a6f07d230) 0 + +Vtable for QFutureWatcherBase +QFutureWatcherBase::_ZTV18QFutureWatcherBase: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFutureWatcherBase) +16 QFutureWatcherBase::metaObject +24 QFutureWatcherBase::qt_metacast +32 QFutureWatcherBase::qt_metacall +40 QFutureWatcherBase::~QFutureWatcherBase +48 QFutureWatcherBase::~QFutureWatcherBase +56 QFutureWatcherBase::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QFutureWatcherBase::connectNotify +104 QFutureWatcherBase::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QFutureWatcherBase + size=16 align=8 + base size=16 base align=8 +QFutureWatcherBase (0x7f0a6ec46bd0) 0 + vptr=((& QFutureWatcherBase::_ZTV18QFutureWatcherBase) + 16u) + QObject (0x7f0a6ec46c40) 0 + primary-for QFutureWatcherBase (0x7f0a6ec46bd0) + +Vtable for QFactoryInterface +QFactoryInterface::_ZTV17QFactoryInterface: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QFactoryInterface) +16 QFactoryInterface::~QFactoryInterface +24 QFactoryInterface::~QFactoryInterface +32 __cxa_pure_virtual + +Class QFactoryInterface + size=8 align=8 + base size=8 base align=8 +QFactoryInterface (0x7f0a6eb5ee00) 0 nearly-empty + vptr=((& QFactoryInterface::_ZTV17QFactoryInterface) + 16u) + +Vtable for QTextCodecFactoryInterface +QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QTextCodecFactoryInterface) +16 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +24 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QTextCodecFactoryInterface + size=8 align=8 + base size=8 base align=8 +QTextCodecFactoryInterface (0x7f0a6eb81ee0) 0 nearly-empty + vptr=((& QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface) + 16u) + QFactoryInterface (0x7f0a6eb81f50) 0 nearly-empty + primary-for QTextCodecFactoryInterface (0x7f0a6eb81ee0) + +Vtable for QTextCodecPlugin +QTextCodecPlugin::_ZTV16QTextCodecPlugin: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QTextCodecPlugin) +16 QTextCodecPlugin::metaObject +24 QTextCodecPlugin::qt_metacast +32 QTextCodecPlugin::qt_metacall +40 QTextCodecPlugin::~QTextCodecPlugin +48 QTextCodecPlugin::~QTextCodecPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 QTextCodecPlugin::keys +160 QTextCodecPlugin::create +168 (int (*)(...))-0x00000000000000010 +176 (int (*)(...))(& _ZTI16QTextCodecPlugin) +184 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD1Ev +192 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD0Ev +200 QTextCodecPlugin::_ZThn16_NK16QTextCodecPlugin4keysEv +208 QTextCodecPlugin::_ZThn16_N16QTextCodecPlugin6createERK7QString + +Class QTextCodecPlugin + size=24 align=8 + base size=24 base align=8 +QTextCodecPlugin (0x7f0a6eb84e00) 0 + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 16u) + QObject (0x7f0a6eb8d7e0) 0 + primary-for QTextCodecPlugin (0x7f0a6eb84e00) + QTextCodecFactoryInterface (0x7f0a6eb8d850) 16 nearly-empty + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 184u) + QFactoryInterface (0x7f0a6eb8d8c0) 16 nearly-empty + primary-for QTextCodecFactoryInterface (0x7f0a6eb8d850) + +Class QLibraryInfo + size=1 align=1 + base size=0 base align=1 +QLibraryInfo (0x7f0a6e9a3700) 0 empty + +Vtable for QTranslator +QTranslator::_ZTV11QTranslator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTranslator) +16 QTranslator::metaObject +24 QTranslator::qt_metacast +32 QTranslator::qt_metacall +40 QTranslator::~QTranslator +48 QTranslator::~QTranslator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTranslator::translate +120 QTranslator::isEmpty + +Class QTranslator + size=16 align=8 + base size=16 base align=8 +QTranslator (0x7f0a6e9e6000) 0 + vptr=((& QTranslator::_ZTV11QTranslator) + 16u) + QObject (0x7f0a6e9e6070) 0 + primary-for QTranslator (0x7f0a6e9e6000) + +Class __exception + size=40 align=8 + base size=40 base align=8 +__exception (0x7f0a6e9f9f50) 0 + +Vtable for QMimeData +QMimeData::_ZTV9QMimeData: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QMimeData) +16 QMimeData::metaObject +24 QMimeData::qt_metacast +32 QMimeData::qt_metacall +40 QMimeData::~QMimeData +48 QMimeData::~QMimeData +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMimeData::hasFormat +120 QMimeData::formats +128 QMimeData::retrieveData + +Class QMimeData + size=16 align=8 + base size=16 base align=8 +QMimeData (0x7f0a6ea64150) 0 + vptr=((& QMimeData::_ZTV9QMimeData) + 16u) + QObject (0x7f0a6ea641c0) 0 + primary-for QMimeData (0x7f0a6ea64150) + +Vtable for QEventLoop +QEventLoop::_ZTV10QEventLoop: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QEventLoop) +16 QEventLoop::metaObject +24 QEventLoop::qt_metacast +32 QEventLoop::qt_metacall +40 QEventLoop::~QEventLoop +48 QEventLoop::~QEventLoop +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QEventLoop + size=16 align=8 + base size=16 base align=8 +QEventLoop (0x7f0a6ea7d9a0) 0 + vptr=((& QEventLoop::_ZTV10QEventLoop) + 16u) + QObject (0x7f0a6ea7da10) 0 + primary-for QEventLoop (0x7f0a6ea7d9a0) + +Vtable for QEvent +QEvent::_ZTV6QEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QEvent) +16 QEvent::~QEvent +24 QEvent::~QEvent + +Class QEvent + size=24 align=8 + base size=20 base align=8 +QEvent (0x7f0a6e8be310) 0 + vptr=((& QEvent::_ZTV6QEvent) + 16u) + +Vtable for QTimerEvent +QTimerEvent::_ZTV11QTimerEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTimerEvent) +16 QTimerEvent::~QTimerEvent +24 QTimerEvent::~QTimerEvent + +Class QTimerEvent + size=24 align=8 + base size=24 base align=8 +QTimerEvent (0x7f0a6e8d6ee0) 0 + vptr=((& QTimerEvent::_ZTV11QTimerEvent) + 16u) + QEvent (0x7f0a6e8d6f50) 0 + primary-for QTimerEvent (0x7f0a6e8d6ee0) + +Vtable for QChildEvent +QChildEvent::_ZTV11QChildEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QChildEvent) +16 QChildEvent::~QChildEvent +24 QChildEvent::~QChildEvent + +Class QChildEvent + size=32 align=8 + base size=32 base align=8 +QChildEvent (0x7f0a6e8db380) 0 + vptr=((& QChildEvent::_ZTV11QChildEvent) + 16u) + QEvent (0x7f0a6e8db3f0) 0 + primary-for QChildEvent (0x7f0a6e8db380) + +Vtable for QCustomEvent +QCustomEvent::_ZTV12QCustomEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QCustomEvent) +16 QCustomEvent::~QCustomEvent +24 QCustomEvent::~QCustomEvent + +Class QCustomEvent + size=24 align=8 + base size=20 base align=8 +QCustomEvent (0x7f0a6e8eb620) 0 + vptr=((& QCustomEvent::_ZTV12QCustomEvent) + 16u) + QEvent (0x7f0a6e8eb690) 0 + primary-for QCustomEvent (0x7f0a6e8eb620) + +Vtable for QDynamicPropertyChangeEvent +QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QDynamicPropertyChangeEvent) +16 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent +24 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent + +Class QDynamicPropertyChangeEvent + size=32 align=8 + base size=32 base align=8 +QDynamicPropertyChangeEvent (0x7f0a6e8ebe00) 0 + vptr=((& QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent) + 16u) + QEvent (0x7f0a6e8ebe70) 0 + primary-for QDynamicPropertyChangeEvent (0x7f0a6e8ebe00) + +Vtable for QCoreApplication +QCoreApplication::_ZTV16QCoreApplication: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QCoreApplication) +16 QCoreApplication::metaObject +24 QCoreApplication::qt_metacast +32 QCoreApplication::qt_metacall +40 QCoreApplication::~QCoreApplication +48 QCoreApplication::~QCoreApplication +56 QCoreApplication::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCoreApplication::notify +120 QCoreApplication::compressEvent + +Class QCoreApplication + size=16 align=8 + base size=16 base align=8 +QCoreApplication (0x7f0a6e8fb230) 0 + vptr=((& QCoreApplication::_ZTV16QCoreApplication) + 16u) + QObject (0x7f0a6e8fb2a0) 0 + primary-for QCoreApplication (0x7f0a6e8fb230) + +Vtable for QSharedMemory +QSharedMemory::_ZTV13QSharedMemory: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSharedMemory) +16 QSharedMemory::metaObject +24 QSharedMemory::qt_metacast +32 QSharedMemory::qt_metacall +40 QSharedMemory::~QSharedMemory +48 QSharedMemory::~QSharedMemory +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSharedMemory + size=16 align=8 + base size=16 base align=8 +QSharedMemory (0x7f0a6e925a80) 0 + vptr=((& QSharedMemory::_ZTV13QSharedMemory) + 16u) + QObject (0x7f0a6e925af0) 0 + primary-for QSharedMemory (0x7f0a6e925a80) + +Class QModelIndex + size=24 align=8 + base size=24 base align=8 +QModelIndex (0x7f0a6e946850) 0 + +Class QPersistentModelIndex + size=8 align=8 + base size=8 base align=8 +QPersistentModelIndex (0x7f0a6e96f310) 0 + +Vtable for QAbstractItemModel +QAbstractItemModel::_ZTV18QAbstractItemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractItemModel) +16 QAbstractItemModel::metaObject +24 QAbstractItemModel::qt_metacast +32 QAbstractItemModel::qt_metacall +40 QAbstractItemModel::~QAbstractItemModel +48 QAbstractItemModel::~QAbstractItemModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractItemModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractItemModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractItemModel + size=16 align=8 + base size=16 base align=8 +QAbstractItemModel (0x7f0a6e97c5b0) 0 + vptr=((& QAbstractItemModel::_ZTV18QAbstractItemModel) + 16u) + QObject (0x7f0a6e97c620) 0 + primary-for QAbstractItemModel (0x7f0a6e97c5b0) + +Vtable for QAbstractTableModel +QAbstractTableModel::_ZTV19QAbstractTableModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractTableModel) +16 QAbstractTableModel::metaObject +24 QAbstractTableModel::qt_metacast +32 QAbstractTableModel::qt_metacall +40 QAbstractTableModel::~QAbstractTableModel +48 QAbstractTableModel::~QAbstractTableModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractTableModel::index +120 QAbstractTableModel::parent +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractTableModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractTableModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractTableModel + size=16 align=8 + base size=16 base align=8 +QAbstractTableModel (0x7f0a6e7ce930) 0 + vptr=((& QAbstractTableModel::_ZTV19QAbstractTableModel) + 16u) + QAbstractItemModel (0x7f0a6e7ce9a0) 0 + primary-for QAbstractTableModel (0x7f0a6e7ce930) + QObject (0x7f0a6e7cea10) 0 + primary-for QAbstractItemModel (0x7f0a6e7ce9a0) + +Vtable for QAbstractListModel +QAbstractListModel::_ZTV18QAbstractListModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractListModel) +16 QAbstractListModel::metaObject +24 QAbstractListModel::qt_metacast +32 QAbstractListModel::qt_metacall +40 QAbstractListModel::~QAbstractListModel +48 QAbstractListModel::~QAbstractListModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractListModel::index +120 QAbstractListModel::parent +128 __cxa_pure_virtual +136 QAbstractListModel::columnCount +144 QAbstractListModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractListModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractListModel + size=16 align=8 + base size=16 base align=8 +QAbstractListModel (0x7f0a6e7daee0) 0 + vptr=((& QAbstractListModel::_ZTV18QAbstractListModel) + 16u) + QAbstractItemModel (0x7f0a6e7daf50) 0 + primary-for QAbstractListModel (0x7f0a6e7daee0) + QObject (0x7f0a6e7da230) 0 + primary-for QAbstractItemModel (0x7f0a6e7daf50) + +Vtable for QSignalMapper +QSignalMapper::_ZTV13QSignalMapper: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSignalMapper) +16 QSignalMapper::metaObject +24 QSignalMapper::qt_metacast +32 QSignalMapper::qt_metacall +40 QSignalMapper::~QSignalMapper +48 QSignalMapper::~QSignalMapper +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSignalMapper + size=16 align=8 + base size=16 base align=8 +QSignalMapper (0x7f0a6e81c000) 0 + vptr=((& QSignalMapper::_ZTV13QSignalMapper) + 16u) + QObject (0x7f0a6e81c070) 0 + primary-for QSignalMapper (0x7f0a6e81c000) + +Vtable for QObjectCleanupHandler +QObjectCleanupHandler::_ZTV21QObjectCleanupHandler: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QObjectCleanupHandler) +16 QObjectCleanupHandler::metaObject +24 QObjectCleanupHandler::qt_metacast +32 QObjectCleanupHandler::qt_metacall +40 QObjectCleanupHandler::~QObjectCleanupHandler +48 QObjectCleanupHandler::~QObjectCleanupHandler +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObjectCleanupHandler + size=24 align=8 + base size=24 base align=8 +QObjectCleanupHandler (0x7f0a6e8343f0) 0 + vptr=((& QObjectCleanupHandler::_ZTV21QObjectCleanupHandler) + 16u) + QObject (0x7f0a6e834460) 0 + primary-for QObjectCleanupHandler (0x7f0a6e8343f0) + +Class QBasicTimer + size=4 align=4 + base size=4 base align=4 +QBasicTimer (0x7f0a6e845540) 0 + +Vtable for QSocketNotifier +QSocketNotifier::_ZTV15QSocketNotifier: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSocketNotifier) +16 QSocketNotifier::metaObject +24 QSocketNotifier::qt_metacast +32 QSocketNotifier::qt_metacall +40 QSocketNotifier::~QSocketNotifier +48 QSocketNotifier::~QSocketNotifier +56 QSocketNotifier::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSocketNotifier + size=32 align=8 + base size=25 base align=8 +QSocketNotifier (0x7f0a6e851930) 0 + vptr=((& QSocketNotifier::_ZTV15QSocketNotifier) + 16u) + QObject (0x7f0a6e8519a0) 0 + primary-for QSocketNotifier (0x7f0a6e851930) + +Vtable for QTimer +QTimer::_ZTV6QTimer: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QTimer) +16 QTimer::metaObject +24 QTimer::qt_metacast +32 QTimer::qt_metacall +40 QTimer::~QTimer +48 QTimer::~QTimer +56 QObject::event +64 QObject::eventFilter +72 QTimer::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTimer + size=32 align=8 + base size=29 base align=8 +QTimer (0x7f0a6e86ccb0) 0 + vptr=((& QTimer::_ZTV6QTimer) + 16u) + QObject (0x7f0a6e86cd20) 0 + primary-for QTimer (0x7f0a6e86ccb0) + +Vtable for QAbstractEventDispatcher +QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QAbstractEventDispatcher) +16 QAbstractEventDispatcher::metaObject +24 QAbstractEventDispatcher::qt_metacast +32 QAbstractEventDispatcher::qt_metacall +40 QAbstractEventDispatcher::~QAbstractEventDispatcher +48 QAbstractEventDispatcher::~QAbstractEventDispatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 QAbstractEventDispatcher::startingUp +208 QAbstractEventDispatcher::closingDown + +Class QAbstractEventDispatcher + size=16 align=8 + base size=16 base align=8 +QAbstractEventDispatcher (0x7f0a6e68f2a0) 0 + vptr=((& QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher) + 16u) + QObject (0x7f0a6e68f310) 0 + primary-for QAbstractEventDispatcher (0x7f0a6e68f2a0) + +Class QMetaMethod + size=16 align=8 + base size=12 base align=8 +QMetaMethod (0x7f0a6e6aa150) 0 + +Class QMetaEnum + size=16 align=8 + base size=12 base align=8 +QMetaEnum (0x7f0a6e6c55b0) 0 + +Class QMetaProperty + size=32 align=8 + base size=32 base align=8 +QMetaProperty (0x7f0a6e6d2310) 0 + +Class QMetaClassInfo + size=16 align=8 + base size=12 base align=8 +QMetaClassInfo (0x7f0a6e6d29a0) 0 + +Class QSystemSemaphore + size=8 align=8 + base size=8 base align=8 +QSystemSemaphore (0x7f0a6e6e54d0) 0 + +Vtable for QLibrary +QLibrary::_ZTV8QLibrary: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QLibrary) +16 QLibrary::metaObject +24 QLibrary::qt_metacast +32 QLibrary::qt_metacall +40 QLibrary::~QLibrary +48 QLibrary::~QLibrary +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QLibrary + size=32 align=8 + base size=25 base align=8 +QLibrary (0x7f0a6e6e5e00) 0 + vptr=((& QLibrary::_ZTV8QLibrary) + 16u) + QObject (0x7f0a6e6e5e70) 0 + primary-for QLibrary (0x7f0a6e6e5e00) + +Vtable for QPluginLoader +QPluginLoader::_ZTV13QPluginLoader: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QPluginLoader) +16 QPluginLoader::metaObject +24 QPluginLoader::qt_metacast +32 QPluginLoader::qt_metacall +40 QPluginLoader::~QPluginLoader +48 QPluginLoader::~QPluginLoader +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QPluginLoader + size=32 align=8 + base size=25 base align=8 +QPluginLoader (0x7f0a6e72a8c0) 0 + vptr=((& QPluginLoader::_ZTV13QPluginLoader) + 16u) + QObject (0x7f0a6e72a930) 0 + primary-for QPluginLoader (0x7f0a6e72a8c0) + +Class QUuid + size=16 align=4 + base size=16 base align=4 +QUuid (0x7f0a6e74e070) 0 + +Class QSemaphore + size=8 align=8 + base size=8 base align=8 +QSemaphore (0x7f0a6e76c9a0) 0 + +Class QThreadStorageData + size=4 align=4 + base size=4 base align=4 +QThreadStorageData (0x7f0a6e76cee0) 0 + +Class QReadWriteLock + size=8 align=8 + base size=8 base align=8 +QReadWriteLock (0x7f0a6e77e690) 0 + +Class QReadLocker + size=8 align=8 + base size=8 base align=8 +QReadLocker (0x7f0a6e77ed20) 0 + +Class QWriteLocker + size=8 align=8 + base size=8 base align=8 +QWriteLocker (0x7f0a6e5ad0e0) 0 + +Class QSqlRecord + size=8 align=8 + base size=8 base align=8 +QSqlRecord (0x7f0a6e5bf460) 0 + +Class QSqlIndex + size=32 align=8 + base size=32 base align=8 +QSqlIndex (0x7f0a6e5d30e0) 0 + QSqlRecord (0x7f0a6e5d3150) 0 + +Vtable for QSqlResult +QSqlResult::_ZTV10QSqlResult: 29u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QSqlResult) +16 QSqlResult::~QSqlResult +24 QSqlResult::~QSqlResult +32 QSqlResult::handle +40 QSqlResult::setAt +48 QSqlResult::setActive +56 QSqlResult::setLastError +64 QSqlResult::setQuery +72 QSqlResult::setSelect +80 QSqlResult::setForwardOnly +88 QSqlResult::exec +96 QSqlResult::prepare +104 QSqlResult::savePrepare +112 QSqlResult::bindValue +120 QSqlResult::bindValue +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 QSqlResult::fetchNext +168 QSqlResult::fetchPrevious +176 __cxa_pure_virtual +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 __cxa_pure_virtual +208 QSqlResult::record +216 QSqlResult::lastInsertId +224 QSqlResult::virtual_hook + +Class QSqlResult + size=16 align=8 + base size=16 base align=8 +QSqlResult (0x7f0a6e627620) 0 + vptr=((& QSqlResult::_ZTV10QSqlResult) + 16u) + +Vtable for QSqlDriverCreatorBase +QSqlDriverCreatorBase::_ZTV21QSqlDriverCreatorBase: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QSqlDriverCreatorBase) +16 QSqlDriverCreatorBase::~QSqlDriverCreatorBase +24 QSqlDriverCreatorBase::~QSqlDriverCreatorBase +32 __cxa_pure_virtual + +Class QSqlDriverCreatorBase + size=8 align=8 + base size=8 base align=8 +QSqlDriverCreatorBase (0x7f0a6e627ee0) 0 nearly-empty + vptr=((& QSqlDriverCreatorBase::_ZTV21QSqlDriverCreatorBase) + 16u) + +Class QSqlDatabase + size=8 align=8 + base size=8 base align=8 +QSqlDatabase (0x7f0a6e6549a0) 0 + +Class QSqlQuery + size=8 align=8 + base size=8 base align=8 +QSqlQuery (0x7f0a6e665d90) 0 + +Vtable for QSqlDriverFactoryInterface +QSqlDriverFactoryInterface::_ZTV26QSqlDriverFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QSqlDriverFactoryInterface) +16 QSqlDriverFactoryInterface::~QSqlDriverFactoryInterface +24 QSqlDriverFactoryInterface::~QSqlDriverFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QSqlDriverFactoryInterface + size=8 align=8 + base size=8 base align=8 +QSqlDriverFactoryInterface (0x7f0a6e66f850) 0 nearly-empty + vptr=((& QSqlDriverFactoryInterface::_ZTV26QSqlDriverFactoryInterface) + 16u) + QFactoryInterface (0x7f0a6e66f8c0) 0 nearly-empty + primary-for QSqlDriverFactoryInterface (0x7f0a6e66f850) + +Vtable for QSqlDriverPlugin +QSqlDriverPlugin::_ZTV16QSqlDriverPlugin: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QSqlDriverPlugin) +16 QSqlDriverPlugin::metaObject +24 QSqlDriverPlugin::qt_metacast +32 QSqlDriverPlugin::qt_metacall +40 QSqlDriverPlugin::~QSqlDriverPlugin +48 QSqlDriverPlugin::~QSqlDriverPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI16QSqlDriverPlugin) +144 QSqlDriverPlugin::_ZThn16_N16QSqlDriverPluginD1Ev +152 QSqlDriverPlugin::_ZThn16_N16QSqlDriverPluginD0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QSqlDriverPlugin + size=24 align=8 + base size=24 base align=8 +QSqlDriverPlugin (0x7f0a6e659c80) 0 + vptr=((& QSqlDriverPlugin::_ZTV16QSqlDriverPlugin) + 16u) + QObject (0x7f0a6e6890e0) 0 + primary-for QSqlDriverPlugin (0x7f0a6e659c80) + QSqlDriverFactoryInterface (0x7f0a6e689150) 16 nearly-empty + vptr=((& QSqlDriverPlugin::_ZTV16QSqlDriverPlugin) + 144u) + QFactoryInterface (0x7f0a6e6891c0) 16 nearly-empty + primary-for QSqlDriverFactoryInterface (0x7f0a6e689150) + +Vtable for QSqlDriver +QSqlDriver::_ZTV10QSqlDriver: 32u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QSqlDriver) +16 QSqlDriver::metaObject +24 QSqlDriver::qt_metacast +32 QSqlDriver::qt_metacall +40 QSqlDriver::~QSqlDriver +48 QSqlDriver::~QSqlDriver +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QSqlDriver::isOpen +120 QSqlDriver::beginTransaction +128 QSqlDriver::commitTransaction +136 QSqlDriver::rollbackTransaction +144 QSqlDriver::tables +152 QSqlDriver::primaryIndex +160 QSqlDriver::record +168 QSqlDriver::formatValue +176 QSqlDriver::escapeIdentifier +184 QSqlDriver::sqlStatement +192 QSqlDriver::handle +200 __cxa_pure_virtual +208 __cxa_pure_virtual +216 __cxa_pure_virtual +224 __cxa_pure_virtual +232 QSqlDriver::setOpen +240 QSqlDriver::setOpenError +248 QSqlDriver::setLastError + +Class QSqlDriver + size=16 align=8 + base size=16 base align=8 +QSqlDriver (0x7f0a6e498070) 0 + vptr=((& QSqlDriver::_ZTV10QSqlDriver) + 16u) + QObject (0x7f0a6e4980e0) 0 + primary-for QSqlDriver (0x7f0a6e498070) + +Class QSqlError + size=24 align=8 + base size=24 base align=8 +QSqlError (0x7f0a6e4be700) 0 + +Class QSqlField + size=24 align=8 + base size=24 base align=8 +QSqlField (0x7f0a6e4c7620) 0 + +Vtable for QSqlQueryModel +QSqlQueryModel::_ZTV14QSqlQueryModel: 44u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QSqlQueryModel) +16 QSqlQueryModel::metaObject +24 QSqlQueryModel::qt_metacast +32 QSqlQueryModel::qt_metacall +40 QSqlQueryModel::~QSqlQueryModel +48 QSqlQueryModel::~QSqlQueryModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractTableModel::index +120 QAbstractTableModel::parent +128 QSqlQueryModel::rowCount +136 QSqlQueryModel::columnCount +144 QAbstractTableModel::hasChildren +152 QSqlQueryModel::data +160 QAbstractItemModel::setData +168 QSqlQueryModel::headerData +176 QSqlQueryModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractTableModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QSqlQueryModel::insertColumns +248 QAbstractItemModel::removeRows +256 QSqlQueryModel::removeColumns +264 QSqlQueryModel::fetchMore +272 QSqlQueryModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert +336 QSqlQueryModel::clear +344 QSqlQueryModel::queryChange + +Class QSqlQueryModel + size=16 align=8 + base size=16 base align=8 +QSqlQueryModel (0x7f0a6e4d9ee0) 0 + vptr=((& QSqlQueryModel::_ZTV14QSqlQueryModel) + 16u) + QAbstractTableModel (0x7f0a6e4d9f50) 0 + primary-for QSqlQueryModel (0x7f0a6e4d9ee0) + QAbstractItemModel (0x7f0a6e4e4000) 0 + primary-for QAbstractTableModel (0x7f0a6e4d9f50) + QObject (0x7f0a6e4e4070) 0 + primary-for QAbstractItemModel (0x7f0a6e4e4000) + +Vtable for QSqlTableModel +QSqlTableModel::_ZTV14QSqlTableModel: 55u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QSqlTableModel) +16 QSqlTableModel::metaObject +24 QSqlTableModel::qt_metacast +32 QSqlTableModel::qt_metacall +40 QSqlTableModel::~QSqlTableModel +48 QSqlTableModel::~QSqlTableModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractTableModel::index +120 QAbstractTableModel::parent +128 QSqlTableModel::rowCount +136 QSqlQueryModel::columnCount +144 QAbstractTableModel::hasChildren +152 QSqlTableModel::data +160 QSqlTableModel::setData +168 QSqlTableModel::headerData +176 QSqlQueryModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractTableModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QSqlTableModel::insertRows +240 QSqlQueryModel::insertColumns +248 QSqlTableModel::removeRows +256 QSqlTableModel::removeColumns +264 QSqlQueryModel::fetchMore +272 QSqlQueryModel::canFetchMore +280 QSqlTableModel::flags +288 QSqlTableModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QSqlTableModel::submit +328 QSqlTableModel::revert +336 QSqlTableModel::clear +344 QSqlQueryModel::queryChange +352 QSqlTableModel::select +360 QSqlTableModel::setTable +368 QSqlTableModel::setEditStrategy +376 QSqlTableModel::setSort +384 QSqlTableModel::setFilter +392 QSqlTableModel::revertRow +400 QSqlTableModel::updateRowInTable +408 QSqlTableModel::insertRowIntoTable +416 QSqlTableModel::deleteRowFromTable +424 QSqlTableModel::orderByClause +432 QSqlTableModel::selectStatement + +Class QSqlTableModel + size=16 align=8 + base size=16 base align=8 +QSqlTableModel (0x7f0a6e501850) 0 + vptr=((& QSqlTableModel::_ZTV14QSqlTableModel) + 16u) + QSqlQueryModel (0x7f0a6e5018c0) 0 + primary-for QSqlTableModel (0x7f0a6e501850) + QAbstractTableModel (0x7f0a6e501930) 0 + primary-for QSqlQueryModel (0x7f0a6e5018c0) + QAbstractItemModel (0x7f0a6e5019a0) 0 + primary-for QAbstractTableModel (0x7f0a6e501930) + QObject (0x7f0a6e501a10) 0 + primary-for QAbstractItemModel (0x7f0a6e5019a0) + +Class QSqlRelation + size=24 align=8 + base size=24 base align=8 +QSqlRelation (0x7f0a6e52d380) 0 + +Vtable for QSqlRelationalTableModel +QSqlRelationalTableModel::_ZTV24QSqlRelationalTableModel: 57u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QSqlRelationalTableModel) +16 QSqlRelationalTableModel::metaObject +24 QSqlRelationalTableModel::qt_metacast +32 QSqlRelationalTableModel::qt_metacall +40 QSqlRelationalTableModel::~QSqlRelationalTableModel +48 QSqlRelationalTableModel::~QSqlRelationalTableModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractTableModel::index +120 QAbstractTableModel::parent +128 QSqlTableModel::rowCount +136 QSqlQueryModel::columnCount +144 QAbstractTableModel::hasChildren +152 QSqlRelationalTableModel::data +160 QSqlRelationalTableModel::setData +168 QSqlTableModel::headerData +176 QSqlQueryModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractTableModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QSqlTableModel::insertRows +240 QSqlQueryModel::insertColumns +248 QSqlTableModel::removeRows +256 QSqlRelationalTableModel::removeColumns +264 QSqlQueryModel::fetchMore +272 QSqlQueryModel::canFetchMore +280 QSqlTableModel::flags +288 QSqlTableModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QSqlTableModel::submit +328 QSqlTableModel::revert +336 QSqlRelationalTableModel::clear +344 QSqlQueryModel::queryChange +352 QSqlRelationalTableModel::select +360 QSqlRelationalTableModel::setTable +368 QSqlTableModel::setEditStrategy +376 QSqlTableModel::setSort +384 QSqlTableModel::setFilter +392 QSqlRelationalTableModel::revertRow +400 QSqlRelationalTableModel::updateRowInTable +408 QSqlRelationalTableModel::insertRowIntoTable +416 QSqlTableModel::deleteRowFromTable +424 QSqlRelationalTableModel::orderByClause +432 QSqlRelationalTableModel::selectStatement +440 QSqlRelationalTableModel::setRelation +448 QSqlRelationalTableModel::relationModel + +Class QSqlRelationalTableModel + size=16 align=8 + base size=16 base align=8 +QSqlRelationalTableModel (0x7f0a6e543cb0) 0 + vptr=((& QSqlRelationalTableModel::_ZTV24QSqlRelationalTableModel) + 16u) + QSqlTableModel (0x7f0a6e543d20) 0 + primary-for QSqlRelationalTableModel (0x7f0a6e543cb0) + QSqlQueryModel (0x7f0a6e543d90) 0 + primary-for QSqlTableModel (0x7f0a6e543d20) + QAbstractTableModel (0x7f0a6e543e00) 0 + primary-for QSqlQueryModel (0x7f0a6e543d90) + QAbstractItemModel (0x7f0a6e543e70) 0 + primary-for QAbstractTableModel (0x7f0a6e543e00) + QObject (0x7f0a6e543ee0) 0 + primary-for QAbstractItemModel (0x7f0a6e543e70) + +Class QDomImplementation + size=8 align=8 + base size=8 base align=8 +QDomImplementation (0x7f0a6e563540) 0 + +Class QDomNode + size=8 align=8 + base size=8 base align=8 +QDomNode (0x7f0a6e563e70) 0 + +Class QDomNodeList + size=8 align=8 + base size=8 base align=8 +QDomNodeList (0x7f0a6e38f0e0) 0 + +Class QDomDocumentType + size=8 align=8 + base size=8 base align=8 +QDomDocumentType (0x7f0a6e398150) 0 + QDomNode (0x7f0a6e3981c0) 0 + +Class QDomDocument + size=8 align=8 + base size=8 base align=8 +QDomDocument (0x7f0a6e398cb0) 0 + QDomNode (0x7f0a6e398d20) 0 + +Class QDomNamedNodeMap + size=8 align=8 + base size=8 base align=8 +QDomNamedNodeMap (0x7f0a6e39ebd0) 0 + +Class QDomDocumentFragment + size=8 align=8 + base size=8 base align=8 +QDomDocumentFragment (0x7f0a6e3b0a10) 0 + QDomNode (0x7f0a6e3b0a80) 0 + +Class QDomCharacterData + size=8 align=8 + base size=8 base align=8 +QDomCharacterData (0x7f0a6e3bd5b0) 0 + QDomNode (0x7f0a6e3bd620) 0 + +Class QDomAttr + size=8 align=8 + base size=8 base align=8 +QDomAttr (0x7f0a6e3c5000) 0 + QDomNode (0x7f0a6e3c5070) 0 + +Class QDomElement + size=8 align=8 + base size=8 base align=8 +QDomElement (0x7f0a6e3c5b60) 0 + QDomNode (0x7f0a6e3c5bd0) 0 + +Class QDomText + size=8 align=8 + base size=8 base align=8 +QDomText (0x7f0a6e3cbe00) 0 + QDomCharacterData (0x7f0a6e3cbe70) 0 + QDomNode (0x7f0a6e3cbee0) 0 + +Class QDomComment + size=8 align=8 + base size=8 base align=8 +QDomComment (0x7f0a6e3e1b60) 0 + QDomCharacterData (0x7f0a6e3e1bd0) 0 + QDomNode (0x7f0a6e3e1c40) 0 + +Class QDomCDATASection + size=8 align=8 + base size=8 base align=8 +QDomCDATASection (0x7f0a6e3e7770) 0 + QDomText (0x7f0a6e3e77e0) 0 + QDomCharacterData (0x7f0a6e3e7850) 0 + QDomNode (0x7f0a6e3e78c0) 0 + +Class QDomNotation + size=8 align=8 + base size=8 base align=8 +QDomNotation (0x7f0a6e3ed3f0) 0 + QDomNode (0x7f0a6e3ed460) 0 + +Class QDomEntity + size=8 align=8 + base size=8 base align=8 +QDomEntity (0x7f0a6e3edf50) 0 + QDomNode (0x7f0a6e3f3000) 0 + +Class QDomEntityReference + size=8 align=8 + base size=8 base align=8 +QDomEntityReference (0x7f0a6e3f3af0) 0 + QDomNode (0x7f0a6e3f3b60) 0 + +Class QDomProcessingInstruction + size=8 align=8 + base size=8 base align=8 +QDomProcessingInstruction (0x7f0a6e3fa690) 0 + QDomNode (0x7f0a6e3fa700) 0 + +Class QXmlNamespaceSupport + size=8 align=8 + base size=8 base align=8 +QXmlNamespaceSupport (0x7f0a6e400230) 0 + +Class QXmlAttributes::Attribute + size=32 align=8 + base size=32 base align=8 +QXmlAttributes::Attribute (0x7f0a6e4008c0) 0 + +Vtable for QXmlAttributes +QXmlAttributes::_ZTV14QXmlAttributes: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QXmlAttributes) +16 QXmlAttributes::~QXmlAttributes +24 QXmlAttributes::~QXmlAttributes + +Class QXmlAttributes + size=24 align=8 + base size=24 base align=8 +QXmlAttributes (0x7f0a6e400770) 0 + vptr=((& QXmlAttributes::_ZTV14QXmlAttributes) + 16u) + +Vtable for QXmlInputSource +QXmlInputSource::_ZTV15QXmlInputSource: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QXmlInputSource) +16 QXmlInputSource::~QXmlInputSource +24 QXmlInputSource::~QXmlInputSource +32 QXmlInputSource::setData +40 QXmlInputSource::setData +48 QXmlInputSource::fetchData +56 QXmlInputSource::data +64 QXmlInputSource::next +72 QXmlInputSource::reset +80 QXmlInputSource::fromRawData + +Class QXmlInputSource + size=16 align=8 + base size=16 base align=8 +QXmlInputSource (0x7f0a6e441000) 0 + vptr=((& QXmlInputSource::_ZTV15QXmlInputSource) + 16u) + +Class QXmlParseException + size=8 align=8 + base size=8 base align=8 +QXmlParseException (0x7f0a6e441310) 0 + +Vtable for QXmlReader +QXmlReader::_ZTV10QXmlReader: 24u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QXmlReader) +16 QXmlReader::~QXmlReader +24 QXmlReader::~QXmlReader +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual + +Class QXmlReader + size=8 align=8 + base size=8 base align=8 +QXmlReader (0x7f0a6e4415b0) 0 nearly-empty + vptr=((& QXmlReader::_ZTV10QXmlReader) + 16u) + +Vtable for QXmlSimpleReader +QXmlSimpleReader::_ZTV16QXmlSimpleReader: 26u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QXmlSimpleReader) +16 QXmlSimpleReader::~QXmlSimpleReader +24 QXmlSimpleReader::~QXmlSimpleReader +32 QXmlSimpleReader::feature +40 QXmlSimpleReader::setFeature +48 QXmlSimpleReader::hasFeature +56 QXmlSimpleReader::property +64 QXmlSimpleReader::setProperty +72 QXmlSimpleReader::hasProperty +80 QXmlSimpleReader::setEntityResolver +88 QXmlSimpleReader::entityResolver +96 QXmlSimpleReader::setDTDHandler +104 QXmlSimpleReader::DTDHandler +112 QXmlSimpleReader::setContentHandler +120 QXmlSimpleReader::contentHandler +128 QXmlSimpleReader::setErrorHandler +136 QXmlSimpleReader::errorHandler +144 QXmlSimpleReader::setLexicalHandler +152 QXmlSimpleReader::lexicalHandler +160 QXmlSimpleReader::setDeclHandler +168 QXmlSimpleReader::declHandler +176 QXmlSimpleReader::parse +184 QXmlSimpleReader::parse +192 QXmlSimpleReader::parse +200 QXmlSimpleReader::parseContinue + +Class QXmlSimpleReader + size=16 align=8 + base size=16 base align=8 +QXmlSimpleReader (0x7f0a6e4412a0) 0 + vptr=((& QXmlSimpleReader::_ZTV16QXmlSimpleReader) + 16u) + QXmlReader (0x7f0a6e441690) 0 nearly-empty + primary-for QXmlSimpleReader (0x7f0a6e4412a0) + +Vtable for QXmlLocator +QXmlLocator::_ZTV11QXmlLocator: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QXmlLocator) +16 QXmlLocator::~QXmlLocator +24 QXmlLocator::~QXmlLocator +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QXmlLocator + size=8 align=8 + base size=8 base align=8 +QXmlLocator (0x7f0a6e45ea10) 0 nearly-empty + vptr=((& QXmlLocator::_ZTV11QXmlLocator) + 16u) + +Vtable for QXmlContentHandler +QXmlContentHandler::_ZTV18QXmlContentHandler: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QXmlContentHandler) +16 QXmlContentHandler::~QXmlContentHandler +24 QXmlContentHandler::~QXmlContentHandler +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QXmlContentHandler + size=8 align=8 + base size=8 base align=8 +QXmlContentHandler (0x7f0a6e45ec40) 0 nearly-empty + vptr=((& QXmlContentHandler::_ZTV18QXmlContentHandler) + 16u) + +Vtable for QXmlErrorHandler +QXmlErrorHandler::_ZTV16QXmlErrorHandler: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QXmlErrorHandler) +16 QXmlErrorHandler::~QXmlErrorHandler +24 QXmlErrorHandler::~QXmlErrorHandler +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual + +Class QXmlErrorHandler + size=8 align=8 + base size=8 base align=8 +QXmlErrorHandler (0x7f0a6e478540) 0 nearly-empty + vptr=((& QXmlErrorHandler::_ZTV16QXmlErrorHandler) + 16u) + +Vtable for QXmlDTDHandler +QXmlDTDHandler::_ZTV14QXmlDTDHandler: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QXmlDTDHandler) +16 QXmlDTDHandler::~QXmlDTDHandler +24 QXmlDTDHandler::~QXmlDTDHandler +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual + +Class QXmlDTDHandler + size=8 align=8 + base size=8 base align=8 +QXmlDTDHandler (0x7f0a6e478f50) 0 nearly-empty + vptr=((& QXmlDTDHandler::_ZTV14QXmlDTDHandler) + 16u) + +Vtable for QXmlEntityResolver +QXmlEntityResolver::_ZTV18QXmlEntityResolver: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QXmlEntityResolver) +16 QXmlEntityResolver::~QXmlEntityResolver +24 QXmlEntityResolver::~QXmlEntityResolver +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QXmlEntityResolver + size=8 align=8 + base size=8 base align=8 +QXmlEntityResolver (0x7f0a6e485930) 0 nearly-empty + vptr=((& QXmlEntityResolver::_ZTV18QXmlEntityResolver) + 16u) + +Vtable for QXmlLexicalHandler +QXmlLexicalHandler::_ZTV18QXmlLexicalHandler: 12u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QXmlLexicalHandler) +16 QXmlLexicalHandler::~QXmlLexicalHandler +24 QXmlLexicalHandler::~QXmlLexicalHandler +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual + +Class QXmlLexicalHandler + size=8 align=8 + base size=8 base align=8 +QXmlLexicalHandler (0x7f0a6e293310) 0 nearly-empty + vptr=((& QXmlLexicalHandler::_ZTV18QXmlLexicalHandler) + 16u) + +Vtable for QXmlDeclHandler +QXmlDeclHandler::_ZTV15QXmlDeclHandler: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QXmlDeclHandler) +16 QXmlDeclHandler::~QXmlDeclHandler +24 QXmlDeclHandler::~QXmlDeclHandler +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual + +Class QXmlDeclHandler + size=8 align=8 + base size=8 base align=8 +QXmlDeclHandler (0x7f0a6e293d20) 0 nearly-empty + vptr=((& QXmlDeclHandler::_ZTV15QXmlDeclHandler) + 16u) + +Vtable for QXmlDefaultHandler +QXmlDefaultHandler::_ZTV18QXmlDefaultHandler: 73u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QXmlDefaultHandler) +16 QXmlDefaultHandler::~QXmlDefaultHandler +24 QXmlDefaultHandler::~QXmlDefaultHandler +32 QXmlDefaultHandler::setDocumentLocator +40 QXmlDefaultHandler::startDocument +48 QXmlDefaultHandler::endDocument +56 QXmlDefaultHandler::startPrefixMapping +64 QXmlDefaultHandler::endPrefixMapping +72 QXmlDefaultHandler::startElement +80 QXmlDefaultHandler::endElement +88 QXmlDefaultHandler::characters +96 QXmlDefaultHandler::ignorableWhitespace +104 QXmlDefaultHandler::processingInstruction +112 QXmlDefaultHandler::skippedEntity +120 QXmlDefaultHandler::errorString +128 QXmlDefaultHandler::warning +136 QXmlDefaultHandler::error +144 QXmlDefaultHandler::fatalError +152 QXmlDefaultHandler::notationDecl +160 QXmlDefaultHandler::unparsedEntityDecl +168 QXmlDefaultHandler::resolveEntity +176 QXmlDefaultHandler::startDTD +184 QXmlDefaultHandler::endDTD +192 QXmlDefaultHandler::startEntity +200 QXmlDefaultHandler::endEntity +208 QXmlDefaultHandler::startCDATA +216 QXmlDefaultHandler::endCDATA +224 QXmlDefaultHandler::comment +232 QXmlDefaultHandler::attributeDecl +240 QXmlDefaultHandler::internalEntityDecl +248 QXmlDefaultHandler::externalEntityDecl +256 (int (*)(...))-0x00000000000000008 +264 (int (*)(...))(& _ZTI18QXmlDefaultHandler) +272 QXmlDefaultHandler::_ZThn8_N18QXmlDefaultHandlerD1Ev +280 QXmlDefaultHandler::_ZThn8_N18QXmlDefaultHandlerD0Ev +288 QXmlDefaultHandler::_ZThn8_N18QXmlDefaultHandler7warningERK18QXmlParseException +296 QXmlDefaultHandler::_ZThn8_N18QXmlDefaultHandler5errorERK18QXmlParseException +304 QXmlDefaultHandler::_ZThn8_N18QXmlDefaultHandler10fatalErrorERK18QXmlParseException +312 QXmlDefaultHandler::_ZThn8_NK18QXmlDefaultHandler11errorStringEv +320 (int (*)(...))-0x00000000000000010 +328 (int (*)(...))(& _ZTI18QXmlDefaultHandler) +336 QXmlDefaultHandler::_ZThn16_N18QXmlDefaultHandlerD1Ev +344 QXmlDefaultHandler::_ZThn16_N18QXmlDefaultHandlerD0Ev +352 QXmlDefaultHandler::_ZThn16_N18QXmlDefaultHandler12notationDeclERK7QStringS2_S2_ +360 QXmlDefaultHandler::_ZThn16_N18QXmlDefaultHandler18unparsedEntityDeclERK7QStringS2_S2_S2_ +368 QXmlDefaultHandler::_ZThn16_NK18QXmlDefaultHandler11errorStringEv +376 (int (*)(...))-0x00000000000000018 +384 (int (*)(...))(& _ZTI18QXmlDefaultHandler) +392 QXmlDefaultHandler::_ZThn24_N18QXmlDefaultHandlerD1Ev +400 QXmlDefaultHandler::_ZThn24_N18QXmlDefaultHandlerD0Ev +408 QXmlDefaultHandler::_ZThn24_N18QXmlDefaultHandler13resolveEntityERK7QStringS2_RP15QXmlInputSource +416 QXmlDefaultHandler::_ZThn24_NK18QXmlDefaultHandler11errorStringEv +424 (int (*)(...))-0x00000000000000020 +432 (int (*)(...))(& _ZTI18QXmlDefaultHandler) +440 QXmlDefaultHandler::_ZThn32_N18QXmlDefaultHandlerD1Ev +448 QXmlDefaultHandler::_ZThn32_N18QXmlDefaultHandlerD0Ev +456 QXmlDefaultHandler::_ZThn32_N18QXmlDefaultHandler8startDTDERK7QStringS2_S2_ +464 QXmlDefaultHandler::_ZThn32_N18QXmlDefaultHandler6endDTDEv +472 QXmlDefaultHandler::_ZThn32_N18QXmlDefaultHandler11startEntityERK7QString +480 QXmlDefaultHandler::_ZThn32_N18QXmlDefaultHandler9endEntityERK7QString +488 QXmlDefaultHandler::_ZThn32_N18QXmlDefaultHandler10startCDATAEv +496 QXmlDefaultHandler::_ZThn32_N18QXmlDefaultHandler8endCDATAEv +504 QXmlDefaultHandler::_ZThn32_N18QXmlDefaultHandler7commentERK7QString +512 QXmlDefaultHandler::_ZThn32_NK18QXmlDefaultHandler11errorStringEv +520 (int (*)(...))-0x00000000000000028 +528 (int (*)(...))(& _ZTI18QXmlDefaultHandler) +536 QXmlDefaultHandler::_ZThn40_N18QXmlDefaultHandlerD1Ev +544 QXmlDefaultHandler::_ZThn40_N18QXmlDefaultHandlerD0Ev +552 QXmlDefaultHandler::_ZThn40_N18QXmlDefaultHandler13attributeDeclERK7QStringS2_S2_S2_S2_ +560 QXmlDefaultHandler::_ZThn40_N18QXmlDefaultHandler18internalEntityDeclERK7QStringS2_ +568 QXmlDefaultHandler::_ZThn40_N18QXmlDefaultHandler18externalEntityDeclERK7QStringS2_S2_ +576 QXmlDefaultHandler::_ZThn40_NK18QXmlDefaultHandler11errorStringEv + +Class QXmlDefaultHandler + size=56 align=8 + base size=56 base align=8 +QXmlDefaultHandler (0x7f0a6e29f8c0) 0 + vptr=((& QXmlDefaultHandler::_ZTV18QXmlDefaultHandler) + 16u) + QXmlContentHandler (0x7f0a6e2a2690) 0 nearly-empty + primary-for QXmlDefaultHandler (0x7f0a6e29f8c0) + QXmlErrorHandler (0x7f0a6e2a2700) 8 nearly-empty + vptr=((& QXmlDefaultHandler::_ZTV18QXmlDefaultHandler) + 272u) + QXmlDTDHandler (0x7f0a6e2a2770) 16 nearly-empty + vptr=((& QXmlDefaultHandler::_ZTV18QXmlDefaultHandler) + 336u) + QXmlEntityResolver (0x7f0a6e2a27e0) 24 nearly-empty + vptr=((& QXmlDefaultHandler::_ZTV18QXmlDefaultHandler) + 392u) + QXmlLexicalHandler (0x7f0a6e2a2850) 32 nearly-empty + vptr=((& QXmlDefaultHandler::_ZTV18QXmlDefaultHandler) + 440u) + QXmlDeclHandler (0x7f0a6e2a28c0) 40 nearly-empty + vptr=((& QXmlDefaultHandler::_ZTV18QXmlDefaultHandler) + 536u) + +Class QSslCertificate + size=8 align=8 + base size=8 base align=8 +QSslCertificate (0x7f0a6e2f6230) 0 + +Class QSslError + size=8 align=8 + base size=8 base align=8 +QSslError (0x7f0a6e30ccb0) 0 + +Class QSslCipher + size=8 align=8 + base size=8 base align=8 +QSslCipher (0x7f0a6e315a80) 0 + +Vtable for QAbstractSocket +QAbstractSocket::_ZTV15QAbstractSocket: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QAbstractSocket) +16 QAbstractSocket::metaObject +24 QAbstractSocket::qt_metacast +32 QAbstractSocket::qt_metacall +40 QAbstractSocket::~QAbstractSocket +48 QAbstractSocket::~QAbstractSocket +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractSocket::isSequential +120 QIODevice::open +128 QAbstractSocket::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QAbstractSocket::atEnd +168 QIODevice::reset +176 QAbstractSocket::bytesAvailable +184 QAbstractSocket::bytesToWrite +192 QAbstractSocket::canReadLine +200 QAbstractSocket::waitForReadyRead +208 QAbstractSocket::waitForBytesWritten +216 QAbstractSocket::readData +224 QAbstractSocket::readLineData +232 QAbstractSocket::writeData + +Class QAbstractSocket + size=16 align=8 + base size=16 base align=8 +QAbstractSocket (0x7f0a6e3223f0) 0 + vptr=((& QAbstractSocket::_ZTV15QAbstractSocket) + 16u) + QIODevice (0x7f0a6e322460) 0 + primary-for QAbstractSocket (0x7f0a6e3223f0) + QObject (0x7f0a6e3224d0) 0 + primary-for QIODevice (0x7f0a6e322460) + +Vtable for QTcpSocket +QTcpSocket::_ZTV10QTcpSocket: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTcpSocket) +16 QTcpSocket::metaObject +24 QTcpSocket::qt_metacast +32 QTcpSocket::qt_metacall +40 QTcpSocket::~QTcpSocket +48 QTcpSocket::~QTcpSocket +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractSocket::isSequential +120 QIODevice::open +128 QAbstractSocket::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QAbstractSocket::atEnd +168 QIODevice::reset +176 QAbstractSocket::bytesAvailable +184 QAbstractSocket::bytesToWrite +192 QAbstractSocket::canReadLine +200 QAbstractSocket::waitForReadyRead +208 QAbstractSocket::waitForBytesWritten +216 QAbstractSocket::readData +224 QAbstractSocket::readLineData +232 QAbstractSocket::writeData + +Class QTcpSocket + size=16 align=8 + base size=16 base align=8 +QTcpSocket (0x7f0a6e35da80) 0 + vptr=((& QTcpSocket::_ZTV10QTcpSocket) + 16u) + QAbstractSocket (0x7f0a6e35daf0) 0 + primary-for QTcpSocket (0x7f0a6e35da80) + QIODevice (0x7f0a6e35db60) 0 + primary-for QAbstractSocket (0x7f0a6e35daf0) + QObject (0x7f0a6e35dbd0) 0 + primary-for QIODevice (0x7f0a6e35db60) + +Vtable for QSslSocket +QSslSocket::_ZTV10QSslSocket: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QSslSocket) +16 QSslSocket::metaObject +24 QSslSocket::qt_metacast +32 QSslSocket::qt_metacall +40 QSslSocket::~QSslSocket +48 QSslSocket::~QSslSocket +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractSocket::isSequential +120 QIODevice::open +128 QSslSocket::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QSslSocket::atEnd +168 QIODevice::reset +176 QSslSocket::bytesAvailable +184 QSslSocket::bytesToWrite +192 QSslSocket::canReadLine +200 QSslSocket::waitForReadyRead +208 QSslSocket::waitForBytesWritten +216 QSslSocket::readData +224 QAbstractSocket::readLineData +232 QSslSocket::writeData + +Class QSslSocket + size=16 align=8 + base size=16 base align=8 +QSslSocket (0x7f0a6e37b540) 0 + vptr=((& QSslSocket::_ZTV10QSslSocket) + 16u) + QTcpSocket (0x7f0a6e37b5b0) 0 + primary-for QSslSocket (0x7f0a6e37b540) + QAbstractSocket (0x7f0a6e37b620) 0 + primary-for QTcpSocket (0x7f0a6e37b5b0) + QIODevice (0x7f0a6e37b690) 0 + primary-for QAbstractSocket (0x7f0a6e37b620) + QObject (0x7f0a6e37b700) 0 + primary-for QIODevice (0x7f0a6e37b690) + +Class QSslConfiguration + size=8 align=8 + base size=8 base align=8 +QSslConfiguration (0x7f0a6e1b12a0) 0 + +Class QSslKey + size=8 align=8 + base size=8 base align=8 +QSslKey (0x7f0a6e1cb000) 0 + +Vtable for QHttpHeader +QHttpHeader::_ZTV11QHttpHeader: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QHttpHeader) +16 QHttpHeader::~QHttpHeader +24 QHttpHeader::~QHttpHeader +32 QHttpHeader::toString +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QHttpHeader::parseLine + +Class QHttpHeader + size=16 align=8 + base size=16 base align=8 +QHttpHeader (0x7f0a6e1cbb60) 0 + vptr=((& QHttpHeader::_ZTV11QHttpHeader) + 16u) + +Vtable for QHttpResponseHeader +QHttpResponseHeader::_ZTV19QHttpResponseHeader: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QHttpResponseHeader) +16 QHttpResponseHeader::~QHttpResponseHeader +24 QHttpResponseHeader::~QHttpResponseHeader +32 QHttpResponseHeader::toString +40 QHttpResponseHeader::majorVersion +48 QHttpResponseHeader::minorVersion +56 QHttpResponseHeader::parseLine + +Class QHttpResponseHeader + size=16 align=8 + base size=16 base align=8 +QHttpResponseHeader (0x7f0a6e1da850) 0 + vptr=((& QHttpResponseHeader::_ZTV19QHttpResponseHeader) + 16u) + QHttpHeader (0x7f0a6e1da8c0) 0 + primary-for QHttpResponseHeader (0x7f0a6e1da850) + +Vtable for QHttpRequestHeader +QHttpRequestHeader::_ZTV18QHttpRequestHeader: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QHttpRequestHeader) +16 QHttpRequestHeader::~QHttpRequestHeader +24 QHttpRequestHeader::~QHttpRequestHeader +32 QHttpRequestHeader::toString +40 QHttpRequestHeader::majorVersion +48 QHttpRequestHeader::minorVersion +56 QHttpRequestHeader::parseLine + +Class QHttpRequestHeader + size=16 align=8 + base size=16 base align=8 +QHttpRequestHeader (0x7f0a6e1f24d0) 0 + vptr=((& QHttpRequestHeader::_ZTV18QHttpRequestHeader) + 16u) + QHttpHeader (0x7f0a6e1f2540) 0 + primary-for QHttpRequestHeader (0x7f0a6e1f24d0) + +Vtable for QHttp +QHttp::_ZTV5QHttp: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QHttp) +16 QHttp::metaObject +24 QHttp::qt_metacast +32 QHttp::qt_metacall +40 QHttp::~QHttp +48 QHttp::~QHttp +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QHttp + size=16 align=8 + base size=16 base align=8 +QHttp (0x7f0a6e1fe0e0) 0 + vptr=((& QHttp::_ZTV5QHttp) + 16u) + QObject (0x7f0a6e1fe150) 0 + primary-for QHttp (0x7f0a6e1fe0e0) + +Class QNetworkRequest + size=8 align=8 + base size=8 base align=8 +QNetworkRequest (0x7f0a6e22c310) 0 + +Vtable for QNetworkAccessManager +QNetworkAccessManager::_ZTV21QNetworkAccessManager: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QNetworkAccessManager) +16 QNetworkAccessManager::metaObject +24 QNetworkAccessManager::qt_metacast +32 QNetworkAccessManager::qt_metacall +40 QNetworkAccessManager::~QNetworkAccessManager +48 QNetworkAccessManager::~QNetworkAccessManager +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QNetworkAccessManager::createRequest + +Class QNetworkAccessManager + size=16 align=8 + base size=16 base align=8 +QNetworkAccessManager (0x7f0a6e249230) 0 + vptr=((& QNetworkAccessManager::_ZTV21QNetworkAccessManager) + 16u) + QObject (0x7f0a6e2492a0) 0 + primary-for QNetworkAccessManager (0x7f0a6e249230) + +Class QNetworkCookie + size=8 align=8 + base size=8 base align=8 +QNetworkCookie (0x7f0a6e263770) 0 + +Vtable for QNetworkCookieJar +QNetworkCookieJar::_ZTV17QNetworkCookieJar: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QNetworkCookieJar) +16 QNetworkCookieJar::metaObject +24 QNetworkCookieJar::qt_metacast +32 QNetworkCookieJar::qt_metacall +40 QNetworkCookieJar::~QNetworkCookieJar +48 QNetworkCookieJar::~QNetworkCookieJar +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QNetworkCookieJar::cookiesForUrl +120 QNetworkCookieJar::setCookiesFromUrl + +Class QNetworkCookieJar + size=16 align=8 + base size=16 base align=8 +QNetworkCookieJar (0x7f0a6e2708c0) 0 + vptr=((& QNetworkCookieJar::_ZTV17QNetworkCookieJar) + 16u) + QObject (0x7f0a6e270930) 0 + primary-for QNetworkCookieJar (0x7f0a6e2708c0) + +Vtable for QNetworkReply +QNetworkReply::_ZTV13QNetworkReply: 33u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QNetworkReply) +16 QNetworkReply::metaObject +24 QNetworkReply::qt_metacast +32 QNetworkReply::qt_metacall +40 QNetworkReply::~QNetworkReply +48 QNetworkReply::~QNetworkReply +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QNetworkReply::isSequential +120 QIODevice::open +128 QNetworkReply::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QIODevice::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 __cxa_pure_virtual +224 QIODevice::readLineData +232 QNetworkReply::writeData +240 __cxa_pure_virtual +248 QNetworkReply::setReadBufferSize +256 QNetworkReply::ignoreSslErrors + +Class QNetworkReply + size=16 align=8 + base size=16 base align=8 +QNetworkReply (0x7f0a6e016770) 0 + vptr=((& QNetworkReply::_ZTV13QNetworkReply) + 16u) + QIODevice (0x7f0a6e0167e0) 0 + primary-for QNetworkReply (0x7f0a6e016770) + QObject (0x7f0a6e016850) 0 + primary-for QIODevice (0x7f0a6e0167e0) + +Vtable for QUrlInfo +QUrlInfo::_ZTV8QUrlInfo: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QUrlInfo) +16 QUrlInfo::~QUrlInfo +24 QUrlInfo::~QUrlInfo +32 QUrlInfo::setName +40 QUrlInfo::setDir +48 QUrlInfo::setFile +56 QUrlInfo::setSymLink +64 QUrlInfo::setOwner +72 QUrlInfo::setGroup +80 QUrlInfo::setSize +88 QUrlInfo::setWritable +96 QUrlInfo::setReadable +104 QUrlInfo::setPermissions +112 QUrlInfo::setLastModified + +Class QUrlInfo + size=16 align=8 + base size=16 base align=8 +QUrlInfo (0x7f0a6e0433f0) 0 + vptr=((& QUrlInfo::_ZTV8QUrlInfo) + 16u) + +Vtable for QFtp +QFtp::_ZTV4QFtp: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI4QFtp) +16 QFtp::metaObject +24 QFtp::qt_metacast +32 QFtp::qt_metacall +40 QFtp::~QFtp +48 QFtp::~QFtp +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QFtp + size=16 align=8 + base size=16 base align=8 +QFtp (0x7f0a6e053380) 0 + vptr=((& QFtp::_ZTV4QFtp) + 16u) + QObject (0x7f0a6e0533f0) 0 + primary-for QFtp (0x7f0a6e053380) + +Class QNetworkCacheMetaData + size=8 align=8 + base size=8 base align=8 +QNetworkCacheMetaData (0x7f0a6e0849a0) 0 + +Vtable for QAbstractNetworkCache +QAbstractNetworkCache::_ZTV21QAbstractNetworkCache: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QAbstractNetworkCache) +16 QAbstractNetworkCache::metaObject +24 QAbstractNetworkCache::qt_metacast +32 QAbstractNetworkCache::qt_metacall +40 QAbstractNetworkCache::~QAbstractNetworkCache +48 QAbstractNetworkCache::~QAbstractNetworkCache +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QAbstractNetworkCache + size=16 align=8 + base size=16 base align=8 +QAbstractNetworkCache (0x7f0a6e08ccb0) 0 + vptr=((& QAbstractNetworkCache::_ZTV21QAbstractNetworkCache) + 16u) + QObject (0x7f0a6e08cd20) 0 + primary-for QAbstractNetworkCache (0x7f0a6e08ccb0) + +Vtable for QNetworkDiskCache +QNetworkDiskCache::_ZTV17QNetworkDiskCache: 23u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QNetworkDiskCache) +16 QNetworkDiskCache::metaObject +24 QNetworkDiskCache::qt_metacast +32 QNetworkDiskCache::qt_metacall +40 QNetworkDiskCache::~QNetworkDiskCache +48 QNetworkDiskCache::~QNetworkDiskCache +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QNetworkDiskCache::metaData +120 QNetworkDiskCache::updateMetaData +128 QNetworkDiskCache::data +136 QNetworkDiskCache::remove +144 QNetworkDiskCache::cacheSize +152 QNetworkDiskCache::prepare +160 QNetworkDiskCache::insert +168 QNetworkDiskCache::clear +176 QNetworkDiskCache::expire + +Class QNetworkDiskCache + size=16 align=8 + base size=16 base align=8 +QNetworkDiskCache (0x7f0a6e0b5620) 0 + vptr=((& QNetworkDiskCache::_ZTV17QNetworkDiskCache) + 16u) + QAbstractNetworkCache (0x7f0a6e0b5690) 0 + primary-for QNetworkDiskCache (0x7f0a6e0b5620) + QObject (0x7f0a6e0b5700) 0 + primary-for QAbstractNetworkCache (0x7f0a6e0b5690) + +Class QIPv6Address + size=16 align=1 + base size=16 base align=1 +QIPv6Address (0x7f0a6e0c5f50) 0 + +Class QHostAddress + size=8 align=8 + base size=8 base align=8 +QHostAddress (0x7f0a6e0cd5b0) 0 + +Class QNetworkAddressEntry + size=8 align=8 + base size=8 base align=8 +QNetworkAddressEntry (0x7f0a6e0f4540) 0 + +Class QNetworkInterface + size=8 align=8 + base size=8 base align=8 +QNetworkInterface (0x7f0a6e0f4d90) 0 + +Class QAuthenticator + size=8 align=8 + base size=8 base align=8 +QAuthenticator (0x7f0a6df37af0) 0 + +Class QHostInfo + size=8 align=8 + base size=8 base align=8 +QHostInfo (0x7f0a6df483f0) 0 + +Class QNetworkProxyQuery + size=8 align=8 + base size=8 base align=8 +QNetworkProxyQuery (0x7f0a6df48c40) 0 + +Class QNetworkProxy + size=8 align=8 + base size=8 base align=8 +QNetworkProxy (0x7f0a6df5af50) 0 + +Vtable for QNetworkProxyFactory +QNetworkProxyFactory::_ZTV20QNetworkProxyFactory: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QNetworkProxyFactory) +16 QNetworkProxyFactory::~QNetworkProxyFactory +24 QNetworkProxyFactory::~QNetworkProxyFactory +32 __cxa_pure_virtual + +Class QNetworkProxyFactory + size=8 align=8 + base size=8 base align=8 +QNetworkProxyFactory (0x7f0a6dfba380) 0 nearly-empty + vptr=((& QNetworkProxyFactory::_ZTV20QNetworkProxyFactory) + 16u) + +Vtable for QLocalServer +QLocalServer::_ZTV12QLocalServer: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QLocalServer) +16 QLocalServer::metaObject +24 QLocalServer::qt_metacast +32 QLocalServer::qt_metacall +40 QLocalServer::~QLocalServer +48 QLocalServer::~QLocalServer +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QLocalServer::hasPendingConnections +120 QLocalServer::nextPendingConnection +128 QLocalServer::incomingConnection + +Class QLocalServer + size=16 align=8 + base size=16 base align=8 +QLocalServer (0x7f0a6dfba690) 0 + vptr=((& QLocalServer::_ZTV12QLocalServer) + 16u) + QObject (0x7f0a6dfba700) 0 + primary-for QLocalServer (0x7f0a6dfba690) + +Vtable for QLocalSocket +QLocalSocket::_ZTV12QLocalSocket: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QLocalSocket) +16 QLocalSocket::metaObject +24 QLocalSocket::qt_metacast +32 QLocalSocket::qt_metacall +40 QLocalSocket::~QLocalSocket +48 QLocalSocket::~QLocalSocket +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QLocalSocket::isSequential +120 QIODevice::open +128 QLocalSocket::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QIODevice::atEnd +168 QIODevice::reset +176 QLocalSocket::bytesAvailable +184 QLocalSocket::bytesToWrite +192 QLocalSocket::canReadLine +200 QLocalSocket::waitForReadyRead +208 QLocalSocket::waitForBytesWritten +216 QLocalSocket::readData +224 QIODevice::readLineData +232 QLocalSocket::writeData + +Class QLocalSocket + size=16 align=8 + base size=16 base align=8 +QLocalSocket (0x7f0a6dfd9070) 0 + vptr=((& QLocalSocket::_ZTV12QLocalSocket) + 16u) + QIODevice (0x7f0a6dfd90e0) 0 + primary-for QLocalSocket (0x7f0a6dfd9070) + QObject (0x7f0a6dfd9150) 0 + primary-for QIODevice (0x7f0a6dfd90e0) + +Vtable for QTcpServer +QTcpServer::_ZTV10QTcpServer: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTcpServer) +16 QTcpServer::metaObject +24 QTcpServer::qt_metacast +32 QTcpServer::qt_metacall +40 QTcpServer::~QTcpServer +48 QTcpServer::~QTcpServer +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTcpServer::hasPendingConnections +120 QTcpServer::nextPendingConnection +128 QTcpServer::incomingConnection + +Class QTcpServer + size=16 align=8 + base size=16 base align=8 +QTcpServer (0x7f0a6dffc230) 0 + vptr=((& QTcpServer::_ZTV10QTcpServer) + 16u) + QObject (0x7f0a6dffc2a0) 0 + primary-for QTcpServer (0x7f0a6dffc230) + +Vtable for QUdpSocket +QUdpSocket::_ZTV10QUdpSocket: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QUdpSocket) +16 QUdpSocket::metaObject +24 QUdpSocket::qt_metacast +32 QUdpSocket::qt_metacall +40 QUdpSocket::~QUdpSocket +48 QUdpSocket::~QUdpSocket +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractSocket::isSequential +120 QIODevice::open +128 QAbstractSocket::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QAbstractSocket::atEnd +168 QIODevice::reset +176 QAbstractSocket::bytesAvailable +184 QAbstractSocket::bytesToWrite +192 QAbstractSocket::canReadLine +200 QAbstractSocket::waitForReadyRead +208 QAbstractSocket::waitForBytesWritten +216 QAbstractSocket::readData +224 QAbstractSocket::readLineData +232 QAbstractSocket::writeData + +Class QUdpSocket + size=16 align=8 + base size=16 base align=8 +QUdpSocket (0x7f0a6de10d20) 0 + vptr=((& QUdpSocket::_ZTV10QUdpSocket) + 16u) + QAbstractSocket (0x7f0a6de10d90) 0 + primary-for QUdpSocket (0x7f0a6de10d20) + QIODevice (0x7f0a6de10e00) 0 + primary-for QAbstractSocket (0x7f0a6de10d90) + QObject (0x7f0a6de10e70) 0 + primary-for QIODevice (0x7f0a6de10e00) + +Class QFont + size=16 align=8 + base size=12 base align=8 +QFont (0x7f0a6de4fa80) 0 + +Vtable for QAbstractUndoItem +QAbstractUndoItem::_ZTV17QAbstractUndoItem: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAbstractUndoItem) +16 __cxa_pure_virtual +24 __cxa_pure_virtual +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QAbstractUndoItem + size=8 align=8 + base size=8 base align=8 +QAbstractUndoItem (0x7f0a6de9a700) 0 nearly-empty + vptr=((& QAbstractUndoItem::_ZTV17QAbstractUndoItem) + 16u) + +Vtable for QTextDocument +QTextDocument::_ZTV13QTextDocument: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QTextDocument) +16 QTextDocument::metaObject +24 QTextDocument::qt_metacast +32 QTextDocument::qt_metacall +40 QTextDocument::~QTextDocument +48 QTextDocument::~QTextDocument +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTextDocument::clear +120 QTextDocument::createObject +128 QTextDocument::loadResource + +Class QTextDocument + size=16 align=8 + base size=16 base align=8 +QTextDocument (0x7f0a6deab150) 0 + vptr=((& QTextDocument::_ZTV13QTextDocument) + 16u) + QObject (0x7f0a6deab1c0) 0 + primary-for QTextDocument (0x7f0a6deab150) + +Class QHelpGlobal + size=1 align=1 + base size=0 base align=1 +QHelpGlobal (0x7f0a6dd0a150) 0 empty + +Vtable for QPaintDevice +QPaintDevice::_ZTV12QPaintDevice: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QPaintDevice) +16 QPaintDevice::~QPaintDevice +24 QPaintDevice::~QPaintDevice +32 QPaintDevice::devType +40 __cxa_pure_virtual +48 QPaintDevice::metric + +Class QPaintDevice + size=16 align=8 + base size=10 base align=8 +QPaintDevice (0x7f0a6dd31620) 0 + vptr=((& QPaintDevice::_ZTV12QPaintDevice) + 16u) + +Class QColor + size=16 align=4 + base size=14 base align=4 +QColor (0x7f0a6dd619a0) 0 + +Class QPolygon + size=8 align=8 + base size=8 base align=8 +QPolygon (0x7f0a6ddaed90) 0 + QVector (0x7f0a6ddaee00) 0 + +Class QPolygonF + size=8 align=8 + base size=8 base align=8 +QPolygonF (0x7f0a6ddf4ee0) 0 + QVector (0x7f0a6ddf4f50) 0 + +Class QRegion::QRegionData + size=32 align=8 + base size=32 base align=8 +QRegion::QRegionData (0x7f0a6dc553f0) 0 + +Class QRegion + size=8 align=8 + base size=8 base align=8 +QRegion (0x7f0a6dc34b60) 0 + +Class QMatrix + size=48 align=8 + base size=48 base align=8 +QMatrix (0x7f0a6dc6acb0) 0 + +Class QPainterPath::Element + size=24 align=8 + base size=24 base align=8 +QPainterPath::Element (0x7f0a6dca0700) 0 + +Class QPainterPath + size=8 align=8 + base size=8 base align=8 +QPainterPath (0x7f0a6dca0690) 0 + +Class QPainterPathPrivate + size=16 align=8 + base size=16 base align=8 +QPainterPathPrivate (0x7f0a6dce5a80) 0 + +Class QPainterPathStroker + size=8 align=8 + base size=8 base align=8 +QPainterPathStroker (0x7f0a6dcec620) 0 + +Class QTransform + size=88 align=8 + base size=88 base align=8 +QTransform (0x7f0a6db531c0) 0 + +Class QImageTextKeyLang + size=16 align=8 + base size=16 base align=8 +QImageTextKeyLang (0x7f0a6dbcc4d0) 0 + +Vtable for QImage +QImage::_ZTV6QImage: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QImage) +16 QImage::~QImage +24 QImage::~QImage +32 QImage::devType +40 QImage::paintEngine +48 QImage::metric + +Class QImage + size=24 align=8 + base size=24 base align=8 +QImage (0x7f0a6dbf2d20) 0 + vptr=((& QImage::_ZTV6QImage) + 16u) + QPaintDevice (0x7f0a6dbf2d90) 0 + primary-for QImage (0x7f0a6dbf2d20) + +Vtable for QPixmap +QPixmap::_ZTV7QPixmap: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QPixmap) +16 QPixmap::~QPixmap +24 QPixmap::~QPixmap +32 QPixmap::devType +40 QPixmap::paintEngine +48 QPixmap::metric + +Class QPixmap + size=24 align=8 + base size=24 base align=8 +QPixmap (0x7f0a6da93770) 0 + vptr=((& QPixmap::_ZTV7QPixmap) + 16u) + QPaintDevice (0x7f0a6da937e0) 0 + primary-for QPixmap (0x7f0a6da93770) + +Class QBrush + size=8 align=8 + base size=8 base align=8 +QBrush (0x7f0a6dae8930) 0 + +Class QBrushData + size=112 align=8 + base size=112 base align=8 +QBrushData (0x7f0a6d90c540) 0 + +Class QGradient + size=64 align=8 + base size=64 base align=8 +QGradient (0x7f0a6d914700) 0 + +Class QLinearGradient + size=64 align=8 + base size=64 base align=8 +QLinearGradient (0x7f0a6d9551c0) 0 + QGradient (0x7f0a6d955230) 0 + +Class QRadialGradient + size=64 align=8 + base size=64 base align=8 +QRadialGradient (0x7f0a6d955690) 0 + QGradient (0x7f0a6d955700) 0 + +Class QConicalGradient + size=64 align=8 + base size=64 base align=8 +QConicalGradient (0x7f0a6d955c40) 0 + QGradient (0x7f0a6d955cb0) 0 + +Class QPalette + size=16 align=8 + base size=12 base align=8 +QPalette (0x7f0a6d96d000) 0 + +Class QColorGroup + size=16 align=8 + base size=12 base align=8 +QColorGroup (0x7f0a6d9b4930) 0 + QPalette (0x7f0a6d9b49a0) 0 + +Class QFontMetrics + size=8 align=8 + base size=8 base align=8 +QFontMetrics (0x7f0a6d9eec40) 0 + +Class QFontMetricsF + size=8 align=8 + base size=8 base align=8 +QFontMetricsF (0x7f0a6d80f0e0) 0 + +Class QFontInfo + size=8 align=8 + base size=8 base align=8 +QFontInfo (0x7f0a6d821000) 0 + +Class QSizePolicy + size=4 align=4 + base size=4 base align=4 +QSizePolicy (0x7f0a6d821af0) 0 + +Class QCursor + size=8 align=8 + base size=8 base align=8 +QCursor (0x7f0a6d8fb850) 0 + +Class QKeySequence + size=8 align=8 + base size=8 base align=8 +QKeySequence (0x7f0a6d709070) 0 + +Class QWidgetData + size=88 align=8 + base size=88 base align=8 +QWidgetData (0x7f0a6d735c40) 0 + +Vtable for QWidget +QWidget::_ZTV7QWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QWidget) +16 QWidget::metaObject +24 QWidget::qt_metacast +32 QWidget::qt_metacall +40 QWidget::~QWidget +48 QWidget::~QWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI7QWidget) +464 QWidget::_ZThn16_N7QWidgetD1Ev +472 QWidget::_ZThn16_N7QWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWidget + size=40 align=8 + base size=40 base align=8 +QWidget (0x7f0a6d74a180) 0 + vptr=((& QWidget::_ZTV7QWidget) + 16u) + QObject (0x7f0a6d735cb0) 0 + primary-for QWidget (0x7f0a6d74a180) + QPaintDevice (0x7f0a6d735d20) 16 + vptr=((& QWidget::_ZTV7QWidget) + 464u) + +Vtable for QFrame +QFrame::_ZTV6QFrame: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QFrame) +16 QFrame::metaObject +24 QFrame::qt_metacast +32 QFrame::qt_metacall +40 QFrame::~QFrame +48 QFrame::~QFrame +56 QFrame::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QFrame::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFrame::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI6QFrame) +464 QFrame::_ZThn16_N6QFrameD1Ev +472 QFrame::_ZThn16_N6QFrameD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFrame + size=40 align=8 + base size=40 base align=8 +QFrame (0x7f0a6d6c0a80) 0 + vptr=((& QFrame::_ZTV6QFrame) + 16u) + QWidget (0x7f0a6d6bdb80) 0 + primary-for QFrame (0x7f0a6d6c0a80) + QObject (0x7f0a6d6c0af0) 0 + primary-for QWidget (0x7f0a6d6bdb80) + QPaintDevice (0x7f0a6d6c0b60) 16 + vptr=((& QFrame::_ZTV6QFrame) + 464u) + +Vtable for QAbstractScrollArea +QAbstractScrollArea::_ZTV19QAbstractScrollArea: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractScrollArea) +16 QAbstractScrollArea::metaObject +24 QAbstractScrollArea::qt_metacast +32 QAbstractScrollArea::qt_metacall +40 QAbstractScrollArea::~QAbstractScrollArea +48 QAbstractScrollArea::~QAbstractScrollArea +56 QAbstractScrollArea::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractScrollArea::mousePressEvent +168 QAbstractScrollArea::mouseReleaseEvent +176 QAbstractScrollArea::mouseDoubleClickEvent +184 QAbstractScrollArea::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractScrollArea::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractScrollArea::paintEvent +256 QWidget::moveEvent +264 QAbstractScrollArea::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractScrollArea::dragEnterEvent +312 QAbstractScrollArea::dragMoveEvent +320 QAbstractScrollArea::dragLeaveEvent +328 QAbstractScrollArea::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QAbstractScrollArea::scrollContentsBy +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI19QAbstractScrollArea) +480 QAbstractScrollArea::_ZThn16_N19QAbstractScrollAreaD1Ev +488 QAbstractScrollArea::_ZThn16_N19QAbstractScrollAreaD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractScrollArea + size=40 align=8 + base size=40 base align=8 +QAbstractScrollArea (0x7f0a6d6ed0e0) 0 + vptr=((& QAbstractScrollArea::_ZTV19QAbstractScrollArea) + 16u) + QFrame (0x7f0a6d6ed150) 0 + primary-for QAbstractScrollArea (0x7f0a6d6ed0e0) + QWidget (0x7f0a6d6cde80) 0 + primary-for QFrame (0x7f0a6d6ed150) + QObject (0x7f0a6d6ed1c0) 0 + primary-for QWidget (0x7f0a6d6cde80) + QPaintDevice (0x7f0a6d6ed230) 16 + vptr=((& QAbstractScrollArea::_ZTV19QAbstractScrollArea) + 480u) + +Class QItemSelectionRange + size=16 align=8 + base size=16 base align=8 +QItemSelectionRange (0x7f0a6d500000) 0 + +Vtable for QItemSelectionModel +QItemSelectionModel::_ZTV19QItemSelectionModel: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QItemSelectionModel) +16 QItemSelectionModel::metaObject +24 QItemSelectionModel::qt_metacast +32 QItemSelectionModel::qt_metacall +40 QItemSelectionModel::~QItemSelectionModel +48 QItemSelectionModel::~QItemSelectionModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QItemSelectionModel::select +120 QItemSelectionModel::select +128 QItemSelectionModel::clear +136 QItemSelectionModel::reset + +Class QItemSelectionModel + size=16 align=8 + base size=16 base align=8 +QItemSelectionModel (0x7f0a6d5674d0) 0 + vptr=((& QItemSelectionModel::_ZTV19QItemSelectionModel) + 16u) + QObject (0x7f0a6d567540) 0 + primary-for QItemSelectionModel (0x7f0a6d5674d0) + +Class QItemSelection + size=8 align=8 + base size=8 base align=8 +QItemSelection (0x7f0a6d5a59a0) 0 + QList (0x7f0a6d5a5a10) 0 + +Vtable for QValidator +QValidator::_ZTV10QValidator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QValidator) +16 QValidator::metaObject +24 QValidator::qt_metacast +32 QValidator::qt_metacall +40 QValidator::~QValidator +48 QValidator::~QValidator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 QValidator::fixup + +Class QValidator + size=16 align=8 + base size=16 base align=8 +QValidator (0x7f0a6d5e52a0) 0 + vptr=((& QValidator::_ZTV10QValidator) + 16u) + QObject (0x7f0a6d5e5310) 0 + primary-for QValidator (0x7f0a6d5e52a0) + +Vtable for QIntValidator +QIntValidator::_ZTV13QIntValidator: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QIntValidator) +16 QIntValidator::metaObject +24 QIntValidator::qt_metacast +32 QIntValidator::qt_metacall +40 QIntValidator::~QIntValidator +48 QIntValidator::~QIntValidator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QIntValidator::validate +120 QValidator::fixup +128 QIntValidator::setRange + +Class QIntValidator + size=24 align=8 + base size=24 base align=8 +QIntValidator (0x7f0a6d3fe0e0) 0 + vptr=((& QIntValidator::_ZTV13QIntValidator) + 16u) + QValidator (0x7f0a6d3fe150) 0 + primary-for QIntValidator (0x7f0a6d3fe0e0) + QObject (0x7f0a6d3fe1c0) 0 + primary-for QValidator (0x7f0a6d3fe150) + +Vtable for QDoubleValidator +QDoubleValidator::_ZTV16QDoubleValidator: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QDoubleValidator) +16 QDoubleValidator::metaObject +24 QDoubleValidator::qt_metacast +32 QDoubleValidator::qt_metacall +40 QDoubleValidator::~QDoubleValidator +48 QDoubleValidator::~QDoubleValidator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QDoubleValidator::validate +120 QValidator::fixup +128 QDoubleValidator::setRange + +Class QDoubleValidator + size=40 align=8 + base size=36 base align=8 +QDoubleValidator (0x7f0a6d416070) 0 + vptr=((& QDoubleValidator::_ZTV16QDoubleValidator) + 16u) + QValidator (0x7f0a6d4160e0) 0 + primary-for QDoubleValidator (0x7f0a6d416070) + QObject (0x7f0a6d416150) 0 + primary-for QValidator (0x7f0a6d4160e0) + +Vtable for QRegExpValidator +QRegExpValidator::_ZTV16QRegExpValidator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QRegExpValidator) +16 QRegExpValidator::metaObject +24 QRegExpValidator::qt_metacast +32 QRegExpValidator::qt_metacall +40 QRegExpValidator::~QRegExpValidator +48 QRegExpValidator::~QRegExpValidator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QRegExpValidator::validate +120 QValidator::fixup + +Class QRegExpValidator + size=24 align=8 + base size=24 base align=8 +QRegExpValidator (0x7f0a6d431930) 0 + vptr=((& QRegExpValidator::_ZTV16QRegExpValidator) + 16u) + QValidator (0x7f0a6d4319a0) 0 + primary-for QRegExpValidator (0x7f0a6d431930) + QObject (0x7f0a6d431a10) 0 + primary-for QValidator (0x7f0a6d4319a0) + +Vtable for QAbstractSpinBox +QAbstractSpinBox::_ZTV16QAbstractSpinBox: 68u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QAbstractSpinBox) +16 QAbstractSpinBox::metaObject +24 QAbstractSpinBox::qt_metacast +32 QAbstractSpinBox::qt_metacall +40 QAbstractSpinBox::~QAbstractSpinBox +48 QAbstractSpinBox::~QAbstractSpinBox +56 QAbstractSpinBox::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractSpinBox::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractSpinBox::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QAbstractSpinBox::wheelEvent +200 QAbstractSpinBox::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QAbstractSpinBox::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractSpinBox::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractSpinBox::validate +456 QAbstractSpinBox::fixup +464 QAbstractSpinBox::stepBy +472 QAbstractSpinBox::clear +480 QAbstractSpinBox::stepEnabled +488 (int (*)(...))-0x00000000000000010 +496 (int (*)(...))(& _ZTI16QAbstractSpinBox) +504 QAbstractSpinBox::_ZThn16_N16QAbstractSpinBoxD1Ev +512 QAbstractSpinBox::_ZThn16_N16QAbstractSpinBoxD0Ev +520 QWidget::_ZThn16_NK7QWidget7devTypeEv +528 QWidget::_ZThn16_NK7QWidget11paintEngineEv +536 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractSpinBox + size=40 align=8 + base size=40 base align=8 +QAbstractSpinBox (0x7f0a6d4465b0) 0 + vptr=((& QAbstractSpinBox::_ZTV16QAbstractSpinBox) + 16u) + QWidget (0x7f0a6d42ce80) 0 + primary-for QAbstractSpinBox (0x7f0a6d4465b0) + QObject (0x7f0a6d446620) 0 + primary-for QWidget (0x7f0a6d42ce80) + QPaintDevice (0x7f0a6d446690) 16 + vptr=((& QAbstractSpinBox::_ZTV16QAbstractSpinBox) + 504u) + +Class QIcon + size=8 align=8 + base size=8 base align=8 +QIcon (0x7f0a6d4a35b0) 0 + +Vtable for QAbstractSlider +QAbstractSlider::_ZTV15QAbstractSlider: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QAbstractSlider) +16 QAbstractSlider::metaObject +24 QAbstractSlider::qt_metacast +32 QAbstractSlider::qt_metacall +40 QAbstractSlider::~QAbstractSlider +48 QAbstractSlider::~QAbstractSlider +56 QAbstractSlider::event +64 QObject::eventFilter +72 QAbstractSlider::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QAbstractSlider::wheelEvent +200 QAbstractSlider::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractSlider::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractSlider::sliderChange +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI15QAbstractSlider) +472 QAbstractSlider::_ZThn16_N15QAbstractSliderD1Ev +480 QAbstractSlider::_ZThn16_N15QAbstractSliderD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractSlider + size=40 align=8 + base size=40 base align=8 +QAbstractSlider (0x7f0a6d4d7150) 0 + vptr=((& QAbstractSlider::_ZTV15QAbstractSlider) + 16u) + QWidget (0x7f0a6d4cdb00) 0 + primary-for QAbstractSlider (0x7f0a6d4d7150) + QObject (0x7f0a6d4d71c0) 0 + primary-for QWidget (0x7f0a6d4cdb00) + QPaintDevice (0x7f0a6d4d7230) 16 + vptr=((& QAbstractSlider::_ZTV15QAbstractSlider) + 472u) + +Vtable for QSlider +QSlider::_ZTV7QSlider: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QSlider) +16 QSlider::metaObject +24 QSlider::qt_metacast +32 QSlider::qt_metacall +40 QSlider::~QSlider +48 QSlider::~QSlider +56 QSlider::event +64 QObject::eventFilter +72 QAbstractSlider::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QSlider::sizeHint +136 QSlider::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QSlider::mousePressEvent +168 QSlider::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QSlider::mouseMoveEvent +192 QAbstractSlider::wheelEvent +200 QAbstractSlider::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QSlider::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractSlider::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractSlider::sliderChange +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI7QSlider) +472 QSlider::_ZThn16_N7QSliderD1Ev +480 QSlider::_ZThn16_N7QSliderD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSlider + size=40 align=8 + base size=40 base align=8 +QSlider (0x7f0a6d305f50) 0 + vptr=((& QSlider::_ZTV7QSlider) + 16u) + QAbstractSlider (0x7f0a6d30a000) 0 + primary-for QSlider (0x7f0a6d305f50) + QWidget (0x7f0a6d303b00) 0 + primary-for QAbstractSlider (0x7f0a6d30a000) + QObject (0x7f0a6d30a070) 0 + primary-for QWidget (0x7f0a6d303b00) + QPaintDevice (0x7f0a6d30a0e0) 16 + vptr=((& QSlider::_ZTV7QSlider) + 472u) + +Vtable for QStyle +QStyle::_ZTV6QStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QStyle) +16 QStyle::metaObject +24 QStyle::qt_metacast +32 QStyle::qt_metacall +40 QStyle::~QStyle +48 QStyle::~QStyle +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QStyle::polish +120 QStyle::unpolish +128 QStyle::polish +136 QStyle::unpolish +144 QStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QStyle::standardPalette +192 __cxa_pure_virtual +200 __cxa_pure_virtual +208 __cxa_pure_virtual +216 __cxa_pure_virtual +224 __cxa_pure_virtual +232 __cxa_pure_virtual +240 __cxa_pure_virtual +248 __cxa_pure_virtual +256 __cxa_pure_virtual +264 __cxa_pure_virtual +272 __cxa_pure_virtual + +Class QStyle + size=16 align=8 + base size=16 base align=8 +QStyle (0x7f0a6d332540) 0 + vptr=((& QStyle::_ZTV6QStyle) + 16u) + QObject (0x7f0a6d3325b0) 0 + primary-for QStyle (0x7f0a6d332540) + +Vtable for QTabBar +QTabBar::_ZTV7QTabBar: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QTabBar) +16 QTabBar::metaObject +24 QTabBar::qt_metacast +32 QTabBar::qt_metacall +40 QTabBar::~QTabBar +48 QTabBar::~QTabBar +56 QTabBar::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QTabBar::sizeHint +136 QTabBar::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTabBar::mousePressEvent +168 QTabBar::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QTabBar::mouseMoveEvent +192 QTabBar::wheelEvent +200 QTabBar::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTabBar::paintEvent +256 QWidget::moveEvent +264 QTabBar::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QTabBar::showEvent +344 QTabBar::hideEvent +352 QWidget::x11Event +360 QTabBar::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QTabBar::tabSizeHint +456 QTabBar::tabInserted +464 QTabBar::tabRemoved +472 QTabBar::tabLayoutChange +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI7QTabBar) +496 QTabBar::_ZThn16_N7QTabBarD1Ev +504 QTabBar::_ZThn16_N7QTabBarD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTabBar + size=40 align=8 + base size=40 base align=8 +QTabBar (0x7f0a6d3ef2a0) 0 + vptr=((& QTabBar::_ZTV7QTabBar) + 16u) + QWidget (0x7f0a6d3bc600) 0 + primary-for QTabBar (0x7f0a6d3ef2a0) + QObject (0x7f0a6d3ef310) 0 + primary-for QWidget (0x7f0a6d3bc600) + QPaintDevice (0x7f0a6d3ef380) 16 + vptr=((& QTabBar::_ZTV7QTabBar) + 496u) + +Vtable for QTabWidget +QTabWidget::_ZTV10QTabWidget: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTabWidget) +16 QTabWidget::metaObject +24 QTabWidget::qt_metacast +32 QTabWidget::qt_metacall +40 QTabWidget::~QTabWidget +48 QTabWidget::~QTabWidget +56 QTabWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QTabWidget::sizeHint +136 QTabWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QTabWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTabWidget::paintEvent +256 QWidget::moveEvent +264 QTabWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QTabWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QTabWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QTabWidget::tabInserted +456 QTabWidget::tabRemoved +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI10QTabWidget) +480 QTabWidget::_ZThn16_N10QTabWidgetD1Ev +488 QTabWidget::_ZThn16_N10QTabWidgetD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTabWidget + size=40 align=8 + base size=40 base align=8 +QTabWidget (0x7f0a6d2178c0) 0 + vptr=((& QTabWidget::_ZTV10QTabWidget) + 16u) + QWidget (0x7f0a6d210900) 0 + primary-for QTabWidget (0x7f0a6d2178c0) + QObject (0x7f0a6d217930) 0 + primary-for QWidget (0x7f0a6d210900) + QPaintDevice (0x7f0a6d2179a0) 16 + vptr=((& QTabWidget::_ZTV10QTabWidget) + 480u) + +Vtable for QRubberBand +QRubberBand::_ZTV11QRubberBand: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QRubberBand) +16 QRubberBand::metaObject +24 QRubberBand::qt_metacast +32 QRubberBand::qt_metacall +40 QRubberBand::~QRubberBand +48 QRubberBand::~QRubberBand +56 QRubberBand::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QRubberBand::paintEvent +256 QRubberBand::moveEvent +264 QRubberBand::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QRubberBand::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QRubberBand::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI11QRubberBand) +464 QRubberBand::_ZThn16_N11QRubberBandD1Ev +472 QRubberBand::_ZThn16_N11QRubberBandD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QRubberBand + size=40 align=8 + base size=40 base align=8 +QRubberBand (0x7f0a6d26c2a0) 0 + vptr=((& QRubberBand::_ZTV11QRubberBand) + 16u) + QWidget (0x7f0a6d267980) 0 + primary-for QRubberBand (0x7f0a6d26c2a0) + QObject (0x7f0a6d26c310) 0 + primary-for QWidget (0x7f0a6d267980) + QPaintDevice (0x7f0a6d26c380) 16 + vptr=((& QRubberBand::_ZTV11QRubberBand) + 464u) + +Class QStyleOption + size=56 align=8 + base size=56 base align=8 +QStyleOption (0x7f0a6d28d5b0) 0 + +Class QStyleOptionFocusRect + size=72 align=8 + base size=72 base align=8 +QStyleOptionFocusRect (0x7f0a6d29d310) 0 + QStyleOption (0x7f0a6d29d380) 0 + +Class QStyleOptionFrame + size=64 align=8 + base size=64 base align=8 +QStyleOptionFrame (0x7f0a6d2a7310) 0 + QStyleOption (0x7f0a6d2a7380) 0 + +Class QStyleOptionFrameV2 + size=72 align=8 + base size=68 base align=8 +QStyleOptionFrameV2 (0x7f0a6d2b32a0) 0 + QStyleOptionFrame (0x7f0a6d2b3310) 0 + QStyleOption (0x7f0a6d2b3380) 0 + +Class QStyleOptionFrameV3 + size=72 align=8 + base size=72 base align=8 +QStyleOptionFrameV3 (0x7f0a6d2e6b60) 0 + QStyleOptionFrameV2 (0x7f0a6d2e6bd0) 0 + QStyleOptionFrame (0x7f0a6d2e6c40) 0 + QStyleOption (0x7f0a6d2e6cb0) 0 + +Class QStyleOptionTabWidgetFrame + size=96 align=8 + base size=92 base align=8 +QStyleOptionTabWidgetFrame (0x7f0a6d109460) 0 + QStyleOption (0x7f0a6d1094d0) 0 + +Class QStyleOptionTabBarBase + size=96 align=8 + base size=92 base align=8 +QStyleOptionTabBarBase (0x7f0a6d116bd0) 0 + QStyleOption (0x7f0a6d116c40) 0 + +Class QStyleOptionTabBarBaseV2 + size=96 align=8 + base size=93 base align=8 +QStyleOptionTabBarBaseV2 (0x7f0a6d11d3f0) 0 + QStyleOptionTabBarBase (0x7f0a6d128000) 0 + QStyleOption (0x7f0a6d128070) 0 + +Class QStyleOptionHeader + size=112 align=8 + base size=108 base align=8 +QStyleOptionHeader (0x7f0a6d134620) 0 + QStyleOption (0x7f0a6d134690) 0 + +Class QStyleOptionButton + size=88 align=8 + base size=88 base align=8 +QStyleOptionButton (0x7f0a6d14c7e0) 0 + QStyleOption (0x7f0a6d14c850) 0 + +Class QStyleOptionTab + size=96 align=8 + base size=96 base align=8 +QStyleOptionTab (0x7f0a6d19a1c0) 0 + QStyleOption (0x7f0a6d19a230) 0 + +Class QStyleOptionTabV2 + size=104 align=8 + base size=104 base align=8 +QStyleOptionTabV2 (0x7f0a6d1e6150) 0 + QStyleOptionTab (0x7f0a6d1e61c0) 0 + QStyleOption (0x7f0a6d1e6230) 0 + +Class QStyleOptionTabV3 + size=128 align=8 + base size=124 base align=8 +QStyleOptionTabV3 (0x7f0a6cff1b60) 0 + QStyleOptionTabV2 (0x7f0a6cff1bd0) 0 + QStyleOptionTab (0x7f0a6cff1c40) 0 + QStyleOption (0x7f0a6cff1cb0) 0 + +Class QStyleOptionToolBar + size=80 align=8 + base size=80 base align=8 +QStyleOptionToolBar (0x7f0a6d00e1c0) 0 + QStyleOption (0x7f0a6d00e230) 0 + +Class QStyleOptionProgressBar + size=88 align=8 + base size=85 base align=8 +QStyleOptionProgressBar (0x7f0a6d0419a0) 0 + QStyleOption (0x7f0a6d041a10) 0 + +Class QStyleOptionProgressBarV2 + size=96 align=8 + base size=94 base align=8 +QStyleOptionProgressBarV2 (0x7f0a6d066150) 0 + QStyleOptionProgressBar (0x7f0a6d0661c0) 0 + QStyleOption (0x7f0a6d066230) 0 + +Class QStyleOptionMenuItem + size=128 align=8 + base size=128 base align=8 +QStyleOptionMenuItem (0x7f0a6d066a10) 0 + QStyleOption (0x7f0a6d066a80) 0 + +Class QStyleOptionQ3ListViewItem + size=80 align=8 + base size=76 base align=8 +QStyleOptionQ3ListViewItem (0x7f0a6d083c40) 0 + QStyleOption (0x7f0a6d083cb0) 0 + +Class QStyleOptionQ3DockWindow + size=64 align=8 + base size=58 base align=8 +QStyleOptionQ3DockWindow (0x7f0a6d0d00e0) 0 + QStyleOption (0x7f0a6d0d0150) 0 + +Class QStyleOptionDockWidget + size=72 align=8 + base size=67 base align=8 +QStyleOptionDockWidget (0x7f0a6d0dc070) 0 + QStyleOption (0x7f0a6d0dc0e0) 0 + +Class QStyleOptionDockWidgetV2 + size=72 align=8 + base size=68 base align=8 +QStyleOptionDockWidgetV2 (0x7f0a6d0e9460) 0 + QStyleOptionDockWidget (0x7f0a6d0e94d0) 0 + QStyleOption (0x7f0a6d0e9540) 0 + +Class QStyleOptionViewItem + size=104 align=8 + base size=97 base align=8 +QStyleOptionViewItem (0x7f0a6cef2c40) 0 + QStyleOption (0x7f0a6cef2cb0) 0 + +Class QStyleOptionViewItemV2 + size=104 align=8 + base size=104 base align=8 +QStyleOptionViewItemV2 (0x7f0a6cf0c7e0) 0 + QStyleOptionViewItem (0x7f0a6cf0c850) 0 + QStyleOption (0x7f0a6cf0c8c0) 0 + +Class QStyleOptionViewItemV3 + size=120 align=8 + base size=120 base align=8 +QStyleOptionViewItemV3 (0x7f0a6cf56230) 0 + QStyleOptionViewItemV2 (0x7f0a6cf562a0) 0 + QStyleOptionViewItem (0x7f0a6cf56310) 0 + QStyleOption (0x7f0a6cf56380) 0 + +Class QStyleOptionViewItemV4 + size=184 align=8 + base size=184 base align=8 +QStyleOptionViewItemV4 (0x7f0a6cf63af0) 0 + QStyleOptionViewItemV3 (0x7f0a6cf63b60) 0 + QStyleOptionViewItemV2 (0x7f0a6cf63bd0) 0 + QStyleOptionViewItem (0x7f0a6cf63c40) 0 + QStyleOption (0x7f0a6cf63cb0) 0 + +Class QStyleOptionToolBox + size=72 align=8 + base size=72 base align=8 +QStyleOptionToolBox (0x7f0a6cf84230) 0 + QStyleOption (0x7f0a6cf842a0) 0 + +Class QStyleOptionToolBoxV2 + size=80 align=8 + base size=80 base align=8 +QStyleOptionToolBoxV2 (0x7f0a6cf90700) 0 + QStyleOptionToolBox (0x7f0a6cf90770) 0 + QStyleOption (0x7f0a6cf907e0) 0 + +Class QStyleOptionRubberBand + size=64 align=8 + base size=61 base align=8 +QStyleOptionRubberBand (0x7f0a6cfa63f0) 0 + QStyleOption (0x7f0a6cfa6460) 0 + +Class QStyleOptionComplex + size=64 align=8 + base size=64 base align=8 +QStyleOptionComplex (0x7f0a6cfb24d0) 0 + QStyleOption (0x7f0a6cfb2540) 0 + +Class QStyleOptionSlider + size=120 align=8 + base size=113 base align=8 +QStyleOptionSlider (0x7f0a6cfbacb0) 0 + QStyleOptionComplex (0x7f0a6cfbad20) 0 + QStyleOption (0x7f0a6cfbad90) 0 + +Class QStyleOptionSpinBox + size=80 align=8 + base size=73 base align=8 +QStyleOptionSpinBox (0x7f0a6cfd2a80) 0 + QStyleOptionComplex (0x7f0a6cfd2af0) 0 + QStyleOption (0x7f0a6cfd2b60) 0 + +Class QStyleOptionQ3ListView + size=112 align=8 + base size=105 base align=8 +QStyleOptionQ3ListView (0x7f0a6cfda460) 0 + QStyleOptionComplex (0x7f0a6cfe4000) 0 + QStyleOption (0x7f0a6cfe4070) 0 + +Class QStyleOptionToolButton + size=128 align=8 + base size=128 base align=8 +QStyleOptionToolButton (0x7f0a6ce13bd0) 0 + QStyleOptionComplex (0x7f0a6ce13c40) 0 + QStyleOption (0x7f0a6ce13cb0) 0 + +Class QStyleOptionComboBox + size=112 align=8 + base size=112 base align=8 +QStyleOptionComboBox (0x7f0a6ce57e00) 0 + QStyleOptionComplex (0x7f0a6ce57e70) 0 + QStyleOption (0x7f0a6ce57ee0) 0 + +Class QStyleOptionTitleBar + size=88 align=8 + base size=88 base align=8 +QStyleOptionTitleBar (0x7f0a6ce7d930) 0 + QStyleOptionComplex (0x7f0a6ce7d9a0) 0 + QStyleOption (0x7f0a6ce7da10) 0 + +Class QStyleOptionGroupBox + size=112 align=8 + base size=108 base align=8 +QStyleOptionGroupBox (0x7f0a6ce941c0) 0 + QStyleOptionComplex (0x7f0a6ce94230) 0 + QStyleOption (0x7f0a6ce942a0) 0 + +Class QStyleOptionSizeGrip + size=72 align=8 + base size=68 base align=8 +QStyleOptionSizeGrip (0x7f0a6cea1d90) 0 + QStyleOptionComplex (0x7f0a6cea1e00) 0 + QStyleOption (0x7f0a6cea1e70) 0 + +Class QStyleOptionGraphicsItem + size=144 align=8 + base size=144 base align=8 +QStyleOptionGraphicsItem (0x7f0a6ceadd20) 0 + QStyleOption (0x7f0a6ceadd90) 0 + +Class QStyleHintReturn + size=8 align=4 + base size=8 base align=4 +QStyleHintReturn (0x7f0a6cecc070) 0 + +Class QStyleHintReturnMask + size=16 align=8 + base size=16 base align=8 +QStyleHintReturnMask (0x7f0a6cecc4d0) 0 + QStyleHintReturn (0x7f0a6cecc540) 0 + +Class QStyleHintReturnVariant + size=24 align=8 + base size=24 base align=8 +QStyleHintReturnVariant (0x7f0a6cecc700) 0 + QStyleHintReturn (0x7f0a6cecc770) 0 + +Vtable for QAbstractItemDelegate +QAbstractItemDelegate::_ZTV21QAbstractItemDelegate: 21u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QAbstractItemDelegate) +16 QAbstractItemDelegate::metaObject +24 QAbstractItemDelegate::qt_metacast +32 QAbstractItemDelegate::qt_metacall +40 QAbstractItemDelegate::~QAbstractItemDelegate +48 QAbstractItemDelegate::~QAbstractItemDelegate +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAbstractItemDelegate::createEditor +136 QAbstractItemDelegate::setEditorData +144 QAbstractItemDelegate::setModelData +152 QAbstractItemDelegate::updateEditorGeometry +160 QAbstractItemDelegate::editorEvent + +Class QAbstractItemDelegate + size=16 align=8 + base size=16 base align=8 +QAbstractItemDelegate (0x7f0a6ceccbd0) 0 + vptr=((& QAbstractItemDelegate::_ZTV21QAbstractItemDelegate) + 16u) + QObject (0x7f0a6ceccc40) 0 + primary-for QAbstractItemDelegate (0x7f0a6ceccbd0) + +Vtable for QAbstractItemView +QAbstractItemView::_ZTV17QAbstractItemView: 103u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAbstractItemView) +16 QAbstractItemView::metaObject +24 QAbstractItemView::qt_metacast +32 QAbstractItemView::qt_metacall +40 QAbstractItemView::~QAbstractItemView +48 QAbstractItemView::~QAbstractItemView +56 QAbstractItemView::event +64 QObject::eventFilter +72 QAbstractItemView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QAbstractItemView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QAbstractItemView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractScrollArea::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QAbstractScrollArea::scrollContentsBy +464 QAbstractItemView::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 __cxa_pure_virtual +496 __cxa_pure_virtual +504 __cxa_pure_virtual +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QAbstractItemView::reset +536 QAbstractItemView::setRootIndex +544 QAbstractItemView::doItemsLayout +552 QAbstractItemView::selectAll +560 QAbstractItemView::dataChanged +568 QAbstractItemView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QAbstractItemView::selectionChanged +592 QAbstractItemView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QAbstractItemView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 __cxa_pure_virtual +688 __cxa_pure_virtual +696 __cxa_pure_virtual +704 __cxa_pure_virtual +712 __cxa_pure_virtual +720 __cxa_pure_virtual +728 QAbstractItemView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 (int (*)(...))-0x00000000000000010 +776 (int (*)(...))(& _ZTI17QAbstractItemView) +784 QAbstractItemView::_ZThn16_N17QAbstractItemViewD1Ev +792 QAbstractItemView::_ZThn16_N17QAbstractItemViewD0Ev +800 QWidget::_ZThn16_NK7QWidget7devTypeEv +808 QWidget::_ZThn16_NK7QWidget11paintEngineEv +816 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractItemView + size=40 align=8 + base size=40 base align=8 +QAbstractItemView (0x7f0a6cd052a0) 0 + vptr=((& QAbstractItemView::_ZTV17QAbstractItemView) + 16u) + QAbstractScrollArea (0x7f0a6cd05310) 0 + primary-for QAbstractItemView (0x7f0a6cd052a0) + QFrame (0x7f0a6cd05380) 0 + primary-for QAbstractScrollArea (0x7f0a6cd05310) + QWidget (0x7f0a6ccf2780) 0 + primary-for QFrame (0x7f0a6cd05380) + QObject (0x7f0a6cd053f0) 0 + primary-for QWidget (0x7f0a6ccf2780) + QPaintDevice (0x7f0a6cd05460) 16 + vptr=((& QAbstractItemView::_ZTV17QAbstractItemView) + 784u) + +Vtable for QTreeView +QTreeView::_ZTV9QTreeView: 105u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTreeView) +16 QTreeView::metaObject +24 QTreeView::qt_metacast +32 QTreeView::qt_metacall +40 QTreeView::~QTreeView +48 QTreeView::~QTreeView +56 QAbstractItemView::event +64 QObject::eventFilter +72 QTreeView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTreeView::mousePressEvent +168 QTreeView::mouseReleaseEvent +176 QTreeView::mouseDoubleClickEvent +184 QTreeView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QTreeView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTreeView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QTreeView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QTreeView::viewportEvent +456 QTreeView::scrollContentsBy +464 QTreeView::setModel +472 QTreeView::setSelectionModel +480 QTreeView::keyboardSearch +488 QTreeView::visualRect +496 QTreeView::scrollTo +504 QTreeView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QTreeView::sizeHintForColumn +528 QTreeView::reset +536 QTreeView::setRootIndex +544 QTreeView::doItemsLayout +552 QTreeView::selectAll +560 QTreeView::dataChanged +568 QTreeView::rowsInserted +576 QTreeView::rowsAboutToBeRemoved +584 QTreeView::selectionChanged +592 QTreeView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QTreeView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QTreeView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QTreeView::moveCursor +688 QTreeView::horizontalOffset +696 QTreeView::verticalOffset +704 QTreeView::isIndexHidden +712 QTreeView::setSelection +720 QTreeView::visualRegionForSelection +728 QTreeView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 QTreeView::drawRow +776 QTreeView::drawBranches +784 (int (*)(...))-0x00000000000000010 +792 (int (*)(...))(& _ZTI9QTreeView) +800 QTreeView::_ZThn16_N9QTreeViewD1Ev +808 QTreeView::_ZThn16_N9QTreeViewD0Ev +816 QWidget::_ZThn16_NK7QWidget7devTypeEv +824 QWidget::_ZThn16_NK7QWidget11paintEngineEv +832 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTreeView + size=40 align=8 + base size=40 base align=8 +QTreeView (0x7f0a6cd7da80) 0 + vptr=((& QTreeView::_ZTV9QTreeView) + 16u) + QAbstractItemView (0x7f0a6cd7daf0) 0 + primary-for QTreeView (0x7f0a6cd7da80) + QAbstractScrollArea (0x7f0a6cd7db60) 0 + primary-for QAbstractItemView (0x7f0a6cd7daf0) + QFrame (0x7f0a6cd7dbd0) 0 + primary-for QAbstractScrollArea (0x7f0a6cd7db60) + QWidget (0x7f0a6cd42e00) 0 + primary-for QFrame (0x7f0a6cd7dbd0) + QObject (0x7f0a6cd7dc40) 0 + primary-for QWidget (0x7f0a6cd42e00) + QPaintDevice (0x7f0a6cd7dcb0) 16 + vptr=((& QTreeView::_ZTV9QTreeView) + 800u) + +Class QHelpContentItem + size=8 align=8 + base size=8 base align=8 +QHelpContentItem (0x7f0a6cdc6850) 0 + +Vtable for QHelpContentModel +QHelpContentModel::_ZTV17QHelpContentModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QHelpContentModel) +16 QHelpContentModel::metaObject +24 QHelpContentModel::qt_metacast +32 QHelpContentModel::qt_metacall +40 QHelpContentModel::~QHelpContentModel +48 QHelpContentModel::~QHelpContentModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QHelpContentModel::index +120 QHelpContentModel::parent +128 QHelpContentModel::rowCount +136 QHelpContentModel::columnCount +144 QAbstractItemModel::hasChildren +152 QHelpContentModel::data +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractItemModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QHelpContentModel + size=24 align=8 + base size=24 base align=8 +QHelpContentModel (0x7f0a6cdc6d90) 0 + vptr=((& QHelpContentModel::_ZTV17QHelpContentModel) + 16u) + QAbstractItemModel (0x7f0a6cdc6e00) 0 + primary-for QHelpContentModel (0x7f0a6cdc6d90) + QObject (0x7f0a6cdc6e70) 0 + primary-for QAbstractItemModel (0x7f0a6cdc6e00) + +Vtable for QHelpContentWidget +QHelpContentWidget::_ZTV18QHelpContentWidget: 105u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QHelpContentWidget) +16 QHelpContentWidget::metaObject +24 QHelpContentWidget::qt_metacast +32 QHelpContentWidget::qt_metacall +40 QHelpContentWidget::~QHelpContentWidget +48 QHelpContentWidget::~QHelpContentWidget +56 QAbstractItemView::event +64 QObject::eventFilter +72 QTreeView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTreeView::mousePressEvent +168 QTreeView::mouseReleaseEvent +176 QTreeView::mouseDoubleClickEvent +184 QTreeView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QTreeView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTreeView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QTreeView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QTreeView::viewportEvent +456 QTreeView::scrollContentsBy +464 QTreeView::setModel +472 QTreeView::setSelectionModel +480 QTreeView::keyboardSearch +488 QTreeView::visualRect +496 QTreeView::scrollTo +504 QTreeView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QTreeView::sizeHintForColumn +528 QTreeView::reset +536 QTreeView::setRootIndex +544 QTreeView::doItemsLayout +552 QTreeView::selectAll +560 QTreeView::dataChanged +568 QTreeView::rowsInserted +576 QTreeView::rowsAboutToBeRemoved +584 QTreeView::selectionChanged +592 QTreeView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QTreeView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QTreeView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QTreeView::moveCursor +688 QTreeView::horizontalOffset +696 QTreeView::verticalOffset +704 QTreeView::isIndexHidden +712 QTreeView::setSelection +720 QTreeView::visualRegionForSelection +728 QTreeView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 QTreeView::drawRow +776 QTreeView::drawBranches +784 (int (*)(...))-0x00000000000000010 +792 (int (*)(...))(& _ZTI18QHelpContentWidget) +800 QHelpContentWidget::_ZThn16_N18QHelpContentWidgetD1Ev +808 QHelpContentWidget::_ZThn16_N18QHelpContentWidgetD0Ev +816 QWidget::_ZThn16_NK7QWidget7devTypeEv +824 QWidget::_ZThn16_NK7QWidget11paintEngineEv +832 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QHelpContentWidget + size=64 align=8 + base size=64 base align=8 +QHelpContentWidget (0x7f0a6cddae00) 0 + vptr=((& QHelpContentWidget::_ZTV18QHelpContentWidget) + 16u) + QTreeView (0x7f0a6cddae70) 0 + primary-for QHelpContentWidget (0x7f0a6cddae00) + QAbstractItemView (0x7f0a6cddaee0) 0 + primary-for QTreeView (0x7f0a6cddae70) + QAbstractScrollArea (0x7f0a6cddaf50) 0 + primary-for QAbstractItemView (0x7f0a6cddaee0) + QFrame (0x7f0a6cdda070) 0 + primary-for QAbstractScrollArea (0x7f0a6cddaf50) + QWidget (0x7f0a6cdbfe00) 0 + primary-for QFrame (0x7f0a6cdda070) + QObject (0x7f0a6cde6000) 0 + primary-for QWidget (0x7f0a6cdbfe00) + QPaintDevice (0x7f0a6cde6070) 16 + vptr=((& QHelpContentWidget::_ZTV18QHelpContentWidget) + 800u) + +Class QHelpSearchQuery + size=16 align=8 + base size=16 base align=8 +QHelpSearchQuery (0x7f0a6cde6e00) 0 + +Vtable for QHelpSearchEngine +QHelpSearchEngine::_ZTV17QHelpSearchEngine: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QHelpSearchEngine) +16 QHelpSearchEngine::metaObject +24 QHelpSearchEngine::qt_metacast +32 QHelpSearchEngine::qt_metacall +40 QHelpSearchEngine::~QHelpSearchEngine +48 QHelpSearchEngine::~QHelpSearchEngine +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QHelpSearchEngine + size=24 align=8 + base size=24 base align=8 +QHelpSearchEngine (0x7f0a6cc05380) 0 + vptr=((& QHelpSearchEngine::_ZTV17QHelpSearchEngine) + 16u) + QObject (0x7f0a6cc053f0) 0 + primary-for QHelpSearchEngine (0x7f0a6cc05380) + +Vtable for QHelpSearchResultWidget +QHelpSearchResultWidget::_ZTV23QHelpSearchResultWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QHelpSearchResultWidget) +16 QHelpSearchResultWidget::metaObject +24 QHelpSearchResultWidget::qt_metacast +32 QHelpSearchResultWidget::qt_metacall +40 QHelpSearchResultWidget::~QHelpSearchResultWidget +48 QHelpSearchResultWidget::~QHelpSearchResultWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI23QHelpSearchResultWidget) +464 QHelpSearchResultWidget::_ZThn16_N23QHelpSearchResultWidgetD1Ev +472 QHelpSearchResultWidget::_ZThn16_N23QHelpSearchResultWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QHelpSearchResultWidget + size=48 align=8 + base size=48 base align=8 +QHelpSearchResultWidget (0x7f0a6cc13700) 0 + vptr=((& QHelpSearchResultWidget::_ZTV23QHelpSearchResultWidget) + 16u) + QWidget (0x7f0a6cc01c80) 0 + primary-for QHelpSearchResultWidget (0x7f0a6cc13700) + QObject (0x7f0a6cc13770) 0 + primary-for QWidget (0x7f0a6cc01c80) + QPaintDevice (0x7f0a6cc137e0) 16 + vptr=((& QHelpSearchResultWidget::_ZTV23QHelpSearchResultWidget) + 464u) + +Vtable for QHelpEngineCore +QHelpEngineCore::_ZTV15QHelpEngineCore: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QHelpEngineCore) +16 QHelpEngineCore::metaObject +24 QHelpEngineCore::qt_metacast +32 QHelpEngineCore::qt_metacall +40 QHelpEngineCore::~QHelpEngineCore +48 QHelpEngineCore::~QHelpEngineCore +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QHelpEngineCore + size=24 align=8 + base size=24 base align=8 +QHelpEngineCore (0x7f0a6cc2b5b0) 0 + vptr=((& QHelpEngineCore::_ZTV15QHelpEngineCore) + 16u) + QObject (0x7f0a6cc2b620) 0 + primary-for QHelpEngineCore (0x7f0a6cc2b5b0) + +Vtable for QHelpEngine +QHelpEngine::_ZTV11QHelpEngine: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QHelpEngine) +16 QHelpEngine::metaObject +24 QHelpEngine::qt_metacast +32 QHelpEngine::qt_metacall +40 QHelpEngine::~QHelpEngine +48 QHelpEngine::~QHelpEngine +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QHelpEngine + size=32 align=8 + base size=32 base align=8 +QHelpEngine (0x7f0a6cc48620) 0 + vptr=((& QHelpEngine::_ZTV11QHelpEngine) + 16u) + QHelpEngineCore (0x7f0a6cc48690) 0 + primary-for QHelpEngine (0x7f0a6cc48620) + QObject (0x7f0a6cc48700) 0 + primary-for QHelpEngineCore (0x7f0a6cc48690) + +Vtable for QHelpSearchQueryWidget +QHelpSearchQueryWidget::_ZTV22QHelpSearchQueryWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QHelpSearchQueryWidget) +16 QHelpSearchQueryWidget::metaObject +24 QHelpSearchQueryWidget::qt_metacast +32 QHelpSearchQueryWidget::qt_metacall +40 QHelpSearchQueryWidget::~QHelpSearchQueryWidget +48 QHelpSearchQueryWidget::~QHelpSearchQueryWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QHelpSearchQueryWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI22QHelpSearchQueryWidget) +464 QHelpSearchQueryWidget::_ZThn16_N22QHelpSearchQueryWidgetD1Ev +472 QHelpSearchQueryWidget::_ZThn16_N22QHelpSearchQueryWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QHelpSearchQueryWidget + size=48 align=8 + base size=48 base align=8 +QHelpSearchQueryWidget (0x7f0a6cc58540) 0 + vptr=((& QHelpSearchQueryWidget::_ZTV22QHelpSearchQueryWidget) + 16u) + QWidget (0x7f0a6cc5a080) 0 + primary-for QHelpSearchQueryWidget (0x7f0a6cc58540) + QObject (0x7f0a6cc585b0) 0 + primary-for QWidget (0x7f0a6cc5a080) + QPaintDevice (0x7f0a6cc58620) 16 + vptr=((& QHelpSearchQueryWidget::_ZTV22QHelpSearchQueryWidget) + 464u) + +Vtable for QStringListModel +QStringListModel::_ZTV16QStringListModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QStringListModel) +16 QStringListModel::metaObject +24 QStringListModel::qt_metacast +32 QStringListModel::qt_metacall +40 QStringListModel::~QStringListModel +48 QStringListModel::~QStringListModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractListModel::index +120 QAbstractListModel::parent +128 QStringListModel::rowCount +136 QAbstractListModel::columnCount +144 QAbstractListModel::hasChildren +152 QStringListModel::data +160 QStringListModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractListModel::dropMimeData +224 QStringListModel::supportedDropActions +232 QStringListModel::insertRows +240 QAbstractItemModel::insertColumns +248 QStringListModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QStringListModel::flags +288 QStringListModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QStringListModel + size=24 align=8 + base size=24 base align=8 +QStringListModel (0x7f0a6cc6d4d0) 0 + vptr=((& QStringListModel::_ZTV16QStringListModel) + 16u) + QAbstractListModel (0x7f0a6cc6d540) 0 + primary-for QStringListModel (0x7f0a6cc6d4d0) + QAbstractItemModel (0x7f0a6cc6d5b0) 0 + primary-for QAbstractListModel (0x7f0a6cc6d540) + QObject (0x7f0a6cc6d620) 0 + primary-for QAbstractItemModel (0x7f0a6cc6d5b0) + +Vtable for QListView +QListView::_ZTV9QListView: 103u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QListView) +16 QListView::metaObject +24 QListView::qt_metacast +32 QListView::qt_metacall +40 QListView::~QListView +48 QListView::~QListView +56 QListView::event +64 QObject::eventFilter +72 QListView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QListView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QListView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QListView::paintEvent +256 QWidget::moveEvent +264 QListView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QListView::dragMoveEvent +320 QListView::dragLeaveEvent +328 QListView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QListView::scrollContentsBy +464 QAbstractItemView::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QListView::visualRect +496 QListView::scrollTo +504 QListView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QListView::reset +536 QListView::setRootIndex +544 QListView::doItemsLayout +552 QAbstractItemView::selectAll +560 QListView::dataChanged +568 QListView::rowsInserted +576 QListView::rowsAboutToBeRemoved +584 QListView::selectionChanged +592 QListView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QListView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QListView::moveCursor +688 QListView::horizontalOffset +696 QListView::verticalOffset +704 QListView::isIndexHidden +712 QListView::setSelection +720 QListView::visualRegionForSelection +728 QListView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QListView::startDrag +760 QListView::viewOptions +768 (int (*)(...))-0x00000000000000010 +776 (int (*)(...))(& _ZTI9QListView) +784 QListView::_ZThn16_N9QListViewD1Ev +792 QListView::_ZThn16_N9QListViewD0Ev +800 QWidget::_ZThn16_NK7QWidget7devTypeEv +808 QWidget::_ZThn16_NK7QWidget11paintEngineEv +816 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QListView + size=40 align=8 + base size=40 base align=8 +QListView (0x7f0a6cc83af0) 0 + vptr=((& QListView::_ZTV9QListView) + 16u) + QAbstractItemView (0x7f0a6cc83b60) 0 + primary-for QListView (0x7f0a6cc83af0) + QAbstractScrollArea (0x7f0a6cc83bd0) 0 + primary-for QAbstractItemView (0x7f0a6cc83b60) + QFrame (0x7f0a6cc83c40) 0 + primary-for QAbstractScrollArea (0x7f0a6cc83bd0) + QWidget (0x7f0a6cc5ae00) 0 + primary-for QFrame (0x7f0a6cc83c40) + QObject (0x7f0a6cc83cb0) 0 + primary-for QWidget (0x7f0a6cc5ae00) + QPaintDevice (0x7f0a6cc83d20) 16 + vptr=((& QListView::_ZTV9QListView) + 784u) + +Vtable for QHelpIndexModel +QHelpIndexModel::_ZTV15QHelpIndexModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QHelpIndexModel) +16 QHelpIndexModel::metaObject +24 QHelpIndexModel::qt_metacast +32 QHelpIndexModel::qt_metacall +40 QHelpIndexModel::~QHelpIndexModel +48 QHelpIndexModel::~QHelpIndexModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractListModel::index +120 QAbstractListModel::parent +128 QStringListModel::rowCount +136 QAbstractListModel::columnCount +144 QAbstractListModel::hasChildren +152 QStringListModel::data +160 QStringListModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractListModel::dropMimeData +224 QStringListModel::supportedDropActions +232 QStringListModel::insertRows +240 QAbstractItemModel::insertColumns +248 QStringListModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QStringListModel::flags +288 QStringListModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QHelpIndexModel + size=32 align=8 + base size=32 base align=8 +QHelpIndexModel (0x7f0a6ccc11c0) 0 + vptr=((& QHelpIndexModel::_ZTV15QHelpIndexModel) + 16u) + QStringListModel (0x7f0a6ccc1230) 0 + primary-for QHelpIndexModel (0x7f0a6ccc11c0) + QAbstractListModel (0x7f0a6ccc12a0) 0 + primary-for QStringListModel (0x7f0a6ccc1230) + QAbstractItemModel (0x7f0a6ccc1310) 0 + primary-for QAbstractListModel (0x7f0a6ccc12a0) + QObject (0x7f0a6ccc1380) 0 + primary-for QAbstractItemModel (0x7f0a6ccc1310) + +Vtable for QHelpIndexWidget +QHelpIndexWidget::_ZTV16QHelpIndexWidget: 103u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QHelpIndexWidget) +16 QHelpIndexWidget::metaObject +24 QHelpIndexWidget::qt_metacast +32 QHelpIndexWidget::qt_metacall +40 QHelpIndexWidget::~QHelpIndexWidget +48 QHelpIndexWidget::~QHelpIndexWidget +56 QListView::event +64 QObject::eventFilter +72 QListView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QListView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QListView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QListView::paintEvent +256 QWidget::moveEvent +264 QListView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QListView::dragMoveEvent +320 QListView::dragLeaveEvent +328 QListView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QListView::scrollContentsBy +464 QAbstractItemView::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QListView::visualRect +496 QListView::scrollTo +504 QListView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QListView::reset +536 QListView::setRootIndex +544 QListView::doItemsLayout +552 QAbstractItemView::selectAll +560 QListView::dataChanged +568 QListView::rowsInserted +576 QListView::rowsAboutToBeRemoved +584 QListView::selectionChanged +592 QListView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QListView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QListView::moveCursor +688 QListView::horizontalOffset +696 QListView::verticalOffset +704 QListView::isIndexHidden +712 QListView::setSelection +720 QListView::visualRegionForSelection +728 QListView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QListView::startDrag +760 QListView::viewOptions +768 (int (*)(...))-0x00000000000000010 +776 (int (*)(...))(& _ZTI16QHelpIndexWidget) +784 QHelpIndexWidget::_ZThn16_N16QHelpIndexWidgetD1Ev +792 QHelpIndexWidget::_ZThn16_N16QHelpIndexWidgetD0Ev +800 QWidget::_ZThn16_NK7QWidget7devTypeEv +808 QWidget::_ZThn16_NK7QWidget11paintEngineEv +816 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QHelpIndexWidget + size=40 align=8 + base size=40 base align=8 +QHelpIndexWidget (0x7f0a6ccd51c0) 0 + vptr=((& QHelpIndexWidget::_ZTV16QHelpIndexWidget) + 16u) + QListView (0x7f0a6ccd5230) 0 + primary-for QHelpIndexWidget (0x7f0a6ccd51c0) + QAbstractItemView (0x7f0a6ccd52a0) 0 + primary-for QListView (0x7f0a6ccd5230) + QAbstractScrollArea (0x7f0a6ccd5310) 0 + primary-for QAbstractItemView (0x7f0a6ccd52a0) + QFrame (0x7f0a6ccd5380) 0 + primary-for QAbstractScrollArea (0x7f0a6ccd5310) + QWidget (0x7f0a6ccd0380) 0 + primary-for QFrame (0x7f0a6ccd5380) + QObject (0x7f0a6ccd53f0) 0 + primary-for QWidget (0x7f0a6ccd0380) + QPaintDevice (0x7f0a6ccd5460) 16 + vptr=((& QHelpIndexWidget::_ZTV16QHelpIndexWidget) + 784u) + diff --git a/tests/auto/bic/data/QtHelp.4.6.0.linux-gcc-amd64.txt b/tests/auto/bic/data/QtHelp.4.6.0.linux-gcc-amd64.txt new file mode 100644 index 0000000..26d6d9c --- /dev/null +++ b/tests/auto/bic/data/QtHelp.4.6.0.linux-gcc-amd64.txt @@ -0,0 +1,5492 @@ +Class QSysInfo + size=1 align=1 + base size=0 base align=1 +QSysInfo (0x7f4f37146230) 0 empty + +Class QBool + size=1 align=1 + base size=1 base align=1 +QBool (0x7f4f37146e70) 0 + +Class qIsNull(double)::U + size=8 align=8 + base size=8 base align=8 +qIsNull(double)::U (0x7f4f37175540) 0 + +Class qIsNull(float)::U + size=4 align=4 + base size=4 base align=4 +qIsNull(float)::U (0x7f4f371757e0) 0 + +Class QFlag + size=4 align=4 + base size=4 base align=4 +QFlag (0x7f4f371ad690) 0 + +Class QIncompatibleFlag + size=4 align=4 + base size=4 base align=4 +QIncompatibleFlag (0x7f4f371ade70) 0 + +Class QLatin1Char + size=1 align=1 + base size=1 base align=1 +QLatin1Char (0x7f4f371dc5b0) 0 + +Class QChar + size=2 align=2 + base size=2 base align=2 +QChar (0x7f4f367e0150) 0 + +Class QBasicAtomicInt + size=4 align=4 + base size=4 base align=4 +QBasicAtomicInt (0x7f4f3684a310) 0 + +Class QAtomicInt + size=4 align=4 + base size=4 base align=4 +QAtomicInt (0x7f4f36888cb0) 0 + QBasicAtomicInt (0x7f4f36888d20) 0 + +Class QInternal + size=1 align=1 + base size=0 base align=1 +QInternal (0x7f4f364d74d0) 0 empty + +Class __locale_struct + size=232 align=8 + base size=232 base align=8 +__locale_struct (0x7f4f364d7700) 0 + +Class QByteArray::Data + size=32 align=8 + base size=32 base align=8 +QByteArray::Data (0x7f4f36513af0) 0 + +Class QByteArray + size=8 align=8 + base size=8 base align=8 +QByteArray (0x7f4f36513a80) 0 + +Class QByteRef + size=16 align=8 + base size=12 base align=8 +QByteRef (0x7f4f365b7380) 0 + +Class QString::Null + size=1 align=1 + base size=0 base align=1 +QString::Null (0x7f4f364b7d20) 0 empty + +Class QString::Data + size=32 align=8 + base size=32 base align=8 +QString::Data (0x7f4f364cf5b0) 0 + +Class QString + size=8 align=8 + base size=8 base align=8 +QString (0x7f4f36430bd0) 0 + +Class QLatin1String + size=8 align=8 + base size=8 base align=8 +QLatin1String (0x7f4f363a79a0) 0 + +Class QCharRef + size=16 align=8 + base size=12 base align=8 +QCharRef (0x7f4f36245000) 0 + +Class QConstString + size=8 align=8 + base size=8 base align=8 +QConstString (0x7f4f361908c0) 0 + QString (0x7f4f36190930) 0 + +Class QStringRef + size=16 align=8 + base size=16 base align=8 +QStringRef (0x7f4f361b6310) 0 + +Class QGenericArgument + size=16 align=8 + base size=16 base align=8 +QGenericArgument (0x7f4f3602e700) 0 + +Class QGenericReturnArgument + size=16 align=8 + base size=16 base align=8 +QGenericReturnArgument (0x7f4f360382a0) 0 + QGenericArgument (0x7f4f36038310) 0 + +Class QMetaObject + size=32 align=8 + base size=32 base align=8 +QMetaObject (0x7f4f36038b60) 0 + +Class QMetaObjectExtraData + size=16 align=8 + base size=16 base align=8 +QMetaObjectExtraData (0x7f4f36061bd0) 0 + +Vtable for std::exception +std::exception::_ZTVSt9exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9exception) +16 std::exception::~exception +24 std::exception::~exception +32 std::exception::what + +Class std::exception + size=8 align=8 + base size=8 base align=8 +std::exception (0x7f4f360b61c0) 0 nearly-empty + vptr=((& std::exception::_ZTVSt9exception) + 16u) + +Vtable for std::bad_exception +std::bad_exception::_ZTVSt13bad_exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13bad_exception) +16 std::bad_exception::~bad_exception +24 std::bad_exception::~bad_exception +32 std::bad_exception::what + +Class std::bad_exception + size=8 align=8 + base size=8 base align=8 +std::bad_exception (0x7f4f360b6770) 0 nearly-empty + vptr=((& std::bad_exception::_ZTVSt13bad_exception) + 16u) + std::exception (0x7f4f360b67e0) 0 nearly-empty + primary-for std::bad_exception (0x7f4f360b6770) + +Vtable for std::bad_alloc +std::bad_alloc::_ZTVSt9bad_alloc: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9bad_alloc) +16 std::bad_alloc::~bad_alloc +24 std::bad_alloc::~bad_alloc +32 std::bad_alloc::what + +Class std::bad_alloc + size=8 align=8 + base size=8 base align=8 +std::bad_alloc (0x7f4f360b6930) 0 nearly-empty + vptr=((& std::bad_alloc::_ZTVSt9bad_alloc) + 16u) + std::exception (0x7f4f360cc000) 0 nearly-empty + primary-for std::bad_alloc (0x7f4f360b6930) + +Class std::nothrow_t + size=1 align=1 + base size=0 base align=1 +std::nothrow_t (0x7f4f360cc850) 0 empty + +Class QListData::Data + size=32 align=8 + base size=32 base align=8 +QListData::Data (0x7f4f360ccd90) 0 + +Class QListData + size=8 align=8 + base size=8 base align=8 +QListData (0x7f4f360ccd20) 0 + +Class QScopedPointerPodDeleter + size=1 align=1 + base size=0 base align=1 +QScopedPointerPodDeleter (0x7f4f35df4850) 0 empty + +Vtable for QObjectData +QObjectData::_ZTV11QObjectData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QObjectData) +16 __cxa_pure_virtual +24 __cxa_pure_virtual + +Class QObjectData + size=48 align=8 + base size=48 base align=8 +QObjectData (0x7f4f35e162a0) 0 + vptr=((& QObjectData::_ZTV11QObjectData) + 16u) + +Vtable for QObject +QObject::_ZTV7QObject: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QObject) +16 QObject::metaObject +24 QObject::qt_metacast +32 QObject::qt_metacall +40 QObject::~QObject +48 QObject::~QObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObject + size=16 align=8 + base size=16 base align=8 +QObject (0x7f4f35e165b0) 0 + vptr=((& QObject::_ZTV7QObject) + 16u) + +Vtable for QObjectUserData +QObjectUserData::_ZTV15QObjectUserData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QObjectUserData) +16 QObjectUserData::~QObjectUserData +24 QObjectUserData::~QObjectUserData + +Class QObjectUserData + size=8 align=8 + base size=8 base align=8 +QObjectUserData (0x7f4f35e9ab60) 0 nearly-empty + vptr=((& QObjectUserData::_ZTV15QObjectUserData) + 16u) + +Vtable for QIODevice +QIODevice::_ZTV9QIODevice: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QIODevice) +16 QIODevice::metaObject +24 QIODevice::qt_metacast +32 QIODevice::qt_metacall +40 QIODevice::~QIODevice +48 QIODevice::~QIODevice +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QIODevice::isSequential +120 QIODevice::open +128 QIODevice::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QIODevice::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 __cxa_pure_virtual +224 QIODevice::readLineData +232 __cxa_pure_virtual + +Class QIODevice + size=16 align=8 + base size=16 base align=8 +QIODevice (0x7f4f35eac150) 0 + vptr=((& QIODevice::_ZTV9QIODevice) + 16u) + QObject (0x7f4f35eac1c0) 0 + primary-for QIODevice (0x7f4f35eac150) + +Class _IO_marker + size=24 align=8 + base size=24 base align=8 +_IO_marker (0x7f4f35d0ccb0) 0 + +Class _IO_FILE + size=216 align=8 + base size=216 base align=8 +_IO_FILE (0x7f4f35d0cd20) 0 + +Vtable for QFile +QFile::_ZTV5QFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QFile) +16 QFile::metaObject +24 QFile::qt_metacast +32 QFile::qt_metacall +40 QFile::~QFile +48 QFile::~QFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QFile::fileEngine + +Class QFile + size=16 align=8 + base size=16 base align=8 +QFile (0x7f4f35d0ce00) 0 + vptr=((& QFile::_ZTV5QFile) + 16u) + QIODevice (0x7f4f35d0ce70) 0 + primary-for QFile (0x7f4f35d0ce00) + QObject (0x7f4f35d0cee0) 0 + primary-for QIODevice (0x7f4f35d0ce70) + +Class QFileInfo + size=8 align=8 + base size=8 base align=8 +QFileInfo (0x7f4f35db0070) 0 + +Vtable for QDataStream +QDataStream::_ZTV11QDataStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QDataStream) +16 QDataStream::~QDataStream +24 QDataStream::~QDataStream + +Class QDataStream + size=40 align=8 + base size=40 base align=8 +QDataStream (0x7f4f35c04a10) 0 + vptr=((& QDataStream::_ZTV11QDataStream) + 16u) + +Class QRegExp + size=8 align=8 + base size=8 base align=8 +QRegExp (0x7f4f35c6ce70) 0 + +Class QStringMatcher::Data + size=272 align=8 + base size=272 base align=8 +QStringMatcher::Data (0x7f4f35ad52a0) 0 + +Class QStringMatcher + size=1048 align=8 + base size=1048 base align=8 +QStringMatcher (0x7f4f35cc9c40) 0 + +Class QStringList + size=8 align=8 + base size=8 base align=8 +QStringList (0x7f4f35ad5850) 0 + QList (0x7f4f35ad58c0) 0 + +Class QDir + size=8 align=8 + base size=8 base align=8 +QDir (0x7f4f35b734d0) 0 + +Class QAbstractFileEngine::ExtensionOption + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionOption (0x7f4f35a1a8c0) 0 empty + +Class QAbstractFileEngine::ExtensionReturn + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionReturn (0x7f4f35a1a930) 0 empty + +Class QAbstractFileEngine::MapExtensionOption + size=24 align=8 + base size=20 base align=8 +QAbstractFileEngine::MapExtensionOption (0x7f4f35a1a9a0) 0 + QAbstractFileEngine::ExtensionOption (0x7f4f35a1aa10) 0 empty + +Class QAbstractFileEngine::MapExtensionReturn + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::MapExtensionReturn (0x7f4f35a1abd0) 0 + QAbstractFileEngine::ExtensionReturn (0x7f4f35a1ac40) 0 empty + +Class QAbstractFileEngine::UnMapExtensionOption + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::UnMapExtensionOption (0x7f4f35a1acb0) 0 + QAbstractFileEngine::ExtensionOption (0x7f4f35a1ad20) 0 empty + +Vtable for QAbstractFileEngine +QAbstractFileEngine::_ZTV19QAbstractFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractFileEngine) +16 QAbstractFileEngine::~QAbstractFileEngine +24 QAbstractFileEngine::~QAbstractFileEngine +32 QAbstractFileEngine::open +40 QAbstractFileEngine::close +48 QAbstractFileEngine::flush +56 QAbstractFileEngine::size +64 QAbstractFileEngine::pos +72 QAbstractFileEngine::seek +80 QAbstractFileEngine::isSequential +88 QAbstractFileEngine::remove +96 QAbstractFileEngine::copy +104 QAbstractFileEngine::rename +112 QAbstractFileEngine::link +120 QAbstractFileEngine::mkdir +128 QAbstractFileEngine::rmdir +136 QAbstractFileEngine::setSize +144 QAbstractFileEngine::caseSensitive +152 QAbstractFileEngine::isRelativePath +160 QAbstractFileEngine::entryList +168 QAbstractFileEngine::fileFlags +176 QAbstractFileEngine::setPermissions +184 QAbstractFileEngine::fileName +192 QAbstractFileEngine::ownerId +200 QAbstractFileEngine::owner +208 QAbstractFileEngine::fileTime +216 QAbstractFileEngine::setFileName +224 QAbstractFileEngine::handle +232 QAbstractFileEngine::beginEntryList +240 QAbstractFileEngine::endEntryList +248 QAbstractFileEngine::read +256 QAbstractFileEngine::readLine +264 QAbstractFileEngine::write +272 QAbstractFileEngine::extension +280 QAbstractFileEngine::supportsExtension + +Class QAbstractFileEngine + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngine (0x7f4f35a00850) 0 + vptr=((& QAbstractFileEngine::_ZTV19QAbstractFileEngine) + 16u) + +Vtable for QAbstractFileEngineHandler +QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QAbstractFileEngineHandler) +16 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +24 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +32 __cxa_pure_virtual + +Class QAbstractFileEngineHandler + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngineHandler (0x7f4f35a52bd0) 0 nearly-empty + vptr=((& QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler) + 16u) + +Vtable for QAbstractFileEngineIterator +QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QAbstractFileEngineIterator) +16 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +24 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QAbstractFileEngineIterator::currentFileInfo +64 QAbstractFileEngineIterator::entryInfo + +Class QAbstractFileEngineIterator + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngineIterator (0x7f4f35a52d90) 0 + vptr=((& QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator) + 16u) + +Vtable for QBuffer +QBuffer::_ZTV7QBuffer: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QBuffer) +16 QBuffer::metaObject +24 QBuffer::qt_metacast +32 QBuffer::qt_metacall +40 QBuffer::~QBuffer +48 QBuffer::~QBuffer +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QBuffer::connectNotify +104 QBuffer::disconnectNotify +112 QIODevice::isSequential +120 QBuffer::open +128 QBuffer::close +136 QBuffer::pos +144 QBuffer::size +152 QBuffer::seek +160 QBuffer::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QBuffer::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QBuffer::readData +224 QIODevice::readLineData +232 QBuffer::writeData + +Class QBuffer + size=16 align=8 + base size=16 base align=8 +QBuffer (0x7f4f35a65690) 0 + vptr=((& QBuffer::_ZTV7QBuffer) + 16u) + QIODevice (0x7f4f35a65700) 0 + primary-for QBuffer (0x7f4f35a65690) + QObject (0x7f4f35a65770) 0 + primary-for QIODevice (0x7f4f35a65700) + +Class QHashData::Node + size=16 align=8 + base size=16 base align=8 +QHashData::Node (0x7f4f35aa6e00) 0 + +Class QHashData + size=40 align=8 + base size=40 base align=8 +QHashData (0x7f4f35aa6d90) 0 + +Class QHashDummyValue + size=1 align=1 + base size=0 base align=1 +QHashDummyValue (0x7f4f35acb150) 0 empty + +Class QMapData::Node + size=16 align=8 + base size=16 base align=8 +QMapData::Node (0x7f4f359c8a80) 0 + +Class QMapData + size=128 align=8 + base size=128 base align=8 +QMapData (0x7f4f359c8a10) 0 + +Vtable for QSystemLocale +QSystemLocale::_ZTV13QSystemLocale: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSystemLocale) +16 QSystemLocale::~QSystemLocale +24 QSystemLocale::~QSystemLocale +32 QSystemLocale::query +40 QSystemLocale::fallbackLocale + +Class QSystemLocale + size=8 align=8 + base size=8 base align=8 +QSystemLocale (0x7f4f35706690) 0 nearly-empty + vptr=((& QSystemLocale::_ZTV13QSystemLocale) + 16u) + +Class QLocale::Data + size=4 align=2 + base size=4 base align=2 +QLocale::Data (0x7f4f35753d90) 0 + +Class QLocale + size=8 align=8 + base size=8 base align=8 +QLocale (0x7f4f35706af0) 0 + +Class QTextCodec::ConverterState + size=32 align=8 + base size=32 base align=8 +QTextCodec::ConverterState (0x7f4f357abbd0) 0 + +Vtable for QTextCodec +QTextCodec::_ZTV10QTextCodec: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextCodec) +16 __cxa_pure_virtual +24 QTextCodec::aliases +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QTextCodec::~QTextCodec +64 QTextCodec::~QTextCodec + +Class QTextCodec + size=8 align=8 + base size=8 base align=8 +QTextCodec (0x7f4f3579b460) 0 nearly-empty + vptr=((& QTextCodec::_ZTV10QTextCodec) + 16u) + +Class QTextEncoder + size=40 align=8 + base size=40 base align=8 +QTextEncoder (0x7f4f35618150) 0 + +Class QTextDecoder + size=40 align=8 + base size=40 base align=8 +QTextDecoder (0x7f4f35618f50) 0 + +Vtable for QTextStream +QTextStream::_ZTV11QTextStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTextStream) +16 QTextStream::~QTextStream +24 QTextStream::~QTextStream + +Class QTextStream + size=16 align=8 + base size=16 base align=8 +QTextStream (0x7f4f35621d90) 0 + vptr=((& QTextStream::_ZTV11QTextStream) + 16u) + +Class QTextStreamManipulator + size=40 align=8 + base size=38 base align=8 +QTextStreamManipulator (0x7f4f35698a80) 0 + +Vtable for QTextIStream +QTextIStream::_ZTV12QTextIStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextIStream) +16 QTextIStream::~QTextIStream +24 QTextIStream::~QTextIStream + +Class QTextIStream + size=16 align=8 + base size=16 base align=8 +QTextIStream (0x7f4f354ca070) 0 + vptr=((& QTextIStream::_ZTV12QTextIStream) + 16u) + QTextStream (0x7f4f354ca0e0) 0 + primary-for QTextIStream (0x7f4f354ca070) + +Vtable for QTextOStream +QTextOStream::_ZTV12QTextOStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextOStream) +16 QTextOStream::~QTextOStream +24 QTextOStream::~QTextOStream + +Class QTextOStream + size=16 align=8 + base size=16 base align=8 +QTextOStream (0x7f4f354d6ee0) 0 + vptr=((& QTextOStream::_ZTV12QTextOStream) + 16u) + QTextStream (0x7f4f354d6f50) 0 + primary-for QTextOStream (0x7f4f354d6ee0) + +Class wait + size=4 align=4 + base size=4 base align=4 +wait (0x7f4f354ecd90) 0 + +Class timespec + size=16 align=8 + base size=16 base align=8 +timespec (0x7f4f354f90e0) 0 + +Class timeval + size=16 align=8 + base size=16 base align=8 +timeval (0x7f4f354f9150) 0 + +Class __pthread_internal_list + size=16 align=8 + base size=16 base align=8 +__pthread_internal_list (0x7f4f354f92a0) 0 + +Class random_data + size=48 align=8 + base size=48 base align=8 +random_data (0x7f4f354f9850) 0 + +Class drand48_data + size=24 align=8 + base size=24 base align=8 +drand48_data (0x7f4f354f98c0) 0 + +Class QVectorData + size=16 align=4 + base size=16 base align=4 +QVectorData (0x7f4f354f9930) 0 + +Class QContiguousCacheData + size=24 align=4 + base size=24 base align=4 +QContiguousCacheData (0x7f4f354b5620) 0 + +Class QDebug::Stream + size=40 align=8 + base size=34 base align=8 +QDebug::Stream (0x7f4f35317150) 0 + +Class QDebug + size=8 align=8 + base size=8 base align=8 +QDebug (0x7f4f353170e0) 0 + +Class QNoDebug + size=1 align=1 + base size=0 base align=1 +QNoDebug (0x7f4f351c60e0) 0 empty + +Vtable for QDirIterator +QDirIterator::_ZTV12QDirIterator: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QDirIterator) +16 QDirIterator::~QDirIterator +24 QDirIterator::~QDirIterator + +Class QDirIterator + size=16 align=8 + base size=16 base align=8 +QDirIterator (0x7f4f351d7700) 0 + vptr=((& QDirIterator::_ZTV12QDirIterator) + 16u) + +Vtable for QFileSystemWatcher +QFileSystemWatcher::_ZTV18QFileSystemWatcher: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFileSystemWatcher) +16 QFileSystemWatcher::metaObject +24 QFileSystemWatcher::qt_metacast +32 QFileSystemWatcher::qt_metacall +40 QFileSystemWatcher::~QFileSystemWatcher +48 QFileSystemWatcher::~QFileSystemWatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QFileSystemWatcher + size=16 align=8 + base size=16 base align=8 +QFileSystemWatcher (0x7f4f35231540) 0 + vptr=((& QFileSystemWatcher::_ZTV18QFileSystemWatcher) + 16u) + QObject (0x7f4f352315b0) 0 + primary-for QFileSystemWatcher (0x7f4f35231540) + +Vtable for QFSFileEngine +QFSFileEngine::_ZTV13QFSFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QFSFileEngine) +16 QFSFileEngine::~QFSFileEngine +24 QFSFileEngine::~QFSFileEngine +32 QFSFileEngine::open +40 QFSFileEngine::close +48 QFSFileEngine::flush +56 QFSFileEngine::size +64 QFSFileEngine::pos +72 QFSFileEngine::seek +80 QFSFileEngine::isSequential +88 QFSFileEngine::remove +96 QFSFileEngine::copy +104 QFSFileEngine::rename +112 QFSFileEngine::link +120 QFSFileEngine::mkdir +128 QFSFileEngine::rmdir +136 QFSFileEngine::setSize +144 QFSFileEngine::caseSensitive +152 QFSFileEngine::isRelativePath +160 QFSFileEngine::entryList +168 QFSFileEngine::fileFlags +176 QFSFileEngine::setPermissions +184 QFSFileEngine::fileName +192 QFSFileEngine::ownerId +200 QFSFileEngine::owner +208 QFSFileEngine::fileTime +216 QFSFileEngine::setFileName +224 QFSFileEngine::handle +232 QFSFileEngine::beginEntryList +240 QFSFileEngine::endEntryList +248 QFSFileEngine::read +256 QFSFileEngine::readLine +264 QFSFileEngine::write +272 QFSFileEngine::extension +280 QFSFileEngine::supportsExtension + +Class QFSFileEngine + size=16 align=8 + base size=16 base align=8 +QFSFileEngine (0x7f4f35244a80) 0 + vptr=((& QFSFileEngine::_ZTV13QFSFileEngine) + 16u) + QAbstractFileEngine (0x7f4f35244af0) 0 + primary-for QFSFileEngine (0x7f4f35244a80) + +Class QSharedData + size=4 align=4 + base size=4 base align=4 +QSharedData (0x7f4f35253e70) 0 + +Class QProcessEnvironment + size=8 align=8 + base size=8 base align=8 +QProcessEnvironment (0x7f4f3529e1c0) 0 + +Vtable for QProcess +QProcess::_ZTV8QProcess: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QProcess) +16 QProcess::metaObject +24 QProcess::qt_metacast +32 QProcess::qt_metacall +40 QProcess::~QProcess +48 QProcess::~QProcess +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QProcess::isSequential +120 QIODevice::open +128 QProcess::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QProcess::atEnd +168 QIODevice::reset +176 QProcess::bytesAvailable +184 QProcess::bytesToWrite +192 QProcess::canReadLine +200 QProcess::waitForReadyRead +208 QProcess::waitForBytesWritten +216 QProcess::readData +224 QIODevice::readLineData +232 QProcess::writeData +240 QProcess::setupChildProcess + +Class QProcess + size=16 align=8 + base size=16 base align=8 +QProcess (0x7f4f3529ecb0) 0 + vptr=((& QProcess::_ZTV8QProcess) + 16u) + QIODevice (0x7f4f3529ed20) 0 + primary-for QProcess (0x7f4f3529ecb0) + QObject (0x7f4f3529ed90) 0 + primary-for QIODevice (0x7f4f3529ed20) + +Class QResource + size=8 align=8 + base size=8 base align=8 +QResource (0x7f4f350e41c0) 0 + +Class QMetaType + size=1 align=1 + base size=0 base align=1 +QMetaType (0x7f4f350e4e70) 0 empty + +Class QVariant::PrivateShared + size=16 align=8 + base size=12 base align=8 +QVariant::PrivateShared (0x7f4f34fe2700) 0 + +Class QVariant::Private::Data + size=8 align=8 + base size=8 base align=8 +QVariant::Private::Data (0x7f4f34fe2a10) 0 + +Class QVariant::Private + size=16 align=8 + base size=12 base align=8 +QVariant::Private (0x7f4f34fe27e0) 0 + +Class QVariant::Handler + size=72 align=8 + base size=72 base align=8 +QVariant::Handler (0x7f4f34ff1700) 0 + +Class QVariant + size=16 align=8 + base size=16 base align=8 +QVariant (0x7f4f34fb27e0) 0 + +Class QVariantComparisonHelper + size=8 align=8 + base size=8 base align=8 +QVariantComparisonHelper (0x7f4f34ea19a0) 0 + +Vtable for QSettings +QSettings::_ZTV9QSettings: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QSettings) +16 QSettings::metaObject +24 QSettings::qt_metacast +32 QSettings::qt_metacall +40 QSettings::~QSettings +48 QSettings::~QSettings +56 QSettings::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSettings + size=16 align=8 + base size=16 base align=8 +QSettings (0x7f4f34ec7ee0) 0 + vptr=((& QSettings::_ZTV9QSettings) + 16u) + QObject (0x7f4f34ec7f50) 0 + primary-for QSettings (0x7f4f34ec7ee0) + +Vtable for QTemporaryFile +QTemporaryFile::_ZTV14QTemporaryFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QTemporaryFile) +16 QTemporaryFile::metaObject +24 QTemporaryFile::qt_metacast +32 QTemporaryFile::qt_metacall +40 QTemporaryFile::~QTemporaryFile +48 QTemporaryFile::~QTemporaryFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QTemporaryFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QTemporaryFile::fileEngine + +Class QTemporaryFile + size=16 align=8 + base size=16 base align=8 +QTemporaryFile (0x7f4f34f4c2a0) 0 + vptr=((& QTemporaryFile::_ZTV14QTemporaryFile) + 16u) + QFile (0x7f4f34f4c310) 0 + primary-for QTemporaryFile (0x7f4f34f4c2a0) + QIODevice (0x7f4f34f4c380) 0 + primary-for QFile (0x7f4f34f4c310) + QObject (0x7f4f34f4c3f0) 0 + primary-for QIODevice (0x7f4f34f4c380) + +Class QUrl + size=8 align=8 + base size=8 base align=8 +QUrl (0x7f4f34f669a0) 0 + +Class QXmlStreamStringRef + size=16 align=8 + base size=16 base align=8 +QXmlStreamStringRef (0x7f4f34def070) 0 + +Class QXmlStreamAttribute + size=80 align=8 + base size=73 base align=8 +QXmlStreamAttribute (0x7f4f34e0f850) 0 + +Class QXmlStreamAttributes + size=8 align=8 + base size=8 base align=8 +QXmlStreamAttributes (0x7f4f34e37310) 0 + QVector (0x7f4f34e37380) 0 + +Class QXmlStreamNamespaceDeclaration + size=40 align=8 + base size=40 base align=8 +QXmlStreamNamespaceDeclaration (0x7f4f34e377e0) 0 + +Class QXmlStreamNotationDeclaration + size=56 align=8 + base size=56 base align=8 +QXmlStreamNotationDeclaration (0x7f4f34e7a1c0) 0 + +Class QXmlStreamEntityDeclaration + size=88 align=8 + base size=88 base align=8 +QXmlStreamEntityDeclaration (0x7f4f34e98070) 0 + +Vtable for QXmlStreamEntityResolver +QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QXmlStreamEntityResolver) +16 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +24 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +32 QXmlStreamEntityResolver::resolveEntity +40 QXmlStreamEntityResolver::resolveUndeclaredEntity + +Class QXmlStreamEntityResolver + size=8 align=8 + base size=8 base align=8 +QXmlStreamEntityResolver (0x7f4f34cb49a0) 0 nearly-empty + vptr=((& QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver) + 16u) + +Class QXmlStreamReader + size=8 align=8 + base size=8 base align=8 +QXmlStreamReader (0x7f4f34cb4b60) 0 + +Class QXmlStreamWriter + size=8 align=8 + base size=8 base align=8 +QXmlStreamWriter (0x7f4f34cfbc40) 0 + +Vtable for QAbstractState +QAbstractState::_ZTV14QAbstractState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QAbstractState) +16 QAbstractState::metaObject +24 QAbstractState::qt_metacast +32 QAbstractState::qt_metacall +40 QAbstractState::~QAbstractState +48 QAbstractState::~QAbstractState +56 QAbstractState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QAbstractState + size=16 align=8 + base size=16 base align=8 +QAbstractState (0x7f4f34d11a80) 0 + vptr=((& QAbstractState::_ZTV14QAbstractState) + 16u) + QObject (0x7f4f34d11af0) 0 + primary-for QAbstractState (0x7f4f34d11a80) + +Vtable for QAbstractTransition +QAbstractTransition::_ZTV19QAbstractTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractTransition) +16 QAbstractTransition::metaObject +24 QAbstractTransition::qt_metacast +32 QAbstractTransition::qt_metacall +40 QAbstractTransition::~QAbstractTransition +48 QAbstractTransition::~QAbstractTransition +56 QAbstractTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QAbstractTransition + size=16 align=8 + base size=16 base align=8 +QAbstractTransition (0x7f4f34d372a0) 0 + vptr=((& QAbstractTransition::_ZTV19QAbstractTransition) + 16u) + QObject (0x7f4f34d37310) 0 + primary-for QAbstractTransition (0x7f4f34d372a0) + +Vtable for QEvent +QEvent::_ZTV6QEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QEvent) +16 QEvent::~QEvent +24 QEvent::~QEvent + +Class QEvent + size=24 align=8 + base size=20 base align=8 +QEvent (0x7f4f34d4caf0) 0 + vptr=((& QEvent::_ZTV6QEvent) + 16u) + +Vtable for QTimerEvent +QTimerEvent::_ZTV11QTimerEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTimerEvent) +16 QTimerEvent::~QTimerEvent +24 QTimerEvent::~QTimerEvent + +Class QTimerEvent + size=24 align=8 + base size=24 base align=8 +QTimerEvent (0x7f4f34d6e700) 0 + vptr=((& QTimerEvent::_ZTV11QTimerEvent) + 16u) + QEvent (0x7f4f34d6e770) 0 + primary-for QTimerEvent (0x7f4f34d6e700) + +Vtable for QChildEvent +QChildEvent::_ZTV11QChildEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QChildEvent) +16 QChildEvent::~QChildEvent +24 QChildEvent::~QChildEvent + +Class QChildEvent + size=32 align=8 + base size=32 base align=8 +QChildEvent (0x7f4f34d6eb60) 0 + vptr=((& QChildEvent::_ZTV11QChildEvent) + 16u) + QEvent (0x7f4f34d6ebd0) 0 + primary-for QChildEvent (0x7f4f34d6eb60) + +Vtable for QCustomEvent +QCustomEvent::_ZTV12QCustomEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QCustomEvent) +16 QCustomEvent::~QCustomEvent +24 QCustomEvent::~QCustomEvent + +Class QCustomEvent + size=24 align=8 + base size=20 base align=8 +QCustomEvent (0x7f4f34d77e00) 0 + vptr=((& QCustomEvent::_ZTV12QCustomEvent) + 16u) + QEvent (0x7f4f34d77e70) 0 + primary-for QCustomEvent (0x7f4f34d77e00) + +Vtable for QDynamicPropertyChangeEvent +QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QDynamicPropertyChangeEvent) +16 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent +24 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent + +Class QDynamicPropertyChangeEvent + size=32 align=8 + base size=32 base align=8 +QDynamicPropertyChangeEvent (0x7f4f34d89620) 0 + vptr=((& QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent) + 16u) + QEvent (0x7f4f34d89690) 0 + primary-for QDynamicPropertyChangeEvent (0x7f4f34d89620) + +Vtable for QEventTransition +QEventTransition::_ZTV16QEventTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QEventTransition) +16 QEventTransition::metaObject +24 QEventTransition::qt_metacast +32 QEventTransition::qt_metacall +40 QEventTransition::~QEventTransition +48 QEventTransition::~QEventTransition +56 QEventTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QEventTransition::eventTest +120 QEventTransition::onTransition + +Class QEventTransition + size=16 align=8 + base size=16 base align=8 +QEventTransition (0x7f4f34d89af0) 0 + vptr=((& QEventTransition::_ZTV16QEventTransition) + 16u) + QAbstractTransition (0x7f4f34d89b60) 0 + primary-for QEventTransition (0x7f4f34d89af0) + QObject (0x7f4f34d89bd0) 0 + primary-for QAbstractTransition (0x7f4f34d89b60) + +Vtable for QFinalState +QFinalState::_ZTV11QFinalState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFinalState) +16 QFinalState::metaObject +24 QFinalState::qt_metacast +32 QFinalState::qt_metacall +40 QFinalState::~QFinalState +48 QFinalState::~QFinalState +56 QFinalState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFinalState::onEntry +120 QFinalState::onExit + +Class QFinalState + size=16 align=8 + base size=16 base align=8 +QFinalState (0x7f4f34ba59a0) 0 + vptr=((& QFinalState::_ZTV11QFinalState) + 16u) + QAbstractState (0x7f4f34ba5a10) 0 + primary-for QFinalState (0x7f4f34ba59a0) + QObject (0x7f4f34ba5a80) 0 + primary-for QAbstractState (0x7f4f34ba5a10) + +Vtable for QHistoryState +QHistoryState::_ZTV13QHistoryState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QHistoryState) +16 QHistoryState::metaObject +24 QHistoryState::qt_metacast +32 QHistoryState::qt_metacall +40 QHistoryState::~QHistoryState +48 QHistoryState::~QHistoryState +56 QHistoryState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QHistoryState::onEntry +120 QHistoryState::onExit + +Class QHistoryState + size=16 align=8 + base size=16 base align=8 +QHistoryState (0x7f4f34bbd230) 0 + vptr=((& QHistoryState::_ZTV13QHistoryState) + 16u) + QAbstractState (0x7f4f34bbd2a0) 0 + primary-for QHistoryState (0x7f4f34bbd230) + QObject (0x7f4f34bbd310) 0 + primary-for QAbstractState (0x7f4f34bbd2a0) + +Vtable for QSignalTransition +QSignalTransition::_ZTV17QSignalTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QSignalTransition) +16 QSignalTransition::metaObject +24 QSignalTransition::qt_metacast +32 QSignalTransition::qt_metacall +40 QSignalTransition::~QSignalTransition +48 QSignalTransition::~QSignalTransition +56 QSignalTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QSignalTransition::eventTest +120 QSignalTransition::onTransition + +Class QSignalTransition + size=16 align=8 + base size=16 base align=8 +QSignalTransition (0x7f4f34bcef50) 0 + vptr=((& QSignalTransition::_ZTV17QSignalTransition) + 16u) + QAbstractTransition (0x7f4f34bd7000) 0 + primary-for QSignalTransition (0x7f4f34bcef50) + QObject (0x7f4f34bd7070) 0 + primary-for QAbstractTransition (0x7f4f34bd7000) + +Vtable for QState +QState::_ZTV6QState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QState) +16 QState::metaObject +24 QState::qt_metacast +32 QState::qt_metacall +40 QState::~QState +48 QState::~QState +56 QState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QState::onEntry +120 QState::onExit + +Class QState + size=16 align=8 + base size=16 base align=8 +QState (0x7f4f34be9af0) 0 + vptr=((& QState::_ZTV6QState) + 16u) + QAbstractState (0x7f4f34be9b60) 0 + primary-for QState (0x7f4f34be9af0) + QObject (0x7f4f34be9bd0) 0 + primary-for QAbstractState (0x7f4f34be9b60) + +Vtable for QStateMachine::SignalEvent +QStateMachine::SignalEvent::_ZTVN13QStateMachine11SignalEventE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN13QStateMachine11SignalEventE) +16 QStateMachine::SignalEvent::~SignalEvent +24 QStateMachine::SignalEvent::~SignalEvent + +Class QStateMachine::SignalEvent + size=48 align=8 + base size=48 base align=8 +QStateMachine::SignalEvent (0x7f4f34c0e150) 0 + vptr=((& QStateMachine::SignalEvent::_ZTVN13QStateMachine11SignalEventE) + 16u) + QEvent (0x7f4f34c0e1c0) 0 + primary-for QStateMachine::SignalEvent (0x7f4f34c0e150) + +Vtable for QStateMachine::WrappedEvent +QStateMachine::WrappedEvent::_ZTVN13QStateMachine12WrappedEventE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN13QStateMachine12WrappedEventE) +16 QStateMachine::WrappedEvent::~WrappedEvent +24 QStateMachine::WrappedEvent::~WrappedEvent + +Class QStateMachine::WrappedEvent + size=40 align=8 + base size=40 base align=8 +QStateMachine::WrappedEvent (0x7f4f34c0e700) 0 + vptr=((& QStateMachine::WrappedEvent::_ZTVN13QStateMachine12WrappedEventE) + 16u) + QEvent (0x7f4f34c0e770) 0 + primary-for QStateMachine::WrappedEvent (0x7f4f34c0e700) + +Vtable for QStateMachine +QStateMachine::_ZTV13QStateMachine: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QStateMachine) +16 QStateMachine::metaObject +24 QStateMachine::qt_metacast +32 QStateMachine::qt_metacall +40 QStateMachine::~QStateMachine +48 QStateMachine::~QStateMachine +56 QStateMachine::event +64 QStateMachine::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QStateMachine::onEntry +120 QStateMachine::onExit +128 QStateMachine::beginSelectTransitions +136 QStateMachine::endSelectTransitions +144 QStateMachine::beginMicrostep +152 QStateMachine::endMicrostep + +Class QStateMachine + size=16 align=8 + base size=16 base align=8 +QStateMachine (0x7f4f34c05ee0) 0 + vptr=((& QStateMachine::_ZTV13QStateMachine) + 16u) + QState (0x7f4f34c05f50) 0 + primary-for QStateMachine (0x7f4f34c05ee0) + QAbstractState (0x7f4f34c0e000) 0 + primary-for QState (0x7f4f34c05f50) + QObject (0x7f4f34c0e070) 0 + primary-for QAbstractState (0x7f4f34c0e000) + +Class QBitArray + size=8 align=8 + base size=8 base align=8 +QBitArray (0x7f4f34c3e150) 0 + +Class QBitRef + size=16 align=8 + base size=12 base align=8 +QBitRef (0x7f4f34c94e00) 0 + +Class QByteArrayMatcher::Data + size=272 align=8 + base size=272 base align=8 +QByteArrayMatcher::Data (0x7f4f34aa8af0) 0 + +Class QByteArrayMatcher + size=1040 align=8 + base size=1040 base align=8 +QByteArrayMatcher (0x7f4f34aa84d0) 0 + +Class QCryptographicHash + size=8 align=8 + base size=8 base align=8 +QCryptographicHash (0x7f4f34ade150) 0 + +Vtable for QtSharedPointer::ExternalRefCountData +QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN15QtSharedPointer20ExternalRefCountDataE) +16 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +24 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +32 QtSharedPointer::ExternalRefCountData::destroy + +Class QtSharedPointer::ExternalRefCountData + size=16 align=8 + base size=16 base align=8 +QtSharedPointer::ExternalRefCountData (0x7f4f34b0b070) 0 + vptr=((& QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE) + 16u) + +Vtable for QtSharedPointer::ExternalRefCountWithDestroyFn +QtSharedPointer::ExternalRefCountWithDestroyFn::_ZTVN15QtSharedPointer29ExternalRefCountWithDestroyFnE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN15QtSharedPointer29ExternalRefCountWithDestroyFnE) +16 QtSharedPointer::ExternalRefCountWithDestroyFn::~ExternalRefCountWithDestroyFn +24 QtSharedPointer::ExternalRefCountWithDestroyFn::~ExternalRefCountWithDestroyFn +32 QtSharedPointer::ExternalRefCountWithDestroyFn::destroy + +Class QtSharedPointer::ExternalRefCountWithDestroyFn + size=24 align=8 + base size=24 base align=8 +QtSharedPointer::ExternalRefCountWithDestroyFn (0x7f4f34b22930) 0 + vptr=((& QtSharedPointer::ExternalRefCountWithDestroyFn::_ZTVN15QtSharedPointer29ExternalRefCountWithDestroyFnE) + 16u) + QtSharedPointer::ExternalRefCountData (0x7f4f34b229a0) 0 + primary-for QtSharedPointer::ExternalRefCountWithDestroyFn (0x7f4f34b22930) + +Class QDate + size=4 align=4 + base size=4 base align=4 +QDate (0x7f4f349a65b0) 0 + +Class QTime + size=4 align=4 + base size=4 base align=4 +QTime (0x7f4f349d9540) 0 + +Class QDateTime + size=8 align=8 + base size=8 base align=8 +QDateTime (0x7f4f349f3af0) 0 + +Class QEasingCurve + size=8 align=8 + base size=8 base align=8 +QEasingCurve (0x7f4f34a3b000) 0 + +Class QPoint + size=8 align=4 + base size=8 base align=4 +QPoint (0x7f4f34a3bee0) 0 + +Class QPointF + size=16 align=8 + base size=16 base align=8 +QPointF (0x7f4f34a7eaf0) 0 + +Class QLine + size=16 align=4 + base size=16 base align=4 +QLine (0x7f4f348b3af0) 0 + +Class QLineF + size=32 align=8 + base size=32 base align=8 +QLineF (0x7f4f348ee9a0) 0 + +Class QLinkedListData + size=32 align=8 + base size=32 base align=8 +QLinkedListData (0x7f4f3494b460) 0 + +Class QMargins + size=16 align=4 + base size=16 base align=4 +QMargins (0x7f4f3480a380) 0 + +Class QSize + size=8 align=4 + base size=8 base align=4 +QSize (0x7f4f34839150) 0 + +Class QSizeF + size=16 align=8 + base size=16 base align=8 +QSizeF (0x7f4f34879e00) 0 + +Class QRect + size=16 align=4 + base size=16 base align=4 +QRect (0x7f4f346cd380) 0 + +Class QRectF + size=32 align=8 + base size=32 base align=8 +QRectF (0x7f4f3477ad20) 0 + +Class QLatin1Literal + size=16 align=8 + base size=16 base align=8 +QLatin1Literal (0x7f4f34629ee0) 0 + +Class QAbstractConcatenable + size=1 align=1 + base size=0 base align=1 +QAbstractConcatenable (0x7f4f346393f0) 0 empty + +Class QTextBoundaryFinder + size=48 align=8 + base size=48 base align=8 +QTextBoundaryFinder (0x7f4f34672380) 0 + +Vtable for QTimeLine +QTimeLine::_ZTV9QTimeLine: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTimeLine) +16 QTimeLine::metaObject +24 QTimeLine::qt_metacast +32 QTimeLine::qt_metacall +40 QTimeLine::~QTimeLine +48 QTimeLine::~QTimeLine +56 QObject::event +64 QObject::eventFilter +72 QTimeLine::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTimeLine::valueForTime + +Class QTimeLine + size=16 align=8 + base size=16 base align=8 +QTimeLine (0x7f4f34681700) 0 + vptr=((& QTimeLine::_ZTV9QTimeLine) + 16u) + QObject (0x7f4f34681770) 0 + primary-for QTimeLine (0x7f4f34681700) + +Vtable for QRunnable +QRunnable::_ZTV9QRunnable: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QRunnable) +16 __cxa_pure_virtual +24 QRunnable::~QRunnable +32 QRunnable::~QRunnable + +Class QRunnable + size=16 align=8 + base size=12 base align=8 +QRunnable (0x7f4f344a9f50) 0 + vptr=((& QRunnable::_ZTV9QRunnable) + 16u) + +Class QMutex + size=8 align=8 + base size=8 base align=8 +QMutex (0x7f4f344e1620) 0 + +Class QMutexLocker + size=8 align=8 + base size=8 base align=8 +QMutexLocker (0x7f4f344ee1c0) 0 + +Vtable for QtConcurrent::Exception +QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent9ExceptionE) +16 QtConcurrent::Exception::~Exception +24 QtConcurrent::Exception::~Exception +32 std::exception::what +40 QtConcurrent::Exception::raise +48 QtConcurrent::Exception::clone + +Class QtConcurrent::Exception + size=8 align=8 + base size=8 base align=8 +QtConcurrent::Exception (0x7f4f345054d0) 0 nearly-empty + vptr=((& QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE) + 16u) + std::exception (0x7f4f34505540) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7f4f345054d0) + +Vtable for QtConcurrent::UnhandledException +QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent18UnhandledExceptionE) +16 QtConcurrent::UnhandledException::~UnhandledException +24 QtConcurrent::UnhandledException::~UnhandledException +32 std::exception::what +40 QtConcurrent::UnhandledException::raise +48 QtConcurrent::UnhandledException::clone + +Class QtConcurrent::UnhandledException + size=8 align=8 + base size=8 base align=8 +QtConcurrent::UnhandledException (0x7f4f34505770) 0 nearly-empty + vptr=((& QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE) + 16u) + QtConcurrent::Exception (0x7f4f345057e0) 0 nearly-empty + primary-for QtConcurrent::UnhandledException (0x7f4f34505770) + std::exception (0x7f4f34505850) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7f4f345057e0) + +Class QtConcurrent::internal::ExceptionHolder + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionHolder (0x7f4f34505a80) 0 + +Class QtConcurrent::internal::ExceptionStore + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionStore (0x7f4f34505e00) 0 + +Class QtConcurrent::ResultItem + size=16 align=8 + base size=16 base align=8 +QtConcurrent::ResultItem (0x7f4f34505e70) 0 + +Class QtConcurrent::ResultIteratorBase + size=16 align=8 + base size=12 base align=8 +QtConcurrent::ResultIteratorBase (0x7f4f3451ed90) 0 + +Vtable for QtConcurrent::ResultStoreBase +QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent15ResultStoreBaseE) +16 QtConcurrent::ResultStoreBase::~ResultStoreBase +24 QtConcurrent::ResultStoreBase::~ResultStoreBase + +Class QtConcurrent::ResultStoreBase + size=48 align=8 + base size=44 base align=8 +QtConcurrent::ResultStoreBase (0x7f4f34522930) 0 + vptr=((& QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE) + 16u) + +Vtable for QFutureInterfaceBase +QFutureInterfaceBase::_ZTV20QFutureInterfaceBase: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QFutureInterfaceBase) +16 QFutureInterfaceBase::~QFutureInterfaceBase +24 QFutureInterfaceBase::~QFutureInterfaceBase + +Class QFutureInterfaceBase + size=16 align=8 + base size=16 base align=8 +QFutureInterfaceBase (0x7f4f34560d90) 0 + vptr=((& QFutureInterfaceBase::_ZTV20QFutureInterfaceBase) + 16u) + +Vtable for QFutureWatcherBase +QFutureWatcherBase::_ZTV18QFutureWatcherBase: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFutureWatcherBase) +16 QFutureWatcherBase::metaObject +24 QFutureWatcherBase::qt_metacast +32 QFutureWatcherBase::qt_metacall +40 QFutureWatcherBase::~QFutureWatcherBase +48 QFutureWatcherBase::~QFutureWatcherBase +56 QFutureWatcherBase::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QFutureWatcherBase::connectNotify +104 QFutureWatcherBase::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QFutureWatcherBase + size=16 align=8 + base size=16 base align=8 +QFutureWatcherBase (0x7f4f34446690) 0 + vptr=((& QFutureWatcherBase::_ZTV18QFutureWatcherBase) + 16u) + QObject (0x7f4f34446700) 0 + primary-for QFutureWatcherBase (0x7f4f34446690) + +Vtable for QThread +QThread::_ZTV7QThread: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QThread) +16 QThread::metaObject +24 QThread::qt_metacast +32 QThread::qt_metacall +40 QThread::~QThread +48 QThread::~QThread +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QThread::run + +Class QThread + size=16 align=8 + base size=16 base align=8 +QThread (0x7f4f34297a80) 0 + vptr=((& QThread::_ZTV7QThread) + 16u) + QObject (0x7f4f34297af0) 0 + primary-for QThread (0x7f4f34297a80) + +Vtable for QThreadPool +QThreadPool::_ZTV11QThreadPool: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QThreadPool) +16 QThreadPool::metaObject +24 QThreadPool::qt_metacast +32 QThreadPool::qt_metacall +40 QThreadPool::~QThreadPool +48 QThreadPool::~QThreadPool +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QThreadPool + size=16 align=8 + base size=16 base align=8 +QThreadPool (0x7f4f342be930) 0 + vptr=((& QThreadPool::_ZTV11QThreadPool) + 16u) + QObject (0x7f4f342be9a0) 0 + primary-for QThreadPool (0x7f4f342be930) + +Class QWaitCondition + size=8 align=8 + base size=8 base align=8 +QWaitCondition (0x7f4f342d0ee0) 0 + +Class QSemaphore + size=8 align=8 + base size=8 base align=8 +QSemaphore (0x7f4f342d7460) 0 + +Class QtConcurrent::ThreadEngineBarrier + size=24 align=8 + base size=24 base align=8 +QtConcurrent::ThreadEngineBarrier (0x7f4f342d79a0) 0 + +Vtable for QtConcurrent::ThreadEngineBase +QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent16ThreadEngineBaseE) +16 QtConcurrent::ThreadEngineBase::run +24 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +32 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +40 QtConcurrent::ThreadEngineBase::start +48 QtConcurrent::ThreadEngineBase::finish +56 QtConcurrent::ThreadEngineBase::threadFunction +64 QtConcurrent::ThreadEngineBase::shouldStartThread +72 QtConcurrent::ThreadEngineBase::shouldThrottleThread +80 __cxa_pure_virtual + +Class QtConcurrent::ThreadEngineBase + size=64 align=8 + base size=64 base align=8 +QtConcurrent::ThreadEngineBase (0x7f4f342d7a80) 0 + vptr=((& QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE) + 16u) + QRunnable (0x7f4f342d7af0) 0 + primary-for QtConcurrent::ThreadEngineBase (0x7f4f342d7a80) + +VTT for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTTN12QtConcurrent12ThreadEngineIvEE: 2u entries +0 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 24u) +8 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 136u) + +Class QtConcurrent::BlockSizeManager + size=96 align=8 + base size=92 base align=8 +QtConcurrent::BlockSizeManager (0x7f4f34324ee0) 0 + +Vtable for QFactoryInterface +QFactoryInterface::_ZTV17QFactoryInterface: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QFactoryInterface) +16 QFactoryInterface::~QFactoryInterface +24 QFactoryInterface::~QFactoryInterface +32 __cxa_pure_virtual + +Class QFactoryInterface + size=8 align=8 + base size=8 base align=8 +QFactoryInterface (0x7f4f33dc8d20) 0 nearly-empty + vptr=((& QFactoryInterface::_ZTV17QFactoryInterface) + 16u) + +Vtable for QTextCodecFactoryInterface +QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QTextCodecFactoryInterface) +16 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +24 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QTextCodecFactoryInterface + size=8 align=8 + base size=8 base align=8 +QTextCodecFactoryInterface (0x7f4f33dfa000) 0 nearly-empty + vptr=((& QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface) + 16u) + QFactoryInterface (0x7f4f33dfa070) 0 nearly-empty + primary-for QTextCodecFactoryInterface (0x7f4f33dfa000) + +Vtable for QTextCodecPlugin +QTextCodecPlugin::_ZTV16QTextCodecPlugin: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QTextCodecPlugin) +16 QTextCodecPlugin::metaObject +24 QTextCodecPlugin::qt_metacast +32 QTextCodecPlugin::qt_metacall +40 QTextCodecPlugin::~QTextCodecPlugin +48 QTextCodecPlugin::~QTextCodecPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 QTextCodecPlugin::keys +160 QTextCodecPlugin::create +168 (int (*)(...))-0x00000000000000010 +176 (int (*)(...))(& _ZTI16QTextCodecPlugin) +184 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD1Ev +192 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD0Ev +200 QTextCodecPlugin::_ZThn16_NK16QTextCodecPlugin4keysEv +208 QTextCodecPlugin::_ZThn16_N16QTextCodecPlugin6createERK7QString + +Class QTextCodecPlugin + size=24 align=8 + base size=24 base align=8 +QTextCodecPlugin (0x7f4f33e02580) 0 + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 16u) + QObject (0x7f4f33dfaa80) 0 + primary-for QTextCodecPlugin (0x7f4f33e02580) + QTextCodecFactoryInterface (0x7f4f33dfaaf0) 16 nearly-empty + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 184u) + QFactoryInterface (0x7f4f33dfab60) 16 nearly-empty + primary-for QTextCodecFactoryInterface (0x7f4f33dfaaf0) + +Class QLibraryInfo + size=1 align=1 + base size=0 base align=1 +QLibraryInfo (0x7f4f33e52150) 0 empty + +Vtable for QEventLoop +QEventLoop::_ZTV10QEventLoop: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QEventLoop) +16 QEventLoop::metaObject +24 QEventLoop::qt_metacast +32 QEventLoop::qt_metacall +40 QEventLoop::~QEventLoop +48 QEventLoop::~QEventLoop +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QEventLoop + size=16 align=8 + base size=16 base align=8 +QEventLoop (0x7f4f33e522a0) 0 + vptr=((& QEventLoop::_ZTV10QEventLoop) + 16u) + QObject (0x7f4f33e52310) 0 + primary-for QEventLoop (0x7f4f33e522a0) + +Vtable for QAbstractEventDispatcher +QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QAbstractEventDispatcher) +16 QAbstractEventDispatcher::metaObject +24 QAbstractEventDispatcher::qt_metacast +32 QAbstractEventDispatcher::qt_metacall +40 QAbstractEventDispatcher::~QAbstractEventDispatcher +48 QAbstractEventDispatcher::~QAbstractEventDispatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 QAbstractEventDispatcher::startingUp +208 QAbstractEventDispatcher::closingDown + +Class QAbstractEventDispatcher + size=16 align=8 + base size=16 base align=8 +QAbstractEventDispatcher (0x7f4f33c8cbd0) 0 + vptr=((& QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher) + 16u) + QObject (0x7f4f33c8cc40) 0 + primary-for QAbstractEventDispatcher (0x7f4f33c8cbd0) + +Class QModelIndex + size=24 align=8 + base size=24 base align=8 +QModelIndex (0x7f4f33cb1a80) 0 + +Class QPersistentModelIndex + size=8 align=8 + base size=8 base align=8 +QPersistentModelIndex (0x7f4f33cdc540) 0 + +Vtable for QAbstractItemModel +QAbstractItemModel::_ZTV18QAbstractItemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractItemModel) +16 QAbstractItemModel::metaObject +24 QAbstractItemModel::qt_metacast +32 QAbstractItemModel::qt_metacall +40 QAbstractItemModel::~QAbstractItemModel +48 QAbstractItemModel::~QAbstractItemModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractItemModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractItemModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractItemModel + size=16 align=8 + base size=16 base align=8 +QAbstractItemModel (0x7f4f33ce4850) 0 + vptr=((& QAbstractItemModel::_ZTV18QAbstractItemModel) + 16u) + QObject (0x7f4f33ce48c0) 0 + primary-for QAbstractItemModel (0x7f4f33ce4850) + +Vtable for QAbstractTableModel +QAbstractTableModel::_ZTV19QAbstractTableModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractTableModel) +16 QAbstractTableModel::metaObject +24 QAbstractTableModel::qt_metacast +32 QAbstractTableModel::qt_metacall +40 QAbstractTableModel::~QAbstractTableModel +48 QAbstractTableModel::~QAbstractTableModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractTableModel::index +120 QAbstractTableModel::parent +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractTableModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractTableModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractTableModel + size=16 align=8 + base size=16 base align=8 +QAbstractTableModel (0x7f4f33d41b60) 0 + vptr=((& QAbstractTableModel::_ZTV19QAbstractTableModel) + 16u) + QAbstractItemModel (0x7f4f33d41bd0) 0 + primary-for QAbstractTableModel (0x7f4f33d41b60) + QObject (0x7f4f33d41c40) 0 + primary-for QAbstractItemModel (0x7f4f33d41bd0) + +Vtable for QAbstractListModel +QAbstractListModel::_ZTV18QAbstractListModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractListModel) +16 QAbstractListModel::metaObject +24 QAbstractListModel::qt_metacast +32 QAbstractListModel::qt_metacall +40 QAbstractListModel::~QAbstractListModel +48 QAbstractListModel::~QAbstractListModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractListModel::index +120 QAbstractListModel::parent +128 __cxa_pure_virtual +136 QAbstractListModel::columnCount +144 QAbstractListModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractListModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractListModel + size=16 align=8 + base size=16 base align=8 +QAbstractListModel (0x7f4f33d5e0e0) 0 + vptr=((& QAbstractListModel::_ZTV18QAbstractListModel) + 16u) + QAbstractItemModel (0x7f4f33d5e150) 0 + primary-for QAbstractListModel (0x7f4f33d5e0e0) + QObject (0x7f4f33d5e1c0) 0 + primary-for QAbstractItemModel (0x7f4f33d5e150) + +Class QBasicTimer + size=4 align=4 + base size=4 base align=4 +QBasicTimer (0x7f4f33b90230) 0 + +Vtable for QCoreApplication +QCoreApplication::_ZTV16QCoreApplication: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QCoreApplication) +16 QCoreApplication::metaObject +24 QCoreApplication::qt_metacast +32 QCoreApplication::qt_metacall +40 QCoreApplication::~QCoreApplication +48 QCoreApplication::~QCoreApplication +56 QCoreApplication::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCoreApplication::notify +120 QCoreApplication::compressEvent + +Class QCoreApplication + size=16 align=8 + base size=16 base align=8 +QCoreApplication (0x7f4f33b9c620) 0 + vptr=((& QCoreApplication::_ZTV16QCoreApplication) + 16u) + QObject (0x7f4f33b9c690) 0 + primary-for QCoreApplication (0x7f4f33b9c620) + +Class __exception + size=40 align=8 + base size=40 base align=8 +__exception (0x7f4f33bce310) 0 + +Class QMetaMethod + size=16 align=8 + base size=12 base align=8 +QMetaMethod (0x7f4f33c3b770) 0 + +Class QMetaEnum + size=16 align=8 + base size=12 base align=8 +QMetaEnum (0x7f4f33c55bd0) 0 + +Class QMetaProperty + size=32 align=8 + base size=32 base align=8 +QMetaProperty (0x7f4f33c64930) 0 + +Class QMetaClassInfo + size=16 align=8 + base size=12 base align=8 +QMetaClassInfo (0x7f4f33c75000) 0 + +Vtable for QMimeData +QMimeData::_ZTV9QMimeData: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QMimeData) +16 QMimeData::metaObject +24 QMimeData::qt_metacast +32 QMimeData::qt_metacall +40 QMimeData::~QMimeData +48 QMimeData::~QMimeData +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMimeData::hasFormat +120 QMimeData::formats +128 QMimeData::retrieveData + +Class QMimeData + size=16 align=8 + base size=16 base align=8 +QMimeData (0x7f4f33c75af0) 0 + vptr=((& QMimeData::_ZTV9QMimeData) + 16u) + QObject (0x7f4f33c75b60) 0 + primary-for QMimeData (0x7f4f33c75af0) + +Vtable for QObjectCleanupHandler +QObjectCleanupHandler::_ZTV21QObjectCleanupHandler: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QObjectCleanupHandler) +16 QObjectCleanupHandler::metaObject +24 QObjectCleanupHandler::qt_metacast +32 QObjectCleanupHandler::qt_metacall +40 QObjectCleanupHandler::~QObjectCleanupHandler +48 QObjectCleanupHandler::~QObjectCleanupHandler +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObjectCleanupHandler + size=24 align=8 + base size=24 base align=8 +QObjectCleanupHandler (0x7f4f33a99380) 0 + vptr=((& QObjectCleanupHandler::_ZTV21QObjectCleanupHandler) + 16u) + QObject (0x7f4f33a993f0) 0 + primary-for QObjectCleanupHandler (0x7f4f33a99380) + +Vtable for QSharedMemory +QSharedMemory::_ZTV13QSharedMemory: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSharedMemory) +16 QSharedMemory::metaObject +24 QSharedMemory::qt_metacast +32 QSharedMemory::qt_metacall +40 QSharedMemory::~QSharedMemory +48 QSharedMemory::~QSharedMemory +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSharedMemory + size=16 align=8 + base size=16 base align=8 +QSharedMemory (0x7f4f33aaa4d0) 0 + vptr=((& QSharedMemory::_ZTV13QSharedMemory) + 16u) + QObject (0x7f4f33aaa540) 0 + primary-for QSharedMemory (0x7f4f33aaa4d0) + +Vtable for QSignalMapper +QSignalMapper::_ZTV13QSignalMapper: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSignalMapper) +16 QSignalMapper::metaObject +24 QSignalMapper::qt_metacast +32 QSignalMapper::qt_metacall +40 QSignalMapper::~QSignalMapper +48 QSignalMapper::~QSignalMapper +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSignalMapper + size=16 align=8 + base size=16 base align=8 +QSignalMapper (0x7f4f33ac62a0) 0 + vptr=((& QSignalMapper::_ZTV13QSignalMapper) + 16u) + QObject (0x7f4f33ac6310) 0 + primary-for QSignalMapper (0x7f4f33ac62a0) + +Vtable for QSocketNotifier +QSocketNotifier::_ZTV15QSocketNotifier: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSocketNotifier) +16 QSocketNotifier::metaObject +24 QSocketNotifier::qt_metacast +32 QSocketNotifier::qt_metacall +40 QSocketNotifier::~QSocketNotifier +48 QSocketNotifier::~QSocketNotifier +56 QSocketNotifier::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSocketNotifier + size=32 align=8 + base size=25 base align=8 +QSocketNotifier (0x7f4f33ae1690) 0 + vptr=((& QSocketNotifier::_ZTV15QSocketNotifier) + 16u) + QObject (0x7f4f33ae1700) 0 + primary-for QSocketNotifier (0x7f4f33ae1690) + +Class QSystemSemaphore + size=8 align=8 + base size=8 base align=8 +QSystemSemaphore (0x7f4f33afca10) 0 + +Vtable for QTimer +QTimer::_ZTV6QTimer: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QTimer) +16 QTimer::metaObject +24 QTimer::qt_metacast +32 QTimer::qt_metacall +40 QTimer::~QTimer +48 QTimer::~QTimer +56 QObject::event +64 QObject::eventFilter +72 QTimer::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTimer + size=32 align=8 + base size=29 base align=8 +QTimer (0x7f4f33b04460) 0 + vptr=((& QTimer::_ZTV6QTimer) + 16u) + QObject (0x7f4f33b044d0) 0 + primary-for QTimer (0x7f4f33b04460) + +Vtable for QTranslator +QTranslator::_ZTV11QTranslator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTranslator) +16 QTranslator::metaObject +24 QTranslator::qt_metacast +32 QTranslator::qt_metacall +40 QTranslator::~QTranslator +48 QTranslator::~QTranslator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTranslator::translate +120 QTranslator::isEmpty + +Class QTranslator + size=16 align=8 + base size=16 base align=8 +QTranslator (0x7f4f33b2a9a0) 0 + vptr=((& QTranslator::_ZTV11QTranslator) + 16u) + QObject (0x7f4f33b2aa10) 0 + primary-for QTranslator (0x7f4f33b2a9a0) + +Vtable for QLibrary +QLibrary::_ZTV8QLibrary: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QLibrary) +16 QLibrary::metaObject +24 QLibrary::qt_metacast +32 QLibrary::qt_metacall +40 QLibrary::~QLibrary +48 QLibrary::~QLibrary +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QLibrary + size=32 align=8 + base size=25 base align=8 +QLibrary (0x7f4f33b45930) 0 + vptr=((& QLibrary::_ZTV8QLibrary) + 16u) + QObject (0x7f4f33b459a0) 0 + primary-for QLibrary (0x7f4f33b45930) + +Vtable for QPluginLoader +QPluginLoader::_ZTV13QPluginLoader: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QPluginLoader) +16 QPluginLoader::metaObject +24 QPluginLoader::qt_metacast +32 QPluginLoader::qt_metacall +40 QPluginLoader::~QPluginLoader +48 QPluginLoader::~QPluginLoader +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QPluginLoader + size=32 align=8 + base size=25 base align=8 +QPluginLoader (0x7f4f339923f0) 0 + vptr=((& QPluginLoader::_ZTV13QPluginLoader) + 16u) + QObject (0x7f4f33992460) 0 + primary-for QPluginLoader (0x7f4f339923f0) + +Class QUuid + size=16 align=4 + base size=16 base align=4 +QUuid (0x7f4f339a0b60) 0 + +Class QReadWriteLock + size=8 align=8 + base size=8 base align=8 +QReadWriteLock (0x7f4f339c74d0) 0 + +Class QReadLocker + size=8 align=8 + base size=8 base align=8 +QReadLocker (0x7f4f339c7b60) 0 + +Class QWriteLocker + size=8 align=8 + base size=8 base align=8 +QWriteLocker (0x7f4f339e6ee0) 0 + +Class QThreadStorageData + size=4 align=4 + base size=4 base align=4 +QThreadStorageData (0x7f4f33a002a0) 0 + +Vtable for QAbstractAnimation +QAbstractAnimation::_ZTV18QAbstractAnimation: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractAnimation) +16 QAbstractAnimation::metaObject +24 QAbstractAnimation::qt_metacast +32 QAbstractAnimation::qt_metacall +40 QAbstractAnimation::~QAbstractAnimation +48 QAbstractAnimation::~QAbstractAnimation +56 QAbstractAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAbstractAnimation::updateState +136 QAbstractAnimation::updateDirection + +Class QAbstractAnimation + size=16 align=8 + base size=16 base align=8 +QAbstractAnimation (0x7f4f33a00a10) 0 + vptr=((& QAbstractAnimation::_ZTV18QAbstractAnimation) + 16u) + QObject (0x7f4f33a00a80) 0 + primary-for QAbstractAnimation (0x7f4f33a00a10) + +Vtable for QAnimationGroup +QAnimationGroup::_ZTV15QAnimationGroup: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QAnimationGroup) +16 QAnimationGroup::metaObject +24 QAnimationGroup::qt_metacast +32 QAnimationGroup::qt_metacall +40 QAnimationGroup::~QAnimationGroup +48 QAnimationGroup::~QAnimationGroup +56 QAnimationGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAbstractAnimation::updateState +136 QAbstractAnimation::updateDirection + +Class QAnimationGroup + size=16 align=8 + base size=16 base align=8 +QAnimationGroup (0x7f4f33a37150) 0 + vptr=((& QAnimationGroup::_ZTV15QAnimationGroup) + 16u) + QAbstractAnimation (0x7f4f33a371c0) 0 + primary-for QAnimationGroup (0x7f4f33a37150) + QObject (0x7f4f33a37230) 0 + primary-for QAbstractAnimation (0x7f4f33a371c0) + +Vtable for QParallelAnimationGroup +QParallelAnimationGroup::_ZTV23QParallelAnimationGroup: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QParallelAnimationGroup) +16 QParallelAnimationGroup::metaObject +24 QParallelAnimationGroup::qt_metacast +32 QParallelAnimationGroup::qt_metacall +40 QParallelAnimationGroup::~QParallelAnimationGroup +48 QParallelAnimationGroup::~QParallelAnimationGroup +56 QParallelAnimationGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QParallelAnimationGroup::duration +120 QParallelAnimationGroup::updateCurrentTime +128 QParallelAnimationGroup::updateState +136 QParallelAnimationGroup::updateDirection + +Class QParallelAnimationGroup + size=16 align=8 + base size=16 base align=8 +QParallelAnimationGroup (0x7f4f33a51000) 0 + vptr=((& QParallelAnimationGroup::_ZTV23QParallelAnimationGroup) + 16u) + QAnimationGroup (0x7f4f33a51070) 0 + primary-for QParallelAnimationGroup (0x7f4f33a51000) + QAbstractAnimation (0x7f4f33a510e0) 0 + primary-for QAnimationGroup (0x7f4f33a51070) + QObject (0x7f4f33a51150) 0 + primary-for QAbstractAnimation (0x7f4f33a510e0) + +Vtable for QPauseAnimation +QPauseAnimation::_ZTV15QPauseAnimation: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QPauseAnimation) +16 QPauseAnimation::metaObject +24 QPauseAnimation::qt_metacast +32 QPauseAnimation::qt_metacall +40 QPauseAnimation::~QPauseAnimation +48 QPauseAnimation::~QPauseAnimation +56 QPauseAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QPauseAnimation::duration +120 QPauseAnimation::updateCurrentTime +128 QAbstractAnimation::updateState +136 QAbstractAnimation::updateDirection + +Class QPauseAnimation + size=16 align=8 + base size=16 base align=8 +QPauseAnimation (0x7f4f33a5fe70) 0 + vptr=((& QPauseAnimation::_ZTV15QPauseAnimation) + 16u) + QAbstractAnimation (0x7f4f33a5fee0) 0 + primary-for QPauseAnimation (0x7f4f33a5fe70) + QObject (0x7f4f33a5ff50) 0 + primary-for QAbstractAnimation (0x7f4f33a5fee0) + +Vtable for QVariantAnimation +QVariantAnimation::_ZTV17QVariantAnimation: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QVariantAnimation) +16 QVariantAnimation::metaObject +24 QVariantAnimation::qt_metacast +32 QVariantAnimation::qt_metacall +40 QVariantAnimation::~QVariantAnimation +48 QVariantAnimation::~QVariantAnimation +56 QVariantAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QVariantAnimation::duration +120 QVariantAnimation::updateCurrentTime +128 QVariantAnimation::updateState +136 QAbstractAnimation::updateDirection +144 __cxa_pure_virtual +152 QVariantAnimation::interpolated + +Class QVariantAnimation + size=16 align=8 + base size=16 base align=8 +QVariantAnimation (0x7f4f33a7c8c0) 0 + vptr=((& QVariantAnimation::_ZTV17QVariantAnimation) + 16u) + QAbstractAnimation (0x7f4f33a7c930) 0 + primary-for QVariantAnimation (0x7f4f33a7c8c0) + QObject (0x7f4f33a7c9a0) 0 + primary-for QAbstractAnimation (0x7f4f33a7c930) + +Vtable for QPropertyAnimation +QPropertyAnimation::_ZTV18QPropertyAnimation: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QPropertyAnimation) +16 QPropertyAnimation::metaObject +24 QPropertyAnimation::qt_metacast +32 QPropertyAnimation::qt_metacall +40 QPropertyAnimation::~QPropertyAnimation +48 QPropertyAnimation::~QPropertyAnimation +56 QPropertyAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QVariantAnimation::duration +120 QVariantAnimation::updateCurrentTime +128 QPropertyAnimation::updateState +136 QAbstractAnimation::updateDirection +144 QPropertyAnimation::updateCurrentValue +152 QVariantAnimation::interpolated + +Class QPropertyAnimation + size=16 align=8 + base size=16 base align=8 +QPropertyAnimation (0x7f4f33899b60) 0 + vptr=((& QPropertyAnimation::_ZTV18QPropertyAnimation) + 16u) + QVariantAnimation (0x7f4f33899bd0) 0 + primary-for QPropertyAnimation (0x7f4f33899b60) + QAbstractAnimation (0x7f4f33899c40) 0 + primary-for QVariantAnimation (0x7f4f33899bd0) + QObject (0x7f4f33899cb0) 0 + primary-for QAbstractAnimation (0x7f4f33899c40) + +Vtable for QSequentialAnimationGroup +QSequentialAnimationGroup::_ZTV25QSequentialAnimationGroup: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QSequentialAnimationGroup) +16 QSequentialAnimationGroup::metaObject +24 QSequentialAnimationGroup::qt_metacast +32 QSequentialAnimationGroup::qt_metacall +40 QSequentialAnimationGroup::~QSequentialAnimationGroup +48 QSequentialAnimationGroup::~QSequentialAnimationGroup +56 QSequentialAnimationGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QSequentialAnimationGroup::duration +120 QSequentialAnimationGroup::updateCurrentTime +128 QSequentialAnimationGroup::updateState +136 QSequentialAnimationGroup::updateDirection + +Class QSequentialAnimationGroup + size=16 align=8 + base size=16 base align=8 +QSequentialAnimationGroup (0x7f4f338b3b60) 0 + vptr=((& QSequentialAnimationGroup::_ZTV25QSequentialAnimationGroup) + 16u) + QAnimationGroup (0x7f4f338b3bd0) 0 + primary-for QSequentialAnimationGroup (0x7f4f338b3b60) + QAbstractAnimation (0x7f4f338b3c40) 0 + primary-for QAnimationGroup (0x7f4f338b3bd0) + QObject (0x7f4f338b3cb0) 0 + primary-for QAbstractAnimation (0x7f4f338b3c40) + +Class QSqlRecord + size=8 align=8 + base size=8 base align=8 +QSqlRecord (0x7f4f33907230) 0 + +Vtable for QSqlDriverCreatorBase +QSqlDriverCreatorBase::_ZTV21QSqlDriverCreatorBase: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QSqlDriverCreatorBase) +16 QSqlDriverCreatorBase::~QSqlDriverCreatorBase +24 QSqlDriverCreatorBase::~QSqlDriverCreatorBase +32 __cxa_pure_virtual + +Class QSqlDriverCreatorBase + size=8 align=8 + base size=8 base align=8 +QSqlDriverCreatorBase (0x7f4f33907e70) 0 nearly-empty + vptr=((& QSqlDriverCreatorBase::_ZTV21QSqlDriverCreatorBase) + 16u) + +Class QSqlDatabase + size=8 align=8 + base size=8 base align=8 +QSqlDatabase (0x7f4f3391c9a0) 0 + +Class QSqlQuery + size=8 align=8 + base size=8 base align=8 +QSqlQuery (0x7f4f3392ed90) 0 + +Vtable for QSqlDriver +QSqlDriver::_ZTV10QSqlDriver: 32u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QSqlDriver) +16 QSqlDriver::metaObject +24 QSqlDriver::qt_metacast +32 QSqlDriver::qt_metacall +40 QSqlDriver::~QSqlDriver +48 QSqlDriver::~QSqlDriver +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QSqlDriver::isOpen +120 QSqlDriver::beginTransaction +128 QSqlDriver::commitTransaction +136 QSqlDriver::rollbackTransaction +144 QSqlDriver::tables +152 QSqlDriver::primaryIndex +160 QSqlDriver::record +168 QSqlDriver::formatValue +176 QSqlDriver::escapeIdentifier +184 QSqlDriver::sqlStatement +192 QSqlDriver::handle +200 __cxa_pure_virtual +208 __cxa_pure_virtual +216 __cxa_pure_virtual +224 __cxa_pure_virtual +232 QSqlDriver::setOpen +240 QSqlDriver::setOpenError +248 QSqlDriver::setLastError + +Class QSqlDriver + size=16 align=8 + base size=16 base align=8 +QSqlDriver (0x7f4f3393b850) 0 + vptr=((& QSqlDriver::_ZTV10QSqlDriver) + 16u) + QObject (0x7f4f3393b8c0) 0 + primary-for QSqlDriver (0x7f4f3393b850) + +Vtable for QSqlDriverFactoryInterface +QSqlDriverFactoryInterface::_ZTV26QSqlDriverFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QSqlDriverFactoryInterface) +16 QSqlDriverFactoryInterface::~QSqlDriverFactoryInterface +24 QSqlDriverFactoryInterface::~QSqlDriverFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QSqlDriverFactoryInterface + size=8 align=8 + base size=8 base align=8 +QSqlDriverFactoryInterface (0x7f4f3397e0e0) 0 nearly-empty + vptr=((& QSqlDriverFactoryInterface::_ZTV26QSqlDriverFactoryInterface) + 16u) + QFactoryInterface (0x7f4f3397e150) 0 nearly-empty + primary-for QSqlDriverFactoryInterface (0x7f4f3397e0e0) + +Vtable for QSqlDriverPlugin +QSqlDriverPlugin::_ZTV16QSqlDriverPlugin: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QSqlDriverPlugin) +16 QSqlDriverPlugin::metaObject +24 QSqlDriverPlugin::qt_metacast +32 QSqlDriverPlugin::qt_metacall +40 QSqlDriverPlugin::~QSqlDriverPlugin +48 QSqlDriverPlugin::~QSqlDriverPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI16QSqlDriverPlugin) +144 QSqlDriverPlugin::_ZThn16_N16QSqlDriverPluginD1Ev +152 QSqlDriverPlugin::_ZThn16_N16QSqlDriverPluginD0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QSqlDriverPlugin + size=24 align=8 + base size=24 base align=8 +QSqlDriverPlugin (0x7f4f33979c00) 0 + vptr=((& QSqlDriverPlugin::_ZTV16QSqlDriverPlugin) + 16u) + QObject (0x7f4f3397eb60) 0 + primary-for QSqlDriverPlugin (0x7f4f33979c00) + QSqlDriverFactoryInterface (0x7f4f3397ebd0) 16 nearly-empty + vptr=((& QSqlDriverPlugin::_ZTV16QSqlDriverPlugin) + 144u) + QFactoryInterface (0x7f4f3397ec40) 16 nearly-empty + primary-for QSqlDriverFactoryInterface (0x7f4f3397ebd0) + +Class QSqlError + size=24 align=8 + base size=24 base align=8 +QSqlError (0x7f4f33790a80) 0 + +Class QSqlField + size=24 align=8 + base size=24 base align=8 +QSqlField (0x7f4f337989a0) 0 + +Class QSqlIndex + size=32 align=8 + base size=32 base align=8 +QSqlIndex (0x7f4f337b52a0) 0 + QSqlRecord (0x7f4f337b5310) 0 + +Vtable for QSqlResult +QSqlResult::_ZTV10QSqlResult: 29u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QSqlResult) +16 QSqlResult::~QSqlResult +24 QSqlResult::~QSqlResult +32 QSqlResult::handle +40 QSqlResult::setAt +48 QSqlResult::setActive +56 QSqlResult::setLastError +64 QSqlResult::setQuery +72 QSqlResult::setSelect +80 QSqlResult::setForwardOnly +88 QSqlResult::exec +96 QSqlResult::prepare +104 QSqlResult::savePrepare +112 QSqlResult::bindValue +120 QSqlResult::bindValue +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 QSqlResult::fetchNext +168 QSqlResult::fetchPrevious +176 __cxa_pure_virtual +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 __cxa_pure_virtual +208 QSqlResult::record +216 QSqlResult::lastInsertId +224 QSqlResult::virtual_hook + +Class QSqlResult + size=16 align=8 + base size=16 base align=8 +QSqlResult (0x7f4f337e81c0) 0 + vptr=((& QSqlResult::_ZTV10QSqlResult) + 16u) + +Vtable for QSqlQueryModel +QSqlQueryModel::_ZTV14QSqlQueryModel: 44u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QSqlQueryModel) +16 QSqlQueryModel::metaObject +24 QSqlQueryModel::qt_metacast +32 QSqlQueryModel::qt_metacall +40 QSqlQueryModel::~QSqlQueryModel +48 QSqlQueryModel::~QSqlQueryModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractTableModel::index +120 QAbstractTableModel::parent +128 QSqlQueryModel::rowCount +136 QSqlQueryModel::columnCount +144 QAbstractTableModel::hasChildren +152 QSqlQueryModel::data +160 QAbstractItemModel::setData +168 QSqlQueryModel::headerData +176 QSqlQueryModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractTableModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QSqlQueryModel::insertColumns +248 QAbstractItemModel::removeRows +256 QSqlQueryModel::removeColumns +264 QSqlQueryModel::fetchMore +272 QSqlQueryModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert +336 QSqlQueryModel::clear +344 QSqlQueryModel::queryChange + +Class QSqlQueryModel + size=16 align=8 + base size=16 base align=8 +QSqlQueryModel (0x7f4f337e8a80) 0 + vptr=((& QSqlQueryModel::_ZTV14QSqlQueryModel) + 16u) + QAbstractTableModel (0x7f4f337e8af0) 0 + primary-for QSqlQueryModel (0x7f4f337e8a80) + QAbstractItemModel (0x7f4f337e8b60) 0 + primary-for QAbstractTableModel (0x7f4f337e8af0) + QObject (0x7f4f337e8bd0) 0 + primary-for QAbstractItemModel (0x7f4f337e8b60) + +Vtable for QSqlTableModel +QSqlTableModel::_ZTV14QSqlTableModel: 55u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QSqlTableModel) +16 QSqlTableModel::metaObject +24 QSqlTableModel::qt_metacast +32 QSqlTableModel::qt_metacall +40 QSqlTableModel::~QSqlTableModel +48 QSqlTableModel::~QSqlTableModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractTableModel::index +120 QAbstractTableModel::parent +128 QSqlTableModel::rowCount +136 QSqlQueryModel::columnCount +144 QAbstractTableModel::hasChildren +152 QSqlTableModel::data +160 QSqlTableModel::setData +168 QSqlTableModel::headerData +176 QSqlQueryModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractTableModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QSqlTableModel::insertRows +240 QSqlQueryModel::insertColumns +248 QSqlTableModel::removeRows +256 QSqlTableModel::removeColumns +264 QSqlQueryModel::fetchMore +272 QSqlQueryModel::canFetchMore +280 QSqlTableModel::flags +288 QSqlTableModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QSqlTableModel::submit +328 QSqlTableModel::revert +336 QSqlTableModel::clear +344 QSqlQueryModel::queryChange +352 QSqlTableModel::select +360 QSqlTableModel::setTable +368 QSqlTableModel::setEditStrategy +376 QSqlTableModel::setSort +384 QSqlTableModel::setFilter +392 QSqlTableModel::revertRow +400 QSqlTableModel::updateRowInTable +408 QSqlTableModel::insertRowIntoTable +416 QSqlTableModel::deleteRowFromTable +424 QSqlTableModel::orderByClause +432 QSqlTableModel::selectStatement + +Class QSqlTableModel + size=16 align=8 + base size=16 base align=8 +QSqlTableModel (0x7f4f3381e380) 0 + vptr=((& QSqlTableModel::_ZTV14QSqlTableModel) + 16u) + QSqlQueryModel (0x7f4f3381e3f0) 0 + primary-for QSqlTableModel (0x7f4f3381e380) + QAbstractTableModel (0x7f4f3381e460) 0 + primary-for QSqlQueryModel (0x7f4f3381e3f0) + QAbstractItemModel (0x7f4f3381e4d0) 0 + primary-for QAbstractTableModel (0x7f4f3381e460) + QObject (0x7f4f3381e540) 0 + primary-for QAbstractItemModel (0x7f4f3381e4d0) + +Class QSqlRelation + size=24 align=8 + base size=24 base align=8 +QSqlRelation (0x7f4f33842e70) 0 + +Vtable for QSqlRelationalTableModel +QSqlRelationalTableModel::_ZTV24QSqlRelationalTableModel: 57u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QSqlRelationalTableModel) +16 QSqlRelationalTableModel::metaObject +24 QSqlRelationalTableModel::qt_metacast +32 QSqlRelationalTableModel::qt_metacall +40 QSqlRelationalTableModel::~QSqlRelationalTableModel +48 QSqlRelationalTableModel::~QSqlRelationalTableModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractTableModel::index +120 QAbstractTableModel::parent +128 QSqlTableModel::rowCount +136 QSqlQueryModel::columnCount +144 QAbstractTableModel::hasChildren +152 QSqlRelationalTableModel::data +160 QSqlRelationalTableModel::setData +168 QSqlTableModel::headerData +176 QSqlQueryModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractTableModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QSqlTableModel::insertRows +240 QSqlQueryModel::insertColumns +248 QSqlTableModel::removeRows +256 QSqlRelationalTableModel::removeColumns +264 QSqlQueryModel::fetchMore +272 QSqlQueryModel::canFetchMore +280 QSqlTableModel::flags +288 QSqlTableModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QSqlTableModel::submit +328 QSqlTableModel::revert +336 QSqlRelationalTableModel::clear +344 QSqlQueryModel::queryChange +352 QSqlRelationalTableModel::select +360 QSqlRelationalTableModel::setTable +368 QSqlTableModel::setEditStrategy +376 QSqlTableModel::setSort +384 QSqlTableModel::setFilter +392 QSqlRelationalTableModel::revertRow +400 QSqlRelationalTableModel::updateRowInTable +408 QSqlRelationalTableModel::insertRowIntoTable +416 QSqlTableModel::deleteRowFromTable +424 QSqlRelationalTableModel::orderByClause +432 QSqlRelationalTableModel::selectStatement +440 QSqlRelationalTableModel::setRelation +448 QSqlRelationalTableModel::relationModel + +Class QSqlRelationalTableModel + size=16 align=8 + base size=16 base align=8 +QSqlRelationalTableModel (0x7f4f338667e0) 0 + vptr=((& QSqlRelationalTableModel::_ZTV24QSqlRelationalTableModel) + 16u) + QSqlTableModel (0x7f4f33866850) 0 + primary-for QSqlRelationalTableModel (0x7f4f338667e0) + QSqlQueryModel (0x7f4f338668c0) 0 + primary-for QSqlTableModel (0x7f4f33866850) + QAbstractTableModel (0x7f4f33866930) 0 + primary-for QSqlQueryModel (0x7f4f338668c0) + QAbstractItemModel (0x7f4f338669a0) 0 + primary-for QAbstractTableModel (0x7f4f33866930) + QObject (0x7f4f33866a10) 0 + primary-for QAbstractItemModel (0x7f4f338669a0) + +Class QHelpGlobal + size=1 align=1 + base size=0 base align=1 +QHelpGlobal (0x7f4f33883070) 0 empty + +Vtable for QPaintDevice +QPaintDevice::_ZTV12QPaintDevice: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QPaintDevice) +16 QPaintDevice::~QPaintDevice +24 QPaintDevice::~QPaintDevice +32 QPaintDevice::devType +40 __cxa_pure_virtual +48 QPaintDevice::metric + +Class QPaintDevice + size=16 align=8 + base size=10 base align=8 +QPaintDevice (0x7f4f338830e0) 0 + vptr=((& QPaintDevice::_ZTV12QPaintDevice) + 16u) + +Class QColor + size=16 align=4 + base size=14 base align=4 +QColor (0x7f4f336b5a10) 0 + +Class QPolygon + size=8 align=8 + base size=8 base align=8 +QPolygon (0x7f4f33716230) 0 + QVector (0x7f4f337162a0) 0 + +Class QPolygonF + size=8 align=8 + base size=8 base align=8 +QPolygonF (0x7f4f33757770) 0 + QVector (0x7f4f337577e0) 0 + +Class QRegion::QRegionData + size=32 align=8 + base size=32 base align=8 +QRegion::QRegionData (0x7f4f335bd0e0) 0 + +Class QRegion + size=8 align=8 + base size=8 base align=8 +QRegion (0x7f4f335998c0) 0 + +Class QMatrix + size=48 align=8 + base size=48 base align=8 +QMatrix (0x7f4f335d0a10) 0 + +Class QPainterPath::Element + size=24 align=8 + base size=24 base align=8 +QPainterPath::Element (0x7f4f33611b60) 0 + +Class QPainterPath + size=8 align=8 + base size=8 base align=8 +QPainterPath (0x7f4f33611af0) 0 + +Class QPainterPathPrivate + size=16 align=8 + base size=16 base align=8 +QPainterPathPrivate (0x7f4f3366e2a0) 0 + +Class QPainterPathStroker + size=8 align=8 + base size=8 base align=8 +QPainterPathStroker (0x7f4f3366ed90) 0 + +Class QTransform + size=88 align=8 + base size=88 base align=8 +QTransform (0x7f4f334d7d90) 0 + +Class QImageTextKeyLang + size=16 align=8 + base size=16 base align=8 +QImageTextKeyLang (0x7f4f335833f0) 0 + +Vtable for QImage +QImage::_ZTV6QImage: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QImage) +16 QImage::~QImage +24 QImage::~QImage +32 QImage::devType +40 QImage::paintEngine +48 QImage::metric + +Class QImage + size=24 align=8 + base size=24 base align=8 +QImage (0x7f4f333aac40) 0 + vptr=((& QImage::_ZTV6QImage) + 16u) + QPaintDevice (0x7f4f333aacb0) 0 + primary-for QImage (0x7f4f333aac40) + +Vtable for QPixmap +QPixmap::_ZTV7QPixmap: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QPixmap) +16 QPixmap::~QPixmap +24 QPixmap::~QPixmap +32 QPixmap::devType +40 QPixmap::paintEngine +48 QPixmap::metric + +Class QPixmap + size=24 align=8 + base size=24 base align=8 +QPixmap (0x7f4f334533f0) 0 + vptr=((& QPixmap::_ZTV7QPixmap) + 16u) + QPaintDevice (0x7f4f33453460) 0 + primary-for QPixmap (0x7f4f334533f0) + +Class QBrush + size=8 align=8 + base size=8 base align=8 +QBrush (0x7f4f332b4700) 0 + +Class QBrushData + size=112 align=8 + base size=112 base align=8 +QBrushData (0x7f4f332e0150) 0 + +Class QGradient + size=64 align=8 + base size=64 base align=8 +QGradient (0x7f4f332f7310) 0 + +Class QLinearGradient + size=64 align=8 + base size=64 base align=8 +QLinearGradient (0x7f4f33303e00) 0 + QGradient (0x7f4f33303e70) 0 + +Class QRadialGradient + size=64 align=8 + base size=64 base align=8 +QRadialGradient (0x7f4f3332e2a0) 0 + QGradient (0x7f4f3332e310) 0 + +Class QConicalGradient + size=64 align=8 + base size=64 base align=8 +QConicalGradient (0x7f4f3332e850) 0 + QGradient (0x7f4f3332e8c0) 0 + +Class QPalette + size=16 align=8 + base size=12 base align=8 +QPalette (0x7f4f3332ebd0) 0 + +Class QColorGroup + size=16 align=8 + base size=12 base align=8 +QColorGroup (0x7f4f3318f540) 0 + QPalette (0x7f4f3318f5b0) 0 + +Class QFont + size=16 align=8 + base size=12 base align=8 +QFont (0x7f4f331c6850) 0 + +Class QFontMetrics + size=8 align=8 + base size=8 base align=8 +QFontMetrics (0x7f4f3320f540) 0 + +Class QFontMetricsF + size=8 align=8 + base size=8 base align=8 +QFontMetricsF (0x7f4f332239a0) 0 + +Class QFontInfo + size=8 align=8 + base size=8 base align=8 +QFontInfo (0x7f4f3322e8c0) 0 + +Class QSizePolicy + size=4 align=4 + base size=4 base align=4 +QSizePolicy (0x7f4f332433f0) 0 + +Class QCursor + size=8 align=8 + base size=8 base align=8 +QCursor (0x7f4f3310c3f0) 0 + +Class QKeySequence + size=8 align=8 + base size=8 base align=8 +QKeySequence (0x7f4f3310cbd0) 0 + +Class QWidgetData + size=88 align=8 + base size=88 base align=8 +QWidgetData (0x7f4f3314e540) 0 + +Vtable for QWidget +QWidget::_ZTV7QWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QWidget) +16 QWidget::metaObject +24 QWidget::qt_metacast +32 QWidget::qt_metacall +40 QWidget::~QWidget +48 QWidget::~QWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI7QWidget) +464 QWidget::_ZThn16_N7QWidgetD1Ev +472 QWidget::_ZThn16_N7QWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWidget + size=40 align=8 + base size=40 base align=8 +QWidget (0x7f4f33150980) 0 + vptr=((& QWidget::_ZTV7QWidget) + 16u) + QObject (0x7f4f3314e5b0) 0 + primary-for QWidget (0x7f4f33150980) + QPaintDevice (0x7f4f3314e620) 16 + vptr=((& QWidget::_ZTV7QWidget) + 464u) + +Vtable for QFrame +QFrame::_ZTV6QFrame: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QFrame) +16 QFrame::metaObject +24 QFrame::qt_metacast +32 QFrame::qt_metacall +40 QFrame::~QFrame +48 QFrame::~QFrame +56 QFrame::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QFrame::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFrame::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI6QFrame) +464 QFrame::_ZThn16_N6QFrameD1Ev +472 QFrame::_ZThn16_N6QFrameD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFrame + size=40 align=8 + base size=40 base align=8 +QFrame (0x7f4f32ecf620) 0 + vptr=((& QFrame::_ZTV6QFrame) + 16u) + QWidget (0x7f4f32ecd600) 0 + primary-for QFrame (0x7f4f32ecf620) + QObject (0x7f4f32ecf690) 0 + primary-for QWidget (0x7f4f32ecd600) + QPaintDevice (0x7f4f32ecf700) 16 + vptr=((& QFrame::_ZTV6QFrame) + 464u) + +Vtable for QAbstractScrollArea +QAbstractScrollArea::_ZTV19QAbstractScrollArea: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractScrollArea) +16 QAbstractScrollArea::metaObject +24 QAbstractScrollArea::qt_metacast +32 QAbstractScrollArea::qt_metacall +40 QAbstractScrollArea::~QAbstractScrollArea +48 QAbstractScrollArea::~QAbstractScrollArea +56 QAbstractScrollArea::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractScrollArea::mousePressEvent +168 QAbstractScrollArea::mouseReleaseEvent +176 QAbstractScrollArea::mouseDoubleClickEvent +184 QAbstractScrollArea::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractScrollArea::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractScrollArea::paintEvent +256 QWidget::moveEvent +264 QAbstractScrollArea::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractScrollArea::dragEnterEvent +312 QAbstractScrollArea::dragMoveEvent +320 QAbstractScrollArea::dragLeaveEvent +328 QAbstractScrollArea::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QAbstractScrollArea::scrollContentsBy +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI19QAbstractScrollArea) +480 QAbstractScrollArea::_ZThn16_N19QAbstractScrollAreaD1Ev +488 QAbstractScrollArea::_ZThn16_N19QAbstractScrollAreaD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractScrollArea + size=40 align=8 + base size=40 base align=8 +QAbstractScrollArea (0x7f4f32ef2c40) 0 + vptr=((& QAbstractScrollArea::_ZTV19QAbstractScrollArea) + 16u) + QFrame (0x7f4f32ef2cb0) 0 + primary-for QAbstractScrollArea (0x7f4f32ef2c40) + QWidget (0x7f4f32edba00) 0 + primary-for QFrame (0x7f4f32ef2cb0) + QObject (0x7f4f32ef2d20) 0 + primary-for QWidget (0x7f4f32edba00) + QPaintDevice (0x7f4f32ef2d90) 16 + vptr=((& QAbstractScrollArea::_ZTV19QAbstractScrollArea) + 480u) + +Class QItemSelectionRange + size=16 align=8 + base size=16 base align=8 +QItemSelectionRange (0x7f4f32f16b60) 0 + +Vtable for QItemSelectionModel +QItemSelectionModel::_ZTV19QItemSelectionModel: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QItemSelectionModel) +16 QItemSelectionModel::metaObject +24 QItemSelectionModel::qt_metacast +32 QItemSelectionModel::qt_metacall +40 QItemSelectionModel::~QItemSelectionModel +48 QItemSelectionModel::~QItemSelectionModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QItemSelectionModel::select +120 QItemSelectionModel::select +128 QItemSelectionModel::clear +136 QItemSelectionModel::reset + +Class QItemSelectionModel + size=16 align=8 + base size=16 base align=8 +QItemSelectionModel (0x7f4f32d8a070) 0 + vptr=((& QItemSelectionModel::_ZTV19QItemSelectionModel) + 16u) + QObject (0x7f4f32d8a0e0) 0 + primary-for QItemSelectionModel (0x7f4f32d8a070) + +Class QItemSelection + size=8 align=8 + base size=8 base align=8 +QItemSelection (0x7f4f32dd6540) 0 + QList (0x7f4f32dd65b0) 0 + +Vtable for QValidator +QValidator::_ZTV10QValidator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QValidator) +16 QValidator::metaObject +24 QValidator::qt_metacast +32 QValidator::qt_metacall +40 QValidator::~QValidator +48 QValidator::~QValidator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 QValidator::fixup + +Class QValidator + size=16 align=8 + base size=16 base align=8 +QValidator (0x7f4f32dd6e00) 0 + vptr=((& QValidator::_ZTV10QValidator) + 16u) + QObject (0x7f4f32dd6e70) 0 + primary-for QValidator (0x7f4f32dd6e00) + +Vtable for QIntValidator +QIntValidator::_ZTV13QIntValidator: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QIntValidator) +16 QIntValidator::metaObject +24 QIntValidator::qt_metacast +32 QIntValidator::qt_metacall +40 QIntValidator::~QIntValidator +48 QIntValidator::~QIntValidator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QIntValidator::validate +120 QValidator::fixup +128 QIntValidator::setRange + +Class QIntValidator + size=24 align=8 + base size=24 base align=8 +QIntValidator (0x7f4f32e17c40) 0 + vptr=((& QIntValidator::_ZTV13QIntValidator) + 16u) + QValidator (0x7f4f32e17cb0) 0 + primary-for QIntValidator (0x7f4f32e17c40) + QObject (0x7f4f32e17d20) 0 + primary-for QValidator (0x7f4f32e17cb0) + +Vtable for QDoubleValidator +QDoubleValidator::_ZTV16QDoubleValidator: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QDoubleValidator) +16 QDoubleValidator::metaObject +24 QDoubleValidator::qt_metacast +32 QDoubleValidator::qt_metacall +40 QDoubleValidator::~QDoubleValidator +48 QDoubleValidator::~QDoubleValidator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QDoubleValidator::validate +120 QValidator::fixup +128 QDoubleValidator::setRange + +Class QDoubleValidator + size=40 align=8 + base size=36 base align=8 +QDoubleValidator (0x7f4f32e30bd0) 0 + vptr=((& QDoubleValidator::_ZTV16QDoubleValidator) + 16u) + QValidator (0x7f4f32e30c40) 0 + primary-for QDoubleValidator (0x7f4f32e30bd0) + QObject (0x7f4f32e30cb0) 0 + primary-for QValidator (0x7f4f32e30c40) + +Vtable for QRegExpValidator +QRegExpValidator::_ZTV16QRegExpValidator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QRegExpValidator) +16 QRegExpValidator::metaObject +24 QRegExpValidator::qt_metacast +32 QRegExpValidator::qt_metacall +40 QRegExpValidator::~QRegExpValidator +48 QRegExpValidator::~QRegExpValidator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QRegExpValidator::validate +120 QValidator::fixup + +Class QRegExpValidator + size=24 align=8 + base size=24 base align=8 +QRegExpValidator (0x7f4f32e524d0) 0 + vptr=((& QRegExpValidator::_ZTV16QRegExpValidator) + 16u) + QValidator (0x7f4f32e52540) 0 + primary-for QRegExpValidator (0x7f4f32e524d0) + QObject (0x7f4f32e525b0) 0 + primary-for QValidator (0x7f4f32e52540) + +Vtable for QAbstractSpinBox +QAbstractSpinBox::_ZTV16QAbstractSpinBox: 68u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QAbstractSpinBox) +16 QAbstractSpinBox::metaObject +24 QAbstractSpinBox::qt_metacast +32 QAbstractSpinBox::qt_metacall +40 QAbstractSpinBox::~QAbstractSpinBox +48 QAbstractSpinBox::~QAbstractSpinBox +56 QAbstractSpinBox::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractSpinBox::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractSpinBox::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QAbstractSpinBox::wheelEvent +200 QAbstractSpinBox::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QAbstractSpinBox::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractSpinBox::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QAbstractSpinBox::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractSpinBox::validate +456 QAbstractSpinBox::fixup +464 QAbstractSpinBox::stepBy +472 QAbstractSpinBox::clear +480 QAbstractSpinBox::stepEnabled +488 (int (*)(...))-0x00000000000000010 +496 (int (*)(...))(& _ZTI16QAbstractSpinBox) +504 QAbstractSpinBox::_ZThn16_N16QAbstractSpinBoxD1Ev +512 QAbstractSpinBox::_ZThn16_N16QAbstractSpinBoxD0Ev +520 QWidget::_ZThn16_NK7QWidget7devTypeEv +528 QWidget::_ZThn16_NK7QWidget11paintEngineEv +536 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractSpinBox + size=40 align=8 + base size=40 base align=8 +QAbstractSpinBox (0x7f4f32e6a150) 0 + vptr=((& QAbstractSpinBox::_ZTV16QAbstractSpinBox) + 16u) + QWidget (0x7f4f32e4ee00) 0 + primary-for QAbstractSpinBox (0x7f4f32e6a150) + QObject (0x7f4f32e6a1c0) 0 + primary-for QWidget (0x7f4f32e4ee00) + QPaintDevice (0x7f4f32e6a230) 16 + vptr=((& QAbstractSpinBox::_ZTV16QAbstractSpinBox) + 504u) + +Class QIcon + size=8 align=8 + base size=8 base align=8 +QIcon (0x7f4f32cc4150) 0 + +Vtable for QAbstractSlider +QAbstractSlider::_ZTV15QAbstractSlider: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QAbstractSlider) +16 QAbstractSlider::metaObject +24 QAbstractSlider::qt_metacast +32 QAbstractSlider::qt_metacall +40 QAbstractSlider::~QAbstractSlider +48 QAbstractSlider::~QAbstractSlider +56 QAbstractSlider::event +64 QObject::eventFilter +72 QAbstractSlider::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QAbstractSlider::wheelEvent +200 QAbstractSlider::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractSlider::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractSlider::sliderChange +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI15QAbstractSlider) +472 QAbstractSlider::_ZThn16_N15QAbstractSliderD1Ev +480 QAbstractSlider::_ZThn16_N15QAbstractSliderD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractSlider + size=40 align=8 + base size=40 base align=8 +QAbstractSlider (0x7f4f32cecd20) 0 + vptr=((& QAbstractSlider::_ZTV15QAbstractSlider) + 16u) + QWidget (0x7f4f32cf0a80) 0 + primary-for QAbstractSlider (0x7f4f32cecd20) + QObject (0x7f4f32cecd90) 0 + primary-for QWidget (0x7f4f32cf0a80) + QPaintDevice (0x7f4f32cece00) 16 + vptr=((& QAbstractSlider::_ZTV15QAbstractSlider) + 472u) + +Vtable for QSlider +QSlider::_ZTV7QSlider: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QSlider) +16 QSlider::metaObject +24 QSlider::qt_metacast +32 QSlider::qt_metacall +40 QSlider::~QSlider +48 QSlider::~QSlider +56 QSlider::event +64 QObject::eventFilter +72 QAbstractSlider::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QSlider::sizeHint +136 QSlider::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QSlider::mousePressEvent +168 QSlider::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QSlider::mouseMoveEvent +192 QAbstractSlider::wheelEvent +200 QAbstractSlider::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QSlider::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractSlider::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractSlider::sliderChange +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI7QSlider) +472 QSlider::_ZThn16_N7QSliderD1Ev +480 QSlider::_ZThn16_N7QSliderD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSlider + size=40 align=8 + base size=40 base align=8 +QSlider (0x7f4f32d26b60) 0 + vptr=((& QSlider::_ZTV7QSlider) + 16u) + QAbstractSlider (0x7f4f32d26bd0) 0 + primary-for QSlider (0x7f4f32d26b60) + QWidget (0x7f4f32d25b80) 0 + primary-for QAbstractSlider (0x7f4f32d26bd0) + QObject (0x7f4f32d26c40) 0 + primary-for QWidget (0x7f4f32d25b80) + QPaintDevice (0x7f4f32d26cb0) 16 + vptr=((& QSlider::_ZTV7QSlider) + 472u) + +Vtable for QStyle +QStyle::_ZTV6QStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QStyle) +16 QStyle::metaObject +24 QStyle::qt_metacast +32 QStyle::qt_metacall +40 QStyle::~QStyle +48 QStyle::~QStyle +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QStyle::polish +120 QStyle::unpolish +128 QStyle::polish +136 QStyle::unpolish +144 QStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QStyle::standardPalette +192 __cxa_pure_virtual +200 __cxa_pure_virtual +208 __cxa_pure_virtual +216 __cxa_pure_virtual +224 __cxa_pure_virtual +232 __cxa_pure_virtual +240 __cxa_pure_virtual +248 __cxa_pure_virtual +256 __cxa_pure_virtual +264 __cxa_pure_virtual +272 __cxa_pure_virtual + +Class QStyle + size=16 align=8 + base size=16 base align=8 +QStyle (0x7f4f32d56150) 0 + vptr=((& QStyle::_ZTV6QStyle) + 16u) + QObject (0x7f4f32d561c0) 0 + primary-for QStyle (0x7f4f32d56150) + +Vtable for QTabBar +QTabBar::_ZTV7QTabBar: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QTabBar) +16 QTabBar::metaObject +24 QTabBar::qt_metacast +32 QTabBar::qt_metacall +40 QTabBar::~QTabBar +48 QTabBar::~QTabBar +56 QTabBar::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QTabBar::sizeHint +136 QTabBar::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTabBar::mousePressEvent +168 QTabBar::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QTabBar::mouseMoveEvent +192 QTabBar::wheelEvent +200 QTabBar::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTabBar::paintEvent +256 QWidget::moveEvent +264 QTabBar::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QTabBar::showEvent +344 QTabBar::hideEvent +352 QWidget::x11Event +360 QTabBar::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QTabBar::tabSizeHint +456 QTabBar::tabInserted +464 QTabBar::tabRemoved +472 QTabBar::tabLayoutChange +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI7QTabBar) +496 QTabBar::_ZThn16_N7QTabBarD1Ev +504 QTabBar::_ZThn16_N7QTabBarD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTabBar + size=40 align=8 + base size=40 base align=8 +QTabBar (0x7f4f32b7d000) 0 + vptr=((& QTabBar::_ZTV7QTabBar) + 16u) + QWidget (0x7f4f32b1cb80) 0 + primary-for QTabBar (0x7f4f32b7d000) + QObject (0x7f4f32b7d070) 0 + primary-for QWidget (0x7f4f32b1cb80) + QPaintDevice (0x7f4f32b7d0e0) 16 + vptr=((& QTabBar::_ZTV7QTabBar) + 496u) + +Vtable for QTabWidget +QTabWidget::_ZTV10QTabWidget: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTabWidget) +16 QTabWidget::metaObject +24 QTabWidget::qt_metacast +32 QTabWidget::qt_metacall +40 QTabWidget::~QTabWidget +48 QTabWidget::~QTabWidget +56 QTabWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QTabWidget::sizeHint +136 QTabWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QTabWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTabWidget::paintEvent +256 QWidget::moveEvent +264 QTabWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QTabWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QTabWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QTabWidget::tabInserted +456 QTabWidget::tabRemoved +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI10QTabWidget) +480 QTabWidget::_ZThn16_N10QTabWidgetD1Ev +488 QTabWidget::_ZThn16_N10QTabWidgetD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTabWidget + size=40 align=8 + base size=40 base align=8 +QTabWidget (0x7f4f32bae620) 0 + vptr=((& QTabWidget::_ZTV10QTabWidget) + 16u) + QWidget (0x7f4f32b83f80) 0 + primary-for QTabWidget (0x7f4f32bae620) + QObject (0x7f4f32bae690) 0 + primary-for QWidget (0x7f4f32b83f80) + QPaintDevice (0x7f4f32bae700) 16 + vptr=((& QTabWidget::_ZTV10QTabWidget) + 480u) + +Vtable for QRubberBand +QRubberBand::_ZTV11QRubberBand: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QRubberBand) +16 QRubberBand::metaObject +24 QRubberBand::qt_metacast +32 QRubberBand::qt_metacall +40 QRubberBand::~QRubberBand +48 QRubberBand::~QRubberBand +56 QRubberBand::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QRubberBand::paintEvent +256 QRubberBand::moveEvent +264 QRubberBand::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QRubberBand::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QRubberBand::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI11QRubberBand) +464 QRubberBand::_ZThn16_N11QRubberBandD1Ev +472 QRubberBand::_ZThn16_N11QRubberBandD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QRubberBand + size=40 align=8 + base size=40 base align=8 +QRubberBand (0x7f4f329f2000) 0 + vptr=((& QRubberBand::_ZTV11QRubberBand) + 16u) + QWidget (0x7f4f329ef100) 0 + primary-for QRubberBand (0x7f4f329f2000) + QObject (0x7f4f329f2070) 0 + primary-for QWidget (0x7f4f329ef100) + QPaintDevice (0x7f4f329f20e0) 16 + vptr=((& QRubberBand::_ZTV11QRubberBand) + 464u) + +Class QStyleOption + size=56 align=8 + base size=56 base align=8 +QStyleOption (0x7f4f32a14310) 0 + +Class QStyleOptionFocusRect + size=72 align=8 + base size=72 base align=8 +QStyleOptionFocusRect (0x7f4f32a22070) 0 + QStyleOption (0x7f4f32a220e0) 0 + +Class QStyleOptionFrame + size=64 align=8 + base size=64 base align=8 +QStyleOptionFrame (0x7f4f32a2e070) 0 + QStyleOption (0x7f4f32a2e0e0) 0 + +Class QStyleOptionFrameV2 + size=72 align=8 + base size=68 base align=8 +QStyleOptionFrameV2 (0x7f4f32a3b000) 0 + QStyleOptionFrame (0x7f4f32a3b070) 0 + QStyleOption (0x7f4f32a3b0e0) 0 + +Class QStyleOptionFrameV3 + size=72 align=8 + base size=72 base align=8 +QStyleOptionFrameV3 (0x7f4f32a688c0) 0 + QStyleOptionFrameV2 (0x7f4f32a68930) 0 + QStyleOptionFrame (0x7f4f32a689a0) 0 + QStyleOption (0x7f4f32a68a10) 0 + +Class QStyleOptionTabWidgetFrame + size=96 align=8 + base size=92 base align=8 +QStyleOptionTabWidgetFrame (0x7f4f32a8d1c0) 0 + QStyleOption (0x7f4f32a8d230) 0 + +Class QStyleOptionTabWidgetFrameV2 + size=128 align=8 + base size=124 base align=8 +QStyleOptionTabWidgetFrameV2 (0x7f4f32a98930) 0 + QStyleOptionTabWidgetFrame (0x7f4f32a989a0) 0 + QStyleOption (0x7f4f32a98a10) 0 + +Class QStyleOptionTabBarBase + size=96 align=8 + base size=92 base align=8 +QStyleOptionTabBarBase (0x7f4f32aae2a0) 0 + QStyleOption (0x7f4f32aae310) 0 + +Class QStyleOptionTabBarBaseV2 + size=96 align=8 + base size=93 base align=8 +QStyleOptionTabBarBaseV2 (0x7f4f32ab8620) 0 + QStyleOptionTabBarBase (0x7f4f32ab8690) 0 + QStyleOption (0x7f4f32ab8700) 0 + +Class QStyleOptionHeader + size=112 align=8 + base size=108 base align=8 +QStyleOptionHeader (0x7f4f32ac3cb0) 0 + QStyleOption (0x7f4f32ac3d20) 0 + +Class QStyleOptionButton + size=88 align=8 + base size=88 base align=8 +QStyleOptionButton (0x7f4f328dee70) 0 + QStyleOption (0x7f4f328deee0) 0 + +Class QStyleOptionTab + size=96 align=8 + base size=96 base align=8 +QStyleOptionTab (0x7f4f3291b850) 0 + QStyleOption (0x7f4f3291b8c0) 0 + +Class QStyleOptionTabV2 + size=104 align=8 + base size=104 base align=8 +QStyleOptionTabV2 (0x7f4f329687e0) 0 + QStyleOptionTab (0x7f4f32968850) 0 + QStyleOption (0x7f4f329688c0) 0 + +Class QStyleOptionTabV3 + size=128 align=8 + base size=124 base align=8 +QStyleOptionTabV3 (0x7f4f3298c230) 0 + QStyleOptionTabV2 (0x7f4f3298c2a0) 0 + QStyleOptionTab (0x7f4f3298c310) 0 + QStyleOption (0x7f4f3298c380) 0 + +Class QStyleOptionToolBar + size=80 align=8 + base size=80 base align=8 +QStyleOptionToolBar (0x7f4f3299f850) 0 + QStyleOption (0x7f4f3299f8c0) 0 + +Class QStyleOptionProgressBar + size=88 align=8 + base size=85 base align=8 +QStyleOptionProgressBar (0x7f4f327eb070) 0 + QStyleOption (0x7f4f327eb0e0) 0 + +Class QStyleOptionProgressBarV2 + size=96 align=8 + base size=94 base align=8 +QStyleOptionProgressBarV2 (0x7f4f327f67e0) 0 + QStyleOptionProgressBar (0x7f4f327f6850) 0 + QStyleOption (0x7f4f327f68c0) 0 + +Class QStyleOptionMenuItem + size=128 align=8 + base size=128 base align=8 +QStyleOptionMenuItem (0x7f4f328010e0) 0 + QStyleOption (0x7f4f32801150) 0 + +Class QStyleOptionQ3ListViewItem + size=80 align=8 + base size=76 base align=8 +QStyleOptionQ3ListViewItem (0x7f4f3281b310) 0 + QStyleOption (0x7f4f3281b380) 0 + +Class QStyleOptionQ3DockWindow + size=64 align=8 + base size=58 base align=8 +QStyleOptionQ3DockWindow (0x7f4f3284d770) 0 + QStyleOption (0x7f4f3284d7e0) 0 + +Class QStyleOptionDockWidget + size=72 align=8 + base size=67 base align=8 +QStyleOptionDockWidget (0x7f4f3286a700) 0 + QStyleOption (0x7f4f3286a770) 0 + +Class QStyleOptionDockWidgetV2 + size=72 align=8 + base size=68 base align=8 +QStyleOptionDockWidgetV2 (0x7f4f32878af0) 0 + QStyleOptionDockWidget (0x7f4f32878b60) 0 + QStyleOption (0x7f4f32878bd0) 0 + +Class QStyleOptionViewItem + size=104 align=8 + base size=97 base align=8 +QStyleOptionViewItem (0x7f4f32889310) 0 + QStyleOption (0x7f4f32889380) 0 + +Class QStyleOptionViewItemV2 + size=104 align=8 + base size=104 base align=8 +QStyleOptionViewItemV2 (0x7f4f32898e70) 0 + QStyleOptionViewItem (0x7f4f32898ee0) 0 + QStyleOption (0x7f4f32898f50) 0 + +Class QStyleOptionViewItemV3 + size=120 align=8 + base size=120 base align=8 +QStyleOptionViewItemV3 (0x7f4f326d48c0) 0 + QStyleOptionViewItemV2 (0x7f4f326d4930) 0 + QStyleOptionViewItem (0x7f4f326d49a0) 0 + QStyleOption (0x7f4f326d4a10) 0 + +Class QStyleOptionViewItemV4 + size=184 align=8 + base size=184 base align=8 +QStyleOptionViewItemV4 (0x7f4f326fa1c0) 0 + QStyleOptionViewItemV3 (0x7f4f326fa230) 0 + QStyleOptionViewItemV2 (0x7f4f326fa2a0) 0 + QStyleOptionViewItem (0x7f4f326fa310) 0 + QStyleOption (0x7f4f326fa380) 0 + +Class QStyleOptionToolBox + size=72 align=8 + base size=72 base align=8 +QStyleOptionToolBox (0x7f4f327118c0) 0 + QStyleOption (0x7f4f32711930) 0 + +Class QStyleOptionToolBoxV2 + size=80 align=8 + base size=80 base align=8 +QStyleOptionToolBoxV2 (0x7f4f32721d90) 0 + QStyleOptionToolBox (0x7f4f32721e00) 0 + QStyleOption (0x7f4f32721e70) 0 + +Class QStyleOptionRubberBand + size=64 align=8 + base size=61 base align=8 +QStyleOptionRubberBand (0x7f4f32735a80) 0 + QStyleOption (0x7f4f32735af0) 0 + +Class QStyleOptionComplex + size=64 align=8 + base size=64 base align=8 +QStyleOptionComplex (0x7f4f32740bd0) 0 + QStyleOption (0x7f4f32740c40) 0 + +Class QStyleOptionSlider + size=120 align=8 + base size=113 base align=8 +QStyleOptionSlider (0x7f4f32753310) 0 + QStyleOptionComplex (0x7f4f32753380) 0 + QStyleOption (0x7f4f327533f0) 0 + +Class QStyleOptionSpinBox + size=80 align=8 + base size=73 base align=8 +QStyleOptionSpinBox (0x7f4f32766150) 0 + QStyleOptionComplex (0x7f4f327661c0) 0 + QStyleOption (0x7f4f32766230) 0 + +Class QStyleOptionQ3ListView + size=112 align=8 + base size=105 base align=8 +QStyleOptionQ3ListView (0x7f4f32772620) 0 + QStyleOptionComplex (0x7f4f32772690) 0 + QStyleOption (0x7f4f32772700) 0 + +Class QStyleOptionToolButton + size=128 align=8 + base size=128 base align=8 +QStyleOptionToolButton (0x7f4f327aa2a0) 0 + QStyleOptionComplex (0x7f4f327aa310) 0 + QStyleOption (0x7f4f327aa380) 0 + +Class QStyleOptionComboBox + size=112 align=8 + base size=112 base align=8 +QStyleOptionComboBox (0x7f4f325fb4d0) 0 + QStyleOptionComplex (0x7f4f325fb540) 0 + QStyleOption (0x7f4f325fb5b0) 0 + +Class QStyleOptionTitleBar + size=88 align=8 + base size=88 base align=8 +QStyleOptionTitleBar (0x7f4f32612000) 0 + QStyleOptionComplex (0x7f4f32612070) 0 + QStyleOption (0x7f4f326120e0) 0 + +Class QStyleOptionGroupBox + size=112 align=8 + base size=108 base align=8 +QStyleOptionGroupBox (0x7f4f32620850) 0 + QStyleOptionComplex (0x7f4f326208c0) 0 + QStyleOption (0x7f4f32620930) 0 + +Class QStyleOptionSizeGrip + size=72 align=8 + base size=68 base align=8 +QStyleOptionSizeGrip (0x7f4f32636460) 0 + QStyleOptionComplex (0x7f4f326364d0) 0 + QStyleOption (0x7f4f32636540) 0 + +Class QStyleOptionGraphicsItem + size=144 align=8 + base size=144 base align=8 +QStyleOptionGraphicsItem (0x7f4f32643380) 0 + QStyleOption (0x7f4f326433f0) 0 + +Class QStyleHintReturn + size=8 align=4 + base size=8 base align=4 +QStyleHintReturn (0x7f4f3264e700) 0 + +Class QStyleHintReturnMask + size=16 align=8 + base size=16 base align=8 +QStyleHintReturnMask (0x7f4f3264eb60) 0 + QStyleHintReturn (0x7f4f3264ebd0) 0 + +Class QStyleHintReturnVariant + size=24 align=8 + base size=24 base align=8 +QStyleHintReturnVariant (0x7f4f3264ed90) 0 + QStyleHintReturn (0x7f4f3264ee00) 0 + +Vtable for QAbstractItemDelegate +QAbstractItemDelegate::_ZTV21QAbstractItemDelegate: 21u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QAbstractItemDelegate) +16 QAbstractItemDelegate::metaObject +24 QAbstractItemDelegate::qt_metacast +32 QAbstractItemDelegate::qt_metacall +40 QAbstractItemDelegate::~QAbstractItemDelegate +48 QAbstractItemDelegate::~QAbstractItemDelegate +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAbstractItemDelegate::createEditor +136 QAbstractItemDelegate::setEditorData +144 QAbstractItemDelegate::setModelData +152 QAbstractItemDelegate::updateEditorGeometry +160 QAbstractItemDelegate::editorEvent + +Class QAbstractItemDelegate + size=16 align=8 + base size=16 base align=8 +QAbstractItemDelegate (0x7f4f326742a0) 0 + vptr=((& QAbstractItemDelegate::_ZTV21QAbstractItemDelegate) + 16u) + QObject (0x7f4f32674310) 0 + primary-for QAbstractItemDelegate (0x7f4f326742a0) + +Vtable for QAbstractItemView +QAbstractItemView::_ZTV17QAbstractItemView: 103u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAbstractItemView) +16 QAbstractItemView::metaObject +24 QAbstractItemView::qt_metacast +32 QAbstractItemView::qt_metacall +40 QAbstractItemView::~QAbstractItemView +48 QAbstractItemView::~QAbstractItemView +56 QAbstractItemView::event +64 QObject::eventFilter +72 QAbstractItemView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QAbstractItemView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QAbstractItemView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractScrollArea::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QAbstractScrollArea::scrollContentsBy +464 QAbstractItemView::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 __cxa_pure_virtual +496 __cxa_pure_virtual +504 __cxa_pure_virtual +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QAbstractItemView::reset +536 QAbstractItemView::setRootIndex +544 QAbstractItemView::doItemsLayout +552 QAbstractItemView::selectAll +560 QAbstractItemView::dataChanged +568 QAbstractItemView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QAbstractItemView::selectionChanged +592 QAbstractItemView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QAbstractItemView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 __cxa_pure_virtual +688 __cxa_pure_virtual +696 __cxa_pure_virtual +704 __cxa_pure_virtual +712 __cxa_pure_virtual +720 __cxa_pure_virtual +728 QAbstractItemView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 (int (*)(...))-0x00000000000000010 +776 (int (*)(...))(& _ZTI17QAbstractItemView) +784 QAbstractItemView::_ZThn16_N17QAbstractItemViewD1Ev +792 QAbstractItemView::_ZThn16_N17QAbstractItemViewD0Ev +800 QWidget::_ZThn16_NK7QWidget7devTypeEv +808 QWidget::_ZThn16_NK7QWidget11paintEngineEv +816 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractItemView + size=40 align=8 + base size=40 base align=8 +QAbstractItemView (0x7f4f32695930) 0 + vptr=((& QAbstractItemView::_ZTV17QAbstractItemView) + 16u) + QAbstractScrollArea (0x7f4f326959a0) 0 + primary-for QAbstractItemView (0x7f4f32695930) + QFrame (0x7f4f32695a10) 0 + primary-for QAbstractScrollArea (0x7f4f326959a0) + QWidget (0x7f4f32685600) 0 + primary-for QFrame (0x7f4f32695a10) + QObject (0x7f4f32695a80) 0 + primary-for QWidget (0x7f4f32685600) + QPaintDevice (0x7f4f32695af0) 16 + vptr=((& QAbstractItemView::_ZTV17QAbstractItemView) + 784u) + +Vtable for QTreeView +QTreeView::_ZTV9QTreeView: 105u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTreeView) +16 QTreeView::metaObject +24 QTreeView::qt_metacast +32 QTreeView::qt_metacall +40 QTreeView::~QTreeView +48 QTreeView::~QTreeView +56 QAbstractItemView::event +64 QObject::eventFilter +72 QTreeView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTreeView::mousePressEvent +168 QTreeView::mouseReleaseEvent +176 QTreeView::mouseDoubleClickEvent +184 QTreeView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QTreeView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTreeView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QTreeView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QTreeView::viewportEvent +456 QTreeView::scrollContentsBy +464 QTreeView::setModel +472 QTreeView::setSelectionModel +480 QTreeView::keyboardSearch +488 QTreeView::visualRect +496 QTreeView::scrollTo +504 QTreeView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QTreeView::sizeHintForColumn +528 QTreeView::reset +536 QTreeView::setRootIndex +544 QTreeView::doItemsLayout +552 QTreeView::selectAll +560 QTreeView::dataChanged +568 QTreeView::rowsInserted +576 QTreeView::rowsAboutToBeRemoved +584 QTreeView::selectionChanged +592 QTreeView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QTreeView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QTreeView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QTreeView::moveCursor +688 QTreeView::horizontalOffset +696 QTreeView::verticalOffset +704 QTreeView::isIndexHidden +712 QTreeView::setSelection +720 QTreeView::visualRegionForSelection +728 QTreeView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 QTreeView::drawRow +776 QTreeView::drawBranches +784 (int (*)(...))-0x00000000000000010 +792 (int (*)(...))(& _ZTI9QTreeView) +800 QTreeView::_ZThn16_N9QTreeViewD1Ev +808 QTreeView::_ZThn16_N9QTreeViewD0Ev +816 QWidget::_ZThn16_NK7QWidget7devTypeEv +824 QWidget::_ZThn16_NK7QWidget11paintEngineEv +832 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTreeView + size=40 align=8 + base size=40 base align=8 +QTreeView (0x7f4f32522150) 0 + vptr=((& QTreeView::_ZTV9QTreeView) + 16u) + QAbstractItemView (0x7f4f325221c0) 0 + primary-for QTreeView (0x7f4f32522150) + QAbstractScrollArea (0x7f4f32522230) 0 + primary-for QAbstractItemView (0x7f4f325221c0) + QFrame (0x7f4f325222a0) 0 + primary-for QAbstractScrollArea (0x7f4f32522230) + QWidget (0x7f4f324e2d80) 0 + primary-for QFrame (0x7f4f325222a0) + QObject (0x7f4f32522310) 0 + primary-for QWidget (0x7f4f324e2d80) + QPaintDevice (0x7f4f32522380) 16 + vptr=((& QTreeView::_ZTV9QTreeView) + 800u) + +Class QHelpContentItem + size=8 align=8 + base size=8 base align=8 +QHelpContentItem (0x7f4f32557ee0) 0 + +Vtable for QHelpContentModel +QHelpContentModel::_ZTV17QHelpContentModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QHelpContentModel) +16 QHelpContentModel::metaObject +24 QHelpContentModel::qt_metacast +32 QHelpContentModel::qt_metacall +40 QHelpContentModel::~QHelpContentModel +48 QHelpContentModel::~QHelpContentModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QHelpContentModel::index +120 QHelpContentModel::parent +128 QHelpContentModel::rowCount +136 QHelpContentModel::columnCount +144 QAbstractItemModel::hasChildren +152 QHelpContentModel::data +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractItemModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QHelpContentModel + size=24 align=8 + base size=24 base align=8 +QHelpContentModel (0x7f4f3255f460) 0 + vptr=((& QHelpContentModel::_ZTV17QHelpContentModel) + 16u) + QAbstractItemModel (0x7f4f3255f4d0) 0 + primary-for QHelpContentModel (0x7f4f3255f460) + QObject (0x7f4f3255f540) 0 + primary-for QAbstractItemModel (0x7f4f3255f4d0) + +Vtable for QHelpContentWidget +QHelpContentWidget::_ZTV18QHelpContentWidget: 105u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QHelpContentWidget) +16 QHelpContentWidget::metaObject +24 QHelpContentWidget::qt_metacast +32 QHelpContentWidget::qt_metacall +40 QHelpContentWidget::~QHelpContentWidget +48 QHelpContentWidget::~QHelpContentWidget +56 QAbstractItemView::event +64 QObject::eventFilter +72 QTreeView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTreeView::mousePressEvent +168 QTreeView::mouseReleaseEvent +176 QTreeView::mouseDoubleClickEvent +184 QTreeView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QTreeView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTreeView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QTreeView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QTreeView::viewportEvent +456 QTreeView::scrollContentsBy +464 QTreeView::setModel +472 QTreeView::setSelectionModel +480 QTreeView::keyboardSearch +488 QTreeView::visualRect +496 QTreeView::scrollTo +504 QTreeView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QTreeView::sizeHintForColumn +528 QTreeView::reset +536 QTreeView::setRootIndex +544 QTreeView::doItemsLayout +552 QTreeView::selectAll +560 QTreeView::dataChanged +568 QTreeView::rowsInserted +576 QTreeView::rowsAboutToBeRemoved +584 QTreeView::selectionChanged +592 QTreeView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QTreeView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QTreeView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QTreeView::moveCursor +688 QTreeView::horizontalOffset +696 QTreeView::verticalOffset +704 QTreeView::isIndexHidden +712 QTreeView::setSelection +720 QTreeView::visualRegionForSelection +728 QTreeView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 QTreeView::drawRow +776 QTreeView::drawBranches +784 (int (*)(...))-0x00000000000000010 +792 (int (*)(...))(& _ZTI18QHelpContentWidget) +800 QHelpContentWidget::_ZThn16_N18QHelpContentWidgetD1Ev +808 QHelpContentWidget::_ZThn16_N18QHelpContentWidgetD0Ev +816 QWidget::_ZThn16_NK7QWidget7devTypeEv +824 QWidget::_ZThn16_NK7QWidget11paintEngineEv +832 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QHelpContentWidget + size=64 align=8 + base size=64 base align=8 +QHelpContentWidget (0x7f4f3257a460) 0 + vptr=((& QHelpContentWidget::_ZTV18QHelpContentWidget) + 16u) + QTreeView (0x7f4f3257a4d0) 0 + primary-for QHelpContentWidget (0x7f4f3257a460) + QAbstractItemView (0x7f4f3257a540) 0 + primary-for QTreeView (0x7f4f3257a4d0) + QAbstractScrollArea (0x7f4f3257a5b0) 0 + primary-for QAbstractItemView (0x7f4f3257a540) + QFrame (0x7f4f3257a620) 0 + primary-for QAbstractScrollArea (0x7f4f3257a5b0) + QWidget (0x7f4f32554e80) 0 + primary-for QFrame (0x7f4f3257a620) + QObject (0x7f4f3257a690) 0 + primary-for QWidget (0x7f4f32554e80) + QPaintDevice (0x7f4f3257a700) 16 + vptr=((& QHelpContentWidget::_ZTV18QHelpContentWidget) + 800u) + +Vtable for QHelpEngineCore +QHelpEngineCore::_ZTV15QHelpEngineCore: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QHelpEngineCore) +16 QHelpEngineCore::metaObject +24 QHelpEngineCore::qt_metacast +32 QHelpEngineCore::qt_metacall +40 QHelpEngineCore::~QHelpEngineCore +48 QHelpEngineCore::~QHelpEngineCore +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QHelpEngineCore + size=24 align=8 + base size=24 base align=8 +QHelpEngineCore (0x7f4f32590460) 0 + vptr=((& QHelpEngineCore::_ZTV15QHelpEngineCore) + 16u) + QObject (0x7f4f325904d0) 0 + primary-for QHelpEngineCore (0x7f4f32590460) + +Vtable for QHelpEngine +QHelpEngine::_ZTV11QHelpEngine: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QHelpEngine) +16 QHelpEngine::metaObject +24 QHelpEngine::qt_metacast +32 QHelpEngine::qt_metacall +40 QHelpEngine::~QHelpEngine +48 QHelpEngine::~QHelpEngine +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QHelpEngine + size=32 align=8 + base size=32 base align=8 +QHelpEngine (0x7f4f325ab4d0) 0 + vptr=((& QHelpEngine::_ZTV11QHelpEngine) + 16u) + QHelpEngineCore (0x7f4f325ab540) 0 + primary-for QHelpEngine (0x7f4f325ab4d0) + QObject (0x7f4f325ab5b0) 0 + primary-for QHelpEngineCore (0x7f4f325ab540) + +Vtable for QStringListModel +QStringListModel::_ZTV16QStringListModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QStringListModel) +16 QStringListModel::metaObject +24 QStringListModel::qt_metacast +32 QStringListModel::qt_metacall +40 QStringListModel::~QStringListModel +48 QStringListModel::~QStringListModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractListModel::index +120 QAbstractListModel::parent +128 QStringListModel::rowCount +136 QAbstractListModel::columnCount +144 QAbstractListModel::hasChildren +152 QStringListModel::data +160 QStringListModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractListModel::dropMimeData +224 QStringListModel::supportedDropActions +232 QStringListModel::insertRows +240 QAbstractItemModel::insertColumns +248 QStringListModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QStringListModel::flags +288 QStringListModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QStringListModel + size=24 align=8 + base size=24 base align=8 +QStringListModel (0x7f4f325bd3f0) 0 + vptr=((& QStringListModel::_ZTV16QStringListModel) + 16u) + QAbstractListModel (0x7f4f325bd460) 0 + primary-for QStringListModel (0x7f4f325bd3f0) + QAbstractItemModel (0x7f4f325bd4d0) 0 + primary-for QAbstractListModel (0x7f4f325bd460) + QObject (0x7f4f325bd540) 0 + primary-for QAbstractItemModel (0x7f4f325bd4d0) + +Vtable for QListView +QListView::_ZTV9QListView: 103u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QListView) +16 QListView::metaObject +24 QListView::qt_metacast +32 QListView::qt_metacall +40 QListView::~QListView +48 QListView::~QListView +56 QListView::event +64 QObject::eventFilter +72 QListView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QListView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QListView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QListView::paintEvent +256 QWidget::moveEvent +264 QListView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QListView::dragMoveEvent +320 QListView::dragLeaveEvent +328 QListView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QListView::scrollContentsBy +464 QAbstractItemView::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QListView::visualRect +496 QListView::scrollTo +504 QListView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QListView::reset +536 QListView::setRootIndex +544 QListView::doItemsLayout +552 QAbstractItemView::selectAll +560 QListView::dataChanged +568 QListView::rowsInserted +576 QListView::rowsAboutToBeRemoved +584 QListView::selectionChanged +592 QListView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QListView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QListView::moveCursor +688 QListView::horizontalOffset +696 QListView::verticalOffset +704 QListView::isIndexHidden +712 QListView::setSelection +720 QListView::visualRegionForSelection +728 QListView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QListView::startDrag +760 QListView::viewOptions +768 (int (*)(...))-0x00000000000000010 +776 (int (*)(...))(& _ZTI9QListView) +784 QListView::_ZThn16_N9QListViewD1Ev +792 QListView::_ZThn16_N9QListViewD0Ev +800 QWidget::_ZThn16_NK7QWidget7devTypeEv +808 QWidget::_ZThn16_NK7QWidget11paintEngineEv +816 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QListView + size=40 align=8 + base size=40 base align=8 +QListView (0x7f4f323d2a10) 0 + vptr=((& QListView::_ZTV9QListView) + 16u) + QAbstractItemView (0x7f4f323d2a80) 0 + primary-for QListView (0x7f4f323d2a10) + QAbstractScrollArea (0x7f4f323d2af0) 0 + primary-for QAbstractItemView (0x7f4f323d2a80) + QFrame (0x7f4f323d2b60) 0 + primary-for QAbstractScrollArea (0x7f4f323d2af0) + QWidget (0x7f4f325b9900) 0 + primary-for QFrame (0x7f4f323d2b60) + QObject (0x7f4f323d2bd0) 0 + primary-for QWidget (0x7f4f325b9900) + QPaintDevice (0x7f4f323d2c40) 16 + vptr=((& QListView::_ZTV9QListView) + 784u) + +Vtable for QHelpIndexModel +QHelpIndexModel::_ZTV15QHelpIndexModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QHelpIndexModel) +16 QHelpIndexModel::metaObject +24 QHelpIndexModel::qt_metacast +32 QHelpIndexModel::qt_metacall +40 QHelpIndexModel::~QHelpIndexModel +48 QHelpIndexModel::~QHelpIndexModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractListModel::index +120 QAbstractListModel::parent +128 QStringListModel::rowCount +136 QAbstractListModel::columnCount +144 QAbstractListModel::hasChildren +152 QStringListModel::data +160 QStringListModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractListModel::dropMimeData +224 QStringListModel::supportedDropActions +232 QStringListModel::insertRows +240 QAbstractItemModel::insertColumns +248 QStringListModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QStringListModel::flags +288 QStringListModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QHelpIndexModel + size=32 align=8 + base size=32 base align=8 +QHelpIndexModel (0x7f4f3240f0e0) 0 + vptr=((& QHelpIndexModel::_ZTV15QHelpIndexModel) + 16u) + QStringListModel (0x7f4f3240f150) 0 + primary-for QHelpIndexModel (0x7f4f3240f0e0) + QAbstractListModel (0x7f4f3240f1c0) 0 + primary-for QStringListModel (0x7f4f3240f150) + QAbstractItemModel (0x7f4f3240f230) 0 + primary-for QAbstractListModel (0x7f4f3240f1c0) + QObject (0x7f4f3240f2a0) 0 + primary-for QAbstractItemModel (0x7f4f3240f230) + +Vtable for QHelpIndexWidget +QHelpIndexWidget::_ZTV16QHelpIndexWidget: 103u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QHelpIndexWidget) +16 QHelpIndexWidget::metaObject +24 QHelpIndexWidget::qt_metacast +32 QHelpIndexWidget::qt_metacall +40 QHelpIndexWidget::~QHelpIndexWidget +48 QHelpIndexWidget::~QHelpIndexWidget +56 QListView::event +64 QObject::eventFilter +72 QListView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QListView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QListView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QListView::paintEvent +256 QWidget::moveEvent +264 QListView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QListView::dragMoveEvent +320 QListView::dragLeaveEvent +328 QListView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QListView::scrollContentsBy +464 QAbstractItemView::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QListView::visualRect +496 QListView::scrollTo +504 QListView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QListView::reset +536 QListView::setRootIndex +544 QListView::doItemsLayout +552 QAbstractItemView::selectAll +560 QListView::dataChanged +568 QListView::rowsInserted +576 QListView::rowsAboutToBeRemoved +584 QListView::selectionChanged +592 QListView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QListView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QListView::moveCursor +688 QListView::horizontalOffset +696 QListView::verticalOffset +704 QListView::isIndexHidden +712 QListView::setSelection +720 QListView::visualRegionForSelection +728 QListView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QListView::startDrag +760 QListView::viewOptions +768 (int (*)(...))-0x00000000000000010 +776 (int (*)(...))(& _ZTI16QHelpIndexWidget) +784 QHelpIndexWidget::_ZThn16_N16QHelpIndexWidgetD1Ev +792 QHelpIndexWidget::_ZThn16_N16QHelpIndexWidgetD0Ev +800 QWidget::_ZThn16_NK7QWidget7devTypeEv +808 QWidget::_ZThn16_NK7QWidget11paintEngineEv +816 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QHelpIndexWidget + size=40 align=8 + base size=40 base align=8 +QHelpIndexWidget (0x7f4f324250e0) 0 + vptr=((& QHelpIndexWidget::_ZTV16QHelpIndexWidget) + 16u) + QListView (0x7f4f32425150) 0 + primary-for QHelpIndexWidget (0x7f4f324250e0) + QAbstractItemView (0x7f4f324251c0) 0 + primary-for QListView (0x7f4f32425150) + QAbstractScrollArea (0x7f4f32425230) 0 + primary-for QAbstractItemView (0x7f4f324251c0) + QFrame (0x7f4f324252a0) 0 + primary-for QAbstractScrollArea (0x7f4f32425230) + QWidget (0x7f4f323e2f80) 0 + primary-for QFrame (0x7f4f324252a0) + QObject (0x7f4f32425310) 0 + primary-for QWidget (0x7f4f323e2f80) + QPaintDevice (0x7f4f32425380) 16 + vptr=((& QHelpIndexWidget::_ZTV16QHelpIndexWidget) + 784u) + +Class QHelpSearchQuery + size=16 align=8 + base size=16 base align=8 +QHelpSearchQuery (0x7f4f3243b150) 0 + +Vtable for QHelpSearchEngine +QHelpSearchEngine::_ZTV17QHelpSearchEngine: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QHelpSearchEngine) +16 QHelpSearchEngine::metaObject +24 QHelpSearchEngine::qt_metacast +32 QHelpSearchEngine::qt_metacall +40 QHelpSearchEngine::~QHelpSearchEngine +48 QHelpSearchEngine::~QHelpSearchEngine +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QHelpSearchEngine + size=24 align=8 + base size=24 base align=8 +QHelpSearchEngine (0x7f4f32445700) 0 + vptr=((& QHelpSearchEngine::_ZTV17QHelpSearchEngine) + 16u) + QObject (0x7f4f32445770) 0 + primary-for QHelpSearchEngine (0x7f4f32445700) + +Vtable for QHelpSearchQueryWidget +QHelpSearchQueryWidget::_ZTV22QHelpSearchQueryWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QHelpSearchQueryWidget) +16 QHelpSearchQueryWidget::metaObject +24 QHelpSearchQueryWidget::qt_metacast +32 QHelpSearchQueryWidget::qt_metacall +40 QHelpSearchQueryWidget::~QHelpSearchQueryWidget +48 QHelpSearchQueryWidget::~QHelpSearchQueryWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QHelpSearchQueryWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI22QHelpSearchQueryWidget) +464 QHelpSearchQueryWidget::_ZThn16_N22QHelpSearchQueryWidgetD1Ev +472 QHelpSearchQueryWidget::_ZThn16_N22QHelpSearchQueryWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QHelpSearchQueryWidget + size=48 align=8 + base size=48 base align=8 +QHelpSearchQueryWidget (0x7f4f32454a80) 0 + vptr=((& QHelpSearchQueryWidget::_ZTV22QHelpSearchQueryWidget) + 16u) + QWidget (0x7f4f32444e00) 0 + primary-for QHelpSearchQueryWidget (0x7f4f32454a80) + QObject (0x7f4f32454af0) 0 + primary-for QWidget (0x7f4f32444e00) + QPaintDevice (0x7f4f32454b60) 16 + vptr=((& QHelpSearchQueryWidget::_ZTV22QHelpSearchQueryWidget) + 464u) + +Vtable for QHelpSearchResultWidget +QHelpSearchResultWidget::_ZTV23QHelpSearchResultWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QHelpSearchResultWidget) +16 QHelpSearchResultWidget::metaObject +24 QHelpSearchResultWidget::qt_metacast +32 QHelpSearchResultWidget::qt_metacall +40 QHelpSearchResultWidget::~QHelpSearchResultWidget +48 QHelpSearchResultWidget::~QHelpSearchResultWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI23QHelpSearchResultWidget) +464 QHelpSearchResultWidget::_ZThn16_N23QHelpSearchResultWidgetD1Ev +472 QHelpSearchResultWidget::_ZThn16_N23QHelpSearchResultWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QHelpSearchResultWidget + size=48 align=8 + base size=48 base align=8 +QHelpSearchResultWidget (0x7f4f3246ba10) 0 + vptr=((& QHelpSearchResultWidget::_ZTV23QHelpSearchResultWidget) + 16u) + QWidget (0x7f4f32467500) 0 + primary-for QHelpSearchResultWidget (0x7f4f3246ba10) + QObject (0x7f4f3246ba80) 0 + primary-for QWidget (0x7f4f32467500) + QPaintDevice (0x7f4f3246baf0) 16 + vptr=((& QHelpSearchResultWidget::_ZTV23QHelpSearchResultWidget) + 464u) + diff --git a/tests/auto/bic/data/QtMultimedia.4.6.0.linux-gcc-amd64.txt b/tests/auto/bic/data/QtMultimedia.4.6.0.linux-gcc-amd64.txt new file mode 100644 index 0000000..176b6f3 --- /dev/null +++ b/tests/auto/bic/data/QtMultimedia.4.6.0.linux-gcc-amd64.txt @@ -0,0 +1,17011 @@ +Class QSysInfo + size=1 align=1 + base size=0 base align=1 +QSysInfo (0x7f95586be230) 0 empty + +Class QBool + size=1 align=1 + base size=1 base align=1 +QBool (0x7f95586bee70) 0 + +Class qIsNull(double)::U + size=8 align=8 + base size=8 base align=8 +qIsNull(double)::U (0x7f9557cc5540) 0 + +Class qIsNull(float)::U + size=4 align=4 + base size=4 base align=4 +qIsNull(float)::U (0x7f9557cc57e0) 0 + +Class QFlag + size=4 align=4 + base size=4 base align=4 +QFlag (0x7f9557d00690) 0 + +Class QIncompatibleFlag + size=4 align=4 + base size=4 base align=4 +QIncompatibleFlag (0x7f9557d00e70) 0 + +Class QLatin1Char + size=1 align=1 + base size=1 base align=1 +QLatin1Char (0x7f9557d2f5b0) 0 + +Class QChar + size=2 align=2 + base size=2 base align=2 +QChar (0x7f9557d54150) 0 + +Class QBasicAtomicInt + size=4 align=4 + base size=4 base align=4 +QBasicAtomicInt (0x7f9557bbd310) 0 + +Class QAtomicInt + size=4 align=4 + base size=4 base align=4 +QAtomicInt (0x7f9557bf9cb0) 0 + QBasicAtomicInt (0x7f9557bf9d20) 0 + +Class QInternal + size=1 align=1 + base size=0 base align=1 +QInternal (0x7f9557a514d0) 0 empty + +Class __locale_struct + size=232 align=8 + base size=232 base align=8 +__locale_struct (0x7f9557a51700) 0 + +Class QByteArray::Data + size=32 align=8 + base size=32 base align=8 +QByteArray::Data (0x7f9557a8baf0) 0 + +Class QByteArray + size=8 align=8 + base size=8 base align=8 +QByteArray (0x7f9557a8ba80) 0 + +Class QByteRef + size=16 align=8 + base size=12 base align=8 +QByteRef (0x7f955792d380) 0 + +Class QString::Null + size=1 align=1 + base size=0 base align=1 +QString::Null (0x7f955782ed20) 0 empty + +Class QString::Data + size=32 align=8 + base size=32 base align=8 +QString::Data (0x7f95578465b0) 0 + +Class QString + size=8 align=8 + base size=8 base align=8 +QString (0x7f95579a8bd0) 0 + +Class QLatin1String + size=8 align=8 + base size=8 base align=8 +QLatin1String (0x7f955771c9a0) 0 + +Class QCharRef + size=16 align=8 + base size=12 base align=8 +QCharRef (0x7f95575bc000) 0 + +Class QConstString + size=8 align=8 + base size=8 base align=8 +QConstString (0x7f95575048c0) 0 + QString (0x7f9557504930) 0 + +Class QStringRef + size=16 align=8 + base size=16 base align=8 +QStringRef (0x7f9557529310) 0 + +Class QGenericArgument + size=16 align=8 + base size=16 base align=8 +QGenericArgument (0x7f95575a4700) 0 + +Class QGenericReturnArgument + size=16 align=8 + base size=16 base align=8 +QGenericReturnArgument (0x7f95573ae2a0) 0 + QGenericArgument (0x7f95573ae310) 0 + +Class QMetaObject + size=32 align=8 + base size=32 base align=8 +QMetaObject (0x7f95573aeb60) 0 + +Class QMetaObjectExtraData + size=16 align=8 + base size=16 base align=8 +QMetaObjectExtraData (0x7f95573d4bd0) 0 + +Vtable for std::exception +std::exception::_ZTVSt9exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9exception) +16 std::exception::~exception +24 std::exception::~exception +32 std::exception::what + +Class std::exception + size=8 align=8 + base size=8 base align=8 +std::exception (0x7f955742b1c0) 0 nearly-empty + vptr=((& std::exception::_ZTVSt9exception) + 16u) + +Vtable for std::bad_exception +std::bad_exception::_ZTVSt13bad_exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13bad_exception) +16 std::bad_exception::~bad_exception +24 std::bad_exception::~bad_exception +32 std::bad_exception::what + +Class std::bad_exception + size=8 align=8 + base size=8 base align=8 +std::bad_exception (0x7f955742b770) 0 nearly-empty + vptr=((& std::bad_exception::_ZTVSt13bad_exception) + 16u) + std::exception (0x7f955742b7e0) 0 nearly-empty + primary-for std::bad_exception (0x7f955742b770) + +Vtable for std::bad_alloc +std::bad_alloc::_ZTVSt9bad_alloc: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9bad_alloc) +16 std::bad_alloc::~bad_alloc +24 std::bad_alloc::~bad_alloc +32 std::bad_alloc::what + +Class std::bad_alloc + size=8 align=8 + base size=8 base align=8 +std::bad_alloc (0x7f955742b930) 0 nearly-empty + vptr=((& std::bad_alloc::_ZTVSt9bad_alloc) + 16u) + std::exception (0x7f9557441000) 0 nearly-empty + primary-for std::bad_alloc (0x7f955742b930) + +Class std::nothrow_t + size=1 align=1 + base size=0 base align=1 +std::nothrow_t (0x7f9557441850) 0 empty + +Class QListData::Data + size=32 align=8 + base size=32 base align=8 +QListData::Data (0x7f9557441d90) 0 + +Class QListData + size=8 align=8 + base size=8 base align=8 +QListData (0x7f9557441d20) 0 + +Class QScopedPointerPodDeleter + size=1 align=1 + base size=0 base align=1 +QScopedPointerPodDeleter (0x7f955736b850) 0 empty + +Vtable for QObjectData +QObjectData::_ZTV11QObjectData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QObjectData) +16 __cxa_pure_virtual +24 __cxa_pure_virtual + +Class QObjectData + size=48 align=8 + base size=48 base align=8 +QObjectData (0x7f955738c2a0) 0 + vptr=((& QObjectData::_ZTV11QObjectData) + 16u) + +Vtable for QObject +QObject::_ZTV7QObject: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QObject) +16 QObject::metaObject +24 QObject::qt_metacast +32 QObject::qt_metacall +40 QObject::~QObject +48 QObject::~QObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObject + size=16 align=8 + base size=16 base align=8 +QObject (0x7f955738c5b0) 0 + vptr=((& QObject::_ZTV7QObject) + 16u) + +Vtable for QObjectUserData +QObjectUserData::_ZTV15QObjectUserData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QObjectUserData) +16 QObjectUserData::~QObjectUserData +24 QObjectUserData::~QObjectUserData + +Class QObjectUserData + size=8 align=8 + base size=8 base align=8 +QObjectUserData (0x7f9557211b60) 0 nearly-empty + vptr=((& QObjectUserData::_ZTV15QObjectUserData) + 16u) + +Vtable for QIODevice +QIODevice::_ZTV9QIODevice: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QIODevice) +16 QIODevice::metaObject +24 QIODevice::qt_metacast +32 QIODevice::qt_metacall +40 QIODevice::~QIODevice +48 QIODevice::~QIODevice +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QIODevice::isSequential +120 QIODevice::open +128 QIODevice::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QIODevice::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 __cxa_pure_virtual +224 QIODevice::readLineData +232 __cxa_pure_virtual + +Class QIODevice + size=16 align=8 + base size=16 base align=8 +QIODevice (0x7f9557220150) 0 + vptr=((& QIODevice::_ZTV9QIODevice) + 16u) + QObject (0x7f95572201c0) 0 + primary-for QIODevice (0x7f9557220150) + +Class _IO_marker + size=24 align=8 + base size=24 base align=8 +_IO_marker (0x7f9557282cb0) 0 + +Class _IO_FILE + size=216 align=8 + base size=216 base align=8 +_IO_FILE (0x7f9557282d20) 0 + +Vtable for QFile +QFile::_ZTV5QFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QFile) +16 QFile::metaObject +24 QFile::qt_metacast +32 QFile::qt_metacall +40 QFile::~QFile +48 QFile::~QFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QFile::fileEngine + +Class QFile + size=16 align=8 + base size=16 base align=8 +QFile (0x7f9557282e00) 0 + vptr=((& QFile::_ZTV5QFile) + 16u) + QIODevice (0x7f9557282e70) 0 + primary-for QFile (0x7f9557282e00) + QObject (0x7f9557282ee0) 0 + primary-for QIODevice (0x7f9557282e70) + +Class QFileInfo + size=8 align=8 + base size=8 base align=8 +QFileInfo (0x7f9557124070) 0 + +Vtable for QDataStream +QDataStream::_ZTV11QDataStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QDataStream) +16 QDataStream::~QDataStream +24 QDataStream::~QDataStream + +Class QDataStream + size=40 align=8 + base size=40 base align=8 +QDataStream (0x7f9557176a10) 0 + vptr=((& QDataStream::_ZTV11QDataStream) + 16u) + +Class QRegExp + size=8 align=8 + base size=8 base align=8 +QRegExp (0x7f9556fe1e70) 0 + +Class QStringMatcher::Data + size=272 align=8 + base size=272 base align=8 +QStringMatcher::Data (0x7f955704a2a0) 0 + +Class QStringMatcher + size=1048 align=8 + base size=1048 base align=8 +QStringMatcher (0x7f955703dc40) 0 + +Class QStringList + size=8 align=8 + base size=8 base align=8 +QStringList (0x7f955704a850) 0 + QList (0x7f955704a8c0) 0 + +Class QDir + size=8 align=8 + base size=8 base align=8 +QDir (0x7f9556ee84d0) 0 + +Class QAbstractFileEngine::ExtensionOption + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionOption (0x7f9556f8f8c0) 0 empty + +Class QAbstractFileEngine::ExtensionReturn + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionReturn (0x7f9556f8f930) 0 empty + +Class QAbstractFileEngine::MapExtensionOption + size=24 align=8 + base size=20 base align=8 +QAbstractFileEngine::MapExtensionOption (0x7f9556f8f9a0) 0 + QAbstractFileEngine::ExtensionOption (0x7f9556f8fa10) 0 empty + +Class QAbstractFileEngine::MapExtensionReturn + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::MapExtensionReturn (0x7f9556f8fbd0) 0 + QAbstractFileEngine::ExtensionReturn (0x7f9556f8fc40) 0 empty + +Class QAbstractFileEngine::UnMapExtensionOption + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::UnMapExtensionOption (0x7f9556f8fcb0) 0 + QAbstractFileEngine::ExtensionOption (0x7f9556f8fd20) 0 empty + +Vtable for QAbstractFileEngine +QAbstractFileEngine::_ZTV19QAbstractFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractFileEngine) +16 QAbstractFileEngine::~QAbstractFileEngine +24 QAbstractFileEngine::~QAbstractFileEngine +32 QAbstractFileEngine::open +40 QAbstractFileEngine::close +48 QAbstractFileEngine::flush +56 QAbstractFileEngine::size +64 QAbstractFileEngine::pos +72 QAbstractFileEngine::seek +80 QAbstractFileEngine::isSequential +88 QAbstractFileEngine::remove +96 QAbstractFileEngine::copy +104 QAbstractFileEngine::rename +112 QAbstractFileEngine::link +120 QAbstractFileEngine::mkdir +128 QAbstractFileEngine::rmdir +136 QAbstractFileEngine::setSize +144 QAbstractFileEngine::caseSensitive +152 QAbstractFileEngine::isRelativePath +160 QAbstractFileEngine::entryList +168 QAbstractFileEngine::fileFlags +176 QAbstractFileEngine::setPermissions +184 QAbstractFileEngine::fileName +192 QAbstractFileEngine::ownerId +200 QAbstractFileEngine::owner +208 QAbstractFileEngine::fileTime +216 QAbstractFileEngine::setFileName +224 QAbstractFileEngine::handle +232 QAbstractFileEngine::beginEntryList +240 QAbstractFileEngine::endEntryList +248 QAbstractFileEngine::read +256 QAbstractFileEngine::readLine +264 QAbstractFileEngine::write +272 QAbstractFileEngine::extension +280 QAbstractFileEngine::supportsExtension + +Class QAbstractFileEngine + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngine (0x7f9556f73850) 0 + vptr=((& QAbstractFileEngine::_ZTV19QAbstractFileEngine) + 16u) + +Vtable for QAbstractFileEngineHandler +QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QAbstractFileEngineHandler) +16 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +24 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +32 __cxa_pure_virtual + +Class QAbstractFileEngineHandler + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngineHandler (0x7f9556dc4bd0) 0 nearly-empty + vptr=((& QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler) + 16u) + +Vtable for QAbstractFileEngineIterator +QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QAbstractFileEngineIterator) +16 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +24 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QAbstractFileEngineIterator::currentFileInfo +64 QAbstractFileEngineIterator::entryInfo + +Class QAbstractFileEngineIterator + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngineIterator (0x7f9556dc4d90) 0 + vptr=((& QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator) + 16u) + +Vtable for QBuffer +QBuffer::_ZTV7QBuffer: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QBuffer) +16 QBuffer::metaObject +24 QBuffer::qt_metacast +32 QBuffer::qt_metacall +40 QBuffer::~QBuffer +48 QBuffer::~QBuffer +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QBuffer::connectNotify +104 QBuffer::disconnectNotify +112 QIODevice::isSequential +120 QBuffer::open +128 QBuffer::close +136 QBuffer::pos +144 QBuffer::size +152 QBuffer::seek +160 QBuffer::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QBuffer::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QBuffer::readData +224 QIODevice::readLineData +232 QBuffer::writeData + +Class QBuffer + size=16 align=8 + base size=16 base align=8 +QBuffer (0x7f9556dd7690) 0 + vptr=((& QBuffer::_ZTV7QBuffer) + 16u) + QIODevice (0x7f9556dd7700) 0 + primary-for QBuffer (0x7f9556dd7690) + QObject (0x7f9556dd7770) 0 + primary-for QIODevice (0x7f9556dd7700) + +Class QHashData::Node + size=16 align=8 + base size=16 base align=8 +QHashData::Node (0x7f9556e1be00) 0 + +Class QHashData + size=40 align=8 + base size=40 base align=8 +QHashData (0x7f9556e1bd90) 0 + +Class QHashDummyValue + size=1 align=1 + base size=0 base align=1 +QHashDummyValue (0x7f9556e3e150) 0 empty + +Class QMapData::Node + size=16 align=8 + base size=16 base align=8 +QMapData::Node (0x7f9556d3fa80) 0 + +Class QMapData + size=128 align=8 + base size=128 base align=8 +QMapData (0x7f9556d3fa10) 0 + +Vtable for QSystemLocale +QSystemLocale::_ZTV13QSystemLocale: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSystemLocale) +16 QSystemLocale::~QSystemLocale +24 QSystemLocale::~QSystemLocale +32 QSystemLocale::query +40 QSystemLocale::fallbackLocale + +Class QSystemLocale + size=8 align=8 + base size=8 base align=8 +QSystemLocale (0x7f9556c7a690) 0 nearly-empty + vptr=((& QSystemLocale::_ZTV13QSystemLocale) + 16u) + +Class QLocale::Data + size=4 align=2 + base size=4 base align=2 +QLocale::Data (0x7f9556ac4d90) 0 + +Class QLocale + size=8 align=8 + base size=8 base align=8 +QLocale (0x7f9556c7aaf0) 0 + +Class QTextCodec::ConverterState + size=32 align=8 + base size=32 base align=8 +QTextCodec::ConverterState (0x7f9556b19bd0) 0 + +Vtable for QTextCodec +QTextCodec::_ZTV10QTextCodec: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextCodec) +16 __cxa_pure_virtual +24 QTextCodec::aliases +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QTextCodec::~QTextCodec +64 QTextCodec::~QTextCodec + +Class QTextCodec + size=8 align=8 + base size=8 base align=8 +QTextCodec (0x7f9556b0d460) 0 nearly-empty + vptr=((& QTextCodec::_ZTV10QTextCodec) + 16u) + +Class QTextEncoder + size=40 align=8 + base size=40 base align=8 +QTextEncoder (0x7f9556b8c150) 0 + +Class QTextDecoder + size=40 align=8 + base size=40 base align=8 +QTextDecoder (0x7f9556b8cf50) 0 + +Vtable for QTextStream +QTextStream::_ZTV11QTextStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTextStream) +16 QTextStream::~QTextStream +24 QTextStream::~QTextStream + +Class QTextStream + size=16 align=8 + base size=16 base align=8 +QTextStream (0x7f9556b94d90) 0 + vptr=((& QTextStream::_ZTV11QTextStream) + 16u) + +Class QTextStreamManipulator + size=40 align=8 + base size=38 base align=8 +QTextStreamManipulator (0x7f9556a0fa80) 0 + +Vtable for QTextIStream +QTextIStream::_ZTV12QTextIStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextIStream) +16 QTextIStream::~QTextIStream +24 QTextIStream::~QTextIStream + +Class QTextIStream + size=16 align=8 + base size=16 base align=8 +QTextIStream (0x7f9556a40070) 0 + vptr=((& QTextIStream::_ZTV12QTextIStream) + 16u) + QTextStream (0x7f9556a400e0) 0 + primary-for QTextIStream (0x7f9556a40070) + +Vtable for QTextOStream +QTextOStream::_ZTV12QTextOStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextOStream) +16 QTextOStream::~QTextOStream +24 QTextOStream::~QTextOStream + +Class QTextOStream + size=16 align=8 + base size=16 base align=8 +QTextOStream (0x7f9556a4dee0) 0 + vptr=((& QTextOStream::_ZTV12QTextOStream) + 16u) + QTextStream (0x7f9556a4df50) 0 + primary-for QTextOStream (0x7f9556a4dee0) + +Class wait + size=4 align=4 + base size=4 base align=4 +wait (0x7f9556a61d90) 0 + +Class timespec + size=16 align=8 + base size=16 base align=8 +timespec (0x7f9556a6f0e0) 0 + +Class timeval + size=16 align=8 + base size=16 base align=8 +timeval (0x7f9556a6f150) 0 + +Class __pthread_internal_list + size=16 align=8 + base size=16 base align=8 +__pthread_internal_list (0x7f9556a6f2a0) 0 + +Class random_data + size=48 align=8 + base size=48 base align=8 +random_data (0x7f9556a6f850) 0 + +Class drand48_data + size=24 align=8 + base size=24 base align=8 +drand48_data (0x7f9556a6f8c0) 0 + +Class QVectorData + size=16 align=4 + base size=16 base align=4 +QVectorData (0x7f9556a6f930) 0 + +Class QContiguousCacheData + size=24 align=4 + base size=24 base align=4 +QContiguousCacheData (0x7f955682a620) 0 + +Class QDebug::Stream + size=40 align=8 + base size=34 base align=8 +QDebug::Stream (0x7f955668c150) 0 + +Class QDebug + size=8 align=8 + base size=8 base align=8 +QDebug (0x7f955668c0e0) 0 + +Class QNoDebug + size=1 align=1 + base size=0 base align=1 +QNoDebug (0x7f95567390e0) 0 empty + +Vtable for QDirIterator +QDirIterator::_ZTV12QDirIterator: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QDirIterator) +16 QDirIterator::~QDirIterator +24 QDirIterator::~QDirIterator + +Class QDirIterator + size=16 align=8 + base size=16 base align=8 +QDirIterator (0x7f9556749700) 0 + vptr=((& QDirIterator::_ZTV12QDirIterator) + 16u) + +Vtable for QFileSystemWatcher +QFileSystemWatcher::_ZTV18QFileSystemWatcher: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFileSystemWatcher) +16 QFileSystemWatcher::metaObject +24 QFileSystemWatcher::qt_metacast +32 QFileSystemWatcher::qt_metacall +40 QFileSystemWatcher::~QFileSystemWatcher +48 QFileSystemWatcher::~QFileSystemWatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QFileSystemWatcher + size=16 align=8 + base size=16 base align=8 +QFileSystemWatcher (0x7f95565a5540) 0 + vptr=((& QFileSystemWatcher::_ZTV18QFileSystemWatcher) + 16u) + QObject (0x7f95565a55b0) 0 + primary-for QFileSystemWatcher (0x7f95565a5540) + +Vtable for QFSFileEngine +QFSFileEngine::_ZTV13QFSFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QFSFileEngine) +16 QFSFileEngine::~QFSFileEngine +24 QFSFileEngine::~QFSFileEngine +32 QFSFileEngine::open +40 QFSFileEngine::close +48 QFSFileEngine::flush +56 QFSFileEngine::size +64 QFSFileEngine::pos +72 QFSFileEngine::seek +80 QFSFileEngine::isSequential +88 QFSFileEngine::remove +96 QFSFileEngine::copy +104 QFSFileEngine::rename +112 QFSFileEngine::link +120 QFSFileEngine::mkdir +128 QFSFileEngine::rmdir +136 QFSFileEngine::setSize +144 QFSFileEngine::caseSensitive +152 QFSFileEngine::isRelativePath +160 QFSFileEngine::entryList +168 QFSFileEngine::fileFlags +176 QFSFileEngine::setPermissions +184 QFSFileEngine::fileName +192 QFSFileEngine::ownerId +200 QFSFileEngine::owner +208 QFSFileEngine::fileTime +216 QFSFileEngine::setFileName +224 QFSFileEngine::handle +232 QFSFileEngine::beginEntryList +240 QFSFileEngine::endEntryList +248 QFSFileEngine::read +256 QFSFileEngine::readLine +264 QFSFileEngine::write +272 QFSFileEngine::extension +280 QFSFileEngine::supportsExtension + +Class QFSFileEngine + size=16 align=8 + base size=16 base align=8 +QFSFileEngine (0x7f95565b9a80) 0 + vptr=((& QFSFileEngine::_ZTV13QFSFileEngine) + 16u) + QAbstractFileEngine (0x7f95565b9af0) 0 + primary-for QFSFileEngine (0x7f95565b9a80) + +Class QSharedData + size=4 align=4 + base size=4 base align=4 +QSharedData (0x7f95565c9e70) 0 + +Class QProcessEnvironment + size=8 align=8 + base size=8 base align=8 +QProcessEnvironment (0x7f95566101c0) 0 + +Vtable for QProcess +QProcess::_ZTV8QProcess: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QProcess) +16 QProcess::metaObject +24 QProcess::qt_metacast +32 QProcess::qt_metacall +40 QProcess::~QProcess +48 QProcess::~QProcess +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QProcess::isSequential +120 QIODevice::open +128 QProcess::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QProcess::atEnd +168 QIODevice::reset +176 QProcess::bytesAvailable +184 QProcess::bytesToWrite +192 QProcess::canReadLine +200 QProcess::waitForReadyRead +208 QProcess::waitForBytesWritten +216 QProcess::readData +224 QIODevice::readLineData +232 QProcess::writeData +240 QProcess::setupChildProcess + +Class QProcess + size=16 align=8 + base size=16 base align=8 +QProcess (0x7f9556610cb0) 0 + vptr=((& QProcess::_ZTV8QProcess) + 16u) + QIODevice (0x7f9556610d20) 0 + primary-for QProcess (0x7f9556610cb0) + QObject (0x7f9556610d90) 0 + primary-for QIODevice (0x7f9556610d20) + +Class QResource + size=8 align=8 + base size=8 base align=8 +QResource (0x7f955665a1c0) 0 + +Class QMetaType + size=1 align=1 + base size=0 base align=1 +QMetaType (0x7f955665ae70) 0 empty + +Class QVariant::PrivateShared + size=16 align=8 + base size=12 base align=8 +QVariant::PrivateShared (0x7f9556556700) 0 + +Class QVariant::Private::Data + size=8 align=8 + base size=8 base align=8 +QVariant::Private::Data (0x7f9556556a10) 0 + +Class QVariant::Private + size=16 align=8 + base size=12 base align=8 +QVariant::Private (0x7f95565567e0) 0 + +Class QVariant::Handler + size=72 align=8 + base size=72 base align=8 +QVariant::Handler (0x7f9556564700) 0 + +Class QVariant + size=16 align=8 + base size=16 base align=8 +QVariant (0x7f95565257e0) 0 + +Class QVariantComparisonHelper + size=8 align=8 + base size=8 base align=8 +QVariantComparisonHelper (0x7f95564199a0) 0 + +Vtable for QSettings +QSettings::_ZTV9QSettings: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QSettings) +16 QSettings::metaObject +24 QSettings::qt_metacast +32 QSettings::qt_metacall +40 QSettings::~QSettings +48 QSettings::~QSettings +56 QSettings::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSettings + size=16 align=8 + base size=16 base align=8 +QSettings (0x7f955643dee0) 0 + vptr=((& QSettings::_ZTV9QSettings) + 16u) + QObject (0x7f955643df50) 0 + primary-for QSettings (0x7f955643dee0) + +Vtable for QTemporaryFile +QTemporaryFile::_ZTV14QTemporaryFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QTemporaryFile) +16 QTemporaryFile::metaObject +24 QTemporaryFile::qt_metacast +32 QTemporaryFile::qt_metacall +40 QTemporaryFile::~QTemporaryFile +48 QTemporaryFile::~QTemporaryFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QTemporaryFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QTemporaryFile::fileEngine + +Class QTemporaryFile + size=16 align=8 + base size=16 base align=8 +QTemporaryFile (0x7f95562bf2a0) 0 + vptr=((& QTemporaryFile::_ZTV14QTemporaryFile) + 16u) + QFile (0x7f95562bf310) 0 + primary-for QTemporaryFile (0x7f95562bf2a0) + QIODevice (0x7f95562bf380) 0 + primary-for QFile (0x7f95562bf310) + QObject (0x7f95562bf3f0) 0 + primary-for QIODevice (0x7f95562bf380) + +Class QUrl + size=8 align=8 + base size=8 base align=8 +QUrl (0x7f95562dc9a0) 0 + +Class QXmlStreamStringRef + size=16 align=8 + base size=16 base align=8 +QXmlStreamStringRef (0x7f9556368070) 0 + +Class QXmlStreamAttribute + size=80 align=8 + base size=73 base align=8 +QXmlStreamAttribute (0x7f9556181850) 0 + +Class QXmlStreamAttributes + size=8 align=8 + base size=8 base align=8 +QXmlStreamAttributes (0x7f95561a9310) 0 + QVector (0x7f95561a9380) 0 + +Class QXmlStreamNamespaceDeclaration + size=40 align=8 + base size=40 base align=8 +QXmlStreamNamespaceDeclaration (0x7f95561a97e0) 0 + +Class QXmlStreamNotationDeclaration + size=56 align=8 + base size=56 base align=8 +QXmlStreamNotationDeclaration (0x7f95561ed1c0) 0 + +Class QXmlStreamEntityDeclaration + size=88 align=8 + base size=88 base align=8 +QXmlStreamEntityDeclaration (0x7f955620e070) 0 + +Vtable for QXmlStreamEntityResolver +QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QXmlStreamEntityResolver) +16 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +24 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +32 QXmlStreamEntityResolver::resolveEntity +40 QXmlStreamEntityResolver::resolveUndeclaredEntity + +Class QXmlStreamEntityResolver + size=8 align=8 + base size=8 base align=8 +QXmlStreamEntityResolver (0x7f95562289a0) 0 nearly-empty + vptr=((& QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver) + 16u) + +Class QXmlStreamReader + size=8 align=8 + base size=8 base align=8 +QXmlStreamReader (0x7f9556228b60) 0 + +Class QXmlStreamWriter + size=8 align=8 + base size=8 base align=8 +QXmlStreamWriter (0x7f9556270c40) 0 + +Vtable for QAbstractState +QAbstractState::_ZTV14QAbstractState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QAbstractState) +16 QAbstractState::metaObject +24 QAbstractState::qt_metacast +32 QAbstractState::qt_metacall +40 QAbstractState::~QAbstractState +48 QAbstractState::~QAbstractState +56 QAbstractState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QAbstractState + size=16 align=8 + base size=16 base align=8 +QAbstractState (0x7f955607da80) 0 + vptr=((& QAbstractState::_ZTV14QAbstractState) + 16u) + QObject (0x7f955607daf0) 0 + primary-for QAbstractState (0x7f955607da80) + +Vtable for QAbstractTransition +QAbstractTransition::_ZTV19QAbstractTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractTransition) +16 QAbstractTransition::metaObject +24 QAbstractTransition::qt_metacast +32 QAbstractTransition::qt_metacall +40 QAbstractTransition::~QAbstractTransition +48 QAbstractTransition::~QAbstractTransition +56 QAbstractTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QAbstractTransition + size=16 align=8 + base size=16 base align=8 +QAbstractTransition (0x7f95560a32a0) 0 + vptr=((& QAbstractTransition::_ZTV19QAbstractTransition) + 16u) + QObject (0x7f95560a3310) 0 + primary-for QAbstractTransition (0x7f95560a32a0) + +Vtable for QEvent +QEvent::_ZTV6QEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QEvent) +16 QEvent::~QEvent +24 QEvent::~QEvent + +Class QEvent + size=24 align=8 + base size=20 base align=8 +QEvent (0x7f95560b7af0) 0 + vptr=((& QEvent::_ZTV6QEvent) + 16u) + +Vtable for QTimerEvent +QTimerEvent::_ZTV11QTimerEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTimerEvent) +16 QTimerEvent::~QTimerEvent +24 QTimerEvent::~QTimerEvent + +Class QTimerEvent + size=24 align=8 + base size=24 base align=8 +QTimerEvent (0x7f95560d9700) 0 + vptr=((& QTimerEvent::_ZTV11QTimerEvent) + 16u) + QEvent (0x7f95560d9770) 0 + primary-for QTimerEvent (0x7f95560d9700) + +Vtable for QChildEvent +QChildEvent::_ZTV11QChildEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QChildEvent) +16 QChildEvent::~QChildEvent +24 QChildEvent::~QChildEvent + +Class QChildEvent + size=32 align=8 + base size=32 base align=8 +QChildEvent (0x7f95560d9b60) 0 + vptr=((& QChildEvent::_ZTV11QChildEvent) + 16u) + QEvent (0x7f95560d9bd0) 0 + primary-for QChildEvent (0x7f95560d9b60) + +Vtable for QCustomEvent +QCustomEvent::_ZTV12QCustomEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QCustomEvent) +16 QCustomEvent::~QCustomEvent +24 QCustomEvent::~QCustomEvent + +Class QCustomEvent + size=24 align=8 + base size=20 base align=8 +QCustomEvent (0x7f95560e2e00) 0 + vptr=((& QCustomEvent::_ZTV12QCustomEvent) + 16u) + QEvent (0x7f95560e2e70) 0 + primary-for QCustomEvent (0x7f95560e2e00) + +Vtable for QDynamicPropertyChangeEvent +QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QDynamicPropertyChangeEvent) +16 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent +24 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent + +Class QDynamicPropertyChangeEvent + size=32 align=8 + base size=32 base align=8 +QDynamicPropertyChangeEvent (0x7f95560f4620) 0 + vptr=((& QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent) + 16u) + QEvent (0x7f95560f4690) 0 + primary-for QDynamicPropertyChangeEvent (0x7f95560f4620) + +Vtable for QEventTransition +QEventTransition::_ZTV16QEventTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QEventTransition) +16 QEventTransition::metaObject +24 QEventTransition::qt_metacast +32 QEventTransition::qt_metacall +40 QEventTransition::~QEventTransition +48 QEventTransition::~QEventTransition +56 QEventTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QEventTransition::eventTest +120 QEventTransition::onTransition + +Class QEventTransition + size=16 align=8 + base size=16 base align=8 +QEventTransition (0x7f95560f4af0) 0 + vptr=((& QEventTransition::_ZTV16QEventTransition) + 16u) + QAbstractTransition (0x7f95560f4b60) 0 + primary-for QEventTransition (0x7f95560f4af0) + QObject (0x7f95560f4bd0) 0 + primary-for QAbstractTransition (0x7f95560f4b60) + +Vtable for QFinalState +QFinalState::_ZTV11QFinalState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFinalState) +16 QFinalState::metaObject +24 QFinalState::qt_metacast +32 QFinalState::qt_metacall +40 QFinalState::~QFinalState +48 QFinalState::~QFinalState +56 QFinalState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFinalState::onEntry +120 QFinalState::onExit + +Class QFinalState + size=16 align=8 + base size=16 base align=8 +QFinalState (0x7f955610e9a0) 0 + vptr=((& QFinalState::_ZTV11QFinalState) + 16u) + QAbstractState (0x7f955610ea10) 0 + primary-for QFinalState (0x7f955610e9a0) + QObject (0x7f955610ea80) 0 + primary-for QAbstractState (0x7f955610ea10) + +Vtable for QHistoryState +QHistoryState::_ZTV13QHistoryState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QHistoryState) +16 QHistoryState::metaObject +24 QHistoryState::qt_metacast +32 QHistoryState::qt_metacall +40 QHistoryState::~QHistoryState +48 QHistoryState::~QHistoryState +56 QHistoryState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QHistoryState::onEntry +120 QHistoryState::onExit + +Class QHistoryState + size=16 align=8 + base size=16 base align=8 +QHistoryState (0x7f9556127230) 0 + vptr=((& QHistoryState::_ZTV13QHistoryState) + 16u) + QAbstractState (0x7f95561272a0) 0 + primary-for QHistoryState (0x7f9556127230) + QObject (0x7f9556127310) 0 + primary-for QAbstractState (0x7f95561272a0) + +Vtable for QSignalTransition +QSignalTransition::_ZTV17QSignalTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QSignalTransition) +16 QSignalTransition::metaObject +24 QSignalTransition::qt_metacast +32 QSignalTransition::qt_metacall +40 QSignalTransition::~QSignalTransition +48 QSignalTransition::~QSignalTransition +56 QSignalTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QSignalTransition::eventTest +120 QSignalTransition::onTransition + +Class QSignalTransition + size=16 align=8 + base size=16 base align=8 +QSignalTransition (0x7f955613af50) 0 + vptr=((& QSignalTransition::_ZTV17QSignalTransition) + 16u) + QAbstractTransition (0x7f9556144000) 0 + primary-for QSignalTransition (0x7f955613af50) + QObject (0x7f9556144070) 0 + primary-for QAbstractTransition (0x7f9556144000) + +Vtable for QState +QState::_ZTV6QState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QState) +16 QState::metaObject +24 QState::qt_metacast +32 QState::qt_metacall +40 QState::~QState +48 QState::~QState +56 QState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QState::onEntry +120 QState::onExit + +Class QState + size=16 align=8 + base size=16 base align=8 +QState (0x7f9556153af0) 0 + vptr=((& QState::_ZTV6QState) + 16u) + QAbstractState (0x7f9556153b60) 0 + primary-for QState (0x7f9556153af0) + QObject (0x7f9556153bd0) 0 + primary-for QAbstractState (0x7f9556153b60) + +Vtable for QStateMachine::SignalEvent +QStateMachine::SignalEvent::_ZTVN13QStateMachine11SignalEventE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN13QStateMachine11SignalEventE) +16 QStateMachine::SignalEvent::~SignalEvent +24 QStateMachine::SignalEvent::~SignalEvent + +Class QStateMachine::SignalEvent + size=48 align=8 + base size=48 base align=8 +QStateMachine::SignalEvent (0x7f9555f79150) 0 + vptr=((& QStateMachine::SignalEvent::_ZTVN13QStateMachine11SignalEventE) + 16u) + QEvent (0x7f9555f791c0) 0 + primary-for QStateMachine::SignalEvent (0x7f9555f79150) + +Vtable for QStateMachine::WrappedEvent +QStateMachine::WrappedEvent::_ZTVN13QStateMachine12WrappedEventE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN13QStateMachine12WrappedEventE) +16 QStateMachine::WrappedEvent::~WrappedEvent +24 QStateMachine::WrappedEvent::~WrappedEvent + +Class QStateMachine::WrappedEvent + size=40 align=8 + base size=40 base align=8 +QStateMachine::WrappedEvent (0x7f9555f79700) 0 + vptr=((& QStateMachine::WrappedEvent::_ZTVN13QStateMachine12WrappedEventE) + 16u) + QEvent (0x7f9555f79770) 0 + primary-for QStateMachine::WrappedEvent (0x7f9555f79700) + +Vtable for QStateMachine +QStateMachine::_ZTV13QStateMachine: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QStateMachine) +16 QStateMachine::metaObject +24 QStateMachine::qt_metacast +32 QStateMachine::qt_metacall +40 QStateMachine::~QStateMachine +48 QStateMachine::~QStateMachine +56 QStateMachine::event +64 QStateMachine::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QStateMachine::onEntry +120 QStateMachine::onExit +128 QStateMachine::beginSelectTransitions +136 QStateMachine::endSelectTransitions +144 QStateMachine::beginMicrostep +152 QStateMachine::endMicrostep + +Class QStateMachine + size=16 align=8 + base size=16 base align=8 +QStateMachine (0x7f9555f70ee0) 0 + vptr=((& QStateMachine::_ZTV13QStateMachine) + 16u) + QState (0x7f9555f70f50) 0 + primary-for QStateMachine (0x7f9555f70ee0) + QAbstractState (0x7f9555f79000) 0 + primary-for QState (0x7f9555f70f50) + QObject (0x7f9555f79070) 0 + primary-for QAbstractState (0x7f9555f79000) + +Class QBitArray + size=8 align=8 + base size=8 base align=8 +QBitArray (0x7f9555fa9150) 0 + +Class QBitRef + size=16 align=8 + base size=12 base align=8 +QBitRef (0x7f9555fffe00) 0 + +Class QByteArrayMatcher::Data + size=272 align=8 + base size=272 base align=8 +QByteArrayMatcher::Data (0x7f9556011af0) 0 + +Class QByteArrayMatcher + size=1040 align=8 + base size=1040 base align=8 +QByteArrayMatcher (0x7f95560114d0) 0 + +Class QCryptographicHash + size=8 align=8 + base size=8 base align=8 +QCryptographicHash (0x7f955604a150) 0 + +Vtable for QtSharedPointer::ExternalRefCountData +QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN15QtSharedPointer20ExternalRefCountDataE) +16 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +24 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +32 QtSharedPointer::ExternalRefCountData::destroy + +Class QtSharedPointer::ExternalRefCountData + size=16 align=8 + base size=16 base align=8 +QtSharedPointer::ExternalRefCountData (0x7f9555e74070) 0 + vptr=((& QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE) + 16u) + +Vtable for QtSharedPointer::ExternalRefCountWithDestroyFn +QtSharedPointer::ExternalRefCountWithDestroyFn::_ZTVN15QtSharedPointer29ExternalRefCountWithDestroyFnE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN15QtSharedPointer29ExternalRefCountWithDestroyFnE) +16 QtSharedPointer::ExternalRefCountWithDestroyFn::~ExternalRefCountWithDestroyFn +24 QtSharedPointer::ExternalRefCountWithDestroyFn::~ExternalRefCountWithDestroyFn +32 QtSharedPointer::ExternalRefCountWithDestroyFn::destroy + +Class QtSharedPointer::ExternalRefCountWithDestroyFn + size=24 align=8 + base size=24 base align=8 +QtSharedPointer::ExternalRefCountWithDestroyFn (0x7f9555e8c930) 0 + vptr=((& QtSharedPointer::ExternalRefCountWithDestroyFn::_ZTVN15QtSharedPointer29ExternalRefCountWithDestroyFnE) + 16u) + QtSharedPointer::ExternalRefCountData (0x7f9555e8c9a0) 0 + primary-for QtSharedPointer::ExternalRefCountWithDestroyFn (0x7f9555e8c930) + +Class QDate + size=4 align=4 + base size=4 base align=4 +QDate (0x7f9555f145b0) 0 + +Class QTime + size=4 align=4 + base size=4 base align=4 +QTime (0x7f9555f45540) 0 + +Class QDateTime + size=8 align=8 + base size=8 base align=8 +QDateTime (0x7f9555f61af0) 0 + +Class QEasingCurve + size=8 align=8 + base size=8 base align=8 +QEasingCurve (0x7f9555da7000) 0 + +Class QPoint + size=8 align=4 + base size=8 base align=4 +QPoint (0x7f9555da7ee0) 0 + +Class QPointF + size=16 align=8 + base size=16 base align=8 +QPointF (0x7f9555de8af0) 0 + +Class QLine + size=16 align=4 + base size=16 base align=4 +QLine (0x7f9555e26af0) 0 + +Class QLineF + size=32 align=8 + base size=32 base align=8 +QLineF (0x7f9555e639a0) 0 + +Class QLinkedListData + size=32 align=8 + base size=32 base align=8 +QLinkedListData (0x7f9555cb8460) 0 + +Class QMargins + size=16 align=4 + base size=16 base align=4 +QMargins (0x7f9555b77380) 0 + +Class QSize + size=8 align=4 + base size=8 base align=4 +QSize (0x7f9555ba4150) 0 + +Class QSizeF + size=16 align=8 + base size=16 base align=8 +QSizeF (0x7f9555be4e00) 0 + +Class QRect + size=16 align=4 + base size=16 base align=4 +QRect (0x7f9555c37380) 0 + +Class QRectF + size=32 align=8 + base size=32 base align=8 +QRectF (0x7f9555ae4d20) 0 + +Class QLatin1Literal + size=16 align=8 + base size=16 base align=8 +QLatin1Literal (0x7f9555993ee0) 0 + +Class QAbstractConcatenable + size=1 align=1 + base size=0 base align=1 +QAbstractConcatenable (0x7f95559a43f0) 0 empty + +Class QTextBoundaryFinder + size=48 align=8 + base size=48 base align=8 +QTextBoundaryFinder (0x7f95559dc380) 0 + +Vtable for QTimeLine +QTimeLine::_ZTV9QTimeLine: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTimeLine) +16 QTimeLine::metaObject +24 QTimeLine::qt_metacast +32 QTimeLine::qt_metacall +40 QTimeLine::~QTimeLine +48 QTimeLine::~QTimeLine +56 QObject::event +64 QObject::eventFilter +72 QTimeLine::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTimeLine::valueForTime + +Class QTimeLine + size=16 align=8 + base size=16 base align=8 +QTimeLine (0x7f95559ea700) 0 + vptr=((& QTimeLine::_ZTV9QTimeLine) + 16u) + QObject (0x7f95559ea770) 0 + primary-for QTimeLine (0x7f95559ea700) + +Vtable for QRunnable +QRunnable::_ZTV9QRunnable: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QRunnable) +16 __cxa_pure_virtual +24 QRunnable::~QRunnable +32 QRunnable::~QRunnable + +Class QRunnable + size=16 align=8 + base size=12 base align=8 +QRunnable (0x7f9555a15f50) 0 + vptr=((& QRunnable::_ZTV9QRunnable) + 16u) + +Class QMutex + size=8 align=8 + base size=8 base align=8 +QMutex (0x7f9555a4c620) 0 + +Class QMutexLocker + size=8 align=8 + base size=8 base align=8 +QMutexLocker (0x7f9555a5b1c0) 0 + +Vtable for QtConcurrent::Exception +QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent9ExceptionE) +16 QtConcurrent::Exception::~Exception +24 QtConcurrent::Exception::~Exception +32 std::exception::what +40 QtConcurrent::Exception::raise +48 QtConcurrent::Exception::clone + +Class QtConcurrent::Exception + size=8 align=8 + base size=8 base align=8 +QtConcurrent::Exception (0x7f95558704d0) 0 nearly-empty + vptr=((& QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE) + 16u) + std::exception (0x7f9555870540) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7f95558704d0) + +Vtable for QtConcurrent::UnhandledException +QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent18UnhandledExceptionE) +16 QtConcurrent::UnhandledException::~UnhandledException +24 QtConcurrent::UnhandledException::~UnhandledException +32 std::exception::what +40 QtConcurrent::UnhandledException::raise +48 QtConcurrent::UnhandledException::clone + +Class QtConcurrent::UnhandledException + size=8 align=8 + base size=8 base align=8 +QtConcurrent::UnhandledException (0x7f9555870770) 0 nearly-empty + vptr=((& QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE) + 16u) + QtConcurrent::Exception (0x7f95558707e0) 0 nearly-empty + primary-for QtConcurrent::UnhandledException (0x7f9555870770) + std::exception (0x7f9555870850) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7f95558707e0) + +Class QtConcurrent::internal::ExceptionHolder + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionHolder (0x7f9555870a80) 0 + +Class QtConcurrent::internal::ExceptionStore + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionStore (0x7f9555870e00) 0 + +Class QtConcurrent::ResultItem + size=16 align=8 + base size=16 base align=8 +QtConcurrent::ResultItem (0x7f9555870e70) 0 + +Class QtConcurrent::ResultIteratorBase + size=16 align=8 + base size=12 base align=8 +QtConcurrent::ResultIteratorBase (0x7f9555888d90) 0 + +Vtable for QtConcurrent::ResultStoreBase +QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent15ResultStoreBaseE) +16 QtConcurrent::ResultStoreBase::~ResultStoreBase +24 QtConcurrent::ResultStoreBase::~ResultStoreBase + +Class QtConcurrent::ResultStoreBase + size=48 align=8 + base size=44 base align=8 +QtConcurrent::ResultStoreBase (0x7f955588d930) 0 + vptr=((& QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE) + 16u) + +Vtable for QFutureInterfaceBase +QFutureInterfaceBase::_ZTV20QFutureInterfaceBase: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QFutureInterfaceBase) +16 QFutureInterfaceBase::~QFutureInterfaceBase +24 QFutureInterfaceBase::~QFutureInterfaceBase + +Class QFutureInterfaceBase + size=16 align=8 + base size=16 base align=8 +QFutureInterfaceBase (0x7f95558ccd90) 0 + vptr=((& QFutureInterfaceBase::_ZTV20QFutureInterfaceBase) + 16u) + +Vtable for QFutureWatcherBase +QFutureWatcherBase::_ZTV18QFutureWatcherBase: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFutureWatcherBase) +16 QFutureWatcherBase::metaObject +24 QFutureWatcherBase::qt_metacast +32 QFutureWatcherBase::qt_metacall +40 QFutureWatcherBase::~QFutureWatcherBase +48 QFutureWatcherBase::~QFutureWatcherBase +56 QFutureWatcherBase::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QFutureWatcherBase::connectNotify +104 QFutureWatcherBase::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QFutureWatcherBase + size=16 align=8 + base size=16 base align=8 +QFutureWatcherBase (0x7f95557b0690) 0 + vptr=((& QFutureWatcherBase::_ZTV18QFutureWatcherBase) + 16u) + QObject (0x7f95557b0700) 0 + primary-for QFutureWatcherBase (0x7f95557b0690) + +Vtable for QThread +QThread::_ZTV7QThread: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QThread) +16 QThread::metaObject +24 QThread::qt_metacast +32 QThread::qt_metacall +40 QThread::~QThread +48 QThread::~QThread +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QThread::run + +Class QThread + size=16 align=8 + base size=16 base align=8 +QThread (0x7f9555802a80) 0 + vptr=((& QThread::_ZTV7QThread) + 16u) + QObject (0x7f9555802af0) 0 + primary-for QThread (0x7f9555802a80) + +Vtable for QThreadPool +QThreadPool::_ZTV11QThreadPool: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QThreadPool) +16 QThreadPool::metaObject +24 QThreadPool::qt_metacast +32 QThreadPool::qt_metacall +40 QThreadPool::~QThreadPool +48 QThreadPool::~QThreadPool +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QThreadPool + size=16 align=8 + base size=16 base align=8 +QThreadPool (0x7f9555829930) 0 + vptr=((& QThreadPool::_ZTV11QThreadPool) + 16u) + QObject (0x7f95558299a0) 0 + primary-for QThreadPool (0x7f9555829930) + +Class QWaitCondition + size=8 align=8 + base size=8 base align=8 +QWaitCondition (0x7f955583aee0) 0 + +Class QSemaphore + size=8 align=8 + base size=8 base align=8 +QSemaphore (0x7f9555845460) 0 + +Class QtConcurrent::ThreadEngineBarrier + size=24 align=8 + base size=24 base align=8 +QtConcurrent::ThreadEngineBarrier (0x7f95558459a0) 0 + +Vtable for QtConcurrent::ThreadEngineBase +QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent16ThreadEngineBaseE) +16 QtConcurrent::ThreadEngineBase::run +24 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +32 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +40 QtConcurrent::ThreadEngineBase::start +48 QtConcurrent::ThreadEngineBase::finish +56 QtConcurrent::ThreadEngineBase::threadFunction +64 QtConcurrent::ThreadEngineBase::shouldStartThread +72 QtConcurrent::ThreadEngineBase::shouldThrottleThread +80 __cxa_pure_virtual + +Class QtConcurrent::ThreadEngineBase + size=64 align=8 + base size=64 base align=8 +QtConcurrent::ThreadEngineBase (0x7f9555845a80) 0 + vptr=((& QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE) + 16u) + QRunnable (0x7f9555845af0) 0 + primary-for QtConcurrent::ThreadEngineBase (0x7f9555845a80) + +VTT for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTTN12QtConcurrent12ThreadEngineIvEE: 2u entries +0 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 24u) +8 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 136u) + +Class QtConcurrent::BlockSizeManager + size=96 align=8 + base size=92 base align=8 +QtConcurrent::BlockSizeManager (0x7f955568fee0) 0 + +Vtable for QFactoryInterface +QFactoryInterface::_ZTV17QFactoryInterface: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QFactoryInterface) +16 QFactoryInterface::~QFactoryInterface +24 QFactoryInterface::~QFactoryInterface +32 __cxa_pure_virtual + +Class QFactoryInterface + size=8 align=8 + base size=8 base align=8 +QFactoryInterface (0x7f9555339d20) 0 nearly-empty + vptr=((& QFactoryInterface::_ZTV17QFactoryInterface) + 16u) + +Vtable for QTextCodecFactoryInterface +QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QTextCodecFactoryInterface) +16 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +24 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QTextCodecFactoryInterface + size=8 align=8 + base size=8 base align=8 +QTextCodecFactoryInterface (0x7f955516d000) 0 nearly-empty + vptr=((& QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface) + 16u) + QFactoryInterface (0x7f955516d070) 0 nearly-empty + primary-for QTextCodecFactoryInterface (0x7f955516d000) + +Vtable for QTextCodecPlugin +QTextCodecPlugin::_ZTV16QTextCodecPlugin: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QTextCodecPlugin) +16 QTextCodecPlugin::metaObject +24 QTextCodecPlugin::qt_metacast +32 QTextCodecPlugin::qt_metacall +40 QTextCodecPlugin::~QTextCodecPlugin +48 QTextCodecPlugin::~QTextCodecPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 QTextCodecPlugin::keys +160 QTextCodecPlugin::create +168 (int (*)(...))-0x00000000000000010 +176 (int (*)(...))(& _ZTI16QTextCodecPlugin) +184 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD1Ev +192 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD0Ev +200 QTextCodecPlugin::_ZThn16_NK16QTextCodecPlugin4keysEv +208 QTextCodecPlugin::_ZThn16_N16QTextCodecPlugin6createERK7QString + +Class QTextCodecPlugin + size=24 align=8 + base size=24 base align=8 +QTextCodecPlugin (0x7f9555175580) 0 + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 16u) + QObject (0x7f955516da80) 0 + primary-for QTextCodecPlugin (0x7f9555175580) + QTextCodecFactoryInterface (0x7f955516daf0) 16 nearly-empty + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 184u) + QFactoryInterface (0x7f955516db60) 16 nearly-empty + primary-for QTextCodecFactoryInterface (0x7f955516daf0) + +Class QLibraryInfo + size=1 align=1 + base size=0 base align=1 +QLibraryInfo (0x7f95551c5150) 0 empty + +Vtable for QEventLoop +QEventLoop::_ZTV10QEventLoop: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QEventLoop) +16 QEventLoop::metaObject +24 QEventLoop::qt_metacast +32 QEventLoop::qt_metacall +40 QEventLoop::~QEventLoop +48 QEventLoop::~QEventLoop +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QEventLoop + size=16 align=8 + base size=16 base align=8 +QEventLoop (0x7f95551c52a0) 0 + vptr=((& QEventLoop::_ZTV10QEventLoop) + 16u) + QObject (0x7f95551c5310) 0 + primary-for QEventLoop (0x7f95551c52a0) + +Vtable for QAbstractEventDispatcher +QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QAbstractEventDispatcher) +16 QAbstractEventDispatcher::metaObject +24 QAbstractEventDispatcher::qt_metacast +32 QAbstractEventDispatcher::qt_metacall +40 QAbstractEventDispatcher::~QAbstractEventDispatcher +48 QAbstractEventDispatcher::~QAbstractEventDispatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 QAbstractEventDispatcher::startingUp +208 QAbstractEventDispatcher::closingDown + +Class QAbstractEventDispatcher + size=16 align=8 + base size=16 base align=8 +QAbstractEventDispatcher (0x7f95551fdbd0) 0 + vptr=((& QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher) + 16u) + QObject (0x7f95551fdc40) 0 + primary-for QAbstractEventDispatcher (0x7f95551fdbd0) + +Class QModelIndex + size=24 align=8 + base size=24 base align=8 +QModelIndex (0x7f9555225a80) 0 + +Class QPersistentModelIndex + size=8 align=8 + base size=8 base align=8 +QPersistentModelIndex (0x7f9555250540) 0 + +Vtable for QAbstractItemModel +QAbstractItemModel::_ZTV18QAbstractItemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractItemModel) +16 QAbstractItemModel::metaObject +24 QAbstractItemModel::qt_metacast +32 QAbstractItemModel::qt_metacall +40 QAbstractItemModel::~QAbstractItemModel +48 QAbstractItemModel::~QAbstractItemModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractItemModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractItemModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractItemModel + size=16 align=8 + base size=16 base align=8 +QAbstractItemModel (0x7f9555259850) 0 + vptr=((& QAbstractItemModel::_ZTV18QAbstractItemModel) + 16u) + QObject (0x7f95552598c0) 0 + primary-for QAbstractItemModel (0x7f9555259850) + +Vtable for QAbstractTableModel +QAbstractTableModel::_ZTV19QAbstractTableModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractTableModel) +16 QAbstractTableModel::metaObject +24 QAbstractTableModel::qt_metacast +32 QAbstractTableModel::qt_metacall +40 QAbstractTableModel::~QAbstractTableModel +48 QAbstractTableModel::~QAbstractTableModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractTableModel::index +120 QAbstractTableModel::parent +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractTableModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractTableModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractTableModel + size=16 align=8 + base size=16 base align=8 +QAbstractTableModel (0x7f95550b6b60) 0 + vptr=((& QAbstractTableModel::_ZTV19QAbstractTableModel) + 16u) + QAbstractItemModel (0x7f95550b6bd0) 0 + primary-for QAbstractTableModel (0x7f95550b6b60) + QObject (0x7f95550b6c40) 0 + primary-for QAbstractItemModel (0x7f95550b6bd0) + +Vtable for QAbstractListModel +QAbstractListModel::_ZTV18QAbstractListModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractListModel) +16 QAbstractListModel::metaObject +24 QAbstractListModel::qt_metacast +32 QAbstractListModel::qt_metacall +40 QAbstractListModel::~QAbstractListModel +48 QAbstractListModel::~QAbstractListModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractListModel::index +120 QAbstractListModel::parent +128 __cxa_pure_virtual +136 QAbstractListModel::columnCount +144 QAbstractListModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractListModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractListModel + size=16 align=8 + base size=16 base align=8 +QAbstractListModel (0x7f95550d10e0) 0 + vptr=((& QAbstractListModel::_ZTV18QAbstractListModel) + 16u) + QAbstractItemModel (0x7f95550d1150) 0 + primary-for QAbstractListModel (0x7f95550d10e0) + QObject (0x7f95550d11c0) 0 + primary-for QAbstractItemModel (0x7f95550d1150) + +Class QBasicTimer + size=4 align=4 + base size=4 base align=4 +QBasicTimer (0x7f9555103230) 0 + +Vtable for QCoreApplication +QCoreApplication::_ZTV16QCoreApplication: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QCoreApplication) +16 QCoreApplication::metaObject +24 QCoreApplication::qt_metacast +32 QCoreApplication::qt_metacall +40 QCoreApplication::~QCoreApplication +48 QCoreApplication::~QCoreApplication +56 QCoreApplication::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCoreApplication::notify +120 QCoreApplication::compressEvent + +Class QCoreApplication + size=16 align=8 + base size=16 base align=8 +QCoreApplication (0x7f955510d620) 0 + vptr=((& QCoreApplication::_ZTV16QCoreApplication) + 16u) + QObject (0x7f955510d690) 0 + primary-for QCoreApplication (0x7f955510d620) + +Class __exception + size=40 align=8 + base size=40 base align=8 +__exception (0x7f9555142310) 0 + +Class QMetaMethod + size=16 align=8 + base size=12 base align=8 +QMetaMethod (0x7f9554faf770) 0 + +Class QMetaEnum + size=16 align=8 + base size=12 base align=8 +QMetaEnum (0x7f9554fc7bd0) 0 + +Class QMetaProperty + size=32 align=8 + base size=32 base align=8 +QMetaProperty (0x7f9554fd7930) 0 + +Class QMetaClassInfo + size=16 align=8 + base size=12 base align=8 +QMetaClassInfo (0x7f9554fe8000) 0 + +Vtable for QMimeData +QMimeData::_ZTV9QMimeData: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QMimeData) +16 QMimeData::metaObject +24 QMimeData::qt_metacast +32 QMimeData::qt_metacall +40 QMimeData::~QMimeData +48 QMimeData::~QMimeData +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMimeData::hasFormat +120 QMimeData::formats +128 QMimeData::retrieveData + +Class QMimeData + size=16 align=8 + base size=16 base align=8 +QMimeData (0x7f9554fe8af0) 0 + vptr=((& QMimeData::_ZTV9QMimeData) + 16u) + QObject (0x7f9554fe8b60) 0 + primary-for QMimeData (0x7f9554fe8af0) + +Vtable for QObjectCleanupHandler +QObjectCleanupHandler::_ZTV21QObjectCleanupHandler: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QObjectCleanupHandler) +16 QObjectCleanupHandler::metaObject +24 QObjectCleanupHandler::qt_metacast +32 QObjectCleanupHandler::qt_metacall +40 QObjectCleanupHandler::~QObjectCleanupHandler +48 QObjectCleanupHandler::~QObjectCleanupHandler +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObjectCleanupHandler + size=24 align=8 + base size=24 base align=8 +QObjectCleanupHandler (0x7f955500b380) 0 + vptr=((& QObjectCleanupHandler::_ZTV21QObjectCleanupHandler) + 16u) + QObject (0x7f955500b3f0) 0 + primary-for QObjectCleanupHandler (0x7f955500b380) + +Vtable for QSharedMemory +QSharedMemory::_ZTV13QSharedMemory: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSharedMemory) +16 QSharedMemory::metaObject +24 QSharedMemory::qt_metacast +32 QSharedMemory::qt_metacall +40 QSharedMemory::~QSharedMemory +48 QSharedMemory::~QSharedMemory +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSharedMemory + size=16 align=8 + base size=16 base align=8 +QSharedMemory (0x7f955501e4d0) 0 + vptr=((& QSharedMemory::_ZTV13QSharedMemory) + 16u) + QObject (0x7f955501e540) 0 + primary-for QSharedMemory (0x7f955501e4d0) + +Vtable for QSignalMapper +QSignalMapper::_ZTV13QSignalMapper: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSignalMapper) +16 QSignalMapper::metaObject +24 QSignalMapper::qt_metacast +32 QSignalMapper::qt_metacall +40 QSignalMapper::~QSignalMapper +48 QSignalMapper::~QSignalMapper +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSignalMapper + size=16 align=8 + base size=16 base align=8 +QSignalMapper (0x7f955503c2a0) 0 + vptr=((& QSignalMapper::_ZTV13QSignalMapper) + 16u) + QObject (0x7f955503c310) 0 + primary-for QSignalMapper (0x7f955503c2a0) + +Vtable for QSocketNotifier +QSocketNotifier::_ZTV15QSocketNotifier: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSocketNotifier) +16 QSocketNotifier::metaObject +24 QSocketNotifier::qt_metacast +32 QSocketNotifier::qt_metacall +40 QSocketNotifier::~QSocketNotifier +48 QSocketNotifier::~QSocketNotifier +56 QSocketNotifier::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSocketNotifier + size=32 align=8 + base size=25 base align=8 +QSocketNotifier (0x7f9555054690) 0 + vptr=((& QSocketNotifier::_ZTV15QSocketNotifier) + 16u) + QObject (0x7f9555054700) 0 + primary-for QSocketNotifier (0x7f9555054690) + +Class QSystemSemaphore + size=8 align=8 + base size=8 base align=8 +QSystemSemaphore (0x7f9554e6da10) 0 + +Vtable for QTimer +QTimer::_ZTV6QTimer: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QTimer) +16 QTimer::metaObject +24 QTimer::qt_metacast +32 QTimer::qt_metacall +40 QTimer::~QTimer +48 QTimer::~QTimer +56 QObject::event +64 QObject::eventFilter +72 QTimer::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTimer + size=32 align=8 + base size=29 base align=8 +QTimer (0x7f9554e77460) 0 + vptr=((& QTimer::_ZTV6QTimer) + 16u) + QObject (0x7f9554e774d0) 0 + primary-for QTimer (0x7f9554e77460) + +Vtable for QTranslator +QTranslator::_ZTV11QTranslator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTranslator) +16 QTranslator::metaObject +24 QTranslator::qt_metacast +32 QTranslator::qt_metacall +40 QTranslator::~QTranslator +48 QTranslator::~QTranslator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTranslator::translate +120 QTranslator::isEmpty + +Class QTranslator + size=16 align=8 + base size=16 base align=8 +QTranslator (0x7f9554e9e9a0) 0 + vptr=((& QTranslator::_ZTV11QTranslator) + 16u) + QObject (0x7f9554e9ea10) 0 + primary-for QTranslator (0x7f9554e9e9a0) + +Vtable for QLibrary +QLibrary::_ZTV8QLibrary: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QLibrary) +16 QLibrary::metaObject +24 QLibrary::qt_metacast +32 QLibrary::qt_metacall +40 QLibrary::~QLibrary +48 QLibrary::~QLibrary +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QLibrary + size=32 align=8 + base size=25 base align=8 +QLibrary (0x7f9554eb8930) 0 + vptr=((& QLibrary::_ZTV8QLibrary) + 16u) + QObject (0x7f9554eb89a0) 0 + primary-for QLibrary (0x7f9554eb8930) + +Vtable for QPluginLoader +QPluginLoader::_ZTV13QPluginLoader: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QPluginLoader) +16 QPluginLoader::metaObject +24 QPluginLoader::qt_metacast +32 QPluginLoader::qt_metacall +40 QPluginLoader::~QPluginLoader +48 QPluginLoader::~QPluginLoader +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QPluginLoader + size=32 align=8 + base size=25 base align=8 +QPluginLoader (0x7f9554f053f0) 0 + vptr=((& QPluginLoader::_ZTV13QPluginLoader) + 16u) + QObject (0x7f9554f05460) 0 + primary-for QPluginLoader (0x7f9554f053f0) + +Class QUuid + size=16 align=4 + base size=16 base align=4 +QUuid (0x7f9554f13b60) 0 + +Class QReadWriteLock + size=8 align=8 + base size=8 base align=8 +QReadWriteLock (0x7f9554f3d4d0) 0 + +Class QReadLocker + size=8 align=8 + base size=8 base align=8 +QReadLocker (0x7f9554f3db60) 0 + +Class QWriteLocker + size=8 align=8 + base size=8 base align=8 +QWriteLocker (0x7f9554f5aee0) 0 + +Class QThreadStorageData + size=4 align=4 + base size=4 base align=4 +QThreadStorageData (0x7f9554d742a0) 0 + +Vtable for QAbstractAnimation +QAbstractAnimation::_ZTV18QAbstractAnimation: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractAnimation) +16 QAbstractAnimation::metaObject +24 QAbstractAnimation::qt_metacast +32 QAbstractAnimation::qt_metacall +40 QAbstractAnimation::~QAbstractAnimation +48 QAbstractAnimation::~QAbstractAnimation +56 QAbstractAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAbstractAnimation::updateState +136 QAbstractAnimation::updateDirection + +Class QAbstractAnimation + size=16 align=8 + base size=16 base align=8 +QAbstractAnimation (0x7f9554d74a10) 0 + vptr=((& QAbstractAnimation::_ZTV18QAbstractAnimation) + 16u) + QObject (0x7f9554d74a80) 0 + primary-for QAbstractAnimation (0x7f9554d74a10) + +Vtable for QAnimationGroup +QAnimationGroup::_ZTV15QAnimationGroup: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QAnimationGroup) +16 QAnimationGroup::metaObject +24 QAnimationGroup::qt_metacast +32 QAnimationGroup::qt_metacall +40 QAnimationGroup::~QAnimationGroup +48 QAnimationGroup::~QAnimationGroup +56 QAnimationGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAbstractAnimation::updateState +136 QAbstractAnimation::updateDirection + +Class QAnimationGroup + size=16 align=8 + base size=16 base align=8 +QAnimationGroup (0x7f9554dac150) 0 + vptr=((& QAnimationGroup::_ZTV15QAnimationGroup) + 16u) + QAbstractAnimation (0x7f9554dac1c0) 0 + primary-for QAnimationGroup (0x7f9554dac150) + QObject (0x7f9554dac230) 0 + primary-for QAbstractAnimation (0x7f9554dac1c0) + +Vtable for QParallelAnimationGroup +QParallelAnimationGroup::_ZTV23QParallelAnimationGroup: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QParallelAnimationGroup) +16 QParallelAnimationGroup::metaObject +24 QParallelAnimationGroup::qt_metacast +32 QParallelAnimationGroup::qt_metacall +40 QParallelAnimationGroup::~QParallelAnimationGroup +48 QParallelAnimationGroup::~QParallelAnimationGroup +56 QParallelAnimationGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QParallelAnimationGroup::duration +120 QParallelAnimationGroup::updateCurrentTime +128 QParallelAnimationGroup::updateState +136 QParallelAnimationGroup::updateDirection + +Class QParallelAnimationGroup + size=16 align=8 + base size=16 base align=8 +QParallelAnimationGroup (0x7f9554dc4000) 0 + vptr=((& QParallelAnimationGroup::_ZTV23QParallelAnimationGroup) + 16u) + QAnimationGroup (0x7f9554dc4070) 0 + primary-for QParallelAnimationGroup (0x7f9554dc4000) + QAbstractAnimation (0x7f9554dc40e0) 0 + primary-for QAnimationGroup (0x7f9554dc4070) + QObject (0x7f9554dc4150) 0 + primary-for QAbstractAnimation (0x7f9554dc40e0) + +Vtable for QPauseAnimation +QPauseAnimation::_ZTV15QPauseAnimation: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QPauseAnimation) +16 QPauseAnimation::metaObject +24 QPauseAnimation::qt_metacast +32 QPauseAnimation::qt_metacall +40 QPauseAnimation::~QPauseAnimation +48 QPauseAnimation::~QPauseAnimation +56 QPauseAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QPauseAnimation::duration +120 QPauseAnimation::updateCurrentTime +128 QAbstractAnimation::updateState +136 QAbstractAnimation::updateDirection + +Class QPauseAnimation + size=16 align=8 + base size=16 base align=8 +QPauseAnimation (0x7f9554dd2e70) 0 + vptr=((& QPauseAnimation::_ZTV15QPauseAnimation) + 16u) + QAbstractAnimation (0x7f9554dd2ee0) 0 + primary-for QPauseAnimation (0x7f9554dd2e70) + QObject (0x7f9554dd2f50) 0 + primary-for QAbstractAnimation (0x7f9554dd2ee0) + +Vtable for QVariantAnimation +QVariantAnimation::_ZTV17QVariantAnimation: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QVariantAnimation) +16 QVariantAnimation::metaObject +24 QVariantAnimation::qt_metacast +32 QVariantAnimation::qt_metacall +40 QVariantAnimation::~QVariantAnimation +48 QVariantAnimation::~QVariantAnimation +56 QVariantAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QVariantAnimation::duration +120 QVariantAnimation::updateCurrentTime +128 QVariantAnimation::updateState +136 QAbstractAnimation::updateDirection +144 __cxa_pure_virtual +152 QVariantAnimation::interpolated + +Class QVariantAnimation + size=16 align=8 + base size=16 base align=8 +QVariantAnimation (0x7f9554def8c0) 0 + vptr=((& QVariantAnimation::_ZTV17QVariantAnimation) + 16u) + QAbstractAnimation (0x7f9554def930) 0 + primary-for QVariantAnimation (0x7f9554def8c0) + QObject (0x7f9554def9a0) 0 + primary-for QAbstractAnimation (0x7f9554def930) + +Vtable for QPropertyAnimation +QPropertyAnimation::_ZTV18QPropertyAnimation: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QPropertyAnimation) +16 QPropertyAnimation::metaObject +24 QPropertyAnimation::qt_metacast +32 QPropertyAnimation::qt_metacall +40 QPropertyAnimation::~QPropertyAnimation +48 QPropertyAnimation::~QPropertyAnimation +56 QPropertyAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QVariantAnimation::duration +120 QVariantAnimation::updateCurrentTime +128 QPropertyAnimation::updateState +136 QAbstractAnimation::updateDirection +144 QPropertyAnimation::updateCurrentValue +152 QVariantAnimation::interpolated + +Class QPropertyAnimation + size=16 align=8 + base size=16 base align=8 +QPropertyAnimation (0x7f9554e0fb60) 0 + vptr=((& QPropertyAnimation::_ZTV18QPropertyAnimation) + 16u) + QVariantAnimation (0x7f9554e0fbd0) 0 + primary-for QPropertyAnimation (0x7f9554e0fb60) + QAbstractAnimation (0x7f9554e0fc40) 0 + primary-for QVariantAnimation (0x7f9554e0fbd0) + QObject (0x7f9554e0fcb0) 0 + primary-for QAbstractAnimation (0x7f9554e0fc40) + +Vtable for QSequentialAnimationGroup +QSequentialAnimationGroup::_ZTV25QSequentialAnimationGroup: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QSequentialAnimationGroup) +16 QSequentialAnimationGroup::metaObject +24 QSequentialAnimationGroup::qt_metacast +32 QSequentialAnimationGroup::qt_metacall +40 QSequentialAnimationGroup::~QSequentialAnimationGroup +48 QSequentialAnimationGroup::~QSequentialAnimationGroup +56 QSequentialAnimationGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QSequentialAnimationGroup::duration +120 QSequentialAnimationGroup::updateCurrentTime +128 QSequentialAnimationGroup::updateState +136 QSequentialAnimationGroup::updateDirection + +Class QSequentialAnimationGroup + size=16 align=8 + base size=16 base align=8 +QSequentialAnimationGroup (0x7f9554e27b60) 0 + vptr=((& QSequentialAnimationGroup::_ZTV25QSequentialAnimationGroup) + 16u) + QAnimationGroup (0x7f9554e27bd0) 0 + primary-for QSequentialAnimationGroup (0x7f9554e27b60) + QAbstractAnimation (0x7f9554e27c40) 0 + primary-for QAnimationGroup (0x7f9554e27bd0) + QObject (0x7f9554e27cb0) 0 + primary-for QAbstractAnimation (0x7f9554e27c40) + +Class QColor + size=16 align=4 + base size=14 base align=4 +QColor (0x7f9554e51620) 0 + +Class QRegion::QRegionData + size=32 align=8 + base size=32 base align=8 +QRegion::QRegionData (0x7f9554cc85b0) 0 + +Class QRegion + size=8 align=8 + base size=8 base align=8 +QRegion (0x7f9554ca4cb0) 0 + +Class QKeySequence + size=8 align=8 + base size=8 base align=8 +QKeySequence (0x7f9554cdee00) 0 + +Vtable for QMimeSource +QMimeSource::_ZTV11QMimeSource: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMimeSource) +16 QMimeSource::~QMimeSource +24 QMimeSource::~QMimeSource +32 __cxa_pure_virtual +40 QMimeSource::provides +48 __cxa_pure_virtual + +Class QMimeSource + size=8 align=8 + base size=8 base align=8 +QMimeSource (0x7f9554d1c770) 0 nearly-empty + vptr=((& QMimeSource::_ZTV11QMimeSource) + 16u) + +Vtable for QDrag +QDrag::_ZTV5QDrag: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QDrag) +16 QDrag::metaObject +24 QDrag::qt_metacast +32 QDrag::qt_metacall +40 QDrag::~QDrag +48 QDrag::~QDrag +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QDrag + size=16 align=8 + base size=16 base align=8 +QDrag (0x7f9554d1c8c0) 0 + vptr=((& QDrag::_ZTV5QDrag) + 16u) + QObject (0x7f9554d1c930) 0 + primary-for QDrag (0x7f9554d1c8c0) + +Vtable for QInputEvent +QInputEvent::_ZTV11QInputEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QInputEvent) +16 QInputEvent::~QInputEvent +24 QInputEvent::~QInputEvent + +Class QInputEvent + size=24 align=8 + base size=24 base align=8 +QInputEvent (0x7f9554d43070) 0 + vptr=((& QInputEvent::_ZTV11QInputEvent) + 16u) + QEvent (0x7f9554d430e0) 0 + primary-for QInputEvent (0x7f9554d43070) + +Vtable for QMouseEvent +QMouseEvent::_ZTV11QMouseEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMouseEvent) +16 QMouseEvent::~QMouseEvent +24 QMouseEvent::~QMouseEvent + +Class QMouseEvent + size=48 align=8 + base size=48 base align=8 +QMouseEvent (0x7f9554d43930) 0 + vptr=((& QMouseEvent::_ZTV11QMouseEvent) + 16u) + QInputEvent (0x7f9554d439a0) 0 + primary-for QMouseEvent (0x7f9554d43930) + QEvent (0x7f9554d43a10) 0 + primary-for QInputEvent (0x7f9554d439a0) + +Vtable for QHoverEvent +QHoverEvent::_ZTV11QHoverEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QHoverEvent) +16 QHoverEvent::~QHoverEvent +24 QHoverEvent::~QHoverEvent + +Class QHoverEvent + size=40 align=8 + base size=36 base align=8 +QHoverEvent (0x7f9554b71700) 0 + vptr=((& QHoverEvent::_ZTV11QHoverEvent) + 16u) + QEvent (0x7f9554b71770) 0 + primary-for QHoverEvent (0x7f9554b71700) + +Vtable for QWheelEvent +QWheelEvent::_ZTV11QWheelEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QWheelEvent) +16 QWheelEvent::~QWheelEvent +24 QWheelEvent::~QWheelEvent + +Class QWheelEvent + size=56 align=8 + base size=52 base align=8 +QWheelEvent (0x7f9554b71e70) 0 + vptr=((& QWheelEvent::_ZTV11QWheelEvent) + 16u) + QInputEvent (0x7f9554b71ee0) 0 + primary-for QWheelEvent (0x7f9554b71e70) + QEvent (0x7f9554b71f50) 0 + primary-for QInputEvent (0x7f9554b71ee0) + +Vtable for QTabletEvent +QTabletEvent::_ZTV12QTabletEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTabletEvent) +16 QTabletEvent::~QTabletEvent +24 QTabletEvent::~QTabletEvent + +Class QTabletEvent + size=120 align=8 + base size=120 base align=8 +QTabletEvent (0x7f9554b8ac40) 0 + vptr=((& QTabletEvent::_ZTV12QTabletEvent) + 16u) + QInputEvent (0x7f9554b8acb0) 0 + primary-for QTabletEvent (0x7f9554b8ac40) + QEvent (0x7f9554b8ad20) 0 + primary-for QInputEvent (0x7f9554b8acb0) + +Vtable for QKeyEvent +QKeyEvent::_ZTV9QKeyEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QKeyEvent) +16 QKeyEvent::~QKeyEvent +24 QKeyEvent::~QKeyEvent + +Class QKeyEvent + size=40 align=8 + base size=39 base align=8 +QKeyEvent (0x7f9554ba9f50) 0 + vptr=((& QKeyEvent::_ZTV9QKeyEvent) + 16u) + QInputEvent (0x7f9554bae000) 0 + primary-for QKeyEvent (0x7f9554ba9f50) + QEvent (0x7f9554bae070) 0 + primary-for QInputEvent (0x7f9554bae000) + +Vtable for QFocusEvent +QFocusEvent::_ZTV11QFocusEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFocusEvent) +16 QFocusEvent::~QFocusEvent +24 QFocusEvent::~QFocusEvent + +Class QFocusEvent + size=24 align=8 + base size=24 base align=8 +QFocusEvent (0x7f9554bd1930) 0 + vptr=((& QFocusEvent::_ZTV11QFocusEvent) + 16u) + QEvent (0x7f9554bd19a0) 0 + primary-for QFocusEvent (0x7f9554bd1930) + +Vtable for QPaintEvent +QPaintEvent::_ZTV11QPaintEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QPaintEvent) +16 QPaintEvent::~QPaintEvent +24 QPaintEvent::~QPaintEvent + +Class QPaintEvent + size=56 align=8 + base size=49 base align=8 +QPaintEvent (0x7f9554bdf380) 0 + vptr=((& QPaintEvent::_ZTV11QPaintEvent) + 16u) + QEvent (0x7f9554bdf3f0) 0 + primary-for QPaintEvent (0x7f9554bdf380) + +Vtable for QUpdateLaterEvent +QUpdateLaterEvent::_ZTV17QUpdateLaterEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QUpdateLaterEvent) +16 QUpdateLaterEvent::~QUpdateLaterEvent +24 QUpdateLaterEvent::~QUpdateLaterEvent + +Class QUpdateLaterEvent + size=32 align=8 + base size=32 base align=8 +QUpdateLaterEvent (0x7f9554bea000) 0 + vptr=((& QUpdateLaterEvent::_ZTV17QUpdateLaterEvent) + 16u) + QEvent (0x7f9554bea070) 0 + primary-for QUpdateLaterEvent (0x7f9554bea000) + +Vtable for QMoveEvent +QMoveEvent::_ZTV10QMoveEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QMoveEvent) +16 QMoveEvent::~QMoveEvent +24 QMoveEvent::~QMoveEvent + +Class QMoveEvent + size=40 align=8 + base size=36 base align=8 +QMoveEvent (0x7f9554bea460) 0 + vptr=((& QMoveEvent::_ZTV10QMoveEvent) + 16u) + QEvent (0x7f9554bea4d0) 0 + primary-for QMoveEvent (0x7f9554bea460) + +Vtable for QResizeEvent +QResizeEvent::_ZTV12QResizeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QResizeEvent) +16 QResizeEvent::~QResizeEvent +24 QResizeEvent::~QResizeEvent + +Class QResizeEvent + size=40 align=8 + base size=36 base align=8 +QResizeEvent (0x7f9554beaaf0) 0 + vptr=((& QResizeEvent::_ZTV12QResizeEvent) + 16u) + QEvent (0x7f9554beab60) 0 + primary-for QResizeEvent (0x7f9554beaaf0) + +Vtable for QCloseEvent +QCloseEvent::_ZTV11QCloseEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QCloseEvent) +16 QCloseEvent::~QCloseEvent +24 QCloseEvent::~QCloseEvent + +Class QCloseEvent + size=24 align=8 + base size=20 base align=8 +QCloseEvent (0x7f9554bfc070) 0 + vptr=((& QCloseEvent::_ZTV11QCloseEvent) + 16u) + QEvent (0x7f9554bfc0e0) 0 + primary-for QCloseEvent (0x7f9554bfc070) + +Vtable for QIconDragEvent +QIconDragEvent::_ZTV14QIconDragEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QIconDragEvent) +16 QIconDragEvent::~QIconDragEvent +24 QIconDragEvent::~QIconDragEvent + +Class QIconDragEvent + size=24 align=8 + base size=20 base align=8 +QIconDragEvent (0x7f9554bfc2a0) 0 + vptr=((& QIconDragEvent::_ZTV14QIconDragEvent) + 16u) + QEvent (0x7f9554bfc310) 0 + primary-for QIconDragEvent (0x7f9554bfc2a0) + +Vtable for QShowEvent +QShowEvent::_ZTV10QShowEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QShowEvent) +16 QShowEvent::~QShowEvent +24 QShowEvent::~QShowEvent + +Class QShowEvent + size=24 align=8 + base size=20 base align=8 +QShowEvent (0x7f9554bfc4d0) 0 + vptr=((& QShowEvent::_ZTV10QShowEvent) + 16u) + QEvent (0x7f9554bfc540) 0 + primary-for QShowEvent (0x7f9554bfc4d0) + +Vtable for QHideEvent +QHideEvent::_ZTV10QHideEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QHideEvent) +16 QHideEvent::~QHideEvent +24 QHideEvent::~QHideEvent + +Class QHideEvent + size=24 align=8 + base size=20 base align=8 +QHideEvent (0x7f9554bfc700) 0 + vptr=((& QHideEvent::_ZTV10QHideEvent) + 16u) + QEvent (0x7f9554bfc770) 0 + primary-for QHideEvent (0x7f9554bfc700) + +Vtable for QContextMenuEvent +QContextMenuEvent::_ZTV17QContextMenuEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QContextMenuEvent) +16 QContextMenuEvent::~QContextMenuEvent +24 QContextMenuEvent::~QContextMenuEvent + +Class QContextMenuEvent + size=48 align=8 + base size=41 base align=8 +QContextMenuEvent (0x7f9554bfc930) 0 + vptr=((& QContextMenuEvent::_ZTV17QContextMenuEvent) + 16u) + QInputEvent (0x7f9554bfc9a0) 0 + primary-for QContextMenuEvent (0x7f9554bfc930) + QEvent (0x7f9554bfca10) 0 + primary-for QInputEvent (0x7f9554bfc9a0) + +Class QInputMethodEvent::Attribute + size=32 align=8 + base size=32 base align=8 +QInputMethodEvent::Attribute (0x7f9554c174d0) 0 + +Vtable for QInputMethodEvent +QInputMethodEvent::_ZTV17QInputMethodEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QInputMethodEvent) +16 QInputMethodEvent::~QInputMethodEvent +24 QInputMethodEvent::~QInputMethodEvent + +Class QInputMethodEvent + size=56 align=8 + base size=56 base align=8 +QInputMethodEvent (0x7f9554c173f0) 0 + vptr=((& QInputMethodEvent::_ZTV17QInputMethodEvent) + 16u) + QEvent (0x7f9554c17460) 0 + primary-for QInputMethodEvent (0x7f9554c173f0) + +Vtable for QDropEvent +QDropEvent::_ZTV10QDropEvent: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QDropEvent) +16 QDropEvent::~QDropEvent +24 QDropEvent::~QDropEvent +32 QDropEvent::format +40 QDropEvent::encodedData +48 QDropEvent::provides +56 (int (*)(...))-0x00000000000000018 +64 (int (*)(...))(& _ZTI10QDropEvent) +72 QDropEvent::_ZThn24_N10QDropEventD1Ev +80 QDropEvent::_ZThn24_N10QDropEventD0Ev +88 QDropEvent::_ZThn24_NK10QDropEvent6formatEi +96 QDropEvent::_ZThn24_NK10QDropEvent8providesEPKc +104 QDropEvent::_ZThn24_NK10QDropEvent11encodedDataEPKc + +Class QDropEvent + size=80 align=8 + base size=80 base align=8 +QDropEvent (0x7f9554c52200) 0 + vptr=((& QDropEvent::_ZTV10QDropEvent) + 16u) + QEvent (0x7f9554c4fbd0) 0 + primary-for QDropEvent (0x7f9554c52200) + QMimeSource (0x7f9554c4fc40) 24 nearly-empty + vptr=((& QDropEvent::_ZTV10QDropEvent) + 72u) + +Vtable for QDragMoveEvent +QDragMoveEvent::_ZTV14QDragMoveEvent: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QDragMoveEvent) +16 QDragMoveEvent::~QDragMoveEvent +24 QDragMoveEvent::~QDragMoveEvent +32 QDropEvent::format +40 QDropEvent::encodedData +48 QDropEvent::provides +56 (int (*)(...))-0x00000000000000018 +64 (int (*)(...))(& _ZTI14QDragMoveEvent) +72 QDragMoveEvent::_ZThn24_N14QDragMoveEventD1Ev +80 QDragMoveEvent::_ZThn24_N14QDragMoveEventD0Ev +88 QDropEvent::_ZThn24_NK10QDropEvent6formatEi +96 QDropEvent::_ZThn24_NK10QDropEvent8providesEPKc +104 QDropEvent::_ZThn24_NK10QDropEvent11encodedDataEPKc + +Class QDragMoveEvent + size=96 align=8 + base size=96 base align=8 +QDragMoveEvent (0x7f9554a6a930) 0 + vptr=((& QDragMoveEvent::_ZTV14QDragMoveEvent) + 16u) + QDropEvent (0x7f9554a68900) 0 + primary-for QDragMoveEvent (0x7f9554a6a930) + QEvent (0x7f9554a6a9a0) 0 + primary-for QDropEvent (0x7f9554a68900) + QMimeSource (0x7f9554a6aa10) 24 nearly-empty + vptr=((& QDragMoveEvent::_ZTV14QDragMoveEvent) + 72u) + +Vtable for QDragEnterEvent +QDragEnterEvent::_ZTV15QDragEnterEvent: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QDragEnterEvent) +16 QDragEnterEvent::~QDragEnterEvent +24 QDragEnterEvent::~QDragEnterEvent +32 QDropEvent::format +40 QDropEvent::encodedData +48 QDropEvent::provides +56 (int (*)(...))-0x00000000000000018 +64 (int (*)(...))(& _ZTI15QDragEnterEvent) +72 QDragEnterEvent::_ZThn24_N15QDragEnterEventD1Ev +80 QDragEnterEvent::_ZThn24_N15QDragEnterEventD0Ev +88 QDropEvent::_ZThn24_NK10QDropEvent6formatEi +96 QDropEvent::_ZThn24_NK10QDropEvent8providesEPKc +104 QDropEvent::_ZThn24_NK10QDropEvent11encodedDataEPKc + +Class QDragEnterEvent + size=96 align=8 + base size=96 base align=8 +QDragEnterEvent (0x7f9554a7a0e0) 0 + vptr=((& QDragEnterEvent::_ZTV15QDragEnterEvent) + 16u) + QDragMoveEvent (0x7f9554a7a150) 0 + primary-for QDragEnterEvent (0x7f9554a7a0e0) + QDropEvent (0x7f9554a78280) 0 + primary-for QDragMoveEvent (0x7f9554a7a150) + QEvent (0x7f9554a7a1c0) 0 + primary-for QDropEvent (0x7f9554a78280) + QMimeSource (0x7f9554a7a230) 24 nearly-empty + vptr=((& QDragEnterEvent::_ZTV15QDragEnterEvent) + 72u) + +Vtable for QDragResponseEvent +QDragResponseEvent::_ZTV18QDragResponseEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QDragResponseEvent) +16 QDragResponseEvent::~QDragResponseEvent +24 QDragResponseEvent::~QDragResponseEvent + +Class QDragResponseEvent + size=24 align=8 + base size=21 base align=8 +QDragResponseEvent (0x7f9554a7a3f0) 0 + vptr=((& QDragResponseEvent::_ZTV18QDragResponseEvent) + 16u) + QEvent (0x7f9554a7a460) 0 + primary-for QDragResponseEvent (0x7f9554a7a3f0) + +Vtable for QDragLeaveEvent +QDragLeaveEvent::_ZTV15QDragLeaveEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QDragLeaveEvent) +16 QDragLeaveEvent::~QDragLeaveEvent +24 QDragLeaveEvent::~QDragLeaveEvent + +Class QDragLeaveEvent + size=24 align=8 + base size=20 base align=8 +QDragLeaveEvent (0x7f9554a7a850) 0 + vptr=((& QDragLeaveEvent::_ZTV15QDragLeaveEvent) + 16u) + QEvent (0x7f9554a7a8c0) 0 + primary-for QDragLeaveEvent (0x7f9554a7a850) + +Vtable for QHelpEvent +QHelpEvent::_ZTV10QHelpEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QHelpEvent) +16 QHelpEvent::~QHelpEvent +24 QHelpEvent::~QHelpEvent + +Class QHelpEvent + size=40 align=8 + base size=36 base align=8 +QHelpEvent (0x7f9554a7aa80) 0 + vptr=((& QHelpEvent::_ZTV10QHelpEvent) + 16u) + QEvent (0x7f9554a7aaf0) 0 + primary-for QHelpEvent (0x7f9554a7aa80) + +Vtable for QStatusTipEvent +QStatusTipEvent::_ZTV15QStatusTipEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QStatusTipEvent) +16 QStatusTipEvent::~QStatusTipEvent +24 QStatusTipEvent::~QStatusTipEvent + +Class QStatusTipEvent + size=32 align=8 + base size=32 base align=8 +QStatusTipEvent (0x7f9554a8baf0) 0 + vptr=((& QStatusTipEvent::_ZTV15QStatusTipEvent) + 16u) + QEvent (0x7f9554a8bb60) 0 + primary-for QStatusTipEvent (0x7f9554a8baf0) + +Vtable for QWhatsThisClickedEvent +QWhatsThisClickedEvent::_ZTV22QWhatsThisClickedEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QWhatsThisClickedEvent) +16 QWhatsThisClickedEvent::~QWhatsThisClickedEvent +24 QWhatsThisClickedEvent::~QWhatsThisClickedEvent + +Class QWhatsThisClickedEvent + size=32 align=8 + base size=32 base align=8 +QWhatsThisClickedEvent (0x7f9554a8bcb0) 0 + vptr=((& QWhatsThisClickedEvent::_ZTV22QWhatsThisClickedEvent) + 16u) + QEvent (0x7f9554a95000) 0 + primary-for QWhatsThisClickedEvent (0x7f9554a8bcb0) + +Vtable for QActionEvent +QActionEvent::_ZTV12QActionEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QActionEvent) +16 QActionEvent::~QActionEvent +24 QActionEvent::~QActionEvent + +Class QActionEvent + size=40 align=8 + base size=40 base align=8 +QActionEvent (0x7f9554a95460) 0 + vptr=((& QActionEvent::_ZTV12QActionEvent) + 16u) + QEvent (0x7f9554a954d0) 0 + primary-for QActionEvent (0x7f9554a95460) + +Vtable for QFileOpenEvent +QFileOpenEvent::_ZTV14QFileOpenEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QFileOpenEvent) +16 QFileOpenEvent::~QFileOpenEvent +24 QFileOpenEvent::~QFileOpenEvent + +Class QFileOpenEvent + size=32 align=8 + base size=32 base align=8 +QFileOpenEvent (0x7f9554a95af0) 0 + vptr=((& QFileOpenEvent::_ZTV14QFileOpenEvent) + 16u) + QEvent (0x7f9554a95b60) 0 + primary-for QFileOpenEvent (0x7f9554a95af0) + +Vtable for QToolBarChangeEvent +QToolBarChangeEvent::_ZTV19QToolBarChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QToolBarChangeEvent) +16 QToolBarChangeEvent::~QToolBarChangeEvent +24 QToolBarChangeEvent::~QToolBarChangeEvent + +Class QToolBarChangeEvent + size=24 align=8 + base size=21 base align=8 +QToolBarChangeEvent (0x7f9554a95620) 0 + vptr=((& QToolBarChangeEvent::_ZTV19QToolBarChangeEvent) + 16u) + QEvent (0x7f9554a95d20) 0 + primary-for QToolBarChangeEvent (0x7f9554a95620) + +Vtable for QShortcutEvent +QShortcutEvent::_ZTV14QShortcutEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QShortcutEvent) +16 QShortcutEvent::~QShortcutEvent +24 QShortcutEvent::~QShortcutEvent + +Class QShortcutEvent + size=40 align=8 + base size=40 base align=8 +QShortcutEvent (0x7f9554aa8460) 0 + vptr=((& QShortcutEvent::_ZTV14QShortcutEvent) + 16u) + QEvent (0x7f9554aa84d0) 0 + primary-for QShortcutEvent (0x7f9554aa8460) + +Vtable for QClipboardEvent +QClipboardEvent::_ZTV15QClipboardEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QClipboardEvent) +16 QClipboardEvent::~QClipboardEvent +24 QClipboardEvent::~QClipboardEvent + +Class QClipboardEvent + size=24 align=8 + base size=20 base align=8 +QClipboardEvent (0x7f9554ab3310) 0 + vptr=((& QClipboardEvent::_ZTV15QClipboardEvent) + 16u) + QEvent (0x7f9554ab3380) 0 + primary-for QClipboardEvent (0x7f9554ab3310) + +Vtable for QWindowStateChangeEvent +QWindowStateChangeEvent::_ZTV23QWindowStateChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QWindowStateChangeEvent) +16 QWindowStateChangeEvent::~QWindowStateChangeEvent +24 QWindowStateChangeEvent::~QWindowStateChangeEvent + +Class QWindowStateChangeEvent + size=24 align=8 + base size=24 base align=8 +QWindowStateChangeEvent (0x7f9554ab3770) 0 + vptr=((& QWindowStateChangeEvent::_ZTV23QWindowStateChangeEvent) + 16u) + QEvent (0x7f9554ab37e0) 0 + primary-for QWindowStateChangeEvent (0x7f9554ab3770) + +Vtable for QMenubarUpdatedEvent +QMenubarUpdatedEvent::_ZTV20QMenubarUpdatedEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QMenubarUpdatedEvent) +16 QMenubarUpdatedEvent::~QMenubarUpdatedEvent +24 QMenubarUpdatedEvent::~QMenubarUpdatedEvent + +Class QMenubarUpdatedEvent + size=32 align=8 + base size=32 base align=8 +QMenubarUpdatedEvent (0x7f9554ab3cb0) 0 + vptr=((& QMenubarUpdatedEvent::_ZTV20QMenubarUpdatedEvent) + 16u) + QEvent (0x7f9554ab3d20) 0 + primary-for QMenubarUpdatedEvent (0x7f9554ab3cb0) + +Class QTouchEvent::TouchPoint + size=8 align=8 + base size=8 base align=8 +QTouchEvent::TouchPoint (0x7f9554ac47e0) 0 + +Vtable for QTouchEvent +QTouchEvent::_ZTV11QTouchEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTouchEvent) +16 QTouchEvent::~QTouchEvent +24 QTouchEvent::~QTouchEvent + +Class QTouchEvent + size=48 align=8 + base size=48 base align=8 +QTouchEvent (0x7f9554ac4690) 0 + vptr=((& QTouchEvent::_ZTV11QTouchEvent) + 16u) + QInputEvent (0x7f9554ac4700) 0 + primary-for QTouchEvent (0x7f9554ac4690) + QEvent (0x7f9554ac4770) 0 + primary-for QInputEvent (0x7f9554ac4700) + +Vtable for QGestureEvent +QGestureEvent::_ZTV13QGestureEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QGestureEvent) +16 QGestureEvent::~QGestureEvent +24 QGestureEvent::~QGestureEvent + +Class QGestureEvent + size=24 align=8 + base size=20 base align=8 +QGestureEvent (0x7f9554b0ad20) 0 + vptr=((& QGestureEvent::_ZTV13QGestureEvent) + 16u) + QEvent (0x7f9554b0ad90) 0 + primary-for QGestureEvent (0x7f9554b0ad20) + +Class QFont + size=16 align=8 + base size=12 base align=8 +QFont (0x7f9554b11310) 0 + +Class QPolygon + size=8 align=8 + base size=8 base align=8 +QPolygon (0x7f9554b600e0) 0 + QVector (0x7f9554b60150) 0 + +Class QPolygonF + size=8 align=8 + base size=8 base align=8 +QPolygonF (0x7f955499f620) 0 + QVector (0x7f955499f690) 0 + +Class QMatrix + size=48 align=8 + base size=48 base align=8 +QMatrix (0x7f95549e1770) 0 + +Class QPainterPath::Element + size=24 align=8 + base size=24 base align=8 +QPainterPath::Element (0x7f9554a278c0) 0 + +Class QPainterPath + size=8 align=8 + base size=8 base align=8 +QPainterPath (0x7f9554a27850) 0 + +Class QPainterPathPrivate + size=16 align=8 + base size=16 base align=8 +QPainterPathPrivate (0x7f955487f000) 0 + +Class QPainterPathStroker + size=8 align=8 + base size=8 base align=8 +QPainterPathStroker (0x7f955487faf0) 0 + +Class QTransform + size=88 align=8 + base size=88 base align=8 +QTransform (0x7f95548ecaf0) 0 + +Vtable for QPaintDevice +QPaintDevice::_ZTV12QPaintDevice: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QPaintDevice) +16 QPaintDevice::~QPaintDevice +24 QPaintDevice::~QPaintDevice +32 QPaintDevice::devType +40 __cxa_pure_virtual +48 QPaintDevice::metric + +Class QPaintDevice + size=16 align=8 + base size=10 base align=8 +QPaintDevice (0x7f9554798150) 0 + vptr=((& QPaintDevice::_ZTV12QPaintDevice) + 16u) + +Class QImageTextKeyLang + size=16 align=8 + base size=16 base align=8 +QImageTextKeyLang (0x7f95547be070) 0 + +Vtable for QImage +QImage::_ZTV6QImage: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QImage) +16 QImage::~QImage +24 QImage::~QImage +32 QImage::devType +40 QImage::paintEngine +48 QImage::metric + +Class QImage + size=24 align=8 + base size=24 base align=8 +QImage (0x7f95547e68c0) 0 + vptr=((& QImage::_ZTV6QImage) + 16u) + QPaintDevice (0x7f95547e6930) 0 + primary-for QImage (0x7f95547e68c0) + +Vtable for QPixmap +QPixmap::_ZTV7QPixmap: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QPixmap) +16 QPixmap::~QPixmap +24 QPixmap::~QPixmap +32 QPixmap::devType +40 QPixmap::paintEngine +48 QPixmap::metric + +Class QPixmap + size=24 align=8 + base size=24 base align=8 +QPixmap (0x7f955468a070) 0 + vptr=((& QPixmap::_ZTV7QPixmap) + 16u) + QPaintDevice (0x7f955468a0e0) 0 + primary-for QPixmap (0x7f955468a070) + +Class QBrush + size=8 align=8 + base size=8 base align=8 +QBrush (0x7f95546e8380) 0 + +Class QBrushData + size=112 align=8 + base size=112 base align=8 +QBrushData (0x7f9554704d90) 0 + +Class QGradient + size=64 align=8 + base size=64 base align=8 +QGradient (0x7f9554718f50) 0 + +Class QLinearGradient + size=64 align=8 + base size=64 base align=8 +QLinearGradient (0x7f9554759a10) 0 + QGradient (0x7f9554759a80) 0 + +Class QRadialGradient + size=64 align=8 + base size=64 base align=8 +QRadialGradient (0x7f9554759ee0) 0 + QGradient (0x7f9554759f50) 0 + +Class QConicalGradient + size=64 align=8 + base size=64 base align=8 +QConicalGradient (0x7f95545644d0) 0 + QGradient (0x7f9554564540) 0 + +Class QPen + size=8 align=8 + base size=8 base align=8 +QPen (0x7f9554564850) 0 + +Class QTextOption::Tab + size=16 align=8 + base size=14 base align=8 +QTextOption::Tab (0x7f955457fe00) 0 + +Class QTextOption + size=32 align=8 + base size=32 base align=8 +QTextOption (0x7f955457fd90) 0 + +Class QTextLength + size=16 align=8 + base size=16 base align=8 +QTextLength (0x7f95545f1150) 0 + +Class QTextFormat + size=16 align=8 + base size=12 base align=8 +QTextFormat (0x7f955460c4d0) 0 + +Class QTextCharFormat + size=16 align=8 + base size=12 base align=8 +QTextCharFormat (0x7f95544c4540) 0 + QTextFormat (0x7f95544c45b0) 0 + +Class QTextBlockFormat + size=16 align=8 + base size=12 base align=8 +QTextBlockFormat (0x7f95545261c0) 0 + QTextFormat (0x7f9554526230) 0 + +Class QTextListFormat + size=16 align=8 + base size=12 base align=8 +QTextListFormat (0x7f95545467e0) 0 + QTextFormat (0x7f9554546850) 0 + +Class QTextImageFormat + size=16 align=8 + base size=12 base align=8 +QTextImageFormat (0x7f9554550d20) 0 + QTextCharFormat (0x7f9554550d90) 0 + QTextFormat (0x7f9554550e00) 0 + +Class QTextFrameFormat + size=16 align=8 + base size=12 base align=8 +QTextFrameFormat (0x7f9554361460) 0 + QTextFormat (0x7f95543614d0) 0 + +Class QTextTableFormat + size=16 align=8 + base size=12 base align=8 +QTextTableFormat (0x7f9554398380) 0 + QTextFrameFormat (0x7f95543983f0) 0 + QTextFormat (0x7f9554398460) 0 + +Class QTextTableCellFormat + size=16 align=8 + base size=12 base align=8 +QTextTableCellFormat (0x7f95543b3230) 0 + QTextCharFormat (0x7f95543b32a0) 0 + QTextFormat (0x7f95543b3310) 0 + +Class QTextInlineObject + size=16 align=8 + base size=16 base align=8 +QTextInlineObject (0x7f95543c9700) 0 + +Class QTextLayout::FormatRange + size=24 align=8 + base size=24 base align=8 +QTextLayout::FormatRange (0x7f95543d3a10) 0 + +Class QTextLayout + size=8 align=8 + base size=8 base align=8 +QTextLayout (0x7f95543d3770) 0 + +Class QTextLine + size=16 align=8 + base size=16 base align=8 +QTextLine (0x7f95543ec770) 0 + +Vtable for QAbstractUndoItem +QAbstractUndoItem::_ZTV17QAbstractUndoItem: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAbstractUndoItem) +16 __cxa_pure_virtual +24 __cxa_pure_virtual +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QAbstractUndoItem + size=8 align=8 + base size=8 base align=8 +QAbstractUndoItem (0x7f9554421070) 0 nearly-empty + vptr=((& QAbstractUndoItem::_ZTV17QAbstractUndoItem) + 16u) + +Vtable for QTextDocument +QTextDocument::_ZTV13QTextDocument: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QTextDocument) +16 QTextDocument::metaObject +24 QTextDocument::qt_metacast +32 QTextDocument::qt_metacall +40 QTextDocument::~QTextDocument +48 QTextDocument::~QTextDocument +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTextDocument::clear +120 QTextDocument::createObject +128 QTextDocument::loadResource + +Class QTextDocument + size=16 align=8 + base size=16 base align=8 +QTextDocument (0x7f9554421af0) 0 + vptr=((& QTextDocument::_ZTV13QTextDocument) + 16u) + QObject (0x7f9554421b60) 0 + primary-for QTextDocument (0x7f9554421af0) + +Class QTextCursor + size=8 align=8 + base size=8 base align=8 +QTextCursor (0x7f955427fa80) 0 + +Class QPalette + size=16 align=8 + base size=12 base align=8 +QPalette (0x7f9554292f50) 0 + +Class QColorGroup + size=16 align=8 + base size=12 base align=8 +QColorGroup (0x7f9554305850) 0 + QPalette (0x7f95543058c0) 0 + +Class QAbstractTextDocumentLayout::Selection + size=24 align=8 + base size=24 base align=8 +QAbstractTextDocumentLayout::Selection (0x7f955433cd90) 0 + +Class QAbstractTextDocumentLayout::PaintContext + size=64 align=8 + base size=64 base align=8 +QAbstractTextDocumentLayout::PaintContext (0x7f955433ce00) 0 + +Vtable for QAbstractTextDocumentLayout +QAbstractTextDocumentLayout::_ZTV27QAbstractTextDocumentLayout: 24u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QAbstractTextDocumentLayout) +16 QAbstractTextDocumentLayout::metaObject +24 QAbstractTextDocumentLayout::qt_metacast +32 QAbstractTextDocumentLayout::qt_metacall +40 QAbstractTextDocumentLayout::~QAbstractTextDocumentLayout +48 QAbstractTextDocumentLayout::~QAbstractTextDocumentLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 QAbstractTextDocumentLayout::resizeInlineObject +176 QAbstractTextDocumentLayout::positionInlineObject +184 QAbstractTextDocumentLayout::drawInlineObject + +Class QAbstractTextDocumentLayout + size=16 align=8 + base size=16 base align=8 +QAbstractTextDocumentLayout (0x7f955433cb60) 0 + vptr=((& QAbstractTextDocumentLayout::_ZTV27QAbstractTextDocumentLayout) + 16u) + QObject (0x7f955433cbd0) 0 + primary-for QAbstractTextDocumentLayout (0x7f955433cb60) + +Vtable for QTextObjectInterface +QTextObjectInterface::_ZTV20QTextObjectInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QTextObjectInterface) +16 QTextObjectInterface::~QTextObjectInterface +24 QTextObjectInterface::~QTextObjectInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QTextObjectInterface + size=8 align=8 + base size=8 base align=8 +QTextObjectInterface (0x7f95541744d0) 0 nearly-empty + vptr=((& QTextObjectInterface::_ZTV20QTextObjectInterface) + 16u) + +Class QFontDatabase + size=8 align=8 + base size=8 base align=8 +QFontDatabase (0x7f95541807e0) 0 + +Class QFontInfo + size=8 align=8 + base size=8 base align=8 +QFontInfo (0x7f95541907e0) 0 + +Class QFontMetrics + size=8 align=8 + base size=8 base align=8 +QFontMetrics (0x7f95541a2310) 0 + +Class QFontMetricsF + size=8 align=8 + base size=8 base align=8 +QFontMetricsF (0x7f95541b6770) 0 + +Vtable for QTextObject +QTextObject::_ZTV11QTextObject: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTextObject) +16 QTextObject::metaObject +24 QTextObject::qt_metacast +32 QTextObject::qt_metacall +40 QTextObject::~QTextObject +48 QTextObject::~QTextObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTextObject + size=16 align=8 + base size=16 base align=8 +QTextObject (0x7f95541cc690) 0 + vptr=((& QTextObject::_ZTV11QTextObject) + 16u) + QObject (0x7f95541cc700) 0 + primary-for QTextObject (0x7f95541cc690) + +Vtable for QTextBlockGroup +QTextBlockGroup::_ZTV15QTextBlockGroup: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QTextBlockGroup) +16 QTextBlockGroup::metaObject +24 QTextBlockGroup::qt_metacast +32 QTextBlockGroup::qt_metacall +40 QTextBlockGroup::~QTextBlockGroup +48 QTextBlockGroup::~QTextBlockGroup +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTextBlockGroup::blockInserted +120 QTextBlockGroup::blockRemoved +128 QTextBlockGroup::blockFormatChanged + +Class QTextBlockGroup + size=16 align=8 + base size=16 base align=8 +QTextBlockGroup (0x7f95541ddee0) 0 + vptr=((& QTextBlockGroup::_ZTV15QTextBlockGroup) + 16u) + QTextObject (0x7f95541ddf50) 0 + primary-for QTextBlockGroup (0x7f95541ddee0) + QObject (0x7f95541e6000) 0 + primary-for QTextObject (0x7f95541ddf50) + +Vtable for QTextFrameLayoutData +QTextFrameLayoutData::_ZTV20QTextFrameLayoutData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QTextFrameLayoutData) +16 QTextFrameLayoutData::~QTextFrameLayoutData +24 QTextFrameLayoutData::~QTextFrameLayoutData + +Class QTextFrameLayoutData + size=8 align=8 + base size=8 base align=8 +QTextFrameLayoutData (0x7f95541fa7e0) 0 nearly-empty + vptr=((& QTextFrameLayoutData::_ZTV20QTextFrameLayoutData) + 16u) + +Class QTextFrame::iterator + size=32 align=8 + base size=28 base align=8 +QTextFrame::iterator (0x7f9554204230) 0 + +Vtable for QTextFrame +QTextFrame::_ZTV10QTextFrame: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextFrame) +16 QTextFrame::metaObject +24 QTextFrame::qt_metacast +32 QTextFrame::qt_metacall +40 QTextFrame::~QTextFrame +48 QTextFrame::~QTextFrame +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTextFrame + size=16 align=8 + base size=16 base align=8 +QTextFrame (0x7f95541fa930) 0 + vptr=((& QTextFrame::_ZTV10QTextFrame) + 16u) + QTextObject (0x7f95541fa9a0) 0 + primary-for QTextFrame (0x7f95541fa930) + QObject (0x7f95541faa10) 0 + primary-for QTextObject (0x7f95541fa9a0) + +Vtable for QTextBlockUserData +QTextBlockUserData::_ZTV18QTextBlockUserData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QTextBlockUserData) +16 QTextBlockUserData::~QTextBlockUserData +24 QTextBlockUserData::~QTextBlockUserData + +Class QTextBlockUserData + size=8 align=8 + base size=8 base align=8 +QTextBlockUserData (0x7f9554239380) 0 nearly-empty + vptr=((& QTextBlockUserData::_ZTV18QTextBlockUserData) + 16u) + +Class QTextBlock::iterator + size=24 align=8 + base size=20 base align=8 +QTextBlock::iterator (0x7f9554239cb0) 0 + +Class QTextBlock + size=16 align=8 + base size=12 base align=8 +QTextBlock (0x7f95542394d0) 0 + +Class QTextFragment + size=16 align=8 + base size=16 base align=8 +QTextFragment (0x7f9554031e00) 0 + +Vtable for QSyntaxHighlighter +QSyntaxHighlighter::_ZTV18QSyntaxHighlighter: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QSyntaxHighlighter) +16 QSyntaxHighlighter::metaObject +24 QSyntaxHighlighter::qt_metacast +32 QSyntaxHighlighter::qt_metacall +40 QSyntaxHighlighter::~QSyntaxHighlighter +48 QSyntaxHighlighter::~QSyntaxHighlighter +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual + +Class QSyntaxHighlighter + size=16 align=8 + base size=16 base align=8 +QSyntaxHighlighter (0x7f955405c000) 0 + vptr=((& QSyntaxHighlighter::_ZTV18QSyntaxHighlighter) + 16u) + QObject (0x7f955405c070) 0 + primary-for QSyntaxHighlighter (0x7f955405c000) + +Class QTextDocumentFragment + size=8 align=8 + base size=8 base align=8 +QTextDocumentFragment (0x7f95540729a0) 0 + +Class QTextDocumentWriter + size=8 align=8 + base size=8 base align=8 +QTextDocumentWriter (0x7f95540793f0) 0 + +Vtable for QTextList +QTextList::_ZTV9QTextList: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTextList) +16 QTextList::metaObject +24 QTextList::qt_metacast +32 QTextList::qt_metacall +40 QTextList::~QTextList +48 QTextList::~QTextList +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTextBlockGroup::blockInserted +120 QTextBlockGroup::blockRemoved +128 QTextBlockGroup::blockFormatChanged + +Class QTextList + size=16 align=8 + base size=16 base align=8 +QTextList (0x7f9554079a80) 0 + vptr=((& QTextList::_ZTV9QTextList) + 16u) + QTextBlockGroup (0x7f9554079af0) 0 + primary-for QTextList (0x7f9554079a80) + QTextObject (0x7f9554079b60) 0 + primary-for QTextBlockGroup (0x7f9554079af0) + QObject (0x7f9554079bd0) 0 + primary-for QTextObject (0x7f9554079b60) + +Class QTextTableCell + size=16 align=8 + base size=12 base align=8 +QTextTableCell (0x7f95540a4930) 0 + +Vtable for QTextTable +QTextTable::_ZTV10QTextTable: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextTable) +16 QTextTable::metaObject +24 QTextTable::qt_metacast +32 QTextTable::qt_metacall +40 QTextTable::~QTextTable +48 QTextTable::~QTextTable +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTextTable + size=16 align=8 + base size=16 base align=8 +QTextTable (0x7f95540b9a80) 0 + vptr=((& QTextTable::_ZTV10QTextTable) + 16u) + QTextFrame (0x7f95540b9af0) 0 + primary-for QTextTable (0x7f95540b9a80) + QTextObject (0x7f95540b9b60) 0 + primary-for QTextFrame (0x7f95540b9af0) + QObject (0x7f95540b9bd0) 0 + primary-for QTextObject (0x7f95540b9b60) + +Vtable for QCompleter +QCompleter::_ZTV10QCompleter: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QCompleter) +16 QCompleter::metaObject +24 QCompleter::qt_metacast +32 QCompleter::qt_metacall +40 QCompleter::~QCompleter +48 QCompleter::~QCompleter +56 QCompleter::event +64 QCompleter::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCompleter::pathFromIndex +120 QCompleter::splitPath + +Class QCompleter + size=16 align=8 + base size=16 base align=8 +QCompleter (0x7f95540e22a0) 0 + vptr=((& QCompleter::_ZTV10QCompleter) + 16u) + QObject (0x7f95540e2310) 0 + primary-for QCompleter (0x7f95540e22a0) + +Class QDesktopServices + size=1 align=1 + base size=0 base align=1 +QDesktopServices (0x7f9554105230) 0 empty + +Class QIcon + size=8 align=8 + base size=8 base align=8 +QIcon (0x7f9554105380) 0 + +Vtable for QSystemTrayIcon +QSystemTrayIcon::_ZTV15QSystemTrayIcon: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSystemTrayIcon) +16 QSystemTrayIcon::metaObject +24 QSystemTrayIcon::qt_metacast +32 QSystemTrayIcon::qt_metacall +40 QSystemTrayIcon::~QSystemTrayIcon +48 QSystemTrayIcon::~QSystemTrayIcon +56 QSystemTrayIcon::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSystemTrayIcon + size=16 align=8 + base size=16 base align=8 +QSystemTrayIcon (0x7f9553f2ef50) 0 + vptr=((& QSystemTrayIcon::_ZTV15QSystemTrayIcon) + 16u) + QObject (0x7f9553f3e000) 0 + primary-for QSystemTrayIcon (0x7f9553f2ef50) + +Vtable for QUndoGroup +QUndoGroup::_ZTV10QUndoGroup: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QUndoGroup) +16 QUndoGroup::metaObject +24 QUndoGroup::qt_metacast +32 QUndoGroup::qt_metacall +40 QUndoGroup::~QUndoGroup +48 QUndoGroup::~QUndoGroup +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QUndoGroup + size=16 align=8 + base size=16 base align=8 +QUndoGroup (0x7f9553f5d1c0) 0 + vptr=((& QUndoGroup::_ZTV10QUndoGroup) + 16u) + QObject (0x7f9553f5d230) 0 + primary-for QUndoGroup (0x7f9553f5d1c0) + +Vtable for QUndoCommand +QUndoCommand::_ZTV12QUndoCommand: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QUndoCommand) +16 QUndoCommand::~QUndoCommand +24 QUndoCommand::~QUndoCommand +32 QUndoCommand::undo +40 QUndoCommand::redo +48 QUndoCommand::id +56 QUndoCommand::mergeWith + +Class QUndoCommand + size=16 align=8 + base size=16 base align=8 +QUndoCommand (0x7f9553f71d20) 0 + vptr=((& QUndoCommand::_ZTV12QUndoCommand) + 16u) + +Vtable for QUndoStack +QUndoStack::_ZTV10QUndoStack: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QUndoStack) +16 QUndoStack::metaObject +24 QUndoStack::qt_metacast +32 QUndoStack::qt_metacall +40 QUndoStack::~QUndoStack +48 QUndoStack::~QUndoStack +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QUndoStack + size=16 align=8 + base size=16 base align=8 +QUndoStack (0x7f9553f7a690) 0 + vptr=((& QUndoStack::_ZTV10QUndoStack) + 16u) + QObject (0x7f9553f7a700) 0 + primary-for QUndoStack (0x7f9553f7a690) + +Class QSizePolicy + size=4 align=4 + base size=4 base align=4 +QSizePolicy (0x7f9553fa01c0) 0 + +Class QCursor + size=8 align=8 + base size=8 base align=8 +QCursor (0x7f9553e6f1c0) 0 + +Class QWidgetData + size=88 align=8 + base size=88 base align=8 +QWidgetData (0x7f9553e6f9a0) 0 + +Vtable for QWidget +QWidget::_ZTV7QWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QWidget) +16 QWidget::metaObject +24 QWidget::qt_metacast +32 QWidget::qt_metacall +40 QWidget::~QWidget +48 QWidget::~QWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI7QWidget) +464 QWidget::_ZThn16_N7QWidgetD1Ev +472 QWidget::_ZThn16_N7QWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWidget + size=40 align=8 + base size=40 base align=8 +QWidget (0x7f9553e67a00) 0 + vptr=((& QWidget::_ZTV7QWidget) + 16u) + QObject (0x7f9553e6fa10) 0 + primary-for QWidget (0x7f9553e67a00) + QPaintDevice (0x7f9553e6fa80) 16 + vptr=((& QWidget::_ZTV7QWidget) + 464u) + +Vtable for QFrame +QFrame::_ZTV6QFrame: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QFrame) +16 QFrame::metaObject +24 QFrame::qt_metacast +32 QFrame::qt_metacall +40 QFrame::~QFrame +48 QFrame::~QFrame +56 QFrame::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QFrame::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFrame::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI6QFrame) +464 QFrame::_ZThn16_N6QFrameD1Ev +472 QFrame::_ZThn16_N6QFrameD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFrame + size=40 align=8 + base size=40 base align=8 +QFrame (0x7f9553df7a80) 0 + vptr=((& QFrame::_ZTV6QFrame) + 16u) + QWidget (0x7f9553dfa680) 0 + primary-for QFrame (0x7f9553df7a80) + QObject (0x7f9553df7af0) 0 + primary-for QWidget (0x7f9553dfa680) + QPaintDevice (0x7f9553df7b60) 16 + vptr=((& QFrame::_ZTV6QFrame) + 464u) + +Vtable for QAbstractScrollArea +QAbstractScrollArea::_ZTV19QAbstractScrollArea: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractScrollArea) +16 QAbstractScrollArea::metaObject +24 QAbstractScrollArea::qt_metacast +32 QAbstractScrollArea::qt_metacall +40 QAbstractScrollArea::~QAbstractScrollArea +48 QAbstractScrollArea::~QAbstractScrollArea +56 QAbstractScrollArea::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractScrollArea::mousePressEvent +168 QAbstractScrollArea::mouseReleaseEvent +176 QAbstractScrollArea::mouseDoubleClickEvent +184 QAbstractScrollArea::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractScrollArea::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractScrollArea::paintEvent +256 QWidget::moveEvent +264 QAbstractScrollArea::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractScrollArea::dragEnterEvent +312 QAbstractScrollArea::dragMoveEvent +320 QAbstractScrollArea::dragLeaveEvent +328 QAbstractScrollArea::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QAbstractScrollArea::scrollContentsBy +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI19QAbstractScrollArea) +480 QAbstractScrollArea::_ZThn16_N19QAbstractScrollAreaD1Ev +488 QAbstractScrollArea::_ZThn16_N19QAbstractScrollAreaD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractScrollArea + size=40 align=8 + base size=40 base align=8 +QAbstractScrollArea (0x7f9553c230e0) 0 + vptr=((& QAbstractScrollArea::_ZTV19QAbstractScrollArea) + 16u) + QFrame (0x7f9553c23150) 0 + primary-for QAbstractScrollArea (0x7f9553c230e0) + QWidget (0x7f9553e07a80) 0 + primary-for QFrame (0x7f9553c23150) + QObject (0x7f9553c231c0) 0 + primary-for QWidget (0x7f9553e07a80) + QPaintDevice (0x7f9553c23230) 16 + vptr=((& QAbstractScrollArea::_ZTV19QAbstractScrollArea) + 480u) + +Class QItemSelectionRange + size=16 align=8 + base size=16 base align=8 +QItemSelectionRange (0x7f9553c4a000) 0 + +Vtable for QItemSelectionModel +QItemSelectionModel::_ZTV19QItemSelectionModel: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QItemSelectionModel) +16 QItemSelectionModel::metaObject +24 QItemSelectionModel::qt_metacast +32 QItemSelectionModel::qt_metacall +40 QItemSelectionModel::~QItemSelectionModel +48 QItemSelectionModel::~QItemSelectionModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QItemSelectionModel::select +120 QItemSelectionModel::select +128 QItemSelectionModel::clear +136 QItemSelectionModel::reset + +Class QItemSelectionModel + size=16 align=8 + base size=16 base align=8 +QItemSelectionModel (0x7f9553cb14d0) 0 + vptr=((& QItemSelectionModel::_ZTV19QItemSelectionModel) + 16u) + QObject (0x7f9553cb1540) 0 + primary-for QItemSelectionModel (0x7f9553cb14d0) + +Class QItemSelection + size=8 align=8 + base size=8 base align=8 +QItemSelection (0x7f9553cf39a0) 0 + QList (0x7f9553cf3a10) 0 + +Vtable for QValidator +QValidator::_ZTV10QValidator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QValidator) +16 QValidator::metaObject +24 QValidator::qt_metacast +32 QValidator::qt_metacall +40 QValidator::~QValidator +48 QValidator::~QValidator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 QValidator::fixup + +Class QValidator + size=16 align=8 + base size=16 base align=8 +QValidator (0x7f9553b312a0) 0 + vptr=((& QValidator::_ZTV10QValidator) + 16u) + QObject (0x7f9553b31310) 0 + primary-for QValidator (0x7f9553b312a0) + +Vtable for QIntValidator +QIntValidator::_ZTV13QIntValidator: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QIntValidator) +16 QIntValidator::metaObject +24 QIntValidator::qt_metacast +32 QIntValidator::qt_metacall +40 QIntValidator::~QIntValidator +48 QIntValidator::~QIntValidator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QIntValidator::validate +120 QValidator::fixup +128 QIntValidator::setRange + +Class QIntValidator + size=24 align=8 + base size=24 base align=8 +QIntValidator (0x7f9553b4d0e0) 0 + vptr=((& QIntValidator::_ZTV13QIntValidator) + 16u) + QValidator (0x7f9553b4d150) 0 + primary-for QIntValidator (0x7f9553b4d0e0) + QObject (0x7f9553b4d1c0) 0 + primary-for QValidator (0x7f9553b4d150) + +Vtable for QDoubleValidator +QDoubleValidator::_ZTV16QDoubleValidator: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QDoubleValidator) +16 QDoubleValidator::metaObject +24 QDoubleValidator::qt_metacast +32 QDoubleValidator::qt_metacall +40 QDoubleValidator::~QDoubleValidator +48 QDoubleValidator::~QDoubleValidator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QDoubleValidator::validate +120 QValidator::fixup +128 QDoubleValidator::setRange + +Class QDoubleValidator + size=40 align=8 + base size=36 base align=8 +QDoubleValidator (0x7f9553b63070) 0 + vptr=((& QDoubleValidator::_ZTV16QDoubleValidator) + 16u) + QValidator (0x7f9553b630e0) 0 + primary-for QDoubleValidator (0x7f9553b63070) + QObject (0x7f9553b63150) 0 + primary-for QValidator (0x7f9553b630e0) + +Vtable for QRegExpValidator +QRegExpValidator::_ZTV16QRegExpValidator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QRegExpValidator) +16 QRegExpValidator::metaObject +24 QRegExpValidator::qt_metacast +32 QRegExpValidator::qt_metacall +40 QRegExpValidator::~QRegExpValidator +48 QRegExpValidator::~QRegExpValidator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QRegExpValidator::validate +120 QValidator::fixup + +Class QRegExpValidator + size=24 align=8 + base size=24 base align=8 +QRegExpValidator (0x7f9553b7d930) 0 + vptr=((& QRegExpValidator::_ZTV16QRegExpValidator) + 16u) + QValidator (0x7f9553b7d9a0) 0 + primary-for QRegExpValidator (0x7f9553b7d930) + QObject (0x7f9553b7da10) 0 + primary-for QValidator (0x7f9553b7d9a0) + +Vtable for QAbstractSpinBox +QAbstractSpinBox::_ZTV16QAbstractSpinBox: 68u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QAbstractSpinBox) +16 QAbstractSpinBox::metaObject +24 QAbstractSpinBox::qt_metacast +32 QAbstractSpinBox::qt_metacall +40 QAbstractSpinBox::~QAbstractSpinBox +48 QAbstractSpinBox::~QAbstractSpinBox +56 QAbstractSpinBox::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractSpinBox::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractSpinBox::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QAbstractSpinBox::wheelEvent +200 QAbstractSpinBox::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QAbstractSpinBox::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractSpinBox::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QAbstractSpinBox::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractSpinBox::validate +456 QAbstractSpinBox::fixup +464 QAbstractSpinBox::stepBy +472 QAbstractSpinBox::clear +480 QAbstractSpinBox::stepEnabled +488 (int (*)(...))-0x00000000000000010 +496 (int (*)(...))(& _ZTI16QAbstractSpinBox) +504 QAbstractSpinBox::_ZThn16_N16QAbstractSpinBoxD1Ev +512 QAbstractSpinBox::_ZThn16_N16QAbstractSpinBoxD0Ev +520 QWidget::_ZThn16_NK7QWidget7devTypeEv +528 QWidget::_ZThn16_NK7QWidget11paintEngineEv +536 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractSpinBox + size=40 align=8 + base size=40 base align=8 +QAbstractSpinBox (0x7f9553b965b0) 0 + vptr=((& QAbstractSpinBox::_ZTV16QAbstractSpinBox) + 16u) + QWidget (0x7f9553b7be80) 0 + primary-for QAbstractSpinBox (0x7f9553b965b0) + QObject (0x7f9553b96620) 0 + primary-for QWidget (0x7f9553b7be80) + QPaintDevice (0x7f9553b96690) 16 + vptr=((& QAbstractSpinBox::_ZTV16QAbstractSpinBox) + 504u) + +Vtable for QAbstractSlider +QAbstractSlider::_ZTV15QAbstractSlider: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QAbstractSlider) +16 QAbstractSlider::metaObject +24 QAbstractSlider::qt_metacast +32 QAbstractSlider::qt_metacall +40 QAbstractSlider::~QAbstractSlider +48 QAbstractSlider::~QAbstractSlider +56 QAbstractSlider::event +64 QObject::eventFilter +72 QAbstractSlider::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QAbstractSlider::wheelEvent +200 QAbstractSlider::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractSlider::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractSlider::sliderChange +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI15QAbstractSlider) +472 QAbstractSlider::_ZThn16_N15QAbstractSliderD1Ev +480 QAbstractSlider::_ZThn16_N15QAbstractSliderD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractSlider + size=40 align=8 + base size=40 base align=8 +QAbstractSlider (0x7f9553bf45b0) 0 + vptr=((& QAbstractSlider::_ZTV15QAbstractSlider) + 16u) + QWidget (0x7f9553bf5200) 0 + primary-for QAbstractSlider (0x7f9553bf45b0) + QObject (0x7f9553bf4620) 0 + primary-for QWidget (0x7f9553bf5200) + QPaintDevice (0x7f9553bf4690) 16 + vptr=((& QAbstractSlider::_ZTV15QAbstractSlider) + 472u) + +Vtable for QSlider +QSlider::_ZTV7QSlider: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QSlider) +16 QSlider::metaObject +24 QSlider::qt_metacast +32 QSlider::qt_metacall +40 QSlider::~QSlider +48 QSlider::~QSlider +56 QSlider::event +64 QObject::eventFilter +72 QAbstractSlider::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QSlider::sizeHint +136 QSlider::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QSlider::mousePressEvent +168 QSlider::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QSlider::mouseMoveEvent +192 QAbstractSlider::wheelEvent +200 QAbstractSlider::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QSlider::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractSlider::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractSlider::sliderChange +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI7QSlider) +472 QSlider::_ZThn16_N7QSliderD1Ev +480 QSlider::_ZThn16_N7QSliderD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSlider + size=40 align=8 + base size=40 base align=8 +QSlider (0x7f9553a2a3f0) 0 + vptr=((& QSlider::_ZTV7QSlider) + 16u) + QAbstractSlider (0x7f9553a2a460) 0 + primary-for QSlider (0x7f9553a2a3f0) + QWidget (0x7f9553a28300) 0 + primary-for QAbstractSlider (0x7f9553a2a460) + QObject (0x7f9553a2a4d0) 0 + primary-for QWidget (0x7f9553a28300) + QPaintDevice (0x7f9553a2a540) 16 + vptr=((& QSlider::_ZTV7QSlider) + 472u) + +Vtable for QStyle +QStyle::_ZTV6QStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QStyle) +16 QStyle::metaObject +24 QStyle::qt_metacast +32 QStyle::qt_metacall +40 QStyle::~QStyle +48 QStyle::~QStyle +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QStyle::polish +120 QStyle::unpolish +128 QStyle::polish +136 QStyle::unpolish +144 QStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QStyle::standardPalette +192 __cxa_pure_virtual +200 __cxa_pure_virtual +208 __cxa_pure_virtual +216 __cxa_pure_virtual +224 __cxa_pure_virtual +232 __cxa_pure_virtual +240 __cxa_pure_virtual +248 __cxa_pure_virtual +256 __cxa_pure_virtual +264 __cxa_pure_virtual +272 __cxa_pure_virtual + +Class QStyle + size=16 align=8 + base size=16 base align=8 +QStyle (0x7f9553a4f9a0) 0 + vptr=((& QStyle::_ZTV6QStyle) + 16u) + QObject (0x7f9553a4fa10) 0 + primary-for QStyle (0x7f9553a4f9a0) + +Vtable for QTabBar +QTabBar::_ZTV7QTabBar: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QTabBar) +16 QTabBar::metaObject +24 QTabBar::qt_metacast +32 QTabBar::qt_metacall +40 QTabBar::~QTabBar +48 QTabBar::~QTabBar +56 QTabBar::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QTabBar::sizeHint +136 QTabBar::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTabBar::mousePressEvent +168 QTabBar::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QTabBar::mouseMoveEvent +192 QTabBar::wheelEvent +200 QTabBar::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTabBar::paintEvent +256 QWidget::moveEvent +264 QTabBar::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QTabBar::showEvent +344 QTabBar::hideEvent +352 QWidget::x11Event +360 QTabBar::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QTabBar::tabSizeHint +456 QTabBar::tabInserted +464 QTabBar::tabRemoved +472 QTabBar::tabLayoutChange +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI7QTabBar) +496 QTabBar::_ZThn16_N7QTabBarD1Ev +504 QTabBar::_ZThn16_N7QTabBarD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTabBar + size=40 align=8 + base size=40 base align=8 +QTabBar (0x7f9553b01850) 0 + vptr=((& QTabBar::_ZTV7QTabBar) + 16u) + QWidget (0x7f9553b02300) 0 + primary-for QTabBar (0x7f9553b01850) + QObject (0x7f9553b018c0) 0 + primary-for QWidget (0x7f9553b02300) + QPaintDevice (0x7f9553b01930) 16 + vptr=((& QTabBar::_ZTV7QTabBar) + 496u) + +Vtable for QTabWidget +QTabWidget::_ZTV10QTabWidget: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTabWidget) +16 QTabWidget::metaObject +24 QTabWidget::qt_metacast +32 QTabWidget::qt_metacall +40 QTabWidget::~QTabWidget +48 QTabWidget::~QTabWidget +56 QTabWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QTabWidget::sizeHint +136 QTabWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QTabWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTabWidget::paintEvent +256 QWidget::moveEvent +264 QTabWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QTabWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QTabWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QTabWidget::tabInserted +456 QTabWidget::tabRemoved +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI10QTabWidget) +480 QTabWidget::_ZThn16_N10QTabWidgetD1Ev +488 QTabWidget::_ZThn16_N10QTabWidgetD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTabWidget + size=40 align=8 + base size=40 base align=8 +QTabWidget (0x7f955392ee70) 0 + vptr=((& QTabWidget::_ZTV10QTabWidget) + 16u) + QWidget (0x7f955392a700) 0 + primary-for QTabWidget (0x7f955392ee70) + QObject (0x7f955392eee0) 0 + primary-for QWidget (0x7f955392a700) + QPaintDevice (0x7f955392ef50) 16 + vptr=((& QTabWidget::_ZTV10QTabWidget) + 480u) + +Vtable for QRubberBand +QRubberBand::_ZTV11QRubberBand: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QRubberBand) +16 QRubberBand::metaObject +24 QRubberBand::qt_metacast +32 QRubberBand::qt_metacall +40 QRubberBand::~QRubberBand +48 QRubberBand::~QRubberBand +56 QRubberBand::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QRubberBand::paintEvent +256 QRubberBand::moveEvent +264 QRubberBand::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QRubberBand::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QRubberBand::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI11QRubberBand) +464 QRubberBand::_ZThn16_N11QRubberBandD1Ev +472 QRubberBand::_ZThn16_N11QRubberBandD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QRubberBand + size=40 align=8 + base size=40 base align=8 +QRubberBand (0x7f9553981850) 0 + vptr=((& QRubberBand::_ZTV11QRubberBand) + 16u) + QWidget (0x7f955397f880) 0 + primary-for QRubberBand (0x7f9553981850) + QObject (0x7f95539818c0) 0 + primary-for QWidget (0x7f955397f880) + QPaintDevice (0x7f9553981930) 16 + vptr=((& QRubberBand::_ZTV11QRubberBand) + 464u) + +Class QStyleOption + size=56 align=8 + base size=56 base align=8 +QStyleOption (0x7f95539a5b60) 0 + +Class QStyleOptionFocusRect + size=72 align=8 + base size=72 base align=8 +QStyleOptionFocusRect (0x7f95539b18c0) 0 + QStyleOption (0x7f95539b1930) 0 + +Class QStyleOptionFrame + size=64 align=8 + base size=64 base align=8 +QStyleOptionFrame (0x7f95539bd8c0) 0 + QStyleOption (0x7f95539bd930) 0 + +Class QStyleOptionFrameV2 + size=72 align=8 + base size=68 base align=8 +QStyleOptionFrameV2 (0x7f95539cb850) 0 + QStyleOptionFrame (0x7f95539cb8c0) 0 + QStyleOption (0x7f95539cb930) 0 + +Class QStyleOptionFrameV3 + size=72 align=8 + base size=72 base align=8 +QStyleOptionFrameV3 (0x7f9553813150) 0 + QStyleOptionFrameV2 (0x7f95538131c0) 0 + QStyleOptionFrame (0x7f9553813230) 0 + QStyleOption (0x7f95538132a0) 0 + +Class QStyleOptionTabWidgetFrame + size=96 align=8 + base size=92 base align=8 +QStyleOptionTabWidgetFrame (0x7f955381ea10) 0 + QStyleOption (0x7f955381ea80) 0 + +Class QStyleOptionTabWidgetFrameV2 + size=128 align=8 + base size=124 base align=8 +QStyleOptionTabWidgetFrameV2 (0x7f95538341c0) 0 + QStyleOptionTabWidgetFrame (0x7f9553834230) 0 + QStyleOption (0x7f95538342a0) 0 + +Class QStyleOptionTabBarBase + size=96 align=8 + base size=92 base align=8 +QStyleOptionTabBarBase (0x7f955383daf0) 0 + QStyleOption (0x7f955383db60) 0 + +Class QStyleOptionTabBarBaseV2 + size=96 align=8 + base size=93 base align=8 +QStyleOptionTabBarBaseV2 (0x7f9553849ee0) 0 + QStyleOptionTabBarBase (0x7f9553849f50) 0 + QStyleOption (0x7f9553849310) 0 + +Class QStyleOptionHeader + size=112 align=8 + base size=108 base align=8 +QStyleOptionHeader (0x7f955385f540) 0 + QStyleOption (0x7f955385f5b0) 0 + +Class QStyleOptionButton + size=88 align=8 + base size=88 base align=8 +QStyleOptionButton (0x7f9553877700) 0 + QStyleOption (0x7f9553877770) 0 + +Class QStyleOptionTab + size=96 align=8 + base size=96 base align=8 +QStyleOptionTab (0x7f95538c50e0) 0 + QStyleOption (0x7f95538c5150) 0 + +Class QStyleOptionTabV2 + size=104 align=8 + base size=104 base align=8 +QStyleOptionTabV2 (0x7f9553713070) 0 + QStyleOptionTab (0x7f95537130e0) 0 + QStyleOption (0x7f9553713150) 0 + +Class QStyleOptionTabV3 + size=128 align=8 + base size=124 base align=8 +QStyleOptionTabV3 (0x7f955371da80) 0 + QStyleOptionTabV2 (0x7f955371daf0) 0 + QStyleOptionTab (0x7f955371db60) 0 + QStyleOption (0x7f955371dbd0) 0 + +Class QStyleOptionToolBar + size=80 align=8 + base size=80 base align=8 +QStyleOptionToolBar (0x7f955373c0e0) 0 + QStyleOption (0x7f955373c150) 0 + +Class QStyleOptionProgressBar + size=88 align=8 + base size=85 base align=8 +QStyleOptionProgressBar (0x7f955376f8c0) 0 + QStyleOption (0x7f955376f930) 0 + +Class QStyleOptionProgressBarV2 + size=96 align=8 + base size=94 base align=8 +QStyleOptionProgressBarV2 (0x7f9553796070) 0 + QStyleOptionProgressBar (0x7f95537960e0) 0 + QStyleOption (0x7f9553796150) 0 + +Class QStyleOptionMenuItem + size=128 align=8 + base size=128 base align=8 +QStyleOptionMenuItem (0x7f9553796930) 0 + QStyleOption (0x7f95537969a0) 0 + +Class QStyleOptionQ3ListViewItem + size=80 align=8 + base size=76 base align=8 +QStyleOptionQ3ListViewItem (0x7f95537b0b60) 0 + QStyleOption (0x7f95537b0bd0) 0 + +Class QStyleOptionQ3DockWindow + size=64 align=8 + base size=58 base align=8 +QStyleOptionQ3DockWindow (0x7f95535ff000) 0 + QStyleOption (0x7f95535ff070) 0 + +Class QStyleOptionDockWidget + size=72 align=8 + base size=67 base align=8 +QStyleOptionDockWidget (0x7f95535ff690) 0 + QStyleOption (0x7f955360b000) 0 + +Class QStyleOptionDockWidgetV2 + size=72 align=8 + base size=68 base align=8 +QStyleOptionDockWidgetV2 (0x7f9553619380) 0 + QStyleOptionDockWidget (0x7f95536193f0) 0 + QStyleOption (0x7f9553619460) 0 + +Class QStyleOptionViewItem + size=104 align=8 + base size=97 base align=8 +QStyleOptionViewItem (0x7f9553623b60) 0 + QStyleOption (0x7f9553623bd0) 0 + +Class QStyleOptionViewItemV2 + size=104 align=8 + base size=104 base align=8 +QStyleOptionViewItemV2 (0x7f955363c700) 0 + QStyleOptionViewItem (0x7f955363c770) 0 + QStyleOption (0x7f955363c7e0) 0 + +Class QStyleOptionViewItemV3 + size=120 align=8 + base size=120 base align=8 +QStyleOptionViewItemV3 (0x7f955368a150) 0 + QStyleOptionViewItemV2 (0x7f955368a1c0) 0 + QStyleOptionViewItem (0x7f955368a230) 0 + QStyleOption (0x7f955368a2a0) 0 + +Class QStyleOptionViewItemV4 + size=184 align=8 + base size=184 base align=8 +QStyleOptionViewItemV4 (0x7f9553693a10) 0 + QStyleOptionViewItemV3 (0x7f9553693a80) 0 + QStyleOptionViewItemV2 (0x7f9553693af0) 0 + QStyleOptionViewItem (0x7f9553693b60) 0 + QStyleOption (0x7f9553693bd0) 0 + +Class QStyleOptionToolBox + size=72 align=8 + base size=72 base align=8 +QStyleOptionToolBox (0x7f95536b5150) 0 + QStyleOption (0x7f95536b51c0) 0 + +Class QStyleOptionToolBoxV2 + size=80 align=8 + base size=80 base align=8 +QStyleOptionToolBoxV2 (0x7f95536c2620) 0 + QStyleOptionToolBox (0x7f95536c2690) 0 + QStyleOption (0x7f95536c2700) 0 + +Class QStyleOptionRubberBand + size=64 align=8 + base size=61 base align=8 +QStyleOptionRubberBand (0x7f95536d8310) 0 + QStyleOption (0x7f95536d8380) 0 + +Class QStyleOptionComplex + size=64 align=8 + base size=64 base align=8 +QStyleOptionComplex (0x7f95536e23f0) 0 + QStyleOption (0x7f95536e2460) 0 + +Class QStyleOptionSlider + size=120 align=8 + base size=113 base align=8 +QStyleOptionSlider (0x7f95536ecbd0) 0 + QStyleOptionComplex (0x7f95536ecc40) 0 + QStyleOption (0x7f95536eccb0) 0 + +Class QStyleOptionSpinBox + size=80 align=8 + base size=73 base align=8 +QStyleOptionSpinBox (0x7f95535039a0) 0 + QStyleOptionComplex (0x7f9553503a10) 0 + QStyleOption (0x7f9553503a80) 0 + +Class QStyleOptionQ3ListView + size=112 align=8 + base size=105 base align=8 +QStyleOptionQ3ListView (0x7f955350aee0) 0 + QStyleOptionComplex (0x7f955350af50) 0 + QStyleOption (0x7f955350a380) 0 + +Class QStyleOptionToolButton + size=128 align=8 + base size=128 base align=8 +QStyleOptionToolButton (0x7f9553544af0) 0 + QStyleOptionComplex (0x7f9553544b60) 0 + QStyleOption (0x7f9553544bd0) 0 + +Class QStyleOptionComboBox + size=112 align=8 + base size=112 base align=8 +QStyleOptionComboBox (0x7f9553584d20) 0 + QStyleOptionComplex (0x7f9553584d90) 0 + QStyleOption (0x7f9553584e00) 0 + +Class QStyleOptionTitleBar + size=88 align=8 + base size=88 base align=8 +QStyleOptionTitleBar (0x7f95535ac850) 0 + QStyleOptionComplex (0x7f95535ac8c0) 0 + QStyleOption (0x7f95535ac930) 0 + +Class QStyleOptionGroupBox + size=112 align=8 + base size=108 base align=8 +QStyleOptionGroupBox (0x7f95535c40e0) 0 + QStyleOptionComplex (0x7f95535c4150) 0 + QStyleOption (0x7f95535c41c0) 0 + +Class QStyleOptionSizeGrip + size=72 align=8 + base size=68 base align=8 +QStyleOptionSizeGrip (0x7f95535d2cb0) 0 + QStyleOptionComplex (0x7f95535d2d20) 0 + QStyleOption (0x7f95535d2d90) 0 + +Class QStyleOptionGraphicsItem + size=144 align=8 + base size=144 base align=8 +QStyleOptionGraphicsItem (0x7f95535dbc40) 0 + QStyleOption (0x7f95535dbcb0) 0 + +Class QStyleHintReturn + size=8 align=4 + base size=8 base align=4 +QStyleHintReturn (0x7f95535e92a0) 0 + +Class QStyleHintReturnMask + size=16 align=8 + base size=16 base align=8 +QStyleHintReturnMask (0x7f95534093f0) 0 + QStyleHintReturn (0x7f9553409460) 0 + +Class QStyleHintReturnVariant + size=24 align=8 + base size=24 base align=8 +QStyleHintReturnVariant (0x7f9553409620) 0 + QStyleHintReturn (0x7f9553409690) 0 + +Vtable for QAbstractItemDelegate +QAbstractItemDelegate::_ZTV21QAbstractItemDelegate: 21u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QAbstractItemDelegate) +16 QAbstractItemDelegate::metaObject +24 QAbstractItemDelegate::qt_metacast +32 QAbstractItemDelegate::qt_metacall +40 QAbstractItemDelegate::~QAbstractItemDelegate +48 QAbstractItemDelegate::~QAbstractItemDelegate +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAbstractItemDelegate::createEditor +136 QAbstractItemDelegate::setEditorData +144 QAbstractItemDelegate::setModelData +152 QAbstractItemDelegate::updateEditorGeometry +160 QAbstractItemDelegate::editorEvent + +Class QAbstractItemDelegate + size=16 align=8 + base size=16 base align=8 +QAbstractItemDelegate (0x7f9553409af0) 0 + vptr=((& QAbstractItemDelegate::_ZTV21QAbstractItemDelegate) + 16u) + QObject (0x7f9553409b60) 0 + primary-for QAbstractItemDelegate (0x7f9553409af0) + +Vtable for QAbstractItemView +QAbstractItemView::_ZTV17QAbstractItemView: 103u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAbstractItemView) +16 QAbstractItemView::metaObject +24 QAbstractItemView::qt_metacast +32 QAbstractItemView::qt_metacall +40 QAbstractItemView::~QAbstractItemView +48 QAbstractItemView::~QAbstractItemView +56 QAbstractItemView::event +64 QObject::eventFilter +72 QAbstractItemView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QAbstractItemView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QAbstractItemView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractScrollArea::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QAbstractScrollArea::scrollContentsBy +464 QAbstractItemView::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 __cxa_pure_virtual +496 __cxa_pure_virtual +504 __cxa_pure_virtual +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QAbstractItemView::reset +536 QAbstractItemView::setRootIndex +544 QAbstractItemView::doItemsLayout +552 QAbstractItemView::selectAll +560 QAbstractItemView::dataChanged +568 QAbstractItemView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QAbstractItemView::selectionChanged +592 QAbstractItemView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QAbstractItemView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 __cxa_pure_virtual +688 __cxa_pure_virtual +696 __cxa_pure_virtual +704 __cxa_pure_virtual +712 __cxa_pure_virtual +720 __cxa_pure_virtual +728 QAbstractItemView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 (int (*)(...))-0x00000000000000010 +776 (int (*)(...))(& _ZTI17QAbstractItemView) +784 QAbstractItemView::_ZThn16_N17QAbstractItemViewD1Ev +792 QAbstractItemView::_ZThn16_N17QAbstractItemViewD0Ev +800 QWidget::_ZThn16_NK7QWidget7devTypeEv +808 QWidget::_ZThn16_NK7QWidget11paintEngineEv +816 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractItemView + size=40 align=8 + base size=40 base align=8 +QAbstractItemView (0x7f95534381c0) 0 + vptr=((& QAbstractItemView::_ZTV17QAbstractItemView) + 16u) + QAbstractScrollArea (0x7f9553438230) 0 + primary-for QAbstractItemView (0x7f95534381c0) + QFrame (0x7f95534382a0) 0 + primary-for QAbstractScrollArea (0x7f9553438230) + QWidget (0x7f9553417d80) 0 + primary-for QFrame (0x7f95534382a0) + QObject (0x7f9553438310) 0 + primary-for QWidget (0x7f9553417d80) + QPaintDevice (0x7f9553438380) 16 + vptr=((& QAbstractItemView::_ZTV17QAbstractItemView) + 784u) + +Vtable for QListView +QListView::_ZTV9QListView: 103u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QListView) +16 QListView::metaObject +24 QListView::qt_metacast +32 QListView::qt_metacall +40 QListView::~QListView +48 QListView::~QListView +56 QListView::event +64 QObject::eventFilter +72 QListView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QListView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QListView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QListView::paintEvent +256 QWidget::moveEvent +264 QListView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QListView::dragMoveEvent +320 QListView::dragLeaveEvent +328 QListView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QListView::scrollContentsBy +464 QAbstractItemView::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QListView::visualRect +496 QListView::scrollTo +504 QListView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QListView::reset +536 QListView::setRootIndex +544 QListView::doItemsLayout +552 QAbstractItemView::selectAll +560 QListView::dataChanged +568 QListView::rowsInserted +576 QListView::rowsAboutToBeRemoved +584 QListView::selectionChanged +592 QListView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QListView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QListView::moveCursor +688 QListView::horizontalOffset +696 QListView::verticalOffset +704 QListView::isIndexHidden +712 QListView::setSelection +720 QListView::visualRegionForSelection +728 QListView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QListView::startDrag +760 QListView::viewOptions +768 (int (*)(...))-0x00000000000000010 +776 (int (*)(...))(& _ZTI9QListView) +784 QListView::_ZThn16_N9QListViewD1Ev +792 QListView::_ZThn16_N9QListViewD0Ev +800 QWidget::_ZThn16_NK7QWidget7devTypeEv +808 QWidget::_ZThn16_NK7QWidget11paintEngineEv +816 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QListView + size=40 align=8 + base size=40 base align=8 +QListView (0x7f95534ae9a0) 0 + vptr=((& QListView::_ZTV9QListView) + 16u) + QAbstractItemView (0x7f95534aea10) 0 + primary-for QListView (0x7f95534ae9a0) + QAbstractScrollArea (0x7f95534aea80) 0 + primary-for QAbstractItemView (0x7f95534aea10) + QFrame (0x7f95534aeaf0) 0 + primary-for QAbstractScrollArea (0x7f95534aea80) + QWidget (0x7f9553498500) 0 + primary-for QFrame (0x7f95534aeaf0) + QObject (0x7f95534aeb60) 0 + primary-for QWidget (0x7f9553498500) + QPaintDevice (0x7f95534aebd0) 16 + vptr=((& QListView::_ZTV9QListView) + 784u) + +Vtable for QUndoView +QUndoView::_ZTV9QUndoView: 103u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QUndoView) +16 QUndoView::metaObject +24 QUndoView::qt_metacast +32 QUndoView::qt_metacall +40 QUndoView::~QUndoView +48 QUndoView::~QUndoView +56 QListView::event +64 QObject::eventFilter +72 QListView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QListView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QListView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QListView::paintEvent +256 QWidget::moveEvent +264 QListView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QListView::dragMoveEvent +320 QListView::dragLeaveEvent +328 QListView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QListView::scrollContentsBy +464 QAbstractItemView::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QListView::visualRect +496 QListView::scrollTo +504 QListView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QListView::reset +536 QListView::setRootIndex +544 QListView::doItemsLayout +552 QAbstractItemView::selectAll +560 QListView::dataChanged +568 QListView::rowsInserted +576 QListView::rowsAboutToBeRemoved +584 QListView::selectionChanged +592 QListView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QListView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QListView::moveCursor +688 QListView::horizontalOffset +696 QListView::verticalOffset +704 QListView::isIndexHidden +712 QListView::setSelection +720 QListView::visualRegionForSelection +728 QListView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QListView::startDrag +760 QListView::viewOptions +768 (int (*)(...))-0x00000000000000010 +776 (int (*)(...))(& _ZTI9QUndoView) +784 QUndoView::_ZThn16_N9QUndoViewD1Ev +792 QUndoView::_ZThn16_N9QUndoViewD0Ev +800 QWidget::_ZThn16_NK7QWidget7devTypeEv +808 QWidget::_ZThn16_NK7QWidget11paintEngineEv +816 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QUndoView + size=40 align=8 + base size=40 base align=8 +QUndoView (0x7f95532fb070) 0 + vptr=((& QUndoView::_ZTV9QUndoView) + 16u) + QListView (0x7f95532fb0e0) 0 + primary-for QUndoView (0x7f95532fb070) + QAbstractItemView (0x7f95532fb150) 0 + primary-for QListView (0x7f95532fb0e0) + QAbstractScrollArea (0x7f95532fb1c0) 0 + primary-for QAbstractItemView (0x7f95532fb150) + QFrame (0x7f95532fb230) 0 + primary-for QAbstractScrollArea (0x7f95532fb1c0) + QWidget (0x7f95532f5500) 0 + primary-for QFrame (0x7f95532fb230) + QObject (0x7f95532fb2a0) 0 + primary-for QWidget (0x7f95532f5500) + QPaintDevice (0x7f95532fb310) 16 + vptr=((& QUndoView::_ZTV9QUndoView) + 784u) + +Vtable for QDialog +QDialog::_ZTV7QDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QDialog) +16 QDialog::metaObject +24 QDialog::qt_metacast +32 QDialog::qt_metacall +40 QDialog::~QDialog +48 QDialog::~QDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI7QDialog) +488 QDialog::_ZThn16_N7QDialogD1Ev +496 QDialog::_ZThn16_N7QDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDialog + size=40 align=8 + base size=40 base align=8 +QDialog (0x7f9553315d20) 0 + vptr=((& QDialog::_ZTV7QDialog) + 16u) + QWidget (0x7f95532f5f00) 0 + primary-for QDialog (0x7f9553315d20) + QObject (0x7f9553315d90) 0 + primary-for QWidget (0x7f95532f5f00) + QPaintDevice (0x7f9553315e00) 16 + vptr=((& QDialog::_ZTV7QDialog) + 488u) + +Vtable for QAbstractPageSetupDialog +QAbstractPageSetupDialog::_ZTV24QAbstractPageSetupDialog: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QAbstractPageSetupDialog) +16 QAbstractPageSetupDialog::metaObject +24 QAbstractPageSetupDialog::qt_metacast +32 QAbstractPageSetupDialog::qt_metacall +40 QAbstractPageSetupDialog::~QAbstractPageSetupDialog +48 QAbstractPageSetupDialog::~QAbstractPageSetupDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractPageSetupDialog::done +456 QDialog::accept +464 QDialog::reject +472 __cxa_pure_virtual +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI24QAbstractPageSetupDialog) +496 QAbstractPageSetupDialog::_ZThn16_N24QAbstractPageSetupDialogD1Ev +504 QAbstractPageSetupDialog::_ZThn16_N24QAbstractPageSetupDialogD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractPageSetupDialog + size=40 align=8 + base size=40 base align=8 +QAbstractPageSetupDialog (0x7f955333ab60) 0 + vptr=((& QAbstractPageSetupDialog::_ZTV24QAbstractPageSetupDialog) + 16u) + QDialog (0x7f955333abd0) 0 + primary-for QAbstractPageSetupDialog (0x7f955333ab60) + QWidget (0x7f955331ba00) 0 + primary-for QDialog (0x7f955333abd0) + QObject (0x7f955333ac40) 0 + primary-for QWidget (0x7f955331ba00) + QPaintDevice (0x7f955333acb0) 16 + vptr=((& QAbstractPageSetupDialog::_ZTV24QAbstractPageSetupDialog) + 496u) + +Vtable for QAbstractPrintDialog +QAbstractPrintDialog::_ZTV20QAbstractPrintDialog: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QAbstractPrintDialog) +16 QAbstractPrintDialog::metaObject +24 QAbstractPrintDialog::qt_metacast +32 QAbstractPrintDialog::qt_metacall +40 QAbstractPrintDialog::~QAbstractPrintDialog +48 QAbstractPrintDialog::~QAbstractPrintDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDialog::done +456 QDialog::accept +464 QDialog::reject +472 __cxa_pure_virtual +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI20QAbstractPrintDialog) +496 QAbstractPrintDialog::_ZThn16_N20QAbstractPrintDialogD1Ev +504 QAbstractPrintDialog::_ZThn16_N20QAbstractPrintDialogD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractPrintDialog + size=40 align=8 + base size=40 base align=8 +QAbstractPrintDialog (0x7f955335a150) 0 + vptr=((& QAbstractPrintDialog::_ZTV20QAbstractPrintDialog) + 16u) + QDialog (0x7f955335a1c0) 0 + primary-for QAbstractPrintDialog (0x7f955335a150) + QWidget (0x7f9553351400) 0 + primary-for QDialog (0x7f955335a1c0) + QObject (0x7f955335a230) 0 + primary-for QWidget (0x7f9553351400) + QPaintDevice (0x7f955335a2a0) 16 + vptr=((& QAbstractPrintDialog::_ZTV20QAbstractPrintDialog) + 496u) + +Vtable for QColorDialog +QColorDialog::_ZTV12QColorDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QColorDialog) +16 QColorDialog::metaObject +24 QColorDialog::qt_metacast +32 QColorDialog::qt_metacall +40 QColorDialog::~QColorDialog +48 QColorDialog::~QColorDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QColorDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QColorDialog::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QColorDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI12QColorDialog) +488 QColorDialog::_ZThn16_N12QColorDialogD1Ev +496 QColorDialog::_ZThn16_N12QColorDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QColorDialog + size=40 align=8 + base size=40 base align=8 +QColorDialog (0x7f95533b6230) 0 + vptr=((& QColorDialog::_ZTV12QColorDialog) + 16u) + QDialog (0x7f95533b62a0) 0 + primary-for QColorDialog (0x7f95533b6230) + QWidget (0x7f9553377880) 0 + primary-for QDialog (0x7f95533b62a0) + QObject (0x7f95533b6310) 0 + primary-for QWidget (0x7f9553377880) + QPaintDevice (0x7f95533b6380) 16 + vptr=((& QColorDialog::_ZTV12QColorDialog) + 488u) + +Vtable for QErrorMessage +QErrorMessage::_ZTV13QErrorMessage: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QErrorMessage) +16 QErrorMessage::metaObject +24 QErrorMessage::qt_metacast +32 QErrorMessage::qt_metacall +40 QErrorMessage::~QErrorMessage +48 QErrorMessage::~QErrorMessage +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QErrorMessage::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QErrorMessage::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI13QErrorMessage) +488 QErrorMessage::_ZThn16_N13QErrorMessageD1Ev +496 QErrorMessage::_ZThn16_N13QErrorMessageD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QErrorMessage + size=40 align=8 + base size=40 base align=8 +QErrorMessage (0x7f95532165b0) 0 + vptr=((& QErrorMessage::_ZTV13QErrorMessage) + 16u) + QDialog (0x7f9553216620) 0 + primary-for QErrorMessage (0x7f95532165b0) + QWidget (0x7f95533dfc00) 0 + primary-for QDialog (0x7f9553216620) + QObject (0x7f9553216690) 0 + primary-for QWidget (0x7f95533dfc00) + QPaintDevice (0x7f9553216700) 16 + vptr=((& QErrorMessage::_ZTV13QErrorMessage) + 488u) + +Vtable for QFileDialog +QFileDialog::_ZTV11QFileDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFileDialog) +16 QFileDialog::metaObject +24 QFileDialog::qt_metacast +32 QFileDialog::qt_metacall +40 QFileDialog::~QFileDialog +48 QFileDialog::~QFileDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QFileDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFileDialog::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QFileDialog::done +456 QFileDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11QFileDialog) +488 QFileDialog::_ZThn16_N11QFileDialogD1Ev +496 QFileDialog::_ZThn16_N11QFileDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFileDialog + size=40 align=8 + base size=40 base align=8 +QFileDialog (0x7f95532331c0) 0 + vptr=((& QFileDialog::_ZTV11QFileDialog) + 16u) + QDialog (0x7f9553233230) 0 + primary-for QFileDialog (0x7f95532331c0) + QWidget (0x7f955322b780) 0 + primary-for QDialog (0x7f9553233230) + QObject (0x7f95532332a0) 0 + primary-for QWidget (0x7f955322b780) + QPaintDevice (0x7f9553233310) 16 + vptr=((& QFileDialog::_ZTV11QFileDialog) + 488u) + +Vtable for QFileSystemModel +QFileSystemModel::_ZTV16QFileSystemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QFileSystemModel) +16 QFileSystemModel::metaObject +24 QFileSystemModel::qt_metacast +32 QFileSystemModel::qt_metacall +40 QFileSystemModel::~QFileSystemModel +48 QFileSystemModel::~QFileSystemModel +56 QFileSystemModel::event +64 QObject::eventFilter +72 QFileSystemModel::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFileSystemModel::index +120 QFileSystemModel::parent +128 QFileSystemModel::rowCount +136 QFileSystemModel::columnCount +144 QFileSystemModel::hasChildren +152 QFileSystemModel::data +160 QFileSystemModel::setData +168 QFileSystemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QFileSystemModel::mimeTypes +208 QFileSystemModel::mimeData +216 QFileSystemModel::dropMimeData +224 QFileSystemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QFileSystemModel::fetchMore +272 QFileSystemModel::canFetchMore +280 QFileSystemModel::flags +288 QFileSystemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QFileSystemModel + size=16 align=8 + base size=16 base align=8 +QFileSystemModel (0x7f95532af770) 0 + vptr=((& QFileSystemModel::_ZTV16QFileSystemModel) + 16u) + QAbstractItemModel (0x7f95532af7e0) 0 + primary-for QFileSystemModel (0x7f95532af770) + QObject (0x7f95532af850) 0 + primary-for QAbstractItemModel (0x7f95532af7e0) + +Vtable for QFontDialog +QFontDialog::_ZTV11QFontDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFontDialog) +16 QFontDialog::metaObject +24 QFontDialog::qt_metacast +32 QFontDialog::qt_metacall +40 QFontDialog::~QFontDialog +48 QFontDialog::~QFontDialog +56 QWidget::event +64 QFontDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QFontDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFontDialog::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QFontDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11QFontDialog) +488 QFontDialog::_ZThn16_N11QFontDialogD1Ev +496 QFontDialog::_ZThn16_N11QFontDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFontDialog + size=40 align=8 + base size=40 base align=8 +QFontDialog (0x7f95530f2e70) 0 + vptr=((& QFontDialog::_ZTV11QFontDialog) + 16u) + QDialog (0x7f95530f2ee0) 0 + primary-for QFontDialog (0x7f95530f2e70) + QWidget (0x7f95530fc500) 0 + primary-for QDialog (0x7f95530f2ee0) + QObject (0x7f95530f2f50) 0 + primary-for QWidget (0x7f95530fc500) + QPaintDevice (0x7f9553101000) 16 + vptr=((& QFontDialog::_ZTV11QFontDialog) + 488u) + +Vtable for QLineEdit +QLineEdit::_ZTV9QLineEdit: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QLineEdit) +16 QLineEdit::metaObject +24 QLineEdit::qt_metacast +32 QLineEdit::qt_metacall +40 QLineEdit::~QLineEdit +48 QLineEdit::~QLineEdit +56 QLineEdit::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QLineEdit::sizeHint +136 QLineEdit::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QLineEdit::mousePressEvent +168 QLineEdit::mouseReleaseEvent +176 QLineEdit::mouseDoubleClickEvent +184 QLineEdit::mouseMoveEvent +192 QWidget::wheelEvent +200 QLineEdit::keyPressEvent +208 QWidget::keyReleaseEvent +216 QLineEdit::focusInEvent +224 QLineEdit::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QLineEdit::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QLineEdit::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QLineEdit::dragEnterEvent +312 QLineEdit::dragMoveEvent +320 QLineEdit::dragLeaveEvent +328 QLineEdit::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QLineEdit::changeEvent +368 QWidget::metric +376 QLineEdit::inputMethodEvent +384 QLineEdit::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI9QLineEdit) +464 QLineEdit::_ZThn16_N9QLineEditD1Ev +472 QLineEdit::_ZThn16_N9QLineEditD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QLineEdit + size=40 align=8 + base size=40 base align=8 +QLineEdit (0x7f9553163310) 0 + vptr=((& QLineEdit::_ZTV9QLineEdit) + 16u) + QWidget (0x7f9553126800) 0 + primary-for QLineEdit (0x7f9553163310) + QObject (0x7f9553163380) 0 + primary-for QWidget (0x7f9553126800) + QPaintDevice (0x7f95531633f0) 16 + vptr=((& QLineEdit::_ZTV9QLineEdit) + 464u) + +Vtable for QInputDialog +QInputDialog::_ZTV12QInputDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QInputDialog) +16 QInputDialog::metaObject +24 QInputDialog::qt_metacast +32 QInputDialog::qt_metacall +40 QInputDialog::~QInputDialog +48 QInputDialog::~QInputDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QInputDialog::setVisible +128 QInputDialog::sizeHint +136 QInputDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QInputDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI12QInputDialog) +488 QInputDialog::_ZThn16_N12QInputDialogD1Ev +496 QInputDialog::_ZThn16_N12QInputDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QInputDialog + size=40 align=8 + base size=40 base align=8 +QInputDialog (0x7f95531b5070) 0 + vptr=((& QInputDialog::_ZTV12QInputDialog) + 16u) + QDialog (0x7f95531b50e0) 0 + primary-for QInputDialog (0x7f95531b5070) + QWidget (0x7f95531ae780) 0 + primary-for QDialog (0x7f95531b50e0) + QObject (0x7f95531b5150) 0 + primary-for QWidget (0x7f95531ae780) + QPaintDevice (0x7f95531b51c0) 16 + vptr=((& QInputDialog::_ZTV12QInputDialog) + 488u) + +Vtable for QMessageBox +QMessageBox::_ZTV11QMessageBox: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMessageBox) +16 QMessageBox::metaObject +24 QMessageBox::qt_metacast +32 QMessageBox::qt_metacall +40 QMessageBox::~QMessageBox +48 QMessageBox::~QMessageBox +56 QMessageBox::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QMessageBox::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QMessageBox::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QMessageBox::resizeEvent +272 QMessageBox::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QMessageBox::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QMessageBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11QMessageBox) +488 QMessageBox::_ZThn16_N11QMessageBoxD1Ev +496 QMessageBox::_ZThn16_N11QMessageBoxD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMessageBox + size=40 align=8 + base size=40 base align=8 +QMessageBox (0x7f9553012ee0) 0 + vptr=((& QMessageBox::_ZTV11QMessageBox) + 16u) + QDialog (0x7f9553012f50) 0 + primary-for QMessageBox (0x7f9553012ee0) + QWidget (0x7f955302b100) 0 + primary-for QDialog (0x7f9553012f50) + QObject (0x7f955302c000) 0 + primary-for QWidget (0x7f955302b100) + QPaintDevice (0x7f955302c070) 16 + vptr=((& QMessageBox::_ZTV11QMessageBox) + 488u) + +Vtable for QPageSetupDialog +QPageSetupDialog::_ZTV16QPageSetupDialog: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QPageSetupDialog) +16 QPageSetupDialog::metaObject +24 QPageSetupDialog::qt_metacast +32 QPageSetupDialog::qt_metacall +40 QPageSetupDialog::~QPageSetupDialog +48 QPageSetupDialog::~QPageSetupDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractPageSetupDialog::done +456 QDialog::accept +464 QDialog::reject +472 QPageSetupDialog::exec +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI16QPageSetupDialog) +496 QPageSetupDialog::_ZThn16_N16QPageSetupDialogD1Ev +504 QPageSetupDialog::_ZThn16_N16QPageSetupDialogD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPageSetupDialog + size=40 align=8 + base size=40 base align=8 +QPageSetupDialog (0x7f95530ad850) 0 + vptr=((& QPageSetupDialog::_ZTV16QPageSetupDialog) + 16u) + QAbstractPageSetupDialog (0x7f95530ad8c0) 0 + primary-for QPageSetupDialog (0x7f95530ad850) + QDialog (0x7f95530ad930) 0 + primary-for QAbstractPageSetupDialog (0x7f95530ad8c0) + QWidget (0x7f9553092800) 0 + primary-for QDialog (0x7f95530ad930) + QObject (0x7f95530ad9a0) 0 + primary-for QWidget (0x7f9553092800) + QPaintDevice (0x7f95530ada10) 16 + vptr=((& QPageSetupDialog::_ZTV16QPageSetupDialog) + 496u) + +Vtable for QUnixPrintWidget +QUnixPrintWidget::_ZTV16QUnixPrintWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QUnixPrintWidget) +16 QUnixPrintWidget::metaObject +24 QUnixPrintWidget::qt_metacast +32 QUnixPrintWidget::qt_metacall +40 QUnixPrintWidget::~QUnixPrintWidget +48 QUnixPrintWidget::~QUnixPrintWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI16QUnixPrintWidget) +464 QUnixPrintWidget::_ZThn16_N16QUnixPrintWidgetD1Ev +472 QUnixPrintWidget::_ZThn16_N16QUnixPrintWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QUnixPrintWidget + size=48 align=8 + base size=48 base align=8 +QUnixPrintWidget (0x7f95530e17e0) 0 + vptr=((& QUnixPrintWidget::_ZTV16QUnixPrintWidget) + 16u) + QWidget (0x7f95530e0380) 0 + primary-for QUnixPrintWidget (0x7f95530e17e0) + QObject (0x7f95530e1850) 0 + primary-for QWidget (0x7f95530e0380) + QPaintDevice (0x7f95530e18c0) 16 + vptr=((& QUnixPrintWidget::_ZTV16QUnixPrintWidget) + 464u) + +Vtable for QPrintDialog +QPrintDialog::_ZTV12QPrintDialog: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QPrintDialog) +16 QPrintDialog::metaObject +24 QPrintDialog::qt_metacast +32 QPrintDialog::qt_metacall +40 QPrintDialog::~QPrintDialog +48 QPrintDialog::~QPrintDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QPrintDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QPrintDialog::done +456 QPrintDialog::accept +464 QDialog::reject +472 QPrintDialog::exec +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI12QPrintDialog) +496 QPrintDialog::_ZThn16_N12QPrintDialogD1Ev +504 QPrintDialog::_ZThn16_N12QPrintDialogD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPrintDialog + size=40 align=8 + base size=40 base align=8 +QPrintDialog (0x7f9552ef8700) 0 + vptr=((& QPrintDialog::_ZTV12QPrintDialog) + 16u) + QAbstractPrintDialog (0x7f9552ef8770) 0 + primary-for QPrintDialog (0x7f9552ef8700) + QDialog (0x7f9552ef87e0) 0 + primary-for QAbstractPrintDialog (0x7f9552ef8770) + QWidget (0x7f95530e0a80) 0 + primary-for QDialog (0x7f9552ef87e0) + QObject (0x7f9552ef8850) 0 + primary-for QWidget (0x7f95530e0a80) + QPaintDevice (0x7f9552ef88c0) 16 + vptr=((& QPrintDialog::_ZTV12QPrintDialog) + 496u) + +Vtable for QPrintPreviewDialog +QPrintPreviewDialog::_ZTV19QPrintPreviewDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QPrintPreviewDialog) +16 QPrintPreviewDialog::metaObject +24 QPrintPreviewDialog::qt_metacast +32 QPrintPreviewDialog::qt_metacall +40 QPrintPreviewDialog::~QPrintPreviewDialog +48 QPrintPreviewDialog::~QPrintPreviewDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QPrintPreviewDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QPrintPreviewDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI19QPrintPreviewDialog) +488 QPrintPreviewDialog::_ZThn16_N19QPrintPreviewDialogD1Ev +496 QPrintPreviewDialog::_ZThn16_N19QPrintPreviewDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPrintPreviewDialog + size=48 align=8 + base size=48 base align=8 +QPrintPreviewDialog (0x7f9552f162a0) 0 + vptr=((& QPrintPreviewDialog::_ZTV19QPrintPreviewDialog) + 16u) + QDialog (0x7f9552f16310) 0 + primary-for QPrintPreviewDialog (0x7f9552f162a0) + QWidget (0x7f9552f10480) 0 + primary-for QDialog (0x7f9552f16310) + QObject (0x7f9552f16380) 0 + primary-for QWidget (0x7f9552f10480) + QPaintDevice (0x7f9552f163f0) 16 + vptr=((& QPrintPreviewDialog::_ZTV19QPrintPreviewDialog) + 488u) + +Vtable for QProgressDialog +QProgressDialog::_ZTV15QProgressDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QProgressDialog) +16 QProgressDialog::metaObject +24 QProgressDialog::qt_metacast +32 QProgressDialog::qt_metacall +40 QProgressDialog::~QProgressDialog +48 QProgressDialog::~QProgressDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QProgressDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QProgressDialog::resizeEvent +272 QProgressDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QProgressDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QProgressDialog::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI15QProgressDialog) +488 QProgressDialog::_ZThn16_N15QProgressDialogD1Ev +496 QProgressDialog::_ZThn16_N15QProgressDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QProgressDialog + size=40 align=8 + base size=40 base align=8 +QProgressDialog (0x7f9552f2da10) 0 + vptr=((& QProgressDialog::_ZTV15QProgressDialog) + 16u) + QDialog (0x7f9552f2da80) 0 + primary-for QProgressDialog (0x7f9552f2da10) + QWidget (0x7f9552f10e80) 0 + primary-for QDialog (0x7f9552f2da80) + QObject (0x7f9552f2daf0) 0 + primary-for QWidget (0x7f9552f10e80) + QPaintDevice (0x7f9552f2db60) 16 + vptr=((& QProgressDialog::_ZTV15QProgressDialog) + 488u) + +Vtable for QWizard +QWizard::_ZTV7QWizard: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QWizard) +16 QWizard::metaObject +24 QWizard::qt_metacast +32 QWizard::qt_metacall +40 QWizard::~QWizard +48 QWizard::~QWizard +56 QWizard::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWizard::setVisible +128 QWizard::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWizard::paintEvent +256 QWidget::moveEvent +264 QWizard::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QWizard::done +456 QDialog::accept +464 QDialog::reject +472 QWizard::validateCurrentPage +480 QWizard::nextId +488 QWizard::initializePage +496 QWizard::cleanupPage +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI7QWizard) +520 QWizard::_ZThn16_N7QWizardD1Ev +528 QWizard::_ZThn16_N7QWizardD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWizard + size=40 align=8 + base size=40 base align=8 +QWizard (0x7f9552f53620) 0 + vptr=((& QWizard::_ZTV7QWizard) + 16u) + QDialog (0x7f9552f53690) 0 + primary-for QWizard (0x7f9552f53620) + QWidget (0x7f9552f4d880) 0 + primary-for QDialog (0x7f9552f53690) + QObject (0x7f9552f53700) 0 + primary-for QWidget (0x7f9552f4d880) + QPaintDevice (0x7f9552f53770) 16 + vptr=((& QWizard::_ZTV7QWizard) + 520u) + +Vtable for QWizardPage +QWizardPage::_ZTV11QWizardPage: 68u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QWizardPage) +16 QWizardPage::metaObject +24 QWizardPage::qt_metacast +32 QWizardPage::qt_metacall +40 QWizardPage::~QWizardPage +48 QWizardPage::~QWizardPage +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QWizardPage::initializePage +456 QWizardPage::cleanupPage +464 QWizardPage::validatePage +472 QWizardPage::isComplete +480 QWizardPage::nextId +488 (int (*)(...))-0x00000000000000010 +496 (int (*)(...))(& _ZTI11QWizardPage) +504 QWizardPage::_ZThn16_N11QWizardPageD1Ev +512 QWizardPage::_ZThn16_N11QWizardPageD0Ev +520 QWidget::_ZThn16_NK7QWidget7devTypeEv +528 QWidget::_ZThn16_NK7QWidget11paintEngineEv +536 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWizardPage + size=40 align=8 + base size=40 base align=8 +QWizardPage (0x7f9552faa9a0) 0 + vptr=((& QWizardPage::_ZTV11QWizardPage) + 16u) + QWidget (0x7f9552f7fb80) 0 + primary-for QWizardPage (0x7f9552faa9a0) + QObject (0x7f9552faaa10) 0 + primary-for QWidget (0x7f9552f7fb80) + QPaintDevice (0x7f9552faaa80) 16 + vptr=((& QWizardPage::_ZTV11QWizardPage) + 504u) + +Vtable for QKeyEventTransition +QKeyEventTransition::_ZTV19QKeyEventTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QKeyEventTransition) +16 QKeyEventTransition::metaObject +24 QKeyEventTransition::qt_metacast +32 QKeyEventTransition::qt_metacall +40 QKeyEventTransition::~QKeyEventTransition +48 QKeyEventTransition::~QKeyEventTransition +56 QEventTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QKeyEventTransition::eventTest +120 QKeyEventTransition::onTransition + +Class QKeyEventTransition + size=16 align=8 + base size=16 base align=8 +QKeyEventTransition (0x7f9552fe34d0) 0 + vptr=((& QKeyEventTransition::_ZTV19QKeyEventTransition) + 16u) + QEventTransition (0x7f9552fe3540) 0 + primary-for QKeyEventTransition (0x7f9552fe34d0) + QAbstractTransition (0x7f9552fe35b0) 0 + primary-for QEventTransition (0x7f9552fe3540) + QObject (0x7f9552fe3620) 0 + primary-for QAbstractTransition (0x7f9552fe35b0) + +Vtable for QMouseEventTransition +QMouseEventTransition::_ZTV21QMouseEventTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QMouseEventTransition) +16 QMouseEventTransition::metaObject +24 QMouseEventTransition::qt_metacast +32 QMouseEventTransition::qt_metacall +40 QMouseEventTransition::~QMouseEventTransition +48 QMouseEventTransition::~QMouseEventTransition +56 QEventTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMouseEventTransition::eventTest +120 QMouseEventTransition::onTransition + +Class QMouseEventTransition + size=16 align=8 + base size=16 base align=8 +QMouseEventTransition (0x7f9552df6f50) 0 + vptr=((& QMouseEventTransition::_ZTV21QMouseEventTransition) + 16u) + QEventTransition (0x7f9552dfd000) 0 + primary-for QMouseEventTransition (0x7f9552df6f50) + QAbstractTransition (0x7f9552dfd070) 0 + primary-for QEventTransition (0x7f9552dfd000) + QObject (0x7f9552dfd0e0) 0 + primary-for QAbstractTransition (0x7f9552dfd070) + +Vtable for QBitmap +QBitmap::_ZTV7QBitmap: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QBitmap) +16 QBitmap::~QBitmap +24 QBitmap::~QBitmap +32 QPixmap::devType +40 QPixmap::paintEngine +48 QPixmap::metric + +Class QBitmap + size=24 align=8 + base size=24 base align=8 +QBitmap (0x7f9552e13a10) 0 + vptr=((& QBitmap::_ZTV7QBitmap) + 16u) + QPixmap (0x7f9552e13a80) 0 + primary-for QBitmap (0x7f9552e13a10) + QPaintDevice (0x7f9552e13af0) 0 + primary-for QPixmap (0x7f9552e13a80) + +Vtable for QIconEngine +QIconEngine::_ZTV11QIconEngine: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QIconEngine) +16 QIconEngine::~QIconEngine +24 QIconEngine::~QIconEngine +32 __cxa_pure_virtual +40 QIconEngine::actualSize +48 QIconEngine::pixmap +56 QIconEngine::addPixmap +64 QIconEngine::addFile + +Class QIconEngine + size=8 align=8 + base size=8 base align=8 +QIconEngine (0x7f9552e458c0) 0 nearly-empty + vptr=((& QIconEngine::_ZTV11QIconEngine) + 16u) + +Class QIconEngineV2::AvailableSizesArgument + size=16 align=8 + base size=16 base align=8 +QIconEngineV2::AvailableSizesArgument (0x7f9552e51070) 0 + +Vtable for QIconEngineV2 +QIconEngineV2::_ZTV13QIconEngineV2: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QIconEngineV2) +16 QIconEngineV2::~QIconEngineV2 +24 QIconEngineV2::~QIconEngineV2 +32 __cxa_pure_virtual +40 QIconEngine::actualSize +48 QIconEngine::pixmap +56 QIconEngine::addPixmap +64 QIconEngine::addFile +72 QIconEngineV2::key +80 QIconEngineV2::clone +88 QIconEngineV2::read +96 QIconEngineV2::write +104 QIconEngineV2::virtual_hook + +Class QIconEngineV2 + size=8 align=8 + base size=8 base align=8 +QIconEngineV2 (0x7f9552e45e70) 0 nearly-empty + vptr=((& QIconEngineV2::_ZTV13QIconEngineV2) + 16u) + QIconEngine (0x7f9552e45ee0) 0 nearly-empty + primary-for QIconEngineV2 (0x7f9552e45e70) + +Vtable for QIconEngineFactoryInterface +QIconEngineFactoryInterface::_ZTV27QIconEngineFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QIconEngineFactoryInterface) +16 QIconEngineFactoryInterface::~QIconEngineFactoryInterface +24 QIconEngineFactoryInterface::~QIconEngineFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QIconEngineFactoryInterface + size=8 align=8 + base size=8 base align=8 +QIconEngineFactoryInterface (0x7f9552e51850) 0 nearly-empty + vptr=((& QIconEngineFactoryInterface::_ZTV27QIconEngineFactoryInterface) + 16u) + QFactoryInterface (0x7f9552e518c0) 0 nearly-empty + primary-for QIconEngineFactoryInterface (0x7f9552e51850) + +Vtable for QIconEnginePlugin +QIconEnginePlugin::_ZTV17QIconEnginePlugin: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QIconEnginePlugin) +16 QIconEnginePlugin::metaObject +24 QIconEnginePlugin::qt_metacast +32 QIconEnginePlugin::qt_metacall +40 QIconEnginePlugin::~QIconEnginePlugin +48 QIconEnginePlugin::~QIconEnginePlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI17QIconEnginePlugin) +144 QIconEnginePlugin::_ZThn16_N17QIconEnginePluginD1Ev +152 QIconEnginePlugin::_ZThn16_N17QIconEnginePluginD0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QIconEnginePlugin + size=24 align=8 + base size=24 base align=8 +QIconEnginePlugin (0x7f9552e4bf80) 0 + vptr=((& QIconEnginePlugin::_ZTV17QIconEnginePlugin) + 16u) + QObject (0x7f9552e851c0) 0 + primary-for QIconEnginePlugin (0x7f9552e4bf80) + QIconEngineFactoryInterface (0x7f9552e85230) 16 nearly-empty + vptr=((& QIconEnginePlugin::_ZTV17QIconEnginePlugin) + 144u) + QFactoryInterface (0x7f9552e852a0) 16 nearly-empty + primary-for QIconEngineFactoryInterface (0x7f9552e85230) + +Vtable for QIconEngineFactoryInterfaceV2 +QIconEngineFactoryInterfaceV2::_ZTV29QIconEngineFactoryInterfaceV2: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI29QIconEngineFactoryInterfaceV2) +16 QIconEngineFactoryInterfaceV2::~QIconEngineFactoryInterfaceV2 +24 QIconEngineFactoryInterfaceV2::~QIconEngineFactoryInterfaceV2 +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QIconEngineFactoryInterfaceV2 + size=8 align=8 + base size=8 base align=8 +QIconEngineFactoryInterfaceV2 (0x7f9552e99150) 0 nearly-empty + vptr=((& QIconEngineFactoryInterfaceV2::_ZTV29QIconEngineFactoryInterfaceV2) + 16u) + QFactoryInterface (0x7f9552e991c0) 0 nearly-empty + primary-for QIconEngineFactoryInterfaceV2 (0x7f9552e99150) + +Vtable for QIconEnginePluginV2 +QIconEnginePluginV2::_ZTV19QIconEnginePluginV2: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QIconEnginePluginV2) +16 QIconEnginePluginV2::metaObject +24 QIconEnginePluginV2::qt_metacast +32 QIconEnginePluginV2::qt_metacall +40 QIconEnginePluginV2::~QIconEnginePluginV2 +48 QIconEnginePluginV2::~QIconEnginePluginV2 +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI19QIconEnginePluginV2) +144 QIconEnginePluginV2::_ZThn16_N19QIconEnginePluginV2D1Ev +152 QIconEnginePluginV2::_ZThn16_N19QIconEnginePluginV2D0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QIconEnginePluginV2 + size=24 align=8 + base size=24 base align=8 +QIconEnginePluginV2 (0x7f9552ea3000) 0 + vptr=((& QIconEnginePluginV2::_ZTV19QIconEnginePluginV2) + 16u) + QObject (0x7f9552e99c40) 0 + primary-for QIconEnginePluginV2 (0x7f9552ea3000) + QIconEngineFactoryInterfaceV2 (0x7f9552e99cb0) 16 nearly-empty + vptr=((& QIconEnginePluginV2::_ZTV19QIconEnginePluginV2) + 144u) + QFactoryInterface (0x7f9552e99d20) 16 nearly-empty + primary-for QIconEngineFactoryInterfaceV2 (0x7f9552e99cb0) + +Vtable for QImageIOHandler +QImageIOHandler::_ZTV15QImageIOHandler: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QImageIOHandler) +16 QImageIOHandler::~QImageIOHandler +24 QImageIOHandler::~QImageIOHandler +32 QImageIOHandler::name +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QImageIOHandler::write +64 QImageIOHandler::option +72 QImageIOHandler::setOption +80 QImageIOHandler::supportsOption +88 QImageIOHandler::jumpToNextImage +96 QImageIOHandler::jumpToImage +104 QImageIOHandler::loopCount +112 QImageIOHandler::imageCount +120 QImageIOHandler::nextImageDelay +128 QImageIOHandler::currentImageNumber +136 QImageIOHandler::currentImageRect + +Class QImageIOHandler + size=16 align=8 + base size=16 base align=8 +QImageIOHandler (0x7f9552eabbd0) 0 + vptr=((& QImageIOHandler::_ZTV15QImageIOHandler) + 16u) + +Vtable for QImageIOHandlerFactoryInterface +QImageIOHandlerFactoryInterface::_ZTV31QImageIOHandlerFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI31QImageIOHandlerFactoryInterface) +16 QImageIOHandlerFactoryInterface::~QImageIOHandlerFactoryInterface +24 QImageIOHandlerFactoryInterface::~QImageIOHandlerFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QImageIOHandlerFactoryInterface + size=8 align=8 + base size=8 base align=8 +QImageIOHandlerFactoryInterface (0x7f9552ec89a0) 0 nearly-empty + vptr=((& QImageIOHandlerFactoryInterface::_ZTV31QImageIOHandlerFactoryInterface) + 16u) + QFactoryInterface (0x7f9552ec8a10) 0 nearly-empty + primary-for QImageIOHandlerFactoryInterface (0x7f9552ec89a0) + +Vtable for QImageIOPlugin +QImageIOPlugin::_ZTV14QImageIOPlugin: 23u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QImageIOPlugin) +16 QImageIOPlugin::metaObject +24 QImageIOPlugin::qt_metacast +32 QImageIOPlugin::qt_metacall +40 QImageIOPlugin::~QImageIOPlugin +48 QImageIOPlugin::~QImageIOPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 (int (*)(...))-0x00000000000000010 +144 (int (*)(...))(& _ZTI14QImageIOPlugin) +152 QImageIOPlugin::_ZThn16_N14QImageIOPluginD1Ev +160 QImageIOPlugin::_ZThn16_N14QImageIOPluginD0Ev +168 __cxa_pure_virtual +176 __cxa_pure_virtual + +Class QImageIOPlugin + size=24 align=8 + base size=24 base align=8 +QImageIOPlugin (0x7f9552ecec00) 0 + vptr=((& QImageIOPlugin::_ZTV14QImageIOPlugin) + 16u) + QObject (0x7f9552ed83f0) 0 + primary-for QImageIOPlugin (0x7f9552ecec00) + QImageIOHandlerFactoryInterface (0x7f9552ed8460) 16 nearly-empty + vptr=((& QImageIOPlugin::_ZTV14QImageIOPlugin) + 152u) + QFactoryInterface (0x7f9552ed84d0) 16 nearly-empty + primary-for QImageIOHandlerFactoryInterface (0x7f9552ed8460) + +Class QImageReader + size=8 align=8 + base size=8 base align=8 +QImageReader (0x7f9552d2d4d0) 0 + +Class QImageWriter + size=8 align=8 + base size=8 base align=8 +QImageWriter (0x7f9552d2dee0) 0 + +Vtable for QMovie +QMovie::_ZTV6QMovie: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QMovie) +16 QMovie::metaObject +24 QMovie::qt_metacast +32 QMovie::qt_metacall +40 QMovie::~QMovie +48 QMovie::~QMovie +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QMovie + size=16 align=8 + base size=16 base align=8 +QMovie (0x7f9552d43770) 0 + vptr=((& QMovie::_ZTV6QMovie) + 16u) + QObject (0x7f9552d437e0) 0 + primary-for QMovie (0x7f9552d43770) + +Vtable for QPicture +QPicture::_ZTV8QPicture: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QPicture) +16 QPicture::~QPicture +24 QPicture::~QPicture +32 QPicture::devType +40 QPicture::paintEngine +48 QPicture::metric +56 QPicture::setData + +Class QPicture + size=24 align=8 + base size=24 base align=8 +QPicture (0x7f9552d887e0) 0 + vptr=((& QPicture::_ZTV8QPicture) + 16u) + QPaintDevice (0x7f9552d88850) 0 + primary-for QPicture (0x7f9552d887e0) + +Class QPictureIO + size=8 align=8 + base size=8 base align=8 +QPictureIO (0x7f9552dab310) 0 + +Vtable for QPictureFormatInterface +QPictureFormatInterface::_ZTV23QPictureFormatInterface: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QPictureFormatInterface) +16 QPictureFormatInterface::~QPictureFormatInterface +24 QPictureFormatInterface::~QPictureFormatInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual + +Class QPictureFormatInterface + size=8 align=8 + base size=8 base align=8 +QPictureFormatInterface (0x7f9552dab930) 0 nearly-empty + vptr=((& QPictureFormatInterface::_ZTV23QPictureFormatInterface) + 16u) + QFactoryInterface (0x7f9552dab9a0) 0 nearly-empty + primary-for QPictureFormatInterface (0x7f9552dab930) + +Vtable for QPictureFormatPlugin +QPictureFormatPlugin::_ZTV20QPictureFormatPlugin: 26u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QPictureFormatPlugin) +16 QPictureFormatPlugin::metaObject +24 QPictureFormatPlugin::qt_metacast +32 QPictureFormatPlugin::qt_metacall +40 QPictureFormatPlugin::~QPictureFormatPlugin +48 QPictureFormatPlugin::~QPictureFormatPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 QPictureFormatPlugin::loadPicture +128 QPictureFormatPlugin::savePicture +136 __cxa_pure_virtual +144 (int (*)(...))-0x00000000000000010 +152 (int (*)(...))(& _ZTI20QPictureFormatPlugin) +160 QPictureFormatPlugin::_ZThn16_N20QPictureFormatPluginD1Ev +168 QPictureFormatPlugin::_ZThn16_N20QPictureFormatPluginD0Ev +176 __cxa_pure_virtual +184 QPictureFormatPlugin::_ZThn16_N20QPictureFormatPlugin11loadPictureERK7QStringS2_P8QPicture +192 QPictureFormatPlugin::_ZThn16_N20QPictureFormatPlugin11savePictureERK7QStringS2_RK8QPicture +200 __cxa_pure_virtual + +Class QPictureFormatPlugin + size=24 align=8 + base size=24 base align=8 +QPictureFormatPlugin (0x7f9552dc6300) 0 + vptr=((& QPictureFormatPlugin::_ZTV20QPictureFormatPlugin) + 16u) + QObject (0x7f9552dc7310) 0 + primary-for QPictureFormatPlugin (0x7f9552dc6300) + QPictureFormatInterface (0x7f9552dc7380) 16 nearly-empty + vptr=((& QPictureFormatPlugin::_ZTV20QPictureFormatPlugin) + 160u) + QFactoryInterface (0x7f9552dc73f0) 16 nearly-empty + primary-for QPictureFormatInterface (0x7f9552dc7380) + +Class QPixmapCache::Key + size=8 align=8 + base size=8 base align=8 +QPixmapCache::Key (0x7f9552dd8310) 0 + +Class QPixmapCache + size=1 align=1 + base size=0 base align=1 +QPixmapCache (0x7f9552dd82a0) 0 empty + +Vtable for QGraphicsEffect +QGraphicsEffect::_ZTV15QGraphicsEffect: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QGraphicsEffect) +16 QGraphicsEffect::metaObject +24 QGraphicsEffect::qt_metacast +32 QGraphicsEffect::qt_metacall +40 QGraphicsEffect::~QGraphicsEffect +48 QGraphicsEffect::~QGraphicsEffect +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsEffect::boundingRectFor +120 __cxa_pure_virtual +128 QGraphicsEffect::sourceChanged + +Class QGraphicsEffect + size=16 align=8 + base size=16 base align=8 +QGraphicsEffect (0x7f9552de0150) 0 + vptr=((& QGraphicsEffect::_ZTV15QGraphicsEffect) + 16u) + QObject (0x7f9552de01c0) 0 + primary-for QGraphicsEffect (0x7f9552de0150) + +Vtable for QGraphicsColorizeEffect +QGraphicsColorizeEffect::_ZTV23QGraphicsColorizeEffect: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QGraphicsColorizeEffect) +16 QGraphicsColorizeEffect::metaObject +24 QGraphicsColorizeEffect::qt_metacast +32 QGraphicsColorizeEffect::qt_metacall +40 QGraphicsColorizeEffect::~QGraphicsColorizeEffect +48 QGraphicsColorizeEffect::~QGraphicsColorizeEffect +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsEffect::boundingRectFor +120 QGraphicsColorizeEffect::draw +128 QGraphicsEffect::sourceChanged + +Class QGraphicsColorizeEffect + size=16 align=8 + base size=16 base align=8 +QGraphicsColorizeEffect (0x7f9552c27c40) 0 + vptr=((& QGraphicsColorizeEffect::_ZTV23QGraphicsColorizeEffect) + 16u) + QGraphicsEffect (0x7f9552c27cb0) 0 + primary-for QGraphicsColorizeEffect (0x7f9552c27c40) + QObject (0x7f9552c27d20) 0 + primary-for QGraphicsEffect (0x7f9552c27cb0) + +Vtable for QGraphicsBlurEffect +QGraphicsBlurEffect::_ZTV19QGraphicsBlurEffect: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QGraphicsBlurEffect) +16 QGraphicsBlurEffect::metaObject +24 QGraphicsBlurEffect::qt_metacast +32 QGraphicsBlurEffect::qt_metacall +40 QGraphicsBlurEffect::~QGraphicsBlurEffect +48 QGraphicsBlurEffect::~QGraphicsBlurEffect +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsBlurEffect::boundingRectFor +120 QGraphicsBlurEffect::draw +128 QGraphicsEffect::sourceChanged + +Class QGraphicsBlurEffect + size=16 align=8 + base size=16 base align=8 +QGraphicsBlurEffect (0x7f9552c565b0) 0 + vptr=((& QGraphicsBlurEffect::_ZTV19QGraphicsBlurEffect) + 16u) + QGraphicsEffect (0x7f9552c56620) 0 + primary-for QGraphicsBlurEffect (0x7f9552c565b0) + QObject (0x7f9552c56690) 0 + primary-for QGraphicsEffect (0x7f9552c56620) + +Vtable for QGraphicsDropShadowEffect +QGraphicsDropShadowEffect::_ZTV25QGraphicsDropShadowEffect: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QGraphicsDropShadowEffect) +16 QGraphicsDropShadowEffect::metaObject +24 QGraphicsDropShadowEffect::qt_metacast +32 QGraphicsDropShadowEffect::qt_metacall +40 QGraphicsDropShadowEffect::~QGraphicsDropShadowEffect +48 QGraphicsDropShadowEffect::~QGraphicsDropShadowEffect +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsDropShadowEffect::boundingRectFor +120 QGraphicsDropShadowEffect::draw +128 QGraphicsEffect::sourceChanged + +Class QGraphicsDropShadowEffect + size=16 align=8 + base size=16 base align=8 +QGraphicsDropShadowEffect (0x7f9552cb50e0) 0 + vptr=((& QGraphicsDropShadowEffect::_ZTV25QGraphicsDropShadowEffect) + 16u) + QGraphicsEffect (0x7f9552cb5150) 0 + primary-for QGraphicsDropShadowEffect (0x7f9552cb50e0) + QObject (0x7f9552cb51c0) 0 + primary-for QGraphicsEffect (0x7f9552cb5150) + +Vtable for QGraphicsOpacityEffect +QGraphicsOpacityEffect::_ZTV22QGraphicsOpacityEffect: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QGraphicsOpacityEffect) +16 QGraphicsOpacityEffect::metaObject +24 QGraphicsOpacityEffect::qt_metacast +32 QGraphicsOpacityEffect::qt_metacall +40 QGraphicsOpacityEffect::~QGraphicsOpacityEffect +48 QGraphicsOpacityEffect::~QGraphicsOpacityEffect +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsEffect::boundingRectFor +120 QGraphicsOpacityEffect::draw +128 QGraphicsEffect::sourceChanged + +Class QGraphicsOpacityEffect + size=16 align=8 + base size=16 base align=8 +QGraphicsOpacityEffect (0x7f9552cd45b0) 0 + vptr=((& QGraphicsOpacityEffect::_ZTV22QGraphicsOpacityEffect) + 16u) + QGraphicsEffect (0x7f9552cd4620) 0 + primary-for QGraphicsOpacityEffect (0x7f9552cd45b0) + QObject (0x7f9552cd4690) 0 + primary-for QGraphicsEffect (0x7f9552cd4620) + +Class QVFbHeader + size=1088 align=8 + base size=1088 base align=8 +QVFbHeader (0x7f9552ce4ee0) 0 + +Class QVFbKeyData + size=12 align=4 + base size=12 base align=4 +QVFbKeyData (0x7f9552ce4f50) 0 + +Vtable for QWSEmbedWidget +QWSEmbedWidget::_ZTV14QWSEmbedWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QWSEmbedWidget) +16 QWSEmbedWidget::metaObject +24 QWSEmbedWidget::qt_metacast +32 QWSEmbedWidget::qt_metacall +40 QWSEmbedWidget::~QWSEmbedWidget +48 QWSEmbedWidget::~QWSEmbedWidget +56 QWidget::event +64 QWSEmbedWidget::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWSEmbedWidget::moveEvent +264 QWSEmbedWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWSEmbedWidget::showEvent +344 QWSEmbedWidget::hideEvent +352 QWidget::x11Event +360 QWSEmbedWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI14QWSEmbedWidget) +464 QWSEmbedWidget::_ZThn16_N14QWSEmbedWidgetD1Ev +472 QWSEmbedWidget::_ZThn16_N14QWSEmbedWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWSEmbedWidget + size=40 align=8 + base size=40 base align=8 +QWSEmbedWidget (0x7f9552aef000) 0 + vptr=((& QWSEmbedWidget::_ZTV14QWSEmbedWidget) + 16u) + QWidget (0x7f9552ce2900) 0 + primary-for QWSEmbedWidget (0x7f9552aef000) + QObject (0x7f9552aef070) 0 + primary-for QWidget (0x7f9552ce2900) + QPaintDevice (0x7f9552aef0e0) 16 + vptr=((& QWSEmbedWidget::_ZTV14QWSEmbedWidget) + 464u) + +Class QColormap + size=8 align=8 + base size=8 base align=8 +QColormap (0x7f9552b064d0) 0 + +Class QTileRules + size=8 align=4 + base size=8 base align=4 +QTileRules (0x7f9552b06cb0) 0 + +Class QDrawPixmaps::Data + size=80 align=8 + base size=80 base align=8 +QDrawPixmaps::Data (0x7f9552b1ed20) 0 + +Class QPainter + size=8 align=8 + base size=8 base align=8 +QPainter (0x7f9552b1ee00) 0 + +Class QTextItem + size=1 align=1 + base size=0 base align=1 +QTextItem (0x7f955294c8c0) 0 empty + +Vtable for QPaintEngine +QPaintEngine::_ZTV12QPaintEngine: 24u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QPaintEngine) +16 QPaintEngine::~QPaintEngine +24 QPaintEngine::~QPaintEngine +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QPaintEngine::drawRects +64 QPaintEngine::drawRects +72 QPaintEngine::drawLines +80 QPaintEngine::drawLines +88 QPaintEngine::drawEllipse +96 QPaintEngine::drawEllipse +104 QPaintEngine::drawPath +112 QPaintEngine::drawPoints +120 QPaintEngine::drawPoints +128 QPaintEngine::drawPolygon +136 QPaintEngine::drawPolygon +144 __cxa_pure_virtual +152 QPaintEngine::drawTextItem +160 QPaintEngine::drawTiledPixmap +168 QPaintEngine::drawImage +176 QPaintEngine::coordinateOffset +184 __cxa_pure_virtual + +Class QPaintEngine + size=32 align=8 + base size=32 base align=8 +QPaintEngine (0x7f955294cee0) 0 + vptr=((& QPaintEngine::_ZTV12QPaintEngine) + 16u) + +Class QPaintEngineState + size=4 align=4 + base size=4 base align=4 +QPaintEngineState (0x7f9552999b60) 0 + +Vtable for QPrinter +QPrinter::_ZTV8QPrinter: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QPrinter) +16 QPrinter::~QPrinter +24 QPrinter::~QPrinter +32 QPrinter::devType +40 QPrinter::paintEngine +48 QPrinter::metric + +Class QPrinter + size=24 align=8 + base size=24 base align=8 +QPrinter (0x7f9552864e70) 0 + vptr=((& QPrinter::_ZTV8QPrinter) + 16u) + QPaintDevice (0x7f9552864ee0) 0 + primary-for QPrinter (0x7f9552864e70) + +Vtable for QPrintEngine +QPrintEngine::_ZTV12QPrintEngine: 10u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QPrintEngine) +16 QPrintEngine::~QPrintEngine +24 QPrintEngine::~QPrintEngine +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual + +Class QPrintEngine + size=8 align=8 + base size=8 base align=8 +QPrintEngine (0x7f95528cd540) 0 nearly-empty + vptr=((& QPrintEngine::_ZTV12QPrintEngine) + 16u) + +Class QPrinterInfo + size=8 align=8 + base size=8 base align=8 +QPrinterInfo (0x7f95528da2a0) 0 + +Class QStylePainter + size=24 align=8 + base size=24 base align=8 +QStylePainter (0x7f95528e09a0) 0 + QPainter (0x7f95528e0a10) 0 + +Vtable for QAbstractProxyModel +QAbstractProxyModel::_ZTV19QAbstractProxyModel: 47u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractProxyModel) +16 QAbstractProxyModel::metaObject +24 QAbstractProxyModel::qt_metacast +32 QAbstractProxyModel::qt_metacall +40 QAbstractProxyModel::~QAbstractProxyModel +48 QAbstractProxyModel::~QAbstractProxyModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractItemModel::hasChildren +152 QAbstractProxyModel::data +160 QAbstractProxyModel::setData +168 QAbstractProxyModel::headerData +176 QAbstractProxyModel::setHeaderData +184 QAbstractProxyModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractItemModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractProxyModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractProxyModel::submit +328 QAbstractProxyModel::revert +336 QAbstractProxyModel::setSourceModel +344 __cxa_pure_virtual +352 __cxa_pure_virtual +360 QAbstractProxyModel::mapSelectionToSource +368 QAbstractProxyModel::mapSelectionFromSource + +Class QAbstractProxyModel + size=16 align=8 + base size=16 base align=8 +QAbstractProxyModel (0x7f955270eee0) 0 + vptr=((& QAbstractProxyModel::_ZTV19QAbstractProxyModel) + 16u) + QAbstractItemModel (0x7f955270ef50) 0 + primary-for QAbstractProxyModel (0x7f955270eee0) + QObject (0x7f9552715000) 0 + primary-for QAbstractItemModel (0x7f955270ef50) + +Vtable for QColumnView +QColumnView::_ZTV11QColumnView: 104u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QColumnView) +16 QColumnView::metaObject +24 QColumnView::qt_metacast +32 QColumnView::qt_metacall +40 QColumnView::~QColumnView +48 QColumnView::~QColumnView +56 QAbstractItemView::event +64 QObject::eventFilter +72 QAbstractItemView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QColumnView::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QAbstractItemView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QAbstractItemView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractScrollArea::paintEvent +256 QWidget::moveEvent +264 QColumnView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QColumnView::scrollContentsBy +464 QColumnView::setModel +472 QColumnView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QColumnView::visualRect +496 QColumnView::scrollTo +504 QColumnView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QAbstractItemView::reset +536 QColumnView::setRootIndex +544 QAbstractItemView::doItemsLayout +552 QColumnView::selectAll +560 QAbstractItemView::dataChanged +568 QColumnView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QAbstractItemView::selectionChanged +592 QColumnView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QAbstractItemView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QColumnView::moveCursor +688 QColumnView::horizontalOffset +696 QColumnView::verticalOffset +704 QColumnView::isIndexHidden +712 QColumnView::setSelection +720 QColumnView::visualRegionForSelection +728 QAbstractItemView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 QColumnView::createColumn +776 (int (*)(...))-0x00000000000000010 +784 (int (*)(...))(& _ZTI11QColumnView) +792 QColumnView::_ZThn16_N11QColumnViewD1Ev +800 QColumnView::_ZThn16_N11QColumnViewD0Ev +808 QWidget::_ZThn16_NK7QWidget7devTypeEv +816 QWidget::_ZThn16_NK7QWidget11paintEngineEv +824 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QColumnView + size=40 align=8 + base size=40 base align=8 +QColumnView (0x7f955272baf0) 0 + vptr=((& QColumnView::_ZTV11QColumnView) + 16u) + QAbstractItemView (0x7f955272bb60) 0 + primary-for QColumnView (0x7f955272baf0) + QAbstractScrollArea (0x7f955272bbd0) 0 + primary-for QAbstractItemView (0x7f955272bb60) + QFrame (0x7f955272bc40) 0 + primary-for QAbstractScrollArea (0x7f955272bbd0) + QWidget (0x7f9552730200) 0 + primary-for QFrame (0x7f955272bc40) + QObject (0x7f955272bcb0) 0 + primary-for QWidget (0x7f9552730200) + QPaintDevice (0x7f955272bd20) 16 + vptr=((& QColumnView::_ZTV11QColumnView) + 792u) + +Vtable for QDataWidgetMapper +QDataWidgetMapper::_ZTV17QDataWidgetMapper: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QDataWidgetMapper) +16 QDataWidgetMapper::metaObject +24 QDataWidgetMapper::qt_metacast +32 QDataWidgetMapper::qt_metacall +40 QDataWidgetMapper::~QDataWidgetMapper +48 QDataWidgetMapper::~QDataWidgetMapper +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QDataWidgetMapper::setCurrentIndex + +Class QDataWidgetMapper + size=16 align=8 + base size=16 base align=8 +QDataWidgetMapper (0x7f9552751c40) 0 + vptr=((& QDataWidgetMapper::_ZTV17QDataWidgetMapper) + 16u) + QObject (0x7f9552751cb0) 0 + primary-for QDataWidgetMapper (0x7f9552751c40) + +Vtable for QFileIconProvider +QFileIconProvider::_ZTV17QFileIconProvider: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QFileIconProvider) +16 QFileIconProvider::~QFileIconProvider +24 QFileIconProvider::~QFileIconProvider +32 QFileIconProvider::icon +40 QFileIconProvider::icon +48 QFileIconProvider::type + +Class QFileIconProvider + size=16 align=8 + base size=16 base align=8 +QFileIconProvider (0x7f9552771700) 0 + vptr=((& QFileIconProvider::_ZTV17QFileIconProvider) + 16u) + +Vtable for QDirModel +QDirModel::_ZTV9QDirModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QDirModel) +16 QDirModel::metaObject +24 QDirModel::qt_metacast +32 QDirModel::qt_metacall +40 QDirModel::~QDirModel +48 QDirModel::~QDirModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QDirModel::index +120 QDirModel::parent +128 QDirModel::rowCount +136 QDirModel::columnCount +144 QDirModel::hasChildren +152 QDirModel::data +160 QDirModel::setData +168 QDirModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QDirModel::mimeTypes +208 QDirModel::mimeData +216 QDirModel::dropMimeData +224 QDirModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QDirModel::flags +288 QDirModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QDirModel + size=16 align=8 + base size=16 base align=8 +QDirModel (0x7f9552785380) 0 + vptr=((& QDirModel::_ZTV9QDirModel) + 16u) + QAbstractItemModel (0x7f95527853f0) 0 + primary-for QDirModel (0x7f9552785380) + QObject (0x7f9552785460) 0 + primary-for QAbstractItemModel (0x7f95527853f0) + +Vtable for QHeaderView +QHeaderView::_ZTV11QHeaderView: 105u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QHeaderView) +16 QHeaderView::metaObject +24 QHeaderView::qt_metacast +32 QHeaderView::qt_metacall +40 QHeaderView::~QHeaderView +48 QHeaderView::~QHeaderView +56 QHeaderView::event +64 QObject::eventFilter +72 QAbstractItemView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QHeaderView::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QHeaderView::mousePressEvent +168 QHeaderView::mouseReleaseEvent +176 QHeaderView::mouseDoubleClickEvent +184 QHeaderView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QHeaderView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QHeaderView::viewportEvent +456 QHeaderView::scrollContentsBy +464 QHeaderView::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QHeaderView::visualRect +496 QHeaderView::scrollTo +504 QHeaderView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QHeaderView::reset +536 QAbstractItemView::setRootIndex +544 QHeaderView::doItemsLayout +552 QAbstractItemView::selectAll +560 QHeaderView::dataChanged +568 QHeaderView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QAbstractItemView::selectionChanged +592 QHeaderView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QHeaderView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QHeaderView::moveCursor +688 QHeaderView::horizontalOffset +696 QHeaderView::verticalOffset +704 QHeaderView::isIndexHidden +712 QHeaderView::setSelection +720 QHeaderView::visualRegionForSelection +728 QAbstractItemView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 QHeaderView::paintSection +776 QHeaderView::sectionSizeFromContents +784 (int (*)(...))-0x00000000000000010 +792 (int (*)(...))(& _ZTI11QHeaderView) +800 QHeaderView::_ZThn16_N11QHeaderViewD1Ev +808 QHeaderView::_ZThn16_N11QHeaderViewD0Ev +816 QWidget::_ZThn16_NK7QWidget7devTypeEv +824 QWidget::_ZThn16_NK7QWidget11paintEngineEv +832 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QHeaderView + size=40 align=8 + base size=40 base align=8 +QHeaderView (0x7f95527b0620) 0 + vptr=((& QHeaderView::_ZTV11QHeaderView) + 16u) + QAbstractItemView (0x7f95527b0690) 0 + primary-for QHeaderView (0x7f95527b0620) + QAbstractScrollArea (0x7f95527b0700) 0 + primary-for QAbstractItemView (0x7f95527b0690) + QFrame (0x7f95527b0770) 0 + primary-for QAbstractScrollArea (0x7f95527b0700) + QWidget (0x7f955278c980) 0 + primary-for QFrame (0x7f95527b0770) + QObject (0x7f95527b07e0) 0 + primary-for QWidget (0x7f955278c980) + QPaintDevice (0x7f95527b0850) 16 + vptr=((& QHeaderView::_ZTV11QHeaderView) + 800u) + +Vtable for QItemDelegate +QItemDelegate::_ZTV13QItemDelegate: 25u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QItemDelegate) +16 QItemDelegate::metaObject +24 QItemDelegate::qt_metacast +32 QItemDelegate::qt_metacall +40 QItemDelegate::~QItemDelegate +48 QItemDelegate::~QItemDelegate +56 QObject::event +64 QItemDelegate::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QItemDelegate::paint +120 QItemDelegate::sizeHint +128 QItemDelegate::createEditor +136 QItemDelegate::setEditorData +144 QItemDelegate::setModelData +152 QItemDelegate::updateEditorGeometry +160 QItemDelegate::editorEvent +168 QItemDelegate::drawDisplay +176 QItemDelegate::drawDecoration +184 QItemDelegate::drawFocus +192 QItemDelegate::drawCheck + +Class QItemDelegate + size=16 align=8 + base size=16 base align=8 +QItemDelegate (0x7f95525f5230) 0 + vptr=((& QItemDelegate::_ZTV13QItemDelegate) + 16u) + QAbstractItemDelegate (0x7f95525f52a0) 0 + primary-for QItemDelegate (0x7f95525f5230) + QObject (0x7f95525f5310) 0 + primary-for QAbstractItemDelegate (0x7f95525f52a0) + +Vtable for QItemEditorCreatorBase +QItemEditorCreatorBase::_ZTV22QItemEditorCreatorBase: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QItemEditorCreatorBase) +16 QItemEditorCreatorBase::~QItemEditorCreatorBase +24 QItemEditorCreatorBase::~QItemEditorCreatorBase +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QItemEditorCreatorBase + size=8 align=8 + base size=8 base align=8 +QItemEditorCreatorBase (0x7f9552610bd0) 0 nearly-empty + vptr=((& QItemEditorCreatorBase::_ZTV22QItemEditorCreatorBase) + 16u) + +Vtable for QItemEditorFactory +QItemEditorFactory::_ZTV18QItemEditorFactory: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QItemEditorFactory) +16 QItemEditorFactory::~QItemEditorFactory +24 QItemEditorFactory::~QItemEditorFactory +32 QItemEditorFactory::createEditor +40 QItemEditorFactory::valuePropertyName + +Class QItemEditorFactory + size=16 align=8 + base size=16 base align=8 +QItemEditorFactory (0x7f955261ca80) 0 + vptr=((& QItemEditorFactory::_ZTV18QItemEditorFactory) + 16u) + +Vtable for QListWidgetItem +QListWidgetItem::_ZTV15QListWidgetItem: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QListWidgetItem) +16 QListWidgetItem::~QListWidgetItem +24 QListWidgetItem::~QListWidgetItem +32 QListWidgetItem::clone +40 QListWidgetItem::setBackgroundColor +48 QListWidgetItem::data +56 QListWidgetItem::setData +64 QListWidgetItem::operator< +72 QListWidgetItem::read +80 QListWidgetItem::write + +Class QListWidgetItem + size=48 align=8 + base size=44 base align=8 +QListWidgetItem (0x7f9552628d20) 0 + vptr=((& QListWidgetItem::_ZTV15QListWidgetItem) + 16u) + +Vtable for QListWidget +QListWidget::_ZTV11QListWidget: 107u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QListWidget) +16 QListWidget::metaObject +24 QListWidget::qt_metacast +32 QListWidget::qt_metacall +40 QListWidget::~QListWidget +48 QListWidget::~QListWidget +56 QListWidget::event +64 QObject::eventFilter +72 QListView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QListView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QListView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QListView::paintEvent +256 QWidget::moveEvent +264 QListView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QListView::dragMoveEvent +320 QListView::dragLeaveEvent +328 QListWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QListView::scrollContentsBy +464 QListWidget::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QListView::visualRect +496 QListView::scrollTo +504 QListView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QListView::reset +536 QListView::setRootIndex +544 QListView::doItemsLayout +552 QAbstractItemView::selectAll +560 QListView::dataChanged +568 QListView::rowsInserted +576 QListView::rowsAboutToBeRemoved +584 QListView::selectionChanged +592 QListView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QListView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QListView::moveCursor +688 QListView::horizontalOffset +696 QListView::verticalOffset +704 QListView::isIndexHidden +712 QListView::setSelection +720 QListView::visualRegionForSelection +728 QListView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QListView::startDrag +760 QListView::viewOptions +768 QListWidget::mimeTypes +776 QListWidget::mimeData +784 QListWidget::dropMimeData +792 QListWidget::supportedDropActions +800 (int (*)(...))-0x00000000000000010 +808 (int (*)(...))(& _ZTI11QListWidget) +816 QListWidget::_ZThn16_N11QListWidgetD1Ev +824 QListWidget::_ZThn16_N11QListWidgetD0Ev +832 QWidget::_ZThn16_NK7QWidget7devTypeEv +840 QWidget::_ZThn16_NK7QWidget11paintEngineEv +848 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QListWidget + size=40 align=8 + base size=40 base align=8 +QListWidget (0x7f95526bc3f0) 0 + vptr=((& QListWidget::_ZTV11QListWidget) + 16u) + QListView (0x7f95526bc460) 0 + primary-for QListWidget (0x7f95526bc3f0) + QAbstractItemView (0x7f95526bc4d0) 0 + primary-for QListView (0x7f95526bc460) + QAbstractScrollArea (0x7f95526bc540) 0 + primary-for QAbstractItemView (0x7f95526bc4d0) + QFrame (0x7f95526bc5b0) 0 + primary-for QAbstractScrollArea (0x7f95526bc540) + QWidget (0x7f95526b4a00) 0 + primary-for QFrame (0x7f95526bc5b0) + QObject (0x7f95526bc620) 0 + primary-for QWidget (0x7f95526b4a00) + QPaintDevice (0x7f95526bc690) 16 + vptr=((& QListWidget::_ZTV11QListWidget) + 816u) + +Vtable for QProxyModel +QProxyModel::_ZTV11QProxyModel: 43u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QProxyModel) +16 QProxyModel::metaObject +24 QProxyModel::qt_metacast +32 QProxyModel::qt_metacall +40 QProxyModel::~QProxyModel +48 QProxyModel::~QProxyModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QProxyModel::index +120 QProxyModel::parent +128 QProxyModel::rowCount +136 QProxyModel::columnCount +144 QProxyModel::hasChildren +152 QProxyModel::data +160 QProxyModel::setData +168 QProxyModel::headerData +176 QProxyModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QProxyModel::mimeTypes +208 QProxyModel::mimeData +216 QProxyModel::dropMimeData +224 QProxyModel::supportedDropActions +232 QProxyModel::insertRows +240 QProxyModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QProxyModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QProxyModel::flags +288 QProxyModel::sort +296 QAbstractItemModel::buddy +304 QProxyModel::match +312 QProxyModel::span +320 QProxyModel::submit +328 QProxyModel::revert +336 QProxyModel::setModel + +Class QProxyModel + size=16 align=8 + base size=16 base align=8 +QProxyModel (0x7f95524f5850) 0 + vptr=((& QProxyModel::_ZTV11QProxyModel) + 16u) + QAbstractItemModel (0x7f95524f58c0) 0 + primary-for QProxyModel (0x7f95524f5850) + QObject (0x7f95524f5930) 0 + primary-for QAbstractItemModel (0x7f95524f58c0) + +Vtable for QSortFilterProxyModel +QSortFilterProxyModel::_ZTV21QSortFilterProxyModel: 50u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QSortFilterProxyModel) +16 QSortFilterProxyModel::metaObject +24 QSortFilterProxyModel::qt_metacast +32 QSortFilterProxyModel::qt_metacall +40 QSortFilterProxyModel::~QSortFilterProxyModel +48 QSortFilterProxyModel::~QSortFilterProxyModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QSortFilterProxyModel::index +120 QSortFilterProxyModel::parent +128 QSortFilterProxyModel::rowCount +136 QSortFilterProxyModel::columnCount +144 QSortFilterProxyModel::hasChildren +152 QSortFilterProxyModel::data +160 QSortFilterProxyModel::setData +168 QSortFilterProxyModel::headerData +176 QSortFilterProxyModel::setHeaderData +184 QAbstractProxyModel::itemData +192 QAbstractItemModel::setItemData +200 QSortFilterProxyModel::mimeTypes +208 QSortFilterProxyModel::mimeData +216 QSortFilterProxyModel::dropMimeData +224 QSortFilterProxyModel::supportedDropActions +232 QSortFilterProxyModel::insertRows +240 QSortFilterProxyModel::insertColumns +248 QSortFilterProxyModel::removeRows +256 QSortFilterProxyModel::removeColumns +264 QSortFilterProxyModel::fetchMore +272 QSortFilterProxyModel::canFetchMore +280 QSortFilterProxyModel::flags +288 QSortFilterProxyModel::sort +296 QSortFilterProxyModel::buddy +304 QSortFilterProxyModel::match +312 QSortFilterProxyModel::span +320 QAbstractProxyModel::submit +328 QAbstractProxyModel::revert +336 QSortFilterProxyModel::setSourceModel +344 QSortFilterProxyModel::mapToSource +352 QSortFilterProxyModel::mapFromSource +360 QSortFilterProxyModel::mapSelectionToSource +368 QSortFilterProxyModel::mapSelectionFromSource +376 QSortFilterProxyModel::filterAcceptsRow +384 QSortFilterProxyModel::filterAcceptsColumn +392 QSortFilterProxyModel::lessThan + +Class QSortFilterProxyModel + size=16 align=8 + base size=16 base align=8 +QSortFilterProxyModel (0x7f9552517700) 0 + vptr=((& QSortFilterProxyModel::_ZTV21QSortFilterProxyModel) + 16u) + QAbstractProxyModel (0x7f9552517770) 0 + primary-for QSortFilterProxyModel (0x7f9552517700) + QAbstractItemModel (0x7f95525177e0) 0 + primary-for QAbstractProxyModel (0x7f9552517770) + QObject (0x7f9552517850) 0 + primary-for QAbstractItemModel (0x7f95525177e0) + +Vtable for QStandardItem +QStandardItem::_ZTV13QStandardItem: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QStandardItem) +16 QStandardItem::~QStandardItem +24 QStandardItem::~QStandardItem +32 QStandardItem::data +40 QStandardItem::setData +48 QStandardItem::clone +56 QStandardItem::type +64 QStandardItem::read +72 QStandardItem::write +80 QStandardItem::operator< + +Class QStandardItem + size=16 align=8 + base size=16 base align=8 +QStandardItem (0x7f9552548620) 0 + vptr=((& QStandardItem::_ZTV13QStandardItem) + 16u) + +Vtable for QStandardItemModel +QStandardItemModel::_ZTV18QStandardItemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QStandardItemModel) +16 QStandardItemModel::metaObject +24 QStandardItemModel::qt_metacast +32 QStandardItemModel::qt_metacall +40 QStandardItemModel::~QStandardItemModel +48 QStandardItemModel::~QStandardItemModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QStandardItemModel::index +120 QStandardItemModel::parent +128 QStandardItemModel::rowCount +136 QStandardItemModel::columnCount +144 QStandardItemModel::hasChildren +152 QStandardItemModel::data +160 QStandardItemModel::setData +168 QStandardItemModel::headerData +176 QStandardItemModel::setHeaderData +184 QStandardItemModel::itemData +192 QStandardItemModel::setItemData +200 QStandardItemModel::mimeTypes +208 QStandardItemModel::mimeData +216 QStandardItemModel::dropMimeData +224 QStandardItemModel::supportedDropActions +232 QStandardItemModel::insertRows +240 QStandardItemModel::insertColumns +248 QStandardItemModel::removeRows +256 QStandardItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QStandardItemModel::flags +288 QStandardItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QStandardItemModel + size=16 align=8 + base size=16 base align=8 +QStandardItemModel (0x7f95524353f0) 0 + vptr=((& QStandardItemModel::_ZTV18QStandardItemModel) + 16u) + QAbstractItemModel (0x7f9552435460) 0 + primary-for QStandardItemModel (0x7f95524353f0) + QObject (0x7f95524354d0) 0 + primary-for QAbstractItemModel (0x7f9552435460) + +Vtable for QStringListModel +QStringListModel::_ZTV16QStringListModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QStringListModel) +16 QStringListModel::metaObject +24 QStringListModel::qt_metacast +32 QStringListModel::qt_metacall +40 QStringListModel::~QStringListModel +48 QStringListModel::~QStringListModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractListModel::index +120 QAbstractListModel::parent +128 QStringListModel::rowCount +136 QAbstractListModel::columnCount +144 QAbstractListModel::hasChildren +152 QStringListModel::data +160 QStringListModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractListModel::dropMimeData +224 QStringListModel::supportedDropActions +232 QStringListModel::insertRows +240 QAbstractItemModel::insertColumns +248 QStringListModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QStringListModel::flags +288 QStringListModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QStringListModel + size=24 align=8 + base size=24 base align=8 +QStringListModel (0x7f955246ef50) 0 + vptr=((& QStringListModel::_ZTV16QStringListModel) + 16u) + QAbstractListModel (0x7f9552482000) 0 + primary-for QStringListModel (0x7f955246ef50) + QAbstractItemModel (0x7f9552482070) 0 + primary-for QAbstractListModel (0x7f9552482000) + QObject (0x7f95524820e0) 0 + primary-for QAbstractItemModel (0x7f9552482070) + +Vtable for QStyledItemDelegate +QStyledItemDelegate::_ZTV19QStyledItemDelegate: 23u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QStyledItemDelegate) +16 QStyledItemDelegate::metaObject +24 QStyledItemDelegate::qt_metacast +32 QStyledItemDelegate::qt_metacall +40 QStyledItemDelegate::~QStyledItemDelegate +48 QStyledItemDelegate::~QStyledItemDelegate +56 QObject::event +64 QStyledItemDelegate::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QStyledItemDelegate::paint +120 QStyledItemDelegate::sizeHint +128 QStyledItemDelegate::createEditor +136 QStyledItemDelegate::setEditorData +144 QStyledItemDelegate::setModelData +152 QStyledItemDelegate::updateEditorGeometry +160 QStyledItemDelegate::editorEvent +168 QStyledItemDelegate::displayText +176 QStyledItemDelegate::initStyleOption + +Class QStyledItemDelegate + size=16 align=8 + base size=16 base align=8 +QStyledItemDelegate (0x7f95524985b0) 0 + vptr=((& QStyledItemDelegate::_ZTV19QStyledItemDelegate) + 16u) + QAbstractItemDelegate (0x7f9552498620) 0 + primary-for QStyledItemDelegate (0x7f95524985b0) + QObject (0x7f9552498690) 0 + primary-for QAbstractItemDelegate (0x7f9552498620) + +Vtable for QTableView +QTableView::_ZTV10QTableView: 103u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTableView) +16 QTableView::metaObject +24 QTableView::qt_metacast +32 QTableView::qt_metacall +40 QTableView::~QTableView +48 QTableView::~QTableView +56 QAbstractItemView::event +64 QObject::eventFilter +72 QTableView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QAbstractItemView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QAbstractItemView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTableView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QTableView::scrollContentsBy +464 QTableView::setModel +472 QTableView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QTableView::visualRect +496 QTableView::scrollTo +504 QTableView::indexAt +512 QTableView::sizeHintForRow +520 QTableView::sizeHintForColumn +528 QAbstractItemView::reset +536 QTableView::setRootIndex +544 QAbstractItemView::doItemsLayout +552 QAbstractItemView::selectAll +560 QAbstractItemView::dataChanged +568 QAbstractItemView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QTableView::selectionChanged +592 QTableView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QTableView::updateGeometries +624 QTableView::verticalScrollbarAction +632 QTableView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QTableView::moveCursor +688 QTableView::horizontalOffset +696 QTableView::verticalOffset +704 QTableView::isIndexHidden +712 QTableView::setSelection +720 QTableView::visualRegionForSelection +728 QTableView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QTableView::viewOptions +768 (int (*)(...))-0x00000000000000010 +776 (int (*)(...))(& _ZTI10QTableView) +784 QTableView::_ZThn16_N10QTableViewD1Ev +792 QTableView::_ZThn16_N10QTableViewD0Ev +800 QWidget::_ZThn16_NK7QWidget7devTypeEv +808 QWidget::_ZThn16_NK7QWidget11paintEngineEv +816 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTableView + size=40 align=8 + base size=40 base align=8 +QTableView (0x7f95524aff50) 0 + vptr=((& QTableView::_ZTV10QTableView) + 16u) + QAbstractItemView (0x7f95524b8000) 0 + primary-for QTableView (0x7f95524aff50) + QAbstractScrollArea (0x7f95524b8070) 0 + primary-for QAbstractItemView (0x7f95524b8000) + QFrame (0x7f95524b80e0) 0 + primary-for QAbstractScrollArea (0x7f95524b8070) + QWidget (0x7f9552497b00) 0 + primary-for QFrame (0x7f95524b80e0) + QObject (0x7f95524b8150) 0 + primary-for QWidget (0x7f9552497b00) + QPaintDevice (0x7f95524b81c0) 16 + vptr=((& QTableView::_ZTV10QTableView) + 784u) + +Class QTableWidgetSelectionRange + size=16 align=4 + base size=16 base align=4 +QTableWidgetSelectionRange (0x7f95524e2d20) 0 + +Vtable for QTableWidgetItem +QTableWidgetItem::_ZTV16QTableWidgetItem: 10u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QTableWidgetItem) +16 QTableWidgetItem::~QTableWidgetItem +24 QTableWidgetItem::~QTableWidgetItem +32 QTableWidgetItem::clone +40 QTableWidgetItem::data +48 QTableWidgetItem::setData +56 QTableWidgetItem::operator< +64 QTableWidgetItem::read +72 QTableWidgetItem::write + +Class QTableWidgetItem + size=48 align=8 + base size=44 base align=8 +QTableWidgetItem (0x7f95522f3230) 0 + vptr=((& QTableWidgetItem::_ZTV16QTableWidgetItem) + 16u) + +Vtable for QTableWidget +QTableWidget::_ZTV12QTableWidget: 107u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTableWidget) +16 QTableWidget::metaObject +24 QTableWidget::qt_metacast +32 QTableWidget::qt_metacall +40 QTableWidget::~QTableWidget +48 QTableWidget::~QTableWidget +56 QTableWidget::event +64 QObject::eventFilter +72 QTableView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QAbstractItemView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QAbstractItemView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTableView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QTableWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QTableView::scrollContentsBy +464 QTableWidget::setModel +472 QTableView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QTableView::visualRect +496 QTableView::scrollTo +504 QTableView::indexAt +512 QTableView::sizeHintForRow +520 QTableView::sizeHintForColumn +528 QAbstractItemView::reset +536 QTableView::setRootIndex +544 QAbstractItemView::doItemsLayout +552 QAbstractItemView::selectAll +560 QAbstractItemView::dataChanged +568 QAbstractItemView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QTableView::selectionChanged +592 QTableView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QTableView::updateGeometries +624 QTableView::verticalScrollbarAction +632 QTableView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QTableView::moveCursor +688 QTableView::horizontalOffset +696 QTableView::verticalOffset +704 QTableView::isIndexHidden +712 QTableView::setSelection +720 QTableView::visualRegionForSelection +728 QTableView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QTableView::viewOptions +768 QTableWidget::mimeTypes +776 QTableWidget::mimeData +784 QTableWidget::dropMimeData +792 QTableWidget::supportedDropActions +800 (int (*)(...))-0x00000000000000010 +808 (int (*)(...))(& _ZTI12QTableWidget) +816 QTableWidget::_ZThn16_N12QTableWidgetD1Ev +824 QTableWidget::_ZThn16_N12QTableWidgetD0Ev +832 QWidget::_ZThn16_NK7QWidget7devTypeEv +840 QWidget::_ZThn16_NK7QWidget11paintEngineEv +848 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTableWidget + size=40 align=8 + base size=40 base align=8 +QTableWidget (0x7f95523657e0) 0 + vptr=((& QTableWidget::_ZTV12QTableWidget) + 16u) + QTableView (0x7f9552365850) 0 + primary-for QTableWidget (0x7f95523657e0) + QAbstractItemView (0x7f95523658c0) 0 + primary-for QTableView (0x7f9552365850) + QAbstractScrollArea (0x7f9552365930) 0 + primary-for QAbstractItemView (0x7f95523658c0) + QFrame (0x7f95523659a0) 0 + primary-for QAbstractScrollArea (0x7f9552365930) + QWidget (0x7f955235bc80) 0 + primary-for QFrame (0x7f95523659a0) + QObject (0x7f9552365a10) 0 + primary-for QWidget (0x7f955235bc80) + QPaintDevice (0x7f9552365a80) 16 + vptr=((& QTableWidget::_ZTV12QTableWidget) + 816u) + +Vtable for QTreeView +QTreeView::_ZTV9QTreeView: 105u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTreeView) +16 QTreeView::metaObject +24 QTreeView::qt_metacast +32 QTreeView::qt_metacall +40 QTreeView::~QTreeView +48 QTreeView::~QTreeView +56 QAbstractItemView::event +64 QObject::eventFilter +72 QTreeView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTreeView::mousePressEvent +168 QTreeView::mouseReleaseEvent +176 QTreeView::mouseDoubleClickEvent +184 QTreeView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QTreeView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTreeView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QTreeView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QTreeView::viewportEvent +456 QTreeView::scrollContentsBy +464 QTreeView::setModel +472 QTreeView::setSelectionModel +480 QTreeView::keyboardSearch +488 QTreeView::visualRect +496 QTreeView::scrollTo +504 QTreeView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QTreeView::sizeHintForColumn +528 QTreeView::reset +536 QTreeView::setRootIndex +544 QTreeView::doItemsLayout +552 QTreeView::selectAll +560 QTreeView::dataChanged +568 QTreeView::rowsInserted +576 QTreeView::rowsAboutToBeRemoved +584 QTreeView::selectionChanged +592 QTreeView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QTreeView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QTreeView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QTreeView::moveCursor +688 QTreeView::horizontalOffset +696 QTreeView::verticalOffset +704 QTreeView::isIndexHidden +712 QTreeView::setSelection +720 QTreeView::visualRegionForSelection +728 QTreeView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 QTreeView::drawRow +776 QTreeView::drawBranches +784 (int (*)(...))-0x00000000000000010 +792 (int (*)(...))(& _ZTI9QTreeView) +800 QTreeView::_ZThn16_N9QTreeViewD1Ev +808 QTreeView::_ZThn16_N9QTreeViewD0Ev +816 QWidget::_ZThn16_NK7QWidget7devTypeEv +824 QWidget::_ZThn16_NK7QWidget11paintEngineEv +832 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTreeView + size=40 align=8 + base size=40 base align=8 +QTreeView (0x7f95523a4770) 0 + vptr=((& QTreeView::_ZTV9QTreeView) + 16u) + QAbstractItemView (0x7f95523a47e0) 0 + primary-for QTreeView (0x7f95523a4770) + QAbstractScrollArea (0x7f95523a4850) 0 + primary-for QAbstractItemView (0x7f95523a47e0) + QFrame (0x7f95523a48c0) 0 + primary-for QAbstractScrollArea (0x7f95523a4850) + QWidget (0x7f95523a2600) 0 + primary-for QFrame (0x7f95523a48c0) + QObject (0x7f95523a4930) 0 + primary-for QWidget (0x7f95523a2600) + QPaintDevice (0x7f95523a49a0) 16 + vptr=((& QTreeView::_ZTV9QTreeView) + 800u) + +Class QTreeWidgetItemIterator + size=24 align=8 + base size=20 base align=8 +QTreeWidgetItemIterator (0x7f95523dd540) 0 + +Vtable for QTreeWidgetItem +QTreeWidgetItem::_ZTV15QTreeWidgetItem: 10u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QTreeWidgetItem) +16 QTreeWidgetItem::~QTreeWidgetItem +24 QTreeWidgetItem::~QTreeWidgetItem +32 QTreeWidgetItem::clone +40 QTreeWidgetItem::data +48 QTreeWidgetItem::setData +56 QTreeWidgetItem::operator< +64 QTreeWidgetItem::read +72 QTreeWidgetItem::write + +Class QTreeWidgetItem + size=64 align=8 + base size=60 base align=8 +QTreeWidgetItem (0x7f95522492a0) 0 + vptr=((& QTreeWidgetItem::_ZTV15QTreeWidgetItem) + 16u) + +Vtable for QTreeWidget +QTreeWidget::_ZTV11QTreeWidget: 109u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTreeWidget) +16 QTreeWidget::metaObject +24 QTreeWidget::qt_metacast +32 QTreeWidget::qt_metacall +40 QTreeWidget::~QTreeWidget +48 QTreeWidget::~QTreeWidget +56 QTreeWidget::event +64 QObject::eventFilter +72 QTreeView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTreeView::mousePressEvent +168 QTreeView::mouseReleaseEvent +176 QTreeView::mouseDoubleClickEvent +184 QTreeView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QTreeView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTreeView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QTreeView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QTreeWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QTreeView::viewportEvent +456 QTreeView::scrollContentsBy +464 QTreeWidget::setModel +472 QTreeWidget::setSelectionModel +480 QTreeView::keyboardSearch +488 QTreeView::visualRect +496 QTreeView::scrollTo +504 QTreeView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QTreeView::sizeHintForColumn +528 QTreeView::reset +536 QTreeView::setRootIndex +544 QTreeView::doItemsLayout +552 QTreeView::selectAll +560 QTreeView::dataChanged +568 QTreeView::rowsInserted +576 QTreeView::rowsAboutToBeRemoved +584 QTreeView::selectionChanged +592 QTreeView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QTreeView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QTreeView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QTreeView::moveCursor +688 QTreeView::horizontalOffset +696 QTreeView::verticalOffset +704 QTreeView::isIndexHidden +712 QTreeView::setSelection +720 QTreeView::visualRegionForSelection +728 QTreeView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 QTreeView::drawRow +776 QTreeView::drawBranches +784 QTreeWidget::mimeTypes +792 QTreeWidget::mimeData +800 QTreeWidget::dropMimeData +808 QTreeWidget::supportedDropActions +816 (int (*)(...))-0x00000000000000010 +824 (int (*)(...))(& _ZTI11QTreeWidget) +832 QTreeWidget::_ZThn16_N11QTreeWidgetD1Ev +840 QTreeWidget::_ZThn16_N11QTreeWidgetD0Ev +848 QWidget::_ZThn16_NK7QWidget7devTypeEv +856 QWidget::_ZThn16_NK7QWidget11paintEngineEv +864 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTreeWidget + size=40 align=8 + base size=40 base align=8 +QTreeWidget (0x7f95520f78c0) 0 + vptr=((& QTreeWidget::_ZTV11QTreeWidget) + 16u) + QTreeView (0x7f95520f7930) 0 + primary-for QTreeWidget (0x7f95520f78c0) + QAbstractItemView (0x7f95520f79a0) 0 + primary-for QTreeView (0x7f95520f7930) + QAbstractScrollArea (0x7f95520f7a10) 0 + primary-for QAbstractItemView (0x7f95520f79a0) + QFrame (0x7f95520f7a80) 0 + primary-for QAbstractScrollArea (0x7f95520f7a10) + QWidget (0x7f95520fa200) 0 + primary-for QFrame (0x7f95520f7a80) + QObject (0x7f95520f7af0) 0 + primary-for QWidget (0x7f95520fa200) + QPaintDevice (0x7f95520f7b60) 16 + vptr=((& QTreeWidget::_ZTV11QTreeWidget) + 832u) + +Class QAccessible + size=1 align=1 + base size=0 base align=1 +QAccessible (0x7f9552140c40) 0 empty + +Vtable for QAccessibleInterface +QAccessibleInterface::_ZTV20QAccessibleInterface: 19u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QAccessibleInterface) +16 QAccessibleInterface::~QAccessibleInterface +24 QAccessibleInterface::~QAccessibleInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual + +Class QAccessibleInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleInterface (0x7f9551feae00) 0 nearly-empty + vptr=((& QAccessibleInterface::_ZTV20QAccessibleInterface) + 16u) + QAccessible (0x7f9551feae70) 0 empty + +Vtable for QAccessibleInterfaceEx +QAccessibleInterfaceEx::_ZTV22QAccessibleInterfaceEx: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QAccessibleInterfaceEx) +16 QAccessibleInterfaceEx::~QAccessibleInterfaceEx +24 QAccessibleInterfaceEx::~QAccessibleInterfaceEx +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 QAccessibleInterfaceEx::virtual_hook +168 QAccessibleInterfaceEx::interface_cast + +Class QAccessibleInterfaceEx + size=8 align=8 + base size=8 base align=8 +QAccessibleInterfaceEx (0x7f9552066b60) 0 nearly-empty + vptr=((& QAccessibleInterfaceEx::_ZTV22QAccessibleInterfaceEx) + 16u) + QAccessibleInterface (0x7f9552066bd0) 0 nearly-empty + primary-for QAccessibleInterfaceEx (0x7f9552066b60) + QAccessible (0x7f9552066c40) 0 empty + +Vtable for QAccessibleEvent +QAccessibleEvent::_ZTV16QAccessibleEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QAccessibleEvent) +16 QAccessibleEvent::~QAccessibleEvent +24 QAccessibleEvent::~QAccessibleEvent + +Class QAccessibleEvent + size=32 align=8 + base size=32 base align=8 +QAccessibleEvent (0x7f9552066ee0) 0 + vptr=((& QAccessibleEvent::_ZTV16QAccessibleEvent) + 16u) + QEvent (0x7f9552066f50) 0 + primary-for QAccessibleEvent (0x7f9552066ee0) + +Vtable for QAccessible2Interface +QAccessible2Interface::_ZTV21QAccessible2Interface: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QAccessible2Interface) +16 QAccessible2Interface::~QAccessible2Interface +24 QAccessible2Interface::~QAccessible2Interface + +Class QAccessible2Interface + size=8 align=8 + base size=8 base align=8 +QAccessible2Interface (0x7f955207cf50) 0 nearly-empty + vptr=((& QAccessible2Interface::_ZTV21QAccessible2Interface) + 16u) + +Vtable for QAccessibleTextInterface +QAccessibleTextInterface::_ZTV24QAccessibleTextInterface: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QAccessibleTextInterface) +16 QAccessibleTextInterface::~QAccessibleTextInterface +24 QAccessibleTextInterface::~QAccessibleTextInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual + +Class QAccessibleTextInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleTextInterface (0x7f95520921c0) 0 nearly-empty + vptr=((& QAccessibleTextInterface::_ZTV24QAccessibleTextInterface) + 16u) + QAccessible2Interface (0x7f9552092230) 0 nearly-empty + primary-for QAccessibleTextInterface (0x7f95520921c0) + +Vtable for QAccessibleEditableTextInterface +QAccessibleEditableTextInterface::_ZTV32QAccessibleEditableTextInterface: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI32QAccessibleEditableTextInterface) +16 QAccessibleEditableTextInterface::~QAccessibleEditableTextInterface +24 QAccessibleEditableTextInterface::~QAccessibleEditableTextInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual + +Class QAccessibleEditableTextInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleEditableTextInterface (0x7f95520a4070) 0 nearly-empty + vptr=((& QAccessibleEditableTextInterface::_ZTV32QAccessibleEditableTextInterface) + 16u) + QAccessible2Interface (0x7f95520a40e0) 0 nearly-empty + primary-for QAccessibleEditableTextInterface (0x7f95520a4070) + +Vtable for QAccessibleSimpleEditableTextInterface +QAccessibleSimpleEditableTextInterface::_ZTV38QAccessibleSimpleEditableTextInterface: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI38QAccessibleSimpleEditableTextInterface) +16 QAccessibleSimpleEditableTextInterface::~QAccessibleSimpleEditableTextInterface +24 QAccessibleSimpleEditableTextInterface::~QAccessibleSimpleEditableTextInterface +32 QAccessibleSimpleEditableTextInterface::copyText +40 QAccessibleSimpleEditableTextInterface::deleteText +48 QAccessibleSimpleEditableTextInterface::insertText +56 QAccessibleSimpleEditableTextInterface::cutText +64 QAccessibleSimpleEditableTextInterface::pasteText +72 QAccessibleSimpleEditableTextInterface::replaceText +80 QAccessibleSimpleEditableTextInterface::setAttributes + +Class QAccessibleSimpleEditableTextInterface + size=16 align=8 + base size=16 base align=8 +QAccessibleSimpleEditableTextInterface (0x7f95520a4f50) 0 + vptr=((& QAccessibleSimpleEditableTextInterface::_ZTV38QAccessibleSimpleEditableTextInterface) + 16u) + QAccessibleEditableTextInterface (0x7f95520a4310) 0 nearly-empty + primary-for QAccessibleSimpleEditableTextInterface (0x7f95520a4f50) + QAccessible2Interface (0x7f95520b0000) 0 nearly-empty + primary-for QAccessibleEditableTextInterface (0x7f95520a4310) + +Vtable for QAccessibleValueInterface +QAccessibleValueInterface::_ZTV25QAccessibleValueInterface: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QAccessibleValueInterface) +16 QAccessibleValueInterface::~QAccessibleValueInterface +24 QAccessibleValueInterface::~QAccessibleValueInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual + +Class QAccessibleValueInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleValueInterface (0x7f95520b0230) 0 nearly-empty + vptr=((& QAccessibleValueInterface::_ZTV25QAccessibleValueInterface) + 16u) + QAccessible2Interface (0x7f95520b02a0) 0 nearly-empty + primary-for QAccessibleValueInterface (0x7f95520b0230) + +Vtable for QAccessibleTableInterface +QAccessibleTableInterface::_ZTV25QAccessibleTableInterface: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QAccessibleTableInterface) +16 QAccessibleTableInterface::~QAccessibleTableInterface +24 QAccessibleTableInterface::~QAccessibleTableInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 __cxa_pure_virtual +208 __cxa_pure_virtual +216 __cxa_pure_virtual +224 __cxa_pure_virtual +232 __cxa_pure_virtual + +Class QAccessibleTableInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleTableInterface (0x7f95520c0070) 0 nearly-empty + vptr=((& QAccessibleTableInterface::_ZTV25QAccessibleTableInterface) + 16u) + QAccessible2Interface (0x7f95520c00e0) 0 nearly-empty + primary-for QAccessibleTableInterface (0x7f95520c0070) + +Vtable for QAccessibleActionInterface +QAccessibleActionInterface::_ZTV26QAccessibleActionInterface: 10u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QAccessibleActionInterface) +16 QAccessibleActionInterface::~QAccessibleActionInterface +24 QAccessibleActionInterface::~QAccessibleActionInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual + +Class QAccessibleActionInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleActionInterface (0x7f95520c0460) 0 nearly-empty + vptr=((& QAccessibleActionInterface::_ZTV26QAccessibleActionInterface) + 16u) + QAccessible2Interface (0x7f95520c04d0) 0 nearly-empty + primary-for QAccessibleActionInterface (0x7f95520c0460) + +Vtable for QAccessibleImageInterface +QAccessibleImageInterface::_ZTV25QAccessibleImageInterface: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QAccessibleImageInterface) +16 QAccessibleImageInterface::~QAccessibleImageInterface +24 QAccessibleImageInterface::~QAccessibleImageInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual + +Class QAccessibleImageInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleImageInterface (0x7f95520c0850) 0 nearly-empty + vptr=((& QAccessibleImageInterface::_ZTV25QAccessibleImageInterface) + 16u) + QAccessible2Interface (0x7f95520c08c0) 0 nearly-empty + primary-for QAccessibleImageInterface (0x7f95520c0850) + +Vtable for QAccessibleBridge +QAccessibleBridge::_ZTV17QAccessibleBridge: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAccessibleBridge) +16 QAccessibleBridge::~QAccessibleBridge +24 QAccessibleBridge::~QAccessibleBridge +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QAccessibleBridge + size=8 align=8 + base size=8 base align=8 +QAccessibleBridge (0x7f95520c0c40) 0 nearly-empty + vptr=((& QAccessibleBridge::_ZTV17QAccessibleBridge) + 16u) + +Vtable for QAccessibleBridgeFactoryInterface +QAccessibleBridgeFactoryInterface::_ZTV33QAccessibleBridgeFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI33QAccessibleBridgeFactoryInterface) +16 QAccessibleBridgeFactoryInterface::~QAccessibleBridgeFactoryInterface +24 QAccessibleBridgeFactoryInterface::~QAccessibleBridgeFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QAccessibleBridgeFactoryInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleBridgeFactoryInterface (0x7f95520d8540) 0 nearly-empty + vptr=((& QAccessibleBridgeFactoryInterface::_ZTV33QAccessibleBridgeFactoryInterface) + 16u) + QFactoryInterface (0x7f95520d85b0) 0 nearly-empty + primary-for QAccessibleBridgeFactoryInterface (0x7f95520d8540) + +Vtable for QAccessibleBridgePlugin +QAccessibleBridgePlugin::_ZTV23QAccessibleBridgePlugin: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QAccessibleBridgePlugin) +16 QAccessibleBridgePlugin::metaObject +24 QAccessibleBridgePlugin::qt_metacast +32 QAccessibleBridgePlugin::qt_metacall +40 QAccessibleBridgePlugin::~QAccessibleBridgePlugin +48 QAccessibleBridgePlugin::~QAccessibleBridgePlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI23QAccessibleBridgePlugin) +144 QAccessibleBridgePlugin::_ZThn16_N23QAccessibleBridgePluginD1Ev +152 QAccessibleBridgePlugin::_ZThn16_N23QAccessibleBridgePluginD0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QAccessibleBridgePlugin + size=24 align=8 + base size=24 base align=8 +QAccessibleBridgePlugin (0x7f9551ee4580) 0 + vptr=((& QAccessibleBridgePlugin::_ZTV23QAccessibleBridgePlugin) + 16u) + QObject (0x7f95520d8620) 0 + primary-for QAccessibleBridgePlugin (0x7f9551ee4580) + QAccessibleBridgeFactoryInterface (0x7f9551ee8000) 16 nearly-empty + vptr=((& QAccessibleBridgePlugin::_ZTV23QAccessibleBridgePlugin) + 144u) + QFactoryInterface (0x7f9551ee8070) 16 nearly-empty + primary-for QAccessibleBridgeFactoryInterface (0x7f9551ee8000) + +Vtable for QAccessibleObject +QAccessibleObject::_ZTV17QAccessibleObject: 19u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAccessibleObject) +16 QAccessibleObject::~QAccessibleObject +24 QAccessibleObject::~QAccessibleObject +32 QAccessibleObject::isValid +40 QAccessibleObject::object +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 QAccessibleObject::setText +104 QAccessibleObject::rect +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAccessibleObject::userActionCount +136 QAccessibleObject::actionText +144 QAccessibleObject::doAction + +Class QAccessibleObject + size=16 align=8 + base size=16 base align=8 +QAccessibleObject (0x7f9551ee8f50) 0 + vptr=((& QAccessibleObject::_ZTV17QAccessibleObject) + 16u) + QAccessibleInterface (0x7f9551ee8310) 0 nearly-empty + primary-for QAccessibleObject (0x7f9551ee8f50) + QAccessible (0x7f9551efb000) 0 empty + +Vtable for QAccessibleObjectEx +QAccessibleObjectEx::_ZTV19QAccessibleObjectEx: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAccessibleObjectEx) +16 QAccessibleObjectEx::~QAccessibleObjectEx +24 QAccessibleObjectEx::~QAccessibleObjectEx +32 QAccessibleObjectEx::isValid +40 QAccessibleObjectEx::object +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 QAccessibleObjectEx::setText +104 QAccessibleObjectEx::rect +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAccessibleObjectEx::userActionCount +136 QAccessibleObjectEx::actionText +144 QAccessibleObjectEx::doAction +152 __cxa_pure_virtual +160 QAccessibleInterfaceEx::virtual_hook +168 QAccessibleInterfaceEx::interface_cast + +Class QAccessibleObjectEx + size=16 align=8 + base size=16 base align=8 +QAccessibleObjectEx (0x7f9551efb700) 0 + vptr=((& QAccessibleObjectEx::_ZTV19QAccessibleObjectEx) + 16u) + QAccessibleInterfaceEx (0x7f9551efb770) 0 nearly-empty + primary-for QAccessibleObjectEx (0x7f9551efb700) + QAccessibleInterface (0x7f9551efb7e0) 0 nearly-empty + primary-for QAccessibleInterfaceEx (0x7f9551efb770) + QAccessible (0x7f9551efb850) 0 empty + +Vtable for QAccessibleApplication +QAccessibleApplication::_ZTV22QAccessibleApplication: 19u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QAccessibleApplication) +16 QAccessibleApplication::~QAccessibleApplication +24 QAccessibleApplication::~QAccessibleApplication +32 QAccessibleObject::isValid +40 QAccessibleObject::object +48 QAccessibleApplication::childCount +56 QAccessibleApplication::indexOfChild +64 QAccessibleApplication::relationTo +72 QAccessibleApplication::childAt +80 QAccessibleApplication::navigate +88 QAccessibleApplication::text +96 QAccessibleObject::setText +104 QAccessibleObject::rect +112 QAccessibleApplication::role +120 QAccessibleApplication::state +128 QAccessibleApplication::userActionCount +136 QAccessibleApplication::actionText +144 QAccessibleApplication::doAction + +Class QAccessibleApplication + size=16 align=8 + base size=16 base align=8 +QAccessibleApplication (0x7f9551efbf50) 0 + vptr=((& QAccessibleApplication::_ZTV22QAccessibleApplication) + 16u) + QAccessibleObject (0x7f9551efb690) 0 + primary-for QAccessibleApplication (0x7f9551efbf50) + QAccessibleInterface (0x7f9551efbee0) 0 nearly-empty + primary-for QAccessibleObject (0x7f9551efb690) + QAccessible (0x7f9551f0d000) 0 empty + +Vtable for QAccessibleFactoryInterface +QAccessibleFactoryInterface::_ZTV27QAccessibleFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QAccessibleFactoryInterface) +16 QAccessibleFactoryInterface::~QAccessibleFactoryInterface +24 QAccessibleFactoryInterface::~QAccessibleFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QAccessibleFactoryInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleFactoryInterface (0x7f9551ee4e00) 0 nearly-empty + vptr=((& QAccessibleFactoryInterface::_ZTV27QAccessibleFactoryInterface) + 16u) + QAccessible (0x7f9551f0d8c0) 0 empty + QFactoryInterface (0x7f9551f0d930) 0 nearly-empty + primary-for QAccessibleFactoryInterface (0x7f9551ee4e00) + +Vtable for QAccessiblePlugin +QAccessiblePlugin::_ZTV17QAccessiblePlugin: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAccessiblePlugin) +16 QAccessiblePlugin::metaObject +24 QAccessiblePlugin::qt_metacast +32 QAccessiblePlugin::qt_metacall +40 QAccessiblePlugin::~QAccessiblePlugin +48 QAccessiblePlugin::~QAccessiblePlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI17QAccessiblePlugin) +144 QAccessiblePlugin::_ZThn16_N17QAccessiblePluginD1Ev +152 QAccessiblePlugin::_ZThn16_N17QAccessiblePluginD0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QAccessiblePlugin + size=24 align=8 + base size=24 base align=8 +QAccessiblePlugin (0x7f9551f18800) 0 + vptr=((& QAccessiblePlugin::_ZTV17QAccessiblePlugin) + 16u) + QObject (0x7f9551f1e2a0) 0 + primary-for QAccessiblePlugin (0x7f9551f18800) + QAccessibleFactoryInterface (0x7f9551f18880) 16 nearly-empty + vptr=((& QAccessiblePlugin::_ZTV17QAccessiblePlugin) + 144u) + QAccessible (0x7f9551f1e310) 16 empty + QFactoryInterface (0x7f9551f1e380) 16 nearly-empty + primary-for QAccessibleFactoryInterface (0x7f9551f18880) + +Vtable for QAccessibleWidget +QAccessibleWidget::_ZTV17QAccessibleWidget: 19u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAccessibleWidget) +16 QAccessibleWidget::~QAccessibleWidget +24 QAccessibleWidget::~QAccessibleWidget +32 QAccessibleObject::isValid +40 QAccessibleObject::object +48 QAccessibleWidget::childCount +56 QAccessibleWidget::indexOfChild +64 QAccessibleWidget::relationTo +72 QAccessibleWidget::childAt +80 QAccessibleWidget::navigate +88 QAccessibleWidget::text +96 QAccessibleObject::setText +104 QAccessibleWidget::rect +112 QAccessibleWidget::role +120 QAccessibleWidget::state +128 QAccessibleWidget::userActionCount +136 QAccessibleWidget::actionText +144 QAccessibleWidget::doAction + +Class QAccessibleWidget + size=24 align=8 + base size=24 base align=8 +QAccessibleWidget (0x7f9551f2e310) 0 + vptr=((& QAccessibleWidget::_ZTV17QAccessibleWidget) + 16u) + QAccessibleObject (0x7f9551f2e380) 0 + primary-for QAccessibleWidget (0x7f9551f2e310) + QAccessibleInterface (0x7f9551f2e3f0) 0 nearly-empty + primary-for QAccessibleObject (0x7f9551f2e380) + QAccessible (0x7f9551f2e460) 0 empty + +Vtable for QAccessibleWidgetEx +QAccessibleWidgetEx::_ZTV19QAccessibleWidgetEx: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAccessibleWidgetEx) +16 QAccessibleWidgetEx::~QAccessibleWidgetEx +24 QAccessibleWidgetEx::~QAccessibleWidgetEx +32 QAccessibleObjectEx::isValid +40 QAccessibleObjectEx::object +48 QAccessibleWidgetEx::childCount +56 QAccessibleWidgetEx::indexOfChild +64 QAccessibleWidgetEx::relationTo +72 QAccessibleWidgetEx::childAt +80 QAccessibleWidgetEx::navigate +88 QAccessibleWidgetEx::text +96 QAccessibleObjectEx::setText +104 QAccessibleWidgetEx::rect +112 QAccessibleWidgetEx::role +120 QAccessibleWidgetEx::state +128 QAccessibleObjectEx::userActionCount +136 QAccessibleWidgetEx::actionText +144 QAccessibleWidgetEx::doAction +152 QAccessibleWidgetEx::invokeMethodEx +160 QAccessibleInterfaceEx::virtual_hook +168 QAccessibleInterfaceEx::interface_cast + +Class QAccessibleWidgetEx + size=24 align=8 + base size=24 base align=8 +QAccessibleWidgetEx (0x7f9551f3b3f0) 0 + vptr=((& QAccessibleWidgetEx::_ZTV19QAccessibleWidgetEx) + 16u) + QAccessibleObjectEx (0x7f9551f3b460) 0 + primary-for QAccessibleWidgetEx (0x7f9551f3b3f0) + QAccessibleInterfaceEx (0x7f9551f3b4d0) 0 nearly-empty + primary-for QAccessibleObjectEx (0x7f9551f3b460) + QAccessibleInterface (0x7f9551f3b540) 0 nearly-empty + primary-for QAccessibleInterfaceEx (0x7f9551f3b4d0) + QAccessible (0x7f9551f3b5b0) 0 empty + +Vtable for QAction +QAction::_ZTV7QAction: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QAction) +16 QAction::metaObject +24 QAction::qt_metacast +32 QAction::qt_metacall +40 QAction::~QAction +48 QAction::~QAction +56 QAction::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QAction + size=16 align=8 + base size=16 base align=8 +QAction (0x7f9551f4a540) 0 + vptr=((& QAction::_ZTV7QAction) + 16u) + QObject (0x7f9551f4a5b0) 0 + primary-for QAction (0x7f9551f4a540) + +Vtable for QActionGroup +QActionGroup::_ZTV12QActionGroup: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QActionGroup) +16 QActionGroup::metaObject +24 QActionGroup::qt_metacast +32 QActionGroup::qt_metacall +40 QActionGroup::~QActionGroup +48 QActionGroup::~QActionGroup +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QActionGroup + size=16 align=8 + base size=16 base align=8 +QActionGroup (0x7f9551f92070) 0 + vptr=((& QActionGroup::_ZTV12QActionGroup) + 16u) + QObject (0x7f9551f920e0) 0 + primary-for QActionGroup (0x7f9551f92070) + +Vtable for QApplication +QApplication::_ZTV12QApplication: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QApplication) +16 QApplication::metaObject +24 QApplication::qt_metacast +32 QApplication::qt_metacall +40 QApplication::~QApplication +48 QApplication::~QApplication +56 QApplication::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QApplication::notify +120 QApplication::compressEvent +128 QApplication::x11EventFilter +136 QApplication::x11ClientMessage +144 QApplication::commitData +152 QApplication::saveState + +Class QApplication + size=16 align=8 + base size=16 base align=8 +QApplication (0x7f9551fd4460) 0 + vptr=((& QApplication::_ZTV12QApplication) + 16u) + QCoreApplication (0x7f9551fd44d0) 0 + primary-for QApplication (0x7f9551fd4460) + QObject (0x7f9551fd4540) 0 + primary-for QCoreApplication (0x7f9551fd44d0) + +Vtable for QLayoutItem +QLayoutItem::_ZTV11QLayoutItem: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QLayoutItem) +16 QLayoutItem::~QLayoutItem +24 QLayoutItem::~QLayoutItem +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 QLayoutItem::hasHeightForWidth +96 QLayoutItem::heightForWidth +104 QLayoutItem::minimumHeightForWidth +112 QLayoutItem::invalidate +120 QLayoutItem::widget +128 QLayoutItem::layout +136 QLayoutItem::spacerItem + +Class QLayoutItem + size=16 align=8 + base size=12 base align=8 +QLayoutItem (0x7f9551e260e0) 0 + vptr=((& QLayoutItem::_ZTV11QLayoutItem) + 16u) + +Vtable for QSpacerItem +QSpacerItem::_ZTV11QSpacerItem: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QSpacerItem) +16 QSpacerItem::~QSpacerItem +24 QSpacerItem::~QSpacerItem +32 QSpacerItem::sizeHint +40 QSpacerItem::minimumSize +48 QSpacerItem::maximumSize +56 QSpacerItem::expandingDirections +64 QSpacerItem::setGeometry +72 QSpacerItem::geometry +80 QSpacerItem::isEmpty +88 QLayoutItem::hasHeightForWidth +96 QLayoutItem::heightForWidth +104 QLayoutItem::minimumHeightForWidth +112 QLayoutItem::invalidate +120 QLayoutItem::widget +128 QLayoutItem::layout +136 QSpacerItem::spacerItem + +Class QSpacerItem + size=40 align=8 + base size=40 base align=8 +QSpacerItem (0x7f9551e26cb0) 0 + vptr=((& QSpacerItem::_ZTV11QSpacerItem) + 16u) + QLayoutItem (0x7f9551e26d20) 0 + primary-for QSpacerItem (0x7f9551e26cb0) + +Vtable for QWidgetItem +QWidgetItem::_ZTV11QWidgetItem: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QWidgetItem) +16 QWidgetItem::~QWidgetItem +24 QWidgetItem::~QWidgetItem +32 QWidgetItem::sizeHint +40 QWidgetItem::minimumSize +48 QWidgetItem::maximumSize +56 QWidgetItem::expandingDirections +64 QWidgetItem::setGeometry +72 QWidgetItem::geometry +80 QWidgetItem::isEmpty +88 QWidgetItem::hasHeightForWidth +96 QWidgetItem::heightForWidth +104 QLayoutItem::minimumHeightForWidth +112 QLayoutItem::invalidate +120 QWidgetItem::widget +128 QLayoutItem::layout +136 QLayoutItem::spacerItem + +Class QWidgetItem + size=24 align=8 + base size=24 base align=8 +QWidgetItem (0x7f9551e431c0) 0 + vptr=((& QWidgetItem::_ZTV11QWidgetItem) + 16u) + QLayoutItem (0x7f9551e43230) 0 + primary-for QWidgetItem (0x7f9551e431c0) + +Vtable for QWidgetItemV2 +QWidgetItemV2::_ZTV13QWidgetItemV2: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QWidgetItemV2) +16 QWidgetItemV2::~QWidgetItemV2 +24 QWidgetItemV2::~QWidgetItemV2 +32 QWidgetItemV2::sizeHint +40 QWidgetItemV2::minimumSize +48 QWidgetItemV2::maximumSize +56 QWidgetItem::expandingDirections +64 QWidgetItem::setGeometry +72 QWidgetItem::geometry +80 QWidgetItem::isEmpty +88 QWidgetItem::hasHeightForWidth +96 QWidgetItemV2::heightForWidth +104 QLayoutItem::minimumHeightForWidth +112 QLayoutItem::invalidate +120 QWidgetItem::widget +128 QLayoutItem::layout +136 QLayoutItem::spacerItem + +Class QWidgetItemV2 + size=88 align=8 + base size=88 base align=8 +QWidgetItemV2 (0x7f9551e53000) 0 + vptr=((& QWidgetItemV2::_ZTV13QWidgetItemV2) + 16u) + QWidgetItem (0x7f9551e53070) 0 + primary-for QWidgetItemV2 (0x7f9551e53000) + QLayoutItem (0x7f9551e530e0) 0 + primary-for QWidgetItem (0x7f9551e53070) + +Class QLayoutIterator + size=16 align=8 + base size=12 base align=8 +QLayoutIterator (0x7f9551e53e70) 0 + +Vtable for QLayout +QLayout::_ZTV7QLayout: 45u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QLayout) +16 QLayout::metaObject +24 QLayout::qt_metacast +32 QLayout::qt_metacall +40 QLayout::~QLayout +48 QLayout::~QLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QLayout::invalidate +120 QLayout::geometry +128 __cxa_pure_virtual +136 QLayout::expandingDirections +144 QLayout::minimumSize +152 QLayout::maximumSize +160 QLayout::setGeometry +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 QLayout::indexOf +192 __cxa_pure_virtual +200 QLayout::isEmpty +208 QLayout::layout +216 (int (*)(...))-0x00000000000000010 +224 (int (*)(...))(& _ZTI7QLayout) +232 QLayout::_ZThn16_N7QLayoutD1Ev +240 QLayout::_ZThn16_N7QLayoutD0Ev +248 __cxa_pure_virtual +256 QLayout::_ZThn16_NK7QLayout11minimumSizeEv +264 QLayout::_ZThn16_NK7QLayout11maximumSizeEv +272 QLayout::_ZThn16_NK7QLayout19expandingDirectionsEv +280 QLayout::_ZThn16_N7QLayout11setGeometryERK5QRect +288 QLayout::_ZThn16_NK7QLayout8geometryEv +296 QLayout::_ZThn16_NK7QLayout7isEmptyEv +304 QLayoutItem::hasHeightForWidth +312 QLayoutItem::heightForWidth +320 QLayoutItem::minimumHeightForWidth +328 QLayout::_ZThn16_N7QLayout10invalidateEv +336 QLayoutItem::widget +344 QLayout::_ZThn16_N7QLayout6layoutEv +352 QLayoutItem::spacerItem + +Class QLayout + size=32 align=8 + base size=28 base align=8 +QLayout (0x7f9551e67380) 0 + vptr=((& QLayout::_ZTV7QLayout) + 16u) + QObject (0x7f9551e66f50) 0 + primary-for QLayout (0x7f9551e67380) + QLayoutItem (0x7f9551e69000) 16 + vptr=((& QLayout::_ZTV7QLayout) + 232u) + +Vtable for QGridLayout +QGridLayout::_ZTV11QGridLayout: 49u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QGridLayout) +16 QGridLayout::metaObject +24 QGridLayout::qt_metacast +32 QGridLayout::qt_metacall +40 QGridLayout::~QGridLayout +48 QGridLayout::~QGridLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGridLayout::invalidate +120 QLayout::geometry +128 QGridLayout::addItem +136 QGridLayout::expandingDirections +144 QGridLayout::minimumSize +152 QGridLayout::maximumSize +160 QGridLayout::setGeometry +168 QGridLayout::itemAt +176 QGridLayout::takeAt +184 QLayout::indexOf +192 QGridLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QGridLayout::sizeHint +224 QGridLayout::hasHeightForWidth +232 QGridLayout::heightForWidth +240 QGridLayout::minimumHeightForWidth +248 (int (*)(...))-0x00000000000000010 +256 (int (*)(...))(& _ZTI11QGridLayout) +264 QGridLayout::_ZThn16_N11QGridLayoutD1Ev +272 QGridLayout::_ZThn16_N11QGridLayoutD0Ev +280 QGridLayout::_ZThn16_NK11QGridLayout8sizeHintEv +288 QGridLayout::_ZThn16_NK11QGridLayout11minimumSizeEv +296 QGridLayout::_ZThn16_NK11QGridLayout11maximumSizeEv +304 QGridLayout::_ZThn16_NK11QGridLayout19expandingDirectionsEv +312 QGridLayout::_ZThn16_N11QGridLayout11setGeometryERK5QRect +320 QLayout::_ZThn16_NK7QLayout8geometryEv +328 QLayout::_ZThn16_NK7QLayout7isEmptyEv +336 QGridLayout::_ZThn16_NK11QGridLayout17hasHeightForWidthEv +344 QGridLayout::_ZThn16_NK11QGridLayout14heightForWidthEi +352 QGridLayout::_ZThn16_NK11QGridLayout21minimumHeightForWidthEi +360 QGridLayout::_ZThn16_N11QGridLayout10invalidateEv +368 QLayoutItem::widget +376 QLayout::_ZThn16_N7QLayout6layoutEv +384 QLayoutItem::spacerItem + +Class QGridLayout + size=32 align=8 + base size=28 base align=8 +QGridLayout (0x7f9551eaa4d0) 0 + vptr=((& QGridLayout::_ZTV11QGridLayout) + 16u) + QLayout (0x7f9551ea6500) 0 + primary-for QGridLayout (0x7f9551eaa4d0) + QObject (0x7f9551eaa540) 0 + primary-for QLayout (0x7f9551ea6500) + QLayoutItem (0x7f9551eaa5b0) 16 + vptr=((& QGridLayout::_ZTV11QGridLayout) + 264u) + +Vtable for QBoxLayout +QBoxLayout::_ZTV10QBoxLayout: 49u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QBoxLayout) +16 QBoxLayout::metaObject +24 QBoxLayout::qt_metacast +32 QBoxLayout::qt_metacall +40 QBoxLayout::~QBoxLayout +48 QBoxLayout::~QBoxLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QBoxLayout::invalidate +120 QLayout::geometry +128 QBoxLayout::addItem +136 QBoxLayout::expandingDirections +144 QBoxLayout::minimumSize +152 QBoxLayout::maximumSize +160 QBoxLayout::setGeometry +168 QBoxLayout::itemAt +176 QBoxLayout::takeAt +184 QLayout::indexOf +192 QBoxLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QBoxLayout::sizeHint +224 QBoxLayout::hasHeightForWidth +232 QBoxLayout::heightForWidth +240 QBoxLayout::minimumHeightForWidth +248 (int (*)(...))-0x00000000000000010 +256 (int (*)(...))(& _ZTI10QBoxLayout) +264 QBoxLayout::_ZThn16_N10QBoxLayoutD1Ev +272 QBoxLayout::_ZThn16_N10QBoxLayoutD0Ev +280 QBoxLayout::_ZThn16_NK10QBoxLayout8sizeHintEv +288 QBoxLayout::_ZThn16_NK10QBoxLayout11minimumSizeEv +296 QBoxLayout::_ZThn16_NK10QBoxLayout11maximumSizeEv +304 QBoxLayout::_ZThn16_NK10QBoxLayout19expandingDirectionsEv +312 QBoxLayout::_ZThn16_N10QBoxLayout11setGeometryERK5QRect +320 QLayout::_ZThn16_NK7QLayout8geometryEv +328 QLayout::_ZThn16_NK7QLayout7isEmptyEv +336 QBoxLayout::_ZThn16_NK10QBoxLayout17hasHeightForWidthEv +344 QBoxLayout::_ZThn16_NK10QBoxLayout14heightForWidthEi +352 QBoxLayout::_ZThn16_NK10QBoxLayout21minimumHeightForWidthEi +360 QBoxLayout::_ZThn16_N10QBoxLayout10invalidateEv +368 QLayoutItem::widget +376 QLayout::_ZThn16_N7QLayout6layoutEv +384 QLayoutItem::spacerItem + +Class QBoxLayout + size=32 align=8 + base size=28 base align=8 +QBoxLayout (0x7f9551cf4540) 0 + vptr=((& QBoxLayout::_ZTV10QBoxLayout) + 16u) + QLayout (0x7f9551cf3400) 0 + primary-for QBoxLayout (0x7f9551cf4540) + QObject (0x7f9551cf45b0) 0 + primary-for QLayout (0x7f9551cf3400) + QLayoutItem (0x7f9551cf4620) 16 + vptr=((& QBoxLayout::_ZTV10QBoxLayout) + 264u) + +Vtable for QHBoxLayout +QHBoxLayout::_ZTV11QHBoxLayout: 49u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QHBoxLayout) +16 QHBoxLayout::metaObject +24 QHBoxLayout::qt_metacast +32 QHBoxLayout::qt_metacall +40 QHBoxLayout::~QHBoxLayout +48 QHBoxLayout::~QHBoxLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QBoxLayout::invalidate +120 QLayout::geometry +128 QBoxLayout::addItem +136 QBoxLayout::expandingDirections +144 QBoxLayout::minimumSize +152 QBoxLayout::maximumSize +160 QBoxLayout::setGeometry +168 QBoxLayout::itemAt +176 QBoxLayout::takeAt +184 QLayout::indexOf +192 QBoxLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QBoxLayout::sizeHint +224 QBoxLayout::hasHeightForWidth +232 QBoxLayout::heightForWidth +240 QBoxLayout::minimumHeightForWidth +248 (int (*)(...))-0x00000000000000010 +256 (int (*)(...))(& _ZTI11QHBoxLayout) +264 QHBoxLayout::_ZThn16_N11QHBoxLayoutD1Ev +272 QHBoxLayout::_ZThn16_N11QHBoxLayoutD0Ev +280 QBoxLayout::_ZThn16_NK10QBoxLayout8sizeHintEv +288 QBoxLayout::_ZThn16_NK10QBoxLayout11minimumSizeEv +296 QBoxLayout::_ZThn16_NK10QBoxLayout11maximumSizeEv +304 QBoxLayout::_ZThn16_NK10QBoxLayout19expandingDirectionsEv +312 QBoxLayout::_ZThn16_N10QBoxLayout11setGeometryERK5QRect +320 QLayout::_ZThn16_NK7QLayout8geometryEv +328 QLayout::_ZThn16_NK7QLayout7isEmptyEv +336 QBoxLayout::_ZThn16_NK10QBoxLayout17hasHeightForWidthEv +344 QBoxLayout::_ZThn16_NK10QBoxLayout14heightForWidthEi +352 QBoxLayout::_ZThn16_NK10QBoxLayout21minimumHeightForWidthEi +360 QBoxLayout::_ZThn16_N10QBoxLayout10invalidateEv +368 QLayoutItem::widget +376 QLayout::_ZThn16_N7QLayout6layoutEv +384 QLayoutItem::spacerItem + +Class QHBoxLayout + size=32 align=8 + base size=28 base align=8 +QHBoxLayout (0x7f9551d19f50) 0 + vptr=((& QHBoxLayout::_ZTV11QHBoxLayout) + 16u) + QBoxLayout (0x7f9551d23000) 0 + primary-for QHBoxLayout (0x7f9551d19f50) + QLayout (0x7f9551d22280) 0 + primary-for QBoxLayout (0x7f9551d23000) + QObject (0x7f9551d23070) 0 + primary-for QLayout (0x7f9551d22280) + QLayoutItem (0x7f9551d230e0) 16 + vptr=((& QHBoxLayout::_ZTV11QHBoxLayout) + 264u) + +Vtable for QVBoxLayout +QVBoxLayout::_ZTV11QVBoxLayout: 49u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QVBoxLayout) +16 QVBoxLayout::metaObject +24 QVBoxLayout::qt_metacast +32 QVBoxLayout::qt_metacall +40 QVBoxLayout::~QVBoxLayout +48 QVBoxLayout::~QVBoxLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QBoxLayout::invalidate +120 QLayout::geometry +128 QBoxLayout::addItem +136 QBoxLayout::expandingDirections +144 QBoxLayout::minimumSize +152 QBoxLayout::maximumSize +160 QBoxLayout::setGeometry +168 QBoxLayout::itemAt +176 QBoxLayout::takeAt +184 QLayout::indexOf +192 QBoxLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QBoxLayout::sizeHint +224 QBoxLayout::hasHeightForWidth +232 QBoxLayout::heightForWidth +240 QBoxLayout::minimumHeightForWidth +248 (int (*)(...))-0x00000000000000010 +256 (int (*)(...))(& _ZTI11QVBoxLayout) +264 QVBoxLayout::_ZThn16_N11QVBoxLayoutD1Ev +272 QVBoxLayout::_ZThn16_N11QVBoxLayoutD0Ev +280 QBoxLayout::_ZThn16_NK10QBoxLayout8sizeHintEv +288 QBoxLayout::_ZThn16_NK10QBoxLayout11minimumSizeEv +296 QBoxLayout::_ZThn16_NK10QBoxLayout11maximumSizeEv +304 QBoxLayout::_ZThn16_NK10QBoxLayout19expandingDirectionsEv +312 QBoxLayout::_ZThn16_N10QBoxLayout11setGeometryERK5QRect +320 QLayout::_ZThn16_NK7QLayout8geometryEv +328 QLayout::_ZThn16_NK7QLayout7isEmptyEv +336 QBoxLayout::_ZThn16_NK10QBoxLayout17hasHeightForWidthEv +344 QBoxLayout::_ZThn16_NK10QBoxLayout14heightForWidthEi +352 QBoxLayout::_ZThn16_NK10QBoxLayout21minimumHeightForWidthEi +360 QBoxLayout::_ZThn16_N10QBoxLayout10invalidateEv +368 QLayoutItem::widget +376 QLayout::_ZThn16_N7QLayout6layoutEv +384 QLayoutItem::spacerItem + +Class QVBoxLayout + size=32 align=8 + base size=28 base align=8 +QVBoxLayout (0x7f9551d365b0) 0 + vptr=((& QVBoxLayout::_ZTV11QVBoxLayout) + 16u) + QBoxLayout (0x7f9551d36620) 0 + primary-for QVBoxLayout (0x7f9551d365b0) + QLayout (0x7f9551d22980) 0 + primary-for QBoxLayout (0x7f9551d36620) + QObject (0x7f9551d36690) 0 + primary-for QLayout (0x7f9551d22980) + QLayoutItem (0x7f9551d36700) 16 + vptr=((& QVBoxLayout::_ZTV11QVBoxLayout) + 264u) + +Vtable for QClipboard +QClipboard::_ZTV10QClipboard: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QClipboard) +16 QClipboard::metaObject +24 QClipboard::qt_metacast +32 QClipboard::qt_metacall +40 QClipboard::~QClipboard +48 QClipboard::~QClipboard +56 QClipboard::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QClipboard::connectNotify +104 QObject::disconnectNotify + +Class QClipboard + size=16 align=8 + base size=16 base align=8 +QClipboard (0x7f9551d46c40) 0 + vptr=((& QClipboard::_ZTV10QClipboard) + 16u) + QObject (0x7f9551d46cb0) 0 + primary-for QClipboard (0x7f9551d46c40) + +Vtable for QDesktopWidget +QDesktopWidget::_ZTV14QDesktopWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QDesktopWidget) +16 QDesktopWidget::metaObject +24 QDesktopWidget::qt_metacast +32 QDesktopWidget::qt_metacall +40 QDesktopWidget::~QDesktopWidget +48 QDesktopWidget::~QDesktopWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDesktopWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI14QDesktopWidget) +464 QDesktopWidget::_ZThn16_N14QDesktopWidgetD1Ev +472 QDesktopWidget::_ZThn16_N14QDesktopWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDesktopWidget + size=40 align=8 + base size=40 base align=8 +QDesktopWidget (0x7f9551d6f930) 0 + vptr=((& QDesktopWidget::_ZTV14QDesktopWidget) + 16u) + QWidget (0x7f9551d51c00) 0 + primary-for QDesktopWidget (0x7f9551d6f930) + QObject (0x7f9551d6f9a0) 0 + primary-for QWidget (0x7f9551d51c00) + QPaintDevice (0x7f9551d6fa10) 16 + vptr=((& QDesktopWidget::_ZTV14QDesktopWidget) + 464u) + +Vtable for QFormLayout +QFormLayout::_ZTV11QFormLayout: 48u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFormLayout) +16 QFormLayout::metaObject +24 QFormLayout::qt_metacast +32 QFormLayout::qt_metacall +40 QFormLayout::~QFormLayout +48 QFormLayout::~QFormLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFormLayout::invalidate +120 QLayout::geometry +128 QFormLayout::addItem +136 QFormLayout::expandingDirections +144 QFormLayout::minimumSize +152 QLayout::maximumSize +160 QFormLayout::setGeometry +168 QFormLayout::itemAt +176 QFormLayout::takeAt +184 QLayout::indexOf +192 QFormLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QFormLayout::sizeHint +224 QFormLayout::hasHeightForWidth +232 QFormLayout::heightForWidth +240 (int (*)(...))-0x00000000000000010 +248 (int (*)(...))(& _ZTI11QFormLayout) +256 QFormLayout::_ZThn16_N11QFormLayoutD1Ev +264 QFormLayout::_ZThn16_N11QFormLayoutD0Ev +272 QFormLayout::_ZThn16_NK11QFormLayout8sizeHintEv +280 QFormLayout::_ZThn16_NK11QFormLayout11minimumSizeEv +288 QLayout::_ZThn16_NK7QLayout11maximumSizeEv +296 QFormLayout::_ZThn16_NK11QFormLayout19expandingDirectionsEv +304 QFormLayout::_ZThn16_N11QFormLayout11setGeometryERK5QRect +312 QLayout::_ZThn16_NK7QLayout8geometryEv +320 QLayout::_ZThn16_NK7QLayout7isEmptyEv +328 QFormLayout::_ZThn16_NK11QFormLayout17hasHeightForWidthEv +336 QFormLayout::_ZThn16_NK11QFormLayout14heightForWidthEi +344 QLayoutItem::minimumHeightForWidth +352 QFormLayout::_ZThn16_N11QFormLayout10invalidateEv +360 QLayoutItem::widget +368 QLayout::_ZThn16_N7QLayout6layoutEv +376 QLayoutItem::spacerItem + +Class QFormLayout + size=32 align=8 + base size=28 base align=8 +QFormLayout (0x7f9551d8f9a0) 0 + vptr=((& QFormLayout::_ZTV11QFormLayout) + 16u) + QLayout (0x7f9551d89b80) 0 + primary-for QFormLayout (0x7f9551d8f9a0) + QObject (0x7f9551d8fa10) 0 + primary-for QLayout (0x7f9551d89b80) + QLayoutItem (0x7f9551d8fa80) 16 + vptr=((& QFormLayout::_ZTV11QFormLayout) + 256u) + +Vtable for QGesture +QGesture::_ZTV8QGesture: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QGesture) +16 QGesture::metaObject +24 QGesture::qt_metacast +32 QGesture::qt_metacall +40 QGesture::~QGesture +48 QGesture::~QGesture +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QGesture + size=16 align=8 + base size=16 base align=8 +QGesture (0x7f9551dc5150) 0 + vptr=((& QGesture::_ZTV8QGesture) + 16u) + QObject (0x7f9551dc51c0) 0 + primary-for QGesture (0x7f9551dc5150) + +Vtable for QPanGesture +QPanGesture::_ZTV11QPanGesture: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QPanGesture) +16 QPanGesture::metaObject +24 QPanGesture::qt_metacast +32 QPanGesture::qt_metacall +40 QPanGesture::~QPanGesture +48 QPanGesture::~QPanGesture +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QPanGesture + size=16 align=8 + base size=16 base align=8 +QPanGesture (0x7f9551ddc850) 0 + vptr=((& QPanGesture::_ZTV11QPanGesture) + 16u) + QGesture (0x7f9551ddc8c0) 0 + primary-for QPanGesture (0x7f9551ddc850) + QObject (0x7f9551ddc930) 0 + primary-for QGesture (0x7f9551ddc8c0) + +Vtable for QPinchGesture +QPinchGesture::_ZTV13QPinchGesture: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QPinchGesture) +16 QPinchGesture::metaObject +24 QPinchGesture::qt_metacast +32 QPinchGesture::qt_metacall +40 QPinchGesture::~QPinchGesture +48 QPinchGesture::~QPinchGesture +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QPinchGesture + size=16 align=8 + base size=16 base align=8 +QPinchGesture (0x7f9551beecb0) 0 + vptr=((& QPinchGesture::_ZTV13QPinchGesture) + 16u) + QGesture (0x7f9551beed20) 0 + primary-for QPinchGesture (0x7f9551beecb0) + QObject (0x7f9551beed90) 0 + primary-for QGesture (0x7f9551beed20) + +Vtable for QSwipeGesture +QSwipeGesture::_ZTV13QSwipeGesture: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSwipeGesture) +16 QSwipeGesture::metaObject +24 QSwipeGesture::qt_metacast +32 QSwipeGesture::qt_metacall +40 QSwipeGesture::~QSwipeGesture +48 QSwipeGesture::~QSwipeGesture +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSwipeGesture + size=16 align=8 + base size=16 base align=8 +QSwipeGesture (0x7f9551c0ed20) 0 + vptr=((& QSwipeGesture::_ZTV13QSwipeGesture) + 16u) + QGesture (0x7f9551c0ed90) 0 + primary-for QSwipeGesture (0x7f9551c0ed20) + QObject (0x7f9551c0ee00) 0 + primary-for QGesture (0x7f9551c0ed90) + +Vtable for QTapGesture +QTapGesture::_ZTV11QTapGesture: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTapGesture) +16 QTapGesture::metaObject +24 QTapGesture::qt_metacast +32 QTapGesture::qt_metacall +40 QTapGesture::~QTapGesture +48 QTapGesture::~QTapGesture +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTapGesture + size=16 align=8 + base size=16 base align=8 +QTapGesture (0x7f9551c2e460) 0 + vptr=((& QTapGesture::_ZTV11QTapGesture) + 16u) + QGesture (0x7f9551c2e4d0) 0 + primary-for QTapGesture (0x7f9551c2e460) + QObject (0x7f9551c2e540) 0 + primary-for QGesture (0x7f9551c2e4d0) + +Vtable for QTapAndHoldGesture +QTapAndHoldGesture::_ZTV18QTapAndHoldGesture: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QTapAndHoldGesture) +16 QTapAndHoldGesture::metaObject +24 QTapAndHoldGesture::qt_metacast +32 QTapAndHoldGesture::qt_metacall +40 QTapAndHoldGesture::~QTapAndHoldGesture +48 QTapAndHoldGesture::~QTapAndHoldGesture +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTapAndHoldGesture + size=16 align=8 + base size=16 base align=8 +QTapAndHoldGesture (0x7f9551c3e8c0) 0 + vptr=((& QTapAndHoldGesture::_ZTV18QTapAndHoldGesture) + 16u) + QGesture (0x7f9551c3e930) 0 + primary-for QTapAndHoldGesture (0x7f9551c3e8c0) + QObject (0x7f9551c3e9a0) 0 + primary-for QGesture (0x7f9551c3e930) + +Vtable for QGestureRecognizer +QGestureRecognizer::_ZTV18QGestureRecognizer: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QGestureRecognizer) +16 QGestureRecognizer::~QGestureRecognizer +24 QGestureRecognizer::~QGestureRecognizer +32 QGestureRecognizer::create +40 __cxa_pure_virtual +48 QGestureRecognizer::reset + +Class QGestureRecognizer + size=8 align=8 + base size=8 base align=8 +QGestureRecognizer (0x7f9551c5b310) 0 nearly-empty + vptr=((& QGestureRecognizer::_ZTV18QGestureRecognizer) + 16u) + +Vtable for QSessionManager +QSessionManager::_ZTV15QSessionManager: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSessionManager) +16 QSessionManager::metaObject +24 QSessionManager::qt_metacast +32 QSessionManager::qt_metacall +40 QSessionManager::~QSessionManager +48 QSessionManager::~QSessionManager +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSessionManager + size=16 align=8 + base size=16 base align=8 +QSessionManager (0x7f9551c8f620) 0 + vptr=((& QSessionManager::_ZTV15QSessionManager) + 16u) + QObject (0x7f9551c8f690) 0 + primary-for QSessionManager (0x7f9551c8f620) + +Vtable for QShortcut +QShortcut::_ZTV9QShortcut: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QShortcut) +16 QShortcut::metaObject +24 QShortcut::qt_metacast +32 QShortcut::qt_metacall +40 QShortcut::~QShortcut +48 QShortcut::~QShortcut +56 QShortcut::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QShortcut + size=16 align=8 + base size=16 base align=8 +QShortcut (0x7f9551cc0b60) 0 + vptr=((& QShortcut::_ZTV9QShortcut) + 16u) + QObject (0x7f9551cc0bd0) 0 + primary-for QShortcut (0x7f9551cc0b60) + +Vtable for QSound +QSound::_ZTV6QSound: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QSound) +16 QSound::metaObject +24 QSound::qt_metacast +32 QSound::qt_metacall +40 QSound::~QSound +48 QSound::~QSound +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSound + size=16 align=8 + base size=16 base align=8 +QSound (0x7f9551cdc310) 0 + vptr=((& QSound::_ZTV6QSound) + 16u) + QObject (0x7f9551cdc380) 0 + primary-for QSound (0x7f9551cdc310) + +Vtable for QStackedLayout +QStackedLayout::_ZTV14QStackedLayout: 46u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QStackedLayout) +16 QStackedLayout::metaObject +24 QStackedLayout::qt_metacast +32 QStackedLayout::qt_metacall +40 QStackedLayout::~QStackedLayout +48 QStackedLayout::~QStackedLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QLayout::invalidate +120 QLayout::geometry +128 QStackedLayout::addItem +136 QLayout::expandingDirections +144 QStackedLayout::minimumSize +152 QLayout::maximumSize +160 QStackedLayout::setGeometry +168 QStackedLayout::itemAt +176 QStackedLayout::takeAt +184 QLayout::indexOf +192 QStackedLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QStackedLayout::sizeHint +224 (int (*)(...))-0x00000000000000010 +232 (int (*)(...))(& _ZTI14QStackedLayout) +240 QStackedLayout::_ZThn16_N14QStackedLayoutD1Ev +248 QStackedLayout::_ZThn16_N14QStackedLayoutD0Ev +256 QStackedLayout::_ZThn16_NK14QStackedLayout8sizeHintEv +264 QStackedLayout::_ZThn16_NK14QStackedLayout11minimumSizeEv +272 QLayout::_ZThn16_NK7QLayout11maximumSizeEv +280 QLayout::_ZThn16_NK7QLayout19expandingDirectionsEv +288 QStackedLayout::_ZThn16_N14QStackedLayout11setGeometryERK5QRect +296 QLayout::_ZThn16_NK7QLayout8geometryEv +304 QLayout::_ZThn16_NK7QLayout7isEmptyEv +312 QLayoutItem::hasHeightForWidth +320 QLayoutItem::heightForWidth +328 QLayoutItem::minimumHeightForWidth +336 QLayout::_ZThn16_N7QLayout10invalidateEv +344 QLayoutItem::widget +352 QLayout::_ZThn16_N7QLayout6layoutEv +360 QLayoutItem::spacerItem + +Class QStackedLayout + size=32 align=8 + base size=28 base align=8 +QStackedLayout (0x7f9551af0a80) 0 + vptr=((& QStackedLayout::_ZTV14QStackedLayout) + 16u) + QLayout (0x7f9551ae9880) 0 + primary-for QStackedLayout (0x7f9551af0a80) + QObject (0x7f9551af0af0) 0 + primary-for QLayout (0x7f9551ae9880) + QLayoutItem (0x7f9551af0b60) 16 + vptr=((& QStackedLayout::_ZTV14QStackedLayout) + 240u) + +Class QToolTip + size=1 align=1 + base size=0 base align=1 +QToolTip (0x7f9551b11a80) 0 empty + +Class QWhatsThis + size=1 align=1 + base size=0 base align=1 +QWhatsThis (0x7f9551b1f070) 0 empty + +Vtable for QWidgetAction +QWidgetAction::_ZTV13QWidgetAction: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QWidgetAction) +16 QWidgetAction::metaObject +24 QWidgetAction::qt_metacast +32 QWidgetAction::qt_metacall +40 QWidgetAction::~QWidgetAction +48 QWidgetAction::~QWidgetAction +56 QWidgetAction::event +64 QWidgetAction::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidgetAction::createWidget +120 QWidgetAction::deleteWidget + +Class QWidgetAction + size=16 align=8 + base size=16 base align=8 +QWidgetAction (0x7f9551b1f150) 0 + vptr=((& QWidgetAction::_ZTV13QWidgetAction) + 16u) + QAction (0x7f9551b1f1c0) 0 + primary-for QWidgetAction (0x7f9551b1f150) + QObject (0x7f9551b1f230) 0 + primary-for QAction (0x7f9551b1f1c0) + +Class QVector3D + size=12 align=4 + base size=12 base align=4 +QVector3D (0x7f95519ed1c0) 0 + +Class QVector4D + size=16 align=4 + base size=16 base align=4 +QVector4D (0x7f9551a50cb0) 0 + +Class QQuaternion + size=32 align=8 + base size=32 base align=8 +QQuaternion (0x7f9551ac6d20) 0 + +Class QMatrix4x4 + size=136 align=8 + base size=132 base align=8 +QMatrix4x4 (0x7f9551944b60) 0 + +Class QVector2D + size=8 align=4 + base size=8 base align=4 +QVector2D (0x7f9551791d90) 0 + +Vtable for QCommonStyle +QCommonStyle::_ZTV12QCommonStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QCommonStyle) +16 QCommonStyle::metaObject +24 QCommonStyle::qt_metacast +32 QCommonStyle::qt_metacall +40 QCommonStyle::~QCommonStyle +48 QCommonStyle::~QCommonStyle +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCommonStyle::polish +120 QCommonStyle::unpolish +128 QCommonStyle::polish +136 QCommonStyle::unpolish +144 QCommonStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QStyle::standardPalette +192 QCommonStyle::drawPrimitive +200 QCommonStyle::drawControl +208 QCommonStyle::subElementRect +216 QCommonStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QCommonStyle::subControlRect +240 QCommonStyle::pixelMetric +248 QCommonStyle::sizeFromContents +256 QCommonStyle::styleHint +264 QCommonStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QCommonStyle + size=16 align=8 + base size=16 base align=8 +QCommonStyle (0x7f95515f32a0) 0 + vptr=((& QCommonStyle::_ZTV12QCommonStyle) + 16u) + QStyle (0x7f95515f3310) 0 + primary-for QCommonStyle (0x7f95515f32a0) + QObject (0x7f95515f3380) 0 + primary-for QStyle (0x7f95515f3310) + +Vtable for QMotifStyle +QMotifStyle::_ZTV11QMotifStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMotifStyle) +16 QMotifStyle::metaObject +24 QMotifStyle::qt_metacast +32 QMotifStyle::qt_metacall +40 QMotifStyle::~QMotifStyle +48 QMotifStyle::~QMotifStyle +56 QMotifStyle::event +64 QMotifStyle::eventFilter +72 QMotifStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMotifStyle::polish +120 QMotifStyle::unpolish +128 QMotifStyle::polish +136 QMotifStyle::unpolish +144 QMotifStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QMotifStyle::standardPalette +192 QMotifStyle::drawPrimitive +200 QMotifStyle::drawControl +208 QMotifStyle::subElementRect +216 QMotifStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QMotifStyle::subControlRect +240 QMotifStyle::pixelMetric +248 QMotifStyle::sizeFromContents +256 QMotifStyle::styleHint +264 QMotifStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QMotifStyle + size=32 align=8 + base size=25 base align=8 +QMotifStyle (0x7f95516172a0) 0 + vptr=((& QMotifStyle::_ZTV11QMotifStyle) + 16u) + QCommonStyle (0x7f9551617310) 0 + primary-for QMotifStyle (0x7f95516172a0) + QStyle (0x7f9551617380) 0 + primary-for QCommonStyle (0x7f9551617310) + QObject (0x7f95516173f0) 0 + primary-for QStyle (0x7f9551617380) + +Vtable for QCDEStyle +QCDEStyle::_ZTV9QCDEStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QCDEStyle) +16 QCDEStyle::metaObject +24 QCDEStyle::qt_metacast +32 QCDEStyle::qt_metacall +40 QCDEStyle::~QCDEStyle +48 QCDEStyle::~QCDEStyle +56 QMotifStyle::event +64 QMotifStyle::eventFilter +72 QMotifStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMotifStyle::polish +120 QMotifStyle::unpolish +128 QMotifStyle::polish +136 QMotifStyle::unpolish +144 QMotifStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QCDEStyle::standardPalette +192 QCDEStyle::drawPrimitive +200 QCDEStyle::drawControl +208 QMotifStyle::subElementRect +216 QMotifStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QMotifStyle::subControlRect +240 QCDEStyle::pixelMetric +248 QMotifStyle::sizeFromContents +256 QMotifStyle::styleHint +264 QMotifStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QCDEStyle + size=32 align=8 + base size=25 base align=8 +QCDEStyle (0x7f95516401c0) 0 + vptr=((& QCDEStyle::_ZTV9QCDEStyle) + 16u) + QMotifStyle (0x7f9551640230) 0 + primary-for QCDEStyle (0x7f95516401c0) + QCommonStyle (0x7f95516402a0) 0 + primary-for QMotifStyle (0x7f9551640230) + QStyle (0x7f9551640310) 0 + primary-for QCommonStyle (0x7f95516402a0) + QObject (0x7f9551640380) 0 + primary-for QStyle (0x7f9551640310) + +Vtable for QWindowsStyle +QWindowsStyle::_ZTV13QWindowsStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QWindowsStyle) +16 QWindowsStyle::metaObject +24 QWindowsStyle::qt_metacast +32 QWindowsStyle::qt_metacall +40 QWindowsStyle::~QWindowsStyle +48 QWindowsStyle::~QWindowsStyle +56 QObject::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWindowsStyle::polish +120 QWindowsStyle::unpolish +128 QWindowsStyle::polish +136 QWindowsStyle::unpolish +144 QWindowsStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QStyle::standardPalette +192 QWindowsStyle::drawPrimitive +200 QWindowsStyle::drawControl +208 QWindowsStyle::subElementRect +216 QWindowsStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QCommonStyle::subControlRect +240 QWindowsStyle::pixelMetric +248 QWindowsStyle::sizeFromContents +256 QWindowsStyle::styleHint +264 QWindowsStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QWindowsStyle + size=24 align=8 + base size=24 base align=8 +QWindowsStyle (0x7f9551652310) 0 + vptr=((& QWindowsStyle::_ZTV13QWindowsStyle) + 16u) + QCommonStyle (0x7f9551652380) 0 + primary-for QWindowsStyle (0x7f9551652310) + QStyle (0x7f95516523f0) 0 + primary-for QCommonStyle (0x7f9551652380) + QObject (0x7f9551652460) 0 + primary-for QStyle (0x7f95516523f0) + +Vtable for QCleanlooksStyle +QCleanlooksStyle::_ZTV16QCleanlooksStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QCleanlooksStyle) +16 QCleanlooksStyle::metaObject +24 QCleanlooksStyle::qt_metacast +32 QCleanlooksStyle::qt_metacall +40 QCleanlooksStyle::~QCleanlooksStyle +48 QCleanlooksStyle::~QCleanlooksStyle +56 QObject::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCleanlooksStyle::polish +120 QCleanlooksStyle::unpolish +128 QCleanlooksStyle::polish +136 QCleanlooksStyle::unpolish +144 QCleanlooksStyle::polish +152 QStyle::itemTextRect +160 QCleanlooksStyle::itemPixmapRect +168 QCleanlooksStyle::drawItemText +176 QCleanlooksStyle::drawItemPixmap +184 QCleanlooksStyle::standardPalette +192 QCleanlooksStyle::drawPrimitive +200 QCleanlooksStyle::drawControl +208 QCleanlooksStyle::subElementRect +216 QCleanlooksStyle::drawComplexControl +224 QCleanlooksStyle::hitTestComplexControl +232 QCleanlooksStyle::subControlRect +240 QCleanlooksStyle::pixelMetric +248 QCleanlooksStyle::sizeFromContents +256 QCleanlooksStyle::styleHint +264 QCleanlooksStyle::standardPixmap +272 QCleanlooksStyle::generatedIconPixmap + +Class QCleanlooksStyle + size=24 align=8 + base size=24 base align=8 +QCleanlooksStyle (0x7f95516750e0) 0 + vptr=((& QCleanlooksStyle::_ZTV16QCleanlooksStyle) + 16u) + QWindowsStyle (0x7f9551675150) 0 + primary-for QCleanlooksStyle (0x7f95516750e0) + QCommonStyle (0x7f95516751c0) 0 + primary-for QWindowsStyle (0x7f9551675150) + QStyle (0x7f9551675230) 0 + primary-for QCommonStyle (0x7f95516751c0) + QObject (0x7f95516752a0) 0 + primary-for QStyle (0x7f9551675230) + +Vtable for QPlastiqueStyle +QPlastiqueStyle::_ZTV15QPlastiqueStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QPlastiqueStyle) +16 QPlastiqueStyle::metaObject +24 QPlastiqueStyle::qt_metacast +32 QPlastiqueStyle::qt_metacall +40 QPlastiqueStyle::~QPlastiqueStyle +48 QPlastiqueStyle::~QPlastiqueStyle +56 QObject::event +64 QPlastiqueStyle::eventFilter +72 QPlastiqueStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QPlastiqueStyle::polish +120 QPlastiqueStyle::unpolish +128 QPlastiqueStyle::polish +136 QPlastiqueStyle::unpolish +144 QPlastiqueStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QPlastiqueStyle::standardPalette +192 QPlastiqueStyle::drawPrimitive +200 QPlastiqueStyle::drawControl +208 QPlastiqueStyle::subElementRect +216 QPlastiqueStyle::drawComplexControl +224 QPlastiqueStyle::hitTestComplexControl +232 QPlastiqueStyle::subControlRect +240 QPlastiqueStyle::pixelMetric +248 QPlastiqueStyle::sizeFromContents +256 QPlastiqueStyle::styleHint +264 QPlastiqueStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QPlastiqueStyle + size=32 align=8 + base size=32 base align=8 +QPlastiqueStyle (0x7f955168fe70) 0 + vptr=((& QPlastiqueStyle::_ZTV15QPlastiqueStyle) + 16u) + QWindowsStyle (0x7f955168fee0) 0 + primary-for QPlastiqueStyle (0x7f955168fe70) + QCommonStyle (0x7f955168ff50) 0 + primary-for QWindowsStyle (0x7f955168fee0) + QStyle (0x7f9551695000) 0 + primary-for QCommonStyle (0x7f955168ff50) + QObject (0x7f9551695070) 0 + primary-for QStyle (0x7f9551695000) + +Vtable for QProxyStyle +QProxyStyle::_ZTV11QProxyStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QProxyStyle) +16 QProxyStyle::metaObject +24 QProxyStyle::qt_metacast +32 QProxyStyle::qt_metacall +40 QProxyStyle::~QProxyStyle +48 QProxyStyle::~QProxyStyle +56 QProxyStyle::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QProxyStyle::polish +120 QProxyStyle::unpolish +128 QProxyStyle::polish +136 QProxyStyle::unpolish +144 QProxyStyle::polish +152 QProxyStyle::itemTextRect +160 QProxyStyle::itemPixmapRect +168 QProxyStyle::drawItemText +176 QProxyStyle::drawItemPixmap +184 QProxyStyle::standardPalette +192 QProxyStyle::drawPrimitive +200 QProxyStyle::drawControl +208 QProxyStyle::subElementRect +216 QProxyStyle::drawComplexControl +224 QProxyStyle::hitTestComplexControl +232 QProxyStyle::subControlRect +240 QProxyStyle::pixelMetric +248 QProxyStyle::sizeFromContents +256 QProxyStyle::styleHint +264 QProxyStyle::standardPixmap +272 QProxyStyle::generatedIconPixmap + +Class QProxyStyle + size=16 align=8 + base size=16 base align=8 +QProxyStyle (0x7f95516b9000) 0 + vptr=((& QProxyStyle::_ZTV11QProxyStyle) + 16u) + QCommonStyle (0x7f95516b9070) 0 + primary-for QProxyStyle (0x7f95516b9000) + QStyle (0x7f95516b90e0) 0 + primary-for QCommonStyle (0x7f95516b9070) + QObject (0x7f95516b9150) 0 + primary-for QStyle (0x7f95516b90e0) + +Vtable for QS60Style +QS60Style::_ZTV9QS60Style: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QS60Style) +16 QS60Style::metaObject +24 QS60Style::qt_metacast +32 QS60Style::qt_metacall +40 QS60Style::~QS60Style +48 QS60Style::~QS60Style +56 QS60Style::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QS60Style::polish +120 QS60Style::unpolish +128 QS60Style::polish +136 QS60Style::unpolish +144 QCommonStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QStyle::standardPalette +192 QS60Style::drawPrimitive +200 QS60Style::drawControl +208 QS60Style::subElementRect +216 QS60Style::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QS60Style::subControlRect +240 QS60Style::pixelMetric +248 QS60Style::sizeFromContents +256 QS60Style::styleHint +264 QCommonStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QS60Style + size=16 align=8 + base size=16 base align=8 +QS60Style (0x7f95516d74d0) 0 + vptr=((& QS60Style::_ZTV9QS60Style) + 16u) + QCommonStyle (0x7f95516d7540) 0 + primary-for QS60Style (0x7f95516d74d0) + QStyle (0x7f95516d75b0) 0 + primary-for QCommonStyle (0x7f95516d7540) + QObject (0x7f95516d7620) 0 + primary-for QStyle (0x7f95516d75b0) + +Class QStyleFactory + size=1 align=1 + base size=0 base align=1 +QStyleFactory (0x7f95514fe310) 0 empty + +Vtable for QStyleFactoryInterface +QStyleFactoryInterface::_ZTV22QStyleFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QStyleFactoryInterface) +16 QStyleFactoryInterface::~QStyleFactoryInterface +24 QStyleFactoryInterface::~QStyleFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QStyleFactoryInterface + size=8 align=8 + base size=8 base align=8 +QStyleFactoryInterface (0x7f95514fe380) 0 nearly-empty + vptr=((& QStyleFactoryInterface::_ZTV22QStyleFactoryInterface) + 16u) + QFactoryInterface (0x7f95514fe3f0) 0 nearly-empty + primary-for QStyleFactoryInterface (0x7f95514fe380) + +Vtable for QStylePlugin +QStylePlugin::_ZTV12QStylePlugin: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QStylePlugin) +16 QStylePlugin::metaObject +24 QStylePlugin::qt_metacast +32 QStylePlugin::qt_metacall +40 QStylePlugin::~QStylePlugin +48 QStylePlugin::~QStylePlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI12QStylePlugin) +144 QStylePlugin::_ZThn16_N12QStylePluginD1Ev +152 QStylePlugin::_ZThn16_N12QStylePluginD0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QStylePlugin + size=24 align=8 + base size=24 base align=8 +QStylePlugin (0x7f9551509000) 0 + vptr=((& QStylePlugin::_ZTV12QStylePlugin) + 16u) + QObject (0x7f95514fee00) 0 + primary-for QStylePlugin (0x7f9551509000) + QStyleFactoryInterface (0x7f95514fee70) 16 nearly-empty + vptr=((& QStylePlugin::_ZTV12QStylePlugin) + 144u) + QFactoryInterface (0x7f95514feee0) 16 nearly-empty + primary-for QStyleFactoryInterface (0x7f95514fee70) + +Vtable for QWindowsCEStyle +QWindowsCEStyle::_ZTV15QWindowsCEStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QWindowsCEStyle) +16 QWindowsCEStyle::metaObject +24 QWindowsCEStyle::qt_metacast +32 QWindowsCEStyle::qt_metacall +40 QWindowsCEStyle::~QWindowsCEStyle +48 QWindowsCEStyle::~QWindowsCEStyle +56 QObject::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWindowsCEStyle::polish +120 QWindowsStyle::unpolish +128 QWindowsCEStyle::polish +136 QWindowsStyle::unpolish +144 QWindowsCEStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QWindowsCEStyle::drawItemText +176 QStyle::drawItemPixmap +184 QWindowsCEStyle::standardPalette +192 QWindowsCEStyle::drawPrimitive +200 QWindowsCEStyle::drawControl +208 QWindowsCEStyle::subElementRect +216 QWindowsCEStyle::drawComplexControl +224 QWindowsCEStyle::hitTestComplexControl +232 QWindowsCEStyle::subControlRect +240 QWindowsCEStyle::pixelMetric +248 QWindowsCEStyle::sizeFromContents +256 QWindowsCEStyle::styleHint +264 QWindowsCEStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QWindowsCEStyle + size=24 align=8 + base size=24 base align=8 +QWindowsCEStyle (0x7f955150cd90) 0 + vptr=((& QWindowsCEStyle::_ZTV15QWindowsCEStyle) + 16u) + QWindowsStyle (0x7f955150ce00) 0 + primary-for QWindowsCEStyle (0x7f955150cd90) + QCommonStyle (0x7f955150ce70) 0 + primary-for QWindowsStyle (0x7f955150ce00) + QStyle (0x7f955150cee0) 0 + primary-for QCommonStyle (0x7f955150ce70) + QObject (0x7f955150cf50) 0 + primary-for QStyle (0x7f955150cee0) + +Vtable for QWindowsMobileStyle +QWindowsMobileStyle::_ZTV19QWindowsMobileStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QWindowsMobileStyle) +16 QWindowsMobileStyle::metaObject +24 QWindowsMobileStyle::qt_metacast +32 QWindowsMobileStyle::qt_metacall +40 QWindowsMobileStyle::~QWindowsMobileStyle +48 QWindowsMobileStyle::~QWindowsMobileStyle +56 QObject::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWindowsMobileStyle::polish +120 QWindowsMobileStyle::unpolish +128 QWindowsMobileStyle::polish +136 QWindowsMobileStyle::unpolish +144 QWindowsMobileStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QWindowsMobileStyle::standardPalette +192 QWindowsMobileStyle::drawPrimitive +200 QWindowsMobileStyle::drawControl +208 QWindowsMobileStyle::subElementRect +216 QWindowsMobileStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QWindowsMobileStyle::subControlRect +240 QWindowsMobileStyle::pixelMetric +248 QWindowsMobileStyle::sizeFromContents +256 QWindowsMobileStyle::styleHint +264 QWindowsMobileStyle::standardPixmap +272 QWindowsMobileStyle::generatedIconPixmap + +Class QWindowsMobileStyle + size=24 align=8 + base size=24 base align=8 +QWindowsMobileStyle (0x7f95515313f0) 0 + vptr=((& QWindowsMobileStyle::_ZTV19QWindowsMobileStyle) + 16u) + QWindowsStyle (0x7f9551531460) 0 + primary-for QWindowsMobileStyle (0x7f95515313f0) + QCommonStyle (0x7f95515314d0) 0 + primary-for QWindowsStyle (0x7f9551531460) + QStyle (0x7f9551531540) 0 + primary-for QCommonStyle (0x7f95515314d0) + QObject (0x7f95515315b0) 0 + primary-for QStyle (0x7f9551531540) + +Vtable for QWindowsXPStyle +QWindowsXPStyle::_ZTV15QWindowsXPStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QWindowsXPStyle) +16 QWindowsXPStyle::metaObject +24 QWindowsXPStyle::qt_metacast +32 QWindowsXPStyle::qt_metacall +40 QWindowsXPStyle::~QWindowsXPStyle +48 QWindowsXPStyle::~QWindowsXPStyle +56 QObject::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWindowsXPStyle::polish +120 QWindowsXPStyle::unpolish +128 QWindowsXPStyle::polish +136 QWindowsXPStyle::unpolish +144 QWindowsXPStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QWindowsXPStyle::standardPalette +192 QWindowsXPStyle::drawPrimitive +200 QWindowsXPStyle::drawControl +208 QWindowsXPStyle::subElementRect +216 QWindowsXPStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QWindowsXPStyle::subControlRect +240 QWindowsXPStyle::pixelMetric +248 QWindowsXPStyle::sizeFromContents +256 QWindowsXPStyle::styleHint +264 QWindowsXPStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QWindowsXPStyle + size=32 align=8 + base size=32 base align=8 +QWindowsXPStyle (0x7f955154cd90) 0 + vptr=((& QWindowsXPStyle::_ZTV15QWindowsXPStyle) + 16u) + QWindowsStyle (0x7f955154ce00) 0 + primary-for QWindowsXPStyle (0x7f955154cd90) + QCommonStyle (0x7f955154ce70) 0 + primary-for QWindowsStyle (0x7f955154ce00) + QStyle (0x7f955154cee0) 0 + primary-for QCommonStyle (0x7f955154ce70) + QObject (0x7f955154cf50) 0 + primary-for QStyle (0x7f955154cee0) + +Vtable for QWindowsVistaStyle +QWindowsVistaStyle::_ZTV18QWindowsVistaStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QWindowsVistaStyle) +16 QWindowsVistaStyle::metaObject +24 QWindowsVistaStyle::qt_metacast +32 QWindowsVistaStyle::qt_metacall +40 QWindowsVistaStyle::~QWindowsVistaStyle +48 QWindowsVistaStyle::~QWindowsVistaStyle +56 QWindowsVistaStyle::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWindowsVistaStyle::polish +120 QWindowsVistaStyle::unpolish +128 QWindowsVistaStyle::polish +136 QWindowsVistaStyle::unpolish +144 QWindowsVistaStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QWindowsVistaStyle::standardPalette +192 QWindowsVistaStyle::drawPrimitive +200 QWindowsVistaStyle::drawControl +208 QWindowsVistaStyle::subElementRect +216 QWindowsVistaStyle::drawComplexControl +224 QWindowsVistaStyle::hitTestComplexControl +232 QWindowsVistaStyle::subControlRect +240 QWindowsVistaStyle::pixelMetric +248 QWindowsVistaStyle::sizeFromContents +256 QWindowsVistaStyle::styleHint +264 QWindowsVistaStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QWindowsVistaStyle + size=32 align=8 + base size=32 base align=8 +QWindowsVistaStyle (0x7f955156cc40) 0 + vptr=((& QWindowsVistaStyle::_ZTV18QWindowsVistaStyle) + 16u) + QWindowsXPStyle (0x7f955156ccb0) 0 + primary-for QWindowsVistaStyle (0x7f955156cc40) + QWindowsStyle (0x7f955156cd20) 0 + primary-for QWindowsXPStyle (0x7f955156ccb0) + QCommonStyle (0x7f955156cd90) 0 + primary-for QWindowsStyle (0x7f955156cd20) + QStyle (0x7f955156ce00) 0 + primary-for QCommonStyle (0x7f955156cd90) + QObject (0x7f955156ce70) 0 + primary-for QStyle (0x7f955156ce00) + +Vtable for QInputContext +QInputContext::_ZTV13QInputContext: 26u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QInputContext) +16 QInputContext::metaObject +24 QInputContext::qt_metacast +32 QInputContext::qt_metacall +40 QInputContext::~QInputContext +48 QInputContext::~QInputContext +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 QInputContext::update +144 QInputContext::mouseHandler +152 QInputContext::font +160 __cxa_pure_virtual +168 QInputContext::setFocusWidget +176 QInputContext::widgetDestroyed +184 QInputContext::actions +192 QInputContext::x11FilterEvent +200 QInputContext::filterEvent + +Class QInputContext + size=16 align=8 + base size=16 base align=8 +QInputContext (0x7f955158cc40) 0 + vptr=((& QInputContext::_ZTV13QInputContext) + 16u) + QObject (0x7f955158ccb0) 0 + primary-for QInputContext (0x7f955158cc40) + +Class QInputContextFactory + size=1 align=1 + base size=0 base align=1 +QInputContextFactory (0x7f95515ac5b0) 0 empty + +Vtable for QInputContextFactoryInterface +QInputContextFactoryInterface::_ZTV29QInputContextFactoryInterface: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI29QInputContextFactoryInterface) +16 QInputContextFactoryInterface::~QInputContextFactoryInterface +24 QInputContextFactoryInterface::~QInputContextFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual + +Class QInputContextFactoryInterface + size=8 align=8 + base size=8 base align=8 +QInputContextFactoryInterface (0x7f95515ac620) 0 nearly-empty + vptr=((& QInputContextFactoryInterface::_ZTV29QInputContextFactoryInterface) + 16u) + QFactoryInterface (0x7f95515ac690) 0 nearly-empty + primary-for QInputContextFactoryInterface (0x7f95515ac620) + +Vtable for QInputContextPlugin +QInputContextPlugin::_ZTV19QInputContextPlugin: 28u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QInputContextPlugin) +16 QInputContextPlugin::metaObject +24 QInputContextPlugin::qt_metacast +32 QInputContextPlugin::qt_metacall +40 QInputContextPlugin::~QInputContextPlugin +48 QInputContextPlugin::~QInputContextPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 (int (*)(...))-0x00000000000000010 +160 (int (*)(...))(& _ZTI19QInputContextPlugin) +168 QInputContextPlugin::_ZThn16_N19QInputContextPluginD1Ev +176 QInputContextPlugin::_ZThn16_N19QInputContextPluginD0Ev +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 __cxa_pure_virtual +208 __cxa_pure_virtual +216 __cxa_pure_virtual + +Class QInputContextPlugin + size=24 align=8 + base size=24 base align=8 +QInputContextPlugin (0x7f95515a8e80) 0 + vptr=((& QInputContextPlugin::_ZTV19QInputContextPlugin) + 16u) + QObject (0x7f95515ba000) 0 + primary-for QInputContextPlugin (0x7f95515a8e80) + QInputContextFactoryInterface (0x7f95515ba070) 16 nearly-empty + vptr=((& QInputContextPlugin::_ZTV19QInputContextPlugin) + 168u) + QFactoryInterface (0x7f95515ba0e0) 16 nearly-empty + primary-for QInputContextFactoryInterface (0x7f95515ba070) + +Vtable for QGraphicsItem +QGraphicsItem::_ZTV13QGraphicsItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QGraphicsItem) +16 QGraphicsItem::~QGraphicsItem +24 QGraphicsItem::~QGraphicsItem +32 QGraphicsItem::advance +40 __cxa_pure_virtual +48 QGraphicsItem::shape +56 QGraphicsItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsItem::isObscuredBy +88 QGraphicsItem::opaqueArea +96 __cxa_pure_virtual +104 QGraphicsItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsItem::supportsExtension +296 QGraphicsItem::setExtension +304 QGraphicsItem::extension + +Class QGraphicsItem + size=16 align=8 + base size=16 base align=8 +QGraphicsItem (0x7f95515ba380) 0 + vptr=((& QGraphicsItem::_ZTV13QGraphicsItem) + 16u) + +Vtable for QGraphicsObject +QGraphicsObject::_ZTV15QGraphicsObject: 53u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QGraphicsObject) +16 QGraphicsObject::metaObject +24 QGraphicsObject::qt_metacast +32 QGraphicsObject::qt_metacall +40 QGraphicsObject::~QGraphicsObject +48 QGraphicsObject::~QGraphicsObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 (int (*)(...))-0x00000000000000010 +120 (int (*)(...))(& _ZTI15QGraphicsObject) +128 QGraphicsObject::_ZThn16_N15QGraphicsObjectD1Ev +136 QGraphicsObject::_ZThn16_N15QGraphicsObjectD0Ev +144 QGraphicsItem::advance +152 __cxa_pure_virtual +160 QGraphicsItem::shape +168 QGraphicsItem::contains +176 QGraphicsItem::collidesWithItem +184 QGraphicsItem::collidesWithPath +192 QGraphicsItem::isObscuredBy +200 QGraphicsItem::opaqueArea +208 __cxa_pure_virtual +216 QGraphicsItem::type +224 QGraphicsItem::sceneEventFilter +232 QGraphicsItem::sceneEvent +240 QGraphicsItem::contextMenuEvent +248 QGraphicsItem::dragEnterEvent +256 QGraphicsItem::dragLeaveEvent +264 QGraphicsItem::dragMoveEvent +272 QGraphicsItem::dropEvent +280 QGraphicsItem::focusInEvent +288 QGraphicsItem::focusOutEvent +296 QGraphicsItem::hoverEnterEvent +304 QGraphicsItem::hoverMoveEvent +312 QGraphicsItem::hoverLeaveEvent +320 QGraphicsItem::keyPressEvent +328 QGraphicsItem::keyReleaseEvent +336 QGraphicsItem::mousePressEvent +344 QGraphicsItem::mouseMoveEvent +352 QGraphicsItem::mouseReleaseEvent +360 QGraphicsItem::mouseDoubleClickEvent +368 QGraphicsItem::wheelEvent +376 QGraphicsItem::inputMethodEvent +384 QGraphicsItem::inputMethodQuery +392 QGraphicsItem::itemChange +400 QGraphicsItem::supportsExtension +408 QGraphicsItem::setExtension +416 QGraphicsItem::extension + +Class QGraphicsObject + size=32 align=8 + base size=32 base align=8 +QGraphicsObject (0x7f95514b5c80) 0 + vptr=((& QGraphicsObject::_ZTV15QGraphicsObject) + 16u) + QObject (0x7f95514bcf50) 0 + primary-for QGraphicsObject (0x7f95514b5c80) + QGraphicsItem (0x7f95514c5000) 16 + vptr=((& QGraphicsObject::_ZTV15QGraphicsObject) + 128u) + +Vtable for QAbstractGraphicsShapeItem +QAbstractGraphicsShapeItem::_ZTV26QAbstractGraphicsShapeItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QAbstractGraphicsShapeItem) +16 QAbstractGraphicsShapeItem::~QAbstractGraphicsShapeItem +24 QAbstractGraphicsShapeItem::~QAbstractGraphicsShapeItem +32 QGraphicsItem::advance +40 __cxa_pure_virtual +48 QGraphicsItem::shape +56 QGraphicsItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QAbstractGraphicsShapeItem::isObscuredBy +88 QAbstractGraphicsShapeItem::opaqueArea +96 __cxa_pure_virtual +104 QGraphicsItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsItem::supportsExtension +296 QGraphicsItem::setExtension +304 QGraphicsItem::extension + +Class QAbstractGraphicsShapeItem + size=16 align=8 + base size=16 base align=8 +QAbstractGraphicsShapeItem (0x7f95514dd070) 0 + vptr=((& QAbstractGraphicsShapeItem::_ZTV26QAbstractGraphicsShapeItem) + 16u) + QGraphicsItem (0x7f95514dd0e0) 0 + primary-for QAbstractGraphicsShapeItem (0x7f95514dd070) + +Vtable for QGraphicsPathItem +QGraphicsPathItem::_ZTV17QGraphicsPathItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QGraphicsPathItem) +16 QGraphicsPathItem::~QGraphicsPathItem +24 QGraphicsPathItem::~QGraphicsPathItem +32 QGraphicsItem::advance +40 QGraphicsPathItem::boundingRect +48 QGraphicsPathItem::shape +56 QGraphicsPathItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsPathItem::isObscuredBy +88 QGraphicsPathItem::opaqueArea +96 QGraphicsPathItem::paint +104 QGraphicsPathItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsPathItem::supportsExtension +296 QGraphicsPathItem::setExtension +304 QGraphicsPathItem::extension + +Class QGraphicsPathItem + size=16 align=8 + base size=16 base align=8 +QGraphicsPathItem (0x7f95514ddee0) 0 + vptr=((& QGraphicsPathItem::_ZTV17QGraphicsPathItem) + 16u) + QAbstractGraphicsShapeItem (0x7f95514ddf50) 0 + primary-for QGraphicsPathItem (0x7f95514ddee0) + QGraphicsItem (0x7f95514dd930) 0 + primary-for QAbstractGraphicsShapeItem (0x7f95514ddf50) + +Vtable for QGraphicsRectItem +QGraphicsRectItem::_ZTV17QGraphicsRectItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QGraphicsRectItem) +16 QGraphicsRectItem::~QGraphicsRectItem +24 QGraphicsRectItem::~QGraphicsRectItem +32 QGraphicsItem::advance +40 QGraphicsRectItem::boundingRect +48 QGraphicsRectItem::shape +56 QGraphicsRectItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsRectItem::isObscuredBy +88 QGraphicsRectItem::opaqueArea +96 QGraphicsRectItem::paint +104 QGraphicsRectItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsRectItem::supportsExtension +296 QGraphicsRectItem::setExtension +304 QGraphicsRectItem::extension + +Class QGraphicsRectItem + size=16 align=8 + base size=16 base align=8 +QGraphicsRectItem (0x7f95512e3e70) 0 + vptr=((& QGraphicsRectItem::_ZTV17QGraphicsRectItem) + 16u) + QAbstractGraphicsShapeItem (0x7f95512e3ee0) 0 + primary-for QGraphicsRectItem (0x7f95512e3e70) + QGraphicsItem (0x7f95512e3f50) 0 + primary-for QAbstractGraphicsShapeItem (0x7f95512e3ee0) + +Vtable for QGraphicsEllipseItem +QGraphicsEllipseItem::_ZTV20QGraphicsEllipseItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QGraphicsEllipseItem) +16 QGraphicsEllipseItem::~QGraphicsEllipseItem +24 QGraphicsEllipseItem::~QGraphicsEllipseItem +32 QGraphicsItem::advance +40 QGraphicsEllipseItem::boundingRect +48 QGraphicsEllipseItem::shape +56 QGraphicsEllipseItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsEllipseItem::isObscuredBy +88 QGraphicsEllipseItem::opaqueArea +96 QGraphicsEllipseItem::paint +104 QGraphicsEllipseItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsEllipseItem::supportsExtension +296 QGraphicsEllipseItem::setExtension +304 QGraphicsEllipseItem::extension + +Class QGraphicsEllipseItem + size=16 align=8 + base size=16 base align=8 +QGraphicsEllipseItem (0x7f9551308150) 0 + vptr=((& QGraphicsEllipseItem::_ZTV20QGraphicsEllipseItem) + 16u) + QAbstractGraphicsShapeItem (0x7f95513081c0) 0 + primary-for QGraphicsEllipseItem (0x7f9551308150) + QGraphicsItem (0x7f9551308230) 0 + primary-for QAbstractGraphicsShapeItem (0x7f95513081c0) + +Vtable for QGraphicsPolygonItem +QGraphicsPolygonItem::_ZTV20QGraphicsPolygonItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QGraphicsPolygonItem) +16 QGraphicsPolygonItem::~QGraphicsPolygonItem +24 QGraphicsPolygonItem::~QGraphicsPolygonItem +32 QGraphicsItem::advance +40 QGraphicsPolygonItem::boundingRect +48 QGraphicsPolygonItem::shape +56 QGraphicsPolygonItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsPolygonItem::isObscuredBy +88 QGraphicsPolygonItem::opaqueArea +96 QGraphicsPolygonItem::paint +104 QGraphicsPolygonItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsPolygonItem::supportsExtension +296 QGraphicsPolygonItem::setExtension +304 QGraphicsPolygonItem::extension + +Class QGraphicsPolygonItem + size=16 align=8 + base size=16 base align=8 +QGraphicsPolygonItem (0x7f955131b460) 0 + vptr=((& QGraphicsPolygonItem::_ZTV20QGraphicsPolygonItem) + 16u) + QAbstractGraphicsShapeItem (0x7f955131b4d0) 0 + primary-for QGraphicsPolygonItem (0x7f955131b460) + QGraphicsItem (0x7f955131b540) 0 + primary-for QAbstractGraphicsShapeItem (0x7f955131b4d0) + +Vtable for QGraphicsLineItem +QGraphicsLineItem::_ZTV17QGraphicsLineItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QGraphicsLineItem) +16 QGraphicsLineItem::~QGraphicsLineItem +24 QGraphicsLineItem::~QGraphicsLineItem +32 QGraphicsItem::advance +40 QGraphicsLineItem::boundingRect +48 QGraphicsLineItem::shape +56 QGraphicsLineItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsLineItem::isObscuredBy +88 QGraphicsLineItem::opaqueArea +96 QGraphicsLineItem::paint +104 QGraphicsLineItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsLineItem::supportsExtension +296 QGraphicsLineItem::setExtension +304 QGraphicsLineItem::extension + +Class QGraphicsLineItem + size=16 align=8 + base size=16 base align=8 +QGraphicsLineItem (0x7f955132e3f0) 0 + vptr=((& QGraphicsLineItem::_ZTV17QGraphicsLineItem) + 16u) + QGraphicsItem (0x7f955132e460) 0 + primary-for QGraphicsLineItem (0x7f955132e3f0) + +Vtable for QGraphicsPixmapItem +QGraphicsPixmapItem::_ZTV19QGraphicsPixmapItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QGraphicsPixmapItem) +16 QGraphicsPixmapItem::~QGraphicsPixmapItem +24 QGraphicsPixmapItem::~QGraphicsPixmapItem +32 QGraphicsItem::advance +40 QGraphicsPixmapItem::boundingRect +48 QGraphicsPixmapItem::shape +56 QGraphicsPixmapItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsPixmapItem::isObscuredBy +88 QGraphicsPixmapItem::opaqueArea +96 QGraphicsPixmapItem::paint +104 QGraphicsPixmapItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsPixmapItem::supportsExtension +296 QGraphicsPixmapItem::setExtension +304 QGraphicsPixmapItem::extension + +Class QGraphicsPixmapItem + size=16 align=8 + base size=16 base align=8 +QGraphicsPixmapItem (0x7f9551341690) 0 + vptr=((& QGraphicsPixmapItem::_ZTV19QGraphicsPixmapItem) + 16u) + QGraphicsItem (0x7f9551341700) 0 + primary-for QGraphicsPixmapItem (0x7f9551341690) + +Vtable for QGraphicsTextItem +QGraphicsTextItem::_ZTV17QGraphicsTextItem: 82u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QGraphicsTextItem) +16 QGraphicsTextItem::metaObject +24 QGraphicsTextItem::qt_metacast +32 QGraphicsTextItem::qt_metacall +40 QGraphicsTextItem::~QGraphicsTextItem +48 QGraphicsTextItem::~QGraphicsTextItem +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsTextItem::boundingRect +120 QGraphicsTextItem::shape +128 QGraphicsTextItem::contains +136 QGraphicsTextItem::paint +144 QGraphicsTextItem::isObscuredBy +152 QGraphicsTextItem::opaqueArea +160 QGraphicsTextItem::type +168 QGraphicsTextItem::sceneEvent +176 QGraphicsTextItem::mousePressEvent +184 QGraphicsTextItem::mouseMoveEvent +192 QGraphicsTextItem::mouseReleaseEvent +200 QGraphicsTextItem::mouseDoubleClickEvent +208 QGraphicsTextItem::contextMenuEvent +216 QGraphicsTextItem::keyPressEvent +224 QGraphicsTextItem::keyReleaseEvent +232 QGraphicsTextItem::focusInEvent +240 QGraphicsTextItem::focusOutEvent +248 QGraphicsTextItem::dragEnterEvent +256 QGraphicsTextItem::dragLeaveEvent +264 QGraphicsTextItem::dragMoveEvent +272 QGraphicsTextItem::dropEvent +280 QGraphicsTextItem::inputMethodEvent +288 QGraphicsTextItem::hoverEnterEvent +296 QGraphicsTextItem::hoverMoveEvent +304 QGraphicsTextItem::hoverLeaveEvent +312 QGraphicsTextItem::inputMethodQuery +320 QGraphicsTextItem::supportsExtension +328 QGraphicsTextItem::setExtension +336 QGraphicsTextItem::extension +344 (int (*)(...))-0x00000000000000010 +352 (int (*)(...))(& _ZTI17QGraphicsTextItem) +360 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItemD1Ev +368 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItemD0Ev +376 QGraphicsItem::advance +384 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem12boundingRectEv +392 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem5shapeEv +400 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem8containsERK7QPointF +408 QGraphicsItem::collidesWithItem +416 QGraphicsItem::collidesWithPath +424 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem12isObscuredByEPK13QGraphicsItem +432 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem10opaqueAreaEv +440 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget +448 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem4typeEv +456 QGraphicsItem::sceneEventFilter +464 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem10sceneEventEP6QEvent +472 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem16contextMenuEventEP30QGraphicsSceneContextMenuEvent +480 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem14dragEnterEventEP27QGraphicsSceneDragDropEvent +488 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem14dragLeaveEventEP27QGraphicsSceneDragDropEvent +496 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem13dragMoveEventEP27QGraphicsSceneDragDropEvent +504 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem9dropEventEP27QGraphicsSceneDragDropEvent +512 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem12focusInEventEP11QFocusEvent +520 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem13focusOutEventEP11QFocusEvent +528 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem15hoverEnterEventEP24QGraphicsSceneHoverEvent +536 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem14hoverMoveEventEP24QGraphicsSceneHoverEvent +544 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem15hoverLeaveEventEP24QGraphicsSceneHoverEvent +552 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem13keyPressEventEP9QKeyEvent +560 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem15keyReleaseEventEP9QKeyEvent +568 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem15mousePressEventEP24QGraphicsSceneMouseEvent +576 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem14mouseMoveEventEP24QGraphicsSceneMouseEvent +584 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem17mouseReleaseEventEP24QGraphicsSceneMouseEvent +592 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem21mouseDoubleClickEventEP24QGraphicsSceneMouseEvent +600 QGraphicsItem::wheelEvent +608 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem16inputMethodEventEP17QInputMethodEvent +616 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem16inputMethodQueryEN2Qt16InputMethodQueryE +624 QGraphicsItem::itemChange +632 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem17supportsExtensionEN13QGraphicsItem9ExtensionE +640 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem12setExtensionEN13QGraphicsItem9ExtensionERK8QVariant +648 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem9extensionERK8QVariant + +Class QGraphicsTextItem + size=40 align=8 + base size=40 base align=8 +QGraphicsTextItem (0x7f9551352930) 0 + vptr=((& QGraphicsTextItem::_ZTV17QGraphicsTextItem) + 16u) + QGraphicsObject (0x7f9551346700) 0 + primary-for QGraphicsTextItem (0x7f9551352930) + QObject (0x7f95513529a0) 0 + primary-for QGraphicsObject (0x7f9551346700) + QGraphicsItem (0x7f9551352a10) 16 + vptr=((& QGraphicsTextItem::_ZTV17QGraphicsTextItem) + 360u) + +Vtable for QGraphicsSimpleTextItem +QGraphicsSimpleTextItem::_ZTV23QGraphicsSimpleTextItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QGraphicsSimpleTextItem) +16 QGraphicsSimpleTextItem::~QGraphicsSimpleTextItem +24 QGraphicsSimpleTextItem::~QGraphicsSimpleTextItem +32 QGraphicsItem::advance +40 QGraphicsSimpleTextItem::boundingRect +48 QGraphicsSimpleTextItem::shape +56 QGraphicsSimpleTextItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsSimpleTextItem::isObscuredBy +88 QGraphicsSimpleTextItem::opaqueArea +96 QGraphicsSimpleTextItem::paint +104 QGraphicsSimpleTextItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsSimpleTextItem::supportsExtension +296 QGraphicsSimpleTextItem::setExtension +304 QGraphicsSimpleTextItem::extension + +Class QGraphicsSimpleTextItem + size=16 align=8 + base size=16 base align=8 +QGraphicsSimpleTextItem (0x7f9551372380) 0 + vptr=((& QGraphicsSimpleTextItem::_ZTV23QGraphicsSimpleTextItem) + 16u) + QAbstractGraphicsShapeItem (0x7f9551388000) 0 + primary-for QGraphicsSimpleTextItem (0x7f9551372380) + QGraphicsItem (0x7f9551388070) 0 + primary-for QAbstractGraphicsShapeItem (0x7f9551388000) + +Vtable for QGraphicsItemGroup +QGraphicsItemGroup::_ZTV18QGraphicsItemGroup: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QGraphicsItemGroup) +16 QGraphicsItemGroup::~QGraphicsItemGroup +24 QGraphicsItemGroup::~QGraphicsItemGroup +32 QGraphicsItem::advance +40 QGraphicsItemGroup::boundingRect +48 QGraphicsItem::shape +56 QGraphicsItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsItemGroup::isObscuredBy +88 QGraphicsItemGroup::opaqueArea +96 QGraphicsItemGroup::paint +104 QGraphicsItemGroup::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsItem::supportsExtension +296 QGraphicsItem::setExtension +304 QGraphicsItem::extension + +Class QGraphicsItemGroup + size=16 align=8 + base size=16 base align=8 +QGraphicsItemGroup (0x7f9551388f50) 0 + vptr=((& QGraphicsItemGroup::_ZTV18QGraphicsItemGroup) + 16u) + QGraphicsItem (0x7f95513889a0) 0 + primary-for QGraphicsItemGroup (0x7f9551388f50) + +Vtable for QGraphicsLayoutItem +QGraphicsLayoutItem::_ZTV19QGraphicsLayoutItem: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QGraphicsLayoutItem) +16 QGraphicsLayoutItem::~QGraphicsLayoutItem +24 QGraphicsLayoutItem::~QGraphicsLayoutItem +32 QGraphicsLayoutItem::setGeometry +40 QGraphicsLayoutItem::getContentsMargins +48 QGraphicsLayoutItem::updateGeometry +56 __cxa_pure_virtual + +Class QGraphicsLayoutItem + size=16 align=8 + base size=16 base align=8 +QGraphicsLayoutItem (0x7f95513aa850) 0 + vptr=((& QGraphicsLayoutItem::_ZTV19QGraphicsLayoutItem) + 16u) + +Vtable for QGraphicsLayout +QGraphicsLayout::_ZTV15QGraphicsLayout: 13u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QGraphicsLayout) +16 QGraphicsLayout::~QGraphicsLayout +24 QGraphicsLayout::~QGraphicsLayout +32 QGraphicsLayoutItem::setGeometry +40 QGraphicsLayout::getContentsMargins +48 QGraphicsLayout::updateGeometry +56 __cxa_pure_virtual +64 QGraphicsLayout::invalidate +72 QGraphicsLayout::widgetEvent +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual + +Class QGraphicsLayout + size=16 align=8 + base size=16 base align=8 +QGraphicsLayout (0x7f95511ee070) 0 + vptr=((& QGraphicsLayout::_ZTV15QGraphicsLayout) + 16u) + QGraphicsLayoutItem (0x7f95511ee0e0) 0 + primary-for QGraphicsLayout (0x7f95511ee070) + +Vtable for QGraphicsAnchor +QGraphicsAnchor::_ZTV15QGraphicsAnchor: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QGraphicsAnchor) +16 QGraphicsAnchor::metaObject +24 QGraphicsAnchor::qt_metacast +32 QGraphicsAnchor::qt_metacall +40 QGraphicsAnchor::~QGraphicsAnchor +48 QGraphicsAnchor::~QGraphicsAnchor +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QGraphicsAnchor + size=16 align=8 + base size=16 base align=8 +QGraphicsAnchor (0x7f95511fc850) 0 + vptr=((& QGraphicsAnchor::_ZTV15QGraphicsAnchor) + 16u) + QObject (0x7f95511fc8c0) 0 + primary-for QGraphicsAnchor (0x7f95511fc850) + +Vtable for QGraphicsAnchorLayout +QGraphicsAnchorLayout::_ZTV21QGraphicsAnchorLayout: 13u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QGraphicsAnchorLayout) +16 QGraphicsAnchorLayout::~QGraphicsAnchorLayout +24 QGraphicsAnchorLayout::~QGraphicsAnchorLayout +32 QGraphicsAnchorLayout::setGeometry +40 QGraphicsLayout::getContentsMargins +48 QGraphicsLayout::updateGeometry +56 QGraphicsAnchorLayout::sizeHint +64 QGraphicsAnchorLayout::invalidate +72 QGraphicsLayout::widgetEvent +80 QGraphicsAnchorLayout::count +88 QGraphicsAnchorLayout::itemAt +96 QGraphicsAnchorLayout::removeAt + +Class QGraphicsAnchorLayout + size=16 align=8 + base size=16 base align=8 +QGraphicsAnchorLayout (0x7f9551210d90) 0 + vptr=((& QGraphicsAnchorLayout::_ZTV21QGraphicsAnchorLayout) + 16u) + QGraphicsLayout (0x7f9551210e00) 0 + primary-for QGraphicsAnchorLayout (0x7f9551210d90) + QGraphicsLayoutItem (0x7f9551210e70) 0 + primary-for QGraphicsLayout (0x7f9551210e00) + +Vtable for QGraphicsGridLayout +QGraphicsGridLayout::_ZTV19QGraphicsGridLayout: 13u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QGraphicsGridLayout) +16 QGraphicsGridLayout::~QGraphicsGridLayout +24 QGraphicsGridLayout::~QGraphicsGridLayout +32 QGraphicsGridLayout::setGeometry +40 QGraphicsLayout::getContentsMargins +48 QGraphicsLayout::updateGeometry +56 QGraphicsGridLayout::sizeHint +64 QGraphicsGridLayout::invalidate +72 QGraphicsLayout::widgetEvent +80 QGraphicsGridLayout::count +88 QGraphicsGridLayout::itemAt +96 QGraphicsGridLayout::removeAt + +Class QGraphicsGridLayout + size=16 align=8 + base size=16 base align=8 +QGraphicsGridLayout (0x7f95512280e0) 0 + vptr=((& QGraphicsGridLayout::_ZTV19QGraphicsGridLayout) + 16u) + QGraphicsLayout (0x7f9551228150) 0 + primary-for QGraphicsGridLayout (0x7f95512280e0) + QGraphicsLayoutItem (0x7f95512281c0) 0 + primary-for QGraphicsLayout (0x7f9551228150) + +Vtable for QGraphicsItemAnimation +QGraphicsItemAnimation::_ZTV22QGraphicsItemAnimation: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QGraphicsItemAnimation) +16 QGraphicsItemAnimation::metaObject +24 QGraphicsItemAnimation::qt_metacast +32 QGraphicsItemAnimation::qt_metacall +40 QGraphicsItemAnimation::~QGraphicsItemAnimation +48 QGraphicsItemAnimation::~QGraphicsItemAnimation +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsItemAnimation::beforeAnimationStep +120 QGraphicsItemAnimation::afterAnimationStep + +Class QGraphicsItemAnimation + size=24 align=8 + base size=24 base align=8 +QGraphicsItemAnimation (0x7f95512444d0) 0 + vptr=((& QGraphicsItemAnimation::_ZTV22QGraphicsItemAnimation) + 16u) + QObject (0x7f9551244540) 0 + primary-for QGraphicsItemAnimation (0x7f95512444d0) + +Vtable for QGraphicsLinearLayout +QGraphicsLinearLayout::_ZTV21QGraphicsLinearLayout: 13u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QGraphicsLinearLayout) +16 QGraphicsLinearLayout::~QGraphicsLinearLayout +24 QGraphicsLinearLayout::~QGraphicsLinearLayout +32 QGraphicsLinearLayout::setGeometry +40 QGraphicsLayout::getContentsMargins +48 QGraphicsLayout::updateGeometry +56 QGraphicsLinearLayout::sizeHint +64 QGraphicsLinearLayout::invalidate +72 QGraphicsLayout::widgetEvent +80 QGraphicsLinearLayout::count +88 QGraphicsLinearLayout::itemAt +96 QGraphicsLinearLayout::removeAt + +Class QGraphicsLinearLayout + size=16 align=8 + base size=16 base align=8 +QGraphicsLinearLayout (0x7f955125f850) 0 + vptr=((& QGraphicsLinearLayout::_ZTV21QGraphicsLinearLayout) + 16u) + QGraphicsLayout (0x7f955125f8c0) 0 + primary-for QGraphicsLinearLayout (0x7f955125f850) + QGraphicsLayoutItem (0x7f955125f930) 0 + primary-for QGraphicsLayout (0x7f955125f8c0) + +Vtable for QGraphicsWidget +QGraphicsWidget::_ZTV15QGraphicsWidget: 92u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QGraphicsWidget) +16 QGraphicsWidget::metaObject +24 QGraphicsWidget::qt_metacast +32 QGraphicsWidget::qt_metacall +40 QGraphicsWidget::~QGraphicsWidget +48 QGraphicsWidget::~QGraphicsWidget +56 QGraphicsWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsWidget::setGeometry +120 QGraphicsWidget::getContentsMargins +128 QGraphicsWidget::type +136 QGraphicsWidget::paint +144 QGraphicsWidget::paintWindowFrame +152 QGraphicsWidget::boundingRect +160 QGraphicsWidget::shape +168 QGraphicsWidget::initStyleOption +176 QGraphicsWidget::sizeHint +184 QGraphicsWidget::updateGeometry +192 QGraphicsWidget::itemChange +200 QGraphicsWidget::propertyChange +208 QGraphicsWidget::sceneEvent +216 QGraphicsWidget::windowFrameEvent +224 QGraphicsWidget::windowFrameSectionAt +232 QGraphicsWidget::changeEvent +240 QGraphicsWidget::closeEvent +248 QGraphicsWidget::focusInEvent +256 QGraphicsWidget::focusNextPrevChild +264 QGraphicsWidget::focusOutEvent +272 QGraphicsWidget::hideEvent +280 QGraphicsWidget::moveEvent +288 QGraphicsWidget::polishEvent +296 QGraphicsWidget::resizeEvent +304 QGraphicsWidget::showEvent +312 QGraphicsWidget::hoverMoveEvent +320 QGraphicsWidget::hoverLeaveEvent +328 QGraphicsWidget::grabMouseEvent +336 QGraphicsWidget::ungrabMouseEvent +344 QGraphicsWidget::grabKeyboardEvent +352 QGraphicsWidget::ungrabKeyboardEvent +360 (int (*)(...))-0x00000000000000010 +368 (int (*)(...))(& _ZTI15QGraphicsWidget) +376 QGraphicsWidget::_ZThn16_N15QGraphicsWidgetD1Ev +384 QGraphicsWidget::_ZThn16_N15QGraphicsWidgetD0Ev +392 QGraphicsItem::advance +400 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget12boundingRectEv +408 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget5shapeEv +416 QGraphicsItem::contains +424 QGraphicsItem::collidesWithItem +432 QGraphicsItem::collidesWithPath +440 QGraphicsItem::isObscuredBy +448 QGraphicsItem::opaqueArea +456 QGraphicsWidget::_ZThn16_N15QGraphicsWidget5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget +464 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget4typeEv +472 QGraphicsItem::sceneEventFilter +480 QGraphicsWidget::_ZThn16_N15QGraphicsWidget10sceneEventEP6QEvent +488 QGraphicsItem::contextMenuEvent +496 QGraphicsItem::dragEnterEvent +504 QGraphicsItem::dragLeaveEvent +512 QGraphicsItem::dragMoveEvent +520 QGraphicsItem::dropEvent +528 QGraphicsWidget::_ZThn16_N15QGraphicsWidget12focusInEventEP11QFocusEvent +536 QGraphicsWidget::_ZThn16_N15QGraphicsWidget13focusOutEventEP11QFocusEvent +544 QGraphicsItem::hoverEnterEvent +552 QGraphicsWidget::_ZThn16_N15QGraphicsWidget14hoverMoveEventEP24QGraphicsSceneHoverEvent +560 QGraphicsWidget::_ZThn16_N15QGraphicsWidget15hoverLeaveEventEP24QGraphicsSceneHoverEvent +568 QGraphicsItem::keyPressEvent +576 QGraphicsItem::keyReleaseEvent +584 QGraphicsItem::mousePressEvent +592 QGraphicsItem::mouseMoveEvent +600 QGraphicsItem::mouseReleaseEvent +608 QGraphicsItem::mouseDoubleClickEvent +616 QGraphicsItem::wheelEvent +624 QGraphicsItem::inputMethodEvent +632 QGraphicsItem::inputMethodQuery +640 QGraphicsWidget::_ZThn16_N15QGraphicsWidget10itemChangeEN13QGraphicsItem18GraphicsItemChangeERK8QVariant +648 QGraphicsItem::supportsExtension +656 QGraphicsItem::setExtension +664 QGraphicsItem::extension +672 (int (*)(...))-0x00000000000000020 +680 (int (*)(...))(& _ZTI15QGraphicsWidget) +688 QGraphicsWidget::_ZThn32_N15QGraphicsWidgetD1Ev +696 QGraphicsWidget::_ZThn32_N15QGraphicsWidgetD0Ev +704 QGraphicsWidget::_ZThn32_N15QGraphicsWidget11setGeometryERK6QRectF +712 QGraphicsWidget::_ZThn32_NK15QGraphicsWidget18getContentsMarginsEPdS0_S0_S0_ +720 QGraphicsWidget::_ZThn32_N15QGraphicsWidget14updateGeometryEv +728 QGraphicsWidget::_ZThn32_NK15QGraphicsWidget8sizeHintEN2Qt8SizeHintERK6QSizeF + +Class QGraphicsWidget + size=48 align=8 + base size=48 base align=8 +QGraphicsWidget (0x7f955127b000) 0 + vptr=((& QGraphicsWidget::_ZTV15QGraphicsWidget) + 16u) + QGraphicsObject (0x7f955127b080) 0 + primary-for QGraphicsWidget (0x7f955127b000) + QObject (0x7f955127a070) 0 + primary-for QGraphicsObject (0x7f955127b080) + QGraphicsItem (0x7f955127a0e0) 16 + vptr=((& QGraphicsWidget::_ZTV15QGraphicsWidget) + 376u) + QGraphicsLayoutItem (0x7f955127a150) 32 + vptr=((& QGraphicsWidget::_ZTV15QGraphicsWidget) + 688u) + +Vtable for QGraphicsProxyWidget +QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget: 105u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QGraphicsProxyWidget) +16 QGraphicsProxyWidget::metaObject +24 QGraphicsProxyWidget::qt_metacast +32 QGraphicsProxyWidget::qt_metacall +40 QGraphicsProxyWidget::~QGraphicsProxyWidget +48 QGraphicsProxyWidget::~QGraphicsProxyWidget +56 QGraphicsProxyWidget::event +64 QGraphicsProxyWidget::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsProxyWidget::setGeometry +120 QGraphicsWidget::getContentsMargins +128 QGraphicsProxyWidget::type +136 QGraphicsProxyWidget::paint +144 QGraphicsWidget::paintWindowFrame +152 QGraphicsWidget::boundingRect +160 QGraphicsWidget::shape +168 QGraphicsWidget::initStyleOption +176 QGraphicsProxyWidget::sizeHint +184 QGraphicsWidget::updateGeometry +192 QGraphicsProxyWidget::itemChange +200 QGraphicsWidget::propertyChange +208 QGraphicsWidget::sceneEvent +216 QGraphicsWidget::windowFrameEvent +224 QGraphicsWidget::windowFrameSectionAt +232 QGraphicsWidget::changeEvent +240 QGraphicsWidget::closeEvent +248 QGraphicsProxyWidget::focusInEvent +256 QGraphicsProxyWidget::focusNextPrevChild +264 QGraphicsProxyWidget::focusOutEvent +272 QGraphicsProxyWidget::hideEvent +280 QGraphicsWidget::moveEvent +288 QGraphicsWidget::polishEvent +296 QGraphicsProxyWidget::resizeEvent +304 QGraphicsProxyWidget::showEvent +312 QGraphicsProxyWidget::hoverMoveEvent +320 QGraphicsProxyWidget::hoverLeaveEvent +328 QGraphicsProxyWidget::grabMouseEvent +336 QGraphicsProxyWidget::ungrabMouseEvent +344 QGraphicsWidget::grabKeyboardEvent +352 QGraphicsWidget::ungrabKeyboardEvent +360 QGraphicsProxyWidget::contextMenuEvent +368 QGraphicsProxyWidget::dragEnterEvent +376 QGraphicsProxyWidget::dragLeaveEvent +384 QGraphicsProxyWidget::dragMoveEvent +392 QGraphicsProxyWidget::dropEvent +400 QGraphicsProxyWidget::hoverEnterEvent +408 QGraphicsProxyWidget::mouseMoveEvent +416 QGraphicsProxyWidget::mousePressEvent +424 QGraphicsProxyWidget::mouseReleaseEvent +432 QGraphicsProxyWidget::mouseDoubleClickEvent +440 QGraphicsProxyWidget::wheelEvent +448 QGraphicsProxyWidget::keyPressEvent +456 QGraphicsProxyWidget::keyReleaseEvent +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI20QGraphicsProxyWidget) +480 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidgetD1Ev +488 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidgetD0Ev +496 QGraphicsItem::advance +504 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget12boundingRectEv +512 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget5shapeEv +520 QGraphicsItem::contains +528 QGraphicsItem::collidesWithItem +536 QGraphicsItem::collidesWithPath +544 QGraphicsItem::isObscuredBy +552 QGraphicsItem::opaqueArea +560 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget +568 QGraphicsProxyWidget::_ZThn16_NK20QGraphicsProxyWidget4typeEv +576 QGraphicsItem::sceneEventFilter +584 QGraphicsWidget::_ZThn16_N15QGraphicsWidget10sceneEventEP6QEvent +592 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget16contextMenuEventEP30QGraphicsSceneContextMenuEvent +600 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget14dragEnterEventEP27QGraphicsSceneDragDropEvent +608 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget14dragLeaveEventEP27QGraphicsSceneDragDropEvent +616 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget13dragMoveEventEP27QGraphicsSceneDragDropEvent +624 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget9dropEventEP27QGraphicsSceneDragDropEvent +632 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget12focusInEventEP11QFocusEvent +640 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget13focusOutEventEP11QFocusEvent +648 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget15hoverEnterEventEP24QGraphicsSceneHoverEvent +656 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget14hoverMoveEventEP24QGraphicsSceneHoverEvent +664 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget15hoverLeaveEventEP24QGraphicsSceneHoverEvent +672 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget13keyPressEventEP9QKeyEvent +680 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget15keyReleaseEventEP9QKeyEvent +688 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget15mousePressEventEP24QGraphicsSceneMouseEvent +696 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget14mouseMoveEventEP24QGraphicsSceneMouseEvent +704 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget17mouseReleaseEventEP24QGraphicsSceneMouseEvent +712 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget21mouseDoubleClickEventEP24QGraphicsSceneMouseEvent +720 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget10wheelEventEP24QGraphicsSceneWheelEvent +728 QGraphicsItem::inputMethodEvent +736 QGraphicsItem::inputMethodQuery +744 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget10itemChangeEN13QGraphicsItem18GraphicsItemChangeERK8QVariant +752 QGraphicsItem::supportsExtension +760 QGraphicsItem::setExtension +768 QGraphicsItem::extension +776 (int (*)(...))-0x00000000000000020 +784 (int (*)(...))(& _ZTI20QGraphicsProxyWidget) +792 QGraphicsProxyWidget::_ZThn32_N20QGraphicsProxyWidgetD1Ev +800 QGraphicsProxyWidget::_ZThn32_N20QGraphicsProxyWidgetD0Ev +808 QGraphicsProxyWidget::_ZThn32_N20QGraphicsProxyWidget11setGeometryERK6QRectF +816 QGraphicsWidget::_ZThn32_NK15QGraphicsWidget18getContentsMarginsEPdS0_S0_S0_ +824 QGraphicsWidget::_ZThn32_N15QGraphicsWidget14updateGeometryEv +832 QGraphicsProxyWidget::_ZThn32_NK20QGraphicsProxyWidget8sizeHintEN2Qt8SizeHintERK6QSizeF + +Class QGraphicsProxyWidget + size=48 align=8 + base size=48 base align=8 +QGraphicsProxyWidget (0x7f95512b48c0) 0 + vptr=((& QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget) + 16u) + QGraphicsWidget (0x7f95512b7000) 0 + primary-for QGraphicsProxyWidget (0x7f95512b48c0) + QGraphicsObject (0x7f95512b7080) 0 + primary-for QGraphicsWidget (0x7f95512b7000) + QObject (0x7f95512b4930) 0 + primary-for QGraphicsObject (0x7f95512b7080) + QGraphicsItem (0x7f95512b49a0) 16 + vptr=((& QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget) + 480u) + QGraphicsLayoutItem (0x7f95512b4a10) 32 + vptr=((& QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget) + 792u) + +Vtable for QGraphicsScene +QGraphicsScene::_ZTV14QGraphicsScene: 34u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QGraphicsScene) +16 QGraphicsScene::metaObject +24 QGraphicsScene::qt_metacast +32 QGraphicsScene::qt_metacall +40 QGraphicsScene::~QGraphicsScene +48 QGraphicsScene::~QGraphicsScene +56 QGraphicsScene::event +64 QGraphicsScene::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsScene::inputMethodQuery +120 QGraphicsScene::contextMenuEvent +128 QGraphicsScene::dragEnterEvent +136 QGraphicsScene::dragMoveEvent +144 QGraphicsScene::dragLeaveEvent +152 QGraphicsScene::dropEvent +160 QGraphicsScene::focusInEvent +168 QGraphicsScene::focusOutEvent +176 QGraphicsScene::helpEvent +184 QGraphicsScene::keyPressEvent +192 QGraphicsScene::keyReleaseEvent +200 QGraphicsScene::mousePressEvent +208 QGraphicsScene::mouseMoveEvent +216 QGraphicsScene::mouseReleaseEvent +224 QGraphicsScene::mouseDoubleClickEvent +232 QGraphicsScene::wheelEvent +240 QGraphicsScene::inputMethodEvent +248 QGraphicsScene::drawBackground +256 QGraphicsScene::drawForeground +264 QGraphicsScene::drawItems + +Class QGraphicsScene + size=16 align=8 + base size=16 base align=8 +QGraphicsScene (0x7f95510e0930) 0 + vptr=((& QGraphicsScene::_ZTV14QGraphicsScene) + 16u) + QObject (0x7f95510e09a0) 0 + primary-for QGraphicsScene (0x7f95510e0930) + +Vtable for QGraphicsSceneEvent +QGraphicsSceneEvent::_ZTV19QGraphicsSceneEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QGraphicsSceneEvent) +16 QGraphicsSceneEvent::~QGraphicsSceneEvent +24 QGraphicsSceneEvent::~QGraphicsSceneEvent + +Class QGraphicsSceneEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneEvent (0x7f9551192850) 0 + vptr=((& QGraphicsSceneEvent::_ZTV19QGraphicsSceneEvent) + 16u) + QEvent (0x7f95511928c0) 0 + primary-for QGraphicsSceneEvent (0x7f9551192850) + +Vtable for QGraphicsSceneMouseEvent +QGraphicsSceneMouseEvent::_ZTV24QGraphicsSceneMouseEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QGraphicsSceneMouseEvent) +16 QGraphicsSceneMouseEvent::~QGraphicsSceneMouseEvent +24 QGraphicsSceneMouseEvent::~QGraphicsSceneMouseEvent + +Class QGraphicsSceneMouseEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneMouseEvent (0x7f95511c1310) 0 + vptr=((& QGraphicsSceneMouseEvent::_ZTV24QGraphicsSceneMouseEvent) + 16u) + QGraphicsSceneEvent (0x7f95511c1380) 0 + primary-for QGraphicsSceneMouseEvent (0x7f95511c1310) + QEvent (0x7f95511c13f0) 0 + primary-for QGraphicsSceneEvent (0x7f95511c1380) + +Vtable for QGraphicsSceneWheelEvent +QGraphicsSceneWheelEvent::_ZTV24QGraphicsSceneWheelEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QGraphicsSceneWheelEvent) +16 QGraphicsSceneWheelEvent::~QGraphicsSceneWheelEvent +24 QGraphicsSceneWheelEvent::~QGraphicsSceneWheelEvent + +Class QGraphicsSceneWheelEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneWheelEvent (0x7f95511c1cb0) 0 + vptr=((& QGraphicsSceneWheelEvent::_ZTV24QGraphicsSceneWheelEvent) + 16u) + QGraphicsSceneEvent (0x7f95511c1d20) 0 + primary-for QGraphicsSceneWheelEvent (0x7f95511c1cb0) + QEvent (0x7f95511c1d90) 0 + primary-for QGraphicsSceneEvent (0x7f95511c1d20) + +Vtable for QGraphicsSceneContextMenuEvent +QGraphicsSceneContextMenuEvent::_ZTV30QGraphicsSceneContextMenuEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI30QGraphicsSceneContextMenuEvent) +16 QGraphicsSceneContextMenuEvent::~QGraphicsSceneContextMenuEvent +24 QGraphicsSceneContextMenuEvent::~QGraphicsSceneContextMenuEvent + +Class QGraphicsSceneContextMenuEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneContextMenuEvent (0x7f95511d75b0) 0 + vptr=((& QGraphicsSceneContextMenuEvent::_ZTV30QGraphicsSceneContextMenuEvent) + 16u) + QGraphicsSceneEvent (0x7f95511d7620) 0 + primary-for QGraphicsSceneContextMenuEvent (0x7f95511d75b0) + QEvent (0x7f95511d7690) 0 + primary-for QGraphicsSceneEvent (0x7f95511d7620) + +Vtable for QGraphicsSceneHoverEvent +QGraphicsSceneHoverEvent::_ZTV24QGraphicsSceneHoverEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QGraphicsSceneHoverEvent) +16 QGraphicsSceneHoverEvent::~QGraphicsSceneHoverEvent +24 QGraphicsSceneHoverEvent::~QGraphicsSceneHoverEvent + +Class QGraphicsSceneHoverEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneHoverEvent (0x7f9550fe30e0) 0 + vptr=((& QGraphicsSceneHoverEvent::_ZTV24QGraphicsSceneHoverEvent) + 16u) + QGraphicsSceneEvent (0x7f9550fe3150) 0 + primary-for QGraphicsSceneHoverEvent (0x7f9550fe30e0) + QEvent (0x7f9550fe31c0) 0 + primary-for QGraphicsSceneEvent (0x7f9550fe3150) + +Vtable for QGraphicsSceneHelpEvent +QGraphicsSceneHelpEvent::_ZTV23QGraphicsSceneHelpEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QGraphicsSceneHelpEvent) +16 QGraphicsSceneHelpEvent::~QGraphicsSceneHelpEvent +24 QGraphicsSceneHelpEvent::~QGraphicsSceneHelpEvent + +Class QGraphicsSceneHelpEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneHelpEvent (0x7f9550fe3a80) 0 + vptr=((& QGraphicsSceneHelpEvent::_ZTV23QGraphicsSceneHelpEvent) + 16u) + QGraphicsSceneEvent (0x7f9550fe3af0) 0 + primary-for QGraphicsSceneHelpEvent (0x7f9550fe3a80) + QEvent (0x7f9550fe3b60) 0 + primary-for QGraphicsSceneEvent (0x7f9550fe3af0) + +Vtable for QGraphicsSceneDragDropEvent +QGraphicsSceneDragDropEvent::_ZTV27QGraphicsSceneDragDropEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QGraphicsSceneDragDropEvent) +16 QGraphicsSceneDragDropEvent::~QGraphicsSceneDragDropEvent +24 QGraphicsSceneDragDropEvent::~QGraphicsSceneDragDropEvent + +Class QGraphicsSceneDragDropEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneDragDropEvent (0x7f9550ff6380) 0 + vptr=((& QGraphicsSceneDragDropEvent::_ZTV27QGraphicsSceneDragDropEvent) + 16u) + QGraphicsSceneEvent (0x7f9550ff63f0) 0 + primary-for QGraphicsSceneDragDropEvent (0x7f9550ff6380) + QEvent (0x7f9550ff6460) 0 + primary-for QGraphicsSceneEvent (0x7f9550ff63f0) + +Vtable for QGraphicsSceneResizeEvent +QGraphicsSceneResizeEvent::_ZTV25QGraphicsSceneResizeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QGraphicsSceneResizeEvent) +16 QGraphicsSceneResizeEvent::~QGraphicsSceneResizeEvent +24 QGraphicsSceneResizeEvent::~QGraphicsSceneResizeEvent + +Class QGraphicsSceneResizeEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneResizeEvent (0x7f9550ff6d20) 0 + vptr=((& QGraphicsSceneResizeEvent::_ZTV25QGraphicsSceneResizeEvent) + 16u) + QGraphicsSceneEvent (0x7f9550ff6d90) 0 + primary-for QGraphicsSceneResizeEvent (0x7f9550ff6d20) + QEvent (0x7f9550ff6e00) 0 + primary-for QGraphicsSceneEvent (0x7f9550ff6d90) + +Vtable for QGraphicsSceneMoveEvent +QGraphicsSceneMoveEvent::_ZTV23QGraphicsSceneMoveEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QGraphicsSceneMoveEvent) +16 QGraphicsSceneMoveEvent::~QGraphicsSceneMoveEvent +24 QGraphicsSceneMoveEvent::~QGraphicsSceneMoveEvent + +Class QGraphicsSceneMoveEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneMoveEvent (0x7f955100b460) 0 + vptr=((& QGraphicsSceneMoveEvent::_ZTV23QGraphicsSceneMoveEvent) + 16u) + QGraphicsSceneEvent (0x7f955100b4d0) 0 + primary-for QGraphicsSceneMoveEvent (0x7f955100b460) + QEvent (0x7f955100b540) 0 + primary-for QGraphicsSceneEvent (0x7f955100b4d0) + +Vtable for QGraphicsTransform +QGraphicsTransform::_ZTV18QGraphicsTransform: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QGraphicsTransform) +16 QGraphicsTransform::metaObject +24 QGraphicsTransform::qt_metacast +32 QGraphicsTransform::qt_metacall +40 QGraphicsTransform::~QGraphicsTransform +48 QGraphicsTransform::~QGraphicsTransform +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual + +Class QGraphicsTransform + size=16 align=8 + base size=16 base align=8 +QGraphicsTransform (0x7f955100bc40) 0 + vptr=((& QGraphicsTransform::_ZTV18QGraphicsTransform) + 16u) + QObject (0x7f955100bcb0) 0 + primary-for QGraphicsTransform (0x7f955100bc40) + +Vtable for QGraphicsScale +QGraphicsScale::_ZTV14QGraphicsScale: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QGraphicsScale) +16 QGraphicsScale::metaObject +24 QGraphicsScale::qt_metacast +32 QGraphicsScale::qt_metacall +40 QGraphicsScale::~QGraphicsScale +48 QGraphicsScale::~QGraphicsScale +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsScale::applyTo + +Class QGraphicsScale + size=16 align=8 + base size=16 base align=8 +QGraphicsScale (0x7f9551029150) 0 + vptr=((& QGraphicsScale::_ZTV14QGraphicsScale) + 16u) + QGraphicsTransform (0x7f95510291c0) 0 + primary-for QGraphicsScale (0x7f9551029150) + QObject (0x7f9551029230) 0 + primary-for QGraphicsTransform (0x7f95510291c0) + +Vtable for QGraphicsRotation +QGraphicsRotation::_ZTV17QGraphicsRotation: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QGraphicsRotation) +16 QGraphicsRotation::metaObject +24 QGraphicsRotation::qt_metacast +32 QGraphicsRotation::qt_metacall +40 QGraphicsRotation::~QGraphicsRotation +48 QGraphicsRotation::~QGraphicsRotation +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsRotation::applyTo + +Class QGraphicsRotation + size=16 align=8 + base size=16 base align=8 +QGraphicsRotation (0x7f955103c620) 0 + vptr=((& QGraphicsRotation::_ZTV17QGraphicsRotation) + 16u) + QGraphicsTransform (0x7f955103c690) 0 + primary-for QGraphicsRotation (0x7f955103c620) + QObject (0x7f955103c700) 0 + primary-for QGraphicsTransform (0x7f955103c690) + +Vtable for QScrollArea +QScrollArea::_ZTV11QScrollArea: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QScrollArea) +16 QScrollArea::metaObject +24 QScrollArea::qt_metacast +32 QScrollArea::qt_metacall +40 QScrollArea::~QScrollArea +48 QScrollArea::~QScrollArea +56 QScrollArea::event +64 QScrollArea::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractScrollArea::mousePressEvent +168 QAbstractScrollArea::mouseReleaseEvent +176 QAbstractScrollArea::mouseDoubleClickEvent +184 QAbstractScrollArea::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractScrollArea::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractScrollArea::paintEvent +256 QWidget::moveEvent +264 QScrollArea::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractScrollArea::dragEnterEvent +312 QAbstractScrollArea::dragMoveEvent +320 QAbstractScrollArea::dragLeaveEvent +328 QAbstractScrollArea::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QScrollArea::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QScrollArea::scrollContentsBy +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI11QScrollArea) +480 QScrollArea::_ZThn16_N11QScrollAreaD1Ev +488 QScrollArea::_ZThn16_N11QScrollAreaD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QScrollArea + size=40 align=8 + base size=40 base align=8 +QScrollArea (0x7f955104faf0) 0 + vptr=((& QScrollArea::_ZTV11QScrollArea) + 16u) + QAbstractScrollArea (0x7f955104fb60) 0 + primary-for QScrollArea (0x7f955104faf0) + QFrame (0x7f955104fbd0) 0 + primary-for QAbstractScrollArea (0x7f955104fb60) + QWidget (0x7f955103dc80) 0 + primary-for QFrame (0x7f955104fbd0) + QObject (0x7f955104fc40) 0 + primary-for QWidget (0x7f955103dc80) + QPaintDevice (0x7f955104fcb0) 16 + vptr=((& QScrollArea::_ZTV11QScrollArea) + 480u) + +Vtable for QGraphicsView +QGraphicsView::_ZTV13QGraphicsView: 68u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QGraphicsView) +16 QGraphicsView::metaObject +24 QGraphicsView::qt_metacast +32 QGraphicsView::qt_metacall +40 QGraphicsView::~QGraphicsView +48 QGraphicsView::~QGraphicsView +56 QGraphicsView::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QGraphicsView::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QGraphicsView::mousePressEvent +168 QGraphicsView::mouseReleaseEvent +176 QGraphicsView::mouseDoubleClickEvent +184 QGraphicsView::mouseMoveEvent +192 QGraphicsView::wheelEvent +200 QGraphicsView::keyPressEvent +208 QGraphicsView::keyReleaseEvent +216 QGraphicsView::focusInEvent +224 QGraphicsView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QGraphicsView::paintEvent +256 QWidget::moveEvent +264 QGraphicsView::resizeEvent +272 QWidget::closeEvent +280 QGraphicsView::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QGraphicsView::dragEnterEvent +312 QGraphicsView::dragMoveEvent +320 QGraphicsView::dragLeaveEvent +328 QGraphicsView::dropEvent +336 QGraphicsView::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QGraphicsView::inputMethodEvent +384 QGraphicsView::inputMethodQuery +392 QGraphicsView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QGraphicsView::viewportEvent +456 QGraphicsView::scrollContentsBy +464 QGraphicsView::drawBackground +472 QGraphicsView::drawForeground +480 QGraphicsView::drawItems +488 (int (*)(...))-0x00000000000000010 +496 (int (*)(...))(& _ZTI13QGraphicsView) +504 QGraphicsView::_ZThn16_N13QGraphicsViewD1Ev +512 QGraphicsView::_ZThn16_N13QGraphicsViewD0Ev +520 QWidget::_ZThn16_NK7QWidget7devTypeEv +528 QWidget::_ZThn16_NK7QWidget11paintEngineEv +536 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QGraphicsView + size=40 align=8 + base size=40 base align=8 +QGraphicsView (0x7f955106fa10) 0 + vptr=((& QGraphicsView::_ZTV13QGraphicsView) + 16u) + QAbstractScrollArea (0x7f955106fa80) 0 + primary-for QGraphicsView (0x7f955106fa10) + QFrame (0x7f955106faf0) 0 + primary-for QAbstractScrollArea (0x7f955106fa80) + QWidget (0x7f955106a680) 0 + primary-for QFrame (0x7f955106faf0) + QObject (0x7f955106fb60) 0 + primary-for QWidget (0x7f955106a680) + QPaintDevice (0x7f955106fbd0) 16 + vptr=((& QGraphicsView::_ZTV13QGraphicsView) + 504u) + +Vtable for QAbstractButton +QAbstractButton::_ZTV15QAbstractButton: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QAbstractButton) +16 QAbstractButton::metaObject +24 QAbstractButton::qt_metacast +32 QAbstractButton::qt_metacall +40 QAbstractButton::~QAbstractButton +48 QAbstractButton::~QAbstractButton +56 QAbstractButton::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QAbstractButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QAbstractButton::focusInEvent +224 QAbstractButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 __cxa_pure_virtual +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractButton::hitButton +456 QAbstractButton::checkStateSet +464 QAbstractButton::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI15QAbstractButton) +488 QAbstractButton::_ZThn16_N15QAbstractButtonD1Ev +496 QAbstractButton::_ZThn16_N15QAbstractButtonD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractButton + size=40 align=8 + base size=40 base align=8 +QAbstractButton (0x7f9550f60ee0) 0 + vptr=((& QAbstractButton::_ZTV15QAbstractButton) + 16u) + QWidget (0x7f9550f68380) 0 + primary-for QAbstractButton (0x7f9550f60ee0) + QObject (0x7f9550f60f50) 0 + primary-for QWidget (0x7f9550f68380) + QPaintDevice (0x7f9550f6f000) 16 + vptr=((& QAbstractButton::_ZTV15QAbstractButton) + 488u) + +Vtable for QButtonGroup +QButtonGroup::_ZTV12QButtonGroup: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QButtonGroup) +16 QButtonGroup::metaObject +24 QButtonGroup::qt_metacast +32 QButtonGroup::qt_metacall +40 QButtonGroup::~QButtonGroup +48 QButtonGroup::~QButtonGroup +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QButtonGroup + size=16 align=8 + base size=16 base align=8 +QButtonGroup (0x7f9550fa1310) 0 + vptr=((& QButtonGroup::_ZTV12QButtonGroup) + 16u) + QObject (0x7f9550fa1380) 0 + primary-for QButtonGroup (0x7f9550fa1310) + +Vtable for QCalendarWidget +QCalendarWidget::_ZTV15QCalendarWidget: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QCalendarWidget) +16 QCalendarWidget::metaObject +24 QCalendarWidget::qt_metacast +32 QCalendarWidget::qt_metacall +40 QCalendarWidget::~QCalendarWidget +48 QCalendarWidget::~QCalendarWidget +56 QCalendarWidget::event +64 QCalendarWidget::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QCalendarWidget::sizeHint +136 QCalendarWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QCalendarWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QCalendarWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QCalendarWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QCalendarWidget::paintCell +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI15QCalendarWidget) +472 QCalendarWidget::_ZThn16_N15QCalendarWidgetD1Ev +480 QCalendarWidget::_ZThn16_N15QCalendarWidgetD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QCalendarWidget + size=40 align=8 + base size=40 base align=8 +QCalendarWidget (0x7f9550fb7f50) 0 + vptr=((& QCalendarWidget::_ZTV15QCalendarWidget) + 16u) + QWidget (0x7f9550fb4900) 0 + primary-for QCalendarWidget (0x7f9550fb7f50) + QObject (0x7f9550fbf000) 0 + primary-for QWidget (0x7f9550fb4900) + QPaintDevice (0x7f9550fbf070) 16 + vptr=((& QCalendarWidget::_ZTV15QCalendarWidget) + 472u) + +Vtable for QCheckBox +QCheckBox::_ZTV9QCheckBox: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QCheckBox) +16 QCheckBox::metaObject +24 QCheckBox::qt_metacast +32 QCheckBox::qt_metacall +40 QCheckBox::~QCheckBox +48 QCheckBox::~QCheckBox +56 QCheckBox::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QCheckBox::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QCheckBox::mouseMoveEvent +192 QWidget::wheelEvent +200 QAbstractButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QAbstractButton::focusInEvent +224 QAbstractButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QCheckBox::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QCheckBox::hitButton +456 QCheckBox::checkStateSet +464 QCheckBox::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI9QCheckBox) +488 QCheckBox::_ZThn16_N9QCheckBoxD1Ev +496 QCheckBox::_ZThn16_N9QCheckBoxD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QCheckBox + size=40 align=8 + base size=40 base align=8 +QCheckBox (0x7f9550de80e0) 0 + vptr=((& QCheckBox::_ZTV9QCheckBox) + 16u) + QAbstractButton (0x7f9550de8150) 0 + primary-for QCheckBox (0x7f9550de80e0) + QWidget (0x7f9550ddc900) 0 + primary-for QAbstractButton (0x7f9550de8150) + QObject (0x7f9550de81c0) 0 + primary-for QWidget (0x7f9550ddc900) + QPaintDevice (0x7f9550de8230) 16 + vptr=((& QCheckBox::_ZTV9QCheckBox) + 488u) + +Vtable for QComboBox +QComboBox::_ZTV9QComboBox: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QComboBox) +16 QComboBox::metaObject +24 QComboBox::qt_metacast +32 QComboBox::qt_metacall +40 QComboBox::~QComboBox +48 QComboBox::~QComboBox +56 QComboBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QComboBox::sizeHint +136 QComboBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QComboBox::mousePressEvent +168 QComboBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QComboBox::wheelEvent +200 QComboBox::keyPressEvent +208 QComboBox::keyReleaseEvent +216 QComboBox::focusInEvent +224 QComboBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QComboBox::paintEvent +256 QWidget::moveEvent +264 QComboBox::resizeEvent +272 QWidget::closeEvent +280 QComboBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QComboBox::showEvent +344 QComboBox::hideEvent +352 QWidget::x11Event +360 QComboBox::changeEvent +368 QWidget::metric +376 QComboBox::inputMethodEvent +384 QComboBox::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QComboBox::showPopup +456 QComboBox::hidePopup +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI9QComboBox) +480 QComboBox::_ZThn16_N9QComboBoxD1Ev +488 QComboBox::_ZThn16_N9QComboBoxD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QComboBox + size=40 align=8 + base size=40 base align=8 +QComboBox (0x7f9550e0b8c0) 0 + vptr=((& QComboBox::_ZTV9QComboBox) + 16u) + QWidget (0x7f9550e06900) 0 + primary-for QComboBox (0x7f9550e0b8c0) + QObject (0x7f9550e0b930) 0 + primary-for QWidget (0x7f9550e06900) + QPaintDevice (0x7f9550e0b9a0) 16 + vptr=((& QComboBox::_ZTV9QComboBox) + 480u) + +Vtable for QPushButton +QPushButton::_ZTV11QPushButton: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QPushButton) +16 QPushButton::metaObject +24 QPushButton::qt_metacast +32 QPushButton::qt_metacall +40 QPushButton::~QPushButton +48 QPushButton::~QPushButton +56 QPushButton::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QPushButton::sizeHint +136 QPushButton::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QPushButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QPushButton::focusInEvent +224 QPushButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QPushButton::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractButton::hitButton +456 QAbstractButton::checkStateSet +464 QAbstractButton::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11QPushButton) +488 QPushButton::_ZThn16_N11QPushButtonD1Ev +496 QPushButton::_ZThn16_N11QPushButtonD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPushButton + size=40 align=8 + base size=40 base align=8 +QPushButton (0x7f9550e7a3f0) 0 + vptr=((& QPushButton::_ZTV11QPushButton) + 16u) + QAbstractButton (0x7f9550e7a460) 0 + primary-for QPushButton (0x7f9550e7a3f0) + QWidget (0x7f9550e76600) 0 + primary-for QAbstractButton (0x7f9550e7a460) + QObject (0x7f9550e7a4d0) 0 + primary-for QWidget (0x7f9550e76600) + QPaintDevice (0x7f9550e7a540) 16 + vptr=((& QPushButton::_ZTV11QPushButton) + 488u) + +Vtable for QCommandLinkButton +QCommandLinkButton::_ZTV18QCommandLinkButton: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QCommandLinkButton) +16 QCommandLinkButton::metaObject +24 QCommandLinkButton::qt_metacast +32 QCommandLinkButton::qt_metacall +40 QCommandLinkButton::~QCommandLinkButton +48 QCommandLinkButton::~QCommandLinkButton +56 QCommandLinkButton::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QCommandLinkButton::sizeHint +136 QCommandLinkButton::minimumSizeHint +144 QCommandLinkButton::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QPushButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QPushButton::focusInEvent +224 QPushButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QCommandLinkButton::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractButton::hitButton +456 QAbstractButton::checkStateSet +464 QAbstractButton::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI18QCommandLinkButton) +488 QCommandLinkButton::_ZThn16_N18QCommandLinkButtonD1Ev +496 QCommandLinkButton::_ZThn16_N18QCommandLinkButtonD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QCommandLinkButton + size=40 align=8 + base size=40 base align=8 +QCommandLinkButton (0x7f9550e9dd20) 0 + vptr=((& QCommandLinkButton::_ZTV18QCommandLinkButton) + 16u) + QPushButton (0x7f9550e9dd90) 0 + primary-for QCommandLinkButton (0x7f9550e9dd20) + QAbstractButton (0x7f9550e9de00) 0 + primary-for QPushButton (0x7f9550e9dd90) + QWidget (0x7f9550ea2600) 0 + primary-for QAbstractButton (0x7f9550e9de00) + QObject (0x7f9550e9de70) 0 + primary-for QWidget (0x7f9550ea2600) + QPaintDevice (0x7f9550e9dee0) 16 + vptr=((& QCommandLinkButton::_ZTV18QCommandLinkButton) + 488u) + +Vtable for QDateTimeEdit +QDateTimeEdit::_ZTV13QDateTimeEdit: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QDateTimeEdit) +16 QDateTimeEdit::metaObject +24 QDateTimeEdit::qt_metacast +32 QDateTimeEdit::qt_metacall +40 QDateTimeEdit::~QDateTimeEdit +48 QDateTimeEdit::~QDateTimeEdit +56 QDateTimeEdit::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QDateTimeEdit::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QDateTimeEdit::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QDateTimeEdit::wheelEvent +200 QDateTimeEdit::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QDateTimeEdit::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QDateTimeEdit::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QAbstractSpinBox::inputMethodQuery +392 QDateTimeEdit::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDateTimeEdit::validate +456 QDateTimeEdit::fixup +464 QDateTimeEdit::stepBy +472 QDateTimeEdit::clear +480 QDateTimeEdit::stepEnabled +488 QDateTimeEdit::dateTimeFromText +496 QDateTimeEdit::textFromDateTime +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI13QDateTimeEdit) +520 QDateTimeEdit::_ZThn16_N13QDateTimeEditD1Ev +528 QDateTimeEdit::_ZThn16_N13QDateTimeEditD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDateTimeEdit + size=40 align=8 + base size=40 base align=8 +QDateTimeEdit (0x7f9550ebb8c0) 0 + vptr=((& QDateTimeEdit::_ZTV13QDateTimeEdit) + 16u) + QAbstractSpinBox (0x7f9550ebb930) 0 + primary-for QDateTimeEdit (0x7f9550ebb8c0) + QWidget (0x7f9550ec2000) 0 + primary-for QAbstractSpinBox (0x7f9550ebb930) + QObject (0x7f9550ebb9a0) 0 + primary-for QWidget (0x7f9550ec2000) + QPaintDevice (0x7f9550ebba10) 16 + vptr=((& QDateTimeEdit::_ZTV13QDateTimeEdit) + 520u) + +Vtable for QTimeEdit +QTimeEdit::_ZTV9QTimeEdit: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTimeEdit) +16 QTimeEdit::metaObject +24 QTimeEdit::qt_metacast +32 QTimeEdit::qt_metacall +40 QTimeEdit::~QTimeEdit +48 QTimeEdit::~QTimeEdit +56 QDateTimeEdit::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QDateTimeEdit::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QDateTimeEdit::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QDateTimeEdit::wheelEvent +200 QDateTimeEdit::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QDateTimeEdit::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QDateTimeEdit::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QAbstractSpinBox::inputMethodQuery +392 QDateTimeEdit::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDateTimeEdit::validate +456 QDateTimeEdit::fixup +464 QDateTimeEdit::stepBy +472 QDateTimeEdit::clear +480 QDateTimeEdit::stepEnabled +488 QDateTimeEdit::dateTimeFromText +496 QDateTimeEdit::textFromDateTime +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI9QTimeEdit) +520 QTimeEdit::_ZThn16_N9QTimeEditD1Ev +528 QTimeEdit::_ZThn16_N9QTimeEditD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTimeEdit + size=40 align=8 + base size=40 base align=8 +QTimeEdit (0x7f9550ced7e0) 0 + vptr=((& QTimeEdit::_ZTV9QTimeEdit) + 16u) + QDateTimeEdit (0x7f9550ced850) 0 + primary-for QTimeEdit (0x7f9550ced7e0) + QAbstractSpinBox (0x7f9550ced8c0) 0 + primary-for QDateTimeEdit (0x7f9550ced850) + QWidget (0x7f9550ec2f80) 0 + primary-for QAbstractSpinBox (0x7f9550ced8c0) + QObject (0x7f9550ced930) 0 + primary-for QWidget (0x7f9550ec2f80) + QPaintDevice (0x7f9550ced9a0) 16 + vptr=((& QTimeEdit::_ZTV9QTimeEdit) + 520u) + +Vtable for QDateEdit +QDateEdit::_ZTV9QDateEdit: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QDateEdit) +16 QDateEdit::metaObject +24 QDateEdit::qt_metacast +32 QDateEdit::qt_metacall +40 QDateEdit::~QDateEdit +48 QDateEdit::~QDateEdit +56 QDateTimeEdit::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QDateTimeEdit::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QDateTimeEdit::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QDateTimeEdit::wheelEvent +200 QDateTimeEdit::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QDateTimeEdit::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QDateTimeEdit::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QAbstractSpinBox::inputMethodQuery +392 QDateTimeEdit::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDateTimeEdit::validate +456 QDateTimeEdit::fixup +464 QDateTimeEdit::stepBy +472 QDateTimeEdit::clear +480 QDateTimeEdit::stepEnabled +488 QDateTimeEdit::dateTimeFromText +496 QDateTimeEdit::textFromDateTime +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI9QDateEdit) +520 QDateEdit::_ZThn16_N9QDateEditD1Ev +528 QDateEdit::_ZThn16_N9QDateEditD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDateEdit + size=40 align=8 + base size=40 base align=8 +QDateEdit (0x7f9550d038c0) 0 + vptr=((& QDateEdit::_ZTV9QDateEdit) + 16u) + QDateTimeEdit (0x7f9550d03930) 0 + primary-for QDateEdit (0x7f9550d038c0) + QAbstractSpinBox (0x7f9550d039a0) 0 + primary-for QDateTimeEdit (0x7f9550d03930) + QWidget (0x7f9550cf3680) 0 + primary-for QAbstractSpinBox (0x7f9550d039a0) + QObject (0x7f9550d03a10) 0 + primary-for QWidget (0x7f9550cf3680) + QPaintDevice (0x7f9550d03a80) 16 + vptr=((& QDateEdit::_ZTV9QDateEdit) + 520u) + +Vtable for QDial +QDial::_ZTV5QDial: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QDial) +16 QDial::metaObject +24 QDial::qt_metacast +32 QDial::qt_metacall +40 QDial::~QDial +48 QDial::~QDial +56 QDial::event +64 QObject::eventFilter +72 QAbstractSlider::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QDial::sizeHint +136 QDial::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QDial::mousePressEvent +168 QDial::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QDial::mouseMoveEvent +192 QAbstractSlider::wheelEvent +200 QAbstractSlider::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QDial::paintEvent +256 QWidget::moveEvent +264 QDial::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractSlider::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDial::sliderChange +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI5QDial) +472 QDial::_ZThn16_N5QDialD1Ev +480 QDial::_ZThn16_N5QDialD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDial + size=40 align=8 + base size=40 base align=8 +QDial (0x7f9550d48690) 0 + vptr=((& QDial::_ZTV5QDial) + 16u) + QAbstractSlider (0x7f9550d48700) 0 + primary-for QDial (0x7f9550d48690) + QWidget (0x7f9550d49300) 0 + primary-for QAbstractSlider (0x7f9550d48700) + QObject (0x7f9550d48770) 0 + primary-for QWidget (0x7f9550d49300) + QPaintDevice (0x7f9550d487e0) 16 + vptr=((& QDial::_ZTV5QDial) + 472u) + +Vtable for QDialogButtonBox +QDialogButtonBox::_ZTV16QDialogButtonBox: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QDialogButtonBox) +16 QDialogButtonBox::metaObject +24 QDialogButtonBox::qt_metacast +32 QDialogButtonBox::qt_metacall +40 QDialogButtonBox::~QDialogButtonBox +48 QDialogButtonBox::~QDialogButtonBox +56 QDialogButtonBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QDialogButtonBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI16QDialogButtonBox) +464 QDialogButtonBox::_ZThn16_N16QDialogButtonBoxD1Ev +472 QDialogButtonBox::_ZThn16_N16QDialogButtonBoxD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDialogButtonBox + size=40 align=8 + base size=40 base align=8 +QDialogButtonBox (0x7f9550d89310) 0 + vptr=((& QDialogButtonBox::_ZTV16QDialogButtonBox) + 16u) + QWidget (0x7f9550d49d00) 0 + primary-for QDialogButtonBox (0x7f9550d89310) + QObject (0x7f9550d89380) 0 + primary-for QWidget (0x7f9550d49d00) + QPaintDevice (0x7f9550d893f0) 16 + vptr=((& QDialogButtonBox::_ZTV16QDialogButtonBox) + 464u) + +Vtable for QDockWidget +QDockWidget::_ZTV11QDockWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QDockWidget) +16 QDockWidget::metaObject +24 QDockWidget::qt_metacast +32 QDockWidget::qt_metacall +40 QDockWidget::~QDockWidget +48 QDockWidget::~QDockWidget +56 QDockWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QDockWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QDockWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QDockWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI11QDockWidget) +464 QDockWidget::_ZThn16_N11QDockWidgetD1Ev +472 QDockWidget::_ZThn16_N11QDockWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDockWidget + size=40 align=8 + base size=40 base align=8 +QDockWidget (0x7f9550bdb7e0) 0 + vptr=((& QDockWidget::_ZTV11QDockWidget) + 16u) + QWidget (0x7f9550d95e80) 0 + primary-for QDockWidget (0x7f9550bdb7e0) + QObject (0x7f9550bdb850) 0 + primary-for QWidget (0x7f9550d95e80) + QPaintDevice (0x7f9550bdb8c0) 16 + vptr=((& QDockWidget::_ZTV11QDockWidget) + 464u) + +Vtable for QFocusFrame +QFocusFrame::_ZTV11QFocusFrame: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFocusFrame) +16 QFocusFrame::metaObject +24 QFocusFrame::qt_metacast +32 QFocusFrame::qt_metacall +40 QFocusFrame::~QFocusFrame +48 QFocusFrame::~QFocusFrame +56 QFocusFrame::event +64 QFocusFrame::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFocusFrame::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI11QFocusFrame) +464 QFocusFrame::_ZThn16_N11QFocusFrameD1Ev +472 QFocusFrame::_ZThn16_N11QFocusFrameD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFocusFrame + size=40 align=8 + base size=40 base align=8 +QFocusFrame (0x7f9550c7e230) 0 + vptr=((& QFocusFrame::_ZTV11QFocusFrame) + 16u) + QWidget (0x7f9550c2f680) 0 + primary-for QFocusFrame (0x7f9550c7e230) + QObject (0x7f9550c7e2a0) 0 + primary-for QWidget (0x7f9550c2f680) + QPaintDevice (0x7f9550c7e310) 16 + vptr=((& QFocusFrame::_ZTV11QFocusFrame) + 464u) + +Vtable for QFontComboBox +QFontComboBox::_ZTV13QFontComboBox: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QFontComboBox) +16 QFontComboBox::metaObject +24 QFontComboBox::qt_metacast +32 QFontComboBox::qt_metacall +40 QFontComboBox::~QFontComboBox +48 QFontComboBox::~QFontComboBox +56 QFontComboBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QFontComboBox::sizeHint +136 QComboBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QComboBox::mousePressEvent +168 QComboBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QComboBox::wheelEvent +200 QComboBox::keyPressEvent +208 QComboBox::keyReleaseEvent +216 QComboBox::focusInEvent +224 QComboBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QComboBox::paintEvent +256 QWidget::moveEvent +264 QComboBox::resizeEvent +272 QWidget::closeEvent +280 QComboBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QComboBox::showEvent +344 QComboBox::hideEvent +352 QWidget::x11Event +360 QComboBox::changeEvent +368 QWidget::metric +376 QComboBox::inputMethodEvent +384 QComboBox::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QComboBox::showPopup +456 QComboBox::hidePopup +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI13QFontComboBox) +480 QFontComboBox::_ZThn16_N13QFontComboBoxD1Ev +488 QFontComboBox::_ZThn16_N13QFontComboBoxD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFontComboBox + size=40 align=8 + base size=40 base align=8 +QFontComboBox (0x7f9550c90d90) 0 + vptr=((& QFontComboBox::_ZTV13QFontComboBox) + 16u) + QComboBox (0x7f9550c90e00) 0 + primary-for QFontComboBox (0x7f9550c90d90) + QWidget (0x7f9550c97080) 0 + primary-for QComboBox (0x7f9550c90e00) + QObject (0x7f9550c90e70) 0 + primary-for QWidget (0x7f9550c97080) + QPaintDevice (0x7f9550c90ee0) 16 + vptr=((& QFontComboBox::_ZTV13QFontComboBox) + 480u) + +Vtable for QGroupBox +QGroupBox::_ZTV9QGroupBox: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QGroupBox) +16 QGroupBox::metaObject +24 QGroupBox::qt_metacast +32 QGroupBox::qt_metacall +40 QGroupBox::~QGroupBox +48 QGroupBox::~QGroupBox +56 QGroupBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QGroupBox::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QGroupBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QGroupBox::mousePressEvent +168 QGroupBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QGroupBox::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QGroupBox::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QGroupBox::paintEvent +256 QWidget::moveEvent +264 QGroupBox::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QGroupBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI9QGroupBox) +464 QGroupBox::_ZThn16_N9QGroupBoxD1Ev +472 QGroupBox::_ZThn16_N9QGroupBoxD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QGroupBox + size=40 align=8 + base size=40 base align=8 +QGroupBox (0x7f9550ae2a80) 0 + vptr=((& QGroupBox::_ZTV9QGroupBox) + 16u) + QWidget (0x7f9550ae3280) 0 + primary-for QGroupBox (0x7f9550ae2a80) + QObject (0x7f9550ae2af0) 0 + primary-for QWidget (0x7f9550ae3280) + QPaintDevice (0x7f9550ae2b60) 16 + vptr=((& QGroupBox::_ZTV9QGroupBox) + 464u) + +Vtable for QLabel +QLabel::_ZTV6QLabel: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QLabel) +16 QLabel::metaObject +24 QLabel::qt_metacast +32 QLabel::qt_metacall +40 QLabel::~QLabel +48 QLabel::~QLabel +56 QLabel::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QLabel::sizeHint +136 QLabel::minimumSizeHint +144 QLabel::heightForWidth +152 QWidget::paintEngine +160 QLabel::mousePressEvent +168 QLabel::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QLabel::mouseMoveEvent +192 QWidget::wheelEvent +200 QLabel::keyPressEvent +208 QWidget::keyReleaseEvent +216 QLabel::focusInEvent +224 QLabel::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QLabel::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QLabel::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QLabel::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QLabel::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI6QLabel) +464 QLabel::_ZThn16_N6QLabelD1Ev +472 QLabel::_ZThn16_N6QLabelD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QLabel + size=40 align=8 + base size=40 base align=8 +QLabel (0x7f9550b21700) 0 + vptr=((& QLabel::_ZTV6QLabel) + 16u) + QFrame (0x7f9550b21770) 0 + primary-for QLabel (0x7f9550b21700) + QWidget (0x7f9550ae3c80) 0 + primary-for QFrame (0x7f9550b21770) + QObject (0x7f9550b217e0) 0 + primary-for QWidget (0x7f9550ae3c80) + QPaintDevice (0x7f9550b21850) 16 + vptr=((& QLabel::_ZTV6QLabel) + 464u) + +Vtable for QLCDNumber +QLCDNumber::_ZTV10QLCDNumber: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QLCDNumber) +16 QLCDNumber::metaObject +24 QLCDNumber::qt_metacast +32 QLCDNumber::qt_metacall +40 QLCDNumber::~QLCDNumber +48 QLCDNumber::~QLCDNumber +56 QLCDNumber::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QLCDNumber::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QLCDNumber::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI10QLCDNumber) +464 QLCDNumber::_ZThn16_N10QLCDNumberD1Ev +472 QLCDNumber::_ZThn16_N10QLCDNumberD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QLCDNumber + size=40 align=8 + base size=40 base align=8 +QLCDNumber (0x7f9550b4d850) 0 + vptr=((& QLCDNumber::_ZTV10QLCDNumber) + 16u) + QFrame (0x7f9550b4d8c0) 0 + primary-for QLCDNumber (0x7f9550b4d850) + QWidget (0x7f9550b47880) 0 + primary-for QFrame (0x7f9550b4d8c0) + QObject (0x7f9550b4d930) 0 + primary-for QWidget (0x7f9550b47880) + QPaintDevice (0x7f9550b4d9a0) 16 + vptr=((& QLCDNumber::_ZTV10QLCDNumber) + 464u) + +Vtable for QMainWindow +QMainWindow::_ZTV11QMainWindow: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMainWindow) +16 QMainWindow::metaObject +24 QMainWindow::qt_metacast +32 QMainWindow::qt_metacall +40 QMainWindow::~QMainWindow +48 QMainWindow::~QMainWindow +56 QMainWindow::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QMainWindow::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QMainWindow::createPopupMenu +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI11QMainWindow) +472 QMainWindow::_ZThn16_N11QMainWindowD1Ev +480 QMainWindow::_ZThn16_N11QMainWindowD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMainWindow + size=40 align=8 + base size=40 base align=8 +QMainWindow (0x7f9550b7a230) 0 + vptr=((& QMainWindow::_ZTV11QMainWindow) + 16u) + QWidget (0x7f9550b6fa00) 0 + primary-for QMainWindow (0x7f9550b7a230) + QObject (0x7f9550b7a2a0) 0 + primary-for QWidget (0x7f9550b6fa00) + QPaintDevice (0x7f9550b7a310) 16 + vptr=((& QMainWindow::_ZTV11QMainWindow) + 472u) + +Vtable for QMdiArea +QMdiArea::_ZTV8QMdiArea: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QMdiArea) +16 QMdiArea::metaObject +24 QMdiArea::qt_metacast +32 QMdiArea::qt_metacall +40 QMdiArea::~QMdiArea +48 QMdiArea::~QMdiArea +56 QMdiArea::event +64 QMdiArea::eventFilter +72 QMdiArea::timerEvent +80 QMdiArea::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QMdiArea::sizeHint +136 QMdiArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractScrollArea::mousePressEvent +168 QAbstractScrollArea::mouseReleaseEvent +176 QAbstractScrollArea::mouseDoubleClickEvent +184 QAbstractScrollArea::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractScrollArea::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QMdiArea::paintEvent +256 QWidget::moveEvent +264 QMdiArea::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractScrollArea::dragEnterEvent +312 QAbstractScrollArea::dragMoveEvent +320 QAbstractScrollArea::dragLeaveEvent +328 QAbstractScrollArea::dropEvent +336 QMdiArea::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QMdiArea::viewportEvent +456 QMdiArea::scrollContentsBy +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI8QMdiArea) +480 QMdiArea::_ZThn16_N8QMdiAreaD1Ev +488 QMdiArea::_ZThn16_N8QMdiAreaD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMdiArea + size=40 align=8 + base size=40 base align=8 +QMdiArea (0x7f95509f6540) 0 + vptr=((& QMdiArea::_ZTV8QMdiArea) + 16u) + QAbstractScrollArea (0x7f95509f65b0) 0 + primary-for QMdiArea (0x7f95509f6540) + QFrame (0x7f95509f6620) 0 + primary-for QAbstractScrollArea (0x7f95509f65b0) + QWidget (0x7f9550ba0c00) 0 + primary-for QFrame (0x7f95509f6620) + QObject (0x7f95509f6690) 0 + primary-for QWidget (0x7f9550ba0c00) + QPaintDevice (0x7f95509f6700) 16 + vptr=((& QMdiArea::_ZTV8QMdiArea) + 480u) + +Vtable for QMdiSubWindow +QMdiSubWindow::_ZTV13QMdiSubWindow: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QMdiSubWindow) +16 QMdiSubWindow::metaObject +24 QMdiSubWindow::qt_metacast +32 QMdiSubWindow::qt_metacall +40 QMdiSubWindow::~QMdiSubWindow +48 QMdiSubWindow::~QMdiSubWindow +56 QMdiSubWindow::event +64 QMdiSubWindow::eventFilter +72 QMdiSubWindow::timerEvent +80 QMdiSubWindow::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QMdiSubWindow::sizeHint +136 QMdiSubWindow::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QMdiSubWindow::mousePressEvent +168 QMdiSubWindow::mouseReleaseEvent +176 QMdiSubWindow::mouseDoubleClickEvent +184 QMdiSubWindow::mouseMoveEvent +192 QWidget::wheelEvent +200 QMdiSubWindow::keyPressEvent +208 QWidget::keyReleaseEvent +216 QMdiSubWindow::focusInEvent +224 QMdiSubWindow::focusOutEvent +232 QWidget::enterEvent +240 QMdiSubWindow::leaveEvent +248 QMdiSubWindow::paintEvent +256 QMdiSubWindow::moveEvent +264 QMdiSubWindow::resizeEvent +272 QMdiSubWindow::closeEvent +280 QMdiSubWindow::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QMdiSubWindow::showEvent +344 QMdiSubWindow::hideEvent +352 QWidget::x11Event +360 QMdiSubWindow::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI13QMdiSubWindow) +464 QMdiSubWindow::_ZThn16_N13QMdiSubWindowD1Ev +472 QMdiSubWindow::_ZThn16_N13QMdiSubWindowD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMdiSubWindow + size=40 align=8 + base size=40 base align=8 +QMdiSubWindow (0x7f9550a50a80) 0 + vptr=((& QMdiSubWindow::_ZTV13QMdiSubWindow) + 16u) + QWidget (0x7f9550a01f00) 0 + primary-for QMdiSubWindow (0x7f9550a50a80) + QObject (0x7f9550a50af0) 0 + primary-for QWidget (0x7f9550a01f00) + QPaintDevice (0x7f9550a50b60) 16 + vptr=((& QMdiSubWindow::_ZTV13QMdiSubWindow) + 464u) + +Vtable for QMenu +QMenu::_ZTV5QMenu: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QMenu) +16 QMenu::metaObject +24 QMenu::qt_metacast +32 QMenu::qt_metacall +40 QMenu::~QMenu +48 QMenu::~QMenu +56 QMenu::event +64 QObject::eventFilter +72 QMenu::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QMenu::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QMenu::mousePressEvent +168 QMenu::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QMenu::mouseMoveEvent +192 QMenu::wheelEvent +200 QMenu::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QMenu::enterEvent +240 QMenu::leaveEvent +248 QMenu::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QMenu::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QMenu::hideEvent +352 QWidget::x11Event +360 QMenu::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QMenu::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI5QMenu) +464 QMenu::_ZThn16_N5QMenuD1Ev +472 QMenu::_ZThn16_N5QMenuD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMenu + size=40 align=8 + base size=40 base align=8 +QMenu (0x7f9550aca930) 0 + vptr=((& QMenu::_ZTV5QMenu) + 16u) + QWidget (0x7f95508ec100) 0 + primary-for QMenu (0x7f9550aca930) + QObject (0x7f9550aca9a0) 0 + primary-for QWidget (0x7f95508ec100) + QPaintDevice (0x7f9550acaa10) 16 + vptr=((& QMenu::_ZTV5QMenu) + 464u) + +Vtable for QMenuBar +QMenuBar::_ZTV8QMenuBar: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QMenuBar) +16 QMenuBar::metaObject +24 QMenuBar::qt_metacast +32 QMenuBar::qt_metacall +40 QMenuBar::~QMenuBar +48 QMenuBar::~QMenuBar +56 QMenuBar::event +64 QMenuBar::eventFilter +72 QMenuBar::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QMenuBar::setVisible +128 QMenuBar::sizeHint +136 QMenuBar::minimumSizeHint +144 QMenuBar::heightForWidth +152 QWidget::paintEngine +160 QMenuBar::mousePressEvent +168 QMenuBar::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QMenuBar::mouseMoveEvent +192 QWidget::wheelEvent +200 QMenuBar::keyPressEvent +208 QWidget::keyReleaseEvent +216 QMenuBar::focusInEvent +224 QMenuBar::focusOutEvent +232 QWidget::enterEvent +240 QMenuBar::leaveEvent +248 QMenuBar::paintEvent +256 QWidget::moveEvent +264 QMenuBar::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QMenuBar::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QMenuBar::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI8QMenuBar) +464 QMenuBar::_ZThn16_N8QMenuBarD1Ev +472 QMenuBar::_ZThn16_N8QMenuBarD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMenuBar + size=40 align=8 + base size=40 base align=8 +QMenuBar (0x7f9550991770) 0 + vptr=((& QMenuBar::_ZTV8QMenuBar) + 16u) + QWidget (0x7f9550990980) 0 + primary-for QMenuBar (0x7f9550991770) + QObject (0x7f95509917e0) 0 + primary-for QWidget (0x7f9550990980) + QPaintDevice (0x7f9550991850) 16 + vptr=((& QMenuBar::_ZTV8QMenuBar) + 464u) + +Vtable for QMenuItem +QMenuItem::_ZTV9QMenuItem: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QMenuItem) +16 QMenuItem::metaObject +24 QMenuItem::qt_metacast +32 QMenuItem::qt_metacall +40 QMenuItem::~QMenuItem +48 QMenuItem::~QMenuItem +56 QAction::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QMenuItem + size=16 align=8 + base size=16 base align=8 +QMenuItem (0x7f95508334d0) 0 + vptr=((& QMenuItem::_ZTV9QMenuItem) + 16u) + QAction (0x7f9550833540) 0 + primary-for QMenuItem (0x7f95508334d0) + QObject (0x7f95508335b0) 0 + primary-for QAction (0x7f9550833540) + +Class QTextEdit::ExtraSelection + size=24 align=8 + base size=24 base align=8 +QTextEdit::ExtraSelection (0x7f9550853700) 0 + +Vtable for QTextEdit +QTextEdit::_ZTV9QTextEdit: 69u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTextEdit) +16 QTextEdit::metaObject +24 QTextEdit::qt_metacast +32 QTextEdit::qt_metacall +40 QTextEdit::~QTextEdit +48 QTextEdit::~QTextEdit +56 QTextEdit::event +64 QObject::eventFilter +72 QTextEdit::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTextEdit::mousePressEvent +168 QTextEdit::mouseReleaseEvent +176 QTextEdit::mouseDoubleClickEvent +184 QTextEdit::mouseMoveEvent +192 QTextEdit::wheelEvent +200 QTextEdit::keyPressEvent +208 QTextEdit::keyReleaseEvent +216 QTextEdit::focusInEvent +224 QTextEdit::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTextEdit::paintEvent +256 QWidget::moveEvent +264 QTextEdit::resizeEvent +272 QWidget::closeEvent +280 QTextEdit::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QTextEdit::dragEnterEvent +312 QTextEdit::dragMoveEvent +320 QTextEdit::dragLeaveEvent +328 QTextEdit::dropEvent +336 QTextEdit::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QTextEdit::changeEvent +368 QWidget::metric +376 QTextEdit::inputMethodEvent +384 QTextEdit::inputMethodQuery +392 QTextEdit::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QTextEdit::scrollContentsBy +464 QTextEdit::loadResource +472 QTextEdit::createMimeDataFromSelection +480 QTextEdit::canInsertFromMimeData +488 QTextEdit::insertFromMimeData +496 (int (*)(...))-0x00000000000000010 +504 (int (*)(...))(& _ZTI9QTextEdit) +512 QTextEdit::_ZThn16_N9QTextEditD1Ev +520 QTextEdit::_ZThn16_N9QTextEditD0Ev +528 QWidget::_ZThn16_NK7QWidget7devTypeEv +536 QWidget::_ZThn16_NK7QWidget11paintEngineEv +544 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTextEdit + size=40 align=8 + base size=40 base align=8 +QTextEdit (0x7f9550842770) 0 + vptr=((& QTextEdit::_ZTV9QTextEdit) + 16u) + QAbstractScrollArea (0x7f95508427e0) 0 + primary-for QTextEdit (0x7f9550842770) + QFrame (0x7f9550842850) 0 + primary-for QAbstractScrollArea (0x7f95508427e0) + QWidget (0x7f9550830b00) 0 + primary-for QFrame (0x7f9550842850) + QObject (0x7f95508428c0) 0 + primary-for QWidget (0x7f9550830b00) + QPaintDevice (0x7f9550842930) 16 + vptr=((& QTextEdit::_ZTV9QTextEdit) + 512u) + +Vtable for QPlainTextEdit +QPlainTextEdit::_ZTV14QPlainTextEdit: 69u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QPlainTextEdit) +16 QPlainTextEdit::metaObject +24 QPlainTextEdit::qt_metacast +32 QPlainTextEdit::qt_metacall +40 QPlainTextEdit::~QPlainTextEdit +48 QPlainTextEdit::~QPlainTextEdit +56 QPlainTextEdit::event +64 QObject::eventFilter +72 QPlainTextEdit::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QPlainTextEdit::mousePressEvent +168 QPlainTextEdit::mouseReleaseEvent +176 QPlainTextEdit::mouseDoubleClickEvent +184 QPlainTextEdit::mouseMoveEvent +192 QPlainTextEdit::wheelEvent +200 QPlainTextEdit::keyPressEvent +208 QPlainTextEdit::keyReleaseEvent +216 QPlainTextEdit::focusInEvent +224 QPlainTextEdit::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QPlainTextEdit::paintEvent +256 QWidget::moveEvent +264 QPlainTextEdit::resizeEvent +272 QWidget::closeEvent +280 QPlainTextEdit::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QPlainTextEdit::dragEnterEvent +312 QPlainTextEdit::dragMoveEvent +320 QPlainTextEdit::dragLeaveEvent +328 QPlainTextEdit::dropEvent +336 QPlainTextEdit::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QPlainTextEdit::changeEvent +368 QWidget::metric +376 QPlainTextEdit::inputMethodEvent +384 QPlainTextEdit::inputMethodQuery +392 QPlainTextEdit::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QPlainTextEdit::scrollContentsBy +464 QPlainTextEdit::loadResource +472 QPlainTextEdit::createMimeDataFromSelection +480 QPlainTextEdit::canInsertFromMimeData +488 QPlainTextEdit::insertFromMimeData +496 (int (*)(...))-0x00000000000000010 +504 (int (*)(...))(& _ZTI14QPlainTextEdit) +512 QPlainTextEdit::_ZThn16_N14QPlainTextEditD1Ev +520 QPlainTextEdit::_ZThn16_N14QPlainTextEditD0Ev +528 QWidget::_ZThn16_NK7QWidget7devTypeEv +536 QWidget::_ZThn16_NK7QWidget11paintEngineEv +544 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPlainTextEdit + size=40 align=8 + base size=40 base align=8 +QPlainTextEdit (0x7f95506ea8c0) 0 + vptr=((& QPlainTextEdit::_ZTV14QPlainTextEdit) + 16u) + QAbstractScrollArea (0x7f95506ea930) 0 + primary-for QPlainTextEdit (0x7f95506ea8c0) + QFrame (0x7f95506ea9a0) 0 + primary-for QAbstractScrollArea (0x7f95506ea930) + QWidget (0x7f95506e9400) 0 + primary-for QFrame (0x7f95506ea9a0) + QObject (0x7f95506eaa10) 0 + primary-for QWidget (0x7f95506e9400) + QPaintDevice (0x7f95506eaa80) 16 + vptr=((& QPlainTextEdit::_ZTV14QPlainTextEdit) + 512u) + +Vtable for QPlainTextDocumentLayout +QPlainTextDocumentLayout::_ZTV24QPlainTextDocumentLayout: 24u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QPlainTextDocumentLayout) +16 QPlainTextDocumentLayout::metaObject +24 QPlainTextDocumentLayout::qt_metacast +32 QPlainTextDocumentLayout::qt_metacall +40 QPlainTextDocumentLayout::~QPlainTextDocumentLayout +48 QPlainTextDocumentLayout::~QPlainTextDocumentLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QPlainTextDocumentLayout::draw +120 QPlainTextDocumentLayout::hitTest +128 QPlainTextDocumentLayout::pageCount +136 QPlainTextDocumentLayout::documentSize +144 QPlainTextDocumentLayout::frameBoundingRect +152 QPlainTextDocumentLayout::blockBoundingRect +160 QPlainTextDocumentLayout::documentChanged +168 QAbstractTextDocumentLayout::resizeInlineObject +176 QAbstractTextDocumentLayout::positionInlineObject +184 QAbstractTextDocumentLayout::drawInlineObject + +Class QPlainTextDocumentLayout + size=16 align=8 + base size=16 base align=8 +QPlainTextDocumentLayout (0x7f955074c690) 0 + vptr=((& QPlainTextDocumentLayout::_ZTV24QPlainTextDocumentLayout) + 16u) + QAbstractTextDocumentLayout (0x7f955074c700) 0 + primary-for QPlainTextDocumentLayout (0x7f955074c690) + QObject (0x7f955074c770) 0 + primary-for QAbstractTextDocumentLayout (0x7f955074c700) + +Vtable for QPrintPreviewWidget +QPrintPreviewWidget::_ZTV19QPrintPreviewWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QPrintPreviewWidget) +16 QPrintPreviewWidget::metaObject +24 QPrintPreviewWidget::qt_metacast +32 QPrintPreviewWidget::qt_metacall +40 QPrintPreviewWidget::~QPrintPreviewWidget +48 QPrintPreviewWidget::~QPrintPreviewWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QPrintPreviewWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI19QPrintPreviewWidget) +464 QPrintPreviewWidget::_ZThn16_N19QPrintPreviewWidgetD1Ev +472 QPrintPreviewWidget::_ZThn16_N19QPrintPreviewWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPrintPreviewWidget + size=48 align=8 + base size=48 base align=8 +QPrintPreviewWidget (0x7f9550763b60) 0 + vptr=((& QPrintPreviewWidget::_ZTV19QPrintPreviewWidget) + 16u) + QWidget (0x7f955075e600) 0 + primary-for QPrintPreviewWidget (0x7f9550763b60) + QObject (0x7f9550763bd0) 0 + primary-for QWidget (0x7f955075e600) + QPaintDevice (0x7f9550763c40) 16 + vptr=((& QPrintPreviewWidget::_ZTV19QPrintPreviewWidget) + 464u) + +Vtable for QProgressBar +QProgressBar::_ZTV12QProgressBar: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QProgressBar) +16 QProgressBar::metaObject +24 QProgressBar::qt_metacast +32 QProgressBar::qt_metacall +40 QProgressBar::~QProgressBar +48 QProgressBar::~QProgressBar +56 QProgressBar::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QProgressBar::sizeHint +136 QProgressBar::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QProgressBar::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QProgressBar::text +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI12QProgressBar) +472 QProgressBar::_ZThn16_N12QProgressBarD1Ev +480 QProgressBar::_ZThn16_N12QProgressBarD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QProgressBar + size=40 align=8 + base size=40 base align=8 +QProgressBar (0x7f9550786700) 0 + vptr=((& QProgressBar::_ZTV12QProgressBar) + 16u) + QWidget (0x7f9550788300) 0 + primary-for QProgressBar (0x7f9550786700) + QObject (0x7f9550786770) 0 + primary-for QWidget (0x7f9550788300) + QPaintDevice (0x7f95507867e0) 16 + vptr=((& QProgressBar::_ZTV12QProgressBar) + 472u) + +Vtable for QRadioButton +QRadioButton::_ZTV12QRadioButton: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QRadioButton) +16 QRadioButton::metaObject +24 QRadioButton::qt_metacast +32 QRadioButton::qt_metacall +40 QRadioButton::~QRadioButton +48 QRadioButton::~QRadioButton +56 QRadioButton::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QRadioButton::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QRadioButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QAbstractButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QAbstractButton::focusInEvent +224 QAbstractButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QRadioButton::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QRadioButton::hitButton +456 QAbstractButton::checkStateSet +464 QAbstractButton::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI12QRadioButton) +488 QRadioButton::_ZThn16_N12QRadioButtonD1Ev +496 QRadioButton::_ZThn16_N12QRadioButtonD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QRadioButton + size=40 align=8 + base size=40 base align=8 +QRadioButton (0x7f95507ab540) 0 + vptr=((& QRadioButton::_ZTV12QRadioButton) + 16u) + QAbstractButton (0x7f95507ab5b0) 0 + primary-for QRadioButton (0x7f95507ab540) + QWidget (0x7f9550788e00) 0 + primary-for QAbstractButton (0x7f95507ab5b0) + QObject (0x7f95507ab620) 0 + primary-for QWidget (0x7f9550788e00) + QPaintDevice (0x7f95507ab690) 16 + vptr=((& QRadioButton::_ZTV12QRadioButton) + 488u) + +Vtable for QScrollBar +QScrollBar::_ZTV10QScrollBar: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QScrollBar) +16 QScrollBar::metaObject +24 QScrollBar::qt_metacast +32 QScrollBar::qt_metacall +40 QScrollBar::~QScrollBar +48 QScrollBar::~QScrollBar +56 QScrollBar::event +64 QObject::eventFilter +72 QAbstractSlider::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QScrollBar::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QScrollBar::mousePressEvent +168 QScrollBar::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QScrollBar::mouseMoveEvent +192 QAbstractSlider::wheelEvent +200 QAbstractSlider::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QScrollBar::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QScrollBar::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QScrollBar::hideEvent +352 QWidget::x11Event +360 QAbstractSlider::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QScrollBar::sliderChange +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI10QScrollBar) +472 QScrollBar::_ZThn16_N10QScrollBarD1Ev +480 QScrollBar::_ZThn16_N10QScrollBarD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QScrollBar + size=40 align=8 + base size=40 base align=8 +QScrollBar (0x7f95507cc1c0) 0 + vptr=((& QScrollBar::_ZTV10QScrollBar) + 16u) + QAbstractSlider (0x7f95507cc230) 0 + primary-for QScrollBar (0x7f95507cc1c0) + QWidget (0x7f95507c0800) 0 + primary-for QAbstractSlider (0x7f95507cc230) + QObject (0x7f95507cc2a0) 0 + primary-for QWidget (0x7f95507c0800) + QPaintDevice (0x7f95507cc310) 16 + vptr=((& QScrollBar::_ZTV10QScrollBar) + 472u) + +Vtable for QSizeGrip +QSizeGrip::_ZTV9QSizeGrip: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QSizeGrip) +16 QSizeGrip::metaObject +24 QSizeGrip::qt_metacast +32 QSizeGrip::qt_metacall +40 QSizeGrip::~QSizeGrip +48 QSizeGrip::~QSizeGrip +56 QSizeGrip::event +64 QSizeGrip::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QSizeGrip::setVisible +128 QSizeGrip::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QSizeGrip::mousePressEvent +168 QSizeGrip::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QSizeGrip::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QSizeGrip::paintEvent +256 QSizeGrip::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QSizeGrip::showEvent +344 QSizeGrip::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI9QSizeGrip) +464 QSizeGrip::_ZThn16_N9QSizeGripD1Ev +472 QSizeGrip::_ZThn16_N9QSizeGripD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSizeGrip + size=40 align=8 + base size=40 base align=8 +QSizeGrip (0x7f95505ea310) 0 + vptr=((& QSizeGrip::_ZTV9QSizeGrip) + 16u) + QWidget (0x7f95505e8380) 0 + primary-for QSizeGrip (0x7f95505ea310) + QObject (0x7f95505ea380) 0 + primary-for QWidget (0x7f95505e8380) + QPaintDevice (0x7f95505ea3f0) 16 + vptr=((& QSizeGrip::_ZTV9QSizeGrip) + 464u) + +Vtable for QSpinBox +QSpinBox::_ZTV8QSpinBox: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QSpinBox) +16 QSpinBox::metaObject +24 QSpinBox::qt_metacast +32 QSpinBox::qt_metacall +40 QSpinBox::~QSpinBox +48 QSpinBox::~QSpinBox +56 QSpinBox::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractSpinBox::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractSpinBox::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QAbstractSpinBox::wheelEvent +200 QAbstractSpinBox::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QAbstractSpinBox::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractSpinBox::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QAbstractSpinBox::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QSpinBox::validate +456 QSpinBox::fixup +464 QAbstractSpinBox::stepBy +472 QAbstractSpinBox::clear +480 QAbstractSpinBox::stepEnabled +488 QSpinBox::valueFromText +496 QSpinBox::textFromValue +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI8QSpinBox) +520 QSpinBox::_ZThn16_N8QSpinBoxD1Ev +528 QSpinBox::_ZThn16_N8QSpinBoxD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSpinBox + size=40 align=8 + base size=40 base align=8 +QSpinBox (0x7f9550600e00) 0 + vptr=((& QSpinBox::_ZTV8QSpinBox) + 16u) + QAbstractSpinBox (0x7f9550600e70) 0 + primary-for QSpinBox (0x7f9550600e00) + QWidget (0x7f95505e8d80) 0 + primary-for QAbstractSpinBox (0x7f9550600e70) + QObject (0x7f9550600ee0) 0 + primary-for QWidget (0x7f95505e8d80) + QPaintDevice (0x7f9550600f50) 16 + vptr=((& QSpinBox::_ZTV8QSpinBox) + 520u) + +Vtable for QDoubleSpinBox +QDoubleSpinBox::_ZTV14QDoubleSpinBox: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QDoubleSpinBox) +16 QDoubleSpinBox::metaObject +24 QDoubleSpinBox::qt_metacast +32 QDoubleSpinBox::qt_metacall +40 QDoubleSpinBox::~QDoubleSpinBox +48 QDoubleSpinBox::~QDoubleSpinBox +56 QAbstractSpinBox::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractSpinBox::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractSpinBox::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QAbstractSpinBox::wheelEvent +200 QAbstractSpinBox::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QAbstractSpinBox::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractSpinBox::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QAbstractSpinBox::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDoubleSpinBox::validate +456 QDoubleSpinBox::fixup +464 QAbstractSpinBox::stepBy +472 QAbstractSpinBox::clear +480 QAbstractSpinBox::stepEnabled +488 QDoubleSpinBox::valueFromText +496 QDoubleSpinBox::textFromValue +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI14QDoubleSpinBox) +520 QDoubleSpinBox::_ZThn16_N14QDoubleSpinBoxD1Ev +528 QDoubleSpinBox::_ZThn16_N14QDoubleSpinBoxD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDoubleSpinBox + size=40 align=8 + base size=40 base align=8 +QDoubleSpinBox (0x7f955062d770) 0 + vptr=((& QDoubleSpinBox::_ZTV14QDoubleSpinBox) + 16u) + QAbstractSpinBox (0x7f955062d7e0) 0 + primary-for QDoubleSpinBox (0x7f955062d770) + QWidget (0x7f9550620f00) 0 + primary-for QAbstractSpinBox (0x7f955062d7e0) + QObject (0x7f955062d850) 0 + primary-for QWidget (0x7f9550620f00) + QPaintDevice (0x7f955062d8c0) 16 + vptr=((& QDoubleSpinBox::_ZTV14QDoubleSpinBox) + 520u) + +Vtable for QSplashScreen +QSplashScreen::_ZTV13QSplashScreen: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSplashScreen) +16 QSplashScreen::metaObject +24 QSplashScreen::qt_metacast +32 QSplashScreen::qt_metacall +40 QSplashScreen::~QSplashScreen +48 QSplashScreen::~QSplashScreen +56 QSplashScreen::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QSplashScreen::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QSplashScreen::drawContents +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI13QSplashScreen) +472 QSplashScreen::_ZThn16_N13QSplashScreenD1Ev +480 QSplashScreen::_ZThn16_N13QSplashScreenD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSplashScreen + size=40 align=8 + base size=40 base align=8 +QSplashScreen (0x7f955064d230) 0 + vptr=((& QSplashScreen::_ZTV13QSplashScreen) + 16u) + QWidget (0x7f9550630900) 0 + primary-for QSplashScreen (0x7f955064d230) + QObject (0x7f955064d2a0) 0 + primary-for QWidget (0x7f9550630900) + QPaintDevice (0x7f955064d310) 16 + vptr=((& QSplashScreen::_ZTV13QSplashScreen) + 472u) + +Vtable for QSplitter +QSplitter::_ZTV9QSplitter: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QSplitter) +16 QSplitter::metaObject +24 QSplitter::qt_metacast +32 QSplitter::qt_metacall +40 QSplitter::~QSplitter +48 QSplitter::~QSplitter +56 QSplitter::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QSplitter::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QSplitter::sizeHint +136 QSplitter::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFrame::paintEvent +256 QWidget::moveEvent +264 QSplitter::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QSplitter::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QSplitter::createHandle +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI9QSplitter) +472 QSplitter::_ZThn16_N9QSplitterD1Ev +480 QSplitter::_ZThn16_N9QSplitterD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSplitter + size=40 align=8 + base size=40 base align=8 +QSplitter (0x7f955066f310) 0 + vptr=((& QSplitter::_ZTV9QSplitter) + 16u) + QFrame (0x7f955066f380) 0 + primary-for QSplitter (0x7f955066f310) + QWidget (0x7f955066a580) 0 + primary-for QFrame (0x7f955066f380) + QObject (0x7f955066f3f0) 0 + primary-for QWidget (0x7f955066a580) + QPaintDevice (0x7f955066f460) 16 + vptr=((& QSplitter::_ZTV9QSplitter) + 472u) + +Vtable for QSplitterHandle +QSplitterHandle::_ZTV15QSplitterHandle: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSplitterHandle) +16 QSplitterHandle::metaObject +24 QSplitterHandle::qt_metacast +32 QSplitterHandle::qt_metacall +40 QSplitterHandle::~QSplitterHandle +48 QSplitterHandle::~QSplitterHandle +56 QSplitterHandle::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QSplitterHandle::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QSplitterHandle::mousePressEvent +168 QSplitterHandle::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QSplitterHandle::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QSplitterHandle::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI15QSplitterHandle) +464 QSplitterHandle::_ZThn16_N15QSplitterHandleD1Ev +472 QSplitterHandle::_ZThn16_N15QSplitterHandleD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSplitterHandle + size=40 align=8 + base size=40 base align=8 +QSplitterHandle (0x7f955069b230) 0 + vptr=((& QSplitterHandle::_ZTV15QSplitterHandle) + 16u) + QWidget (0x7f9550697780) 0 + primary-for QSplitterHandle (0x7f955069b230) + QObject (0x7f955069b2a0) 0 + primary-for QWidget (0x7f9550697780) + QPaintDevice (0x7f955069b310) 16 + vptr=((& QSplitterHandle::_ZTV15QSplitterHandle) + 464u) + +Vtable for QStackedWidget +QStackedWidget::_ZTV14QStackedWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QStackedWidget) +16 QStackedWidget::metaObject +24 QStackedWidget::qt_metacast +32 QStackedWidget::qt_metacall +40 QStackedWidget::~QStackedWidget +48 QStackedWidget::~QStackedWidget +56 QStackedWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QFrame::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFrame::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI14QStackedWidget) +464 QStackedWidget::_ZThn16_N14QStackedWidgetD1Ev +472 QStackedWidget::_ZThn16_N14QStackedWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QStackedWidget + size=40 align=8 + base size=40 base align=8 +QStackedWidget (0x7f95506b4a10) 0 + vptr=((& QStackedWidget::_ZTV14QStackedWidget) + 16u) + QFrame (0x7f95506b4a80) 0 + primary-for QStackedWidget (0x7f95506b4a10) + QWidget (0x7f95506b7180) 0 + primary-for QFrame (0x7f95506b4a80) + QObject (0x7f95506b4af0) 0 + primary-for QWidget (0x7f95506b7180) + QPaintDevice (0x7f95506b4b60) 16 + vptr=((& QStackedWidget::_ZTV14QStackedWidget) + 464u) + +Vtable for QStatusBar +QStatusBar::_ZTV10QStatusBar: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QStatusBar) +16 QStatusBar::metaObject +24 QStatusBar::qt_metacast +32 QStatusBar::qt_metacall +40 QStatusBar::~QStatusBar +48 QStatusBar::~QStatusBar +56 QStatusBar::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QStatusBar::paintEvent +256 QWidget::moveEvent +264 QStatusBar::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QStatusBar::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI10QStatusBar) +464 QStatusBar::_ZThn16_N10QStatusBarD1Ev +472 QStatusBar::_ZThn16_N10QStatusBarD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QStatusBar + size=40 align=8 + base size=40 base align=8 +QStatusBar (0x7f95504d28c0) 0 + vptr=((& QStatusBar::_ZTV10QStatusBar) + 16u) + QWidget (0x7f95506b7b80) 0 + primary-for QStatusBar (0x7f95504d28c0) + QObject (0x7f95504d2930) 0 + primary-for QWidget (0x7f95506b7b80) + QPaintDevice (0x7f95504d29a0) 16 + vptr=((& QStatusBar::_ZTV10QStatusBar) + 464u) + +Vtable for QTextBrowser +QTextBrowser::_ZTV12QTextBrowser: 74u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextBrowser) +16 QTextBrowser::metaObject +24 QTextBrowser::qt_metacast +32 QTextBrowser::qt_metacall +40 QTextBrowser::~QTextBrowser +48 QTextBrowser::~QTextBrowser +56 QTextBrowser::event +64 QObject::eventFilter +72 QTextEdit::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTextBrowser::mousePressEvent +168 QTextBrowser::mouseReleaseEvent +176 QTextEdit::mouseDoubleClickEvent +184 QTextBrowser::mouseMoveEvent +192 QTextEdit::wheelEvent +200 QTextBrowser::keyPressEvent +208 QTextEdit::keyReleaseEvent +216 QTextEdit::focusInEvent +224 QTextBrowser::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTextBrowser::paintEvent +256 QWidget::moveEvent +264 QTextEdit::resizeEvent +272 QWidget::closeEvent +280 QTextEdit::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QTextEdit::dragEnterEvent +312 QTextEdit::dragMoveEvent +320 QTextEdit::dragLeaveEvent +328 QTextEdit::dropEvent +336 QTextEdit::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QTextEdit::changeEvent +368 QWidget::metric +376 QTextEdit::inputMethodEvent +384 QTextEdit::inputMethodQuery +392 QTextBrowser::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QTextEdit::scrollContentsBy +464 QTextBrowser::loadResource +472 QTextEdit::createMimeDataFromSelection +480 QTextEdit::canInsertFromMimeData +488 QTextEdit::insertFromMimeData +496 QTextBrowser::setSource +504 QTextBrowser::backward +512 QTextBrowser::forward +520 QTextBrowser::home +528 QTextBrowser::reload +536 (int (*)(...))-0x00000000000000010 +544 (int (*)(...))(& _ZTI12QTextBrowser) +552 QTextBrowser::_ZThn16_N12QTextBrowserD1Ev +560 QTextBrowser::_ZThn16_N12QTextBrowserD0Ev +568 QWidget::_ZThn16_NK7QWidget7devTypeEv +576 QWidget::_ZThn16_NK7QWidget11paintEngineEv +584 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTextBrowser + size=40 align=8 + base size=40 base align=8 +QTextBrowser (0x7f95504f3e00) 0 + vptr=((& QTextBrowser::_ZTV12QTextBrowser) + 16u) + QTextEdit (0x7f95504f3e70) 0 + primary-for QTextBrowser (0x7f95504f3e00) + QAbstractScrollArea (0x7f95504f3ee0) 0 + primary-for QTextEdit (0x7f95504f3e70) + QFrame (0x7f95504f3f50) 0 + primary-for QAbstractScrollArea (0x7f95504f3ee0) + QWidget (0x7f95504eeb80) 0 + primary-for QFrame (0x7f95504f3f50) + QObject (0x7f95504fa000) 0 + primary-for QWidget (0x7f95504eeb80) + QPaintDevice (0x7f95504fa070) 16 + vptr=((& QTextBrowser::_ZTV12QTextBrowser) + 552u) + +Vtable for QToolBar +QToolBar::_ZTV8QToolBar: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QToolBar) +16 QToolBar::metaObject +24 QToolBar::qt_metacast +32 QToolBar::qt_metacall +40 QToolBar::~QToolBar +48 QToolBar::~QToolBar +56 QToolBar::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QToolBar::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QToolBar::paintEvent +256 QWidget::moveEvent +264 QToolBar::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QToolBar::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QToolBar::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI8QToolBar) +464 QToolBar::_ZThn16_N8QToolBarD1Ev +472 QToolBar::_ZThn16_N8QToolBarD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QToolBar + size=40 align=8 + base size=40 base align=8 +QToolBar (0x7f9550517a10) 0 + vptr=((& QToolBar::_ZTV8QToolBar) + 16u) + QWidget (0x7f9550514580) 0 + primary-for QToolBar (0x7f9550517a10) + QObject (0x7f9550517a80) 0 + primary-for QWidget (0x7f9550514580) + QPaintDevice (0x7f9550517af0) 16 + vptr=((& QToolBar::_ZTV8QToolBar) + 464u) + +Vtable for QToolBox +QToolBox::_ZTV8QToolBox: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QToolBox) +16 QToolBox::metaObject +24 QToolBox::qt_metacast +32 QToolBox::qt_metacall +40 QToolBox::~QToolBox +48 QToolBox::~QToolBox +56 QToolBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QFrame::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFrame::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QToolBox::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QToolBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QToolBox::itemInserted +456 QToolBox::itemRemoved +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI8QToolBox) +480 QToolBox::_ZThn16_N8QToolBoxD1Ev +488 QToolBox::_ZThn16_N8QToolBoxD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QToolBox + size=40 align=8 + base size=40 base align=8 +QToolBox (0x7f9550552850) 0 + vptr=((& QToolBox::_ZTV8QToolBox) + 16u) + QFrame (0x7f95505528c0) 0 + primary-for QToolBox (0x7f9550552850) + QWidget (0x7f9550550680) 0 + primary-for QFrame (0x7f95505528c0) + QObject (0x7f9550552930) 0 + primary-for QWidget (0x7f9550550680) + QPaintDevice (0x7f95505529a0) 16 + vptr=((& QToolBox::_ZTV8QToolBox) + 480u) + +Vtable for QToolButton +QToolButton::_ZTV11QToolButton: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QToolButton) +16 QToolButton::metaObject +24 QToolButton::qt_metacast +32 QToolButton::qt_metacall +40 QToolButton::~QToolButton +48 QToolButton::~QToolButton +56 QToolButton::event +64 QObject::eventFilter +72 QToolButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QToolButton::sizeHint +136 QToolButton::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QToolButton::mousePressEvent +168 QToolButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QAbstractButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QAbstractButton::focusInEvent +224 QAbstractButton::focusOutEvent +232 QToolButton::enterEvent +240 QToolButton::leaveEvent +248 QToolButton::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QToolButton::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QToolButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QToolButton::hitButton +456 QAbstractButton::checkStateSet +464 QToolButton::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11QToolButton) +488 QToolButton::_ZThn16_N11QToolButtonD1Ev +496 QToolButton::_ZThn16_N11QToolButtonD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QToolButton + size=40 align=8 + base size=40 base align=8 +QToolButton (0x7f955058c310) 0 + vptr=((& QToolButton::_ZTV11QToolButton) + 16u) + QAbstractButton (0x7f955058c380) 0 + primary-for QToolButton (0x7f955058c310) + QWidget (0x7f955058a400) 0 + primary-for QAbstractButton (0x7f955058c380) + QObject (0x7f955058c3f0) 0 + primary-for QWidget (0x7f955058a400) + QPaintDevice (0x7f955058c460) 16 + vptr=((& QToolButton::_ZTV11QToolButton) + 488u) + +Vtable for QWorkspace +QWorkspace::_ZTV10QWorkspace: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QWorkspace) +16 QWorkspace::metaObject +24 QWorkspace::qt_metacast +32 QWorkspace::qt_metacall +40 QWorkspace::~QWorkspace +48 QWorkspace::~QWorkspace +56 QWorkspace::event +64 QWorkspace::eventFilter +72 QObject::timerEvent +80 QWorkspace::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWorkspace::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWorkspace::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWorkspace::paintEvent +256 QWidget::moveEvent +264 QWorkspace::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWorkspace::showEvent +344 QWorkspace::hideEvent +352 QWidget::x11Event +360 QWorkspace::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI10QWorkspace) +464 QWorkspace::_ZThn16_N10QWorkspaceD1Ev +472 QWorkspace::_ZThn16_N10QWorkspaceD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWorkspace + size=40 align=8 + base size=40 base align=8 +QWorkspace (0x7f95503d2620) 0 + vptr=((& QWorkspace::_ZTV10QWorkspace) + 16u) + QWidget (0x7f95503d6100) 0 + primary-for QWorkspace (0x7f95503d2620) + QObject (0x7f95503d2690) 0 + primary-for QWidget (0x7f95503d6100) + QPaintDevice (0x7f95503d2700) 16 + vptr=((& QWorkspace::_ZTV10QWorkspace) + 464u) + +Class QAudioFormat + size=8 align=8 + base size=8 base align=8 +QAudioFormat (0x7f955040d070) 0 + +Class QAudioDeviceInfo + size=8 align=8 + base size=8 base align=8 +QAudioDeviceInfo (0x7f95504184d0) 0 + +Vtable for QAbstractAudioDeviceInfo +QAbstractAudioDeviceInfo::_ZTV24QAbstractAudioDeviceInfo: 24u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QAbstractAudioDeviceInfo) +16 QAbstractAudioDeviceInfo::metaObject +24 QAbstractAudioDeviceInfo::qt_metacast +32 QAbstractAudioDeviceInfo::qt_metacall +40 QAbstractAudioDeviceInfo::~QAbstractAudioDeviceInfo +48 QAbstractAudioDeviceInfo::~QAbstractAudioDeviceInfo +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual + +Class QAbstractAudioDeviceInfo + size=16 align=8 + base size=16 base align=8 +QAbstractAudioDeviceInfo (0x7f955042ce70) 0 + vptr=((& QAbstractAudioDeviceInfo::_ZTV24QAbstractAudioDeviceInfo) + 16u) + QObject (0x7f955042cee0) 0 + primary-for QAbstractAudioDeviceInfo (0x7f955042ce70) + +Vtable for QAbstractAudioOutput +QAbstractAudioOutput::_ZTV20QAbstractAudioOutput: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QAbstractAudioOutput) +16 QAbstractAudioOutput::metaObject +24 QAbstractAudioOutput::qt_metacast +32 QAbstractAudioOutput::qt_metacall +40 QAbstractAudioOutput::~QAbstractAudioOutput +48 QAbstractAudioOutput::~QAbstractAudioOutput +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 __cxa_pure_virtual +208 __cxa_pure_virtual +216 __cxa_pure_virtual +224 __cxa_pure_virtual +232 __cxa_pure_virtual + +Class QAbstractAudioOutput + size=16 align=8 + base size=16 base align=8 +QAbstractAudioOutput (0x7f955044e380) 0 + vptr=((& QAbstractAudioOutput::_ZTV20QAbstractAudioOutput) + 16u) + QObject (0x7f955044e3f0) 0 + primary-for QAbstractAudioOutput (0x7f955044e380) + +Vtable for QAbstractAudioInput +QAbstractAudioInput::_ZTV19QAbstractAudioInput: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractAudioInput) +16 QAbstractAudioInput::metaObject +24 QAbstractAudioInput::qt_metacast +32 QAbstractAudioInput::qt_metacall +40 QAbstractAudioInput::~QAbstractAudioInput +48 QAbstractAudioInput::~QAbstractAudioInput +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 __cxa_pure_virtual +208 __cxa_pure_virtual +216 __cxa_pure_virtual +224 __cxa_pure_virtual +232 __cxa_pure_virtual + +Class QAbstractAudioInput + size=16 align=8 + base size=16 base align=8 +QAbstractAudioInput (0x7f95504660e0) 0 + vptr=((& QAbstractAudioInput::_ZTV19QAbstractAudioInput) + 16u) + QObject (0x7f9550466150) 0 + primary-for QAbstractAudioInput (0x7f95504660e0) + +Vtable for QAudioEngineFactoryInterface +QAudioEngineFactoryInterface::_ZTV28QAudioEngineFactoryInterface: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI28QAudioEngineFactoryInterface) +16 QAudioEngineFactoryInterface::~QAudioEngineFactoryInterface +24 QAudioEngineFactoryInterface::~QAudioEngineFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual + +Class QAudioEngineFactoryInterface + size=8 align=8 + base size=8 base align=8 +QAudioEngineFactoryInterface (0x7f9550466e70) 0 nearly-empty + vptr=((& QAudioEngineFactoryInterface::_ZTV28QAudioEngineFactoryInterface) + 16u) + QFactoryInterface (0x7f9550466ee0) 0 nearly-empty + primary-for QAudioEngineFactoryInterface (0x7f9550466e70) + +Vtable for QAudioEnginePlugin +QAudioEnginePlugin::_ZTV18QAudioEnginePlugin: 28u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAudioEnginePlugin) +16 QAudioEnginePlugin::metaObject +24 QAudioEnginePlugin::qt_metacast +32 QAudioEnginePlugin::qt_metacall +40 QAudioEnginePlugin::~QAudioEnginePlugin +48 QAudioEnginePlugin::~QAudioEnginePlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 (int (*)(...))-0x00000000000000010 +160 (int (*)(...))(& _ZTI18QAudioEnginePlugin) +168 QAudioEnginePlugin::_ZThn16_N18QAudioEnginePluginD1Ev +176 QAudioEnginePlugin::_ZThn16_N18QAudioEnginePluginD0Ev +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 __cxa_pure_virtual +208 __cxa_pure_virtual +216 __cxa_pure_virtual + +Class QAudioEnginePlugin + size=24 align=8 + base size=24 base align=8 +QAudioEnginePlugin (0x7f9550489000) 0 + vptr=((& QAudioEnginePlugin::_ZTV18QAudioEnginePlugin) + 16u) + QObject (0x7f95504808c0) 0 + primary-for QAudioEnginePlugin (0x7f9550489000) + QAudioEngineFactoryInterface (0x7f9550480930) 16 nearly-empty + vptr=((& QAudioEnginePlugin::_ZTV18QAudioEnginePlugin) + 168u) + QFactoryInterface (0x7f95504809a0) 16 nearly-empty + primary-for QAudioEngineFactoryInterface (0x7f9550480930) + +Vtable for QAudioInput +QAudioInput::_ZTV11QAudioInput: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QAudioInput) +16 QAudioInput::metaObject +24 QAudioInput::qt_metacast +32 QAudioInput::qt_metacall +40 QAudioInput::~QAudioInput +48 QAudioInput::~QAudioInput +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QAudioInput + size=24 align=8 + base size=24 base align=8 +QAudioInput (0x7f9550496930) 0 + vptr=((& QAudioInput::_ZTV11QAudioInput) + 16u) + QObject (0x7f95504969a0) 0 + primary-for QAudioInput (0x7f9550496930) + +Vtable for QAudioOutput +QAudioOutput::_ZTV12QAudioOutput: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QAudioOutput) +16 QAudioOutput::metaObject +24 QAudioOutput::qt_metacast +32 QAudioOutput::qt_metacall +40 QAudioOutput::~QAudioOutput +48 QAudioOutput::~QAudioOutput +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QAudioOutput + size=24 align=8 + base size=24 base align=8 +QAudioOutput (0x7f95504a6e70) 0 + vptr=((& QAudioOutput::_ZTV12QAudioOutput) + 16u) + QObject (0x7f95504a6ee0) 0 + primary-for QAudioOutput (0x7f95504a6e70) + +Vtable for QAbstractVideoBuffer +QAbstractVideoBuffer::_ZTV20QAbstractVideoBuffer: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QAbstractVideoBuffer) +16 QAbstractVideoBuffer::~QAbstractVideoBuffer +24 QAbstractVideoBuffer::~QAbstractVideoBuffer +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QAbstractVideoBuffer::handle + +Class QAbstractVideoBuffer + size=16 align=8 + base size=16 base align=8 +QAbstractVideoBuffer (0x7f95504cb310) 0 + vptr=((& QAbstractVideoBuffer::_ZTV20QAbstractVideoBuffer) + 16u) + +Class QVideoFrame + size=8 align=8 + base size=8 base align=8 +QVideoFrame (0x7f95502e6150) 0 + +Vtable for QAbstractVideoSurface +QAbstractVideoSurface::_ZTV21QAbstractVideoSurface: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QAbstractVideoSurface) +16 QAbstractVideoSurface::metaObject +24 QAbstractVideoSurface::qt_metacast +32 QAbstractVideoSurface::qt_metacall +40 QAbstractVideoSurface::~QAbstractVideoSurface +48 QAbstractVideoSurface::~QAbstractVideoSurface +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 QAbstractVideoSurface::isFormatSupported +128 QAbstractVideoSurface::nearestFormat +136 QAbstractVideoSurface::start +144 QAbstractVideoSurface::stop +152 __cxa_pure_virtual + +Class QAbstractVideoSurface + size=16 align=8 + base size=16 base align=8 +QAbstractVideoSurface (0x7f95502f7ee0) 0 + vptr=((& QAbstractVideoSurface::_ZTV21QAbstractVideoSurface) + 16u) + QObject (0x7f95502f7f50) 0 + primary-for QAbstractVideoSurface (0x7f95502f7ee0) + +Class QVideoSurfaceFormat + size=8 align=8 + base size=8 base align=8 +QVideoSurfaceFormat (0x7f9550328af0) 0 + diff --git a/tests/auto/bic/data/QtNetwork.4.5.0.linux-gcc-amd64.txt b/tests/auto/bic/data/QtNetwork.4.5.0.linux-gcc-amd64.txt new file mode 100644 index 0000000..610b296 --- /dev/null +++ b/tests/auto/bic/data/QtNetwork.4.5.0.linux-gcc-amd64.txt @@ -0,0 +1,3013 @@ +Class QSysInfo + size=1 align=1 + base size=0 base align=1 +QSysInfo (0x7f8b7b0ad460) 0 empty + +Class QBool + size=1 align=1 + base size=1 base align=1 +QBool (0x7f8b7b0c1150) 0 + +Class qIsNull(double)::U + size=8 align=8 + base size=8 base align=8 +qIsNull(double)::U (0x7f8b7b0d8540) 0 + +Class qIsNull(float)::U + size=4 align=4 + base size=4 base align=4 +qIsNull(float)::U (0x7f8b7b0d87e0) 0 + +Class QFlag + size=4 align=4 + base size=4 base align=4 +QFlag (0x7f8b7b10f620) 0 + +Class QIncompatibleFlag + size=4 align=4 + base size=4 base align=4 +QIncompatibleFlag (0x7f8b7b10fe00) 0 + +Class QInternal + size=1 align=1 + base size=0 base align=1 +QInternal (0x7f8b7a709540) 0 empty + +Class QGenericArgument + size=16 align=8 + base size=16 base align=8 +QGenericArgument (0x7f8b7a709850) 0 + +Class QGenericReturnArgument + size=16 align=8 + base size=16 base align=8 +QGenericReturnArgument (0x7f8b7a7253f0) 0 + QGenericArgument (0x7f8b7a725460) 0 + +Class QMetaObject + size=32 align=8 + base size=32 base align=8 +QMetaObject (0x7f8b7a725cb0) 0 + +Class QMetaObjectExtraData + size=16 align=8 + base size=16 base align=8 +QMetaObjectExtraData (0x7f8b7a74dcb0) 0 + +Class QLatin1Char + size=1 align=1 + base size=1 base align=1 +QLatin1Char (0x7f8b7a757700) 0 + +Class QChar + size=2 align=2 + base size=2 base align=2 +QChar (0x7f8b7a75c2a0) 0 + +Class QBasicAtomicInt + size=4 align=4 + base size=4 base align=4 +QBasicAtomicInt (0x7f8b7a5c9380) 0 + +Class QAtomicInt + size=4 align=4 + base size=4 base align=4 +QAtomicInt (0x7f8b7a603d20) 0 + QBasicAtomicInt (0x7f8b7a603d90) 0 + +Class __locale_struct + size=232 align=8 + base size=232 base align=8 +__locale_struct (0x7f8b7a6291c0) 0 + +Class QByteArray::Data + size=32 align=8 + base size=32 base align=8 +QByteArray::Data (0x7f8b7a4a27e0) 0 + +Class QByteArray + size=8 align=8 + base size=8 base align=8 +QByteArray (0x7f8b7a662540) 0 + +Class QByteRef + size=16 align=8 + base size=12 base align=8 +QByteRef (0x7f8b7a4f8a80) 0 + +Class QString::Null + size=1 align=1 + base size=0 base align=1 +QString::Null (0x7f8b7a3ff700) 0 empty + +Class QString::Data + size=32 align=8 + base size=32 base align=8 +QString::Data (0x7f8b7a40eee0) 0 + +Class QString + size=8 align=8 + base size=8 base align=8 +QString (0x7f8b7a37e5b0) 0 + +Class QLatin1String + size=8 align=8 + base size=8 base align=8 +QLatin1String (0x7f8b7a2ea000) 0 + +Class QCharRef + size=16 align=8 + base size=12 base align=8 +QCharRef (0x7f8b7a180620) 0 + +Class QConstString + size=8 align=8 + base size=8 base align=8 +QConstString (0x7f8b7a0c9ee0) 0 + QString (0x7f8b7a0c9f50) 0 + +Class QStringRef + size=16 align=8 + base size=16 base align=8 +QStringRef (0x7f8b7a0ebbd0) 0 + +Vtable for std::exception +std::exception::_ZTVSt9exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9exception) +16 std::exception::~exception +24 std::exception::~exception +32 std::exception::what + +Class std::exception + size=8 align=8 + base size=8 base align=8 +std::exception (0x7f8b79fa5620) 0 nearly-empty + vptr=((& std::exception::_ZTVSt9exception) + 16u) + +Vtable for std::bad_exception +std::bad_exception::_ZTVSt13bad_exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13bad_exception) +16 std::bad_exception::~bad_exception +24 std::bad_exception::~bad_exception +32 std::bad_exception::what + +Class std::bad_exception + size=8 align=8 + base size=8 base align=8 +std::bad_exception (0x7f8b79fc8000) 0 nearly-empty + vptr=((& std::bad_exception::_ZTVSt13bad_exception) + 16u) + std::exception (0x7f8b79fc8070) 0 nearly-empty + primary-for std::bad_exception (0x7f8b79fc8000) + +Vtable for std::bad_alloc +std::bad_alloc::_ZTVSt9bad_alloc: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9bad_alloc) +16 std::bad_alloc::~bad_alloc +24 std::bad_alloc::~bad_alloc +32 std::bad_alloc::what + +Class std::bad_alloc + size=8 align=8 + base size=8 base align=8 +std::bad_alloc (0x7f8b79fc88c0) 0 nearly-empty + vptr=((& std::bad_alloc::_ZTVSt9bad_alloc) + 16u) + std::exception (0x7f8b79fc8930) 0 nearly-empty + primary-for std::bad_alloc (0x7f8b79fc88c0) + +Class std::nothrow_t + size=1 align=1 + base size=0 base align=1 +std::nothrow_t (0x7f8b79fd90e0) 0 empty + +Class QListData::Data + size=32 align=8 + base size=32 base align=8 +QListData::Data (0x7f8b79fd9620) 0 + +Class QListData + size=8 align=8 + base size=8 base align=8 +QListData (0x7f8b79fd95b0) 0 + +Vtable for QObjectData +QObjectData::_ZTV11QObjectData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QObjectData) +16 __cxa_pure_virtual +24 __cxa_pure_virtual + +Class QObjectData + size=40 align=8 + base size=40 base align=8 +QObjectData (0x7f8b79edcbd0) 0 + vptr=((& QObjectData::_ZTV11QObjectData) + 16u) + +Vtable for QObject +QObject::_ZTV7QObject: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QObject) +16 QObject::metaObject +24 QObject::qt_metacast +32 QObject::qt_metacall +40 QObject::~QObject +48 QObject::~QObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObject + size=16 align=8 + base size=16 base align=8 +QObject (0x7f8b79edcee0) 0 + vptr=((& QObject::_ZTV7QObject) + 16u) + +Vtable for QObjectUserData +QObjectUserData::_ZTV15QObjectUserData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QObjectUserData) +16 QObjectUserData::~QObjectUserData +24 QObjectUserData::~QObjectUserData + +Class QObjectUserData + size=8 align=8 + base size=8 base align=8 +QObjectUserData (0x7f8b79d5e3f0) 0 nearly-empty + vptr=((& QObjectUserData::_ZTV15QObjectUserData) + 16u) + +Vtable for QIODevice +QIODevice::_ZTV9QIODevice: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QIODevice) +16 QIODevice::metaObject +24 QIODevice::qt_metacast +32 QIODevice::qt_metacall +40 QIODevice::~QIODevice +48 QIODevice::~QIODevice +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QIODevice::isSequential +120 QIODevice::open +128 QIODevice::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QIODevice::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 __cxa_pure_virtual +224 QIODevice::readLineData +232 __cxa_pure_virtual + +Class QIODevice + size=16 align=8 + base size=16 base align=8 +QIODevice (0x7f8b79d5e930) 0 + vptr=((& QIODevice::_ZTV9QIODevice) + 16u) + QObject (0x7f8b79d5e9a0) 0 + primary-for QIODevice (0x7f8b79d5e930) + +Vtable for QDataStream +QDataStream::_ZTV11QDataStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QDataStream) +16 QDataStream::~QDataStream +24 QDataStream::~QDataStream + +Class QDataStream + size=40 align=8 + base size=40 base align=8 +QDataStream (0x7f8b79dd32a0) 0 + vptr=((& QDataStream::_ZTV11QDataStream) + 16u) + +Class QHashData::Node + size=16 align=8 + base size=16 base align=8 +QHashData::Node (0x7f8b79c5a150) 0 + +Class QHashData + size=40 align=8 + base size=40 base align=8 +QHashData (0x7f8b79c5a0e0) 0 + +Class QHashDummyValue + size=1 align=1 + base size=0 base align=1 +QHashDummyValue (0x7f8b79c69ee0) 0 empty + +Class QMapData::Node + size=16 align=8 + base size=16 base align=8 +QMapData::Node (0x7f8b79b7c690) 0 + +Class QMapData + size=128 align=8 + base size=128 base align=8 +QMapData (0x7f8b79b7c620) 0 + +Vtable for QSystemLocale +QSystemLocale::_ZTV13QSystemLocale: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSystemLocale) +16 QSystemLocale::~QSystemLocale +24 QSystemLocale::~QSystemLocale +32 QSystemLocale::query +40 QSystemLocale::fallbackLocale + +Class QSystemLocale + size=8 align=8 + base size=8 base align=8 +QSystemLocale (0x7f8b79a91e00) 0 nearly-empty + vptr=((& QSystemLocale::_ZTV13QSystemLocale) + 16u) + +Class QLocale::Data + size=4 align=2 + base size=4 base align=2 +QLocale::Data (0x7f8b79aef3f0) 0 + +Class QLocale + size=8 align=8 + base size=8 base align=8 +QLocale (0x7f8b79ab20e0) 0 + +Class QTextCodec::ConverterState + size=32 align=8 + base size=32 base align=8 +QTextCodec::ConverterState (0x7f8b79b3de70) 0 + +Vtable for QTextCodec +QTextCodec::_ZTV10QTextCodec: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextCodec) +16 __cxa_pure_virtual +24 QTextCodec::aliases +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QTextCodec::~QTextCodec +64 QTextCodec::~QTextCodec + +Class QTextCodec + size=8 align=8 + base size=8 base align=8 +QTextCodec (0x7f8b79b27a80) 0 nearly-empty + vptr=((& QTextCodec::_ZTV10QTextCodec) + 16u) + +Class QTextEncoder + size=40 align=8 + base size=40 base align=8 +QTextEncoder (0x7f8b799a83f0) 0 + +Class QTextDecoder + size=40 align=8 + base size=40 base align=8 +QTextDecoder (0x7f8b799b2230) 0 + +Class _IO_marker + size=24 align=8 + base size=24 base align=8 +_IO_marker (0x7f8b799b92a0) 0 + +Class _IO_FILE + size=216 align=8 + base size=216 base align=8 +_IO_FILE (0x7f8b799b9310) 0 + +Vtable for QTextStream +QTextStream::_ZTV11QTextStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTextStream) +16 QTextStream::~QTextStream +24 QTextStream::~QTextStream + +Class QTextStream + size=16 align=8 + base size=16 base align=8 +QTextStream (0x7f8b799b93f0) 0 + vptr=((& QTextStream::_ZTV11QTextStream) + 16u) + +Class QTextStreamManipulator + size=40 align=8 + base size=38 base align=8 +QTextStreamManipulator (0x7f8b79851ee0) 0 + +Vtable for QTextIStream +QTextIStream::_ZTV12QTextIStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextIStream) +16 QTextIStream::~QTextIStream +24 QTextIStream::~QTextIStream + +Class QTextIStream + size=16 align=8 + base size=16 base align=8 +QTextIStream (0x7f8b7987e1c0) 0 + vptr=((& QTextIStream::_ZTV12QTextIStream) + 16u) + QTextStream (0x7f8b7987e230) 0 + primary-for QTextIStream (0x7f8b7987e1c0) + +Vtable for QTextOStream +QTextOStream::_ZTV12QTextOStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextOStream) +16 QTextOStream::~QTextOStream +24 QTextOStream::~QTextOStream + +Class QTextOStream + size=16 align=8 + base size=16 base align=8 +QTextOStream (0x7f8b79893070) 0 + vptr=((& QTextOStream::_ZTV12QTextOStream) + 16u) + QTextStream (0x7f8b798930e0) 0 + primary-for QTextOStream (0x7f8b79893070) + +Class wait + size=4 align=4 + base size=4 base align=4 +wait (0x7f8b798a0ee0) 0 + +Class timespec + size=16 align=8 + base size=16 base align=8 +timespec (0x7f8b798ad230) 0 + +Class timeval + size=16 align=8 + base size=16 base align=8 +timeval (0x7f8b798ad2a0) 0 + +Class __pthread_internal_list + size=16 align=8 + base size=16 base align=8 +__pthread_internal_list (0x7f8b798ad3f0) 0 + +Class random_data + size=48 align=8 + base size=48 base align=8 +random_data (0x7f8b798ad9a0) 0 + +Class drand48_data + size=24 align=8 + base size=24 base align=8 +drand48_data (0x7f8b798ada10) 0 + +Class QVectorData + size=16 align=4 + base size=16 base align=4 +QVectorData (0x7f8b798ada80) 0 + +Class QDebug::Stream + size=40 align=8 + base size=34 base align=8 +QDebug::Stream (0x7f8b79829230) 0 + +Class QDebug + size=8 align=8 + base size=8 base align=8 +QDebug (0x7f8b798291c0) 0 + +Class QNoDebug + size=1 align=1 + base size=0 base align=1 +QNoDebug (0x7f8b796c7070) 0 empty + +Vtable for QFile +QFile::_ZTV5QFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QFile) +16 QFile::metaObject +24 QFile::qt_metacast +32 QFile::qt_metacall +40 QFile::~QFile +48 QFile::~QFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QFile::fileEngine + +Class QFile + size=16 align=8 + base size=16 base align=8 +QFile (0x7f8b796d8620) 0 + vptr=((& QFile::_ZTV5QFile) + 16u) + QIODevice (0x7f8b796d8690) 0 + primary-for QFile (0x7f8b796d8620) + QObject (0x7f8b796d8700) 0 + primary-for QIODevice (0x7f8b796d8690) + +Vtable for QTemporaryFile +QTemporaryFile::_ZTV14QTemporaryFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QTemporaryFile) +16 QTemporaryFile::metaObject +24 QTemporaryFile::qt_metacast +32 QTemporaryFile::qt_metacall +40 QTemporaryFile::~QTemporaryFile +48 QTemporaryFile::~QTemporaryFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QTemporaryFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QTemporaryFile::fileEngine + +Class QTemporaryFile + size=16 align=8 + base size=16 base align=8 +QTemporaryFile (0x7f8b79742850) 0 + vptr=((& QTemporaryFile::_ZTV14QTemporaryFile) + 16u) + QFile (0x7f8b797428c0) 0 + primary-for QTemporaryFile (0x7f8b79742850) + QIODevice (0x7f8b79742930) 0 + primary-for QFile (0x7f8b797428c0) + QObject (0x7f8b797429a0) 0 + primary-for QIODevice (0x7f8b79742930) + +Class QFileInfo + size=8 align=8 + base size=8 base align=8 +QFileInfo (0x7f8b79563f50) 0 + +Class QRegExp + size=8 align=8 + base size=8 base align=8 +QRegExp (0x7f8b795c0770) 0 + +Class QStringMatcher + size=1048 align=8 + base size=1048 base align=8 +QStringMatcher (0x7f8b7960b5b0) 0 + +Class QStringList + size=8 align=8 + base size=8 base align=8 +QStringList (0x7f8b79620070) 0 + QList (0x7f8b796200e0) 0 + +Class QDir + size=8 align=8 + base size=8 base align=8 +QDir (0x7f8b794adcb0) 0 + +Class QAbstractFileEngine::ExtensionOption + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionOption (0x7f8b79548e70) 0 empty + +Class QAbstractFileEngine::ExtensionReturn + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionReturn (0x7f8b79548ee0) 0 empty + +Class QAbstractFileEngine::MapExtensionOption + size=24 align=8 + base size=20 base align=8 +QAbstractFileEngine::MapExtensionOption (0x7f8b79548f50) 0 + QAbstractFileEngine::ExtensionOption (0x7f8b7935b000) 0 empty + +Class QAbstractFileEngine::MapExtensionReturn + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::MapExtensionReturn (0x7f8b7935b1c0) 0 + QAbstractFileEngine::ExtensionReturn (0x7f8b7935b230) 0 empty + +Class QAbstractFileEngine::UnMapExtensionOption + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::UnMapExtensionOption (0x7f8b7935b2a0) 0 + QAbstractFileEngine::ExtensionOption (0x7f8b7935b310) 0 empty + +Vtable for QAbstractFileEngine +QAbstractFileEngine::_ZTV19QAbstractFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractFileEngine) +16 QAbstractFileEngine::~QAbstractFileEngine +24 QAbstractFileEngine::~QAbstractFileEngine +32 QAbstractFileEngine::open +40 QAbstractFileEngine::close +48 QAbstractFileEngine::flush +56 QAbstractFileEngine::size +64 QAbstractFileEngine::pos +72 QAbstractFileEngine::seek +80 QAbstractFileEngine::isSequential +88 QAbstractFileEngine::remove +96 QAbstractFileEngine::copy +104 QAbstractFileEngine::rename +112 QAbstractFileEngine::link +120 QAbstractFileEngine::mkdir +128 QAbstractFileEngine::rmdir +136 QAbstractFileEngine::setSize +144 QAbstractFileEngine::caseSensitive +152 QAbstractFileEngine::isRelativePath +160 QAbstractFileEngine::entryList +168 QAbstractFileEngine::fileFlags +176 QAbstractFileEngine::setPermissions +184 QAbstractFileEngine::fileName +192 QAbstractFileEngine::ownerId +200 QAbstractFileEngine::owner +208 QAbstractFileEngine::fileTime +216 QAbstractFileEngine::setFileName +224 QAbstractFileEngine::handle +232 QAbstractFileEngine::beginEntryList +240 QAbstractFileEngine::endEntryList +248 QAbstractFileEngine::read +256 QAbstractFileEngine::readLine +264 QAbstractFileEngine::write +272 QAbstractFileEngine::extension +280 QAbstractFileEngine::supportsExtension + +Class QAbstractFileEngine + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngine (0x7f8b79537e00) 0 + vptr=((& QAbstractFileEngine::_ZTV19QAbstractFileEngine) + 16u) + +Vtable for QAbstractFileEngineHandler +QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QAbstractFileEngineHandler) +16 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +24 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +32 __cxa_pure_virtual + +Class QAbstractFileEngineHandler + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngineHandler (0x7f8b7938c000) 0 nearly-empty + vptr=((& QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler) + 16u) + +Vtable for QAbstractFileEngineIterator +QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QAbstractFileEngineIterator) +16 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +24 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QAbstractFileEngineIterator::currentFileInfo +64 QAbstractFileEngineIterator::entryInfo + +Class QAbstractFileEngineIterator + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngineIterator (0x7f8b7938c1c0) 0 + vptr=((& QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator) + 16u) + +Vtable for QFSFileEngine +QFSFileEngine::_ZTV13QFSFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QFSFileEngine) +16 QFSFileEngine::~QFSFileEngine +24 QFSFileEngine::~QFSFileEngine +32 QFSFileEngine::open +40 QFSFileEngine::close +48 QFSFileEngine::flush +56 QFSFileEngine::size +64 QFSFileEngine::pos +72 QFSFileEngine::seek +80 QFSFileEngine::isSequential +88 QFSFileEngine::remove +96 QFSFileEngine::copy +104 QFSFileEngine::rename +112 QFSFileEngine::link +120 QFSFileEngine::mkdir +128 QFSFileEngine::rmdir +136 QFSFileEngine::setSize +144 QFSFileEngine::caseSensitive +152 QFSFileEngine::isRelativePath +160 QFSFileEngine::entryList +168 QFSFileEngine::fileFlags +176 QFSFileEngine::setPermissions +184 QFSFileEngine::fileName +192 QFSFileEngine::ownerId +200 QFSFileEngine::owner +208 QFSFileEngine::fileTime +216 QFSFileEngine::setFileName +224 QFSFileEngine::handle +232 QFSFileEngine::beginEntryList +240 QFSFileEngine::endEntryList +248 QFSFileEngine::read +256 QFSFileEngine::readLine +264 QFSFileEngine::write +272 QFSFileEngine::extension +280 QFSFileEngine::supportsExtension + +Class QFSFileEngine + size=16 align=8 + base size=16 base align=8 +QFSFileEngine (0x7f8b7938ca10) 0 + vptr=((& QFSFileEngine::_ZTV13QFSFileEngine) + 16u) + QAbstractFileEngine (0x7f8b7938ca80) 0 + primary-for QFSFileEngine (0x7f8b7938ca10) + +Vtable for QProcess +QProcess::_ZTV8QProcess: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QProcess) +16 QProcess::metaObject +24 QProcess::qt_metacast +32 QProcess::qt_metacall +40 QProcess::~QProcess +48 QProcess::~QProcess +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QProcess::isSequential +120 QIODevice::open +128 QProcess::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QProcess::atEnd +168 QIODevice::reset +176 QProcess::bytesAvailable +184 QProcess::bytesToWrite +192 QProcess::canReadLine +200 QProcess::waitForReadyRead +208 QProcess::waitForBytesWritten +216 QProcess::readData +224 QIODevice::readLineData +232 QProcess::writeData +240 QProcess::setupChildProcess + +Class QProcess + size=16 align=8 + base size=16 base align=8 +QProcess (0x7f8b793a3d20) 0 + vptr=((& QProcess::_ZTV8QProcess) + 16u) + QIODevice (0x7f8b793a3d90) 0 + primary-for QProcess (0x7f8b793a3d20) + QObject (0x7f8b793a3e00) 0 + primary-for QIODevice (0x7f8b793a3d90) + +Class QResource + size=8 align=8 + base size=8 base align=8 +QResource (0x7f8b793e0230) 0 + +Vtable for QDirIterator +QDirIterator::_ZTV12QDirIterator: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QDirIterator) +16 QDirIterator::~QDirIterator +24 QDirIterator::~QDirIterator + +Class QDirIterator + size=16 align=8 + base size=16 base align=8 +QDirIterator (0x7f8b793e0cb0) 0 + vptr=((& QDirIterator::_ZTV12QDirIterator) + 16u) + +Vtable for QBuffer +QBuffer::_ZTV7QBuffer: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QBuffer) +16 QBuffer::metaObject +24 QBuffer::qt_metacast +32 QBuffer::qt_metacall +40 QBuffer::~QBuffer +48 QBuffer::~QBuffer +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QBuffer::connectNotify +104 QBuffer::disconnectNotify +112 QIODevice::isSequential +120 QBuffer::open +128 QBuffer::close +136 QBuffer::pos +144 QBuffer::size +152 QBuffer::seek +160 QBuffer::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QBuffer::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QBuffer::readData +224 QIODevice::readLineData +232 QBuffer::writeData + +Class QBuffer + size=16 align=8 + base size=16 base align=8 +QBuffer (0x7f8b7940fa80) 0 + vptr=((& QBuffer::_ZTV7QBuffer) + 16u) + QIODevice (0x7f8b7940faf0) 0 + primary-for QBuffer (0x7f8b7940fa80) + QObject (0x7f8b7940fb60) 0 + primary-for QIODevice (0x7f8b7940faf0) + +Vtable for QFileSystemWatcher +QFileSystemWatcher::_ZTV18QFileSystemWatcher: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFileSystemWatcher) +16 QFileSystemWatcher::metaObject +24 QFileSystemWatcher::qt_metacast +32 QFileSystemWatcher::qt_metacall +40 QFileSystemWatcher::~QFileSystemWatcher +48 QFileSystemWatcher::~QFileSystemWatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QFileSystemWatcher + size=16 align=8 + base size=16 base align=8 +QFileSystemWatcher (0x7f8b79438690) 0 + vptr=((& QFileSystemWatcher::_ZTV18QFileSystemWatcher) + 16u) + QObject (0x7f8b79438700) 0 + primary-for QFileSystemWatcher (0x7f8b79438690) + +Class QUrl + size=8 align=8 + base size=8 base align=8 +QUrl (0x7f8b7922bbd0) 0 + +Class QMetaType + size=1 align=1 + base size=0 base align=1 +QMetaType (0x7f8b792b63f0) 0 empty + +Class QVariant::PrivateShared + size=16 align=8 + base size=12 base align=8 +QVariant::PrivateShared (0x7f8b79189930) 0 + +Class QVariant::Private::Data + size=8 align=8 + base size=8 base align=8 +QVariant::Private::Data (0x7f8b79189c40) 0 + +Class QVariant::Private + size=16 align=8 + base size=12 base align=8 +QVariant::Private (0x7f8b79189a10) 0 + +Class QVariant::Handler + size=72 align=8 + base size=72 base align=8 +QVariant::Handler (0x7f8b79197930) 0 + +Class QVariant + size=16 align=8 + base size=16 base align=8 +QVariant (0x7f8b79159af0) 0 + +Class QVariantComparisonHelper + size=8 align=8 + base size=8 base align=8 +QVariantComparisonHelper (0x7f8b7903dcb0) 0 + +Vtable for QSettings +QSettings::_ZTV9QSettings: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QSettings) +16 QSettings::metaObject +24 QSettings::qt_metacast +32 QSettings::qt_metacall +40 QSettings::~QSettings +48 QSettings::~QSettings +56 QSettings::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSettings + size=16 align=8 + base size=16 base align=8 +QSettings (0x7f8b79062cb0) 0 + vptr=((& QSettings::_ZTV9QSettings) + 16u) + QObject (0x7f8b79062d20) 0 + primary-for QSettings (0x7f8b79062cb0) + +Class QXmlStreamStringRef + size=16 align=8 + base size=16 base align=8 +QXmlStreamStringRef (0x7f8b790e4070) 0 + +Class QXmlStreamAttribute + size=80 align=8 + base size=73 base align=8 +QXmlStreamAttribute (0x7f8b79102850) 0 + +Class QXmlStreamAttributes + size=8 align=8 + base size=8 base align=8 +QXmlStreamAttributes (0x7f8b78f29380) 0 + QVector (0x7f8b78f293f0) 0 + +Class QXmlStreamNamespaceDeclaration + size=40 align=8 + base size=40 base align=8 +QXmlStreamNamespaceDeclaration (0x7f8b78f29850) 0 + +Class QXmlStreamNotationDeclaration + size=56 align=8 + base size=56 base align=8 +QXmlStreamNotationDeclaration (0x7f8b78f6a1c0) 0 + +Class QXmlStreamEntityDeclaration + size=88 align=8 + base size=88 base align=8 +QXmlStreamEntityDeclaration (0x7f8b78f89070) 0 + +Vtable for QXmlStreamEntityResolver +QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QXmlStreamEntityResolver) +16 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +24 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +32 QXmlStreamEntityResolver::resolveEntity +40 QXmlStreamEntityResolver::resolveUndeclaredEntity + +Class QXmlStreamEntityResolver + size=8 align=8 + base size=8 base align=8 +QXmlStreamEntityResolver (0x7f8b78fa69a0) 0 nearly-empty + vptr=((& QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver) + 16u) + +Class QXmlStreamReader + size=8 align=8 + base size=8 base align=8 +QXmlStreamReader (0x7f8b78fa6b60) 0 + +Class QXmlStreamWriter + size=8 align=8 + base size=8 base align=8 +QXmlStreamWriter (0x7f8b78fe4a10) 0 + +Class QPoint + size=8 align=4 + base size=8 base align=4 +QPoint (0x7f8b78e21150) 0 + +Class QPointF + size=16 align=8 + base size=16 base align=8 +QPointF (0x7f8b78e57d90) 0 + +Class QLine + size=16 align=4 + base size=16 base align=4 +QLine (0x7f8b78e95bd0) 0 + +Class QLineF + size=32 align=8 + base size=32 base align=8 +QLineF (0x7f8b78ecea80) 0 + +Class QSize + size=8 align=4 + base size=8 base align=4 +QSize (0x7f8b78d2c540) 0 + +Class QSizeF + size=16 align=8 + base size=16 base align=8 +QSizeF (0x7f8b78d77380) 0 + +Class QRect + size=16 align=4 + base size=16 base align=4 +QRect (0x7f8b78dc49a0) 0 + +Class QRectF + size=32 align=8 + base size=32 base align=8 +QRectF (0x7f8b78c73380) 0 + +Class QSharedData + size=4 align=4 + base size=4 base align=4 +QSharedData (0x7f8b78b1f150) 0 + +Vtable for QtSharedPointer::ExternalRefCountData +QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN15QtSharedPointer20ExternalRefCountDataE) +16 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +24 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +32 QtSharedPointer::ExternalRefCountData::destroy + +Class QtSharedPointer::ExternalRefCountData + size=16 align=8 + base size=16 base align=8 +QtSharedPointer::ExternalRefCountData (0x7f8b78b4daf0) 0 + vptr=((& QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE) + 16u) + +Class QLinkedListData + size=32 align=8 + base size=32 base align=8 +QLinkedListData (0x7f8b78bd5c40) 0 + +Class QBitArray + size=8 align=8 + base size=8 base align=8 +QBitArray (0x7f8b78aa1b60) 0 + +Class QBitRef + size=16 align=8 + base size=12 base align=8 +QBitRef (0x7f8b78b15930) 0 + +Class QByteArrayMatcher + size=1040 align=8 + base size=1040 base align=8 +QByteArrayMatcher (0x7f8b78930310) 0 + +Class QCryptographicHash + size=8 align=8 + base size=8 base align=8 +QCryptographicHash (0x7f8b78940a10) 0 + +Class QTextBoundaryFinder + size=48 align=8 + base size=48 base align=8 +QTextBoundaryFinder (0x7f8b7896f460) 0 + +Class QDate + size=4 align=4 + base size=4 base align=4 +QDate (0x7f8b789837e0) 0 + +Class QTime + size=4 align=4 + base size=4 base align=4 +QTime (0x7f8b789ad770) 0 + +Class QDateTime + size=8 align=8 + base size=8 base align=8 +QDateTime (0x7f8b789cbd20) 0 + +Vtable for QTimeLine +QTimeLine::_ZTV9QTimeLine: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTimeLine) +16 QTimeLine::metaObject +24 QTimeLine::qt_metacast +32 QTimeLine::qt_metacall +40 QTimeLine::~QTimeLine +48 QTimeLine::~QTimeLine +56 QObject::event +64 QObject::eventFilter +72 QTimeLine::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTimeLine::valueForTime + +Class QTimeLine + size=16 align=8 + base size=16 base align=8 +QTimeLine (0x7f8b789ff1c0) 0 + vptr=((& QTimeLine::_ZTV9QTimeLine) + 16u) + QObject (0x7f8b789ff230) 0 + primary-for QTimeLine (0x7f8b789ff1c0) + +Vtable for QRunnable +QRunnable::_ZTV9QRunnable: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QRunnable) +16 __cxa_pure_virtual +24 QRunnable::~QRunnable +32 QRunnable::~QRunnable + +Class QRunnable + size=16 align=8 + base size=12 base align=8 +QRunnable (0x7f8b78825070) 0 + vptr=((& QRunnable::_ZTV9QRunnable) + 16u) + +Class QMutex + size=8 align=8 + base size=8 base align=8 +QMutex (0x7f8b78832700) 0 + +Class QMutexLocker + size=8 align=8 + base size=8 base align=8 +QMutexLocker (0x7f8b788402a0) 0 + +Vtable for QtConcurrent::Exception +QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent9ExceptionE) +16 QtConcurrent::Exception::~Exception +24 QtConcurrent::Exception::~Exception +32 std::exception::what +40 QtConcurrent::Exception::raise +48 QtConcurrent::Exception::clone + +Class QtConcurrent::Exception + size=8 align=8 + base size=8 base align=8 +QtConcurrent::Exception (0x7f8b788575b0) 0 nearly-empty + vptr=((& QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE) + 16u) + std::exception (0x7f8b78857620) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7f8b788575b0) + +Vtable for QtConcurrent::UnhandledException +QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent18UnhandledExceptionE) +16 QtConcurrent::UnhandledException::~UnhandledException +24 QtConcurrent::UnhandledException::~UnhandledException +32 std::exception::what +40 QtConcurrent::UnhandledException::raise +48 QtConcurrent::UnhandledException::clone + +Class QtConcurrent::UnhandledException + size=8 align=8 + base size=8 base align=8 +QtConcurrent::UnhandledException (0x7f8b78857850) 0 nearly-empty + vptr=((& QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE) + 16u) + QtConcurrent::Exception (0x7f8b788578c0) 0 nearly-empty + primary-for QtConcurrent::UnhandledException (0x7f8b78857850) + std::exception (0x7f8b78857930) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7f8b788578c0) + +Class QtConcurrent::internal::ExceptionHolder + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionHolder (0x7f8b78857b60) 0 + +Class QtConcurrent::internal::ExceptionStore + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionStore (0x7f8b78857ee0) 0 + +Class QtConcurrent::ResultItem + size=16 align=8 + base size=16 base align=8 +QtConcurrent::ResultItem (0x7f8b78857f50) 0 + +Class QtConcurrent::ResultIteratorBase + size=16 align=8 + base size=12 base align=8 +QtConcurrent::ResultIteratorBase (0x7f8b7886ee70) 0 + +Vtable for QtConcurrent::ResultStoreBase +QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent15ResultStoreBaseE) +16 QtConcurrent::ResultStoreBase::~ResultStoreBase +24 QtConcurrent::ResultStoreBase::~ResultStoreBase + +Class QtConcurrent::ResultStoreBase + size=48 align=8 + base size=44 base align=8 +QtConcurrent::ResultStoreBase (0x7f8b78873a10) 0 + vptr=((& QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE) + 16u) + +Vtable for QFutureInterfaceBase +QFutureInterfaceBase::_ZTV20QFutureInterfaceBase: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QFutureInterfaceBase) +16 QFutureInterfaceBase::~QFutureInterfaceBase +24 QFutureInterfaceBase::~QFutureInterfaceBase + +Class QFutureInterfaceBase + size=16 align=8 + base size=16 base align=8 +QFutureInterfaceBase (0x7f8b788b2e70) 0 + vptr=((& QFutureInterfaceBase::_ZTV20QFutureInterfaceBase) + 16u) + +Vtable for QThread +QThread::_ZTV7QThread: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QThread) +16 QThread::metaObject +24 QThread::qt_metacast +32 QThread::qt_metacall +40 QThread::~QThread +48 QThread::~QThread +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QThread::run + +Class QThread + size=16 align=8 + base size=16 base align=8 +QThread (0x7f8b78796e00) 0 + vptr=((& QThread::_ZTV7QThread) + 16u) + QObject (0x7f8b78796e70) 0 + primary-for QThread (0x7f8b78796e00) + +Vtable for QThreadPool +QThreadPool::_ZTV11QThreadPool: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QThreadPool) +16 QThreadPool::metaObject +24 QThreadPool::qt_metacast +32 QThreadPool::qt_metacall +40 QThreadPool::~QThreadPool +48 QThreadPool::~QThreadPool +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QThreadPool + size=16 align=8 + base size=16 base align=8 +QThreadPool (0x7f8b787cacb0) 0 + vptr=((& QThreadPool::_ZTV11QThreadPool) + 16u) + QObject (0x7f8b787cad20) 0 + primary-for QThreadPool (0x7f8b787cacb0) + +Class QWaitCondition + size=8 align=8 + base size=8 base align=8 +QWaitCondition (0x7f8b787e2540) 0 + +Class QtConcurrent::ThreadEngineSemaphore + size=24 align=8 + base size=24 base align=8 +QtConcurrent::ThreadEngineSemaphore (0x7f8b787e2a80) 0 + +Vtable for QtConcurrent::ThreadEngineBase +QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent16ThreadEngineBaseE) +16 QtConcurrent::ThreadEngineBase::run +24 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +32 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +40 QtConcurrent::ThreadEngineBase::start +48 QtConcurrent::ThreadEngineBase::finish +56 QtConcurrent::ThreadEngineBase::threadFunction +64 QtConcurrent::ThreadEngineBase::shouldStartThread +72 QtConcurrent::ThreadEngineBase::shouldThrottleThread +80 __cxa_pure_virtual + +Class QtConcurrent::ThreadEngineBase + size=64 align=8 + base size=64 base align=8 +QtConcurrent::ThreadEngineBase (0x7f8b78803460) 0 + vptr=((& QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE) + 16u) + QRunnable (0x7f8b788034d0) 0 + primary-for QtConcurrent::ThreadEngineBase (0x7f8b78803460) + +VTT for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTTN12QtConcurrent12ThreadEngineIvEE: 2u entries +0 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 24u) +8 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 136u) + +Class std::input_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::input_iterator_tag (0x7f8b78643850) 0 empty + +Class std::output_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::output_iterator_tag (0x7f8b786438c0) 0 empty + +Class std::forward_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::forward_iterator_tag (0x7f8b78643930) 0 empty + std::input_iterator_tag (0x7f8b786439a0) 0 empty + +Class std::bidirectional_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::bidirectional_iterator_tag (0x7f8b78643a10) 0 empty + std::forward_iterator_tag (0x7f8b78643a80) 0 empty + std::input_iterator_tag (0x7f8b78643af0) 0 empty + +Class std::random_access_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::random_access_iterator_tag (0x7f8b78643b60) 0 empty + std::bidirectional_iterator_tag (0x7f8b78643bd0) 0 empty + std::forward_iterator_tag (0x7f8b78643c40) 0 empty + std::input_iterator_tag (0x7f8b78643cb0) 0 empty + +Class std::__true_type + size=1 align=1 + base size=0 base align=1 +std::__true_type (0x7f8b786562a0) 0 empty + +Class std::__false_type + size=1 align=1 + base size=0 base align=1 +std::__false_type (0x7f8b78656310) 0 empty + +Class lconv + size=96 align=8 + base size=96 base align=8 +lconv (0x7f8b78431620) 0 + +Class sched_param + size=4 align=4 + base size=4 base align=4 +sched_param (0x7f8b78431a80) 0 + +Class __sched_param + size=4 align=4 + base size=4 base align=4 +__sched_param (0x7f8b78431af0) 0 + +Class tm + size=56 align=8 + base size=56 base align=8 +tm (0x7f8b78431bd0) 0 + +Class itimerspec + size=32 align=8 + base size=32 base align=8 +itimerspec (0x7f8b78431cb0) 0 + +Class _pthread_cleanup_buffer + size=32 align=8 + base size=32 base align=8 +_pthread_cleanup_buffer (0x7f8b78431d20) 0 + +Class __pthread_cleanup_frame + size=24 align=8 + base size=24 base align=8 +__pthread_cleanup_frame (0x7f8b78431e70) 0 + +Class __pthread_cleanup_class + size=24 align=8 + base size=24 base align=8 +__pthread_cleanup_class (0x7f8b78431ee0) 0 + +Vtable for __cxxabiv1::__forced_unwind +__cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN10__cxxabiv115__forced_unwindE) +16 __cxxabiv1::__forced_unwind::~__forced_unwind +24 __cxxabiv1::__forced_unwind::~__forced_unwind +32 __cxa_pure_virtual + +Class __cxxabiv1::__forced_unwind + size=8 align=8 + base size=8 base align=8 +__cxxabiv1::__forced_unwind (0x7f8b78346a80) 0 nearly-empty + vptr=((& __cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE) + 16u) + +Class std::locale + size=8 align=8 + base size=8 base align=8 +std::locale (0x7f8b781f85b0) 0 + +Vtable for std::locale::facet +std::locale::facet::_ZTVNSt6locale5facetE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTINSt6locale5facetE) +16 std::locale::facet::~facet +24 std::locale::facet::~facet + +Class std::locale::facet + size=16 align=8 + base size=12 base align=8 +std::locale::facet (0x7f8b7809bcb0) 0 + vptr=((& std::locale::facet::_ZTVNSt6locale5facetE) + 16u) + +Class std::locale::id + size=8 align=8 + base size=8 base align=8 +std::locale::id (0x7f8b780af2a0) 0 + +Class std::locale::_Impl + size=40 align=8 + base size=40 base align=8 +std::locale::_Impl (0x7f8b780af8c0) 0 + +Vtable for std::ios_base::failure +std::ios_base::failure::_ZTVNSt8ios_base7failureE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTINSt8ios_base7failureE) +16 std::ios_base::failure::~failure +24 std::ios_base::failure::~failure +32 std::ios_base::failure::what + +Class std::ios_base::failure + size=16 align=8 + base size=16 base align=8 +std::ios_base::failure (0x7f8b77f3f070) 0 + vptr=((& std::ios_base::failure::_ZTVNSt8ios_base7failureE) + 16u) + std::exception (0x7f8b77f3f0e0) 0 nearly-empty + primary-for std::ios_base::failure (0x7f8b77f3f070) + +Class std::ios_base::_Callback_list + size=24 align=8 + base size=24 base align=8 +std::ios_base::_Callback_list (0x7f8b77f4b310) 0 + +Class std::ios_base::_Words + size=16 align=8 + base size=16 base align=8 +std::ios_base::_Words (0x7f8b77f4bd90) 0 + +Class std::ios_base::Init + size=1 align=1 + base size=0 base align=1 +std::ios_base::Init (0x7f8b77f524d0) 0 empty + +Vtable for std::ios_base +std::ios_base::_ZTVSt8ios_base: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt8ios_base) +16 std::ios_base::~ios_base +24 std::ios_base::~ios_base + +Class std::ios_base + size=216 align=8 + base size=216 base align=8 +std::ios_base (0x7f8b77f3f000) 0 + vptr=((& std::ios_base::_ZTVSt8ios_base) + 16u) + +Class std::ctype_base + size=1 align=1 + base size=0 base align=1 +std::ctype_base (0x7f8b77fcb930) 0 empty + +Class std::__num_base + size=1 align=1 + base size=0 base align=1 +std::__num_base (0x7f8b77eef1c0) 0 empty + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSo: 2u entries +0 ((& std::basic_ostream >::_ZTVSo) + 24u) +8 ((& std::basic_ostream >::_ZTVSo) + 64u) + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSt13basic_ostreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 24u) +8 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 64u) + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSi: 2u entries +0 ((& std::basic_istream >::_ZTVSi) + 24u) +8 ((& std::basic_istream >::_ZTVSi) + 64u) + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSt13basic_istreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 24u) +8 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 64u) + +Construction vtable for std::basic_istream > (0x7f8b77a1b310 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd0_Si: 10u entries +0 24u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISi) +24 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +32 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +40 -24u +48 (int (*)(...))-0x00000000000000018 +56 (int (*)(...))(& _ZTISi) +64 std::basic_istream >::_ZTv0_n24_NSiD1Ev +72 std::basic_istream >::_ZTv0_n24_NSiD0Ev + +Construction vtable for std::basic_ostream > (0x7f8b77a1b460 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd16_So: 10u entries +0 8u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISo) +24 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +32 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +40 -8u +48 (int (*)(...))-0x00000000000000008 +56 (int (*)(...))(& _ZTISo) +64 std::basic_ostream >::_ZTv0_n24_NSoD1Ev +72 std::basic_ostream >::_ZTv0_n24_NSoD0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSd: 7u entries +0 ((& std::basic_iostream >::_ZTVSd) + 24u) +8 ((& std::basic_iostream >::_ZTCSd0_Si) + 24u) +16 ((& std::basic_iostream >::_ZTCSd0_Si) + 64u) +24 ((& std::basic_iostream >::_ZTCSd16_So) + 24u) +32 ((& std::basic_iostream >::_ZTCSd16_So) + 64u) +40 ((& std::basic_iostream >::_ZTVSd) + 104u) +48 ((& std::basic_iostream >::_ZTVSd) + 64u) + +Construction vtable for std::basic_istream > (0x7f8b77a1b620 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E: 10u entries +0 24u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +24 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +32 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +40 -24u +48 (int (*)(...))-0x00000000000000018 +56 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +64 std::basic_istream >::_ZTv0_n24_NSt13basic_istreamIwSt11char_traitsIwEED1Ev +72 std::basic_istream >::_ZTv0_n24_NSt13basic_istreamIwSt11char_traitsIwEED0Ev + +Construction vtable for std::basic_ostream > (0x7f8b77a1b770 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE16_St13basic_ostreamIwS1_E: 10u entries +0 8u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +24 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +32 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +40 -8u +48 (int (*)(...))-0x00000000000000008 +56 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +64 std::basic_ostream >::_ZTv0_n24_NSt13basic_ostreamIwSt11char_traitsIwEED1Ev +72 std::basic_ostream >::_ZTv0_n24_NSt13basic_ostreamIwSt11char_traitsIwEED0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSt14basic_iostreamIwSt11char_traitsIwEE: 7u entries +0 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 24u) +8 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 24u) +16 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 64u) +24 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE16_St13basic_ostreamIwS1_E) + 24u) +32 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE16_St13basic_ostreamIwS1_E) + 64u) +40 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 104u) +48 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 64u) + +Class QtConcurrent::BlockSizeManager + size=96 align=8 + base size=92 base align=8 +QtConcurrent::BlockSizeManager (0x7f8b77a86230) 0 + +Vtable for QFutureWatcherBase +QFutureWatcherBase::_ZTV18QFutureWatcherBase: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFutureWatcherBase) +16 QFutureWatcherBase::metaObject +24 QFutureWatcherBase::qt_metacast +32 QFutureWatcherBase::qt_metacall +40 QFutureWatcherBase::~QFutureWatcherBase +48 QFutureWatcherBase::~QFutureWatcherBase +56 QFutureWatcherBase::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QFutureWatcherBase::connectNotify +104 QFutureWatcherBase::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QFutureWatcherBase + size=16 align=8 + base size=16 base align=8 +QFutureWatcherBase (0x7f8b7764fbd0) 0 + vptr=((& QFutureWatcherBase::_ZTV18QFutureWatcherBase) + 16u) + QObject (0x7f8b7764fc40) 0 + primary-for QFutureWatcherBase (0x7f8b7764fbd0) + +Vtable for QFactoryInterface +QFactoryInterface::_ZTV17QFactoryInterface: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QFactoryInterface) +16 QFactoryInterface::~QFactoryInterface +24 QFactoryInterface::~QFactoryInterface +32 __cxa_pure_virtual + +Class QFactoryInterface + size=8 align=8 + base size=8 base align=8 +QFactoryInterface (0x7f8b77568e00) 0 nearly-empty + vptr=((& QFactoryInterface::_ZTV17QFactoryInterface) + 16u) + +Vtable for QTextCodecFactoryInterface +QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QTextCodecFactoryInterface) +16 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +24 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QTextCodecFactoryInterface + size=8 align=8 + base size=8 base align=8 +QTextCodecFactoryInterface (0x7f8b7758bee0) 0 nearly-empty + vptr=((& QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface) + 16u) + QFactoryInterface (0x7f8b7758bf50) 0 nearly-empty + primary-for QTextCodecFactoryInterface (0x7f8b7758bee0) + +Vtable for QTextCodecPlugin +QTextCodecPlugin::_ZTV16QTextCodecPlugin: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QTextCodecPlugin) +16 QTextCodecPlugin::metaObject +24 QTextCodecPlugin::qt_metacast +32 QTextCodecPlugin::qt_metacall +40 QTextCodecPlugin::~QTextCodecPlugin +48 QTextCodecPlugin::~QTextCodecPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 QTextCodecPlugin::keys +160 QTextCodecPlugin::create +168 (int (*)(...))-0x00000000000000010 +176 (int (*)(...))(& _ZTI16QTextCodecPlugin) +184 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD1Ev +192 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD0Ev +200 QTextCodecPlugin::_ZThn16_NK16QTextCodecPlugin4keysEv +208 QTextCodecPlugin::_ZThn16_N16QTextCodecPlugin6createERK7QString + +Class QTextCodecPlugin + size=24 align=8 + base size=24 base align=8 +QTextCodecPlugin (0x7f8b7758ee00) 0 + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 16u) + QObject (0x7f8b775977e0) 0 + primary-for QTextCodecPlugin (0x7f8b7758ee00) + QTextCodecFactoryInterface (0x7f8b77597850) 16 nearly-empty + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 184u) + QFactoryInterface (0x7f8b775978c0) 16 nearly-empty + primary-for QTextCodecFactoryInterface (0x7f8b77597850) + +Class QLibraryInfo + size=1 align=1 + base size=0 base align=1 +QLibraryInfo (0x7f8b775ac700) 0 empty + +Vtable for QTranslator +QTranslator::_ZTV11QTranslator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTranslator) +16 QTranslator::metaObject +24 QTranslator::qt_metacast +32 QTranslator::qt_metacall +40 QTranslator::~QTranslator +48 QTranslator::~QTranslator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTranslator::translate +120 QTranslator::isEmpty + +Class QTranslator + size=16 align=8 + base size=16 base align=8 +QTranslator (0x7f8b775f1000) 0 + vptr=((& QTranslator::_ZTV11QTranslator) + 16u) + QObject (0x7f8b775f1070) 0 + primary-for QTranslator (0x7f8b775f1000) + +Class __exception + size=40 align=8 + base size=40 base align=8 +__exception (0x7f8b77602f50) 0 + +Vtable for QMimeData +QMimeData::_ZTV9QMimeData: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QMimeData) +16 QMimeData::metaObject +24 QMimeData::qt_metacast +32 QMimeData::qt_metacall +40 QMimeData::~QMimeData +48 QMimeData::~QMimeData +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMimeData::hasFormat +120 QMimeData::formats +128 QMimeData::retrieveData + +Class QMimeData + size=16 align=8 + base size=16 base align=8 +QMimeData (0x7f8b77470150) 0 + vptr=((& QMimeData::_ZTV9QMimeData) + 16u) + QObject (0x7f8b774701c0) 0 + primary-for QMimeData (0x7f8b77470150) + +Vtable for QEventLoop +QEventLoop::_ZTV10QEventLoop: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QEventLoop) +16 QEventLoop::metaObject +24 QEventLoop::qt_metacast +32 QEventLoop::qt_metacall +40 QEventLoop::~QEventLoop +48 QEventLoop::~QEventLoop +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QEventLoop + size=16 align=8 + base size=16 base align=8 +QEventLoop (0x7f8b774869a0) 0 + vptr=((& QEventLoop::_ZTV10QEventLoop) + 16u) + QObject (0x7f8b77486a10) 0 + primary-for QEventLoop (0x7f8b774869a0) + +Vtable for QEvent +QEvent::_ZTV6QEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QEvent) +16 QEvent::~QEvent +24 QEvent::~QEvent + +Class QEvent + size=24 align=8 + base size=20 base align=8 +QEvent (0x7f8b774c7310) 0 + vptr=((& QEvent::_ZTV6QEvent) + 16u) + +Vtable for QTimerEvent +QTimerEvent::_ZTV11QTimerEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTimerEvent) +16 QTimerEvent::~QTimerEvent +24 QTimerEvent::~QTimerEvent + +Class QTimerEvent + size=24 align=8 + base size=24 base align=8 +QTimerEvent (0x7f8b774e0ee0) 0 + vptr=((& QTimerEvent::_ZTV11QTimerEvent) + 16u) + QEvent (0x7f8b774e0f50) 0 + primary-for QTimerEvent (0x7f8b774e0ee0) + +Vtable for QChildEvent +QChildEvent::_ZTV11QChildEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QChildEvent) +16 QChildEvent::~QChildEvent +24 QChildEvent::~QChildEvent + +Class QChildEvent + size=32 align=8 + base size=32 base align=8 +QChildEvent (0x7f8b774e3380) 0 + vptr=((& QChildEvent::_ZTV11QChildEvent) + 16u) + QEvent (0x7f8b774e33f0) 0 + primary-for QChildEvent (0x7f8b774e3380) + +Vtable for QCustomEvent +QCustomEvent::_ZTV12QCustomEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QCustomEvent) +16 QCustomEvent::~QCustomEvent +24 QCustomEvent::~QCustomEvent + +Class QCustomEvent + size=24 align=8 + base size=20 base align=8 +QCustomEvent (0x7f8b774f4620) 0 + vptr=((& QCustomEvent::_ZTV12QCustomEvent) + 16u) + QEvent (0x7f8b774f4690) 0 + primary-for QCustomEvent (0x7f8b774f4620) + +Vtable for QDynamicPropertyChangeEvent +QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QDynamicPropertyChangeEvent) +16 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent +24 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent + +Class QDynamicPropertyChangeEvent + size=32 align=8 + base size=32 base align=8 +QDynamicPropertyChangeEvent (0x7f8b774f4e00) 0 + vptr=((& QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent) + 16u) + QEvent (0x7f8b774f4e70) 0 + primary-for QDynamicPropertyChangeEvent (0x7f8b774f4e00) + +Vtable for QCoreApplication +QCoreApplication::_ZTV16QCoreApplication: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QCoreApplication) +16 QCoreApplication::metaObject +24 QCoreApplication::qt_metacast +32 QCoreApplication::qt_metacall +40 QCoreApplication::~QCoreApplication +48 QCoreApplication::~QCoreApplication +56 QCoreApplication::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCoreApplication::notify +120 QCoreApplication::compressEvent + +Class QCoreApplication + size=16 align=8 + base size=16 base align=8 +QCoreApplication (0x7f8b77505230) 0 + vptr=((& QCoreApplication::_ZTV16QCoreApplication) + 16u) + QObject (0x7f8b775052a0) 0 + primary-for QCoreApplication (0x7f8b77505230) + +Vtable for QSharedMemory +QSharedMemory::_ZTV13QSharedMemory: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSharedMemory) +16 QSharedMemory::metaObject +24 QSharedMemory::qt_metacast +32 QSharedMemory::qt_metacall +40 QSharedMemory::~QSharedMemory +48 QSharedMemory::~QSharedMemory +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSharedMemory + size=16 align=8 + base size=16 base align=8 +QSharedMemory (0x7f8b77330a80) 0 + vptr=((& QSharedMemory::_ZTV13QSharedMemory) + 16u) + QObject (0x7f8b77330af0) 0 + primary-for QSharedMemory (0x7f8b77330a80) + +Class QModelIndex + size=24 align=8 + base size=24 base align=8 +QModelIndex (0x7f8b77350850) 0 + +Class QPersistentModelIndex + size=8 align=8 + base size=8 base align=8 +QPersistentModelIndex (0x7f8b77379310) 0 + +Vtable for QAbstractItemModel +QAbstractItemModel::_ZTV18QAbstractItemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractItemModel) +16 QAbstractItemModel::metaObject +24 QAbstractItemModel::qt_metacast +32 QAbstractItemModel::qt_metacall +40 QAbstractItemModel::~QAbstractItemModel +48 QAbstractItemModel::~QAbstractItemModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractItemModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractItemModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractItemModel + size=16 align=8 + base size=16 base align=8 +QAbstractItemModel (0x7f8b773865b0) 0 + vptr=((& QAbstractItemModel::_ZTV18QAbstractItemModel) + 16u) + QObject (0x7f8b77386620) 0 + primary-for QAbstractItemModel (0x7f8b773865b0) + +Vtable for QAbstractTableModel +QAbstractTableModel::_ZTV19QAbstractTableModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractTableModel) +16 QAbstractTableModel::metaObject +24 QAbstractTableModel::qt_metacast +32 QAbstractTableModel::qt_metacall +40 QAbstractTableModel::~QAbstractTableModel +48 QAbstractTableModel::~QAbstractTableModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractTableModel::index +120 QAbstractTableModel::parent +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractTableModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractTableModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractTableModel + size=16 align=8 + base size=16 base align=8 +QAbstractTableModel (0x7f8b773d8930) 0 + vptr=((& QAbstractTableModel::_ZTV19QAbstractTableModel) + 16u) + QAbstractItemModel (0x7f8b773d89a0) 0 + primary-for QAbstractTableModel (0x7f8b773d8930) + QObject (0x7f8b773d8a10) 0 + primary-for QAbstractItemModel (0x7f8b773d89a0) + +Vtable for QAbstractListModel +QAbstractListModel::_ZTV18QAbstractListModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractListModel) +16 QAbstractListModel::metaObject +24 QAbstractListModel::qt_metacast +32 QAbstractListModel::qt_metacall +40 QAbstractListModel::~QAbstractListModel +48 QAbstractListModel::~QAbstractListModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractListModel::index +120 QAbstractListModel::parent +128 __cxa_pure_virtual +136 QAbstractListModel::columnCount +144 QAbstractListModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractListModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractListModel + size=16 align=8 + base size=16 base align=8 +QAbstractListModel (0x7f8b773e4ee0) 0 + vptr=((& QAbstractListModel::_ZTV18QAbstractListModel) + 16u) + QAbstractItemModel (0x7f8b773e4f50) 0 + primary-for QAbstractListModel (0x7f8b773e4ee0) + QObject (0x7f8b773e4230) 0 + primary-for QAbstractItemModel (0x7f8b773e4f50) + +Vtable for QSignalMapper +QSignalMapper::_ZTV13QSignalMapper: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSignalMapper) +16 QSignalMapper::metaObject +24 QSignalMapper::qt_metacast +32 QSignalMapper::qt_metacall +40 QSignalMapper::~QSignalMapper +48 QSignalMapper::~QSignalMapper +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSignalMapper + size=16 align=8 + base size=16 base align=8 +QSignalMapper (0x7f8b77225000) 0 + vptr=((& QSignalMapper::_ZTV13QSignalMapper) + 16u) + QObject (0x7f8b77225070) 0 + primary-for QSignalMapper (0x7f8b77225000) + +Vtable for QObjectCleanupHandler +QObjectCleanupHandler::_ZTV21QObjectCleanupHandler: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QObjectCleanupHandler) +16 QObjectCleanupHandler::metaObject +24 QObjectCleanupHandler::qt_metacast +32 QObjectCleanupHandler::qt_metacall +40 QObjectCleanupHandler::~QObjectCleanupHandler +48 QObjectCleanupHandler::~QObjectCleanupHandler +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObjectCleanupHandler + size=24 align=8 + base size=24 base align=8 +QObjectCleanupHandler (0x7f8b7723e3f0) 0 + vptr=((& QObjectCleanupHandler::_ZTV21QObjectCleanupHandler) + 16u) + QObject (0x7f8b7723e460) 0 + primary-for QObjectCleanupHandler (0x7f8b7723e3f0) + +Class QBasicTimer + size=4 align=4 + base size=4 base align=4 +QBasicTimer (0x7f8b7724d540) 0 + +Vtable for QSocketNotifier +QSocketNotifier::_ZTV15QSocketNotifier: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSocketNotifier) +16 QSocketNotifier::metaObject +24 QSocketNotifier::qt_metacast +32 QSocketNotifier::qt_metacall +40 QSocketNotifier::~QSocketNotifier +48 QSocketNotifier::~QSocketNotifier +56 QSocketNotifier::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSocketNotifier + size=32 align=8 + base size=25 base align=8 +QSocketNotifier (0x7f8b77259930) 0 + vptr=((& QSocketNotifier::_ZTV15QSocketNotifier) + 16u) + QObject (0x7f8b772599a0) 0 + primary-for QSocketNotifier (0x7f8b77259930) + +Vtable for QTimer +QTimer::_ZTV6QTimer: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QTimer) +16 QTimer::metaObject +24 QTimer::qt_metacast +32 QTimer::qt_metacall +40 QTimer::~QTimer +48 QTimer::~QTimer +56 QObject::event +64 QObject::eventFilter +72 QTimer::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTimer + size=32 align=8 + base size=29 base align=8 +QTimer (0x7f8b77276cb0) 0 + vptr=((& QTimer::_ZTV6QTimer) + 16u) + QObject (0x7f8b77276d20) 0 + primary-for QTimer (0x7f8b77276cb0) + +Vtable for QAbstractEventDispatcher +QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QAbstractEventDispatcher) +16 QAbstractEventDispatcher::metaObject +24 QAbstractEventDispatcher::qt_metacast +32 QAbstractEventDispatcher::qt_metacall +40 QAbstractEventDispatcher::~QAbstractEventDispatcher +48 QAbstractEventDispatcher::~QAbstractEventDispatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 QAbstractEventDispatcher::startingUp +208 QAbstractEventDispatcher::closingDown + +Class QAbstractEventDispatcher + size=16 align=8 + base size=16 base align=8 +QAbstractEventDispatcher (0x7f8b772992a0) 0 + vptr=((& QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher) + 16u) + QObject (0x7f8b77299310) 0 + primary-for QAbstractEventDispatcher (0x7f8b772992a0) + +Class QMetaMethod + size=16 align=8 + base size=12 base align=8 +QMetaMethod (0x7f8b772b3150) 0 + +Class QMetaEnum + size=16 align=8 + base size=12 base align=8 +QMetaEnum (0x7f8b772cf5b0) 0 + +Class QMetaProperty + size=32 align=8 + base size=32 base align=8 +QMetaProperty (0x7f8b772db310) 0 + +Class QMetaClassInfo + size=16 align=8 + base size=12 base align=8 +QMetaClassInfo (0x7f8b772db9a0) 0 + +Class QSystemSemaphore + size=8 align=8 + base size=8 base align=8 +QSystemSemaphore (0x7f8b772ed4d0) 0 + +Vtable for QLibrary +QLibrary::_ZTV8QLibrary: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QLibrary) +16 QLibrary::metaObject +24 QLibrary::qt_metacast +32 QLibrary::qt_metacall +40 QLibrary::~QLibrary +48 QLibrary::~QLibrary +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QLibrary + size=32 align=8 + base size=25 base align=8 +QLibrary (0x7f8b772ede00) 0 + vptr=((& QLibrary::_ZTV8QLibrary) + 16u) + QObject (0x7f8b772ede70) 0 + primary-for QLibrary (0x7f8b772ede00) + +Vtable for QPluginLoader +QPluginLoader::_ZTV13QPluginLoader: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QPluginLoader) +16 QPluginLoader::metaObject +24 QPluginLoader::qt_metacast +32 QPluginLoader::qt_metacall +40 QPluginLoader::~QPluginLoader +48 QPluginLoader::~QPluginLoader +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QPluginLoader + size=32 align=8 + base size=25 base align=8 +QPluginLoader (0x7f8b771338c0) 0 + vptr=((& QPluginLoader::_ZTV13QPluginLoader) + 16u) + QObject (0x7f8b77133930) 0 + primary-for QPluginLoader (0x7f8b771338c0) + +Class QUuid + size=16 align=4 + base size=16 base align=4 +QUuid (0x7f8b77157070) 0 + +Class QSemaphore + size=8 align=8 + base size=8 base align=8 +QSemaphore (0x7f8b771769a0) 0 + +Class QThreadStorageData + size=4 align=4 + base size=4 base align=4 +QThreadStorageData (0x7f8b77176ee0) 0 + +Class QReadWriteLock + size=8 align=8 + base size=8 base align=8 +QReadWriteLock (0x7f8b77188690) 0 + +Class QReadLocker + size=8 align=8 + base size=8 base align=8 +QReadLocker (0x7f8b77188d20) 0 + +Class QWriteLocker + size=8 align=8 + base size=8 base align=8 +QWriteLocker (0x7f8b771b70e0) 0 + +Class QSslCertificate + size=8 align=8 + base size=8 base align=8 +QSslCertificate (0x7f8b771c9460) 0 + +Class QSslError + size=8 align=8 + base size=8 base align=8 +QSslError (0x7f8b771ddee0) 0 + +Class QSslCipher + size=8 align=8 + base size=8 base align=8 +QSslCipher (0x7f8b771e9cb0) 0 + +Vtable for QAbstractSocket +QAbstractSocket::_ZTV15QAbstractSocket: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QAbstractSocket) +16 QAbstractSocket::metaObject +24 QAbstractSocket::qt_metacast +32 QAbstractSocket::qt_metacall +40 QAbstractSocket::~QAbstractSocket +48 QAbstractSocket::~QAbstractSocket +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractSocket::isSequential +120 QIODevice::open +128 QAbstractSocket::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QAbstractSocket::atEnd +168 QIODevice::reset +176 QAbstractSocket::bytesAvailable +184 QAbstractSocket::bytesToWrite +192 QAbstractSocket::canReadLine +200 QAbstractSocket::waitForReadyRead +208 QAbstractSocket::waitForBytesWritten +216 QAbstractSocket::readData +224 QAbstractSocket::readLineData +232 QAbstractSocket::writeData + +Class QAbstractSocket + size=16 align=8 + base size=16 base align=8 +QAbstractSocket (0x7f8b771f5620) 0 + vptr=((& QAbstractSocket::_ZTV15QAbstractSocket) + 16u) + QIODevice (0x7f8b771f5690) 0 + primary-for QAbstractSocket (0x7f8b771f5620) + QObject (0x7f8b771f5700) 0 + primary-for QIODevice (0x7f8b771f5690) + +Vtable for QTcpSocket +QTcpSocket::_ZTV10QTcpSocket: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTcpSocket) +16 QTcpSocket::metaObject +24 QTcpSocket::qt_metacast +32 QTcpSocket::qt_metacall +40 QTcpSocket::~QTcpSocket +48 QTcpSocket::~QTcpSocket +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractSocket::isSequential +120 QIODevice::open +128 QAbstractSocket::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QAbstractSocket::atEnd +168 QIODevice::reset +176 QAbstractSocket::bytesAvailable +184 QAbstractSocket::bytesToWrite +192 QAbstractSocket::canReadLine +200 QAbstractSocket::waitForReadyRead +208 QAbstractSocket::waitForBytesWritten +216 QAbstractSocket::readData +224 QAbstractSocket::readLineData +232 QAbstractSocket::writeData + +Class QTcpSocket + size=16 align=8 + base size=16 base align=8 +QTcpSocket (0x7f8b7702fcb0) 0 + vptr=((& QTcpSocket::_ZTV10QTcpSocket) + 16u) + QAbstractSocket (0x7f8b7702fd20) 0 + primary-for QTcpSocket (0x7f8b7702fcb0) + QIODevice (0x7f8b7702fd90) 0 + primary-for QAbstractSocket (0x7f8b7702fd20) + QObject (0x7f8b7702fe00) 0 + primary-for QIODevice (0x7f8b7702fd90) + +Vtable for QSslSocket +QSslSocket::_ZTV10QSslSocket: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QSslSocket) +16 QSslSocket::metaObject +24 QSslSocket::qt_metacast +32 QSslSocket::qt_metacall +40 QSslSocket::~QSslSocket +48 QSslSocket::~QSslSocket +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractSocket::isSequential +120 QIODevice::open +128 QSslSocket::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QSslSocket::atEnd +168 QIODevice::reset +176 QSslSocket::bytesAvailable +184 QSslSocket::bytesToWrite +192 QSslSocket::canReadLine +200 QSslSocket::waitForReadyRead +208 QSslSocket::waitForBytesWritten +216 QSslSocket::readData +224 QAbstractSocket::readLineData +232 QSslSocket::writeData + +Class QSslSocket + size=16 align=8 + base size=16 base align=8 +QSslSocket (0x7f8b7704b770) 0 + vptr=((& QSslSocket::_ZTV10QSslSocket) + 16u) + QTcpSocket (0x7f8b7704b7e0) 0 + primary-for QSslSocket (0x7f8b7704b770) + QAbstractSocket (0x7f8b7704b850) 0 + primary-for QTcpSocket (0x7f8b7704b7e0) + QIODevice (0x7f8b7704b8c0) 0 + primary-for QAbstractSocket (0x7f8b7704b850) + QObject (0x7f8b7704b930) 0 + primary-for QIODevice (0x7f8b7704b8c0) + +Class QSslConfiguration + size=8 align=8 + base size=8 base align=8 +QSslConfiguration (0x7f8b770804d0) 0 + +Class QSslKey + size=8 align=8 + base size=8 base align=8 +QSslKey (0x7f8b770902a0) 0 + +Vtable for QHttpHeader +QHttpHeader::_ZTV11QHttpHeader: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QHttpHeader) +16 QHttpHeader::~QHttpHeader +24 QHttpHeader::~QHttpHeader +32 QHttpHeader::toString +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QHttpHeader::parseLine + +Class QHttpHeader + size=16 align=8 + base size=16 base align=8 +QHttpHeader (0x7f8b77090e00) 0 + vptr=((& QHttpHeader::_ZTV11QHttpHeader) + 16u) + +Vtable for QHttpResponseHeader +QHttpResponseHeader::_ZTV19QHttpResponseHeader: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QHttpResponseHeader) +16 QHttpResponseHeader::~QHttpResponseHeader +24 QHttpResponseHeader::~QHttpResponseHeader +32 QHttpResponseHeader::toString +40 QHttpResponseHeader::majorVersion +48 QHttpResponseHeader::minorVersion +56 QHttpResponseHeader::parseLine + +Class QHttpResponseHeader + size=16 align=8 + base size=16 base align=8 +QHttpResponseHeader (0x7f8b770aca80) 0 + vptr=((& QHttpResponseHeader::_ZTV19QHttpResponseHeader) + 16u) + QHttpHeader (0x7f8b770acaf0) 0 + primary-for QHttpResponseHeader (0x7f8b770aca80) + +Vtable for QHttpRequestHeader +QHttpRequestHeader::_ZTV18QHttpRequestHeader: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QHttpRequestHeader) +16 QHttpRequestHeader::~QHttpRequestHeader +24 QHttpRequestHeader::~QHttpRequestHeader +32 QHttpRequestHeader::toString +40 QHttpRequestHeader::majorVersion +48 QHttpRequestHeader::minorVersion +56 QHttpRequestHeader::parseLine + +Class QHttpRequestHeader + size=16 align=8 + base size=16 base align=8 +QHttpRequestHeader (0x7f8b770bd770) 0 + vptr=((& QHttpRequestHeader::_ZTV18QHttpRequestHeader) + 16u) + QHttpHeader (0x7f8b770bd7e0) 0 + primary-for QHttpRequestHeader (0x7f8b770bd770) + +Vtable for QHttp +QHttp::_ZTV5QHttp: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QHttp) +16 QHttp::metaObject +24 QHttp::qt_metacast +32 QHttp::qt_metacall +40 QHttp::~QHttp +48 QHttp::~QHttp +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QHttp + size=16 align=8 + base size=16 base align=8 +QHttp (0x7f8b770d0310) 0 + vptr=((& QHttp::_ZTV5QHttp) + 16u) + QObject (0x7f8b770d0380) 0 + primary-for QHttp (0x7f8b770d0310) + +Class QNetworkRequest + size=8 align=8 + base size=8 base align=8 +QNetworkRequest (0x7f8b770fe540) 0 + +Vtable for QNetworkAccessManager +QNetworkAccessManager::_ZTV21QNetworkAccessManager: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QNetworkAccessManager) +16 QNetworkAccessManager::metaObject +24 QNetworkAccessManager::qt_metacast +32 QNetworkAccessManager::qt_metacall +40 QNetworkAccessManager::~QNetworkAccessManager +48 QNetworkAccessManager::~QNetworkAccessManager +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QNetworkAccessManager::createRequest + +Class QNetworkAccessManager + size=16 align=8 + base size=16 base align=8 +QNetworkAccessManager (0x7f8b76f16460) 0 + vptr=((& QNetworkAccessManager::_ZTV21QNetworkAccessManager) + 16u) + QObject (0x7f8b76f164d0) 0 + primary-for QNetworkAccessManager (0x7f8b76f16460) + +Class QNetworkCookie + size=8 align=8 + base size=8 base align=8 +QNetworkCookie (0x7f8b76f369a0) 0 + +Vtable for QNetworkCookieJar +QNetworkCookieJar::_ZTV17QNetworkCookieJar: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QNetworkCookieJar) +16 QNetworkCookieJar::metaObject +24 QNetworkCookieJar::qt_metacast +32 QNetworkCookieJar::qt_metacall +40 QNetworkCookieJar::~QNetworkCookieJar +48 QNetworkCookieJar::~QNetworkCookieJar +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QNetworkCookieJar::cookiesForUrl +120 QNetworkCookieJar::setCookiesFromUrl + +Class QNetworkCookieJar + size=16 align=8 + base size=16 base align=8 +QNetworkCookieJar (0x7f8b76f3aaf0) 0 + vptr=((& QNetworkCookieJar::_ZTV17QNetworkCookieJar) + 16u) + QObject (0x7f8b76f3ab60) 0 + primary-for QNetworkCookieJar (0x7f8b76f3aaf0) + +Vtable for QNetworkReply +QNetworkReply::_ZTV13QNetworkReply: 33u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QNetworkReply) +16 QNetworkReply::metaObject +24 QNetworkReply::qt_metacast +32 QNetworkReply::qt_metacall +40 QNetworkReply::~QNetworkReply +48 QNetworkReply::~QNetworkReply +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QNetworkReply::isSequential +120 QIODevice::open +128 QNetworkReply::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QIODevice::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 __cxa_pure_virtual +224 QIODevice::readLineData +232 QNetworkReply::writeData +240 __cxa_pure_virtual +248 QNetworkReply::setReadBufferSize +256 QNetworkReply::ignoreSslErrors + +Class QNetworkReply + size=16 align=8 + base size=16 base align=8 +QNetworkReply (0x7f8b76f6b9a0) 0 + vptr=((& QNetworkReply::_ZTV13QNetworkReply) + 16u) + QIODevice (0x7f8b76f6ba10) 0 + primary-for QNetworkReply (0x7f8b76f6b9a0) + QObject (0x7f8b76f6ba80) 0 + primary-for QIODevice (0x7f8b76f6ba10) + +Vtable for QUrlInfo +QUrlInfo::_ZTV8QUrlInfo: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QUrlInfo) +16 QUrlInfo::~QUrlInfo +24 QUrlInfo::~QUrlInfo +32 QUrlInfo::setName +40 QUrlInfo::setDir +48 QUrlInfo::setFile +56 QUrlInfo::setSymLink +64 QUrlInfo::setOwner +72 QUrlInfo::setGroup +80 QUrlInfo::setSize +88 QUrlInfo::setWritable +96 QUrlInfo::setReadable +104 QUrlInfo::setPermissions +112 QUrlInfo::setLastModified + +Class QUrlInfo + size=16 align=8 + base size=16 base align=8 +QUrlInfo (0x7f8b76f95620) 0 + vptr=((& QUrlInfo::_ZTV8QUrlInfo) + 16u) + +Vtable for QFtp +QFtp::_ZTV4QFtp: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI4QFtp) +16 QFtp::metaObject +24 QFtp::qt_metacast +32 QFtp::qt_metacall +40 QFtp::~QFtp +48 QFtp::~QFtp +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QFtp + size=16 align=8 + base size=16 base align=8 +QFtp (0x7f8b76fa75b0) 0 + vptr=((& QFtp::_ZTV4QFtp) + 16u) + QObject (0x7f8b76fa7620) 0 + primary-for QFtp (0x7f8b76fa75b0) + +Class QNetworkCacheMetaData + size=8 align=8 + base size=8 base align=8 +QNetworkCacheMetaData (0x7f8b76fd4bd0) 0 + +Vtable for QAbstractNetworkCache +QAbstractNetworkCache::_ZTV21QAbstractNetworkCache: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QAbstractNetworkCache) +16 QAbstractNetworkCache::metaObject +24 QAbstractNetworkCache::qt_metacast +32 QAbstractNetworkCache::qt_metacall +40 QAbstractNetworkCache::~QAbstractNetworkCache +48 QAbstractNetworkCache::~QAbstractNetworkCache +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QAbstractNetworkCache + size=16 align=8 + base size=16 base align=8 +QAbstractNetworkCache (0x7f8b76fdaee0) 0 + vptr=((& QAbstractNetworkCache::_ZTV21QAbstractNetworkCache) + 16u) + QObject (0x7f8b76fdaf50) 0 + primary-for QAbstractNetworkCache (0x7f8b76fdaee0) + +Vtable for QNetworkDiskCache +QNetworkDiskCache::_ZTV17QNetworkDiskCache: 23u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QNetworkDiskCache) +16 QNetworkDiskCache::metaObject +24 QNetworkDiskCache::qt_metacast +32 QNetworkDiskCache::qt_metacall +40 QNetworkDiskCache::~QNetworkDiskCache +48 QNetworkDiskCache::~QNetworkDiskCache +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QNetworkDiskCache::metaData +120 QNetworkDiskCache::updateMetaData +128 QNetworkDiskCache::data +136 QNetworkDiskCache::remove +144 QNetworkDiskCache::cacheSize +152 QNetworkDiskCache::prepare +160 QNetworkDiskCache::insert +168 QNetworkDiskCache::clear +176 QNetworkDiskCache::expire + +Class QNetworkDiskCache + size=16 align=8 + base size=16 base align=8 +QNetworkDiskCache (0x7f8b76e04850) 0 + vptr=((& QNetworkDiskCache::_ZTV17QNetworkDiskCache) + 16u) + QAbstractNetworkCache (0x7f8b76e048c0) 0 + primary-for QNetworkDiskCache (0x7f8b76e04850) + QObject (0x7f8b76e04930) 0 + primary-for QAbstractNetworkCache (0x7f8b76e048c0) + +Class QIPv6Address + size=16 align=1 + base size=16 base align=1 +QIPv6Address (0x7f8b76e211c0) 0 + +Class QHostAddress + size=8 align=8 + base size=8 base align=8 +QHostAddress (0x7f8b76e217e0) 0 + +Class QNetworkAddressEntry + size=8 align=8 + base size=8 base align=8 +QNetworkAddressEntry (0x7f8b76e4b770) 0 + +Class QNetworkInterface + size=8 align=8 + base size=8 base align=8 +QNetworkInterface (0x7f8b76e5c000) 0 + +Class QAuthenticator + size=8 align=8 + base size=8 base align=8 +QAuthenticator (0x7f8b76e89d20) 0 + +Class QHostInfo + size=8 align=8 + base size=8 base align=8 +QHostInfo (0x7f8b76e98620) 0 + +Class QNetworkProxyQuery + size=8 align=8 + base size=8 base align=8 +QNetworkProxyQuery (0x7f8b76e98e70) 0 + +Class QNetworkProxy + size=8 align=8 + base size=8 base align=8 +QNetworkProxy (0x7f8b76ec6150) 0 + +Vtable for QNetworkProxyFactory +QNetworkProxyFactory::_ZTV20QNetworkProxyFactory: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QNetworkProxyFactory) +16 QNetworkProxyFactory::~QNetworkProxyFactory +24 QNetworkProxyFactory::~QNetworkProxyFactory +32 __cxa_pure_virtual + +Class QNetworkProxyFactory + size=8 align=8 + base size=8 base align=8 +QNetworkProxyFactory (0x7f8b76d095b0) 0 nearly-empty + vptr=((& QNetworkProxyFactory::_ZTV20QNetworkProxyFactory) + 16u) + +Vtable for QLocalServer +QLocalServer::_ZTV12QLocalServer: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QLocalServer) +16 QLocalServer::metaObject +24 QLocalServer::qt_metacast +32 QLocalServer::qt_metacall +40 QLocalServer::~QLocalServer +48 QLocalServer::~QLocalServer +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QLocalServer::hasPendingConnections +120 QLocalServer::nextPendingConnection +128 QLocalServer::incomingConnection + +Class QLocalServer + size=16 align=8 + base size=16 base align=8 +QLocalServer (0x7f8b76d098c0) 0 + vptr=((& QLocalServer::_ZTV12QLocalServer) + 16u) + QObject (0x7f8b76d09930) 0 + primary-for QLocalServer (0x7f8b76d098c0) + +Vtable for QLocalSocket +QLocalSocket::_ZTV12QLocalSocket: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QLocalSocket) +16 QLocalSocket::metaObject +24 QLocalSocket::qt_metacast +32 QLocalSocket::qt_metacall +40 QLocalSocket::~QLocalSocket +48 QLocalSocket::~QLocalSocket +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QLocalSocket::isSequential +120 QIODevice::open +128 QLocalSocket::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QIODevice::atEnd +168 QIODevice::reset +176 QLocalSocket::bytesAvailable +184 QLocalSocket::bytesToWrite +192 QLocalSocket::canReadLine +200 QLocalSocket::waitForReadyRead +208 QLocalSocket::waitForBytesWritten +216 QLocalSocket::readData +224 QIODevice::readLineData +232 QLocalSocket::writeData + +Class QLocalSocket + size=16 align=8 + base size=16 base align=8 +QLocalSocket (0x7f8b76d2b2a0) 0 + vptr=((& QLocalSocket::_ZTV12QLocalSocket) + 16u) + QIODevice (0x7f8b76d2b310) 0 + primary-for QLocalSocket (0x7f8b76d2b2a0) + QObject (0x7f8b76d2b380) 0 + primary-for QIODevice (0x7f8b76d2b310) + +Vtable for QTcpServer +QTcpServer::_ZTV10QTcpServer: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTcpServer) +16 QTcpServer::metaObject +24 QTcpServer::qt_metacast +32 QTcpServer::qt_metacall +40 QTcpServer::~QTcpServer +48 QTcpServer::~QTcpServer +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTcpServer::hasPendingConnections +120 QTcpServer::nextPendingConnection +128 QTcpServer::incomingConnection + +Class QTcpServer + size=16 align=8 + base size=16 base align=8 +QTcpServer (0x7f8b76d4e460) 0 + vptr=((& QTcpServer::_ZTV10QTcpServer) + 16u) + QObject (0x7f8b76d4e4d0) 0 + primary-for QTcpServer (0x7f8b76d4e460) + +Vtable for QUdpSocket +QUdpSocket::_ZTV10QUdpSocket: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QUdpSocket) +16 QUdpSocket::metaObject +24 QUdpSocket::qt_metacast +32 QUdpSocket::qt_metacall +40 QUdpSocket::~QUdpSocket +48 QUdpSocket::~QUdpSocket +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractSocket::isSequential +120 QIODevice::open +128 QAbstractSocket::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QAbstractSocket::atEnd +168 QIODevice::reset +176 QAbstractSocket::bytesAvailable +184 QAbstractSocket::bytesToWrite +192 QAbstractSocket::canReadLine +200 QAbstractSocket::waitForReadyRead +208 QAbstractSocket::waitForBytesWritten +216 QAbstractSocket::readData +224 QAbstractSocket::readLineData +232 QAbstractSocket::writeData + +Class QUdpSocket + size=16 align=8 + base size=16 base align=8 +QUdpSocket (0x7f8b76d60f50) 0 + vptr=((& QUdpSocket::_ZTV10QUdpSocket) + 16u) + QAbstractSocket (0x7f8b76d68000) 0 + primary-for QUdpSocket (0x7f8b76d60f50) + QIODevice (0x7f8b76d68070) 0 + primary-for QAbstractSocket (0x7f8b76d68000) + QObject (0x7f8b76d680e0) 0 + primary-for QIODevice (0x7f8b76d68070) + diff --git a/tests/auto/bic/data/QtNetwork.4.6.0.linux-gcc-amd64.txt b/tests/auto/bic/data/QtNetwork.4.6.0.linux-gcc-amd64.txt new file mode 100644 index 0000000..c5e6bf2 --- /dev/null +++ b/tests/auto/bic/data/QtNetwork.4.6.0.linux-gcc-amd64.txt @@ -0,0 +1,3294 @@ +Class QSysInfo + size=1 align=1 + base size=0 base align=1 +QSysInfo (0x7f3e59605230) 0 empty + +Class QBool + size=1 align=1 + base size=1 base align=1 +QBool (0x7f3e59605e70) 0 + +Class qIsNull(double)::U + size=8 align=8 + base size=8 base align=8 +qIsNull(double)::U (0x7f3e58dda540) 0 + +Class qIsNull(float)::U + size=4 align=4 + base size=4 base align=4 +qIsNull(float)::U (0x7f3e58dda7e0) 0 + +Class QFlag + size=4 align=4 + base size=4 base align=4 +QFlag (0x7f3e58e14690) 0 + +Class QIncompatibleFlag + size=4 align=4 + base size=4 base align=4 +QIncompatibleFlag (0x7f3e58e14e70) 0 + +Class QLatin1Char + size=1 align=1 + base size=1 base align=1 +QLatin1Char (0x7f3e58e445b0) 0 + +Class QChar + size=2 align=2 + base size=2 base align=2 +QChar (0x7f3e58e6a150) 0 + +Class QBasicAtomicInt + size=4 align=4 + base size=4 base align=4 +QBasicAtomicInt (0x7f3e58cd0310) 0 + +Class QAtomicInt + size=4 align=4 + base size=4 base align=4 +QAtomicInt (0x7f3e58d0fcb0) 0 + QBasicAtomicInt (0x7f3e58d0fd20) 0 + +Class QInternal + size=1 align=1 + base size=0 base align=1 +QInternal (0x7f3e58b624d0) 0 empty + +Class __locale_struct + size=232 align=8 + base size=232 base align=8 +__locale_struct (0x7f3e58b62700) 0 + +Class QByteArray::Data + size=32 align=8 + base size=32 base align=8 +QByteArray::Data (0x7f3e58b9eaf0) 0 + +Class QByteArray + size=8 align=8 + base size=8 base align=8 +QByteArray (0x7f3e58b9ea80) 0 + +Class QByteRef + size=16 align=8 + base size=12 base align=8 +QByteRef (0x7f3e58a41380) 0 + +Class QString::Null + size=1 align=1 + base size=0 base align=1 +QString::Null (0x7f3e58940d20) 0 empty + +Class QString::Data + size=32 align=8 + base size=32 base align=8 +QString::Data (0x7f3e589595b0) 0 + +Class QString + size=8 align=8 + base size=8 base align=8 +QString (0x7f3e588bcbd0) 0 + +Class QLatin1String + size=8 align=8 + base size=8 base align=8 +QLatin1String (0x7f3e588329a0) 0 + +Class QCharRef + size=16 align=8 + base size=12 base align=8 +QCharRef (0x7f3e586d1000) 0 + +Class QConstString + size=8 align=8 + base size=8 base align=8 +QConstString (0x7f3e5861a8c0) 0 + QString (0x7f3e5861a930) 0 + +Class QStringRef + size=16 align=8 + base size=16 base align=8 +QStringRef (0x7f3e58640310) 0 + +Class QGenericArgument + size=16 align=8 + base size=16 base align=8 +QGenericArgument (0x7f3e584b9700) 0 + +Class QGenericReturnArgument + size=16 align=8 + base size=16 base align=8 +QGenericReturnArgument (0x7f3e584c32a0) 0 + QGenericArgument (0x7f3e584c3310) 0 + +Class QMetaObject + size=32 align=8 + base size=32 base align=8 +QMetaObject (0x7f3e584c3b60) 0 + +Class QMetaObjectExtraData + size=16 align=8 + base size=16 base align=8 +QMetaObjectExtraData (0x7f3e584ebbd0) 0 + +Vtable for std::exception +std::exception::_ZTVSt9exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9exception) +16 std::exception::~exception +24 std::exception::~exception +32 std::exception::what + +Class std::exception + size=8 align=8 + base size=8 base align=8 +std::exception (0x7f3e585401c0) 0 nearly-empty + vptr=((& std::exception::_ZTVSt9exception) + 16u) + +Vtable for std::bad_exception +std::bad_exception::_ZTVSt13bad_exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13bad_exception) +16 std::bad_exception::~bad_exception +24 std::bad_exception::~bad_exception +32 std::bad_exception::what + +Class std::bad_exception + size=8 align=8 + base size=8 base align=8 +std::bad_exception (0x7f3e58540770) 0 nearly-empty + vptr=((& std::bad_exception::_ZTVSt13bad_exception) + 16u) + std::exception (0x7f3e585407e0) 0 nearly-empty + primary-for std::bad_exception (0x7f3e58540770) + +Vtable for std::bad_alloc +std::bad_alloc::_ZTVSt9bad_alloc: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9bad_alloc) +16 std::bad_alloc::~bad_alloc +24 std::bad_alloc::~bad_alloc +32 std::bad_alloc::what + +Class std::bad_alloc + size=8 align=8 + base size=8 base align=8 +std::bad_alloc (0x7f3e58540930) 0 nearly-empty + vptr=((& std::bad_alloc::_ZTVSt9bad_alloc) + 16u) + std::exception (0x7f3e58556000) 0 nearly-empty + primary-for std::bad_alloc (0x7f3e58540930) + +Class std::nothrow_t + size=1 align=1 + base size=0 base align=1 +std::nothrow_t (0x7f3e58556850) 0 empty + +Class QListData::Data + size=32 align=8 + base size=32 base align=8 +QListData::Data (0x7f3e58556d90) 0 + +Class QListData + size=8 align=8 + base size=8 base align=8 +QListData (0x7f3e58556d20) 0 + +Class QScopedPointerPodDeleter + size=1 align=1 + base size=0 base align=1 +QScopedPointerPodDeleter (0x7f3e5847f850) 0 empty + +Vtable for QObjectData +QObjectData::_ZTV11QObjectData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QObjectData) +16 __cxa_pure_virtual +24 __cxa_pure_virtual + +Class QObjectData + size=48 align=8 + base size=48 base align=8 +QObjectData (0x7f3e584a22a0) 0 + vptr=((& QObjectData::_ZTV11QObjectData) + 16u) + +Vtable for QObject +QObject::_ZTV7QObject: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QObject) +16 QObject::metaObject +24 QObject::qt_metacast +32 QObject::qt_metacall +40 QObject::~QObject +48 QObject::~QObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObject + size=16 align=8 + base size=16 base align=8 +QObject (0x7f3e584a25b0) 0 + vptr=((& QObject::_ZTV7QObject) + 16u) + +Vtable for QObjectUserData +QObjectUserData::_ZTV15QObjectUserData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QObjectUserData) +16 QObjectUserData::~QObjectUserData +24 QObjectUserData::~QObjectUserData + +Class QObjectUserData + size=8 align=8 + base size=8 base align=8 +QObjectUserData (0x7f3e58314b60) 0 nearly-empty + vptr=((& QObjectUserData::_ZTV15QObjectUserData) + 16u) + +Vtable for QIODevice +QIODevice::_ZTV9QIODevice: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QIODevice) +16 QIODevice::metaObject +24 QIODevice::qt_metacast +32 QIODevice::qt_metacall +40 QIODevice::~QIODevice +48 QIODevice::~QIODevice +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QIODevice::isSequential +120 QIODevice::open +128 QIODevice::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QIODevice::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 __cxa_pure_virtual +224 QIODevice::readLineData +232 __cxa_pure_virtual + +Class QIODevice + size=16 align=8 + base size=16 base align=8 +QIODevice (0x7f3e58325150) 0 + vptr=((& QIODevice::_ZTV9QIODevice) + 16u) + QObject (0x7f3e583251c0) 0 + primary-for QIODevice (0x7f3e58325150) + +Class _IO_marker + size=24 align=8 + base size=24 base align=8 +_IO_marker (0x7f3e58389cb0) 0 + +Class _IO_FILE + size=216 align=8 + base size=216 base align=8 +_IO_FILE (0x7f3e58389d20) 0 + +Vtable for QFile +QFile::_ZTV5QFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QFile) +16 QFile::metaObject +24 QFile::qt_metacast +32 QFile::qt_metacall +40 QFile::~QFile +48 QFile::~QFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QFile::fileEngine + +Class QFile + size=16 align=8 + base size=16 base align=8 +QFile (0x7f3e58389e00) 0 + vptr=((& QFile::_ZTV5QFile) + 16u) + QIODevice (0x7f3e58389e70) 0 + primary-for QFile (0x7f3e58389e00) + QObject (0x7f3e58389ee0) 0 + primary-for QIODevice (0x7f3e58389e70) + +Class QFileInfo + size=8 align=8 + base size=8 base align=8 +QFileInfo (0x7f3e5822a070) 0 + +Vtable for QDataStream +QDataStream::_ZTV11QDataStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QDataStream) +16 QDataStream::~QDataStream +24 QDataStream::~QDataStream + +Class QDataStream + size=40 align=8 + base size=40 base align=8 +QDataStream (0x7f3e5827ea10) 0 + vptr=((& QDataStream::_ZTV11QDataStream) + 16u) + +Class QRegExp + size=8 align=8 + base size=8 base align=8 +QRegExp (0x7f3e580e6e70) 0 + +Class QStringMatcher::Data + size=272 align=8 + base size=272 base align=8 +QStringMatcher::Data (0x7f3e5814f2a0) 0 + +Class QStringMatcher + size=1048 align=8 + base size=1048 base align=8 +QStringMatcher (0x7f3e58144c40) 0 + +Class QStringList + size=8 align=8 + base size=8 base align=8 +QStringList (0x7f3e5814f850) 0 + QList (0x7f3e5814f8c0) 0 + +Class QDir + size=8 align=8 + base size=8 base align=8 +QDir (0x7f3e57fee4d0) 0 + +Class QAbstractFileEngine::ExtensionOption + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionOption (0x7f3e580968c0) 0 empty + +Class QAbstractFileEngine::ExtensionReturn + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionReturn (0x7f3e58096930) 0 empty + +Class QAbstractFileEngine::MapExtensionOption + size=24 align=8 + base size=20 base align=8 +QAbstractFileEngine::MapExtensionOption (0x7f3e580969a0) 0 + QAbstractFileEngine::ExtensionOption (0x7f3e58096a10) 0 empty + +Class QAbstractFileEngine::MapExtensionReturn + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::MapExtensionReturn (0x7f3e58096bd0) 0 + QAbstractFileEngine::ExtensionReturn (0x7f3e58096c40) 0 empty + +Class QAbstractFileEngine::UnMapExtensionOption + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::UnMapExtensionOption (0x7f3e58096cb0) 0 + QAbstractFileEngine::ExtensionOption (0x7f3e58096d20) 0 empty + +Vtable for QAbstractFileEngine +QAbstractFileEngine::_ZTV19QAbstractFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractFileEngine) +16 QAbstractFileEngine::~QAbstractFileEngine +24 QAbstractFileEngine::~QAbstractFileEngine +32 QAbstractFileEngine::open +40 QAbstractFileEngine::close +48 QAbstractFileEngine::flush +56 QAbstractFileEngine::size +64 QAbstractFileEngine::pos +72 QAbstractFileEngine::seek +80 QAbstractFileEngine::isSequential +88 QAbstractFileEngine::remove +96 QAbstractFileEngine::copy +104 QAbstractFileEngine::rename +112 QAbstractFileEngine::link +120 QAbstractFileEngine::mkdir +128 QAbstractFileEngine::rmdir +136 QAbstractFileEngine::setSize +144 QAbstractFileEngine::caseSensitive +152 QAbstractFileEngine::isRelativePath +160 QAbstractFileEngine::entryList +168 QAbstractFileEngine::fileFlags +176 QAbstractFileEngine::setPermissions +184 QAbstractFileEngine::fileName +192 QAbstractFileEngine::ownerId +200 QAbstractFileEngine::owner +208 QAbstractFileEngine::fileTime +216 QAbstractFileEngine::setFileName +224 QAbstractFileEngine::handle +232 QAbstractFileEngine::beginEntryList +240 QAbstractFileEngine::endEntryList +248 QAbstractFileEngine::read +256 QAbstractFileEngine::readLine +264 QAbstractFileEngine::write +272 QAbstractFileEngine::extension +280 QAbstractFileEngine::supportsExtension + +Class QAbstractFileEngine + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngine (0x7f3e5807a850) 0 + vptr=((& QAbstractFileEngine::_ZTV19QAbstractFileEngine) + 16u) + +Vtable for QAbstractFileEngineHandler +QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QAbstractFileEngineHandler) +16 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +24 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +32 __cxa_pure_virtual + +Class QAbstractFileEngineHandler + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngineHandler (0x7f3e57eccbd0) 0 nearly-empty + vptr=((& QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler) + 16u) + +Vtable for QAbstractFileEngineIterator +QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QAbstractFileEngineIterator) +16 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +24 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QAbstractFileEngineIterator::currentFileInfo +64 QAbstractFileEngineIterator::entryInfo + +Class QAbstractFileEngineIterator + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngineIterator (0x7f3e57eccd90) 0 + vptr=((& QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator) + 16u) + +Vtable for QBuffer +QBuffer::_ZTV7QBuffer: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QBuffer) +16 QBuffer::metaObject +24 QBuffer::qt_metacast +32 QBuffer::qt_metacall +40 QBuffer::~QBuffer +48 QBuffer::~QBuffer +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QBuffer::connectNotify +104 QBuffer::disconnectNotify +112 QIODevice::isSequential +120 QBuffer::open +128 QBuffer::close +136 QBuffer::pos +144 QBuffer::size +152 QBuffer::seek +160 QBuffer::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QBuffer::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QBuffer::readData +224 QIODevice::readLineData +232 QBuffer::writeData + +Class QBuffer + size=16 align=8 + base size=16 base align=8 +QBuffer (0x7f3e57ee0690) 0 + vptr=((& QBuffer::_ZTV7QBuffer) + 16u) + QIODevice (0x7f3e57ee0700) 0 + primary-for QBuffer (0x7f3e57ee0690) + QObject (0x7f3e57ee0770) 0 + primary-for QIODevice (0x7f3e57ee0700) + +Class QHashData::Node + size=16 align=8 + base size=16 base align=8 +QHashData::Node (0x7f3e57f21e00) 0 + +Class QHashData + size=40 align=8 + base size=40 base align=8 +QHashData (0x7f3e57f21d90) 0 + +Class QHashDummyValue + size=1 align=1 + base size=0 base align=1 +QHashDummyValue (0x7f3e57f45150) 0 empty + +Class QMapData::Node + size=16 align=8 + base size=16 base align=8 +QMapData::Node (0x7f3e57e43a80) 0 + +Class QMapData + size=128 align=8 + base size=128 base align=8 +QMapData (0x7f3e57e43a10) 0 + +Vtable for QSystemLocale +QSystemLocale::_ZTV13QSystemLocale: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSystemLocale) +16 QSystemLocale::~QSystemLocale +24 QSystemLocale::~QSystemLocale +32 QSystemLocale::query +40 QSystemLocale::fallbackLocale + +Class QSystemLocale + size=8 align=8 + base size=8 base align=8 +QSystemLocale (0x7f3e57d81690) 0 nearly-empty + vptr=((& QSystemLocale::_ZTV13QSystemLocale) + 16u) + +Class QLocale::Data + size=4 align=2 + base size=4 base align=2 +QLocale::Data (0x7f3e57bcdd90) 0 + +Class QLocale + size=8 align=8 + base size=8 base align=8 +QLocale (0x7f3e57d81af0) 0 + +Class QTextCodec::ConverterState + size=32 align=8 + base size=32 base align=8 +QTextCodec::ConverterState (0x7f3e57c25bd0) 0 + +Vtable for QTextCodec +QTextCodec::_ZTV10QTextCodec: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextCodec) +16 __cxa_pure_virtual +24 QTextCodec::aliases +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QTextCodec::~QTextCodec +64 QTextCodec::~QTextCodec + +Class QTextCodec + size=8 align=8 + base size=8 base align=8 +QTextCodec (0x7f3e57c16460) 0 nearly-empty + vptr=((& QTextCodec::_ZTV10QTextCodec) + 16u) + +Class QTextEncoder + size=40 align=8 + base size=40 base align=8 +QTextEncoder (0x7f3e57a94150) 0 + +Class QTextDecoder + size=40 align=8 + base size=40 base align=8 +QTextDecoder (0x7f3e57a94f50) 0 + +Vtable for QTextStream +QTextStream::_ZTV11QTextStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTextStream) +16 QTextStream::~QTextStream +24 QTextStream::~QTextStream + +Class QTextStream + size=16 align=8 + base size=16 base align=8 +QTextStream (0x7f3e57a9cd90) 0 + vptr=((& QTextStream::_ZTV11QTextStream) + 16u) + +Class QTextStreamManipulator + size=40 align=8 + base size=38 base align=8 +QTextStreamManipulator (0x7f3e57b14a80) 0 + +Vtable for QTextIStream +QTextIStream::_ZTV12QTextIStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextIStream) +16 QTextIStream::~QTextIStream +24 QTextIStream::~QTextIStream + +Class QTextIStream + size=16 align=8 + base size=16 base align=8 +QTextIStream (0x7f3e57b46070) 0 + vptr=((& QTextIStream::_ZTV12QTextIStream) + 16u) + QTextStream (0x7f3e57b460e0) 0 + primary-for QTextIStream (0x7f3e57b46070) + +Vtable for QTextOStream +QTextOStream::_ZTV12QTextOStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextOStream) +16 QTextOStream::~QTextOStream +24 QTextOStream::~QTextOStream + +Class QTextOStream + size=16 align=8 + base size=16 base align=8 +QTextOStream (0x7f3e57b52ee0) 0 + vptr=((& QTextOStream::_ZTV12QTextOStream) + 16u) + QTextStream (0x7f3e57b52f50) 0 + primary-for QTextOStream (0x7f3e57b52ee0) + +Class wait + size=4 align=4 + base size=4 base align=4 +wait (0x7f3e57b67d90) 0 + +Class timespec + size=16 align=8 + base size=16 base align=8 +timespec (0x7f3e57b730e0) 0 + +Class timeval + size=16 align=8 + base size=16 base align=8 +timeval (0x7f3e57b73150) 0 + +Class __pthread_internal_list + size=16 align=8 + base size=16 base align=8 +__pthread_internal_list (0x7f3e57b732a0) 0 + +Class random_data + size=48 align=8 + base size=48 base align=8 +random_data (0x7f3e57b73850) 0 + +Class drand48_data + size=24 align=8 + base size=24 base align=8 +drand48_data (0x7f3e57b738c0) 0 + +Class QVectorData + size=16 align=4 + base size=16 base align=4 +QVectorData (0x7f3e57b73930) 0 + +Class QContiguousCacheData + size=24 align=4 + base size=24 base align=4 +QContiguousCacheData (0x7f3e57932620) 0 + +Class QDebug::Stream + size=40 align=8 + base size=34 base align=8 +QDebug::Stream (0x7f3e57792150) 0 + +Class QDebug + size=8 align=8 + base size=8 base align=8 +QDebug (0x7f3e577920e0) 0 + +Class QNoDebug + size=1 align=1 + base size=0 base align=1 +QNoDebug (0x7f3e578400e0) 0 empty + +Vtable for QDirIterator +QDirIterator::_ZTV12QDirIterator: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QDirIterator) +16 QDirIterator::~QDirIterator +24 QDirIterator::~QDirIterator + +Class QDirIterator + size=16 align=8 + base size=16 base align=8 +QDirIterator (0x7f3e57850700) 0 + vptr=((& QDirIterator::_ZTV12QDirIterator) + 16u) + +Vtable for QFileSystemWatcher +QFileSystemWatcher::_ZTV18QFileSystemWatcher: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFileSystemWatcher) +16 QFileSystemWatcher::metaObject +24 QFileSystemWatcher::qt_metacast +32 QFileSystemWatcher::qt_metacall +40 QFileSystemWatcher::~QFileSystemWatcher +48 QFileSystemWatcher::~QFileSystemWatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QFileSystemWatcher + size=16 align=8 + base size=16 base align=8 +QFileSystemWatcher (0x7f3e576ac540) 0 + vptr=((& QFileSystemWatcher::_ZTV18QFileSystemWatcher) + 16u) + QObject (0x7f3e576ac5b0) 0 + primary-for QFileSystemWatcher (0x7f3e576ac540) + +Vtable for QFSFileEngine +QFSFileEngine::_ZTV13QFSFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QFSFileEngine) +16 QFSFileEngine::~QFSFileEngine +24 QFSFileEngine::~QFSFileEngine +32 QFSFileEngine::open +40 QFSFileEngine::close +48 QFSFileEngine::flush +56 QFSFileEngine::size +64 QFSFileEngine::pos +72 QFSFileEngine::seek +80 QFSFileEngine::isSequential +88 QFSFileEngine::remove +96 QFSFileEngine::copy +104 QFSFileEngine::rename +112 QFSFileEngine::link +120 QFSFileEngine::mkdir +128 QFSFileEngine::rmdir +136 QFSFileEngine::setSize +144 QFSFileEngine::caseSensitive +152 QFSFileEngine::isRelativePath +160 QFSFileEngine::entryList +168 QFSFileEngine::fileFlags +176 QFSFileEngine::setPermissions +184 QFSFileEngine::fileName +192 QFSFileEngine::ownerId +200 QFSFileEngine::owner +208 QFSFileEngine::fileTime +216 QFSFileEngine::setFileName +224 QFSFileEngine::handle +232 QFSFileEngine::beginEntryList +240 QFSFileEngine::endEntryList +248 QFSFileEngine::read +256 QFSFileEngine::readLine +264 QFSFileEngine::write +272 QFSFileEngine::extension +280 QFSFileEngine::supportsExtension + +Class QFSFileEngine + size=16 align=8 + base size=16 base align=8 +QFSFileEngine (0x7f3e576bea80) 0 + vptr=((& QFSFileEngine::_ZTV13QFSFileEngine) + 16u) + QAbstractFileEngine (0x7f3e576beaf0) 0 + primary-for QFSFileEngine (0x7f3e576bea80) + +Class QSharedData + size=4 align=4 + base size=4 base align=4 +QSharedData (0x7f3e576cfe70) 0 + +Class QProcessEnvironment + size=8 align=8 + base size=8 base align=8 +QProcessEnvironment (0x7f3e577171c0) 0 + +Vtable for QProcess +QProcess::_ZTV8QProcess: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QProcess) +16 QProcess::metaObject +24 QProcess::qt_metacast +32 QProcess::qt_metacall +40 QProcess::~QProcess +48 QProcess::~QProcess +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QProcess::isSequential +120 QIODevice::open +128 QProcess::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QProcess::atEnd +168 QIODevice::reset +176 QProcess::bytesAvailable +184 QProcess::bytesToWrite +192 QProcess::canReadLine +200 QProcess::waitForReadyRead +208 QProcess::waitForBytesWritten +216 QProcess::readData +224 QIODevice::readLineData +232 QProcess::writeData +240 QProcess::setupChildProcess + +Class QProcess + size=16 align=8 + base size=16 base align=8 +QProcess (0x7f3e57717cb0) 0 + vptr=((& QProcess::_ZTV8QProcess) + 16u) + QIODevice (0x7f3e57717d20) 0 + primary-for QProcess (0x7f3e57717cb0) + QObject (0x7f3e57717d90) 0 + primary-for QIODevice (0x7f3e57717d20) + +Class QResource + size=8 align=8 + base size=8 base align=8 +QResource (0x7f3e5775d1c0) 0 + +Class QMetaType + size=1 align=1 + base size=0 base align=1 +QMetaType (0x7f3e5775de70) 0 empty + +Class QVariant::PrivateShared + size=16 align=8 + base size=12 base align=8 +QVariant::PrivateShared (0x7f3e5765d700) 0 + +Class QVariant::Private::Data + size=8 align=8 + base size=8 base align=8 +QVariant::Private::Data (0x7f3e5765da10) 0 + +Class QVariant::Private + size=16 align=8 + base size=12 base align=8 +QVariant::Private (0x7f3e5765d7e0) 0 + +Class QVariant::Handler + size=72 align=8 + base size=72 base align=8 +QVariant::Handler (0x7f3e5766c700) 0 + +Class QVariant + size=16 align=8 + base size=16 base align=8 +QVariant (0x7f3e5762d7e0) 0 + +Class QVariantComparisonHelper + size=8 align=8 + base size=8 base align=8 +QVariantComparisonHelper (0x7f3e5751d9a0) 0 + +Vtable for QSettings +QSettings::_ZTV9QSettings: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QSettings) +16 QSettings::metaObject +24 QSettings::qt_metacast +32 QSettings::qt_metacall +40 QSettings::~QSettings +48 QSettings::~QSettings +56 QSettings::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSettings + size=16 align=8 + base size=16 base align=8 +QSettings (0x7f3e57543ee0) 0 + vptr=((& QSettings::_ZTV9QSettings) + 16u) + QObject (0x7f3e57543f50) 0 + primary-for QSettings (0x7f3e57543ee0) + +Vtable for QTemporaryFile +QTemporaryFile::_ZTV14QTemporaryFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QTemporaryFile) +16 QTemporaryFile::metaObject +24 QTemporaryFile::qt_metacast +32 QTemporaryFile::qt_metacall +40 QTemporaryFile::~QTemporaryFile +48 QTemporaryFile::~QTemporaryFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QTemporaryFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QTemporaryFile::fileEngine + +Class QTemporaryFile + size=16 align=8 + base size=16 base align=8 +QTemporaryFile (0x7f3e573c62a0) 0 + vptr=((& QTemporaryFile::_ZTV14QTemporaryFile) + 16u) + QFile (0x7f3e573c6310) 0 + primary-for QTemporaryFile (0x7f3e573c62a0) + QIODevice (0x7f3e573c6380) 0 + primary-for QFile (0x7f3e573c6310) + QObject (0x7f3e573c63f0) 0 + primary-for QIODevice (0x7f3e573c6380) + +Class QUrl + size=8 align=8 + base size=8 base align=8 +QUrl (0x7f3e573e29a0) 0 + +Class QXmlStreamStringRef + size=16 align=8 + base size=16 base align=8 +QXmlStreamStringRef (0x7f3e5726b070) 0 + +Class QXmlStreamAttribute + size=80 align=8 + base size=73 base align=8 +QXmlStreamAttribute (0x7f3e5728a850) 0 + +Class QXmlStreamAttributes + size=8 align=8 + base size=8 base align=8 +QXmlStreamAttributes (0x7f3e572b3310) 0 + QVector (0x7f3e572b3380) 0 + +Class QXmlStreamNamespaceDeclaration + size=40 align=8 + base size=40 base align=8 +QXmlStreamNamespaceDeclaration (0x7f3e572b37e0) 0 + +Class QXmlStreamNotationDeclaration + size=56 align=8 + base size=56 base align=8 +QXmlStreamNotationDeclaration (0x7f3e572f41c0) 0 + +Class QXmlStreamEntityDeclaration + size=88 align=8 + base size=88 base align=8 +QXmlStreamEntityDeclaration (0x7f3e57313070) 0 + +Vtable for QXmlStreamEntityResolver +QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QXmlStreamEntityResolver) +16 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +24 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +32 QXmlStreamEntityResolver::resolveEntity +40 QXmlStreamEntityResolver::resolveUndeclaredEntity + +Class QXmlStreamEntityResolver + size=8 align=8 + base size=8 base align=8 +QXmlStreamEntityResolver (0x7f3e5732f9a0) 0 nearly-empty + vptr=((& QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver) + 16u) + +Class QXmlStreamReader + size=8 align=8 + base size=8 base align=8 +QXmlStreamReader (0x7f3e5732fb60) 0 + +Class QXmlStreamWriter + size=8 align=8 + base size=8 base align=8 +QXmlStreamWriter (0x7f3e57176c40) 0 + +Vtable for QAbstractState +QAbstractState::_ZTV14QAbstractState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QAbstractState) +16 QAbstractState::metaObject +24 QAbstractState::qt_metacast +32 QAbstractState::qt_metacall +40 QAbstractState::~QAbstractState +48 QAbstractState::~QAbstractState +56 QAbstractState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QAbstractState + size=16 align=8 + base size=16 base align=8 +QAbstractState (0x7f3e5718ca80) 0 + vptr=((& QAbstractState::_ZTV14QAbstractState) + 16u) + QObject (0x7f3e5718caf0) 0 + primary-for QAbstractState (0x7f3e5718ca80) + +Vtable for QAbstractTransition +QAbstractTransition::_ZTV19QAbstractTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractTransition) +16 QAbstractTransition::metaObject +24 QAbstractTransition::qt_metacast +32 QAbstractTransition::qt_metacall +40 QAbstractTransition::~QAbstractTransition +48 QAbstractTransition::~QAbstractTransition +56 QAbstractTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QAbstractTransition + size=16 align=8 + base size=16 base align=8 +QAbstractTransition (0x7f3e571b22a0) 0 + vptr=((& QAbstractTransition::_ZTV19QAbstractTransition) + 16u) + QObject (0x7f3e571b2310) 0 + primary-for QAbstractTransition (0x7f3e571b22a0) + +Vtable for QEvent +QEvent::_ZTV6QEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QEvent) +16 QEvent::~QEvent +24 QEvent::~QEvent + +Class QEvent + size=24 align=8 + base size=20 base align=8 +QEvent (0x7f3e571c6af0) 0 + vptr=((& QEvent::_ZTV6QEvent) + 16u) + +Vtable for QTimerEvent +QTimerEvent::_ZTV11QTimerEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTimerEvent) +16 QTimerEvent::~QTimerEvent +24 QTimerEvent::~QTimerEvent + +Class QTimerEvent + size=24 align=8 + base size=24 base align=8 +QTimerEvent (0x7f3e571e8700) 0 + vptr=((& QTimerEvent::_ZTV11QTimerEvent) + 16u) + QEvent (0x7f3e571e8770) 0 + primary-for QTimerEvent (0x7f3e571e8700) + +Vtable for QChildEvent +QChildEvent::_ZTV11QChildEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QChildEvent) +16 QChildEvent::~QChildEvent +24 QChildEvent::~QChildEvent + +Class QChildEvent + size=32 align=8 + base size=32 base align=8 +QChildEvent (0x7f3e571e8b60) 0 + vptr=((& QChildEvent::_ZTV11QChildEvent) + 16u) + QEvent (0x7f3e571e8bd0) 0 + primary-for QChildEvent (0x7f3e571e8b60) + +Vtable for QCustomEvent +QCustomEvent::_ZTV12QCustomEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QCustomEvent) +16 QCustomEvent::~QCustomEvent +24 QCustomEvent::~QCustomEvent + +Class QCustomEvent + size=24 align=8 + base size=20 base align=8 +QCustomEvent (0x7f3e571f2e00) 0 + vptr=((& QCustomEvent::_ZTV12QCustomEvent) + 16u) + QEvent (0x7f3e571f2e70) 0 + primary-for QCustomEvent (0x7f3e571f2e00) + +Vtable for QDynamicPropertyChangeEvent +QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QDynamicPropertyChangeEvent) +16 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent +24 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent + +Class QDynamicPropertyChangeEvent + size=32 align=8 + base size=32 base align=8 +QDynamicPropertyChangeEvent (0x7f3e57203620) 0 + vptr=((& QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent) + 16u) + QEvent (0x7f3e57203690) 0 + primary-for QDynamicPropertyChangeEvent (0x7f3e57203620) + +Vtable for QEventTransition +QEventTransition::_ZTV16QEventTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QEventTransition) +16 QEventTransition::metaObject +24 QEventTransition::qt_metacast +32 QEventTransition::qt_metacall +40 QEventTransition::~QEventTransition +48 QEventTransition::~QEventTransition +56 QEventTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QEventTransition::eventTest +120 QEventTransition::onTransition + +Class QEventTransition + size=16 align=8 + base size=16 base align=8 +QEventTransition (0x7f3e57203af0) 0 + vptr=((& QEventTransition::_ZTV16QEventTransition) + 16u) + QAbstractTransition (0x7f3e57203b60) 0 + primary-for QEventTransition (0x7f3e57203af0) + QObject (0x7f3e57203bd0) 0 + primary-for QAbstractTransition (0x7f3e57203b60) + +Vtable for QFinalState +QFinalState::_ZTV11QFinalState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFinalState) +16 QFinalState::metaObject +24 QFinalState::qt_metacast +32 QFinalState::qt_metacall +40 QFinalState::~QFinalState +48 QFinalState::~QFinalState +56 QFinalState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFinalState::onEntry +120 QFinalState::onExit + +Class QFinalState + size=16 align=8 + base size=16 base align=8 +QFinalState (0x7f3e5721e9a0) 0 + vptr=((& QFinalState::_ZTV11QFinalState) + 16u) + QAbstractState (0x7f3e5721ea10) 0 + primary-for QFinalState (0x7f3e5721e9a0) + QObject (0x7f3e5721ea80) 0 + primary-for QAbstractState (0x7f3e5721ea10) + +Vtable for QHistoryState +QHistoryState::_ZTV13QHistoryState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QHistoryState) +16 QHistoryState::metaObject +24 QHistoryState::qt_metacast +32 QHistoryState::qt_metacall +40 QHistoryState::~QHistoryState +48 QHistoryState::~QHistoryState +56 QHistoryState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QHistoryState::onEntry +120 QHistoryState::onExit + +Class QHistoryState + size=16 align=8 + base size=16 base align=8 +QHistoryState (0x7f3e57239230) 0 + vptr=((& QHistoryState::_ZTV13QHistoryState) + 16u) + QAbstractState (0x7f3e572392a0) 0 + primary-for QHistoryState (0x7f3e57239230) + QObject (0x7f3e57239310) 0 + primary-for QAbstractState (0x7f3e572392a0) + +Vtable for QSignalTransition +QSignalTransition::_ZTV17QSignalTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QSignalTransition) +16 QSignalTransition::metaObject +24 QSignalTransition::qt_metacast +32 QSignalTransition::qt_metacall +40 QSignalTransition::~QSignalTransition +48 QSignalTransition::~QSignalTransition +56 QSignalTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QSignalTransition::eventTest +120 QSignalTransition::onTransition + +Class QSignalTransition + size=16 align=8 + base size=16 base align=8 +QSignalTransition (0x7f3e57248f50) 0 + vptr=((& QSignalTransition::_ZTV17QSignalTransition) + 16u) + QAbstractTransition (0x7f3e57251000) 0 + primary-for QSignalTransition (0x7f3e57248f50) + QObject (0x7f3e57251070) 0 + primary-for QAbstractTransition (0x7f3e57251000) + +Vtable for QState +QState::_ZTV6QState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QState) +16 QState::metaObject +24 QState::qt_metacast +32 QState::qt_metacall +40 QState::~QState +48 QState::~QState +56 QState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QState::onEntry +120 QState::onExit + +Class QState + size=16 align=8 + base size=16 base align=8 +QState (0x7f3e57265af0) 0 + vptr=((& QState::_ZTV6QState) + 16u) + QAbstractState (0x7f3e57265b60) 0 + primary-for QState (0x7f3e57265af0) + QObject (0x7f3e57265bd0) 0 + primary-for QAbstractState (0x7f3e57265b60) + +Vtable for QStateMachine::SignalEvent +QStateMachine::SignalEvent::_ZTVN13QStateMachine11SignalEventE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN13QStateMachine11SignalEventE) +16 QStateMachine::SignalEvent::~SignalEvent +24 QStateMachine::SignalEvent::~SignalEvent + +Class QStateMachine::SignalEvent + size=48 align=8 + base size=48 base align=8 +QStateMachine::SignalEvent (0x7f3e57089150) 0 + vptr=((& QStateMachine::SignalEvent::_ZTVN13QStateMachine11SignalEventE) + 16u) + QEvent (0x7f3e570891c0) 0 + primary-for QStateMachine::SignalEvent (0x7f3e57089150) + +Vtable for QStateMachine::WrappedEvent +QStateMachine::WrappedEvent::_ZTVN13QStateMachine12WrappedEventE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN13QStateMachine12WrappedEventE) +16 QStateMachine::WrappedEvent::~WrappedEvent +24 QStateMachine::WrappedEvent::~WrappedEvent + +Class QStateMachine::WrappedEvent + size=40 align=8 + base size=40 base align=8 +QStateMachine::WrappedEvent (0x7f3e57089700) 0 + vptr=((& QStateMachine::WrappedEvent::_ZTVN13QStateMachine12WrappedEventE) + 16u) + QEvent (0x7f3e57089770) 0 + primary-for QStateMachine::WrappedEvent (0x7f3e57089700) + +Vtable for QStateMachine +QStateMachine::_ZTV13QStateMachine: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QStateMachine) +16 QStateMachine::metaObject +24 QStateMachine::qt_metacast +32 QStateMachine::qt_metacall +40 QStateMachine::~QStateMachine +48 QStateMachine::~QStateMachine +56 QStateMachine::event +64 QStateMachine::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QStateMachine::onEntry +120 QStateMachine::onExit +128 QStateMachine::beginSelectTransitions +136 QStateMachine::endSelectTransitions +144 QStateMachine::beginMicrostep +152 QStateMachine::endMicrostep + +Class QStateMachine + size=16 align=8 + base size=16 base align=8 +QStateMachine (0x7f3e57080ee0) 0 + vptr=((& QStateMachine::_ZTV13QStateMachine) + 16u) + QState (0x7f3e57080f50) 0 + primary-for QStateMachine (0x7f3e57080ee0) + QAbstractState (0x7f3e57089000) 0 + primary-for QState (0x7f3e57080f50) + QObject (0x7f3e57089070) 0 + primary-for QAbstractState (0x7f3e57089000) + +Class QBitArray + size=8 align=8 + base size=8 base align=8 +QBitArray (0x7f3e570b9150) 0 + +Class QBitRef + size=16 align=8 + base size=12 base align=8 +QBitRef (0x7f3e57110e00) 0 + +Class QByteArrayMatcher::Data + size=272 align=8 + base size=272 base align=8 +QByteArrayMatcher::Data (0x7f3e57123af0) 0 + +Class QByteArrayMatcher + size=1040 align=8 + base size=1040 base align=8 +QByteArrayMatcher (0x7f3e571234d0) 0 + +Class QCryptographicHash + size=8 align=8 + base size=8 base align=8 +QCryptographicHash (0x7f3e57159150) 0 + +Vtable for QtSharedPointer::ExternalRefCountData +QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN15QtSharedPointer20ExternalRefCountDataE) +16 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +24 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +32 QtSharedPointer::ExternalRefCountData::destroy + +Class QtSharedPointer::ExternalRefCountData + size=16 align=8 + base size=16 base align=8 +QtSharedPointer::ExternalRefCountData (0x7f3e56f84070) 0 + vptr=((& QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE) + 16u) + +Vtable for QtSharedPointer::ExternalRefCountWithDestroyFn +QtSharedPointer::ExternalRefCountWithDestroyFn::_ZTVN15QtSharedPointer29ExternalRefCountWithDestroyFnE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN15QtSharedPointer29ExternalRefCountWithDestroyFnE) +16 QtSharedPointer::ExternalRefCountWithDestroyFn::~ExternalRefCountWithDestroyFn +24 QtSharedPointer::ExternalRefCountWithDestroyFn::~ExternalRefCountWithDestroyFn +32 QtSharedPointer::ExternalRefCountWithDestroyFn::destroy + +Class QtSharedPointer::ExternalRefCountWithDestroyFn + size=24 align=8 + base size=24 base align=8 +QtSharedPointer::ExternalRefCountWithDestroyFn (0x7f3e56f9c930) 0 + vptr=((& QtSharedPointer::ExternalRefCountWithDestroyFn::_ZTVN15QtSharedPointer29ExternalRefCountWithDestroyFnE) + 16u) + QtSharedPointer::ExternalRefCountData (0x7f3e56f9c9a0) 0 + primary-for QtSharedPointer::ExternalRefCountWithDestroyFn (0x7f3e56f9c930) + +Class QDate + size=4 align=4 + base size=4 base align=4 +QDate (0x7f3e570215b0) 0 + +Class QTime + size=4 align=4 + base size=4 base align=4 +QTime (0x7f3e57053540) 0 + +Class QDateTime + size=8 align=8 + base size=8 base align=8 +QDateTime (0x7f3e56e6eaf0) 0 + +Class QEasingCurve + size=8 align=8 + base size=8 base align=8 +QEasingCurve (0x7f3e56eb6000) 0 + +Class QPoint + size=8 align=4 + base size=8 base align=4 +QPoint (0x7f3e56eb6ee0) 0 + +Class QPointF + size=16 align=8 + base size=16 base align=8 +QPointF (0x7f3e56ef8af0) 0 + +Class QLine + size=16 align=4 + base size=16 base align=4 +QLine (0x7f3e56f37af0) 0 + +Class QLineF + size=32 align=8 + base size=32 base align=8 +QLineF (0x7f3e56d689a0) 0 + +Class QLinkedListData + size=32 align=8 + base size=32 base align=8 +QLinkedListData (0x7f3e56dc7460) 0 + +Class QMargins + size=16 align=4 + base size=16 base align=4 +QMargins (0x7f3e56c86380) 0 + +Class QSize + size=8 align=4 + base size=8 base align=4 +QSize (0x7f3e56cb3150) 0 + +Class QSizeF + size=16 align=8 + base size=16 base align=8 +QSizeF (0x7f3e56cf4e00) 0 + +Class QRect + size=16 align=4 + base size=16 base align=4 +QRect (0x7f3e56d48380) 0 + +Class QRectF + size=32 align=8 + base size=32 base align=8 +QRectF (0x7f3e56bf3d20) 0 + +Class QLatin1Literal + size=16 align=8 + base size=16 base align=8 +QLatin1Literal (0x7f3e56aa3ee0) 0 + +Class QAbstractConcatenable + size=1 align=1 + base size=0 base align=1 +QAbstractConcatenable (0x7f3e56ab43f0) 0 empty + +Class QTextBoundaryFinder + size=48 align=8 + base size=48 base align=8 +QTextBoundaryFinder (0x7f3e56aea380) 0 + +Vtable for QTimeLine +QTimeLine::_ZTV9QTimeLine: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTimeLine) +16 QTimeLine::metaObject +24 QTimeLine::qt_metacast +32 QTimeLine::qt_metacall +40 QTimeLine::~QTimeLine +48 QTimeLine::~QTimeLine +56 QObject::event +64 QObject::eventFilter +72 QTimeLine::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTimeLine::valueForTime + +Class QTimeLine + size=16 align=8 + base size=16 base align=8 +QTimeLine (0x7f3e56afd700) 0 + vptr=((& QTimeLine::_ZTV9QTimeLine) + 16u) + QObject (0x7f3e56afd770) 0 + primary-for QTimeLine (0x7f3e56afd700) + +Vtable for QRunnable +QRunnable::_ZTV9QRunnable: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QRunnable) +16 __cxa_pure_virtual +24 QRunnable::~QRunnable +32 QRunnable::~QRunnable + +Class QRunnable + size=16 align=8 + base size=12 base align=8 +QRunnable (0x7f3e56b24f50) 0 + vptr=((& QRunnable::_ZTV9QRunnable) + 16u) + +Class QMutex + size=8 align=8 + base size=8 base align=8 +QMutex (0x7f3e56b5a620) 0 + +Class QMutexLocker + size=8 align=8 + base size=8 base align=8 +QMutexLocker (0x7f3e569681c0) 0 + +Vtable for QtConcurrent::Exception +QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent9ExceptionE) +16 QtConcurrent::Exception::~Exception +24 QtConcurrent::Exception::~Exception +32 std::exception::what +40 QtConcurrent::Exception::raise +48 QtConcurrent::Exception::clone + +Class QtConcurrent::Exception + size=8 align=8 + base size=8 base align=8 +QtConcurrent::Exception (0x7f3e5697f4d0) 0 nearly-empty + vptr=((& QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE) + 16u) + std::exception (0x7f3e5697f540) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7f3e5697f4d0) + +Vtable for QtConcurrent::UnhandledException +QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent18UnhandledExceptionE) +16 QtConcurrent::UnhandledException::~UnhandledException +24 QtConcurrent::UnhandledException::~UnhandledException +32 std::exception::what +40 QtConcurrent::UnhandledException::raise +48 QtConcurrent::UnhandledException::clone + +Class QtConcurrent::UnhandledException + size=8 align=8 + base size=8 base align=8 +QtConcurrent::UnhandledException (0x7f3e5697f770) 0 nearly-empty + vptr=((& QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE) + 16u) + QtConcurrent::Exception (0x7f3e5697f7e0) 0 nearly-empty + primary-for QtConcurrent::UnhandledException (0x7f3e5697f770) + std::exception (0x7f3e5697f850) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7f3e5697f7e0) + +Class QtConcurrent::internal::ExceptionHolder + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionHolder (0x7f3e5697fa80) 0 + +Class QtConcurrent::internal::ExceptionStore + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionStore (0x7f3e5697fe00) 0 + +Class QtConcurrent::ResultItem + size=16 align=8 + base size=16 base align=8 +QtConcurrent::ResultItem (0x7f3e5697fe70) 0 + +Class QtConcurrent::ResultIteratorBase + size=16 align=8 + base size=12 base align=8 +QtConcurrent::ResultIteratorBase (0x7f3e56997d90) 0 + +Vtable for QtConcurrent::ResultStoreBase +QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent15ResultStoreBaseE) +16 QtConcurrent::ResultStoreBase::~ResultStoreBase +24 QtConcurrent::ResultStoreBase::~ResultStoreBase + +Class QtConcurrent::ResultStoreBase + size=48 align=8 + base size=44 base align=8 +QtConcurrent::ResultStoreBase (0x7f3e5699d930) 0 + vptr=((& QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE) + 16u) + +Vtable for QFutureInterfaceBase +QFutureInterfaceBase::_ZTV20QFutureInterfaceBase: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QFutureInterfaceBase) +16 QFutureInterfaceBase::~QFutureInterfaceBase +24 QFutureInterfaceBase::~QFutureInterfaceBase + +Class QFutureInterfaceBase + size=16 align=8 + base size=16 base align=8 +QFutureInterfaceBase (0x7f3e569dad90) 0 + vptr=((& QFutureInterfaceBase::_ZTV20QFutureInterfaceBase) + 16u) + +Vtable for QFutureWatcherBase +QFutureWatcherBase::_ZTV18QFutureWatcherBase: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFutureWatcherBase) +16 QFutureWatcherBase::metaObject +24 QFutureWatcherBase::qt_metacast +32 QFutureWatcherBase::qt_metacall +40 QFutureWatcherBase::~QFutureWatcherBase +48 QFutureWatcherBase::~QFutureWatcherBase +56 QFutureWatcherBase::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QFutureWatcherBase::connectNotify +104 QFutureWatcherBase::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QFutureWatcherBase + size=16 align=8 + base size=16 base align=8 +QFutureWatcherBase (0x7f3e568c0690) 0 + vptr=((& QFutureWatcherBase::_ZTV18QFutureWatcherBase) + 16u) + QObject (0x7f3e568c0700) 0 + primary-for QFutureWatcherBase (0x7f3e568c0690) + +Vtable for QThread +QThread::_ZTV7QThread: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QThread) +16 QThread::metaObject +24 QThread::qt_metacast +32 QThread::qt_metacall +40 QThread::~QThread +48 QThread::~QThread +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QThread::run + +Class QThread + size=16 align=8 + base size=16 base align=8 +QThread (0x7f3e56912a80) 0 + vptr=((& QThread::_ZTV7QThread) + 16u) + QObject (0x7f3e56912af0) 0 + primary-for QThread (0x7f3e56912a80) + +Vtable for QThreadPool +QThreadPool::_ZTV11QThreadPool: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QThreadPool) +16 QThreadPool::metaObject +24 QThreadPool::qt_metacast +32 QThreadPool::qt_metacall +40 QThreadPool::~QThreadPool +48 QThreadPool::~QThreadPool +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QThreadPool + size=16 align=8 + base size=16 base align=8 +QThreadPool (0x7f3e56938930) 0 + vptr=((& QThreadPool::_ZTV11QThreadPool) + 16u) + QObject (0x7f3e569389a0) 0 + primary-for QThreadPool (0x7f3e56938930) + +Class QWaitCondition + size=8 align=8 + base size=8 base align=8 +QWaitCondition (0x7f3e5694bee0) 0 + +Class QSemaphore + size=8 align=8 + base size=8 base align=8 +QSemaphore (0x7f3e56952460) 0 + +Class QtConcurrent::ThreadEngineBarrier + size=24 align=8 + base size=24 base align=8 +QtConcurrent::ThreadEngineBarrier (0x7f3e569529a0) 0 + +Vtable for QtConcurrent::ThreadEngineBase +QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent16ThreadEngineBaseE) +16 QtConcurrent::ThreadEngineBase::run +24 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +32 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +40 QtConcurrent::ThreadEngineBase::start +48 QtConcurrent::ThreadEngineBase::finish +56 QtConcurrent::ThreadEngineBase::threadFunction +64 QtConcurrent::ThreadEngineBase::shouldStartThread +72 QtConcurrent::ThreadEngineBase::shouldThrottleThread +80 __cxa_pure_virtual + +Class QtConcurrent::ThreadEngineBase + size=64 align=8 + base size=64 base align=8 +QtConcurrent::ThreadEngineBase (0x7f3e56952a80) 0 + vptr=((& QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE) + 16u) + QRunnable (0x7f3e56952af0) 0 + primary-for QtConcurrent::ThreadEngineBase (0x7f3e56952a80) + +VTT for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTTN12QtConcurrent12ThreadEngineIvEE: 2u entries +0 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 24u) +8 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 136u) + +Class QtConcurrent::BlockSizeManager + size=96 align=8 + base size=92 base align=8 +QtConcurrent::BlockSizeManager (0x7f3e567a0ee0) 0 + +Vtable for QFactoryInterface +QFactoryInterface::_ZTV17QFactoryInterface: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QFactoryInterface) +16 QFactoryInterface::~QFactoryInterface +24 QFactoryInterface::~QFactoryInterface +32 __cxa_pure_virtual + +Class QFactoryInterface + size=8 align=8 + base size=8 base align=8 +QFactoryInterface (0x7f3e56443d20) 0 nearly-empty + vptr=((& QFactoryInterface::_ZTV17QFactoryInterface) + 16u) + +Vtable for QTextCodecFactoryInterface +QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QTextCodecFactoryInterface) +16 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +24 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QTextCodecFactoryInterface + size=8 align=8 + base size=8 base align=8 +QTextCodecFactoryInterface (0x7f3e56275000) 0 nearly-empty + vptr=((& QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface) + 16u) + QFactoryInterface (0x7f3e56275070) 0 nearly-empty + primary-for QTextCodecFactoryInterface (0x7f3e56275000) + +Vtable for QTextCodecPlugin +QTextCodecPlugin::_ZTV16QTextCodecPlugin: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QTextCodecPlugin) +16 QTextCodecPlugin::metaObject +24 QTextCodecPlugin::qt_metacast +32 QTextCodecPlugin::qt_metacall +40 QTextCodecPlugin::~QTextCodecPlugin +48 QTextCodecPlugin::~QTextCodecPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 QTextCodecPlugin::keys +160 QTextCodecPlugin::create +168 (int (*)(...))-0x00000000000000010 +176 (int (*)(...))(& _ZTI16QTextCodecPlugin) +184 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD1Ev +192 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD0Ev +200 QTextCodecPlugin::_ZThn16_NK16QTextCodecPlugin4keysEv +208 QTextCodecPlugin::_ZThn16_N16QTextCodecPlugin6createERK7QString + +Class QTextCodecPlugin + size=24 align=8 + base size=24 base align=8 +QTextCodecPlugin (0x7f3e5627f580) 0 + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 16u) + QObject (0x7f3e56275a80) 0 + primary-for QTextCodecPlugin (0x7f3e5627f580) + QTextCodecFactoryInterface (0x7f3e56275af0) 16 nearly-empty + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 184u) + QFactoryInterface (0x7f3e56275b60) 16 nearly-empty + primary-for QTextCodecFactoryInterface (0x7f3e56275af0) + +Class QLibraryInfo + size=1 align=1 + base size=0 base align=1 +QLibraryInfo (0x7f3e562cb150) 0 empty + +Vtable for QEventLoop +QEventLoop::_ZTV10QEventLoop: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QEventLoop) +16 QEventLoop::metaObject +24 QEventLoop::qt_metacast +32 QEventLoop::qt_metacall +40 QEventLoop::~QEventLoop +48 QEventLoop::~QEventLoop +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QEventLoop + size=16 align=8 + base size=16 base align=8 +QEventLoop (0x7f3e562cb2a0) 0 + vptr=((& QEventLoop::_ZTV10QEventLoop) + 16u) + QObject (0x7f3e562cb310) 0 + primary-for QEventLoop (0x7f3e562cb2a0) + +Vtable for QAbstractEventDispatcher +QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QAbstractEventDispatcher) +16 QAbstractEventDispatcher::metaObject +24 QAbstractEventDispatcher::qt_metacast +32 QAbstractEventDispatcher::qt_metacall +40 QAbstractEventDispatcher::~QAbstractEventDispatcher +48 QAbstractEventDispatcher::~QAbstractEventDispatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 QAbstractEventDispatcher::startingUp +208 QAbstractEventDispatcher::closingDown + +Class QAbstractEventDispatcher + size=16 align=8 + base size=16 base align=8 +QAbstractEventDispatcher (0x7f3e56306bd0) 0 + vptr=((& QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher) + 16u) + QObject (0x7f3e56306c40) 0 + primary-for QAbstractEventDispatcher (0x7f3e56306bd0) + +Class QModelIndex + size=24 align=8 + base size=24 base align=8 +QModelIndex (0x7f3e5632ca80) 0 + +Class QPersistentModelIndex + size=8 align=8 + base size=8 base align=8 +QPersistentModelIndex (0x7f3e56357540) 0 + +Vtable for QAbstractItemModel +QAbstractItemModel::_ZTV18QAbstractItemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractItemModel) +16 QAbstractItemModel::metaObject +24 QAbstractItemModel::qt_metacast +32 QAbstractItemModel::qt_metacall +40 QAbstractItemModel::~QAbstractItemModel +48 QAbstractItemModel::~QAbstractItemModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractItemModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractItemModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractItemModel + size=16 align=8 + base size=16 base align=8 +QAbstractItemModel (0x7f3e56160850) 0 + vptr=((& QAbstractItemModel::_ZTV18QAbstractItemModel) + 16u) + QObject (0x7f3e561608c0) 0 + primary-for QAbstractItemModel (0x7f3e56160850) + +Vtable for QAbstractTableModel +QAbstractTableModel::_ZTV19QAbstractTableModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractTableModel) +16 QAbstractTableModel::metaObject +24 QAbstractTableModel::qt_metacast +32 QAbstractTableModel::qt_metacall +40 QAbstractTableModel::~QAbstractTableModel +48 QAbstractTableModel::~QAbstractTableModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractTableModel::index +120 QAbstractTableModel::parent +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractTableModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractTableModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractTableModel + size=16 align=8 + base size=16 base align=8 +QAbstractTableModel (0x7f3e561bbb60) 0 + vptr=((& QAbstractTableModel::_ZTV19QAbstractTableModel) + 16u) + QAbstractItemModel (0x7f3e561bbbd0) 0 + primary-for QAbstractTableModel (0x7f3e561bbb60) + QObject (0x7f3e561bbc40) 0 + primary-for QAbstractItemModel (0x7f3e561bbbd0) + +Vtable for QAbstractListModel +QAbstractListModel::_ZTV18QAbstractListModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractListModel) +16 QAbstractListModel::metaObject +24 QAbstractListModel::qt_metacast +32 QAbstractListModel::qt_metacall +40 QAbstractListModel::~QAbstractListModel +48 QAbstractListModel::~QAbstractListModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractListModel::index +120 QAbstractListModel::parent +128 __cxa_pure_virtual +136 QAbstractListModel::columnCount +144 QAbstractListModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractListModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractListModel + size=16 align=8 + base size=16 base align=8 +QAbstractListModel (0x7f3e561d80e0) 0 + vptr=((& QAbstractListModel::_ZTV18QAbstractListModel) + 16u) + QAbstractItemModel (0x7f3e561d8150) 0 + primary-for QAbstractListModel (0x7f3e561d80e0) + QObject (0x7f3e561d81c0) 0 + primary-for QAbstractItemModel (0x7f3e561d8150) + +Class QBasicTimer + size=4 align=4 + base size=4 base align=4 +QBasicTimer (0x7f3e56208230) 0 + +Vtable for QCoreApplication +QCoreApplication::_ZTV16QCoreApplication: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QCoreApplication) +16 QCoreApplication::metaObject +24 QCoreApplication::qt_metacast +32 QCoreApplication::qt_metacall +40 QCoreApplication::~QCoreApplication +48 QCoreApplication::~QCoreApplication +56 QCoreApplication::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCoreApplication::notify +120 QCoreApplication::compressEvent + +Class QCoreApplication + size=16 align=8 + base size=16 base align=8 +QCoreApplication (0x7f3e56216620) 0 + vptr=((& QCoreApplication::_ZTV16QCoreApplication) + 16u) + QObject (0x7f3e56216690) 0 + primary-for QCoreApplication (0x7f3e56216620) + +Class __exception + size=40 align=8 + base size=40 base align=8 +__exception (0x7f3e56248310) 0 + +Class QMetaMethod + size=16 align=8 + base size=12 base align=8 +QMetaMethod (0x7f3e560b5770) 0 + +Class QMetaEnum + size=16 align=8 + base size=12 base align=8 +QMetaEnum (0x7f3e560d1bd0) 0 + +Class QMetaProperty + size=32 align=8 + base size=32 base align=8 +QMetaProperty (0x7f3e560e0930) 0 + +Class QMetaClassInfo + size=16 align=8 + base size=12 base align=8 +QMetaClassInfo (0x7f3e560f0000) 0 + +Vtable for QMimeData +QMimeData::_ZTV9QMimeData: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QMimeData) +16 QMimeData::metaObject +24 QMimeData::qt_metacast +32 QMimeData::qt_metacall +40 QMimeData::~QMimeData +48 QMimeData::~QMimeData +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMimeData::hasFormat +120 QMimeData::formats +128 QMimeData::retrieveData + +Class QMimeData + size=16 align=8 + base size=16 base align=8 +QMimeData (0x7f3e560f0af0) 0 + vptr=((& QMimeData::_ZTV9QMimeData) + 16u) + QObject (0x7f3e560f0b60) 0 + primary-for QMimeData (0x7f3e560f0af0) + +Vtable for QObjectCleanupHandler +QObjectCleanupHandler::_ZTV21QObjectCleanupHandler: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QObjectCleanupHandler) +16 QObjectCleanupHandler::metaObject +24 QObjectCleanupHandler::qt_metacast +32 QObjectCleanupHandler::qt_metacall +40 QObjectCleanupHandler::~QObjectCleanupHandler +48 QObjectCleanupHandler::~QObjectCleanupHandler +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObjectCleanupHandler + size=24 align=8 + base size=24 base align=8 +QObjectCleanupHandler (0x7f3e56113380) 0 + vptr=((& QObjectCleanupHandler::_ZTV21QObjectCleanupHandler) + 16u) + QObject (0x7f3e561133f0) 0 + primary-for QObjectCleanupHandler (0x7f3e56113380) + +Vtable for QSharedMemory +QSharedMemory::_ZTV13QSharedMemory: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSharedMemory) +16 QSharedMemory::metaObject +24 QSharedMemory::qt_metacast +32 QSharedMemory::qt_metacall +40 QSharedMemory::~QSharedMemory +48 QSharedMemory::~QSharedMemory +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSharedMemory + size=16 align=8 + base size=16 base align=8 +QSharedMemory (0x7f3e561254d0) 0 + vptr=((& QSharedMemory::_ZTV13QSharedMemory) + 16u) + QObject (0x7f3e56125540) 0 + primary-for QSharedMemory (0x7f3e561254d0) + +Vtable for QSignalMapper +QSignalMapper::_ZTV13QSignalMapper: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSignalMapper) +16 QSignalMapper::metaObject +24 QSignalMapper::qt_metacast +32 QSignalMapper::qt_metacall +40 QSignalMapper::~QSignalMapper +48 QSignalMapper::~QSignalMapper +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSignalMapper + size=16 align=8 + base size=16 base align=8 +QSignalMapper (0x7f3e5613f2a0) 0 + vptr=((& QSignalMapper::_ZTV13QSignalMapper) + 16u) + QObject (0x7f3e5613f310) 0 + primary-for QSignalMapper (0x7f3e5613f2a0) + +Vtable for QSocketNotifier +QSocketNotifier::_ZTV15QSocketNotifier: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSocketNotifier) +16 QSocketNotifier::metaObject +24 QSocketNotifier::qt_metacast +32 QSocketNotifier::qt_metacall +40 QSocketNotifier::~QSocketNotifier +48 QSocketNotifier::~QSocketNotifier +56 QSocketNotifier::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSocketNotifier + size=32 align=8 + base size=25 base align=8 +QSocketNotifier (0x7f3e55f5c690) 0 + vptr=((& QSocketNotifier::_ZTV15QSocketNotifier) + 16u) + QObject (0x7f3e55f5c700) 0 + primary-for QSocketNotifier (0x7f3e55f5c690) + +Class QSystemSemaphore + size=8 align=8 + base size=8 base align=8 +QSystemSemaphore (0x7f3e55f74a10) 0 + +Vtable for QTimer +QTimer::_ZTV6QTimer: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QTimer) +16 QTimer::metaObject +24 QTimer::qt_metacast +32 QTimer::qt_metacall +40 QTimer::~QTimer +48 QTimer::~QTimer +56 QObject::event +64 QObject::eventFilter +72 QTimer::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTimer + size=32 align=8 + base size=29 base align=8 +QTimer (0x7f3e55f7f460) 0 + vptr=((& QTimer::_ZTV6QTimer) + 16u) + QObject (0x7f3e55f7f4d0) 0 + primary-for QTimer (0x7f3e55f7f460) + +Vtable for QTranslator +QTranslator::_ZTV11QTranslator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTranslator) +16 QTranslator::metaObject +24 QTranslator::qt_metacast +32 QTranslator::qt_metacall +40 QTranslator::~QTranslator +48 QTranslator::~QTranslator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTranslator::translate +120 QTranslator::isEmpty + +Class QTranslator + size=16 align=8 + base size=16 base align=8 +QTranslator (0x7f3e55fa49a0) 0 + vptr=((& QTranslator::_ZTV11QTranslator) + 16u) + QObject (0x7f3e55fa4a10) 0 + primary-for QTranslator (0x7f3e55fa49a0) + +Vtable for QLibrary +QLibrary::_ZTV8QLibrary: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QLibrary) +16 QLibrary::metaObject +24 QLibrary::qt_metacast +32 QLibrary::qt_metacall +40 QLibrary::~QLibrary +48 QLibrary::~QLibrary +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QLibrary + size=32 align=8 + base size=25 base align=8 +QLibrary (0x7f3e55fbf930) 0 + vptr=((& QLibrary::_ZTV8QLibrary) + 16u) + QObject (0x7f3e55fbf9a0) 0 + primary-for QLibrary (0x7f3e55fbf930) + +Vtable for QPluginLoader +QPluginLoader::_ZTV13QPluginLoader: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QPluginLoader) +16 QPluginLoader::metaObject +24 QPluginLoader::qt_metacast +32 QPluginLoader::qt_metacall +40 QPluginLoader::~QPluginLoader +48 QPluginLoader::~QPluginLoader +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QPluginLoader + size=32 align=8 + base size=25 base align=8 +QPluginLoader (0x7f3e5600c3f0) 0 + vptr=((& QPluginLoader::_ZTV13QPluginLoader) + 16u) + QObject (0x7f3e5600c460) 0 + primary-for QPluginLoader (0x7f3e5600c3f0) + +Class QUuid + size=16 align=4 + base size=16 base align=4 +QUuid (0x7f3e5601ab60) 0 + +Class QReadWriteLock + size=8 align=8 + base size=8 base align=8 +QReadWriteLock (0x7f3e560414d0) 0 + +Class QReadLocker + size=8 align=8 + base size=8 base align=8 +QReadLocker (0x7f3e56041b60) 0 + +Class QWriteLocker + size=8 align=8 + base size=8 base align=8 +QWriteLocker (0x7f3e55e61ee0) 0 + +Class QThreadStorageData + size=4 align=4 + base size=4 base align=4 +QThreadStorageData (0x7f3e55e7a2a0) 0 + +Vtable for QAbstractAnimation +QAbstractAnimation::_ZTV18QAbstractAnimation: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractAnimation) +16 QAbstractAnimation::metaObject +24 QAbstractAnimation::qt_metacast +32 QAbstractAnimation::qt_metacall +40 QAbstractAnimation::~QAbstractAnimation +48 QAbstractAnimation::~QAbstractAnimation +56 QAbstractAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAbstractAnimation::updateState +136 QAbstractAnimation::updateDirection + +Class QAbstractAnimation + size=16 align=8 + base size=16 base align=8 +QAbstractAnimation (0x7f3e55e7aa10) 0 + vptr=((& QAbstractAnimation::_ZTV18QAbstractAnimation) + 16u) + QObject (0x7f3e55e7aa80) 0 + primary-for QAbstractAnimation (0x7f3e55e7aa10) + +Vtable for QAnimationGroup +QAnimationGroup::_ZTV15QAnimationGroup: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QAnimationGroup) +16 QAnimationGroup::metaObject +24 QAnimationGroup::qt_metacast +32 QAnimationGroup::qt_metacall +40 QAnimationGroup::~QAnimationGroup +48 QAnimationGroup::~QAnimationGroup +56 QAnimationGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAbstractAnimation::updateState +136 QAbstractAnimation::updateDirection + +Class QAnimationGroup + size=16 align=8 + base size=16 base align=8 +QAnimationGroup (0x7f3e55eb1150) 0 + vptr=((& QAnimationGroup::_ZTV15QAnimationGroup) + 16u) + QAbstractAnimation (0x7f3e55eb11c0) 0 + primary-for QAnimationGroup (0x7f3e55eb1150) + QObject (0x7f3e55eb1230) 0 + primary-for QAbstractAnimation (0x7f3e55eb11c0) + +Vtable for QParallelAnimationGroup +QParallelAnimationGroup::_ZTV23QParallelAnimationGroup: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QParallelAnimationGroup) +16 QParallelAnimationGroup::metaObject +24 QParallelAnimationGroup::qt_metacast +32 QParallelAnimationGroup::qt_metacall +40 QParallelAnimationGroup::~QParallelAnimationGroup +48 QParallelAnimationGroup::~QParallelAnimationGroup +56 QParallelAnimationGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QParallelAnimationGroup::duration +120 QParallelAnimationGroup::updateCurrentTime +128 QParallelAnimationGroup::updateState +136 QParallelAnimationGroup::updateDirection + +Class QParallelAnimationGroup + size=16 align=8 + base size=16 base align=8 +QParallelAnimationGroup (0x7f3e55ecc000) 0 + vptr=((& QParallelAnimationGroup::_ZTV23QParallelAnimationGroup) + 16u) + QAnimationGroup (0x7f3e55ecc070) 0 + primary-for QParallelAnimationGroup (0x7f3e55ecc000) + QAbstractAnimation (0x7f3e55ecc0e0) 0 + primary-for QAnimationGroup (0x7f3e55ecc070) + QObject (0x7f3e55ecc150) 0 + primary-for QAbstractAnimation (0x7f3e55ecc0e0) + +Vtable for QPauseAnimation +QPauseAnimation::_ZTV15QPauseAnimation: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QPauseAnimation) +16 QPauseAnimation::metaObject +24 QPauseAnimation::qt_metacast +32 QPauseAnimation::qt_metacall +40 QPauseAnimation::~QPauseAnimation +48 QPauseAnimation::~QPauseAnimation +56 QPauseAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QPauseAnimation::duration +120 QPauseAnimation::updateCurrentTime +128 QAbstractAnimation::updateState +136 QAbstractAnimation::updateDirection + +Class QPauseAnimation + size=16 align=8 + base size=16 base align=8 +QPauseAnimation (0x7f3e55edbe70) 0 + vptr=((& QPauseAnimation::_ZTV15QPauseAnimation) + 16u) + QAbstractAnimation (0x7f3e55edbee0) 0 + primary-for QPauseAnimation (0x7f3e55edbe70) + QObject (0x7f3e55edbf50) 0 + primary-for QAbstractAnimation (0x7f3e55edbee0) + +Vtable for QVariantAnimation +QVariantAnimation::_ZTV17QVariantAnimation: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QVariantAnimation) +16 QVariantAnimation::metaObject +24 QVariantAnimation::qt_metacast +32 QVariantAnimation::qt_metacall +40 QVariantAnimation::~QVariantAnimation +48 QVariantAnimation::~QVariantAnimation +56 QVariantAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QVariantAnimation::duration +120 QVariantAnimation::updateCurrentTime +128 QVariantAnimation::updateState +136 QAbstractAnimation::updateDirection +144 __cxa_pure_virtual +152 QVariantAnimation::interpolated + +Class QVariantAnimation + size=16 align=8 + base size=16 base align=8 +QVariantAnimation (0x7f3e55ef78c0) 0 + vptr=((& QVariantAnimation::_ZTV17QVariantAnimation) + 16u) + QAbstractAnimation (0x7f3e55ef7930) 0 + primary-for QVariantAnimation (0x7f3e55ef78c0) + QObject (0x7f3e55ef79a0) 0 + primary-for QAbstractAnimation (0x7f3e55ef7930) + +Vtable for QPropertyAnimation +QPropertyAnimation::_ZTV18QPropertyAnimation: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QPropertyAnimation) +16 QPropertyAnimation::metaObject +24 QPropertyAnimation::qt_metacast +32 QPropertyAnimation::qt_metacall +40 QPropertyAnimation::~QPropertyAnimation +48 QPropertyAnimation::~QPropertyAnimation +56 QPropertyAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QVariantAnimation::duration +120 QVariantAnimation::updateCurrentTime +128 QPropertyAnimation::updateState +136 QAbstractAnimation::updateDirection +144 QPropertyAnimation::updateCurrentValue +152 QVariantAnimation::interpolated + +Class QPropertyAnimation + size=16 align=8 + base size=16 base align=8 +QPropertyAnimation (0x7f3e55f14b60) 0 + vptr=((& QPropertyAnimation::_ZTV18QPropertyAnimation) + 16u) + QVariantAnimation (0x7f3e55f14bd0) 0 + primary-for QPropertyAnimation (0x7f3e55f14b60) + QAbstractAnimation (0x7f3e55f14c40) 0 + primary-for QVariantAnimation (0x7f3e55f14bd0) + QObject (0x7f3e55f14cb0) 0 + primary-for QAbstractAnimation (0x7f3e55f14c40) + +Vtable for QSequentialAnimationGroup +QSequentialAnimationGroup::_ZTV25QSequentialAnimationGroup: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QSequentialAnimationGroup) +16 QSequentialAnimationGroup::metaObject +24 QSequentialAnimationGroup::qt_metacast +32 QSequentialAnimationGroup::qt_metacall +40 QSequentialAnimationGroup::~QSequentialAnimationGroup +48 QSequentialAnimationGroup::~QSequentialAnimationGroup +56 QSequentialAnimationGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QSequentialAnimationGroup::duration +120 QSequentialAnimationGroup::updateCurrentTime +128 QSequentialAnimationGroup::updateState +136 QSequentialAnimationGroup::updateDirection + +Class QSequentialAnimationGroup + size=16 align=8 + base size=16 base align=8 +QSequentialAnimationGroup (0x7f3e55f2fb60) 0 + vptr=((& QSequentialAnimationGroup::_ZTV25QSequentialAnimationGroup) + 16u) + QAnimationGroup (0x7f3e55f2fbd0) 0 + primary-for QSequentialAnimationGroup (0x7f3e55f2fb60) + QAbstractAnimation (0x7f3e55f2fc40) 0 + primary-for QAnimationGroup (0x7f3e55f2fbd0) + QObject (0x7f3e55f2fcb0) 0 + primary-for QAbstractAnimation (0x7f3e55f2fc40) + +Class QSslCertificate + size=8 align=8 + base size=8 base align=8 +QSslCertificate (0x7f3e55f47bd0) 0 + +Class QSslCipher + size=8 align=8 + base size=8 base align=8 +QSslCipher (0x7f3e55d62770) 0 + +Vtable for QAbstractSocket +QAbstractSocket::_ZTV15QAbstractSocket: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QAbstractSocket) +16 QAbstractSocket::metaObject +24 QAbstractSocket::qt_metacast +32 QAbstractSocket::qt_metacall +40 QAbstractSocket::~QAbstractSocket +48 QAbstractSocket::~QAbstractSocket +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractSocket::isSequential +120 QIODevice::open +128 QAbstractSocket::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QAbstractSocket::atEnd +168 QIODevice::reset +176 QAbstractSocket::bytesAvailable +184 QAbstractSocket::bytesToWrite +192 QAbstractSocket::canReadLine +200 QAbstractSocket::waitForReadyRead +208 QAbstractSocket::waitForBytesWritten +216 QAbstractSocket::readData +224 QAbstractSocket::readLineData +232 QAbstractSocket::writeData + +Class QAbstractSocket + size=16 align=8 + base size=16 base align=8 +QAbstractSocket (0x7f3e55d810e0) 0 + vptr=((& QAbstractSocket::_ZTV15QAbstractSocket) + 16u) + QIODevice (0x7f3e55d81150) 0 + primary-for QAbstractSocket (0x7f3e55d810e0) + QObject (0x7f3e55d811c0) 0 + primary-for QIODevice (0x7f3e55d81150) + +Vtable for QTcpSocket +QTcpSocket::_ZTV10QTcpSocket: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTcpSocket) +16 QTcpSocket::metaObject +24 QTcpSocket::qt_metacast +32 QTcpSocket::qt_metacall +40 QTcpSocket::~QTcpSocket +48 QTcpSocket::~QTcpSocket +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractSocket::isSequential +120 QIODevice::open +128 QAbstractSocket::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QAbstractSocket::atEnd +168 QIODevice::reset +176 QAbstractSocket::bytesAvailable +184 QAbstractSocket::bytesToWrite +192 QAbstractSocket::canReadLine +200 QAbstractSocket::waitForReadyRead +208 QAbstractSocket::waitForBytesWritten +216 QAbstractSocket::readData +224 QAbstractSocket::readLineData +232 QAbstractSocket::writeData + +Class QTcpSocket + size=16 align=8 + base size=16 base align=8 +QTcpSocket (0x7f3e55dbca10) 0 + vptr=((& QTcpSocket::_ZTV10QTcpSocket) + 16u) + QAbstractSocket (0x7f3e55dbca80) 0 + primary-for QTcpSocket (0x7f3e55dbca10) + QIODevice (0x7f3e55dbcaf0) 0 + primary-for QAbstractSocket (0x7f3e55dbca80) + QObject (0x7f3e55dbcb60) 0 + primary-for QIODevice (0x7f3e55dbcaf0) + +Class QSslError + size=8 align=8 + base size=8 base align=8 +QSslError (0x7f3e55dd74d0) 0 + +Vtable for QSslSocket +QSslSocket::_ZTV10QSslSocket: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QSslSocket) +16 QSslSocket::metaObject +24 QSslSocket::qt_metacast +32 QSslSocket::qt_metacall +40 QSslSocket::~QSslSocket +48 QSslSocket::~QSslSocket +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractSocket::isSequential +120 QIODevice::open +128 QSslSocket::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QSslSocket::atEnd +168 QIODevice::reset +176 QSslSocket::bytesAvailable +184 QSslSocket::bytesToWrite +192 QSslSocket::canReadLine +200 QSslSocket::waitForReadyRead +208 QSslSocket::waitForBytesWritten +216 QSslSocket::readData +224 QAbstractSocket::readLineData +232 QSslSocket::writeData + +Class QSslSocket + size=16 align=8 + base size=16 base align=8 +QSslSocket (0x7f3e55de33f0) 0 + vptr=((& QSslSocket::_ZTV10QSslSocket) + 16u) + QTcpSocket (0x7f3e55de3460) 0 + primary-for QSslSocket (0x7f3e55de33f0) + QAbstractSocket (0x7f3e55de34d0) 0 + primary-for QTcpSocket (0x7f3e55de3460) + QIODevice (0x7f3e55de3540) 0 + primary-for QAbstractSocket (0x7f3e55de34d0) + QObject (0x7f3e55de35b0) 0 + primary-for QIODevice (0x7f3e55de3540) + +Class QSslConfiguration + size=8 align=8 + base size=8 base align=8 +QSslConfiguration (0x7f3e55e234d0) 0 + +Class QSslKey + size=8 align=8 + base size=8 base align=8 +QSslKey (0x7f3e55e322a0) 0 + +Class QNetworkRequest + size=8 align=8 + base size=8 base align=8 +QNetworkRequest (0x7f3e55e32ee0) 0 + +Class QNetworkCacheMetaData + size=8 align=8 + base size=8 base align=8 +QNetworkCacheMetaData (0x7f3e55c60d90) 0 + +Vtable for QAbstractNetworkCache +QAbstractNetworkCache::_ZTV21QAbstractNetworkCache: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QAbstractNetworkCache) +16 QAbstractNetworkCache::metaObject +24 QAbstractNetworkCache::qt_metacast +32 QAbstractNetworkCache::qt_metacall +40 QAbstractNetworkCache::~QAbstractNetworkCache +48 QAbstractNetworkCache::~QAbstractNetworkCache +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QAbstractNetworkCache + size=16 align=8 + base size=16 base align=8 +QAbstractNetworkCache (0x7f3e55c90000) 0 + vptr=((& QAbstractNetworkCache::_ZTV21QAbstractNetworkCache) + 16u) + QObject (0x7f3e55c90070) 0 + primary-for QAbstractNetworkCache (0x7f3e55c90000) + +Vtable for QUrlInfo +QUrlInfo::_ZTV8QUrlInfo: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QUrlInfo) +16 QUrlInfo::~QUrlInfo +24 QUrlInfo::~QUrlInfo +32 QUrlInfo::setName +40 QUrlInfo::setDir +48 QUrlInfo::setFile +56 QUrlInfo::setSymLink +64 QUrlInfo::setOwner +72 QUrlInfo::setGroup +80 QUrlInfo::setSize +88 QUrlInfo::setWritable +96 QUrlInfo::setReadable +104 QUrlInfo::setPermissions +112 QUrlInfo::setLastModified + +Class QUrlInfo + size=16 align=8 + base size=16 base align=8 +QUrlInfo (0x7f3e55ca59a0) 0 + vptr=((& QUrlInfo::_ZTV8QUrlInfo) + 16u) + +Vtable for QFtp +QFtp::_ZTV4QFtp: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI4QFtp) +16 QFtp::metaObject +24 QFtp::qt_metacast +32 QFtp::qt_metacall +40 QFtp::~QFtp +48 QFtp::~QFtp +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QFtp + size=16 align=8 + base size=16 base align=8 +QFtp (0x7f3e55cb7930) 0 + vptr=((& QFtp::_ZTV4QFtp) + 16u) + QObject (0x7f3e55cb79a0) 0 + primary-for QFtp (0x7f3e55cb7930) + +Vtable for QHttpHeader +QHttpHeader::_ZTV11QHttpHeader: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QHttpHeader) +16 QHttpHeader::~QHttpHeader +24 QHttpHeader::~QHttpHeader +32 QHttpHeader::toString +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QHttpHeader::parseLine + +Class QHttpHeader + size=16 align=8 + base size=16 base align=8 +QHttpHeader (0x7f3e55ce4f50) 0 + vptr=((& QHttpHeader::_ZTV11QHttpHeader) + 16u) + +Vtable for QHttpResponseHeader +QHttpResponseHeader::_ZTV19QHttpResponseHeader: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QHttpResponseHeader) +16 QHttpResponseHeader::~QHttpResponseHeader +24 QHttpResponseHeader::~QHttpResponseHeader +32 QHttpResponseHeader::toString +40 QHttpResponseHeader::majorVersion +48 QHttpResponseHeader::minorVersion +56 QHttpResponseHeader::parseLine + +Class QHttpResponseHeader + size=16 align=8 + base size=16 base align=8 +QHttpResponseHeader (0x7f3e55ceae70) 0 + vptr=((& QHttpResponseHeader::_ZTV19QHttpResponseHeader) + 16u) + QHttpHeader (0x7f3e55ceaee0) 0 + primary-for QHttpResponseHeader (0x7f3e55ceae70) + +Vtable for QHttpRequestHeader +QHttpRequestHeader::_ZTV18QHttpRequestHeader: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QHttpRequestHeader) +16 QHttpRequestHeader::~QHttpRequestHeader +24 QHttpRequestHeader::~QHttpRequestHeader +32 QHttpRequestHeader::toString +40 QHttpRequestHeader::majorVersion +48 QHttpRequestHeader::minorVersion +56 QHttpRequestHeader::parseLine + +Class QHttpRequestHeader + size=16 align=8 + base size=16 base align=8 +QHttpRequestHeader (0x7f3e55d05af0) 0 + vptr=((& QHttpRequestHeader::_ZTV18QHttpRequestHeader) + 16u) + QHttpHeader (0x7f3e55d05b60) 0 + primary-for QHttpRequestHeader (0x7f3e55d05af0) + +Vtable for QHttp +QHttp::_ZTV5QHttp: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QHttp) +16 QHttp::metaObject +24 QHttp::qt_metacast +32 QHttp::qt_metacall +40 QHttp::~QHttp +48 QHttp::~QHttp +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QHttp + size=16 align=8 + base size=16 base align=8 +QHttp (0x7f3e55d14700) 0 + vptr=((& QHttp::_ZTV5QHttp) + 16u) + QObject (0x7f3e55d14770) 0 + primary-for QHttp (0x7f3e55d14700) + +Vtable for QNetworkAccessManager +QNetworkAccessManager::_ZTV21QNetworkAccessManager: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QNetworkAccessManager) +16 QNetworkAccessManager::metaObject +24 QNetworkAccessManager::qt_metacast +32 QNetworkAccessManager::qt_metacall +40 QNetworkAccessManager::~QNetworkAccessManager +48 QNetworkAccessManager::~QNetworkAccessManager +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QNetworkAccessManager::createRequest + +Class QNetworkAccessManager + size=16 align=8 + base size=16 base align=8 +QNetworkAccessManager (0x7f3e55d4c8c0) 0 + vptr=((& QNetworkAccessManager::_ZTV21QNetworkAccessManager) + 16u) + QObject (0x7f3e55d4c930) 0 + primary-for QNetworkAccessManager (0x7f3e55d4c8c0) + +Class QNetworkCookie + size=8 align=8 + base size=8 base align=8 +QNetworkCookie (0x7f3e55b60e00) 0 + +Vtable for QNetworkCookieJar +QNetworkCookieJar::_ZTV17QNetworkCookieJar: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QNetworkCookieJar) +16 QNetworkCookieJar::metaObject +24 QNetworkCookieJar::qt_metacast +32 QNetworkCookieJar::qt_metacall +40 QNetworkCookieJar::~QNetworkCookieJar +48 QNetworkCookieJar::~QNetworkCookieJar +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QNetworkCookieJar::cookiesForUrl +120 QNetworkCookieJar::setCookiesFromUrl + +Class QNetworkCookieJar + size=16 align=8 + base size=16 base align=8 +QNetworkCookieJar (0x7f3e55b6df50) 0 + vptr=((& QNetworkCookieJar::_ZTV17QNetworkCookieJar) + 16u) + QObject (0x7f3e55b6d9a0) 0 + primary-for QNetworkCookieJar (0x7f3e55b6df50) + +Vtable for QNetworkDiskCache +QNetworkDiskCache::_ZTV17QNetworkDiskCache: 23u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QNetworkDiskCache) +16 QNetworkDiskCache::metaObject +24 QNetworkDiskCache::qt_metacast +32 QNetworkDiskCache::qt_metacall +40 QNetworkDiskCache::~QNetworkDiskCache +48 QNetworkDiskCache::~QNetworkDiskCache +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QNetworkDiskCache::metaData +120 QNetworkDiskCache::updateMetaData +128 QNetworkDiskCache::data +136 QNetworkDiskCache::remove +144 QNetworkDiskCache::cacheSize +152 QNetworkDiskCache::prepare +160 QNetworkDiskCache::insert +168 QNetworkDiskCache::clear +176 QNetworkDiskCache::expire + +Class QNetworkDiskCache + size=16 align=8 + base size=16 base align=8 +QNetworkDiskCache (0x7f3e55b9ae00) 0 + vptr=((& QNetworkDiskCache::_ZTV17QNetworkDiskCache) + 16u) + QAbstractNetworkCache (0x7f3e55b9ae70) 0 + primary-for QNetworkDiskCache (0x7f3e55b9ae00) + QObject (0x7f3e55b9aee0) 0 + primary-for QAbstractNetworkCache (0x7f3e55b9ae70) + +Vtable for QNetworkReply +QNetworkReply::_ZTV13QNetworkReply: 33u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QNetworkReply) +16 QNetworkReply::metaObject +24 QNetworkReply::qt_metacast +32 QNetworkReply::qt_metacall +40 QNetworkReply::~QNetworkReply +48 QNetworkReply::~QNetworkReply +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QNetworkReply::isSequential +120 QIODevice::open +128 QNetworkReply::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QIODevice::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 __cxa_pure_virtual +224 QIODevice::readLineData +232 QNetworkReply::writeData +240 __cxa_pure_virtual +248 QNetworkReply::setReadBufferSize +256 QNetworkReply::ignoreSslErrors + +Class QNetworkReply + size=16 align=8 + base size=16 base align=8 +QNetworkReply (0x7f3e55bbf770) 0 + vptr=((& QNetworkReply::_ZTV13QNetworkReply) + 16u) + QIODevice (0x7f3e55bbf7e0) 0 + primary-for QNetworkReply (0x7f3e55bbf770) + QObject (0x7f3e55bbf850) 0 + primary-for QIODevice (0x7f3e55bbf7e0) + +Class QAuthenticator + size=8 align=8 + base size=8 base align=8 +QAuthenticator (0x7f3e55be53f0) 0 + +Class QIPv6Address + size=16 align=1 + base size=16 base align=1 +QIPv6Address (0x7f3e55be5cb0) 0 + +Class QHostAddress + size=8 align=8 + base size=8 base align=8 +QHostAddress (0x7f3e55bf1310) 0 + +Class QHostInfo + size=8 align=8 + base size=8 base align=8 +QHostInfo (0x7f3e55c22310) 0 + +Class QNetworkAddressEntry + size=8 align=8 + base size=8 base align=8 +QNetworkAddressEntry (0x7f3e55c22c40) 0 + +Class QNetworkInterface + size=8 align=8 + base size=8 base align=8 +QNetworkInterface (0x7f3e55c3a540) 0 + +Class QNetworkProxyQuery + size=8 align=8 + base size=8 base align=8 +QNetworkProxyQuery (0x7f3e55a88230) 0 + +Class QNetworkProxy + size=8 align=8 + base size=8 base align=8 +QNetworkProxy (0x7f3e55a9f4d0) 0 + +Vtable for QNetworkProxyFactory +QNetworkProxyFactory::_ZTV20QNetworkProxyFactory: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QNetworkProxyFactory) +16 QNetworkProxyFactory::~QNetworkProxyFactory +24 QNetworkProxyFactory::~QNetworkProxyFactory +32 __cxa_pure_virtual + +Class QNetworkProxyFactory + size=8 align=8 + base size=8 base align=8 +QNetworkProxyFactory (0x7f3e55ae2930) 0 nearly-empty + vptr=((& QNetworkProxyFactory::_ZTV20QNetworkProxyFactory) + 16u) + +Vtable for QLocalServer +QLocalServer::_ZTV12QLocalServer: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QLocalServer) +16 QLocalServer::metaObject +24 QLocalServer::qt_metacast +32 QLocalServer::qt_metacall +40 QLocalServer::~QLocalServer +48 QLocalServer::~QLocalServer +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QLocalServer::hasPendingConnections +120 QLocalServer::nextPendingConnection +128 QLocalServer::incomingConnection + +Class QLocalServer + size=16 align=8 + base size=16 base align=8 +QLocalServer (0x7f3e55ae2c40) 0 + vptr=((& QLocalServer::_ZTV12QLocalServer) + 16u) + QObject (0x7f3e55ae2cb0) 0 + primary-for QLocalServer (0x7f3e55ae2c40) + +Vtable for QLocalSocket +QLocalSocket::_ZTV12QLocalSocket: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QLocalSocket) +16 QLocalSocket::metaObject +24 QLocalSocket::qt_metacast +32 QLocalSocket::qt_metacall +40 QLocalSocket::~QLocalSocket +48 QLocalSocket::~QLocalSocket +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QLocalSocket::isSequential +120 QIODevice::open +128 QLocalSocket::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QIODevice::atEnd +168 QIODevice::reset +176 QLocalSocket::bytesAvailable +184 QLocalSocket::bytesToWrite +192 QLocalSocket::canReadLine +200 QLocalSocket::waitForReadyRead +208 QLocalSocket::waitForBytesWritten +216 QLocalSocket::readData +224 QIODevice::readLineData +232 QLocalSocket::writeData + +Class QLocalSocket + size=16 align=8 + base size=16 base align=8 +QLocalSocket (0x7f3e55b0f620) 0 + vptr=((& QLocalSocket::_ZTV12QLocalSocket) + 16u) + QIODevice (0x7f3e55b0f690) 0 + primary-for QLocalSocket (0x7f3e55b0f620) + QObject (0x7f3e55b0f700) 0 + primary-for QIODevice (0x7f3e55b0f690) + +Vtable for QTcpServer +QTcpServer::_ZTV10QTcpServer: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTcpServer) +16 QTcpServer::metaObject +24 QTcpServer::qt_metacast +32 QTcpServer::qt_metacall +40 QTcpServer::~QTcpServer +48 QTcpServer::~QTcpServer +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTcpServer::hasPendingConnections +120 QTcpServer::nextPendingConnection +128 QTcpServer::incomingConnection + +Class QTcpServer + size=16 align=8 + base size=16 base align=8 +QTcpServer (0x7f3e55b337e0) 0 + vptr=((& QTcpServer::_ZTV10QTcpServer) + 16u) + QObject (0x7f3e55b33850) 0 + primary-for QTcpServer (0x7f3e55b337e0) + +Vtable for QUdpSocket +QUdpSocket::_ZTV10QUdpSocket: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QUdpSocket) +16 QUdpSocket::metaObject +24 QUdpSocket::qt_metacast +32 QUdpSocket::qt_metacall +40 QUdpSocket::~QUdpSocket +48 QUdpSocket::~QUdpSocket +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractSocket::isSequential +120 QIODevice::open +128 QAbstractSocket::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QAbstractSocket::atEnd +168 QIODevice::reset +176 QAbstractSocket::bytesAvailable +184 QAbstractSocket::bytesToWrite +192 QAbstractSocket::canReadLine +200 QAbstractSocket::waitForReadyRead +208 QAbstractSocket::waitForBytesWritten +216 QAbstractSocket::readData +224 QAbstractSocket::readLineData +232 QAbstractSocket::writeData + +Class QUdpSocket + size=16 align=8 + base size=16 base align=8 +QUdpSocket (0x7f3e55b4e310) 0 + vptr=((& QUdpSocket::_ZTV10QUdpSocket) + 16u) + QAbstractSocket (0x7f3e55b4e380) 0 + primary-for QUdpSocket (0x7f3e55b4e310) + QIODevice (0x7f3e55b4e3f0) 0 + primary-for QAbstractSocket (0x7f3e55b4e380) + QObject (0x7f3e55b4e460) 0 + primary-for QIODevice (0x7f3e55b4e3f0) + diff --git a/tests/auto/bic/data/QtOpenGL.4.5.0.linux-gcc-amd64.txt b/tests/auto/bic/data/QtOpenGL.4.5.0.linux-gcc-amd64.txt new file mode 100644 index 0000000..2cd8122 --- /dev/null +++ b/tests/auto/bic/data/QtOpenGL.4.5.0.linux-gcc-amd64.txt @@ -0,0 +1,15777 @@ +Class QSysInfo + size=1 align=1 + base size=0 base align=1 +QSysInfo (0x7f5b98a8d460) 0 empty + +Class QBool + size=1 align=1 + base size=1 base align=1 +QBool (0x7f5b98aa2150) 0 + +Class qIsNull(double)::U + size=8 align=8 + base size=8 base align=8 +qIsNull(double)::U (0x7f5b98ab9540) 0 + +Class qIsNull(float)::U + size=4 align=4 + base size=4 base align=4 +qIsNull(float)::U (0x7f5b98ab97e0) 0 + +Class QFlag + size=4 align=4 + base size=4 base align=4 +QFlag (0x7f5b98af2620) 0 + +Class QIncompatibleFlag + size=4 align=4 + base size=4 base align=4 +QIncompatibleFlag (0x7f5b98af2e00) 0 + +Class QInternal + size=1 align=1 + base size=0 base align=1 +QInternal (0x7f5b988f0540) 0 empty + +Class QGenericArgument + size=16 align=8 + base size=16 base align=8 +QGenericArgument (0x7f5b988f0850) 0 + +Class QGenericReturnArgument + size=16 align=8 + base size=16 base align=8 +QGenericReturnArgument (0x7f5b9890c3f0) 0 + QGenericArgument (0x7f5b9890c460) 0 + +Class QMetaObject + size=32 align=8 + base size=32 base align=8 +QMetaObject (0x7f5b9890ccb0) 0 + +Class QMetaObjectExtraData + size=16 align=8 + base size=16 base align=8 +QMetaObjectExtraData (0x7f5b98733cb0) 0 + +Class QLatin1Char + size=1 align=1 + base size=1 base align=1 +QLatin1Char (0x7f5b9873c700) 0 + +Class QChar + size=2 align=2 + base size=2 base align=2 +QChar (0x7f5b987442a0) 0 + +Class QBasicAtomicInt + size=4 align=4 + base size=4 base align=4 +QBasicAtomicInt (0x7f5b987b0380) 0 + +Class QAtomicInt + size=4 align=4 + base size=4 base align=4 +QAtomicInt (0x7f5b987ecd20) 0 + QBasicAtomicInt (0x7f5b987ecd90) 0 + +Class __locale_struct + size=232 align=8 + base size=232 base align=8 +__locale_struct (0x7f5b988111c0) 0 + +Class QByteArray::Data + size=32 align=8 + base size=32 base align=8 +QByteArray::Data (0x7f5b986897e0) 0 + +Class QByteArray + size=8 align=8 + base size=8 base align=8 +QByteArray (0x7f5b98644540) 0 + +Class QByteRef + size=16 align=8 + base size=12 base align=8 +QByteRef (0x7f5b986dfa80) 0 + +Class QString::Null + size=1 align=1 + base size=0 base align=1 +QString::Null (0x7f5b985e7700) 0 empty + +Class QString::Data + size=32 align=8 + base size=32 base align=8 +QString::Data (0x7f5b985f8ee0) 0 + +Class QString + size=8 align=8 + base size=8 base align=8 +QString (0x7f5b985665b0) 0 + +Class QLatin1String + size=8 align=8 + base size=8 base align=8 +QLatin1String (0x7f5b984cf000) 0 + +Class QCharRef + size=16 align=8 + base size=12 base align=8 +QCharRef (0x7f5b98363620) 0 + +Class QConstString + size=8 align=8 + base size=8 base align=8 +QConstString (0x7f5b982afee0) 0 + QString (0x7f5b982aff50) 0 + +Class QStringRef + size=16 align=8 + base size=16 base align=8 +QStringRef (0x7f5b982d0bd0) 0 + +Vtable for std::exception +std::exception::_ZTVSt9exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9exception) +16 std::exception::~exception +24 std::exception::~exception +32 std::exception::what + +Class std::exception + size=8 align=8 + base size=8 base align=8 +std::exception (0x7f5b98189620) 0 nearly-empty + vptr=((& std::exception::_ZTVSt9exception) + 16u) + +Vtable for std::bad_exception +std::bad_exception::_ZTVSt13bad_exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13bad_exception) +16 std::bad_exception::~bad_exception +24 std::bad_exception::~bad_exception +32 std::bad_exception::what + +Class std::bad_exception + size=8 align=8 + base size=8 base align=8 +std::bad_exception (0x7f5b981ac000) 0 nearly-empty + vptr=((& std::bad_exception::_ZTVSt13bad_exception) + 16u) + std::exception (0x7f5b981ac070) 0 nearly-empty + primary-for std::bad_exception (0x7f5b981ac000) + +Vtable for std::bad_alloc +std::bad_alloc::_ZTVSt9bad_alloc: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9bad_alloc) +16 std::bad_alloc::~bad_alloc +24 std::bad_alloc::~bad_alloc +32 std::bad_alloc::what + +Class std::bad_alloc + size=8 align=8 + base size=8 base align=8 +std::bad_alloc (0x7f5b981ac8c0) 0 nearly-empty + vptr=((& std::bad_alloc::_ZTVSt9bad_alloc) + 16u) + std::exception (0x7f5b981ac930) 0 nearly-empty + primary-for std::bad_alloc (0x7f5b981ac8c0) + +Class std::nothrow_t + size=1 align=1 + base size=0 base align=1 +std::nothrow_t (0x7f5b981c00e0) 0 empty + +Class QListData::Data + size=32 align=8 + base size=32 base align=8 +QListData::Data (0x7f5b981c0620) 0 + +Class QListData + size=8 align=8 + base size=8 base align=8 +QListData (0x7f5b981c05b0) 0 + +Vtable for QObjectData +QObjectData::_ZTV11QObjectData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QObjectData) +16 __cxa_pure_virtual +24 __cxa_pure_virtual + +Class QObjectData + size=40 align=8 + base size=40 base align=8 +QObjectData (0x7f5b980c2bd0) 0 + vptr=((& QObjectData::_ZTV11QObjectData) + 16u) + +Vtable for QObject +QObject::_ZTV7QObject: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QObject) +16 QObject::metaObject +24 QObject::qt_metacast +32 QObject::qt_metacall +40 QObject::~QObject +48 QObject::~QObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObject + size=16 align=8 + base size=16 base align=8 +QObject (0x7f5b980c2ee0) 0 + vptr=((& QObject::_ZTV7QObject) + 16u) + +Vtable for QObjectUserData +QObjectUserData::_ZTV15QObjectUserData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QObjectUserData) +16 QObjectUserData::~QObjectUserData +24 QObjectUserData::~QObjectUserData + +Class QObjectUserData + size=8 align=8 + base size=8 base align=8 +QObjectUserData (0x7f5b97f513f0) 0 nearly-empty + vptr=((& QObjectUserData::_ZTV15QObjectUserData) + 16u) + +Vtable for QIODevice +QIODevice::_ZTV9QIODevice: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QIODevice) +16 QIODevice::metaObject +24 QIODevice::qt_metacast +32 QIODevice::qt_metacall +40 QIODevice::~QIODevice +48 QIODevice::~QIODevice +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QIODevice::isSequential +120 QIODevice::open +128 QIODevice::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QIODevice::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 __cxa_pure_virtual +224 QIODevice::readLineData +232 __cxa_pure_virtual + +Class QIODevice + size=16 align=8 + base size=16 base align=8 +QIODevice (0x7f5b97f51930) 0 + vptr=((& QIODevice::_ZTV9QIODevice) + 16u) + QObject (0x7f5b97f519a0) 0 + primary-for QIODevice (0x7f5b97f51930) + +Vtable for QDataStream +QDataStream::_ZTV11QDataStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QDataStream) +16 QDataStream::~QDataStream +24 QDataStream::~QDataStream + +Class QDataStream + size=40 align=8 + base size=40 base align=8 +QDataStream (0x7f5b97fc92a0) 0 + vptr=((& QDataStream::_ZTV11QDataStream) + 16u) + +Class QHashData::Node + size=16 align=8 + base size=16 base align=8 +QHashData::Node (0x7f5b97e50150) 0 + +Class QHashData + size=40 align=8 + base size=40 base align=8 +QHashData (0x7f5b97e500e0) 0 + +Class QHashDummyValue + size=1 align=1 + base size=0 base align=1 +QHashDummyValue (0x7f5b97e5fee0) 0 empty + +Class QMapData::Node + size=16 align=8 + base size=16 base align=8 +QMapData::Node (0x7f5b97d71690) 0 + +Class QMapData + size=128 align=8 + base size=128 base align=8 +QMapData (0x7f5b97d71620) 0 + +Vtable for QSystemLocale +QSystemLocale::_ZTV13QSystemLocale: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSystemLocale) +16 QSystemLocale::~QSystemLocale +24 QSystemLocale::~QSystemLocale +32 QSystemLocale::query +40 QSystemLocale::fallbackLocale + +Class QSystemLocale + size=8 align=8 + base size=8 base align=8 +QSystemLocale (0x7f5b97c86e00) 0 nearly-empty + vptr=((& QSystemLocale::_ZTV13QSystemLocale) + 16u) + +Class QLocale::Data + size=4 align=2 + base size=4 base align=2 +QLocale::Data (0x7f5b97ce43f0) 0 + +Class QLocale + size=8 align=8 + base size=8 base align=8 +QLocale (0x7f5b97ca70e0) 0 + +Class QTextCodec::ConverterState + size=32 align=8 + base size=32 base align=8 +QTextCodec::ConverterState (0x7f5b97b31e70) 0 + +Vtable for QTextCodec +QTextCodec::_ZTV10QTextCodec: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextCodec) +16 __cxa_pure_virtual +24 QTextCodec::aliases +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QTextCodec::~QTextCodec +64 QTextCodec::~QTextCodec + +Class QTextCodec + size=8 align=8 + base size=8 base align=8 +QTextCodec (0x7f5b97d1aa80) 0 nearly-empty + vptr=((& QTextCodec::_ZTV10QTextCodec) + 16u) + +Class QTextEncoder + size=40 align=8 + base size=40 base align=8 +QTextEncoder (0x7f5b97b9c3f0) 0 + +Class QTextDecoder + size=40 align=8 + base size=40 base align=8 +QTextDecoder (0x7f5b97ba7230) 0 + +Class _IO_marker + size=24 align=8 + base size=24 base align=8 +_IO_marker (0x7f5b97bb02a0) 0 + +Class _IO_FILE + size=216 align=8 + base size=216 base align=8 +_IO_FILE (0x7f5b97bb0310) 0 + +Vtable for QTextStream +QTextStream::_ZTV11QTextStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTextStream) +16 QTextStream::~QTextStream +24 QTextStream::~QTextStream + +Class QTextStream + size=16 align=8 + base size=16 base align=8 +QTextStream (0x7f5b97bb03f0) 0 + vptr=((& QTextStream::_ZTV11QTextStream) + 16u) + +Class QTextStreamManipulator + size=40 align=8 + base size=38 base align=8 +QTextStreamManipulator (0x7f5b97a49ee0) 0 + +Vtable for QTextIStream +QTextIStream::_ZTV12QTextIStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextIStream) +16 QTextIStream::~QTextIStream +24 QTextIStream::~QTextIStream + +Class QTextIStream + size=16 align=8 + base size=16 base align=8 +QTextIStream (0x7f5b97a751c0) 0 + vptr=((& QTextIStream::_ZTV12QTextIStream) + 16u) + QTextStream (0x7f5b97a75230) 0 + primary-for QTextIStream (0x7f5b97a751c0) + +Vtable for QTextOStream +QTextOStream::_ZTV12QTextOStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextOStream) +16 QTextOStream::~QTextOStream +24 QTextOStream::~QTextOStream + +Class QTextOStream + size=16 align=8 + base size=16 base align=8 +QTextOStream (0x7f5b97a8a070) 0 + vptr=((& QTextOStream::_ZTV12QTextOStream) + 16u) + QTextStream (0x7f5b97a8a0e0) 0 + primary-for QTextOStream (0x7f5b97a8a070) + +Class wait + size=4 align=4 + base size=4 base align=4 +wait (0x7f5b97a95ee0) 0 + +Class timespec + size=16 align=8 + base size=16 base align=8 +timespec (0x7f5b97aa2230) 0 + +Class timeval + size=16 align=8 + base size=16 base align=8 +timeval (0x7f5b97aa22a0) 0 + +Class __pthread_internal_list + size=16 align=8 + base size=16 base align=8 +__pthread_internal_list (0x7f5b97aa23f0) 0 + +Class random_data + size=48 align=8 + base size=48 base align=8 +random_data (0x7f5b97aa29a0) 0 + +Class drand48_data + size=24 align=8 + base size=24 base align=8 +drand48_data (0x7f5b97aa2a10) 0 + +Class QVectorData + size=16 align=4 + base size=16 base align=4 +QVectorData (0x7f5b97aa2a80) 0 + +Class QDebug::Stream + size=40 align=8 + base size=34 base align=8 +QDebug::Stream (0x7f5b97a20230) 0 + +Class QDebug + size=8 align=8 + base size=8 base align=8 +QDebug (0x7f5b97a201c0) 0 + +Class QNoDebug + size=1 align=1 + base size=0 base align=1 +QNoDebug (0x7f5b978bc070) 0 empty + +Vtable for QFile +QFile::_ZTV5QFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QFile) +16 QFile::metaObject +24 QFile::qt_metacast +32 QFile::qt_metacall +40 QFile::~QFile +48 QFile::~QFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QFile::fileEngine + +Class QFile + size=16 align=8 + base size=16 base align=8 +QFile (0x7f5b978cd620) 0 + vptr=((& QFile::_ZTV5QFile) + 16u) + QIODevice (0x7f5b978cd690) 0 + primary-for QFile (0x7f5b978cd620) + QObject (0x7f5b978cd700) 0 + primary-for QIODevice (0x7f5b978cd690) + +Vtable for QTemporaryFile +QTemporaryFile::_ZTV14QTemporaryFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QTemporaryFile) +16 QTemporaryFile::metaObject +24 QTemporaryFile::qt_metacast +32 QTemporaryFile::qt_metacall +40 QTemporaryFile::~QTemporaryFile +48 QTemporaryFile::~QTemporaryFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QTemporaryFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QTemporaryFile::fileEngine + +Class QTemporaryFile + size=16 align=8 + base size=16 base align=8 +QTemporaryFile (0x7f5b97737850) 0 + vptr=((& QTemporaryFile::_ZTV14QTemporaryFile) + 16u) + QFile (0x7f5b977378c0) 0 + primary-for QTemporaryFile (0x7f5b97737850) + QIODevice (0x7f5b97737930) 0 + primary-for QFile (0x7f5b977378c0) + QObject (0x7f5b977379a0) 0 + primary-for QIODevice (0x7f5b97737930) + +Class QFileInfo + size=8 align=8 + base size=8 base align=8 +QFileInfo (0x7f5b9775af50) 0 + +Class QRegExp + size=8 align=8 + base size=8 base align=8 +QRegExp (0x7f5b977b5770) 0 + +Class QStringMatcher + size=1048 align=8 + base size=1048 base align=8 +QStringMatcher (0x7f5b978025b0) 0 + +Class QStringList + size=8 align=8 + base size=8 base align=8 +QStringList (0x7f5b97814070) 0 + QList (0x7f5b978140e0) 0 + +Class QDir + size=8 align=8 + base size=8 base align=8 +QDir (0x7f5b976a5cb0) 0 + +Class QAbstractFileEngine::ExtensionOption + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionOption (0x7f5b9753ce70) 0 empty + +Class QAbstractFileEngine::ExtensionReturn + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionReturn (0x7f5b9753cee0) 0 empty + +Class QAbstractFileEngine::MapExtensionOption + size=24 align=8 + base size=20 base align=8 +QAbstractFileEngine::MapExtensionOption (0x7f5b9753cf50) 0 + QAbstractFileEngine::ExtensionOption (0x7f5b97551000) 0 empty + +Class QAbstractFileEngine::MapExtensionReturn + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::MapExtensionReturn (0x7f5b975511c0) 0 + QAbstractFileEngine::ExtensionReturn (0x7f5b97551230) 0 empty + +Class QAbstractFileEngine::UnMapExtensionOption + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::UnMapExtensionOption (0x7f5b975512a0) 0 + QAbstractFileEngine::ExtensionOption (0x7f5b97551310) 0 empty + +Vtable for QAbstractFileEngine +QAbstractFileEngine::_ZTV19QAbstractFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractFileEngine) +16 QAbstractFileEngine::~QAbstractFileEngine +24 QAbstractFileEngine::~QAbstractFileEngine +32 QAbstractFileEngine::open +40 QAbstractFileEngine::close +48 QAbstractFileEngine::flush +56 QAbstractFileEngine::size +64 QAbstractFileEngine::pos +72 QAbstractFileEngine::seek +80 QAbstractFileEngine::isSequential +88 QAbstractFileEngine::remove +96 QAbstractFileEngine::copy +104 QAbstractFileEngine::rename +112 QAbstractFileEngine::link +120 QAbstractFileEngine::mkdir +128 QAbstractFileEngine::rmdir +136 QAbstractFileEngine::setSize +144 QAbstractFileEngine::caseSensitive +152 QAbstractFileEngine::isRelativePath +160 QAbstractFileEngine::entryList +168 QAbstractFileEngine::fileFlags +176 QAbstractFileEngine::setPermissions +184 QAbstractFileEngine::fileName +192 QAbstractFileEngine::ownerId +200 QAbstractFileEngine::owner +208 QAbstractFileEngine::fileTime +216 QAbstractFileEngine::setFileName +224 QAbstractFileEngine::handle +232 QAbstractFileEngine::beginEntryList +240 QAbstractFileEngine::endEntryList +248 QAbstractFileEngine::read +256 QAbstractFileEngine::readLine +264 QAbstractFileEngine::write +272 QAbstractFileEngine::extension +280 QAbstractFileEngine::supportsExtension + +Class QAbstractFileEngine + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngine (0x7f5b9752de00) 0 + vptr=((& QAbstractFileEngine::_ZTV19QAbstractFileEngine) + 16u) + +Vtable for QAbstractFileEngineHandler +QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QAbstractFileEngineHandler) +16 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +24 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +32 __cxa_pure_virtual + +Class QAbstractFileEngineHandler + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngineHandler (0x7f5b97583000) 0 nearly-empty + vptr=((& QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler) + 16u) + +Vtable for QAbstractFileEngineIterator +QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QAbstractFileEngineIterator) +16 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +24 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QAbstractFileEngineIterator::currentFileInfo +64 QAbstractFileEngineIterator::entryInfo + +Class QAbstractFileEngineIterator + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngineIterator (0x7f5b975831c0) 0 + vptr=((& QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator) + 16u) + +Vtable for QFSFileEngine +QFSFileEngine::_ZTV13QFSFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QFSFileEngine) +16 QFSFileEngine::~QFSFileEngine +24 QFSFileEngine::~QFSFileEngine +32 QFSFileEngine::open +40 QFSFileEngine::close +48 QFSFileEngine::flush +56 QFSFileEngine::size +64 QFSFileEngine::pos +72 QFSFileEngine::seek +80 QFSFileEngine::isSequential +88 QFSFileEngine::remove +96 QFSFileEngine::copy +104 QFSFileEngine::rename +112 QFSFileEngine::link +120 QFSFileEngine::mkdir +128 QFSFileEngine::rmdir +136 QFSFileEngine::setSize +144 QFSFileEngine::caseSensitive +152 QFSFileEngine::isRelativePath +160 QFSFileEngine::entryList +168 QFSFileEngine::fileFlags +176 QFSFileEngine::setPermissions +184 QFSFileEngine::fileName +192 QFSFileEngine::ownerId +200 QFSFileEngine::owner +208 QFSFileEngine::fileTime +216 QFSFileEngine::setFileName +224 QFSFileEngine::handle +232 QFSFileEngine::beginEntryList +240 QFSFileEngine::endEntryList +248 QFSFileEngine::read +256 QFSFileEngine::readLine +264 QFSFileEngine::write +272 QFSFileEngine::extension +280 QFSFileEngine::supportsExtension + +Class QFSFileEngine + size=16 align=8 + base size=16 base align=8 +QFSFileEngine (0x7f5b97583a10) 0 + vptr=((& QFSFileEngine::_ZTV13QFSFileEngine) + 16u) + QAbstractFileEngine (0x7f5b97583a80) 0 + primary-for QFSFileEngine (0x7f5b97583a10) + +Vtable for QProcess +QProcess::_ZTV8QProcess: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QProcess) +16 QProcess::metaObject +24 QProcess::qt_metacast +32 QProcess::qt_metacall +40 QProcess::~QProcess +48 QProcess::~QProcess +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QProcess::isSequential +120 QIODevice::open +128 QProcess::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QProcess::atEnd +168 QIODevice::reset +176 QProcess::bytesAvailable +184 QProcess::bytesToWrite +192 QProcess::canReadLine +200 QProcess::waitForReadyRead +208 QProcess::waitForBytesWritten +216 QProcess::readData +224 QIODevice::readLineData +232 QProcess::writeData +240 QProcess::setupChildProcess + +Class QProcess + size=16 align=8 + base size=16 base align=8 +QProcess (0x7f5b97599d20) 0 + vptr=((& QProcess::_ZTV8QProcess) + 16u) + QIODevice (0x7f5b97599d90) 0 + primary-for QProcess (0x7f5b97599d20) + QObject (0x7f5b97599e00) 0 + primary-for QIODevice (0x7f5b97599d90) + +Class QResource + size=8 align=8 + base size=8 base align=8 +QResource (0x7f5b975d6230) 0 + +Vtable for QDirIterator +QDirIterator::_ZTV12QDirIterator: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QDirIterator) +16 QDirIterator::~QDirIterator +24 QDirIterator::~QDirIterator + +Class QDirIterator + size=16 align=8 + base size=16 base align=8 +QDirIterator (0x7f5b975d6cb0) 0 + vptr=((& QDirIterator::_ZTV12QDirIterator) + 16u) + +Vtable for QBuffer +QBuffer::_ZTV7QBuffer: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QBuffer) +16 QBuffer::metaObject +24 QBuffer::qt_metacast +32 QBuffer::qt_metacall +40 QBuffer::~QBuffer +48 QBuffer::~QBuffer +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QBuffer::connectNotify +104 QBuffer::disconnectNotify +112 QIODevice::isSequential +120 QBuffer::open +128 QBuffer::close +136 QBuffer::pos +144 QBuffer::size +152 QBuffer::seek +160 QBuffer::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QBuffer::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QBuffer::readData +224 QIODevice::readLineData +232 QBuffer::writeData + +Class QBuffer + size=16 align=8 + base size=16 base align=8 +QBuffer (0x7f5b97606a80) 0 + vptr=((& QBuffer::_ZTV7QBuffer) + 16u) + QIODevice (0x7f5b97606af0) 0 + primary-for QBuffer (0x7f5b97606a80) + QObject (0x7f5b97606b60) 0 + primary-for QIODevice (0x7f5b97606af0) + +Vtable for QFileSystemWatcher +QFileSystemWatcher::_ZTV18QFileSystemWatcher: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFileSystemWatcher) +16 QFileSystemWatcher::metaObject +24 QFileSystemWatcher::qt_metacast +32 QFileSystemWatcher::qt_metacall +40 QFileSystemWatcher::~QFileSystemWatcher +48 QFileSystemWatcher::~QFileSystemWatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QFileSystemWatcher + size=16 align=8 + base size=16 base align=8 +QFileSystemWatcher (0x7f5b9740d690) 0 + vptr=((& QFileSystemWatcher::_ZTV18QFileSystemWatcher) + 16u) + QObject (0x7f5b9740d700) 0 + primary-for QFileSystemWatcher (0x7f5b9740d690) + +Class QUrl + size=8 align=8 + base size=8 base align=8 +QUrl (0x7f5b9741ebd0) 0 + +Class QMetaType + size=1 align=1 + base size=0 base align=1 +QMetaType (0x7f5b974a83f0) 0 empty + +Class QVariant::PrivateShared + size=16 align=8 + base size=12 base align=8 +QVariant::PrivateShared (0x7f5b9737e930) 0 + +Class QVariant::Private::Data + size=8 align=8 + base size=8 base align=8 +QVariant::Private::Data (0x7f5b9737ec40) 0 + +Class QVariant::Private + size=16 align=8 + base size=12 base align=8 +QVariant::Private (0x7f5b9737ea10) 0 + +Class QVariant::Handler + size=72 align=8 + base size=72 base align=8 +QVariant::Handler (0x7f5b9738e930) 0 + +Class QVariant + size=16 align=8 + base size=16 base align=8 +QVariant (0x7f5b9734eaf0) 0 + +Class QVariantComparisonHelper + size=8 align=8 + base size=8 base align=8 +QVariantComparisonHelper (0x7f5b97232cb0) 0 + +Vtable for QSettings +QSettings::_ZTV9QSettings: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QSettings) +16 QSettings::metaObject +24 QSettings::qt_metacast +32 QSettings::qt_metacall +40 QSettings::~QSettings +48 QSettings::~QSettings +56 QSettings::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSettings + size=16 align=8 + base size=16 base align=8 +QSettings (0x7f5b97256cb0) 0 + vptr=((& QSettings::_ZTV9QSettings) + 16u) + QObject (0x7f5b97256d20) 0 + primary-for QSettings (0x7f5b97256cb0) + +Class QXmlStreamStringRef + size=16 align=8 + base size=16 base align=8 +QXmlStreamStringRef (0x7f5b972da070) 0 + +Class QXmlStreamAttribute + size=80 align=8 + base size=73 base align=8 +QXmlStreamAttribute (0x7f5b972f6850) 0 + +Class QXmlStreamAttributes + size=8 align=8 + base size=8 base align=8 +QXmlStreamAttributes (0x7f5b9711f380) 0 + QVector (0x7f5b9711f3f0) 0 + +Class QXmlStreamNamespaceDeclaration + size=40 align=8 + base size=40 base align=8 +QXmlStreamNamespaceDeclaration (0x7f5b9711f850) 0 + +Class QXmlStreamNotationDeclaration + size=56 align=8 + base size=56 base align=8 +QXmlStreamNotationDeclaration (0x7f5b971611c0) 0 + +Class QXmlStreamEntityDeclaration + size=88 align=8 + base size=88 base align=8 +QXmlStreamEntityDeclaration (0x7f5b97180070) 0 + +Vtable for QXmlStreamEntityResolver +QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QXmlStreamEntityResolver) +16 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +24 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +32 QXmlStreamEntityResolver::resolveEntity +40 QXmlStreamEntityResolver::resolveUndeclaredEntity + +Class QXmlStreamEntityResolver + size=8 align=8 + base size=8 base align=8 +QXmlStreamEntityResolver (0x7f5b971999a0) 0 nearly-empty + vptr=((& QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver) + 16u) + +Class QXmlStreamReader + size=8 align=8 + base size=8 base align=8 +QXmlStreamReader (0x7f5b97199b60) 0 + +Class QXmlStreamWriter + size=8 align=8 + base size=8 base align=8 +QXmlStreamWriter (0x7f5b971d7a10) 0 + +Class QPoint + size=8 align=4 + base size=8 base align=4 +QPoint (0x7f5b97015150) 0 + +Class QPointF + size=16 align=8 + base size=16 base align=8 +QPointF (0x7f5b9704bd90) 0 + +Class QLine + size=16 align=4 + base size=16 base align=4 +QLine (0x7f5b9708abd0) 0 + +Class QLineF + size=32 align=8 + base size=32 base align=8 +QLineF (0x7f5b970c4a80) 0 + +Class QSize + size=8 align=4 + base size=8 base align=4 +QSize (0x7f5b96f1f540) 0 + +Class QSizeF + size=16 align=8 + base size=16 base align=8 +QSizeF (0x7f5b96f6a380) 0 + +Class QRect + size=16 align=4 + base size=16 base align=4 +QRect (0x7f5b96fb69a0) 0 + +Class QRectF + size=32 align=8 + base size=32 base align=8 +QRectF (0x7f5b96e6e380) 0 + +Class QSharedData + size=4 align=4 + base size=4 base align=4 +QSharedData (0x7f5b96d11150) 0 + +Vtable for QtSharedPointer::ExternalRefCountData +QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN15QtSharedPointer20ExternalRefCountDataE) +16 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +24 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +32 QtSharedPointer::ExternalRefCountData::destroy + +Class QtSharedPointer::ExternalRefCountData + size=16 align=8 + base size=16 base align=8 +QtSharedPointer::ExternalRefCountData (0x7f5b96d41af0) 0 + vptr=((& QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE) + 16u) + +Class QLinkedListData + size=32 align=8 + base size=32 base align=8 +QLinkedListData (0x7f5b96dc8c40) 0 + +Class QBitArray + size=8 align=8 + base size=8 base align=8 +QBitArray (0x7f5b96c93b60) 0 + +Class QBitRef + size=16 align=8 + base size=12 base align=8 +QBitRef (0x7f5b96b08930) 0 + +Class QByteArrayMatcher + size=1040 align=8 + base size=1040 base align=8 +QByteArrayMatcher (0x7f5b96b23310) 0 + +Class QCryptographicHash + size=8 align=8 + base size=8 base align=8 +QCryptographicHash (0x7f5b96b36a10) 0 + +Class QTextBoundaryFinder + size=48 align=8 + base size=48 base align=8 +QTextBoundaryFinder (0x7f5b96b62460) 0 + +Class QDate + size=4 align=4 + base size=4 base align=4 +QDate (0x7f5b96b797e0) 0 + +Class QTime + size=4 align=4 + base size=4 base align=4 +QTime (0x7f5b96ba0770) 0 + +Class QDateTime + size=8 align=8 + base size=8 base align=8 +QDateTime (0x7f5b96bc1d20) 0 + +Vtable for QTimeLine +QTimeLine::_ZTV9QTimeLine: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTimeLine) +16 QTimeLine::metaObject +24 QTimeLine::qt_metacast +32 QTimeLine::qt_metacall +40 QTimeLine::~QTimeLine +48 QTimeLine::~QTimeLine +56 QObject::event +64 QObject::eventFilter +72 QTimeLine::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTimeLine::valueForTime + +Class QTimeLine + size=16 align=8 + base size=16 base align=8 +QTimeLine (0x7f5b969f31c0) 0 + vptr=((& QTimeLine::_ZTV9QTimeLine) + 16u) + QObject (0x7f5b969f3230) 0 + primary-for QTimeLine (0x7f5b969f31c0) + +Vtable for QRunnable +QRunnable::_ZTV9QRunnable: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QRunnable) +16 __cxa_pure_virtual +24 QRunnable::~QRunnable +32 QRunnable::~QRunnable + +Class QRunnable + size=16 align=8 + base size=12 base align=8 +QRunnable (0x7f5b96a1b070) 0 + vptr=((& QRunnable::_ZTV9QRunnable) + 16u) + +Class QMutex + size=8 align=8 + base size=8 base align=8 +QMutex (0x7f5b96a27700) 0 + +Class QMutexLocker + size=8 align=8 + base size=8 base align=8 +QMutexLocker (0x7f5b96a372a0) 0 + +Vtable for QtConcurrent::Exception +QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent9ExceptionE) +16 QtConcurrent::Exception::~Exception +24 QtConcurrent::Exception::~Exception +32 std::exception::what +40 QtConcurrent::Exception::raise +48 QtConcurrent::Exception::clone + +Class QtConcurrent::Exception + size=8 align=8 + base size=8 base align=8 +QtConcurrent::Exception (0x7f5b96a4e5b0) 0 nearly-empty + vptr=((& QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE) + 16u) + std::exception (0x7f5b96a4e620) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7f5b96a4e5b0) + +Vtable for QtConcurrent::UnhandledException +QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent18UnhandledExceptionE) +16 QtConcurrent::UnhandledException::~UnhandledException +24 QtConcurrent::UnhandledException::~UnhandledException +32 std::exception::what +40 QtConcurrent::UnhandledException::raise +48 QtConcurrent::UnhandledException::clone + +Class QtConcurrent::UnhandledException + size=8 align=8 + base size=8 base align=8 +QtConcurrent::UnhandledException (0x7f5b96a4e850) 0 nearly-empty + vptr=((& QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE) + 16u) + QtConcurrent::Exception (0x7f5b96a4e8c0) 0 nearly-empty + primary-for QtConcurrent::UnhandledException (0x7f5b96a4e850) + std::exception (0x7f5b96a4e930) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7f5b96a4e8c0) + +Class QtConcurrent::internal::ExceptionHolder + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionHolder (0x7f5b96a4eb60) 0 + +Class QtConcurrent::internal::ExceptionStore + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionStore (0x7f5b96a4eee0) 0 + +Class QtConcurrent::ResultItem + size=16 align=8 + base size=16 base align=8 +QtConcurrent::ResultItem (0x7f5b96a4ef50) 0 + +Class QtConcurrent::ResultIteratorBase + size=16 align=8 + base size=12 base align=8 +QtConcurrent::ResultIteratorBase (0x7f5b96a63e70) 0 + +Vtable for QtConcurrent::ResultStoreBase +QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent15ResultStoreBaseE) +16 QtConcurrent::ResultStoreBase::~ResultStoreBase +24 QtConcurrent::ResultStoreBase::~ResultStoreBase + +Class QtConcurrent::ResultStoreBase + size=48 align=8 + base size=44 base align=8 +QtConcurrent::ResultStoreBase (0x7f5b96a69a10) 0 + vptr=((& QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE) + 16u) + +Vtable for QFutureInterfaceBase +QFutureInterfaceBase::_ZTV20QFutureInterfaceBase: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QFutureInterfaceBase) +16 QFutureInterfaceBase::~QFutureInterfaceBase +24 QFutureInterfaceBase::~QFutureInterfaceBase + +Class QFutureInterfaceBase + size=16 align=8 + base size=16 base align=8 +QFutureInterfaceBase (0x7f5b96aa7e70) 0 + vptr=((& QFutureInterfaceBase::_ZTV20QFutureInterfaceBase) + 16u) + +Vtable for QThread +QThread::_ZTV7QThread: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QThread) +16 QThread::metaObject +24 QThread::qt_metacast +32 QThread::qt_metacall +40 QThread::~QThread +48 QThread::~QThread +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QThread::run + +Class QThread + size=16 align=8 + base size=16 base align=8 +QThread (0x7f5b9698ae00) 0 + vptr=((& QThread::_ZTV7QThread) + 16u) + QObject (0x7f5b9698ae70) 0 + primary-for QThread (0x7f5b9698ae00) + +Vtable for QThreadPool +QThreadPool::_ZTV11QThreadPool: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QThreadPool) +16 QThreadPool::metaObject +24 QThreadPool::qt_metacast +32 QThreadPool::qt_metacall +40 QThreadPool::~QThreadPool +48 QThreadPool::~QThreadPool +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QThreadPool + size=16 align=8 + base size=16 base align=8 +QThreadPool (0x7f5b969bccb0) 0 + vptr=((& QThreadPool::_ZTV11QThreadPool) + 16u) + QObject (0x7f5b969bcd20) 0 + primary-for QThreadPool (0x7f5b969bccb0) + +Class QWaitCondition + size=8 align=8 + base size=8 base align=8 +QWaitCondition (0x7f5b969d8540) 0 + +Class QtConcurrent::ThreadEngineSemaphore + size=24 align=8 + base size=24 base align=8 +QtConcurrent::ThreadEngineSemaphore (0x7f5b969d8a80) 0 + +Vtable for QtConcurrent::ThreadEngineBase +QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent16ThreadEngineBaseE) +16 QtConcurrent::ThreadEngineBase::run +24 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +32 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +40 QtConcurrent::ThreadEngineBase::start +48 QtConcurrent::ThreadEngineBase::finish +56 QtConcurrent::ThreadEngineBase::threadFunction +64 QtConcurrent::ThreadEngineBase::shouldStartThread +72 QtConcurrent::ThreadEngineBase::shouldThrottleThread +80 __cxa_pure_virtual + +Class QtConcurrent::ThreadEngineBase + size=64 align=8 + base size=64 base align=8 +QtConcurrent::ThreadEngineBase (0x7f5b967f6460) 0 + vptr=((& QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE) + 16u) + QRunnable (0x7f5b967f64d0) 0 + primary-for QtConcurrent::ThreadEngineBase (0x7f5b967f6460) + +VTT for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTTN12QtConcurrent12ThreadEngineIvEE: 2u entries +0 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 24u) +8 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 136u) + +Class std::input_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::input_iterator_tag (0x7f5b96838850) 0 empty + +Class std::output_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::output_iterator_tag (0x7f5b968388c0) 0 empty + +Class std::forward_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::forward_iterator_tag (0x7f5b96838930) 0 empty + std::input_iterator_tag (0x7f5b968389a0) 0 empty + +Class std::bidirectional_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::bidirectional_iterator_tag (0x7f5b96838a10) 0 empty + std::forward_iterator_tag (0x7f5b96838a80) 0 empty + std::input_iterator_tag (0x7f5b96838af0) 0 empty + +Class std::random_access_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::random_access_iterator_tag (0x7f5b96838b60) 0 empty + std::bidirectional_iterator_tag (0x7f5b96838bd0) 0 empty + std::forward_iterator_tag (0x7f5b96838c40) 0 empty + std::input_iterator_tag (0x7f5b96838cb0) 0 empty + +Class std::__true_type + size=1 align=1 + base size=0 base align=1 +std::__true_type (0x7f5b9684c2a0) 0 empty + +Class std::__false_type + size=1 align=1 + base size=0 base align=1 +std::__false_type (0x7f5b9684c310) 0 empty + +Class lconv + size=96 align=8 + base size=96 base align=8 +lconv (0x7f5b96628620) 0 + +Class sched_param + size=4 align=4 + base size=4 base align=4 +sched_param (0x7f5b96628a80) 0 + +Class __sched_param + size=4 align=4 + base size=4 base align=4 +__sched_param (0x7f5b96628af0) 0 + +Class tm + size=56 align=8 + base size=56 base align=8 +tm (0x7f5b96628bd0) 0 + +Class itimerspec + size=32 align=8 + base size=32 base align=8 +itimerspec (0x7f5b96628cb0) 0 + +Class _pthread_cleanup_buffer + size=32 align=8 + base size=32 base align=8 +_pthread_cleanup_buffer (0x7f5b96628d20) 0 + +Class __pthread_cleanup_frame + size=24 align=8 + base size=24 base align=8 +__pthread_cleanup_frame (0x7f5b96628e70) 0 + +Class __pthread_cleanup_class + size=24 align=8 + base size=24 base align=8 +__pthread_cleanup_class (0x7f5b96628ee0) 0 + +Vtable for __cxxabiv1::__forced_unwind +__cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN10__cxxabiv115__forced_unwindE) +16 __cxxabiv1::__forced_unwind::~__forced_unwind +24 __cxxabiv1::__forced_unwind::~__forced_unwind +32 __cxa_pure_virtual + +Class __cxxabiv1::__forced_unwind + size=8 align=8 + base size=8 base align=8 +__cxxabiv1::__forced_unwind (0x7f5b96534a80) 0 nearly-empty + vptr=((& __cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE) + 16u) + +Class std::locale + size=8 align=8 + base size=8 base align=8 +std::locale (0x7f5b963e45b0) 0 + +Vtable for std::locale::facet +std::locale::facet::_ZTVNSt6locale5facetE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTINSt6locale5facetE) +16 std::locale::facet::~facet +24 std::locale::facet::~facet + +Class std::locale::facet + size=16 align=8 + base size=12 base align=8 +std::locale::facet (0x7f5b96285cb0) 0 + vptr=((& std::locale::facet::_ZTVNSt6locale5facetE) + 16u) + +Class std::locale::id + size=8 align=8 + base size=8 base align=8 +std::locale::id (0x7f5b9629f2a0) 0 + +Class std::locale::_Impl + size=40 align=8 + base size=40 base align=8 +std::locale::_Impl (0x7f5b9629f8c0) 0 + +Vtable for std::ios_base::failure +std::ios_base::failure::_ZTVNSt8ios_base7failureE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTINSt8ios_base7failureE) +16 std::ios_base::failure::~failure +24 std::ios_base::failure::~failure +32 std::ios_base::failure::what + +Class std::ios_base::failure + size=16 align=8 + base size=16 base align=8 +std::ios_base::failure (0x7f5b96128070) 0 + vptr=((& std::ios_base::failure::_ZTVNSt8ios_base7failureE) + 16u) + std::exception (0x7f5b961280e0) 0 nearly-empty + primary-for std::ios_base::failure (0x7f5b96128070) + +Class std::ios_base::_Callback_list + size=24 align=8 + base size=24 base align=8 +std::ios_base::_Callback_list (0x7f5b96137310) 0 + +Class std::ios_base::_Words + size=16 align=8 + base size=16 base align=8 +std::ios_base::_Words (0x7f5b96137d90) 0 + +Class std::ios_base::Init + size=1 align=1 + base size=0 base align=1 +std::ios_base::Init (0x7f5b9613e4d0) 0 empty + +Vtable for std::ios_base +std::ios_base::_ZTVSt8ios_base: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt8ios_base) +16 std::ios_base::~ios_base +24 std::ios_base::~ios_base + +Class std::ios_base + size=216 align=8 + base size=216 base align=8 +std::ios_base (0x7f5b96128000) 0 + vptr=((& std::ios_base::_ZTVSt8ios_base) + 16u) + +Class std::ctype_base + size=1 align=1 + base size=0 base align=1 +std::ctype_base (0x7f5b961b7930) 0 empty + +Class std::__num_base + size=1 align=1 + base size=0 base align=1 +std::__num_base (0x7f5b960db1c0) 0 empty + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSo: 2u entries +0 ((& std::basic_ostream >::_ZTVSo) + 24u) +8 ((& std::basic_ostream >::_ZTVSo) + 64u) + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSt13basic_ostreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 24u) +8 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 64u) + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSi: 2u entries +0 ((& std::basic_istream >::_ZTVSi) + 24u) +8 ((& std::basic_istream >::_ZTVSi) + 64u) + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSt13basic_istreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 24u) +8 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 64u) + +Construction vtable for std::basic_istream > (0x7f5b95c10310 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd0_Si: 10u entries +0 24u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISi) +24 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +32 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +40 -24u +48 (int (*)(...))-0x00000000000000018 +56 (int (*)(...))(& _ZTISi) +64 std::basic_istream >::_ZTv0_n24_NSiD1Ev +72 std::basic_istream >::_ZTv0_n24_NSiD0Ev + +Construction vtable for std::basic_ostream > (0x7f5b95c10460 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd16_So: 10u entries +0 8u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISo) +24 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +32 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +40 -8u +48 (int (*)(...))-0x00000000000000008 +56 (int (*)(...))(& _ZTISo) +64 std::basic_ostream >::_ZTv0_n24_NSoD1Ev +72 std::basic_ostream >::_ZTv0_n24_NSoD0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSd: 7u entries +0 ((& std::basic_iostream >::_ZTVSd) + 24u) +8 ((& std::basic_iostream >::_ZTCSd0_Si) + 24u) +16 ((& std::basic_iostream >::_ZTCSd0_Si) + 64u) +24 ((& std::basic_iostream >::_ZTCSd16_So) + 24u) +32 ((& std::basic_iostream >::_ZTCSd16_So) + 64u) +40 ((& std::basic_iostream >::_ZTVSd) + 104u) +48 ((& std::basic_iostream >::_ZTVSd) + 64u) + +Construction vtable for std::basic_istream > (0x7f5b95c10620 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E: 10u entries +0 24u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +24 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +32 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +40 -24u +48 (int (*)(...))-0x00000000000000018 +56 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +64 std::basic_istream >::_ZTv0_n24_NSt13basic_istreamIwSt11char_traitsIwEED1Ev +72 std::basic_istream >::_ZTv0_n24_NSt13basic_istreamIwSt11char_traitsIwEED0Ev + +Construction vtable for std::basic_ostream > (0x7f5b95c10770 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE16_St13basic_ostreamIwS1_E: 10u entries +0 8u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +24 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +32 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +40 -8u +48 (int (*)(...))-0x00000000000000008 +56 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +64 std::basic_ostream >::_ZTv0_n24_NSt13basic_ostreamIwSt11char_traitsIwEED1Ev +72 std::basic_ostream >::_ZTv0_n24_NSt13basic_ostreamIwSt11char_traitsIwEED0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSt14basic_iostreamIwSt11char_traitsIwEE: 7u entries +0 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 24u) +8 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 24u) +16 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 64u) +24 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE16_St13basic_ostreamIwS1_E) + 24u) +32 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE16_St13basic_ostreamIwS1_E) + 64u) +40 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 104u) +48 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 64u) + +Class QtConcurrent::BlockSizeManager + size=96 align=8 + base size=92 base align=8 +QtConcurrent::BlockSizeManager (0x7f5b95c7a230) 0 + +Vtable for QFutureWatcherBase +QFutureWatcherBase::_ZTV18QFutureWatcherBase: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFutureWatcherBase) +16 QFutureWatcherBase::metaObject +24 QFutureWatcherBase::qt_metacast +32 QFutureWatcherBase::qt_metacall +40 QFutureWatcherBase::~QFutureWatcherBase +48 QFutureWatcherBase::~QFutureWatcherBase +56 QFutureWatcherBase::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QFutureWatcherBase::connectNotify +104 QFutureWatcherBase::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QFutureWatcherBase + size=16 align=8 + base size=16 base align=8 +QFutureWatcherBase (0x7f5b95845bd0) 0 + vptr=((& QFutureWatcherBase::_ZTV18QFutureWatcherBase) + 16u) + QObject (0x7f5b95845c40) 0 + primary-for QFutureWatcherBase (0x7f5b95845bd0) + +Vtable for QFactoryInterface +QFactoryInterface::_ZTV17QFactoryInterface: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QFactoryInterface) +16 QFactoryInterface::~QFactoryInterface +24 QFactoryInterface::~QFactoryInterface +32 __cxa_pure_virtual + +Class QFactoryInterface + size=8 align=8 + base size=8 base align=8 +QFactoryInterface (0x7f5b9575fe00) 0 nearly-empty + vptr=((& QFactoryInterface::_ZTV17QFactoryInterface) + 16u) + +Vtable for QTextCodecFactoryInterface +QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QTextCodecFactoryInterface) +16 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +24 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QTextCodecFactoryInterface + size=8 align=8 + base size=8 base align=8 +QTextCodecFactoryInterface (0x7f5b95780ee0) 0 nearly-empty + vptr=((& QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface) + 16u) + QFactoryInterface (0x7f5b95780f50) 0 nearly-empty + primary-for QTextCodecFactoryInterface (0x7f5b95780ee0) + +Vtable for QTextCodecPlugin +QTextCodecPlugin::_ZTV16QTextCodecPlugin: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QTextCodecPlugin) +16 QTextCodecPlugin::metaObject +24 QTextCodecPlugin::qt_metacast +32 QTextCodecPlugin::qt_metacall +40 QTextCodecPlugin::~QTextCodecPlugin +48 QTextCodecPlugin::~QTextCodecPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 QTextCodecPlugin::keys +160 QTextCodecPlugin::create +168 (int (*)(...))-0x00000000000000010 +176 (int (*)(...))(& _ZTI16QTextCodecPlugin) +184 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD1Ev +192 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD0Ev +200 QTextCodecPlugin::_ZThn16_NK16QTextCodecPlugin4keysEv +208 QTextCodecPlugin::_ZThn16_N16QTextCodecPlugin6createERK7QString + +Class QTextCodecPlugin + size=24 align=8 + base size=24 base align=8 +QTextCodecPlugin (0x7f5b95784e00) 0 + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 16u) + QObject (0x7f5b9578d7e0) 0 + primary-for QTextCodecPlugin (0x7f5b95784e00) + QTextCodecFactoryInterface (0x7f5b9578d850) 16 nearly-empty + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 184u) + QFactoryInterface (0x7f5b9578d8c0) 16 nearly-empty + primary-for QTextCodecFactoryInterface (0x7f5b9578d850) + +Class QLibraryInfo + size=1 align=1 + base size=0 base align=1 +QLibraryInfo (0x7f5b957a1700) 0 empty + +Vtable for QTranslator +QTranslator::_ZTV11QTranslator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTranslator) +16 QTranslator::metaObject +24 QTranslator::qt_metacast +32 QTranslator::qt_metacall +40 QTranslator::~QTranslator +48 QTranslator::~QTranslator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTranslator::translate +120 QTranslator::isEmpty + +Class QTranslator + size=16 align=8 + base size=16 base align=8 +QTranslator (0x7f5b955e4000) 0 + vptr=((& QTranslator::_ZTV11QTranslator) + 16u) + QObject (0x7f5b955e4070) 0 + primary-for QTranslator (0x7f5b955e4000) + +Class __exception + size=40 align=8 + base size=40 base align=8 +__exception (0x7f5b955f8f50) 0 + +Vtable for QMimeData +QMimeData::_ZTV9QMimeData: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QMimeData) +16 QMimeData::metaObject +24 QMimeData::qt_metacast +32 QMimeData::qt_metacall +40 QMimeData::~QMimeData +48 QMimeData::~QMimeData +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMimeData::hasFormat +120 QMimeData::formats +128 QMimeData::retrieveData + +Class QMimeData + size=16 align=8 + base size=16 base align=8 +QMimeData (0x7f5b95664150) 0 + vptr=((& QMimeData::_ZTV9QMimeData) + 16u) + QObject (0x7f5b956641c0) 0 + primary-for QMimeData (0x7f5b95664150) + +Vtable for QEventLoop +QEventLoop::_ZTV10QEventLoop: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QEventLoop) +16 QEventLoop::metaObject +24 QEventLoop::qt_metacast +32 QEventLoop::qt_metacall +40 QEventLoop::~QEventLoop +48 QEventLoop::~QEventLoop +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QEventLoop + size=16 align=8 + base size=16 base align=8 +QEventLoop (0x7f5b9567c9a0) 0 + vptr=((& QEventLoop::_ZTV10QEventLoop) + 16u) + QObject (0x7f5b9567ca10) 0 + primary-for QEventLoop (0x7f5b9567c9a0) + +Vtable for QEvent +QEvent::_ZTV6QEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QEvent) +16 QEvent::~QEvent +24 QEvent::~QEvent + +Class QEvent + size=24 align=8 + base size=20 base align=8 +QEvent (0x7f5b956bc310) 0 + vptr=((& QEvent::_ZTV6QEvent) + 16u) + +Vtable for QTimerEvent +QTimerEvent::_ZTV11QTimerEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTimerEvent) +16 QTimerEvent::~QTimerEvent +24 QTimerEvent::~QTimerEvent + +Class QTimerEvent + size=24 align=8 + base size=24 base align=8 +QTimerEvent (0x7f5b956d5ee0) 0 + vptr=((& QTimerEvent::_ZTV11QTimerEvent) + 16u) + QEvent (0x7f5b956d5f50) 0 + primary-for QTimerEvent (0x7f5b956d5ee0) + +Vtable for QChildEvent +QChildEvent::_ZTV11QChildEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QChildEvent) +16 QChildEvent::~QChildEvent +24 QChildEvent::~QChildEvent + +Class QChildEvent + size=32 align=8 + base size=32 base align=8 +QChildEvent (0x7f5b956d8380) 0 + vptr=((& QChildEvent::_ZTV11QChildEvent) + 16u) + QEvent (0x7f5b956d83f0) 0 + primary-for QChildEvent (0x7f5b956d8380) + +Vtable for QCustomEvent +QCustomEvent::_ZTV12QCustomEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QCustomEvent) +16 QCustomEvent::~QCustomEvent +24 QCustomEvent::~QCustomEvent + +Class QCustomEvent + size=24 align=8 + base size=20 base align=8 +QCustomEvent (0x7f5b954eb620) 0 + vptr=((& QCustomEvent::_ZTV12QCustomEvent) + 16u) + QEvent (0x7f5b954eb690) 0 + primary-for QCustomEvent (0x7f5b954eb620) + +Vtable for QDynamicPropertyChangeEvent +QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QDynamicPropertyChangeEvent) +16 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent +24 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent + +Class QDynamicPropertyChangeEvent + size=32 align=8 + base size=32 base align=8 +QDynamicPropertyChangeEvent (0x7f5b954ebe00) 0 + vptr=((& QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent) + 16u) + QEvent (0x7f5b954ebe70) 0 + primary-for QDynamicPropertyChangeEvent (0x7f5b954ebe00) + +Vtable for QCoreApplication +QCoreApplication::_ZTV16QCoreApplication: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QCoreApplication) +16 QCoreApplication::metaObject +24 QCoreApplication::qt_metacast +32 QCoreApplication::qt_metacall +40 QCoreApplication::~QCoreApplication +48 QCoreApplication::~QCoreApplication +56 QCoreApplication::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCoreApplication::notify +120 QCoreApplication::compressEvent + +Class QCoreApplication + size=16 align=8 + base size=16 base align=8 +QCoreApplication (0x7f5b954fb230) 0 + vptr=((& QCoreApplication::_ZTV16QCoreApplication) + 16u) + QObject (0x7f5b954fb2a0) 0 + primary-for QCoreApplication (0x7f5b954fb230) + +Vtable for QSharedMemory +QSharedMemory::_ZTV13QSharedMemory: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSharedMemory) +16 QSharedMemory::metaObject +24 QSharedMemory::qt_metacast +32 QSharedMemory::qt_metacall +40 QSharedMemory::~QSharedMemory +48 QSharedMemory::~QSharedMemory +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSharedMemory + size=16 align=8 + base size=16 base align=8 +QSharedMemory (0x7f5b95526a80) 0 + vptr=((& QSharedMemory::_ZTV13QSharedMemory) + 16u) + QObject (0x7f5b95526af0) 0 + primary-for QSharedMemory (0x7f5b95526a80) + +Class QModelIndex + size=24 align=8 + base size=24 base align=8 +QModelIndex (0x7f5b95544850) 0 + +Class QPersistentModelIndex + size=8 align=8 + base size=8 base align=8 +QPersistentModelIndex (0x7f5b9556d310) 0 + +Vtable for QAbstractItemModel +QAbstractItemModel::_ZTV18QAbstractItemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractItemModel) +16 QAbstractItemModel::metaObject +24 QAbstractItemModel::qt_metacast +32 QAbstractItemModel::qt_metacall +40 QAbstractItemModel::~QAbstractItemModel +48 QAbstractItemModel::~QAbstractItemModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractItemModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractItemModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractItemModel + size=16 align=8 + base size=16 base align=8 +QAbstractItemModel (0x7f5b9557c5b0) 0 + vptr=((& QAbstractItemModel::_ZTV18QAbstractItemModel) + 16u) + QObject (0x7f5b9557c620) 0 + primary-for QAbstractItemModel (0x7f5b9557c5b0) + +Vtable for QAbstractTableModel +QAbstractTableModel::_ZTV19QAbstractTableModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractTableModel) +16 QAbstractTableModel::metaObject +24 QAbstractTableModel::qt_metacast +32 QAbstractTableModel::qt_metacall +40 QAbstractTableModel::~QAbstractTableModel +48 QAbstractTableModel::~QAbstractTableModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractTableModel::index +120 QAbstractTableModel::parent +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractTableModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractTableModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractTableModel + size=16 align=8 + base size=16 base align=8 +QAbstractTableModel (0x7f5b955cd930) 0 + vptr=((& QAbstractTableModel::_ZTV19QAbstractTableModel) + 16u) + QAbstractItemModel (0x7f5b955cd9a0) 0 + primary-for QAbstractTableModel (0x7f5b955cd930) + QObject (0x7f5b955cda10) 0 + primary-for QAbstractItemModel (0x7f5b955cd9a0) + +Vtable for QAbstractListModel +QAbstractListModel::_ZTV18QAbstractListModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractListModel) +16 QAbstractListModel::metaObject +24 QAbstractListModel::qt_metacast +32 QAbstractListModel::qt_metacall +40 QAbstractListModel::~QAbstractListModel +48 QAbstractListModel::~QAbstractListModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractListModel::index +120 QAbstractListModel::parent +128 __cxa_pure_virtual +136 QAbstractListModel::columnCount +144 QAbstractListModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractListModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractListModel + size=16 align=8 + base size=16 base align=8 +QAbstractListModel (0x7f5b955d8ee0) 0 + vptr=((& QAbstractListModel::_ZTV18QAbstractListModel) + 16u) + QAbstractItemModel (0x7f5b955d8f50) 0 + primary-for QAbstractListModel (0x7f5b955d8ee0) + QObject (0x7f5b955d8230) 0 + primary-for QAbstractItemModel (0x7f5b955d8f50) + +Vtable for QSignalMapper +QSignalMapper::_ZTV13QSignalMapper: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSignalMapper) +16 QSignalMapper::metaObject +24 QSignalMapper::qt_metacast +32 QSignalMapper::qt_metacall +40 QSignalMapper::~QSignalMapper +48 QSignalMapper::~QSignalMapper +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSignalMapper + size=16 align=8 + base size=16 base align=8 +QSignalMapper (0x7f5b9541b000) 0 + vptr=((& QSignalMapper::_ZTV13QSignalMapper) + 16u) + QObject (0x7f5b9541b070) 0 + primary-for QSignalMapper (0x7f5b9541b000) + +Vtable for QObjectCleanupHandler +QObjectCleanupHandler::_ZTV21QObjectCleanupHandler: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QObjectCleanupHandler) +16 QObjectCleanupHandler::metaObject +24 QObjectCleanupHandler::qt_metacast +32 QObjectCleanupHandler::qt_metacall +40 QObjectCleanupHandler::~QObjectCleanupHandler +48 QObjectCleanupHandler::~QObjectCleanupHandler +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObjectCleanupHandler + size=24 align=8 + base size=24 base align=8 +QObjectCleanupHandler (0x7f5b954333f0) 0 + vptr=((& QObjectCleanupHandler::_ZTV21QObjectCleanupHandler) + 16u) + QObject (0x7f5b95433460) 0 + primary-for QObjectCleanupHandler (0x7f5b954333f0) + +Class QBasicTimer + size=4 align=4 + base size=4 base align=4 +QBasicTimer (0x7f5b95442540) 0 + +Vtable for QSocketNotifier +QSocketNotifier::_ZTV15QSocketNotifier: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSocketNotifier) +16 QSocketNotifier::metaObject +24 QSocketNotifier::qt_metacast +32 QSocketNotifier::qt_metacall +40 QSocketNotifier::~QSocketNotifier +48 QSocketNotifier::~QSocketNotifier +56 QSocketNotifier::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSocketNotifier + size=32 align=8 + base size=25 base align=8 +QSocketNotifier (0x7f5b9544e930) 0 + vptr=((& QSocketNotifier::_ZTV15QSocketNotifier) + 16u) + QObject (0x7f5b9544e9a0) 0 + primary-for QSocketNotifier (0x7f5b9544e930) + +Vtable for QTimer +QTimer::_ZTV6QTimer: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QTimer) +16 QTimer::metaObject +24 QTimer::qt_metacast +32 QTimer::qt_metacall +40 QTimer::~QTimer +48 QTimer::~QTimer +56 QObject::event +64 QObject::eventFilter +72 QTimer::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTimer + size=32 align=8 + base size=29 base align=8 +QTimer (0x7f5b9546acb0) 0 + vptr=((& QTimer::_ZTV6QTimer) + 16u) + QObject (0x7f5b9546ad20) 0 + primary-for QTimer (0x7f5b9546acb0) + +Vtable for QAbstractEventDispatcher +QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QAbstractEventDispatcher) +16 QAbstractEventDispatcher::metaObject +24 QAbstractEventDispatcher::qt_metacast +32 QAbstractEventDispatcher::qt_metacall +40 QAbstractEventDispatcher::~QAbstractEventDispatcher +48 QAbstractEventDispatcher::~QAbstractEventDispatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 QAbstractEventDispatcher::startingUp +208 QAbstractEventDispatcher::closingDown + +Class QAbstractEventDispatcher + size=16 align=8 + base size=16 base align=8 +QAbstractEventDispatcher (0x7f5b9548c2a0) 0 + vptr=((& QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher) + 16u) + QObject (0x7f5b9548c310) 0 + primary-for QAbstractEventDispatcher (0x7f5b9548c2a0) + +Class QMetaMethod + size=16 align=8 + base size=12 base align=8 +QMetaMethod (0x7f5b954a6150) 0 + +Class QMetaEnum + size=16 align=8 + base size=12 base align=8 +QMetaEnum (0x7f5b954c25b0) 0 + +Class QMetaProperty + size=32 align=8 + base size=32 base align=8 +QMetaProperty (0x7f5b954cf310) 0 + +Class QMetaClassInfo + size=16 align=8 + base size=12 base align=8 +QMetaClassInfo (0x7f5b954cf9a0) 0 + +Class QSystemSemaphore + size=8 align=8 + base size=8 base align=8 +QSystemSemaphore (0x7f5b952e24d0) 0 + +Vtable for QLibrary +QLibrary::_ZTV8QLibrary: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QLibrary) +16 QLibrary::metaObject +24 QLibrary::qt_metacast +32 QLibrary::qt_metacall +40 QLibrary::~QLibrary +48 QLibrary::~QLibrary +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QLibrary + size=32 align=8 + base size=25 base align=8 +QLibrary (0x7f5b952e2e00) 0 + vptr=((& QLibrary::_ZTV8QLibrary) + 16u) + QObject (0x7f5b952e2e70) 0 + primary-for QLibrary (0x7f5b952e2e00) + +Vtable for QPluginLoader +QPluginLoader::_ZTV13QPluginLoader: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QPluginLoader) +16 QPluginLoader::metaObject +24 QPluginLoader::qt_metacast +32 QPluginLoader::qt_metacall +40 QPluginLoader::~QPluginLoader +48 QPluginLoader::~QPluginLoader +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QPluginLoader + size=32 align=8 + base size=25 base align=8 +QPluginLoader (0x7f5b953288c0) 0 + vptr=((& QPluginLoader::_ZTV13QPluginLoader) + 16u) + QObject (0x7f5b95328930) 0 + primary-for QPluginLoader (0x7f5b953288c0) + +Class QUuid + size=16 align=4 + base size=16 base align=4 +QUuid (0x7f5b9534a070) 0 + +Class QSemaphore + size=8 align=8 + base size=8 base align=8 +QSemaphore (0x7f5b9536a9a0) 0 + +Class QThreadStorageData + size=4 align=4 + base size=4 base align=4 +QThreadStorageData (0x7f5b9536aee0) 0 + +Class QReadWriteLock + size=8 align=8 + base size=8 base align=8 +QReadWriteLock (0x7f5b9537b690) 0 + +Class QReadLocker + size=8 align=8 + base size=8 base align=8 +QReadLocker (0x7f5b9537bd20) 0 + +Class QWriteLocker + size=8 align=8 + base size=8 base align=8 +QWriteLocker (0x7f5b953ab0e0) 0 + +Class QColor + size=16 align=4 + base size=14 base align=4 +QColor (0x7f5b953c5e70) 0 + +Class QFont + size=16 align=8 + base size=12 base align=8 +QFont (0x7f5b9521d0e0) 0 + +Class QPolygon + size=8 align=8 + base size=8 base align=8 +QPolygon (0x7f5b95258ee0) 0 + QVector (0x7f5b95258f50) 0 + +Class QPolygonF + size=8 align=8 + base size=8 base align=8 +QPolygonF (0x7f5b952c1070) 0 + QVector (0x7f5b952c10e0) 0 + +Class QRegion::QRegionData + size=32 align=8 + base size=32 base align=8 +QRegion::QRegionData (0x7f5b950f65b0) 0 + +Class QRegion + size=8 align=8 + base size=8 base align=8 +QRegion (0x7f5b952d7cb0) 0 + +Class QMatrix + size=48 align=8 + base size=48 base align=8 +QMatrix (0x7f5b95109e00) 0 + +Class QPainterPath::Element + size=24 align=8 + base size=24 base align=8 +QPainterPath::Element (0x7f5b95140850) 0 + +Class QPainterPath + size=8 align=8 + base size=8 base align=8 +QPainterPath (0x7f5b951407e0) 0 + +Class QPainterPathPrivate + size=16 align=8 + base size=16 base align=8 +QPainterPathPrivate (0x7f5b95185bd0) 0 + +Class QPainterPathStroker + size=8 align=8 + base size=8 base align=8 +QPainterPathStroker (0x7f5b9518c770) 0 + +Class QTransform + size=88 align=8 + base size=88 base align=8 +QTransform (0x7f5b94ff1310) 0 + +Vtable for QPaintDevice +QPaintDevice::_ZTV12QPaintDevice: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QPaintDevice) +16 QPaintDevice::~QPaintDevice +24 QPaintDevice::~QPaintDevice +32 QPaintDevice::devType +40 __cxa_pure_virtual +48 QPaintDevice::metric + +Class QPaintDevice + size=16 align=8 + base size=10 base align=8 +QPaintDevice (0x7f5b95069620) 0 + vptr=((& QPaintDevice::_ZTV12QPaintDevice) + 16u) + +Class QImageTextKeyLang + size=16 align=8 + base size=16 base align=8 +QImageTextKeyLang (0x7f5b9508df50) 0 + +Vtable for QImage +QImage::_ZTV6QImage: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QImage) +16 QImage::~QImage +24 QImage::~QImage +32 QImage::devType +40 QImage::paintEngine +48 QImage::metric + +Class QImage + size=24 align=8 + base size=24 base align=8 +QImage (0x7f5b950bd7e0) 0 + vptr=((& QImage::_ZTV6QImage) + 16u) + QPaintDevice (0x7f5b950bd850) 0 + primary-for QImage (0x7f5b950bd7e0) + +Vtable for QPixmap +QPixmap::_ZTV7QPixmap: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QPixmap) +16 QPixmap::~QPixmap +24 QPixmap::~QPixmap +32 QPixmap::devType +40 QPixmap::paintEngine +48 QPixmap::metric + +Class QPixmap + size=24 align=8 + base size=24 base align=8 +QPixmap (0x7f5b94f5e230) 0 + vptr=((& QPixmap::_ZTV7QPixmap) + 16u) + QPaintDevice (0x7f5b94f5e2a0) 0 + primary-for QPixmap (0x7f5b94f5e230) + +Class QBrush + size=8 align=8 + base size=8 base align=8 +QBrush (0x7f5b94fac3f0) 0 + +Class QBrushData + size=112 align=8 + base size=112 base align=8 +QBrushData (0x7f5b94fcf000) 0 + +Class QGradient + size=64 align=8 + base size=64 base align=8 +QGradient (0x7f5b94dde1c0) 0 + +Class QLinearGradient + size=64 align=8 + base size=64 base align=8 +QLinearGradient (0x7f5b94deccb0) 0 + QGradient (0x7f5b94decd20) 0 + +Class QRadialGradient + size=64 align=8 + base size=64 base align=8 +QRadialGradient (0x7f5b94e19150) 0 + QGradient (0x7f5b94e191c0) 0 + +Class QConicalGradient + size=64 align=8 + base size=64 base align=8 +QConicalGradient (0x7f5b94e19700) 0 + QGradient (0x7f5b94e19770) 0 + +Class QPen + size=8 align=8 + base size=8 base align=8 +QPen (0x7f5b94e19a80) 0 + +Class QTextOption::Tab + size=16 align=8 + base size=14 base align=8 +QTextOption::Tab (0x7f5b94e44230) 0 + +Class QTextOption + size=32 align=8 + base size=32 base align=8 +QTextOption (0x7f5b94e441c0) 0 + +Class QTextLength + size=16 align=8 + base size=16 base align=8 +QTextLength (0x7f5b94e9f620) 0 + +Class QTextFormat + size=16 align=8 + base size=12 base align=8 +QTextFormat (0x7f5b94ebb9a0) 0 + +Class QTextCharFormat + size=16 align=8 + base size=12 base align=8 +QTextCharFormat (0x7f5b94d67a10) 0 + QTextFormat (0x7f5b94d67a80) 0 + +Class QTextBlockFormat + size=16 align=8 + base size=12 base align=8 +QTextBlockFormat (0x7f5b94dd5690) 0 + QTextFormat (0x7f5b94dd5700) 0 + +Class QTextListFormat + size=16 align=8 + base size=12 base align=8 +QTextListFormat (0x7f5b94bf1cb0) 0 + QTextFormat (0x7f5b94bf1d20) 0 + +Class QTextImageFormat + size=16 align=8 + base size=12 base align=8 +QTextImageFormat (0x7f5b94c021c0) 0 + QTextCharFormat (0x7f5b94c02230) 0 + QTextFormat (0x7f5b94c022a0) 0 + +Class QTextFrameFormat + size=16 align=8 + base size=12 base align=8 +QTextFrameFormat (0x7f5b94c0d8c0) 0 + QTextFormat (0x7f5b94c0d930) 0 + +Class QTextTableFormat + size=16 align=8 + base size=12 base align=8 +QTextTableFormat (0x7f5b94c437e0) 0 + QTextFrameFormat (0x7f5b94c43850) 0 + QTextFormat (0x7f5b94c438c0) 0 + +Class QTextTableCellFormat + size=16 align=8 + base size=12 base align=8 +QTextTableCellFormat (0x7f5b94c5e690) 0 + QTextCharFormat (0x7f5b94c5e700) 0 + QTextFormat (0x7f5b94c5e770) 0 + +Vtable for QTextObject +QTextObject::_ZTV11QTextObject: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTextObject) +16 QTextObject::metaObject +24 QTextObject::qt_metacast +32 QTextObject::qt_metacall +40 QTextObject::~QTextObject +48 QTextObject::~QTextObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTextObject + size=16 align=8 + base size=16 base align=8 +QTextObject (0x7f5b94c75b60) 0 + vptr=((& QTextObject::_ZTV11QTextObject) + 16u) + QObject (0x7f5b94c75bd0) 0 + primary-for QTextObject (0x7f5b94c75b60) + +Vtable for QTextBlockGroup +QTextBlockGroup::_ZTV15QTextBlockGroup: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QTextBlockGroup) +16 QTextBlockGroup::metaObject +24 QTextBlockGroup::qt_metacast +32 QTextBlockGroup::qt_metacall +40 QTextBlockGroup::~QTextBlockGroup +48 QTextBlockGroup::~QTextBlockGroup +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTextBlockGroup::blockInserted +120 QTextBlockGroup::blockRemoved +128 QTextBlockGroup::blockFormatChanged + +Class QTextBlockGroup + size=16 align=8 + base size=16 base align=8 +QTextBlockGroup (0x7f5b94c8d3f0) 0 + vptr=((& QTextBlockGroup::_ZTV15QTextBlockGroup) + 16u) + QTextObject (0x7f5b94c8d460) 0 + primary-for QTextBlockGroup (0x7f5b94c8d3f0) + QObject (0x7f5b94c8d4d0) 0 + primary-for QTextObject (0x7f5b94c8d460) + +Vtable for QTextFrameLayoutData +QTextFrameLayoutData::_ZTV20QTextFrameLayoutData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QTextFrameLayoutData) +16 QTextFrameLayoutData::~QTextFrameLayoutData +24 QTextFrameLayoutData::~QTextFrameLayoutData + +Class QTextFrameLayoutData + size=8 align=8 + base size=8 base align=8 +QTextFrameLayoutData (0x7f5b94c9dcb0) 0 nearly-empty + vptr=((& QTextFrameLayoutData::_ZTV20QTextFrameLayoutData) + 16u) + +Class QTextFrame::iterator + size=32 align=8 + base size=28 base align=8 +QTextFrame::iterator (0x7f5b94ca9700) 0 + +Vtable for QTextFrame +QTextFrame::_ZTV10QTextFrame: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextFrame) +16 QTextFrame::metaObject +24 QTextFrame::qt_metacast +32 QTextFrame::qt_metacall +40 QTextFrame::~QTextFrame +48 QTextFrame::~QTextFrame +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTextFrame + size=16 align=8 + base size=16 base align=8 +QTextFrame (0x7f5b94c9de00) 0 + vptr=((& QTextFrame::_ZTV10QTextFrame) + 16u) + QTextObject (0x7f5b94c9de70) 0 + primary-for QTextFrame (0x7f5b94c9de00) + QObject (0x7f5b94c9dee0) 0 + primary-for QTextObject (0x7f5b94c9de70) + +Vtable for QTextBlockUserData +QTextBlockUserData::_ZTV18QTextBlockUserData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QTextBlockUserData) +16 QTextBlockUserData::~QTextBlockUserData +24 QTextBlockUserData::~QTextBlockUserData + +Class QTextBlockUserData + size=8 align=8 + base size=8 base align=8 +QTextBlockUserData (0x7f5b94adb850) 0 nearly-empty + vptr=((& QTextBlockUserData::_ZTV18QTextBlockUserData) + 16u) + +Class QTextBlock::iterator + size=24 align=8 + base size=20 base align=8 +QTextBlock::iterator (0x7f5b94ae81c0) 0 + +Class QTextBlock + size=16 align=8 + base size=12 base align=8 +QTextBlock (0x7f5b94adb9a0) 0 + +Class QTextFragment + size=16 align=8 + base size=16 base align=8 +QTextFragment (0x7f5b94b1f310) 0 + +Class QFontMetrics + size=8 align=8 + base size=8 base align=8 +QFontMetrics (0x7f5b94b3c4d0) 0 + +Class QFontMetricsF + size=8 align=8 + base size=8 base align=8 +QFontMetricsF (0x7f5b94b52930) 0 + +Class QFontDatabase + size=8 align=8 + base size=8 base align=8 +QFontDatabase (0x7f5b94b5f850) 0 + +Vtable for QAbstractUndoItem +QAbstractUndoItem::_ZTV17QAbstractUndoItem: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAbstractUndoItem) +16 __cxa_pure_virtual +24 __cxa_pure_virtual +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QAbstractUndoItem + size=8 align=8 + base size=8 base align=8 +QAbstractUndoItem (0x7f5b94b74850) 0 nearly-empty + vptr=((& QAbstractUndoItem::_ZTV17QAbstractUndoItem) + 16u) + +Vtable for QTextDocument +QTextDocument::_ZTV13QTextDocument: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QTextDocument) +16 QTextDocument::metaObject +24 QTextDocument::qt_metacast +32 QTextDocument::qt_metacall +40 QTextDocument::~QTextDocument +48 QTextDocument::~QTextDocument +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTextDocument::clear +120 QTextDocument::createObject +128 QTextDocument::loadResource + +Class QTextDocument + size=16 align=8 + base size=16 base align=8 +QTextDocument (0x7f5b94b8b2a0) 0 + vptr=((& QTextDocument::_ZTV13QTextDocument) + 16u) + QObject (0x7f5b94b8b310) 0 + primary-for QTextDocument (0x7f5b94b8b2a0) + +Class QTextTableCell + size=16 align=8 + base size=12 base align=8 +QTextTableCell (0x7f5b949e92a0) 0 + +Vtable for QTextTable +QTextTable::_ZTV10QTextTable: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextTable) +16 QTextTable::metaObject +24 QTextTable::qt_metacast +32 QTextTable::qt_metacall +40 QTextTable::~QTextTable +48 QTextTable::~QTextTable +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTextTable + size=16 align=8 + base size=16 base align=8 +QTextTable (0x7f5b94a013f0) 0 + vptr=((& QTextTable::_ZTV10QTextTable) + 16u) + QTextFrame (0x7f5b94a01460) 0 + primary-for QTextTable (0x7f5b94a013f0) + QTextObject (0x7f5b94a014d0) 0 + primary-for QTextFrame (0x7f5b94a01460) + QObject (0x7f5b94a01540) 0 + primary-for QTextObject (0x7f5b94a014d0) + +Class QTextDocumentWriter + size=8 align=8 + base size=8 base align=8 +QTextDocumentWriter (0x7f5b94a1dbd0) 0 + +Class QKeySequence + size=8 align=8 + base size=8 base align=8 +QKeySequence (0x7f5b94a282a0) 0 + +Vtable for QMimeSource +QMimeSource::_ZTV11QMimeSource: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMimeSource) +16 QMimeSource::~QMimeSource +24 QMimeSource::~QMimeSource +32 __cxa_pure_virtual +40 QMimeSource::provides +48 __cxa_pure_virtual + +Class QMimeSource + size=8 align=8 + base size=8 base align=8 +QMimeSource (0x7f5b94a45e70) 0 nearly-empty + vptr=((& QMimeSource::_ZTV11QMimeSource) + 16u) + +Vtable for QDrag +QDrag::_ZTV5QDrag: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QDrag) +16 QDrag::metaObject +24 QDrag::qt_metacast +32 QDrag::qt_metacall +40 QDrag::~QDrag +48 QDrag::~QDrag +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QDrag + size=16 align=8 + base size=16 base align=8 +QDrag (0x7f5b94a45f50) 0 + vptr=((& QDrag::_ZTV5QDrag) + 16u) + QObject (0x7f5b94a72000) 0 + primary-for QDrag (0x7f5b94a45f50) + +Vtable for QInputEvent +QInputEvent::_ZTV11QInputEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QInputEvent) +16 QInputEvent::~QInputEvent +24 QInputEvent::~QInputEvent + +Class QInputEvent + size=24 align=8 + base size=24 base align=8 +QInputEvent (0x7f5b94a87770) 0 + vptr=((& QInputEvent::_ZTV11QInputEvent) + 16u) + QEvent (0x7f5b94a877e0) 0 + primary-for QInputEvent (0x7f5b94a87770) + +Vtable for QMouseEvent +QMouseEvent::_ZTV11QMouseEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMouseEvent) +16 QMouseEvent::~QMouseEvent +24 QMouseEvent::~QMouseEvent + +Class QMouseEvent + size=48 align=8 + base size=48 base align=8 +QMouseEvent (0x7f5b94a87d20) 0 + vptr=((& QMouseEvent::_ZTV11QMouseEvent) + 16u) + QInputEvent (0x7f5b94a87d90) 0 + primary-for QMouseEvent (0x7f5b94a87d20) + QEvent (0x7f5b94a87e00) 0 + primary-for QInputEvent (0x7f5b94a87d90) + +Vtable for QHoverEvent +QHoverEvent::_ZTV11QHoverEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QHoverEvent) +16 QHoverEvent::~QHoverEvent +24 QHoverEvent::~QHoverEvent + +Class QHoverEvent + size=40 align=8 + base size=36 base align=8 +QHoverEvent (0x7f5b94aa5b60) 0 + vptr=((& QHoverEvent::_ZTV11QHoverEvent) + 16u) + QEvent (0x7f5b94aa5bd0) 0 + primary-for QHoverEvent (0x7f5b94aa5b60) + +Vtable for QWheelEvent +QWheelEvent::_ZTV11QWheelEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QWheelEvent) +16 QWheelEvent::~QWheelEvent +24 QWheelEvent::~QWheelEvent + +Class QWheelEvent + size=56 align=8 + base size=52 base align=8 +QWheelEvent (0x7f5b94abe230) 0 + vptr=((& QWheelEvent::_ZTV11QWheelEvent) + 16u) + QInputEvent (0x7f5b94abe2a0) 0 + primary-for QWheelEvent (0x7f5b94abe230) + QEvent (0x7f5b94abe310) 0 + primary-for QInputEvent (0x7f5b94abe2a0) + +Vtable for QTabletEvent +QTabletEvent::_ZTV12QTabletEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTabletEvent) +16 QTabletEvent::~QTabletEvent +24 QTabletEvent::~QTabletEvent + +Class QTabletEvent + size=120 align=8 + base size=120 base align=8 +QTabletEvent (0x7f5b94ad3070) 0 + vptr=((& QTabletEvent::_ZTV12QTabletEvent) + 16u) + QInputEvent (0x7f5b94ad30e0) 0 + primary-for QTabletEvent (0x7f5b94ad3070) + QEvent (0x7f5b94ad3150) 0 + primary-for QInputEvent (0x7f5b94ad30e0) + +Vtable for QKeyEvent +QKeyEvent::_ZTV9QKeyEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QKeyEvent) +16 QKeyEvent::~QKeyEvent +24 QKeyEvent::~QKeyEvent + +Class QKeyEvent + size=40 align=8 + base size=39 base align=8 +QKeyEvent (0x7f5b948f0380) 0 + vptr=((& QKeyEvent::_ZTV9QKeyEvent) + 16u) + QInputEvent (0x7f5b948f03f0) 0 + primary-for QKeyEvent (0x7f5b948f0380) + QEvent (0x7f5b948f0460) 0 + primary-for QInputEvent (0x7f5b948f03f0) + +Vtable for QFocusEvent +QFocusEvent::_ZTV11QFocusEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFocusEvent) +16 QFocusEvent::~QFocusEvent +24 QFocusEvent::~QFocusEvent + +Class QFocusEvent + size=24 align=8 + base size=24 base align=8 +QFocusEvent (0x7f5b94913cb0) 0 + vptr=((& QFocusEvent::_ZTV11QFocusEvent) + 16u) + QEvent (0x7f5b94913d20) 0 + primary-for QFocusEvent (0x7f5b94913cb0) + +Vtable for QPaintEvent +QPaintEvent::_ZTV11QPaintEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QPaintEvent) +16 QPaintEvent::~QPaintEvent +24 QPaintEvent::~QPaintEvent + +Class QPaintEvent + size=56 align=8 + base size=49 base align=8 +QPaintEvent (0x7f5b9491e770) 0 + vptr=((& QPaintEvent::_ZTV11QPaintEvent) + 16u) + QEvent (0x7f5b9491e7e0) 0 + primary-for QPaintEvent (0x7f5b9491e770) + +Vtable for QUpdateLaterEvent +QUpdateLaterEvent::_ZTV17QUpdateLaterEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QUpdateLaterEvent) +16 QUpdateLaterEvent::~QUpdateLaterEvent +24 QUpdateLaterEvent::~QUpdateLaterEvent + +Class QUpdateLaterEvent + size=32 align=8 + base size=32 base align=8 +QUpdateLaterEvent (0x7f5b9492e380) 0 + vptr=((& QUpdateLaterEvent::_ZTV17QUpdateLaterEvent) + 16u) + QEvent (0x7f5b9492e3f0) 0 + primary-for QUpdateLaterEvent (0x7f5b9492e380) + +Vtable for QMoveEvent +QMoveEvent::_ZTV10QMoveEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QMoveEvent) +16 QMoveEvent::~QMoveEvent +24 QMoveEvent::~QMoveEvent + +Class QMoveEvent + size=40 align=8 + base size=36 base align=8 +QMoveEvent (0x7f5b9492e7e0) 0 + vptr=((& QMoveEvent::_ZTV10QMoveEvent) + 16u) + QEvent (0x7f5b9492e850) 0 + primary-for QMoveEvent (0x7f5b9492e7e0) + +Vtable for QResizeEvent +QResizeEvent::_ZTV12QResizeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QResizeEvent) +16 QResizeEvent::~QResizeEvent +24 QResizeEvent::~QResizeEvent + +Class QResizeEvent + size=40 align=8 + base size=36 base align=8 +QResizeEvent (0x7f5b9492ee70) 0 + vptr=((& QResizeEvent::_ZTV12QResizeEvent) + 16u) + QEvent (0x7f5b9492eee0) 0 + primary-for QResizeEvent (0x7f5b9492ee70) + +Vtable for QCloseEvent +QCloseEvent::_ZTV11QCloseEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QCloseEvent) +16 QCloseEvent::~QCloseEvent +24 QCloseEvent::~QCloseEvent + +Class QCloseEvent + size=24 align=8 + base size=20 base align=8 +QCloseEvent (0x7f5b9493d3f0) 0 + vptr=((& QCloseEvent::_ZTV11QCloseEvent) + 16u) + QEvent (0x7f5b9493d460) 0 + primary-for QCloseEvent (0x7f5b9493d3f0) + +Vtable for QIconDragEvent +QIconDragEvent::_ZTV14QIconDragEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QIconDragEvent) +16 QIconDragEvent::~QIconDragEvent +24 QIconDragEvent::~QIconDragEvent + +Class QIconDragEvent + size=24 align=8 + base size=20 base align=8 +QIconDragEvent (0x7f5b9493d620) 0 + vptr=((& QIconDragEvent::_ZTV14QIconDragEvent) + 16u) + QEvent (0x7f5b9493d690) 0 + primary-for QIconDragEvent (0x7f5b9493d620) + +Vtable for QShowEvent +QShowEvent::_ZTV10QShowEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QShowEvent) +16 QShowEvent::~QShowEvent +24 QShowEvent::~QShowEvent + +Class QShowEvent + size=24 align=8 + base size=20 base align=8 +QShowEvent (0x7f5b9493d850) 0 + vptr=((& QShowEvent::_ZTV10QShowEvent) + 16u) + QEvent (0x7f5b9493d8c0) 0 + primary-for QShowEvent (0x7f5b9493d850) + +Vtable for QHideEvent +QHideEvent::_ZTV10QHideEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QHideEvent) +16 QHideEvent::~QHideEvent +24 QHideEvent::~QHideEvent + +Class QHideEvent + size=24 align=8 + base size=20 base align=8 +QHideEvent (0x7f5b9493da80) 0 + vptr=((& QHideEvent::_ZTV10QHideEvent) + 16u) + QEvent (0x7f5b9493daf0) 0 + primary-for QHideEvent (0x7f5b9493da80) + +Vtable for QContextMenuEvent +QContextMenuEvent::_ZTV17QContextMenuEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QContextMenuEvent) +16 QContextMenuEvent::~QContextMenuEvent +24 QContextMenuEvent::~QContextMenuEvent + +Class QContextMenuEvent + size=48 align=8 + base size=41 base align=8 +QContextMenuEvent (0x7f5b9493dcb0) 0 + vptr=((& QContextMenuEvent::_ZTV17QContextMenuEvent) + 16u) + QInputEvent (0x7f5b9493dd20) 0 + primary-for QContextMenuEvent (0x7f5b9493dcb0) + QEvent (0x7f5b9493dd90) 0 + primary-for QInputEvent (0x7f5b9493dd20) + +Class QInputMethodEvent::Attribute + size=32 align=8 + base size=32 base align=8 +QInputMethodEvent::Attribute (0x7f5b94959850) 0 + +Vtable for QInputMethodEvent +QInputMethodEvent::_ZTV17QInputMethodEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QInputMethodEvent) +16 QInputMethodEvent::~QInputMethodEvent +24 QInputMethodEvent::~QInputMethodEvent + +Class QInputMethodEvent + size=56 align=8 + base size=56 base align=8 +QInputMethodEvent (0x7f5b94959770) 0 + vptr=((& QInputMethodEvent::_ZTV17QInputMethodEvent) + 16u) + QEvent (0x7f5b949597e0) 0 + primary-for QInputMethodEvent (0x7f5b94959770) + +Vtable for QDropEvent +QDropEvent::_ZTV10QDropEvent: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QDropEvent) +16 QDropEvent::~QDropEvent +24 QDropEvent::~QDropEvent +32 QDropEvent::format +40 QDropEvent::encodedData +48 QDropEvent::provides +56 (int (*)(...))-0x00000000000000018 +64 (int (*)(...))(& _ZTI10QDropEvent) +72 QDropEvent::_ZThn24_N10QDropEventD1Ev +80 QDropEvent::_ZThn24_N10QDropEventD0Ev +88 QDropEvent::_ZThn24_NK10QDropEvent6formatEi +96 QDropEvent::_ZThn24_NK10QDropEvent8providesEPKc +104 QDropEvent::_ZThn24_NK10QDropEvent11encodedDataEPKc + +Class QDropEvent + size=80 align=8 + base size=80 base align=8 +QDropEvent (0x7f5b94990200) 0 + vptr=((& QDropEvent::_ZTV10QDropEvent) + 16u) + QEvent (0x7f5b9498ff50) 0 + primary-for QDropEvent (0x7f5b94990200) + QMimeSource (0x7f5b94992000) 24 nearly-empty + vptr=((& QDropEvent::_ZTV10QDropEvent) + 72u) + +Vtable for QDragMoveEvent +QDragMoveEvent::_ZTV14QDragMoveEvent: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QDragMoveEvent) +16 QDragMoveEvent::~QDragMoveEvent +24 QDragMoveEvent::~QDragMoveEvent +32 QDropEvent::format +40 QDropEvent::encodedData +48 QDropEvent::provides +56 (int (*)(...))-0x00000000000000018 +64 (int (*)(...))(& _ZTI14QDragMoveEvent) +72 QDragMoveEvent::_ZThn24_N14QDragMoveEventD1Ev +80 QDragMoveEvent::_ZThn24_N14QDragMoveEventD0Ev +88 QDropEvent::_ZThn24_NK10QDropEvent6formatEi +96 QDropEvent::_ZThn24_NK10QDropEvent8providesEPKc +104 QDropEvent::_ZThn24_NK10QDropEvent11encodedDataEPKc + +Class QDragMoveEvent + size=96 align=8 + base size=96 base align=8 +QDragMoveEvent (0x7f5b949abcb0) 0 + vptr=((& QDragMoveEvent::_ZTV14QDragMoveEvent) + 16u) + QDropEvent (0x7f5b949a9900) 0 + primary-for QDragMoveEvent (0x7f5b949abcb0) + QEvent (0x7f5b949abd20) 0 + primary-for QDropEvent (0x7f5b949a9900) + QMimeSource (0x7f5b949abd90) 24 nearly-empty + vptr=((& QDragMoveEvent::_ZTV14QDragMoveEvent) + 72u) + +Vtable for QDragEnterEvent +QDragEnterEvent::_ZTV15QDragEnterEvent: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QDragEnterEvent) +16 QDragEnterEvent::~QDragEnterEvent +24 QDragEnterEvent::~QDragEnterEvent +32 QDropEvent::format +40 QDropEvent::encodedData +48 QDropEvent::provides +56 (int (*)(...))-0x00000000000000018 +64 (int (*)(...))(& _ZTI15QDragEnterEvent) +72 QDragEnterEvent::_ZThn24_N15QDragEnterEventD1Ev +80 QDragEnterEvent::_ZThn24_N15QDragEnterEventD0Ev +88 QDropEvent::_ZThn24_NK10QDropEvent6formatEi +96 QDropEvent::_ZThn24_NK10QDropEvent8providesEPKc +104 QDropEvent::_ZThn24_NK10QDropEvent11encodedDataEPKc + +Class QDragEnterEvent + size=96 align=8 + base size=96 base align=8 +QDragEnterEvent (0x7f5b949be460) 0 + vptr=((& QDragEnterEvent::_ZTV15QDragEnterEvent) + 16u) + QDragMoveEvent (0x7f5b949be4d0) 0 + primary-for QDragEnterEvent (0x7f5b949be460) + QDropEvent (0x7f5b949bd280) 0 + primary-for QDragMoveEvent (0x7f5b949be4d0) + QEvent (0x7f5b949be540) 0 + primary-for QDropEvent (0x7f5b949bd280) + QMimeSource (0x7f5b949be5b0) 24 nearly-empty + vptr=((& QDragEnterEvent::_ZTV15QDragEnterEvent) + 72u) + +Vtable for QDragResponseEvent +QDragResponseEvent::_ZTV18QDragResponseEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QDragResponseEvent) +16 QDragResponseEvent::~QDragResponseEvent +24 QDragResponseEvent::~QDragResponseEvent + +Class QDragResponseEvent + size=24 align=8 + base size=21 base align=8 +QDragResponseEvent (0x7f5b949be770) 0 + vptr=((& QDragResponseEvent::_ZTV18QDragResponseEvent) + 16u) + QEvent (0x7f5b949be7e0) 0 + primary-for QDragResponseEvent (0x7f5b949be770) + +Vtable for QDragLeaveEvent +QDragLeaveEvent::_ZTV15QDragLeaveEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QDragLeaveEvent) +16 QDragLeaveEvent::~QDragLeaveEvent +24 QDragLeaveEvent::~QDragLeaveEvent + +Class QDragLeaveEvent + size=24 align=8 + base size=20 base align=8 +QDragLeaveEvent (0x7f5b949bebd0) 0 + vptr=((& QDragLeaveEvent::_ZTV15QDragLeaveEvent) + 16u) + QEvent (0x7f5b949bec40) 0 + primary-for QDragLeaveEvent (0x7f5b949bebd0) + +Vtable for QHelpEvent +QHelpEvent::_ZTV10QHelpEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QHelpEvent) +16 QHelpEvent::~QHelpEvent +24 QHelpEvent::~QHelpEvent + +Class QHelpEvent + size=40 align=8 + base size=36 base align=8 +QHelpEvent (0x7f5b949bee00) 0 + vptr=((& QHelpEvent::_ZTV10QHelpEvent) + 16u) + QEvent (0x7f5b949bee70) 0 + primary-for QHelpEvent (0x7f5b949bee00) + +Vtable for QStatusTipEvent +QStatusTipEvent::_ZTV15QStatusTipEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QStatusTipEvent) +16 QStatusTipEvent::~QStatusTipEvent +24 QStatusTipEvent::~QStatusTipEvent + +Class QStatusTipEvent + size=32 align=8 + base size=32 base align=8 +QStatusTipEvent (0x7f5b949cee70) 0 + vptr=((& QStatusTipEvent::_ZTV15QStatusTipEvent) + 16u) + QEvent (0x7f5b949ceee0) 0 + primary-for QStatusTipEvent (0x7f5b949cee70) + +Vtable for QWhatsThisClickedEvent +QWhatsThisClickedEvent::_ZTV22QWhatsThisClickedEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QWhatsThisClickedEvent) +16 QWhatsThisClickedEvent::~QWhatsThisClickedEvent +24 QWhatsThisClickedEvent::~QWhatsThisClickedEvent + +Class QWhatsThisClickedEvent + size=32 align=8 + base size=32 base align=8 +QWhatsThisClickedEvent (0x7f5b949d2380) 0 + vptr=((& QWhatsThisClickedEvent::_ZTV22QWhatsThisClickedEvent) + 16u) + QEvent (0x7f5b949d23f0) 0 + primary-for QWhatsThisClickedEvent (0x7f5b949d2380) + +Vtable for QActionEvent +QActionEvent::_ZTV12QActionEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QActionEvent) +16 QActionEvent::~QActionEvent +24 QActionEvent::~QActionEvent + +Class QActionEvent + size=40 align=8 + base size=40 base align=8 +QActionEvent (0x7f5b949d2850) 0 + vptr=((& QActionEvent::_ZTV12QActionEvent) + 16u) + QEvent (0x7f5b949d28c0) 0 + primary-for QActionEvent (0x7f5b949d2850) + +Vtable for QFileOpenEvent +QFileOpenEvent::_ZTV14QFileOpenEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QFileOpenEvent) +16 QFileOpenEvent::~QFileOpenEvent +24 QFileOpenEvent::~QFileOpenEvent + +Class QFileOpenEvent + size=32 align=8 + base size=32 base align=8 +QFileOpenEvent (0x7f5b949d2ee0) 0 + vptr=((& QFileOpenEvent::_ZTV14QFileOpenEvent) + 16u) + QEvent (0x7f5b949d2f50) 0 + primary-for QFileOpenEvent (0x7f5b949d2ee0) + +Vtable for QToolBarChangeEvent +QToolBarChangeEvent::_ZTV19QToolBarChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QToolBarChangeEvent) +16 QToolBarChangeEvent::~QToolBarChangeEvent +24 QToolBarChangeEvent::~QToolBarChangeEvent + +Class QToolBarChangeEvent + size=24 align=8 + base size=21 base align=8 +QToolBarChangeEvent (0x7f5b947e7230) 0 + vptr=((& QToolBarChangeEvent::_ZTV19QToolBarChangeEvent) + 16u) + QEvent (0x7f5b947e72a0) 0 + primary-for QToolBarChangeEvent (0x7f5b947e7230) + +Vtable for QShortcutEvent +QShortcutEvent::_ZTV14QShortcutEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QShortcutEvent) +16 QShortcutEvent::~QShortcutEvent +24 QShortcutEvent::~QShortcutEvent + +Class QShortcutEvent + size=40 align=8 + base size=40 base align=8 +QShortcutEvent (0x7f5b947e7770) 0 + vptr=((& QShortcutEvent::_ZTV14QShortcutEvent) + 16u) + QEvent (0x7f5b947e77e0) 0 + primary-for QShortcutEvent (0x7f5b947e7770) + +Vtable for QClipboardEvent +QClipboardEvent::_ZTV15QClipboardEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QClipboardEvent) +16 QClipboardEvent::~QClipboardEvent +24 QClipboardEvent::~QClipboardEvent + +Class QClipboardEvent + size=24 align=8 + base size=20 base align=8 +QClipboardEvent (0x7f5b947f3620) 0 + vptr=((& QClipboardEvent::_ZTV15QClipboardEvent) + 16u) + QEvent (0x7f5b947f3690) 0 + primary-for QClipboardEvent (0x7f5b947f3620) + +Vtable for QWindowStateChangeEvent +QWindowStateChangeEvent::_ZTV23QWindowStateChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QWindowStateChangeEvent) +16 QWindowStateChangeEvent::~QWindowStateChangeEvent +24 QWindowStateChangeEvent::~QWindowStateChangeEvent + +Class QWindowStateChangeEvent + size=24 align=8 + base size=24 base align=8 +QWindowStateChangeEvent (0x7f5b947f3a80) 0 + vptr=((& QWindowStateChangeEvent::_ZTV23QWindowStateChangeEvent) + 16u) + QEvent (0x7f5b947f3af0) 0 + primary-for QWindowStateChangeEvent (0x7f5b947f3a80) + +Vtable for QMenubarUpdatedEvent +QMenubarUpdatedEvent::_ZTV20QMenubarUpdatedEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QMenubarUpdatedEvent) +16 QMenubarUpdatedEvent::~QMenubarUpdatedEvent +24 QMenubarUpdatedEvent::~QMenubarUpdatedEvent + +Class QMenubarUpdatedEvent + size=32 align=8 + base size=32 base align=8 +QMenubarUpdatedEvent (0x7f5b947f37e0) 0 + vptr=((& QMenubarUpdatedEvent::_ZTV20QMenubarUpdatedEvent) + 16u) + QEvent (0x7f5b947f3cb0) 0 + primary-for QMenubarUpdatedEvent (0x7f5b947f37e0) + +Class QTextInlineObject + size=16 align=8 + base size=16 base align=8 +QTextInlineObject (0x7f5b94803a10) 0 + +Class QTextLayout::FormatRange + size=24 align=8 + base size=24 base align=8 +QTextLayout::FormatRange (0x7f5b94810cb0) 0 + +Class QTextLayout + size=8 align=8 + base size=8 base align=8 +QTextLayout (0x7f5b94810a10) 0 + +Class QTextLine + size=16 align=8 + base size=16 base align=8 +QTextLine (0x7f5b9482ca80) 0 + +Vtable for QTextList +QTextList::_ZTV9QTextList: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTextList) +16 QTextList::metaObject +24 QTextList::qt_metacast +32 QTextList::qt_metacall +40 QTextList::~QTextList +48 QTextList::~QTextList +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTextBlockGroup::blockInserted +120 QTextBlockGroup::blockRemoved +128 QTextBlockGroup::blockFormatChanged + +Class QTextList + size=16 align=8 + base size=16 base align=8 +QTextList (0x7f5b94860310) 0 + vptr=((& QTextList::_ZTV9QTextList) + 16u) + QTextBlockGroup (0x7f5b94860380) 0 + primary-for QTextList (0x7f5b94860310) + QTextObject (0x7f5b948603f0) 0 + primary-for QTextBlockGroup (0x7f5b94860380) + QObject (0x7f5b94860460) 0 + primary-for QTextObject (0x7f5b948603f0) + +Class QFontInfo + size=8 align=8 + base size=8 base align=8 +QFontInfo (0x7f5b948831c0) 0 + +Class QTextDocumentFragment + size=8 align=8 + base size=8 base align=8 +QTextDocumentFragment (0x7f5b94883cb0) 0 + +Class QTextCursor + size=8 align=8 + base size=8 base align=8 +QTextCursor (0x7f5b9488f700) 0 + +Class QPalette + size=16 align=8 + base size=12 base align=8 +QPalette (0x7f5b948a0bd0) 0 + +Class QColorGroup + size=16 align=8 + base size=12 base align=8 +QColorGroup (0x7f5b947084d0) 0 + QPalette (0x7f5b94708540) 0 + +Class QAbstractTextDocumentLayout::Selection + size=24 align=8 + base size=24 base align=8 +QAbstractTextDocumentLayout::Selection (0x7f5b9473fa10) 0 + +Class QAbstractTextDocumentLayout::PaintContext + size=64 align=8 + base size=64 base align=8 +QAbstractTextDocumentLayout::PaintContext (0x7f5b9473fa80) 0 + +Vtable for QAbstractTextDocumentLayout +QAbstractTextDocumentLayout::_ZTV27QAbstractTextDocumentLayout: 24u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QAbstractTextDocumentLayout) +16 QAbstractTextDocumentLayout::metaObject +24 QAbstractTextDocumentLayout::qt_metacast +32 QAbstractTextDocumentLayout::qt_metacall +40 QAbstractTextDocumentLayout::~QAbstractTextDocumentLayout +48 QAbstractTextDocumentLayout::~QAbstractTextDocumentLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 QAbstractTextDocumentLayout::resizeInlineObject +176 QAbstractTextDocumentLayout::positionInlineObject +184 QAbstractTextDocumentLayout::drawInlineObject + +Class QAbstractTextDocumentLayout + size=16 align=8 + base size=16 base align=8 +QAbstractTextDocumentLayout (0x7f5b9473f7e0) 0 + vptr=((& QAbstractTextDocumentLayout::_ZTV27QAbstractTextDocumentLayout) + 16u) + QObject (0x7f5b9473f850) 0 + primary-for QAbstractTextDocumentLayout (0x7f5b9473f7e0) + +Vtable for QTextObjectInterface +QTextObjectInterface::_ZTV20QTextObjectInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QTextObjectInterface) +16 QTextObjectInterface::~QTextObjectInterface +24 QTextObjectInterface::~QTextObjectInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QTextObjectInterface + size=8 align=8 + base size=8 base align=8 +QTextObjectInterface (0x7f5b94787150) 0 nearly-empty + vptr=((& QTextObjectInterface::_ZTV20QTextObjectInterface) + 16u) + +Vtable for QSyntaxHighlighter +QSyntaxHighlighter::_ZTV18QSyntaxHighlighter: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QSyntaxHighlighter) +16 QSyntaxHighlighter::metaObject +24 QSyntaxHighlighter::qt_metacast +32 QSyntaxHighlighter::qt_metacall +40 QSyntaxHighlighter::~QSyntaxHighlighter +48 QSyntaxHighlighter::~QSyntaxHighlighter +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual + +Class QSyntaxHighlighter + size=16 align=8 + base size=16 base align=8 +QSyntaxHighlighter (0x7f5b947932a0) 0 + vptr=((& QSyntaxHighlighter::_ZTV18QSyntaxHighlighter) + 16u) + QObject (0x7f5b94793310) 0 + primary-for QSyntaxHighlighter (0x7f5b947932a0) + +Vtable for QUndoGroup +QUndoGroup::_ZTV10QUndoGroup: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QUndoGroup) +16 QUndoGroup::metaObject +24 QUndoGroup::qt_metacast +32 QUndoGroup::qt_metacall +40 QUndoGroup::~QUndoGroup +48 QUndoGroup::~QUndoGroup +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QUndoGroup + size=16 align=8 + base size=16 base align=8 +QUndoGroup (0x7f5b947a8c40) 0 + vptr=((& QUndoGroup::_ZTV10QUndoGroup) + 16u) + QObject (0x7f5b947a8cb0) 0 + primary-for QUndoGroup (0x7f5b947a8c40) + +Class QDesktopServices + size=1 align=1 + base size=0 base align=1 +QDesktopServices (0x7f5b947c77e0) 0 empty + +Class QSizePolicy + size=4 align=4 + base size=4 base align=4 +QSizePolicy (0x7f5b947c7930) 0 + +Class QCursor + size=8 align=8 + base size=8 base align=8 +QCursor (0x7f5b94683690) 0 + +Class QWidgetData + size=88 align=8 + base size=88 base align=8 +QWidgetData (0x7f5b94683e70) 0 + +Vtable for QWidget +QWidget::_ZTV7QWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QWidget) +16 QWidget::metaObject +24 QWidget::qt_metacast +32 QWidget::qt_metacall +40 QWidget::~QWidget +48 QWidget::~QWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI7QWidget) +464 QWidget::_ZThn16_N7QWidgetD1Ev +472 QWidget::_ZThn16_N7QWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWidget + size=40 align=8 + base size=40 base align=8 +QWidget (0x7f5b9467fa00) 0 + vptr=((& QWidget::_ZTV7QWidget) + 16u) + QObject (0x7f5b94683ee0) 0 + primary-for QWidget (0x7f5b9467fa00) + QPaintDevice (0x7f5b94683f50) 16 + vptr=((& QWidget::_ZTV7QWidget) + 464u) + +Vtable for QFrame +QFrame::_ZTV6QFrame: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QFrame) +16 QFrame::metaObject +24 QFrame::qt_metacast +32 QFrame::qt_metacall +40 QFrame::~QFrame +48 QFrame::~QFrame +56 QFrame::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QFrame::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFrame::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI6QFrame) +464 QFrame::_ZThn16_N6QFrameD1Ev +472 QFrame::_ZThn16_N6QFrameD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFrame + size=40 align=8 + base size=40 base align=8 +QFrame (0x7f5b943fdcb0) 0 + vptr=((& QFrame::_ZTV6QFrame) + 16u) + QWidget (0x7f5b94403400) 0 + primary-for QFrame (0x7f5b943fdcb0) + QObject (0x7f5b943fdd20) 0 + primary-for QWidget (0x7f5b94403400) + QPaintDevice (0x7f5b943fdd90) 16 + vptr=((& QFrame::_ZTV6QFrame) + 464u) + +Vtable for QAbstractScrollArea +QAbstractScrollArea::_ZTV19QAbstractScrollArea: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractScrollArea) +16 QAbstractScrollArea::metaObject +24 QAbstractScrollArea::qt_metacast +32 QAbstractScrollArea::qt_metacall +40 QAbstractScrollArea::~QAbstractScrollArea +48 QAbstractScrollArea::~QAbstractScrollArea +56 QAbstractScrollArea::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractScrollArea::mousePressEvent +168 QAbstractScrollArea::mouseReleaseEvent +176 QAbstractScrollArea::mouseDoubleClickEvent +184 QAbstractScrollArea::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractScrollArea::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractScrollArea::paintEvent +256 QWidget::moveEvent +264 QAbstractScrollArea::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractScrollArea::dragEnterEvent +312 QAbstractScrollArea::dragMoveEvent +320 QAbstractScrollArea::dragLeaveEvent +328 QAbstractScrollArea::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QAbstractScrollArea::scrollContentsBy +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI19QAbstractScrollArea) +480 QAbstractScrollArea::_ZThn16_N19QAbstractScrollAreaD1Ev +488 QAbstractScrollArea::_ZThn16_N19QAbstractScrollAreaD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractScrollArea + size=40 align=8 + base size=40 base align=8 +QAbstractScrollArea (0x7f5b9442a310) 0 + vptr=((& QAbstractScrollArea::_ZTV19QAbstractScrollArea) + 16u) + QFrame (0x7f5b9442a380) 0 + primary-for QAbstractScrollArea (0x7f5b9442a310) + QWidget (0x7f5b94421700) 0 + primary-for QFrame (0x7f5b9442a380) + QObject (0x7f5b9442a3f0) 0 + primary-for QWidget (0x7f5b94421700) + QPaintDevice (0x7f5b9442a460) 16 + vptr=((& QAbstractScrollArea::_ZTV19QAbstractScrollArea) + 480u) + +Class QItemSelectionRange + size=16 align=8 + base size=16 base align=8 +QItemSelectionRange (0x7f5b9444d230) 0 + +Vtable for QItemSelectionModel +QItemSelectionModel::_ZTV19QItemSelectionModel: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QItemSelectionModel) +16 QItemSelectionModel::metaObject +24 QItemSelectionModel::qt_metacast +32 QItemSelectionModel::qt_metacall +40 QItemSelectionModel::~QItemSelectionModel +48 QItemSelectionModel::~QItemSelectionModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QItemSelectionModel::select +120 QItemSelectionModel::select +128 QItemSelectionModel::clear +136 QItemSelectionModel::reset + +Class QItemSelectionModel + size=16 align=8 + base size=16 base align=8 +QItemSelectionModel (0x7f5b944b3700) 0 + vptr=((& QItemSelectionModel::_ZTV19QItemSelectionModel) + 16u) + QObject (0x7f5b944b3770) 0 + primary-for QItemSelectionModel (0x7f5b944b3700) + +Class QItemSelection + size=8 align=8 + base size=8 base align=8 +QItemSelection (0x7f5b942f4bd0) 0 + QList (0x7f5b942f4c40) 0 + +Vtable for QValidator +QValidator::_ZTV10QValidator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QValidator) +16 QValidator::metaObject +24 QValidator::qt_metacast +32 QValidator::qt_metacall +40 QValidator::~QValidator +48 QValidator::~QValidator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 QValidator::fixup + +Class QValidator + size=16 align=8 + base size=16 base align=8 +QValidator (0x7f5b943304d0) 0 + vptr=((& QValidator::_ZTV10QValidator) + 16u) + QObject (0x7f5b94330540) 0 + primary-for QValidator (0x7f5b943304d0) + +Vtable for QIntValidator +QIntValidator::_ZTV13QIntValidator: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QIntValidator) +16 QIntValidator::metaObject +24 QIntValidator::qt_metacast +32 QIntValidator::qt_metacall +40 QIntValidator::~QIntValidator +48 QIntValidator::~QIntValidator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QIntValidator::validate +120 QValidator::fixup +128 QIntValidator::setRange + +Class QIntValidator + size=24 align=8 + base size=24 base align=8 +QIntValidator (0x7f5b94347310) 0 + vptr=((& QIntValidator::_ZTV13QIntValidator) + 16u) + QValidator (0x7f5b94347380) 0 + primary-for QIntValidator (0x7f5b94347310) + QObject (0x7f5b943473f0) 0 + primary-for QValidator (0x7f5b94347380) + +Vtable for QDoubleValidator +QDoubleValidator::_ZTV16QDoubleValidator: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QDoubleValidator) +16 QDoubleValidator::metaObject +24 QDoubleValidator::qt_metacast +32 QDoubleValidator::qt_metacall +40 QDoubleValidator::~QDoubleValidator +48 QDoubleValidator::~QDoubleValidator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QDoubleValidator::validate +120 QValidator::fixup +128 QDoubleValidator::setRange + +Class QDoubleValidator + size=40 align=8 + base size=36 base align=8 +QDoubleValidator (0x7f5b943622a0) 0 + vptr=((& QDoubleValidator::_ZTV16QDoubleValidator) + 16u) + QValidator (0x7f5b94362310) 0 + primary-for QDoubleValidator (0x7f5b943622a0) + QObject (0x7f5b94362380) 0 + primary-for QValidator (0x7f5b94362310) + +Vtable for QRegExpValidator +QRegExpValidator::_ZTV16QRegExpValidator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QRegExpValidator) +16 QRegExpValidator::metaObject +24 QRegExpValidator::qt_metacast +32 QRegExpValidator::qt_metacall +40 QRegExpValidator::~QRegExpValidator +48 QRegExpValidator::~QRegExpValidator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QRegExpValidator::validate +120 QValidator::fixup + +Class QRegExpValidator + size=24 align=8 + base size=24 base align=8 +QRegExpValidator (0x7f5b9437db60) 0 + vptr=((& QRegExpValidator::_ZTV16QRegExpValidator) + 16u) + QValidator (0x7f5b9437dbd0) 0 + primary-for QRegExpValidator (0x7f5b9437db60) + QObject (0x7f5b9437dc40) 0 + primary-for QValidator (0x7f5b9437dbd0) + +Vtable for QAbstractSpinBox +QAbstractSpinBox::_ZTV16QAbstractSpinBox: 68u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QAbstractSpinBox) +16 QAbstractSpinBox::metaObject +24 QAbstractSpinBox::qt_metacast +32 QAbstractSpinBox::qt_metacall +40 QAbstractSpinBox::~QAbstractSpinBox +48 QAbstractSpinBox::~QAbstractSpinBox +56 QAbstractSpinBox::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractSpinBox::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractSpinBox::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QAbstractSpinBox::wheelEvent +200 QAbstractSpinBox::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QAbstractSpinBox::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractSpinBox::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractSpinBox::validate +456 QAbstractSpinBox::fixup +464 QAbstractSpinBox::stepBy +472 QAbstractSpinBox::clear +480 QAbstractSpinBox::stepEnabled +488 (int (*)(...))-0x00000000000000010 +496 (int (*)(...))(& _ZTI16QAbstractSpinBox) +504 QAbstractSpinBox::_ZThn16_N16QAbstractSpinBoxD1Ev +512 QAbstractSpinBox::_ZThn16_N16QAbstractSpinBoxD0Ev +520 QWidget::_ZThn16_NK7QWidget7devTypeEv +528 QWidget::_ZThn16_NK7QWidget11paintEngineEv +536 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractSpinBox + size=40 align=8 + base size=40 base align=8 +QAbstractSpinBox (0x7f5b943917e0) 0 + vptr=((& QAbstractSpinBox::_ZTV16QAbstractSpinBox) + 16u) + QWidget (0x7f5b94381700) 0 + primary-for QAbstractSpinBox (0x7f5b943917e0) + QObject (0x7f5b94391850) 0 + primary-for QWidget (0x7f5b94381700) + QPaintDevice (0x7f5b943918c0) 16 + vptr=((& QAbstractSpinBox::_ZTV16QAbstractSpinBox) + 504u) + +Class QIcon + size=8 align=8 + base size=8 base align=8 +QIcon (0x7f5b941df7e0) 0 + +Vtable for QAbstractSlider +QAbstractSlider::_ZTV15QAbstractSlider: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QAbstractSlider) +16 QAbstractSlider::metaObject +24 QAbstractSlider::qt_metacast +32 QAbstractSlider::qt_metacall +40 QAbstractSlider::~QAbstractSlider +48 QAbstractSlider::~QAbstractSlider +56 QAbstractSlider::event +64 QObject::eventFilter +72 QAbstractSlider::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QAbstractSlider::wheelEvent +200 QAbstractSlider::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractSlider::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractSlider::sliderChange +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI15QAbstractSlider) +472 QAbstractSlider::_ZThn16_N15QAbstractSliderD1Ev +480 QAbstractSlider::_ZThn16_N15QAbstractSliderD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractSlider + size=40 align=8 + base size=40 base align=8 +QAbstractSlider (0x7f5b9421d380) 0 + vptr=((& QAbstractSlider::_ZTV15QAbstractSlider) + 16u) + QWidget (0x7f5b94223380) 0 + primary-for QAbstractSlider (0x7f5b9421d380) + QObject (0x7f5b9421d3f0) 0 + primary-for QWidget (0x7f5b94223380) + QPaintDevice (0x7f5b9421d460) 16 + vptr=((& QAbstractSlider::_ZTV15QAbstractSlider) + 472u) + +Vtable for QSlider +QSlider::_ZTV7QSlider: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QSlider) +16 QSlider::metaObject +24 QSlider::qt_metacast +32 QSlider::qt_metacall +40 QSlider::~QSlider +48 QSlider::~QSlider +56 QSlider::event +64 QObject::eventFilter +72 QAbstractSlider::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QSlider::sizeHint +136 QSlider::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QSlider::mousePressEvent +168 QSlider::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QSlider::mouseMoveEvent +192 QAbstractSlider::wheelEvent +200 QAbstractSlider::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QSlider::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractSlider::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractSlider::sliderChange +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI7QSlider) +472 QSlider::_ZThn16_N7QSliderD1Ev +480 QSlider::_ZThn16_N7QSliderD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSlider + size=40 align=8 + base size=40 base align=8 +QSlider (0x7f5b942551c0) 0 + vptr=((& QSlider::_ZTV7QSlider) + 16u) + QAbstractSlider (0x7f5b94255230) 0 + primary-for QSlider (0x7f5b942551c0) + QWidget (0x7f5b94252380) 0 + primary-for QAbstractSlider (0x7f5b94255230) + QObject (0x7f5b942552a0) 0 + primary-for QWidget (0x7f5b94252380) + QPaintDevice (0x7f5b94255310) 16 + vptr=((& QSlider::_ZTV7QSlider) + 472u) + +Vtable for QStyle +QStyle::_ZTV6QStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QStyle) +16 QStyle::metaObject +24 QStyle::qt_metacast +32 QStyle::qt_metacall +40 QStyle::~QStyle +48 QStyle::~QStyle +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QStyle::polish +120 QStyle::unpolish +128 QStyle::polish +136 QStyle::unpolish +144 QStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QStyle::standardPalette +192 __cxa_pure_virtual +200 __cxa_pure_virtual +208 __cxa_pure_virtual +216 __cxa_pure_virtual +224 __cxa_pure_virtual +232 __cxa_pure_virtual +240 __cxa_pure_virtual +248 __cxa_pure_virtual +256 __cxa_pure_virtual +264 __cxa_pure_virtual +272 __cxa_pure_virtual + +Class QStyle + size=16 align=8 + base size=16 base align=8 +QStyle (0x7f5b9427c770) 0 + vptr=((& QStyle::_ZTV6QStyle) + 16u) + QObject (0x7f5b9427c7e0) 0 + primary-for QStyle (0x7f5b9427c770) + +Vtable for QTabBar +QTabBar::_ZTV7QTabBar: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QTabBar) +16 QTabBar::metaObject +24 QTabBar::qt_metacast +32 QTabBar::qt_metacall +40 QTabBar::~QTabBar +48 QTabBar::~QTabBar +56 QTabBar::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QTabBar::sizeHint +136 QTabBar::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTabBar::mousePressEvent +168 QTabBar::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QTabBar::mouseMoveEvent +192 QTabBar::wheelEvent +200 QTabBar::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTabBar::paintEvent +256 QWidget::moveEvent +264 QTabBar::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QTabBar::showEvent +344 QTabBar::hideEvent +352 QWidget::x11Event +360 QTabBar::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QTabBar::tabSizeHint +456 QTabBar::tabInserted +464 QTabBar::tabRemoved +472 QTabBar::tabLayoutChange +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI7QTabBar) +496 QTabBar::_ZThn16_N7QTabBarD1Ev +504 QTabBar::_ZThn16_N7QTabBarD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTabBar + size=40 align=8 + base size=40 base align=8 +QTabBar (0x7f5b941304d0) 0 + vptr=((& QTabBar::_ZTV7QTabBar) + 16u) + QWidget (0x7f5b940cce80) 0 + primary-for QTabBar (0x7f5b941304d0) + QObject (0x7f5b94130540) 0 + primary-for QWidget (0x7f5b940cce80) + QPaintDevice (0x7f5b941305b0) 16 + vptr=((& QTabBar::_ZTV7QTabBar) + 496u) + +Vtable for QTabWidget +QTabWidget::_ZTV10QTabWidget: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTabWidget) +16 QTabWidget::metaObject +24 QTabWidget::qt_metacast +32 QTabWidget::qt_metacall +40 QTabWidget::~QTabWidget +48 QTabWidget::~QTabWidget +56 QTabWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QTabWidget::sizeHint +136 QTabWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QTabWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTabWidget::paintEvent +256 QWidget::moveEvent +264 QTabWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QTabWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QTabWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QTabWidget::tabInserted +456 QTabWidget::tabRemoved +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI10QTabWidget) +480 QTabWidget::_ZThn16_N10QTabWidgetD1Ev +488 QTabWidget::_ZThn16_N10QTabWidgetD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTabWidget + size=40 align=8 + base size=40 base align=8 +QTabWidget (0x7f5b94160af0) 0 + vptr=((& QTabWidget::_ZTV10QTabWidget) + 16u) + QWidget (0x7f5b94162180) 0 + primary-for QTabWidget (0x7f5b94160af0) + QObject (0x7f5b94160b60) 0 + primary-for QWidget (0x7f5b94162180) + QPaintDevice (0x7f5b94160bd0) 16 + vptr=((& QTabWidget::_ZTV10QTabWidget) + 480u) + +Vtable for QRubberBand +QRubberBand::_ZTV11QRubberBand: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QRubberBand) +16 QRubberBand::metaObject +24 QRubberBand::qt_metacast +32 QRubberBand::qt_metacall +40 QRubberBand::~QRubberBand +48 QRubberBand::~QRubberBand +56 QRubberBand::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QRubberBand::paintEvent +256 QRubberBand::moveEvent +264 QRubberBand::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QRubberBand::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QRubberBand::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI11QRubberBand) +464 QRubberBand::_ZThn16_N11QRubberBandD1Ev +472 QRubberBand::_ZThn16_N11QRubberBandD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QRubberBand + size=40 align=8 + base size=40 base align=8 +QRubberBand (0x7f5b941b74d0) 0 + vptr=((& QRubberBand::_ZTV11QRubberBand) + 16u) + QWidget (0x7f5b941b6200) 0 + primary-for QRubberBand (0x7f5b941b74d0) + QObject (0x7f5b941b7540) 0 + primary-for QWidget (0x7f5b941b6200) + QPaintDevice (0x7f5b941b75b0) 16 + vptr=((& QRubberBand::_ZTV11QRubberBand) + 464u) + +Class QStyleOption + size=56 align=8 + base size=56 base align=8 +QStyleOption (0x7f5b93fd77e0) 0 + +Class QStyleOptionFocusRect + size=72 align=8 + base size=72 base align=8 +QStyleOptionFocusRect (0x7f5b93fe6540) 0 + QStyleOption (0x7f5b93fe65b0) 0 + +Class QStyleOptionFrame + size=64 align=8 + base size=64 base align=8 +QStyleOptionFrame (0x7f5b93fef540) 0 + QStyleOption (0x7f5b93fef5b0) 0 + +Class QStyleOptionFrameV2 + size=72 align=8 + base size=68 base align=8 +QStyleOptionFrameV2 (0x7f5b93ffa4d0) 0 + QStyleOptionFrame (0x7f5b93ffa540) 0 + QStyleOption (0x7f5b93ffa5b0) 0 + +Class QStyleOptionFrameV3 + size=72 align=8 + base size=72 base align=8 +QStyleOptionFrameV3 (0x7f5b9402bd90) 0 + QStyleOptionFrameV2 (0x7f5b9402be00) 0 + QStyleOptionFrame (0x7f5b9402be70) 0 + QStyleOption (0x7f5b9402bee0) 0 + +Class QStyleOptionTabWidgetFrame + size=96 align=8 + base size=92 base align=8 +QStyleOptionTabWidgetFrame (0x7f5b9404d690) 0 + QStyleOption (0x7f5b9404d700) 0 + +Class QStyleOptionTabBarBase + size=96 align=8 + base size=92 base align=8 +QStyleOptionTabBarBase (0x7f5b9405ce00) 0 + QStyleOption (0x7f5b9405ce70) 0 + +Class QStyleOptionTabBarBaseV2 + size=96 align=8 + base size=93 base align=8 +QStyleOptionTabBarBaseV2 (0x7f5b9406d1c0) 0 + QStyleOptionTabBarBase (0x7f5b9406d230) 0 + QStyleOption (0x7f5b9406d2a0) 0 + +Class QStyleOptionHeader + size=112 align=8 + base size=108 base align=8 +QStyleOptionHeader (0x7f5b94078850) 0 + QStyleOption (0x7f5b940788c0) 0 + +Class QStyleOptionButton + size=88 align=8 + base size=88 base align=8 +QStyleOptionButton (0x7f5b94091a10) 0 + QStyleOption (0x7f5b94091a80) 0 + +Class QStyleOptionTab + size=96 align=8 + base size=96 base align=8 +QStyleOptionTab (0x7f5b93ede3f0) 0 + QStyleOption (0x7f5b93ede460) 0 + +Class QStyleOptionTabV2 + size=104 align=8 + base size=104 base align=8 +QStyleOptionTabV2 (0x7f5b93f2a380) 0 + QStyleOptionTab (0x7f5b93f2a3f0) 0 + QStyleOption (0x7f5b93f2a460) 0 + +Class QStyleOptionTabV3 + size=128 align=8 + base size=124 base align=8 +QStyleOptionTabV3 (0x7f5b93f33d90) 0 + QStyleOptionTabV2 (0x7f5b93f33e00) 0 + QStyleOptionTab (0x7f5b93f33e70) 0 + QStyleOption (0x7f5b93f33ee0) 0 + +Class QStyleOptionToolBar + size=80 align=8 + base size=80 base align=8 +QStyleOptionToolBar (0x7f5b93f513f0) 0 + QStyleOption (0x7f5b93f51460) 0 + +Class QStyleOptionProgressBar + size=88 align=8 + base size=85 base align=8 +QStyleOptionProgressBar (0x7f5b93f85bd0) 0 + QStyleOption (0x7f5b93f85c40) 0 + +Class QStyleOptionProgressBarV2 + size=96 align=8 + base size=94 base align=8 +QStyleOptionProgressBarV2 (0x7f5b93faa380) 0 + QStyleOptionProgressBar (0x7f5b93faa3f0) 0 + QStyleOption (0x7f5b93faa460) 0 + +Class QStyleOptionMenuItem + size=128 align=8 + base size=128 base align=8 +QStyleOptionMenuItem (0x7f5b93faac40) 0 + QStyleOption (0x7f5b93faacb0) 0 + +Class QStyleOptionQ3ListViewItem + size=80 align=8 + base size=76 base align=8 +QStyleOptionQ3ListViewItem (0x7f5b93dc2e70) 0 + QStyleOption (0x7f5b93dc2ee0) 0 + +Class QStyleOptionQ3DockWindow + size=64 align=8 + base size=58 base align=8 +QStyleOptionQ3DockWindow (0x7f5b93e0e310) 0 + QStyleOption (0x7f5b93e0e380) 0 + +Class QStyleOptionDockWidget + size=72 align=8 + base size=67 base align=8 +QStyleOptionDockWidget (0x7f5b93e1b2a0) 0 + QStyleOption (0x7f5b93e1b310) 0 + +Class QStyleOptionDockWidgetV2 + size=72 align=8 + base size=68 base align=8 +QStyleOptionDockWidgetV2 (0x7f5b93e28690) 0 + QStyleOptionDockWidget (0x7f5b93e28700) 0 + QStyleOption (0x7f5b93e28770) 0 + +Class QStyleOptionViewItem + size=104 align=8 + base size=97 base align=8 +QStyleOptionViewItem (0x7f5b93e32e70) 0 + QStyleOption (0x7f5b93e32ee0) 0 + +Class QStyleOptionViewItemV2 + size=104 align=8 + base size=104 base align=8 +QStyleOptionViewItemV2 (0x7f5b93e4ba10) 0 + QStyleOptionViewItem (0x7f5b93e4ba80) 0 + QStyleOption (0x7f5b93e4baf0) 0 + +Class QStyleOptionViewItemV3 + size=120 align=8 + base size=120 base align=8 +QStyleOptionViewItemV3 (0x7f5b93e95460) 0 + QStyleOptionViewItemV2 (0x7f5b93e954d0) 0 + QStyleOptionViewItem (0x7f5b93e95540) 0 + QStyleOption (0x7f5b93e955b0) 0 + +Class QStyleOptionViewItemV4 + size=184 align=8 + base size=184 base align=8 +QStyleOptionViewItemV4 (0x7f5b93e9ed20) 0 + QStyleOptionViewItemV3 (0x7f5b93e9ed90) 0 + QStyleOptionViewItemV2 (0x7f5b93e9ee00) 0 + QStyleOptionViewItem (0x7f5b93e9ee70) 0 + QStyleOption (0x7f5b93e9eee0) 0 + +Class QStyleOptionToolBox + size=72 align=8 + base size=72 base align=8 +QStyleOptionToolBox (0x7f5b93cc1460) 0 + QStyleOption (0x7f5b93cc14d0) 0 + +Class QStyleOptionToolBoxV2 + size=80 align=8 + base size=80 base align=8 +QStyleOptionToolBoxV2 (0x7f5b93cd1930) 0 + QStyleOptionToolBox (0x7f5b93cd19a0) 0 + QStyleOption (0x7f5b93cd1a10) 0 + +Class QStyleOptionRubberBand + size=64 align=8 + base size=61 base align=8 +QStyleOptionRubberBand (0x7f5b93ce5620) 0 + QStyleOption (0x7f5b93ce5690) 0 + +Class QStyleOptionComplex + size=64 align=8 + base size=64 base align=8 +QStyleOptionComplex (0x7f5b93cf2700) 0 + QStyleOption (0x7f5b93cf2770) 0 + +Class QStyleOptionSlider + size=120 align=8 + base size=113 base align=8 +QStyleOptionSlider (0x7f5b93cfaee0) 0 + QStyleOptionComplex (0x7f5b93cfaf50) 0 + QStyleOption (0x7f5b93cfa310) 0 + +Class QStyleOptionSpinBox + size=80 align=8 + base size=73 base align=8 +QStyleOptionSpinBox (0x7f5b93d10cb0) 0 + QStyleOptionComplex (0x7f5b93d10d20) 0 + QStyleOption (0x7f5b93d10d90) 0 + +Class QStyleOptionQ3ListView + size=112 align=8 + base size=105 base align=8 +QStyleOptionQ3ListView (0x7f5b93d221c0) 0 + QStyleOptionComplex (0x7f5b93d22230) 0 + QStyleOption (0x7f5b93d222a0) 0 + +Class QStyleOptionToolButton + size=128 align=8 + base size=128 base align=8 +QStyleOptionToolButton (0x7f5b93d53e00) 0 + QStyleOptionComplex (0x7f5b93d53e70) 0 + QStyleOption (0x7f5b93d53ee0) 0 + +Class QStyleOptionComboBox + size=112 align=8 + base size=112 base align=8 +QStyleOptionComboBox (0x7f5b93da9070) 0 + QStyleOptionComplex (0x7f5b93da90e0) 0 + QStyleOption (0x7f5b93da9150) 0 + +Class QStyleOptionTitleBar + size=88 align=8 + base size=88 base align=8 +QStyleOptionTitleBar (0x7f5b93db8b60) 0 + QStyleOptionComplex (0x7f5b93db8bd0) 0 + QStyleOption (0x7f5b93db8c40) 0 + +Class QStyleOptionGroupBox + size=112 align=8 + base size=108 base align=8 +QStyleOptionGroupBox (0x7f5b93bce3f0) 0 + QStyleOptionComplex (0x7f5b93bce460) 0 + QStyleOption (0x7f5b93bce4d0) 0 + +Class QStyleOptionSizeGrip + size=72 align=8 + base size=68 base align=8 +QStyleOptionSizeGrip (0x7f5b93be4000) 0 + QStyleOptionComplex (0x7f5b93be4070) 0 + QStyleOption (0x7f5b93be40e0) 0 + +Class QStyleOptionGraphicsItem + size=144 align=8 + base size=144 base align=8 +QStyleOptionGraphicsItem (0x7f5b93be4f50) 0 + QStyleOption (0x7f5b93be4700) 0 + +Class QStyleHintReturn + size=8 align=4 + base size=8 base align=4 +QStyleHintReturn (0x7f5b93bff2a0) 0 + +Class QStyleHintReturnMask + size=16 align=8 + base size=16 base align=8 +QStyleHintReturnMask (0x7f5b93bff700) 0 + QStyleHintReturn (0x7f5b93bff770) 0 + +Class QStyleHintReturnVariant + size=24 align=8 + base size=24 base align=8 +QStyleHintReturnVariant (0x7f5b93bff930) 0 + QStyleHintReturn (0x7f5b93bff9a0) 0 + +Vtable for QAbstractItemDelegate +QAbstractItemDelegate::_ZTV21QAbstractItemDelegate: 21u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QAbstractItemDelegate) +16 QAbstractItemDelegate::metaObject +24 QAbstractItemDelegate::qt_metacast +32 QAbstractItemDelegate::qt_metacall +40 QAbstractItemDelegate::~QAbstractItemDelegate +48 QAbstractItemDelegate::~QAbstractItemDelegate +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAbstractItemDelegate::createEditor +136 QAbstractItemDelegate::setEditorData +144 QAbstractItemDelegate::setModelData +152 QAbstractItemDelegate::updateEditorGeometry +160 QAbstractItemDelegate::editorEvent + +Class QAbstractItemDelegate + size=16 align=8 + base size=16 base align=8 +QAbstractItemDelegate (0x7f5b93bffe00) 0 + vptr=((& QAbstractItemDelegate::_ZTV21QAbstractItemDelegate) + 16u) + QObject (0x7f5b93bffe70) 0 + primary-for QAbstractItemDelegate (0x7f5b93bffe00) + +Vtable for QAbstractItemView +QAbstractItemView::_ZTV17QAbstractItemView: 103u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAbstractItemView) +16 QAbstractItemView::metaObject +24 QAbstractItemView::qt_metacast +32 QAbstractItemView::qt_metacall +40 QAbstractItemView::~QAbstractItemView +48 QAbstractItemView::~QAbstractItemView +56 QAbstractItemView::event +64 QObject::eventFilter +72 QAbstractItemView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QAbstractItemView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QAbstractItemView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractScrollArea::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QAbstractScrollArea::scrollContentsBy +464 QAbstractItemView::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 __cxa_pure_virtual +496 __cxa_pure_virtual +504 __cxa_pure_virtual +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QAbstractItemView::reset +536 QAbstractItemView::setRootIndex +544 QAbstractItemView::doItemsLayout +552 QAbstractItemView::selectAll +560 QAbstractItemView::dataChanged +568 QAbstractItemView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QAbstractItemView::selectionChanged +592 QAbstractItemView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QAbstractItemView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 __cxa_pure_virtual +688 __cxa_pure_virtual +696 __cxa_pure_virtual +704 __cxa_pure_virtual +712 __cxa_pure_virtual +720 __cxa_pure_virtual +728 QAbstractItemView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 (int (*)(...))-0x00000000000000010 +776 (int (*)(...))(& _ZTI17QAbstractItemView) +784 QAbstractItemView::_ZThn16_N17QAbstractItemViewD1Ev +792 QAbstractItemView::_ZThn16_N17QAbstractItemViewD0Ev +800 QWidget::_ZThn16_NK7QWidget7devTypeEv +808 QWidget::_ZThn16_NK7QWidget11paintEngineEv +816 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractItemView + size=40 align=8 + base size=40 base align=8 +QAbstractItemView (0x7f5b93c424d0) 0 + vptr=((& QAbstractItemView::_ZTV17QAbstractItemView) + 16u) + QAbstractScrollArea (0x7f5b93c42540) 0 + primary-for QAbstractItemView (0x7f5b93c424d0) + QFrame (0x7f5b93c425b0) 0 + primary-for QAbstractScrollArea (0x7f5b93c42540) + QWidget (0x7f5b93c44000) 0 + primary-for QFrame (0x7f5b93c425b0) + QObject (0x7f5b93c42620) 0 + primary-for QWidget (0x7f5b93c44000) + QPaintDevice (0x7f5b93c42690) 16 + vptr=((& QAbstractItemView::_ZTV17QAbstractItemView) + 784u) + +Vtable for QListView +QListView::_ZTV9QListView: 103u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QListView) +16 QListView::metaObject +24 QListView::qt_metacast +32 QListView::qt_metacall +40 QListView::~QListView +48 QListView::~QListView +56 QListView::event +64 QObject::eventFilter +72 QListView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QListView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QListView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QListView::paintEvent +256 QWidget::moveEvent +264 QListView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QListView::dragMoveEvent +320 QListView::dragLeaveEvent +328 QListView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QListView::scrollContentsBy +464 QAbstractItemView::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QListView::visualRect +496 QListView::scrollTo +504 QListView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QListView::reset +536 QListView::setRootIndex +544 QListView::doItemsLayout +552 QAbstractItemView::selectAll +560 QListView::dataChanged +568 QListView::rowsInserted +576 QListView::rowsAboutToBeRemoved +584 QListView::selectionChanged +592 QListView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QListView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QListView::moveCursor +688 QListView::horizontalOffset +696 QListView::verticalOffset +704 QListView::isIndexHidden +712 QListView::setSelection +720 QListView::visualRegionForSelection +728 QListView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QListView::startDrag +760 QListView::viewOptions +768 (int (*)(...))-0x00000000000000010 +776 (int (*)(...))(& _ZTI9QListView) +784 QListView::_ZThn16_N9QListViewD1Ev +792 QListView::_ZThn16_N9QListViewD0Ev +800 QWidget::_ZThn16_NK7QWidget7devTypeEv +808 QWidget::_ZThn16_NK7QWidget11paintEngineEv +816 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QListView + size=40 align=8 + base size=40 base align=8 +QListView (0x7f5b93cb6cb0) 0 + vptr=((& QListView::_ZTV9QListView) + 16u) + QAbstractItemView (0x7f5b93cb6d20) 0 + primary-for QListView (0x7f5b93cb6cb0) + QAbstractScrollArea (0x7f5b93cb6d90) 0 + primary-for QAbstractItemView (0x7f5b93cb6d20) + QFrame (0x7f5b93cb6e00) 0 + primary-for QAbstractScrollArea (0x7f5b93cb6d90) + QWidget (0x7f5b93c94680) 0 + primary-for QFrame (0x7f5b93cb6e00) + QObject (0x7f5b93cb6e70) 0 + primary-for QWidget (0x7f5b93c94680) + QPaintDevice (0x7f5b93cb6ee0) 16 + vptr=((& QListView::_ZTV9QListView) + 784u) + +Vtable for QUndoView +QUndoView::_ZTV9QUndoView: 103u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QUndoView) +16 QUndoView::metaObject +24 QUndoView::qt_metacast +32 QUndoView::qt_metacall +40 QUndoView::~QUndoView +48 QUndoView::~QUndoView +56 QListView::event +64 QObject::eventFilter +72 QListView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QListView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QListView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QListView::paintEvent +256 QWidget::moveEvent +264 QListView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QListView::dragMoveEvent +320 QListView::dragLeaveEvent +328 QListView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QListView::scrollContentsBy +464 QAbstractItemView::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QListView::visualRect +496 QListView::scrollTo +504 QListView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QListView::reset +536 QListView::setRootIndex +544 QListView::doItemsLayout +552 QAbstractItemView::selectAll +560 QListView::dataChanged +568 QListView::rowsInserted +576 QListView::rowsAboutToBeRemoved +584 QListView::selectionChanged +592 QListView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QListView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QListView::moveCursor +688 QListView::horizontalOffset +696 QListView::verticalOffset +704 QListView::isIndexHidden +712 QListView::setSelection +720 QListView::visualRegionForSelection +728 QListView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QListView::startDrag +760 QListView::viewOptions +768 (int (*)(...))-0x00000000000000010 +776 (int (*)(...))(& _ZTI9QUndoView) +784 QUndoView::_ZThn16_N9QUndoViewD1Ev +792 QUndoView::_ZThn16_N9QUndoViewD0Ev +800 QWidget::_ZThn16_NK7QWidget7devTypeEv +808 QWidget::_ZThn16_NK7QWidget11paintEngineEv +816 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QUndoView + size=40 align=8 + base size=40 base align=8 +QUndoView (0x7f5b93b00380) 0 + vptr=((& QUndoView::_ZTV9QUndoView) + 16u) + QListView (0x7f5b93b003f0) 0 + primary-for QUndoView (0x7f5b93b00380) + QAbstractItemView (0x7f5b93b00460) 0 + primary-for QListView (0x7f5b93b003f0) + QAbstractScrollArea (0x7f5b93b004d0) 0 + primary-for QAbstractItemView (0x7f5b93b00460) + QFrame (0x7f5b93b00540) 0 + primary-for QAbstractScrollArea (0x7f5b93b004d0) + QWidget (0x7f5b93af7580) 0 + primary-for QFrame (0x7f5b93b00540) + QObject (0x7f5b93b005b0) 0 + primary-for QWidget (0x7f5b93af7580) + QPaintDevice (0x7f5b93b00620) 16 + vptr=((& QUndoView::_ZTV9QUndoView) + 784u) + +Vtable for QCompleter +QCompleter::_ZTV10QCompleter: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QCompleter) +16 QCompleter::metaObject +24 QCompleter::qt_metacast +32 QCompleter::qt_metacall +40 QCompleter::~QCompleter +48 QCompleter::~QCompleter +56 QCompleter::event +64 QCompleter::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCompleter::pathFromIndex +120 QCompleter::splitPath + +Class QCompleter + size=16 align=8 + base size=16 base align=8 +QCompleter (0x7f5b93b1d070) 0 + vptr=((& QCompleter::_ZTV10QCompleter) + 16u) + QObject (0x7f5b93b1d0e0) 0 + primary-for QCompleter (0x7f5b93b1d070) + +Vtable for QUndoCommand +QUndoCommand::_ZTV12QUndoCommand: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QUndoCommand) +16 QUndoCommand::~QUndoCommand +24 QUndoCommand::~QUndoCommand +32 QUndoCommand::undo +40 QUndoCommand::redo +48 QUndoCommand::id +56 QUndoCommand::mergeWith + +Class QUndoCommand + size=16 align=8 + base size=16 base align=8 +QUndoCommand (0x7f5b93b42000) 0 + vptr=((& QUndoCommand::_ZTV12QUndoCommand) + 16u) + +Vtable for QUndoStack +QUndoStack::_ZTV10QUndoStack: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QUndoStack) +16 QUndoStack::metaObject +24 QUndoStack::qt_metacast +32 QUndoStack::qt_metacall +40 QUndoStack::~QUndoStack +48 QUndoStack::~QUndoStack +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QUndoStack + size=16 align=8 + base size=16 base align=8 +QUndoStack (0x7f5b93b42930) 0 + vptr=((& QUndoStack::_ZTV10QUndoStack) + 16u) + QObject (0x7f5b93b429a0) 0 + primary-for QUndoStack (0x7f5b93b42930) + +Vtable for QSystemTrayIcon +QSystemTrayIcon::_ZTV15QSystemTrayIcon: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSystemTrayIcon) +16 QSystemTrayIcon::metaObject +24 QSystemTrayIcon::qt_metacast +32 QSystemTrayIcon::qt_metacall +40 QSystemTrayIcon::~QSystemTrayIcon +48 QSystemTrayIcon::~QSystemTrayIcon +56 QSystemTrayIcon::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSystemTrayIcon + size=16 align=8 + base size=16 base align=8 +QSystemTrayIcon (0x7f5b93b67460) 0 + vptr=((& QSystemTrayIcon::_ZTV15QSystemTrayIcon) + 16u) + QObject (0x7f5b93b674d0) 0 + primary-for QSystemTrayIcon (0x7f5b93b67460) + +Vtable for QDialog +QDialog::_ZTV7QDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QDialog) +16 QDialog::metaObject +24 QDialog::qt_metacast +32 QDialog::qt_metacall +40 QDialog::~QDialog +48 QDialog::~QDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI7QDialog) +488 QDialog::_ZThn16_N7QDialogD1Ev +496 QDialog::_ZThn16_N7QDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDialog + size=40 align=8 + base size=40 base align=8 +QDialog (0x7f5b93b86690) 0 + vptr=((& QDialog::_ZTV7QDialog) + 16u) + QWidget (0x7f5b93b84380) 0 + primary-for QDialog (0x7f5b93b86690) + QObject (0x7f5b93b86700) 0 + primary-for QWidget (0x7f5b93b84380) + QPaintDevice (0x7f5b93b86770) 16 + vptr=((& QDialog::_ZTV7QDialog) + 488u) + +Vtable for QAbstractPageSetupDialog +QAbstractPageSetupDialog::_ZTV24QAbstractPageSetupDialog: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QAbstractPageSetupDialog) +16 QAbstractPageSetupDialog::metaObject +24 QAbstractPageSetupDialog::qt_metacast +32 QAbstractPageSetupDialog::qt_metacall +40 QAbstractPageSetupDialog::~QAbstractPageSetupDialog +48 QAbstractPageSetupDialog::~QAbstractPageSetupDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractPageSetupDialog::done +456 QDialog::accept +464 QDialog::reject +472 __cxa_pure_virtual +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI24QAbstractPageSetupDialog) +496 QAbstractPageSetupDialog::_ZThn16_N24QAbstractPageSetupDialogD1Ev +504 QAbstractPageSetupDialog::_ZThn16_N24QAbstractPageSetupDialogD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractPageSetupDialog + size=40 align=8 + base size=40 base align=8 +QAbstractPageSetupDialog (0x7f5b93baa4d0) 0 + vptr=((& QAbstractPageSetupDialog::_ZTV24QAbstractPageSetupDialog) + 16u) + QDialog (0x7f5b93baa540) 0 + primary-for QAbstractPageSetupDialog (0x7f5b93baa4d0) + QWidget (0x7f5b93b84d80) 0 + primary-for QDialog (0x7f5b93baa540) + QObject (0x7f5b93baa5b0) 0 + primary-for QWidget (0x7f5b93b84d80) + QPaintDevice (0x7f5b93baa620) 16 + vptr=((& QAbstractPageSetupDialog::_ZTV24QAbstractPageSetupDialog) + 496u) + +Vtable for QColorDialog +QColorDialog::_ZTV12QColorDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QColorDialog) +16 QColorDialog::metaObject +24 QColorDialog::qt_metacast +32 QColorDialog::qt_metacall +40 QColorDialog::~QColorDialog +48 QColorDialog::~QColorDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QColorDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QColorDialog::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QColorDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI12QColorDialog) +488 QColorDialog::_ZThn16_N12QColorDialogD1Ev +496 QColorDialog::_ZThn16_N12QColorDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QColorDialog + size=40 align=8 + base size=40 base align=8 +QColorDialog (0x7f5b939bba80) 0 + vptr=((& QColorDialog::_ZTV12QColorDialog) + 16u) + QDialog (0x7f5b939bbaf0) 0 + primary-for QColorDialog (0x7f5b939bba80) + QWidget (0x7f5b939ba680) 0 + primary-for QDialog (0x7f5b939bbaf0) + QObject (0x7f5b939bbb60) 0 + primary-for QWidget (0x7f5b939ba680) + QPaintDevice (0x7f5b939bbbd0) 16 + vptr=((& QColorDialog::_ZTV12QColorDialog) + 488u) + +Vtable for QFontDialog +QFontDialog::_ZTV11QFontDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFontDialog) +16 QFontDialog::metaObject +24 QFontDialog::qt_metacast +32 QFontDialog::qt_metacall +40 QFontDialog::~QFontDialog +48 QFontDialog::~QFontDialog +56 QWidget::event +64 QFontDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QFontDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFontDialog::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QFontDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11QFontDialog) +488 QFontDialog::_ZThn16_N11QFontDialogD1Ev +496 QFontDialog::_ZThn16_N11QFontDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFontDialog + size=40 align=8 + base size=40 base align=8 +QFontDialog (0x7f5b93a07e00) 0 + vptr=((& QFontDialog::_ZTV11QFontDialog) + 16u) + QDialog (0x7f5b93a07e70) 0 + primary-for QFontDialog (0x7f5b93a07e00) + QWidget (0x7f5b939f0900) 0 + primary-for QDialog (0x7f5b93a07e70) + QObject (0x7f5b93a07ee0) 0 + primary-for QWidget (0x7f5b939f0900) + QPaintDevice (0x7f5b93a07f50) 16 + vptr=((& QFontDialog::_ZTV11QFontDialog) + 488u) + +Vtable for QMessageBox +QMessageBox::_ZTV11QMessageBox: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMessageBox) +16 QMessageBox::metaObject +24 QMessageBox::qt_metacast +32 QMessageBox::qt_metacall +40 QMessageBox::~QMessageBox +48 QMessageBox::~QMessageBox +56 QMessageBox::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QMessageBox::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QMessageBox::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QMessageBox::resizeEvent +272 QMessageBox::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QMessageBox::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QMessageBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11QMessageBox) +488 QMessageBox::_ZThn16_N11QMessageBoxD1Ev +496 QMessageBox::_ZThn16_N11QMessageBoxD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMessageBox + size=40 align=8 + base size=40 base align=8 +QMessageBox (0x7f5b93a7d2a0) 0 + vptr=((& QMessageBox::_ZTV11QMessageBox) + 16u) + QDialog (0x7f5b93a7d310) 0 + primary-for QMessageBox (0x7f5b93a7d2a0) + QWidget (0x7f5b93a3eb00) 0 + primary-for QDialog (0x7f5b93a7d310) + QObject (0x7f5b93a7d380) 0 + primary-for QWidget (0x7f5b93a3eb00) + QPaintDevice (0x7f5b93a7d3f0) 16 + vptr=((& QMessageBox::_ZTV11QMessageBox) + 488u) + +Vtable for QProgressDialog +QProgressDialog::_ZTV15QProgressDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QProgressDialog) +16 QProgressDialog::metaObject +24 QProgressDialog::qt_metacast +32 QProgressDialog::qt_metacall +40 QProgressDialog::~QProgressDialog +48 QProgressDialog::~QProgressDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QProgressDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QProgressDialog::resizeEvent +272 QProgressDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QProgressDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QProgressDialog::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI15QProgressDialog) +488 QProgressDialog::_ZThn16_N15QProgressDialogD1Ev +496 QProgressDialog::_ZThn16_N15QProgressDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QProgressDialog + size=40 align=8 + base size=40 base align=8 +QProgressDialog (0x7f5b938f7bd0) 0 + vptr=((& QProgressDialog::_ZTV15QProgressDialog) + 16u) + QDialog (0x7f5b938f7c40) 0 + primary-for QProgressDialog (0x7f5b938f7bd0) + QWidget (0x7f5b9390d100) 0 + primary-for QDialog (0x7f5b938f7c40) + QObject (0x7f5b938f7cb0) 0 + primary-for QWidget (0x7f5b9390d100) + QPaintDevice (0x7f5b938f7d20) 16 + vptr=((& QProgressDialog::_ZTV15QProgressDialog) + 488u) + +Vtable for QErrorMessage +QErrorMessage::_ZTV13QErrorMessage: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QErrorMessage) +16 QErrorMessage::metaObject +24 QErrorMessage::qt_metacast +32 QErrorMessage::qt_metacall +40 QErrorMessage::~QErrorMessage +48 QErrorMessage::~QErrorMessage +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QErrorMessage::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QErrorMessage::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI13QErrorMessage) +488 QErrorMessage::_ZThn16_N13QErrorMessageD1Ev +496 QErrorMessage::_ZThn16_N13QErrorMessageD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QErrorMessage + size=40 align=8 + base size=40 base align=8 +QErrorMessage (0x7f5b9392f7e0) 0 + vptr=((& QErrorMessage::_ZTV13QErrorMessage) + 16u) + QDialog (0x7f5b9392f850) 0 + primary-for QErrorMessage (0x7f5b9392f7e0) + QWidget (0x7f5b9390da00) 0 + primary-for QDialog (0x7f5b9392f850) + QObject (0x7f5b9392f8c0) 0 + primary-for QWidget (0x7f5b9390da00) + QPaintDevice (0x7f5b9392f930) 16 + vptr=((& QErrorMessage::_ZTV13QErrorMessage) + 488u) + +Vtable for QPrintPreviewDialog +QPrintPreviewDialog::_ZTV19QPrintPreviewDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QPrintPreviewDialog) +16 QPrintPreviewDialog::metaObject +24 QPrintPreviewDialog::qt_metacast +32 QPrintPreviewDialog::qt_metacall +40 QPrintPreviewDialog::~QPrintPreviewDialog +48 QPrintPreviewDialog::~QPrintPreviewDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QPrintPreviewDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QPrintPreviewDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI19QPrintPreviewDialog) +488 QPrintPreviewDialog::_ZThn16_N19QPrintPreviewDialogD1Ev +496 QPrintPreviewDialog::_ZThn16_N19QPrintPreviewDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPrintPreviewDialog + size=48 align=8 + base size=48 base align=8 +QPrintPreviewDialog (0x7f5b9394d3f0) 0 + vptr=((& QPrintPreviewDialog::_ZTV19QPrintPreviewDialog) + 16u) + QDialog (0x7f5b9394d460) 0 + primary-for QPrintPreviewDialog (0x7f5b9394d3f0) + QWidget (0x7f5b93948480) 0 + primary-for QDialog (0x7f5b9394d460) + QObject (0x7f5b9394d4d0) 0 + primary-for QWidget (0x7f5b93948480) + QPaintDevice (0x7f5b9394d540) 16 + vptr=((& QPrintPreviewDialog::_ZTV19QPrintPreviewDialog) + 488u) + +Vtable for QFileDialog +QFileDialog::_ZTV11QFileDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFileDialog) +16 QFileDialog::metaObject +24 QFileDialog::qt_metacast +32 QFileDialog::qt_metacall +40 QFileDialog::~QFileDialog +48 QFileDialog::~QFileDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QFileDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFileDialog::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QFileDialog::done +456 QFileDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11QFileDialog) +488 QFileDialog::_ZThn16_N11QFileDialogD1Ev +496 QFileDialog::_ZThn16_N11QFileDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFileDialog + size=40 align=8 + base size=40 base align=8 +QFileDialog (0x7f5b93963a80) 0 + vptr=((& QFileDialog::_ZTV11QFileDialog) + 16u) + QDialog (0x7f5b93963af0) 0 + primary-for QFileDialog (0x7f5b93963a80) + QWidget (0x7f5b93948d80) 0 + primary-for QDialog (0x7f5b93963af0) + QObject (0x7f5b93963b60) 0 + primary-for QWidget (0x7f5b93948d80) + QPaintDevice (0x7f5b93963bd0) 16 + vptr=((& QFileDialog::_ZTV11QFileDialog) + 488u) + +Vtable for QAbstractPrintDialog +QAbstractPrintDialog::_ZTV20QAbstractPrintDialog: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QAbstractPrintDialog) +16 QAbstractPrintDialog::metaObject +24 QAbstractPrintDialog::qt_metacast +32 QAbstractPrintDialog::qt_metacall +40 QAbstractPrintDialog::~QAbstractPrintDialog +48 QAbstractPrintDialog::~QAbstractPrintDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDialog::done +456 QDialog::accept +464 QDialog::reject +472 __cxa_pure_virtual +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI20QAbstractPrintDialog) +496 QAbstractPrintDialog::_ZThn16_N20QAbstractPrintDialogD1Ev +504 QAbstractPrintDialog::_ZThn16_N20QAbstractPrintDialogD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractPrintDialog + size=40 align=8 + base size=40 base align=8 +QAbstractPrintDialog (0x7f5b937f8070) 0 + vptr=((& QAbstractPrintDialog::_ZTV20QAbstractPrintDialog) + 16u) + QDialog (0x7f5b937f80e0) 0 + primary-for QAbstractPrintDialog (0x7f5b937f8070) + QWidget (0x7f5b937f7200) 0 + primary-for QDialog (0x7f5b937f80e0) + QObject (0x7f5b937f8150) 0 + primary-for QWidget (0x7f5b937f7200) + QPaintDevice (0x7f5b937f81c0) 16 + vptr=((& QAbstractPrintDialog::_ZTV20QAbstractPrintDialog) + 496u) + +Vtable for QUnixPrintWidget +QUnixPrintWidget::_ZTV16QUnixPrintWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QUnixPrintWidget) +16 QUnixPrintWidget::metaObject +24 QUnixPrintWidget::qt_metacast +32 QUnixPrintWidget::qt_metacall +40 QUnixPrintWidget::~QUnixPrintWidget +48 QUnixPrintWidget::~QUnixPrintWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI16QUnixPrintWidget) +464 QUnixPrintWidget::_ZThn16_N16QUnixPrintWidgetD1Ev +472 QUnixPrintWidget::_ZThn16_N16QUnixPrintWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QUnixPrintWidget + size=48 align=8 + base size=48 base align=8 +QUnixPrintWidget (0x7f5b93854150) 0 + vptr=((& QUnixPrintWidget::_ZTV16QUnixPrintWidget) + 16u) + QWidget (0x7f5b93825580) 0 + primary-for QUnixPrintWidget (0x7f5b93854150) + QObject (0x7f5b938541c0) 0 + primary-for QWidget (0x7f5b93825580) + QPaintDevice (0x7f5b93854230) 16 + vptr=((& QUnixPrintWidget::_ZTV16QUnixPrintWidget) + 464u) + +Vtable for QPrintDialog +QPrintDialog::_ZTV12QPrintDialog: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QPrintDialog) +16 QPrintDialog::metaObject +24 QPrintDialog::qt_metacast +32 QPrintDialog::qt_metacall +40 QPrintDialog::~QPrintDialog +48 QPrintDialog::~QPrintDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QPrintDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QPrintDialog::done +456 QPrintDialog::accept +464 QDialog::reject +472 QPrintDialog::exec +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI12QPrintDialog) +496 QPrintDialog::_ZThn16_N12QPrintDialogD1Ev +504 QPrintDialog::_ZThn16_N12QPrintDialogD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPrintDialog + size=40 align=8 + base size=40 base align=8 +QPrintDialog (0x7f5b93869070) 0 + vptr=((& QPrintDialog::_ZTV12QPrintDialog) + 16u) + QAbstractPrintDialog (0x7f5b938690e0) 0 + primary-for QPrintDialog (0x7f5b93869070) + QDialog (0x7f5b93869150) 0 + primary-for QAbstractPrintDialog (0x7f5b938690e0) + QWidget (0x7f5b93825c80) 0 + primary-for QDialog (0x7f5b93869150) + QObject (0x7f5b938691c0) 0 + primary-for QWidget (0x7f5b93825c80) + QPaintDevice (0x7f5b93869230) 16 + vptr=((& QPrintDialog::_ZTV12QPrintDialog) + 496u) + +Vtable for QWizard +QWizard::_ZTV7QWizard: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QWizard) +16 QWizard::metaObject +24 QWizard::qt_metacast +32 QWizard::qt_metacall +40 QWizard::~QWizard +48 QWizard::~QWizard +56 QWizard::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWizard::setVisible +128 QWizard::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWizard::paintEvent +256 QWidget::moveEvent +264 QWizard::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QWizard::done +456 QDialog::accept +464 QDialog::reject +472 QWizard::validateCurrentPage +480 QWizard::nextId +488 QWizard::initializePage +496 QWizard::cleanupPage +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI7QWizard) +520 QWizard::_ZThn16_N7QWizardD1Ev +528 QWizard::_ZThn16_N7QWizardD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWizard + size=40 align=8 + base size=40 base align=8 +QWizard (0x7f5b93881bd0) 0 + vptr=((& QWizard::_ZTV7QWizard) + 16u) + QDialog (0x7f5b93881c40) 0 + primary-for QWizard (0x7f5b93881bd0) + QWidget (0x7f5b9387d580) 0 + primary-for QDialog (0x7f5b93881c40) + QObject (0x7f5b93881cb0) 0 + primary-for QWidget (0x7f5b9387d580) + QPaintDevice (0x7f5b93881d20) 16 + vptr=((& QWizard::_ZTV7QWizard) + 520u) + +Vtable for QWizardPage +QWizardPage::_ZTV11QWizardPage: 68u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QWizardPage) +16 QWizardPage::metaObject +24 QWizardPage::qt_metacast +32 QWizardPage::qt_metacall +40 QWizardPage::~QWizardPage +48 QWizardPage::~QWizardPage +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QWizardPage::initializePage +456 QWizardPage::cleanupPage +464 QWizardPage::validatePage +472 QWizardPage::isComplete +480 QWizardPage::nextId +488 (int (*)(...))-0x00000000000000010 +496 (int (*)(...))(& _ZTI11QWizardPage) +504 QWizardPage::_ZThn16_N11QWizardPageD1Ev +512 QWizardPage::_ZThn16_N11QWizardPageD0Ev +520 QWidget::_ZThn16_NK7QWidget7devTypeEv +528 QWidget::_ZThn16_NK7QWidget11paintEngineEv +536 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWizardPage + size=40 align=8 + base size=40 base align=8 +QWizardPage (0x7f5b936d7f50) 0 + vptr=((& QWizardPage::_ZTV11QWizardPage) + 16u) + QWidget (0x7f5b938b4780) 0 + primary-for QWizardPage (0x7f5b936d7f50) + QObject (0x7f5b936f1000) 0 + primary-for QWidget (0x7f5b938b4780) + QPaintDevice (0x7f5b936f1070) 16 + vptr=((& QWizardPage::_ZTV11QWizardPage) + 504u) + +Vtable for QPageSetupDialog +QPageSetupDialog::_ZTV16QPageSetupDialog: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QPageSetupDialog) +16 QPageSetupDialog::metaObject +24 QPageSetupDialog::qt_metacast +32 QPageSetupDialog::qt_metacall +40 QPageSetupDialog::~QPageSetupDialog +48 QPageSetupDialog::~QPageSetupDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractPageSetupDialog::done +456 QDialog::accept +464 QDialog::reject +472 QPageSetupDialog::exec +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI16QPageSetupDialog) +496 QPageSetupDialog::_ZThn16_N16QPageSetupDialogD1Ev +504 QPageSetupDialog::_ZThn16_N16QPageSetupDialogD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPageSetupDialog + size=40 align=8 + base size=40 base align=8 +QPageSetupDialog (0x7f5b9370aa80) 0 + vptr=((& QPageSetupDialog::_ZTV16QPageSetupDialog) + 16u) + QAbstractPageSetupDialog (0x7f5b9370aaf0) 0 + primary-for QPageSetupDialog (0x7f5b9370aa80) + QDialog (0x7f5b9370ab60) 0 + primary-for QAbstractPageSetupDialog (0x7f5b9370aaf0) + QWidget (0x7f5b93710080) 0 + primary-for QDialog (0x7f5b9370ab60) + QObject (0x7f5b9370abd0) 0 + primary-for QWidget (0x7f5b93710080) + QPaintDevice (0x7f5b9370ac40) 16 + vptr=((& QPageSetupDialog::_ZTV16QPageSetupDialog) + 496u) + +Vtable for QLineEdit +QLineEdit::_ZTV9QLineEdit: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QLineEdit) +16 QLineEdit::metaObject +24 QLineEdit::qt_metacast +32 QLineEdit::qt_metacall +40 QLineEdit::~QLineEdit +48 QLineEdit::~QLineEdit +56 QLineEdit::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QLineEdit::sizeHint +136 QLineEdit::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QLineEdit::mousePressEvent +168 QLineEdit::mouseReleaseEvent +176 QLineEdit::mouseDoubleClickEvent +184 QLineEdit::mouseMoveEvent +192 QWidget::wheelEvent +200 QLineEdit::keyPressEvent +208 QWidget::keyReleaseEvent +216 QLineEdit::focusInEvent +224 QLineEdit::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QLineEdit::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QLineEdit::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QLineEdit::dragEnterEvent +312 QLineEdit::dragMoveEvent +320 QLineEdit::dragLeaveEvent +328 QLineEdit::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QLineEdit::changeEvent +368 QWidget::metric +376 QLineEdit::inputMethodEvent +384 QLineEdit::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI9QLineEdit) +464 QLineEdit::_ZThn16_N9QLineEditD1Ev +472 QLineEdit::_ZThn16_N9QLineEditD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QLineEdit + size=40 align=8 + base size=40 base align=8 +QLineEdit (0x7f5b93727a10) 0 + vptr=((& QLineEdit::_ZTV9QLineEdit) + 16u) + QWidget (0x7f5b93710b00) 0 + primary-for QLineEdit (0x7f5b93727a10) + QObject (0x7f5b93727a80) 0 + primary-for QWidget (0x7f5b93710b00) + QPaintDevice (0x7f5b93727af0) 16 + vptr=((& QLineEdit::_ZTV9QLineEdit) + 464u) + +Vtable for QInputDialog +QInputDialog::_ZTV12QInputDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QInputDialog) +16 QInputDialog::metaObject +24 QInputDialog::qt_metacast +32 QInputDialog::qt_metacall +40 QInputDialog::~QInputDialog +48 QInputDialog::~QInputDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QInputDialog::setVisible +128 QInputDialog::sizeHint +136 QInputDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QInputDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI12QInputDialog) +488 QInputDialog::_ZThn16_N12QInputDialogD1Ev +496 QInputDialog::_ZThn16_N12QInputDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QInputDialog + size=40 align=8 + base size=40 base align=8 +QInputDialog (0x7f5b9377a930) 0 + vptr=((& QInputDialog::_ZTV12QInputDialog) + 16u) + QDialog (0x7f5b9377a9a0) 0 + primary-for QInputDialog (0x7f5b9377a930) + QWidget (0x7f5b93776980) 0 + primary-for QDialog (0x7f5b9377a9a0) + QObject (0x7f5b9377aa10) 0 + primary-for QWidget (0x7f5b93776980) + QPaintDevice (0x7f5b9377aa80) 16 + vptr=((& QInputDialog::_ZTV12QInputDialog) + 488u) + +Vtable for QFileSystemModel +QFileSystemModel::_ZTV16QFileSystemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QFileSystemModel) +16 QFileSystemModel::metaObject +24 QFileSystemModel::qt_metacast +32 QFileSystemModel::qt_metacall +40 QFileSystemModel::~QFileSystemModel +48 QFileSystemModel::~QFileSystemModel +56 QFileSystemModel::event +64 QObject::eventFilter +72 QFileSystemModel::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFileSystemModel::index +120 QFileSystemModel::parent +128 QFileSystemModel::rowCount +136 QFileSystemModel::columnCount +144 QFileSystemModel::hasChildren +152 QFileSystemModel::data +160 QFileSystemModel::setData +168 QFileSystemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QFileSystemModel::mimeTypes +208 QFileSystemModel::mimeData +216 QFileSystemModel::dropMimeData +224 QFileSystemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QFileSystemModel::fetchMore +272 QFileSystemModel::canFetchMore +280 QFileSystemModel::flags +288 QFileSystemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QFileSystemModel + size=16 align=8 + base size=16 base align=8 +QFileSystemModel (0x7f5b935d87e0) 0 + vptr=((& QFileSystemModel::_ZTV16QFileSystemModel) + 16u) + QAbstractItemModel (0x7f5b935d8850) 0 + primary-for QFileSystemModel (0x7f5b935d87e0) + QObject (0x7f5b935d88c0) 0 + primary-for QAbstractItemModel (0x7f5b935d8850) + +Class QPixmapCache + size=1 align=1 + base size=0 base align=1 +QPixmapCache (0x7f5b9361fee0) 0 empty + +Vtable for QImageIOHandler +QImageIOHandler::_ZTV15QImageIOHandler: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QImageIOHandler) +16 QImageIOHandler::~QImageIOHandler +24 QImageIOHandler::~QImageIOHandler +32 QImageIOHandler::name +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QImageIOHandler::write +64 QImageIOHandler::option +72 QImageIOHandler::setOption +80 QImageIOHandler::supportsOption +88 QImageIOHandler::jumpToNextImage +96 QImageIOHandler::jumpToImage +104 QImageIOHandler::loopCount +112 QImageIOHandler::imageCount +120 QImageIOHandler::nextImageDelay +128 QImageIOHandler::currentImageNumber +136 QImageIOHandler::currentImageRect + +Class QImageIOHandler + size=16 align=8 + base size=16 base align=8 +QImageIOHandler (0x7f5b9361ff50) 0 + vptr=((& QImageIOHandler::_ZTV15QImageIOHandler) + 16u) + +Vtable for QImageIOHandlerFactoryInterface +QImageIOHandlerFactoryInterface::_ZTV31QImageIOHandlerFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI31QImageIOHandlerFactoryInterface) +16 QImageIOHandlerFactoryInterface::~QImageIOHandlerFactoryInterface +24 QImageIOHandlerFactoryInterface::~QImageIOHandlerFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QImageIOHandlerFactoryInterface + size=8 align=8 + base size=8 base align=8 +QImageIOHandlerFactoryInterface (0x7f5b93630b60) 0 nearly-empty + vptr=((& QImageIOHandlerFactoryInterface::_ZTV31QImageIOHandlerFactoryInterface) + 16u) + QFactoryInterface (0x7f5b93630bd0) 0 nearly-empty + primary-for QImageIOHandlerFactoryInterface (0x7f5b93630b60) + +Vtable for QImageIOPlugin +QImageIOPlugin::_ZTV14QImageIOPlugin: 23u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QImageIOPlugin) +16 QImageIOPlugin::metaObject +24 QImageIOPlugin::qt_metacast +32 QImageIOPlugin::qt_metacall +40 QImageIOPlugin::~QImageIOPlugin +48 QImageIOPlugin::~QImageIOPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 (int (*)(...))-0x00000000000000010 +144 (int (*)(...))(& _ZTI14QImageIOPlugin) +152 QImageIOPlugin::_ZThn16_N14QImageIOPluginD1Ev +160 QImageIOPlugin::_ZThn16_N14QImageIOPluginD0Ev +168 __cxa_pure_virtual +176 __cxa_pure_virtual + +Class QImageIOPlugin + size=24 align=8 + base size=24 base align=8 +QImageIOPlugin (0x7f5b93635b00) 0 + vptr=((& QImageIOPlugin::_ZTV14QImageIOPlugin) + 16u) + QObject (0x7f5b936473f0) 0 + primary-for QImageIOPlugin (0x7f5b93635b00) + QImageIOHandlerFactoryInterface (0x7f5b93647460) 16 nearly-empty + vptr=((& QImageIOPlugin::_ZTV14QImageIOPlugin) + 152u) + QFactoryInterface (0x7f5b936474d0) 16 nearly-empty + primary-for QImageIOHandlerFactoryInterface (0x7f5b93647460) + +Vtable for QPicture +QPicture::_ZTV8QPicture: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QPicture) +16 QPicture::~QPicture +24 QPicture::~QPicture +32 QPicture::devType +40 QPicture::paintEngine +48 QPicture::metric +56 QPicture::setData + +Class QPicture + size=24 align=8 + base size=24 base align=8 +QPicture (0x7f5b936984d0) 0 + vptr=((& QPicture::_ZTV8QPicture) + 16u) + QPaintDevice (0x7f5b93698540) 0 + primary-for QPicture (0x7f5b936984d0) + +Class QPictureIO + size=8 align=8 + base size=8 base align=8 +QPictureIO (0x7f5b936b0070) 0 + +Class QImageReader + size=8 align=8 + base size=8 base align=8 +QImageReader (0x7f5b936b0690) 0 + +Class QImageWriter + size=8 align=8 + base size=8 base align=8 +QImageWriter (0x7f5b934cf0e0) 0 + +Vtable for QMovie +QMovie::_ZTV6QMovie: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QMovie) +16 QMovie::metaObject +24 QMovie::qt_metacast +32 QMovie::qt_metacall +40 QMovie::~QMovie +48 QMovie::~QMovie +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QMovie + size=16 align=8 + base size=16 base align=8 +QMovie (0x7f5b934cf930) 0 + vptr=((& QMovie::_ZTV6QMovie) + 16u) + QObject (0x7f5b934cf9a0) 0 + primary-for QMovie (0x7f5b934cf930) + +Vtable for QIconEngineFactoryInterface +QIconEngineFactoryInterface::_ZTV27QIconEngineFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QIconEngineFactoryInterface) +16 QIconEngineFactoryInterface::~QIconEngineFactoryInterface +24 QIconEngineFactoryInterface::~QIconEngineFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QIconEngineFactoryInterface + size=8 align=8 + base size=8 base align=8 +QIconEngineFactoryInterface (0x7f5b935149a0) 0 nearly-empty + vptr=((& QIconEngineFactoryInterface::_ZTV27QIconEngineFactoryInterface) + 16u) + QFactoryInterface (0x7f5b93514a10) 0 nearly-empty + primary-for QIconEngineFactoryInterface (0x7f5b935149a0) + +Vtable for QIconEnginePlugin +QIconEnginePlugin::_ZTV17QIconEnginePlugin: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QIconEnginePlugin) +16 QIconEnginePlugin::metaObject +24 QIconEnginePlugin::qt_metacast +32 QIconEnginePlugin::qt_metacall +40 QIconEnginePlugin::~QIconEnginePlugin +48 QIconEnginePlugin::~QIconEnginePlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI17QIconEnginePlugin) +144 QIconEnginePlugin::_ZThn16_N17QIconEnginePluginD1Ev +152 QIconEnginePlugin::_ZThn16_N17QIconEnginePluginD0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QIconEnginePlugin + size=24 align=8 + base size=24 base align=8 +QIconEnginePlugin (0x7f5b93511e80) 0 + vptr=((& QIconEnginePlugin::_ZTV17QIconEnginePlugin) + 16u) + QObject (0x7f5b9351d230) 0 + primary-for QIconEnginePlugin (0x7f5b93511e80) + QIconEngineFactoryInterface (0x7f5b9351d2a0) 16 nearly-empty + vptr=((& QIconEnginePlugin::_ZTV17QIconEnginePlugin) + 144u) + QFactoryInterface (0x7f5b9351d310) 16 nearly-empty + primary-for QIconEngineFactoryInterface (0x7f5b9351d2a0) + +Vtable for QIconEngineFactoryInterfaceV2 +QIconEngineFactoryInterfaceV2::_ZTV29QIconEngineFactoryInterfaceV2: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI29QIconEngineFactoryInterfaceV2) +16 QIconEngineFactoryInterfaceV2::~QIconEngineFactoryInterfaceV2 +24 QIconEngineFactoryInterfaceV2::~QIconEngineFactoryInterfaceV2 +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QIconEngineFactoryInterfaceV2 + size=8 align=8 + base size=8 base align=8 +QIconEngineFactoryInterfaceV2 (0x7f5b9352e1c0) 0 nearly-empty + vptr=((& QIconEngineFactoryInterfaceV2::_ZTV29QIconEngineFactoryInterfaceV2) + 16u) + QFactoryInterface (0x7f5b9352e230) 0 nearly-empty + primary-for QIconEngineFactoryInterfaceV2 (0x7f5b9352e1c0) + +Vtable for QIconEnginePluginV2 +QIconEnginePluginV2::_ZTV19QIconEnginePluginV2: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QIconEnginePluginV2) +16 QIconEnginePluginV2::metaObject +24 QIconEnginePluginV2::qt_metacast +32 QIconEnginePluginV2::qt_metacall +40 QIconEnginePluginV2::~QIconEnginePluginV2 +48 QIconEnginePluginV2::~QIconEnginePluginV2 +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI19QIconEnginePluginV2) +144 QIconEnginePluginV2::_ZThn16_N19QIconEnginePluginV2D1Ev +152 QIconEnginePluginV2::_ZThn16_N19QIconEnginePluginV2D0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QIconEnginePluginV2 + size=24 align=8 + base size=24 base align=8 +QIconEnginePluginV2 (0x7f5b93527d00) 0 + vptr=((& QIconEnginePluginV2::_ZTV19QIconEnginePluginV2) + 16u) + QObject (0x7f5b9352eaf0) 0 + primary-for QIconEnginePluginV2 (0x7f5b93527d00) + QIconEngineFactoryInterfaceV2 (0x7f5b9352eb60) 16 nearly-empty + vptr=((& QIconEnginePluginV2::_ZTV19QIconEnginePluginV2) + 144u) + QFactoryInterface (0x7f5b9352ebd0) 16 nearly-empty + primary-for QIconEngineFactoryInterfaceV2 (0x7f5b9352eb60) + +Vtable for QIconEngine +QIconEngine::_ZTV11QIconEngine: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QIconEngine) +16 QIconEngine::~QIconEngine +24 QIconEngine::~QIconEngine +32 __cxa_pure_virtual +40 QIconEngine::actualSize +48 QIconEngine::pixmap +56 QIconEngine::addPixmap +64 QIconEngine::addFile + +Class QIconEngine + size=8 align=8 + base size=8 base align=8 +QIconEngine (0x7f5b93543a80) 0 nearly-empty + vptr=((& QIconEngine::_ZTV11QIconEngine) + 16u) + +Class QIconEngineV2::AvailableSizesArgument + size=16 align=8 + base size=16 base align=8 +QIconEngineV2::AvailableSizesArgument (0x7f5b9354f2a0) 0 + +Vtable for QIconEngineV2 +QIconEngineV2::_ZTV13QIconEngineV2: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QIconEngineV2) +16 QIconEngineV2::~QIconEngineV2 +24 QIconEngineV2::~QIconEngineV2 +32 __cxa_pure_virtual +40 QIconEngine::actualSize +48 QIconEngine::pixmap +56 QIconEngine::addPixmap +64 QIconEngine::addFile +72 QIconEngineV2::key +80 QIconEngineV2::clone +88 QIconEngineV2::read +96 QIconEngineV2::write +104 QIconEngineV2::virtual_hook + +Class QIconEngineV2 + size=8 align=8 + base size=8 base align=8 +QIconEngineV2 (0x7f5b9354f070) 0 nearly-empty + vptr=((& QIconEngineV2::_ZTV13QIconEngineV2) + 16u) + QIconEngine (0x7f5b9354f0e0) 0 nearly-empty + primary-for QIconEngineV2 (0x7f5b9354f070) + +Vtable for QBitmap +QBitmap::_ZTV7QBitmap: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QBitmap) +16 QBitmap::~QBitmap +24 QBitmap::~QBitmap +32 QPixmap::devType +40 QPixmap::paintEngine +48 QPixmap::metric + +Class QBitmap + size=24 align=8 + base size=24 base align=8 +QBitmap (0x7f5b9354fa80) 0 + vptr=((& QBitmap::_ZTV7QBitmap) + 16u) + QPixmap (0x7f5b9354faf0) 0 + primary-for QBitmap (0x7f5b9354fa80) + QPaintDevice (0x7f5b9354fb60) 0 + primary-for QPixmap (0x7f5b9354faf0) + +Vtable for QPictureFormatInterface +QPictureFormatInterface::_ZTV23QPictureFormatInterface: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QPictureFormatInterface) +16 QPictureFormatInterface::~QPictureFormatInterface +24 QPictureFormatInterface::~QPictureFormatInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual + +Class QPictureFormatInterface + size=8 align=8 + base size=8 base align=8 +QPictureFormatInterface (0x7f5b935a7bd0) 0 nearly-empty + vptr=((& QPictureFormatInterface::_ZTV23QPictureFormatInterface) + 16u) + QFactoryInterface (0x7f5b935a7c40) 0 nearly-empty + primary-for QPictureFormatInterface (0x7f5b935a7bd0) + +Vtable for QPictureFormatPlugin +QPictureFormatPlugin::_ZTV20QPictureFormatPlugin: 26u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QPictureFormatPlugin) +16 QPictureFormatPlugin::metaObject +24 QPictureFormatPlugin::qt_metacast +32 QPictureFormatPlugin::qt_metacall +40 QPictureFormatPlugin::~QPictureFormatPlugin +48 QPictureFormatPlugin::~QPictureFormatPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 QPictureFormatPlugin::loadPicture +128 QPictureFormatPlugin::savePicture +136 __cxa_pure_virtual +144 (int (*)(...))-0x00000000000000010 +152 (int (*)(...))(& _ZTI20QPictureFormatPlugin) +160 QPictureFormatPlugin::_ZThn16_N20QPictureFormatPluginD1Ev +168 QPictureFormatPlugin::_ZThn16_N20QPictureFormatPluginD0Ev +176 __cxa_pure_virtual +184 QPictureFormatPlugin::_ZThn16_N20QPictureFormatPlugin11loadPictureERK7QStringS2_P8QPicture +192 QPictureFormatPlugin::_ZThn16_N20QPictureFormatPlugin11savePictureERK7QStringS2_RK8QPicture +200 __cxa_pure_virtual + +Class QPictureFormatPlugin + size=24 align=8 + base size=24 base align=8 +QPictureFormatPlugin (0x7f5b935afa00) 0 + vptr=((& QPictureFormatPlugin::_ZTV20QPictureFormatPlugin) + 16u) + QObject (0x7f5b933b63f0) 0 + primary-for QPictureFormatPlugin (0x7f5b935afa00) + QPictureFormatInterface (0x7f5b933b6460) 16 nearly-empty + vptr=((& QPictureFormatPlugin::_ZTV20QPictureFormatPlugin) + 160u) + QFactoryInterface (0x7f5b933b64d0) 16 nearly-empty + primary-for QPictureFormatInterface (0x7f5b933b6460) + +Class QVFbHeader + size=1088 align=8 + base size=1088 base align=8 +QVFbHeader (0x7f5b933c9380) 0 + +Class QVFbKeyData + size=12 align=4 + base size=12 base align=4 +QVFbKeyData (0x7f5b933c93f0) 0 + +Vtable for QWSEmbedWidget +QWSEmbedWidget::_ZTV14QWSEmbedWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QWSEmbedWidget) +16 QWSEmbedWidget::metaObject +24 QWSEmbedWidget::qt_metacast +32 QWSEmbedWidget::qt_metacall +40 QWSEmbedWidget::~QWSEmbedWidget +48 QWSEmbedWidget::~QWSEmbedWidget +56 QWidget::event +64 QWSEmbedWidget::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWSEmbedWidget::moveEvent +264 QWSEmbedWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWSEmbedWidget::showEvent +344 QWSEmbedWidget::hideEvent +352 QWidget::x11Event +360 QWSEmbedWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI14QWSEmbedWidget) +464 QWSEmbedWidget::_ZThn16_N14QWSEmbedWidgetD1Ev +472 QWSEmbedWidget::_ZThn16_N14QWSEmbedWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWSEmbedWidget + size=40 align=8 + base size=40 base align=8 +QWSEmbedWidget (0x7f5b933c9460) 0 + vptr=((& QWSEmbedWidget::_ZTV14QWSEmbedWidget) + 16u) + QWidget (0x7f5b933c8200) 0 + primary-for QWSEmbedWidget (0x7f5b933c9460) + QObject (0x7f5b933c94d0) 0 + primary-for QWidget (0x7f5b933c8200) + QPaintDevice (0x7f5b933c9540) 16 + vptr=((& QWSEmbedWidget::_ZTV14QWSEmbedWidget) + 464u) + +Class QColormap + size=8 align=8 + base size=8 base align=8 +QColormap (0x7f5b933e2930) 0 + +Vtable for QPrinter +QPrinter::_ZTV8QPrinter: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QPrinter) +16 QPrinter::~QPrinter +24 QPrinter::~QPrinter +32 QPrinter::devType +40 QPrinter::paintEngine +48 QPrinter::metric + +Class QPrinter + size=24 align=8 + base size=24 base align=8 +QPrinter (0x7f5b933e9150) 0 + vptr=((& QPrinter::_ZTV8QPrinter) + 16u) + QPaintDevice (0x7f5b933e91c0) 0 + primary-for QPrinter (0x7f5b933e9150) + +Vtable for QPrintEngine +QPrintEngine::_ZTV12QPrintEngine: 10u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QPrintEngine) +16 QPrintEngine::~QPrintEngine +24 QPrintEngine::~QPrintEngine +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual + +Class QPrintEngine + size=8 align=8 + base size=8 base align=8 +QPrintEngine (0x7f5b9342c620) 0 nearly-empty + vptr=((& QPrintEngine::_ZTV12QPrintEngine) + 16u) + +Class QPainter + size=8 align=8 + base size=8 base align=8 +QPainter (0x7f5b9343c380) 0 + +Class QStylePainter + size=24 align=8 + base size=24 base align=8 +QStylePainter (0x7f5b9323fc40) 0 + QPainter (0x7f5b9323fcb0) 0 + +Class QPrinterInfo + size=8 align=8 + base size=8 base align=8 +QPrinterInfo (0x7f5b93271230) 0 + +Class QTextItem + size=1 align=1 + base size=0 base align=1 +QTextItem (0x7f5b93274700) 0 empty + +Vtable for QPaintEngine +QPaintEngine::_ZTV12QPaintEngine: 24u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QPaintEngine) +16 QPaintEngine::~QPaintEngine +24 QPaintEngine::~QPaintEngine +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QPaintEngine::drawRects +64 QPaintEngine::drawRects +72 QPaintEngine::drawLines +80 QPaintEngine::drawLines +88 QPaintEngine::drawEllipse +96 QPaintEngine::drawEllipse +104 QPaintEngine::drawPath +112 QPaintEngine::drawPoints +120 QPaintEngine::drawPoints +128 QPaintEngine::drawPolygon +136 QPaintEngine::drawPolygon +144 __cxa_pure_virtual +152 QPaintEngine::drawTextItem +160 QPaintEngine::drawTiledPixmap +168 QPaintEngine::drawImage +176 QPaintEngine::coordinateOffset +184 __cxa_pure_virtual + +Class QPaintEngine + size=32 align=8 + base size=32 base align=8 +QPaintEngine (0x7f5b93274d20) 0 + vptr=((& QPaintEngine::_ZTV12QPaintEngine) + 16u) + +Class QPaintEngineState + size=4 align=4 + base size=4 base align=4 +QPaintEngineState (0x7f5b930c07e0) 0 + +Class QTreeWidgetItemIterator + size=24 align=8 + base size=20 base align=8 +QTreeWidgetItemIterator (0x7f5b93178af0) 0 + +Vtable for QDataWidgetMapper +QDataWidgetMapper::_ZTV17QDataWidgetMapper: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QDataWidgetMapper) +16 QDataWidgetMapper::metaObject +24 QDataWidgetMapper::qt_metacast +32 QDataWidgetMapper::qt_metacall +40 QDataWidgetMapper::~QDataWidgetMapper +48 QDataWidgetMapper::~QDataWidgetMapper +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QDataWidgetMapper::setCurrentIndex + +Class QDataWidgetMapper + size=16 align=8 + base size=16 base align=8 +QDataWidgetMapper (0x7f5b92fd5690) 0 + vptr=((& QDataWidgetMapper::_ZTV17QDataWidgetMapper) + 16u) + QObject (0x7f5b92fd5700) 0 + primary-for QDataWidgetMapper (0x7f5b92fd5690) + +Vtable for QFileIconProvider +QFileIconProvider::_ZTV17QFileIconProvider: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QFileIconProvider) +16 QFileIconProvider::~QFileIconProvider +24 QFileIconProvider::~QFileIconProvider +32 QFileIconProvider::icon +40 QFileIconProvider::icon +48 QFileIconProvider::type + +Class QFileIconProvider + size=16 align=8 + base size=16 base align=8 +QFileIconProvider (0x7f5b9300e150) 0 + vptr=((& QFileIconProvider::_ZTV17QFileIconProvider) + 16u) + +Vtable for QStringListModel +QStringListModel::_ZTV16QStringListModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QStringListModel) +16 QStringListModel::metaObject +24 QStringListModel::qt_metacast +32 QStringListModel::qt_metacall +40 QStringListModel::~QStringListModel +48 QStringListModel::~QStringListModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractListModel::index +120 QAbstractListModel::parent +128 QStringListModel::rowCount +136 QAbstractListModel::columnCount +144 QAbstractListModel::hasChildren +152 QStringListModel::data +160 QStringListModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractListModel::dropMimeData +224 QStringListModel::supportedDropActions +232 QStringListModel::insertRows +240 QAbstractItemModel::insertColumns +248 QStringListModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QStringListModel::flags +288 QStringListModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QStringListModel + size=24 align=8 + base size=24 base align=8 +QStringListModel (0x7f5b9300ec40) 0 + vptr=((& QStringListModel::_ZTV16QStringListModel) + 16u) + QAbstractListModel (0x7f5b9300ecb0) 0 + primary-for QStringListModel (0x7f5b9300ec40) + QAbstractItemModel (0x7f5b9300ed20) 0 + primary-for QAbstractListModel (0x7f5b9300ecb0) + QObject (0x7f5b9300ed90) 0 + primary-for QAbstractItemModel (0x7f5b9300ed20) + +Vtable for QListWidgetItem +QListWidgetItem::_ZTV15QListWidgetItem: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QListWidgetItem) +16 QListWidgetItem::~QListWidgetItem +24 QListWidgetItem::~QListWidgetItem +32 QListWidgetItem::clone +40 QListWidgetItem::setBackgroundColor +48 QListWidgetItem::data +56 QListWidgetItem::setData +64 QListWidgetItem::operator< +72 QListWidgetItem::read +80 QListWidgetItem::write + +Class QListWidgetItem + size=48 align=8 + base size=44 base align=8 +QListWidgetItem (0x7f5b9302f230) 0 + vptr=((& QListWidgetItem::_ZTV15QListWidgetItem) + 16u) + +Vtable for QListWidget +QListWidget::_ZTV11QListWidget: 107u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QListWidget) +16 QListWidget::metaObject +24 QListWidget::qt_metacast +32 QListWidget::qt_metacall +40 QListWidget::~QListWidget +48 QListWidget::~QListWidget +56 QListWidget::event +64 QObject::eventFilter +72 QListView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QListView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QListView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QListView::paintEvent +256 QWidget::moveEvent +264 QListView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QListView::dragMoveEvent +320 QListView::dragLeaveEvent +328 QListWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QListView::scrollContentsBy +464 QListWidget::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QListView::visualRect +496 QListView::scrollTo +504 QListView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QListView::reset +536 QListView::setRootIndex +544 QListView::doItemsLayout +552 QAbstractItemView::selectAll +560 QListView::dataChanged +568 QListView::rowsInserted +576 QListView::rowsAboutToBeRemoved +584 QListView::selectionChanged +592 QListView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QListView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QListView::moveCursor +688 QListView::horizontalOffset +696 QListView::verticalOffset +704 QListView::isIndexHidden +712 QListView::setSelection +720 QListView::visualRegionForSelection +728 QListView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QListView::startDrag +760 QListView::viewOptions +768 QListWidget::mimeTypes +776 QListWidget::mimeData +784 QListWidget::dropMimeData +792 QListWidget::supportedDropActions +800 (int (*)(...))-0x00000000000000010 +808 (int (*)(...))(& _ZTI11QListWidget) +816 QListWidget::_ZThn16_N11QListWidgetD1Ev +824 QListWidget::_ZThn16_N11QListWidgetD0Ev +832 QWidget::_ZThn16_NK7QWidget7devTypeEv +840 QWidget::_ZThn16_NK7QWidget11paintEngineEv +848 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QListWidget + size=40 align=8 + base size=40 base align=8 +QListWidget (0x7f5b930a49a0) 0 + vptr=((& QListWidget::_ZTV11QListWidget) + 16u) + QListView (0x7f5b930a4a10) 0 + primary-for QListWidget (0x7f5b930a49a0) + QAbstractItemView (0x7f5b930a4a80) 0 + primary-for QListView (0x7f5b930a4a10) + QAbstractScrollArea (0x7f5b930a4af0) 0 + primary-for QAbstractItemView (0x7f5b930a4a80) + QFrame (0x7f5b930a4b60) 0 + primary-for QAbstractScrollArea (0x7f5b930a4af0) + QWidget (0x7f5b930a0580) 0 + primary-for QFrame (0x7f5b930a4b60) + QObject (0x7f5b930a4bd0) 0 + primary-for QWidget (0x7f5b930a0580) + QPaintDevice (0x7f5b930a4c40) 16 + vptr=((& QListWidget::_ZTV11QListWidget) + 816u) + +Vtable for QDirModel +QDirModel::_ZTV9QDirModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QDirModel) +16 QDirModel::metaObject +24 QDirModel::qt_metacast +32 QDirModel::qt_metacall +40 QDirModel::~QDirModel +48 QDirModel::~QDirModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QDirModel::index +120 QDirModel::parent +128 QDirModel::rowCount +136 QDirModel::columnCount +144 QDirModel::hasChildren +152 QDirModel::data +160 QDirModel::setData +168 QDirModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QDirModel::mimeTypes +208 QDirModel::mimeData +216 QDirModel::dropMimeData +224 QDirModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QDirModel::flags +288 QDirModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QDirModel + size=16 align=8 + base size=16 base align=8 +QDirModel (0x7f5b92edde00) 0 + vptr=((& QDirModel::_ZTV9QDirModel) + 16u) + QAbstractItemModel (0x7f5b92edde70) 0 + primary-for QDirModel (0x7f5b92edde00) + QObject (0x7f5b92eddee0) 0 + primary-for QAbstractItemModel (0x7f5b92edde70) + +Vtable for QColumnView +QColumnView::_ZTV11QColumnView: 104u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QColumnView) +16 QColumnView::metaObject +24 QColumnView::qt_metacast +32 QColumnView::qt_metacall +40 QColumnView::~QColumnView +48 QColumnView::~QColumnView +56 QAbstractItemView::event +64 QObject::eventFilter +72 QAbstractItemView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QColumnView::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QAbstractItemView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QAbstractItemView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractScrollArea::paintEvent +256 QWidget::moveEvent +264 QColumnView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QColumnView::scrollContentsBy +464 QColumnView::setModel +472 QColumnView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QColumnView::visualRect +496 QColumnView::scrollTo +504 QColumnView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QAbstractItemView::reset +536 QColumnView::setRootIndex +544 QAbstractItemView::doItemsLayout +552 QColumnView::selectAll +560 QAbstractItemView::dataChanged +568 QAbstractItemView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QAbstractItemView::selectionChanged +592 QColumnView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QAbstractItemView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QColumnView::moveCursor +688 QColumnView::horizontalOffset +696 QColumnView::verticalOffset +704 QColumnView::isIndexHidden +712 QColumnView::setSelection +720 QColumnView::visualRegionForSelection +728 QAbstractItemView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 QColumnView::createColumn +776 (int (*)(...))-0x00000000000000010 +784 (int (*)(...))(& _ZTI11QColumnView) +792 QColumnView::_ZThn16_N11QColumnViewD1Ev +800 QColumnView::_ZThn16_N11QColumnViewD0Ev +808 QWidget::_ZThn16_NK7QWidget7devTypeEv +816 QWidget::_ZThn16_NK7QWidget11paintEngineEv +824 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QColumnView + size=40 align=8 + base size=40 base align=8 +QColumnView (0x7f5b92f0b0e0) 0 + vptr=((& QColumnView::_ZTV11QColumnView) + 16u) + QAbstractItemView (0x7f5b92f0b150) 0 + primary-for QColumnView (0x7f5b92f0b0e0) + QAbstractScrollArea (0x7f5b92f0b1c0) 0 + primary-for QAbstractItemView (0x7f5b92f0b150) + QFrame (0x7f5b92f0b230) 0 + primary-for QAbstractScrollArea (0x7f5b92f0b1c0) + QWidget (0x7f5b92ee0d00) 0 + primary-for QFrame (0x7f5b92f0b230) + QObject (0x7f5b92f0b2a0) 0 + primary-for QWidget (0x7f5b92ee0d00) + QPaintDevice (0x7f5b92f0b310) 16 + vptr=((& QColumnView::_ZTV11QColumnView) + 792u) + +Vtable for QStandardItem +QStandardItem::_ZTV13QStandardItem: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QStandardItem) +16 QStandardItem::~QStandardItem +24 QStandardItem::~QStandardItem +32 QStandardItem::data +40 QStandardItem::setData +48 QStandardItem::clone +56 QStandardItem::type +64 QStandardItem::read +72 QStandardItem::write +80 QStandardItem::operator< + +Class QStandardItem + size=16 align=8 + base size=16 base align=8 +QStandardItem (0x7f5b92f2f230) 0 + vptr=((& QStandardItem::_ZTV13QStandardItem) + 16u) + +Vtable for QStandardItemModel +QStandardItemModel::_ZTV18QStandardItemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QStandardItemModel) +16 QStandardItemModel::metaObject +24 QStandardItemModel::qt_metacast +32 QStandardItemModel::qt_metacall +40 QStandardItemModel::~QStandardItemModel +48 QStandardItemModel::~QStandardItemModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QStandardItemModel::index +120 QStandardItemModel::parent +128 QStandardItemModel::rowCount +136 QStandardItemModel::columnCount +144 QStandardItemModel::hasChildren +152 QStandardItemModel::data +160 QStandardItemModel::setData +168 QStandardItemModel::headerData +176 QStandardItemModel::setHeaderData +184 QStandardItemModel::itemData +192 QStandardItemModel::setItemData +200 QStandardItemModel::mimeTypes +208 QStandardItemModel::mimeData +216 QStandardItemModel::dropMimeData +224 QStandardItemModel::supportedDropActions +232 QStandardItemModel::insertRows +240 QStandardItemModel::insertColumns +248 QStandardItemModel::removeRows +256 QStandardItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QStandardItemModel::flags +288 QStandardItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QStandardItemModel + size=16 align=8 + base size=16 base align=8 +QStandardItemModel (0x7f5b92e0ce00) 0 + vptr=((& QStandardItemModel::_ZTV18QStandardItemModel) + 16u) + QAbstractItemModel (0x7f5b92e0ce70) 0 + primary-for QStandardItemModel (0x7f5b92e0ce00) + QObject (0x7f5b92e0cee0) 0 + primary-for QAbstractItemModel (0x7f5b92e0ce70) + +Vtable for QAbstractProxyModel +QAbstractProxyModel::_ZTV19QAbstractProxyModel: 47u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractProxyModel) +16 QAbstractProxyModel::metaObject +24 QAbstractProxyModel::qt_metacast +32 QAbstractProxyModel::qt_metacall +40 QAbstractProxyModel::~QAbstractProxyModel +48 QAbstractProxyModel::~QAbstractProxyModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractItemModel::hasChildren +152 QAbstractProxyModel::data +160 QAbstractProxyModel::setData +168 QAbstractProxyModel::headerData +176 QAbstractProxyModel::setHeaderData +184 QAbstractProxyModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractItemModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractProxyModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractProxyModel::submit +328 QAbstractProxyModel::revert +336 QAbstractProxyModel::setSourceModel +344 __cxa_pure_virtual +352 __cxa_pure_virtual +360 QAbstractProxyModel::mapSelectionToSource +368 QAbstractProxyModel::mapSelectionFromSource + +Class QAbstractProxyModel + size=16 align=8 + base size=16 base align=8 +QAbstractProxyModel (0x7f5b92e4a9a0) 0 + vptr=((& QAbstractProxyModel::_ZTV19QAbstractProxyModel) + 16u) + QAbstractItemModel (0x7f5b92e4aa10) 0 + primary-for QAbstractProxyModel (0x7f5b92e4a9a0) + QObject (0x7f5b92e4aa80) 0 + primary-for QAbstractItemModel (0x7f5b92e4aa10) + +Vtable for QSortFilterProxyModel +QSortFilterProxyModel::_ZTV21QSortFilterProxyModel: 50u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QSortFilterProxyModel) +16 QSortFilterProxyModel::metaObject +24 QSortFilterProxyModel::qt_metacast +32 QSortFilterProxyModel::qt_metacall +40 QSortFilterProxyModel::~QSortFilterProxyModel +48 QSortFilterProxyModel::~QSortFilterProxyModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QSortFilterProxyModel::index +120 QSortFilterProxyModel::parent +128 QSortFilterProxyModel::rowCount +136 QSortFilterProxyModel::columnCount +144 QSortFilterProxyModel::hasChildren +152 QSortFilterProxyModel::data +160 QSortFilterProxyModel::setData +168 QSortFilterProxyModel::headerData +176 QSortFilterProxyModel::setHeaderData +184 QAbstractProxyModel::itemData +192 QAbstractItemModel::setItemData +200 QSortFilterProxyModel::mimeTypes +208 QSortFilterProxyModel::mimeData +216 QSortFilterProxyModel::dropMimeData +224 QSortFilterProxyModel::supportedDropActions +232 QSortFilterProxyModel::insertRows +240 QSortFilterProxyModel::insertColumns +248 QSortFilterProxyModel::removeRows +256 QSortFilterProxyModel::removeColumns +264 QSortFilterProxyModel::fetchMore +272 QSortFilterProxyModel::canFetchMore +280 QSortFilterProxyModel::flags +288 QSortFilterProxyModel::sort +296 QSortFilterProxyModel::buddy +304 QSortFilterProxyModel::match +312 QSortFilterProxyModel::span +320 QAbstractProxyModel::submit +328 QAbstractProxyModel::revert +336 QSortFilterProxyModel::setSourceModel +344 QSortFilterProxyModel::mapToSource +352 QSortFilterProxyModel::mapFromSource +360 QSortFilterProxyModel::mapSelectionToSource +368 QSortFilterProxyModel::mapSelectionFromSource +376 QSortFilterProxyModel::filterAcceptsRow +384 QSortFilterProxyModel::filterAcceptsColumn +392 QSortFilterProxyModel::lessThan + +Class QSortFilterProxyModel + size=16 align=8 + base size=16 base align=8 +QSortFilterProxyModel (0x7f5b92e745b0) 0 + vptr=((& QSortFilterProxyModel::_ZTV21QSortFilterProxyModel) + 16u) + QAbstractProxyModel (0x7f5b92e74620) 0 + primary-for QSortFilterProxyModel (0x7f5b92e745b0) + QAbstractItemModel (0x7f5b92e74690) 0 + primary-for QAbstractProxyModel (0x7f5b92e74620) + QObject (0x7f5b92e74700) 0 + primary-for QAbstractItemModel (0x7f5b92e74690) + +Vtable for QStyledItemDelegate +QStyledItemDelegate::_ZTV19QStyledItemDelegate: 23u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QStyledItemDelegate) +16 QStyledItemDelegate::metaObject +24 QStyledItemDelegate::qt_metacast +32 QStyledItemDelegate::qt_metacall +40 QStyledItemDelegate::~QStyledItemDelegate +48 QStyledItemDelegate::~QStyledItemDelegate +56 QObject::event +64 QStyledItemDelegate::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QStyledItemDelegate::paint +120 QStyledItemDelegate::sizeHint +128 QStyledItemDelegate::createEditor +136 QStyledItemDelegate::setEditorData +144 QStyledItemDelegate::setModelData +152 QStyledItemDelegate::updateEditorGeometry +160 QStyledItemDelegate::editorEvent +168 QStyledItemDelegate::displayText +176 QStyledItemDelegate::initStyleOption + +Class QStyledItemDelegate + size=16 align=8 + base size=16 base align=8 +QStyledItemDelegate (0x7f5b92ea44d0) 0 + vptr=((& QStyledItemDelegate::_ZTV19QStyledItemDelegate) + 16u) + QAbstractItemDelegate (0x7f5b92ea4540) 0 + primary-for QStyledItemDelegate (0x7f5b92ea44d0) + QObject (0x7f5b92ea45b0) 0 + primary-for QAbstractItemDelegate (0x7f5b92ea4540) + +Vtable for QItemDelegate +QItemDelegate::_ZTV13QItemDelegate: 25u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QItemDelegate) +16 QItemDelegate::metaObject +24 QItemDelegate::qt_metacast +32 QItemDelegate::qt_metacall +40 QItemDelegate::~QItemDelegate +48 QItemDelegate::~QItemDelegate +56 QObject::event +64 QItemDelegate::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QItemDelegate::paint +120 QItemDelegate::sizeHint +128 QItemDelegate::createEditor +136 QItemDelegate::setEditorData +144 QItemDelegate::setModelData +152 QItemDelegate::updateEditorGeometry +160 QItemDelegate::editorEvent +168 QItemDelegate::drawDisplay +176 QItemDelegate::drawDecoration +184 QItemDelegate::drawFocus +192 QItemDelegate::drawCheck + +Class QItemDelegate + size=16 align=8 + base size=16 base align=8 +QItemDelegate (0x7f5b92cb9e70) 0 + vptr=((& QItemDelegate::_ZTV13QItemDelegate) + 16u) + QAbstractItemDelegate (0x7f5b92cb9ee0) 0 + primary-for QItemDelegate (0x7f5b92cb9e70) + QObject (0x7f5b92cb9f50) 0 + primary-for QAbstractItemDelegate (0x7f5b92cb9ee0) + +Vtable for QTableView +QTableView::_ZTV10QTableView: 103u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTableView) +16 QTableView::metaObject +24 QTableView::qt_metacast +32 QTableView::qt_metacall +40 QTableView::~QTableView +48 QTableView::~QTableView +56 QAbstractItemView::event +64 QObject::eventFilter +72 QTableView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QAbstractItemView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QAbstractItemView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTableView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QTableView::scrollContentsBy +464 QTableView::setModel +472 QTableView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QTableView::visualRect +496 QTableView::scrollTo +504 QTableView::indexAt +512 QTableView::sizeHintForRow +520 QTableView::sizeHintForColumn +528 QAbstractItemView::reset +536 QTableView::setRootIndex +544 QAbstractItemView::doItemsLayout +552 QAbstractItemView::selectAll +560 QAbstractItemView::dataChanged +568 QAbstractItemView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QTableView::selectionChanged +592 QTableView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QTableView::updateGeometries +624 QTableView::verticalScrollbarAction +632 QTableView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QTableView::moveCursor +688 QTableView::horizontalOffset +696 QTableView::verticalOffset +704 QTableView::isIndexHidden +712 QTableView::setSelection +720 QTableView::visualRegionForSelection +728 QTableView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QTableView::viewOptions +768 (int (*)(...))-0x00000000000000010 +776 (int (*)(...))(& _ZTI10QTableView) +784 QTableView::_ZThn16_N10QTableViewD1Ev +792 QTableView::_ZThn16_N10QTableViewD0Ev +800 QWidget::_ZThn16_NK7QWidget7devTypeEv +808 QWidget::_ZThn16_NK7QWidget11paintEngineEv +816 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTableView + size=40 align=8 + base size=40 base align=8 +QTableView (0x7f5b92cdc850) 0 + vptr=((& QTableView::_ZTV10QTableView) + 16u) + QAbstractItemView (0x7f5b92cdc8c0) 0 + primary-for QTableView (0x7f5b92cdc850) + QAbstractScrollArea (0x7f5b92cdc930) 0 + primary-for QAbstractItemView (0x7f5b92cdc8c0) + QFrame (0x7f5b92cdc9a0) 0 + primary-for QAbstractScrollArea (0x7f5b92cdc930) + QWidget (0x7f5b92cd9500) 0 + primary-for QFrame (0x7f5b92cdc9a0) + QObject (0x7f5b92cdca10) 0 + primary-for QWidget (0x7f5b92cd9500) + QPaintDevice (0x7f5b92cdca80) 16 + vptr=((& QTableView::_ZTV10QTableView) + 784u) + +Class QTableWidgetSelectionRange + size=16 align=4 + base size=16 base align=4 +QTableWidgetSelectionRange (0x7f5b92d0e620) 0 + +Vtable for QTableWidgetItem +QTableWidgetItem::_ZTV16QTableWidgetItem: 10u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QTableWidgetItem) +16 QTableWidgetItem::~QTableWidgetItem +24 QTableWidgetItem::~QTableWidgetItem +32 QTableWidgetItem::clone +40 QTableWidgetItem::data +48 QTableWidgetItem::setData +56 QTableWidgetItem::operator< +64 QTableWidgetItem::read +72 QTableWidgetItem::write + +Class QTableWidgetItem + size=48 align=8 + base size=44 base align=8 +QTableWidgetItem (0x7f5b92d19af0) 0 + vptr=((& QTableWidgetItem::_ZTV16QTableWidgetItem) + 16u) + +Vtable for QTableWidget +QTableWidget::_ZTV12QTableWidget: 107u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTableWidget) +16 QTableWidget::metaObject +24 QTableWidget::qt_metacast +32 QTableWidget::qt_metacall +40 QTableWidget::~QTableWidget +48 QTableWidget::~QTableWidget +56 QTableWidget::event +64 QObject::eventFilter +72 QTableView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QAbstractItemView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QAbstractItemView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTableView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QTableWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QTableView::scrollContentsBy +464 QTableWidget::setModel +472 QTableView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QTableView::visualRect +496 QTableView::scrollTo +504 QTableView::indexAt +512 QTableView::sizeHintForRow +520 QTableView::sizeHintForColumn +528 QAbstractItemView::reset +536 QTableView::setRootIndex +544 QAbstractItemView::doItemsLayout +552 QAbstractItemView::selectAll +560 QAbstractItemView::dataChanged +568 QAbstractItemView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QTableView::selectionChanged +592 QTableView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QTableView::updateGeometries +624 QTableView::verticalScrollbarAction +632 QTableView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QTableView::moveCursor +688 QTableView::horizontalOffset +696 QTableView::verticalOffset +704 QTableView::isIndexHidden +712 QTableView::setSelection +720 QTableView::visualRegionForSelection +728 QTableView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QTableView::viewOptions +768 QTableWidget::mimeTypes +776 QTableWidget::mimeData +784 QTableWidget::dropMimeData +792 QTableWidget::supportedDropActions +800 (int (*)(...))-0x00000000000000010 +808 (int (*)(...))(& _ZTI12QTableWidget) +816 QTableWidget::_ZThn16_N12QTableWidgetD1Ev +824 QTableWidget::_ZThn16_N12QTableWidgetD0Ev +832 QWidget::_ZThn16_NK7QWidget7devTypeEv +840 QWidget::_ZThn16_NK7QWidget11paintEngineEv +848 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTableWidget + size=40 align=8 + base size=40 base align=8 +QTableWidget (0x7f5b92d8f0e0) 0 + vptr=((& QTableWidget::_ZTV12QTableWidget) + 16u) + QTableView (0x7f5b92d8f150) 0 + primary-for QTableWidget (0x7f5b92d8f0e0) + QAbstractItemView (0x7f5b92d8f1c0) 0 + primary-for QTableView (0x7f5b92d8f150) + QAbstractScrollArea (0x7f5b92d8f230) 0 + primary-for QAbstractItemView (0x7f5b92d8f1c0) + QFrame (0x7f5b92d8f2a0) 0 + primary-for QAbstractScrollArea (0x7f5b92d8f230) + QWidget (0x7f5b92d89580) 0 + primary-for QFrame (0x7f5b92d8f2a0) + QObject (0x7f5b92d8f310) 0 + primary-for QWidget (0x7f5b92d89580) + QPaintDevice (0x7f5b92d8f380) 16 + vptr=((& QTableWidget::_ZTV12QTableWidget) + 816u) + +Vtable for QTreeView +QTreeView::_ZTV9QTreeView: 105u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTreeView) +16 QTreeView::metaObject +24 QTreeView::qt_metacast +32 QTreeView::qt_metacall +40 QTreeView::~QTreeView +48 QTreeView::~QTreeView +56 QAbstractItemView::event +64 QObject::eventFilter +72 QTreeView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTreeView::mousePressEvent +168 QTreeView::mouseReleaseEvent +176 QTreeView::mouseDoubleClickEvent +184 QTreeView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QTreeView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTreeView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QTreeView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QTreeView::viewportEvent +456 QTreeView::scrollContentsBy +464 QTreeView::setModel +472 QTreeView::setSelectionModel +480 QTreeView::keyboardSearch +488 QTreeView::visualRect +496 QTreeView::scrollTo +504 QTreeView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QTreeView::sizeHintForColumn +528 QTreeView::reset +536 QTreeView::setRootIndex +544 QTreeView::doItemsLayout +552 QTreeView::selectAll +560 QTreeView::dataChanged +568 QTreeView::rowsInserted +576 QTreeView::rowsAboutToBeRemoved +584 QTreeView::selectionChanged +592 QTreeView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QTreeView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QTreeView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QTreeView::moveCursor +688 QTreeView::horizontalOffset +696 QTreeView::verticalOffset +704 QTreeView::isIndexHidden +712 QTreeView::setSelection +720 QTreeView::visualRegionForSelection +728 QTreeView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 QTreeView::drawRow +776 QTreeView::drawBranches +784 (int (*)(...))-0x00000000000000010 +792 (int (*)(...))(& _ZTI9QTreeView) +800 QTreeView::_ZThn16_N9QTreeViewD1Ev +808 QTreeView::_ZThn16_N9QTreeViewD0Ev +816 QWidget::_ZThn16_NK7QWidget7devTypeEv +824 QWidget::_ZThn16_NK7QWidget11paintEngineEv +832 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTreeView + size=40 align=8 + base size=40 base align=8 +QTreeView (0x7f5b92bbd070) 0 + vptr=((& QTreeView::_ZTV9QTreeView) + 16u) + QAbstractItemView (0x7f5b92bbd0e0) 0 + primary-for QTreeView (0x7f5b92bbd070) + QAbstractScrollArea (0x7f5b92bbd150) 0 + primary-for QAbstractItemView (0x7f5b92bbd0e0) + QFrame (0x7f5b92bbd1c0) 0 + primary-for QAbstractScrollArea (0x7f5b92bbd150) + QWidget (0x7f5b92bb6e00) 0 + primary-for QFrame (0x7f5b92bbd1c0) + QObject (0x7f5b92bbd230) 0 + primary-for QWidget (0x7f5b92bb6e00) + QPaintDevice (0x7f5b92bbd2a0) 16 + vptr=((& QTreeView::_ZTV9QTreeView) + 800u) + +Vtable for QProxyModel +QProxyModel::_ZTV11QProxyModel: 43u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QProxyModel) +16 QProxyModel::metaObject +24 QProxyModel::qt_metacast +32 QProxyModel::qt_metacall +40 QProxyModel::~QProxyModel +48 QProxyModel::~QProxyModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QProxyModel::index +120 QProxyModel::parent +128 QProxyModel::rowCount +136 QProxyModel::columnCount +144 QProxyModel::hasChildren +152 QProxyModel::data +160 QProxyModel::setData +168 QProxyModel::headerData +176 QProxyModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QProxyModel::mimeTypes +208 QProxyModel::mimeData +216 QProxyModel::dropMimeData +224 QProxyModel::supportedDropActions +232 QProxyModel::insertRows +240 QProxyModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QProxyModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QProxyModel::flags +288 QProxyModel::sort +296 QAbstractItemModel::buddy +304 QProxyModel::match +312 QProxyModel::span +320 QProxyModel::submit +328 QProxyModel::revert +336 QProxyModel::setModel + +Class QProxyModel + size=16 align=8 + base size=16 base align=8 +QProxyModel (0x7f5b92bf0e00) 0 + vptr=((& QProxyModel::_ZTV11QProxyModel) + 16u) + QAbstractItemModel (0x7f5b92bf0e70) 0 + primary-for QProxyModel (0x7f5b92bf0e00) + QObject (0x7f5b92bf0ee0) 0 + primary-for QAbstractItemModel (0x7f5b92bf0e70) + +Vtable for QHeaderView +QHeaderView::_ZTV11QHeaderView: 105u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QHeaderView) +16 QHeaderView::metaObject +24 QHeaderView::qt_metacast +32 QHeaderView::qt_metacall +40 QHeaderView::~QHeaderView +48 QHeaderView::~QHeaderView +56 QHeaderView::event +64 QObject::eventFilter +72 QAbstractItemView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QHeaderView::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QHeaderView::mousePressEvent +168 QHeaderView::mouseReleaseEvent +176 QHeaderView::mouseDoubleClickEvent +184 QHeaderView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QHeaderView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QHeaderView::viewportEvent +456 QHeaderView::scrollContentsBy +464 QHeaderView::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QHeaderView::visualRect +496 QHeaderView::scrollTo +504 QHeaderView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QHeaderView::reset +536 QAbstractItemView::setRootIndex +544 QHeaderView::doItemsLayout +552 QAbstractItemView::selectAll +560 QHeaderView::dataChanged +568 QHeaderView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QAbstractItemView::selectionChanged +592 QHeaderView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QHeaderView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QHeaderView::moveCursor +688 QHeaderView::horizontalOffset +696 QHeaderView::verticalOffset +704 QHeaderView::isIndexHidden +712 QHeaderView::setSelection +720 QHeaderView::visualRegionForSelection +728 QAbstractItemView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 QHeaderView::paintSection +776 QHeaderView::sectionSizeFromContents +784 (int (*)(...))-0x00000000000000010 +792 (int (*)(...))(& _ZTI11QHeaderView) +800 QHeaderView::_ZThn16_N11QHeaderViewD1Ev +808 QHeaderView::_ZThn16_N11QHeaderViewD0Ev +816 QWidget::_ZThn16_NK7QWidget7devTypeEv +824 QWidget::_ZThn16_NK7QWidget11paintEngineEv +832 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QHeaderView + size=40 align=8 + base size=40 base align=8 +QHeaderView (0x7f5b92c15cb0) 0 + vptr=((& QHeaderView::_ZTV11QHeaderView) + 16u) + QAbstractItemView (0x7f5b92c15d20) 0 + primary-for QHeaderView (0x7f5b92c15cb0) + QAbstractScrollArea (0x7f5b92c15d90) 0 + primary-for QAbstractItemView (0x7f5b92c15d20) + QFrame (0x7f5b92c15e00) 0 + primary-for QAbstractScrollArea (0x7f5b92c15d90) + QWidget (0x7f5b92becf80) 0 + primary-for QFrame (0x7f5b92c15e00) + QObject (0x7f5b92c15e70) 0 + primary-for QWidget (0x7f5b92becf80) + QPaintDevice (0x7f5b92c15ee0) 16 + vptr=((& QHeaderView::_ZTV11QHeaderView) + 800u) + +Vtable for QItemEditorCreatorBase +QItemEditorCreatorBase::_ZTV22QItemEditorCreatorBase: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QItemEditorCreatorBase) +16 QItemEditorCreatorBase::~QItemEditorCreatorBase +24 QItemEditorCreatorBase::~QItemEditorCreatorBase +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QItemEditorCreatorBase + size=8 align=8 + base size=8 base align=8 +QItemEditorCreatorBase (0x7f5b92c558c0) 0 nearly-empty + vptr=((& QItemEditorCreatorBase::_ZTV22QItemEditorCreatorBase) + 16u) + +Vtable for QItemEditorFactory +QItemEditorFactory::_ZTV18QItemEditorFactory: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QItemEditorFactory) +16 QItemEditorFactory::~QItemEditorFactory +24 QItemEditorFactory::~QItemEditorFactory +32 QItemEditorFactory::createEditor +40 QItemEditorFactory::valuePropertyName + +Class QItemEditorFactory + size=16 align=8 + base size=16 base align=8 +QItemEditorFactory (0x7f5b92c61770) 0 + vptr=((& QItemEditorFactory::_ZTV18QItemEditorFactory) + 16u) + +Vtable for QTreeWidgetItem +QTreeWidgetItem::_ZTV15QTreeWidgetItem: 10u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QTreeWidgetItem) +16 QTreeWidgetItem::~QTreeWidgetItem +24 QTreeWidgetItem::~QTreeWidgetItem +32 QTreeWidgetItem::clone +40 QTreeWidgetItem::data +48 QTreeWidgetItem::setData +56 QTreeWidgetItem::operator< +64 QTreeWidgetItem::read +72 QTreeWidgetItem::write + +Class QTreeWidgetItem + size=64 align=8 + base size=60 base align=8 +QTreeWidgetItem (0x7f5b92c6da10) 0 + vptr=((& QTreeWidgetItem::_ZTV15QTreeWidgetItem) + 16u) + +Vtable for QTreeWidget +QTreeWidget::_ZTV11QTreeWidget: 109u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTreeWidget) +16 QTreeWidget::metaObject +24 QTreeWidget::qt_metacast +32 QTreeWidget::qt_metacall +40 QTreeWidget::~QTreeWidget +48 QTreeWidget::~QTreeWidget +56 QTreeWidget::event +64 QObject::eventFilter +72 QTreeView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTreeView::mousePressEvent +168 QTreeView::mouseReleaseEvent +176 QTreeView::mouseDoubleClickEvent +184 QTreeView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QTreeView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTreeView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QTreeView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QTreeWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QTreeView::viewportEvent +456 QTreeView::scrollContentsBy +464 QTreeWidget::setModel +472 QTreeWidget::setSelectionModel +480 QTreeView::keyboardSearch +488 QTreeView::visualRect +496 QTreeView::scrollTo +504 QTreeView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QTreeView::sizeHintForColumn +528 QTreeView::reset +536 QTreeView::setRootIndex +544 QTreeView::doItemsLayout +552 QTreeView::selectAll +560 QTreeView::dataChanged +568 QTreeView::rowsInserted +576 QTreeView::rowsAboutToBeRemoved +584 QTreeView::selectionChanged +592 QTreeView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QTreeView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QTreeView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QTreeView::moveCursor +688 QTreeView::horizontalOffset +696 QTreeView::verticalOffset +704 QTreeView::isIndexHidden +712 QTreeView::setSelection +720 QTreeView::visualRegionForSelection +728 QTreeView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 QTreeView::drawRow +776 QTreeView::drawBranches +784 QTreeWidget::mimeTypes +792 QTreeWidget::mimeData +800 QTreeWidget::dropMimeData +808 QTreeWidget::supportedDropActions +816 (int (*)(...))-0x00000000000000010 +824 (int (*)(...))(& _ZTI11QTreeWidget) +832 QTreeWidget::_ZThn16_N11QTreeWidgetD1Ev +840 QTreeWidget::_ZThn16_N11QTreeWidgetD0Ev +848 QWidget::_ZThn16_NK7QWidget7devTypeEv +856 QWidget::_ZThn16_NK7QWidget11paintEngineEv +864 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTreeWidget + size=40 align=8 + base size=40 base align=8 +QTreeWidget (0x7f5b92b35f50) 0 + vptr=((& QTreeWidget::_ZTV11QTreeWidget) + 16u) + QTreeView (0x7f5b92b3d000) 0 + primary-for QTreeWidget (0x7f5b92b35f50) + QAbstractItemView (0x7f5b92b3d070) 0 + primary-for QTreeView (0x7f5b92b3d000) + QAbstractScrollArea (0x7f5b92b3d0e0) 0 + primary-for QAbstractItemView (0x7f5b92b3d070) + QFrame (0x7f5b92b3d150) 0 + primary-for QAbstractScrollArea (0x7f5b92b3d0e0) + QWidget (0x7f5b92b2ee00) 0 + primary-for QFrame (0x7f5b92b3d150) + QObject (0x7f5b92b3d1c0) 0 + primary-for QWidget (0x7f5b92b2ee00) + QPaintDevice (0x7f5b92b3d230) 16 + vptr=((& QTreeWidget::_ZTV11QTreeWidget) + 832u) + +Vtable for QAccessibleBridge +QAccessibleBridge::_ZTV17QAccessibleBridge: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAccessibleBridge) +16 QAccessibleBridge::~QAccessibleBridge +24 QAccessibleBridge::~QAccessibleBridge +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QAccessibleBridge + size=8 align=8 + base size=8 base align=8 +QAccessibleBridge (0x7f5b9299e310) 0 nearly-empty + vptr=((& QAccessibleBridge::_ZTV17QAccessibleBridge) + 16u) + +Vtable for QAccessibleBridgeFactoryInterface +QAccessibleBridgeFactoryInterface::_ZTV33QAccessibleBridgeFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI33QAccessibleBridgeFactoryInterface) +16 QAccessibleBridgeFactoryInterface::~QAccessibleBridgeFactoryInterface +24 QAccessibleBridgeFactoryInterface::~QAccessibleBridgeFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QAccessibleBridgeFactoryInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleBridgeFactoryInterface (0x7f5b9299ed90) 0 nearly-empty + vptr=((& QAccessibleBridgeFactoryInterface::_ZTV33QAccessibleBridgeFactoryInterface) + 16u) + QFactoryInterface (0x7f5b9299ee00) 0 nearly-empty + primary-for QAccessibleBridgeFactoryInterface (0x7f5b9299ed90) + +Vtable for QAccessibleBridgePlugin +QAccessibleBridgePlugin::_ZTV23QAccessibleBridgePlugin: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QAccessibleBridgePlugin) +16 QAccessibleBridgePlugin::metaObject +24 QAccessibleBridgePlugin::qt_metacast +32 QAccessibleBridgePlugin::qt_metacall +40 QAccessibleBridgePlugin::~QAccessibleBridgePlugin +48 QAccessibleBridgePlugin::~QAccessibleBridgePlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI23QAccessibleBridgePlugin) +144 QAccessibleBridgePlugin::_ZThn16_N23QAccessibleBridgePluginD1Ev +152 QAccessibleBridgePlugin::_ZThn16_N23QAccessibleBridgePluginD0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QAccessibleBridgePlugin + size=24 align=8 + base size=24 base align=8 +QAccessibleBridgePlugin (0x7f5b929ab500) 0 + vptr=((& QAccessibleBridgePlugin::_ZTV23QAccessibleBridgePlugin) + 16u) + QObject (0x7f5b929ac5b0) 0 + primary-for QAccessibleBridgePlugin (0x7f5b929ab500) + QAccessibleBridgeFactoryInterface (0x7f5b929ac620) 16 nearly-empty + vptr=((& QAccessibleBridgePlugin::_ZTV23QAccessibleBridgePlugin) + 144u) + QFactoryInterface (0x7f5b929ac690) 16 nearly-empty + primary-for QAccessibleBridgeFactoryInterface (0x7f5b929ac620) + +Class QAccessible + size=1 align=1 + base size=0 base align=1 +QAccessible (0x7f5b929bd540) 0 empty + +Vtable for QAccessibleInterface +QAccessibleInterface::_ZTV20QAccessibleInterface: 19u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QAccessibleInterface) +16 QAccessibleInterface::~QAccessibleInterface +24 QAccessibleInterface::~QAccessibleInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual + +Class QAccessibleInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleInterface (0x7f5b92a62700) 0 nearly-empty + vptr=((& QAccessibleInterface::_ZTV20QAccessibleInterface) + 16u) + QAccessible (0x7f5b92a62770) 0 empty + +Vtable for QAccessibleInterfaceEx +QAccessibleInterfaceEx::_ZTV22QAccessibleInterfaceEx: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QAccessibleInterfaceEx) +16 QAccessibleInterfaceEx::~QAccessibleInterfaceEx +24 QAccessibleInterfaceEx::~QAccessibleInterfaceEx +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 QAccessibleInterfaceEx::virtual_hook +168 QAccessibleInterfaceEx::interface_cast + +Class QAccessibleInterfaceEx + size=8 align=8 + base size=8 base align=8 +QAccessibleInterfaceEx (0x7f5b928c0000) 0 nearly-empty + vptr=((& QAccessibleInterfaceEx::_ZTV22QAccessibleInterfaceEx) + 16u) + QAccessibleInterface (0x7f5b928c0070) 0 nearly-empty + primary-for QAccessibleInterfaceEx (0x7f5b928c0000) + QAccessible (0x7f5b928c00e0) 0 empty + +Vtable for QAccessibleEvent +QAccessibleEvent::_ZTV16QAccessibleEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QAccessibleEvent) +16 QAccessibleEvent::~QAccessibleEvent +24 QAccessibleEvent::~QAccessibleEvent + +Class QAccessibleEvent + size=32 align=8 + base size=32 base align=8 +QAccessibleEvent (0x7f5b928c0380) 0 + vptr=((& QAccessibleEvent::_ZTV16QAccessibleEvent) + 16u) + QEvent (0x7f5b928c03f0) 0 + primary-for QAccessibleEvent (0x7f5b928c0380) + +Vtable for QAccessibleObject +QAccessibleObject::_ZTV17QAccessibleObject: 19u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAccessibleObject) +16 QAccessibleObject::~QAccessibleObject +24 QAccessibleObject::~QAccessibleObject +32 QAccessibleObject::isValid +40 QAccessibleObject::object +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 QAccessibleObject::setText +104 QAccessibleObject::rect +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAccessibleObject::userActionCount +136 QAccessibleObject::actionText +144 QAccessibleObject::doAction + +Class QAccessibleObject + size=16 align=8 + base size=16 base align=8 +QAccessibleObject (0x7f5b928d7230) 0 + vptr=((& QAccessibleObject::_ZTV17QAccessibleObject) + 16u) + QAccessibleInterface (0x7f5b928d72a0) 0 nearly-empty + primary-for QAccessibleObject (0x7f5b928d7230) + QAccessible (0x7f5b928d7310) 0 empty + +Vtable for QAccessibleObjectEx +QAccessibleObjectEx::_ZTV19QAccessibleObjectEx: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAccessibleObjectEx) +16 QAccessibleObjectEx::~QAccessibleObjectEx +24 QAccessibleObjectEx::~QAccessibleObjectEx +32 QAccessibleObjectEx::isValid +40 QAccessibleObjectEx::object +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 QAccessibleObjectEx::setText +104 QAccessibleObjectEx::rect +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAccessibleObjectEx::userActionCount +136 QAccessibleObjectEx::actionText +144 QAccessibleObjectEx::doAction +152 __cxa_pure_virtual +160 QAccessibleInterfaceEx::virtual_hook +168 QAccessibleInterfaceEx::interface_cast + +Class QAccessibleObjectEx + size=16 align=8 + base size=16 base align=8 +QAccessibleObjectEx (0x7f5b928d7a10) 0 + vptr=((& QAccessibleObjectEx::_ZTV19QAccessibleObjectEx) + 16u) + QAccessibleInterfaceEx (0x7f5b928d7a80) 0 nearly-empty + primary-for QAccessibleObjectEx (0x7f5b928d7a10) + QAccessibleInterface (0x7f5b928d7af0) 0 nearly-empty + primary-for QAccessibleInterfaceEx (0x7f5b928d7a80) + QAccessible (0x7f5b928d7b60) 0 empty + +Vtable for QAccessibleApplication +QAccessibleApplication::_ZTV22QAccessibleApplication: 19u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QAccessibleApplication) +16 QAccessibleApplication::~QAccessibleApplication +24 QAccessibleApplication::~QAccessibleApplication +32 QAccessibleObject::isValid +40 QAccessibleObject::object +48 QAccessibleApplication::childCount +56 QAccessibleApplication::indexOfChild +64 QAccessibleApplication::relationTo +72 QAccessibleApplication::childAt +80 QAccessibleApplication::navigate +88 QAccessibleApplication::text +96 QAccessibleObject::setText +104 QAccessibleObject::rect +112 QAccessibleApplication::role +120 QAccessibleApplication::state +128 QAccessibleApplication::userActionCount +136 QAccessibleApplication::actionText +144 QAccessibleApplication::doAction + +Class QAccessibleApplication + size=16 align=8 + base size=16 base align=8 +QAccessibleApplication (0x7f5b928e7230) 0 + vptr=((& QAccessibleApplication::_ZTV22QAccessibleApplication) + 16u) + QAccessibleObject (0x7f5b928e72a0) 0 + primary-for QAccessibleApplication (0x7f5b928e7230) + QAccessibleInterface (0x7f5b928e7310) 0 nearly-empty + primary-for QAccessibleObject (0x7f5b928e72a0) + QAccessible (0x7f5b928e7380) 0 empty + +Vtable for QAccessibleWidget +QAccessibleWidget::_ZTV17QAccessibleWidget: 19u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAccessibleWidget) +16 QAccessibleWidget::~QAccessibleWidget +24 QAccessibleWidget::~QAccessibleWidget +32 QAccessibleObject::isValid +40 QAccessibleObject::object +48 QAccessibleWidget::childCount +56 QAccessibleWidget::indexOfChild +64 QAccessibleWidget::relationTo +72 QAccessibleWidget::childAt +80 QAccessibleWidget::navigate +88 QAccessibleWidget::text +96 QAccessibleObject::setText +104 QAccessibleWidget::rect +112 QAccessibleWidget::role +120 QAccessibleWidget::state +128 QAccessibleWidget::userActionCount +136 QAccessibleWidget::actionText +144 QAccessibleWidget::doAction + +Class QAccessibleWidget + size=24 align=8 + base size=24 base align=8 +QAccessibleWidget (0x7f5b928e7c40) 0 + vptr=((& QAccessibleWidget::_ZTV17QAccessibleWidget) + 16u) + QAccessibleObject (0x7f5b928e7cb0) 0 + primary-for QAccessibleWidget (0x7f5b928e7c40) + QAccessibleInterface (0x7f5b928e7d20) 0 nearly-empty + primary-for QAccessibleObject (0x7f5b928e7cb0) + QAccessible (0x7f5b928e7d90) 0 empty + +Vtable for QAccessibleWidgetEx +QAccessibleWidgetEx::_ZTV19QAccessibleWidgetEx: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAccessibleWidgetEx) +16 QAccessibleWidgetEx::~QAccessibleWidgetEx +24 QAccessibleWidgetEx::~QAccessibleWidgetEx +32 QAccessibleObjectEx::isValid +40 QAccessibleObjectEx::object +48 QAccessibleWidgetEx::childCount +56 QAccessibleWidgetEx::indexOfChild +64 QAccessibleWidgetEx::relationTo +72 QAccessibleWidgetEx::childAt +80 QAccessibleWidgetEx::navigate +88 QAccessibleWidgetEx::text +96 QAccessibleObjectEx::setText +104 QAccessibleWidgetEx::rect +112 QAccessibleWidgetEx::role +120 QAccessibleWidgetEx::state +128 QAccessibleObjectEx::userActionCount +136 QAccessibleWidgetEx::actionText +144 QAccessibleWidgetEx::doAction +152 QAccessibleWidgetEx::invokeMethodEx +160 QAccessibleInterfaceEx::virtual_hook +168 QAccessibleInterfaceEx::interface_cast + +Class QAccessibleWidgetEx + size=24 align=8 + base size=24 base align=8 +QAccessibleWidgetEx (0x7f5b928f5c40) 0 + vptr=((& QAccessibleWidgetEx::_ZTV19QAccessibleWidgetEx) + 16u) + QAccessibleObjectEx (0x7f5b928f5cb0) 0 + primary-for QAccessibleWidgetEx (0x7f5b928f5c40) + QAccessibleInterfaceEx (0x7f5b928f5d20) 0 nearly-empty + primary-for QAccessibleObjectEx (0x7f5b928f5cb0) + QAccessibleInterface (0x7f5b928f5d90) 0 nearly-empty + primary-for QAccessibleInterfaceEx (0x7f5b928f5d20) + QAccessible (0x7f5b928f5e00) 0 empty + +Vtable for QAccessible2Interface +QAccessible2Interface::_ZTV21QAccessible2Interface: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QAccessible2Interface) +16 QAccessible2Interface::~QAccessible2Interface +24 QAccessible2Interface::~QAccessible2Interface + +Class QAccessible2Interface + size=8 align=8 + base size=8 base align=8 +QAccessible2Interface (0x7f5b92902d90) 0 nearly-empty + vptr=((& QAccessible2Interface::_ZTV21QAccessible2Interface) + 16u) + +Vtable for QAccessibleTextInterface +QAccessibleTextInterface::_ZTV24QAccessibleTextInterface: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QAccessibleTextInterface) +16 QAccessibleTextInterface::~QAccessibleTextInterface +24 QAccessibleTextInterface::~QAccessibleTextInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual + +Class QAccessibleTextInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleTextInterface (0x7f5b92913cb0) 0 nearly-empty + vptr=((& QAccessibleTextInterface::_ZTV24QAccessibleTextInterface) + 16u) + QAccessible2Interface (0x7f5b92913d20) 0 nearly-empty + primary-for QAccessibleTextInterface (0x7f5b92913cb0) + +Vtable for QAccessibleEditableTextInterface +QAccessibleEditableTextInterface::_ZTV32QAccessibleEditableTextInterface: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI32QAccessibleEditableTextInterface) +16 QAccessibleEditableTextInterface::~QAccessibleEditableTextInterface +24 QAccessibleEditableTextInterface::~QAccessibleEditableTextInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual + +Class QAccessibleEditableTextInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleEditableTextInterface (0x7f5b92923b60) 0 nearly-empty + vptr=((& QAccessibleEditableTextInterface::_ZTV32QAccessibleEditableTextInterface) + 16u) + QAccessible2Interface (0x7f5b92923bd0) 0 nearly-empty + primary-for QAccessibleEditableTextInterface (0x7f5b92923b60) + +Vtable for QAccessibleSimpleEditableTextInterface +QAccessibleSimpleEditableTextInterface::_ZTV38QAccessibleSimpleEditableTextInterface: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI38QAccessibleSimpleEditableTextInterface) +16 QAccessibleSimpleEditableTextInterface::~QAccessibleSimpleEditableTextInterface +24 QAccessibleSimpleEditableTextInterface::~QAccessibleSimpleEditableTextInterface +32 QAccessibleSimpleEditableTextInterface::copyText +40 QAccessibleSimpleEditableTextInterface::deleteText +48 QAccessibleSimpleEditableTextInterface::insertText +56 QAccessibleSimpleEditableTextInterface::cutText +64 QAccessibleSimpleEditableTextInterface::pasteText +72 QAccessibleSimpleEditableTextInterface::replaceText +80 QAccessibleSimpleEditableTextInterface::setAttributes + +Class QAccessibleSimpleEditableTextInterface + size=16 align=8 + base size=16 base align=8 +QAccessibleSimpleEditableTextInterface (0x7f5b92931a10) 0 + vptr=((& QAccessibleSimpleEditableTextInterface::_ZTV38QAccessibleSimpleEditableTextInterface) + 16u) + QAccessibleEditableTextInterface (0x7f5b92931a80) 0 nearly-empty + primary-for QAccessibleSimpleEditableTextInterface (0x7f5b92931a10) + QAccessible2Interface (0x7f5b92931af0) 0 nearly-empty + primary-for QAccessibleEditableTextInterface (0x7f5b92931a80) + +Vtable for QAccessibleValueInterface +QAccessibleValueInterface::_ZTV25QAccessibleValueInterface: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QAccessibleValueInterface) +16 QAccessibleValueInterface::~QAccessibleValueInterface +24 QAccessibleValueInterface::~QAccessibleValueInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual + +Class QAccessibleValueInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleValueInterface (0x7f5b92931d20) 0 nearly-empty + vptr=((& QAccessibleValueInterface::_ZTV25QAccessibleValueInterface) + 16u) + QAccessible2Interface (0x7f5b92931d90) 0 nearly-empty + primary-for QAccessibleValueInterface (0x7f5b92931d20) + +Vtable for QAccessibleTableInterface +QAccessibleTableInterface::_ZTV25QAccessibleTableInterface: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QAccessibleTableInterface) +16 QAccessibleTableInterface::~QAccessibleTableInterface +24 QAccessibleTableInterface::~QAccessibleTableInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 __cxa_pure_virtual +208 __cxa_pure_virtual +216 __cxa_pure_virtual +224 __cxa_pure_virtual +232 __cxa_pure_virtual + +Class QAccessibleTableInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleTableInterface (0x7f5b92941b60) 0 nearly-empty + vptr=((& QAccessibleTableInterface::_ZTV25QAccessibleTableInterface) + 16u) + QAccessible2Interface (0x7f5b92941bd0) 0 nearly-empty + primary-for QAccessibleTableInterface (0x7f5b92941b60) + +Vtable for QAccessibleFactoryInterface +QAccessibleFactoryInterface::_ZTV27QAccessibleFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QAccessibleFactoryInterface) +16 QAccessibleFactoryInterface::~QAccessibleFactoryInterface +24 QAccessibleFactoryInterface::~QAccessibleFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QAccessibleFactoryInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleFactoryInterface (0x7f5b92945c80) 0 nearly-empty + vptr=((& QAccessibleFactoryInterface::_ZTV27QAccessibleFactoryInterface) + 16u) + QAccessible (0x7f5b92941f50) 0 empty + QFactoryInterface (0x7f5b92941d90) 0 nearly-empty + primary-for QAccessibleFactoryInterface (0x7f5b92945c80) + +Vtable for QAccessiblePlugin +QAccessiblePlugin::_ZTV17QAccessiblePlugin: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAccessiblePlugin) +16 QAccessiblePlugin::metaObject +24 QAccessiblePlugin::qt_metacast +32 QAccessiblePlugin::qt_metacall +40 QAccessiblePlugin::~QAccessiblePlugin +48 QAccessiblePlugin::~QAccessiblePlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI17QAccessiblePlugin) +144 QAccessiblePlugin::_ZThn16_N17QAccessiblePluginD1Ev +152 QAccessiblePlugin::_ZThn16_N17QAccessiblePluginD0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QAccessiblePlugin + size=24 align=8 + base size=24 base align=8 +QAccessiblePlugin (0x7f5b92959480) 0 + vptr=((& QAccessiblePlugin::_ZTV17QAccessiblePlugin) + 16u) + QObject (0x7f5b929557e0) 0 + primary-for QAccessiblePlugin (0x7f5b92959480) + QAccessibleFactoryInterface (0x7f5b92959500) 16 nearly-empty + vptr=((& QAccessiblePlugin::_ZTV17QAccessiblePlugin) + 144u) + QAccessible (0x7f5b92955850) 16 empty + QFactoryInterface (0x7f5b929558c0) 16 nearly-empty + primary-for QAccessibleFactoryInterface (0x7f5b92959500) + +Vtable for QLayoutItem +QLayoutItem::_ZTV11QLayoutItem: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QLayoutItem) +16 QLayoutItem::~QLayoutItem +24 QLayoutItem::~QLayoutItem +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 QLayoutItem::hasHeightForWidth +96 QLayoutItem::heightForWidth +104 QLayoutItem::minimumHeightForWidth +112 QLayoutItem::invalidate +120 QLayoutItem::widget +128 QLayoutItem::layout +136 QLayoutItem::spacerItem + +Class QLayoutItem + size=16 align=8 + base size=12 base align=8 +QLayoutItem (0x7f5b929697e0) 0 + vptr=((& QLayoutItem::_ZTV11QLayoutItem) + 16u) + +Vtable for QSpacerItem +QSpacerItem::_ZTV11QSpacerItem: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QSpacerItem) +16 QSpacerItem::~QSpacerItem +24 QSpacerItem::~QSpacerItem +32 QSpacerItem::sizeHint +40 QSpacerItem::minimumSize +48 QSpacerItem::maximumSize +56 QSpacerItem::expandingDirections +64 QSpacerItem::setGeometry +72 QSpacerItem::geometry +80 QSpacerItem::isEmpty +88 QLayoutItem::hasHeightForWidth +96 QLayoutItem::heightForWidth +104 QLayoutItem::minimumHeightForWidth +112 QLayoutItem::invalidate +120 QLayoutItem::widget +128 QLayoutItem::layout +136 QSpacerItem::spacerItem + +Class QSpacerItem + size=40 align=8 + base size=40 base align=8 +QSpacerItem (0x7f5b92979380) 0 + vptr=((& QSpacerItem::_ZTV11QSpacerItem) + 16u) + QLayoutItem (0x7f5b929793f0) 0 + primary-for QSpacerItem (0x7f5b92979380) + +Vtable for QWidgetItem +QWidgetItem::_ZTV11QWidgetItem: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QWidgetItem) +16 QWidgetItem::~QWidgetItem +24 QWidgetItem::~QWidgetItem +32 QWidgetItem::sizeHint +40 QWidgetItem::minimumSize +48 QWidgetItem::maximumSize +56 QWidgetItem::expandingDirections +64 QWidgetItem::setGeometry +72 QWidgetItem::geometry +80 QWidgetItem::isEmpty +88 QWidgetItem::hasHeightForWidth +96 QWidgetItem::heightForWidth +104 QLayoutItem::minimumHeightForWidth +112 QLayoutItem::invalidate +120 QWidgetItem::widget +128 QLayoutItem::layout +136 QLayoutItem::spacerItem + +Class QWidgetItem + size=24 align=8 + base size=24 base align=8 +QWidgetItem (0x7f5b929898c0) 0 + vptr=((& QWidgetItem::_ZTV11QWidgetItem) + 16u) + QLayoutItem (0x7f5b92989930) 0 + primary-for QWidgetItem (0x7f5b929898c0) + +Vtable for QWidgetItemV2 +QWidgetItemV2::_ZTV13QWidgetItemV2: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QWidgetItemV2) +16 QWidgetItemV2::~QWidgetItemV2 +24 QWidgetItemV2::~QWidgetItemV2 +32 QWidgetItemV2::sizeHint +40 QWidgetItemV2::minimumSize +48 QWidgetItemV2::maximumSize +56 QWidgetItem::expandingDirections +64 QWidgetItem::setGeometry +72 QWidgetItem::geometry +80 QWidgetItem::isEmpty +88 QWidgetItem::hasHeightForWidth +96 QWidgetItemV2::heightForWidth +104 QLayoutItem::minimumHeightForWidth +112 QLayoutItem::invalidate +120 QWidgetItem::widget +128 QLayoutItem::layout +136 QLayoutItem::spacerItem + +Class QWidgetItemV2 + size=88 align=8 + base size=88 base align=8 +QWidgetItemV2 (0x7f5b92995700) 0 + vptr=((& QWidgetItemV2::_ZTV13QWidgetItemV2) + 16u) + QWidgetItem (0x7f5b92995770) 0 + primary-for QWidgetItemV2 (0x7f5b92995700) + QLayoutItem (0x7f5b929957e0) 0 + primary-for QWidgetItem (0x7f5b92995770) + +Class QLayoutIterator + size=16 align=8 + base size=12 base align=8 +QLayoutIterator (0x7f5b927a3540) 0 + +Vtable for QLayout +QLayout::_ZTV7QLayout: 45u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QLayout) +16 QLayout::metaObject +24 QLayout::qt_metacast +32 QLayout::qt_metacall +40 QLayout::~QLayout +48 QLayout::~QLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QLayout::invalidate +120 QLayout::geometry +128 __cxa_pure_virtual +136 QLayout::expandingDirections +144 QLayout::minimumSize +152 QLayout::maximumSize +160 QLayout::setGeometry +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 QLayout::indexOf +192 __cxa_pure_virtual +200 QLayout::isEmpty +208 QLayout::layout +216 (int (*)(...))-0x00000000000000010 +224 (int (*)(...))(& _ZTI7QLayout) +232 QLayout::_ZThn16_N7QLayoutD1Ev +240 QLayout::_ZThn16_N7QLayoutD0Ev +248 __cxa_pure_virtual +256 QLayout::_ZThn16_NK7QLayout11minimumSizeEv +264 QLayout::_ZThn16_NK7QLayout11maximumSizeEv +272 QLayout::_ZThn16_NK7QLayout19expandingDirectionsEv +280 QLayout::_ZThn16_N7QLayout11setGeometryERK5QRect +288 QLayout::_ZThn16_NK7QLayout8geometryEv +296 QLayout::_ZThn16_NK7QLayout7isEmptyEv +304 QLayoutItem::hasHeightForWidth +312 QLayoutItem::heightForWidth +320 QLayoutItem::minimumHeightForWidth +328 QLayout::_ZThn16_N7QLayout10invalidateEv +336 QLayoutItem::widget +344 QLayout::_ZThn16_N7QLayout6layoutEv +352 QLayoutItem::spacerItem + +Class QLayout + size=32 align=8 + base size=28 base align=8 +QLayout (0x7f5b927b1180) 0 + vptr=((& QLayout::_ZTV7QLayout) + 16u) + QObject (0x7f5b927af690) 0 + primary-for QLayout (0x7f5b927b1180) + QLayoutItem (0x7f5b927af700) 16 + vptr=((& QLayout::_ZTV7QLayout) + 232u) + +Vtable for QBoxLayout +QBoxLayout::_ZTV10QBoxLayout: 49u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QBoxLayout) +16 QBoxLayout::metaObject +24 QBoxLayout::qt_metacast +32 QBoxLayout::qt_metacall +40 QBoxLayout::~QBoxLayout +48 QBoxLayout::~QBoxLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QBoxLayout::invalidate +120 QLayout::geometry +128 QBoxLayout::addItem +136 QBoxLayout::expandingDirections +144 QBoxLayout::minimumSize +152 QBoxLayout::maximumSize +160 QBoxLayout::setGeometry +168 QBoxLayout::itemAt +176 QBoxLayout::takeAt +184 QLayout::indexOf +192 QBoxLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QBoxLayout::sizeHint +224 QBoxLayout::hasHeightForWidth +232 QBoxLayout::heightForWidth +240 QBoxLayout::minimumHeightForWidth +248 (int (*)(...))-0x00000000000000010 +256 (int (*)(...))(& _ZTI10QBoxLayout) +264 QBoxLayout::_ZThn16_N10QBoxLayoutD1Ev +272 QBoxLayout::_ZThn16_N10QBoxLayoutD0Ev +280 QBoxLayout::_ZThn16_NK10QBoxLayout8sizeHintEv +288 QBoxLayout::_ZThn16_NK10QBoxLayout11minimumSizeEv +296 QBoxLayout::_ZThn16_NK10QBoxLayout11maximumSizeEv +304 QBoxLayout::_ZThn16_NK10QBoxLayout19expandingDirectionsEv +312 QBoxLayout::_ZThn16_N10QBoxLayout11setGeometryERK5QRect +320 QLayout::_ZThn16_NK7QLayout8geometryEv +328 QLayout::_ZThn16_NK7QLayout7isEmptyEv +336 QBoxLayout::_ZThn16_NK10QBoxLayout17hasHeightForWidthEv +344 QBoxLayout::_ZThn16_NK10QBoxLayout14heightForWidthEi +352 QBoxLayout::_ZThn16_NK10QBoxLayout21minimumHeightForWidthEi +360 QBoxLayout::_ZThn16_N10QBoxLayout10invalidateEv +368 QLayoutItem::widget +376 QLayout::_ZThn16_N7QLayout6layoutEv +384 QLayoutItem::spacerItem + +Class QBoxLayout + size=32 align=8 + base size=28 base align=8 +QBoxLayout (0x7f5b927ebbd0) 0 + vptr=((& QBoxLayout::_ZTV10QBoxLayout) + 16u) + QLayout (0x7f5b927ef200) 0 + primary-for QBoxLayout (0x7f5b927ebbd0) + QObject (0x7f5b927ebc40) 0 + primary-for QLayout (0x7f5b927ef200) + QLayoutItem (0x7f5b927ebcb0) 16 + vptr=((& QBoxLayout::_ZTV10QBoxLayout) + 264u) + +Vtable for QHBoxLayout +QHBoxLayout::_ZTV11QHBoxLayout: 49u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QHBoxLayout) +16 QHBoxLayout::metaObject +24 QHBoxLayout::qt_metacast +32 QHBoxLayout::qt_metacall +40 QHBoxLayout::~QHBoxLayout +48 QHBoxLayout::~QHBoxLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QBoxLayout::invalidate +120 QLayout::geometry +128 QBoxLayout::addItem +136 QBoxLayout::expandingDirections +144 QBoxLayout::minimumSize +152 QBoxLayout::maximumSize +160 QBoxLayout::setGeometry +168 QBoxLayout::itemAt +176 QBoxLayout::takeAt +184 QLayout::indexOf +192 QBoxLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QBoxLayout::sizeHint +224 QBoxLayout::hasHeightForWidth +232 QBoxLayout::heightForWidth +240 QBoxLayout::minimumHeightForWidth +248 (int (*)(...))-0x00000000000000010 +256 (int (*)(...))(& _ZTI11QHBoxLayout) +264 QHBoxLayout::_ZThn16_N11QHBoxLayoutD1Ev +272 QHBoxLayout::_ZThn16_N11QHBoxLayoutD0Ev +280 QBoxLayout::_ZThn16_NK10QBoxLayout8sizeHintEv +288 QBoxLayout::_ZThn16_NK10QBoxLayout11minimumSizeEv +296 QBoxLayout::_ZThn16_NK10QBoxLayout11maximumSizeEv +304 QBoxLayout::_ZThn16_NK10QBoxLayout19expandingDirectionsEv +312 QBoxLayout::_ZThn16_N10QBoxLayout11setGeometryERK5QRect +320 QLayout::_ZThn16_NK7QLayout8geometryEv +328 QLayout::_ZThn16_NK7QLayout7isEmptyEv +336 QBoxLayout::_ZThn16_NK10QBoxLayout17hasHeightForWidthEv +344 QBoxLayout::_ZThn16_NK10QBoxLayout14heightForWidthEi +352 QBoxLayout::_ZThn16_NK10QBoxLayout21minimumHeightForWidthEi +360 QBoxLayout::_ZThn16_N10QBoxLayout10invalidateEv +368 QLayoutItem::widget +376 QLayout::_ZThn16_N7QLayout6layoutEv +384 QLayoutItem::spacerItem + +Class QHBoxLayout + size=32 align=8 + base size=28 base align=8 +QHBoxLayout (0x7f5b9281a620) 0 + vptr=((& QHBoxLayout::_ZTV11QHBoxLayout) + 16u) + QBoxLayout (0x7f5b9281a690) 0 + primary-for QHBoxLayout (0x7f5b9281a620) + QLayout (0x7f5b927eff80) 0 + primary-for QBoxLayout (0x7f5b9281a690) + QObject (0x7f5b9281a700) 0 + primary-for QLayout (0x7f5b927eff80) + QLayoutItem (0x7f5b9281a770) 16 + vptr=((& QHBoxLayout::_ZTV11QHBoxLayout) + 264u) + +Vtable for QVBoxLayout +QVBoxLayout::_ZTV11QVBoxLayout: 49u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QVBoxLayout) +16 QVBoxLayout::metaObject +24 QVBoxLayout::qt_metacast +32 QVBoxLayout::qt_metacall +40 QVBoxLayout::~QVBoxLayout +48 QVBoxLayout::~QVBoxLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QBoxLayout::invalidate +120 QLayout::geometry +128 QBoxLayout::addItem +136 QBoxLayout::expandingDirections +144 QBoxLayout::minimumSize +152 QBoxLayout::maximumSize +160 QBoxLayout::setGeometry +168 QBoxLayout::itemAt +176 QBoxLayout::takeAt +184 QLayout::indexOf +192 QBoxLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QBoxLayout::sizeHint +224 QBoxLayout::hasHeightForWidth +232 QBoxLayout::heightForWidth +240 QBoxLayout::minimumHeightForWidth +248 (int (*)(...))-0x00000000000000010 +256 (int (*)(...))(& _ZTI11QVBoxLayout) +264 QVBoxLayout::_ZThn16_N11QVBoxLayoutD1Ev +272 QVBoxLayout::_ZThn16_N11QVBoxLayoutD0Ev +280 QBoxLayout::_ZThn16_NK10QBoxLayout8sizeHintEv +288 QBoxLayout::_ZThn16_NK10QBoxLayout11minimumSizeEv +296 QBoxLayout::_ZThn16_NK10QBoxLayout11maximumSizeEv +304 QBoxLayout::_ZThn16_NK10QBoxLayout19expandingDirectionsEv +312 QBoxLayout::_ZThn16_N10QBoxLayout11setGeometryERK5QRect +320 QLayout::_ZThn16_NK7QLayout8geometryEv +328 QLayout::_ZThn16_NK7QLayout7isEmptyEv +336 QBoxLayout::_ZThn16_NK10QBoxLayout17hasHeightForWidthEv +344 QBoxLayout::_ZThn16_NK10QBoxLayout14heightForWidthEi +352 QBoxLayout::_ZThn16_NK10QBoxLayout21minimumHeightForWidthEi +360 QBoxLayout::_ZThn16_N10QBoxLayout10invalidateEv +368 QLayoutItem::widget +376 QLayout::_ZThn16_N7QLayout6layoutEv +384 QLayoutItem::spacerItem + +Class QVBoxLayout + size=32 align=8 + base size=28 base align=8 +QVBoxLayout (0x7f5b92826cb0) 0 + vptr=((& QVBoxLayout::_ZTV11QVBoxLayout) + 16u) + QBoxLayout (0x7f5b92826d20) 0 + primary-for QVBoxLayout (0x7f5b92826cb0) + QLayout (0x7f5b9281d680) 0 + primary-for QBoxLayout (0x7f5b92826d20) + QObject (0x7f5b92826d90) 0 + primary-for QLayout (0x7f5b9281d680) + QLayoutItem (0x7f5b92826e00) 16 + vptr=((& QVBoxLayout::_ZTV11QVBoxLayout) + 264u) + +Vtable for QGridLayout +QGridLayout::_ZTV11QGridLayout: 49u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QGridLayout) +16 QGridLayout::metaObject +24 QGridLayout::qt_metacast +32 QGridLayout::qt_metacall +40 QGridLayout::~QGridLayout +48 QGridLayout::~QGridLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGridLayout::invalidate +120 QLayout::geometry +128 QGridLayout::addItem +136 QGridLayout::expandingDirections +144 QGridLayout::minimumSize +152 QGridLayout::maximumSize +160 QGridLayout::setGeometry +168 QGridLayout::itemAt +176 QGridLayout::takeAt +184 QLayout::indexOf +192 QGridLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QGridLayout::sizeHint +224 QGridLayout::hasHeightForWidth +232 QGridLayout::heightForWidth +240 QGridLayout::minimumHeightForWidth +248 (int (*)(...))-0x00000000000000010 +256 (int (*)(...))(& _ZTI11QGridLayout) +264 QGridLayout::_ZThn16_N11QGridLayoutD1Ev +272 QGridLayout::_ZThn16_N11QGridLayoutD0Ev +280 QGridLayout::_ZThn16_NK11QGridLayout8sizeHintEv +288 QGridLayout::_ZThn16_NK11QGridLayout11minimumSizeEv +296 QGridLayout::_ZThn16_NK11QGridLayout11maximumSizeEv +304 QGridLayout::_ZThn16_NK11QGridLayout19expandingDirectionsEv +312 QGridLayout::_ZThn16_N11QGridLayout11setGeometryERK5QRect +320 QLayout::_ZThn16_NK7QLayout8geometryEv +328 QLayout::_ZThn16_NK7QLayout7isEmptyEv +336 QGridLayout::_ZThn16_NK11QGridLayout17hasHeightForWidthEv +344 QGridLayout::_ZThn16_NK11QGridLayout14heightForWidthEi +352 QGridLayout::_ZThn16_NK11QGridLayout21minimumHeightForWidthEi +360 QGridLayout::_ZThn16_N11QGridLayout10invalidateEv +368 QLayoutItem::widget +376 QLayout::_ZThn16_N7QLayout6layoutEv +384 QLayoutItem::spacerItem + +Class QGridLayout + size=32 align=8 + base size=28 base align=8 +QGridLayout (0x7f5b9284a2a0) 0 + vptr=((& QGridLayout::_ZTV11QGridLayout) + 16u) + QLayout (0x7f5b9281dd80) 0 + primary-for QGridLayout (0x7f5b9284a2a0) + QObject (0x7f5b9284a310) 0 + primary-for QLayout (0x7f5b9281dd80) + QLayoutItem (0x7f5b9284a380) 16 + vptr=((& QGridLayout::_ZTV11QGridLayout) + 264u) + +Vtable for QFormLayout +QFormLayout::_ZTV11QFormLayout: 48u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFormLayout) +16 QFormLayout::metaObject +24 QFormLayout::qt_metacast +32 QFormLayout::qt_metacall +40 QFormLayout::~QFormLayout +48 QFormLayout::~QFormLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFormLayout::invalidate +120 QLayout::geometry +128 QFormLayout::addItem +136 QFormLayout::expandingDirections +144 QFormLayout::minimumSize +152 QLayout::maximumSize +160 QFormLayout::setGeometry +168 QFormLayout::itemAt +176 QFormLayout::takeAt +184 QLayout::indexOf +192 QFormLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QFormLayout::sizeHint +224 QFormLayout::hasHeightForWidth +232 QFormLayout::heightForWidth +240 (int (*)(...))-0x00000000000000010 +248 (int (*)(...))(& _ZTI11QFormLayout) +256 QFormLayout::_ZThn16_N11QFormLayoutD1Ev +264 QFormLayout::_ZThn16_N11QFormLayoutD0Ev +272 QFormLayout::_ZThn16_NK11QFormLayout8sizeHintEv +280 QFormLayout::_ZThn16_NK11QFormLayout11minimumSizeEv +288 QLayout::_ZThn16_NK7QLayout11maximumSizeEv +296 QFormLayout::_ZThn16_NK11QFormLayout19expandingDirectionsEv +304 QFormLayout::_ZThn16_N11QFormLayout11setGeometryERK5QRect +312 QLayout::_ZThn16_NK7QLayout8geometryEv +320 QLayout::_ZThn16_NK7QLayout7isEmptyEv +328 QFormLayout::_ZThn16_NK11QFormLayout17hasHeightForWidthEv +336 QFormLayout::_ZThn16_NK11QFormLayout14heightForWidthEi +344 QLayoutItem::minimumHeightForWidth +352 QFormLayout::_ZThn16_N11QFormLayout10invalidateEv +360 QLayoutItem::widget +368 QLayout::_ZThn16_N7QLayout6layoutEv +376 QLayoutItem::spacerItem + +Class QFormLayout + size=32 align=8 + base size=28 base align=8 +QFormLayout (0x7f5b92895310) 0 + vptr=((& QFormLayout::_ZTV11QFormLayout) + 16u) + QLayout (0x7f5b92890b80) 0 + primary-for QFormLayout (0x7f5b92895310) + QObject (0x7f5b92895380) 0 + primary-for QLayout (0x7f5b92890b80) + QLayoutItem (0x7f5b928953f0) 16 + vptr=((& QFormLayout::_ZTV11QFormLayout) + 256u) + +Vtable for QClipboard +QClipboard::_ZTV10QClipboard: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QClipboard) +16 QClipboard::metaObject +24 QClipboard::qt_metacast +32 QClipboard::qt_metacall +40 QClipboard::~QClipboard +48 QClipboard::~QClipboard +56 QClipboard::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QClipboard::connectNotify +104 QObject::disconnectNotify + +Class QClipboard + size=16 align=8 + base size=16 base align=8 +QClipboard (0x7f5b926bf770) 0 + vptr=((& QClipboard::_ZTV10QClipboard) + 16u) + QObject (0x7f5b926bf7e0) 0 + primary-for QClipboard (0x7f5b926bf770) + +Class QWhatsThis + size=1 align=1 + base size=0 base align=1 +QWhatsThis (0x7f5b926e34d0) 0 empty + +Vtable for QDesktopWidget +QDesktopWidget::_ZTV14QDesktopWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QDesktopWidget) +16 QDesktopWidget::metaObject +24 QDesktopWidget::qt_metacast +32 QDesktopWidget::qt_metacall +40 QDesktopWidget::~QDesktopWidget +48 QDesktopWidget::~QDesktopWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDesktopWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI14QDesktopWidget) +464 QDesktopWidget::_ZThn16_N14QDesktopWidgetD1Ev +472 QDesktopWidget::_ZThn16_N14QDesktopWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDesktopWidget + size=40 align=8 + base size=40 base align=8 +QDesktopWidget (0x7f5b926e35b0) 0 + vptr=((& QDesktopWidget::_ZTV14QDesktopWidget) + 16u) + QWidget (0x7f5b926df400) 0 + primary-for QDesktopWidget (0x7f5b926e35b0) + QObject (0x7f5b926e3620) 0 + primary-for QWidget (0x7f5b926df400) + QPaintDevice (0x7f5b926e3690) 16 + vptr=((& QDesktopWidget::_ZTV14QDesktopWidget) + 464u) + +Vtable for QShortcut +QShortcut::_ZTV9QShortcut: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QShortcut) +16 QShortcut::metaObject +24 QShortcut::qt_metacast +32 QShortcut::qt_metacall +40 QShortcut::~QShortcut +48 QShortcut::~QShortcut +56 QShortcut::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QShortcut + size=16 align=8 + base size=16 base align=8 +QShortcut (0x7f5b927085b0) 0 + vptr=((& QShortcut::_ZTV9QShortcut) + 16u) + QObject (0x7f5b92708620) 0 + primary-for QShortcut (0x7f5b927085b0) + +Vtable for QSessionManager +QSessionManager::_ZTV15QSessionManager: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSessionManager) +16 QSessionManager::metaObject +24 QSessionManager::qt_metacast +32 QSessionManager::qt_metacall +40 QSessionManager::~QSessionManager +48 QSessionManager::~QSessionManager +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSessionManager + size=16 align=8 + base size=16 base align=8 +QSessionManager (0x7f5b9271cd20) 0 + vptr=((& QSessionManager::_ZTV15QSessionManager) + 16u) + QObject (0x7f5b9271cd90) 0 + primary-for QSessionManager (0x7f5b9271cd20) + +Vtable for QApplication +QApplication::_ZTV12QApplication: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QApplication) +16 QApplication::metaObject +24 QApplication::qt_metacast +32 QApplication::qt_metacall +40 QApplication::~QApplication +48 QApplication::~QApplication +56 QApplication::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QApplication::notify +120 QApplication::compressEvent +128 QApplication::x11EventFilter +136 QApplication::x11ClientMessage +144 QApplication::commitData +152 QApplication::saveState + +Class QApplication + size=16 align=8 + base size=16 base align=8 +QApplication (0x7f5b9273a2a0) 0 + vptr=((& QApplication::_ZTV12QApplication) + 16u) + QCoreApplication (0x7f5b9273a310) 0 + primary-for QApplication (0x7f5b9273a2a0) + QObject (0x7f5b9273a380) 0 + primary-for QCoreApplication (0x7f5b9273a310) + +Vtable for QAction +QAction::_ZTV7QAction: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QAction) +16 QAction::metaObject +24 QAction::qt_metacast +32 QAction::qt_metacall +40 QAction::~QAction +48 QAction::~QAction +56 QAction::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QAction + size=16 align=8 + base size=16 base align=8 +QAction (0x7f5b92782ee0) 0 + vptr=((& QAction::_ZTV7QAction) + 16u) + QObject (0x7f5b92782f50) 0 + primary-for QAction (0x7f5b92782ee0) + +Vtable for QActionGroup +QActionGroup::_ZTV12QActionGroup: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QActionGroup) +16 QActionGroup::metaObject +24 QActionGroup::qt_metacast +32 QActionGroup::qt_metacall +40 QActionGroup::~QActionGroup +48 QActionGroup::~QActionGroup +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QActionGroup + size=16 align=8 + base size=16 base align=8 +QActionGroup (0x7f5b925c4700) 0 + vptr=((& QActionGroup::_ZTV12QActionGroup) + 16u) + QObject (0x7f5b925c4770) 0 + primary-for QActionGroup (0x7f5b925c4700) + +Vtable for QSound +QSound::_ZTV6QSound: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QSound) +16 QSound::metaObject +24 QSound::qt_metacast +32 QSound::qt_metacall +40 QSound::~QSound +48 QSound::~QSound +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSound + size=16 align=8 + base size=16 base align=8 +QSound (0x7f5b925e0af0) 0 + vptr=((& QSound::_ZTV6QSound) + 16u) + QObject (0x7f5b925e0b60) 0 + primary-for QSound (0x7f5b925e0af0) + +Vtable for QStackedLayout +QStackedLayout::_ZTV14QStackedLayout: 46u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QStackedLayout) +16 QStackedLayout::metaObject +24 QStackedLayout::qt_metacast +32 QStackedLayout::qt_metacall +40 QStackedLayout::~QStackedLayout +48 QStackedLayout::~QStackedLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QLayout::invalidate +120 QLayout::geometry +128 QStackedLayout::addItem +136 QLayout::expandingDirections +144 QStackedLayout::minimumSize +152 QLayout::maximumSize +160 QStackedLayout::setGeometry +168 QStackedLayout::itemAt +176 QStackedLayout::takeAt +184 QLayout::indexOf +192 QStackedLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QStackedLayout::sizeHint +224 (int (*)(...))-0x00000000000000010 +232 (int (*)(...))(& _ZTI14QStackedLayout) +240 QStackedLayout::_ZThn16_N14QStackedLayoutD1Ev +248 QStackedLayout::_ZThn16_N14QStackedLayoutD0Ev +256 QStackedLayout::_ZThn16_NK14QStackedLayout8sizeHintEv +264 QStackedLayout::_ZThn16_NK14QStackedLayout11minimumSizeEv +272 QLayout::_ZThn16_NK7QLayout11maximumSizeEv +280 QLayout::_ZThn16_NK7QLayout19expandingDirectionsEv +288 QStackedLayout::_ZThn16_N14QStackedLayout11setGeometryERK5QRect +296 QLayout::_ZThn16_NK7QLayout8geometryEv +304 QLayout::_ZThn16_NK7QLayout7isEmptyEv +312 QLayoutItem::hasHeightForWidth +320 QLayoutItem::heightForWidth +328 QLayoutItem::minimumHeightForWidth +336 QLayout::_ZThn16_N7QLayout10invalidateEv +344 QLayoutItem::widget +352 QLayout::_ZThn16_N7QLayout6layoutEv +360 QLayoutItem::spacerItem + +Class QStackedLayout + size=32 align=8 + base size=28 base align=8 +QStackedLayout (0x7f5b926212a0) 0 + vptr=((& QStackedLayout::_ZTV14QStackedLayout) + 16u) + QLayout (0x7f5b9260aa80) 0 + primary-for QStackedLayout (0x7f5b926212a0) + QObject (0x7f5b92621310) 0 + primary-for QLayout (0x7f5b9260aa80) + QLayoutItem (0x7f5b92621380) 16 + vptr=((& QStackedLayout::_ZTV14QStackedLayout) + 240u) + +Vtable for QWidgetAction +QWidgetAction::_ZTV13QWidgetAction: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QWidgetAction) +16 QWidgetAction::metaObject +24 QWidgetAction::qt_metacast +32 QWidgetAction::qt_metacall +40 QWidgetAction::~QWidgetAction +48 QWidgetAction::~QWidgetAction +56 QWidgetAction::event +64 QWidgetAction::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidgetAction::createWidget +120 QWidgetAction::deleteWidget + +Class QWidgetAction + size=16 align=8 + base size=16 base align=8 +QWidgetAction (0x7f5b9263f2a0) 0 + vptr=((& QWidgetAction::_ZTV13QWidgetAction) + 16u) + QAction (0x7f5b9263f310) 0 + primary-for QWidgetAction (0x7f5b9263f2a0) + QObject (0x7f5b9263f380) 0 + primary-for QAction (0x7f5b9263f310) + +Class QToolTip + size=1 align=1 + base size=0 base align=1 +QToolTip (0x7f5b92652c40) 0 empty + +Vtable for QCommonStyle +QCommonStyle::_ZTV12QCommonStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QCommonStyle) +16 QCommonStyle::metaObject +24 QCommonStyle::qt_metacast +32 QCommonStyle::qt_metacall +40 QCommonStyle::~QCommonStyle +48 QCommonStyle::~QCommonStyle +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCommonStyle::polish +120 QCommonStyle::unpolish +128 QCommonStyle::polish +136 QCommonStyle::unpolish +144 QCommonStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QStyle::standardPalette +192 QCommonStyle::drawPrimitive +200 QCommonStyle::drawControl +208 QCommonStyle::subElementRect +216 QCommonStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QCommonStyle::subControlRect +240 QCommonStyle::pixelMetric +248 QCommonStyle::sizeFromContents +256 QCommonStyle::styleHint +264 QCommonStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QCommonStyle + size=16 align=8 + base size=16 base align=8 +QCommonStyle (0x7f5b9265e230) 0 + vptr=((& QCommonStyle::_ZTV12QCommonStyle) + 16u) + QStyle (0x7f5b9265e2a0) 0 + primary-for QCommonStyle (0x7f5b9265e230) + QObject (0x7f5b9265e310) 0 + primary-for QStyle (0x7f5b9265e2a0) + +Vtable for QMotifStyle +QMotifStyle::_ZTV11QMotifStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMotifStyle) +16 QMotifStyle::metaObject +24 QMotifStyle::qt_metacast +32 QMotifStyle::qt_metacall +40 QMotifStyle::~QMotifStyle +48 QMotifStyle::~QMotifStyle +56 QMotifStyle::event +64 QMotifStyle::eventFilter +72 QMotifStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMotifStyle::polish +120 QMotifStyle::unpolish +128 QMotifStyle::polish +136 QMotifStyle::unpolish +144 QMotifStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QMotifStyle::standardPalette +192 QMotifStyle::drawPrimitive +200 QMotifStyle::drawControl +208 QMotifStyle::subElementRect +216 QMotifStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QMotifStyle::subControlRect +240 QMotifStyle::pixelMetric +248 QMotifStyle::sizeFromContents +256 QMotifStyle::styleHint +264 QMotifStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QMotifStyle + size=32 align=8 + base size=25 base align=8 +QMotifStyle (0x7f5b9267d230) 0 + vptr=((& QMotifStyle::_ZTV11QMotifStyle) + 16u) + QCommonStyle (0x7f5b9267d2a0) 0 + primary-for QMotifStyle (0x7f5b9267d230) + QStyle (0x7f5b9267d310) 0 + primary-for QCommonStyle (0x7f5b9267d2a0) + QObject (0x7f5b9267d380) 0 + primary-for QStyle (0x7f5b9267d310) + +Vtable for QWindowsStyle +QWindowsStyle::_ZTV13QWindowsStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QWindowsStyle) +16 QWindowsStyle::metaObject +24 QWindowsStyle::qt_metacast +32 QWindowsStyle::qt_metacall +40 QWindowsStyle::~QWindowsStyle +48 QWindowsStyle::~QWindowsStyle +56 QObject::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWindowsStyle::polish +120 QWindowsStyle::unpolish +128 QWindowsStyle::polish +136 QWindowsStyle::unpolish +144 QWindowsStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QStyle::standardPalette +192 QWindowsStyle::drawPrimitive +200 QWindowsStyle::drawControl +208 QWindowsStyle::subElementRect +216 QWindowsStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QCommonStyle::subControlRect +240 QWindowsStyle::pixelMetric +248 QWindowsStyle::sizeFromContents +256 QWindowsStyle::styleHint +264 QWindowsStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QWindowsStyle + size=24 align=8 + base size=24 base align=8 +QWindowsStyle (0x7f5b924a5150) 0 + vptr=((& QWindowsStyle::_ZTV13QWindowsStyle) + 16u) + QCommonStyle (0x7f5b924a51c0) 0 + primary-for QWindowsStyle (0x7f5b924a5150) + QStyle (0x7f5b924a5230) 0 + primary-for QCommonStyle (0x7f5b924a51c0) + QObject (0x7f5b924a52a0) 0 + primary-for QStyle (0x7f5b924a5230) + +Vtable for QCleanlooksStyle +QCleanlooksStyle::_ZTV16QCleanlooksStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QCleanlooksStyle) +16 QCleanlooksStyle::metaObject +24 QCleanlooksStyle::qt_metacast +32 QCleanlooksStyle::qt_metacall +40 QCleanlooksStyle::~QCleanlooksStyle +48 QCleanlooksStyle::~QCleanlooksStyle +56 QObject::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCleanlooksStyle::polish +120 QCleanlooksStyle::unpolish +128 QCleanlooksStyle::polish +136 QCleanlooksStyle::unpolish +144 QCleanlooksStyle::polish +152 QStyle::itemTextRect +160 QCleanlooksStyle::itemPixmapRect +168 QCleanlooksStyle::drawItemText +176 QCleanlooksStyle::drawItemPixmap +184 QCleanlooksStyle::standardPalette +192 QCleanlooksStyle::drawPrimitive +200 QCleanlooksStyle::drawControl +208 QCleanlooksStyle::subElementRect +216 QCleanlooksStyle::drawComplexControl +224 QCleanlooksStyle::hitTestComplexControl +232 QCleanlooksStyle::subControlRect +240 QCleanlooksStyle::pixelMetric +248 QCleanlooksStyle::sizeFromContents +256 QCleanlooksStyle::styleHint +264 QCleanlooksStyle::standardPixmap +272 QCleanlooksStyle::generatedIconPixmap + +Class QCleanlooksStyle + size=24 align=8 + base size=24 base align=8 +QCleanlooksStyle (0x7f5b924bbee0) 0 + vptr=((& QCleanlooksStyle::_ZTV16QCleanlooksStyle) + 16u) + QWindowsStyle (0x7f5b924bbf50) 0 + primary-for QCleanlooksStyle (0x7f5b924bbee0) + QCommonStyle (0x7f5b924c2000) 0 + primary-for QWindowsStyle (0x7f5b924bbf50) + QStyle (0x7f5b924c2070) 0 + primary-for QCommonStyle (0x7f5b924c2000) + QObject (0x7f5b924c20e0) 0 + primary-for QStyle (0x7f5b924c2070) + +Vtable for QStyleFactoryInterface +QStyleFactoryInterface::_ZTV22QStyleFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QStyleFactoryInterface) +16 QStyleFactoryInterface::~QStyleFactoryInterface +24 QStyleFactoryInterface::~QStyleFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QStyleFactoryInterface + size=8 align=8 + base size=8 base align=8 +QStyleFactoryInterface (0x7f5b924dfcb0) 0 nearly-empty + vptr=((& QStyleFactoryInterface::_ZTV22QStyleFactoryInterface) + 16u) + QFactoryInterface (0x7f5b924dfd20) 0 nearly-empty + primary-for QStyleFactoryInterface (0x7f5b924dfcb0) + +Vtable for QStylePlugin +QStylePlugin::_ZTV12QStylePlugin: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QStylePlugin) +16 QStylePlugin::metaObject +24 QStylePlugin::qt_metacast +32 QStylePlugin::qt_metacall +40 QStylePlugin::~QStylePlugin +48 QStylePlugin::~QStylePlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI12QStylePlugin) +144 QStylePlugin::_ZThn16_N12QStylePluginD1Ev +152 QStylePlugin::_ZThn16_N12QStylePluginD0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QStylePlugin + size=24 align=8 + base size=24 base align=8 +QStylePlugin (0x7f5b924c3f80) 0 + vptr=((& QStylePlugin::_ZTV12QStylePlugin) + 16u) + QObject (0x7f5b924ea540) 0 + primary-for QStylePlugin (0x7f5b924c3f80) + QStyleFactoryInterface (0x7f5b924ea5b0) 16 nearly-empty + vptr=((& QStylePlugin::_ZTV12QStylePlugin) + 144u) + QFactoryInterface (0x7f5b924ea620) 16 nearly-empty + primary-for QStyleFactoryInterface (0x7f5b924ea5b0) + +Vtable for QWindowsXPStyle +QWindowsXPStyle::_ZTV15QWindowsXPStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QWindowsXPStyle) +16 QWindowsXPStyle::metaObject +24 QWindowsXPStyle::qt_metacast +32 QWindowsXPStyle::qt_metacall +40 QWindowsXPStyle::~QWindowsXPStyle +48 QWindowsXPStyle::~QWindowsXPStyle +56 QObject::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWindowsXPStyle::polish +120 QWindowsXPStyle::unpolish +128 QWindowsXPStyle::polish +136 QWindowsXPStyle::unpolish +144 QWindowsXPStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QWindowsXPStyle::standardPalette +192 QWindowsXPStyle::drawPrimitive +200 QWindowsXPStyle::drawControl +208 QWindowsXPStyle::subElementRect +216 QWindowsXPStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QWindowsXPStyle::subControlRect +240 QWindowsXPStyle::pixelMetric +248 QWindowsXPStyle::sizeFromContents +256 QWindowsXPStyle::styleHint +264 QWindowsXPStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QWindowsXPStyle + size=32 align=8 + base size=32 base align=8 +QWindowsXPStyle (0x7f5b924fb4d0) 0 + vptr=((& QWindowsXPStyle::_ZTV15QWindowsXPStyle) + 16u) + QWindowsStyle (0x7f5b924fb540) 0 + primary-for QWindowsXPStyle (0x7f5b924fb4d0) + QCommonStyle (0x7f5b924fb5b0) 0 + primary-for QWindowsStyle (0x7f5b924fb540) + QStyle (0x7f5b924fb620) 0 + primary-for QCommonStyle (0x7f5b924fb5b0) + QObject (0x7f5b924fb690) 0 + primary-for QStyle (0x7f5b924fb620) + +Vtable for QCDEStyle +QCDEStyle::_ZTV9QCDEStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QCDEStyle) +16 QCDEStyle::metaObject +24 QCDEStyle::qt_metacast +32 QCDEStyle::qt_metacall +40 QCDEStyle::~QCDEStyle +48 QCDEStyle::~QCDEStyle +56 QMotifStyle::event +64 QMotifStyle::eventFilter +72 QMotifStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMotifStyle::polish +120 QMotifStyle::unpolish +128 QMotifStyle::polish +136 QMotifStyle::unpolish +144 QMotifStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QCDEStyle::standardPalette +192 QCDEStyle::drawPrimitive +200 QCDEStyle::drawControl +208 QMotifStyle::subElementRect +216 QMotifStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QMotifStyle::subControlRect +240 QCDEStyle::pixelMetric +248 QMotifStyle::sizeFromContents +256 QMotifStyle::styleHint +264 QMotifStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QCDEStyle + size=32 align=8 + base size=25 base align=8 +QCDEStyle (0x7f5b9251e380) 0 + vptr=((& QCDEStyle::_ZTV9QCDEStyle) + 16u) + QMotifStyle (0x7f5b9251e3f0) 0 + primary-for QCDEStyle (0x7f5b9251e380) + QCommonStyle (0x7f5b9251e460) 0 + primary-for QMotifStyle (0x7f5b9251e3f0) + QStyle (0x7f5b9251e4d0) 0 + primary-for QCommonStyle (0x7f5b9251e460) + QObject (0x7f5b9251e540) 0 + primary-for QStyle (0x7f5b9251e4d0) + +Vtable for QPlastiqueStyle +QPlastiqueStyle::_ZTV15QPlastiqueStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QPlastiqueStyle) +16 QPlastiqueStyle::metaObject +24 QPlastiqueStyle::qt_metacast +32 QPlastiqueStyle::qt_metacall +40 QPlastiqueStyle::~QPlastiqueStyle +48 QPlastiqueStyle::~QPlastiqueStyle +56 QObject::event +64 QPlastiqueStyle::eventFilter +72 QPlastiqueStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QPlastiqueStyle::polish +120 QPlastiqueStyle::unpolish +128 QPlastiqueStyle::polish +136 QPlastiqueStyle::unpolish +144 QPlastiqueStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QPlastiqueStyle::standardPalette +192 QPlastiqueStyle::drawPrimitive +200 QPlastiqueStyle::drawControl +208 QPlastiqueStyle::subElementRect +216 QPlastiqueStyle::drawComplexControl +224 QPlastiqueStyle::hitTestComplexControl +232 QPlastiqueStyle::subControlRect +240 QPlastiqueStyle::pixelMetric +248 QPlastiqueStyle::sizeFromContents +256 QPlastiqueStyle::styleHint +264 QPlastiqueStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QPlastiqueStyle + size=32 align=8 + base size=32 base align=8 +QPlastiqueStyle (0x7f5b925304d0) 0 + vptr=((& QPlastiqueStyle::_ZTV15QPlastiqueStyle) + 16u) + QWindowsStyle (0x7f5b92530540) 0 + primary-for QPlastiqueStyle (0x7f5b925304d0) + QCommonStyle (0x7f5b925305b0) 0 + primary-for QWindowsStyle (0x7f5b92530540) + QStyle (0x7f5b92530620) 0 + primary-for QCommonStyle (0x7f5b925305b0) + QObject (0x7f5b92530690) 0 + primary-for QStyle (0x7f5b92530620) + +Vtable for QWindowsVistaStyle +QWindowsVistaStyle::_ZTV18QWindowsVistaStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QWindowsVistaStyle) +16 QWindowsVistaStyle::metaObject +24 QWindowsVistaStyle::qt_metacast +32 QWindowsVistaStyle::qt_metacall +40 QWindowsVistaStyle::~QWindowsVistaStyle +48 QWindowsVistaStyle::~QWindowsVistaStyle +56 QWindowsVistaStyle::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWindowsVistaStyle::polish +120 QWindowsVistaStyle::unpolish +128 QWindowsVistaStyle::polish +136 QWindowsVistaStyle::unpolish +144 QWindowsVistaStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QWindowsVistaStyle::standardPalette +192 QWindowsVistaStyle::drawPrimitive +200 QWindowsVistaStyle::drawControl +208 QWindowsVistaStyle::subElementRect +216 QWindowsVistaStyle::drawComplexControl +224 QWindowsVistaStyle::hitTestComplexControl +232 QWindowsVistaStyle::subControlRect +240 QWindowsVistaStyle::pixelMetric +248 QWindowsVistaStyle::sizeFromContents +256 QWindowsVistaStyle::styleHint +264 QWindowsVistaStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QWindowsVistaStyle + size=32 align=8 + base size=32 base align=8 +QWindowsVistaStyle (0x7f5b92550620) 0 + vptr=((& QWindowsVistaStyle::_ZTV18QWindowsVistaStyle) + 16u) + QWindowsXPStyle (0x7f5b92550690) 0 + primary-for QWindowsVistaStyle (0x7f5b92550620) + QWindowsStyle (0x7f5b92550700) 0 + primary-for QWindowsXPStyle (0x7f5b92550690) + QCommonStyle (0x7f5b92550770) 0 + primary-for QWindowsStyle (0x7f5b92550700) + QStyle (0x7f5b925507e0) 0 + primary-for QCommonStyle (0x7f5b92550770) + QObject (0x7f5b92550850) 0 + primary-for QStyle (0x7f5b925507e0) + +Vtable for QWindowsCEStyle +QWindowsCEStyle::_ZTV15QWindowsCEStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QWindowsCEStyle) +16 QWindowsCEStyle::metaObject +24 QWindowsCEStyle::qt_metacast +32 QWindowsCEStyle::qt_metacall +40 QWindowsCEStyle::~QWindowsCEStyle +48 QWindowsCEStyle::~QWindowsCEStyle +56 QObject::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWindowsCEStyle::polish +120 QWindowsStyle::unpolish +128 QWindowsCEStyle::polish +136 QWindowsStyle::unpolish +144 QWindowsCEStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QWindowsCEStyle::drawItemText +176 QStyle::drawItemPixmap +184 QWindowsCEStyle::standardPalette +192 QWindowsCEStyle::drawPrimitive +200 QWindowsCEStyle::drawControl +208 QWindowsCEStyle::subElementRect +216 QWindowsCEStyle::drawComplexControl +224 QWindowsCEStyle::hitTestComplexControl +232 QWindowsCEStyle::subControlRect +240 QWindowsCEStyle::pixelMetric +248 QWindowsCEStyle::sizeFromContents +256 QWindowsCEStyle::styleHint +264 QWindowsCEStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QWindowsCEStyle + size=24 align=8 + base size=24 base align=8 +QWindowsCEStyle (0x7f5b9256d620) 0 + vptr=((& QWindowsCEStyle::_ZTV15QWindowsCEStyle) + 16u) + QWindowsStyle (0x7f5b9256d690) 0 + primary-for QWindowsCEStyle (0x7f5b9256d620) + QCommonStyle (0x7f5b9256d700) 0 + primary-for QWindowsStyle (0x7f5b9256d690) + QStyle (0x7f5b9256d770) 0 + primary-for QCommonStyle (0x7f5b9256d700) + QObject (0x7f5b9256d7e0) 0 + primary-for QStyle (0x7f5b9256d770) + +Vtable for QWindowsMobileStyle +QWindowsMobileStyle::_ZTV19QWindowsMobileStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QWindowsMobileStyle) +16 QWindowsMobileStyle::metaObject +24 QWindowsMobileStyle::qt_metacast +32 QWindowsMobileStyle::qt_metacall +40 QWindowsMobileStyle::~QWindowsMobileStyle +48 QWindowsMobileStyle::~QWindowsMobileStyle +56 QObject::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWindowsMobileStyle::polish +120 QWindowsMobileStyle::unpolish +128 QWindowsMobileStyle::polish +136 QWindowsMobileStyle::unpolish +144 QWindowsMobileStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QWindowsMobileStyle::standardPalette +192 QWindowsMobileStyle::drawPrimitive +200 QWindowsMobileStyle::drawControl +208 QWindowsMobileStyle::subElementRect +216 QWindowsMobileStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QWindowsMobileStyle::subControlRect +240 QWindowsMobileStyle::pixelMetric +248 QWindowsMobileStyle::sizeFromContents +256 QWindowsMobileStyle::styleHint +264 QWindowsMobileStyle::standardPixmap +272 QWindowsMobileStyle::generatedIconPixmap + +Class QWindowsMobileStyle + size=24 align=8 + base size=24 base align=8 +QWindowsMobileStyle (0x7f5b92582d20) 0 + vptr=((& QWindowsMobileStyle::_ZTV19QWindowsMobileStyle) + 16u) + QWindowsStyle (0x7f5b92582d90) 0 + primary-for QWindowsMobileStyle (0x7f5b92582d20) + QCommonStyle (0x7f5b92582e00) 0 + primary-for QWindowsStyle (0x7f5b92582d90) + QStyle (0x7f5b92582e70) 0 + primary-for QCommonStyle (0x7f5b92582e00) + QObject (0x7f5b92582ee0) 0 + primary-for QStyle (0x7f5b92582e70) + +Class QStyleFactory + size=1 align=1 + base size=0 base align=1 +QStyleFactory (0x7f5b923a7690) 0 empty + +Vtable for QInputContextFactoryInterface +QInputContextFactoryInterface::_ZTV29QInputContextFactoryInterface: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI29QInputContextFactoryInterface) +16 QInputContextFactoryInterface::~QInputContextFactoryInterface +24 QInputContextFactoryInterface::~QInputContextFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual + +Class QInputContextFactoryInterface + size=8 align=8 + base size=8 base align=8 +QInputContextFactoryInterface (0x7f5b923a7700) 0 nearly-empty + vptr=((& QInputContextFactoryInterface::_ZTV29QInputContextFactoryInterface) + 16u) + QFactoryInterface (0x7f5b923a7770) 0 nearly-empty + primary-for QInputContextFactoryInterface (0x7f5b923a7700) + +Vtable for QInputContextPlugin +QInputContextPlugin::_ZTV19QInputContextPlugin: 28u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QInputContextPlugin) +16 QInputContextPlugin::metaObject +24 QInputContextPlugin::qt_metacast +32 QInputContextPlugin::qt_metacall +40 QInputContextPlugin::~QInputContextPlugin +48 QInputContextPlugin::~QInputContextPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 (int (*)(...))-0x00000000000000010 +160 (int (*)(...))(& _ZTI19QInputContextPlugin) +168 QInputContextPlugin::_ZThn16_N19QInputContextPluginD1Ev +176 QInputContextPlugin::_ZThn16_N19QInputContextPluginD0Ev +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 __cxa_pure_virtual +208 __cxa_pure_virtual +216 __cxa_pure_virtual + +Class QInputContextPlugin + size=24 align=8 + base size=24 base align=8 +QInputContextPlugin (0x7f5b923a1d80) 0 + vptr=((& QInputContextPlugin::_ZTV19QInputContextPlugin) + 16u) + QObject (0x7f5b923a7f50) 0 + primary-for QInputContextPlugin (0x7f5b923a1d80) + QInputContextFactoryInterface (0x7f5b923a77e0) 16 nearly-empty + vptr=((& QInputContextPlugin::_ZTV19QInputContextPlugin) + 168u) + QFactoryInterface (0x7f5b923b2000) 16 nearly-empty + primary-for QInputContextFactoryInterface (0x7f5b923a77e0) + +Class QInputContextFactory + size=1 align=1 + base size=0 base align=1 +QInputContextFactory (0x7f5b923b2ee0) 0 empty + +Vtable for QInputContext +QInputContext::_ZTV13QInputContext: 26u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QInputContext) +16 QInputContext::metaObject +24 QInputContext::qt_metacast +32 QInputContext::qt_metacall +40 QInputContext::~QInputContext +48 QInputContext::~QInputContext +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 QInputContext::update +144 QInputContext::mouseHandler +152 QInputContext::font +160 __cxa_pure_virtual +168 QInputContext::setFocusWidget +176 QInputContext::widgetDestroyed +184 QInputContext::actions +192 QInputContext::x11FilterEvent +200 QInputContext::filterEvent + +Class QInputContext + size=16 align=8 + base size=16 base align=8 +QInputContext (0x7f5b923b2f50) 0 + vptr=((& QInputContext::_ZTV13QInputContext) + 16u) + QObject (0x7f5b923b22a0) 0 + primary-for QInputContext (0x7f5b923b2f50) + +Vtable for QGraphicsItem +QGraphicsItem::_ZTV13QGraphicsItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QGraphicsItem) +16 QGraphicsItem::~QGraphicsItem +24 QGraphicsItem::~QGraphicsItem +32 QGraphicsItem::advance +40 __cxa_pure_virtual +48 QGraphicsItem::shape +56 QGraphicsItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsItem::isObscuredBy +88 QGraphicsItem::opaqueArea +96 __cxa_pure_virtual +104 QGraphicsItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsItem::supportsExtension +296 QGraphicsItem::setExtension +304 QGraphicsItem::extension + +Class QGraphicsItem + size=16 align=8 + base size=16 base align=8 +QGraphicsItem (0x7f5b923da850) 0 + vptr=((& QGraphicsItem::_ZTV13QGraphicsItem) + 16u) + +Vtable for QAbstractGraphicsShapeItem +QAbstractGraphicsShapeItem::_ZTV26QAbstractGraphicsShapeItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QAbstractGraphicsShapeItem) +16 QAbstractGraphicsShapeItem::~QAbstractGraphicsShapeItem +24 QAbstractGraphicsShapeItem::~QAbstractGraphicsShapeItem +32 QGraphicsItem::advance +40 __cxa_pure_virtual +48 QGraphicsItem::shape +56 QGraphicsItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QAbstractGraphicsShapeItem::isObscuredBy +88 QAbstractGraphicsShapeItem::opaqueArea +96 __cxa_pure_virtual +104 QGraphicsItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsItem::supportsExtension +296 QGraphicsItem::setExtension +304 QGraphicsItem::extension + +Class QAbstractGraphicsShapeItem + size=16 align=8 + base size=16 base align=8 +QAbstractGraphicsShapeItem (0x7f5b922ae380) 0 + vptr=((& QAbstractGraphicsShapeItem::_ZTV26QAbstractGraphicsShapeItem) + 16u) + QGraphicsItem (0x7f5b922ae3f0) 0 + primary-for QAbstractGraphicsShapeItem (0x7f5b922ae380) + +Vtable for QGraphicsPathItem +QGraphicsPathItem::_ZTV17QGraphicsPathItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QGraphicsPathItem) +16 QGraphicsPathItem::~QGraphicsPathItem +24 QGraphicsPathItem::~QGraphicsPathItem +32 QGraphicsItem::advance +40 QGraphicsPathItem::boundingRect +48 QGraphicsPathItem::shape +56 QGraphicsPathItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsPathItem::isObscuredBy +88 QGraphicsPathItem::opaqueArea +96 QGraphicsPathItem::paint +104 QGraphicsPathItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsPathItem::supportsExtension +296 QGraphicsPathItem::setExtension +304 QGraphicsPathItem::extension + +Class QGraphicsPathItem + size=16 align=8 + base size=16 base align=8 +QGraphicsPathItem (0x7f5b922b81c0) 0 + vptr=((& QGraphicsPathItem::_ZTV17QGraphicsPathItem) + 16u) + QAbstractGraphicsShapeItem (0x7f5b922b8230) 0 + primary-for QGraphicsPathItem (0x7f5b922b81c0) + QGraphicsItem (0x7f5b922b82a0) 0 + primary-for QAbstractGraphicsShapeItem (0x7f5b922b8230) + +Vtable for QGraphicsRectItem +QGraphicsRectItem::_ZTV17QGraphicsRectItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QGraphicsRectItem) +16 QGraphicsRectItem::~QGraphicsRectItem +24 QGraphicsRectItem::~QGraphicsRectItem +32 QGraphicsItem::advance +40 QGraphicsRectItem::boundingRect +48 QGraphicsRectItem::shape +56 QGraphicsRectItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsRectItem::isObscuredBy +88 QGraphicsRectItem::opaqueArea +96 QGraphicsRectItem::paint +104 QGraphicsRectItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsRectItem::supportsExtension +296 QGraphicsRectItem::setExtension +304 QGraphicsRectItem::extension + +Class QGraphicsRectItem + size=16 align=8 + base size=16 base align=8 +QGraphicsRectItem (0x7f5b922c9150) 0 + vptr=((& QGraphicsRectItem::_ZTV17QGraphicsRectItem) + 16u) + QAbstractGraphicsShapeItem (0x7f5b922c91c0) 0 + primary-for QGraphicsRectItem (0x7f5b922c9150) + QGraphicsItem (0x7f5b922c9230) 0 + primary-for QAbstractGraphicsShapeItem (0x7f5b922c91c0) + +Vtable for QGraphicsEllipseItem +QGraphicsEllipseItem::_ZTV20QGraphicsEllipseItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QGraphicsEllipseItem) +16 QGraphicsEllipseItem::~QGraphicsEllipseItem +24 QGraphicsEllipseItem::~QGraphicsEllipseItem +32 QGraphicsItem::advance +40 QGraphicsEllipseItem::boundingRect +48 QGraphicsEllipseItem::shape +56 QGraphicsEllipseItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsEllipseItem::isObscuredBy +88 QGraphicsEllipseItem::opaqueArea +96 QGraphicsEllipseItem::paint +104 QGraphicsEllipseItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsEllipseItem::supportsExtension +296 QGraphicsEllipseItem::setExtension +304 QGraphicsEllipseItem::extension + +Class QGraphicsEllipseItem + size=16 align=8 + base size=16 base align=8 +QGraphicsEllipseItem (0x7f5b922db460) 0 + vptr=((& QGraphicsEllipseItem::_ZTV20QGraphicsEllipseItem) + 16u) + QAbstractGraphicsShapeItem (0x7f5b922db4d0) 0 + primary-for QGraphicsEllipseItem (0x7f5b922db460) + QGraphicsItem (0x7f5b922db540) 0 + primary-for QAbstractGraphicsShapeItem (0x7f5b922db4d0) + +Vtable for QGraphicsPolygonItem +QGraphicsPolygonItem::_ZTV20QGraphicsPolygonItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QGraphicsPolygonItem) +16 QGraphicsPolygonItem::~QGraphicsPolygonItem +24 QGraphicsPolygonItem::~QGraphicsPolygonItem +32 QGraphicsItem::advance +40 QGraphicsPolygonItem::boundingRect +48 QGraphicsPolygonItem::shape +56 QGraphicsPolygonItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsPolygonItem::isObscuredBy +88 QGraphicsPolygonItem::opaqueArea +96 QGraphicsPolygonItem::paint +104 QGraphicsPolygonItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsPolygonItem::supportsExtension +296 QGraphicsPolygonItem::setExtension +304 QGraphicsPolygonItem::extension + +Class QGraphicsPolygonItem + size=16 align=8 + base size=16 base align=8 +QGraphicsPolygonItem (0x7f5b922f0770) 0 + vptr=((& QGraphicsPolygonItem::_ZTV20QGraphicsPolygonItem) + 16u) + QAbstractGraphicsShapeItem (0x7f5b922f07e0) 0 + primary-for QGraphicsPolygonItem (0x7f5b922f0770) + QGraphicsItem (0x7f5b922f0850) 0 + primary-for QAbstractGraphicsShapeItem (0x7f5b922f07e0) + +Vtable for QGraphicsLineItem +QGraphicsLineItem::_ZTV17QGraphicsLineItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QGraphicsLineItem) +16 QGraphicsLineItem::~QGraphicsLineItem +24 QGraphicsLineItem::~QGraphicsLineItem +32 QGraphicsItem::advance +40 QGraphicsLineItem::boundingRect +48 QGraphicsLineItem::shape +56 QGraphicsLineItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsLineItem::isObscuredBy +88 QGraphicsLineItem::opaqueArea +96 QGraphicsLineItem::paint +104 QGraphicsLineItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsLineItem::supportsExtension +296 QGraphicsLineItem::setExtension +304 QGraphicsLineItem::extension + +Class QGraphicsLineItem + size=16 align=8 + base size=16 base align=8 +QGraphicsLineItem (0x7f5b922ff770) 0 + vptr=((& QGraphicsLineItem::_ZTV17QGraphicsLineItem) + 16u) + QGraphicsItem (0x7f5b922ff7e0) 0 + primary-for QGraphicsLineItem (0x7f5b922ff770) + +Vtable for QGraphicsPixmapItem +QGraphicsPixmapItem::_ZTV19QGraphicsPixmapItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QGraphicsPixmapItem) +16 QGraphicsPixmapItem::~QGraphicsPixmapItem +24 QGraphicsPixmapItem::~QGraphicsPixmapItem +32 QGraphicsItem::advance +40 QGraphicsPixmapItem::boundingRect +48 QGraphicsPixmapItem::shape +56 QGraphicsPixmapItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsPixmapItem::isObscuredBy +88 QGraphicsPixmapItem::opaqueArea +96 QGraphicsPixmapItem::paint +104 QGraphicsPixmapItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsPixmapItem::supportsExtension +296 QGraphicsPixmapItem::setExtension +304 QGraphicsPixmapItem::extension + +Class QGraphicsPixmapItem + size=16 align=8 + base size=16 base align=8 +QGraphicsPixmapItem (0x7f5b9230fa10) 0 + vptr=((& QGraphicsPixmapItem::_ZTV19QGraphicsPixmapItem) + 16u) + QGraphicsItem (0x7f5b9230fa80) 0 + primary-for QGraphicsPixmapItem (0x7f5b9230fa10) + +Vtable for QGraphicsTextItem +QGraphicsTextItem::_ZTV17QGraphicsTextItem: 82u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QGraphicsTextItem) +16 QGraphicsTextItem::metaObject +24 QGraphicsTextItem::qt_metacast +32 QGraphicsTextItem::qt_metacall +40 QGraphicsTextItem::~QGraphicsTextItem +48 QGraphicsTextItem::~QGraphicsTextItem +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsTextItem::boundingRect +120 QGraphicsTextItem::shape +128 QGraphicsTextItem::contains +136 QGraphicsTextItem::paint +144 QGraphicsTextItem::isObscuredBy +152 QGraphicsTextItem::opaqueArea +160 QGraphicsTextItem::type +168 QGraphicsTextItem::sceneEvent +176 QGraphicsTextItem::mousePressEvent +184 QGraphicsTextItem::mouseMoveEvent +192 QGraphicsTextItem::mouseReleaseEvent +200 QGraphicsTextItem::mouseDoubleClickEvent +208 QGraphicsTextItem::contextMenuEvent +216 QGraphicsTextItem::keyPressEvent +224 QGraphicsTextItem::keyReleaseEvent +232 QGraphicsTextItem::focusInEvent +240 QGraphicsTextItem::focusOutEvent +248 QGraphicsTextItem::dragEnterEvent +256 QGraphicsTextItem::dragLeaveEvent +264 QGraphicsTextItem::dragMoveEvent +272 QGraphicsTextItem::dropEvent +280 QGraphicsTextItem::inputMethodEvent +288 QGraphicsTextItem::hoverEnterEvent +296 QGraphicsTextItem::hoverMoveEvent +304 QGraphicsTextItem::hoverLeaveEvent +312 QGraphicsTextItem::inputMethodQuery +320 QGraphicsTextItem::supportsExtension +328 QGraphicsTextItem::setExtension +336 QGraphicsTextItem::extension +344 (int (*)(...))-0x00000000000000010 +352 (int (*)(...))(& _ZTI17QGraphicsTextItem) +360 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItemD1Ev +368 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItemD0Ev +376 QGraphicsItem::advance +384 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem12boundingRectEv +392 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem5shapeEv +400 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem8containsERK7QPointF +408 QGraphicsItem::collidesWithItem +416 QGraphicsItem::collidesWithPath +424 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem12isObscuredByEPK13QGraphicsItem +432 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem10opaqueAreaEv +440 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget +448 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem4typeEv +456 QGraphicsItem::sceneEventFilter +464 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem10sceneEventEP6QEvent +472 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem16contextMenuEventEP30QGraphicsSceneContextMenuEvent +480 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem14dragEnterEventEP27QGraphicsSceneDragDropEvent +488 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem14dragLeaveEventEP27QGraphicsSceneDragDropEvent +496 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem13dragMoveEventEP27QGraphicsSceneDragDropEvent +504 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem9dropEventEP27QGraphicsSceneDragDropEvent +512 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem12focusInEventEP11QFocusEvent +520 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem13focusOutEventEP11QFocusEvent +528 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem15hoverEnterEventEP24QGraphicsSceneHoverEvent +536 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem14hoverMoveEventEP24QGraphicsSceneHoverEvent +544 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem15hoverLeaveEventEP24QGraphicsSceneHoverEvent +552 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem13keyPressEventEP9QKeyEvent +560 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem15keyReleaseEventEP9QKeyEvent +568 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem15mousePressEventEP24QGraphicsSceneMouseEvent +576 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem14mouseMoveEventEP24QGraphicsSceneMouseEvent +584 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem17mouseReleaseEventEP24QGraphicsSceneMouseEvent +592 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem21mouseDoubleClickEventEP24QGraphicsSceneMouseEvent +600 QGraphicsItem::wheelEvent +608 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem16inputMethodEventEP17QInputMethodEvent +616 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem16inputMethodQueryEN2Qt16InputMethodQueryE +624 QGraphicsItem::itemChange +632 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem17supportsExtensionEN13QGraphicsItem9ExtensionE +640 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem12setExtensionEN13QGraphicsItem9ExtensionERK8QVariant +648 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem9extensionERK8QVariant + +Class QGraphicsTextItem + size=40 align=8 + base size=40 base align=8 +QGraphicsTextItem (0x7f5b922f2f80) 0 + vptr=((& QGraphicsTextItem::_ZTV17QGraphicsTextItem) + 16u) + QObject (0x7f5b92321c40) 0 + primary-for QGraphicsTextItem (0x7f5b922f2f80) + QGraphicsItem (0x7f5b92321cb0) 16 + vptr=((& QGraphicsTextItem::_ZTV17QGraphicsTextItem) + 360u) + +Vtable for QGraphicsSimpleTextItem +QGraphicsSimpleTextItem::_ZTV23QGraphicsSimpleTextItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QGraphicsSimpleTextItem) +16 QGraphicsSimpleTextItem::~QGraphicsSimpleTextItem +24 QGraphicsSimpleTextItem::~QGraphicsSimpleTextItem +32 QGraphicsItem::advance +40 QGraphicsSimpleTextItem::boundingRect +48 QGraphicsSimpleTextItem::shape +56 QGraphicsSimpleTextItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsSimpleTextItem::isObscuredBy +88 QGraphicsSimpleTextItem::opaqueArea +96 QGraphicsSimpleTextItem::paint +104 QGraphicsSimpleTextItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsSimpleTextItem::supportsExtension +296 QGraphicsSimpleTextItem::setExtension +304 QGraphicsSimpleTextItem::extension + +Class QGraphicsSimpleTextItem + size=16 align=8 + base size=16 base align=8 +QGraphicsSimpleTextItem (0x7f5b923591c0) 0 + vptr=((& QGraphicsSimpleTextItem::_ZTV23QGraphicsSimpleTextItem) + 16u) + QAbstractGraphicsShapeItem (0x7f5b92359230) 0 + primary-for QGraphicsSimpleTextItem (0x7f5b923591c0) + QGraphicsItem (0x7f5b923592a0) 0 + primary-for QAbstractGraphicsShapeItem (0x7f5b92359230) + +Vtable for QGraphicsItemGroup +QGraphicsItemGroup::_ZTV18QGraphicsItemGroup: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QGraphicsItemGroup) +16 QGraphicsItemGroup::~QGraphicsItemGroup +24 QGraphicsItemGroup::~QGraphicsItemGroup +32 QGraphicsItem::advance +40 QGraphicsItemGroup::boundingRect +48 QGraphicsItem::shape +56 QGraphicsItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsItemGroup::isObscuredBy +88 QGraphicsItemGroup::opaqueArea +96 QGraphicsItemGroup::paint +104 QGraphicsItemGroup::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsItem::supportsExtension +296 QGraphicsItem::setExtension +304 QGraphicsItem::extension + +Class QGraphicsItemGroup + size=16 align=8 + base size=16 base align=8 +QGraphicsItemGroup (0x7f5b92369150) 0 + vptr=((& QGraphicsItemGroup::_ZTV18QGraphicsItemGroup) + 16u) + QGraphicsItem (0x7f5b923691c0) 0 + primary-for QGraphicsItemGroup (0x7f5b92369150) + +Vtable for QGraphicsLayoutItem +QGraphicsLayoutItem::_ZTV19QGraphicsLayoutItem: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QGraphicsLayoutItem) +16 QGraphicsLayoutItem::~QGraphicsLayoutItem +24 QGraphicsLayoutItem::~QGraphicsLayoutItem +32 QGraphicsLayoutItem::setGeometry +40 QGraphicsLayoutItem::getContentsMargins +48 QGraphicsLayoutItem::updateGeometry +56 __cxa_pure_virtual + +Class QGraphicsLayoutItem + size=16 align=8 + base size=16 base align=8 +QGraphicsLayoutItem (0x7f5b92378a80) 0 + vptr=((& QGraphicsLayoutItem::_ZTV19QGraphicsLayoutItem) + 16u) + +Vtable for QGraphicsLayout +QGraphicsLayout::_ZTV15QGraphicsLayout: 13u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QGraphicsLayout) +16 QGraphicsLayout::~QGraphicsLayout +24 QGraphicsLayout::~QGraphicsLayout +32 QGraphicsLayoutItem::setGeometry +40 QGraphicsLayout::getContentsMargins +48 QGraphicsLayout::updateGeometry +56 __cxa_pure_virtual +64 QGraphicsLayout::invalidate +72 QGraphicsLayout::widgetEvent +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual + +Class QGraphicsLayout + size=16 align=8 + base size=16 base align=8 +QGraphicsLayout (0x7f5b921a47e0) 0 + vptr=((& QGraphicsLayout::_ZTV15QGraphicsLayout) + 16u) + QGraphicsLayoutItem (0x7f5b921a4850) 0 + primary-for QGraphicsLayout (0x7f5b921a47e0) + +Vtable for QGraphicsScene +QGraphicsScene::_ZTV14QGraphicsScene: 34u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QGraphicsScene) +16 QGraphicsScene::metaObject +24 QGraphicsScene::qt_metacast +32 QGraphicsScene::qt_metacall +40 QGraphicsScene::~QGraphicsScene +48 QGraphicsScene::~QGraphicsScene +56 QGraphicsScene::event +64 QGraphicsScene::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsScene::inputMethodQuery +120 QGraphicsScene::contextMenuEvent +128 QGraphicsScene::dragEnterEvent +136 QGraphicsScene::dragMoveEvent +144 QGraphicsScene::dragLeaveEvent +152 QGraphicsScene::dropEvent +160 QGraphicsScene::focusInEvent +168 QGraphicsScene::focusOutEvent +176 QGraphicsScene::helpEvent +184 QGraphicsScene::keyPressEvent +192 QGraphicsScene::keyReleaseEvent +200 QGraphicsScene::mousePressEvent +208 QGraphicsScene::mouseMoveEvent +216 QGraphicsScene::mouseReleaseEvent +224 QGraphicsScene::mouseDoubleClickEvent +232 QGraphicsScene::wheelEvent +240 QGraphicsScene::inputMethodEvent +248 QGraphicsScene::drawBackground +256 QGraphicsScene::drawForeground +264 QGraphicsScene::drawItems + +Class QGraphicsScene + size=16 align=8 + base size=16 base align=8 +QGraphicsScene (0x7f5b921b1700) 0 + vptr=((& QGraphicsScene::_ZTV14QGraphicsScene) + 16u) + QObject (0x7f5b921b1770) 0 + primary-for QGraphicsScene (0x7f5b921b1700) + +Vtable for QGraphicsLinearLayout +QGraphicsLinearLayout::_ZTV21QGraphicsLinearLayout: 13u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QGraphicsLinearLayout) +16 QGraphicsLinearLayout::~QGraphicsLinearLayout +24 QGraphicsLinearLayout::~QGraphicsLinearLayout +32 QGraphicsLinearLayout::setGeometry +40 QGraphicsLayout::getContentsMargins +48 QGraphicsLayout::updateGeometry +56 QGraphicsLinearLayout::sizeHint +64 QGraphicsLinearLayout::invalidate +72 QGraphicsLayout::widgetEvent +80 QGraphicsLinearLayout::count +88 QGraphicsLinearLayout::itemAt +96 QGraphicsLinearLayout::removeAt + +Class QGraphicsLinearLayout + size=16 align=8 + base size=16 base align=8 +QGraphicsLinearLayout (0x7f5b92258d20) 0 + vptr=((& QGraphicsLinearLayout::_ZTV21QGraphicsLinearLayout) + 16u) + QGraphicsLayout (0x7f5b92258d90) 0 + primary-for QGraphicsLinearLayout (0x7f5b92258d20) + QGraphicsLayoutItem (0x7f5b92258e00) 0 + primary-for QGraphicsLayout (0x7f5b92258d90) + +Vtable for QScrollArea +QScrollArea::_ZTV11QScrollArea: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QScrollArea) +16 QScrollArea::metaObject +24 QScrollArea::qt_metacast +32 QScrollArea::qt_metacall +40 QScrollArea::~QScrollArea +48 QScrollArea::~QScrollArea +56 QScrollArea::event +64 QScrollArea::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractScrollArea::mousePressEvent +168 QAbstractScrollArea::mouseReleaseEvent +176 QAbstractScrollArea::mouseDoubleClickEvent +184 QAbstractScrollArea::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractScrollArea::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractScrollArea::paintEvent +256 QWidget::moveEvent +264 QScrollArea::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractScrollArea::dragEnterEvent +312 QAbstractScrollArea::dragMoveEvent +320 QAbstractScrollArea::dragLeaveEvent +328 QAbstractScrollArea::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QScrollArea::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QScrollArea::scrollContentsBy +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI11QScrollArea) +480 QScrollArea::_ZThn16_N11QScrollAreaD1Ev +488 QScrollArea::_ZThn16_N11QScrollAreaD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QScrollArea + size=40 align=8 + base size=40 base align=8 +QScrollArea (0x7f5b92288540) 0 + vptr=((& QScrollArea::_ZTV11QScrollArea) + 16u) + QAbstractScrollArea (0x7f5b922885b0) 0 + primary-for QScrollArea (0x7f5b92288540) + QFrame (0x7f5b92288620) 0 + primary-for QAbstractScrollArea (0x7f5b922885b0) + QWidget (0x7f5b92256880) 0 + primary-for QFrame (0x7f5b92288620) + QObject (0x7f5b92288690) 0 + primary-for QWidget (0x7f5b92256880) + QPaintDevice (0x7f5b92288700) 16 + vptr=((& QScrollArea::_ZTV11QScrollArea) + 480u) + +Vtable for QGraphicsView +QGraphicsView::_ZTV13QGraphicsView: 68u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QGraphicsView) +16 QGraphicsView::metaObject +24 QGraphicsView::qt_metacast +32 QGraphicsView::qt_metacall +40 QGraphicsView::~QGraphicsView +48 QGraphicsView::~QGraphicsView +56 QGraphicsView::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QGraphicsView::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QGraphicsView::mousePressEvent +168 QGraphicsView::mouseReleaseEvent +176 QGraphicsView::mouseDoubleClickEvent +184 QGraphicsView::mouseMoveEvent +192 QGraphicsView::wheelEvent +200 QGraphicsView::keyPressEvent +208 QGraphicsView::keyReleaseEvent +216 QGraphicsView::focusInEvent +224 QGraphicsView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QGraphicsView::paintEvent +256 QWidget::moveEvent +264 QGraphicsView::resizeEvent +272 QWidget::closeEvent +280 QGraphicsView::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QGraphicsView::dragEnterEvent +312 QGraphicsView::dragMoveEvent +320 QGraphicsView::dragLeaveEvent +328 QGraphicsView::dropEvent +336 QGraphicsView::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QGraphicsView::inputMethodEvent +384 QGraphicsView::inputMethodQuery +392 QGraphicsView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QGraphicsView::viewportEvent +456 QGraphicsView::scrollContentsBy +464 QGraphicsView::drawBackground +472 QGraphicsView::drawForeground +480 QGraphicsView::drawItems +488 (int (*)(...))-0x00000000000000010 +496 (int (*)(...))(& _ZTI13QGraphicsView) +504 QGraphicsView::_ZThn16_N13QGraphicsViewD1Ev +512 QGraphicsView::_ZThn16_N13QGraphicsViewD0Ev +520 QWidget::_ZThn16_NK7QWidget7devTypeEv +528 QWidget::_ZThn16_NK7QWidget11paintEngineEv +536 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QGraphicsView + size=40 align=8 + base size=40 base align=8 +QGraphicsView (0x7f5b920a4460) 0 + vptr=((& QGraphicsView::_ZTV13QGraphicsView) + 16u) + QAbstractScrollArea (0x7f5b920a44d0) 0 + primary-for QGraphicsView (0x7f5b920a4460) + QFrame (0x7f5b920a4540) 0 + primary-for QAbstractScrollArea (0x7f5b920a44d0) + QWidget (0x7f5b920a3180) 0 + primary-for QFrame (0x7f5b920a4540) + QObject (0x7f5b920a45b0) 0 + primary-for QWidget (0x7f5b920a3180) + QPaintDevice (0x7f5b920a4620) 16 + vptr=((& QGraphicsView::_ZTV13QGraphicsView) + 504u) + +Vtable for QGraphicsWidget +QGraphicsWidget::_ZTV15QGraphicsWidget: 92u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QGraphicsWidget) +16 QGraphicsWidget::metaObject +24 QGraphicsWidget::qt_metacast +32 QGraphicsWidget::qt_metacall +40 QGraphicsWidget::~QGraphicsWidget +48 QGraphicsWidget::~QGraphicsWidget +56 QGraphicsWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsWidget::setGeometry +120 QGraphicsWidget::getContentsMargins +128 QGraphicsWidget::type +136 QGraphicsWidget::paint +144 QGraphicsWidget::paintWindowFrame +152 QGraphicsWidget::boundingRect +160 QGraphicsWidget::shape +168 QGraphicsWidget::initStyleOption +176 QGraphicsWidget::sizeHint +184 QGraphicsWidget::updateGeometry +192 QGraphicsWidget::itemChange +200 QGraphicsWidget::propertyChange +208 QGraphicsWidget::sceneEvent +216 QGraphicsWidget::windowFrameEvent +224 QGraphicsWidget::windowFrameSectionAt +232 QGraphicsWidget::changeEvent +240 QGraphicsWidget::closeEvent +248 QGraphicsWidget::focusInEvent +256 QGraphicsWidget::focusNextPrevChild +264 QGraphicsWidget::focusOutEvent +272 QGraphicsWidget::hideEvent +280 QGraphicsWidget::moveEvent +288 QGraphicsWidget::polishEvent +296 QGraphicsWidget::resizeEvent +304 QGraphicsWidget::showEvent +312 QGraphicsWidget::hoverMoveEvent +320 QGraphicsWidget::hoverLeaveEvent +328 QGraphicsWidget::grabMouseEvent +336 QGraphicsWidget::ungrabMouseEvent +344 QGraphicsWidget::grabKeyboardEvent +352 QGraphicsWidget::ungrabKeyboardEvent +360 (int (*)(...))-0x00000000000000010 +368 (int (*)(...))(& _ZTI15QGraphicsWidget) +376 QGraphicsWidget::_ZThn16_N15QGraphicsWidgetD1Ev +384 QGraphicsWidget::_ZThn16_N15QGraphicsWidgetD0Ev +392 QGraphicsItem::advance +400 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget12boundingRectEv +408 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget5shapeEv +416 QGraphicsItem::contains +424 QGraphicsItem::collidesWithItem +432 QGraphicsItem::collidesWithPath +440 QGraphicsItem::isObscuredBy +448 QGraphicsItem::opaqueArea +456 QGraphicsWidget::_ZThn16_N15QGraphicsWidget5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget +464 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget4typeEv +472 QGraphicsItem::sceneEventFilter +480 QGraphicsWidget::_ZThn16_N15QGraphicsWidget10sceneEventEP6QEvent +488 QGraphicsItem::contextMenuEvent +496 QGraphicsItem::dragEnterEvent +504 QGraphicsItem::dragLeaveEvent +512 QGraphicsItem::dragMoveEvent +520 QGraphicsItem::dropEvent +528 QGraphicsWidget::_ZThn16_N15QGraphicsWidget12focusInEventEP11QFocusEvent +536 QGraphicsWidget::_ZThn16_N15QGraphicsWidget13focusOutEventEP11QFocusEvent +544 QGraphicsItem::hoverEnterEvent +552 QGraphicsWidget::_ZThn16_N15QGraphicsWidget14hoverMoveEventEP24QGraphicsSceneHoverEvent +560 QGraphicsWidget::_ZThn16_N15QGraphicsWidget15hoverLeaveEventEP24QGraphicsSceneHoverEvent +568 QGraphicsItem::keyPressEvent +576 QGraphicsItem::keyReleaseEvent +584 QGraphicsItem::mousePressEvent +592 QGraphicsItem::mouseMoveEvent +600 QGraphicsItem::mouseReleaseEvent +608 QGraphicsItem::mouseDoubleClickEvent +616 QGraphicsItem::wheelEvent +624 QGraphicsItem::inputMethodEvent +632 QGraphicsItem::inputMethodQuery +640 QGraphicsWidget::_ZThn16_N15QGraphicsWidget10itemChangeEN13QGraphicsItem18GraphicsItemChangeERK8QVariant +648 QGraphicsItem::supportsExtension +656 QGraphicsItem::setExtension +664 QGraphicsItem::extension +672 (int (*)(...))-0x00000000000000020 +680 (int (*)(...))(& _ZTI15QGraphicsWidget) +688 QGraphicsWidget::_ZThn32_N15QGraphicsWidgetD1Ev +696 QGraphicsWidget::_ZThn32_N15QGraphicsWidgetD0Ev +704 QGraphicsWidget::_ZThn32_N15QGraphicsWidget11setGeometryERK6QRectF +712 QGraphicsWidget::_ZThn32_NK15QGraphicsWidget18getContentsMarginsEPdS0_S0_S0_ +720 QGraphicsWidget::_ZThn32_N15QGraphicsWidget14updateGeometryEv +728 QGraphicsWidget::_ZThn32_NK15QGraphicsWidget8sizeHintEN2Qt8SizeHintERK6QSizeF + +Class QGraphicsWidget + size=48 align=8 + base size=48 base align=8 +QGraphicsWidget (0x7f5b9217dd00) 0 + vptr=((& QGraphicsWidget::_ZTV15QGraphicsWidget) + 16u) + QObject (0x7f5b92189930) 0 + primary-for QGraphicsWidget (0x7f5b9217dd00) + QGraphicsItem (0x7f5b921899a0) 16 + vptr=((& QGraphicsWidget::_ZTV15QGraphicsWidget) + 376u) + QGraphicsLayoutItem (0x7f5b92189a10) 32 + vptr=((& QGraphicsWidget::_ZTV15QGraphicsWidget) + 688u) + +Vtable for QGraphicsProxyWidget +QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget: 105u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QGraphicsProxyWidget) +16 QGraphicsProxyWidget::metaObject +24 QGraphicsProxyWidget::qt_metacast +32 QGraphicsProxyWidget::qt_metacall +40 QGraphicsProxyWidget::~QGraphicsProxyWidget +48 QGraphicsProxyWidget::~QGraphicsProxyWidget +56 QGraphicsProxyWidget::event +64 QGraphicsProxyWidget::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsProxyWidget::setGeometry +120 QGraphicsWidget::getContentsMargins +128 QGraphicsProxyWidget::type +136 QGraphicsProxyWidget::paint +144 QGraphicsWidget::paintWindowFrame +152 QGraphicsWidget::boundingRect +160 QGraphicsWidget::shape +168 QGraphicsWidget::initStyleOption +176 QGraphicsProxyWidget::sizeHint +184 QGraphicsWidget::updateGeometry +192 QGraphicsProxyWidget::itemChange +200 QGraphicsWidget::propertyChange +208 QGraphicsWidget::sceneEvent +216 QGraphicsWidget::windowFrameEvent +224 QGraphicsWidget::windowFrameSectionAt +232 QGraphicsWidget::changeEvent +240 QGraphicsWidget::closeEvent +248 QGraphicsProxyWidget::focusInEvent +256 QGraphicsProxyWidget::focusNextPrevChild +264 QGraphicsProxyWidget::focusOutEvent +272 QGraphicsProxyWidget::hideEvent +280 QGraphicsWidget::moveEvent +288 QGraphicsWidget::polishEvent +296 QGraphicsProxyWidget::resizeEvent +304 QGraphicsProxyWidget::showEvent +312 QGraphicsProxyWidget::hoverMoveEvent +320 QGraphicsProxyWidget::hoverLeaveEvent +328 QGraphicsProxyWidget::grabMouseEvent +336 QGraphicsProxyWidget::ungrabMouseEvent +344 QGraphicsWidget::grabKeyboardEvent +352 QGraphicsWidget::ungrabKeyboardEvent +360 QGraphicsProxyWidget::contextMenuEvent +368 QGraphicsProxyWidget::dragEnterEvent +376 QGraphicsProxyWidget::dragLeaveEvent +384 QGraphicsProxyWidget::dragMoveEvent +392 QGraphicsProxyWidget::dropEvent +400 QGraphicsProxyWidget::hoverEnterEvent +408 QGraphicsProxyWidget::mouseMoveEvent +416 QGraphicsProxyWidget::mousePressEvent +424 QGraphicsProxyWidget::mouseReleaseEvent +432 QGraphicsProxyWidget::mouseDoubleClickEvent +440 QGraphicsProxyWidget::wheelEvent +448 QGraphicsProxyWidget::keyPressEvent +456 QGraphicsProxyWidget::keyReleaseEvent +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI20QGraphicsProxyWidget) +480 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidgetD1Ev +488 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidgetD0Ev +496 QGraphicsItem::advance +504 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget12boundingRectEv +512 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget5shapeEv +520 QGraphicsItem::contains +528 QGraphicsItem::collidesWithItem +536 QGraphicsItem::collidesWithPath +544 QGraphicsItem::isObscuredBy +552 QGraphicsItem::opaqueArea +560 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget +568 QGraphicsProxyWidget::_ZThn16_NK20QGraphicsProxyWidget4typeEv +576 QGraphicsItem::sceneEventFilter +584 QGraphicsWidget::_ZThn16_N15QGraphicsWidget10sceneEventEP6QEvent +592 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget16contextMenuEventEP30QGraphicsSceneContextMenuEvent +600 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget14dragEnterEventEP27QGraphicsSceneDragDropEvent +608 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget14dragLeaveEventEP27QGraphicsSceneDragDropEvent +616 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget13dragMoveEventEP27QGraphicsSceneDragDropEvent +624 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget9dropEventEP27QGraphicsSceneDragDropEvent +632 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget12focusInEventEP11QFocusEvent +640 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget13focusOutEventEP11QFocusEvent +648 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget15hoverEnterEventEP24QGraphicsSceneHoverEvent +656 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget14hoverMoveEventEP24QGraphicsSceneHoverEvent +664 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget15hoverLeaveEventEP24QGraphicsSceneHoverEvent +672 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget13keyPressEventEP9QKeyEvent +680 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget15keyReleaseEventEP9QKeyEvent +688 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget15mousePressEventEP24QGraphicsSceneMouseEvent +696 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget14mouseMoveEventEP24QGraphicsSceneMouseEvent +704 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget17mouseReleaseEventEP24QGraphicsSceneMouseEvent +712 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget21mouseDoubleClickEventEP24QGraphicsSceneMouseEvent +720 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget10wheelEventEP24QGraphicsSceneWheelEvent +728 QGraphicsItem::inputMethodEvent +736 QGraphicsItem::inputMethodQuery +744 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget10itemChangeEN13QGraphicsItem18GraphicsItemChangeERK8QVariant +752 QGraphicsItem::supportsExtension +760 QGraphicsItem::setExtension +768 QGraphicsItem::extension +776 (int (*)(...))-0x00000000000000020 +784 (int (*)(...))(& _ZTI20QGraphicsProxyWidget) +792 QGraphicsProxyWidget::_ZThn32_N20QGraphicsProxyWidgetD1Ev +800 QGraphicsProxyWidget::_ZThn32_N20QGraphicsProxyWidgetD0Ev +808 QGraphicsProxyWidget::_ZThn32_N20QGraphicsProxyWidget11setGeometryERK6QRectF +816 QGraphicsWidget::_ZThn32_NK15QGraphicsWidget18getContentsMarginsEPdS0_S0_S0_ +824 QGraphicsWidget::_ZThn32_N15QGraphicsWidget14updateGeometryEv +832 QGraphicsProxyWidget::_ZThn32_NK20QGraphicsProxyWidget8sizeHintEN2Qt8SizeHintERK6QSizeF + +Class QGraphicsProxyWidget + size=48 align=8 + base size=48 base align=8 +QGraphicsProxyWidget (0x7f5b91fd21c0) 0 + vptr=((& QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget) + 16u) + QGraphicsWidget (0x7f5b91fc2b80) 0 + primary-for QGraphicsProxyWidget (0x7f5b91fd21c0) + QObject (0x7f5b91fd2230) 0 + primary-for QGraphicsWidget (0x7f5b91fc2b80) + QGraphicsItem (0x7f5b91fd22a0) 16 + vptr=((& QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget) + 480u) + QGraphicsLayoutItem (0x7f5b91fd2310) 32 + vptr=((& QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget) + 792u) + +Vtable for QGraphicsSceneEvent +QGraphicsSceneEvent::_ZTV19QGraphicsSceneEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QGraphicsSceneEvent) +16 QGraphicsSceneEvent::~QGraphicsSceneEvent +24 QGraphicsSceneEvent::~QGraphicsSceneEvent + +Class QGraphicsSceneEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneEvent (0x7f5b91ffd230) 0 + vptr=((& QGraphicsSceneEvent::_ZTV19QGraphicsSceneEvent) + 16u) + QEvent (0x7f5b91ffd2a0) 0 + primary-for QGraphicsSceneEvent (0x7f5b91ffd230) + +Vtable for QGraphicsSceneMouseEvent +QGraphicsSceneMouseEvent::_ZTV24QGraphicsSceneMouseEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QGraphicsSceneMouseEvent) +16 QGraphicsSceneMouseEvent::~QGraphicsSceneMouseEvent +24 QGraphicsSceneMouseEvent::~QGraphicsSceneMouseEvent + +Class QGraphicsSceneMouseEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneMouseEvent (0x7f5b91ffdb60) 0 + vptr=((& QGraphicsSceneMouseEvent::_ZTV24QGraphicsSceneMouseEvent) + 16u) + QGraphicsSceneEvent (0x7f5b91ffdbd0) 0 + primary-for QGraphicsSceneMouseEvent (0x7f5b91ffdb60) + QEvent (0x7f5b91ffdc40) 0 + primary-for QGraphicsSceneEvent (0x7f5b91ffdbd0) + +Vtable for QGraphicsSceneWheelEvent +QGraphicsSceneWheelEvent::_ZTV24QGraphicsSceneWheelEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QGraphicsSceneWheelEvent) +16 QGraphicsSceneWheelEvent::~QGraphicsSceneWheelEvent +24 QGraphicsSceneWheelEvent::~QGraphicsSceneWheelEvent + +Class QGraphicsSceneWheelEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneWheelEvent (0x7f5b9200f460) 0 + vptr=((& QGraphicsSceneWheelEvent::_ZTV24QGraphicsSceneWheelEvent) + 16u) + QGraphicsSceneEvent (0x7f5b9200f4d0) 0 + primary-for QGraphicsSceneWheelEvent (0x7f5b9200f460) + QEvent (0x7f5b9200f540) 0 + primary-for QGraphicsSceneEvent (0x7f5b9200f4d0) + +Vtable for QGraphicsSceneContextMenuEvent +QGraphicsSceneContextMenuEvent::_ZTV30QGraphicsSceneContextMenuEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI30QGraphicsSceneContextMenuEvent) +16 QGraphicsSceneContextMenuEvent::~QGraphicsSceneContextMenuEvent +24 QGraphicsSceneContextMenuEvent::~QGraphicsSceneContextMenuEvent + +Class QGraphicsSceneContextMenuEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneContextMenuEvent (0x7f5b9200fe00) 0 + vptr=((& QGraphicsSceneContextMenuEvent::_ZTV30QGraphicsSceneContextMenuEvent) + 16u) + QGraphicsSceneEvent (0x7f5b9200fe70) 0 + primary-for QGraphicsSceneContextMenuEvent (0x7f5b9200fe00) + QEvent (0x7f5b9200fee0) 0 + primary-for QGraphicsSceneEvent (0x7f5b9200fe70) + +Vtable for QGraphicsSceneHoverEvent +QGraphicsSceneHoverEvent::_ZTV24QGraphicsSceneHoverEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QGraphicsSceneHoverEvent) +16 QGraphicsSceneHoverEvent::~QGraphicsSceneHoverEvent +24 QGraphicsSceneHoverEvent::~QGraphicsSceneHoverEvent + +Class QGraphicsSceneHoverEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneHoverEvent (0x7f5b9201c930) 0 + vptr=((& QGraphicsSceneHoverEvent::_ZTV24QGraphicsSceneHoverEvent) + 16u) + QGraphicsSceneEvent (0x7f5b9201c9a0) 0 + primary-for QGraphicsSceneHoverEvent (0x7f5b9201c930) + QEvent (0x7f5b9201ca10) 0 + primary-for QGraphicsSceneEvent (0x7f5b9201c9a0) + +Vtable for QGraphicsSceneHelpEvent +QGraphicsSceneHelpEvent::_ZTV23QGraphicsSceneHelpEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QGraphicsSceneHelpEvent) +16 QGraphicsSceneHelpEvent::~QGraphicsSceneHelpEvent +24 QGraphicsSceneHelpEvent::~QGraphicsSceneHelpEvent + +Class QGraphicsSceneHelpEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneHelpEvent (0x7f5b9202e230) 0 + vptr=((& QGraphicsSceneHelpEvent::_ZTV23QGraphicsSceneHelpEvent) + 16u) + QGraphicsSceneEvent (0x7f5b9202e2a0) 0 + primary-for QGraphicsSceneHelpEvent (0x7f5b9202e230) + QEvent (0x7f5b9202e310) 0 + primary-for QGraphicsSceneEvent (0x7f5b9202e2a0) + +Vtable for QGraphicsSceneDragDropEvent +QGraphicsSceneDragDropEvent::_ZTV27QGraphicsSceneDragDropEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QGraphicsSceneDragDropEvent) +16 QGraphicsSceneDragDropEvent::~QGraphicsSceneDragDropEvent +24 QGraphicsSceneDragDropEvent::~QGraphicsSceneDragDropEvent + +Class QGraphicsSceneDragDropEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneDragDropEvent (0x7f5b9202ebd0) 0 + vptr=((& QGraphicsSceneDragDropEvent::_ZTV27QGraphicsSceneDragDropEvent) + 16u) + QGraphicsSceneEvent (0x7f5b9202ec40) 0 + primary-for QGraphicsSceneDragDropEvent (0x7f5b9202ebd0) + QEvent (0x7f5b9202ecb0) 0 + primary-for QGraphicsSceneEvent (0x7f5b9202ec40) + +Vtable for QGraphicsSceneResizeEvent +QGraphicsSceneResizeEvent::_ZTV25QGraphicsSceneResizeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QGraphicsSceneResizeEvent) +16 QGraphicsSceneResizeEvent::~QGraphicsSceneResizeEvent +24 QGraphicsSceneResizeEvent::~QGraphicsSceneResizeEvent + +Class QGraphicsSceneResizeEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneResizeEvent (0x7f5b920404d0) 0 + vptr=((& QGraphicsSceneResizeEvent::_ZTV25QGraphicsSceneResizeEvent) + 16u) + QGraphicsSceneEvent (0x7f5b92040540) 0 + primary-for QGraphicsSceneResizeEvent (0x7f5b920404d0) + QEvent (0x7f5b920405b0) 0 + primary-for QGraphicsSceneEvent (0x7f5b92040540) + +Vtable for QGraphicsSceneMoveEvent +QGraphicsSceneMoveEvent::_ZTV23QGraphicsSceneMoveEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QGraphicsSceneMoveEvent) +16 QGraphicsSceneMoveEvent::~QGraphicsSceneMoveEvent +24 QGraphicsSceneMoveEvent::~QGraphicsSceneMoveEvent + +Class QGraphicsSceneMoveEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneMoveEvent (0x7f5b92040cb0) 0 + vptr=((& QGraphicsSceneMoveEvent::_ZTV23QGraphicsSceneMoveEvent) + 16u) + QGraphicsSceneEvent (0x7f5b92040d20) 0 + primary-for QGraphicsSceneMoveEvent (0x7f5b92040cb0) + QEvent (0x7f5b92040d90) 0 + primary-for QGraphicsSceneEvent (0x7f5b92040d20) + +Vtable for QGraphicsItemAnimation +QGraphicsItemAnimation::_ZTV22QGraphicsItemAnimation: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QGraphicsItemAnimation) +16 QGraphicsItemAnimation::metaObject +24 QGraphicsItemAnimation::qt_metacast +32 QGraphicsItemAnimation::qt_metacall +40 QGraphicsItemAnimation::~QGraphicsItemAnimation +48 QGraphicsItemAnimation::~QGraphicsItemAnimation +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsItemAnimation::beforeAnimationStep +120 QGraphicsItemAnimation::afterAnimationStep + +Class QGraphicsItemAnimation + size=24 align=8 + base size=24 base align=8 +QGraphicsItemAnimation (0x7f5b9204e3f0) 0 + vptr=((& QGraphicsItemAnimation::_ZTV22QGraphicsItemAnimation) + 16u) + QObject (0x7f5b9204e460) 0 + primary-for QGraphicsItemAnimation (0x7f5b9204e3f0) + +Vtable for QGraphicsGridLayout +QGraphicsGridLayout::_ZTV19QGraphicsGridLayout: 13u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QGraphicsGridLayout) +16 QGraphicsGridLayout::~QGraphicsGridLayout +24 QGraphicsGridLayout::~QGraphicsGridLayout +32 QGraphicsGridLayout::setGeometry +40 QGraphicsLayout::getContentsMargins +48 QGraphicsLayout::updateGeometry +56 QGraphicsGridLayout::sizeHint +64 QGraphicsGridLayout::invalidate +72 QGraphicsLayout::widgetEvent +80 QGraphicsGridLayout::count +88 QGraphicsGridLayout::itemAt +96 QGraphicsGridLayout::removeAt + +Class QGraphicsGridLayout + size=16 align=8 + base size=16 base align=8 +QGraphicsGridLayout (0x7f5b9206a770) 0 + vptr=((& QGraphicsGridLayout::_ZTV19QGraphicsGridLayout) + 16u) + QGraphicsLayout (0x7f5b9206a7e0) 0 + primary-for QGraphicsGridLayout (0x7f5b9206a770) + QGraphicsLayoutItem (0x7f5b9206a850) 0 + primary-for QGraphicsLayout (0x7f5b9206a7e0) + +Vtable for QAbstractButton +QAbstractButton::_ZTV15QAbstractButton: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QAbstractButton) +16 QAbstractButton::metaObject +24 QAbstractButton::qt_metacast +32 QAbstractButton::qt_metacall +40 QAbstractButton::~QAbstractButton +48 QAbstractButton::~QAbstractButton +56 QAbstractButton::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QAbstractButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QAbstractButton::focusInEvent +224 QAbstractButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 __cxa_pure_virtual +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractButton::hitButton +456 QAbstractButton::checkStateSet +464 QAbstractButton::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI15QAbstractButton) +488 QAbstractButton::_ZThn16_N15QAbstractButtonD1Ev +496 QAbstractButton::_ZThn16_N15QAbstractButtonD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractButton + size=40 align=8 + base size=40 base align=8 +QAbstractButton (0x7f5b92084bd0) 0 + vptr=((& QAbstractButton::_ZTV15QAbstractButton) + 16u) + QWidget (0x7f5b92067800) 0 + primary-for QAbstractButton (0x7f5b92084bd0) + QObject (0x7f5b92084c40) 0 + primary-for QWidget (0x7f5b92067800) + QPaintDevice (0x7f5b92084cb0) 16 + vptr=((& QAbstractButton::_ZTV15QAbstractButton) + 488u) + +Vtable for QCheckBox +QCheckBox::_ZTV9QCheckBox: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QCheckBox) +16 QCheckBox::metaObject +24 QCheckBox::qt_metacast +32 QCheckBox::qt_metacall +40 QCheckBox::~QCheckBox +48 QCheckBox::~QCheckBox +56 QCheckBox::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QCheckBox::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QCheckBox::mouseMoveEvent +192 QWidget::wheelEvent +200 QAbstractButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QAbstractButton::focusInEvent +224 QAbstractButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QCheckBox::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QCheckBox::hitButton +456 QCheckBox::checkStateSet +464 QCheckBox::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI9QCheckBox) +488 QCheckBox::_ZThn16_N9QCheckBoxD1Ev +496 QCheckBox::_ZThn16_N9QCheckBoxD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QCheckBox + size=40 align=8 + base size=40 base align=8 +QCheckBox (0x7f5b91eb6f50) 0 + vptr=((& QCheckBox::_ZTV9QCheckBox) + 16u) + QAbstractButton (0x7f5b91ebd000) 0 + primary-for QCheckBox (0x7f5b91eb6f50) + QWidget (0x7f5b91ebe000) 0 + primary-for QAbstractButton (0x7f5b91ebd000) + QObject (0x7f5b91ebd070) 0 + primary-for QWidget (0x7f5b91ebe000) + QPaintDevice (0x7f5b91ebd0e0) 16 + vptr=((& QCheckBox::_ZTV9QCheckBox) + 488u) + +Vtable for QMenu +QMenu::_ZTV5QMenu: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QMenu) +16 QMenu::metaObject +24 QMenu::qt_metacast +32 QMenu::qt_metacall +40 QMenu::~QMenu +48 QMenu::~QMenu +56 QMenu::event +64 QObject::eventFilter +72 QMenu::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QMenu::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QMenu::mousePressEvent +168 QMenu::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QMenu::mouseMoveEvent +192 QMenu::wheelEvent +200 QMenu::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QMenu::enterEvent +240 QMenu::leaveEvent +248 QMenu::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QMenu::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QMenu::hideEvent +352 QWidget::x11Event +360 QMenu::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QMenu::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI5QMenu) +464 QMenu::_ZThn16_N5QMenuD1Ev +472 QMenu::_ZThn16_N5QMenuD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMenu + size=40 align=8 + base size=40 base align=8 +QMenu (0x7f5b91edd770) 0 + vptr=((& QMenu::_ZTV5QMenu) + 16u) + QWidget (0x7f5b91ebef00) 0 + primary-for QMenu (0x7f5b91edd770) + QObject (0x7f5b91edd7e0) 0 + primary-for QWidget (0x7f5b91ebef00) + QPaintDevice (0x7f5b91edd850) 16 + vptr=((& QMenu::_ZTV5QMenu) + 464u) + +Vtable for QPrintPreviewWidget +QPrintPreviewWidget::_ZTV19QPrintPreviewWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QPrintPreviewWidget) +16 QPrintPreviewWidget::metaObject +24 QPrintPreviewWidget::qt_metacast +32 QPrintPreviewWidget::qt_metacall +40 QPrintPreviewWidget::~QPrintPreviewWidget +48 QPrintPreviewWidget::~QPrintPreviewWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QPrintPreviewWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI19QPrintPreviewWidget) +464 QPrintPreviewWidget::_ZThn16_N19QPrintPreviewWidgetD1Ev +472 QPrintPreviewWidget::_ZThn16_N19QPrintPreviewWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPrintPreviewWidget + size=48 align=8 + base size=48 base align=8 +QPrintPreviewWidget (0x7f5b91f865b0) 0 + vptr=((& QPrintPreviewWidget::_ZTV19QPrintPreviewWidget) + 16u) + QWidget (0x7f5b91f83680) 0 + primary-for QPrintPreviewWidget (0x7f5b91f865b0) + QObject (0x7f5b91f86620) 0 + primary-for QWidget (0x7f5b91f83680) + QPaintDevice (0x7f5b91f86690) 16 + vptr=((& QPrintPreviewWidget::_ZTV19QPrintPreviewWidget) + 464u) + +Vtable for QWorkspace +QWorkspace::_ZTV10QWorkspace: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QWorkspace) +16 QWorkspace::metaObject +24 QWorkspace::qt_metacast +32 QWorkspace::qt_metacall +40 QWorkspace::~QWorkspace +48 QWorkspace::~QWorkspace +56 QWorkspace::event +64 QWorkspace::eventFilter +72 QObject::timerEvent +80 QWorkspace::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWorkspace::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWorkspace::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWorkspace::paintEvent +256 QWidget::moveEvent +264 QWorkspace::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWorkspace::showEvent +344 QWorkspace::hideEvent +352 QWidget::x11Event +360 QWorkspace::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI10QWorkspace) +464 QWorkspace::_ZThn16_N10QWorkspaceD1Ev +472 QWorkspace::_ZThn16_N10QWorkspaceD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWorkspace + size=40 align=8 + base size=40 base align=8 +QWorkspace (0x7f5b91da9070) 0 + vptr=((& QWorkspace::_ZTV10QWorkspace) + 16u) + QWidget (0x7f5b91da4280) 0 + primary-for QWorkspace (0x7f5b91da9070) + QObject (0x7f5b91da90e0) 0 + primary-for QWidget (0x7f5b91da4280) + QPaintDevice (0x7f5b91da9150) 16 + vptr=((& QWorkspace::_ZTV10QWorkspace) + 464u) + +Vtable for QButtonGroup +QButtonGroup::_ZTV12QButtonGroup: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QButtonGroup) +16 QButtonGroup::metaObject +24 QButtonGroup::qt_metacast +32 QButtonGroup::qt_metacall +40 QButtonGroup::~QButtonGroup +48 QButtonGroup::~QButtonGroup +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QButtonGroup + size=16 align=8 + base size=16 base align=8 +QButtonGroup (0x7f5b91dcb150) 0 + vptr=((& QButtonGroup::_ZTV12QButtonGroup) + 16u) + QObject (0x7f5b91dcb1c0) 0 + primary-for QButtonGroup (0x7f5b91dcb150) + +Vtable for QSpinBox +QSpinBox::_ZTV8QSpinBox: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QSpinBox) +16 QSpinBox::metaObject +24 QSpinBox::qt_metacast +32 QSpinBox::qt_metacall +40 QSpinBox::~QSpinBox +48 QSpinBox::~QSpinBox +56 QSpinBox::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractSpinBox::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractSpinBox::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QAbstractSpinBox::wheelEvent +200 QAbstractSpinBox::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QAbstractSpinBox::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractSpinBox::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QSpinBox::validate +456 QSpinBox::fixup +464 QAbstractSpinBox::stepBy +472 QAbstractSpinBox::clear +480 QAbstractSpinBox::stepEnabled +488 QSpinBox::valueFromText +496 QSpinBox::textFromValue +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI8QSpinBox) +520 QSpinBox::_ZThn16_N8QSpinBoxD1Ev +528 QSpinBox::_ZThn16_N8QSpinBoxD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSpinBox + size=40 align=8 + base size=40 base align=8 +QSpinBox (0x7f5b91de1d90) 0 + vptr=((& QSpinBox::_ZTV8QSpinBox) + 16u) + QAbstractSpinBox (0x7f5b91de1e00) 0 + primary-for QSpinBox (0x7f5b91de1d90) + QWidget (0x7f5b91ddc800) 0 + primary-for QAbstractSpinBox (0x7f5b91de1e00) + QObject (0x7f5b91de1e70) 0 + primary-for QWidget (0x7f5b91ddc800) + QPaintDevice (0x7f5b91de1ee0) 16 + vptr=((& QSpinBox::_ZTV8QSpinBox) + 520u) + +Vtable for QDoubleSpinBox +QDoubleSpinBox::_ZTV14QDoubleSpinBox: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QDoubleSpinBox) +16 QDoubleSpinBox::metaObject +24 QDoubleSpinBox::qt_metacast +32 QDoubleSpinBox::qt_metacall +40 QDoubleSpinBox::~QDoubleSpinBox +48 QDoubleSpinBox::~QDoubleSpinBox +56 QAbstractSpinBox::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractSpinBox::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractSpinBox::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QAbstractSpinBox::wheelEvent +200 QAbstractSpinBox::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QAbstractSpinBox::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractSpinBox::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDoubleSpinBox::validate +456 QDoubleSpinBox::fixup +464 QAbstractSpinBox::stepBy +472 QAbstractSpinBox::clear +480 QAbstractSpinBox::stepEnabled +488 QDoubleSpinBox::valueFromText +496 QDoubleSpinBox::textFromValue +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI14QDoubleSpinBox) +520 QDoubleSpinBox::_ZThn16_N14QDoubleSpinBoxD1Ev +528 QDoubleSpinBox::_ZThn16_N14QDoubleSpinBoxD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDoubleSpinBox + size=40 align=8 + base size=40 base align=8 +QDoubleSpinBox (0x7f5b91e0a700) 0 + vptr=((& QDoubleSpinBox::_ZTV14QDoubleSpinBox) + 16u) + QAbstractSpinBox (0x7f5b91e0a770) 0 + primary-for QDoubleSpinBox (0x7f5b91e0a700) + QWidget (0x7f5b91e07880) 0 + primary-for QAbstractSpinBox (0x7f5b91e0a770) + QObject (0x7f5b91e0a7e0) 0 + primary-for QWidget (0x7f5b91e07880) + QPaintDevice (0x7f5b91e0a850) 16 + vptr=((& QDoubleSpinBox::_ZTV14QDoubleSpinBox) + 520u) + +Vtable for QLCDNumber +QLCDNumber::_ZTV10QLCDNumber: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QLCDNumber) +16 QLCDNumber::metaObject +24 QLCDNumber::qt_metacast +32 QLCDNumber::qt_metacall +40 QLCDNumber::~QLCDNumber +48 QLCDNumber::~QLCDNumber +56 QLCDNumber::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QLCDNumber::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QLCDNumber::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI10QLCDNumber) +464 QLCDNumber::_ZThn16_N10QLCDNumberD1Ev +472 QLCDNumber::_ZThn16_N10QLCDNumberD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QLCDNumber + size=40 align=8 + base size=40 base align=8 +QLCDNumber (0x7f5b91e2b1c0) 0 + vptr=((& QLCDNumber::_ZTV10QLCDNumber) + 16u) + QFrame (0x7f5b91e2b230) 0 + primary-for QLCDNumber (0x7f5b91e2b1c0) + QWidget (0x7f5b91e2a180) 0 + primary-for QFrame (0x7f5b91e2b230) + QObject (0x7f5b91e2b2a0) 0 + primary-for QWidget (0x7f5b91e2a180) + QPaintDevice (0x7f5b91e2b310) 16 + vptr=((& QLCDNumber::_ZTV10QLCDNumber) + 464u) + +Vtable for QStackedWidget +QStackedWidget::_ZTV14QStackedWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QStackedWidget) +16 QStackedWidget::metaObject +24 QStackedWidget::qt_metacast +32 QStackedWidget::qt_metacall +40 QStackedWidget::~QStackedWidget +48 QStackedWidget::~QStackedWidget +56 QStackedWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QFrame::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFrame::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI14QStackedWidget) +464 QStackedWidget::_ZThn16_N14QStackedWidgetD1Ev +472 QStackedWidget::_ZThn16_N14QStackedWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QStackedWidget + size=40 align=8 + base size=40 base align=8 +QStackedWidget (0x7f5b91e4dd20) 0 + vptr=((& QStackedWidget::_ZTV14QStackedWidget) + 16u) + QFrame (0x7f5b91e4dd90) 0 + primary-for QStackedWidget (0x7f5b91e4dd20) + QWidget (0x7f5b91e51200) 0 + primary-for QFrame (0x7f5b91e4dd90) + QObject (0x7f5b91e4de00) 0 + primary-for QWidget (0x7f5b91e51200) + QPaintDevice (0x7f5b91e4de70) 16 + vptr=((& QStackedWidget::_ZTV14QStackedWidget) + 464u) + +Vtable for QMdiArea +QMdiArea::_ZTV8QMdiArea: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QMdiArea) +16 QMdiArea::metaObject +24 QMdiArea::qt_metacast +32 QMdiArea::qt_metacall +40 QMdiArea::~QMdiArea +48 QMdiArea::~QMdiArea +56 QMdiArea::event +64 QMdiArea::eventFilter +72 QMdiArea::timerEvent +80 QMdiArea::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QMdiArea::sizeHint +136 QMdiArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractScrollArea::mousePressEvent +168 QAbstractScrollArea::mouseReleaseEvent +176 QAbstractScrollArea::mouseDoubleClickEvent +184 QAbstractScrollArea::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractScrollArea::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QMdiArea::paintEvent +256 QWidget::moveEvent +264 QMdiArea::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractScrollArea::dragEnterEvent +312 QAbstractScrollArea::dragMoveEvent +320 QAbstractScrollArea::dragLeaveEvent +328 QAbstractScrollArea::dropEvent +336 QMdiArea::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QMdiArea::viewportEvent +456 QMdiArea::scrollContentsBy +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI8QMdiArea) +480 QMdiArea::_ZThn16_N8QMdiAreaD1Ev +488 QMdiArea::_ZThn16_N8QMdiAreaD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMdiArea + size=40 align=8 + base size=40 base align=8 +QMdiArea (0x7f5b91e68bd0) 0 + vptr=((& QMdiArea::_ZTV8QMdiArea) + 16u) + QAbstractScrollArea (0x7f5b91e68c40) 0 + primary-for QMdiArea (0x7f5b91e68bd0) + QFrame (0x7f5b91e68cb0) 0 + primary-for QAbstractScrollArea (0x7f5b91e68c40) + QWidget (0x7f5b91e51b00) 0 + primary-for QFrame (0x7f5b91e68cb0) + QObject (0x7f5b91e68d20) 0 + primary-for QWidget (0x7f5b91e51b00) + QPaintDevice (0x7f5b91e68d90) 16 + vptr=((& QMdiArea::_ZTV8QMdiArea) + 480u) + +Vtable for QPushButton +QPushButton::_ZTV11QPushButton: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QPushButton) +16 QPushButton::metaObject +24 QPushButton::qt_metacast +32 QPushButton::qt_metacall +40 QPushButton::~QPushButton +48 QPushButton::~QPushButton +56 QPushButton::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QPushButton::sizeHint +136 QPushButton::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QPushButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QPushButton::focusInEvent +224 QPushButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QPushButton::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractButton::hitButton +456 QAbstractButton::checkStateSet +464 QAbstractButton::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11QPushButton) +488 QPushButton::_ZThn16_N11QPushButtonD1Ev +496 QPushButton::_ZThn16_N11QPushButtonD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPushButton + size=40 align=8 + base size=40 base align=8 +QPushButton (0x7f5b91cdd150) 0 + vptr=((& QPushButton::_ZTV11QPushButton) + 16u) + QAbstractButton (0x7f5b91cdd1c0) 0 + primary-for QPushButton (0x7f5b91cdd150) + QWidget (0x7f5b91e8dd00) 0 + primary-for QAbstractButton (0x7f5b91cdd1c0) + QObject (0x7f5b91cdd230) 0 + primary-for QWidget (0x7f5b91e8dd00) + QPaintDevice (0x7f5b91cdd2a0) 16 + vptr=((& QPushButton::_ZTV11QPushButton) + 488u) + +Vtable for QMdiSubWindow +QMdiSubWindow::_ZTV13QMdiSubWindow: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QMdiSubWindow) +16 QMdiSubWindow::metaObject +24 QMdiSubWindow::qt_metacast +32 QMdiSubWindow::qt_metacall +40 QMdiSubWindow::~QMdiSubWindow +48 QMdiSubWindow::~QMdiSubWindow +56 QMdiSubWindow::event +64 QMdiSubWindow::eventFilter +72 QMdiSubWindow::timerEvent +80 QMdiSubWindow::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QMdiSubWindow::sizeHint +136 QMdiSubWindow::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QMdiSubWindow::mousePressEvent +168 QMdiSubWindow::mouseReleaseEvent +176 QMdiSubWindow::mouseDoubleClickEvent +184 QMdiSubWindow::mouseMoveEvent +192 QWidget::wheelEvent +200 QMdiSubWindow::keyPressEvent +208 QWidget::keyReleaseEvent +216 QMdiSubWindow::focusInEvent +224 QMdiSubWindow::focusOutEvent +232 QWidget::enterEvent +240 QMdiSubWindow::leaveEvent +248 QMdiSubWindow::paintEvent +256 QMdiSubWindow::moveEvent +264 QMdiSubWindow::resizeEvent +272 QMdiSubWindow::closeEvent +280 QMdiSubWindow::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QMdiSubWindow::showEvent +344 QMdiSubWindow::hideEvent +352 QWidget::x11Event +360 QMdiSubWindow::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI13QMdiSubWindow) +464 QMdiSubWindow::_ZThn16_N13QMdiSubWindowD1Ev +472 QMdiSubWindow::_ZThn16_N13QMdiSubWindowD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMdiSubWindow + size=40 align=8 + base size=40 base align=8 +QMdiSubWindow (0x7f5b91d01a80) 0 + vptr=((& QMdiSubWindow::_ZTV13QMdiSubWindow) + 16u) + QWidget (0x7f5b91cf8c00) 0 + primary-for QMdiSubWindow (0x7f5b91d01a80) + QObject (0x7f5b91d01af0) 0 + primary-for QWidget (0x7f5b91cf8c00) + QPaintDevice (0x7f5b91d01b60) 16 + vptr=((& QMdiSubWindow::_ZTV13QMdiSubWindow) + 464u) + +Vtable for QSplashScreen +QSplashScreen::_ZTV13QSplashScreen: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSplashScreen) +16 QSplashScreen::metaObject +24 QSplashScreen::qt_metacast +32 QSplashScreen::qt_metacall +40 QSplashScreen::~QSplashScreen +48 QSplashScreen::~QSplashScreen +56 QSplashScreen::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QSplashScreen::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QSplashScreen::drawContents +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI13QSplashScreen) +472 QSplashScreen::_ZThn16_N13QSplashScreenD1Ev +480 QSplashScreen::_ZThn16_N13QSplashScreenD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSplashScreen + size=40 align=8 + base size=40 base align=8 +QSplashScreen (0x7f5b91d54930) 0 + vptr=((& QSplashScreen::_ZTV13QSplashScreen) + 16u) + QWidget (0x7f5b91d22d00) 0 + primary-for QSplashScreen (0x7f5b91d54930) + QObject (0x7f5b91d549a0) 0 + primary-for QWidget (0x7f5b91d22d00) + QPaintDevice (0x7f5b91d54a10) 16 + vptr=((& QSplashScreen::_ZTV13QSplashScreen) + 472u) + +Vtable for QDateTimeEdit +QDateTimeEdit::_ZTV13QDateTimeEdit: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QDateTimeEdit) +16 QDateTimeEdit::metaObject +24 QDateTimeEdit::qt_metacast +32 QDateTimeEdit::qt_metacall +40 QDateTimeEdit::~QDateTimeEdit +48 QDateTimeEdit::~QDateTimeEdit +56 QDateTimeEdit::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QDateTimeEdit::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QDateTimeEdit::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QDateTimeEdit::wheelEvent +200 QDateTimeEdit::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QDateTimeEdit::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QDateTimeEdit::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QDateTimeEdit::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDateTimeEdit::validate +456 QDateTimeEdit::fixup +464 QDateTimeEdit::stepBy +472 QDateTimeEdit::clear +480 QDateTimeEdit::stepEnabled +488 QDateTimeEdit::dateTimeFromText +496 QDateTimeEdit::textFromDateTime +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI13QDateTimeEdit) +520 QDateTimeEdit::_ZThn16_N13QDateTimeEditD1Ev +528 QDateTimeEdit::_ZThn16_N13QDateTimeEditD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDateTimeEdit + size=40 align=8 + base size=40 base align=8 +QDateTimeEdit (0x7f5b91d90a10) 0 + vptr=((& QDateTimeEdit::_ZTV13QDateTimeEdit) + 16u) + QAbstractSpinBox (0x7f5b91d90a80) 0 + primary-for QDateTimeEdit (0x7f5b91d90a10) + QWidget (0x7f5b91d89880) 0 + primary-for QAbstractSpinBox (0x7f5b91d90a80) + QObject (0x7f5b91d90af0) 0 + primary-for QWidget (0x7f5b91d89880) + QPaintDevice (0x7f5b91d90b60) 16 + vptr=((& QDateTimeEdit::_ZTV13QDateTimeEdit) + 520u) + +Vtable for QTimeEdit +QTimeEdit::_ZTV9QTimeEdit: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTimeEdit) +16 QTimeEdit::metaObject +24 QTimeEdit::qt_metacast +32 QTimeEdit::qt_metacall +40 QTimeEdit::~QTimeEdit +48 QTimeEdit::~QTimeEdit +56 QDateTimeEdit::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QDateTimeEdit::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QDateTimeEdit::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QDateTimeEdit::wheelEvent +200 QDateTimeEdit::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QDateTimeEdit::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QDateTimeEdit::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QDateTimeEdit::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDateTimeEdit::validate +456 QDateTimeEdit::fixup +464 QDateTimeEdit::stepBy +472 QDateTimeEdit::clear +480 QDateTimeEdit::stepEnabled +488 QDateTimeEdit::dateTimeFromText +496 QDateTimeEdit::textFromDateTime +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI9QTimeEdit) +520 QTimeEdit::_ZThn16_N9QTimeEditD1Ev +528 QTimeEdit::_ZThn16_N9QTimeEditD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTimeEdit + size=40 align=8 + base size=40 base align=8 +QTimeEdit (0x7f5b91bbf930) 0 + vptr=((& QTimeEdit::_ZTV9QTimeEdit) + 16u) + QDateTimeEdit (0x7f5b91bbf9a0) 0 + primary-for QTimeEdit (0x7f5b91bbf930) + QAbstractSpinBox (0x7f5b91bbfa10) 0 + primary-for QDateTimeEdit (0x7f5b91bbf9a0) + QWidget (0x7f5b91bba700) 0 + primary-for QAbstractSpinBox (0x7f5b91bbfa10) + QObject (0x7f5b91bbfa80) 0 + primary-for QWidget (0x7f5b91bba700) + QPaintDevice (0x7f5b91bbfaf0) 16 + vptr=((& QTimeEdit::_ZTV9QTimeEdit) + 520u) + +Vtable for QDateEdit +QDateEdit::_ZTV9QDateEdit: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QDateEdit) +16 QDateEdit::metaObject +24 QDateEdit::qt_metacast +32 QDateEdit::qt_metacall +40 QDateEdit::~QDateEdit +48 QDateEdit::~QDateEdit +56 QDateTimeEdit::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QDateTimeEdit::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QDateTimeEdit::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QDateTimeEdit::wheelEvent +200 QDateTimeEdit::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QDateTimeEdit::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QDateTimeEdit::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QDateTimeEdit::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDateTimeEdit::validate +456 QDateTimeEdit::fixup +464 QDateTimeEdit::stepBy +472 QDateTimeEdit::clear +480 QDateTimeEdit::stepEnabled +488 QDateTimeEdit::dateTimeFromText +496 QDateTimeEdit::textFromDateTime +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI9QDateEdit) +520 QDateEdit::_ZThn16_N9QDateEditD1Ev +528 QDateEdit::_ZThn16_N9QDateEditD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDateEdit + size=40 align=8 + base size=40 base align=8 +QDateEdit (0x7f5b91bd1a10) 0 + vptr=((& QDateEdit::_ZTV9QDateEdit) + 16u) + QDateTimeEdit (0x7f5b91bd1a80) 0 + primary-for QDateEdit (0x7f5b91bd1a10) + QAbstractSpinBox (0x7f5b91bd1af0) 0 + primary-for QDateTimeEdit (0x7f5b91bd1a80) + QWidget (0x7f5b91bbae00) 0 + primary-for QAbstractSpinBox (0x7f5b91bd1af0) + QObject (0x7f5b91bd1b60) 0 + primary-for QWidget (0x7f5b91bbae00) + QPaintDevice (0x7f5b91bd1bd0) 16 + vptr=((& QDateEdit::_ZTV9QDateEdit) + 520u) + +Vtable for QLabel +QLabel::_ZTV6QLabel: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QLabel) +16 QLabel::metaObject +24 QLabel::qt_metacast +32 QLabel::qt_metacall +40 QLabel::~QLabel +48 QLabel::~QLabel +56 QLabel::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QLabel::sizeHint +136 QLabel::minimumSizeHint +144 QLabel::heightForWidth +152 QWidget::paintEngine +160 QLabel::mousePressEvent +168 QLabel::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QLabel::mouseMoveEvent +192 QWidget::wheelEvent +200 QLabel::keyPressEvent +208 QWidget::keyReleaseEvent +216 QLabel::focusInEvent +224 QLabel::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QLabel::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QLabel::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QLabel::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QLabel::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI6QLabel) +464 QLabel::_ZThn16_N6QLabelD1Ev +472 QLabel::_ZThn16_N6QLabelD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QLabel + size=40 align=8 + base size=40 base align=8 +QLabel (0x7f5b91c167e0) 0 + vptr=((& QLabel::_ZTV6QLabel) + 16u) + QFrame (0x7f5b91c16850) 0 + primary-for QLabel (0x7f5b91c167e0) + QWidget (0x7f5b91be6a80) 0 + primary-for QFrame (0x7f5b91c16850) + QObject (0x7f5b91c168c0) 0 + primary-for QWidget (0x7f5b91be6a80) + QPaintDevice (0x7f5b91c16930) 16 + vptr=((& QLabel::_ZTV6QLabel) + 464u) + +Vtable for QDockWidget +QDockWidget::_ZTV11QDockWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QDockWidget) +16 QDockWidget::metaObject +24 QDockWidget::qt_metacast +32 QDockWidget::qt_metacall +40 QDockWidget::~QDockWidget +48 QDockWidget::~QDockWidget +56 QDockWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QDockWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QDockWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QDockWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI11QDockWidget) +464 QDockWidget::_ZThn16_N11QDockWidgetD1Ev +472 QDockWidget::_ZThn16_N11QDockWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDockWidget + size=40 align=8 + base size=40 base align=8 +QDockWidget (0x7f5b91c62930) 0 + vptr=((& QDockWidget::_ZTV11QDockWidget) + 16u) + QWidget (0x7f5b91c5d580) 0 + primary-for QDockWidget (0x7f5b91c62930) + QObject (0x7f5b91c629a0) 0 + primary-for QWidget (0x7f5b91c5d580) + QPaintDevice (0x7f5b91c62a10) 16 + vptr=((& QDockWidget::_ZTV11QDockWidget) + 464u) + +Vtable for QGroupBox +QGroupBox::_ZTV9QGroupBox: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QGroupBox) +16 QGroupBox::metaObject +24 QGroupBox::qt_metacast +32 QGroupBox::qt_metacall +40 QGroupBox::~QGroupBox +48 QGroupBox::~QGroupBox +56 QGroupBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QGroupBox::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QGroupBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QGroupBox::mousePressEvent +168 QGroupBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QGroupBox::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QGroupBox::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QGroupBox::paintEvent +256 QWidget::moveEvent +264 QGroupBox::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QGroupBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI9QGroupBox) +464 QGroupBox::_ZThn16_N9QGroupBoxD1Ev +472 QGroupBox::_ZThn16_N9QGroupBoxD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QGroupBox + size=40 align=8 + base size=40 base align=8 +QGroupBox (0x7f5b91adc380) 0 + vptr=((& QGroupBox::_ZTV9QGroupBox) + 16u) + QWidget (0x7f5b91c84c80) 0 + primary-for QGroupBox (0x7f5b91adc380) + QObject (0x7f5b91adc3f0) 0 + primary-for QWidget (0x7f5b91c84c80) + QPaintDevice (0x7f5b91adc460) 16 + vptr=((& QGroupBox::_ZTV9QGroupBox) + 464u) + +Vtable for QDialogButtonBox +QDialogButtonBox::_ZTV16QDialogButtonBox: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QDialogButtonBox) +16 QDialogButtonBox::metaObject +24 QDialogButtonBox::qt_metacast +32 QDialogButtonBox::qt_metacall +40 QDialogButtonBox::~QDialogButtonBox +48 QDialogButtonBox::~QDialogButtonBox +56 QDialogButtonBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QDialogButtonBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI16QDialogButtonBox) +464 QDialogButtonBox::_ZThn16_N16QDialogButtonBoxD1Ev +472 QDialogButtonBox::_ZThn16_N16QDialogButtonBoxD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDialogButtonBox + size=40 align=8 + base size=40 base align=8 +QDialogButtonBox (0x7f5b91afe000) 0 + vptr=((& QDialogButtonBox::_ZTV16QDialogButtonBox) + 16u) + QWidget (0x7f5b91af4580) 0 + primary-for QDialogButtonBox (0x7f5b91afe000) + QObject (0x7f5b91afe070) 0 + primary-for QWidget (0x7f5b91af4580) + QPaintDevice (0x7f5b91afe0e0) 16 + vptr=((& QDialogButtonBox::_ZTV16QDialogButtonBox) + 464u) + +Vtable for QMainWindow +QMainWindow::_ZTV11QMainWindow: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMainWindow) +16 QMainWindow::metaObject +24 QMainWindow::qt_metacast +32 QMainWindow::qt_metacall +40 QMainWindow::~QMainWindow +48 QMainWindow::~QMainWindow +56 QMainWindow::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QMainWindow::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QMainWindow::createPopupMenu +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI11QMainWindow) +472 QMainWindow::_ZThn16_N11QMainWindowD1Ev +480 QMainWindow::_ZThn16_N11QMainWindowD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMainWindow + size=40 align=8 + base size=40 base align=8 +QMainWindow (0x7f5b91b6e4d0) 0 + vptr=((& QMainWindow::_ZTV11QMainWindow) + 16u) + QWidget (0x7f5b91b26600) 0 + primary-for QMainWindow (0x7f5b91b6e4d0) + QObject (0x7f5b91b6e540) 0 + primary-for QWidget (0x7f5b91b26600) + QPaintDevice (0x7f5b91b6e5b0) 16 + vptr=((& QMainWindow::_ZTV11QMainWindow) + 472u) + +Class QTextEdit::ExtraSelection + size=24 align=8 + base size=24 base align=8 +QTextEdit::ExtraSelection (0x7f5b919f3770) 0 + +Vtable for QTextEdit +QTextEdit::_ZTV9QTextEdit: 69u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTextEdit) +16 QTextEdit::metaObject +24 QTextEdit::qt_metacast +32 QTextEdit::qt_metacall +40 QTextEdit::~QTextEdit +48 QTextEdit::~QTextEdit +56 QTextEdit::event +64 QObject::eventFilter +72 QTextEdit::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTextEdit::mousePressEvent +168 QTextEdit::mouseReleaseEvent +176 QTextEdit::mouseDoubleClickEvent +184 QTextEdit::mouseMoveEvent +192 QTextEdit::wheelEvent +200 QTextEdit::keyPressEvent +208 QTextEdit::keyReleaseEvent +216 QTextEdit::focusInEvent +224 QTextEdit::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTextEdit::paintEvent +256 QWidget::moveEvent +264 QTextEdit::resizeEvent +272 QWidget::closeEvent +280 QTextEdit::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QTextEdit::dragEnterEvent +312 QTextEdit::dragMoveEvent +320 QTextEdit::dragLeaveEvent +328 QTextEdit::dropEvent +336 QTextEdit::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QTextEdit::changeEvent +368 QWidget::metric +376 QTextEdit::inputMethodEvent +384 QTextEdit::inputMethodQuery +392 QTextEdit::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QTextEdit::scrollContentsBy +464 QTextEdit::loadResource +472 QTextEdit::createMimeDataFromSelection +480 QTextEdit::canInsertFromMimeData +488 QTextEdit::insertFromMimeData +496 (int (*)(...))-0x00000000000000010 +504 (int (*)(...))(& _ZTI9QTextEdit) +512 QTextEdit::_ZThn16_N9QTextEditD1Ev +520 QTextEdit::_ZThn16_N9QTextEditD0Ev +528 QWidget::_ZThn16_NK7QWidget7devTypeEv +536 QWidget::_ZThn16_NK7QWidget11paintEngineEv +544 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTextEdit + size=40 align=8 + base size=40 base align=8 +QTextEdit (0x7f5b919c77e0) 0 + vptr=((& QTextEdit::_ZTV9QTextEdit) + 16u) + QAbstractScrollArea (0x7f5b919c7850) 0 + primary-for QTextEdit (0x7f5b919c77e0) + QFrame (0x7f5b919c78c0) 0 + primary-for QAbstractScrollArea (0x7f5b919c7850) + QWidget (0x7f5b9199b700) 0 + primary-for QFrame (0x7f5b919c78c0) + QObject (0x7f5b919c7930) 0 + primary-for QWidget (0x7f5b9199b700) + QPaintDevice (0x7f5b919c79a0) 16 + vptr=((& QTextEdit::_ZTV9QTextEdit) + 512u) + +Vtable for QPlainTextEdit +QPlainTextEdit::_ZTV14QPlainTextEdit: 69u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QPlainTextEdit) +16 QPlainTextEdit::metaObject +24 QPlainTextEdit::qt_metacast +32 QPlainTextEdit::qt_metacall +40 QPlainTextEdit::~QPlainTextEdit +48 QPlainTextEdit::~QPlainTextEdit +56 QPlainTextEdit::event +64 QObject::eventFilter +72 QPlainTextEdit::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QPlainTextEdit::mousePressEvent +168 QPlainTextEdit::mouseReleaseEvent +176 QPlainTextEdit::mouseDoubleClickEvent +184 QPlainTextEdit::mouseMoveEvent +192 QPlainTextEdit::wheelEvent +200 QPlainTextEdit::keyPressEvent +208 QPlainTextEdit::keyReleaseEvent +216 QPlainTextEdit::focusInEvent +224 QPlainTextEdit::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QPlainTextEdit::paintEvent +256 QWidget::moveEvent +264 QPlainTextEdit::resizeEvent +272 QWidget::closeEvent +280 QPlainTextEdit::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QPlainTextEdit::dragEnterEvent +312 QPlainTextEdit::dragMoveEvent +320 QPlainTextEdit::dragLeaveEvent +328 QPlainTextEdit::dropEvent +336 QPlainTextEdit::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QPlainTextEdit::changeEvent +368 QWidget::metric +376 QPlainTextEdit::inputMethodEvent +384 QPlainTextEdit::inputMethodQuery +392 QPlainTextEdit::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QPlainTextEdit::scrollContentsBy +464 QPlainTextEdit::loadResource +472 QPlainTextEdit::createMimeDataFromSelection +480 QPlainTextEdit::canInsertFromMimeData +488 QPlainTextEdit::insertFromMimeData +496 (int (*)(...))-0x00000000000000010 +504 (int (*)(...))(& _ZTI14QPlainTextEdit) +512 QPlainTextEdit::_ZThn16_N14QPlainTextEditD1Ev +520 QPlainTextEdit::_ZThn16_N14QPlainTextEditD0Ev +528 QWidget::_ZThn16_NK7QWidget7devTypeEv +536 QWidget::_ZThn16_NK7QWidget11paintEngineEv +544 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPlainTextEdit + size=40 align=8 + base size=40 base align=8 +QPlainTextEdit (0x7f5b91a8a930) 0 + vptr=((& QPlainTextEdit::_ZTV14QPlainTextEdit) + 16u) + QAbstractScrollArea (0x7f5b91a8a9a0) 0 + primary-for QPlainTextEdit (0x7f5b91a8a930) + QFrame (0x7f5b91a8aa10) 0 + primary-for QAbstractScrollArea (0x7f5b91a8a9a0) + QWidget (0x7f5b91a5af00) 0 + primary-for QFrame (0x7f5b91a8aa10) + QObject (0x7f5b91a8aa80) 0 + primary-for QWidget (0x7f5b91a5af00) + QPaintDevice (0x7f5b91a8aaf0) 16 + vptr=((& QPlainTextEdit::_ZTV14QPlainTextEdit) + 512u) + +Vtable for QPlainTextDocumentLayout +QPlainTextDocumentLayout::_ZTV24QPlainTextDocumentLayout: 24u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QPlainTextDocumentLayout) +16 QPlainTextDocumentLayout::metaObject +24 QPlainTextDocumentLayout::qt_metacast +32 QPlainTextDocumentLayout::qt_metacall +40 QPlainTextDocumentLayout::~QPlainTextDocumentLayout +48 QPlainTextDocumentLayout::~QPlainTextDocumentLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QPlainTextDocumentLayout::draw +120 QPlainTextDocumentLayout::hitTest +128 QPlainTextDocumentLayout::pageCount +136 QPlainTextDocumentLayout::documentSize +144 QPlainTextDocumentLayout::frameBoundingRect +152 QPlainTextDocumentLayout::blockBoundingRect +160 QPlainTextDocumentLayout::documentChanged +168 QAbstractTextDocumentLayout::resizeInlineObject +176 QAbstractTextDocumentLayout::positionInlineObject +184 QAbstractTextDocumentLayout::drawInlineObject + +Class QPlainTextDocumentLayout + size=16 align=8 + base size=16 base align=8 +QPlainTextDocumentLayout (0x7f5b918ea700) 0 + vptr=((& QPlainTextDocumentLayout::_ZTV24QPlainTextDocumentLayout) + 16u) + QAbstractTextDocumentLayout (0x7f5b918ea770) 0 + primary-for QPlainTextDocumentLayout (0x7f5b918ea700) + QObject (0x7f5b918ea7e0) 0 + primary-for QAbstractTextDocumentLayout (0x7f5b918ea770) + +Vtable for QProgressBar +QProgressBar::_ZTV12QProgressBar: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QProgressBar) +16 QProgressBar::metaObject +24 QProgressBar::qt_metacast +32 QProgressBar::qt_metacall +40 QProgressBar::~QProgressBar +48 QProgressBar::~QProgressBar +56 QProgressBar::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QProgressBar::sizeHint +136 QProgressBar::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QProgressBar::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QProgressBar::text +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI12QProgressBar) +472 QProgressBar::_ZThn16_N12QProgressBarD1Ev +480 QProgressBar::_ZThn16_N12QProgressBarD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QProgressBar + size=40 align=8 + base size=40 base align=8 +QProgressBar (0x7f5b918febd0) 0 + vptr=((& QProgressBar::_ZTV12QProgressBar) + 16u) + QWidget (0x7f5b918e9f00) 0 + primary-for QProgressBar (0x7f5b918febd0) + QObject (0x7f5b918fec40) 0 + primary-for QWidget (0x7f5b918e9f00) + QPaintDevice (0x7f5b918fecb0) 16 + vptr=((& QProgressBar::_ZTV12QProgressBar) + 472u) + +Vtable for QScrollBar +QScrollBar::_ZTV10QScrollBar: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QScrollBar) +16 QScrollBar::metaObject +24 QScrollBar::qt_metacast +32 QScrollBar::qt_metacall +40 QScrollBar::~QScrollBar +48 QScrollBar::~QScrollBar +56 QScrollBar::event +64 QObject::eventFilter +72 QAbstractSlider::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QScrollBar::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QScrollBar::mousePressEvent +168 QScrollBar::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QScrollBar::mouseMoveEvent +192 QAbstractSlider::wheelEvent +200 QAbstractSlider::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QScrollBar::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QScrollBar::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QScrollBar::hideEvent +352 QWidget::x11Event +360 QAbstractSlider::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QScrollBar::sliderChange +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI10QScrollBar) +472 QScrollBar::_ZThn16_N10QScrollBarD1Ev +480 QScrollBar::_ZThn16_N10QScrollBarD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QScrollBar + size=40 align=8 + base size=40 base align=8 +QScrollBar (0x7f5b91922a10) 0 + vptr=((& QScrollBar::_ZTV10QScrollBar) + 16u) + QAbstractSlider (0x7f5b91922a80) 0 + primary-for QScrollBar (0x7f5b91922a10) + QWidget (0x7f5b91905900) 0 + primary-for QAbstractSlider (0x7f5b91922a80) + QObject (0x7f5b91922af0) 0 + primary-for QWidget (0x7f5b91905900) + QPaintDevice (0x7f5b91922b60) 16 + vptr=((& QScrollBar::_ZTV10QScrollBar) + 472u) + +Vtable for QSizeGrip +QSizeGrip::_ZTV9QSizeGrip: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QSizeGrip) +16 QSizeGrip::metaObject +24 QSizeGrip::qt_metacast +32 QSizeGrip::qt_metacall +40 QSizeGrip::~QSizeGrip +48 QSizeGrip::~QSizeGrip +56 QSizeGrip::event +64 QSizeGrip::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QSizeGrip::setVisible +128 QSizeGrip::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QSizeGrip::mousePressEvent +168 QSizeGrip::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QSizeGrip::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QSizeGrip::paintEvent +256 QSizeGrip::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QSizeGrip::showEvent +344 QSizeGrip::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI9QSizeGrip) +464 QSizeGrip::_ZThn16_N9QSizeGripD1Ev +472 QSizeGrip::_ZThn16_N9QSizeGripD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSizeGrip + size=40 align=8 + base size=40 base align=8 +QSizeGrip (0x7f5b91943b60) 0 + vptr=((& QSizeGrip::_ZTV9QSizeGrip) + 16u) + QWidget (0x7f5b91945380) 0 + primary-for QSizeGrip (0x7f5b91943b60) + QObject (0x7f5b91943bd0) 0 + primary-for QWidget (0x7f5b91945380) + QPaintDevice (0x7f5b91943c40) 16 + vptr=((& QSizeGrip::_ZTV9QSizeGrip) + 464u) + +Vtable for QTextBrowser +QTextBrowser::_ZTV12QTextBrowser: 74u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextBrowser) +16 QTextBrowser::metaObject +24 QTextBrowser::qt_metacast +32 QTextBrowser::qt_metacall +40 QTextBrowser::~QTextBrowser +48 QTextBrowser::~QTextBrowser +56 QTextBrowser::event +64 QObject::eventFilter +72 QTextEdit::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTextBrowser::mousePressEvent +168 QTextBrowser::mouseReleaseEvent +176 QTextEdit::mouseDoubleClickEvent +184 QTextBrowser::mouseMoveEvent +192 QTextEdit::wheelEvent +200 QTextBrowser::keyPressEvent +208 QTextEdit::keyReleaseEvent +216 QTextEdit::focusInEvent +224 QTextBrowser::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTextBrowser::paintEvent +256 QWidget::moveEvent +264 QTextEdit::resizeEvent +272 QWidget::closeEvent +280 QTextEdit::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QTextEdit::dragEnterEvent +312 QTextEdit::dragMoveEvent +320 QTextEdit::dragLeaveEvent +328 QTextEdit::dropEvent +336 QTextEdit::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QTextEdit::changeEvent +368 QWidget::metric +376 QTextEdit::inputMethodEvent +384 QTextEdit::inputMethodQuery +392 QTextBrowser::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QTextEdit::scrollContentsBy +464 QTextBrowser::loadResource +472 QTextEdit::createMimeDataFromSelection +480 QTextEdit::canInsertFromMimeData +488 QTextEdit::insertFromMimeData +496 QTextBrowser::setSource +504 QTextBrowser::backward +512 QTextBrowser::forward +520 QTextBrowser::home +528 QTextBrowser::reload +536 (int (*)(...))-0x00000000000000010 +544 (int (*)(...))(& _ZTI12QTextBrowser) +552 QTextBrowser::_ZThn16_N12QTextBrowserD1Ev +560 QTextBrowser::_ZThn16_N12QTextBrowserD0Ev +568 QWidget::_ZThn16_NK7QWidget7devTypeEv +576 QWidget::_ZThn16_NK7QWidget11paintEngineEv +584 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTextBrowser + size=40 align=8 + base size=40 base align=8 +QTextBrowser (0x7f5b9195f690) 0 + vptr=((& QTextBrowser::_ZTV12QTextBrowser) + 16u) + QTextEdit (0x7f5b9195f700) 0 + primary-for QTextBrowser (0x7f5b9195f690) + QAbstractScrollArea (0x7f5b9195f770) 0 + primary-for QTextEdit (0x7f5b9195f700) + QFrame (0x7f5b9195f7e0) 0 + primary-for QAbstractScrollArea (0x7f5b9195f770) + QWidget (0x7f5b91945c80) 0 + primary-for QFrame (0x7f5b9195f7e0) + QObject (0x7f5b9195f850) 0 + primary-for QWidget (0x7f5b91945c80) + QPaintDevice (0x7f5b9195f8c0) 16 + vptr=((& QTextBrowser::_ZTV12QTextBrowser) + 552u) + +Vtable for QStatusBar +QStatusBar::_ZTV10QStatusBar: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QStatusBar) +16 QStatusBar::metaObject +24 QStatusBar::qt_metacast +32 QStatusBar::qt_metacall +40 QStatusBar::~QStatusBar +48 QStatusBar::~QStatusBar +56 QStatusBar::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QStatusBar::paintEvent +256 QWidget::moveEvent +264 QStatusBar::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QStatusBar::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI10QStatusBar) +464 QStatusBar::_ZThn16_N10QStatusBarD1Ev +472 QStatusBar::_ZThn16_N10QStatusBarD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QStatusBar + size=40 align=8 + base size=40 base align=8 +QStatusBar (0x7f5b919862a0) 0 + vptr=((& QStatusBar::_ZTV10QStatusBar) + 16u) + QWidget (0x7f5b9197e580) 0 + primary-for QStatusBar (0x7f5b919862a0) + QObject (0x7f5b91986310) 0 + primary-for QWidget (0x7f5b9197e580) + QPaintDevice (0x7f5b91986380) 16 + vptr=((& QStatusBar::_ZTV10QStatusBar) + 464u) + +Vtable for QToolButton +QToolButton::_ZTV11QToolButton: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QToolButton) +16 QToolButton::metaObject +24 QToolButton::qt_metacast +32 QToolButton::qt_metacall +40 QToolButton::~QToolButton +48 QToolButton::~QToolButton +56 QToolButton::event +64 QObject::eventFilter +72 QToolButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QToolButton::sizeHint +136 QToolButton::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QToolButton::mousePressEvent +168 QToolButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QAbstractButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QAbstractButton::focusInEvent +224 QAbstractButton::focusOutEvent +232 QToolButton::enterEvent +240 QToolButton::leaveEvent +248 QToolButton::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QToolButton::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QToolButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QToolButton::hitButton +456 QAbstractButton::checkStateSet +464 QToolButton::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11QToolButton) +488 QToolButton::_ZThn16_N11QToolButtonD1Ev +496 QToolButton::_ZThn16_N11QToolButtonD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QToolButton + size=40 align=8 + base size=40 base align=8 +QToolButton (0x7f5b917a67e0) 0 + vptr=((& QToolButton::_ZTV11QToolButton) + 16u) + QAbstractButton (0x7f5b917a6850) 0 + primary-for QToolButton (0x7f5b917a67e0) + QWidget (0x7f5b917a4480) 0 + primary-for QAbstractButton (0x7f5b917a6850) + QObject (0x7f5b917a68c0) 0 + primary-for QWidget (0x7f5b917a4480) + QPaintDevice (0x7f5b917a6930) 16 + vptr=((& QToolButton::_ZTV11QToolButton) + 488u) + +Vtable for QComboBox +QComboBox::_ZTV9QComboBox: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QComboBox) +16 QComboBox::metaObject +24 QComboBox::qt_metacast +32 QComboBox::qt_metacall +40 QComboBox::~QComboBox +48 QComboBox::~QComboBox +56 QComboBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QComboBox::sizeHint +136 QComboBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QComboBox::mousePressEvent +168 QComboBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QComboBox::wheelEvent +200 QComboBox::keyPressEvent +208 QComboBox::keyReleaseEvent +216 QComboBox::focusInEvent +224 QComboBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QComboBox::paintEvent +256 QWidget::moveEvent +264 QComboBox::resizeEvent +272 QWidget::closeEvent +280 QComboBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QComboBox::showEvent +344 QComboBox::hideEvent +352 QWidget::x11Event +360 QComboBox::changeEvent +368 QWidget::metric +376 QComboBox::inputMethodEvent +384 QComboBox::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QComboBox::showPopup +456 QComboBox::hidePopup +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI9QComboBox) +480 QComboBox::_ZThn16_N9QComboBoxD1Ev +488 QComboBox::_ZThn16_N9QComboBoxD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QComboBox + size=40 align=8 + base size=40 base align=8 +QComboBox (0x7f5b917e6af0) 0 + vptr=((& QComboBox::_ZTV9QComboBox) + 16u) + QWidget (0x7f5b917ed080) 0 + primary-for QComboBox (0x7f5b917e6af0) + QObject (0x7f5b917e6b60) 0 + primary-for QWidget (0x7f5b917ed080) + QPaintDevice (0x7f5b917e6bd0) 16 + vptr=((& QComboBox::_ZTV9QComboBox) + 480u) + +Vtable for QCommandLinkButton +QCommandLinkButton::_ZTV18QCommandLinkButton: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QCommandLinkButton) +16 QCommandLinkButton::metaObject +24 QCommandLinkButton::qt_metacast +32 QCommandLinkButton::qt_metacall +40 QCommandLinkButton::~QCommandLinkButton +48 QCommandLinkButton::~QCommandLinkButton +56 QCommandLinkButton::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QCommandLinkButton::sizeHint +136 QCommandLinkButton::minimumSizeHint +144 QCommandLinkButton::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QPushButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QPushButton::focusInEvent +224 QPushButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QCommandLinkButton::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractButton::hitButton +456 QAbstractButton::checkStateSet +464 QAbstractButton::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI18QCommandLinkButton) +488 QCommandLinkButton::_ZThn16_N18QCommandLinkButtonD1Ev +496 QCommandLinkButton::_ZThn16_N18QCommandLinkButtonD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QCommandLinkButton + size=40 align=8 + base size=40 base align=8 +QCommandLinkButton (0x7f5b91856620) 0 + vptr=((& QCommandLinkButton::_ZTV18QCommandLinkButton) + 16u) + QPushButton (0x7f5b91856690) 0 + primary-for QCommandLinkButton (0x7f5b91856620) + QAbstractButton (0x7f5b91856700) 0 + primary-for QPushButton (0x7f5b91856690) + QWidget (0x7f5b91850c80) 0 + primary-for QAbstractButton (0x7f5b91856700) + QObject (0x7f5b91856770) 0 + primary-for QWidget (0x7f5b91850c80) + QPaintDevice (0x7f5b918567e0) 16 + vptr=((& QCommandLinkButton::_ZTV18QCommandLinkButton) + 488u) + +Vtable for QMenuItem +QMenuItem::_ZTV9QMenuItem: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QMenuItem) +16 QMenuItem::metaObject +24 QMenuItem::qt_metacast +32 QMenuItem::qt_metacall +40 QMenuItem::~QMenuItem +48 QMenuItem::~QMenuItem +56 QAction::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QMenuItem + size=16 align=8 + base size=16 base align=8 +QMenuItem (0x7f5b918751c0) 0 + vptr=((& QMenuItem::_ZTV9QMenuItem) + 16u) + QAction (0x7f5b91875230) 0 + primary-for QMenuItem (0x7f5b918751c0) + QObject (0x7f5b918752a0) 0 + primary-for QAction (0x7f5b91875230) + +Vtable for QCalendarWidget +QCalendarWidget::_ZTV15QCalendarWidget: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QCalendarWidget) +16 QCalendarWidget::metaObject +24 QCalendarWidget::qt_metacast +32 QCalendarWidget::qt_metacall +40 QCalendarWidget::~QCalendarWidget +48 QCalendarWidget::~QCalendarWidget +56 QCalendarWidget::event +64 QCalendarWidget::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QCalendarWidget::sizeHint +136 QCalendarWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QCalendarWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QCalendarWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QCalendarWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QCalendarWidget::paintCell +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI15QCalendarWidget) +472 QCalendarWidget::_ZThn16_N15QCalendarWidgetD1Ev +480 QCalendarWidget::_ZThn16_N15QCalendarWidgetD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QCalendarWidget + size=40 align=8 + base size=40 base align=8 +QCalendarWidget (0x7f5b91886000) 0 + vptr=((& QCalendarWidget::_ZTV15QCalendarWidget) + 16u) + QWidget (0x7f5b9186dc00) 0 + primary-for QCalendarWidget (0x7f5b91886000) + QObject (0x7f5b91886070) 0 + primary-for QWidget (0x7f5b9186dc00) + QPaintDevice (0x7f5b918860e0) 16 + vptr=((& QCalendarWidget::_ZTV15QCalendarWidget) + 472u) + +Vtable for QRadioButton +QRadioButton::_ZTV12QRadioButton: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QRadioButton) +16 QRadioButton::metaObject +24 QRadioButton::qt_metacast +32 QRadioButton::qt_metacall +40 QRadioButton::~QRadioButton +48 QRadioButton::~QRadioButton +56 QRadioButton::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QRadioButton::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QRadioButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QAbstractButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QAbstractButton::focusInEvent +224 QAbstractButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QRadioButton::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QRadioButton::hitButton +456 QAbstractButton::checkStateSet +464 QAbstractButton::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI12QRadioButton) +488 QRadioButton::_ZThn16_N12QRadioButtonD1Ev +496 QRadioButton::_ZThn16_N12QRadioButtonD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QRadioButton + size=40 align=8 + base size=40 base align=8 +QRadioButton (0x7f5b916af150) 0 + vptr=((& QRadioButton::_ZTV12QRadioButton) + 16u) + QAbstractButton (0x7f5b916af1c0) 0 + primary-for QRadioButton (0x7f5b916af150) + QWidget (0x7f5b9188bb00) 0 + primary-for QAbstractButton (0x7f5b916af1c0) + QObject (0x7f5b916af230) 0 + primary-for QWidget (0x7f5b9188bb00) + QPaintDevice (0x7f5b916af2a0) 16 + vptr=((& QRadioButton::_ZTV12QRadioButton) + 488u) + +Vtable for QMenuBar +QMenuBar::_ZTV8QMenuBar: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QMenuBar) +16 QMenuBar::metaObject +24 QMenuBar::qt_metacast +32 QMenuBar::qt_metacall +40 QMenuBar::~QMenuBar +48 QMenuBar::~QMenuBar +56 QMenuBar::event +64 QMenuBar::eventFilter +72 QMenuBar::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QMenuBar::setVisible +128 QMenuBar::sizeHint +136 QMenuBar::minimumSizeHint +144 QMenuBar::heightForWidth +152 QWidget::paintEngine +160 QMenuBar::mousePressEvent +168 QMenuBar::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QMenuBar::mouseMoveEvent +192 QWidget::wheelEvent +200 QMenuBar::keyPressEvent +208 QWidget::keyReleaseEvent +216 QMenuBar::focusInEvent +224 QMenuBar::focusOutEvent +232 QWidget::enterEvent +240 QMenuBar::leaveEvent +248 QMenuBar::paintEvent +256 QWidget::moveEvent +264 QMenuBar::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QMenuBar::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QMenuBar::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI8QMenuBar) +464 QMenuBar::_ZThn16_N8QMenuBarD1Ev +472 QMenuBar::_ZThn16_N8QMenuBarD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMenuBar + size=40 align=8 + base size=40 base align=8 +QMenuBar (0x7f5b916c5d90) 0 + vptr=((& QMenuBar::_ZTV8QMenuBar) + 16u) + QWidget (0x7f5b916c9400) 0 + primary-for QMenuBar (0x7f5b916c5d90) + QObject (0x7f5b916c5e00) 0 + primary-for QWidget (0x7f5b916c9400) + QPaintDevice (0x7f5b916c5e70) 16 + vptr=((& QMenuBar::_ZTV8QMenuBar) + 464u) + +Vtable for QFocusFrame +QFocusFrame::_ZTV11QFocusFrame: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFocusFrame) +16 QFocusFrame::metaObject +24 QFocusFrame::qt_metacast +32 QFocusFrame::qt_metacall +40 QFocusFrame::~QFocusFrame +48 QFocusFrame::~QFocusFrame +56 QFocusFrame::event +64 QFocusFrame::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFocusFrame::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI11QFocusFrame) +464 QFocusFrame::_ZThn16_N11QFocusFrameD1Ev +472 QFocusFrame::_ZThn16_N11QFocusFrameD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFocusFrame + size=40 align=8 + base size=40 base align=8 +QFocusFrame (0x7f5b91764cb0) 0 + vptr=((& QFocusFrame::_ZTV11QFocusFrame) + 16u) + QWidget (0x7f5b91761e00) 0 + primary-for QFocusFrame (0x7f5b91764cb0) + QObject (0x7f5b91764d20) 0 + primary-for QWidget (0x7f5b91761e00) + QPaintDevice (0x7f5b91764d90) 16 + vptr=((& QFocusFrame::_ZTV11QFocusFrame) + 464u) + +Vtable for QFontComboBox +QFontComboBox::_ZTV13QFontComboBox: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QFontComboBox) +16 QFontComboBox::metaObject +24 QFontComboBox::qt_metacast +32 QFontComboBox::qt_metacall +40 QFontComboBox::~QFontComboBox +48 QFontComboBox::~QFontComboBox +56 QFontComboBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QFontComboBox::sizeHint +136 QComboBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QComboBox::mousePressEvent +168 QComboBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QComboBox::wheelEvent +200 QComboBox::keyPressEvent +208 QComboBox::keyReleaseEvent +216 QComboBox::focusInEvent +224 QComboBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QComboBox::paintEvent +256 QWidget::moveEvent +264 QComboBox::resizeEvent +272 QWidget::closeEvent +280 QComboBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QComboBox::showEvent +344 QComboBox::hideEvent +352 QWidget::x11Event +360 QComboBox::changeEvent +368 QWidget::metric +376 QComboBox::inputMethodEvent +384 QComboBox::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QComboBox::showPopup +456 QComboBox::hidePopup +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI13QFontComboBox) +480 QFontComboBox::_ZThn16_N13QFontComboBoxD1Ev +488 QFontComboBox::_ZThn16_N13QFontComboBoxD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFontComboBox + size=40 align=8 + base size=40 base align=8 +QFontComboBox (0x7f5b9177e850) 0 + vptr=((& QFontComboBox::_ZTV13QFontComboBox) + 16u) + QComboBox (0x7f5b9177e8c0) 0 + primary-for QFontComboBox (0x7f5b9177e850) + QWidget (0x7f5b91778700) 0 + primary-for QComboBox (0x7f5b9177e8c0) + QObject (0x7f5b9177e930) 0 + primary-for QWidget (0x7f5b91778700) + QPaintDevice (0x7f5b9177e9a0) 16 + vptr=((& QFontComboBox::_ZTV13QFontComboBox) + 480u) + +Vtable for QToolBar +QToolBar::_ZTV8QToolBar: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QToolBar) +16 QToolBar::metaObject +24 QToolBar::qt_metacast +32 QToolBar::qt_metacall +40 QToolBar::~QToolBar +48 QToolBar::~QToolBar +56 QToolBar::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QToolBar::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QToolBar::paintEvent +256 QWidget::moveEvent +264 QToolBar::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QToolBar::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QToolBar::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI8QToolBar) +464 QToolBar::_ZThn16_N8QToolBarD1Ev +472 QToolBar::_ZThn16_N8QToolBarD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QToolBar + size=40 align=8 + base size=40 base align=8 +QToolBar (0x7f5b915e9540) 0 + vptr=((& QToolBar::_ZTV8QToolBar) + 16u) + QWidget (0x7f5b91598800) 0 + primary-for QToolBar (0x7f5b915e9540) + QObject (0x7f5b915e95b0) 0 + primary-for QWidget (0x7f5b91598800) + QPaintDevice (0x7f5b915e9620) 16 + vptr=((& QToolBar::_ZTV8QToolBar) + 464u) + +Vtable for QToolBox +QToolBox::_ZTV8QToolBox: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QToolBox) +16 QToolBox::metaObject +24 QToolBox::qt_metacast +32 QToolBox::qt_metacall +40 QToolBox::~QToolBox +48 QToolBox::~QToolBox +56 QToolBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QFrame::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFrame::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QToolBox::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QToolBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QToolBox::itemInserted +456 QToolBox::itemRemoved +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI8QToolBox) +480 QToolBox::_ZThn16_N8QToolBoxD1Ev +488 QToolBox::_ZThn16_N8QToolBoxD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QToolBox + size=40 align=8 + base size=40 base align=8 +QToolBox (0x7f5b91621380) 0 + vptr=((& QToolBox::_ZTV8QToolBox) + 16u) + QFrame (0x7f5b916213f0) 0 + primary-for QToolBox (0x7f5b91621380) + QWidget (0x7f5b9161c800) 0 + primary-for QFrame (0x7f5b916213f0) + QObject (0x7f5b91621460) 0 + primary-for QWidget (0x7f5b9161c800) + QPaintDevice (0x7f5b916214d0) 16 + vptr=((& QToolBox::_ZTV8QToolBox) + 480u) + +Vtable for QSplitter +QSplitter::_ZTV9QSplitter: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QSplitter) +16 QSplitter::metaObject +24 QSplitter::qt_metacast +32 QSplitter::qt_metacall +40 QSplitter::~QSplitter +48 QSplitter::~QSplitter +56 QSplitter::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QSplitter::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QSplitter::sizeHint +136 QSplitter::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFrame::paintEvent +256 QWidget::moveEvent +264 QSplitter::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QSplitter::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QSplitter::createHandle +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI9QSplitter) +472 QSplitter::_ZThn16_N9QSplitterD1Ev +480 QSplitter::_ZThn16_N9QSplitterD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSplitter + size=40 align=8 + base size=40 base align=8 +QSplitter (0x7f5b91657000) 0 + vptr=((& QSplitter::_ZTV9QSplitter) + 16u) + QFrame (0x7f5b91657070) 0 + primary-for QSplitter (0x7f5b91657000) + QWidget (0x7f5b91653480) 0 + primary-for QFrame (0x7f5b91657070) + QObject (0x7f5b916570e0) 0 + primary-for QWidget (0x7f5b91653480) + QPaintDevice (0x7f5b91657150) 16 + vptr=((& QSplitter::_ZTV9QSplitter) + 472u) + +Vtable for QSplitterHandle +QSplitterHandle::_ZTV15QSplitterHandle: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSplitterHandle) +16 QSplitterHandle::metaObject +24 QSplitterHandle::qt_metacast +32 QSplitterHandle::qt_metacall +40 QSplitterHandle::~QSplitterHandle +48 QSplitterHandle::~QSplitterHandle +56 QSplitterHandle::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QSplitterHandle::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QSplitterHandle::mousePressEvent +168 QSplitterHandle::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QSplitterHandle::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QSplitterHandle::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI15QSplitterHandle) +464 QSplitterHandle::_ZThn16_N15QSplitterHandleD1Ev +472 QSplitterHandle::_ZThn16_N15QSplitterHandleD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSplitterHandle + size=40 align=8 + base size=40 base align=8 +QSplitterHandle (0x7f5b916870e0) 0 + vptr=((& QSplitterHandle::_ZTV15QSplitterHandle) + 16u) + QWidget (0x7f5b91681580) 0 + primary-for QSplitterHandle (0x7f5b916870e0) + QObject (0x7f5b91687150) 0 + primary-for QWidget (0x7f5b91681580) + QPaintDevice (0x7f5b916871c0) 16 + vptr=((& QSplitterHandle::_ZTV15QSplitterHandle) + 464u) + +Vtable for QDial +QDial::_ZTV5QDial: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QDial) +16 QDial::metaObject +24 QDial::qt_metacast +32 QDial::qt_metacall +40 QDial::~QDial +48 QDial::~QDial +56 QDial::event +64 QObject::eventFilter +72 QAbstractSlider::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QDial::sizeHint +136 QDial::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QDial::mousePressEvent +168 QDial::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QDial::mouseMoveEvent +192 QAbstractSlider::wheelEvent +200 QAbstractSlider::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QDial::paintEvent +256 QWidget::moveEvent +264 QDial::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractSlider::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDial::sliderChange +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI5QDial) +472 QDial::_ZThn16_N5QDialD1Ev +480 QDial::_ZThn16_N5QDialD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDial + size=40 align=8 + base size=40 base align=8 +QDial (0x7f5b9149e8c0) 0 + vptr=((& QDial::_ZTV5QDial) + 16u) + QAbstractSlider (0x7f5b9149e930) 0 + primary-for QDial (0x7f5b9149e8c0) + QWidget (0x7f5b91681e80) 0 + primary-for QAbstractSlider (0x7f5b9149e930) + QObject (0x7f5b9149e9a0) 0 + primary-for QWidget (0x7f5b91681e80) + QPaintDevice (0x7f5b9149ea10) 16 + vptr=((& QDial::_ZTV5QDial) + 472u) + +Class QGLColormap::QGLColormapData + size=24 align=8 + base size=24 base align=8 +QGLColormap::QGLColormapData (0x7f5b914bfa80) 0 + +Class QGLColormap + size=8 align=8 + base size=8 base align=8 +QGLColormap (0x7f5b914bf540) 0 + +Class QGLFormat + size=8 align=8 + base size=8 base align=8 +QGLFormat (0x7f5b91116310) 0 + +Vtable for QGLContext +QGLContext::_ZTV10QGLContext: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QGLContext) +16 QGLContext::~QGLContext +24 QGLContext::~QGLContext +32 QGLContext::create +40 QGLContext::makeCurrent +48 QGLContext::doneCurrent +56 QGLContext::swapBuffers +64 QGLContext::chooseContext +72 QGLContext::tryVisual +80 QGLContext::chooseVisual + +Class QGLContext + size=16 align=8 + base size=16 base align=8 +QGLContext (0x7f5b9117b1c0) 0 + vptr=((& QGLContext::_ZTV10QGLContext) + 16u) + +Vtable for QGLWidget +QGLWidget::_ZTV9QGLWidget: 73u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QGLWidget) +16 QGLWidget::metaObject +24 QGLWidget::qt_metacast +32 QGLWidget::qt_metacall +40 QGLWidget::~QGLWidget +48 QGLWidget::~QGLWidget +56 QGLWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QGLWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QGLWidget::paintEvent +256 QWidget::moveEvent +264 QGLWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QGLWidget::updateGL +456 QGLWidget::updateOverlayGL +464 QGLWidget::initializeGL +472 QGLWidget::resizeGL +480 QGLWidget::paintGL +488 QGLWidget::initializeOverlayGL +496 QGLWidget::resizeOverlayGL +504 QGLWidget::paintOverlayGL +512 QGLWidget::glInit +520 QGLWidget::glDraw +528 (int (*)(...))-0x00000000000000010 +536 (int (*)(...))(& _ZTI9QGLWidget) +544 QGLWidget::_ZThn16_N9QGLWidgetD1Ev +552 QGLWidget::_ZThn16_N9QGLWidgetD0Ev +560 QWidget::_ZThn16_NK7QWidget7devTypeEv +568 QGLWidget::_ZThn16_NK9QGLWidget11paintEngineEv +576 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QGLWidget + size=40 align=8 + base size=40 base align=8 +QGLWidget (0x7f5b90f92150) 0 + vptr=((& QGLWidget::_ZTV9QGLWidget) + 16u) + QWidget (0x7f5b9118c280) 0 + primary-for QGLWidget (0x7f5b90f92150) + QObject (0x7f5b90f921c0) 0 + primary-for QWidget (0x7f5b9118c280) + QPaintDevice (0x7f5b90f92230) 16 + vptr=((& QGLWidget::_ZTV9QGLWidget) + 544u) + +Vtable for QGLFramebufferObject +QGLFramebufferObject::_ZTV20QGLFramebufferObject: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QGLFramebufferObject) +16 QGLFramebufferObject::~QGLFramebufferObject +24 QGLFramebufferObject::~QGLFramebufferObject +32 QGLFramebufferObject::devType +40 QGLFramebufferObject::paintEngine +48 QGLFramebufferObject::metric + +Class QGLFramebufferObject + size=24 align=8 + base size=24 base align=8 +QGLFramebufferObject (0x7f5b90fcbbd0) 0 + vptr=((& QGLFramebufferObject::_ZTV20QGLFramebufferObject) + 16u) + QPaintDevice (0x7f5b90fcbc40) 0 + primary-for QGLFramebufferObject (0x7f5b90fcbbd0) + +Vtable for QGLPixelBuffer +QGLPixelBuffer::_ZTV14QGLPixelBuffer: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QGLPixelBuffer) +16 QGLPixelBuffer::~QGLPixelBuffer +24 QGLPixelBuffer::~QGLPixelBuffer +32 QGLPixelBuffer::devType +40 QGLPixelBuffer::paintEngine +48 QGLPixelBuffer::metric + +Class QGLPixelBuffer + size=24 align=8 + base size=24 base align=8 +QGLPixelBuffer (0x7f5b90fdad20) 0 + vptr=((& QGLPixelBuffer::_ZTV14QGLPixelBuffer) + 16u) + QPaintDevice (0x7f5b90fdad90) 0 + primary-for QGLPixelBuffer (0x7f5b90fdad20) + diff --git a/tests/auto/bic/data/QtOpenGL.4.6.0.linux-gcc-amd64.txt b/tests/auto/bic/data/QtOpenGL.4.6.0.linux-gcc-amd64.txt new file mode 100644 index 0000000..e771119 --- /dev/null +++ b/tests/auto/bic/data/QtOpenGL.4.6.0.linux-gcc-amd64.txt @@ -0,0 +1,16928 @@ +Class QSysInfo + size=1 align=1 + base size=0 base align=1 +QSysInfo (0x7f2f401fe230) 0 empty + +Class QBool + size=1 align=1 + base size=1 base align=1 +QBool (0x7f2f401fee70) 0 + +Class qIsNull(double)::U + size=8 align=8 + base size=8 base align=8 +qIsNull(double)::U (0x7f2f40229540) 0 + +Class qIsNull(float)::U + size=4 align=4 + base size=4 base align=4 +qIsNull(float)::U (0x7f2f402297e0) 0 + +Class QFlag + size=4 align=4 + base size=4 base align=4 +QFlag (0x7f2f40265690) 0 + +Class QIncompatibleFlag + size=4 align=4 + base size=4 base align=4 +QIncompatibleFlag (0x7f2f40265e70) 0 + +Class QLatin1Char + size=1 align=1 + base size=1 base align=1 +QLatin1Char (0x7f2f402935b0) 0 + +Class QChar + size=2 align=2 + base size=2 base align=2 +QChar (0x7f2f402b9150) 0 + +Class QBasicAtomicInt + size=4 align=4 + base size=4 base align=4 +QBasicAtomicInt (0x7f2f40124310) 0 + +Class QAtomicInt + size=4 align=4 + base size=4 base align=4 +QAtomicInt (0x7f2f4015fcb0) 0 + QBasicAtomicInt (0x7f2f4015fd20) 0 + +Class QInternal + size=1 align=1 + base size=0 base align=1 +QInternal (0x7f2f3ffb84d0) 0 empty + +Class __locale_struct + size=232 align=8 + base size=232 base align=8 +__locale_struct (0x7f2f3ffb8700) 0 + +Class QByteArray::Data + size=32 align=8 + base size=32 base align=8 +QByteArray::Data (0x7f2f3fdf4af0) 0 + +Class QByteArray + size=8 align=8 + base size=8 base align=8 +QByteArray (0x7f2f3fdf4a80) 0 + +Class QByteRef + size=16 align=8 + base size=12 base align=8 +QByteRef (0x7f2f3fe96380) 0 + +Class QString::Null + size=1 align=1 + base size=0 base align=1 +QString::Null (0x7f2f3fd96d20) 0 empty + +Class QString::Data + size=32 align=8 + base size=32 base align=8 +QString::Data (0x7f2f3fdaf5b0) 0 + +Class QString + size=8 align=8 + base size=8 base align=8 +QString (0x7f2f3fd11bd0) 0 + +Class QLatin1String + size=8 align=8 + base size=8 base align=8 +QLatin1String (0x7f2f3fc879a0) 0 + +Class QCharRef + size=16 align=8 + base size=12 base align=8 +QCharRef (0x7f2f3fb24000) 0 + +Class QConstString + size=8 align=8 + base size=8 base align=8 +QConstString (0x7f2f3fa6c8c0) 0 + QString (0x7f2f3fa6c930) 0 + +Class QStringRef + size=16 align=8 + base size=16 base align=8 +QStringRef (0x7f2f3fa92310) 0 + +Class QGenericArgument + size=16 align=8 + base size=16 base align=8 +QGenericArgument (0x7f2f3f90c700) 0 + +Class QGenericReturnArgument + size=16 align=8 + base size=16 base align=8 +QGenericReturnArgument (0x7f2f3f9172a0) 0 + QGenericArgument (0x7f2f3f917310) 0 + +Class QMetaObject + size=32 align=8 + base size=32 base align=8 +QMetaObject (0x7f2f3f917b60) 0 + +Class QMetaObjectExtraData + size=16 align=8 + base size=16 base align=8 +QMetaObjectExtraData (0x7f2f3f93fbd0) 0 + +Vtable for std::exception +std::exception::_ZTVSt9exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9exception) +16 std::exception::~exception +24 std::exception::~exception +32 std::exception::what + +Class std::exception + size=8 align=8 + base size=8 base align=8 +std::exception (0x7f2f3f9921c0) 0 nearly-empty + vptr=((& std::exception::_ZTVSt9exception) + 16u) + +Vtable for std::bad_exception +std::bad_exception::_ZTVSt13bad_exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13bad_exception) +16 std::bad_exception::~bad_exception +24 std::bad_exception::~bad_exception +32 std::bad_exception::what + +Class std::bad_exception + size=8 align=8 + base size=8 base align=8 +std::bad_exception (0x7f2f3f992770) 0 nearly-empty + vptr=((& std::bad_exception::_ZTVSt13bad_exception) + 16u) + std::exception (0x7f2f3f9927e0) 0 nearly-empty + primary-for std::bad_exception (0x7f2f3f992770) + +Vtable for std::bad_alloc +std::bad_alloc::_ZTVSt9bad_alloc: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9bad_alloc) +16 std::bad_alloc::~bad_alloc +24 std::bad_alloc::~bad_alloc +32 std::bad_alloc::what + +Class std::bad_alloc + size=8 align=8 + base size=8 base align=8 +std::bad_alloc (0x7f2f3f992930) 0 nearly-empty + vptr=((& std::bad_alloc::_ZTVSt9bad_alloc) + 16u) + std::exception (0x7f2f3f9a8000) 0 nearly-empty + primary-for std::bad_alloc (0x7f2f3f992930) + +Class std::nothrow_t + size=1 align=1 + base size=0 base align=1 +std::nothrow_t (0x7f2f3f9a8850) 0 empty + +Class QListData::Data + size=32 align=8 + base size=32 base align=8 +QListData::Data (0x7f2f3f9a8d90) 0 + +Class QListData + size=8 align=8 + base size=8 base align=8 +QListData (0x7f2f3f9a8d20) 0 + +Class QScopedPointerPodDeleter + size=1 align=1 + base size=0 base align=1 +QScopedPointerPodDeleter (0x7f2f3f6d4850) 0 empty + +Vtable for QObjectData +QObjectData::_ZTV11QObjectData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QObjectData) +16 __cxa_pure_virtual +24 __cxa_pure_virtual + +Class QObjectData + size=48 align=8 + base size=48 base align=8 +QObjectData (0x7f2f3f6f22a0) 0 + vptr=((& QObjectData::_ZTV11QObjectData) + 16u) + +Vtable for QObject +QObject::_ZTV7QObject: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QObject) +16 QObject::metaObject +24 QObject::qt_metacast +32 QObject::qt_metacall +40 QObject::~QObject +48 QObject::~QObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObject + size=16 align=8 + base size=16 base align=8 +QObject (0x7f2f3f6f25b0) 0 + vptr=((& QObject::_ZTV7QObject) + 16u) + +Vtable for QObjectUserData +QObjectUserData::_ZTV15QObjectUserData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QObjectUserData) +16 QObjectUserData::~QObjectUserData +24 QObjectUserData::~QObjectUserData + +Class QObjectUserData + size=8 align=8 + base size=8 base align=8 +QObjectUserData (0x7f2f3f777b60) 0 nearly-empty + vptr=((& QObjectUserData::_ZTV15QObjectUserData) + 16u) + +Vtable for QIODevice +QIODevice::_ZTV9QIODevice: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QIODevice) +16 QIODevice::metaObject +24 QIODevice::qt_metacast +32 QIODevice::qt_metacall +40 QIODevice::~QIODevice +48 QIODevice::~QIODevice +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QIODevice::isSequential +120 QIODevice::open +128 QIODevice::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QIODevice::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 __cxa_pure_virtual +224 QIODevice::readLineData +232 __cxa_pure_virtual + +Class QIODevice + size=16 align=8 + base size=16 base align=8 +QIODevice (0x7f2f3f788150) 0 + vptr=((& QIODevice::_ZTV9QIODevice) + 16u) + QObject (0x7f2f3f7881c0) 0 + primary-for QIODevice (0x7f2f3f788150) + +Class _IO_marker + size=24 align=8 + base size=24 base align=8 +_IO_marker (0x7f2f3f5e6cb0) 0 + +Class _IO_FILE + size=216 align=8 + base size=216 base align=8 +_IO_FILE (0x7f2f3f5e6d20) 0 + +Vtable for QFile +QFile::_ZTV5QFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QFile) +16 QFile::metaObject +24 QFile::qt_metacast +32 QFile::qt_metacall +40 QFile::~QFile +48 QFile::~QFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QFile::fileEngine + +Class QFile + size=16 align=8 + base size=16 base align=8 +QFile (0x7f2f3f5e6e00) 0 + vptr=((& QFile::_ZTV5QFile) + 16u) + QIODevice (0x7f2f3f5e6e70) 0 + primary-for QFile (0x7f2f3f5e6e00) + QObject (0x7f2f3f5e6ee0) 0 + primary-for QIODevice (0x7f2f3f5e6e70) + +Class QFileInfo + size=8 align=8 + base size=8 base align=8 +QFileInfo (0x7f2f3f68f070) 0 + +Vtable for QDataStream +QDataStream::_ZTV11QDataStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QDataStream) +16 QDataStream::~QDataStream +24 QDataStream::~QDataStream + +Class QDataStream + size=40 align=8 + base size=40 base align=8 +QDataStream (0x7f2f3f4e0a10) 0 + vptr=((& QDataStream::_ZTV11QDataStream) + 16u) + +Class QRegExp + size=8 align=8 + base size=8 base align=8 +QRegExp (0x7f2f3f54be70) 0 + +Class QStringMatcher::Data + size=272 align=8 + base size=272 base align=8 +QStringMatcher::Data (0x7f2f3f5b22a0) 0 + +Class QStringMatcher + size=1048 align=8 + base size=1048 base align=8 +QStringMatcher (0x7f2f3f5a6c40) 0 + +Class QStringList + size=8 align=8 + base size=8 base align=8 +QStringList (0x7f2f3f5b2850) 0 + QList (0x7f2f3f5b28c0) 0 + +Class QDir + size=8 align=8 + base size=8 base align=8 +QDir (0x7f2f3f4504d0) 0 + +Class QAbstractFileEngine::ExtensionOption + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionOption (0x7f2f3f2f88c0) 0 empty + +Class QAbstractFileEngine::ExtensionReturn + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionReturn (0x7f2f3f2f8930) 0 empty + +Class QAbstractFileEngine::MapExtensionOption + size=24 align=8 + base size=20 base align=8 +QAbstractFileEngine::MapExtensionOption (0x7f2f3f2f89a0) 0 + QAbstractFileEngine::ExtensionOption (0x7f2f3f2f8a10) 0 empty + +Class QAbstractFileEngine::MapExtensionReturn + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::MapExtensionReturn (0x7f2f3f2f8bd0) 0 + QAbstractFileEngine::ExtensionReturn (0x7f2f3f2f8c40) 0 empty + +Class QAbstractFileEngine::UnMapExtensionOption + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::UnMapExtensionOption (0x7f2f3f2f8cb0) 0 + QAbstractFileEngine::ExtensionOption (0x7f2f3f2f8d20) 0 empty + +Vtable for QAbstractFileEngine +QAbstractFileEngine::_ZTV19QAbstractFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractFileEngine) +16 QAbstractFileEngine::~QAbstractFileEngine +24 QAbstractFileEngine::~QAbstractFileEngine +32 QAbstractFileEngine::open +40 QAbstractFileEngine::close +48 QAbstractFileEngine::flush +56 QAbstractFileEngine::size +64 QAbstractFileEngine::pos +72 QAbstractFileEngine::seek +80 QAbstractFileEngine::isSequential +88 QAbstractFileEngine::remove +96 QAbstractFileEngine::copy +104 QAbstractFileEngine::rename +112 QAbstractFileEngine::link +120 QAbstractFileEngine::mkdir +128 QAbstractFileEngine::rmdir +136 QAbstractFileEngine::setSize +144 QAbstractFileEngine::caseSensitive +152 QAbstractFileEngine::isRelativePath +160 QAbstractFileEngine::entryList +168 QAbstractFileEngine::fileFlags +176 QAbstractFileEngine::setPermissions +184 QAbstractFileEngine::fileName +192 QAbstractFileEngine::ownerId +200 QAbstractFileEngine::owner +208 QAbstractFileEngine::fileTime +216 QAbstractFileEngine::setFileName +224 QAbstractFileEngine::handle +232 QAbstractFileEngine::beginEntryList +240 QAbstractFileEngine::endEntryList +248 QAbstractFileEngine::read +256 QAbstractFileEngine::readLine +264 QAbstractFileEngine::write +272 QAbstractFileEngine::extension +280 QAbstractFileEngine::supportsExtension + +Class QAbstractFileEngine + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngine (0x7f2f3f2dc850) 0 + vptr=((& QAbstractFileEngine::_ZTV19QAbstractFileEngine) + 16u) + +Vtable for QAbstractFileEngineHandler +QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QAbstractFileEngineHandler) +16 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +24 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +32 __cxa_pure_virtual + +Class QAbstractFileEngineHandler + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngineHandler (0x7f2f3f32fbd0) 0 nearly-empty + vptr=((& QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler) + 16u) + +Vtable for QAbstractFileEngineIterator +QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QAbstractFileEngineIterator) +16 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +24 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QAbstractFileEngineIterator::currentFileInfo +64 QAbstractFileEngineIterator::entryInfo + +Class QAbstractFileEngineIterator + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngineIterator (0x7f2f3f32fd90) 0 + vptr=((& QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator) + 16u) + +Vtable for QBuffer +QBuffer::_ZTV7QBuffer: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QBuffer) +16 QBuffer::metaObject +24 QBuffer::qt_metacast +32 QBuffer::qt_metacall +40 QBuffer::~QBuffer +48 QBuffer::~QBuffer +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QBuffer::connectNotify +104 QBuffer::disconnectNotify +112 QIODevice::isSequential +120 QBuffer::open +128 QBuffer::close +136 QBuffer::pos +144 QBuffer::size +152 QBuffer::seek +160 QBuffer::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QBuffer::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QBuffer::readData +224 QIODevice::readLineData +232 QBuffer::writeData + +Class QBuffer + size=16 align=8 + base size=16 base align=8 +QBuffer (0x7f2f3f340690) 0 + vptr=((& QBuffer::_ZTV7QBuffer) + 16u) + QIODevice (0x7f2f3f340700) 0 + primary-for QBuffer (0x7f2f3f340690) + QObject (0x7f2f3f340770) 0 + primary-for QIODevice (0x7f2f3f340700) + +Class QHashData::Node + size=16 align=8 + base size=16 base align=8 +QHashData::Node (0x7f2f3f383e00) 0 + +Class QHashData + size=40 align=8 + base size=40 base align=8 +QHashData (0x7f2f3f383d90) 0 + +Class QHashDummyValue + size=1 align=1 + base size=0 base align=1 +QHashDummyValue (0x7f2f3f3a7150) 0 empty + +Class QMapData::Node + size=16 align=8 + base size=16 base align=8 +QMapData::Node (0x7f2f3f2a8a80) 0 + +Class QMapData + size=128 align=8 + base size=128 base align=8 +QMapData (0x7f2f3f2a8a10) 0 + +Vtable for QSystemLocale +QSystemLocale::_ZTV13QSystemLocale: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSystemLocale) +16 QSystemLocale::~QSystemLocale +24 QSystemLocale::~QSystemLocale +32 QSystemLocale::query +40 QSystemLocale::fallbackLocale + +Class QSystemLocale + size=8 align=8 + base size=8 base align=8 +QSystemLocale (0x7f2f3efe6690) 0 nearly-empty + vptr=((& QSystemLocale::_ZTV13QSystemLocale) + 16u) + +Class QLocale::Data + size=4 align=2 + base size=4 base align=2 +QLocale::Data (0x7f2f3f02fd90) 0 + +Class QLocale + size=8 align=8 + base size=8 base align=8 +QLocale (0x7f2f3efe6af0) 0 + +Class QTextCodec::ConverterState + size=32 align=8 + base size=32 base align=8 +QTextCodec::ConverterState (0x7f2f3f089bd0) 0 + +Vtable for QTextCodec +QTextCodec::_ZTV10QTextCodec: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextCodec) +16 __cxa_pure_virtual +24 QTextCodec::aliases +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QTextCodec::~QTextCodec +64 QTextCodec::~QTextCodec + +Class QTextCodec + size=8 align=8 + base size=8 base align=8 +QTextCodec (0x7f2f3f07b460) 0 nearly-empty + vptr=((& QTextCodec::_ZTV10QTextCodec) + 16u) + +Class QTextEncoder + size=40 align=8 + base size=40 base align=8 +QTextEncoder (0x7f2f3eef5150) 0 + +Class QTextDecoder + size=40 align=8 + base size=40 base align=8 +QTextDecoder (0x7f2f3eef5f50) 0 + +Vtable for QTextStream +QTextStream::_ZTV11QTextStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTextStream) +16 QTextStream::~QTextStream +24 QTextStream::~QTextStream + +Class QTextStream + size=16 align=8 + base size=16 base align=8 +QTextStream (0x7f2f3eefed90) 0 + vptr=((& QTextStream::_ZTV11QTextStream) + 16u) + +Class QTextStreamManipulator + size=40 align=8 + base size=38 base align=8 +QTextStreamManipulator (0x7f2f3ef77a80) 0 + +Vtable for QTextIStream +QTextIStream::_ZTV12QTextIStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextIStream) +16 QTextIStream::~QTextIStream +24 QTextIStream::~QTextIStream + +Class QTextIStream + size=16 align=8 + base size=16 base align=8 +QTextIStream (0x7f2f3efaa070) 0 + vptr=((& QTextIStream::_ZTV12QTextIStream) + 16u) + QTextStream (0x7f2f3efaa0e0) 0 + primary-for QTextIStream (0x7f2f3efaa070) + +Vtable for QTextOStream +QTextOStream::_ZTV12QTextOStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextOStream) +16 QTextOStream::~QTextOStream +24 QTextOStream::~QTextOStream + +Class QTextOStream + size=16 align=8 + base size=16 base align=8 +QTextOStream (0x7f2f3efb5ee0) 0 + vptr=((& QTextOStream::_ZTV12QTextOStream) + 16u) + QTextStream (0x7f2f3efb5f50) 0 + primary-for QTextOStream (0x7f2f3efb5ee0) + +Class wait + size=4 align=4 + base size=4 base align=4 +wait (0x7f2f3edcad90) 0 + +Class timespec + size=16 align=8 + base size=16 base align=8 +timespec (0x7f2f3edd70e0) 0 + +Class timeval + size=16 align=8 + base size=16 base align=8 +timeval (0x7f2f3edd7150) 0 + +Class __pthread_internal_list + size=16 align=8 + base size=16 base align=8 +__pthread_internal_list (0x7f2f3edd72a0) 0 + +Class random_data + size=48 align=8 + base size=48 base align=8 +random_data (0x7f2f3edd7850) 0 + +Class drand48_data + size=24 align=8 + base size=24 base align=8 +drand48_data (0x7f2f3edd78c0) 0 + +Class QVectorData + size=16 align=4 + base size=16 base align=4 +QVectorData (0x7f2f3edd7930) 0 + +Class QContiguousCacheData + size=24 align=4 + base size=24 base align=4 +QContiguousCacheData (0x7f2f3ed93620) 0 + +Class QDebug::Stream + size=40 align=8 + base size=34 base align=8 +QDebug::Stream (0x7f2f3ebf5150) 0 + +Class QDebug + size=8 align=8 + base size=8 base align=8 +QDebug (0x7f2f3ebf50e0) 0 + +Class QNoDebug + size=1 align=1 + base size=0 base align=1 +QNoDebug (0x7f2f3eca20e0) 0 empty + +Vtable for QDirIterator +QDirIterator::_ZTV12QDirIterator: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QDirIterator) +16 QDirIterator::~QDirIterator +24 QDirIterator::~QDirIterator + +Class QDirIterator + size=16 align=8 + base size=16 base align=8 +QDirIterator (0x7f2f3eab1700) 0 + vptr=((& QDirIterator::_ZTV12QDirIterator) + 16u) + +Vtable for QFileSystemWatcher +QFileSystemWatcher::_ZTV18QFileSystemWatcher: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFileSystemWatcher) +16 QFileSystemWatcher::metaObject +24 QFileSystemWatcher::qt_metacast +32 QFileSystemWatcher::qt_metacall +40 QFileSystemWatcher::~QFileSystemWatcher +48 QFileSystemWatcher::~QFileSystemWatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QFileSystemWatcher + size=16 align=8 + base size=16 base align=8 +QFileSystemWatcher (0x7f2f3eb10540) 0 + vptr=((& QFileSystemWatcher::_ZTV18QFileSystemWatcher) + 16u) + QObject (0x7f2f3eb105b0) 0 + primary-for QFileSystemWatcher (0x7f2f3eb10540) + +Vtable for QFSFileEngine +QFSFileEngine::_ZTV13QFSFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QFSFileEngine) +16 QFSFileEngine::~QFSFileEngine +24 QFSFileEngine::~QFSFileEngine +32 QFSFileEngine::open +40 QFSFileEngine::close +48 QFSFileEngine::flush +56 QFSFileEngine::size +64 QFSFileEngine::pos +72 QFSFileEngine::seek +80 QFSFileEngine::isSequential +88 QFSFileEngine::remove +96 QFSFileEngine::copy +104 QFSFileEngine::rename +112 QFSFileEngine::link +120 QFSFileEngine::mkdir +128 QFSFileEngine::rmdir +136 QFSFileEngine::setSize +144 QFSFileEngine::caseSensitive +152 QFSFileEngine::isRelativePath +160 QFSFileEngine::entryList +168 QFSFileEngine::fileFlags +176 QFSFileEngine::setPermissions +184 QFSFileEngine::fileName +192 QFSFileEngine::ownerId +200 QFSFileEngine::owner +208 QFSFileEngine::fileTime +216 QFSFileEngine::setFileName +224 QFSFileEngine::handle +232 QFSFileEngine::beginEntryList +240 QFSFileEngine::endEntryList +248 QFSFileEngine::read +256 QFSFileEngine::readLine +264 QFSFileEngine::write +272 QFSFileEngine::extension +280 QFSFileEngine::supportsExtension + +Class QFSFileEngine + size=16 align=8 + base size=16 base align=8 +QFSFileEngine (0x7f2f3eb22a80) 0 + vptr=((& QFSFileEngine::_ZTV13QFSFileEngine) + 16u) + QAbstractFileEngine (0x7f2f3eb22af0) 0 + primary-for QFSFileEngine (0x7f2f3eb22a80) + +Class QSharedData + size=4 align=4 + base size=4 base align=4 +QSharedData (0x7f2f3eb30e70) 0 + +Class QProcessEnvironment + size=8 align=8 + base size=8 base align=8 +QProcessEnvironment (0x7f2f3eb7a1c0) 0 + +Vtable for QProcess +QProcess::_ZTV8QProcess: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QProcess) +16 QProcess::metaObject +24 QProcess::qt_metacast +32 QProcess::qt_metacall +40 QProcess::~QProcess +48 QProcess::~QProcess +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QProcess::isSequential +120 QIODevice::open +128 QProcess::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QProcess::atEnd +168 QIODevice::reset +176 QProcess::bytesAvailable +184 QProcess::bytesToWrite +192 QProcess::canReadLine +200 QProcess::waitForReadyRead +208 QProcess::waitForBytesWritten +216 QProcess::readData +224 QIODevice::readLineData +232 QProcess::writeData +240 QProcess::setupChildProcess + +Class QProcess + size=16 align=8 + base size=16 base align=8 +QProcess (0x7f2f3eb7acb0) 0 + vptr=((& QProcess::_ZTV8QProcess) + 16u) + QIODevice (0x7f2f3eb7ad20) 0 + primary-for QProcess (0x7f2f3eb7acb0) + QObject (0x7f2f3eb7ad90) 0 + primary-for QIODevice (0x7f2f3eb7ad20) + +Class QResource + size=8 align=8 + base size=8 base align=8 +QResource (0x7f2f3e9c21c0) 0 + +Class QMetaType + size=1 align=1 + base size=0 base align=1 +QMetaType (0x7f2f3e9c2e70) 0 empty + +Class QVariant::PrivateShared + size=16 align=8 + base size=12 base align=8 +QVariant::PrivateShared (0x7f2f3e8bf700) 0 + +Class QVariant::Private::Data + size=8 align=8 + base size=8 base align=8 +QVariant::Private::Data (0x7f2f3e8bfa10) 0 + +Class QVariant::Private + size=16 align=8 + base size=12 base align=8 +QVariant::Private (0x7f2f3e8bf7e0) 0 + +Class QVariant::Handler + size=72 align=8 + base size=72 base align=8 +QVariant::Handler (0x7f2f3e8ce700) 0 + +Class QVariant + size=16 align=8 + base size=16 base align=8 +QVariant (0x7f2f3ea8e7e0) 0 + +Class QVariantComparisonHelper + size=8 align=8 + base size=8 base align=8 +QVariantComparisonHelper (0x7f2f3e9869a0) 0 + +Vtable for QSettings +QSettings::_ZTV9QSettings: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QSettings) +16 QSettings::metaObject +24 QSettings::qt_metacast +32 QSettings::qt_metacall +40 QSettings::~QSettings +48 QSettings::~QSettings +56 QSettings::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSettings + size=16 align=8 + base size=16 base align=8 +QSettings (0x7f2f3e7a5ee0) 0 + vptr=((& QSettings::_ZTV9QSettings) + 16u) + QObject (0x7f2f3e7a5f50) 0 + primary-for QSettings (0x7f2f3e7a5ee0) + +Vtable for QTemporaryFile +QTemporaryFile::_ZTV14QTemporaryFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QTemporaryFile) +16 QTemporaryFile::metaObject +24 QTemporaryFile::qt_metacast +32 QTemporaryFile::qt_metacall +40 QTemporaryFile::~QTemporaryFile +48 QTemporaryFile::~QTemporaryFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QTemporaryFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QTemporaryFile::fileEngine + +Class QTemporaryFile + size=16 align=8 + base size=16 base align=8 +QTemporaryFile (0x7f2f3e8282a0) 0 + vptr=((& QTemporaryFile::_ZTV14QTemporaryFile) + 16u) + QFile (0x7f2f3e828310) 0 + primary-for QTemporaryFile (0x7f2f3e8282a0) + QIODevice (0x7f2f3e828380) 0 + primary-for QFile (0x7f2f3e828310) + QObject (0x7f2f3e8283f0) 0 + primary-for QIODevice (0x7f2f3e828380) + +Class QUrl + size=8 align=8 + base size=8 base align=8 +QUrl (0x7f2f3e8449a0) 0 + +Class QXmlStreamStringRef + size=16 align=8 + base size=16 base align=8 +QXmlStreamStringRef (0x7f2f3e6cd070) 0 + +Class QXmlStreamAttribute + size=80 align=8 + base size=73 base align=8 +QXmlStreamAttribute (0x7f2f3e6eb850) 0 + +Class QXmlStreamAttributes + size=8 align=8 + base size=8 base align=8 +QXmlStreamAttributes (0x7f2f3e714310) 0 + QVector (0x7f2f3e714380) 0 + +Class QXmlStreamNamespaceDeclaration + size=40 align=8 + base size=40 base align=8 +QXmlStreamNamespaceDeclaration (0x7f2f3e7147e0) 0 + +Class QXmlStreamNotationDeclaration + size=56 align=8 + base size=56 base align=8 +QXmlStreamNotationDeclaration (0x7f2f3e7561c0) 0 + +Class QXmlStreamEntityDeclaration + size=88 align=8 + base size=88 base align=8 +QXmlStreamEntityDeclaration (0x7f2f3e776070) 0 + +Vtable for QXmlStreamEntityResolver +QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QXmlStreamEntityResolver) +16 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +24 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +32 QXmlStreamEntityResolver::resolveEntity +40 QXmlStreamEntityResolver::resolveUndeclaredEntity + +Class QXmlStreamEntityResolver + size=8 align=8 + base size=8 base align=8 +QXmlStreamEntityResolver (0x7f2f3e7909a0) 0 nearly-empty + vptr=((& QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver) + 16u) + +Class QXmlStreamReader + size=8 align=8 + base size=8 base align=8 +QXmlStreamReader (0x7f2f3e790b60) 0 + +Class QXmlStreamWriter + size=8 align=8 + base size=8 base align=8 +QXmlStreamWriter (0x7f2f3e5d8c40) 0 + +Vtable for QAbstractState +QAbstractState::_ZTV14QAbstractState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QAbstractState) +16 QAbstractState::metaObject +24 QAbstractState::qt_metacast +32 QAbstractState::qt_metacall +40 QAbstractState::~QAbstractState +48 QAbstractState::~QAbstractState +56 QAbstractState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QAbstractState + size=16 align=8 + base size=16 base align=8 +QAbstractState (0x7f2f3e5eea80) 0 + vptr=((& QAbstractState::_ZTV14QAbstractState) + 16u) + QObject (0x7f2f3e5eeaf0) 0 + primary-for QAbstractState (0x7f2f3e5eea80) + +Vtable for QAbstractTransition +QAbstractTransition::_ZTV19QAbstractTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractTransition) +16 QAbstractTransition::metaObject +24 QAbstractTransition::qt_metacast +32 QAbstractTransition::qt_metacall +40 QAbstractTransition::~QAbstractTransition +48 QAbstractTransition::~QAbstractTransition +56 QAbstractTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QAbstractTransition + size=16 align=8 + base size=16 base align=8 +QAbstractTransition (0x7f2f3e6142a0) 0 + vptr=((& QAbstractTransition::_ZTV19QAbstractTransition) + 16u) + QObject (0x7f2f3e614310) 0 + primary-for QAbstractTransition (0x7f2f3e6142a0) + +Vtable for QEvent +QEvent::_ZTV6QEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QEvent) +16 QEvent::~QEvent +24 QEvent::~QEvent + +Class QEvent + size=24 align=8 + base size=20 base align=8 +QEvent (0x7f2f3e629af0) 0 + vptr=((& QEvent::_ZTV6QEvent) + 16u) + +Vtable for QTimerEvent +QTimerEvent::_ZTV11QTimerEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTimerEvent) +16 QTimerEvent::~QTimerEvent +24 QTimerEvent::~QTimerEvent + +Class QTimerEvent + size=24 align=8 + base size=24 base align=8 +QTimerEvent (0x7f2f3e64b700) 0 + vptr=((& QTimerEvent::_ZTV11QTimerEvent) + 16u) + QEvent (0x7f2f3e64b770) 0 + primary-for QTimerEvent (0x7f2f3e64b700) + +Vtable for QChildEvent +QChildEvent::_ZTV11QChildEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QChildEvent) +16 QChildEvent::~QChildEvent +24 QChildEvent::~QChildEvent + +Class QChildEvent + size=32 align=8 + base size=32 base align=8 +QChildEvent (0x7f2f3e64bb60) 0 + vptr=((& QChildEvent::_ZTV11QChildEvent) + 16u) + QEvent (0x7f2f3e64bbd0) 0 + primary-for QChildEvent (0x7f2f3e64bb60) + +Vtable for QCustomEvent +QCustomEvent::_ZTV12QCustomEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QCustomEvent) +16 QCustomEvent::~QCustomEvent +24 QCustomEvent::~QCustomEvent + +Class QCustomEvent + size=24 align=8 + base size=20 base align=8 +QCustomEvent (0x7f2f3e652e00) 0 + vptr=((& QCustomEvent::_ZTV12QCustomEvent) + 16u) + QEvent (0x7f2f3e652e70) 0 + primary-for QCustomEvent (0x7f2f3e652e00) + +Vtable for QDynamicPropertyChangeEvent +QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QDynamicPropertyChangeEvent) +16 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent +24 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent + +Class QDynamicPropertyChangeEvent + size=32 align=8 + base size=32 base align=8 +QDynamicPropertyChangeEvent (0x7f2f3e665620) 0 + vptr=((& QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent) + 16u) + QEvent (0x7f2f3e665690) 0 + primary-for QDynamicPropertyChangeEvent (0x7f2f3e665620) + +Vtable for QEventTransition +QEventTransition::_ZTV16QEventTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QEventTransition) +16 QEventTransition::metaObject +24 QEventTransition::qt_metacast +32 QEventTransition::qt_metacall +40 QEventTransition::~QEventTransition +48 QEventTransition::~QEventTransition +56 QEventTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QEventTransition::eventTest +120 QEventTransition::onTransition + +Class QEventTransition + size=16 align=8 + base size=16 base align=8 +QEventTransition (0x7f2f3e665af0) 0 + vptr=((& QEventTransition::_ZTV16QEventTransition) + 16u) + QAbstractTransition (0x7f2f3e665b60) 0 + primary-for QEventTransition (0x7f2f3e665af0) + QObject (0x7f2f3e665bd0) 0 + primary-for QAbstractTransition (0x7f2f3e665b60) + +Vtable for QFinalState +QFinalState::_ZTV11QFinalState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFinalState) +16 QFinalState::metaObject +24 QFinalState::qt_metacast +32 QFinalState::qt_metacall +40 QFinalState::~QFinalState +48 QFinalState::~QFinalState +56 QFinalState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFinalState::onEntry +120 QFinalState::onExit + +Class QFinalState + size=16 align=8 + base size=16 base align=8 +QFinalState (0x7f2f3e6809a0) 0 + vptr=((& QFinalState::_ZTV11QFinalState) + 16u) + QAbstractState (0x7f2f3e680a10) 0 + primary-for QFinalState (0x7f2f3e6809a0) + QObject (0x7f2f3e680a80) 0 + primary-for QAbstractState (0x7f2f3e680a10) + +Vtable for QHistoryState +QHistoryState::_ZTV13QHistoryState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QHistoryState) +16 QHistoryState::metaObject +24 QHistoryState::qt_metacast +32 QHistoryState::qt_metacall +40 QHistoryState::~QHistoryState +48 QHistoryState::~QHistoryState +56 QHistoryState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QHistoryState::onEntry +120 QHistoryState::onExit + +Class QHistoryState + size=16 align=8 + base size=16 base align=8 +QHistoryState (0x7f2f3e699230) 0 + vptr=((& QHistoryState::_ZTV13QHistoryState) + 16u) + QAbstractState (0x7f2f3e6992a0) 0 + primary-for QHistoryState (0x7f2f3e699230) + QObject (0x7f2f3e699310) 0 + primary-for QAbstractState (0x7f2f3e6992a0) + +Vtable for QSignalTransition +QSignalTransition::_ZTV17QSignalTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QSignalTransition) +16 QSignalTransition::metaObject +24 QSignalTransition::qt_metacast +32 QSignalTransition::qt_metacall +40 QSignalTransition::~QSignalTransition +48 QSignalTransition::~QSignalTransition +56 QSignalTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QSignalTransition::eventTest +120 QSignalTransition::onTransition + +Class QSignalTransition + size=16 align=8 + base size=16 base align=8 +QSignalTransition (0x7f2f3e4a1f50) 0 + vptr=((& QSignalTransition::_ZTV17QSignalTransition) + 16u) + QAbstractTransition (0x7f2f3e4ac000) 0 + primary-for QSignalTransition (0x7f2f3e4a1f50) + QObject (0x7f2f3e4ac070) 0 + primary-for QAbstractTransition (0x7f2f3e4ac000) + +Vtable for QState +QState::_ZTV6QState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QState) +16 QState::metaObject +24 QState::qt_metacast +32 QState::qt_metacall +40 QState::~QState +48 QState::~QState +56 QState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QState::onEntry +120 QState::onExit + +Class QState + size=16 align=8 + base size=16 base align=8 +QState (0x7f2f3e4bdaf0) 0 + vptr=((& QState::_ZTV6QState) + 16u) + QAbstractState (0x7f2f3e4bdb60) 0 + primary-for QState (0x7f2f3e4bdaf0) + QObject (0x7f2f3e4bdbd0) 0 + primary-for QAbstractState (0x7f2f3e4bdb60) + +Vtable for QStateMachine::SignalEvent +QStateMachine::SignalEvent::_ZTVN13QStateMachine11SignalEventE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN13QStateMachine11SignalEventE) +16 QStateMachine::SignalEvent::~SignalEvent +24 QStateMachine::SignalEvent::~SignalEvent + +Class QStateMachine::SignalEvent + size=48 align=8 + base size=48 base align=8 +QStateMachine::SignalEvent (0x7f2f3e4e2150) 0 + vptr=((& QStateMachine::SignalEvent::_ZTVN13QStateMachine11SignalEventE) + 16u) + QEvent (0x7f2f3e4e21c0) 0 + primary-for QStateMachine::SignalEvent (0x7f2f3e4e2150) + +Vtable for QStateMachine::WrappedEvent +QStateMachine::WrappedEvent::_ZTVN13QStateMachine12WrappedEventE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN13QStateMachine12WrappedEventE) +16 QStateMachine::WrappedEvent::~WrappedEvent +24 QStateMachine::WrappedEvent::~WrappedEvent + +Class QStateMachine::WrappedEvent + size=40 align=8 + base size=40 base align=8 +QStateMachine::WrappedEvent (0x7f2f3e4e2700) 0 + vptr=((& QStateMachine::WrappedEvent::_ZTVN13QStateMachine12WrappedEventE) + 16u) + QEvent (0x7f2f3e4e2770) 0 + primary-for QStateMachine::WrappedEvent (0x7f2f3e4e2700) + +Vtable for QStateMachine +QStateMachine::_ZTV13QStateMachine: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QStateMachine) +16 QStateMachine::metaObject +24 QStateMachine::qt_metacast +32 QStateMachine::qt_metacall +40 QStateMachine::~QStateMachine +48 QStateMachine::~QStateMachine +56 QStateMachine::event +64 QStateMachine::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QStateMachine::onEntry +120 QStateMachine::onExit +128 QStateMachine::beginSelectTransitions +136 QStateMachine::endSelectTransitions +144 QStateMachine::beginMicrostep +152 QStateMachine::endMicrostep + +Class QStateMachine + size=16 align=8 + base size=16 base align=8 +QStateMachine (0x7f2f3e4d9ee0) 0 + vptr=((& QStateMachine::_ZTV13QStateMachine) + 16u) + QState (0x7f2f3e4d9f50) 0 + primary-for QStateMachine (0x7f2f3e4d9ee0) + QAbstractState (0x7f2f3e4e2000) 0 + primary-for QState (0x7f2f3e4d9f50) + QObject (0x7f2f3e4e2070) 0 + primary-for QAbstractState (0x7f2f3e4e2000) + +Class QBitArray + size=8 align=8 + base size=8 base align=8 +QBitArray (0x7f2f3e514150) 0 + +Class QBitRef + size=16 align=8 + base size=12 base align=8 +QBitRef (0x7f2f3e567e00) 0 + +Class QByteArrayMatcher::Data + size=272 align=8 + base size=272 base align=8 +QByteArrayMatcher::Data (0x7f2f3e57aaf0) 0 + +Class QByteArrayMatcher + size=1040 align=8 + base size=1040 base align=8 +QByteArrayMatcher (0x7f2f3e57a4d0) 0 + +Class QCryptographicHash + size=8 align=8 + base size=8 base align=8 +QCryptographicHash (0x7f2f3e3b4150) 0 + +Vtable for QtSharedPointer::ExternalRefCountData +QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN15QtSharedPointer20ExternalRefCountDataE) +16 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +24 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +32 QtSharedPointer::ExternalRefCountData::destroy + +Class QtSharedPointer::ExternalRefCountData + size=16 align=8 + base size=16 base align=8 +QtSharedPointer::ExternalRefCountData (0x7f2f3e3de070) 0 + vptr=((& QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE) + 16u) + +Vtable for QtSharedPointer::ExternalRefCountWithDestroyFn +QtSharedPointer::ExternalRefCountWithDestroyFn::_ZTVN15QtSharedPointer29ExternalRefCountWithDestroyFnE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN15QtSharedPointer29ExternalRefCountWithDestroyFnE) +16 QtSharedPointer::ExternalRefCountWithDestroyFn::~ExternalRefCountWithDestroyFn +24 QtSharedPointer::ExternalRefCountWithDestroyFn::~ExternalRefCountWithDestroyFn +32 QtSharedPointer::ExternalRefCountWithDestroyFn::destroy + +Class QtSharedPointer::ExternalRefCountWithDestroyFn + size=24 align=8 + base size=24 base align=8 +QtSharedPointer::ExternalRefCountWithDestroyFn (0x7f2f3e3f6930) 0 + vptr=((& QtSharedPointer::ExternalRefCountWithDestroyFn::_ZTVN15QtSharedPointer29ExternalRefCountWithDestroyFnE) + 16u) + QtSharedPointer::ExternalRefCountData (0x7f2f3e3f69a0) 0 + primary-for QtSharedPointer::ExternalRefCountWithDestroyFn (0x7f2f3e3f6930) + +Class QDate + size=4 align=4 + base size=4 base align=4 +QDate (0x7f2f3e47c5b0) 0 + +Class QTime + size=4 align=4 + base size=4 base align=4 +QTime (0x7f2f3e2ad540) 0 + +Class QDateTime + size=8 align=8 + base size=8 base align=8 +QDateTime (0x7f2f3e2c9af0) 0 + +Class QEasingCurve + size=8 align=8 + base size=8 base align=8 +QEasingCurve (0x7f2f3e310000) 0 + +Class QPoint + size=8 align=4 + base size=8 base align=4 +QPoint (0x7f2f3e310ee0) 0 + +Class QPointF + size=16 align=8 + base size=16 base align=8 +QPointF (0x7f2f3e34faf0) 0 + +Class QLine + size=16 align=4 + base size=16 base align=4 +QLine (0x7f2f3e38faf0) 0 + +Class QLineF + size=32 align=8 + base size=32 base align=8 +QLineF (0x7f2f3e1c49a0) 0 + +Class QLinkedListData + size=32 align=8 + base size=32 base align=8 +QLinkedListData (0x7f2f3e21f460) 0 + +Class QMargins + size=16 align=4 + base size=16 base align=4 +QMargins (0x7f2f3e0df380) 0 + +Class QSize + size=8 align=4 + base size=8 base align=4 +QSize (0x7f2f3e10d150) 0 + +Class QSizeF + size=16 align=8 + base size=16 base align=8 +QSizeF (0x7f2f3e14ce00) 0 + +Class QRect + size=16 align=4 + base size=16 base align=4 +QRect (0x7f2f3dfa1380) 0 + +Class QRectF + size=32 align=8 + base size=32 base align=8 +QRectF (0x7f2f3e04ed20) 0 + +Class QLatin1Literal + size=16 align=8 + base size=16 base align=8 +QLatin1Literal (0x7f2f3defdee0) 0 + +Class QAbstractConcatenable + size=1 align=1 + base size=0 base align=1 +QAbstractConcatenable (0x7f2f3df0f3f0) 0 empty + +Class QTextBoundaryFinder + size=48 align=8 + base size=48 base align=8 +QTextBoundaryFinder (0x7f2f3df47380) 0 + +Vtable for QTimeLine +QTimeLine::_ZTV9QTimeLine: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTimeLine) +16 QTimeLine::metaObject +24 QTimeLine::qt_metacast +32 QTimeLine::qt_metacall +40 QTimeLine::~QTimeLine +48 QTimeLine::~QTimeLine +56 QObject::event +64 QObject::eventFilter +72 QTimeLine::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTimeLine::valueForTime + +Class QTimeLine + size=16 align=8 + base size=16 base align=8 +QTimeLine (0x7f2f3df54700) 0 + vptr=((& QTimeLine::_ZTV9QTimeLine) + 16u) + QObject (0x7f2f3df54770) 0 + primary-for QTimeLine (0x7f2f3df54700) + +Vtable for QRunnable +QRunnable::_ZTV9QRunnable: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QRunnable) +16 __cxa_pure_virtual +24 QRunnable::~QRunnable +32 QRunnable::~QRunnable + +Class QRunnable + size=16 align=8 + base size=12 base align=8 +QRunnable (0x7f2f3df7cf50) 0 + vptr=((& QRunnable::_ZTV9QRunnable) + 16u) + +Class QMutex + size=8 align=8 + base size=8 base align=8 +QMutex (0x7f2f3ddb6620) 0 + +Class QMutexLocker + size=8 align=8 + base size=8 base align=8 +QMutexLocker (0x7f2f3ddc41c0) 0 + +Vtable for QtConcurrent::Exception +QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent9ExceptionE) +16 QtConcurrent::Exception::~Exception +24 QtConcurrent::Exception::~Exception +32 std::exception::what +40 QtConcurrent::Exception::raise +48 QtConcurrent::Exception::clone + +Class QtConcurrent::Exception + size=8 align=8 + base size=8 base align=8 +QtConcurrent::Exception (0x7f2f3dddb4d0) 0 nearly-empty + vptr=((& QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE) + 16u) + std::exception (0x7f2f3dddb540) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7f2f3dddb4d0) + +Vtable for QtConcurrent::UnhandledException +QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent18UnhandledExceptionE) +16 QtConcurrent::UnhandledException::~UnhandledException +24 QtConcurrent::UnhandledException::~UnhandledException +32 std::exception::what +40 QtConcurrent::UnhandledException::raise +48 QtConcurrent::UnhandledException::clone + +Class QtConcurrent::UnhandledException + size=8 align=8 + base size=8 base align=8 +QtConcurrent::UnhandledException (0x7f2f3dddb770) 0 nearly-empty + vptr=((& QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE) + 16u) + QtConcurrent::Exception (0x7f2f3dddb7e0) 0 nearly-empty + primary-for QtConcurrent::UnhandledException (0x7f2f3dddb770) + std::exception (0x7f2f3dddb850) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7f2f3dddb7e0) + +Class QtConcurrent::internal::ExceptionHolder + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionHolder (0x7f2f3dddba80) 0 + +Class QtConcurrent::internal::ExceptionStore + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionStore (0x7f2f3dddbe00) 0 + +Class QtConcurrent::ResultItem + size=16 align=8 + base size=16 base align=8 +QtConcurrent::ResultItem (0x7f2f3dddbe70) 0 + +Class QtConcurrent::ResultIteratorBase + size=16 align=8 + base size=12 base align=8 +QtConcurrent::ResultIteratorBase (0x7f2f3ddf1d90) 0 + +Vtable for QtConcurrent::ResultStoreBase +QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent15ResultStoreBaseE) +16 QtConcurrent::ResultStoreBase::~ResultStoreBase +24 QtConcurrent::ResultStoreBase::~ResultStoreBase + +Class QtConcurrent::ResultStoreBase + size=48 align=8 + base size=44 base align=8 +QtConcurrent::ResultStoreBase (0x7f2f3ddf7930) 0 + vptr=((& QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE) + 16u) + +Vtable for QFutureInterfaceBase +QFutureInterfaceBase::_ZTV20QFutureInterfaceBase: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QFutureInterfaceBase) +16 QFutureInterfaceBase::~QFutureInterfaceBase +24 QFutureInterfaceBase::~QFutureInterfaceBase + +Class QFutureInterfaceBase + size=16 align=8 + base size=16 base align=8 +QFutureInterfaceBase (0x7f2f3de35d90) 0 + vptr=((& QFutureInterfaceBase::_ZTV20QFutureInterfaceBase) + 16u) + +Vtable for QFutureWatcherBase +QFutureWatcherBase::_ZTV18QFutureWatcherBase: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFutureWatcherBase) +16 QFutureWatcherBase::metaObject +24 QFutureWatcherBase::qt_metacast +32 QFutureWatcherBase::qt_metacall +40 QFutureWatcherBase::~QFutureWatcherBase +48 QFutureWatcherBase::~QFutureWatcherBase +56 QFutureWatcherBase::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QFutureWatcherBase::connectNotify +104 QFutureWatcherBase::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QFutureWatcherBase + size=16 align=8 + base size=16 base align=8 +QFutureWatcherBase (0x7f2f3dd1b690) 0 + vptr=((& QFutureWatcherBase::_ZTV18QFutureWatcherBase) + 16u) + QObject (0x7f2f3dd1b700) 0 + primary-for QFutureWatcherBase (0x7f2f3dd1b690) + +Vtable for QThread +QThread::_ZTV7QThread: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QThread) +16 QThread::metaObject +24 QThread::qt_metacast +32 QThread::qt_metacall +40 QThread::~QThread +48 QThread::~QThread +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QThread::run + +Class QThread + size=16 align=8 + base size=16 base align=8 +QThread (0x7f2f3dd6ca80) 0 + vptr=((& QThread::_ZTV7QThread) + 16u) + QObject (0x7f2f3dd6caf0) 0 + primary-for QThread (0x7f2f3dd6ca80) + +Vtable for QThreadPool +QThreadPool::_ZTV11QThreadPool: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QThreadPool) +16 QThreadPool::metaObject +24 QThreadPool::qt_metacast +32 QThreadPool::qt_metacall +40 QThreadPool::~QThreadPool +48 QThreadPool::~QThreadPool +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QThreadPool + size=16 align=8 + base size=16 base align=8 +QThreadPool (0x7f2f3db91930) 0 + vptr=((& QThreadPool::_ZTV11QThreadPool) + 16u) + QObject (0x7f2f3db919a0) 0 + primary-for QThreadPool (0x7f2f3db91930) + +Class QWaitCondition + size=8 align=8 + base size=8 base align=8 +QWaitCondition (0x7f2f3dba4ee0) 0 + +Class QSemaphore + size=8 align=8 + base size=8 base align=8 +QSemaphore (0x7f2f3dbaf460) 0 + +Class QtConcurrent::ThreadEngineBarrier + size=24 align=8 + base size=24 base align=8 +QtConcurrent::ThreadEngineBarrier (0x7f2f3dbaf9a0) 0 + +Vtable for QtConcurrent::ThreadEngineBase +QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent16ThreadEngineBaseE) +16 QtConcurrent::ThreadEngineBase::run +24 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +32 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +40 QtConcurrent::ThreadEngineBase::start +48 QtConcurrent::ThreadEngineBase::finish +56 QtConcurrent::ThreadEngineBase::threadFunction +64 QtConcurrent::ThreadEngineBase::shouldStartThread +72 QtConcurrent::ThreadEngineBase::shouldThrottleThread +80 __cxa_pure_virtual + +Class QtConcurrent::ThreadEngineBase + size=64 align=8 + base size=64 base align=8 +QtConcurrent::ThreadEngineBase (0x7f2f3dbafa80) 0 + vptr=((& QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE) + 16u) + QRunnable (0x7f2f3dbafaf0) 0 + primary-for QtConcurrent::ThreadEngineBase (0x7f2f3dbafa80) + +VTT for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTTN12QtConcurrent12ThreadEngineIvEE: 2u entries +0 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 24u) +8 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 136u) + +Class QtConcurrent::BlockSizeManager + size=96 align=8 + base size=92 base align=8 +QtConcurrent::BlockSizeManager (0x7f2f3dbf9ee0) 0 + +Vtable for QFactoryInterface +QFactoryInterface::_ZTV17QFactoryInterface: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QFactoryInterface) +16 QFactoryInterface::~QFactoryInterface +24 QFactoryInterface::~QFactoryInterface +32 __cxa_pure_virtual + +Class QFactoryInterface + size=8 align=8 + base size=8 base align=8 +QFactoryInterface (0x7f2f3d6a3d20) 0 nearly-empty + vptr=((& QFactoryInterface::_ZTV17QFactoryInterface) + 16u) + +Vtable for QTextCodecFactoryInterface +QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QTextCodecFactoryInterface) +16 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +24 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QTextCodecFactoryInterface + size=8 align=8 + base size=8 base align=8 +QTextCodecFactoryInterface (0x7f2f3d6d6000) 0 nearly-empty + vptr=((& QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface) + 16u) + QFactoryInterface (0x7f2f3d6d6070) 0 nearly-empty + primary-for QTextCodecFactoryInterface (0x7f2f3d6d6000) + +Vtable for QTextCodecPlugin +QTextCodecPlugin::_ZTV16QTextCodecPlugin: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QTextCodecPlugin) +16 QTextCodecPlugin::metaObject +24 QTextCodecPlugin::qt_metacast +32 QTextCodecPlugin::qt_metacall +40 QTextCodecPlugin::~QTextCodecPlugin +48 QTextCodecPlugin::~QTextCodecPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 QTextCodecPlugin::keys +160 QTextCodecPlugin::create +168 (int (*)(...))-0x00000000000000010 +176 (int (*)(...))(& _ZTI16QTextCodecPlugin) +184 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD1Ev +192 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD0Ev +200 QTextCodecPlugin::_ZThn16_NK16QTextCodecPlugin4keysEv +208 QTextCodecPlugin::_ZThn16_N16QTextCodecPlugin6createERK7QString + +Class QTextCodecPlugin + size=24 align=8 + base size=24 base align=8 +QTextCodecPlugin (0x7f2f3d6e0580) 0 + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 16u) + QObject (0x7f2f3d6d6a80) 0 + primary-for QTextCodecPlugin (0x7f2f3d6e0580) + QTextCodecFactoryInterface (0x7f2f3d6d6af0) 16 nearly-empty + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 184u) + QFactoryInterface (0x7f2f3d6d6b60) 16 nearly-empty + primary-for QTextCodecFactoryInterface (0x7f2f3d6d6af0) + +Class QLibraryInfo + size=1 align=1 + base size=0 base align=1 +QLibraryInfo (0x7f2f3d72e150) 0 empty + +Vtable for QEventLoop +QEventLoop::_ZTV10QEventLoop: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QEventLoop) +16 QEventLoop::metaObject +24 QEventLoop::qt_metacast +32 QEventLoop::qt_metacall +40 QEventLoop::~QEventLoop +48 QEventLoop::~QEventLoop +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QEventLoop + size=16 align=8 + base size=16 base align=8 +QEventLoop (0x7f2f3d72e2a0) 0 + vptr=((& QEventLoop::_ZTV10QEventLoop) + 16u) + QObject (0x7f2f3d72e310) 0 + primary-for QEventLoop (0x7f2f3d72e2a0) + +Vtable for QAbstractEventDispatcher +QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QAbstractEventDispatcher) +16 QAbstractEventDispatcher::metaObject +24 QAbstractEventDispatcher::qt_metacast +32 QAbstractEventDispatcher::qt_metacall +40 QAbstractEventDispatcher::~QAbstractEventDispatcher +48 QAbstractEventDispatcher::~QAbstractEventDispatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 QAbstractEventDispatcher::startingUp +208 QAbstractEventDispatcher::closingDown + +Class QAbstractEventDispatcher + size=16 align=8 + base size=16 base align=8 +QAbstractEventDispatcher (0x7f2f3d768bd0) 0 + vptr=((& QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher) + 16u) + QObject (0x7f2f3d768c40) 0 + primary-for QAbstractEventDispatcher (0x7f2f3d768bd0) + +Class QModelIndex + size=24 align=8 + base size=24 base align=8 +QModelIndex (0x7f2f3d58ea80) 0 + +Class QPersistentModelIndex + size=8 align=8 + base size=8 base align=8 +QPersistentModelIndex (0x7f2f3d5bb540) 0 + +Vtable for QAbstractItemModel +QAbstractItemModel::_ZTV18QAbstractItemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractItemModel) +16 QAbstractItemModel::metaObject +24 QAbstractItemModel::qt_metacast +32 QAbstractItemModel::qt_metacall +40 QAbstractItemModel::~QAbstractItemModel +48 QAbstractItemModel::~QAbstractItemModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractItemModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractItemModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractItemModel + size=16 align=8 + base size=16 base align=8 +QAbstractItemModel (0x7f2f3d5c3850) 0 + vptr=((& QAbstractItemModel::_ZTV18QAbstractItemModel) + 16u) + QObject (0x7f2f3d5c38c0) 0 + primary-for QAbstractItemModel (0x7f2f3d5c3850) + +Vtable for QAbstractTableModel +QAbstractTableModel::_ZTV19QAbstractTableModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractTableModel) +16 QAbstractTableModel::metaObject +24 QAbstractTableModel::qt_metacast +32 QAbstractTableModel::qt_metacall +40 QAbstractTableModel::~QAbstractTableModel +48 QAbstractTableModel::~QAbstractTableModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractTableModel::index +120 QAbstractTableModel::parent +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractTableModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractTableModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractTableModel + size=16 align=8 + base size=16 base align=8 +QAbstractTableModel (0x7f2f3d61fb60) 0 + vptr=((& QAbstractTableModel::_ZTV19QAbstractTableModel) + 16u) + QAbstractItemModel (0x7f2f3d61fbd0) 0 + primary-for QAbstractTableModel (0x7f2f3d61fb60) + QObject (0x7f2f3d61fc40) 0 + primary-for QAbstractItemModel (0x7f2f3d61fbd0) + +Vtable for QAbstractListModel +QAbstractListModel::_ZTV18QAbstractListModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractListModel) +16 QAbstractListModel::metaObject +24 QAbstractListModel::qt_metacast +32 QAbstractListModel::qt_metacall +40 QAbstractListModel::~QAbstractListModel +48 QAbstractListModel::~QAbstractListModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractListModel::index +120 QAbstractListModel::parent +128 __cxa_pure_virtual +136 QAbstractListModel::columnCount +144 QAbstractListModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractListModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractListModel + size=16 align=8 + base size=16 base align=8 +QAbstractListModel (0x7f2f3d63b0e0) 0 + vptr=((& QAbstractListModel::_ZTV18QAbstractListModel) + 16u) + QAbstractItemModel (0x7f2f3d63b150) 0 + primary-for QAbstractListModel (0x7f2f3d63b0e0) + QObject (0x7f2f3d63b1c0) 0 + primary-for QAbstractItemModel (0x7f2f3d63b150) + +Class QBasicTimer + size=4 align=4 + base size=4 base align=4 +QBasicTimer (0x7f2f3d66c230) 0 + +Vtable for QCoreApplication +QCoreApplication::_ZTV16QCoreApplication: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QCoreApplication) +16 QCoreApplication::metaObject +24 QCoreApplication::qt_metacast +32 QCoreApplication::qt_metacall +40 QCoreApplication::~QCoreApplication +48 QCoreApplication::~QCoreApplication +56 QCoreApplication::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCoreApplication::notify +120 QCoreApplication::compressEvent + +Class QCoreApplication + size=16 align=8 + base size=16 base align=8 +QCoreApplication (0x7f2f3d677620) 0 + vptr=((& QCoreApplication::_ZTV16QCoreApplication) + 16u) + QObject (0x7f2f3d677690) 0 + primary-for QCoreApplication (0x7f2f3d677620) + +Class __exception + size=40 align=8 + base size=40 base align=8 +__exception (0x7f2f3d4ac310) 0 + +Class QMetaMethod + size=16 align=8 + base size=12 base align=8 +QMetaMethod (0x7f2f3d518770) 0 + +Class QMetaEnum + size=16 align=8 + base size=12 base align=8 +QMetaEnum (0x7f2f3d531bd0) 0 + +Class QMetaProperty + size=32 align=8 + base size=32 base align=8 +QMetaProperty (0x7f2f3d540930) 0 + +Class QMetaClassInfo + size=16 align=8 + base size=12 base align=8 +QMetaClassInfo (0x7f2f3d550000) 0 + +Vtable for QMimeData +QMimeData::_ZTV9QMimeData: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QMimeData) +16 QMimeData::metaObject +24 QMimeData::qt_metacast +32 QMimeData::qt_metacall +40 QMimeData::~QMimeData +48 QMimeData::~QMimeData +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMimeData::hasFormat +120 QMimeData::formats +128 QMimeData::retrieveData + +Class QMimeData + size=16 align=8 + base size=16 base align=8 +QMimeData (0x7f2f3d550af0) 0 + vptr=((& QMimeData::_ZTV9QMimeData) + 16u) + QObject (0x7f2f3d550b60) 0 + primary-for QMimeData (0x7f2f3d550af0) + +Vtable for QObjectCleanupHandler +QObjectCleanupHandler::_ZTV21QObjectCleanupHandler: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QObjectCleanupHandler) +16 QObjectCleanupHandler::metaObject +24 QObjectCleanupHandler::qt_metacast +32 QObjectCleanupHandler::qt_metacall +40 QObjectCleanupHandler::~QObjectCleanupHandler +48 QObjectCleanupHandler::~QObjectCleanupHandler +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObjectCleanupHandler + size=24 align=8 + base size=24 base align=8 +QObjectCleanupHandler (0x7f2f3d574380) 0 + vptr=((& QObjectCleanupHandler::_ZTV21QObjectCleanupHandler) + 16u) + QObject (0x7f2f3d5743f0) 0 + primary-for QObjectCleanupHandler (0x7f2f3d574380) + +Vtable for QSharedMemory +QSharedMemory::_ZTV13QSharedMemory: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSharedMemory) +16 QSharedMemory::metaObject +24 QSharedMemory::qt_metacast +32 QSharedMemory::qt_metacall +40 QSharedMemory::~QSharedMemory +48 QSharedMemory::~QSharedMemory +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSharedMemory + size=16 align=8 + base size=16 base align=8 +QSharedMemory (0x7f2f3d5884d0) 0 + vptr=((& QSharedMemory::_ZTV13QSharedMemory) + 16u) + QObject (0x7f2f3d588540) 0 + primary-for QSharedMemory (0x7f2f3d5884d0) + +Vtable for QSignalMapper +QSignalMapper::_ZTV13QSignalMapper: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSignalMapper) +16 QSignalMapper::metaObject +24 QSignalMapper::qt_metacast +32 QSignalMapper::qt_metacall +40 QSignalMapper::~QSignalMapper +48 QSignalMapper::~QSignalMapper +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSignalMapper + size=16 align=8 + base size=16 base align=8 +QSignalMapper (0x7f2f3d3a42a0) 0 + vptr=((& QSignalMapper::_ZTV13QSignalMapper) + 16u) + QObject (0x7f2f3d3a4310) 0 + primary-for QSignalMapper (0x7f2f3d3a42a0) + +Vtable for QSocketNotifier +QSocketNotifier::_ZTV15QSocketNotifier: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSocketNotifier) +16 QSocketNotifier::metaObject +24 QSocketNotifier::qt_metacast +32 QSocketNotifier::qt_metacall +40 QSocketNotifier::~QSocketNotifier +48 QSocketNotifier::~QSocketNotifier +56 QSocketNotifier::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSocketNotifier + size=32 align=8 + base size=25 base align=8 +QSocketNotifier (0x7f2f3d3bd690) 0 + vptr=((& QSocketNotifier::_ZTV15QSocketNotifier) + 16u) + QObject (0x7f2f3d3bd700) 0 + primary-for QSocketNotifier (0x7f2f3d3bd690) + +Class QSystemSemaphore + size=8 align=8 + base size=8 base align=8 +QSystemSemaphore (0x7f2f3d3d6a10) 0 + +Vtable for QTimer +QTimer::_ZTV6QTimer: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QTimer) +16 QTimer::metaObject +24 QTimer::qt_metacast +32 QTimer::qt_metacall +40 QTimer::~QTimer +48 QTimer::~QTimer +56 QObject::event +64 QObject::eventFilter +72 QTimer::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTimer + size=32 align=8 + base size=29 base align=8 +QTimer (0x7f2f3d3e2460) 0 + vptr=((& QTimer::_ZTV6QTimer) + 16u) + QObject (0x7f2f3d3e24d0) 0 + primary-for QTimer (0x7f2f3d3e2460) + +Vtable for QTranslator +QTranslator::_ZTV11QTranslator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTranslator) +16 QTranslator::metaObject +24 QTranslator::qt_metacast +32 QTranslator::qt_metacall +40 QTranslator::~QTranslator +48 QTranslator::~QTranslator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTranslator::translate +120 QTranslator::isEmpty + +Class QTranslator + size=16 align=8 + base size=16 base align=8 +QTranslator (0x7f2f3d4059a0) 0 + vptr=((& QTranslator::_ZTV11QTranslator) + 16u) + QObject (0x7f2f3d405a10) 0 + primary-for QTranslator (0x7f2f3d4059a0) + +Vtable for QLibrary +QLibrary::_ZTV8QLibrary: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QLibrary) +16 QLibrary::metaObject +24 QLibrary::qt_metacast +32 QLibrary::qt_metacall +40 QLibrary::~QLibrary +48 QLibrary::~QLibrary +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QLibrary + size=32 align=8 + base size=25 base align=8 +QLibrary (0x7f2f3d422930) 0 + vptr=((& QLibrary::_ZTV8QLibrary) + 16u) + QObject (0x7f2f3d4229a0) 0 + primary-for QLibrary (0x7f2f3d422930) + +Vtable for QPluginLoader +QPluginLoader::_ZTV13QPluginLoader: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QPluginLoader) +16 QPluginLoader::metaObject +24 QPluginLoader::qt_metacast +32 QPluginLoader::qt_metacall +40 QPluginLoader::~QPluginLoader +48 QPluginLoader::~QPluginLoader +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QPluginLoader + size=32 align=8 + base size=25 base align=8 +QPluginLoader (0x7f2f3d46e3f0) 0 + vptr=((& QPluginLoader::_ZTV13QPluginLoader) + 16u) + QObject (0x7f2f3d46e460) 0 + primary-for QPluginLoader (0x7f2f3d46e3f0) + +Class QUuid + size=16 align=4 + base size=16 base align=4 +QUuid (0x7f2f3d47cb60) 0 + +Class QReadWriteLock + size=8 align=8 + base size=8 base align=8 +QReadWriteLock (0x7f2f3d2a64d0) 0 + +Class QReadLocker + size=8 align=8 + base size=8 base align=8 +QReadLocker (0x7f2f3d2a6b60) 0 + +Class QWriteLocker + size=8 align=8 + base size=8 base align=8 +QWriteLocker (0x7f2f3d2c4ee0) 0 + +Class QThreadStorageData + size=4 align=4 + base size=4 base align=4 +QThreadStorageData (0x7f2f3d2de2a0) 0 + +Vtable for QAbstractAnimation +QAbstractAnimation::_ZTV18QAbstractAnimation: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractAnimation) +16 QAbstractAnimation::metaObject +24 QAbstractAnimation::qt_metacast +32 QAbstractAnimation::qt_metacall +40 QAbstractAnimation::~QAbstractAnimation +48 QAbstractAnimation::~QAbstractAnimation +56 QAbstractAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAbstractAnimation::updateState +136 QAbstractAnimation::updateDirection + +Class QAbstractAnimation + size=16 align=8 + base size=16 base align=8 +QAbstractAnimation (0x7f2f3d2dea10) 0 + vptr=((& QAbstractAnimation::_ZTV18QAbstractAnimation) + 16u) + QObject (0x7f2f3d2dea80) 0 + primary-for QAbstractAnimation (0x7f2f3d2dea10) + +Vtable for QAnimationGroup +QAnimationGroup::_ZTV15QAnimationGroup: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QAnimationGroup) +16 QAnimationGroup::metaObject +24 QAnimationGroup::qt_metacast +32 QAnimationGroup::qt_metacall +40 QAnimationGroup::~QAnimationGroup +48 QAnimationGroup::~QAnimationGroup +56 QAnimationGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAbstractAnimation::updateState +136 QAbstractAnimation::updateDirection + +Class QAnimationGroup + size=16 align=8 + base size=16 base align=8 +QAnimationGroup (0x7f2f3d316150) 0 + vptr=((& QAnimationGroup::_ZTV15QAnimationGroup) + 16u) + QAbstractAnimation (0x7f2f3d3161c0) 0 + primary-for QAnimationGroup (0x7f2f3d316150) + QObject (0x7f2f3d316230) 0 + primary-for QAbstractAnimation (0x7f2f3d3161c0) + +Vtable for QParallelAnimationGroup +QParallelAnimationGroup::_ZTV23QParallelAnimationGroup: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QParallelAnimationGroup) +16 QParallelAnimationGroup::metaObject +24 QParallelAnimationGroup::qt_metacast +32 QParallelAnimationGroup::qt_metacall +40 QParallelAnimationGroup::~QParallelAnimationGroup +48 QParallelAnimationGroup::~QParallelAnimationGroup +56 QParallelAnimationGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QParallelAnimationGroup::duration +120 QParallelAnimationGroup::updateCurrentTime +128 QParallelAnimationGroup::updateState +136 QParallelAnimationGroup::updateDirection + +Class QParallelAnimationGroup + size=16 align=8 + base size=16 base align=8 +QParallelAnimationGroup (0x7f2f3d32e000) 0 + vptr=((& QParallelAnimationGroup::_ZTV23QParallelAnimationGroup) + 16u) + QAnimationGroup (0x7f2f3d32e070) 0 + primary-for QParallelAnimationGroup (0x7f2f3d32e000) + QAbstractAnimation (0x7f2f3d32e0e0) 0 + primary-for QAnimationGroup (0x7f2f3d32e070) + QObject (0x7f2f3d32e150) 0 + primary-for QAbstractAnimation (0x7f2f3d32e0e0) + +Vtable for QPauseAnimation +QPauseAnimation::_ZTV15QPauseAnimation: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QPauseAnimation) +16 QPauseAnimation::metaObject +24 QPauseAnimation::qt_metacast +32 QPauseAnimation::qt_metacall +40 QPauseAnimation::~QPauseAnimation +48 QPauseAnimation::~QPauseAnimation +56 QPauseAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QPauseAnimation::duration +120 QPauseAnimation::updateCurrentTime +128 QAbstractAnimation::updateState +136 QAbstractAnimation::updateDirection + +Class QPauseAnimation + size=16 align=8 + base size=16 base align=8 +QPauseAnimation (0x7f2f3d33ce70) 0 + vptr=((& QPauseAnimation::_ZTV15QPauseAnimation) + 16u) + QAbstractAnimation (0x7f2f3d33cee0) 0 + primary-for QPauseAnimation (0x7f2f3d33ce70) + QObject (0x7f2f3d33cf50) 0 + primary-for QAbstractAnimation (0x7f2f3d33cee0) + +Vtable for QVariantAnimation +QVariantAnimation::_ZTV17QVariantAnimation: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QVariantAnimation) +16 QVariantAnimation::metaObject +24 QVariantAnimation::qt_metacast +32 QVariantAnimation::qt_metacall +40 QVariantAnimation::~QVariantAnimation +48 QVariantAnimation::~QVariantAnimation +56 QVariantAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QVariantAnimation::duration +120 QVariantAnimation::updateCurrentTime +128 QVariantAnimation::updateState +136 QAbstractAnimation::updateDirection +144 __cxa_pure_virtual +152 QVariantAnimation::interpolated + +Class QVariantAnimation + size=16 align=8 + base size=16 base align=8 +QVariantAnimation (0x7f2f3d3588c0) 0 + vptr=((& QVariantAnimation::_ZTV17QVariantAnimation) + 16u) + QAbstractAnimation (0x7f2f3d358930) 0 + primary-for QVariantAnimation (0x7f2f3d3588c0) + QObject (0x7f2f3d3589a0) 0 + primary-for QAbstractAnimation (0x7f2f3d358930) + +Vtable for QPropertyAnimation +QPropertyAnimation::_ZTV18QPropertyAnimation: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QPropertyAnimation) +16 QPropertyAnimation::metaObject +24 QPropertyAnimation::qt_metacast +32 QPropertyAnimation::qt_metacall +40 QPropertyAnimation::~QPropertyAnimation +48 QPropertyAnimation::~QPropertyAnimation +56 QPropertyAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QVariantAnimation::duration +120 QVariantAnimation::updateCurrentTime +128 QPropertyAnimation::updateState +136 QAbstractAnimation::updateDirection +144 QPropertyAnimation::updateCurrentValue +152 QVariantAnimation::interpolated + +Class QPropertyAnimation + size=16 align=8 + base size=16 base align=8 +QPropertyAnimation (0x7f2f3d376b60) 0 + vptr=((& QPropertyAnimation::_ZTV18QPropertyAnimation) + 16u) + QVariantAnimation (0x7f2f3d376bd0) 0 + primary-for QPropertyAnimation (0x7f2f3d376b60) + QAbstractAnimation (0x7f2f3d376c40) 0 + primary-for QVariantAnimation (0x7f2f3d376bd0) + QObject (0x7f2f3d376cb0) 0 + primary-for QAbstractAnimation (0x7f2f3d376c40) + +Vtable for QSequentialAnimationGroup +QSequentialAnimationGroup::_ZTV25QSequentialAnimationGroup: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QSequentialAnimationGroup) +16 QSequentialAnimationGroup::metaObject +24 QSequentialAnimationGroup::qt_metacast +32 QSequentialAnimationGroup::qt_metacall +40 QSequentialAnimationGroup::~QSequentialAnimationGroup +48 QSequentialAnimationGroup::~QSequentialAnimationGroup +56 QSequentialAnimationGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QSequentialAnimationGroup::duration +120 QSequentialAnimationGroup::updateCurrentTime +128 QSequentialAnimationGroup::updateState +136 QSequentialAnimationGroup::updateDirection + +Class QSequentialAnimationGroup + size=16 align=8 + base size=16 base align=8 +QSequentialAnimationGroup (0x7f2f3d191b60) 0 + vptr=((& QSequentialAnimationGroup::_ZTV25QSequentialAnimationGroup) + 16u) + QAnimationGroup (0x7f2f3d191bd0) 0 + primary-for QSequentialAnimationGroup (0x7f2f3d191b60) + QAbstractAnimation (0x7f2f3d191c40) 0 + primary-for QAnimationGroup (0x7f2f3d191bd0) + QObject (0x7f2f3d191cb0) 0 + primary-for QAbstractAnimation (0x7f2f3d191c40) + +Class QColor + size=16 align=4 + base size=14 base align=4 +QColor (0x7f2f3d1b9620) 0 + +Class QRegion::QRegionData + size=32 align=8 + base size=32 base align=8 +QRegion::QRegionData (0x7f2f3d2335b0) 0 + +Class QRegion + size=8 align=8 + base size=8 base align=8 +QRegion (0x7f2f3d20ccb0) 0 + +Class QKeySequence + size=8 align=8 + base size=8 base align=8 +QKeySequence (0x7f2f3d247e00) 0 + +Vtable for QMimeSource +QMimeSource::_ZTV11QMimeSource: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMimeSource) +16 QMimeSource::~QMimeSource +24 QMimeSource::~QMimeSource +32 __cxa_pure_virtual +40 QMimeSource::provides +48 __cxa_pure_virtual + +Class QMimeSource + size=8 align=8 + base size=8 base align=8 +QMimeSource (0x7f2f3d284770) 0 nearly-empty + vptr=((& QMimeSource::_ZTV11QMimeSource) + 16u) + +Vtable for QDrag +QDrag::_ZTV5QDrag: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QDrag) +16 QDrag::metaObject +24 QDrag::qt_metacast +32 QDrag::qt_metacall +40 QDrag::~QDrag +48 QDrag::~QDrag +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QDrag + size=16 align=8 + base size=16 base align=8 +QDrag (0x7f2f3d2848c0) 0 + vptr=((& QDrag::_ZTV5QDrag) + 16u) + QObject (0x7f2f3d284930) 0 + primary-for QDrag (0x7f2f3d2848c0) + +Vtable for QInputEvent +QInputEvent::_ZTV11QInputEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QInputEvent) +16 QInputEvent::~QInputEvent +24 QInputEvent::~QInputEvent + +Class QInputEvent + size=24 align=8 + base size=24 base align=8 +QInputEvent (0x7f2f3d0ad070) 0 + vptr=((& QInputEvent::_ZTV11QInputEvent) + 16u) + QEvent (0x7f2f3d0ad0e0) 0 + primary-for QInputEvent (0x7f2f3d0ad070) + +Vtable for QMouseEvent +QMouseEvent::_ZTV11QMouseEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMouseEvent) +16 QMouseEvent::~QMouseEvent +24 QMouseEvent::~QMouseEvent + +Class QMouseEvent + size=48 align=8 + base size=48 base align=8 +QMouseEvent (0x7f2f3d0ad930) 0 + vptr=((& QMouseEvent::_ZTV11QMouseEvent) + 16u) + QInputEvent (0x7f2f3d0ad9a0) 0 + primary-for QMouseEvent (0x7f2f3d0ad930) + QEvent (0x7f2f3d0ada10) 0 + primary-for QInputEvent (0x7f2f3d0ad9a0) + +Vtable for QHoverEvent +QHoverEvent::_ZTV11QHoverEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QHoverEvent) +16 QHoverEvent::~QHoverEvent +24 QHoverEvent::~QHoverEvent + +Class QHoverEvent + size=40 align=8 + base size=36 base align=8 +QHoverEvent (0x7f2f3d0d9700) 0 + vptr=((& QHoverEvent::_ZTV11QHoverEvent) + 16u) + QEvent (0x7f2f3d0d9770) 0 + primary-for QHoverEvent (0x7f2f3d0d9700) + +Vtable for QWheelEvent +QWheelEvent::_ZTV11QWheelEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QWheelEvent) +16 QWheelEvent::~QWheelEvent +24 QWheelEvent::~QWheelEvent + +Class QWheelEvent + size=56 align=8 + base size=52 base align=8 +QWheelEvent (0x7f2f3d0d9e70) 0 + vptr=((& QWheelEvent::_ZTV11QWheelEvent) + 16u) + QInputEvent (0x7f2f3d0d9ee0) 0 + primary-for QWheelEvent (0x7f2f3d0d9e70) + QEvent (0x7f2f3d0d9f50) 0 + primary-for QInputEvent (0x7f2f3d0d9ee0) + +Vtable for QTabletEvent +QTabletEvent::_ZTV12QTabletEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTabletEvent) +16 QTabletEvent::~QTabletEvent +24 QTabletEvent::~QTabletEvent + +Class QTabletEvent + size=120 align=8 + base size=120 base align=8 +QTabletEvent (0x7f2f3d0f4c40) 0 + vptr=((& QTabletEvent::_ZTV12QTabletEvent) + 16u) + QInputEvent (0x7f2f3d0f4cb0) 0 + primary-for QTabletEvent (0x7f2f3d0f4c40) + QEvent (0x7f2f3d0f4d20) 0 + primary-for QInputEvent (0x7f2f3d0f4cb0) + +Vtable for QKeyEvent +QKeyEvent::_ZTV9QKeyEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QKeyEvent) +16 QKeyEvent::~QKeyEvent +24 QKeyEvent::~QKeyEvent + +Class QKeyEvent + size=40 align=8 + base size=39 base align=8 +QKeyEvent (0x7f2f3d112f50) 0 + vptr=((& QKeyEvent::_ZTV9QKeyEvent) + 16u) + QInputEvent (0x7f2f3d118000) 0 + primary-for QKeyEvent (0x7f2f3d112f50) + QEvent (0x7f2f3d118070) 0 + primary-for QInputEvent (0x7f2f3d118000) + +Vtable for QFocusEvent +QFocusEvent::_ZTV11QFocusEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFocusEvent) +16 QFocusEvent::~QFocusEvent +24 QFocusEvent::~QFocusEvent + +Class QFocusEvent + size=24 align=8 + base size=24 base align=8 +QFocusEvent (0x7f2f3d13a930) 0 + vptr=((& QFocusEvent::_ZTV11QFocusEvent) + 16u) + QEvent (0x7f2f3d13a9a0) 0 + primary-for QFocusEvent (0x7f2f3d13a930) + +Vtable for QPaintEvent +QPaintEvent::_ZTV11QPaintEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QPaintEvent) +16 QPaintEvent::~QPaintEvent +24 QPaintEvent::~QPaintEvent + +Class QPaintEvent + size=56 align=8 + base size=49 base align=8 +QPaintEvent (0x7f2f3d148380) 0 + vptr=((& QPaintEvent::_ZTV11QPaintEvent) + 16u) + QEvent (0x7f2f3d1483f0) 0 + primary-for QPaintEvent (0x7f2f3d148380) + +Vtable for QUpdateLaterEvent +QUpdateLaterEvent::_ZTV17QUpdateLaterEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QUpdateLaterEvent) +16 QUpdateLaterEvent::~QUpdateLaterEvent +24 QUpdateLaterEvent::~QUpdateLaterEvent + +Class QUpdateLaterEvent + size=32 align=8 + base size=32 base align=8 +QUpdateLaterEvent (0x7f2f3d155000) 0 + vptr=((& QUpdateLaterEvent::_ZTV17QUpdateLaterEvent) + 16u) + QEvent (0x7f2f3d155070) 0 + primary-for QUpdateLaterEvent (0x7f2f3d155000) + +Vtable for QMoveEvent +QMoveEvent::_ZTV10QMoveEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QMoveEvent) +16 QMoveEvent::~QMoveEvent +24 QMoveEvent::~QMoveEvent + +Class QMoveEvent + size=40 align=8 + base size=36 base align=8 +QMoveEvent (0x7f2f3d155460) 0 + vptr=((& QMoveEvent::_ZTV10QMoveEvent) + 16u) + QEvent (0x7f2f3d1554d0) 0 + primary-for QMoveEvent (0x7f2f3d155460) + +Vtable for QResizeEvent +QResizeEvent::_ZTV12QResizeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QResizeEvent) +16 QResizeEvent::~QResizeEvent +24 QResizeEvent::~QResizeEvent + +Class QResizeEvent + size=40 align=8 + base size=36 base align=8 +QResizeEvent (0x7f2f3d155af0) 0 + vptr=((& QResizeEvent::_ZTV12QResizeEvent) + 16u) + QEvent (0x7f2f3d155b60) 0 + primary-for QResizeEvent (0x7f2f3d155af0) + +Vtable for QCloseEvent +QCloseEvent::_ZTV11QCloseEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QCloseEvent) +16 QCloseEvent::~QCloseEvent +24 QCloseEvent::~QCloseEvent + +Class QCloseEvent + size=24 align=8 + base size=20 base align=8 +QCloseEvent (0x7f2f3d166070) 0 + vptr=((& QCloseEvent::_ZTV11QCloseEvent) + 16u) + QEvent (0x7f2f3d1660e0) 0 + primary-for QCloseEvent (0x7f2f3d166070) + +Vtable for QIconDragEvent +QIconDragEvent::_ZTV14QIconDragEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QIconDragEvent) +16 QIconDragEvent::~QIconDragEvent +24 QIconDragEvent::~QIconDragEvent + +Class QIconDragEvent + size=24 align=8 + base size=20 base align=8 +QIconDragEvent (0x7f2f3d1662a0) 0 + vptr=((& QIconDragEvent::_ZTV14QIconDragEvent) + 16u) + QEvent (0x7f2f3d166310) 0 + primary-for QIconDragEvent (0x7f2f3d1662a0) + +Vtable for QShowEvent +QShowEvent::_ZTV10QShowEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QShowEvent) +16 QShowEvent::~QShowEvent +24 QShowEvent::~QShowEvent + +Class QShowEvent + size=24 align=8 + base size=20 base align=8 +QShowEvent (0x7f2f3d1664d0) 0 + vptr=((& QShowEvent::_ZTV10QShowEvent) + 16u) + QEvent (0x7f2f3d166540) 0 + primary-for QShowEvent (0x7f2f3d1664d0) + +Vtable for QHideEvent +QHideEvent::_ZTV10QHideEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QHideEvent) +16 QHideEvent::~QHideEvent +24 QHideEvent::~QHideEvent + +Class QHideEvent + size=24 align=8 + base size=20 base align=8 +QHideEvent (0x7f2f3d166700) 0 + vptr=((& QHideEvent::_ZTV10QHideEvent) + 16u) + QEvent (0x7f2f3d166770) 0 + primary-for QHideEvent (0x7f2f3d166700) + +Vtable for QContextMenuEvent +QContextMenuEvent::_ZTV17QContextMenuEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QContextMenuEvent) +16 QContextMenuEvent::~QContextMenuEvent +24 QContextMenuEvent::~QContextMenuEvent + +Class QContextMenuEvent + size=48 align=8 + base size=41 base align=8 +QContextMenuEvent (0x7f2f3d166930) 0 + vptr=((& QContextMenuEvent::_ZTV17QContextMenuEvent) + 16u) + QInputEvent (0x7f2f3d1669a0) 0 + primary-for QContextMenuEvent (0x7f2f3d166930) + QEvent (0x7f2f3d166a10) 0 + primary-for QInputEvent (0x7f2f3d1669a0) + +Class QInputMethodEvent::Attribute + size=32 align=8 + base size=32 base align=8 +QInputMethodEvent::Attribute (0x7f2f3d17f4d0) 0 + +Vtable for QInputMethodEvent +QInputMethodEvent::_ZTV17QInputMethodEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QInputMethodEvent) +16 QInputMethodEvent::~QInputMethodEvent +24 QInputMethodEvent::~QInputMethodEvent + +Class QInputMethodEvent + size=56 align=8 + base size=56 base align=8 +QInputMethodEvent (0x7f2f3d17f3f0) 0 + vptr=((& QInputMethodEvent::_ZTV17QInputMethodEvent) + 16u) + QEvent (0x7f2f3d17f460) 0 + primary-for QInputMethodEvent (0x7f2f3d17f3f0) + +Vtable for QDropEvent +QDropEvent::_ZTV10QDropEvent: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QDropEvent) +16 QDropEvent::~QDropEvent +24 QDropEvent::~QDropEvent +32 QDropEvent::format +40 QDropEvent::encodedData +48 QDropEvent::provides +56 (int (*)(...))-0x00000000000000018 +64 (int (*)(...))(& _ZTI10QDropEvent) +72 QDropEvent::_ZThn24_N10QDropEventD1Ev +80 QDropEvent::_ZThn24_N10QDropEventD0Ev +88 QDropEvent::_ZThn24_NK10QDropEvent6formatEi +96 QDropEvent::_ZThn24_NK10QDropEvent8providesEPKc +104 QDropEvent::_ZThn24_NK10QDropEvent11encodedDataEPKc + +Class QDropEvent + size=80 align=8 + base size=80 base align=8 +QDropEvent (0x7f2f3cfba200) 0 + vptr=((& QDropEvent::_ZTV10QDropEvent) + 16u) + QEvent (0x7f2f3cfb8bd0) 0 + primary-for QDropEvent (0x7f2f3cfba200) + QMimeSource (0x7f2f3cfb8c40) 24 nearly-empty + vptr=((& QDropEvent::_ZTV10QDropEvent) + 72u) + +Vtable for QDragMoveEvent +QDragMoveEvent::_ZTV14QDragMoveEvent: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QDragMoveEvent) +16 QDragMoveEvent::~QDragMoveEvent +24 QDragMoveEvent::~QDragMoveEvent +32 QDropEvent::format +40 QDropEvent::encodedData +48 QDropEvent::provides +56 (int (*)(...))-0x00000000000000018 +64 (int (*)(...))(& _ZTI14QDragMoveEvent) +72 QDragMoveEvent::_ZThn24_N14QDragMoveEventD1Ev +80 QDragMoveEvent::_ZThn24_N14QDragMoveEventD0Ev +88 QDropEvent::_ZThn24_NK10QDropEvent6formatEi +96 QDropEvent::_ZThn24_NK10QDropEvent8providesEPKc +104 QDropEvent::_ZThn24_NK10QDropEvent11encodedDataEPKc + +Class QDragMoveEvent + size=96 align=8 + base size=96 base align=8 +QDragMoveEvent (0x7f2f3cfd4930) 0 + vptr=((& QDragMoveEvent::_ZTV14QDragMoveEvent) + 16u) + QDropEvent (0x7f2f3cfd0900) 0 + primary-for QDragMoveEvent (0x7f2f3cfd4930) + QEvent (0x7f2f3cfd49a0) 0 + primary-for QDropEvent (0x7f2f3cfd0900) + QMimeSource (0x7f2f3cfd4a10) 24 nearly-empty + vptr=((& QDragMoveEvent::_ZTV14QDragMoveEvent) + 72u) + +Vtable for QDragEnterEvent +QDragEnterEvent::_ZTV15QDragEnterEvent: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QDragEnterEvent) +16 QDragEnterEvent::~QDragEnterEvent +24 QDragEnterEvent::~QDragEnterEvent +32 QDropEvent::format +40 QDropEvent::encodedData +48 QDropEvent::provides +56 (int (*)(...))-0x00000000000000018 +64 (int (*)(...))(& _ZTI15QDragEnterEvent) +72 QDragEnterEvent::_ZThn24_N15QDragEnterEventD1Ev +80 QDragEnterEvent::_ZThn24_N15QDragEnterEventD0Ev +88 QDropEvent::_ZThn24_NK10QDropEvent6formatEi +96 QDropEvent::_ZThn24_NK10QDropEvent8providesEPKc +104 QDropEvent::_ZThn24_NK10QDropEvent11encodedDataEPKc + +Class QDragEnterEvent + size=96 align=8 + base size=96 base align=8 +QDragEnterEvent (0x7f2f3cfe30e0) 0 + vptr=((& QDragEnterEvent::_ZTV15QDragEnterEvent) + 16u) + QDragMoveEvent (0x7f2f3cfe3150) 0 + primary-for QDragEnterEvent (0x7f2f3cfe30e0) + QDropEvent (0x7f2f3cfe2280) 0 + primary-for QDragMoveEvent (0x7f2f3cfe3150) + QEvent (0x7f2f3cfe31c0) 0 + primary-for QDropEvent (0x7f2f3cfe2280) + QMimeSource (0x7f2f3cfe3230) 24 nearly-empty + vptr=((& QDragEnterEvent::_ZTV15QDragEnterEvent) + 72u) + +Vtable for QDragResponseEvent +QDragResponseEvent::_ZTV18QDragResponseEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QDragResponseEvent) +16 QDragResponseEvent::~QDragResponseEvent +24 QDragResponseEvent::~QDragResponseEvent + +Class QDragResponseEvent + size=24 align=8 + base size=21 base align=8 +QDragResponseEvent (0x7f2f3cfe33f0) 0 + vptr=((& QDragResponseEvent::_ZTV18QDragResponseEvent) + 16u) + QEvent (0x7f2f3cfe3460) 0 + primary-for QDragResponseEvent (0x7f2f3cfe33f0) + +Vtable for QDragLeaveEvent +QDragLeaveEvent::_ZTV15QDragLeaveEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QDragLeaveEvent) +16 QDragLeaveEvent::~QDragLeaveEvent +24 QDragLeaveEvent::~QDragLeaveEvent + +Class QDragLeaveEvent + size=24 align=8 + base size=20 base align=8 +QDragLeaveEvent (0x7f2f3cfe3850) 0 + vptr=((& QDragLeaveEvent::_ZTV15QDragLeaveEvent) + 16u) + QEvent (0x7f2f3cfe38c0) 0 + primary-for QDragLeaveEvent (0x7f2f3cfe3850) + +Vtable for QHelpEvent +QHelpEvent::_ZTV10QHelpEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QHelpEvent) +16 QHelpEvent::~QHelpEvent +24 QHelpEvent::~QHelpEvent + +Class QHelpEvent + size=40 align=8 + base size=36 base align=8 +QHelpEvent (0x7f2f3cfe3a80) 0 + vptr=((& QHelpEvent::_ZTV10QHelpEvent) + 16u) + QEvent (0x7f2f3cfe3af0) 0 + primary-for QHelpEvent (0x7f2f3cfe3a80) + +Vtable for QStatusTipEvent +QStatusTipEvent::_ZTV15QStatusTipEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QStatusTipEvent) +16 QStatusTipEvent::~QStatusTipEvent +24 QStatusTipEvent::~QStatusTipEvent + +Class QStatusTipEvent + size=32 align=8 + base size=32 base align=8 +QStatusTipEvent (0x7f2f3cff4af0) 0 + vptr=((& QStatusTipEvent::_ZTV15QStatusTipEvent) + 16u) + QEvent (0x7f2f3cff4b60) 0 + primary-for QStatusTipEvent (0x7f2f3cff4af0) + +Vtable for QWhatsThisClickedEvent +QWhatsThisClickedEvent::_ZTV22QWhatsThisClickedEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QWhatsThisClickedEvent) +16 QWhatsThisClickedEvent::~QWhatsThisClickedEvent +24 QWhatsThisClickedEvent::~QWhatsThisClickedEvent + +Class QWhatsThisClickedEvent + size=32 align=8 + base size=32 base align=8 +QWhatsThisClickedEvent (0x7f2f3cff4cb0) 0 + vptr=((& QWhatsThisClickedEvent::_ZTV22QWhatsThisClickedEvent) + 16u) + QEvent (0x7f2f3cffe000) 0 + primary-for QWhatsThisClickedEvent (0x7f2f3cff4cb0) + +Vtable for QActionEvent +QActionEvent::_ZTV12QActionEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QActionEvent) +16 QActionEvent::~QActionEvent +24 QActionEvent::~QActionEvent + +Class QActionEvent + size=40 align=8 + base size=40 base align=8 +QActionEvent (0x7f2f3cffe460) 0 + vptr=((& QActionEvent::_ZTV12QActionEvent) + 16u) + QEvent (0x7f2f3cffe4d0) 0 + primary-for QActionEvent (0x7f2f3cffe460) + +Vtable for QFileOpenEvent +QFileOpenEvent::_ZTV14QFileOpenEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QFileOpenEvent) +16 QFileOpenEvent::~QFileOpenEvent +24 QFileOpenEvent::~QFileOpenEvent + +Class QFileOpenEvent + size=32 align=8 + base size=32 base align=8 +QFileOpenEvent (0x7f2f3cffeaf0) 0 + vptr=((& QFileOpenEvent::_ZTV14QFileOpenEvent) + 16u) + QEvent (0x7f2f3cffeb60) 0 + primary-for QFileOpenEvent (0x7f2f3cffeaf0) + +Vtable for QToolBarChangeEvent +QToolBarChangeEvent::_ZTV19QToolBarChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QToolBarChangeEvent) +16 QToolBarChangeEvent::~QToolBarChangeEvent +24 QToolBarChangeEvent::~QToolBarChangeEvent + +Class QToolBarChangeEvent + size=24 align=8 + base size=21 base align=8 +QToolBarChangeEvent (0x7f2f3cffe620) 0 + vptr=((& QToolBarChangeEvent::_ZTV19QToolBarChangeEvent) + 16u) + QEvent (0x7f2f3cffed20) 0 + primary-for QToolBarChangeEvent (0x7f2f3cffe620) + +Vtable for QShortcutEvent +QShortcutEvent::_ZTV14QShortcutEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QShortcutEvent) +16 QShortcutEvent::~QShortcutEvent +24 QShortcutEvent::~QShortcutEvent + +Class QShortcutEvent + size=40 align=8 + base size=40 base align=8 +QShortcutEvent (0x7f2f3d011460) 0 + vptr=((& QShortcutEvent::_ZTV14QShortcutEvent) + 16u) + QEvent (0x7f2f3d0114d0) 0 + primary-for QShortcutEvent (0x7f2f3d011460) + +Vtable for QClipboardEvent +QClipboardEvent::_ZTV15QClipboardEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QClipboardEvent) +16 QClipboardEvent::~QClipboardEvent +24 QClipboardEvent::~QClipboardEvent + +Class QClipboardEvent + size=24 align=8 + base size=20 base align=8 +QClipboardEvent (0x7f2f3d01c310) 0 + vptr=((& QClipboardEvent::_ZTV15QClipboardEvent) + 16u) + QEvent (0x7f2f3d01c380) 0 + primary-for QClipboardEvent (0x7f2f3d01c310) + +Vtable for QWindowStateChangeEvent +QWindowStateChangeEvent::_ZTV23QWindowStateChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QWindowStateChangeEvent) +16 QWindowStateChangeEvent::~QWindowStateChangeEvent +24 QWindowStateChangeEvent::~QWindowStateChangeEvent + +Class QWindowStateChangeEvent + size=24 align=8 + base size=24 base align=8 +QWindowStateChangeEvent (0x7f2f3d01c770) 0 + vptr=((& QWindowStateChangeEvent::_ZTV23QWindowStateChangeEvent) + 16u) + QEvent (0x7f2f3d01c7e0) 0 + primary-for QWindowStateChangeEvent (0x7f2f3d01c770) + +Vtable for QMenubarUpdatedEvent +QMenubarUpdatedEvent::_ZTV20QMenubarUpdatedEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QMenubarUpdatedEvent) +16 QMenubarUpdatedEvent::~QMenubarUpdatedEvent +24 QMenubarUpdatedEvent::~QMenubarUpdatedEvent + +Class QMenubarUpdatedEvent + size=32 align=8 + base size=32 base align=8 +QMenubarUpdatedEvent (0x7f2f3d01ccb0) 0 + vptr=((& QMenubarUpdatedEvent::_ZTV20QMenubarUpdatedEvent) + 16u) + QEvent (0x7f2f3d01cd20) 0 + primary-for QMenubarUpdatedEvent (0x7f2f3d01ccb0) + +Class QTouchEvent::TouchPoint + size=8 align=8 + base size=8 base align=8 +QTouchEvent::TouchPoint (0x7f2f3d02d7e0) 0 + +Vtable for QTouchEvent +QTouchEvent::_ZTV11QTouchEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTouchEvent) +16 QTouchEvent::~QTouchEvent +24 QTouchEvent::~QTouchEvent + +Class QTouchEvent + size=48 align=8 + base size=48 base align=8 +QTouchEvent (0x7f2f3d02d690) 0 + vptr=((& QTouchEvent::_ZTV11QTouchEvent) + 16u) + QInputEvent (0x7f2f3d02d700) 0 + primary-for QTouchEvent (0x7f2f3d02d690) + QEvent (0x7f2f3d02d770) 0 + primary-for QInputEvent (0x7f2f3d02d700) + +Vtable for QGestureEvent +QGestureEvent::_ZTV13QGestureEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QGestureEvent) +16 QGestureEvent::~QGestureEvent +24 QGestureEvent::~QGestureEvent + +Class QGestureEvent + size=24 align=8 + base size=20 base align=8 +QGestureEvent (0x7f2f3d075d20) 0 + vptr=((& QGestureEvent::_ZTV13QGestureEvent) + 16u) + QEvent (0x7f2f3d075d90) 0 + primary-for QGestureEvent (0x7f2f3d075d20) + +Class QFont + size=16 align=8 + base size=12 base align=8 +QFont (0x7f2f3d07b310) 0 + +Class QPolygon + size=8 align=8 + base size=8 base align=8 +QPolygon (0x7f2f3cec90e0) 0 + QVector (0x7f2f3cec9150) 0 + +Class QPolygonF + size=8 align=8 + base size=8 base align=8 +QPolygonF (0x7f2f3cf0b620) 0 + QVector (0x7f2f3cf0b690) 0 + +Class QMatrix + size=48 align=8 + base size=48 base align=8 +QMatrix (0x7f2f3cf4e770) 0 + +Class QPainterPath::Element + size=24 align=8 + base size=24 base align=8 +QPainterPath::Element (0x7f2f3cd8d8c0) 0 + +Class QPainterPath + size=8 align=8 + base size=8 base align=8 +QPainterPath (0x7f2f3cd8d850) 0 + +Class QPainterPathPrivate + size=16 align=8 + base size=16 base align=8 +QPainterPathPrivate (0x7f2f3cde9000) 0 + +Class QPainterPathStroker + size=8 align=8 + base size=8 base align=8 +QPainterPathStroker (0x7f2f3cde9af0) 0 + +Class QTransform + size=88 align=8 + base size=88 base align=8 +QTransform (0x7f2f3ce55af0) 0 + +Vtable for QPaintDevice +QPaintDevice::_ZTV12QPaintDevice: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QPaintDevice) +16 QPaintDevice::~QPaintDevice +24 QPaintDevice::~QPaintDevice +32 QPaintDevice::devType +40 __cxa_pure_virtual +48 QPaintDevice::metric + +Class QPaintDevice + size=16 align=8 + base size=10 base align=8 +QPaintDevice (0x7f2f3cd01150) 0 + vptr=((& QPaintDevice::_ZTV12QPaintDevice) + 16u) + +Class QImageTextKeyLang + size=16 align=8 + base size=16 base align=8 +QImageTextKeyLang (0x7f2f3cd26070) 0 + +Vtable for QImage +QImage::_ZTV6QImage: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QImage) +16 QImage::~QImage +24 QImage::~QImage +32 QImage::devType +40 QImage::paintEngine +48 QImage::metric + +Class QImage + size=24 align=8 + base size=24 base align=8 +QImage (0x7f2f3cd4f8c0) 0 + vptr=((& QImage::_ZTV6QImage) + 16u) + QPaintDevice (0x7f2f3cd4f930) 0 + primary-for QImage (0x7f2f3cd4f8c0) + +Vtable for QPixmap +QPixmap::_ZTV7QPixmap: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QPixmap) +16 QPixmap::~QPixmap +24 QPixmap::~QPixmap +32 QPixmap::devType +40 QPixmap::paintEngine +48 QPixmap::metric + +Class QPixmap + size=24 align=8 + base size=24 base align=8 +QPixmap (0x7f2f3cbf6070) 0 + vptr=((& QPixmap::_ZTV7QPixmap) + 16u) + QPaintDevice (0x7f2f3cbf60e0) 0 + primary-for QPixmap (0x7f2f3cbf6070) + +Class QBrush + size=8 align=8 + base size=8 base align=8 +QBrush (0x7f2f3cc52380) 0 + +Class QBrushData + size=112 align=8 + base size=112 base align=8 +QBrushData (0x7f2f3cc6fd90) 0 + +Class QGradient + size=64 align=8 + base size=64 base align=8 +QGradient (0x7f2f3cc83f50) 0 + +Class QLinearGradient + size=64 align=8 + base size=64 base align=8 +QLinearGradient (0x7f2f3cac5a10) 0 + QGradient (0x7f2f3cac5a80) 0 + +Class QRadialGradient + size=64 align=8 + base size=64 base align=8 +QRadialGradient (0x7f2f3cac5ee0) 0 + QGradient (0x7f2f3cac5f50) 0 + +Class QConicalGradient + size=64 align=8 + base size=64 base align=8 +QConicalGradient (0x7f2f3cacd4d0) 0 + QGradient (0x7f2f3cacd540) 0 + +Class QPen + size=8 align=8 + base size=8 base align=8 +QPen (0x7f2f3cacd850) 0 + +Class QTextOption::Tab + size=16 align=8 + base size=14 base align=8 +QTextOption::Tab (0x7f2f3cae7e00) 0 + +Class QTextOption + size=32 align=8 + base size=32 base align=8 +QTextOption (0x7f2f3cae7d90) 0 + +Class QTextLength + size=16 align=8 + base size=16 base align=8 +QTextLength (0x7f2f3cb5b150) 0 + +Class QTextFormat + size=16 align=8 + base size=12 base align=8 +QTextFormat (0x7f2f3cb774d0) 0 + +Class QTextCharFormat + size=16 align=8 + base size=12 base align=8 +QTextCharFormat (0x7f2f3ca31540) 0 + QTextFormat (0x7f2f3ca315b0) 0 + +Class QTextBlockFormat + size=16 align=8 + base size=12 base align=8 +QTextBlockFormat (0x7f2f3c88e1c0) 0 + QTextFormat (0x7f2f3c88e230) 0 + +Class QTextListFormat + size=16 align=8 + base size=12 base align=8 +QTextListFormat (0x7f2f3c8ad7e0) 0 + QTextFormat (0x7f2f3c8ad850) 0 + +Class QTextImageFormat + size=16 align=8 + base size=12 base align=8 +QTextImageFormat (0x7f2f3c8bbd20) 0 + QTextCharFormat (0x7f2f3c8bbd90) 0 + QTextFormat (0x7f2f3c8bbe00) 0 + +Class QTextFrameFormat + size=16 align=8 + base size=12 base align=8 +QTextFrameFormat (0x7f2f3c8cc460) 0 + QTextFormat (0x7f2f3c8cc4d0) 0 + +Class QTextTableFormat + size=16 align=8 + base size=12 base align=8 +QTextTableFormat (0x7f2f3c900380) 0 + QTextFrameFormat (0x7f2f3c9003f0) 0 + QTextFormat (0x7f2f3c900460) 0 + +Class QTextTableCellFormat + size=16 align=8 + base size=12 base align=8 +QTextTableCellFormat (0x7f2f3c91c230) 0 + QTextCharFormat (0x7f2f3c91c2a0) 0 + QTextFormat (0x7f2f3c91c310) 0 + +Class QTextInlineObject + size=16 align=8 + base size=16 base align=8 +QTextInlineObject (0x7f2f3c931700) 0 + +Class QTextLayout::FormatRange + size=24 align=8 + base size=24 base align=8 +QTextLayout::FormatRange (0x7f2f3c93ba10) 0 + +Class QTextLayout + size=8 align=8 + base size=8 base align=8 +QTextLayout (0x7f2f3c93b770) 0 + +Class QTextLine + size=16 align=8 + base size=16 base align=8 +QTextLine (0x7f2f3c957770) 0 + +Vtable for QAbstractUndoItem +QAbstractUndoItem::_ZTV17QAbstractUndoItem: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAbstractUndoItem) +16 __cxa_pure_virtual +24 __cxa_pure_virtual +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QAbstractUndoItem + size=8 align=8 + base size=8 base align=8 +QAbstractUndoItem (0x7f2f3c78b070) 0 nearly-empty + vptr=((& QAbstractUndoItem::_ZTV17QAbstractUndoItem) + 16u) + +Vtable for QTextDocument +QTextDocument::_ZTV13QTextDocument: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QTextDocument) +16 QTextDocument::metaObject +24 QTextDocument::qt_metacast +32 QTextDocument::qt_metacall +40 QTextDocument::~QTextDocument +48 QTextDocument::~QTextDocument +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTextDocument::clear +120 QTextDocument::createObject +128 QTextDocument::loadResource + +Class QTextDocument + size=16 align=8 + base size=16 base align=8 +QTextDocument (0x7f2f3c78baf0) 0 + vptr=((& QTextDocument::_ZTV13QTextDocument) + 16u) + QObject (0x7f2f3c78bb60) 0 + primary-for QTextDocument (0x7f2f3c78baf0) + +Class QTextCursor + size=8 align=8 + base size=8 base align=8 +QTextCursor (0x7f2f3c7eba80) 0 + +Class QPalette + size=16 align=8 + base size=12 base align=8 +QPalette (0x7f2f3c7fff50) 0 + +Class QColorGroup + size=16 align=8 + base size=12 base align=8 +QColorGroup (0x7f2f3c86f850) 0 + QPalette (0x7f2f3c86f8c0) 0 + +Class QAbstractTextDocumentLayout::Selection + size=24 align=8 + base size=24 base align=8 +QAbstractTextDocumentLayout::Selection (0x7f2f3c6a7d90) 0 + +Class QAbstractTextDocumentLayout::PaintContext + size=64 align=8 + base size=64 base align=8 +QAbstractTextDocumentLayout::PaintContext (0x7f2f3c6a7e00) 0 + +Vtable for QAbstractTextDocumentLayout +QAbstractTextDocumentLayout::_ZTV27QAbstractTextDocumentLayout: 24u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QAbstractTextDocumentLayout) +16 QAbstractTextDocumentLayout::metaObject +24 QAbstractTextDocumentLayout::qt_metacast +32 QAbstractTextDocumentLayout::qt_metacall +40 QAbstractTextDocumentLayout::~QAbstractTextDocumentLayout +48 QAbstractTextDocumentLayout::~QAbstractTextDocumentLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 QAbstractTextDocumentLayout::resizeInlineObject +176 QAbstractTextDocumentLayout::positionInlineObject +184 QAbstractTextDocumentLayout::drawInlineObject + +Class QAbstractTextDocumentLayout + size=16 align=8 + base size=16 base align=8 +QAbstractTextDocumentLayout (0x7f2f3c6a7b60) 0 + vptr=((& QAbstractTextDocumentLayout::_ZTV27QAbstractTextDocumentLayout) + 16u) + QObject (0x7f2f3c6a7bd0) 0 + primary-for QAbstractTextDocumentLayout (0x7f2f3c6a7b60) + +Vtable for QTextObjectInterface +QTextObjectInterface::_ZTV20QTextObjectInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QTextObjectInterface) +16 QTextObjectInterface::~QTextObjectInterface +24 QTextObjectInterface::~QTextObjectInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QTextObjectInterface + size=8 align=8 + base size=8 base align=8 +QTextObjectInterface (0x7f2f3c6ee4d0) 0 nearly-empty + vptr=((& QTextObjectInterface::_ZTV20QTextObjectInterface) + 16u) + +Class QFontDatabase + size=8 align=8 + base size=8 base align=8 +QFontDatabase (0x7f2f3c6f87e0) 0 + +Class QFontInfo + size=8 align=8 + base size=8 base align=8 +QFontInfo (0x7f2f3c70a7e0) 0 + +Class QFontMetrics + size=8 align=8 + base size=8 base align=8 +QFontMetrics (0x7f2f3c71c310) 0 + +Class QFontMetricsF + size=8 align=8 + base size=8 base align=8 +QFontMetricsF (0x7f2f3c730770) 0 + +Vtable for QTextObject +QTextObject::_ZTV11QTextObject: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTextObject) +16 QTextObject::metaObject +24 QTextObject::qt_metacast +32 QTextObject::qt_metacall +40 QTextObject::~QTextObject +48 QTextObject::~QTextObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTextObject + size=16 align=8 + base size=16 base align=8 +QTextObject (0x7f2f3c744690) 0 + vptr=((& QTextObject::_ZTV11QTextObject) + 16u) + QObject (0x7f2f3c744700) 0 + primary-for QTextObject (0x7f2f3c744690) + +Vtable for QTextBlockGroup +QTextBlockGroup::_ZTV15QTextBlockGroup: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QTextBlockGroup) +16 QTextBlockGroup::metaObject +24 QTextBlockGroup::qt_metacast +32 QTextBlockGroup::qt_metacall +40 QTextBlockGroup::~QTextBlockGroup +48 QTextBlockGroup::~QTextBlockGroup +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTextBlockGroup::blockInserted +120 QTextBlockGroup::blockRemoved +128 QTextBlockGroup::blockFormatChanged + +Class QTextBlockGroup + size=16 align=8 + base size=16 base align=8 +QTextBlockGroup (0x7f2f3c758ee0) 0 + vptr=((& QTextBlockGroup::_ZTV15QTextBlockGroup) + 16u) + QTextObject (0x7f2f3c758f50) 0 + primary-for QTextBlockGroup (0x7f2f3c758ee0) + QObject (0x7f2f3c760000) 0 + primary-for QTextObject (0x7f2f3c758f50) + +Vtable for QTextFrameLayoutData +QTextFrameLayoutData::_ZTV20QTextFrameLayoutData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QTextFrameLayoutData) +16 QTextFrameLayoutData::~QTextFrameLayoutData +24 QTextFrameLayoutData::~QTextFrameLayoutData + +Class QTextFrameLayoutData + size=8 align=8 + base size=8 base align=8 +QTextFrameLayoutData (0x7f2f3c7737e0) 0 nearly-empty + vptr=((& QTextFrameLayoutData::_ZTV20QTextFrameLayoutData) + 16u) + +Class QTextFrame::iterator + size=32 align=8 + base size=28 base align=8 +QTextFrame::iterator (0x7f2f3c56f230) 0 + +Vtable for QTextFrame +QTextFrame::_ZTV10QTextFrame: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextFrame) +16 QTextFrame::metaObject +24 QTextFrame::qt_metacast +32 QTextFrame::qt_metacall +40 QTextFrame::~QTextFrame +48 QTextFrame::~QTextFrame +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTextFrame + size=16 align=8 + base size=16 base align=8 +QTextFrame (0x7f2f3c773930) 0 + vptr=((& QTextFrame::_ZTV10QTextFrame) + 16u) + QTextObject (0x7f2f3c7739a0) 0 + primary-for QTextFrame (0x7f2f3c773930) + QObject (0x7f2f3c773a10) 0 + primary-for QTextObject (0x7f2f3c7739a0) + +Vtable for QTextBlockUserData +QTextBlockUserData::_ZTV18QTextBlockUserData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QTextBlockUserData) +16 QTextBlockUserData::~QTextBlockUserData +24 QTextBlockUserData::~QTextBlockUserData + +Class QTextBlockUserData + size=8 align=8 + base size=8 base align=8 +QTextBlockUserData (0x7f2f3c5a2380) 0 nearly-empty + vptr=((& QTextBlockUserData::_ZTV18QTextBlockUserData) + 16u) + +Class QTextBlock::iterator + size=24 align=8 + base size=20 base align=8 +QTextBlock::iterator (0x7f2f3c5a2cb0) 0 + +Class QTextBlock + size=16 align=8 + base size=12 base align=8 +QTextBlock (0x7f2f3c5a24d0) 0 + +Class QTextFragment + size=16 align=8 + base size=16 base align=8 +QTextFragment (0x7f2f3c5dce00) 0 + +Vtable for QSyntaxHighlighter +QSyntaxHighlighter::_ZTV18QSyntaxHighlighter: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QSyntaxHighlighter) +16 QSyntaxHighlighter::metaObject +24 QSyntaxHighlighter::qt_metacast +32 QSyntaxHighlighter::qt_metacall +40 QSyntaxHighlighter::~QSyntaxHighlighter +48 QSyntaxHighlighter::~QSyntaxHighlighter +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual + +Class QSyntaxHighlighter + size=16 align=8 + base size=16 base align=8 +QSyntaxHighlighter (0x7f2f3c605000) 0 + vptr=((& QSyntaxHighlighter::_ZTV18QSyntaxHighlighter) + 16u) + QObject (0x7f2f3c605070) 0 + primary-for QSyntaxHighlighter (0x7f2f3c605000) + +Class QTextDocumentFragment + size=8 align=8 + base size=8 base align=8 +QTextDocumentFragment (0x7f2f3c61c9a0) 0 + +Class QTextDocumentWriter + size=8 align=8 + base size=8 base align=8 +QTextDocumentWriter (0x7f2f3c6243f0) 0 + +Vtable for QTextList +QTextList::_ZTV9QTextList: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTextList) +16 QTextList::metaObject +24 QTextList::qt_metacast +32 QTextList::qt_metacall +40 QTextList::~QTextList +48 QTextList::~QTextList +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTextBlockGroup::blockInserted +120 QTextBlockGroup::blockRemoved +128 QTextBlockGroup::blockFormatChanged + +Class QTextList + size=16 align=8 + base size=16 base align=8 +QTextList (0x7f2f3c624a80) 0 + vptr=((& QTextList::_ZTV9QTextList) + 16u) + QTextBlockGroup (0x7f2f3c624af0) 0 + primary-for QTextList (0x7f2f3c624a80) + QTextObject (0x7f2f3c624b60) 0 + primary-for QTextBlockGroup (0x7f2f3c624af0) + QObject (0x7f2f3c624bd0) 0 + primary-for QTextObject (0x7f2f3c624b60) + +Class QTextTableCell + size=16 align=8 + base size=12 base align=8 +QTextTableCell (0x7f2f3c64d930) 0 + +Vtable for QTextTable +QTextTable::_ZTV10QTextTable: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextTable) +16 QTextTable::metaObject +24 QTextTable::qt_metacast +32 QTextTable::qt_metacall +40 QTextTable::~QTextTable +48 QTextTable::~QTextTable +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTextTable + size=16 align=8 + base size=16 base align=8 +QTextTable (0x7f2f3c665a80) 0 + vptr=((& QTextTable::_ZTV10QTextTable) + 16u) + QTextFrame (0x7f2f3c665af0) 0 + primary-for QTextTable (0x7f2f3c665a80) + QTextObject (0x7f2f3c665b60) 0 + primary-for QTextFrame (0x7f2f3c665af0) + QObject (0x7f2f3c665bd0) 0 + primary-for QTextObject (0x7f2f3c665b60) + +Vtable for QCompleter +QCompleter::_ZTV10QCompleter: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QCompleter) +16 QCompleter::metaObject +24 QCompleter::qt_metacast +32 QCompleter::qt_metacall +40 QCompleter::~QCompleter +48 QCompleter::~QCompleter +56 QCompleter::event +64 QCompleter::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCompleter::pathFromIndex +120 QCompleter::splitPath + +Class QCompleter + size=16 align=8 + base size=16 base align=8 +QCompleter (0x7f2f3c48a2a0) 0 + vptr=((& QCompleter::_ZTV10QCompleter) + 16u) + QObject (0x7f2f3c48a310) 0 + primary-for QCompleter (0x7f2f3c48a2a0) + +Class QDesktopServices + size=1 align=1 + base size=0 base align=1 +QDesktopServices (0x7f2f3c4b0230) 0 empty + +Class QIcon + size=8 align=8 + base size=8 base align=8 +QIcon (0x7f2f3c4b0380) 0 + +Vtable for QSystemTrayIcon +QSystemTrayIcon::_ZTV15QSystemTrayIcon: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSystemTrayIcon) +16 QSystemTrayIcon::metaObject +24 QSystemTrayIcon::qt_metacast +32 QSystemTrayIcon::qt_metacall +40 QSystemTrayIcon::~QSystemTrayIcon +48 QSystemTrayIcon::~QSystemTrayIcon +56 QSystemTrayIcon::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSystemTrayIcon + size=16 align=8 + base size=16 base align=8 +QSystemTrayIcon (0x7f2f3c4d6f50) 0 + vptr=((& QSystemTrayIcon::_ZTV15QSystemTrayIcon) + 16u) + QObject (0x7f2f3c4e9000) 0 + primary-for QSystemTrayIcon (0x7f2f3c4d6f50) + +Vtable for QUndoGroup +QUndoGroup::_ZTV10QUndoGroup: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QUndoGroup) +16 QUndoGroup::metaObject +24 QUndoGroup::qt_metacast +32 QUndoGroup::qt_metacall +40 QUndoGroup::~QUndoGroup +48 QUndoGroup::~QUndoGroup +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QUndoGroup + size=16 align=8 + base size=16 base align=8 +QUndoGroup (0x7f2f3c5061c0) 0 + vptr=((& QUndoGroup::_ZTV10QUndoGroup) + 16u) + QObject (0x7f2f3c506230) 0 + primary-for QUndoGroup (0x7f2f3c5061c0) + +Vtable for QUndoCommand +QUndoCommand::_ZTV12QUndoCommand: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QUndoCommand) +16 QUndoCommand::~QUndoCommand +24 QUndoCommand::~QUndoCommand +32 QUndoCommand::undo +40 QUndoCommand::redo +48 QUndoCommand::id +56 QUndoCommand::mergeWith + +Class QUndoCommand + size=16 align=8 + base size=16 base align=8 +QUndoCommand (0x7f2f3c51dd20) 0 + vptr=((& QUndoCommand::_ZTV12QUndoCommand) + 16u) + +Vtable for QUndoStack +QUndoStack::_ZTV10QUndoStack: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QUndoStack) +16 QUndoStack::metaObject +24 QUndoStack::qt_metacast +32 QUndoStack::qt_metacall +40 QUndoStack::~QUndoStack +48 QUndoStack::~QUndoStack +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QUndoStack + size=16 align=8 + base size=16 base align=8 +QUndoStack (0x7f2f3c524690) 0 + vptr=((& QUndoStack::_ZTV10QUndoStack) + 16u) + QObject (0x7f2f3c524700) 0 + primary-for QUndoStack (0x7f2f3c524690) + +Class QSizePolicy + size=4 align=4 + base size=4 base align=4 +QSizePolicy (0x7f2f3c54a1c0) 0 + +Class QCursor + size=8 align=8 + base size=8 base align=8 +QCursor (0x7f2f3c4171c0) 0 + +Class QWidgetData + size=88 align=8 + base size=88 base align=8 +QWidgetData (0x7f2f3c4179a0) 0 + +Vtable for QWidget +QWidget::_ZTV7QWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QWidget) +16 QWidget::metaObject +24 QWidget::qt_metacast +32 QWidget::qt_metacall +40 QWidget::~QWidget +48 QWidget::~QWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI7QWidget) +464 QWidget::_ZThn16_N7QWidgetD1Ev +472 QWidget::_ZThn16_N7QWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWidget + size=40 align=8 + base size=40 base align=8 +QWidget (0x7f2f3c411a00) 0 + vptr=((& QWidget::_ZTV7QWidget) + 16u) + QObject (0x7f2f3c417a10) 0 + primary-for QWidget (0x7f2f3c411a00) + QPaintDevice (0x7f2f3c417a80) 16 + vptr=((& QWidget::_ZTV7QWidget) + 464u) + +Vtable for QFrame +QFrame::_ZTV6QFrame: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QFrame) +16 QFrame::metaObject +24 QFrame::qt_metacast +32 QFrame::qt_metacall +40 QFrame::~QFrame +48 QFrame::~QFrame +56 QFrame::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QFrame::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFrame::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI6QFrame) +464 QFrame::_ZThn16_N6QFrameD1Ev +472 QFrame::_ZThn16_N6QFrameD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFrame + size=40 align=8 + base size=40 base align=8 +QFrame (0x7f2f3c1a1a80) 0 + vptr=((& QFrame::_ZTV6QFrame) + 16u) + QWidget (0x7f2f3c1a3680) 0 + primary-for QFrame (0x7f2f3c1a1a80) + QObject (0x7f2f3c1a1af0) 0 + primary-for QWidget (0x7f2f3c1a3680) + QPaintDevice (0x7f2f3c1a1b60) 16 + vptr=((& QFrame::_ZTV6QFrame) + 464u) + +Vtable for QAbstractScrollArea +QAbstractScrollArea::_ZTV19QAbstractScrollArea: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractScrollArea) +16 QAbstractScrollArea::metaObject +24 QAbstractScrollArea::qt_metacast +32 QAbstractScrollArea::qt_metacall +40 QAbstractScrollArea::~QAbstractScrollArea +48 QAbstractScrollArea::~QAbstractScrollArea +56 QAbstractScrollArea::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractScrollArea::mousePressEvent +168 QAbstractScrollArea::mouseReleaseEvent +176 QAbstractScrollArea::mouseDoubleClickEvent +184 QAbstractScrollArea::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractScrollArea::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractScrollArea::paintEvent +256 QWidget::moveEvent +264 QAbstractScrollArea::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractScrollArea::dragEnterEvent +312 QAbstractScrollArea::dragMoveEvent +320 QAbstractScrollArea::dragLeaveEvent +328 QAbstractScrollArea::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QAbstractScrollArea::scrollContentsBy +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI19QAbstractScrollArea) +480 QAbstractScrollArea::_ZThn16_N19QAbstractScrollAreaD1Ev +488 QAbstractScrollArea::_ZThn16_N19QAbstractScrollAreaD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractScrollArea + size=40 align=8 + base size=40 base align=8 +QAbstractScrollArea (0x7f2f3c1cc0e0) 0 + vptr=((& QAbstractScrollArea::_ZTV19QAbstractScrollArea) + 16u) + QFrame (0x7f2f3c1cc150) 0 + primary-for QAbstractScrollArea (0x7f2f3c1cc0e0) + QWidget (0x7f2f3c1b1a80) 0 + primary-for QFrame (0x7f2f3c1cc150) + QObject (0x7f2f3c1cc1c0) 0 + primary-for QWidget (0x7f2f3c1b1a80) + QPaintDevice (0x7f2f3c1cc230) 16 + vptr=((& QAbstractScrollArea::_ZTV19QAbstractScrollArea) + 480u) + +Class QItemSelectionRange + size=16 align=8 + base size=16 base align=8 +QItemSelectionRange (0x7f2f3c1f3000) 0 + +Vtable for QItemSelectionModel +QItemSelectionModel::_ZTV19QItemSelectionModel: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QItemSelectionModel) +16 QItemSelectionModel::metaObject +24 QItemSelectionModel::qt_metacast +32 QItemSelectionModel::qt_metacall +40 QItemSelectionModel::~QItemSelectionModel +48 QItemSelectionModel::~QItemSelectionModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QItemSelectionModel::select +120 QItemSelectionModel::select +128 QItemSelectionModel::clear +136 QItemSelectionModel::reset + +Class QItemSelectionModel + size=16 align=8 + base size=16 base align=8 +QItemSelectionModel (0x7f2f3c25c4d0) 0 + vptr=((& QItemSelectionModel::_ZTV19QItemSelectionModel) + 16u) + QObject (0x7f2f3c25c540) 0 + primary-for QItemSelectionModel (0x7f2f3c25c4d0) + +Class QItemSelection + size=8 align=8 + base size=8 base align=8 +QItemSelection (0x7f2f3c09c9a0) 0 + QList (0x7f2f3c09ca10) 0 + +Vtable for QValidator +QValidator::_ZTV10QValidator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QValidator) +16 QValidator::metaObject +24 QValidator::qt_metacast +32 QValidator::qt_metacall +40 QValidator::~QValidator +48 QValidator::~QValidator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 QValidator::fixup + +Class QValidator + size=16 align=8 + base size=16 base align=8 +QValidator (0x7f2f3c0dc2a0) 0 + vptr=((& QValidator::_ZTV10QValidator) + 16u) + QObject (0x7f2f3c0dc310) 0 + primary-for QValidator (0x7f2f3c0dc2a0) + +Vtable for QIntValidator +QIntValidator::_ZTV13QIntValidator: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QIntValidator) +16 QIntValidator::metaObject +24 QIntValidator::qt_metacast +32 QIntValidator::qt_metacall +40 QIntValidator::~QIntValidator +48 QIntValidator::~QIntValidator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QIntValidator::validate +120 QValidator::fixup +128 QIntValidator::setRange + +Class QIntValidator + size=24 align=8 + base size=24 base align=8 +QIntValidator (0x7f2f3c0f60e0) 0 + vptr=((& QIntValidator::_ZTV13QIntValidator) + 16u) + QValidator (0x7f2f3c0f6150) 0 + primary-for QIntValidator (0x7f2f3c0f60e0) + QObject (0x7f2f3c0f61c0) 0 + primary-for QValidator (0x7f2f3c0f6150) + +Vtable for QDoubleValidator +QDoubleValidator::_ZTV16QDoubleValidator: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QDoubleValidator) +16 QDoubleValidator::metaObject +24 QDoubleValidator::qt_metacast +32 QDoubleValidator::qt_metacall +40 QDoubleValidator::~QDoubleValidator +48 QDoubleValidator::~QDoubleValidator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QDoubleValidator::validate +120 QValidator::fixup +128 QDoubleValidator::setRange + +Class QDoubleValidator + size=40 align=8 + base size=36 base align=8 +QDoubleValidator (0x7f2f3c10e070) 0 + vptr=((& QDoubleValidator::_ZTV16QDoubleValidator) + 16u) + QValidator (0x7f2f3c10e0e0) 0 + primary-for QDoubleValidator (0x7f2f3c10e070) + QObject (0x7f2f3c10e150) 0 + primary-for QValidator (0x7f2f3c10e0e0) + +Vtable for QRegExpValidator +QRegExpValidator::_ZTV16QRegExpValidator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QRegExpValidator) +16 QRegExpValidator::metaObject +24 QRegExpValidator::qt_metacast +32 QRegExpValidator::qt_metacall +40 QRegExpValidator::~QRegExpValidator +48 QRegExpValidator::~QRegExpValidator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QRegExpValidator::validate +120 QValidator::fixup + +Class QRegExpValidator + size=24 align=8 + base size=24 base align=8 +QRegExpValidator (0x7f2f3c127930) 0 + vptr=((& QRegExpValidator::_ZTV16QRegExpValidator) + 16u) + QValidator (0x7f2f3c1279a0) 0 + primary-for QRegExpValidator (0x7f2f3c127930) + QObject (0x7f2f3c127a10) 0 + primary-for QValidator (0x7f2f3c1279a0) + +Vtable for QAbstractSpinBox +QAbstractSpinBox::_ZTV16QAbstractSpinBox: 68u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QAbstractSpinBox) +16 QAbstractSpinBox::metaObject +24 QAbstractSpinBox::qt_metacast +32 QAbstractSpinBox::qt_metacall +40 QAbstractSpinBox::~QAbstractSpinBox +48 QAbstractSpinBox::~QAbstractSpinBox +56 QAbstractSpinBox::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractSpinBox::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractSpinBox::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QAbstractSpinBox::wheelEvent +200 QAbstractSpinBox::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QAbstractSpinBox::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractSpinBox::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QAbstractSpinBox::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractSpinBox::validate +456 QAbstractSpinBox::fixup +464 QAbstractSpinBox::stepBy +472 QAbstractSpinBox::clear +480 QAbstractSpinBox::stepEnabled +488 (int (*)(...))-0x00000000000000010 +496 (int (*)(...))(& _ZTI16QAbstractSpinBox) +504 QAbstractSpinBox::_ZThn16_N16QAbstractSpinBoxD1Ev +512 QAbstractSpinBox::_ZThn16_N16QAbstractSpinBoxD0Ev +520 QWidget::_ZThn16_NK7QWidget7devTypeEv +528 QWidget::_ZThn16_NK7QWidget11paintEngineEv +536 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractSpinBox + size=40 align=8 + base size=40 base align=8 +QAbstractSpinBox (0x7f2f3c1405b0) 0 + vptr=((& QAbstractSpinBox::_ZTV16QAbstractSpinBox) + 16u) + QWidget (0x7f2f3c125e80) 0 + primary-for QAbstractSpinBox (0x7f2f3c1405b0) + QObject (0x7f2f3c140620) 0 + primary-for QWidget (0x7f2f3c125e80) + QPaintDevice (0x7f2f3c140690) 16 + vptr=((& QAbstractSpinBox::_ZTV16QAbstractSpinBox) + 504u) + +Vtable for QAbstractSlider +QAbstractSlider::_ZTV15QAbstractSlider: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QAbstractSlider) +16 QAbstractSlider::metaObject +24 QAbstractSlider::qt_metacast +32 QAbstractSlider::qt_metacall +40 QAbstractSlider::~QAbstractSlider +48 QAbstractSlider::~QAbstractSlider +56 QAbstractSlider::event +64 QObject::eventFilter +72 QAbstractSlider::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QAbstractSlider::wheelEvent +200 QAbstractSlider::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractSlider::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractSlider::sliderChange +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI15QAbstractSlider) +472 QAbstractSlider::_ZThn16_N15QAbstractSliderD1Ev +480 QAbstractSlider::_ZThn16_N15QAbstractSliderD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractSlider + size=40 align=8 + base size=40 base align=8 +QAbstractSlider (0x7f2f3bf9d5b0) 0 + vptr=((& QAbstractSlider::_ZTV15QAbstractSlider) + 16u) + QWidget (0x7f2f3bf9e200) 0 + primary-for QAbstractSlider (0x7f2f3bf9d5b0) + QObject (0x7f2f3bf9d620) 0 + primary-for QWidget (0x7f2f3bf9e200) + QPaintDevice (0x7f2f3bf9d690) 16 + vptr=((& QAbstractSlider::_ZTV15QAbstractSlider) + 472u) + +Vtable for QSlider +QSlider::_ZTV7QSlider: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QSlider) +16 QSlider::metaObject +24 QSlider::qt_metacast +32 QSlider::qt_metacall +40 QSlider::~QSlider +48 QSlider::~QSlider +56 QSlider::event +64 QObject::eventFilter +72 QAbstractSlider::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QSlider::sizeHint +136 QSlider::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QSlider::mousePressEvent +168 QSlider::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QSlider::mouseMoveEvent +192 QAbstractSlider::wheelEvent +200 QAbstractSlider::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QSlider::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractSlider::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractSlider::sliderChange +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI7QSlider) +472 QSlider::_ZThn16_N7QSliderD1Ev +480 QSlider::_ZThn16_N7QSliderD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSlider + size=40 align=8 + base size=40 base align=8 +QSlider (0x7f2f3bfd43f0) 0 + vptr=((& QSlider::_ZTV7QSlider) + 16u) + QAbstractSlider (0x7f2f3bfd4460) 0 + primary-for QSlider (0x7f2f3bfd43f0) + QWidget (0x7f2f3bfd3300) 0 + primary-for QAbstractSlider (0x7f2f3bfd4460) + QObject (0x7f2f3bfd44d0) 0 + primary-for QWidget (0x7f2f3bfd3300) + QPaintDevice (0x7f2f3bfd4540) 16 + vptr=((& QSlider::_ZTV7QSlider) + 472u) + +Vtable for QStyle +QStyle::_ZTV6QStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QStyle) +16 QStyle::metaObject +24 QStyle::qt_metacast +32 QStyle::qt_metacall +40 QStyle::~QStyle +48 QStyle::~QStyle +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QStyle::polish +120 QStyle::unpolish +128 QStyle::polish +136 QStyle::unpolish +144 QStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QStyle::standardPalette +192 __cxa_pure_virtual +200 __cxa_pure_virtual +208 __cxa_pure_virtual +216 __cxa_pure_virtual +224 __cxa_pure_virtual +232 __cxa_pure_virtual +240 __cxa_pure_virtual +248 __cxa_pure_virtual +256 __cxa_pure_virtual +264 __cxa_pure_virtual +272 __cxa_pure_virtual + +Class QStyle + size=16 align=8 + base size=16 base align=8 +QStyle (0x7f2f3bffc9a0) 0 + vptr=((& QStyle::_ZTV6QStyle) + 16u) + QObject (0x7f2f3bffca10) 0 + primary-for QStyle (0x7f2f3bffc9a0) + +Vtable for QTabBar +QTabBar::_ZTV7QTabBar: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QTabBar) +16 QTabBar::metaObject +24 QTabBar::qt_metacast +32 QTabBar::qt_metacall +40 QTabBar::~QTabBar +48 QTabBar::~QTabBar +56 QTabBar::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QTabBar::sizeHint +136 QTabBar::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTabBar::mousePressEvent +168 QTabBar::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QTabBar::mouseMoveEvent +192 QTabBar::wheelEvent +200 QTabBar::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTabBar::paintEvent +256 QWidget::moveEvent +264 QTabBar::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QTabBar::showEvent +344 QTabBar::hideEvent +352 QWidget::x11Event +360 QTabBar::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QTabBar::tabSizeHint +456 QTabBar::tabInserted +464 QTabBar::tabRemoved +472 QTabBar::tabLayoutChange +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI7QTabBar) +496 QTabBar::_ZThn16_N7QTabBarD1Ev +504 QTabBar::_ZThn16_N7QTabBarD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTabBar + size=40 align=8 + base size=40 base align=8 +QTabBar (0x7f2f3be94850) 0 + vptr=((& QTabBar::_ZTV7QTabBar) + 16u) + QWidget (0x7f2f3be95300) 0 + primary-for QTabBar (0x7f2f3be94850) + QObject (0x7f2f3be948c0) 0 + primary-for QWidget (0x7f2f3be95300) + QPaintDevice (0x7f2f3be94930) 16 + vptr=((& QTabBar::_ZTV7QTabBar) + 496u) + +Vtable for QTabWidget +QTabWidget::_ZTV10QTabWidget: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTabWidget) +16 QTabWidget::metaObject +24 QTabWidget::qt_metacast +32 QTabWidget::qt_metacall +40 QTabWidget::~QTabWidget +48 QTabWidget::~QTabWidget +56 QTabWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QTabWidget::sizeHint +136 QTabWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QTabWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTabWidget::paintEvent +256 QWidget::moveEvent +264 QTabWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QTabWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QTabWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QTabWidget::tabInserted +456 QTabWidget::tabRemoved +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI10QTabWidget) +480 QTabWidget::_ZThn16_N10QTabWidgetD1Ev +488 QTabWidget::_ZThn16_N10QTabWidgetD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTabWidget + size=40 align=8 + base size=40 base align=8 +QTabWidget (0x7f2f3bed7e70) 0 + vptr=((& QTabWidget::_ZTV10QTabWidget) + 16u) + QWidget (0x7f2f3bed3700) 0 + primary-for QTabWidget (0x7f2f3bed7e70) + QObject (0x7f2f3bed7ee0) 0 + primary-for QWidget (0x7f2f3bed3700) + QPaintDevice (0x7f2f3bed7f50) 16 + vptr=((& QTabWidget::_ZTV10QTabWidget) + 480u) + +Vtable for QRubberBand +QRubberBand::_ZTV11QRubberBand: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QRubberBand) +16 QRubberBand::metaObject +24 QRubberBand::qt_metacast +32 QRubberBand::qt_metacall +40 QRubberBand::~QRubberBand +48 QRubberBand::~QRubberBand +56 QRubberBand::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QRubberBand::paintEvent +256 QRubberBand::moveEvent +264 QRubberBand::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QRubberBand::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QRubberBand::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI11QRubberBand) +464 QRubberBand::_ZThn16_N11QRubberBandD1Ev +472 QRubberBand::_ZThn16_N11QRubberBandD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QRubberBand + size=40 align=8 + base size=40 base align=8 +QRubberBand (0x7f2f3bf2c850) 0 + vptr=((& QRubberBand::_ZTV11QRubberBand) + 16u) + QWidget (0x7f2f3bf2a880) 0 + primary-for QRubberBand (0x7f2f3bf2c850) + QObject (0x7f2f3bf2c8c0) 0 + primary-for QWidget (0x7f2f3bf2a880) + QPaintDevice (0x7f2f3bf2c930) 16 + vptr=((& QRubberBand::_ZTV11QRubberBand) + 464u) + +Class QStyleOption + size=56 align=8 + base size=56 base align=8 +QStyleOption (0x7f2f3bf50b60) 0 + +Class QStyleOptionFocusRect + size=72 align=8 + base size=72 base align=8 +QStyleOptionFocusRect (0x7f2f3bd5c8c0) 0 + QStyleOption (0x7f2f3bd5c930) 0 + +Class QStyleOptionFrame + size=64 align=8 + base size=64 base align=8 +QStyleOptionFrame (0x7f2f3bd698c0) 0 + QStyleOption (0x7f2f3bd69930) 0 + +Class QStyleOptionFrameV2 + size=72 align=8 + base size=68 base align=8 +QStyleOptionFrameV2 (0x7f2f3bd74850) 0 + QStyleOptionFrame (0x7f2f3bd748c0) 0 + QStyleOption (0x7f2f3bd74930) 0 + +Class QStyleOptionFrameV3 + size=72 align=8 + base size=72 base align=8 +QStyleOptionFrameV3 (0x7f2f3bdbc150) 0 + QStyleOptionFrameV2 (0x7f2f3bdbc1c0) 0 + QStyleOptionFrame (0x7f2f3bdbc230) 0 + QStyleOption (0x7f2f3bdbc2a0) 0 + +Class QStyleOptionTabWidgetFrame + size=96 align=8 + base size=92 base align=8 +QStyleOptionTabWidgetFrame (0x7f2f3bdc8a10) 0 + QStyleOption (0x7f2f3bdc8a80) 0 + +Class QStyleOptionTabWidgetFrameV2 + size=128 align=8 + base size=124 base align=8 +QStyleOptionTabWidgetFrameV2 (0x7f2f3bddd1c0) 0 + QStyleOptionTabWidgetFrame (0x7f2f3bddd230) 0 + QStyleOption (0x7f2f3bddd2a0) 0 + +Class QStyleOptionTabBarBase + size=96 align=8 + base size=92 base align=8 +QStyleOptionTabBarBase (0x7f2f3bde6af0) 0 + QStyleOption (0x7f2f3bde6b60) 0 + +Class QStyleOptionTabBarBaseV2 + size=96 align=8 + base size=93 base align=8 +QStyleOptionTabBarBaseV2 (0x7f2f3bdf2ee0) 0 + QStyleOptionTabBarBase (0x7f2f3bdf2f50) 0 + QStyleOption (0x7f2f3bdf2310) 0 + +Class QStyleOptionHeader + size=112 align=8 + base size=108 base align=8 +QStyleOptionHeader (0x7f2f3be09540) 0 + QStyleOption (0x7f2f3be095b0) 0 + +Class QStyleOptionButton + size=88 align=8 + base size=88 base align=8 +QStyleOptionButton (0x7f2f3be22700) 0 + QStyleOption (0x7f2f3be22770) 0 + +Class QStyleOptionTab + size=96 align=8 + base size=96 base align=8 +QStyleOptionTab (0x7f2f3bc700e0) 0 + QStyleOption (0x7f2f3bc70150) 0 + +Class QStyleOptionTabV2 + size=104 align=8 + base size=104 base align=8 +QStyleOptionTabV2 (0x7f2f3bcbd070) 0 + QStyleOptionTab (0x7f2f3bcbd0e0) 0 + QStyleOption (0x7f2f3bcbd150) 0 + +Class QStyleOptionTabV3 + size=128 align=8 + base size=124 base align=8 +QStyleOptionTabV3 (0x7f2f3bcc7a80) 0 + QStyleOptionTabV2 (0x7f2f3bcc7af0) 0 + QStyleOptionTab (0x7f2f3bcc7b60) 0 + QStyleOption (0x7f2f3bcc7bd0) 0 + +Class QStyleOptionToolBar + size=80 align=8 + base size=80 base align=8 +QStyleOptionToolBar (0x7f2f3bce60e0) 0 + QStyleOption (0x7f2f3bce6150) 0 + +Class QStyleOptionProgressBar + size=88 align=8 + base size=85 base align=8 +QStyleOptionProgressBar (0x7f2f3bd1a8c0) 0 + QStyleOption (0x7f2f3bd1a930) 0 + +Class QStyleOptionProgressBarV2 + size=96 align=8 + base size=94 base align=8 +QStyleOptionProgressBarV2 (0x7f2f3bd41070) 0 + QStyleOptionProgressBar (0x7f2f3bd410e0) 0 + QStyleOption (0x7f2f3bd41150) 0 + +Class QStyleOptionMenuItem + size=128 align=8 + base size=128 base align=8 +QStyleOptionMenuItem (0x7f2f3bd41930) 0 + QStyleOption (0x7f2f3bd419a0) 0 + +Class QStyleOptionQ3ListViewItem + size=80 align=8 + base size=76 base align=8 +QStyleOptionQ3ListViewItem (0x7f2f3bb5bb60) 0 + QStyleOption (0x7f2f3bb5bbd0) 0 + +Class QStyleOptionQ3DockWindow + size=64 align=8 + base size=58 base align=8 +QStyleOptionQ3DockWindow (0x7f2f3bba8000) 0 + QStyleOption (0x7f2f3bba8070) 0 + +Class QStyleOptionDockWidget + size=72 align=8 + base size=67 base align=8 +QStyleOptionDockWidget (0x7f2f3bba8690) 0 + QStyleOption (0x7f2f3bbb6000) 0 + +Class QStyleOptionDockWidgetV2 + size=72 align=8 + base size=68 base align=8 +QStyleOptionDockWidgetV2 (0x7f2f3bbc3380) 0 + QStyleOptionDockWidget (0x7f2f3bbc33f0) 0 + QStyleOption (0x7f2f3bbc3460) 0 + +Class QStyleOptionViewItem + size=104 align=8 + base size=97 base align=8 +QStyleOptionViewItem (0x7f2f3bbcbb60) 0 + QStyleOption (0x7f2f3bbcbbd0) 0 + +Class QStyleOptionViewItemV2 + size=104 align=8 + base size=104 base align=8 +QStyleOptionViewItemV2 (0x7f2f3bbe4700) 0 + QStyleOptionViewItem (0x7f2f3bbe4770) 0 + QStyleOption (0x7f2f3bbe47e0) 0 + +Class QStyleOptionViewItemV3 + size=120 align=8 + base size=120 base align=8 +QStyleOptionViewItemV3 (0x7f2f3bc33150) 0 + QStyleOptionViewItemV2 (0x7f2f3bc331c0) 0 + QStyleOptionViewItem (0x7f2f3bc33230) 0 + QStyleOption (0x7f2f3bc332a0) 0 + +Class QStyleOptionViewItemV4 + size=184 align=8 + base size=184 base align=8 +QStyleOptionViewItemV4 (0x7f2f3bc3ca10) 0 + QStyleOptionViewItemV3 (0x7f2f3bc3ca80) 0 + QStyleOptionViewItemV2 (0x7f2f3bc3caf0) 0 + QStyleOptionViewItem (0x7f2f3bc3cb60) 0 + QStyleOption (0x7f2f3bc3cbd0) 0 + +Class QStyleOptionToolBox + size=72 align=8 + base size=72 base align=8 +QStyleOptionToolBox (0x7f2f3ba60150) 0 + QStyleOption (0x7f2f3ba601c0) 0 + +Class QStyleOptionToolBoxV2 + size=80 align=8 + base size=80 base align=8 +QStyleOptionToolBoxV2 (0x7f2f3ba6b620) 0 + QStyleOptionToolBox (0x7f2f3ba6b690) 0 + QStyleOption (0x7f2f3ba6b700) 0 + +Class QStyleOptionRubberBand + size=64 align=8 + base size=61 base align=8 +QStyleOptionRubberBand (0x7f2f3ba84310) 0 + QStyleOption (0x7f2f3ba84380) 0 + +Class QStyleOptionComplex + size=64 align=8 + base size=64 base align=8 +QStyleOptionComplex (0x7f2f3ba8c3f0) 0 + QStyleOption (0x7f2f3ba8c460) 0 + +Class QStyleOptionSlider + size=120 align=8 + base size=113 base align=8 +QStyleOptionSlider (0x7f2f3ba98bd0) 0 + QStyleOptionComplex (0x7f2f3ba98c40) 0 + QStyleOption (0x7f2f3ba98cb0) 0 + +Class QStyleOptionSpinBox + size=80 align=8 + base size=73 base align=8 +QStyleOptionSpinBox (0x7f2f3baac9a0) 0 + QStyleOptionComplex (0x7f2f3baaca10) 0 + QStyleOption (0x7f2f3baaca80) 0 + +Class QStyleOptionQ3ListView + size=112 align=8 + base size=105 base align=8 +QStyleOptionQ3ListView (0x7f2f3bab5ee0) 0 + QStyleOptionComplex (0x7f2f3bab5f50) 0 + QStyleOption (0x7f2f3bab5380) 0 + +Class QStyleOptionToolButton + size=128 align=8 + base size=128 base align=8 +QStyleOptionToolButton (0x7f2f3baefaf0) 0 + QStyleOptionComplex (0x7f2f3baefb60) 0 + QStyleOption (0x7f2f3baefbd0) 0 + +Class QStyleOptionComboBox + size=112 align=8 + base size=112 base align=8 +QStyleOptionComboBox (0x7f2f3bb30d20) 0 + QStyleOptionComplex (0x7f2f3bb30d90) 0 + QStyleOption (0x7f2f3bb30e00) 0 + +Class QStyleOptionTitleBar + size=88 align=8 + base size=88 base align=8 +QStyleOptionTitleBar (0x7f2f3b956850) 0 + QStyleOptionComplex (0x7f2f3b9568c0) 0 + QStyleOption (0x7f2f3b956930) 0 + +Class QStyleOptionGroupBox + size=112 align=8 + base size=108 base align=8 +QStyleOptionGroupBox (0x7f2f3b96e0e0) 0 + QStyleOptionComplex (0x7f2f3b96e150) 0 + QStyleOption (0x7f2f3b96e1c0) 0 + +Class QStyleOptionSizeGrip + size=72 align=8 + base size=68 base align=8 +QStyleOptionSizeGrip (0x7f2f3b97dcb0) 0 + QStyleOptionComplex (0x7f2f3b97dd20) 0 + QStyleOption (0x7f2f3b97dd90) 0 + +Class QStyleOptionGraphicsItem + size=144 align=8 + base size=144 base align=8 +QStyleOptionGraphicsItem (0x7f2f3b986c40) 0 + QStyleOption (0x7f2f3b986cb0) 0 + +Class QStyleHintReturn + size=8 align=4 + base size=8 base align=4 +QStyleHintReturn (0x7f2f3b9932a0) 0 + +Class QStyleHintReturnMask + size=16 align=8 + base size=16 base align=8 +QStyleHintReturnMask (0x7f2f3b9b33f0) 0 + QStyleHintReturn (0x7f2f3b9b3460) 0 + +Class QStyleHintReturnVariant + size=24 align=8 + base size=24 base align=8 +QStyleHintReturnVariant (0x7f2f3b9b3620) 0 + QStyleHintReturn (0x7f2f3b9b3690) 0 + +Vtable for QAbstractItemDelegate +QAbstractItemDelegate::_ZTV21QAbstractItemDelegate: 21u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QAbstractItemDelegate) +16 QAbstractItemDelegate::metaObject +24 QAbstractItemDelegate::qt_metacast +32 QAbstractItemDelegate::qt_metacall +40 QAbstractItemDelegate::~QAbstractItemDelegate +48 QAbstractItemDelegate::~QAbstractItemDelegate +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAbstractItemDelegate::createEditor +136 QAbstractItemDelegate::setEditorData +144 QAbstractItemDelegate::setModelData +152 QAbstractItemDelegate::updateEditorGeometry +160 QAbstractItemDelegate::editorEvent + +Class QAbstractItemDelegate + size=16 align=8 + base size=16 base align=8 +QAbstractItemDelegate (0x7f2f3b9b3af0) 0 + vptr=((& QAbstractItemDelegate::_ZTV21QAbstractItemDelegate) + 16u) + QObject (0x7f2f3b9b3b60) 0 + primary-for QAbstractItemDelegate (0x7f2f3b9b3af0) + +Vtable for QAbstractItemView +QAbstractItemView::_ZTV17QAbstractItemView: 103u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAbstractItemView) +16 QAbstractItemView::metaObject +24 QAbstractItemView::qt_metacast +32 QAbstractItemView::qt_metacall +40 QAbstractItemView::~QAbstractItemView +48 QAbstractItemView::~QAbstractItemView +56 QAbstractItemView::event +64 QObject::eventFilter +72 QAbstractItemView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QAbstractItemView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QAbstractItemView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractScrollArea::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QAbstractScrollArea::scrollContentsBy +464 QAbstractItemView::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 __cxa_pure_virtual +496 __cxa_pure_virtual +504 __cxa_pure_virtual +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QAbstractItemView::reset +536 QAbstractItemView::setRootIndex +544 QAbstractItemView::doItemsLayout +552 QAbstractItemView::selectAll +560 QAbstractItemView::dataChanged +568 QAbstractItemView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QAbstractItemView::selectionChanged +592 QAbstractItemView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QAbstractItemView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 __cxa_pure_virtual +688 __cxa_pure_virtual +696 __cxa_pure_virtual +704 __cxa_pure_virtual +712 __cxa_pure_virtual +720 __cxa_pure_virtual +728 QAbstractItemView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 (int (*)(...))-0x00000000000000010 +776 (int (*)(...))(& _ZTI17QAbstractItemView) +784 QAbstractItemView::_ZThn16_N17QAbstractItemViewD1Ev +792 QAbstractItemView::_ZThn16_N17QAbstractItemViewD0Ev +800 QWidget::_ZThn16_NK7QWidget7devTypeEv +808 QWidget::_ZThn16_NK7QWidget11paintEngineEv +816 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractItemView + size=40 align=8 + base size=40 base align=8 +QAbstractItemView (0x7f2f3b9e31c0) 0 + vptr=((& QAbstractItemView::_ZTV17QAbstractItemView) + 16u) + QAbstractScrollArea (0x7f2f3b9e3230) 0 + primary-for QAbstractItemView (0x7f2f3b9e31c0) + QFrame (0x7f2f3b9e32a0) 0 + primary-for QAbstractScrollArea (0x7f2f3b9e3230) + QWidget (0x7f2f3b9c0d80) 0 + primary-for QFrame (0x7f2f3b9e32a0) + QObject (0x7f2f3b9e3310) 0 + primary-for QWidget (0x7f2f3b9c0d80) + QPaintDevice (0x7f2f3b9e3380) 16 + vptr=((& QAbstractItemView::_ZTV17QAbstractItemView) + 784u) + +Vtable for QListView +QListView::_ZTV9QListView: 103u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QListView) +16 QListView::metaObject +24 QListView::qt_metacast +32 QListView::qt_metacall +40 QListView::~QListView +48 QListView::~QListView +56 QListView::event +64 QObject::eventFilter +72 QListView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QListView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QListView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QListView::paintEvent +256 QWidget::moveEvent +264 QListView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QListView::dragMoveEvent +320 QListView::dragLeaveEvent +328 QListView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QListView::scrollContentsBy +464 QAbstractItemView::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QListView::visualRect +496 QListView::scrollTo +504 QListView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QListView::reset +536 QListView::setRootIndex +544 QListView::doItemsLayout +552 QAbstractItemView::selectAll +560 QListView::dataChanged +568 QListView::rowsInserted +576 QListView::rowsAboutToBeRemoved +584 QListView::selectionChanged +592 QListView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QListView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QListView::moveCursor +688 QListView::horizontalOffset +696 QListView::verticalOffset +704 QListView::isIndexHidden +712 QListView::setSelection +720 QListView::visualRegionForSelection +728 QListView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QListView::startDrag +760 QListView::viewOptions +768 (int (*)(...))-0x00000000000000010 +776 (int (*)(...))(& _ZTI9QListView) +784 QListView::_ZThn16_N9QListViewD1Ev +792 QListView::_ZThn16_N9QListViewD0Ev +800 QWidget::_ZThn16_NK7QWidget7devTypeEv +808 QWidget::_ZThn16_NK7QWidget11paintEngineEv +816 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QListView + size=40 align=8 + base size=40 base align=8 +QListView (0x7f2f3b8579a0) 0 + vptr=((& QListView::_ZTV9QListView) + 16u) + QAbstractItemView (0x7f2f3b857a10) 0 + primary-for QListView (0x7f2f3b8579a0) + QAbstractScrollArea (0x7f2f3b857a80) 0 + primary-for QAbstractItemView (0x7f2f3b857a10) + QFrame (0x7f2f3b857af0) 0 + primary-for QAbstractScrollArea (0x7f2f3b857a80) + QWidget (0x7f2f3ba41500) 0 + primary-for QFrame (0x7f2f3b857af0) + QObject (0x7f2f3b857b60) 0 + primary-for QWidget (0x7f2f3ba41500) + QPaintDevice (0x7f2f3b857bd0) 16 + vptr=((& QListView::_ZTV9QListView) + 784u) + +Vtable for QUndoView +QUndoView::_ZTV9QUndoView: 103u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QUndoView) +16 QUndoView::metaObject +24 QUndoView::qt_metacast +32 QUndoView::qt_metacall +40 QUndoView::~QUndoView +48 QUndoView::~QUndoView +56 QListView::event +64 QObject::eventFilter +72 QListView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QListView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QListView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QListView::paintEvent +256 QWidget::moveEvent +264 QListView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QListView::dragMoveEvent +320 QListView::dragLeaveEvent +328 QListView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QListView::scrollContentsBy +464 QAbstractItemView::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QListView::visualRect +496 QListView::scrollTo +504 QListView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QListView::reset +536 QListView::setRootIndex +544 QListView::doItemsLayout +552 QAbstractItemView::selectAll +560 QListView::dataChanged +568 QListView::rowsInserted +576 QListView::rowsAboutToBeRemoved +584 QListView::selectionChanged +592 QListView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QListView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QListView::moveCursor +688 QListView::horizontalOffset +696 QListView::verticalOffset +704 QListView::isIndexHidden +712 QListView::setSelection +720 QListView::visualRegionForSelection +728 QListView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QListView::startDrag +760 QListView::viewOptions +768 (int (*)(...))-0x00000000000000010 +776 (int (*)(...))(& _ZTI9QUndoView) +784 QUndoView::_ZThn16_N9QUndoViewD1Ev +792 QUndoView::_ZThn16_N9QUndoViewD0Ev +800 QWidget::_ZThn16_NK7QWidget7devTypeEv +808 QWidget::_ZThn16_NK7QWidget11paintEngineEv +816 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QUndoView + size=40 align=8 + base size=40 base align=8 +QUndoView (0x7f2f3b8a8070) 0 + vptr=((& QUndoView::_ZTV9QUndoView) + 16u) + QListView (0x7f2f3b8a80e0) 0 + primary-for QUndoView (0x7f2f3b8a8070) + QAbstractItemView (0x7f2f3b8a8150) 0 + primary-for QListView (0x7f2f3b8a80e0) + QAbstractScrollArea (0x7f2f3b8a81c0) 0 + primary-for QAbstractItemView (0x7f2f3b8a8150) + QFrame (0x7f2f3b8a8230) 0 + primary-for QAbstractScrollArea (0x7f2f3b8a81c0) + QWidget (0x7f2f3b8a1500) 0 + primary-for QFrame (0x7f2f3b8a8230) + QObject (0x7f2f3b8a82a0) 0 + primary-for QWidget (0x7f2f3b8a1500) + QPaintDevice (0x7f2f3b8a8310) 16 + vptr=((& QUndoView::_ZTV9QUndoView) + 784u) + +Vtable for QDialog +QDialog::_ZTV7QDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QDialog) +16 QDialog::metaObject +24 QDialog::qt_metacast +32 QDialog::qt_metacall +40 QDialog::~QDialog +48 QDialog::~QDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI7QDialog) +488 QDialog::_ZThn16_N7QDialogD1Ev +496 QDialog::_ZThn16_N7QDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDialog + size=40 align=8 + base size=40 base align=8 +QDialog (0x7f2f3b8c0d20) 0 + vptr=((& QDialog::_ZTV7QDialog) + 16u) + QWidget (0x7f2f3b8a1f00) 0 + primary-for QDialog (0x7f2f3b8c0d20) + QObject (0x7f2f3b8c0d90) 0 + primary-for QWidget (0x7f2f3b8a1f00) + QPaintDevice (0x7f2f3b8c0e00) 16 + vptr=((& QDialog::_ZTV7QDialog) + 488u) + +Vtable for QAbstractPageSetupDialog +QAbstractPageSetupDialog::_ZTV24QAbstractPageSetupDialog: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QAbstractPageSetupDialog) +16 QAbstractPageSetupDialog::metaObject +24 QAbstractPageSetupDialog::qt_metacast +32 QAbstractPageSetupDialog::qt_metacall +40 QAbstractPageSetupDialog::~QAbstractPageSetupDialog +48 QAbstractPageSetupDialog::~QAbstractPageSetupDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractPageSetupDialog::done +456 QDialog::accept +464 QDialog::reject +472 __cxa_pure_virtual +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI24QAbstractPageSetupDialog) +496 QAbstractPageSetupDialog::_ZThn16_N24QAbstractPageSetupDialogD1Ev +504 QAbstractPageSetupDialog::_ZThn16_N24QAbstractPageSetupDialogD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractPageSetupDialog + size=40 align=8 + base size=40 base align=8 +QAbstractPageSetupDialog (0x7f2f3b8e8b60) 0 + vptr=((& QAbstractPageSetupDialog::_ZTV24QAbstractPageSetupDialog) + 16u) + QDialog (0x7f2f3b8e8bd0) 0 + primary-for QAbstractPageSetupDialog (0x7f2f3b8e8b60) + QWidget (0x7f2f3b8c7a00) 0 + primary-for QDialog (0x7f2f3b8e8bd0) + QObject (0x7f2f3b8e8c40) 0 + primary-for QWidget (0x7f2f3b8c7a00) + QPaintDevice (0x7f2f3b8e8cb0) 16 + vptr=((& QAbstractPageSetupDialog::_ZTV24QAbstractPageSetupDialog) + 496u) + +Vtable for QAbstractPrintDialog +QAbstractPrintDialog::_ZTV20QAbstractPrintDialog: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QAbstractPrintDialog) +16 QAbstractPrintDialog::metaObject +24 QAbstractPrintDialog::qt_metacast +32 QAbstractPrintDialog::qt_metacall +40 QAbstractPrintDialog::~QAbstractPrintDialog +48 QAbstractPrintDialog::~QAbstractPrintDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDialog::done +456 QDialog::accept +464 QDialog::reject +472 __cxa_pure_virtual +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI20QAbstractPrintDialog) +496 QAbstractPrintDialog::_ZThn16_N20QAbstractPrintDialogD1Ev +504 QAbstractPrintDialog::_ZThn16_N20QAbstractPrintDialogD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractPrintDialog + size=40 align=8 + base size=40 base align=8 +QAbstractPrintDialog (0x7f2f3b907150) 0 + vptr=((& QAbstractPrintDialog::_ZTV20QAbstractPrintDialog) + 16u) + QDialog (0x7f2f3b9071c0) 0 + primary-for QAbstractPrintDialog (0x7f2f3b907150) + QWidget (0x7f2f3b8ff400) 0 + primary-for QDialog (0x7f2f3b9071c0) + QObject (0x7f2f3b907230) 0 + primary-for QWidget (0x7f2f3b8ff400) + QPaintDevice (0x7f2f3b9072a0) 16 + vptr=((& QAbstractPrintDialog::_ZTV20QAbstractPrintDialog) + 496u) + +Vtable for QColorDialog +QColorDialog::_ZTV12QColorDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QColorDialog) +16 QColorDialog::metaObject +24 QColorDialog::qt_metacast +32 QColorDialog::qt_metacall +40 QColorDialog::~QColorDialog +48 QColorDialog::~QColorDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QColorDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QColorDialog::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QColorDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI12QColorDialog) +488 QColorDialog::_ZThn16_N12QColorDialogD1Ev +496 QColorDialog::_ZThn16_N12QColorDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QColorDialog + size=40 align=8 + base size=40 base align=8 +QColorDialog (0x7f2f3b760230) 0 + vptr=((& QColorDialog::_ZTV12QColorDialog) + 16u) + QDialog (0x7f2f3b7602a0) 0 + primary-for QColorDialog (0x7f2f3b760230) + QWidget (0x7f2f3b922880) 0 + primary-for QDialog (0x7f2f3b7602a0) + QObject (0x7f2f3b760310) 0 + primary-for QWidget (0x7f2f3b922880) + QPaintDevice (0x7f2f3b760380) 16 + vptr=((& QColorDialog::_ZTV12QColorDialog) + 488u) + +Vtable for QErrorMessage +QErrorMessage::_ZTV13QErrorMessage: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QErrorMessage) +16 QErrorMessage::metaObject +24 QErrorMessage::qt_metacast +32 QErrorMessage::qt_metacall +40 QErrorMessage::~QErrorMessage +48 QErrorMessage::~QErrorMessage +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QErrorMessage::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QErrorMessage::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI13QErrorMessage) +488 QErrorMessage::_ZThn16_N13QErrorMessageD1Ev +496 QErrorMessage::_ZThn16_N13QErrorMessageD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QErrorMessage + size=40 align=8 + base size=40 base align=8 +QErrorMessage (0x7f2f3b7c25b0) 0 + vptr=((& QErrorMessage::_ZTV13QErrorMessage) + 16u) + QDialog (0x7f2f3b7c2620) 0 + primary-for QErrorMessage (0x7f2f3b7c25b0) + QWidget (0x7f2f3b789c00) 0 + primary-for QDialog (0x7f2f3b7c2620) + QObject (0x7f2f3b7c2690) 0 + primary-for QWidget (0x7f2f3b789c00) + QPaintDevice (0x7f2f3b7c2700) 16 + vptr=((& QErrorMessage::_ZTV13QErrorMessage) + 488u) + +Vtable for QFileDialog +QFileDialog::_ZTV11QFileDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFileDialog) +16 QFileDialog::metaObject +24 QFileDialog::qt_metacast +32 QFileDialog::qt_metacall +40 QFileDialog::~QFileDialog +48 QFileDialog::~QFileDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QFileDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFileDialog::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QFileDialog::done +456 QFileDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11QFileDialog) +488 QFileDialog::_ZThn16_N11QFileDialogD1Ev +496 QFileDialog::_ZThn16_N11QFileDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFileDialog + size=40 align=8 + base size=40 base align=8 +QFileDialog (0x7f2f3b7de1c0) 0 + vptr=((& QFileDialog::_ZTV11QFileDialog) + 16u) + QDialog (0x7f2f3b7de230) 0 + primary-for QFileDialog (0x7f2f3b7de1c0) + QWidget (0x7f2f3b7d6780) 0 + primary-for QDialog (0x7f2f3b7de230) + QObject (0x7f2f3b7de2a0) 0 + primary-for QWidget (0x7f2f3b7d6780) + QPaintDevice (0x7f2f3b7de310) 16 + vptr=((& QFileDialog::_ZTV11QFileDialog) + 488u) + +Vtable for QFileSystemModel +QFileSystemModel::_ZTV16QFileSystemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QFileSystemModel) +16 QFileSystemModel::metaObject +24 QFileSystemModel::qt_metacast +32 QFileSystemModel::qt_metacall +40 QFileSystemModel::~QFileSystemModel +48 QFileSystemModel::~QFileSystemModel +56 QFileSystemModel::event +64 QObject::eventFilter +72 QFileSystemModel::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFileSystemModel::index +120 QFileSystemModel::parent +128 QFileSystemModel::rowCount +136 QFileSystemModel::columnCount +144 QFileSystemModel::hasChildren +152 QFileSystemModel::data +160 QFileSystemModel::setData +168 QFileSystemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QFileSystemModel::mimeTypes +208 QFileSystemModel::mimeData +216 QFileSystemModel::dropMimeData +224 QFileSystemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QFileSystemModel::fetchMore +272 QFileSystemModel::canFetchMore +280 QFileSystemModel::flags +288 QFileSystemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QFileSystemModel + size=16 align=8 + base size=16 base align=8 +QFileSystemModel (0x7f2f3b65a770) 0 + vptr=((& QFileSystemModel::_ZTV16QFileSystemModel) + 16u) + QAbstractItemModel (0x7f2f3b65a7e0) 0 + primary-for QFileSystemModel (0x7f2f3b65a770) + QObject (0x7f2f3b65a850) 0 + primary-for QAbstractItemModel (0x7f2f3b65a7e0) + +Vtable for QFontDialog +QFontDialog::_ZTV11QFontDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFontDialog) +16 QFontDialog::metaObject +24 QFontDialog::qt_metacast +32 QFontDialog::qt_metacall +40 QFontDialog::~QFontDialog +48 QFontDialog::~QFontDialog +56 QWidget::event +64 QFontDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QFontDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFontDialog::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QFontDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11QFontDialog) +488 QFontDialog::_ZThn16_N11QFontDialogD1Ev +496 QFontDialog::_ZThn16_N11QFontDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFontDialog + size=40 align=8 + base size=40 base align=8 +QFontDialog (0x7f2f3b69de70) 0 + vptr=((& QFontDialog::_ZTV11QFontDialog) + 16u) + QDialog (0x7f2f3b69dee0) 0 + primary-for QFontDialog (0x7f2f3b69de70) + QWidget (0x7f2f3b6a6500) 0 + primary-for QDialog (0x7f2f3b69dee0) + QObject (0x7f2f3b69df50) 0 + primary-for QWidget (0x7f2f3b6a6500) + QPaintDevice (0x7f2f3b6aa000) 16 + vptr=((& QFontDialog::_ZTV11QFontDialog) + 488u) + +Vtable for QLineEdit +QLineEdit::_ZTV9QLineEdit: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QLineEdit) +16 QLineEdit::metaObject +24 QLineEdit::qt_metacast +32 QLineEdit::qt_metacall +40 QLineEdit::~QLineEdit +48 QLineEdit::~QLineEdit +56 QLineEdit::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QLineEdit::sizeHint +136 QLineEdit::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QLineEdit::mousePressEvent +168 QLineEdit::mouseReleaseEvent +176 QLineEdit::mouseDoubleClickEvent +184 QLineEdit::mouseMoveEvent +192 QWidget::wheelEvent +200 QLineEdit::keyPressEvent +208 QWidget::keyReleaseEvent +216 QLineEdit::focusInEvent +224 QLineEdit::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QLineEdit::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QLineEdit::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QLineEdit::dragEnterEvent +312 QLineEdit::dragMoveEvent +320 QLineEdit::dragLeaveEvent +328 QLineEdit::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QLineEdit::changeEvent +368 QWidget::metric +376 QLineEdit::inputMethodEvent +384 QLineEdit::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI9QLineEdit) +464 QLineEdit::_ZThn16_N9QLineEditD1Ev +472 QLineEdit::_ZThn16_N9QLineEditD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QLineEdit + size=40 align=8 + base size=40 base align=8 +QLineEdit (0x7f2f3b70d310) 0 + vptr=((& QLineEdit::_ZTV9QLineEdit) + 16u) + QWidget (0x7f2f3b6cf800) 0 + primary-for QLineEdit (0x7f2f3b70d310) + QObject (0x7f2f3b70d380) 0 + primary-for QWidget (0x7f2f3b6cf800) + QPaintDevice (0x7f2f3b70d3f0) 16 + vptr=((& QLineEdit::_ZTV9QLineEdit) + 464u) + +Vtable for QInputDialog +QInputDialog::_ZTV12QInputDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QInputDialog) +16 QInputDialog::metaObject +24 QInputDialog::qt_metacast +32 QInputDialog::qt_metacall +40 QInputDialog::~QInputDialog +48 QInputDialog::~QInputDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QInputDialog::setVisible +128 QInputDialog::sizeHint +136 QInputDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QInputDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI12QInputDialog) +488 QInputDialog::_ZThn16_N12QInputDialogD1Ev +496 QInputDialog::_ZThn16_N12QInputDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QInputDialog + size=40 align=8 + base size=40 base align=8 +QInputDialog (0x7f2f3b55e070) 0 + vptr=((& QInputDialog::_ZTV12QInputDialog) + 16u) + QDialog (0x7f2f3b55e0e0) 0 + primary-for QInputDialog (0x7f2f3b55e070) + QWidget (0x7f2f3b559780) 0 + primary-for QDialog (0x7f2f3b55e0e0) + QObject (0x7f2f3b55e150) 0 + primary-for QWidget (0x7f2f3b559780) + QPaintDevice (0x7f2f3b55e1c0) 16 + vptr=((& QInputDialog::_ZTV12QInputDialog) + 488u) + +Vtable for QMessageBox +QMessageBox::_ZTV11QMessageBox: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMessageBox) +16 QMessageBox::metaObject +24 QMessageBox::qt_metacast +32 QMessageBox::qt_metacall +40 QMessageBox::~QMessageBox +48 QMessageBox::~QMessageBox +56 QMessageBox::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QMessageBox::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QMessageBox::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QMessageBox::resizeEvent +272 QMessageBox::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QMessageBox::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QMessageBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11QMessageBox) +488 QMessageBox::_ZThn16_N11QMessageBoxD1Ev +496 QMessageBox::_ZThn16_N11QMessageBoxD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMessageBox + size=40 align=8 + base size=40 base align=8 +QMessageBox (0x7f2f3b5bfee0) 0 + vptr=((& QMessageBox::_ZTV11QMessageBox) + 16u) + QDialog (0x7f2f3b5bff50) 0 + primary-for QMessageBox (0x7f2f3b5bfee0) + QWidget (0x7f2f3b5d8100) 0 + primary-for QDialog (0x7f2f3b5bff50) + QObject (0x7f2f3b5da000) 0 + primary-for QWidget (0x7f2f3b5d8100) + QPaintDevice (0x7f2f3b5da070) 16 + vptr=((& QMessageBox::_ZTV11QMessageBox) + 488u) + +Vtable for QPageSetupDialog +QPageSetupDialog::_ZTV16QPageSetupDialog: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QPageSetupDialog) +16 QPageSetupDialog::metaObject +24 QPageSetupDialog::qt_metacast +32 QPageSetupDialog::qt_metacall +40 QPageSetupDialog::~QPageSetupDialog +48 QPageSetupDialog::~QPageSetupDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractPageSetupDialog::done +456 QDialog::accept +464 QDialog::reject +472 QPageSetupDialog::exec +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI16QPageSetupDialog) +496 QPageSetupDialog::_ZThn16_N16QPageSetupDialogD1Ev +504 QPageSetupDialog::_ZThn16_N16QPageSetupDialogD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPageSetupDialog + size=40 align=8 + base size=40 base align=8 +QPageSetupDialog (0x7f2f3b459850) 0 + vptr=((& QPageSetupDialog::_ZTV16QPageSetupDialog) + 16u) + QAbstractPageSetupDialog (0x7f2f3b4598c0) 0 + primary-for QPageSetupDialog (0x7f2f3b459850) + QDialog (0x7f2f3b459930) 0 + primary-for QAbstractPageSetupDialog (0x7f2f3b4598c0) + QWidget (0x7f2f3b63d800) 0 + primary-for QDialog (0x7f2f3b459930) + QObject (0x7f2f3b4599a0) 0 + primary-for QWidget (0x7f2f3b63d800) + QPaintDevice (0x7f2f3b459a10) 16 + vptr=((& QPageSetupDialog::_ZTV16QPageSetupDialog) + 496u) + +Vtable for QUnixPrintWidget +QUnixPrintWidget::_ZTV16QUnixPrintWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QUnixPrintWidget) +16 QUnixPrintWidget::metaObject +24 QUnixPrintWidget::qt_metacast +32 QUnixPrintWidget::qt_metacall +40 QUnixPrintWidget::~QUnixPrintWidget +48 QUnixPrintWidget::~QUnixPrintWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI16QUnixPrintWidget) +464 QUnixPrintWidget::_ZThn16_N16QUnixPrintWidgetD1Ev +472 QUnixPrintWidget::_ZThn16_N16QUnixPrintWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QUnixPrintWidget + size=48 align=8 + base size=48 base align=8 +QUnixPrintWidget (0x7f2f3b48c7e0) 0 + vptr=((& QUnixPrintWidget::_ZTV16QUnixPrintWidget) + 16u) + QWidget (0x7f2f3b48b380) 0 + primary-for QUnixPrintWidget (0x7f2f3b48c7e0) + QObject (0x7f2f3b48c850) 0 + primary-for QWidget (0x7f2f3b48b380) + QPaintDevice (0x7f2f3b48c8c0) 16 + vptr=((& QUnixPrintWidget::_ZTV16QUnixPrintWidget) + 464u) + +Vtable for QPrintDialog +QPrintDialog::_ZTV12QPrintDialog: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QPrintDialog) +16 QPrintDialog::metaObject +24 QPrintDialog::qt_metacast +32 QPrintDialog::qt_metacall +40 QPrintDialog::~QPrintDialog +48 QPrintDialog::~QPrintDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QPrintDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QPrintDialog::done +456 QPrintDialog::accept +464 QDialog::reject +472 QPrintDialog::exec +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI12QPrintDialog) +496 QPrintDialog::_ZThn16_N12QPrintDialogD1Ev +504 QPrintDialog::_ZThn16_N12QPrintDialogD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPrintDialog + size=40 align=8 + base size=40 base align=8 +QPrintDialog (0x7f2f3b4a2700) 0 + vptr=((& QPrintDialog::_ZTV12QPrintDialog) + 16u) + QAbstractPrintDialog (0x7f2f3b4a2770) 0 + primary-for QPrintDialog (0x7f2f3b4a2700) + QDialog (0x7f2f3b4a27e0) 0 + primary-for QAbstractPrintDialog (0x7f2f3b4a2770) + QWidget (0x7f2f3b48ba80) 0 + primary-for QDialog (0x7f2f3b4a27e0) + QObject (0x7f2f3b4a2850) 0 + primary-for QWidget (0x7f2f3b48ba80) + QPaintDevice (0x7f2f3b4a28c0) 16 + vptr=((& QPrintDialog::_ZTV12QPrintDialog) + 496u) + +Vtable for QPrintPreviewDialog +QPrintPreviewDialog::_ZTV19QPrintPreviewDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QPrintPreviewDialog) +16 QPrintPreviewDialog::metaObject +24 QPrintPreviewDialog::qt_metacast +32 QPrintPreviewDialog::qt_metacall +40 QPrintPreviewDialog::~QPrintPreviewDialog +48 QPrintPreviewDialog::~QPrintPreviewDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QPrintPreviewDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QPrintPreviewDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI19QPrintPreviewDialog) +488 QPrintPreviewDialog::_ZThn16_N19QPrintPreviewDialogD1Ev +496 QPrintPreviewDialog::_ZThn16_N19QPrintPreviewDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPrintPreviewDialog + size=48 align=8 + base size=48 base align=8 +QPrintPreviewDialog (0x7f2f3b4bf2a0) 0 + vptr=((& QPrintPreviewDialog::_ZTV19QPrintPreviewDialog) + 16u) + QDialog (0x7f2f3b4bf310) 0 + primary-for QPrintPreviewDialog (0x7f2f3b4bf2a0) + QWidget (0x7f2f3b4bc480) 0 + primary-for QDialog (0x7f2f3b4bf310) + QObject (0x7f2f3b4bf380) 0 + primary-for QWidget (0x7f2f3b4bc480) + QPaintDevice (0x7f2f3b4bf3f0) 16 + vptr=((& QPrintPreviewDialog::_ZTV19QPrintPreviewDialog) + 488u) + +Vtable for QProgressDialog +QProgressDialog::_ZTV15QProgressDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QProgressDialog) +16 QProgressDialog::metaObject +24 QProgressDialog::qt_metacast +32 QProgressDialog::qt_metacall +40 QProgressDialog::~QProgressDialog +48 QProgressDialog::~QProgressDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QProgressDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QProgressDialog::resizeEvent +272 QProgressDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QProgressDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QProgressDialog::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI15QProgressDialog) +488 QProgressDialog::_ZThn16_N15QProgressDialogD1Ev +496 QProgressDialog::_ZThn16_N15QProgressDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QProgressDialog + size=40 align=8 + base size=40 base align=8 +QProgressDialog (0x7f2f3b4d8a10) 0 + vptr=((& QProgressDialog::_ZTV15QProgressDialog) + 16u) + QDialog (0x7f2f3b4d8a80) 0 + primary-for QProgressDialog (0x7f2f3b4d8a10) + QWidget (0x7f2f3b4bce80) 0 + primary-for QDialog (0x7f2f3b4d8a80) + QObject (0x7f2f3b4d8af0) 0 + primary-for QWidget (0x7f2f3b4bce80) + QPaintDevice (0x7f2f3b4d8b60) 16 + vptr=((& QProgressDialog::_ZTV15QProgressDialog) + 488u) + +Vtable for QWizard +QWizard::_ZTV7QWizard: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QWizard) +16 QWizard::metaObject +24 QWizard::qt_metacast +32 QWizard::qt_metacall +40 QWizard::~QWizard +48 QWizard::~QWizard +56 QWizard::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWizard::setVisible +128 QWizard::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWizard::paintEvent +256 QWidget::moveEvent +264 QWizard::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QWizard::done +456 QDialog::accept +464 QDialog::reject +472 QWizard::validateCurrentPage +480 QWizard::nextId +488 QWizard::initializePage +496 QWizard::cleanupPage +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI7QWizard) +520 QWizard::_ZThn16_N7QWizardD1Ev +528 QWizard::_ZThn16_N7QWizardD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWizard + size=40 align=8 + base size=40 base align=8 +QWizard (0x7f2f3b4fe620) 0 + vptr=((& QWizard::_ZTV7QWizard) + 16u) + QDialog (0x7f2f3b4fe690) 0 + primary-for QWizard (0x7f2f3b4fe620) + QWidget (0x7f2f3b4f6880) 0 + primary-for QDialog (0x7f2f3b4fe690) + QObject (0x7f2f3b4fe700) 0 + primary-for QWidget (0x7f2f3b4f6880) + QPaintDevice (0x7f2f3b4fe770) 16 + vptr=((& QWizard::_ZTV7QWizard) + 520u) + +Vtable for QWizardPage +QWizardPage::_ZTV11QWizardPage: 68u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QWizardPage) +16 QWizardPage::metaObject +24 QWizardPage::qt_metacast +32 QWizardPage::qt_metacall +40 QWizardPage::~QWizardPage +48 QWizardPage::~QWizardPage +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QWizardPage::initializePage +456 QWizardPage::cleanupPage +464 QWizardPage::validatePage +472 QWizardPage::isComplete +480 QWizardPage::nextId +488 (int (*)(...))-0x00000000000000010 +496 (int (*)(...))(& _ZTI11QWizardPage) +504 QWizardPage::_ZThn16_N11QWizardPageD1Ev +512 QWizardPage::_ZThn16_N11QWizardPageD0Ev +520 QWidget::_ZThn16_NK7QWidget7devTypeEv +528 QWidget::_ZThn16_NK7QWidget11paintEngineEv +536 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWizardPage + size=40 align=8 + base size=40 base align=8 +QWizardPage (0x7f2f3b3559a0) 0 + vptr=((& QWizardPage::_ZTV11QWizardPage) + 16u) + QWidget (0x7f2f3b52ab80) 0 + primary-for QWizardPage (0x7f2f3b3559a0) + QObject (0x7f2f3b355a10) 0 + primary-for QWidget (0x7f2f3b52ab80) + QPaintDevice (0x7f2f3b355a80) 16 + vptr=((& QWizardPage::_ZTV11QWizardPage) + 504u) + +Vtable for QKeyEventTransition +QKeyEventTransition::_ZTV19QKeyEventTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QKeyEventTransition) +16 QKeyEventTransition::metaObject +24 QKeyEventTransition::qt_metacast +32 QKeyEventTransition::qt_metacall +40 QKeyEventTransition::~QKeyEventTransition +48 QKeyEventTransition::~QKeyEventTransition +56 QEventTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QKeyEventTransition::eventTest +120 QKeyEventTransition::onTransition + +Class QKeyEventTransition + size=16 align=8 + base size=16 base align=8 +QKeyEventTransition (0x7f2f3b38d4d0) 0 + vptr=((& QKeyEventTransition::_ZTV19QKeyEventTransition) + 16u) + QEventTransition (0x7f2f3b38d540) 0 + primary-for QKeyEventTransition (0x7f2f3b38d4d0) + QAbstractTransition (0x7f2f3b38d5b0) 0 + primary-for QEventTransition (0x7f2f3b38d540) + QObject (0x7f2f3b38d620) 0 + primary-for QAbstractTransition (0x7f2f3b38d5b0) + +Vtable for QMouseEventTransition +QMouseEventTransition::_ZTV21QMouseEventTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QMouseEventTransition) +16 QMouseEventTransition::metaObject +24 QMouseEventTransition::qt_metacast +32 QMouseEventTransition::qt_metacall +40 QMouseEventTransition::~QMouseEventTransition +48 QMouseEventTransition::~QMouseEventTransition +56 QEventTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMouseEventTransition::eventTest +120 QMouseEventTransition::onTransition + +Class QMouseEventTransition + size=16 align=8 + base size=16 base align=8 +QMouseEventTransition (0x7f2f3b39ff50) 0 + vptr=((& QMouseEventTransition::_ZTV21QMouseEventTransition) + 16u) + QEventTransition (0x7f2f3b3a9000) 0 + primary-for QMouseEventTransition (0x7f2f3b39ff50) + QAbstractTransition (0x7f2f3b3a9070) 0 + primary-for QEventTransition (0x7f2f3b3a9000) + QObject (0x7f2f3b3a90e0) 0 + primary-for QAbstractTransition (0x7f2f3b3a9070) + +Vtable for QBitmap +QBitmap::_ZTV7QBitmap: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QBitmap) +16 QBitmap::~QBitmap +24 QBitmap::~QBitmap +32 QPixmap::devType +40 QPixmap::paintEngine +48 QPixmap::metric + +Class QBitmap + size=24 align=8 + base size=24 base align=8 +QBitmap (0x7f2f3b3bda10) 0 + vptr=((& QBitmap::_ZTV7QBitmap) + 16u) + QPixmap (0x7f2f3b3bda80) 0 + primary-for QBitmap (0x7f2f3b3bda10) + QPaintDevice (0x7f2f3b3bdaf0) 0 + primary-for QPixmap (0x7f2f3b3bda80) + +Vtable for QIconEngine +QIconEngine::_ZTV11QIconEngine: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QIconEngine) +16 QIconEngine::~QIconEngine +24 QIconEngine::~QIconEngine +32 __cxa_pure_virtual +40 QIconEngine::actualSize +48 QIconEngine::pixmap +56 QIconEngine::addPixmap +64 QIconEngine::addFile + +Class QIconEngine + size=8 align=8 + base size=8 base align=8 +QIconEngine (0x7f2f3b3ee8c0) 0 nearly-empty + vptr=((& QIconEngine::_ZTV11QIconEngine) + 16u) + +Class QIconEngineV2::AvailableSizesArgument + size=16 align=8 + base size=16 base align=8 +QIconEngineV2::AvailableSizesArgument (0x7f2f3b3fa070) 0 + +Vtable for QIconEngineV2 +QIconEngineV2::_ZTV13QIconEngineV2: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QIconEngineV2) +16 QIconEngineV2::~QIconEngineV2 +24 QIconEngineV2::~QIconEngineV2 +32 __cxa_pure_virtual +40 QIconEngine::actualSize +48 QIconEngine::pixmap +56 QIconEngine::addPixmap +64 QIconEngine::addFile +72 QIconEngineV2::key +80 QIconEngineV2::clone +88 QIconEngineV2::read +96 QIconEngineV2::write +104 QIconEngineV2::virtual_hook + +Class QIconEngineV2 + size=8 align=8 + base size=8 base align=8 +QIconEngineV2 (0x7f2f3b3eee70) 0 nearly-empty + vptr=((& QIconEngineV2::_ZTV13QIconEngineV2) + 16u) + QIconEngine (0x7f2f3b3eeee0) 0 nearly-empty + primary-for QIconEngineV2 (0x7f2f3b3eee70) + +Vtable for QIconEngineFactoryInterface +QIconEngineFactoryInterface::_ZTV27QIconEngineFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QIconEngineFactoryInterface) +16 QIconEngineFactoryInterface::~QIconEngineFactoryInterface +24 QIconEngineFactoryInterface::~QIconEngineFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QIconEngineFactoryInterface + size=8 align=8 + base size=8 base align=8 +QIconEngineFactoryInterface (0x7f2f3b3fa850) 0 nearly-empty + vptr=((& QIconEngineFactoryInterface::_ZTV27QIconEngineFactoryInterface) + 16u) + QFactoryInterface (0x7f2f3b3fa8c0) 0 nearly-empty + primary-for QIconEngineFactoryInterface (0x7f2f3b3fa850) + +Vtable for QIconEnginePlugin +QIconEnginePlugin::_ZTV17QIconEnginePlugin: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QIconEnginePlugin) +16 QIconEnginePlugin::metaObject +24 QIconEnginePlugin::qt_metacast +32 QIconEnginePlugin::qt_metacall +40 QIconEnginePlugin::~QIconEnginePlugin +48 QIconEnginePlugin::~QIconEnginePlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI17QIconEnginePlugin) +144 QIconEnginePlugin::_ZThn16_N17QIconEnginePluginD1Ev +152 QIconEnginePlugin::_ZThn16_N17QIconEnginePluginD0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QIconEnginePlugin + size=24 align=8 + base size=24 base align=8 +QIconEnginePlugin (0x7f2f3b3f5f80) 0 + vptr=((& QIconEnginePlugin::_ZTV17QIconEnginePlugin) + 16u) + QObject (0x7f2f3b4301c0) 0 + primary-for QIconEnginePlugin (0x7f2f3b3f5f80) + QIconEngineFactoryInterface (0x7f2f3b430230) 16 nearly-empty + vptr=((& QIconEnginePlugin::_ZTV17QIconEnginePlugin) + 144u) + QFactoryInterface (0x7f2f3b4302a0) 16 nearly-empty + primary-for QIconEngineFactoryInterface (0x7f2f3b430230) + +Vtable for QIconEngineFactoryInterfaceV2 +QIconEngineFactoryInterfaceV2::_ZTV29QIconEngineFactoryInterfaceV2: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI29QIconEngineFactoryInterfaceV2) +16 QIconEngineFactoryInterfaceV2::~QIconEngineFactoryInterfaceV2 +24 QIconEngineFactoryInterfaceV2::~QIconEngineFactoryInterfaceV2 +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QIconEngineFactoryInterfaceV2 + size=8 align=8 + base size=8 base align=8 +QIconEngineFactoryInterfaceV2 (0x7f2f3b442150) 0 nearly-empty + vptr=((& QIconEngineFactoryInterfaceV2::_ZTV29QIconEngineFactoryInterfaceV2) + 16u) + QFactoryInterface (0x7f2f3b4421c0) 0 nearly-empty + primary-for QIconEngineFactoryInterfaceV2 (0x7f2f3b442150) + +Vtable for QIconEnginePluginV2 +QIconEnginePluginV2::_ZTV19QIconEnginePluginV2: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QIconEnginePluginV2) +16 QIconEnginePluginV2::metaObject +24 QIconEnginePluginV2::qt_metacast +32 QIconEnginePluginV2::qt_metacall +40 QIconEnginePluginV2::~QIconEnginePluginV2 +48 QIconEnginePluginV2::~QIconEnginePluginV2 +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI19QIconEnginePluginV2) +144 QIconEnginePluginV2::_ZThn16_N19QIconEnginePluginV2D1Ev +152 QIconEnginePluginV2::_ZThn16_N19QIconEnginePluginV2D0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QIconEnginePluginV2 + size=24 align=8 + base size=24 base align=8 +QIconEnginePluginV2 (0x7f2f3b44f000) 0 + vptr=((& QIconEnginePluginV2::_ZTV19QIconEnginePluginV2) + 16u) + QObject (0x7f2f3b442c40) 0 + primary-for QIconEnginePluginV2 (0x7f2f3b44f000) + QIconEngineFactoryInterfaceV2 (0x7f2f3b442cb0) 16 nearly-empty + vptr=((& QIconEnginePluginV2::_ZTV19QIconEnginePluginV2) + 144u) + QFactoryInterface (0x7f2f3b442d20) 16 nearly-empty + primary-for QIconEngineFactoryInterfaceV2 (0x7f2f3b442cb0) + +Vtable for QImageIOHandler +QImageIOHandler::_ZTV15QImageIOHandler: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QImageIOHandler) +16 QImageIOHandler::~QImageIOHandler +24 QImageIOHandler::~QImageIOHandler +32 QImageIOHandler::name +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QImageIOHandler::write +64 QImageIOHandler::option +72 QImageIOHandler::setOption +80 QImageIOHandler::supportsOption +88 QImageIOHandler::jumpToNextImage +96 QImageIOHandler::jumpToImage +104 QImageIOHandler::loopCount +112 QImageIOHandler::imageCount +120 QImageIOHandler::nextImageDelay +128 QImageIOHandler::currentImageNumber +136 QImageIOHandler::currentImageRect + +Class QImageIOHandler + size=16 align=8 + base size=16 base align=8 +QImageIOHandler (0x7f2f3b258bd0) 0 + vptr=((& QImageIOHandler::_ZTV15QImageIOHandler) + 16u) + +Vtable for QImageIOHandlerFactoryInterface +QImageIOHandlerFactoryInterface::_ZTV31QImageIOHandlerFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI31QImageIOHandlerFactoryInterface) +16 QImageIOHandlerFactoryInterface::~QImageIOHandlerFactoryInterface +24 QImageIOHandlerFactoryInterface::~QImageIOHandlerFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QImageIOHandlerFactoryInterface + size=8 align=8 + base size=8 base align=8 +QImageIOHandlerFactoryInterface (0x7f2f3b2729a0) 0 nearly-empty + vptr=((& QImageIOHandlerFactoryInterface::_ZTV31QImageIOHandlerFactoryInterface) + 16u) + QFactoryInterface (0x7f2f3b272a10) 0 nearly-empty + primary-for QImageIOHandlerFactoryInterface (0x7f2f3b2729a0) + +Vtable for QImageIOPlugin +QImageIOPlugin::_ZTV14QImageIOPlugin: 23u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QImageIOPlugin) +16 QImageIOPlugin::metaObject +24 QImageIOPlugin::qt_metacast +32 QImageIOPlugin::qt_metacall +40 QImageIOPlugin::~QImageIOPlugin +48 QImageIOPlugin::~QImageIOPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 (int (*)(...))-0x00000000000000010 +144 (int (*)(...))(& _ZTI14QImageIOPlugin) +152 QImageIOPlugin::_ZThn16_N14QImageIOPluginD1Ev +160 QImageIOPlugin::_ZThn16_N14QImageIOPluginD0Ev +168 __cxa_pure_virtual +176 __cxa_pure_virtual + +Class QImageIOPlugin + size=24 align=8 + base size=24 base align=8 +QImageIOPlugin (0x7f2f3b277c00) 0 + vptr=((& QImageIOPlugin::_ZTV14QImageIOPlugin) + 16u) + QObject (0x7f2f3b2843f0) 0 + primary-for QImageIOPlugin (0x7f2f3b277c00) + QImageIOHandlerFactoryInterface (0x7f2f3b284460) 16 nearly-empty + vptr=((& QImageIOPlugin::_ZTV14QImageIOPlugin) + 152u) + QFactoryInterface (0x7f2f3b2844d0) 16 nearly-empty + primary-for QImageIOHandlerFactoryInterface (0x7f2f3b284460) + +Class QImageReader + size=8 align=8 + base size=8 base align=8 +QImageReader (0x7f2f3b2d94d0) 0 + +Class QImageWriter + size=8 align=8 + base size=8 base align=8 +QImageWriter (0x7f2f3b2d9ee0) 0 + +Vtable for QMovie +QMovie::_ZTV6QMovie: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QMovie) +16 QMovie::metaObject +24 QMovie::qt_metacast +32 QMovie::qt_metacall +40 QMovie::~QMovie +48 QMovie::~QMovie +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QMovie + size=16 align=8 + base size=16 base align=8 +QMovie (0x7f2f3b2ee770) 0 + vptr=((& QMovie::_ZTV6QMovie) + 16u) + QObject (0x7f2f3b2ee7e0) 0 + primary-for QMovie (0x7f2f3b2ee770) + +Vtable for QPicture +QPicture::_ZTV8QPicture: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QPicture) +16 QPicture::~QPicture +24 QPicture::~QPicture +32 QPicture::devType +40 QPicture::paintEngine +48 QPicture::metric +56 QPicture::setData + +Class QPicture + size=24 align=8 + base size=24 base align=8 +QPicture (0x7f2f3b3317e0) 0 + vptr=((& QPicture::_ZTV8QPicture) + 16u) + QPaintDevice (0x7f2f3b331850) 0 + primary-for QPicture (0x7f2f3b3317e0) + +Class QPictureIO + size=8 align=8 + base size=8 base align=8 +QPictureIO (0x7f2f3b155310) 0 + +Vtable for QPictureFormatInterface +QPictureFormatInterface::_ZTV23QPictureFormatInterface: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QPictureFormatInterface) +16 QPictureFormatInterface::~QPictureFormatInterface +24 QPictureFormatInterface::~QPictureFormatInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual + +Class QPictureFormatInterface + size=8 align=8 + base size=8 base align=8 +QPictureFormatInterface (0x7f2f3b155930) 0 nearly-empty + vptr=((& QPictureFormatInterface::_ZTV23QPictureFormatInterface) + 16u) + QFactoryInterface (0x7f2f3b1559a0) 0 nearly-empty + primary-for QPictureFormatInterface (0x7f2f3b155930) + +Vtable for QPictureFormatPlugin +QPictureFormatPlugin::_ZTV20QPictureFormatPlugin: 26u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QPictureFormatPlugin) +16 QPictureFormatPlugin::metaObject +24 QPictureFormatPlugin::qt_metacast +32 QPictureFormatPlugin::qt_metacall +40 QPictureFormatPlugin::~QPictureFormatPlugin +48 QPictureFormatPlugin::~QPictureFormatPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 QPictureFormatPlugin::loadPicture +128 QPictureFormatPlugin::savePicture +136 __cxa_pure_virtual +144 (int (*)(...))-0x00000000000000010 +152 (int (*)(...))(& _ZTI20QPictureFormatPlugin) +160 QPictureFormatPlugin::_ZThn16_N20QPictureFormatPluginD1Ev +168 QPictureFormatPlugin::_ZThn16_N20QPictureFormatPluginD0Ev +176 __cxa_pure_virtual +184 QPictureFormatPlugin::_ZThn16_N20QPictureFormatPlugin11loadPictureERK7QStringS2_P8QPicture +192 QPictureFormatPlugin::_ZThn16_N20QPictureFormatPlugin11savePictureERK7QStringS2_RK8QPicture +200 __cxa_pure_virtual + +Class QPictureFormatPlugin + size=24 align=8 + base size=24 base align=8 +QPictureFormatPlugin (0x7f2f3b171300) 0 + vptr=((& QPictureFormatPlugin::_ZTV20QPictureFormatPlugin) + 16u) + QObject (0x7f2f3b173310) 0 + primary-for QPictureFormatPlugin (0x7f2f3b171300) + QPictureFormatInterface (0x7f2f3b173380) 16 nearly-empty + vptr=((& QPictureFormatPlugin::_ZTV20QPictureFormatPlugin) + 160u) + QFactoryInterface (0x7f2f3b1733f0) 16 nearly-empty + primary-for QPictureFormatInterface (0x7f2f3b173380) + +Class QPixmapCache::Key + size=8 align=8 + base size=8 base align=8 +QPixmapCache::Key (0x7f2f3b183310) 0 + +Class QPixmapCache + size=1 align=1 + base size=0 base align=1 +QPixmapCache (0x7f2f3b1832a0) 0 empty + +Vtable for QGraphicsEffect +QGraphicsEffect::_ZTV15QGraphicsEffect: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QGraphicsEffect) +16 QGraphicsEffect::metaObject +24 QGraphicsEffect::qt_metacast +32 QGraphicsEffect::qt_metacall +40 QGraphicsEffect::~QGraphicsEffect +48 QGraphicsEffect::~QGraphicsEffect +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsEffect::boundingRectFor +120 __cxa_pure_virtual +128 QGraphicsEffect::sourceChanged + +Class QGraphicsEffect + size=16 align=8 + base size=16 base align=8 +QGraphicsEffect (0x7f2f3b18b150) 0 + vptr=((& QGraphicsEffect::_ZTV15QGraphicsEffect) + 16u) + QObject (0x7f2f3b18b1c0) 0 + primary-for QGraphicsEffect (0x7f2f3b18b150) + +Vtable for QGraphicsColorizeEffect +QGraphicsColorizeEffect::_ZTV23QGraphicsColorizeEffect: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QGraphicsColorizeEffect) +16 QGraphicsColorizeEffect::metaObject +24 QGraphicsColorizeEffect::qt_metacast +32 QGraphicsColorizeEffect::qt_metacall +40 QGraphicsColorizeEffect::~QGraphicsColorizeEffect +48 QGraphicsColorizeEffect::~QGraphicsColorizeEffect +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsEffect::boundingRectFor +120 QGraphicsColorizeEffect::draw +128 QGraphicsEffect::sourceChanged + +Class QGraphicsColorizeEffect + size=16 align=8 + base size=16 base align=8 +QGraphicsColorizeEffect (0x7f2f3b1d1c40) 0 + vptr=((& QGraphicsColorizeEffect::_ZTV23QGraphicsColorizeEffect) + 16u) + QGraphicsEffect (0x7f2f3b1d1cb0) 0 + primary-for QGraphicsColorizeEffect (0x7f2f3b1d1c40) + QObject (0x7f2f3b1d1d20) 0 + primary-for QGraphicsEffect (0x7f2f3b1d1cb0) + +Vtable for QGraphicsBlurEffect +QGraphicsBlurEffect::_ZTV19QGraphicsBlurEffect: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QGraphicsBlurEffect) +16 QGraphicsBlurEffect::metaObject +24 QGraphicsBlurEffect::qt_metacast +32 QGraphicsBlurEffect::qt_metacall +40 QGraphicsBlurEffect::~QGraphicsBlurEffect +48 QGraphicsBlurEffect::~QGraphicsBlurEffect +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsBlurEffect::boundingRectFor +120 QGraphicsBlurEffect::draw +128 QGraphicsEffect::sourceChanged + +Class QGraphicsBlurEffect + size=16 align=8 + base size=16 base align=8 +QGraphicsBlurEffect (0x7f2f3b2015b0) 0 + vptr=((& QGraphicsBlurEffect::_ZTV19QGraphicsBlurEffect) + 16u) + QGraphicsEffect (0x7f2f3b201620) 0 + primary-for QGraphicsBlurEffect (0x7f2f3b2015b0) + QObject (0x7f2f3b201690) 0 + primary-for QGraphicsEffect (0x7f2f3b201620) + +Vtable for QGraphicsDropShadowEffect +QGraphicsDropShadowEffect::_ZTV25QGraphicsDropShadowEffect: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QGraphicsDropShadowEffect) +16 QGraphicsDropShadowEffect::metaObject +24 QGraphicsDropShadowEffect::qt_metacast +32 QGraphicsDropShadowEffect::qt_metacall +40 QGraphicsDropShadowEffect::~QGraphicsDropShadowEffect +48 QGraphicsDropShadowEffect::~QGraphicsDropShadowEffect +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsDropShadowEffect::boundingRectFor +120 QGraphicsDropShadowEffect::draw +128 QGraphicsEffect::sourceChanged + +Class QGraphicsDropShadowEffect + size=16 align=8 + base size=16 base align=8 +QGraphicsDropShadowEffect (0x7f2f3b05e0e0) 0 + vptr=((& QGraphicsDropShadowEffect::_ZTV25QGraphicsDropShadowEffect) + 16u) + QGraphicsEffect (0x7f2f3b05e150) 0 + primary-for QGraphicsDropShadowEffect (0x7f2f3b05e0e0) + QObject (0x7f2f3b05e1c0) 0 + primary-for QGraphicsEffect (0x7f2f3b05e150) + +Vtable for QGraphicsOpacityEffect +QGraphicsOpacityEffect::_ZTV22QGraphicsOpacityEffect: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QGraphicsOpacityEffect) +16 QGraphicsOpacityEffect::metaObject +24 QGraphicsOpacityEffect::qt_metacast +32 QGraphicsOpacityEffect::qt_metacall +40 QGraphicsOpacityEffect::~QGraphicsOpacityEffect +48 QGraphicsOpacityEffect::~QGraphicsOpacityEffect +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsEffect::boundingRectFor +120 QGraphicsOpacityEffect::draw +128 QGraphicsEffect::sourceChanged + +Class QGraphicsOpacityEffect + size=16 align=8 + base size=16 base align=8 +QGraphicsOpacityEffect (0x7f2f3b07e5b0) 0 + vptr=((& QGraphicsOpacityEffect::_ZTV22QGraphicsOpacityEffect) + 16u) + QGraphicsEffect (0x7f2f3b07e620) 0 + primary-for QGraphicsOpacityEffect (0x7f2f3b07e5b0) + QObject (0x7f2f3b07e690) 0 + primary-for QGraphicsEffect (0x7f2f3b07e620) + +Class QVFbHeader + size=1088 align=8 + base size=1088 base align=8 +QVFbHeader (0x7f2f3b08eee0) 0 + +Class QVFbKeyData + size=12 align=4 + base size=12 base align=4 +QVFbKeyData (0x7f2f3b08ef50) 0 + +Vtable for QWSEmbedWidget +QWSEmbedWidget::_ZTV14QWSEmbedWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QWSEmbedWidget) +16 QWSEmbedWidget::metaObject +24 QWSEmbedWidget::qt_metacast +32 QWSEmbedWidget::qt_metacall +40 QWSEmbedWidget::~QWSEmbedWidget +48 QWSEmbedWidget::~QWSEmbedWidget +56 QWidget::event +64 QWSEmbedWidget::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWSEmbedWidget::moveEvent +264 QWSEmbedWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWSEmbedWidget::showEvent +344 QWSEmbedWidget::hideEvent +352 QWidget::x11Event +360 QWSEmbedWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI14QWSEmbedWidget) +464 QWSEmbedWidget::_ZThn16_N14QWSEmbedWidgetD1Ev +472 QWSEmbedWidget::_ZThn16_N14QWSEmbedWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWSEmbedWidget + size=40 align=8 + base size=40 base align=8 +QWSEmbedWidget (0x7f2f3b09a000) 0 + vptr=((& QWSEmbedWidget::_ZTV14QWSEmbedWidget) + 16u) + QWidget (0x7f2f3b08c900) 0 + primary-for QWSEmbedWidget (0x7f2f3b09a000) + QObject (0x7f2f3b09a070) 0 + primary-for QWidget (0x7f2f3b08c900) + QPaintDevice (0x7f2f3b09a0e0) 16 + vptr=((& QWSEmbedWidget::_ZTV14QWSEmbedWidget) + 464u) + +Class QColormap + size=8 align=8 + base size=8 base align=8 +QColormap (0x7f2f3b0b14d0) 0 + +Class QTileRules + size=8 align=4 + base size=8 base align=4 +QTileRules (0x7f2f3b0b1cb0) 0 + +Class QDrawPixmaps::Data + size=80 align=8 + base size=80 base align=8 +QDrawPixmaps::Data (0x7f2f3b0c8d20) 0 + +Class QPainter + size=8 align=8 + base size=8 base align=8 +QPainter (0x7f2f3b0c8e00) 0 + +Class QTextItem + size=1 align=1 + base size=0 base align=1 +QTextItem (0x7f2f3aef78c0) 0 empty + +Vtable for QPaintEngine +QPaintEngine::_ZTV12QPaintEngine: 24u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QPaintEngine) +16 QPaintEngine::~QPaintEngine +24 QPaintEngine::~QPaintEngine +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QPaintEngine::drawRects +64 QPaintEngine::drawRects +72 QPaintEngine::drawLines +80 QPaintEngine::drawLines +88 QPaintEngine::drawEllipse +96 QPaintEngine::drawEllipse +104 QPaintEngine::drawPath +112 QPaintEngine::drawPoints +120 QPaintEngine::drawPoints +128 QPaintEngine::drawPolygon +136 QPaintEngine::drawPolygon +144 __cxa_pure_virtual +152 QPaintEngine::drawTextItem +160 QPaintEngine::drawTiledPixmap +168 QPaintEngine::drawImage +176 QPaintEngine::coordinateOffset +184 __cxa_pure_virtual + +Class QPaintEngine + size=32 align=8 + base size=32 base align=8 +QPaintEngine (0x7f2f3aef7ee0) 0 + vptr=((& QPaintEngine::_ZTV12QPaintEngine) + 16u) + +Class QPaintEngineState + size=4 align=4 + base size=4 base align=4 +QPaintEngineState (0x7f2f3af42b60) 0 + +Vtable for QPrinter +QPrinter::_ZTV8QPrinter: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QPrinter) +16 QPrinter::~QPrinter +24 QPrinter::~QPrinter +32 QPrinter::devType +40 QPrinter::paintEngine +48 QPrinter::metric + +Class QPrinter + size=24 align=8 + base size=24 base align=8 +QPrinter (0x7f2f3ae10e70) 0 + vptr=((& QPrinter::_ZTV8QPrinter) + 16u) + QPaintDevice (0x7f2f3ae10ee0) 0 + primary-for QPrinter (0x7f2f3ae10e70) + +Vtable for QPrintEngine +QPrintEngine::_ZTV12QPrintEngine: 10u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QPrintEngine) +16 QPrintEngine::~QPrintEngine +24 QPrintEngine::~QPrintEngine +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual + +Class QPrintEngine + size=8 align=8 + base size=8 base align=8 +QPrintEngine (0x7f2f3ac76540) 0 nearly-empty + vptr=((& QPrintEngine::_ZTV12QPrintEngine) + 16u) + +Class QPrinterInfo + size=8 align=8 + base size=8 base align=8 +QPrinterInfo (0x7f2f3ac842a0) 0 + +Class QStylePainter + size=24 align=8 + base size=24 base align=8 +QStylePainter (0x7f2f3ac8b9a0) 0 + QPainter (0x7f2f3ac8ba10) 0 + +Vtable for QAbstractProxyModel +QAbstractProxyModel::_ZTV19QAbstractProxyModel: 47u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractProxyModel) +16 QAbstractProxyModel::metaObject +24 QAbstractProxyModel::qt_metacast +32 QAbstractProxyModel::qt_metacall +40 QAbstractProxyModel::~QAbstractProxyModel +48 QAbstractProxyModel::~QAbstractProxyModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractItemModel::hasChildren +152 QAbstractProxyModel::data +160 QAbstractProxyModel::setData +168 QAbstractProxyModel::headerData +176 QAbstractProxyModel::setHeaderData +184 QAbstractProxyModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractItemModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractProxyModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractProxyModel::submit +328 QAbstractProxyModel::revert +336 QAbstractProxyModel::setSourceModel +344 __cxa_pure_virtual +352 __cxa_pure_virtual +360 QAbstractProxyModel::mapSelectionToSource +368 QAbstractProxyModel::mapSelectionFromSource + +Class QAbstractProxyModel + size=16 align=8 + base size=16 base align=8 +QAbstractProxyModel (0x7f2f3acbcee0) 0 + vptr=((& QAbstractProxyModel::_ZTV19QAbstractProxyModel) + 16u) + QAbstractItemModel (0x7f2f3acbcf50) 0 + primary-for QAbstractProxyModel (0x7f2f3acbcee0) + QObject (0x7f2f3acc1000) 0 + primary-for QAbstractItemModel (0x7f2f3acbcf50) + +Vtable for QColumnView +QColumnView::_ZTV11QColumnView: 104u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QColumnView) +16 QColumnView::metaObject +24 QColumnView::qt_metacast +32 QColumnView::qt_metacall +40 QColumnView::~QColumnView +48 QColumnView::~QColumnView +56 QAbstractItemView::event +64 QObject::eventFilter +72 QAbstractItemView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QColumnView::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QAbstractItemView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QAbstractItemView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractScrollArea::paintEvent +256 QWidget::moveEvent +264 QColumnView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QColumnView::scrollContentsBy +464 QColumnView::setModel +472 QColumnView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QColumnView::visualRect +496 QColumnView::scrollTo +504 QColumnView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QAbstractItemView::reset +536 QColumnView::setRootIndex +544 QAbstractItemView::doItemsLayout +552 QColumnView::selectAll +560 QAbstractItemView::dataChanged +568 QColumnView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QAbstractItemView::selectionChanged +592 QColumnView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QAbstractItemView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QColumnView::moveCursor +688 QColumnView::horizontalOffset +696 QColumnView::verticalOffset +704 QColumnView::isIndexHidden +712 QColumnView::setSelection +720 QColumnView::visualRegionForSelection +728 QAbstractItemView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 QColumnView::createColumn +776 (int (*)(...))-0x00000000000000010 +784 (int (*)(...))(& _ZTI11QColumnView) +792 QColumnView::_ZThn16_N11QColumnViewD1Ev +800 QColumnView::_ZThn16_N11QColumnViewD0Ev +808 QWidget::_ZThn16_NK7QWidget7devTypeEv +816 QWidget::_ZThn16_NK7QWidget11paintEngineEv +824 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QColumnView + size=40 align=8 + base size=40 base align=8 +QColumnView (0x7f2f3acd6af0) 0 + vptr=((& QColumnView::_ZTV11QColumnView) + 16u) + QAbstractItemView (0x7f2f3acd6b60) 0 + primary-for QColumnView (0x7f2f3acd6af0) + QAbstractScrollArea (0x7f2f3acd6bd0) 0 + primary-for QAbstractItemView (0x7f2f3acd6b60) + QFrame (0x7f2f3acd6c40) 0 + primary-for QAbstractScrollArea (0x7f2f3acd6bd0) + QWidget (0x7f2f3acdd200) 0 + primary-for QFrame (0x7f2f3acd6c40) + QObject (0x7f2f3acd6cb0) 0 + primary-for QWidget (0x7f2f3acdd200) + QPaintDevice (0x7f2f3acd6d20) 16 + vptr=((& QColumnView::_ZTV11QColumnView) + 792u) + +Vtable for QDataWidgetMapper +QDataWidgetMapper::_ZTV17QDataWidgetMapper: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QDataWidgetMapper) +16 QDataWidgetMapper::metaObject +24 QDataWidgetMapper::qt_metacast +32 QDataWidgetMapper::qt_metacall +40 QDataWidgetMapper::~QDataWidgetMapper +48 QDataWidgetMapper::~QDataWidgetMapper +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QDataWidgetMapper::setCurrentIndex + +Class QDataWidgetMapper + size=16 align=8 + base size=16 base align=8 +QDataWidgetMapper (0x7f2f3acfcc40) 0 + vptr=((& QDataWidgetMapper::_ZTV17QDataWidgetMapper) + 16u) + QObject (0x7f2f3acfccb0) 0 + primary-for QDataWidgetMapper (0x7f2f3acfcc40) + +Vtable for QFileIconProvider +QFileIconProvider::_ZTV17QFileIconProvider: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QFileIconProvider) +16 QFileIconProvider::~QFileIconProvider +24 QFileIconProvider::~QFileIconProvider +32 QFileIconProvider::icon +40 QFileIconProvider::icon +48 QFileIconProvider::type + +Class QFileIconProvider + size=16 align=8 + base size=16 base align=8 +QFileIconProvider (0x7f2f3ad1f700) 0 + vptr=((& QFileIconProvider::_ZTV17QFileIconProvider) + 16u) + +Vtable for QDirModel +QDirModel::_ZTV9QDirModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QDirModel) +16 QDirModel::metaObject +24 QDirModel::qt_metacast +32 QDirModel::qt_metacall +40 QDirModel::~QDirModel +48 QDirModel::~QDirModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QDirModel::index +120 QDirModel::parent +128 QDirModel::rowCount +136 QDirModel::columnCount +144 QDirModel::hasChildren +152 QDirModel::data +160 QDirModel::setData +168 QDirModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QDirModel::mimeTypes +208 QDirModel::mimeData +216 QDirModel::dropMimeData +224 QDirModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QDirModel::flags +288 QDirModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QDirModel + size=16 align=8 + base size=16 base align=8 +QDirModel (0x7f2f3ad31380) 0 + vptr=((& QDirModel::_ZTV9QDirModel) + 16u) + QAbstractItemModel (0x7f2f3ad313f0) 0 + primary-for QDirModel (0x7f2f3ad31380) + QObject (0x7f2f3ad31460) 0 + primary-for QAbstractItemModel (0x7f2f3ad313f0) + +Vtable for QHeaderView +QHeaderView::_ZTV11QHeaderView: 105u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QHeaderView) +16 QHeaderView::metaObject +24 QHeaderView::qt_metacast +32 QHeaderView::qt_metacall +40 QHeaderView::~QHeaderView +48 QHeaderView::~QHeaderView +56 QHeaderView::event +64 QObject::eventFilter +72 QAbstractItemView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QHeaderView::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QHeaderView::mousePressEvent +168 QHeaderView::mouseReleaseEvent +176 QHeaderView::mouseDoubleClickEvent +184 QHeaderView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QHeaderView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QHeaderView::viewportEvent +456 QHeaderView::scrollContentsBy +464 QHeaderView::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QHeaderView::visualRect +496 QHeaderView::scrollTo +504 QHeaderView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QHeaderView::reset +536 QAbstractItemView::setRootIndex +544 QHeaderView::doItemsLayout +552 QAbstractItemView::selectAll +560 QHeaderView::dataChanged +568 QHeaderView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QAbstractItemView::selectionChanged +592 QHeaderView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QHeaderView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QHeaderView::moveCursor +688 QHeaderView::horizontalOffset +696 QHeaderView::verticalOffset +704 QHeaderView::isIndexHidden +712 QHeaderView::setSelection +720 QHeaderView::visualRegionForSelection +728 QAbstractItemView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 QHeaderView::paintSection +776 QHeaderView::sectionSizeFromContents +784 (int (*)(...))-0x00000000000000010 +792 (int (*)(...))(& _ZTI11QHeaderView) +800 QHeaderView::_ZThn16_N11QHeaderViewD1Ev +808 QHeaderView::_ZThn16_N11QHeaderViewD0Ev +816 QWidget::_ZThn16_NK7QWidget7devTypeEv +824 QWidget::_ZThn16_NK7QWidget11paintEngineEv +832 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QHeaderView + size=40 align=8 + base size=40 base align=8 +QHeaderView (0x7f2f3ab5b620) 0 + vptr=((& QHeaderView::_ZTV11QHeaderView) + 16u) + QAbstractItemView (0x7f2f3ab5b690) 0 + primary-for QHeaderView (0x7f2f3ab5b620) + QAbstractScrollArea (0x7f2f3ab5b700) 0 + primary-for QAbstractItemView (0x7f2f3ab5b690) + QFrame (0x7f2f3ab5b770) 0 + primary-for QAbstractScrollArea (0x7f2f3ab5b700) + QWidget (0x7f2f3ad38980) 0 + primary-for QFrame (0x7f2f3ab5b770) + QObject (0x7f2f3ab5b7e0) 0 + primary-for QWidget (0x7f2f3ad38980) + QPaintDevice (0x7f2f3ab5b850) 16 + vptr=((& QHeaderView::_ZTV11QHeaderView) + 800u) + +Vtable for QItemDelegate +QItemDelegate::_ZTV13QItemDelegate: 25u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QItemDelegate) +16 QItemDelegate::metaObject +24 QItemDelegate::qt_metacast +32 QItemDelegate::qt_metacall +40 QItemDelegate::~QItemDelegate +48 QItemDelegate::~QItemDelegate +56 QObject::event +64 QItemDelegate::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QItemDelegate::paint +120 QItemDelegate::sizeHint +128 QItemDelegate::createEditor +136 QItemDelegate::setEditorData +144 QItemDelegate::setModelData +152 QItemDelegate::updateEditorGeometry +160 QItemDelegate::editorEvent +168 QItemDelegate::drawDisplay +176 QItemDelegate::drawDecoration +184 QItemDelegate::drawFocus +192 QItemDelegate::drawCheck + +Class QItemDelegate + size=16 align=8 + base size=16 base align=8 +QItemDelegate (0x7f2f3aba1230) 0 + vptr=((& QItemDelegate::_ZTV13QItemDelegate) + 16u) + QAbstractItemDelegate (0x7f2f3aba12a0) 0 + primary-for QItemDelegate (0x7f2f3aba1230) + QObject (0x7f2f3aba1310) 0 + primary-for QAbstractItemDelegate (0x7f2f3aba12a0) + +Vtable for QItemEditorCreatorBase +QItemEditorCreatorBase::_ZTV22QItemEditorCreatorBase: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QItemEditorCreatorBase) +16 QItemEditorCreatorBase::~QItemEditorCreatorBase +24 QItemEditorCreatorBase::~QItemEditorCreatorBase +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QItemEditorCreatorBase + size=8 align=8 + base size=8 base align=8 +QItemEditorCreatorBase (0x7f2f3abbcbd0) 0 nearly-empty + vptr=((& QItemEditorCreatorBase::_ZTV22QItemEditorCreatorBase) + 16u) + +Vtable for QItemEditorFactory +QItemEditorFactory::_ZTV18QItemEditorFactory: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QItemEditorFactory) +16 QItemEditorFactory::~QItemEditorFactory +24 QItemEditorFactory::~QItemEditorFactory +32 QItemEditorFactory::createEditor +40 QItemEditorFactory::valuePropertyName + +Class QItemEditorFactory + size=16 align=8 + base size=16 base align=8 +QItemEditorFactory (0x7f2f3abc7a80) 0 + vptr=((& QItemEditorFactory::_ZTV18QItemEditorFactory) + 16u) + +Vtable for QListWidgetItem +QListWidgetItem::_ZTV15QListWidgetItem: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QListWidgetItem) +16 QListWidgetItem::~QListWidgetItem +24 QListWidgetItem::~QListWidgetItem +32 QListWidgetItem::clone +40 QListWidgetItem::setBackgroundColor +48 QListWidgetItem::data +56 QListWidgetItem::setData +64 QListWidgetItem::operator< +72 QListWidgetItem::read +80 QListWidgetItem::write + +Class QListWidgetItem + size=48 align=8 + base size=44 base align=8 +QListWidgetItem (0x7f2f3abd6d20) 0 + vptr=((& QListWidgetItem::_ZTV15QListWidgetItem) + 16u) + +Vtable for QListWidget +QListWidget::_ZTV11QListWidget: 107u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QListWidget) +16 QListWidget::metaObject +24 QListWidget::qt_metacast +32 QListWidget::qt_metacall +40 QListWidget::~QListWidget +48 QListWidget::~QListWidget +56 QListWidget::event +64 QObject::eventFilter +72 QListView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QListView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QListView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QListView::paintEvent +256 QWidget::moveEvent +264 QListView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QListView::dragMoveEvent +320 QListView::dragLeaveEvent +328 QListWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QListView::scrollContentsBy +464 QListWidget::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QListView::visualRect +496 QListView::scrollTo +504 QListView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QListView::reset +536 QListView::setRootIndex +544 QListView::doItemsLayout +552 QAbstractItemView::selectAll +560 QListView::dataChanged +568 QListView::rowsInserted +576 QListView::rowsAboutToBeRemoved +584 QListView::selectionChanged +592 QListView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QListView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QListView::moveCursor +688 QListView::horizontalOffset +696 QListView::verticalOffset +704 QListView::isIndexHidden +712 QListView::setSelection +720 QListView::visualRegionForSelection +728 QListView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QListView::startDrag +760 QListView::viewOptions +768 QListWidget::mimeTypes +776 QListWidget::mimeData +784 QListWidget::dropMimeData +792 QListWidget::supportedDropActions +800 (int (*)(...))-0x00000000000000010 +808 (int (*)(...))(& _ZTI11QListWidget) +816 QListWidget::_ZThn16_N11QListWidgetD1Ev +824 QListWidget::_ZThn16_N11QListWidgetD0Ev +832 QWidget::_ZThn16_NK7QWidget7devTypeEv +840 QWidget::_ZThn16_NK7QWidget11paintEngineEv +848 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QListWidget + size=40 align=8 + base size=40 base align=8 +QListWidget (0x7f2f3aa653f0) 0 + vptr=((& QListWidget::_ZTV11QListWidget) + 16u) + QListView (0x7f2f3aa65460) 0 + primary-for QListWidget (0x7f2f3aa653f0) + QAbstractItemView (0x7f2f3aa654d0) 0 + primary-for QListView (0x7f2f3aa65460) + QAbstractScrollArea (0x7f2f3aa65540) 0 + primary-for QAbstractItemView (0x7f2f3aa654d0) + QFrame (0x7f2f3aa655b0) 0 + primary-for QAbstractScrollArea (0x7f2f3aa65540) + QWidget (0x7f2f3aa5ea00) 0 + primary-for QFrame (0x7f2f3aa655b0) + QObject (0x7f2f3aa65620) 0 + primary-for QWidget (0x7f2f3aa5ea00) + QPaintDevice (0x7f2f3aa65690) 16 + vptr=((& QListWidget::_ZTV11QListWidget) + 816u) + +Vtable for QProxyModel +QProxyModel::_ZTV11QProxyModel: 43u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QProxyModel) +16 QProxyModel::metaObject +24 QProxyModel::qt_metacast +32 QProxyModel::qt_metacall +40 QProxyModel::~QProxyModel +48 QProxyModel::~QProxyModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QProxyModel::index +120 QProxyModel::parent +128 QProxyModel::rowCount +136 QProxyModel::columnCount +144 QProxyModel::hasChildren +152 QProxyModel::data +160 QProxyModel::setData +168 QProxyModel::headerData +176 QProxyModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QProxyModel::mimeTypes +208 QProxyModel::mimeData +216 QProxyModel::dropMimeData +224 QProxyModel::supportedDropActions +232 QProxyModel::insertRows +240 QProxyModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QProxyModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QProxyModel::flags +288 QProxyModel::sort +296 QAbstractItemModel::buddy +304 QProxyModel::match +312 QProxyModel::span +320 QProxyModel::submit +328 QProxyModel::revert +336 QProxyModel::setModel + +Class QProxyModel + size=16 align=8 + base size=16 base align=8 +QProxyModel (0x7f2f3aa9f850) 0 + vptr=((& QProxyModel::_ZTV11QProxyModel) + 16u) + QAbstractItemModel (0x7f2f3aa9f8c0) 0 + primary-for QProxyModel (0x7f2f3aa9f850) + QObject (0x7f2f3aa9f930) 0 + primary-for QAbstractItemModel (0x7f2f3aa9f8c0) + +Vtable for QSortFilterProxyModel +QSortFilterProxyModel::_ZTV21QSortFilterProxyModel: 50u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QSortFilterProxyModel) +16 QSortFilterProxyModel::metaObject +24 QSortFilterProxyModel::qt_metacast +32 QSortFilterProxyModel::qt_metacall +40 QSortFilterProxyModel::~QSortFilterProxyModel +48 QSortFilterProxyModel::~QSortFilterProxyModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QSortFilterProxyModel::index +120 QSortFilterProxyModel::parent +128 QSortFilterProxyModel::rowCount +136 QSortFilterProxyModel::columnCount +144 QSortFilterProxyModel::hasChildren +152 QSortFilterProxyModel::data +160 QSortFilterProxyModel::setData +168 QSortFilterProxyModel::headerData +176 QSortFilterProxyModel::setHeaderData +184 QAbstractProxyModel::itemData +192 QAbstractItemModel::setItemData +200 QSortFilterProxyModel::mimeTypes +208 QSortFilterProxyModel::mimeData +216 QSortFilterProxyModel::dropMimeData +224 QSortFilterProxyModel::supportedDropActions +232 QSortFilterProxyModel::insertRows +240 QSortFilterProxyModel::insertColumns +248 QSortFilterProxyModel::removeRows +256 QSortFilterProxyModel::removeColumns +264 QSortFilterProxyModel::fetchMore +272 QSortFilterProxyModel::canFetchMore +280 QSortFilterProxyModel::flags +288 QSortFilterProxyModel::sort +296 QSortFilterProxyModel::buddy +304 QSortFilterProxyModel::match +312 QSortFilterProxyModel::span +320 QAbstractProxyModel::submit +328 QAbstractProxyModel::revert +336 QSortFilterProxyModel::setSourceModel +344 QSortFilterProxyModel::mapToSource +352 QSortFilterProxyModel::mapFromSource +360 QSortFilterProxyModel::mapSelectionToSource +368 QSortFilterProxyModel::mapSelectionFromSource +376 QSortFilterProxyModel::filterAcceptsRow +384 QSortFilterProxyModel::filterAcceptsColumn +392 QSortFilterProxyModel::lessThan + +Class QSortFilterProxyModel + size=16 align=8 + base size=16 base align=8 +QSortFilterProxyModel (0x7f2f3aac2700) 0 + vptr=((& QSortFilterProxyModel::_ZTV21QSortFilterProxyModel) + 16u) + QAbstractProxyModel (0x7f2f3aac2770) 0 + primary-for QSortFilterProxyModel (0x7f2f3aac2700) + QAbstractItemModel (0x7f2f3aac27e0) 0 + primary-for QAbstractProxyModel (0x7f2f3aac2770) + QObject (0x7f2f3aac2850) 0 + primary-for QAbstractItemModel (0x7f2f3aac27e0) + +Vtable for QStandardItem +QStandardItem::_ZTV13QStandardItem: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QStandardItem) +16 QStandardItem::~QStandardItem +24 QStandardItem::~QStandardItem +32 QStandardItem::data +40 QStandardItem::setData +48 QStandardItem::clone +56 QStandardItem::type +64 QStandardItem::read +72 QStandardItem::write +80 QStandardItem::operator< + +Class QStandardItem + size=16 align=8 + base size=16 base align=8 +QStandardItem (0x7f2f3aaf3620) 0 + vptr=((& QStandardItem::_ZTV13QStandardItem) + 16u) + +Vtable for QStandardItemModel +QStandardItemModel::_ZTV18QStandardItemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QStandardItemModel) +16 QStandardItemModel::metaObject +24 QStandardItemModel::qt_metacast +32 QStandardItemModel::qt_metacall +40 QStandardItemModel::~QStandardItemModel +48 QStandardItemModel::~QStandardItemModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QStandardItemModel::index +120 QStandardItemModel::parent +128 QStandardItemModel::rowCount +136 QStandardItemModel::columnCount +144 QStandardItemModel::hasChildren +152 QStandardItemModel::data +160 QStandardItemModel::setData +168 QStandardItemModel::headerData +176 QStandardItemModel::setHeaderData +184 QStandardItemModel::itemData +192 QStandardItemModel::setItemData +200 QStandardItemModel::mimeTypes +208 QStandardItemModel::mimeData +216 QStandardItemModel::dropMimeData +224 QStandardItemModel::supportedDropActions +232 QStandardItemModel::insertRows +240 QStandardItemModel::insertColumns +248 QStandardItemModel::removeRows +256 QStandardItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QStandardItemModel::flags +288 QStandardItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QStandardItemModel + size=16 align=8 + base size=16 base align=8 +QStandardItemModel (0x7f2f3a9dc3f0) 0 + vptr=((& QStandardItemModel::_ZTV18QStandardItemModel) + 16u) + QAbstractItemModel (0x7f2f3a9dc460) 0 + primary-for QStandardItemModel (0x7f2f3a9dc3f0) + QObject (0x7f2f3a9dc4d0) 0 + primary-for QAbstractItemModel (0x7f2f3a9dc460) + +Vtable for QStringListModel +QStringListModel::_ZTV16QStringListModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QStringListModel) +16 QStringListModel::metaObject +24 QStringListModel::qt_metacast +32 QStringListModel::qt_metacall +40 QStringListModel::~QStringListModel +48 QStringListModel::~QStringListModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractListModel::index +120 QAbstractListModel::parent +128 QStringListModel::rowCount +136 QAbstractListModel::columnCount +144 QAbstractListModel::hasChildren +152 QStringListModel::data +160 QStringListModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractListModel::dropMimeData +224 QStringListModel::supportedDropActions +232 QStringListModel::insertRows +240 QAbstractItemModel::insertColumns +248 QStringListModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QStringListModel::flags +288 QStringListModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QStringListModel + size=24 align=8 + base size=24 base align=8 +QStringListModel (0x7f2f3aa17f50) 0 + vptr=((& QStringListModel::_ZTV16QStringListModel) + 16u) + QAbstractListModel (0x7f2f3aa2b000) 0 + primary-for QStringListModel (0x7f2f3aa17f50) + QAbstractItemModel (0x7f2f3aa2b070) 0 + primary-for QAbstractListModel (0x7f2f3aa2b000) + QObject (0x7f2f3aa2b0e0) 0 + primary-for QAbstractItemModel (0x7f2f3aa2b070) + +Vtable for QStyledItemDelegate +QStyledItemDelegate::_ZTV19QStyledItemDelegate: 23u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QStyledItemDelegate) +16 QStyledItemDelegate::metaObject +24 QStyledItemDelegate::qt_metacast +32 QStyledItemDelegate::qt_metacall +40 QStyledItemDelegate::~QStyledItemDelegate +48 QStyledItemDelegate::~QStyledItemDelegate +56 QObject::event +64 QStyledItemDelegate::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QStyledItemDelegate::paint +120 QStyledItemDelegate::sizeHint +128 QStyledItemDelegate::createEditor +136 QStyledItemDelegate::setEditorData +144 QStyledItemDelegate::setModelData +152 QStyledItemDelegate::updateEditorGeometry +160 QStyledItemDelegate::editorEvent +168 QStyledItemDelegate::displayText +176 QStyledItemDelegate::initStyleOption + +Class QStyledItemDelegate + size=16 align=8 + base size=16 base align=8 +QStyledItemDelegate (0x7f2f3aa425b0) 0 + vptr=((& QStyledItemDelegate::_ZTV19QStyledItemDelegate) + 16u) + QAbstractItemDelegate (0x7f2f3aa42620) 0 + primary-for QStyledItemDelegate (0x7f2f3aa425b0) + QObject (0x7f2f3aa42690) 0 + primary-for QAbstractItemDelegate (0x7f2f3aa42620) + +Vtable for QTableView +QTableView::_ZTV10QTableView: 103u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTableView) +16 QTableView::metaObject +24 QTableView::qt_metacast +32 QTableView::qt_metacall +40 QTableView::~QTableView +48 QTableView::~QTableView +56 QAbstractItemView::event +64 QObject::eventFilter +72 QTableView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QAbstractItemView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QAbstractItemView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTableView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QTableView::scrollContentsBy +464 QTableView::setModel +472 QTableView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QTableView::visualRect +496 QTableView::scrollTo +504 QTableView::indexAt +512 QTableView::sizeHintForRow +520 QTableView::sizeHintForColumn +528 QAbstractItemView::reset +536 QTableView::setRootIndex +544 QAbstractItemView::doItemsLayout +552 QAbstractItemView::selectAll +560 QAbstractItemView::dataChanged +568 QAbstractItemView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QTableView::selectionChanged +592 QTableView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QTableView::updateGeometries +624 QTableView::verticalScrollbarAction +632 QTableView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QTableView::moveCursor +688 QTableView::horizontalOffset +696 QTableView::verticalOffset +704 QTableView::isIndexHidden +712 QTableView::setSelection +720 QTableView::visualRegionForSelection +728 QTableView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QTableView::viewOptions +768 (int (*)(...))-0x00000000000000010 +776 (int (*)(...))(& _ZTI10QTableView) +784 QTableView::_ZThn16_N10QTableViewD1Ev +792 QTableView::_ZThn16_N10QTableViewD0Ev +800 QWidget::_ZThn16_NK7QWidget7devTypeEv +808 QWidget::_ZThn16_NK7QWidget11paintEngineEv +816 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTableView + size=40 align=8 + base size=40 base align=8 +QTableView (0x7f2f3a858f50) 0 + vptr=((& QTableView::_ZTV10QTableView) + 16u) + QAbstractItemView (0x7f2f3a85f000) 0 + primary-for QTableView (0x7f2f3a858f50) + QAbstractScrollArea (0x7f2f3a85f070) 0 + primary-for QAbstractItemView (0x7f2f3a85f000) + QFrame (0x7f2f3a85f0e0) 0 + primary-for QAbstractScrollArea (0x7f2f3a85f070) + QWidget (0x7f2f3aa41b00) 0 + primary-for QFrame (0x7f2f3a85f0e0) + QObject (0x7f2f3a85f150) 0 + primary-for QWidget (0x7f2f3aa41b00) + QPaintDevice (0x7f2f3a85f1c0) 16 + vptr=((& QTableView::_ZTV10QTableView) + 784u) + +Class QTableWidgetSelectionRange + size=16 align=4 + base size=16 base align=4 +QTableWidgetSelectionRange (0x7f2f3a88dd20) 0 + +Vtable for QTableWidgetItem +QTableWidgetItem::_ZTV16QTableWidgetItem: 10u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QTableWidgetItem) +16 QTableWidgetItem::~QTableWidgetItem +24 QTableWidgetItem::~QTableWidgetItem +32 QTableWidgetItem::clone +40 QTableWidgetItem::data +48 QTableWidgetItem::setData +56 QTableWidgetItem::operator< +64 QTableWidgetItem::read +72 QTableWidgetItem::write + +Class QTableWidgetItem + size=48 align=8 + base size=44 base align=8 +QTableWidgetItem (0x7f2f3a89b230) 0 + vptr=((& QTableWidgetItem::_ZTV16QTableWidgetItem) + 16u) + +Vtable for QTableWidget +QTableWidget::_ZTV12QTableWidget: 107u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTableWidget) +16 QTableWidget::metaObject +24 QTableWidget::qt_metacast +32 QTableWidget::qt_metacall +40 QTableWidget::~QTableWidget +48 QTableWidget::~QTableWidget +56 QTableWidget::event +64 QObject::eventFilter +72 QTableView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QAbstractItemView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QAbstractItemView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTableView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QTableWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QTableView::scrollContentsBy +464 QTableWidget::setModel +472 QTableView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QTableView::visualRect +496 QTableView::scrollTo +504 QTableView::indexAt +512 QTableView::sizeHintForRow +520 QTableView::sizeHintForColumn +528 QAbstractItemView::reset +536 QTableView::setRootIndex +544 QAbstractItemView::doItemsLayout +552 QAbstractItemView::selectAll +560 QAbstractItemView::dataChanged +568 QAbstractItemView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QTableView::selectionChanged +592 QTableView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QTableView::updateGeometries +624 QTableView::verticalScrollbarAction +632 QTableView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QTableView::moveCursor +688 QTableView::horizontalOffset +696 QTableView::verticalOffset +704 QTableView::isIndexHidden +712 QTableView::setSelection +720 QTableView::visualRegionForSelection +728 QTableView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QTableView::viewOptions +768 QTableWidget::mimeTypes +776 QTableWidget::mimeData +784 QTableWidget::dropMimeData +792 QTableWidget::supportedDropActions +800 (int (*)(...))-0x00000000000000010 +808 (int (*)(...))(& _ZTI12QTableWidget) +816 QTableWidget::_ZThn16_N12QTableWidgetD1Ev +824 QTableWidget::_ZThn16_N12QTableWidgetD0Ev +832 QWidget::_ZThn16_NK7QWidget7devTypeEv +840 QWidget::_ZThn16_NK7QWidget11paintEngineEv +848 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTableWidget + size=40 align=8 + base size=40 base align=8 +QTableWidget (0x7f2f3a90f7e0) 0 + vptr=((& QTableWidget::_ZTV12QTableWidget) + 16u) + QTableView (0x7f2f3a90f850) 0 + primary-for QTableWidget (0x7f2f3a90f7e0) + QAbstractItemView (0x7f2f3a90f8c0) 0 + primary-for QTableView (0x7f2f3a90f850) + QAbstractScrollArea (0x7f2f3a90f930) 0 + primary-for QAbstractItemView (0x7f2f3a90f8c0) + QFrame (0x7f2f3a90f9a0) 0 + primary-for QAbstractScrollArea (0x7f2f3a90f930) + QWidget (0x7f2f3a904c80) 0 + primary-for QFrame (0x7f2f3a90f9a0) + QObject (0x7f2f3a90fa10) 0 + primary-for QWidget (0x7f2f3a904c80) + QPaintDevice (0x7f2f3a90fa80) 16 + vptr=((& QTableWidget::_ZTV12QTableWidget) + 816u) + +Vtable for QTreeView +QTreeView::_ZTV9QTreeView: 105u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTreeView) +16 QTreeView::metaObject +24 QTreeView::qt_metacast +32 QTreeView::qt_metacall +40 QTreeView::~QTreeView +48 QTreeView::~QTreeView +56 QAbstractItemView::event +64 QObject::eventFilter +72 QTreeView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTreeView::mousePressEvent +168 QTreeView::mouseReleaseEvent +176 QTreeView::mouseDoubleClickEvent +184 QTreeView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QTreeView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTreeView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QTreeView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QTreeView::viewportEvent +456 QTreeView::scrollContentsBy +464 QTreeView::setModel +472 QTreeView::setSelectionModel +480 QTreeView::keyboardSearch +488 QTreeView::visualRect +496 QTreeView::scrollTo +504 QTreeView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QTreeView::sizeHintForColumn +528 QTreeView::reset +536 QTreeView::setRootIndex +544 QTreeView::doItemsLayout +552 QTreeView::selectAll +560 QTreeView::dataChanged +568 QTreeView::rowsInserted +576 QTreeView::rowsAboutToBeRemoved +584 QTreeView::selectionChanged +592 QTreeView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QTreeView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QTreeView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QTreeView::moveCursor +688 QTreeView::horizontalOffset +696 QTreeView::verticalOffset +704 QTreeView::isIndexHidden +712 QTreeView::setSelection +720 QTreeView::visualRegionForSelection +728 QTreeView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 QTreeView::drawRow +776 QTreeView::drawBranches +784 (int (*)(...))-0x00000000000000010 +792 (int (*)(...))(& _ZTI9QTreeView) +800 QTreeView::_ZThn16_N9QTreeViewD1Ev +808 QTreeView::_ZThn16_N9QTreeViewD0Ev +816 QWidget::_ZThn16_NK7QWidget7devTypeEv +824 QWidget::_ZThn16_NK7QWidget11paintEngineEv +832 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTreeView + size=40 align=8 + base size=40 base align=8 +QTreeView (0x7f2f3a750770) 0 + vptr=((& QTreeView::_ZTV9QTreeView) + 16u) + QAbstractItemView (0x7f2f3a7507e0) 0 + primary-for QTreeView (0x7f2f3a750770) + QAbstractScrollArea (0x7f2f3a750850) 0 + primary-for QAbstractItemView (0x7f2f3a7507e0) + QFrame (0x7f2f3a7508c0) 0 + primary-for QAbstractScrollArea (0x7f2f3a750850) + QWidget (0x7f2f3a74c600) 0 + primary-for QFrame (0x7f2f3a7508c0) + QObject (0x7f2f3a750930) 0 + primary-for QWidget (0x7f2f3a74c600) + QPaintDevice (0x7f2f3a7509a0) 16 + vptr=((& QTreeView::_ZTV9QTreeView) + 800u) + +Class QTreeWidgetItemIterator + size=24 align=8 + base size=20 base align=8 +QTreeWidgetItemIterator (0x7f2f3a787540) 0 + +Vtable for QTreeWidgetItem +QTreeWidgetItem::_ZTV15QTreeWidgetItem: 10u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QTreeWidgetItem) +16 QTreeWidgetItem::~QTreeWidgetItem +24 QTreeWidgetItem::~QTreeWidgetItem +32 QTreeWidgetItem::clone +40 QTreeWidgetItem::data +48 QTreeWidgetItem::setData +56 QTreeWidgetItem::operator< +64 QTreeWidgetItem::read +72 QTreeWidgetItem::write + +Class QTreeWidgetItem + size=64 align=8 + base size=60 base align=8 +QTreeWidgetItem (0x7f2f3a7f42a0) 0 + vptr=((& QTreeWidgetItem::_ZTV15QTreeWidgetItem) + 16u) + +Vtable for QTreeWidget +QTreeWidget::_ZTV11QTreeWidget: 109u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTreeWidget) +16 QTreeWidget::metaObject +24 QTreeWidget::qt_metacast +32 QTreeWidget::qt_metacall +40 QTreeWidget::~QTreeWidget +48 QTreeWidget::~QTreeWidget +56 QTreeWidget::event +64 QObject::eventFilter +72 QTreeView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTreeView::mousePressEvent +168 QTreeView::mouseReleaseEvent +176 QTreeView::mouseDoubleClickEvent +184 QTreeView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QTreeView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTreeView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QTreeView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QTreeWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QTreeView::viewportEvent +456 QTreeView::scrollContentsBy +464 QTreeWidget::setModel +472 QTreeWidget::setSelectionModel +480 QTreeView::keyboardSearch +488 QTreeView::visualRect +496 QTreeView::scrollTo +504 QTreeView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QTreeView::sizeHintForColumn +528 QTreeView::reset +536 QTreeView::setRootIndex +544 QTreeView::doItemsLayout +552 QTreeView::selectAll +560 QTreeView::dataChanged +568 QTreeView::rowsInserted +576 QTreeView::rowsAboutToBeRemoved +584 QTreeView::selectionChanged +592 QTreeView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QTreeView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QTreeView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QTreeView::moveCursor +688 QTreeView::horizontalOffset +696 QTreeView::verticalOffset +704 QTreeView::isIndexHidden +712 QTreeView::setSelection +720 QTreeView::visualRegionForSelection +728 QTreeView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 QTreeView::drawRow +776 QTreeView::drawBranches +784 QTreeWidget::mimeTypes +792 QTreeWidget::mimeData +800 QTreeWidget::dropMimeData +808 QTreeWidget::supportedDropActions +816 (int (*)(...))-0x00000000000000010 +824 (int (*)(...))(& _ZTI11QTreeWidget) +832 QTreeWidget::_ZThn16_N11QTreeWidgetD1Ev +840 QTreeWidget::_ZThn16_N11QTreeWidgetD0Ev +848 QWidget::_ZThn16_NK7QWidget7devTypeEv +856 QWidget::_ZThn16_NK7QWidget11paintEngineEv +864 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTreeWidget + size=40 align=8 + base size=40 base align=8 +QTreeWidget (0x7f2f3a6a28c0) 0 + vptr=((& QTreeWidget::_ZTV11QTreeWidget) + 16u) + QTreeView (0x7f2f3a6a2930) 0 + primary-for QTreeWidget (0x7f2f3a6a28c0) + QAbstractItemView (0x7f2f3a6a29a0) 0 + primary-for QTreeView (0x7f2f3a6a2930) + QAbstractScrollArea (0x7f2f3a6a2a10) 0 + primary-for QAbstractItemView (0x7f2f3a6a29a0) + QFrame (0x7f2f3a6a2a80) 0 + primary-for QAbstractScrollArea (0x7f2f3a6a2a10) + QWidget (0x7f2f3a6a5200) 0 + primary-for QFrame (0x7f2f3a6a2a80) + QObject (0x7f2f3a6a2af0) 0 + primary-for QWidget (0x7f2f3a6a5200) + QPaintDevice (0x7f2f3a6a2b60) 16 + vptr=((& QTreeWidget::_ZTV11QTreeWidget) + 832u) + +Class QAccessible + size=1 align=1 + base size=0 base align=1 +QAccessible (0x7f2f3a6ecc40) 0 empty + +Vtable for QAccessibleInterface +QAccessibleInterface::_ZTV20QAccessibleInterface: 19u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QAccessibleInterface) +16 QAccessibleInterface::~QAccessibleInterface +24 QAccessibleInterface::~QAccessibleInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual + +Class QAccessibleInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleInterface (0x7f2f3a594e00) 0 nearly-empty + vptr=((& QAccessibleInterface::_ZTV20QAccessibleInterface) + 16u) + QAccessible (0x7f2f3a594e70) 0 empty + +Vtable for QAccessibleInterfaceEx +QAccessibleInterfaceEx::_ZTV22QAccessibleInterfaceEx: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QAccessibleInterfaceEx) +16 QAccessibleInterfaceEx::~QAccessibleInterfaceEx +24 QAccessibleInterfaceEx::~QAccessibleInterfaceEx +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 QAccessibleInterfaceEx::virtual_hook +168 QAccessibleInterfaceEx::interface_cast + +Class QAccessibleInterfaceEx + size=8 align=8 + base size=8 base align=8 +QAccessibleInterfaceEx (0x7f2f3a612b60) 0 nearly-empty + vptr=((& QAccessibleInterfaceEx::_ZTV22QAccessibleInterfaceEx) + 16u) + QAccessibleInterface (0x7f2f3a612bd0) 0 nearly-empty + primary-for QAccessibleInterfaceEx (0x7f2f3a612b60) + QAccessible (0x7f2f3a612c40) 0 empty + +Vtable for QAccessibleEvent +QAccessibleEvent::_ZTV16QAccessibleEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QAccessibleEvent) +16 QAccessibleEvent::~QAccessibleEvent +24 QAccessibleEvent::~QAccessibleEvent + +Class QAccessibleEvent + size=32 align=8 + base size=32 base align=8 +QAccessibleEvent (0x7f2f3a612ee0) 0 + vptr=((& QAccessibleEvent::_ZTV16QAccessibleEvent) + 16u) + QEvent (0x7f2f3a612f50) 0 + primary-for QAccessibleEvent (0x7f2f3a612ee0) + +Vtable for QAccessible2Interface +QAccessible2Interface::_ZTV21QAccessible2Interface: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QAccessible2Interface) +16 QAccessible2Interface::~QAccessible2Interface +24 QAccessible2Interface::~QAccessible2Interface + +Class QAccessible2Interface + size=8 align=8 + base size=8 base align=8 +QAccessible2Interface (0x7f2f3a626f50) 0 nearly-empty + vptr=((& QAccessible2Interface::_ZTV21QAccessible2Interface) + 16u) + +Vtable for QAccessibleTextInterface +QAccessibleTextInterface::_ZTV24QAccessibleTextInterface: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QAccessibleTextInterface) +16 QAccessibleTextInterface::~QAccessibleTextInterface +24 QAccessibleTextInterface::~QAccessibleTextInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual + +Class QAccessibleTextInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleTextInterface (0x7f2f3a63c1c0) 0 nearly-empty + vptr=((& QAccessibleTextInterface::_ZTV24QAccessibleTextInterface) + 16u) + QAccessible2Interface (0x7f2f3a63c230) 0 nearly-empty + primary-for QAccessibleTextInterface (0x7f2f3a63c1c0) + +Vtable for QAccessibleEditableTextInterface +QAccessibleEditableTextInterface::_ZTV32QAccessibleEditableTextInterface: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI32QAccessibleEditableTextInterface) +16 QAccessibleEditableTextInterface::~QAccessibleEditableTextInterface +24 QAccessibleEditableTextInterface::~QAccessibleEditableTextInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual + +Class QAccessibleEditableTextInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleEditableTextInterface (0x7f2f3a44d070) 0 nearly-empty + vptr=((& QAccessibleEditableTextInterface::_ZTV32QAccessibleEditableTextInterface) + 16u) + QAccessible2Interface (0x7f2f3a44d0e0) 0 nearly-empty + primary-for QAccessibleEditableTextInterface (0x7f2f3a44d070) + +Vtable for QAccessibleSimpleEditableTextInterface +QAccessibleSimpleEditableTextInterface::_ZTV38QAccessibleSimpleEditableTextInterface: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI38QAccessibleSimpleEditableTextInterface) +16 QAccessibleSimpleEditableTextInterface::~QAccessibleSimpleEditableTextInterface +24 QAccessibleSimpleEditableTextInterface::~QAccessibleSimpleEditableTextInterface +32 QAccessibleSimpleEditableTextInterface::copyText +40 QAccessibleSimpleEditableTextInterface::deleteText +48 QAccessibleSimpleEditableTextInterface::insertText +56 QAccessibleSimpleEditableTextInterface::cutText +64 QAccessibleSimpleEditableTextInterface::pasteText +72 QAccessibleSimpleEditableTextInterface::replaceText +80 QAccessibleSimpleEditableTextInterface::setAttributes + +Class QAccessibleSimpleEditableTextInterface + size=16 align=8 + base size=16 base align=8 +QAccessibleSimpleEditableTextInterface (0x7f2f3a44df50) 0 + vptr=((& QAccessibleSimpleEditableTextInterface::_ZTV38QAccessibleSimpleEditableTextInterface) + 16u) + QAccessibleEditableTextInterface (0x7f2f3a44d310) 0 nearly-empty + primary-for QAccessibleSimpleEditableTextInterface (0x7f2f3a44df50) + QAccessible2Interface (0x7f2f3a45a000) 0 nearly-empty + primary-for QAccessibleEditableTextInterface (0x7f2f3a44d310) + +Vtable for QAccessibleValueInterface +QAccessibleValueInterface::_ZTV25QAccessibleValueInterface: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QAccessibleValueInterface) +16 QAccessibleValueInterface::~QAccessibleValueInterface +24 QAccessibleValueInterface::~QAccessibleValueInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual + +Class QAccessibleValueInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleValueInterface (0x7f2f3a45a230) 0 nearly-empty + vptr=((& QAccessibleValueInterface::_ZTV25QAccessibleValueInterface) + 16u) + QAccessible2Interface (0x7f2f3a45a2a0) 0 nearly-empty + primary-for QAccessibleValueInterface (0x7f2f3a45a230) + +Vtable for QAccessibleTableInterface +QAccessibleTableInterface::_ZTV25QAccessibleTableInterface: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QAccessibleTableInterface) +16 QAccessibleTableInterface::~QAccessibleTableInterface +24 QAccessibleTableInterface::~QAccessibleTableInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 __cxa_pure_virtual +208 __cxa_pure_virtual +216 __cxa_pure_virtual +224 __cxa_pure_virtual +232 __cxa_pure_virtual + +Class QAccessibleTableInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleTableInterface (0x7f2f3a469070) 0 nearly-empty + vptr=((& QAccessibleTableInterface::_ZTV25QAccessibleTableInterface) + 16u) + QAccessible2Interface (0x7f2f3a4690e0) 0 nearly-empty + primary-for QAccessibleTableInterface (0x7f2f3a469070) + +Vtable for QAccessibleActionInterface +QAccessibleActionInterface::_ZTV26QAccessibleActionInterface: 10u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QAccessibleActionInterface) +16 QAccessibleActionInterface::~QAccessibleActionInterface +24 QAccessibleActionInterface::~QAccessibleActionInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual + +Class QAccessibleActionInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleActionInterface (0x7f2f3a469460) 0 nearly-empty + vptr=((& QAccessibleActionInterface::_ZTV26QAccessibleActionInterface) + 16u) + QAccessible2Interface (0x7f2f3a4694d0) 0 nearly-empty + primary-for QAccessibleActionInterface (0x7f2f3a469460) + +Vtable for QAccessibleImageInterface +QAccessibleImageInterface::_ZTV25QAccessibleImageInterface: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QAccessibleImageInterface) +16 QAccessibleImageInterface::~QAccessibleImageInterface +24 QAccessibleImageInterface::~QAccessibleImageInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual + +Class QAccessibleImageInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleImageInterface (0x7f2f3a469850) 0 nearly-empty + vptr=((& QAccessibleImageInterface::_ZTV25QAccessibleImageInterface) + 16u) + QAccessible2Interface (0x7f2f3a4698c0) 0 nearly-empty + primary-for QAccessibleImageInterface (0x7f2f3a469850) + +Vtable for QAccessibleBridge +QAccessibleBridge::_ZTV17QAccessibleBridge: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAccessibleBridge) +16 QAccessibleBridge::~QAccessibleBridge +24 QAccessibleBridge::~QAccessibleBridge +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QAccessibleBridge + size=8 align=8 + base size=8 base align=8 +QAccessibleBridge (0x7f2f3a469c40) 0 nearly-empty + vptr=((& QAccessibleBridge::_ZTV17QAccessibleBridge) + 16u) + +Vtable for QAccessibleBridgeFactoryInterface +QAccessibleBridgeFactoryInterface::_ZTV33QAccessibleBridgeFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI33QAccessibleBridgeFactoryInterface) +16 QAccessibleBridgeFactoryInterface::~QAccessibleBridgeFactoryInterface +24 QAccessibleBridgeFactoryInterface::~QAccessibleBridgeFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QAccessibleBridgeFactoryInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleBridgeFactoryInterface (0x7f2f3a485540) 0 nearly-empty + vptr=((& QAccessibleBridgeFactoryInterface::_ZTV33QAccessibleBridgeFactoryInterface) + 16u) + QFactoryInterface (0x7f2f3a4855b0) 0 nearly-empty + primary-for QAccessibleBridgeFactoryInterface (0x7f2f3a485540) + +Vtable for QAccessibleBridgePlugin +QAccessibleBridgePlugin::_ZTV23QAccessibleBridgePlugin: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QAccessibleBridgePlugin) +16 QAccessibleBridgePlugin::metaObject +24 QAccessibleBridgePlugin::qt_metacast +32 QAccessibleBridgePlugin::qt_metacall +40 QAccessibleBridgePlugin::~QAccessibleBridgePlugin +48 QAccessibleBridgePlugin::~QAccessibleBridgePlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI23QAccessibleBridgePlugin) +144 QAccessibleBridgePlugin::_ZThn16_N23QAccessibleBridgePluginD1Ev +152 QAccessibleBridgePlugin::_ZThn16_N23QAccessibleBridgePluginD0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QAccessibleBridgePlugin + size=24 align=8 + base size=24 base align=8 +QAccessibleBridgePlugin (0x7f2f3a48d580) 0 + vptr=((& QAccessibleBridgePlugin::_ZTV23QAccessibleBridgePlugin) + 16u) + QObject (0x7f2f3a485620) 0 + primary-for QAccessibleBridgePlugin (0x7f2f3a48d580) + QAccessibleBridgeFactoryInterface (0x7f2f3a492000) 16 nearly-empty + vptr=((& QAccessibleBridgePlugin::_ZTV23QAccessibleBridgePlugin) + 144u) + QFactoryInterface (0x7f2f3a492070) 16 nearly-empty + primary-for QAccessibleBridgeFactoryInterface (0x7f2f3a492000) + +Vtable for QAccessibleObject +QAccessibleObject::_ZTV17QAccessibleObject: 19u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAccessibleObject) +16 QAccessibleObject::~QAccessibleObject +24 QAccessibleObject::~QAccessibleObject +32 QAccessibleObject::isValid +40 QAccessibleObject::object +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 QAccessibleObject::setText +104 QAccessibleObject::rect +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAccessibleObject::userActionCount +136 QAccessibleObject::actionText +144 QAccessibleObject::doAction + +Class QAccessibleObject + size=16 align=8 + base size=16 base align=8 +QAccessibleObject (0x7f2f3a492f50) 0 + vptr=((& QAccessibleObject::_ZTV17QAccessibleObject) + 16u) + QAccessibleInterface (0x7f2f3a492310) 0 nearly-empty + primary-for QAccessibleObject (0x7f2f3a492f50) + QAccessible (0x7f2f3a4a3000) 0 empty + +Vtable for QAccessibleObjectEx +QAccessibleObjectEx::_ZTV19QAccessibleObjectEx: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAccessibleObjectEx) +16 QAccessibleObjectEx::~QAccessibleObjectEx +24 QAccessibleObjectEx::~QAccessibleObjectEx +32 QAccessibleObjectEx::isValid +40 QAccessibleObjectEx::object +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 QAccessibleObjectEx::setText +104 QAccessibleObjectEx::rect +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAccessibleObjectEx::userActionCount +136 QAccessibleObjectEx::actionText +144 QAccessibleObjectEx::doAction +152 __cxa_pure_virtual +160 QAccessibleInterfaceEx::virtual_hook +168 QAccessibleInterfaceEx::interface_cast + +Class QAccessibleObjectEx + size=16 align=8 + base size=16 base align=8 +QAccessibleObjectEx (0x7f2f3a4a3700) 0 + vptr=((& QAccessibleObjectEx::_ZTV19QAccessibleObjectEx) + 16u) + QAccessibleInterfaceEx (0x7f2f3a4a3770) 0 nearly-empty + primary-for QAccessibleObjectEx (0x7f2f3a4a3700) + QAccessibleInterface (0x7f2f3a4a37e0) 0 nearly-empty + primary-for QAccessibleInterfaceEx (0x7f2f3a4a3770) + QAccessible (0x7f2f3a4a3850) 0 empty + +Vtable for QAccessibleApplication +QAccessibleApplication::_ZTV22QAccessibleApplication: 19u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QAccessibleApplication) +16 QAccessibleApplication::~QAccessibleApplication +24 QAccessibleApplication::~QAccessibleApplication +32 QAccessibleObject::isValid +40 QAccessibleObject::object +48 QAccessibleApplication::childCount +56 QAccessibleApplication::indexOfChild +64 QAccessibleApplication::relationTo +72 QAccessibleApplication::childAt +80 QAccessibleApplication::navigate +88 QAccessibleApplication::text +96 QAccessibleObject::setText +104 QAccessibleObject::rect +112 QAccessibleApplication::role +120 QAccessibleApplication::state +128 QAccessibleApplication::userActionCount +136 QAccessibleApplication::actionText +144 QAccessibleApplication::doAction + +Class QAccessibleApplication + size=16 align=8 + base size=16 base align=8 +QAccessibleApplication (0x7f2f3a4a3f50) 0 + vptr=((& QAccessibleApplication::_ZTV22QAccessibleApplication) + 16u) + QAccessibleObject (0x7f2f3a4a3690) 0 + primary-for QAccessibleApplication (0x7f2f3a4a3f50) + QAccessibleInterface (0x7f2f3a4a3ee0) 0 nearly-empty + primary-for QAccessibleObject (0x7f2f3a4a3690) + QAccessible (0x7f2f3a4b6000) 0 empty + +Vtable for QAccessibleFactoryInterface +QAccessibleFactoryInterface::_ZTV27QAccessibleFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QAccessibleFactoryInterface) +16 QAccessibleFactoryInterface::~QAccessibleFactoryInterface +24 QAccessibleFactoryInterface::~QAccessibleFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QAccessibleFactoryInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleFactoryInterface (0x7f2f3a48de00) 0 nearly-empty + vptr=((& QAccessibleFactoryInterface::_ZTV27QAccessibleFactoryInterface) + 16u) + QAccessible (0x7f2f3a4b68c0) 0 empty + QFactoryInterface (0x7f2f3a4b6930) 0 nearly-empty + primary-for QAccessibleFactoryInterface (0x7f2f3a48de00) + +Vtable for QAccessiblePlugin +QAccessiblePlugin::_ZTV17QAccessiblePlugin: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAccessiblePlugin) +16 QAccessiblePlugin::metaObject +24 QAccessiblePlugin::qt_metacast +32 QAccessiblePlugin::qt_metacall +40 QAccessiblePlugin::~QAccessiblePlugin +48 QAccessiblePlugin::~QAccessiblePlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI17QAccessiblePlugin) +144 QAccessiblePlugin::_ZThn16_N17QAccessiblePluginD1Ev +152 QAccessiblePlugin::_ZThn16_N17QAccessiblePluginD0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QAccessiblePlugin + size=24 align=8 + base size=24 base align=8 +QAccessiblePlugin (0x7f2f3a4c1800) 0 + vptr=((& QAccessiblePlugin::_ZTV17QAccessiblePlugin) + 16u) + QObject (0x7f2f3a4c82a0) 0 + primary-for QAccessiblePlugin (0x7f2f3a4c1800) + QAccessibleFactoryInterface (0x7f2f3a4c1880) 16 nearly-empty + vptr=((& QAccessiblePlugin::_ZTV17QAccessiblePlugin) + 144u) + QAccessible (0x7f2f3a4c8310) 16 empty + QFactoryInterface (0x7f2f3a4c8380) 16 nearly-empty + primary-for QAccessibleFactoryInterface (0x7f2f3a4c1880) + +Vtable for QAccessibleWidget +QAccessibleWidget::_ZTV17QAccessibleWidget: 19u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAccessibleWidget) +16 QAccessibleWidget::~QAccessibleWidget +24 QAccessibleWidget::~QAccessibleWidget +32 QAccessibleObject::isValid +40 QAccessibleObject::object +48 QAccessibleWidget::childCount +56 QAccessibleWidget::indexOfChild +64 QAccessibleWidget::relationTo +72 QAccessibleWidget::childAt +80 QAccessibleWidget::navigate +88 QAccessibleWidget::text +96 QAccessibleObject::setText +104 QAccessibleWidget::rect +112 QAccessibleWidget::role +120 QAccessibleWidget::state +128 QAccessibleWidget::userActionCount +136 QAccessibleWidget::actionText +144 QAccessibleWidget::doAction + +Class QAccessibleWidget + size=24 align=8 + base size=24 base align=8 +QAccessibleWidget (0x7f2f3a4d9310) 0 + vptr=((& QAccessibleWidget::_ZTV17QAccessibleWidget) + 16u) + QAccessibleObject (0x7f2f3a4d9380) 0 + primary-for QAccessibleWidget (0x7f2f3a4d9310) + QAccessibleInterface (0x7f2f3a4d93f0) 0 nearly-empty + primary-for QAccessibleObject (0x7f2f3a4d9380) + QAccessible (0x7f2f3a4d9460) 0 empty + +Vtable for QAccessibleWidgetEx +QAccessibleWidgetEx::_ZTV19QAccessibleWidgetEx: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAccessibleWidgetEx) +16 QAccessibleWidgetEx::~QAccessibleWidgetEx +24 QAccessibleWidgetEx::~QAccessibleWidgetEx +32 QAccessibleObjectEx::isValid +40 QAccessibleObjectEx::object +48 QAccessibleWidgetEx::childCount +56 QAccessibleWidgetEx::indexOfChild +64 QAccessibleWidgetEx::relationTo +72 QAccessibleWidgetEx::childAt +80 QAccessibleWidgetEx::navigate +88 QAccessibleWidgetEx::text +96 QAccessibleObjectEx::setText +104 QAccessibleWidgetEx::rect +112 QAccessibleWidgetEx::role +120 QAccessibleWidgetEx::state +128 QAccessibleObjectEx::userActionCount +136 QAccessibleWidgetEx::actionText +144 QAccessibleWidgetEx::doAction +152 QAccessibleWidgetEx::invokeMethodEx +160 QAccessibleInterfaceEx::virtual_hook +168 QAccessibleInterfaceEx::interface_cast + +Class QAccessibleWidgetEx + size=24 align=8 + base size=24 base align=8 +QAccessibleWidgetEx (0x7f2f3a4e53f0) 0 + vptr=((& QAccessibleWidgetEx::_ZTV19QAccessibleWidgetEx) + 16u) + QAccessibleObjectEx (0x7f2f3a4e5460) 0 + primary-for QAccessibleWidgetEx (0x7f2f3a4e53f0) + QAccessibleInterfaceEx (0x7f2f3a4e54d0) 0 nearly-empty + primary-for QAccessibleObjectEx (0x7f2f3a4e5460) + QAccessibleInterface (0x7f2f3a4e5540) 0 nearly-empty + primary-for QAccessibleInterfaceEx (0x7f2f3a4e54d0) + QAccessible (0x7f2f3a4e55b0) 0 empty + +Vtable for QAction +QAction::_ZTV7QAction: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QAction) +16 QAction::metaObject +24 QAction::qt_metacast +32 QAction::qt_metacall +40 QAction::~QAction +48 QAction::~QAction +56 QAction::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QAction + size=16 align=8 + base size=16 base align=8 +QAction (0x7f2f3a4f2540) 0 + vptr=((& QAction::_ZTV7QAction) + 16u) + QObject (0x7f2f3a4f25b0) 0 + primary-for QAction (0x7f2f3a4f2540) + +Vtable for QActionGroup +QActionGroup::_ZTV12QActionGroup: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QActionGroup) +16 QActionGroup::metaObject +24 QActionGroup::qt_metacast +32 QActionGroup::qt_metacall +40 QActionGroup::~QActionGroup +48 QActionGroup::~QActionGroup +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QActionGroup + size=16 align=8 + base size=16 base align=8 +QActionGroup (0x7f2f3a53c070) 0 + vptr=((& QActionGroup::_ZTV12QActionGroup) + 16u) + QObject (0x7f2f3a53c0e0) 0 + primary-for QActionGroup (0x7f2f3a53c070) + +Vtable for QApplication +QApplication::_ZTV12QApplication: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QApplication) +16 QApplication::metaObject +24 QApplication::qt_metacast +32 QApplication::qt_metacall +40 QApplication::~QApplication +48 QApplication::~QApplication +56 QApplication::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QApplication::notify +120 QApplication::compressEvent +128 QApplication::x11EventFilter +136 QApplication::x11ClientMessage +144 QApplication::commitData +152 QApplication::saveState + +Class QApplication + size=16 align=8 + base size=16 base align=8 +QApplication (0x7f2f3a380460) 0 + vptr=((& QApplication::_ZTV12QApplication) + 16u) + QCoreApplication (0x7f2f3a3804d0) 0 + primary-for QApplication (0x7f2f3a380460) + QObject (0x7f2f3a380540) 0 + primary-for QCoreApplication (0x7f2f3a3804d0) + +Vtable for QLayoutItem +QLayoutItem::_ZTV11QLayoutItem: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QLayoutItem) +16 QLayoutItem::~QLayoutItem +24 QLayoutItem::~QLayoutItem +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 QLayoutItem::hasHeightForWidth +96 QLayoutItem::heightForWidth +104 QLayoutItem::minimumHeightForWidth +112 QLayoutItem::invalidate +120 QLayoutItem::widget +128 QLayoutItem::layout +136 QLayoutItem::spacerItem + +Class QLayoutItem + size=16 align=8 + base size=12 base align=8 +QLayoutItem (0x7f2f3a3d10e0) 0 + vptr=((& QLayoutItem::_ZTV11QLayoutItem) + 16u) + +Vtable for QSpacerItem +QSpacerItem::_ZTV11QSpacerItem: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QSpacerItem) +16 QSpacerItem::~QSpacerItem +24 QSpacerItem::~QSpacerItem +32 QSpacerItem::sizeHint +40 QSpacerItem::minimumSize +48 QSpacerItem::maximumSize +56 QSpacerItem::expandingDirections +64 QSpacerItem::setGeometry +72 QSpacerItem::geometry +80 QSpacerItem::isEmpty +88 QLayoutItem::hasHeightForWidth +96 QLayoutItem::heightForWidth +104 QLayoutItem::minimumHeightForWidth +112 QLayoutItem::invalidate +120 QLayoutItem::widget +128 QLayoutItem::layout +136 QSpacerItem::spacerItem + +Class QSpacerItem + size=40 align=8 + base size=40 base align=8 +QSpacerItem (0x7f2f3a3d1cb0) 0 + vptr=((& QSpacerItem::_ZTV11QSpacerItem) + 16u) + QLayoutItem (0x7f2f3a3d1d20) 0 + primary-for QSpacerItem (0x7f2f3a3d1cb0) + +Vtable for QWidgetItem +QWidgetItem::_ZTV11QWidgetItem: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QWidgetItem) +16 QWidgetItem::~QWidgetItem +24 QWidgetItem::~QWidgetItem +32 QWidgetItem::sizeHint +40 QWidgetItem::minimumSize +48 QWidgetItem::maximumSize +56 QWidgetItem::expandingDirections +64 QWidgetItem::setGeometry +72 QWidgetItem::geometry +80 QWidgetItem::isEmpty +88 QWidgetItem::hasHeightForWidth +96 QWidgetItem::heightForWidth +104 QLayoutItem::minimumHeightForWidth +112 QLayoutItem::invalidate +120 QWidgetItem::widget +128 QLayoutItem::layout +136 QLayoutItem::spacerItem + +Class QWidgetItem + size=24 align=8 + base size=24 base align=8 +QWidgetItem (0x7f2f3a3ec1c0) 0 + vptr=((& QWidgetItem::_ZTV11QWidgetItem) + 16u) + QLayoutItem (0x7f2f3a3ec230) 0 + primary-for QWidgetItem (0x7f2f3a3ec1c0) + +Vtable for QWidgetItemV2 +QWidgetItemV2::_ZTV13QWidgetItemV2: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QWidgetItemV2) +16 QWidgetItemV2::~QWidgetItemV2 +24 QWidgetItemV2::~QWidgetItemV2 +32 QWidgetItemV2::sizeHint +40 QWidgetItemV2::minimumSize +48 QWidgetItemV2::maximumSize +56 QWidgetItem::expandingDirections +64 QWidgetItem::setGeometry +72 QWidgetItem::geometry +80 QWidgetItem::isEmpty +88 QWidgetItem::hasHeightForWidth +96 QWidgetItemV2::heightForWidth +104 QLayoutItem::minimumHeightForWidth +112 QLayoutItem::invalidate +120 QWidgetItem::widget +128 QLayoutItem::layout +136 QLayoutItem::spacerItem + +Class QWidgetItemV2 + size=88 align=8 + base size=88 base align=8 +QWidgetItemV2 (0x7f2f3a3fe000) 0 + vptr=((& QWidgetItemV2::_ZTV13QWidgetItemV2) + 16u) + QWidgetItem (0x7f2f3a3fe070) 0 + primary-for QWidgetItemV2 (0x7f2f3a3fe000) + QLayoutItem (0x7f2f3a3fe0e0) 0 + primary-for QWidgetItem (0x7f2f3a3fe070) + +Class QLayoutIterator + size=16 align=8 + base size=12 base align=8 +QLayoutIterator (0x7f2f3a3fee70) 0 + +Vtable for QLayout +QLayout::_ZTV7QLayout: 45u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QLayout) +16 QLayout::metaObject +24 QLayout::qt_metacast +32 QLayout::qt_metacall +40 QLayout::~QLayout +48 QLayout::~QLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QLayout::invalidate +120 QLayout::geometry +128 __cxa_pure_virtual +136 QLayout::expandingDirections +144 QLayout::minimumSize +152 QLayout::maximumSize +160 QLayout::setGeometry +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 QLayout::indexOf +192 __cxa_pure_virtual +200 QLayout::isEmpty +208 QLayout::layout +216 (int (*)(...))-0x00000000000000010 +224 (int (*)(...))(& _ZTI7QLayout) +232 QLayout::_ZThn16_N7QLayoutD1Ev +240 QLayout::_ZThn16_N7QLayoutD0Ev +248 __cxa_pure_virtual +256 QLayout::_ZThn16_NK7QLayout11minimumSizeEv +264 QLayout::_ZThn16_NK7QLayout11maximumSizeEv +272 QLayout::_ZThn16_NK7QLayout19expandingDirectionsEv +280 QLayout::_ZThn16_N7QLayout11setGeometryERK5QRect +288 QLayout::_ZThn16_NK7QLayout8geometryEv +296 QLayout::_ZThn16_NK7QLayout7isEmptyEv +304 QLayoutItem::hasHeightForWidth +312 QLayoutItem::heightForWidth +320 QLayoutItem::minimumHeightForWidth +328 QLayout::_ZThn16_N7QLayout10invalidateEv +336 QLayoutItem::widget +344 QLayout::_ZThn16_N7QLayout6layoutEv +352 QLayoutItem::spacerItem + +Class QLayout + size=32 align=8 + base size=28 base align=8 +QLayout (0x7f2f3a411380) 0 + vptr=((& QLayout::_ZTV7QLayout) + 16u) + QObject (0x7f2f3a40ff50) 0 + primary-for QLayout (0x7f2f3a411380) + QLayoutItem (0x7f2f3a413000) 16 + vptr=((& QLayout::_ZTV7QLayout) + 232u) + +Vtable for QGridLayout +QGridLayout::_ZTV11QGridLayout: 49u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QGridLayout) +16 QGridLayout::metaObject +24 QGridLayout::qt_metacast +32 QGridLayout::qt_metacall +40 QGridLayout::~QGridLayout +48 QGridLayout::~QGridLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGridLayout::invalidate +120 QLayout::geometry +128 QGridLayout::addItem +136 QGridLayout::expandingDirections +144 QGridLayout::minimumSize +152 QGridLayout::maximumSize +160 QGridLayout::setGeometry +168 QGridLayout::itemAt +176 QGridLayout::takeAt +184 QLayout::indexOf +192 QGridLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QGridLayout::sizeHint +224 QGridLayout::hasHeightForWidth +232 QGridLayout::heightForWidth +240 QGridLayout::minimumHeightForWidth +248 (int (*)(...))-0x00000000000000010 +256 (int (*)(...))(& _ZTI11QGridLayout) +264 QGridLayout::_ZThn16_N11QGridLayoutD1Ev +272 QGridLayout::_ZThn16_N11QGridLayoutD0Ev +280 QGridLayout::_ZThn16_NK11QGridLayout8sizeHintEv +288 QGridLayout::_ZThn16_NK11QGridLayout11minimumSizeEv +296 QGridLayout::_ZThn16_NK11QGridLayout11maximumSizeEv +304 QGridLayout::_ZThn16_NK11QGridLayout19expandingDirectionsEv +312 QGridLayout::_ZThn16_N11QGridLayout11setGeometryERK5QRect +320 QLayout::_ZThn16_NK7QLayout8geometryEv +328 QLayout::_ZThn16_NK7QLayout7isEmptyEv +336 QGridLayout::_ZThn16_NK11QGridLayout17hasHeightForWidthEv +344 QGridLayout::_ZThn16_NK11QGridLayout14heightForWidthEi +352 QGridLayout::_ZThn16_NK11QGridLayout21minimumHeightForWidthEi +360 QGridLayout::_ZThn16_N11QGridLayout10invalidateEv +368 QLayoutItem::widget +376 QLayout::_ZThn16_N7QLayout6layoutEv +384 QLayoutItem::spacerItem + +Class QGridLayout + size=32 align=8 + base size=28 base align=8 +QGridLayout (0x7f2f3a2524d0) 0 + vptr=((& QGridLayout::_ZTV11QGridLayout) + 16u) + QLayout (0x7f2f3a24f500) 0 + primary-for QGridLayout (0x7f2f3a2524d0) + QObject (0x7f2f3a252540) 0 + primary-for QLayout (0x7f2f3a24f500) + QLayoutItem (0x7f2f3a2525b0) 16 + vptr=((& QGridLayout::_ZTV11QGridLayout) + 264u) + +Vtable for QBoxLayout +QBoxLayout::_ZTV10QBoxLayout: 49u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QBoxLayout) +16 QBoxLayout::metaObject +24 QBoxLayout::qt_metacast +32 QBoxLayout::qt_metacall +40 QBoxLayout::~QBoxLayout +48 QBoxLayout::~QBoxLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QBoxLayout::invalidate +120 QLayout::geometry +128 QBoxLayout::addItem +136 QBoxLayout::expandingDirections +144 QBoxLayout::minimumSize +152 QBoxLayout::maximumSize +160 QBoxLayout::setGeometry +168 QBoxLayout::itemAt +176 QBoxLayout::takeAt +184 QLayout::indexOf +192 QBoxLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QBoxLayout::sizeHint +224 QBoxLayout::hasHeightForWidth +232 QBoxLayout::heightForWidth +240 QBoxLayout::minimumHeightForWidth +248 (int (*)(...))-0x00000000000000010 +256 (int (*)(...))(& _ZTI10QBoxLayout) +264 QBoxLayout::_ZThn16_N10QBoxLayoutD1Ev +272 QBoxLayout::_ZThn16_N10QBoxLayoutD0Ev +280 QBoxLayout::_ZThn16_NK10QBoxLayout8sizeHintEv +288 QBoxLayout::_ZThn16_NK10QBoxLayout11minimumSizeEv +296 QBoxLayout::_ZThn16_NK10QBoxLayout11maximumSizeEv +304 QBoxLayout::_ZThn16_NK10QBoxLayout19expandingDirectionsEv +312 QBoxLayout::_ZThn16_N10QBoxLayout11setGeometryERK5QRect +320 QLayout::_ZThn16_NK7QLayout8geometryEv +328 QLayout::_ZThn16_NK7QLayout7isEmptyEv +336 QBoxLayout::_ZThn16_NK10QBoxLayout17hasHeightForWidthEv +344 QBoxLayout::_ZThn16_NK10QBoxLayout14heightForWidthEi +352 QBoxLayout::_ZThn16_NK10QBoxLayout21minimumHeightForWidthEi +360 QBoxLayout::_ZThn16_N10QBoxLayout10invalidateEv +368 QLayoutItem::widget +376 QLayout::_ZThn16_N7QLayout6layoutEv +384 QLayoutItem::spacerItem + +Class QBoxLayout + size=32 align=8 + base size=28 base align=8 +QBoxLayout (0x7f2f3a29f540) 0 + vptr=((& QBoxLayout::_ZTV10QBoxLayout) + 16u) + QLayout (0x7f2f3a29d400) 0 + primary-for QBoxLayout (0x7f2f3a29f540) + QObject (0x7f2f3a29f5b0) 0 + primary-for QLayout (0x7f2f3a29d400) + QLayoutItem (0x7f2f3a29f620) 16 + vptr=((& QBoxLayout::_ZTV10QBoxLayout) + 264u) + +Vtable for QHBoxLayout +QHBoxLayout::_ZTV11QHBoxLayout: 49u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QHBoxLayout) +16 QHBoxLayout::metaObject +24 QHBoxLayout::qt_metacast +32 QHBoxLayout::qt_metacall +40 QHBoxLayout::~QHBoxLayout +48 QHBoxLayout::~QHBoxLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QBoxLayout::invalidate +120 QLayout::geometry +128 QBoxLayout::addItem +136 QBoxLayout::expandingDirections +144 QBoxLayout::minimumSize +152 QBoxLayout::maximumSize +160 QBoxLayout::setGeometry +168 QBoxLayout::itemAt +176 QBoxLayout::takeAt +184 QLayout::indexOf +192 QBoxLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QBoxLayout::sizeHint +224 QBoxLayout::hasHeightForWidth +232 QBoxLayout::heightForWidth +240 QBoxLayout::minimumHeightForWidth +248 (int (*)(...))-0x00000000000000010 +256 (int (*)(...))(& _ZTI11QHBoxLayout) +264 QHBoxLayout::_ZThn16_N11QHBoxLayoutD1Ev +272 QHBoxLayout::_ZThn16_N11QHBoxLayoutD0Ev +280 QBoxLayout::_ZThn16_NK10QBoxLayout8sizeHintEv +288 QBoxLayout::_ZThn16_NK10QBoxLayout11minimumSizeEv +296 QBoxLayout::_ZThn16_NK10QBoxLayout11maximumSizeEv +304 QBoxLayout::_ZThn16_NK10QBoxLayout19expandingDirectionsEv +312 QBoxLayout::_ZThn16_N10QBoxLayout11setGeometryERK5QRect +320 QLayout::_ZThn16_NK7QLayout8geometryEv +328 QLayout::_ZThn16_NK7QLayout7isEmptyEv +336 QBoxLayout::_ZThn16_NK10QBoxLayout17hasHeightForWidthEv +344 QBoxLayout::_ZThn16_NK10QBoxLayout14heightForWidthEi +352 QBoxLayout::_ZThn16_NK10QBoxLayout21minimumHeightForWidthEi +360 QBoxLayout::_ZThn16_N10QBoxLayout10invalidateEv +368 QLayoutItem::widget +376 QLayout::_ZThn16_N7QLayout6layoutEv +384 QLayoutItem::spacerItem + +Class QHBoxLayout + size=32 align=8 + base size=28 base align=8 +QHBoxLayout (0x7f2f3a2c4f50) 0 + vptr=((& QHBoxLayout::_ZTV11QHBoxLayout) + 16u) + QBoxLayout (0x7f2f3a2cd000) 0 + primary-for QHBoxLayout (0x7f2f3a2c4f50) + QLayout (0x7f2f3a2ca280) 0 + primary-for QBoxLayout (0x7f2f3a2cd000) + QObject (0x7f2f3a2cd070) 0 + primary-for QLayout (0x7f2f3a2ca280) + QLayoutItem (0x7f2f3a2cd0e0) 16 + vptr=((& QHBoxLayout::_ZTV11QHBoxLayout) + 264u) + +Vtable for QVBoxLayout +QVBoxLayout::_ZTV11QVBoxLayout: 49u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QVBoxLayout) +16 QVBoxLayout::metaObject +24 QVBoxLayout::qt_metacast +32 QVBoxLayout::qt_metacall +40 QVBoxLayout::~QVBoxLayout +48 QVBoxLayout::~QVBoxLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QBoxLayout::invalidate +120 QLayout::geometry +128 QBoxLayout::addItem +136 QBoxLayout::expandingDirections +144 QBoxLayout::minimumSize +152 QBoxLayout::maximumSize +160 QBoxLayout::setGeometry +168 QBoxLayout::itemAt +176 QBoxLayout::takeAt +184 QLayout::indexOf +192 QBoxLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QBoxLayout::sizeHint +224 QBoxLayout::hasHeightForWidth +232 QBoxLayout::heightForWidth +240 QBoxLayout::minimumHeightForWidth +248 (int (*)(...))-0x00000000000000010 +256 (int (*)(...))(& _ZTI11QVBoxLayout) +264 QVBoxLayout::_ZThn16_N11QVBoxLayoutD1Ev +272 QVBoxLayout::_ZThn16_N11QVBoxLayoutD0Ev +280 QBoxLayout::_ZThn16_NK10QBoxLayout8sizeHintEv +288 QBoxLayout::_ZThn16_NK10QBoxLayout11minimumSizeEv +296 QBoxLayout::_ZThn16_NK10QBoxLayout11maximumSizeEv +304 QBoxLayout::_ZThn16_NK10QBoxLayout19expandingDirectionsEv +312 QBoxLayout::_ZThn16_N10QBoxLayout11setGeometryERK5QRect +320 QLayout::_ZThn16_NK7QLayout8geometryEv +328 QLayout::_ZThn16_NK7QLayout7isEmptyEv +336 QBoxLayout::_ZThn16_NK10QBoxLayout17hasHeightForWidthEv +344 QBoxLayout::_ZThn16_NK10QBoxLayout14heightForWidthEi +352 QBoxLayout::_ZThn16_NK10QBoxLayout21minimumHeightForWidthEi +360 QBoxLayout::_ZThn16_N10QBoxLayout10invalidateEv +368 QLayoutItem::widget +376 QLayout::_ZThn16_N7QLayout6layoutEv +384 QLayoutItem::spacerItem + +Class QVBoxLayout + size=32 align=8 + base size=28 base align=8 +QVBoxLayout (0x7f2f3a2e35b0) 0 + vptr=((& QVBoxLayout::_ZTV11QVBoxLayout) + 16u) + QBoxLayout (0x7f2f3a2e3620) 0 + primary-for QVBoxLayout (0x7f2f3a2e35b0) + QLayout (0x7f2f3a2ca980) 0 + primary-for QBoxLayout (0x7f2f3a2e3620) + QObject (0x7f2f3a2e3690) 0 + primary-for QLayout (0x7f2f3a2ca980) + QLayoutItem (0x7f2f3a2e3700) 16 + vptr=((& QVBoxLayout::_ZTV11QVBoxLayout) + 264u) + +Vtable for QClipboard +QClipboard::_ZTV10QClipboard: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QClipboard) +16 QClipboard::metaObject +24 QClipboard::qt_metacast +32 QClipboard::qt_metacall +40 QClipboard::~QClipboard +48 QClipboard::~QClipboard +56 QClipboard::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QClipboard::connectNotify +104 QObject::disconnectNotify + +Class QClipboard + size=16 align=8 + base size=16 base align=8 +QClipboard (0x7f2f3a2f1c40) 0 + vptr=((& QClipboard::_ZTV10QClipboard) + 16u) + QObject (0x7f2f3a2f1cb0) 0 + primary-for QClipboard (0x7f2f3a2f1c40) + +Vtable for QDesktopWidget +QDesktopWidget::_ZTV14QDesktopWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QDesktopWidget) +16 QDesktopWidget::metaObject +24 QDesktopWidget::qt_metacast +32 QDesktopWidget::qt_metacall +40 QDesktopWidget::~QDesktopWidget +48 QDesktopWidget::~QDesktopWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDesktopWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI14QDesktopWidget) +464 QDesktopWidget::_ZThn16_N14QDesktopWidgetD1Ev +472 QDesktopWidget::_ZThn16_N14QDesktopWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDesktopWidget + size=40 align=8 + base size=40 base align=8 +QDesktopWidget (0x7f2f3a31a930) 0 + vptr=((& QDesktopWidget::_ZTV14QDesktopWidget) + 16u) + QWidget (0x7f2f3a2f9c00) 0 + primary-for QDesktopWidget (0x7f2f3a31a930) + QObject (0x7f2f3a31a9a0) 0 + primary-for QWidget (0x7f2f3a2f9c00) + QPaintDevice (0x7f2f3a31aa10) 16 + vptr=((& QDesktopWidget::_ZTV14QDesktopWidget) + 464u) + +Vtable for QFormLayout +QFormLayout::_ZTV11QFormLayout: 48u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFormLayout) +16 QFormLayout::metaObject +24 QFormLayout::qt_metacast +32 QFormLayout::qt_metacall +40 QFormLayout::~QFormLayout +48 QFormLayout::~QFormLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFormLayout::invalidate +120 QLayout::geometry +128 QFormLayout::addItem +136 QFormLayout::expandingDirections +144 QFormLayout::minimumSize +152 QLayout::maximumSize +160 QFormLayout::setGeometry +168 QFormLayout::itemAt +176 QFormLayout::takeAt +184 QLayout::indexOf +192 QFormLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QFormLayout::sizeHint +224 QFormLayout::hasHeightForWidth +232 QFormLayout::heightForWidth +240 (int (*)(...))-0x00000000000000010 +248 (int (*)(...))(& _ZTI11QFormLayout) +256 QFormLayout::_ZThn16_N11QFormLayoutD1Ev +264 QFormLayout::_ZThn16_N11QFormLayoutD0Ev +272 QFormLayout::_ZThn16_NK11QFormLayout8sizeHintEv +280 QFormLayout::_ZThn16_NK11QFormLayout11minimumSizeEv +288 QLayout::_ZThn16_NK7QLayout11maximumSizeEv +296 QFormLayout::_ZThn16_NK11QFormLayout19expandingDirectionsEv +304 QFormLayout::_ZThn16_N11QFormLayout11setGeometryERK5QRect +312 QLayout::_ZThn16_NK7QLayout8geometryEv +320 QLayout::_ZThn16_NK7QLayout7isEmptyEv +328 QFormLayout::_ZThn16_NK11QFormLayout17hasHeightForWidthEv +336 QFormLayout::_ZThn16_NK11QFormLayout14heightForWidthEi +344 QLayoutItem::minimumHeightForWidth +352 QFormLayout::_ZThn16_N11QFormLayout10invalidateEv +360 QLayoutItem::widget +368 QLayout::_ZThn16_N7QLayout6layoutEv +376 QLayoutItem::spacerItem + +Class QFormLayout + size=32 align=8 + base size=28 base align=8 +QFormLayout (0x7f2f3a3389a0) 0 + vptr=((& QFormLayout::_ZTV11QFormLayout) + 16u) + QLayout (0x7f2f3a332b80) 0 + primary-for QFormLayout (0x7f2f3a3389a0) + QObject (0x7f2f3a338a10) 0 + primary-for QLayout (0x7f2f3a332b80) + QLayoutItem (0x7f2f3a338a80) 16 + vptr=((& QFormLayout::_ZTV11QFormLayout) + 256u) + +Vtable for QGesture +QGesture::_ZTV8QGesture: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QGesture) +16 QGesture::metaObject +24 QGesture::qt_metacast +32 QGesture::qt_metacall +40 QGesture::~QGesture +48 QGesture::~QGesture +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QGesture + size=16 align=8 + base size=16 base align=8 +QGesture (0x7f2f3a16f150) 0 + vptr=((& QGesture::_ZTV8QGesture) + 16u) + QObject (0x7f2f3a16f1c0) 0 + primary-for QGesture (0x7f2f3a16f150) + +Vtable for QPanGesture +QPanGesture::_ZTV11QPanGesture: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QPanGesture) +16 QPanGesture::metaObject +24 QPanGesture::qt_metacast +32 QPanGesture::qt_metacall +40 QPanGesture::~QPanGesture +48 QPanGesture::~QPanGesture +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QPanGesture + size=16 align=8 + base size=16 base align=8 +QPanGesture (0x7f2f3a185850) 0 + vptr=((& QPanGesture::_ZTV11QPanGesture) + 16u) + QGesture (0x7f2f3a1858c0) 0 + primary-for QPanGesture (0x7f2f3a185850) + QObject (0x7f2f3a185930) 0 + primary-for QGesture (0x7f2f3a1858c0) + +Vtable for QPinchGesture +QPinchGesture::_ZTV13QPinchGesture: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QPinchGesture) +16 QPinchGesture::metaObject +24 QPinchGesture::qt_metacast +32 QPinchGesture::qt_metacall +40 QPinchGesture::~QPinchGesture +48 QPinchGesture::~QPinchGesture +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QPinchGesture + size=16 align=8 + base size=16 base align=8 +QPinchGesture (0x7f2f3a198cb0) 0 + vptr=((& QPinchGesture::_ZTV13QPinchGesture) + 16u) + QGesture (0x7f2f3a198d20) 0 + primary-for QPinchGesture (0x7f2f3a198cb0) + QObject (0x7f2f3a198d90) 0 + primary-for QGesture (0x7f2f3a198d20) + +Vtable for QSwipeGesture +QSwipeGesture::_ZTV13QSwipeGesture: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSwipeGesture) +16 QSwipeGesture::metaObject +24 QSwipeGesture::qt_metacast +32 QSwipeGesture::qt_metacall +40 QSwipeGesture::~QSwipeGesture +48 QSwipeGesture::~QSwipeGesture +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSwipeGesture + size=16 align=8 + base size=16 base align=8 +QSwipeGesture (0x7f2f3a1b8d20) 0 + vptr=((& QSwipeGesture::_ZTV13QSwipeGesture) + 16u) + QGesture (0x7f2f3a1b8d90) 0 + primary-for QSwipeGesture (0x7f2f3a1b8d20) + QObject (0x7f2f3a1b8e00) 0 + primary-for QGesture (0x7f2f3a1b8d90) + +Vtable for QTapGesture +QTapGesture::_ZTV11QTapGesture: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTapGesture) +16 QTapGesture::metaObject +24 QTapGesture::qt_metacast +32 QTapGesture::qt_metacall +40 QTapGesture::~QTapGesture +48 QTapGesture::~QTapGesture +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTapGesture + size=16 align=8 + base size=16 base align=8 +QTapGesture (0x7f2f3a1d8460) 0 + vptr=((& QTapGesture::_ZTV11QTapGesture) + 16u) + QGesture (0x7f2f3a1d84d0) 0 + primary-for QTapGesture (0x7f2f3a1d8460) + QObject (0x7f2f3a1d8540) 0 + primary-for QGesture (0x7f2f3a1d84d0) + +Vtable for QTapAndHoldGesture +QTapAndHoldGesture::_ZTV18QTapAndHoldGesture: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QTapAndHoldGesture) +16 QTapAndHoldGesture::metaObject +24 QTapAndHoldGesture::qt_metacast +32 QTapAndHoldGesture::qt_metacall +40 QTapAndHoldGesture::~QTapAndHoldGesture +48 QTapAndHoldGesture::~QTapAndHoldGesture +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTapAndHoldGesture + size=16 align=8 + base size=16 base align=8 +QTapAndHoldGesture (0x7f2f3a1e98c0) 0 + vptr=((& QTapAndHoldGesture::_ZTV18QTapAndHoldGesture) + 16u) + QGesture (0x7f2f3a1e9930) 0 + primary-for QTapAndHoldGesture (0x7f2f3a1e98c0) + QObject (0x7f2f3a1e99a0) 0 + primary-for QGesture (0x7f2f3a1e9930) + +Vtable for QGestureRecognizer +QGestureRecognizer::_ZTV18QGestureRecognizer: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QGestureRecognizer) +16 QGestureRecognizer::~QGestureRecognizer +24 QGestureRecognizer::~QGestureRecognizer +32 QGestureRecognizer::create +40 __cxa_pure_virtual +48 QGestureRecognizer::reset + +Class QGestureRecognizer + size=8 align=8 + base size=8 base align=8 +QGestureRecognizer (0x7f2f3a204310) 0 nearly-empty + vptr=((& QGestureRecognizer::_ZTV18QGestureRecognizer) + 16u) + +Vtable for QSessionManager +QSessionManager::_ZTV15QSessionManager: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSessionManager) +16 QSessionManager::metaObject +24 QSessionManager::qt_metacast +32 QSessionManager::qt_metacall +40 QSessionManager::~QSessionManager +48 QSessionManager::~QSessionManager +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSessionManager + size=16 align=8 + base size=16 base align=8 +QSessionManager (0x7f2f3a23a620) 0 + vptr=((& QSessionManager::_ZTV15QSessionManager) + 16u) + QObject (0x7f2f3a23a690) 0 + primary-for QSessionManager (0x7f2f3a23a620) + +Vtable for QShortcut +QShortcut::_ZTV9QShortcut: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QShortcut) +16 QShortcut::metaObject +24 QShortcut::qt_metacast +32 QShortcut::qt_metacall +40 QShortcut::~QShortcut +48 QShortcut::~QShortcut +56 QShortcut::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QShortcut + size=16 align=8 + base size=16 base align=8 +QShortcut (0x7f2f3a06ab60) 0 + vptr=((& QShortcut::_ZTV9QShortcut) + 16u) + QObject (0x7f2f3a06abd0) 0 + primary-for QShortcut (0x7f2f3a06ab60) + +Vtable for QSound +QSound::_ZTV6QSound: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QSound) +16 QSound::metaObject +24 QSound::qt_metacast +32 QSound::qt_metacall +40 QSound::~QSound +48 QSound::~QSound +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSound + size=16 align=8 + base size=16 base align=8 +QSound (0x7f2f3a088310) 0 + vptr=((& QSound::_ZTV6QSound) + 16u) + QObject (0x7f2f3a088380) 0 + primary-for QSound (0x7f2f3a088310) + +Vtable for QStackedLayout +QStackedLayout::_ZTV14QStackedLayout: 46u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QStackedLayout) +16 QStackedLayout::metaObject +24 QStackedLayout::qt_metacast +32 QStackedLayout::qt_metacall +40 QStackedLayout::~QStackedLayout +48 QStackedLayout::~QStackedLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QLayout::invalidate +120 QLayout::geometry +128 QStackedLayout::addItem +136 QLayout::expandingDirections +144 QStackedLayout::minimumSize +152 QLayout::maximumSize +160 QStackedLayout::setGeometry +168 QStackedLayout::itemAt +176 QStackedLayout::takeAt +184 QLayout::indexOf +192 QStackedLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QStackedLayout::sizeHint +224 (int (*)(...))-0x00000000000000010 +232 (int (*)(...))(& _ZTI14QStackedLayout) +240 QStackedLayout::_ZThn16_N14QStackedLayoutD1Ev +248 QStackedLayout::_ZThn16_N14QStackedLayoutD0Ev +256 QStackedLayout::_ZThn16_NK14QStackedLayout8sizeHintEv +264 QStackedLayout::_ZThn16_NK14QStackedLayout11minimumSizeEv +272 QLayout::_ZThn16_NK7QLayout11maximumSizeEv +280 QLayout::_ZThn16_NK7QLayout19expandingDirectionsEv +288 QStackedLayout::_ZThn16_N14QStackedLayout11setGeometryERK5QRect +296 QLayout::_ZThn16_NK7QLayout8geometryEv +304 QLayout::_ZThn16_NK7QLayout7isEmptyEv +312 QLayoutItem::hasHeightForWidth +320 QLayoutItem::heightForWidth +328 QLayoutItem::minimumHeightForWidth +336 QLayout::_ZThn16_N7QLayout10invalidateEv +344 QLayoutItem::widget +352 QLayout::_ZThn16_N7QLayout6layoutEv +360 QLayoutItem::spacerItem + +Class QStackedLayout + size=32 align=8 + base size=28 base align=8 +QStackedLayout (0x7f2f3a09ca80) 0 + vptr=((& QStackedLayout::_ZTV14QStackedLayout) + 16u) + QLayout (0x7f2f3a095880) 0 + primary-for QStackedLayout (0x7f2f3a09ca80) + QObject (0x7f2f3a09caf0) 0 + primary-for QLayout (0x7f2f3a095880) + QLayoutItem (0x7f2f3a09cb60) 16 + vptr=((& QStackedLayout::_ZTV14QStackedLayout) + 240u) + +Class QToolTip + size=1 align=1 + base size=0 base align=1 +QToolTip (0x7f2f3a0baa80) 0 empty + +Class QWhatsThis + size=1 align=1 + base size=0 base align=1 +QWhatsThis (0x7f2f3a0c8070) 0 empty + +Vtable for QWidgetAction +QWidgetAction::_ZTV13QWidgetAction: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QWidgetAction) +16 QWidgetAction::metaObject +24 QWidgetAction::qt_metacast +32 QWidgetAction::qt_metacall +40 QWidgetAction::~QWidgetAction +48 QWidgetAction::~QWidgetAction +56 QWidgetAction::event +64 QWidgetAction::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidgetAction::createWidget +120 QWidgetAction::deleteWidget + +Class QWidgetAction + size=16 align=8 + base size=16 base align=8 +QWidgetAction (0x7f2f3a0c8150) 0 + vptr=((& QWidgetAction::_ZTV13QWidgetAction) + 16u) + QAction (0x7f2f3a0c81c0) 0 + primary-for QWidgetAction (0x7f2f3a0c8150) + QObject (0x7f2f3a0c8230) 0 + primary-for QAction (0x7f2f3a0c81c0) + +Class QVector3D + size=12 align=4 + base size=12 base align=4 +QVector3D (0x7f2f39f961c0) 0 + +Class QVector4D + size=16 align=4 + base size=16 base align=4 +QVector4D (0x7f2f39ff9cb0) 0 + +Class QQuaternion + size=32 align=8 + base size=32 base align=8 +QQuaternion (0x7f2f39e6fd20) 0 + +Class QMatrix4x4 + size=136 align=8 + base size=132 base align=8 +QMatrix4x4 (0x7f2f39eefb60) 0 + +Class QVector2D + size=8 align=4 + base size=8 base align=4 +QVector2D (0x7f2f39d3ad90) 0 + +Vtable for QCommonStyle +QCommonStyle::_ZTV12QCommonStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QCommonStyle) +16 QCommonStyle::metaObject +24 QCommonStyle::qt_metacast +32 QCommonStyle::qt_metacall +40 QCommonStyle::~QCommonStyle +48 QCommonStyle::~QCommonStyle +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCommonStyle::polish +120 QCommonStyle::unpolish +128 QCommonStyle::polish +136 QCommonStyle::unpolish +144 QCommonStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QStyle::standardPalette +192 QCommonStyle::drawPrimitive +200 QCommonStyle::drawControl +208 QCommonStyle::subElementRect +216 QCommonStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QCommonStyle::subControlRect +240 QCommonStyle::pixelMetric +248 QCommonStyle::sizeFromContents +256 QCommonStyle::styleHint +264 QCommonStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QCommonStyle + size=16 align=8 + base size=16 base align=8 +QCommonStyle (0x7f2f39b9e2a0) 0 + vptr=((& QCommonStyle::_ZTV12QCommonStyle) + 16u) + QStyle (0x7f2f39b9e310) 0 + primary-for QCommonStyle (0x7f2f39b9e2a0) + QObject (0x7f2f39b9e380) 0 + primary-for QStyle (0x7f2f39b9e310) + +Vtable for QMotifStyle +QMotifStyle::_ZTV11QMotifStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMotifStyle) +16 QMotifStyle::metaObject +24 QMotifStyle::qt_metacast +32 QMotifStyle::qt_metacall +40 QMotifStyle::~QMotifStyle +48 QMotifStyle::~QMotifStyle +56 QMotifStyle::event +64 QMotifStyle::eventFilter +72 QMotifStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMotifStyle::polish +120 QMotifStyle::unpolish +128 QMotifStyle::polish +136 QMotifStyle::unpolish +144 QMotifStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QMotifStyle::standardPalette +192 QMotifStyle::drawPrimitive +200 QMotifStyle::drawControl +208 QMotifStyle::subElementRect +216 QMotifStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QMotifStyle::subControlRect +240 QMotifStyle::pixelMetric +248 QMotifStyle::sizeFromContents +256 QMotifStyle::styleHint +264 QMotifStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QMotifStyle + size=32 align=8 + base size=25 base align=8 +QMotifStyle (0x7f2f39bbf2a0) 0 + vptr=((& QMotifStyle::_ZTV11QMotifStyle) + 16u) + QCommonStyle (0x7f2f39bbf310) 0 + primary-for QMotifStyle (0x7f2f39bbf2a0) + QStyle (0x7f2f39bbf380) 0 + primary-for QCommonStyle (0x7f2f39bbf310) + QObject (0x7f2f39bbf3f0) 0 + primary-for QStyle (0x7f2f39bbf380) + +Vtable for QCDEStyle +QCDEStyle::_ZTV9QCDEStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QCDEStyle) +16 QCDEStyle::metaObject +24 QCDEStyle::qt_metacast +32 QCDEStyle::qt_metacall +40 QCDEStyle::~QCDEStyle +48 QCDEStyle::~QCDEStyle +56 QMotifStyle::event +64 QMotifStyle::eventFilter +72 QMotifStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMotifStyle::polish +120 QMotifStyle::unpolish +128 QMotifStyle::polish +136 QMotifStyle::unpolish +144 QMotifStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QCDEStyle::standardPalette +192 QCDEStyle::drawPrimitive +200 QCDEStyle::drawControl +208 QMotifStyle::subElementRect +216 QMotifStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QMotifStyle::subControlRect +240 QCDEStyle::pixelMetric +248 QMotifStyle::sizeFromContents +256 QMotifStyle::styleHint +264 QMotifStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QCDEStyle + size=32 align=8 + base size=25 base align=8 +QCDEStyle (0x7f2f39be91c0) 0 + vptr=((& QCDEStyle::_ZTV9QCDEStyle) + 16u) + QMotifStyle (0x7f2f39be9230) 0 + primary-for QCDEStyle (0x7f2f39be91c0) + QCommonStyle (0x7f2f39be92a0) 0 + primary-for QMotifStyle (0x7f2f39be9230) + QStyle (0x7f2f39be9310) 0 + primary-for QCommonStyle (0x7f2f39be92a0) + QObject (0x7f2f39be9380) 0 + primary-for QStyle (0x7f2f39be9310) + +Vtable for QWindowsStyle +QWindowsStyle::_ZTV13QWindowsStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QWindowsStyle) +16 QWindowsStyle::metaObject +24 QWindowsStyle::qt_metacast +32 QWindowsStyle::qt_metacall +40 QWindowsStyle::~QWindowsStyle +48 QWindowsStyle::~QWindowsStyle +56 QObject::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWindowsStyle::polish +120 QWindowsStyle::unpolish +128 QWindowsStyle::polish +136 QWindowsStyle::unpolish +144 QWindowsStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QStyle::standardPalette +192 QWindowsStyle::drawPrimitive +200 QWindowsStyle::drawControl +208 QWindowsStyle::subElementRect +216 QWindowsStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QCommonStyle::subControlRect +240 QWindowsStyle::pixelMetric +248 QWindowsStyle::sizeFromContents +256 QWindowsStyle::styleHint +264 QWindowsStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QWindowsStyle + size=24 align=8 + base size=24 base align=8 +QWindowsStyle (0x7f2f39bfd310) 0 + vptr=((& QWindowsStyle::_ZTV13QWindowsStyle) + 16u) + QCommonStyle (0x7f2f39bfd380) 0 + primary-for QWindowsStyle (0x7f2f39bfd310) + QStyle (0x7f2f39bfd3f0) 0 + primary-for QCommonStyle (0x7f2f39bfd380) + QObject (0x7f2f39bfd460) 0 + primary-for QStyle (0x7f2f39bfd3f0) + +Vtable for QCleanlooksStyle +QCleanlooksStyle::_ZTV16QCleanlooksStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QCleanlooksStyle) +16 QCleanlooksStyle::metaObject +24 QCleanlooksStyle::qt_metacast +32 QCleanlooksStyle::qt_metacall +40 QCleanlooksStyle::~QCleanlooksStyle +48 QCleanlooksStyle::~QCleanlooksStyle +56 QObject::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCleanlooksStyle::polish +120 QCleanlooksStyle::unpolish +128 QCleanlooksStyle::polish +136 QCleanlooksStyle::unpolish +144 QCleanlooksStyle::polish +152 QStyle::itemTextRect +160 QCleanlooksStyle::itemPixmapRect +168 QCleanlooksStyle::drawItemText +176 QCleanlooksStyle::drawItemPixmap +184 QCleanlooksStyle::standardPalette +192 QCleanlooksStyle::drawPrimitive +200 QCleanlooksStyle::drawControl +208 QCleanlooksStyle::subElementRect +216 QCleanlooksStyle::drawComplexControl +224 QCleanlooksStyle::hitTestComplexControl +232 QCleanlooksStyle::subControlRect +240 QCleanlooksStyle::pixelMetric +248 QCleanlooksStyle::sizeFromContents +256 QCleanlooksStyle::styleHint +264 QCleanlooksStyle::standardPixmap +272 QCleanlooksStyle::generatedIconPixmap + +Class QCleanlooksStyle + size=24 align=8 + base size=24 base align=8 +QCleanlooksStyle (0x7f2f39c1f0e0) 0 + vptr=((& QCleanlooksStyle::_ZTV16QCleanlooksStyle) + 16u) + QWindowsStyle (0x7f2f39c1f150) 0 + primary-for QCleanlooksStyle (0x7f2f39c1f0e0) + QCommonStyle (0x7f2f39c1f1c0) 0 + primary-for QWindowsStyle (0x7f2f39c1f150) + QStyle (0x7f2f39c1f230) 0 + primary-for QCommonStyle (0x7f2f39c1f1c0) + QObject (0x7f2f39c1f2a0) 0 + primary-for QStyle (0x7f2f39c1f230) + +Vtable for QPlastiqueStyle +QPlastiqueStyle::_ZTV15QPlastiqueStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QPlastiqueStyle) +16 QPlastiqueStyle::metaObject +24 QPlastiqueStyle::qt_metacast +32 QPlastiqueStyle::qt_metacall +40 QPlastiqueStyle::~QPlastiqueStyle +48 QPlastiqueStyle::~QPlastiqueStyle +56 QObject::event +64 QPlastiqueStyle::eventFilter +72 QPlastiqueStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QPlastiqueStyle::polish +120 QPlastiqueStyle::unpolish +128 QPlastiqueStyle::polish +136 QPlastiqueStyle::unpolish +144 QPlastiqueStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QPlastiqueStyle::standardPalette +192 QPlastiqueStyle::drawPrimitive +200 QPlastiqueStyle::drawControl +208 QPlastiqueStyle::subElementRect +216 QPlastiqueStyle::drawComplexControl +224 QPlastiqueStyle::hitTestComplexControl +232 QPlastiqueStyle::subControlRect +240 QPlastiqueStyle::pixelMetric +248 QPlastiqueStyle::sizeFromContents +256 QPlastiqueStyle::styleHint +264 QPlastiqueStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QPlastiqueStyle + size=32 align=8 + base size=32 base align=8 +QPlastiqueStyle (0x7f2f39c39e70) 0 + vptr=((& QPlastiqueStyle::_ZTV15QPlastiqueStyle) + 16u) + QWindowsStyle (0x7f2f39c39ee0) 0 + primary-for QPlastiqueStyle (0x7f2f39c39e70) + QCommonStyle (0x7f2f39c39f50) 0 + primary-for QWindowsStyle (0x7f2f39c39ee0) + QStyle (0x7f2f39c43000) 0 + primary-for QCommonStyle (0x7f2f39c39f50) + QObject (0x7f2f39c43070) 0 + primary-for QStyle (0x7f2f39c43000) + +Vtable for QProxyStyle +QProxyStyle::_ZTV11QProxyStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QProxyStyle) +16 QProxyStyle::metaObject +24 QProxyStyle::qt_metacast +32 QProxyStyle::qt_metacall +40 QProxyStyle::~QProxyStyle +48 QProxyStyle::~QProxyStyle +56 QProxyStyle::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QProxyStyle::polish +120 QProxyStyle::unpolish +128 QProxyStyle::polish +136 QProxyStyle::unpolish +144 QProxyStyle::polish +152 QProxyStyle::itemTextRect +160 QProxyStyle::itemPixmapRect +168 QProxyStyle::drawItemText +176 QProxyStyle::drawItemPixmap +184 QProxyStyle::standardPalette +192 QProxyStyle::drawPrimitive +200 QProxyStyle::drawControl +208 QProxyStyle::subElementRect +216 QProxyStyle::drawComplexControl +224 QProxyStyle::hitTestComplexControl +232 QProxyStyle::subControlRect +240 QProxyStyle::pixelMetric +248 QProxyStyle::sizeFromContents +256 QProxyStyle::styleHint +264 QProxyStyle::standardPixmap +272 QProxyStyle::generatedIconPixmap + +Class QProxyStyle + size=16 align=8 + base size=16 base align=8 +QProxyStyle (0x7f2f39a62000) 0 + vptr=((& QProxyStyle::_ZTV11QProxyStyle) + 16u) + QCommonStyle (0x7f2f39a62070) 0 + primary-for QProxyStyle (0x7f2f39a62000) + QStyle (0x7f2f39a620e0) 0 + primary-for QCommonStyle (0x7f2f39a62070) + QObject (0x7f2f39a62150) 0 + primary-for QStyle (0x7f2f39a620e0) + +Vtable for QS60Style +QS60Style::_ZTV9QS60Style: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QS60Style) +16 QS60Style::metaObject +24 QS60Style::qt_metacast +32 QS60Style::qt_metacall +40 QS60Style::~QS60Style +48 QS60Style::~QS60Style +56 QS60Style::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QS60Style::polish +120 QS60Style::unpolish +128 QS60Style::polish +136 QS60Style::unpolish +144 QCommonStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QStyle::standardPalette +192 QS60Style::drawPrimitive +200 QS60Style::drawControl +208 QS60Style::subElementRect +216 QS60Style::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QS60Style::subControlRect +240 QS60Style::pixelMetric +248 QS60Style::sizeFromContents +256 QS60Style::styleHint +264 QCommonStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QS60Style + size=16 align=8 + base size=16 base align=8 +QS60Style (0x7f2f39a824d0) 0 + vptr=((& QS60Style::_ZTV9QS60Style) + 16u) + QCommonStyle (0x7f2f39a82540) 0 + primary-for QS60Style (0x7f2f39a824d0) + QStyle (0x7f2f39a825b0) 0 + primary-for QCommonStyle (0x7f2f39a82540) + QObject (0x7f2f39a82620) 0 + primary-for QStyle (0x7f2f39a825b0) + +Class QStyleFactory + size=1 align=1 + base size=0 base align=1 +QStyleFactory (0x7f2f39aa6310) 0 empty + +Vtable for QStyleFactoryInterface +QStyleFactoryInterface::_ZTV22QStyleFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QStyleFactoryInterface) +16 QStyleFactoryInterface::~QStyleFactoryInterface +24 QStyleFactoryInterface::~QStyleFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QStyleFactoryInterface + size=8 align=8 + base size=8 base align=8 +QStyleFactoryInterface (0x7f2f39aa6380) 0 nearly-empty + vptr=((& QStyleFactoryInterface::_ZTV22QStyleFactoryInterface) + 16u) + QFactoryInterface (0x7f2f39aa63f0) 0 nearly-empty + primary-for QStyleFactoryInterface (0x7f2f39aa6380) + +Vtable for QStylePlugin +QStylePlugin::_ZTV12QStylePlugin: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QStylePlugin) +16 QStylePlugin::metaObject +24 QStylePlugin::qt_metacast +32 QStylePlugin::qt_metacall +40 QStylePlugin::~QStylePlugin +48 QStylePlugin::~QStylePlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI12QStylePlugin) +144 QStylePlugin::_ZThn16_N12QStylePluginD1Ev +152 QStylePlugin::_ZThn16_N12QStylePluginD0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QStylePlugin + size=24 align=8 + base size=24 base align=8 +QStylePlugin (0x7f2f39ab3000) 0 + vptr=((& QStylePlugin::_ZTV12QStylePlugin) + 16u) + QObject (0x7f2f39aa6e00) 0 + primary-for QStylePlugin (0x7f2f39ab3000) + QStyleFactoryInterface (0x7f2f39aa6e70) 16 nearly-empty + vptr=((& QStylePlugin::_ZTV12QStylePlugin) + 144u) + QFactoryInterface (0x7f2f39aa6ee0) 16 nearly-empty + primary-for QStyleFactoryInterface (0x7f2f39aa6e70) + +Vtable for QWindowsCEStyle +QWindowsCEStyle::_ZTV15QWindowsCEStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QWindowsCEStyle) +16 QWindowsCEStyle::metaObject +24 QWindowsCEStyle::qt_metacast +32 QWindowsCEStyle::qt_metacall +40 QWindowsCEStyle::~QWindowsCEStyle +48 QWindowsCEStyle::~QWindowsCEStyle +56 QObject::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWindowsCEStyle::polish +120 QWindowsStyle::unpolish +128 QWindowsCEStyle::polish +136 QWindowsStyle::unpolish +144 QWindowsCEStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QWindowsCEStyle::drawItemText +176 QStyle::drawItemPixmap +184 QWindowsCEStyle::standardPalette +192 QWindowsCEStyle::drawPrimitive +200 QWindowsCEStyle::drawControl +208 QWindowsCEStyle::subElementRect +216 QWindowsCEStyle::drawComplexControl +224 QWindowsCEStyle::hitTestComplexControl +232 QWindowsCEStyle::subControlRect +240 QWindowsCEStyle::pixelMetric +248 QWindowsCEStyle::sizeFromContents +256 QWindowsCEStyle::styleHint +264 QWindowsCEStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QWindowsCEStyle + size=24 align=8 + base size=24 base align=8 +QWindowsCEStyle (0x7f2f39ab6d90) 0 + vptr=((& QWindowsCEStyle::_ZTV15QWindowsCEStyle) + 16u) + QWindowsStyle (0x7f2f39ab6e00) 0 + primary-for QWindowsCEStyle (0x7f2f39ab6d90) + QCommonStyle (0x7f2f39ab6e70) 0 + primary-for QWindowsStyle (0x7f2f39ab6e00) + QStyle (0x7f2f39ab6ee0) 0 + primary-for QCommonStyle (0x7f2f39ab6e70) + QObject (0x7f2f39ab6f50) 0 + primary-for QStyle (0x7f2f39ab6ee0) + +Vtable for QWindowsMobileStyle +QWindowsMobileStyle::_ZTV19QWindowsMobileStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QWindowsMobileStyle) +16 QWindowsMobileStyle::metaObject +24 QWindowsMobileStyle::qt_metacast +32 QWindowsMobileStyle::qt_metacall +40 QWindowsMobileStyle::~QWindowsMobileStyle +48 QWindowsMobileStyle::~QWindowsMobileStyle +56 QObject::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWindowsMobileStyle::polish +120 QWindowsMobileStyle::unpolish +128 QWindowsMobileStyle::polish +136 QWindowsMobileStyle::unpolish +144 QWindowsMobileStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QWindowsMobileStyle::standardPalette +192 QWindowsMobileStyle::drawPrimitive +200 QWindowsMobileStyle::drawControl +208 QWindowsMobileStyle::subElementRect +216 QWindowsMobileStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QWindowsMobileStyle::subControlRect +240 QWindowsMobileStyle::pixelMetric +248 QWindowsMobileStyle::sizeFromContents +256 QWindowsMobileStyle::styleHint +264 QWindowsMobileStyle::standardPixmap +272 QWindowsMobileStyle::generatedIconPixmap + +Class QWindowsMobileStyle + size=24 align=8 + base size=24 base align=8 +QWindowsMobileStyle (0x7f2f39add3f0) 0 + vptr=((& QWindowsMobileStyle::_ZTV19QWindowsMobileStyle) + 16u) + QWindowsStyle (0x7f2f39add460) 0 + primary-for QWindowsMobileStyle (0x7f2f39add3f0) + QCommonStyle (0x7f2f39add4d0) 0 + primary-for QWindowsStyle (0x7f2f39add460) + QStyle (0x7f2f39add540) 0 + primary-for QCommonStyle (0x7f2f39add4d0) + QObject (0x7f2f39add5b0) 0 + primary-for QStyle (0x7f2f39add540) + +Vtable for QWindowsXPStyle +QWindowsXPStyle::_ZTV15QWindowsXPStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QWindowsXPStyle) +16 QWindowsXPStyle::metaObject +24 QWindowsXPStyle::qt_metacast +32 QWindowsXPStyle::qt_metacall +40 QWindowsXPStyle::~QWindowsXPStyle +48 QWindowsXPStyle::~QWindowsXPStyle +56 QObject::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWindowsXPStyle::polish +120 QWindowsXPStyle::unpolish +128 QWindowsXPStyle::polish +136 QWindowsXPStyle::unpolish +144 QWindowsXPStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QWindowsXPStyle::standardPalette +192 QWindowsXPStyle::drawPrimitive +200 QWindowsXPStyle::drawControl +208 QWindowsXPStyle::subElementRect +216 QWindowsXPStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QWindowsXPStyle::subControlRect +240 QWindowsXPStyle::pixelMetric +248 QWindowsXPStyle::sizeFromContents +256 QWindowsXPStyle::styleHint +264 QWindowsXPStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QWindowsXPStyle + size=32 align=8 + base size=32 base align=8 +QWindowsXPStyle (0x7f2f39af4d90) 0 + vptr=((& QWindowsXPStyle::_ZTV15QWindowsXPStyle) + 16u) + QWindowsStyle (0x7f2f39af4e00) 0 + primary-for QWindowsXPStyle (0x7f2f39af4d90) + QCommonStyle (0x7f2f39af4e70) 0 + primary-for QWindowsStyle (0x7f2f39af4e00) + QStyle (0x7f2f39af4ee0) 0 + primary-for QCommonStyle (0x7f2f39af4e70) + QObject (0x7f2f39af4f50) 0 + primary-for QStyle (0x7f2f39af4ee0) + +Vtable for QWindowsVistaStyle +QWindowsVistaStyle::_ZTV18QWindowsVistaStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QWindowsVistaStyle) +16 QWindowsVistaStyle::metaObject +24 QWindowsVistaStyle::qt_metacast +32 QWindowsVistaStyle::qt_metacall +40 QWindowsVistaStyle::~QWindowsVistaStyle +48 QWindowsVistaStyle::~QWindowsVistaStyle +56 QWindowsVistaStyle::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWindowsVistaStyle::polish +120 QWindowsVistaStyle::unpolish +128 QWindowsVistaStyle::polish +136 QWindowsVistaStyle::unpolish +144 QWindowsVistaStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QWindowsVistaStyle::standardPalette +192 QWindowsVistaStyle::drawPrimitive +200 QWindowsVistaStyle::drawControl +208 QWindowsVistaStyle::subElementRect +216 QWindowsVistaStyle::drawComplexControl +224 QWindowsVistaStyle::hitTestComplexControl +232 QWindowsVistaStyle::subControlRect +240 QWindowsVistaStyle::pixelMetric +248 QWindowsVistaStyle::sizeFromContents +256 QWindowsVistaStyle::styleHint +264 QWindowsVistaStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QWindowsVistaStyle + size=32 align=8 + base size=32 base align=8 +QWindowsVistaStyle (0x7f2f39b15c40) 0 + vptr=((& QWindowsVistaStyle::_ZTV18QWindowsVistaStyle) + 16u) + QWindowsXPStyle (0x7f2f39b15cb0) 0 + primary-for QWindowsVistaStyle (0x7f2f39b15c40) + QWindowsStyle (0x7f2f39b15d20) 0 + primary-for QWindowsXPStyle (0x7f2f39b15cb0) + QCommonStyle (0x7f2f39b15d90) 0 + primary-for QWindowsStyle (0x7f2f39b15d20) + QStyle (0x7f2f39b15e00) 0 + primary-for QCommonStyle (0x7f2f39b15d90) + QObject (0x7f2f39b15e70) 0 + primary-for QStyle (0x7f2f39b15e00) + +Vtable for QInputContext +QInputContext::_ZTV13QInputContext: 26u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QInputContext) +16 QInputContext::metaObject +24 QInputContext::qt_metacast +32 QInputContext::qt_metacall +40 QInputContext::~QInputContext +48 QInputContext::~QInputContext +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 QInputContext::update +144 QInputContext::mouseHandler +152 QInputContext::font +160 __cxa_pure_virtual +168 QInputContext::setFocusWidget +176 QInputContext::widgetDestroyed +184 QInputContext::actions +192 QInputContext::x11FilterEvent +200 QInputContext::filterEvent + +Class QInputContext + size=16 align=8 + base size=16 base align=8 +QInputContext (0x7f2f39b36c40) 0 + vptr=((& QInputContext::_ZTV13QInputContext) + 16u) + QObject (0x7f2f39b36cb0) 0 + primary-for QInputContext (0x7f2f39b36c40) + +Class QInputContextFactory + size=1 align=1 + base size=0 base align=1 +QInputContextFactory (0x7f2f399575b0) 0 empty + +Vtable for QInputContextFactoryInterface +QInputContextFactoryInterface::_ZTV29QInputContextFactoryInterface: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI29QInputContextFactoryInterface) +16 QInputContextFactoryInterface::~QInputContextFactoryInterface +24 QInputContextFactoryInterface::~QInputContextFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual + +Class QInputContextFactoryInterface + size=8 align=8 + base size=8 base align=8 +QInputContextFactoryInterface (0x7f2f39957620) 0 nearly-empty + vptr=((& QInputContextFactoryInterface::_ZTV29QInputContextFactoryInterface) + 16u) + QFactoryInterface (0x7f2f39957690) 0 nearly-empty + primary-for QInputContextFactoryInterface (0x7f2f39957620) + +Vtable for QInputContextPlugin +QInputContextPlugin::_ZTV19QInputContextPlugin: 28u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QInputContextPlugin) +16 QInputContextPlugin::metaObject +24 QInputContextPlugin::qt_metacast +32 QInputContextPlugin::qt_metacall +40 QInputContextPlugin::~QInputContextPlugin +48 QInputContextPlugin::~QInputContextPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 (int (*)(...))-0x00000000000000010 +160 (int (*)(...))(& _ZTI19QInputContextPlugin) +168 QInputContextPlugin::_ZThn16_N19QInputContextPluginD1Ev +176 QInputContextPlugin::_ZThn16_N19QInputContextPluginD0Ev +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 __cxa_pure_virtual +208 __cxa_pure_virtual +216 __cxa_pure_virtual + +Class QInputContextPlugin + size=24 align=8 + base size=24 base align=8 +QInputContextPlugin (0x7f2f39953e80) 0 + vptr=((& QInputContextPlugin::_ZTV19QInputContextPlugin) + 16u) + QObject (0x7f2f39966000) 0 + primary-for QInputContextPlugin (0x7f2f39953e80) + QInputContextFactoryInterface (0x7f2f39966070) 16 nearly-empty + vptr=((& QInputContextPlugin::_ZTV19QInputContextPlugin) + 168u) + QFactoryInterface (0x7f2f399660e0) 16 nearly-empty + primary-for QInputContextFactoryInterface (0x7f2f39966070) + +Vtable for QGraphicsItem +QGraphicsItem::_ZTV13QGraphicsItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QGraphicsItem) +16 QGraphicsItem::~QGraphicsItem +24 QGraphicsItem::~QGraphicsItem +32 QGraphicsItem::advance +40 __cxa_pure_virtual +48 QGraphicsItem::shape +56 QGraphicsItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsItem::isObscuredBy +88 QGraphicsItem::opaqueArea +96 __cxa_pure_virtual +104 QGraphicsItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsItem::supportsExtension +296 QGraphicsItem::setExtension +304 QGraphicsItem::extension + +Class QGraphicsItem + size=16 align=8 + base size=16 base align=8 +QGraphicsItem (0x7f2f39966380) 0 + vptr=((& QGraphicsItem::_ZTV13QGraphicsItem) + 16u) + +Vtable for QGraphicsObject +QGraphicsObject::_ZTV15QGraphicsObject: 53u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QGraphicsObject) +16 QGraphicsObject::metaObject +24 QGraphicsObject::qt_metacast +32 QGraphicsObject::qt_metacall +40 QGraphicsObject::~QGraphicsObject +48 QGraphicsObject::~QGraphicsObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 (int (*)(...))-0x00000000000000010 +120 (int (*)(...))(& _ZTI15QGraphicsObject) +128 QGraphicsObject::_ZThn16_N15QGraphicsObjectD1Ev +136 QGraphicsObject::_ZThn16_N15QGraphicsObjectD0Ev +144 QGraphicsItem::advance +152 __cxa_pure_virtual +160 QGraphicsItem::shape +168 QGraphicsItem::contains +176 QGraphicsItem::collidesWithItem +184 QGraphicsItem::collidesWithPath +192 QGraphicsItem::isObscuredBy +200 QGraphicsItem::opaqueArea +208 __cxa_pure_virtual +216 QGraphicsItem::type +224 QGraphicsItem::sceneEventFilter +232 QGraphicsItem::sceneEvent +240 QGraphicsItem::contextMenuEvent +248 QGraphicsItem::dragEnterEvent +256 QGraphicsItem::dragLeaveEvent +264 QGraphicsItem::dragMoveEvent +272 QGraphicsItem::dropEvent +280 QGraphicsItem::focusInEvent +288 QGraphicsItem::focusOutEvent +296 QGraphicsItem::hoverEnterEvent +304 QGraphicsItem::hoverMoveEvent +312 QGraphicsItem::hoverLeaveEvent +320 QGraphicsItem::keyPressEvent +328 QGraphicsItem::keyReleaseEvent +336 QGraphicsItem::mousePressEvent +344 QGraphicsItem::mouseMoveEvent +352 QGraphicsItem::mouseReleaseEvent +360 QGraphicsItem::mouseDoubleClickEvent +368 QGraphicsItem::wheelEvent +376 QGraphicsItem::inputMethodEvent +384 QGraphicsItem::inputMethodQuery +392 QGraphicsItem::itemChange +400 QGraphicsItem::supportsExtension +408 QGraphicsItem::setExtension +416 QGraphicsItem::extension + +Class QGraphicsObject + size=32 align=8 + base size=32 base align=8 +QGraphicsObject (0x7f2f39858c80) 0 + vptr=((& QGraphicsObject::_ZTV15QGraphicsObject) + 16u) + QObject (0x7f2f39860f50) 0 + primary-for QGraphicsObject (0x7f2f39858c80) + QGraphicsItem (0x7f2f39869000) 16 + vptr=((& QGraphicsObject::_ZTV15QGraphicsObject) + 128u) + +Vtable for QAbstractGraphicsShapeItem +QAbstractGraphicsShapeItem::_ZTV26QAbstractGraphicsShapeItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QAbstractGraphicsShapeItem) +16 QAbstractGraphicsShapeItem::~QAbstractGraphicsShapeItem +24 QAbstractGraphicsShapeItem::~QAbstractGraphicsShapeItem +32 QGraphicsItem::advance +40 __cxa_pure_virtual +48 QGraphicsItem::shape +56 QGraphicsItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QAbstractGraphicsShapeItem::isObscuredBy +88 QAbstractGraphicsShapeItem::opaqueArea +96 __cxa_pure_virtual +104 QGraphicsItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsItem::supportsExtension +296 QGraphicsItem::setExtension +304 QGraphicsItem::extension + +Class QAbstractGraphicsShapeItem + size=16 align=8 + base size=16 base align=8 +QAbstractGraphicsShapeItem (0x7f2f39880070) 0 + vptr=((& QAbstractGraphicsShapeItem::_ZTV26QAbstractGraphicsShapeItem) + 16u) + QGraphicsItem (0x7f2f398800e0) 0 + primary-for QAbstractGraphicsShapeItem (0x7f2f39880070) + +Vtable for QGraphicsPathItem +QGraphicsPathItem::_ZTV17QGraphicsPathItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QGraphicsPathItem) +16 QGraphicsPathItem::~QGraphicsPathItem +24 QGraphicsPathItem::~QGraphicsPathItem +32 QGraphicsItem::advance +40 QGraphicsPathItem::boundingRect +48 QGraphicsPathItem::shape +56 QGraphicsPathItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsPathItem::isObscuredBy +88 QGraphicsPathItem::opaqueArea +96 QGraphicsPathItem::paint +104 QGraphicsPathItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsPathItem::supportsExtension +296 QGraphicsPathItem::setExtension +304 QGraphicsPathItem::extension + +Class QGraphicsPathItem + size=16 align=8 + base size=16 base align=8 +QGraphicsPathItem (0x7f2f39880ee0) 0 + vptr=((& QGraphicsPathItem::_ZTV17QGraphicsPathItem) + 16u) + QAbstractGraphicsShapeItem (0x7f2f39880f50) 0 + primary-for QGraphicsPathItem (0x7f2f39880ee0) + QGraphicsItem (0x7f2f39880930) 0 + primary-for QAbstractGraphicsShapeItem (0x7f2f39880f50) + +Vtable for QGraphicsRectItem +QGraphicsRectItem::_ZTV17QGraphicsRectItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QGraphicsRectItem) +16 QGraphicsRectItem::~QGraphicsRectItem +24 QGraphicsRectItem::~QGraphicsRectItem +32 QGraphicsItem::advance +40 QGraphicsRectItem::boundingRect +48 QGraphicsRectItem::shape +56 QGraphicsRectItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsRectItem::isObscuredBy +88 QGraphicsRectItem::opaqueArea +96 QGraphicsRectItem::paint +104 QGraphicsRectItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsRectItem::supportsExtension +296 QGraphicsRectItem::setExtension +304 QGraphicsRectItem::extension + +Class QGraphicsRectItem + size=16 align=8 + base size=16 base align=8 +QGraphicsRectItem (0x7f2f3988de70) 0 + vptr=((& QGraphicsRectItem::_ZTV17QGraphicsRectItem) + 16u) + QAbstractGraphicsShapeItem (0x7f2f3988dee0) 0 + primary-for QGraphicsRectItem (0x7f2f3988de70) + QGraphicsItem (0x7f2f3988df50) 0 + primary-for QAbstractGraphicsShapeItem (0x7f2f3988dee0) + +Vtable for QGraphicsEllipseItem +QGraphicsEllipseItem::_ZTV20QGraphicsEllipseItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QGraphicsEllipseItem) +16 QGraphicsEllipseItem::~QGraphicsEllipseItem +24 QGraphicsEllipseItem::~QGraphicsEllipseItem +32 QGraphicsItem::advance +40 QGraphicsEllipseItem::boundingRect +48 QGraphicsEllipseItem::shape +56 QGraphicsEllipseItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsEllipseItem::isObscuredBy +88 QGraphicsEllipseItem::opaqueArea +96 QGraphicsEllipseItem::paint +104 QGraphicsEllipseItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsEllipseItem::supportsExtension +296 QGraphicsEllipseItem::setExtension +304 QGraphicsEllipseItem::extension + +Class QGraphicsEllipseItem + size=16 align=8 + base size=16 base align=8 +QGraphicsEllipseItem (0x7f2f398b3150) 0 + vptr=((& QGraphicsEllipseItem::_ZTV20QGraphicsEllipseItem) + 16u) + QAbstractGraphicsShapeItem (0x7f2f398b31c0) 0 + primary-for QGraphicsEllipseItem (0x7f2f398b3150) + QGraphicsItem (0x7f2f398b3230) 0 + primary-for QAbstractGraphicsShapeItem (0x7f2f398b31c0) + +Vtable for QGraphicsPolygonItem +QGraphicsPolygonItem::_ZTV20QGraphicsPolygonItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QGraphicsPolygonItem) +16 QGraphicsPolygonItem::~QGraphicsPolygonItem +24 QGraphicsPolygonItem::~QGraphicsPolygonItem +32 QGraphicsItem::advance +40 QGraphicsPolygonItem::boundingRect +48 QGraphicsPolygonItem::shape +56 QGraphicsPolygonItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsPolygonItem::isObscuredBy +88 QGraphicsPolygonItem::opaqueArea +96 QGraphicsPolygonItem::paint +104 QGraphicsPolygonItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsPolygonItem::supportsExtension +296 QGraphicsPolygonItem::setExtension +304 QGraphicsPolygonItem::extension + +Class QGraphicsPolygonItem + size=16 align=8 + base size=16 base align=8 +QGraphicsPolygonItem (0x7f2f398c5460) 0 + vptr=((& QGraphicsPolygonItem::_ZTV20QGraphicsPolygonItem) + 16u) + QAbstractGraphicsShapeItem (0x7f2f398c54d0) 0 + primary-for QGraphicsPolygonItem (0x7f2f398c5460) + QGraphicsItem (0x7f2f398c5540) 0 + primary-for QAbstractGraphicsShapeItem (0x7f2f398c54d0) + +Vtable for QGraphicsLineItem +QGraphicsLineItem::_ZTV17QGraphicsLineItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QGraphicsLineItem) +16 QGraphicsLineItem::~QGraphicsLineItem +24 QGraphicsLineItem::~QGraphicsLineItem +32 QGraphicsItem::advance +40 QGraphicsLineItem::boundingRect +48 QGraphicsLineItem::shape +56 QGraphicsLineItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsLineItem::isObscuredBy +88 QGraphicsLineItem::opaqueArea +96 QGraphicsLineItem::paint +104 QGraphicsLineItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsLineItem::supportsExtension +296 QGraphicsLineItem::setExtension +304 QGraphicsLineItem::extension + +Class QGraphicsLineItem + size=16 align=8 + base size=16 base align=8 +QGraphicsLineItem (0x7f2f398d83f0) 0 + vptr=((& QGraphicsLineItem::_ZTV17QGraphicsLineItem) + 16u) + QGraphicsItem (0x7f2f398d8460) 0 + primary-for QGraphicsLineItem (0x7f2f398d83f0) + +Vtable for QGraphicsPixmapItem +QGraphicsPixmapItem::_ZTV19QGraphicsPixmapItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QGraphicsPixmapItem) +16 QGraphicsPixmapItem::~QGraphicsPixmapItem +24 QGraphicsPixmapItem::~QGraphicsPixmapItem +32 QGraphicsItem::advance +40 QGraphicsPixmapItem::boundingRect +48 QGraphicsPixmapItem::shape +56 QGraphicsPixmapItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsPixmapItem::isObscuredBy +88 QGraphicsPixmapItem::opaqueArea +96 QGraphicsPixmapItem::paint +104 QGraphicsPixmapItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsPixmapItem::supportsExtension +296 QGraphicsPixmapItem::setExtension +304 QGraphicsPixmapItem::extension + +Class QGraphicsPixmapItem + size=16 align=8 + base size=16 base align=8 +QGraphicsPixmapItem (0x7f2f398ee690) 0 + vptr=((& QGraphicsPixmapItem::_ZTV19QGraphicsPixmapItem) + 16u) + QGraphicsItem (0x7f2f398ee700) 0 + primary-for QGraphicsPixmapItem (0x7f2f398ee690) + +Vtable for QGraphicsTextItem +QGraphicsTextItem::_ZTV17QGraphicsTextItem: 82u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QGraphicsTextItem) +16 QGraphicsTextItem::metaObject +24 QGraphicsTextItem::qt_metacast +32 QGraphicsTextItem::qt_metacall +40 QGraphicsTextItem::~QGraphicsTextItem +48 QGraphicsTextItem::~QGraphicsTextItem +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsTextItem::boundingRect +120 QGraphicsTextItem::shape +128 QGraphicsTextItem::contains +136 QGraphicsTextItem::paint +144 QGraphicsTextItem::isObscuredBy +152 QGraphicsTextItem::opaqueArea +160 QGraphicsTextItem::type +168 QGraphicsTextItem::sceneEvent +176 QGraphicsTextItem::mousePressEvent +184 QGraphicsTextItem::mouseMoveEvent +192 QGraphicsTextItem::mouseReleaseEvent +200 QGraphicsTextItem::mouseDoubleClickEvent +208 QGraphicsTextItem::contextMenuEvent +216 QGraphicsTextItem::keyPressEvent +224 QGraphicsTextItem::keyReleaseEvent +232 QGraphicsTextItem::focusInEvent +240 QGraphicsTextItem::focusOutEvent +248 QGraphicsTextItem::dragEnterEvent +256 QGraphicsTextItem::dragLeaveEvent +264 QGraphicsTextItem::dragMoveEvent +272 QGraphicsTextItem::dropEvent +280 QGraphicsTextItem::inputMethodEvent +288 QGraphicsTextItem::hoverEnterEvent +296 QGraphicsTextItem::hoverMoveEvent +304 QGraphicsTextItem::hoverLeaveEvent +312 QGraphicsTextItem::inputMethodQuery +320 QGraphicsTextItem::supportsExtension +328 QGraphicsTextItem::setExtension +336 QGraphicsTextItem::extension +344 (int (*)(...))-0x00000000000000010 +352 (int (*)(...))(& _ZTI17QGraphicsTextItem) +360 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItemD1Ev +368 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItemD0Ev +376 QGraphicsItem::advance +384 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem12boundingRectEv +392 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem5shapeEv +400 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem8containsERK7QPointF +408 QGraphicsItem::collidesWithItem +416 QGraphicsItem::collidesWithPath +424 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem12isObscuredByEPK13QGraphicsItem +432 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem10opaqueAreaEv +440 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget +448 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem4typeEv +456 QGraphicsItem::sceneEventFilter +464 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem10sceneEventEP6QEvent +472 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem16contextMenuEventEP30QGraphicsSceneContextMenuEvent +480 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem14dragEnterEventEP27QGraphicsSceneDragDropEvent +488 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem14dragLeaveEventEP27QGraphicsSceneDragDropEvent +496 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem13dragMoveEventEP27QGraphicsSceneDragDropEvent +504 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem9dropEventEP27QGraphicsSceneDragDropEvent +512 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem12focusInEventEP11QFocusEvent +520 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem13focusOutEventEP11QFocusEvent +528 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem15hoverEnterEventEP24QGraphicsSceneHoverEvent +536 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem14hoverMoveEventEP24QGraphicsSceneHoverEvent +544 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem15hoverLeaveEventEP24QGraphicsSceneHoverEvent +552 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem13keyPressEventEP9QKeyEvent +560 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem15keyReleaseEventEP9QKeyEvent +568 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem15mousePressEventEP24QGraphicsSceneMouseEvent +576 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem14mouseMoveEventEP24QGraphicsSceneMouseEvent +584 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem17mouseReleaseEventEP24QGraphicsSceneMouseEvent +592 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem21mouseDoubleClickEventEP24QGraphicsSceneMouseEvent +600 QGraphicsItem::wheelEvent +608 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem16inputMethodEventEP17QInputMethodEvent +616 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem16inputMethodQueryEN2Qt16InputMethodQueryE +624 QGraphicsItem::itemChange +632 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem17supportsExtensionEN13QGraphicsItem9ExtensionE +640 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem12setExtensionEN13QGraphicsItem9ExtensionERK8QVariant +648 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem9extensionERK8QVariant + +Class QGraphicsTextItem + size=40 align=8 + base size=40 base align=8 +QGraphicsTextItem (0x7f2f398fb930) 0 + vptr=((& QGraphicsTextItem::_ZTV17QGraphicsTextItem) + 16u) + QGraphicsObject (0x7f2f398f0700) 0 + primary-for QGraphicsTextItem (0x7f2f398fb930) + QObject (0x7f2f398fb9a0) 0 + primary-for QGraphicsObject (0x7f2f398f0700) + QGraphicsItem (0x7f2f398fba10) 16 + vptr=((& QGraphicsTextItem::_ZTV17QGraphicsTextItem) + 360u) + +Vtable for QGraphicsSimpleTextItem +QGraphicsSimpleTextItem::_ZTV23QGraphicsSimpleTextItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QGraphicsSimpleTextItem) +16 QGraphicsSimpleTextItem::~QGraphicsSimpleTextItem +24 QGraphicsSimpleTextItem::~QGraphicsSimpleTextItem +32 QGraphicsItem::advance +40 QGraphicsSimpleTextItem::boundingRect +48 QGraphicsSimpleTextItem::shape +56 QGraphicsSimpleTextItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsSimpleTextItem::isObscuredBy +88 QGraphicsSimpleTextItem::opaqueArea +96 QGraphicsSimpleTextItem::paint +104 QGraphicsSimpleTextItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsSimpleTextItem::supportsExtension +296 QGraphicsSimpleTextItem::setExtension +304 QGraphicsSimpleTextItem::extension + +Class QGraphicsSimpleTextItem + size=16 align=8 + base size=16 base align=8 +QGraphicsSimpleTextItem (0x7f2f3991c380) 0 + vptr=((& QGraphicsSimpleTextItem::_ZTV23QGraphicsSimpleTextItem) + 16u) + QAbstractGraphicsShapeItem (0x7f2f39932000) 0 + primary-for QGraphicsSimpleTextItem (0x7f2f3991c380) + QGraphicsItem (0x7f2f39932070) 0 + primary-for QAbstractGraphicsShapeItem (0x7f2f39932000) + +Vtable for QGraphicsItemGroup +QGraphicsItemGroup::_ZTV18QGraphicsItemGroup: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QGraphicsItemGroup) +16 QGraphicsItemGroup::~QGraphicsItemGroup +24 QGraphicsItemGroup::~QGraphicsItemGroup +32 QGraphicsItem::advance +40 QGraphicsItemGroup::boundingRect +48 QGraphicsItem::shape +56 QGraphicsItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsItemGroup::isObscuredBy +88 QGraphicsItemGroup::opaqueArea +96 QGraphicsItemGroup::paint +104 QGraphicsItemGroup::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsItem::supportsExtension +296 QGraphicsItem::setExtension +304 QGraphicsItem::extension + +Class QGraphicsItemGroup + size=16 align=8 + base size=16 base align=8 +QGraphicsItemGroup (0x7f2f39932f50) 0 + vptr=((& QGraphicsItemGroup::_ZTV18QGraphicsItemGroup) + 16u) + QGraphicsItem (0x7f2f399329a0) 0 + primary-for QGraphicsItemGroup (0x7f2f39932f50) + +Vtable for QGraphicsLayoutItem +QGraphicsLayoutItem::_ZTV19QGraphicsLayoutItem: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QGraphicsLayoutItem) +16 QGraphicsLayoutItem::~QGraphicsLayoutItem +24 QGraphicsLayoutItem::~QGraphicsLayoutItem +32 QGraphicsLayoutItem::setGeometry +40 QGraphicsLayoutItem::getContentsMargins +48 QGraphicsLayoutItem::updateGeometry +56 __cxa_pure_virtual + +Class QGraphicsLayoutItem + size=16 align=8 + base size=16 base align=8 +QGraphicsLayoutItem (0x7f2f39756850) 0 + vptr=((& QGraphicsLayoutItem::_ZTV19QGraphicsLayoutItem) + 16u) + +Vtable for QGraphicsLayout +QGraphicsLayout::_ZTV15QGraphicsLayout: 13u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QGraphicsLayout) +16 QGraphicsLayout::~QGraphicsLayout +24 QGraphicsLayout::~QGraphicsLayout +32 QGraphicsLayoutItem::setGeometry +40 QGraphicsLayout::getContentsMargins +48 QGraphicsLayout::updateGeometry +56 __cxa_pure_virtual +64 QGraphicsLayout::invalidate +72 QGraphicsLayout::widgetEvent +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual + +Class QGraphicsLayout + size=16 align=8 + base size=16 base align=8 +QGraphicsLayout (0x7f2f39798070) 0 + vptr=((& QGraphicsLayout::_ZTV15QGraphicsLayout) + 16u) + QGraphicsLayoutItem (0x7f2f397980e0) 0 + primary-for QGraphicsLayout (0x7f2f39798070) + +Vtable for QGraphicsAnchor +QGraphicsAnchor::_ZTV15QGraphicsAnchor: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QGraphicsAnchor) +16 QGraphicsAnchor::metaObject +24 QGraphicsAnchor::qt_metacast +32 QGraphicsAnchor::qt_metacall +40 QGraphicsAnchor::~QGraphicsAnchor +48 QGraphicsAnchor::~QGraphicsAnchor +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QGraphicsAnchor + size=16 align=8 + base size=16 base align=8 +QGraphicsAnchor (0x7f2f397a6850) 0 + vptr=((& QGraphicsAnchor::_ZTV15QGraphicsAnchor) + 16u) + QObject (0x7f2f397a68c0) 0 + primary-for QGraphicsAnchor (0x7f2f397a6850) + +Vtable for QGraphicsAnchorLayout +QGraphicsAnchorLayout::_ZTV21QGraphicsAnchorLayout: 13u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QGraphicsAnchorLayout) +16 QGraphicsAnchorLayout::~QGraphicsAnchorLayout +24 QGraphicsAnchorLayout::~QGraphicsAnchorLayout +32 QGraphicsAnchorLayout::setGeometry +40 QGraphicsLayout::getContentsMargins +48 QGraphicsLayout::updateGeometry +56 QGraphicsAnchorLayout::sizeHint +64 QGraphicsAnchorLayout::invalidate +72 QGraphicsLayout::widgetEvent +80 QGraphicsAnchorLayout::count +88 QGraphicsAnchorLayout::itemAt +96 QGraphicsAnchorLayout::removeAt + +Class QGraphicsAnchorLayout + size=16 align=8 + base size=16 base align=8 +QGraphicsAnchorLayout (0x7f2f397bbd90) 0 + vptr=((& QGraphicsAnchorLayout::_ZTV21QGraphicsAnchorLayout) + 16u) + QGraphicsLayout (0x7f2f397bbe00) 0 + primary-for QGraphicsAnchorLayout (0x7f2f397bbd90) + QGraphicsLayoutItem (0x7f2f397bbe70) 0 + primary-for QGraphicsLayout (0x7f2f397bbe00) + +Vtable for QGraphicsGridLayout +QGraphicsGridLayout::_ZTV19QGraphicsGridLayout: 13u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QGraphicsGridLayout) +16 QGraphicsGridLayout::~QGraphicsGridLayout +24 QGraphicsGridLayout::~QGraphicsGridLayout +32 QGraphicsGridLayout::setGeometry +40 QGraphicsLayout::getContentsMargins +48 QGraphicsLayout::updateGeometry +56 QGraphicsGridLayout::sizeHint +64 QGraphicsGridLayout::invalidate +72 QGraphicsLayout::widgetEvent +80 QGraphicsGridLayout::count +88 QGraphicsGridLayout::itemAt +96 QGraphicsGridLayout::removeAt + +Class QGraphicsGridLayout + size=16 align=8 + base size=16 base align=8 +QGraphicsGridLayout (0x7f2f397d20e0) 0 + vptr=((& QGraphicsGridLayout::_ZTV19QGraphicsGridLayout) + 16u) + QGraphicsLayout (0x7f2f397d2150) 0 + primary-for QGraphicsGridLayout (0x7f2f397d20e0) + QGraphicsLayoutItem (0x7f2f397d21c0) 0 + primary-for QGraphicsLayout (0x7f2f397d2150) + +Vtable for QGraphicsItemAnimation +QGraphicsItemAnimation::_ZTV22QGraphicsItemAnimation: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QGraphicsItemAnimation) +16 QGraphicsItemAnimation::metaObject +24 QGraphicsItemAnimation::qt_metacast +32 QGraphicsItemAnimation::qt_metacall +40 QGraphicsItemAnimation::~QGraphicsItemAnimation +48 QGraphicsItemAnimation::~QGraphicsItemAnimation +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsItemAnimation::beforeAnimationStep +120 QGraphicsItemAnimation::afterAnimationStep + +Class QGraphicsItemAnimation + size=24 align=8 + base size=24 base align=8 +QGraphicsItemAnimation (0x7f2f397ee4d0) 0 + vptr=((& QGraphicsItemAnimation::_ZTV22QGraphicsItemAnimation) + 16u) + QObject (0x7f2f397ee540) 0 + primary-for QGraphicsItemAnimation (0x7f2f397ee4d0) + +Vtable for QGraphicsLinearLayout +QGraphicsLinearLayout::_ZTV21QGraphicsLinearLayout: 13u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QGraphicsLinearLayout) +16 QGraphicsLinearLayout::~QGraphicsLinearLayout +24 QGraphicsLinearLayout::~QGraphicsLinearLayout +32 QGraphicsLinearLayout::setGeometry +40 QGraphicsLayout::getContentsMargins +48 QGraphicsLayout::updateGeometry +56 QGraphicsLinearLayout::sizeHint +64 QGraphicsLinearLayout::invalidate +72 QGraphicsLayout::widgetEvent +80 QGraphicsLinearLayout::count +88 QGraphicsLinearLayout::itemAt +96 QGraphicsLinearLayout::removeAt + +Class QGraphicsLinearLayout + size=16 align=8 + base size=16 base align=8 +QGraphicsLinearLayout (0x7f2f39809850) 0 + vptr=((& QGraphicsLinearLayout::_ZTV21QGraphicsLinearLayout) + 16u) + QGraphicsLayout (0x7f2f398098c0) 0 + primary-for QGraphicsLinearLayout (0x7f2f39809850) + QGraphicsLayoutItem (0x7f2f39809930) 0 + primary-for QGraphicsLayout (0x7f2f398098c0) + +Vtable for QGraphicsWidget +QGraphicsWidget::_ZTV15QGraphicsWidget: 92u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QGraphicsWidget) +16 QGraphicsWidget::metaObject +24 QGraphicsWidget::qt_metacast +32 QGraphicsWidget::qt_metacall +40 QGraphicsWidget::~QGraphicsWidget +48 QGraphicsWidget::~QGraphicsWidget +56 QGraphicsWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsWidget::setGeometry +120 QGraphicsWidget::getContentsMargins +128 QGraphicsWidget::type +136 QGraphicsWidget::paint +144 QGraphicsWidget::paintWindowFrame +152 QGraphicsWidget::boundingRect +160 QGraphicsWidget::shape +168 QGraphicsWidget::initStyleOption +176 QGraphicsWidget::sizeHint +184 QGraphicsWidget::updateGeometry +192 QGraphicsWidget::itemChange +200 QGraphicsWidget::propertyChange +208 QGraphicsWidget::sceneEvent +216 QGraphicsWidget::windowFrameEvent +224 QGraphicsWidget::windowFrameSectionAt +232 QGraphicsWidget::changeEvent +240 QGraphicsWidget::closeEvent +248 QGraphicsWidget::focusInEvent +256 QGraphicsWidget::focusNextPrevChild +264 QGraphicsWidget::focusOutEvent +272 QGraphicsWidget::hideEvent +280 QGraphicsWidget::moveEvent +288 QGraphicsWidget::polishEvent +296 QGraphicsWidget::resizeEvent +304 QGraphicsWidget::showEvent +312 QGraphicsWidget::hoverMoveEvent +320 QGraphicsWidget::hoverLeaveEvent +328 QGraphicsWidget::grabMouseEvent +336 QGraphicsWidget::ungrabMouseEvent +344 QGraphicsWidget::grabKeyboardEvent +352 QGraphicsWidget::ungrabKeyboardEvent +360 (int (*)(...))-0x00000000000000010 +368 (int (*)(...))(& _ZTI15QGraphicsWidget) +376 QGraphicsWidget::_ZThn16_N15QGraphicsWidgetD1Ev +384 QGraphicsWidget::_ZThn16_N15QGraphicsWidgetD0Ev +392 QGraphicsItem::advance +400 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget12boundingRectEv +408 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget5shapeEv +416 QGraphicsItem::contains +424 QGraphicsItem::collidesWithItem +432 QGraphicsItem::collidesWithPath +440 QGraphicsItem::isObscuredBy +448 QGraphicsItem::opaqueArea +456 QGraphicsWidget::_ZThn16_N15QGraphicsWidget5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget +464 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget4typeEv +472 QGraphicsItem::sceneEventFilter +480 QGraphicsWidget::_ZThn16_N15QGraphicsWidget10sceneEventEP6QEvent +488 QGraphicsItem::contextMenuEvent +496 QGraphicsItem::dragEnterEvent +504 QGraphicsItem::dragLeaveEvent +512 QGraphicsItem::dragMoveEvent +520 QGraphicsItem::dropEvent +528 QGraphicsWidget::_ZThn16_N15QGraphicsWidget12focusInEventEP11QFocusEvent +536 QGraphicsWidget::_ZThn16_N15QGraphicsWidget13focusOutEventEP11QFocusEvent +544 QGraphicsItem::hoverEnterEvent +552 QGraphicsWidget::_ZThn16_N15QGraphicsWidget14hoverMoveEventEP24QGraphicsSceneHoverEvent +560 QGraphicsWidget::_ZThn16_N15QGraphicsWidget15hoverLeaveEventEP24QGraphicsSceneHoverEvent +568 QGraphicsItem::keyPressEvent +576 QGraphicsItem::keyReleaseEvent +584 QGraphicsItem::mousePressEvent +592 QGraphicsItem::mouseMoveEvent +600 QGraphicsItem::mouseReleaseEvent +608 QGraphicsItem::mouseDoubleClickEvent +616 QGraphicsItem::wheelEvent +624 QGraphicsItem::inputMethodEvent +632 QGraphicsItem::inputMethodQuery +640 QGraphicsWidget::_ZThn16_N15QGraphicsWidget10itemChangeEN13QGraphicsItem18GraphicsItemChangeERK8QVariant +648 QGraphicsItem::supportsExtension +656 QGraphicsItem::setExtension +664 QGraphicsItem::extension +672 (int (*)(...))-0x00000000000000020 +680 (int (*)(...))(& _ZTI15QGraphicsWidget) +688 QGraphicsWidget::_ZThn32_N15QGraphicsWidgetD1Ev +696 QGraphicsWidget::_ZThn32_N15QGraphicsWidgetD0Ev +704 QGraphicsWidget::_ZThn32_N15QGraphicsWidget11setGeometryERK6QRectF +712 QGraphicsWidget::_ZThn32_NK15QGraphicsWidget18getContentsMarginsEPdS0_S0_S0_ +720 QGraphicsWidget::_ZThn32_N15QGraphicsWidget14updateGeometryEv +728 QGraphicsWidget::_ZThn32_NK15QGraphicsWidget8sizeHintEN2Qt8SizeHintERK6QSizeF + +Class QGraphicsWidget + size=48 align=8 + base size=48 base align=8 +QGraphicsWidget (0x7f2f39824000) 0 + vptr=((& QGraphicsWidget::_ZTV15QGraphicsWidget) + 16u) + QGraphicsObject (0x7f2f39824080) 0 + primary-for QGraphicsWidget (0x7f2f39824000) + QObject (0x7f2f39823070) 0 + primary-for QGraphicsObject (0x7f2f39824080) + QGraphicsItem (0x7f2f398230e0) 16 + vptr=((& QGraphicsWidget::_ZTV15QGraphicsWidget) + 376u) + QGraphicsLayoutItem (0x7f2f39823150) 32 + vptr=((& QGraphicsWidget::_ZTV15QGraphicsWidget) + 688u) + +Vtable for QGraphicsProxyWidget +QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget: 105u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QGraphicsProxyWidget) +16 QGraphicsProxyWidget::metaObject +24 QGraphicsProxyWidget::qt_metacast +32 QGraphicsProxyWidget::qt_metacall +40 QGraphicsProxyWidget::~QGraphicsProxyWidget +48 QGraphicsProxyWidget::~QGraphicsProxyWidget +56 QGraphicsProxyWidget::event +64 QGraphicsProxyWidget::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsProxyWidget::setGeometry +120 QGraphicsWidget::getContentsMargins +128 QGraphicsProxyWidget::type +136 QGraphicsProxyWidget::paint +144 QGraphicsWidget::paintWindowFrame +152 QGraphicsWidget::boundingRect +160 QGraphicsWidget::shape +168 QGraphicsWidget::initStyleOption +176 QGraphicsProxyWidget::sizeHint +184 QGraphicsWidget::updateGeometry +192 QGraphicsProxyWidget::itemChange +200 QGraphicsWidget::propertyChange +208 QGraphicsWidget::sceneEvent +216 QGraphicsWidget::windowFrameEvent +224 QGraphicsWidget::windowFrameSectionAt +232 QGraphicsWidget::changeEvent +240 QGraphicsWidget::closeEvent +248 QGraphicsProxyWidget::focusInEvent +256 QGraphicsProxyWidget::focusNextPrevChild +264 QGraphicsProxyWidget::focusOutEvent +272 QGraphicsProxyWidget::hideEvent +280 QGraphicsWidget::moveEvent +288 QGraphicsWidget::polishEvent +296 QGraphicsProxyWidget::resizeEvent +304 QGraphicsProxyWidget::showEvent +312 QGraphicsProxyWidget::hoverMoveEvent +320 QGraphicsProxyWidget::hoverLeaveEvent +328 QGraphicsProxyWidget::grabMouseEvent +336 QGraphicsProxyWidget::ungrabMouseEvent +344 QGraphicsWidget::grabKeyboardEvent +352 QGraphicsWidget::ungrabKeyboardEvent +360 QGraphicsProxyWidget::contextMenuEvent +368 QGraphicsProxyWidget::dragEnterEvent +376 QGraphicsProxyWidget::dragLeaveEvent +384 QGraphicsProxyWidget::dragMoveEvent +392 QGraphicsProxyWidget::dropEvent +400 QGraphicsProxyWidget::hoverEnterEvent +408 QGraphicsProxyWidget::mouseMoveEvent +416 QGraphicsProxyWidget::mousePressEvent +424 QGraphicsProxyWidget::mouseReleaseEvent +432 QGraphicsProxyWidget::mouseDoubleClickEvent +440 QGraphicsProxyWidget::wheelEvent +448 QGraphicsProxyWidget::keyPressEvent +456 QGraphicsProxyWidget::keyReleaseEvent +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI20QGraphicsProxyWidget) +480 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidgetD1Ev +488 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidgetD0Ev +496 QGraphicsItem::advance +504 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget12boundingRectEv +512 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget5shapeEv +520 QGraphicsItem::contains +528 QGraphicsItem::collidesWithItem +536 QGraphicsItem::collidesWithPath +544 QGraphicsItem::isObscuredBy +552 QGraphicsItem::opaqueArea +560 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget +568 QGraphicsProxyWidget::_ZThn16_NK20QGraphicsProxyWidget4typeEv +576 QGraphicsItem::sceneEventFilter +584 QGraphicsWidget::_ZThn16_N15QGraphicsWidget10sceneEventEP6QEvent +592 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget16contextMenuEventEP30QGraphicsSceneContextMenuEvent +600 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget14dragEnterEventEP27QGraphicsSceneDragDropEvent +608 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget14dragLeaveEventEP27QGraphicsSceneDragDropEvent +616 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget13dragMoveEventEP27QGraphicsSceneDragDropEvent +624 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget9dropEventEP27QGraphicsSceneDragDropEvent +632 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget12focusInEventEP11QFocusEvent +640 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget13focusOutEventEP11QFocusEvent +648 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget15hoverEnterEventEP24QGraphicsSceneHoverEvent +656 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget14hoverMoveEventEP24QGraphicsSceneHoverEvent +664 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget15hoverLeaveEventEP24QGraphicsSceneHoverEvent +672 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget13keyPressEventEP9QKeyEvent +680 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget15keyReleaseEventEP9QKeyEvent +688 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget15mousePressEventEP24QGraphicsSceneMouseEvent +696 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget14mouseMoveEventEP24QGraphicsSceneMouseEvent +704 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget17mouseReleaseEventEP24QGraphicsSceneMouseEvent +712 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget21mouseDoubleClickEventEP24QGraphicsSceneMouseEvent +720 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget10wheelEventEP24QGraphicsSceneWheelEvent +728 QGraphicsItem::inputMethodEvent +736 QGraphicsItem::inputMethodQuery +744 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget10itemChangeEN13QGraphicsItem18GraphicsItemChangeERK8QVariant +752 QGraphicsItem::supportsExtension +760 QGraphicsItem::setExtension +768 QGraphicsItem::extension +776 (int (*)(...))-0x00000000000000020 +784 (int (*)(...))(& _ZTI20QGraphicsProxyWidget) +792 QGraphicsProxyWidget::_ZThn32_N20QGraphicsProxyWidgetD1Ev +800 QGraphicsProxyWidget::_ZThn32_N20QGraphicsProxyWidgetD0Ev +808 QGraphicsProxyWidget::_ZThn32_N20QGraphicsProxyWidget11setGeometryERK6QRectF +816 QGraphicsWidget::_ZThn32_NK15QGraphicsWidget18getContentsMarginsEPdS0_S0_S0_ +824 QGraphicsWidget::_ZThn32_N15QGraphicsWidget14updateGeometryEv +832 QGraphicsProxyWidget::_ZThn32_NK20QGraphicsProxyWidget8sizeHintEN2Qt8SizeHintERK6QSizeF + +Class QGraphicsProxyWidget + size=48 align=8 + base size=48 base align=8 +QGraphicsProxyWidget (0x7f2f3965d8c0) 0 + vptr=((& QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget) + 16u) + QGraphicsWidget (0x7f2f39661000) 0 + primary-for QGraphicsProxyWidget (0x7f2f3965d8c0) + QGraphicsObject (0x7f2f39661080) 0 + primary-for QGraphicsWidget (0x7f2f39661000) + QObject (0x7f2f3965d930) 0 + primary-for QGraphicsObject (0x7f2f39661080) + QGraphicsItem (0x7f2f3965d9a0) 16 + vptr=((& QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget) + 480u) + QGraphicsLayoutItem (0x7f2f3965da10) 32 + vptr=((& QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget) + 792u) + +Vtable for QGraphicsScene +QGraphicsScene::_ZTV14QGraphicsScene: 34u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QGraphicsScene) +16 QGraphicsScene::metaObject +24 QGraphicsScene::qt_metacast +32 QGraphicsScene::qt_metacall +40 QGraphicsScene::~QGraphicsScene +48 QGraphicsScene::~QGraphicsScene +56 QGraphicsScene::event +64 QGraphicsScene::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsScene::inputMethodQuery +120 QGraphicsScene::contextMenuEvent +128 QGraphicsScene::dragEnterEvent +136 QGraphicsScene::dragMoveEvent +144 QGraphicsScene::dragLeaveEvent +152 QGraphicsScene::dropEvent +160 QGraphicsScene::focusInEvent +168 QGraphicsScene::focusOutEvent +176 QGraphicsScene::helpEvent +184 QGraphicsScene::keyPressEvent +192 QGraphicsScene::keyReleaseEvent +200 QGraphicsScene::mousePressEvent +208 QGraphicsScene::mouseMoveEvent +216 QGraphicsScene::mouseReleaseEvent +224 QGraphicsScene::mouseDoubleClickEvent +232 QGraphicsScene::wheelEvent +240 QGraphicsScene::inputMethodEvent +248 QGraphicsScene::drawBackground +256 QGraphicsScene::drawForeground +264 QGraphicsScene::drawItems + +Class QGraphicsScene + size=16 align=8 + base size=16 base align=8 +QGraphicsScene (0x7f2f3968a930) 0 + vptr=((& QGraphicsScene::_ZTV14QGraphicsScene) + 16u) + QObject (0x7f2f3968a9a0) 0 + primary-for QGraphicsScene (0x7f2f3968a930) + +Vtable for QGraphicsSceneEvent +QGraphicsSceneEvent::_ZTV19QGraphicsSceneEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QGraphicsSceneEvent) +16 QGraphicsSceneEvent::~QGraphicsSceneEvent +24 QGraphicsSceneEvent::~QGraphicsSceneEvent + +Class QGraphicsSceneEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneEvent (0x7f2f3973f850) 0 + vptr=((& QGraphicsSceneEvent::_ZTV19QGraphicsSceneEvent) + 16u) + QEvent (0x7f2f3973f8c0) 0 + primary-for QGraphicsSceneEvent (0x7f2f3973f850) + +Vtable for QGraphicsSceneMouseEvent +QGraphicsSceneMouseEvent::_ZTV24QGraphicsSceneMouseEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QGraphicsSceneMouseEvent) +16 QGraphicsSceneMouseEvent::~QGraphicsSceneMouseEvent +24 QGraphicsSceneMouseEvent::~QGraphicsSceneMouseEvent + +Class QGraphicsSceneMouseEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneMouseEvent (0x7f2f3956b310) 0 + vptr=((& QGraphicsSceneMouseEvent::_ZTV24QGraphicsSceneMouseEvent) + 16u) + QGraphicsSceneEvent (0x7f2f3956b380) 0 + primary-for QGraphicsSceneMouseEvent (0x7f2f3956b310) + QEvent (0x7f2f3956b3f0) 0 + primary-for QGraphicsSceneEvent (0x7f2f3956b380) + +Vtable for QGraphicsSceneWheelEvent +QGraphicsSceneWheelEvent::_ZTV24QGraphicsSceneWheelEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QGraphicsSceneWheelEvent) +16 QGraphicsSceneWheelEvent::~QGraphicsSceneWheelEvent +24 QGraphicsSceneWheelEvent::~QGraphicsSceneWheelEvent + +Class QGraphicsSceneWheelEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneWheelEvent (0x7f2f3956bcb0) 0 + vptr=((& QGraphicsSceneWheelEvent::_ZTV24QGraphicsSceneWheelEvent) + 16u) + QGraphicsSceneEvent (0x7f2f3956bd20) 0 + primary-for QGraphicsSceneWheelEvent (0x7f2f3956bcb0) + QEvent (0x7f2f3956bd90) 0 + primary-for QGraphicsSceneEvent (0x7f2f3956bd20) + +Vtable for QGraphicsSceneContextMenuEvent +QGraphicsSceneContextMenuEvent::_ZTV30QGraphicsSceneContextMenuEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI30QGraphicsSceneContextMenuEvent) +16 QGraphicsSceneContextMenuEvent::~QGraphicsSceneContextMenuEvent +24 QGraphicsSceneContextMenuEvent::~QGraphicsSceneContextMenuEvent + +Class QGraphicsSceneContextMenuEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneContextMenuEvent (0x7f2f395815b0) 0 + vptr=((& QGraphicsSceneContextMenuEvent::_ZTV30QGraphicsSceneContextMenuEvent) + 16u) + QGraphicsSceneEvent (0x7f2f39581620) 0 + primary-for QGraphicsSceneContextMenuEvent (0x7f2f395815b0) + QEvent (0x7f2f39581690) 0 + primary-for QGraphicsSceneEvent (0x7f2f39581620) + +Vtable for QGraphicsSceneHoverEvent +QGraphicsSceneHoverEvent::_ZTV24QGraphicsSceneHoverEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QGraphicsSceneHoverEvent) +16 QGraphicsSceneHoverEvent::~QGraphicsSceneHoverEvent +24 QGraphicsSceneHoverEvent::~QGraphicsSceneHoverEvent + +Class QGraphicsSceneHoverEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneHoverEvent (0x7f2f3958e0e0) 0 + vptr=((& QGraphicsSceneHoverEvent::_ZTV24QGraphicsSceneHoverEvent) + 16u) + QGraphicsSceneEvent (0x7f2f3958e150) 0 + primary-for QGraphicsSceneHoverEvent (0x7f2f3958e0e0) + QEvent (0x7f2f3958e1c0) 0 + primary-for QGraphicsSceneEvent (0x7f2f3958e150) + +Vtable for QGraphicsSceneHelpEvent +QGraphicsSceneHelpEvent::_ZTV23QGraphicsSceneHelpEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QGraphicsSceneHelpEvent) +16 QGraphicsSceneHelpEvent::~QGraphicsSceneHelpEvent +24 QGraphicsSceneHelpEvent::~QGraphicsSceneHelpEvent + +Class QGraphicsSceneHelpEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneHelpEvent (0x7f2f3958ea80) 0 + vptr=((& QGraphicsSceneHelpEvent::_ZTV23QGraphicsSceneHelpEvent) + 16u) + QGraphicsSceneEvent (0x7f2f3958eaf0) 0 + primary-for QGraphicsSceneHelpEvent (0x7f2f3958ea80) + QEvent (0x7f2f3958eb60) 0 + primary-for QGraphicsSceneEvent (0x7f2f3958eaf0) + +Vtable for QGraphicsSceneDragDropEvent +QGraphicsSceneDragDropEvent::_ZTV27QGraphicsSceneDragDropEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QGraphicsSceneDragDropEvent) +16 QGraphicsSceneDragDropEvent::~QGraphicsSceneDragDropEvent +24 QGraphicsSceneDragDropEvent::~QGraphicsSceneDragDropEvent + +Class QGraphicsSceneDragDropEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneDragDropEvent (0x7f2f3959f380) 0 + vptr=((& QGraphicsSceneDragDropEvent::_ZTV27QGraphicsSceneDragDropEvent) + 16u) + QGraphicsSceneEvent (0x7f2f3959f3f0) 0 + primary-for QGraphicsSceneDragDropEvent (0x7f2f3959f380) + QEvent (0x7f2f3959f460) 0 + primary-for QGraphicsSceneEvent (0x7f2f3959f3f0) + +Vtable for QGraphicsSceneResizeEvent +QGraphicsSceneResizeEvent::_ZTV25QGraphicsSceneResizeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QGraphicsSceneResizeEvent) +16 QGraphicsSceneResizeEvent::~QGraphicsSceneResizeEvent +24 QGraphicsSceneResizeEvent::~QGraphicsSceneResizeEvent + +Class QGraphicsSceneResizeEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneResizeEvent (0x7f2f3959fd20) 0 + vptr=((& QGraphicsSceneResizeEvent::_ZTV25QGraphicsSceneResizeEvent) + 16u) + QGraphicsSceneEvent (0x7f2f3959fd90) 0 + primary-for QGraphicsSceneResizeEvent (0x7f2f3959fd20) + QEvent (0x7f2f3959fe00) 0 + primary-for QGraphicsSceneEvent (0x7f2f3959fd90) + +Vtable for QGraphicsSceneMoveEvent +QGraphicsSceneMoveEvent::_ZTV23QGraphicsSceneMoveEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QGraphicsSceneMoveEvent) +16 QGraphicsSceneMoveEvent::~QGraphicsSceneMoveEvent +24 QGraphicsSceneMoveEvent::~QGraphicsSceneMoveEvent + +Class QGraphicsSceneMoveEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneMoveEvent (0x7f2f395b3460) 0 + vptr=((& QGraphicsSceneMoveEvent::_ZTV23QGraphicsSceneMoveEvent) + 16u) + QGraphicsSceneEvent (0x7f2f395b34d0) 0 + primary-for QGraphicsSceneMoveEvent (0x7f2f395b3460) + QEvent (0x7f2f395b3540) 0 + primary-for QGraphicsSceneEvent (0x7f2f395b34d0) + +Vtable for QGraphicsTransform +QGraphicsTransform::_ZTV18QGraphicsTransform: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QGraphicsTransform) +16 QGraphicsTransform::metaObject +24 QGraphicsTransform::qt_metacast +32 QGraphicsTransform::qt_metacall +40 QGraphicsTransform::~QGraphicsTransform +48 QGraphicsTransform::~QGraphicsTransform +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual + +Class QGraphicsTransform + size=16 align=8 + base size=16 base align=8 +QGraphicsTransform (0x7f2f395b3c40) 0 + vptr=((& QGraphicsTransform::_ZTV18QGraphicsTransform) + 16u) + QObject (0x7f2f395b3cb0) 0 + primary-for QGraphicsTransform (0x7f2f395b3c40) + +Vtable for QGraphicsScale +QGraphicsScale::_ZTV14QGraphicsScale: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QGraphicsScale) +16 QGraphicsScale::metaObject +24 QGraphicsScale::qt_metacast +32 QGraphicsScale::qt_metacall +40 QGraphicsScale::~QGraphicsScale +48 QGraphicsScale::~QGraphicsScale +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsScale::applyTo + +Class QGraphicsScale + size=16 align=8 + base size=16 base align=8 +QGraphicsScale (0x7f2f395d2150) 0 + vptr=((& QGraphicsScale::_ZTV14QGraphicsScale) + 16u) + QGraphicsTransform (0x7f2f395d21c0) 0 + primary-for QGraphicsScale (0x7f2f395d2150) + QObject (0x7f2f395d2230) 0 + primary-for QGraphicsTransform (0x7f2f395d21c0) + +Vtable for QGraphicsRotation +QGraphicsRotation::_ZTV17QGraphicsRotation: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QGraphicsRotation) +16 QGraphicsRotation::metaObject +24 QGraphicsRotation::qt_metacast +32 QGraphicsRotation::qt_metacall +40 QGraphicsRotation::~QGraphicsRotation +48 QGraphicsRotation::~QGraphicsRotation +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsRotation::applyTo + +Class QGraphicsRotation + size=16 align=8 + base size=16 base align=8 +QGraphicsRotation (0x7f2f395e5620) 0 + vptr=((& QGraphicsRotation::_ZTV17QGraphicsRotation) + 16u) + QGraphicsTransform (0x7f2f395e5690) 0 + primary-for QGraphicsRotation (0x7f2f395e5620) + QObject (0x7f2f395e5700) 0 + primary-for QGraphicsTransform (0x7f2f395e5690) + +Vtable for QScrollArea +QScrollArea::_ZTV11QScrollArea: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QScrollArea) +16 QScrollArea::metaObject +24 QScrollArea::qt_metacast +32 QScrollArea::qt_metacall +40 QScrollArea::~QScrollArea +48 QScrollArea::~QScrollArea +56 QScrollArea::event +64 QScrollArea::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractScrollArea::mousePressEvent +168 QAbstractScrollArea::mouseReleaseEvent +176 QAbstractScrollArea::mouseDoubleClickEvent +184 QAbstractScrollArea::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractScrollArea::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractScrollArea::paintEvent +256 QWidget::moveEvent +264 QScrollArea::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractScrollArea::dragEnterEvent +312 QAbstractScrollArea::dragMoveEvent +320 QAbstractScrollArea::dragLeaveEvent +328 QAbstractScrollArea::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QScrollArea::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QScrollArea::scrollContentsBy +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI11QScrollArea) +480 QScrollArea::_ZThn16_N11QScrollAreaD1Ev +488 QScrollArea::_ZThn16_N11QScrollAreaD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QScrollArea + size=40 align=8 + base size=40 base align=8 +QScrollArea (0x7f2f395f8af0) 0 + vptr=((& QScrollArea::_ZTV11QScrollArea) + 16u) + QAbstractScrollArea (0x7f2f395f8b60) 0 + primary-for QScrollArea (0x7f2f395f8af0) + QFrame (0x7f2f395f8bd0) 0 + primary-for QAbstractScrollArea (0x7f2f395f8b60) + QWidget (0x7f2f395e6c80) 0 + primary-for QFrame (0x7f2f395f8bd0) + QObject (0x7f2f395f8c40) 0 + primary-for QWidget (0x7f2f395e6c80) + QPaintDevice (0x7f2f395f8cb0) 16 + vptr=((& QScrollArea::_ZTV11QScrollArea) + 480u) + +Vtable for QGraphicsView +QGraphicsView::_ZTV13QGraphicsView: 68u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QGraphicsView) +16 QGraphicsView::metaObject +24 QGraphicsView::qt_metacast +32 QGraphicsView::qt_metacall +40 QGraphicsView::~QGraphicsView +48 QGraphicsView::~QGraphicsView +56 QGraphicsView::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QGraphicsView::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QGraphicsView::mousePressEvent +168 QGraphicsView::mouseReleaseEvent +176 QGraphicsView::mouseDoubleClickEvent +184 QGraphicsView::mouseMoveEvent +192 QGraphicsView::wheelEvent +200 QGraphicsView::keyPressEvent +208 QGraphicsView::keyReleaseEvent +216 QGraphicsView::focusInEvent +224 QGraphicsView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QGraphicsView::paintEvent +256 QWidget::moveEvent +264 QGraphicsView::resizeEvent +272 QWidget::closeEvent +280 QGraphicsView::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QGraphicsView::dragEnterEvent +312 QGraphicsView::dragMoveEvent +320 QGraphicsView::dragLeaveEvent +328 QGraphicsView::dropEvent +336 QGraphicsView::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QGraphicsView::inputMethodEvent +384 QGraphicsView::inputMethodQuery +392 QGraphicsView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QGraphicsView::viewportEvent +456 QGraphicsView::scrollContentsBy +464 QGraphicsView::drawBackground +472 QGraphicsView::drawForeground +480 QGraphicsView::drawItems +488 (int (*)(...))-0x00000000000000010 +496 (int (*)(...))(& _ZTI13QGraphicsView) +504 QGraphicsView::_ZThn16_N13QGraphicsViewD1Ev +512 QGraphicsView::_ZThn16_N13QGraphicsViewD0Ev +520 QWidget::_ZThn16_NK7QWidget7devTypeEv +528 QWidget::_ZThn16_NK7QWidget11paintEngineEv +536 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QGraphicsView + size=40 align=8 + base size=40 base align=8 +QGraphicsView (0x7f2f3961ba10) 0 + vptr=((& QGraphicsView::_ZTV13QGraphicsView) + 16u) + QAbstractScrollArea (0x7f2f3961ba80) 0 + primary-for QGraphicsView (0x7f2f3961ba10) + QFrame (0x7f2f3961baf0) 0 + primary-for QAbstractScrollArea (0x7f2f3961ba80) + QWidget (0x7f2f39614680) 0 + primary-for QFrame (0x7f2f3961baf0) + QObject (0x7f2f3961bb60) 0 + primary-for QWidget (0x7f2f39614680) + QPaintDevice (0x7f2f3961bbd0) 16 + vptr=((& QGraphicsView::_ZTV13QGraphicsView) + 504u) + +Vtable for QAbstractButton +QAbstractButton::_ZTV15QAbstractButton: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QAbstractButton) +16 QAbstractButton::metaObject +24 QAbstractButton::qt_metacast +32 QAbstractButton::qt_metacall +40 QAbstractButton::~QAbstractButton +48 QAbstractButton::~QAbstractButton +56 QAbstractButton::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QAbstractButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QAbstractButton::focusInEvent +224 QAbstractButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 __cxa_pure_virtual +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractButton::hitButton +456 QAbstractButton::checkStateSet +464 QAbstractButton::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI15QAbstractButton) +488 QAbstractButton::_ZThn16_N15QAbstractButtonD1Ev +496 QAbstractButton::_ZThn16_N15QAbstractButtonD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractButton + size=40 align=8 + base size=40 base align=8 +QAbstractButton (0x7f2f3950aee0) 0 + vptr=((& QAbstractButton::_ZTV15QAbstractButton) + 16u) + QWidget (0x7f2f39513380) 0 + primary-for QAbstractButton (0x7f2f3950aee0) + QObject (0x7f2f3950af50) 0 + primary-for QWidget (0x7f2f39513380) + QPaintDevice (0x7f2f39519000) 16 + vptr=((& QAbstractButton::_ZTV15QAbstractButton) + 488u) + +Vtable for QButtonGroup +QButtonGroup::_ZTV12QButtonGroup: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QButtonGroup) +16 QButtonGroup::metaObject +24 QButtonGroup::qt_metacast +32 QButtonGroup::qt_metacall +40 QButtonGroup::~QButtonGroup +48 QButtonGroup::~QButtonGroup +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QButtonGroup + size=16 align=8 + base size=16 base align=8 +QButtonGroup (0x7f2f3934b310) 0 + vptr=((& QButtonGroup::_ZTV12QButtonGroup) + 16u) + QObject (0x7f2f3934b380) 0 + primary-for QButtonGroup (0x7f2f3934b310) + +Vtable for QCalendarWidget +QCalendarWidget::_ZTV15QCalendarWidget: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QCalendarWidget) +16 QCalendarWidget::metaObject +24 QCalendarWidget::qt_metacast +32 QCalendarWidget::qt_metacall +40 QCalendarWidget::~QCalendarWidget +48 QCalendarWidget::~QCalendarWidget +56 QCalendarWidget::event +64 QCalendarWidget::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QCalendarWidget::sizeHint +136 QCalendarWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QCalendarWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QCalendarWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QCalendarWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QCalendarWidget::paintCell +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI15QCalendarWidget) +472 QCalendarWidget::_ZThn16_N15QCalendarWidgetD1Ev +480 QCalendarWidget::_ZThn16_N15QCalendarWidgetD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QCalendarWidget + size=40 align=8 + base size=40 base align=8 +QCalendarWidget (0x7f2f39360f50) 0 + vptr=((& QCalendarWidget::_ZTV15QCalendarWidget) + 16u) + QWidget (0x7f2f3935f900) 0 + primary-for QCalendarWidget (0x7f2f39360f50) + QObject (0x7f2f39368000) 0 + primary-for QWidget (0x7f2f3935f900) + QPaintDevice (0x7f2f39368070) 16 + vptr=((& QCalendarWidget::_ZTV15QCalendarWidget) + 472u) + +Vtable for QCheckBox +QCheckBox::_ZTV9QCheckBox: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QCheckBox) +16 QCheckBox::metaObject +24 QCheckBox::qt_metacast +32 QCheckBox::qt_metacall +40 QCheckBox::~QCheckBox +48 QCheckBox::~QCheckBox +56 QCheckBox::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QCheckBox::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QCheckBox::mouseMoveEvent +192 QWidget::wheelEvent +200 QAbstractButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QAbstractButton::focusInEvent +224 QAbstractButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QCheckBox::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QCheckBox::hitButton +456 QCheckBox::checkStateSet +464 QCheckBox::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI9QCheckBox) +488 QCheckBox::_ZThn16_N9QCheckBoxD1Ev +496 QCheckBox::_ZThn16_N9QCheckBoxD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QCheckBox + size=40 align=8 + base size=40 base align=8 +QCheckBox (0x7f2f393950e0) 0 + vptr=((& QCheckBox::_ZTV9QCheckBox) + 16u) + QAbstractButton (0x7f2f39395150) 0 + primary-for QCheckBox (0x7f2f393950e0) + QWidget (0x7f2f39388900) 0 + primary-for QAbstractButton (0x7f2f39395150) + QObject (0x7f2f393951c0) 0 + primary-for QWidget (0x7f2f39388900) + QPaintDevice (0x7f2f39395230) 16 + vptr=((& QCheckBox::_ZTV9QCheckBox) + 488u) + +Vtable for QComboBox +QComboBox::_ZTV9QComboBox: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QComboBox) +16 QComboBox::metaObject +24 QComboBox::qt_metacast +32 QComboBox::qt_metacall +40 QComboBox::~QComboBox +48 QComboBox::~QComboBox +56 QComboBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QComboBox::sizeHint +136 QComboBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QComboBox::mousePressEvent +168 QComboBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QComboBox::wheelEvent +200 QComboBox::keyPressEvent +208 QComboBox::keyReleaseEvent +216 QComboBox::focusInEvent +224 QComboBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QComboBox::paintEvent +256 QWidget::moveEvent +264 QComboBox::resizeEvent +272 QWidget::closeEvent +280 QComboBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QComboBox::showEvent +344 QComboBox::hideEvent +352 QWidget::x11Event +360 QComboBox::changeEvent +368 QWidget::metric +376 QComboBox::inputMethodEvent +384 QComboBox::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QComboBox::showPopup +456 QComboBox::hidePopup +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI9QComboBox) +480 QComboBox::_ZThn16_N9QComboBoxD1Ev +488 QComboBox::_ZThn16_N9QComboBoxD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QComboBox + size=40 align=8 + base size=40 base align=8 +QComboBox (0x7f2f393b68c0) 0 + vptr=((& QComboBox::_ZTV9QComboBox) + 16u) + QWidget (0x7f2f393b0900) 0 + primary-for QComboBox (0x7f2f393b68c0) + QObject (0x7f2f393b6930) 0 + primary-for QWidget (0x7f2f393b0900) + QPaintDevice (0x7f2f393b69a0) 16 + vptr=((& QComboBox::_ZTV9QComboBox) + 480u) + +Vtable for QPushButton +QPushButton::_ZTV11QPushButton: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QPushButton) +16 QPushButton::metaObject +24 QPushButton::qt_metacast +32 QPushButton::qt_metacall +40 QPushButton::~QPushButton +48 QPushButton::~QPushButton +56 QPushButton::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QPushButton::sizeHint +136 QPushButton::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QPushButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QPushButton::focusInEvent +224 QPushButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QPushButton::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractButton::hitButton +456 QAbstractButton::checkStateSet +464 QAbstractButton::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11QPushButton) +488 QPushButton::_ZThn16_N11QPushButtonD1Ev +496 QPushButton::_ZThn16_N11QPushButtonD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPushButton + size=40 align=8 + base size=40 base align=8 +QPushButton (0x7f2f394253f0) 0 + vptr=((& QPushButton::_ZTV11QPushButton) + 16u) + QAbstractButton (0x7f2f39425460) 0 + primary-for QPushButton (0x7f2f394253f0) + QWidget (0x7f2f39422600) 0 + primary-for QAbstractButton (0x7f2f39425460) + QObject (0x7f2f394254d0) 0 + primary-for QWidget (0x7f2f39422600) + QPaintDevice (0x7f2f39425540) 16 + vptr=((& QPushButton::_ZTV11QPushButton) + 488u) + +Vtable for QCommandLinkButton +QCommandLinkButton::_ZTV18QCommandLinkButton: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QCommandLinkButton) +16 QCommandLinkButton::metaObject +24 QCommandLinkButton::qt_metacast +32 QCommandLinkButton::qt_metacall +40 QCommandLinkButton::~QCommandLinkButton +48 QCommandLinkButton::~QCommandLinkButton +56 QCommandLinkButton::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QCommandLinkButton::sizeHint +136 QCommandLinkButton::minimumSizeHint +144 QCommandLinkButton::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QPushButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QPushButton::focusInEvent +224 QPushButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QCommandLinkButton::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractButton::hitButton +456 QAbstractButton::checkStateSet +464 QAbstractButton::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI18QCommandLinkButton) +488 QCommandLinkButton::_ZThn16_N18QCommandLinkButtonD1Ev +496 QCommandLinkButton::_ZThn16_N18QCommandLinkButtonD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QCommandLinkButton + size=40 align=8 + base size=40 base align=8 +QCommandLinkButton (0x7f2f39248d20) 0 + vptr=((& QCommandLinkButton::_ZTV18QCommandLinkButton) + 16u) + QPushButton (0x7f2f39248d90) 0 + primary-for QCommandLinkButton (0x7f2f39248d20) + QAbstractButton (0x7f2f39248e00) 0 + primary-for QPushButton (0x7f2f39248d90) + QWidget (0x7f2f3924a600) 0 + primary-for QAbstractButton (0x7f2f39248e00) + QObject (0x7f2f39248e70) 0 + primary-for QWidget (0x7f2f3924a600) + QPaintDevice (0x7f2f39248ee0) 16 + vptr=((& QCommandLinkButton::_ZTV18QCommandLinkButton) + 488u) + +Vtable for QDateTimeEdit +QDateTimeEdit::_ZTV13QDateTimeEdit: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QDateTimeEdit) +16 QDateTimeEdit::metaObject +24 QDateTimeEdit::qt_metacast +32 QDateTimeEdit::qt_metacall +40 QDateTimeEdit::~QDateTimeEdit +48 QDateTimeEdit::~QDateTimeEdit +56 QDateTimeEdit::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QDateTimeEdit::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QDateTimeEdit::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QDateTimeEdit::wheelEvent +200 QDateTimeEdit::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QDateTimeEdit::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QDateTimeEdit::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QAbstractSpinBox::inputMethodQuery +392 QDateTimeEdit::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDateTimeEdit::validate +456 QDateTimeEdit::fixup +464 QDateTimeEdit::stepBy +472 QDateTimeEdit::clear +480 QDateTimeEdit::stepEnabled +488 QDateTimeEdit::dateTimeFromText +496 QDateTimeEdit::textFromDateTime +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI13QDateTimeEdit) +520 QDateTimeEdit::_ZThn16_N13QDateTimeEditD1Ev +528 QDateTimeEdit::_ZThn16_N13QDateTimeEditD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDateTimeEdit + size=40 align=8 + base size=40 base align=8 +QDateTimeEdit (0x7f2f392668c0) 0 + vptr=((& QDateTimeEdit::_ZTV13QDateTimeEdit) + 16u) + QAbstractSpinBox (0x7f2f39266930) 0 + primary-for QDateTimeEdit (0x7f2f392668c0) + QWidget (0x7f2f3926c000) 0 + primary-for QAbstractSpinBox (0x7f2f39266930) + QObject (0x7f2f392669a0) 0 + primary-for QWidget (0x7f2f3926c000) + QPaintDevice (0x7f2f39266a10) 16 + vptr=((& QDateTimeEdit::_ZTV13QDateTimeEdit) + 520u) + +Vtable for QTimeEdit +QTimeEdit::_ZTV9QTimeEdit: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTimeEdit) +16 QTimeEdit::metaObject +24 QTimeEdit::qt_metacast +32 QTimeEdit::qt_metacall +40 QTimeEdit::~QTimeEdit +48 QTimeEdit::~QTimeEdit +56 QDateTimeEdit::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QDateTimeEdit::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QDateTimeEdit::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QDateTimeEdit::wheelEvent +200 QDateTimeEdit::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QDateTimeEdit::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QDateTimeEdit::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QAbstractSpinBox::inputMethodQuery +392 QDateTimeEdit::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDateTimeEdit::validate +456 QDateTimeEdit::fixup +464 QDateTimeEdit::stepBy +472 QDateTimeEdit::clear +480 QDateTimeEdit::stepEnabled +488 QDateTimeEdit::dateTimeFromText +496 QDateTimeEdit::textFromDateTime +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI9QTimeEdit) +520 QTimeEdit::_ZThn16_N9QTimeEditD1Ev +528 QTimeEdit::_ZThn16_N9QTimeEditD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTimeEdit + size=40 align=8 + base size=40 base align=8 +QTimeEdit (0x7f2f392977e0) 0 + vptr=((& QTimeEdit::_ZTV9QTimeEdit) + 16u) + QDateTimeEdit (0x7f2f39297850) 0 + primary-for QTimeEdit (0x7f2f392977e0) + QAbstractSpinBox (0x7f2f392978c0) 0 + primary-for QDateTimeEdit (0x7f2f39297850) + QWidget (0x7f2f3926cf80) 0 + primary-for QAbstractSpinBox (0x7f2f392978c0) + QObject (0x7f2f39297930) 0 + primary-for QWidget (0x7f2f3926cf80) + QPaintDevice (0x7f2f392979a0) 16 + vptr=((& QTimeEdit::_ZTV9QTimeEdit) + 520u) + +Vtable for QDateEdit +QDateEdit::_ZTV9QDateEdit: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QDateEdit) +16 QDateEdit::metaObject +24 QDateEdit::qt_metacast +32 QDateEdit::qt_metacall +40 QDateEdit::~QDateEdit +48 QDateEdit::~QDateEdit +56 QDateTimeEdit::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QDateTimeEdit::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QDateTimeEdit::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QDateTimeEdit::wheelEvent +200 QDateTimeEdit::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QDateTimeEdit::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QDateTimeEdit::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QAbstractSpinBox::inputMethodQuery +392 QDateTimeEdit::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDateTimeEdit::validate +456 QDateTimeEdit::fixup +464 QDateTimeEdit::stepBy +472 QDateTimeEdit::clear +480 QDateTimeEdit::stepEnabled +488 QDateTimeEdit::dateTimeFromText +496 QDateTimeEdit::textFromDateTime +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI9QDateEdit) +520 QDateEdit::_ZThn16_N9QDateEditD1Ev +528 QDateEdit::_ZThn16_N9QDateEditD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDateEdit + size=40 align=8 + base size=40 base align=8 +QDateEdit (0x7f2f392ad8c0) 0 + vptr=((& QDateEdit::_ZTV9QDateEdit) + 16u) + QDateTimeEdit (0x7f2f392ad930) 0 + primary-for QDateEdit (0x7f2f392ad8c0) + QAbstractSpinBox (0x7f2f392ad9a0) 0 + primary-for QDateTimeEdit (0x7f2f392ad930) + QWidget (0x7f2f3929f680) 0 + primary-for QAbstractSpinBox (0x7f2f392ad9a0) + QObject (0x7f2f392ada10) 0 + primary-for QWidget (0x7f2f3929f680) + QPaintDevice (0x7f2f392ada80) 16 + vptr=((& QDateEdit::_ZTV9QDateEdit) + 520u) + +Vtable for QDial +QDial::_ZTV5QDial: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QDial) +16 QDial::metaObject +24 QDial::qt_metacast +32 QDial::qt_metacall +40 QDial::~QDial +48 QDial::~QDial +56 QDial::event +64 QObject::eventFilter +72 QAbstractSlider::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QDial::sizeHint +136 QDial::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QDial::mousePressEvent +168 QDial::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QDial::mouseMoveEvent +192 QAbstractSlider::wheelEvent +200 QAbstractSlider::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QDial::paintEvent +256 QWidget::moveEvent +264 QDial::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractSlider::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDial::sliderChange +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI5QDial) +472 QDial::_ZThn16_N5QDialD1Ev +480 QDial::_ZThn16_N5QDialD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDial + size=40 align=8 + base size=40 base align=8 +QDial (0x7f2f392f4690) 0 + vptr=((& QDial::_ZTV5QDial) + 16u) + QAbstractSlider (0x7f2f392f4700) 0 + primary-for QDial (0x7f2f392f4690) + QWidget (0x7f2f392f5300) 0 + primary-for QAbstractSlider (0x7f2f392f4700) + QObject (0x7f2f392f4770) 0 + primary-for QWidget (0x7f2f392f5300) + QPaintDevice (0x7f2f392f47e0) 16 + vptr=((& QDial::_ZTV5QDial) + 472u) + +Vtable for QDialogButtonBox +QDialogButtonBox::_ZTV16QDialogButtonBox: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QDialogButtonBox) +16 QDialogButtonBox::metaObject +24 QDialogButtonBox::qt_metacast +32 QDialogButtonBox::qt_metacall +40 QDialogButtonBox::~QDialogButtonBox +48 QDialogButtonBox::~QDialogButtonBox +56 QDialogButtonBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QDialogButtonBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI16QDialogButtonBox) +464 QDialogButtonBox::_ZThn16_N16QDialogButtonBoxD1Ev +472 QDialogButtonBox::_ZThn16_N16QDialogButtonBoxD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDialogButtonBox + size=40 align=8 + base size=40 base align=8 +QDialogButtonBox (0x7f2f39333310) 0 + vptr=((& QDialogButtonBox::_ZTV16QDialogButtonBox) + 16u) + QWidget (0x7f2f392f5d00) 0 + primary-for QDialogButtonBox (0x7f2f39333310) + QObject (0x7f2f39333380) 0 + primary-for QWidget (0x7f2f392f5d00) + QPaintDevice (0x7f2f393333f0) 16 + vptr=((& QDialogButtonBox::_ZTV16QDialogButtonBox) + 464u) + +Vtable for QDockWidget +QDockWidget::_ZTV11QDockWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QDockWidget) +16 QDockWidget::metaObject +24 QDockWidget::qt_metacast +32 QDockWidget::qt_metacall +40 QDockWidget::~QDockWidget +48 QDockWidget::~QDockWidget +56 QDockWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QDockWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QDockWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QDockWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI11QDockWidget) +464 QDockWidget::_ZThn16_N11QDockWidgetD1Ev +472 QDockWidget::_ZThn16_N11QDockWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDockWidget + size=40 align=8 + base size=40 base align=8 +QDockWidget (0x7f2f391867e0) 0 + vptr=((& QDockWidget::_ZTV11QDockWidget) + 16u) + QWidget (0x7f2f3913de80) 0 + primary-for QDockWidget (0x7f2f391867e0) + QObject (0x7f2f39186850) 0 + primary-for QWidget (0x7f2f3913de80) + QPaintDevice (0x7f2f391868c0) 16 + vptr=((& QDockWidget::_ZTV11QDockWidget) + 464u) + +Vtable for QFocusFrame +QFocusFrame::_ZTV11QFocusFrame: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFocusFrame) +16 QFocusFrame::metaObject +24 QFocusFrame::qt_metacast +32 QFocusFrame::qt_metacall +40 QFocusFrame::~QFocusFrame +48 QFocusFrame::~QFocusFrame +56 QFocusFrame::event +64 QFocusFrame::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFocusFrame::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI11QFocusFrame) +464 QFocusFrame::_ZThn16_N11QFocusFrameD1Ev +472 QFocusFrame::_ZThn16_N11QFocusFrameD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFocusFrame + size=40 align=8 + base size=40 base align=8 +QFocusFrame (0x7f2f39228230) 0 + vptr=((& QFocusFrame::_ZTV11QFocusFrame) + 16u) + QWidget (0x7f2f391dd680) 0 + primary-for QFocusFrame (0x7f2f39228230) + QObject (0x7f2f392282a0) 0 + primary-for QWidget (0x7f2f391dd680) + QPaintDevice (0x7f2f39228310) 16 + vptr=((& QFocusFrame::_ZTV11QFocusFrame) + 464u) + +Vtable for QFontComboBox +QFontComboBox::_ZTV13QFontComboBox: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QFontComboBox) +16 QFontComboBox::metaObject +24 QFontComboBox::qt_metacast +32 QFontComboBox::qt_metacall +40 QFontComboBox::~QFontComboBox +48 QFontComboBox::~QFontComboBox +56 QFontComboBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QFontComboBox::sizeHint +136 QComboBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QComboBox::mousePressEvent +168 QComboBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QComboBox::wheelEvent +200 QComboBox::keyPressEvent +208 QComboBox::keyReleaseEvent +216 QComboBox::focusInEvent +224 QComboBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QComboBox::paintEvent +256 QWidget::moveEvent +264 QComboBox::resizeEvent +272 QWidget::closeEvent +280 QComboBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QComboBox::showEvent +344 QComboBox::hideEvent +352 QWidget::x11Event +360 QComboBox::changeEvent +368 QWidget::metric +376 QComboBox::inputMethodEvent +384 QComboBox::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QComboBox::showPopup +456 QComboBox::hidePopup +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI13QFontComboBox) +480 QFontComboBox::_ZThn16_N13QFontComboBoxD1Ev +488 QFontComboBox::_ZThn16_N13QFontComboBoxD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFontComboBox + size=40 align=8 + base size=40 base align=8 +QFontComboBox (0x7f2f3903ad90) 0 + vptr=((& QFontComboBox::_ZTV13QFontComboBox) + 16u) + QComboBox (0x7f2f3903ae00) 0 + primary-for QFontComboBox (0x7f2f3903ad90) + QWidget (0x7f2f39043080) 0 + primary-for QComboBox (0x7f2f3903ae00) + QObject (0x7f2f3903ae70) 0 + primary-for QWidget (0x7f2f39043080) + QPaintDevice (0x7f2f3903aee0) 16 + vptr=((& QFontComboBox::_ZTV13QFontComboBox) + 480u) + +Vtable for QGroupBox +QGroupBox::_ZTV9QGroupBox: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QGroupBox) +16 QGroupBox::metaObject +24 QGroupBox::qt_metacast +32 QGroupBox::qt_metacall +40 QGroupBox::~QGroupBox +48 QGroupBox::~QGroupBox +56 QGroupBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QGroupBox::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QGroupBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QGroupBox::mousePressEvent +168 QGroupBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QGroupBox::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QGroupBox::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QGroupBox::paintEvent +256 QWidget::moveEvent +264 QGroupBox::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QGroupBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI9QGroupBox) +464 QGroupBox::_ZThn16_N9QGroupBoxD1Ev +472 QGroupBox::_ZThn16_N9QGroupBoxD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QGroupBox + size=40 align=8 + base size=40 base align=8 +QGroupBox (0x7f2f3908ba80) 0 + vptr=((& QGroupBox::_ZTV9QGroupBox) + 16u) + QWidget (0x7f2f3908d280) 0 + primary-for QGroupBox (0x7f2f3908ba80) + QObject (0x7f2f3908baf0) 0 + primary-for QWidget (0x7f2f3908d280) + QPaintDevice (0x7f2f3908bb60) 16 + vptr=((& QGroupBox::_ZTV9QGroupBox) + 464u) + +Vtable for QLabel +QLabel::_ZTV6QLabel: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QLabel) +16 QLabel::metaObject +24 QLabel::qt_metacast +32 QLabel::qt_metacall +40 QLabel::~QLabel +48 QLabel::~QLabel +56 QLabel::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QLabel::sizeHint +136 QLabel::minimumSizeHint +144 QLabel::heightForWidth +152 QWidget::paintEngine +160 QLabel::mousePressEvent +168 QLabel::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QLabel::mouseMoveEvent +192 QWidget::wheelEvent +200 QLabel::keyPressEvent +208 QWidget::keyReleaseEvent +216 QLabel::focusInEvent +224 QLabel::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QLabel::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QLabel::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QLabel::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QLabel::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI6QLabel) +464 QLabel::_ZThn16_N6QLabelD1Ev +472 QLabel::_ZThn16_N6QLabelD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QLabel + size=40 align=8 + base size=40 base align=8 +QLabel (0x7f2f390cb700) 0 + vptr=((& QLabel::_ZTV6QLabel) + 16u) + QFrame (0x7f2f390cb770) 0 + primary-for QLabel (0x7f2f390cb700) + QWidget (0x7f2f3908dc80) 0 + primary-for QFrame (0x7f2f390cb770) + QObject (0x7f2f390cb7e0) 0 + primary-for QWidget (0x7f2f3908dc80) + QPaintDevice (0x7f2f390cb850) 16 + vptr=((& QLabel::_ZTV6QLabel) + 464u) + +Vtable for QLCDNumber +QLCDNumber::_ZTV10QLCDNumber: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QLCDNumber) +16 QLCDNumber::metaObject +24 QLCDNumber::qt_metacast +32 QLCDNumber::qt_metacall +40 QLCDNumber::~QLCDNumber +48 QLCDNumber::~QLCDNumber +56 QLCDNumber::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QLCDNumber::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QLCDNumber::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI10QLCDNumber) +464 QLCDNumber::_ZThn16_N10QLCDNumberD1Ev +472 QLCDNumber::_ZThn16_N10QLCDNumberD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QLCDNumber + size=40 align=8 + base size=40 base align=8 +QLCDNumber (0x7f2f390f9850) 0 + vptr=((& QLCDNumber::_ZTV10QLCDNumber) + 16u) + QFrame (0x7f2f390f98c0) 0 + primary-for QLCDNumber (0x7f2f390f9850) + QWidget (0x7f2f390f2880) 0 + primary-for QFrame (0x7f2f390f98c0) + QObject (0x7f2f390f9930) 0 + primary-for QWidget (0x7f2f390f2880) + QPaintDevice (0x7f2f390f99a0) 16 + vptr=((& QLCDNumber::_ZTV10QLCDNumber) + 464u) + +Vtable for QMainWindow +QMainWindow::_ZTV11QMainWindow: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMainWindow) +16 QMainWindow::metaObject +24 QMainWindow::qt_metacast +32 QMainWindow::qt_metacall +40 QMainWindow::~QMainWindow +48 QMainWindow::~QMainWindow +56 QMainWindow::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QMainWindow::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QMainWindow::createPopupMenu +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI11QMainWindow) +472 QMainWindow::_ZThn16_N11QMainWindowD1Ev +480 QMainWindow::_ZThn16_N11QMainWindowD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMainWindow + size=40 align=8 + base size=40 base align=8 +QMainWindow (0x7f2f39124230) 0 + vptr=((& QMainWindow::_ZTV11QMainWindow) + 16u) + QWidget (0x7f2f39118a00) 0 + primary-for QMainWindow (0x7f2f39124230) + QObject (0x7f2f391242a0) 0 + primary-for QWidget (0x7f2f39118a00) + QPaintDevice (0x7f2f39124310) 16 + vptr=((& QMainWindow::_ZTV11QMainWindow) + 472u) + +Vtable for QMdiArea +QMdiArea::_ZTV8QMdiArea: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QMdiArea) +16 QMdiArea::metaObject +24 QMdiArea::qt_metacast +32 QMdiArea::qt_metacall +40 QMdiArea::~QMdiArea +48 QMdiArea::~QMdiArea +56 QMdiArea::event +64 QMdiArea::eventFilter +72 QMdiArea::timerEvent +80 QMdiArea::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QMdiArea::sizeHint +136 QMdiArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractScrollArea::mousePressEvent +168 QAbstractScrollArea::mouseReleaseEvent +176 QAbstractScrollArea::mouseDoubleClickEvent +184 QAbstractScrollArea::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractScrollArea::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QMdiArea::paintEvent +256 QWidget::moveEvent +264 QMdiArea::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractScrollArea::dragEnterEvent +312 QAbstractScrollArea::dragMoveEvent +320 QAbstractScrollArea::dragLeaveEvent +328 QAbstractScrollArea::dropEvent +336 QMdiArea::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QMdiArea::viewportEvent +456 QMdiArea::scrollContentsBy +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI8QMdiArea) +480 QMdiArea::_ZThn16_N8QMdiAreaD1Ev +488 QMdiArea::_ZThn16_N8QMdiAreaD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMdiArea + size=40 align=8 + base size=40 base align=8 +QMdiArea (0x7f2f38fa1540) 0 + vptr=((& QMdiArea::_ZTV8QMdiArea) + 16u) + QAbstractScrollArea (0x7f2f38fa15b0) 0 + primary-for QMdiArea (0x7f2f38fa1540) + QFrame (0x7f2f38fa1620) 0 + primary-for QAbstractScrollArea (0x7f2f38fa15b0) + QWidget (0x7f2f38f49c00) 0 + primary-for QFrame (0x7f2f38fa1620) + QObject (0x7f2f38fa1690) 0 + primary-for QWidget (0x7f2f38f49c00) + QPaintDevice (0x7f2f38fa1700) 16 + vptr=((& QMdiArea::_ZTV8QMdiArea) + 480u) + +Vtable for QMdiSubWindow +QMdiSubWindow::_ZTV13QMdiSubWindow: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QMdiSubWindow) +16 QMdiSubWindow::metaObject +24 QMdiSubWindow::qt_metacast +32 QMdiSubWindow::qt_metacall +40 QMdiSubWindow::~QMdiSubWindow +48 QMdiSubWindow::~QMdiSubWindow +56 QMdiSubWindow::event +64 QMdiSubWindow::eventFilter +72 QMdiSubWindow::timerEvent +80 QMdiSubWindow::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QMdiSubWindow::sizeHint +136 QMdiSubWindow::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QMdiSubWindow::mousePressEvent +168 QMdiSubWindow::mouseReleaseEvent +176 QMdiSubWindow::mouseDoubleClickEvent +184 QMdiSubWindow::mouseMoveEvent +192 QWidget::wheelEvent +200 QMdiSubWindow::keyPressEvent +208 QWidget::keyReleaseEvent +216 QMdiSubWindow::focusInEvent +224 QMdiSubWindow::focusOutEvent +232 QWidget::enterEvent +240 QMdiSubWindow::leaveEvent +248 QMdiSubWindow::paintEvent +256 QMdiSubWindow::moveEvent +264 QMdiSubWindow::resizeEvent +272 QMdiSubWindow::closeEvent +280 QMdiSubWindow::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QMdiSubWindow::showEvent +344 QMdiSubWindow::hideEvent +352 QWidget::x11Event +360 QMdiSubWindow::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI13QMdiSubWindow) +464 QMdiSubWindow::_ZThn16_N13QMdiSubWindowD1Ev +472 QMdiSubWindow::_ZThn16_N13QMdiSubWindowD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMdiSubWindow + size=40 align=8 + base size=40 base align=8 +QMdiSubWindow (0x7f2f38ffaa80) 0 + vptr=((& QMdiSubWindow::_ZTV13QMdiSubWindow) + 16u) + QWidget (0x7f2f38fabf00) 0 + primary-for QMdiSubWindow (0x7f2f38ffaa80) + QObject (0x7f2f38ffaaf0) 0 + primary-for QWidget (0x7f2f38fabf00) + QPaintDevice (0x7f2f38ffab60) 16 + vptr=((& QMdiSubWindow::_ZTV13QMdiSubWindow) + 464u) + +Vtable for QMenu +QMenu::_ZTV5QMenu: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QMenu) +16 QMenu::metaObject +24 QMenu::qt_metacast +32 QMenu::qt_metacall +40 QMenu::~QMenu +48 QMenu::~QMenu +56 QMenu::event +64 QObject::eventFilter +72 QMenu::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QMenu::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QMenu::mousePressEvent +168 QMenu::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QMenu::mouseMoveEvent +192 QMenu::wheelEvent +200 QMenu::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QMenu::enterEvent +240 QMenu::leaveEvent +248 QMenu::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QMenu::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QMenu::hideEvent +352 QWidget::x11Event +360 QMenu::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QMenu::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI5QMenu) +464 QMenu::_ZThn16_N5QMenuD1Ev +472 QMenu::_ZThn16_N5QMenuD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMenu + size=40 align=8 + base size=40 base align=8 +QMenu (0x7f2f38e73930) 0 + vptr=((& QMenu::_ZTV5QMenu) + 16u) + QWidget (0x7f2f38e95100) 0 + primary-for QMenu (0x7f2f38e73930) + QObject (0x7f2f38e739a0) 0 + primary-for QWidget (0x7f2f38e95100) + QPaintDevice (0x7f2f38e73a10) 16 + vptr=((& QMenu::_ZTV5QMenu) + 464u) + +Vtable for QMenuBar +QMenuBar::_ZTV8QMenuBar: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QMenuBar) +16 QMenuBar::metaObject +24 QMenuBar::qt_metacast +32 QMenuBar::qt_metacall +40 QMenuBar::~QMenuBar +48 QMenuBar::~QMenuBar +56 QMenuBar::event +64 QMenuBar::eventFilter +72 QMenuBar::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QMenuBar::setVisible +128 QMenuBar::sizeHint +136 QMenuBar::minimumSizeHint +144 QMenuBar::heightForWidth +152 QWidget::paintEngine +160 QMenuBar::mousePressEvent +168 QMenuBar::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QMenuBar::mouseMoveEvent +192 QWidget::wheelEvent +200 QMenuBar::keyPressEvent +208 QWidget::keyReleaseEvent +216 QMenuBar::focusInEvent +224 QMenuBar::focusOutEvent +232 QWidget::enterEvent +240 QMenuBar::leaveEvent +248 QMenuBar::paintEvent +256 QWidget::moveEvent +264 QMenuBar::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QMenuBar::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QMenuBar::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI8QMenuBar) +464 QMenuBar::_ZThn16_N8QMenuBarD1Ev +472 QMenuBar::_ZThn16_N8QMenuBarD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMenuBar + size=40 align=8 + base size=40 base align=8 +QMenuBar (0x7f2f38d3a770) 0 + vptr=((& QMenuBar::_ZTV8QMenuBar) + 16u) + QWidget (0x7f2f38f39980) 0 + primary-for QMenuBar (0x7f2f38d3a770) + QObject (0x7f2f38d3a7e0) 0 + primary-for QWidget (0x7f2f38f39980) + QPaintDevice (0x7f2f38d3a850) 16 + vptr=((& QMenuBar::_ZTV8QMenuBar) + 464u) + +Vtable for QMenuItem +QMenuItem::_ZTV9QMenuItem: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QMenuItem) +16 QMenuItem::metaObject +24 QMenuItem::qt_metacast +32 QMenuItem::qt_metacall +40 QMenuItem::~QMenuItem +48 QMenuItem::~QMenuItem +56 QAction::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QMenuItem + size=16 align=8 + base size=16 base align=8 +QMenuItem (0x7f2f38ddb4d0) 0 + vptr=((& QMenuItem::_ZTV9QMenuItem) + 16u) + QAction (0x7f2f38ddb540) 0 + primary-for QMenuItem (0x7f2f38ddb4d0) + QObject (0x7f2f38ddb5b0) 0 + primary-for QAction (0x7f2f38ddb540) + +Class QTextEdit::ExtraSelection + size=24 align=8 + base size=24 base align=8 +QTextEdit::ExtraSelection (0x7f2f38dfc700) 0 + +Vtable for QTextEdit +QTextEdit::_ZTV9QTextEdit: 69u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTextEdit) +16 QTextEdit::metaObject +24 QTextEdit::qt_metacast +32 QTextEdit::qt_metacall +40 QTextEdit::~QTextEdit +48 QTextEdit::~QTextEdit +56 QTextEdit::event +64 QObject::eventFilter +72 QTextEdit::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTextEdit::mousePressEvent +168 QTextEdit::mouseReleaseEvent +176 QTextEdit::mouseDoubleClickEvent +184 QTextEdit::mouseMoveEvent +192 QTextEdit::wheelEvent +200 QTextEdit::keyPressEvent +208 QTextEdit::keyReleaseEvent +216 QTextEdit::focusInEvent +224 QTextEdit::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTextEdit::paintEvent +256 QWidget::moveEvent +264 QTextEdit::resizeEvent +272 QWidget::closeEvent +280 QTextEdit::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QTextEdit::dragEnterEvent +312 QTextEdit::dragMoveEvent +320 QTextEdit::dragLeaveEvent +328 QTextEdit::dropEvent +336 QTextEdit::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QTextEdit::changeEvent +368 QWidget::metric +376 QTextEdit::inputMethodEvent +384 QTextEdit::inputMethodQuery +392 QTextEdit::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QTextEdit::scrollContentsBy +464 QTextEdit::loadResource +472 QTextEdit::createMimeDataFromSelection +480 QTextEdit::canInsertFromMimeData +488 QTextEdit::insertFromMimeData +496 (int (*)(...))-0x00000000000000010 +504 (int (*)(...))(& _ZTI9QTextEdit) +512 QTextEdit::_ZThn16_N9QTextEditD1Ev +520 QTextEdit::_ZThn16_N9QTextEditD0Ev +528 QWidget::_ZThn16_NK7QWidget7devTypeEv +536 QWidget::_ZThn16_NK7QWidget11paintEngineEv +544 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTextEdit + size=40 align=8 + base size=40 base align=8 +QTextEdit (0x7f2f38dec770) 0 + vptr=((& QTextEdit::_ZTV9QTextEdit) + 16u) + QAbstractScrollArea (0x7f2f38dec7e0) 0 + primary-for QTextEdit (0x7f2f38dec770) + QFrame (0x7f2f38dec850) 0 + primary-for QAbstractScrollArea (0x7f2f38dec7e0) + QWidget (0x7f2f38dd9b00) 0 + primary-for QFrame (0x7f2f38dec850) + QObject (0x7f2f38dec8c0) 0 + primary-for QWidget (0x7f2f38dd9b00) + QPaintDevice (0x7f2f38dec930) 16 + vptr=((& QTextEdit::_ZTV9QTextEdit) + 512u) + +Vtable for QPlainTextEdit +QPlainTextEdit::_ZTV14QPlainTextEdit: 69u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QPlainTextEdit) +16 QPlainTextEdit::metaObject +24 QPlainTextEdit::qt_metacast +32 QPlainTextEdit::qt_metacall +40 QPlainTextEdit::~QPlainTextEdit +48 QPlainTextEdit::~QPlainTextEdit +56 QPlainTextEdit::event +64 QObject::eventFilter +72 QPlainTextEdit::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QPlainTextEdit::mousePressEvent +168 QPlainTextEdit::mouseReleaseEvent +176 QPlainTextEdit::mouseDoubleClickEvent +184 QPlainTextEdit::mouseMoveEvent +192 QPlainTextEdit::wheelEvent +200 QPlainTextEdit::keyPressEvent +208 QPlainTextEdit::keyReleaseEvent +216 QPlainTextEdit::focusInEvent +224 QPlainTextEdit::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QPlainTextEdit::paintEvent +256 QWidget::moveEvent +264 QPlainTextEdit::resizeEvent +272 QWidget::closeEvent +280 QPlainTextEdit::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QPlainTextEdit::dragEnterEvent +312 QPlainTextEdit::dragMoveEvent +320 QPlainTextEdit::dragLeaveEvent +328 QPlainTextEdit::dropEvent +336 QPlainTextEdit::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QPlainTextEdit::changeEvent +368 QWidget::metric +376 QPlainTextEdit::inputMethodEvent +384 QPlainTextEdit::inputMethodQuery +392 QPlainTextEdit::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QPlainTextEdit::scrollContentsBy +464 QPlainTextEdit::loadResource +472 QPlainTextEdit::createMimeDataFromSelection +480 QPlainTextEdit::canInsertFromMimeData +488 QPlainTextEdit::insertFromMimeData +496 (int (*)(...))-0x00000000000000010 +504 (int (*)(...))(& _ZTI14QPlainTextEdit) +512 QPlainTextEdit::_ZThn16_N14QPlainTextEditD1Ev +520 QPlainTextEdit::_ZThn16_N14QPlainTextEditD0Ev +528 QWidget::_ZThn16_NK7QWidget7devTypeEv +536 QWidget::_ZThn16_NK7QWidget11paintEngineEv +544 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPlainTextEdit + size=40 align=8 + base size=40 base align=8 +QPlainTextEdit (0x7f2f38c938c0) 0 + vptr=((& QPlainTextEdit::_ZTV14QPlainTextEdit) + 16u) + QAbstractScrollArea (0x7f2f38c93930) 0 + primary-for QPlainTextEdit (0x7f2f38c938c0) + QFrame (0x7f2f38c939a0) 0 + primary-for QAbstractScrollArea (0x7f2f38c93930) + QWidget (0x7f2f38c92400) 0 + primary-for QFrame (0x7f2f38c939a0) + QObject (0x7f2f38c93a10) 0 + primary-for QWidget (0x7f2f38c92400) + QPaintDevice (0x7f2f38c93a80) 16 + vptr=((& QPlainTextEdit::_ZTV14QPlainTextEdit) + 512u) + +Vtable for QPlainTextDocumentLayout +QPlainTextDocumentLayout::_ZTV24QPlainTextDocumentLayout: 24u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QPlainTextDocumentLayout) +16 QPlainTextDocumentLayout::metaObject +24 QPlainTextDocumentLayout::qt_metacast +32 QPlainTextDocumentLayout::qt_metacall +40 QPlainTextDocumentLayout::~QPlainTextDocumentLayout +48 QPlainTextDocumentLayout::~QPlainTextDocumentLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QPlainTextDocumentLayout::draw +120 QPlainTextDocumentLayout::hitTest +128 QPlainTextDocumentLayout::pageCount +136 QPlainTextDocumentLayout::documentSize +144 QPlainTextDocumentLayout::frameBoundingRect +152 QPlainTextDocumentLayout::blockBoundingRect +160 QPlainTextDocumentLayout::documentChanged +168 QAbstractTextDocumentLayout::resizeInlineObject +176 QAbstractTextDocumentLayout::positionInlineObject +184 QAbstractTextDocumentLayout::drawInlineObject + +Class QPlainTextDocumentLayout + size=16 align=8 + base size=16 base align=8 +QPlainTextDocumentLayout (0x7f2f38cf6690) 0 + vptr=((& QPlainTextDocumentLayout::_ZTV24QPlainTextDocumentLayout) + 16u) + QAbstractTextDocumentLayout (0x7f2f38cf6700) 0 + primary-for QPlainTextDocumentLayout (0x7f2f38cf6690) + QObject (0x7f2f38cf6770) 0 + primary-for QAbstractTextDocumentLayout (0x7f2f38cf6700) + +Vtable for QPrintPreviewWidget +QPrintPreviewWidget::_ZTV19QPrintPreviewWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QPrintPreviewWidget) +16 QPrintPreviewWidget::metaObject +24 QPrintPreviewWidget::qt_metacast +32 QPrintPreviewWidget::qt_metacall +40 QPrintPreviewWidget::~QPrintPreviewWidget +48 QPrintPreviewWidget::~QPrintPreviewWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QPrintPreviewWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI19QPrintPreviewWidget) +464 QPrintPreviewWidget::_ZThn16_N19QPrintPreviewWidgetD1Ev +472 QPrintPreviewWidget::_ZThn16_N19QPrintPreviewWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPrintPreviewWidget + size=48 align=8 + base size=48 base align=8 +QPrintPreviewWidget (0x7f2f38d0bb60) 0 + vptr=((& QPrintPreviewWidget::_ZTV19QPrintPreviewWidget) + 16u) + QWidget (0x7f2f38d09600) 0 + primary-for QPrintPreviewWidget (0x7f2f38d0bb60) + QObject (0x7f2f38d0bbd0) 0 + primary-for QWidget (0x7f2f38d09600) + QPaintDevice (0x7f2f38d0bc40) 16 + vptr=((& QPrintPreviewWidget::_ZTV19QPrintPreviewWidget) + 464u) + +Vtable for QProgressBar +QProgressBar::_ZTV12QProgressBar: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QProgressBar) +16 QProgressBar::metaObject +24 QProgressBar::qt_metacast +32 QProgressBar::qt_metacall +40 QProgressBar::~QProgressBar +48 QProgressBar::~QProgressBar +56 QProgressBar::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QProgressBar::sizeHint +136 QProgressBar::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QProgressBar::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QProgressBar::text +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI12QProgressBar) +472 QProgressBar::_ZThn16_N12QProgressBarD1Ev +480 QProgressBar::_ZThn16_N12QProgressBarD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QProgressBar + size=40 align=8 + base size=40 base align=8 +QProgressBar (0x7f2f38d30700) 0 + vptr=((& QProgressBar::_ZTV12QProgressBar) + 16u) + QWidget (0x7f2f38d32300) 0 + primary-for QProgressBar (0x7f2f38d30700) + QObject (0x7f2f38d30770) 0 + primary-for QWidget (0x7f2f38d32300) + QPaintDevice (0x7f2f38d307e0) 16 + vptr=((& QProgressBar::_ZTV12QProgressBar) + 472u) + +Vtable for QRadioButton +QRadioButton::_ZTV12QRadioButton: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QRadioButton) +16 QRadioButton::metaObject +24 QRadioButton::qt_metacast +32 QRadioButton::qt_metacall +40 QRadioButton::~QRadioButton +48 QRadioButton::~QRadioButton +56 QRadioButton::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QRadioButton::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QRadioButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QAbstractButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QAbstractButton::focusInEvent +224 QAbstractButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QRadioButton::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QRadioButton::hitButton +456 QAbstractButton::checkStateSet +464 QAbstractButton::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI12QRadioButton) +488 QRadioButton::_ZThn16_N12QRadioButtonD1Ev +496 QRadioButton::_ZThn16_N12QRadioButtonD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QRadioButton + size=40 align=8 + base size=40 base align=8 +QRadioButton (0x7f2f38b52540) 0 + vptr=((& QRadioButton::_ZTV12QRadioButton) + 16u) + QAbstractButton (0x7f2f38b525b0) 0 + primary-for QRadioButton (0x7f2f38b52540) + QWidget (0x7f2f38d32e00) 0 + primary-for QAbstractButton (0x7f2f38b525b0) + QObject (0x7f2f38b52620) 0 + primary-for QWidget (0x7f2f38d32e00) + QPaintDevice (0x7f2f38b52690) 16 + vptr=((& QRadioButton::_ZTV12QRadioButton) + 488u) + +Vtable for QScrollBar +QScrollBar::_ZTV10QScrollBar: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QScrollBar) +16 QScrollBar::metaObject +24 QScrollBar::qt_metacast +32 QScrollBar::qt_metacall +40 QScrollBar::~QScrollBar +48 QScrollBar::~QScrollBar +56 QScrollBar::event +64 QObject::eventFilter +72 QAbstractSlider::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QScrollBar::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QScrollBar::mousePressEvent +168 QScrollBar::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QScrollBar::mouseMoveEvent +192 QAbstractSlider::wheelEvent +200 QAbstractSlider::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QScrollBar::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QScrollBar::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QScrollBar::hideEvent +352 QWidget::x11Event +360 QAbstractSlider::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QScrollBar::sliderChange +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI10QScrollBar) +472 QScrollBar::_ZThn16_N10QScrollBarD1Ev +480 QScrollBar::_ZThn16_N10QScrollBarD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QScrollBar + size=40 align=8 + base size=40 base align=8 +QScrollBar (0x7f2f38b721c0) 0 + vptr=((& QScrollBar::_ZTV10QScrollBar) + 16u) + QAbstractSlider (0x7f2f38b72230) 0 + primary-for QScrollBar (0x7f2f38b721c0) + QWidget (0x7f2f38b68800) 0 + primary-for QAbstractSlider (0x7f2f38b72230) + QObject (0x7f2f38b722a0) 0 + primary-for QWidget (0x7f2f38b68800) + QPaintDevice (0x7f2f38b72310) 16 + vptr=((& QScrollBar::_ZTV10QScrollBar) + 472u) + +Vtable for QSizeGrip +QSizeGrip::_ZTV9QSizeGrip: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QSizeGrip) +16 QSizeGrip::metaObject +24 QSizeGrip::qt_metacast +32 QSizeGrip::qt_metacall +40 QSizeGrip::~QSizeGrip +48 QSizeGrip::~QSizeGrip +56 QSizeGrip::event +64 QSizeGrip::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QSizeGrip::setVisible +128 QSizeGrip::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QSizeGrip::mousePressEvent +168 QSizeGrip::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QSizeGrip::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QSizeGrip::paintEvent +256 QSizeGrip::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QSizeGrip::showEvent +344 QSizeGrip::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI9QSizeGrip) +464 QSizeGrip::_ZThn16_N9QSizeGripD1Ev +472 QSizeGrip::_ZThn16_N9QSizeGripD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSizeGrip + size=40 align=8 + base size=40 base align=8 +QSizeGrip (0x7f2f38b93310) 0 + vptr=((& QSizeGrip::_ZTV9QSizeGrip) + 16u) + QWidget (0x7f2f38b92380) 0 + primary-for QSizeGrip (0x7f2f38b93310) + QObject (0x7f2f38b93380) 0 + primary-for QWidget (0x7f2f38b92380) + QPaintDevice (0x7f2f38b933f0) 16 + vptr=((& QSizeGrip::_ZTV9QSizeGrip) + 464u) + +Vtable for QSpinBox +QSpinBox::_ZTV8QSpinBox: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QSpinBox) +16 QSpinBox::metaObject +24 QSpinBox::qt_metacast +32 QSpinBox::qt_metacall +40 QSpinBox::~QSpinBox +48 QSpinBox::~QSpinBox +56 QSpinBox::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractSpinBox::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractSpinBox::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QAbstractSpinBox::wheelEvent +200 QAbstractSpinBox::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QAbstractSpinBox::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractSpinBox::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QAbstractSpinBox::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QSpinBox::validate +456 QSpinBox::fixup +464 QAbstractSpinBox::stepBy +472 QAbstractSpinBox::clear +480 QAbstractSpinBox::stepEnabled +488 QSpinBox::valueFromText +496 QSpinBox::textFromValue +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI8QSpinBox) +520 QSpinBox::_ZThn16_N8QSpinBoxD1Ev +528 QSpinBox::_ZThn16_N8QSpinBoxD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSpinBox + size=40 align=8 + base size=40 base align=8 +QSpinBox (0x7f2f38baae00) 0 + vptr=((& QSpinBox::_ZTV8QSpinBox) + 16u) + QAbstractSpinBox (0x7f2f38baae70) 0 + primary-for QSpinBox (0x7f2f38baae00) + QWidget (0x7f2f38b92d80) 0 + primary-for QAbstractSpinBox (0x7f2f38baae70) + QObject (0x7f2f38baaee0) 0 + primary-for QWidget (0x7f2f38b92d80) + QPaintDevice (0x7f2f38baaf50) 16 + vptr=((& QSpinBox::_ZTV8QSpinBox) + 520u) + +Vtable for QDoubleSpinBox +QDoubleSpinBox::_ZTV14QDoubleSpinBox: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QDoubleSpinBox) +16 QDoubleSpinBox::metaObject +24 QDoubleSpinBox::qt_metacast +32 QDoubleSpinBox::qt_metacall +40 QDoubleSpinBox::~QDoubleSpinBox +48 QDoubleSpinBox::~QDoubleSpinBox +56 QAbstractSpinBox::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractSpinBox::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractSpinBox::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QAbstractSpinBox::wheelEvent +200 QAbstractSpinBox::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QAbstractSpinBox::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractSpinBox::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QAbstractSpinBox::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDoubleSpinBox::validate +456 QDoubleSpinBox::fixup +464 QAbstractSpinBox::stepBy +472 QAbstractSpinBox::clear +480 QAbstractSpinBox::stepEnabled +488 QDoubleSpinBox::valueFromText +496 QDoubleSpinBox::textFromValue +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI14QDoubleSpinBox) +520 QDoubleSpinBox::_ZThn16_N14QDoubleSpinBoxD1Ev +528 QDoubleSpinBox::_ZThn16_N14QDoubleSpinBoxD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDoubleSpinBox + size=40 align=8 + base size=40 base align=8 +QDoubleSpinBox (0x7f2f38bd4770) 0 + vptr=((& QDoubleSpinBox::_ZTV14QDoubleSpinBox) + 16u) + QAbstractSpinBox (0x7f2f38bd47e0) 0 + primary-for QDoubleSpinBox (0x7f2f38bd4770) + QWidget (0x7f2f38bcaf00) 0 + primary-for QAbstractSpinBox (0x7f2f38bd47e0) + QObject (0x7f2f38bd4850) 0 + primary-for QWidget (0x7f2f38bcaf00) + QPaintDevice (0x7f2f38bd48c0) 16 + vptr=((& QDoubleSpinBox::_ZTV14QDoubleSpinBox) + 520u) + +Vtable for QSplashScreen +QSplashScreen::_ZTV13QSplashScreen: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSplashScreen) +16 QSplashScreen::metaObject +24 QSplashScreen::qt_metacast +32 QSplashScreen::qt_metacall +40 QSplashScreen::~QSplashScreen +48 QSplashScreen::~QSplashScreen +56 QSplashScreen::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QSplashScreen::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QSplashScreen::drawContents +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI13QSplashScreen) +472 QSplashScreen::_ZThn16_N13QSplashScreenD1Ev +480 QSplashScreen::_ZThn16_N13QSplashScreenD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSplashScreen + size=40 align=8 + base size=40 base align=8 +QSplashScreen (0x7f2f38bf6230) 0 + vptr=((& QSplashScreen::_ZTV13QSplashScreen) + 16u) + QWidget (0x7f2f38bd7900) 0 + primary-for QSplashScreen (0x7f2f38bf6230) + QObject (0x7f2f38bf62a0) 0 + primary-for QWidget (0x7f2f38bd7900) + QPaintDevice (0x7f2f38bf6310) 16 + vptr=((& QSplashScreen::_ZTV13QSplashScreen) + 472u) + +Vtable for QSplitter +QSplitter::_ZTV9QSplitter: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QSplitter) +16 QSplitter::metaObject +24 QSplitter::qt_metacast +32 QSplitter::qt_metacall +40 QSplitter::~QSplitter +48 QSplitter::~QSplitter +56 QSplitter::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QSplitter::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QSplitter::sizeHint +136 QSplitter::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFrame::paintEvent +256 QWidget::moveEvent +264 QSplitter::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QSplitter::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QSplitter::createHandle +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI9QSplitter) +472 QSplitter::_ZThn16_N9QSplitterD1Ev +480 QSplitter::_ZThn16_N9QSplitterD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSplitter + size=40 align=8 + base size=40 base align=8 +QSplitter (0x7f2f38c17310) 0 + vptr=((& QSplitter::_ZTV9QSplitter) + 16u) + QFrame (0x7f2f38c17380) 0 + primary-for QSplitter (0x7f2f38c17310) + QWidget (0x7f2f38c14580) 0 + primary-for QFrame (0x7f2f38c17380) + QObject (0x7f2f38c173f0) 0 + primary-for QWidget (0x7f2f38c14580) + QPaintDevice (0x7f2f38c17460) 16 + vptr=((& QSplitter::_ZTV9QSplitter) + 472u) + +Vtable for QSplitterHandle +QSplitterHandle::_ZTV15QSplitterHandle: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSplitterHandle) +16 QSplitterHandle::metaObject +24 QSplitterHandle::qt_metacast +32 QSplitterHandle::qt_metacall +40 QSplitterHandle::~QSplitterHandle +48 QSplitterHandle::~QSplitterHandle +56 QSplitterHandle::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QSplitterHandle::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QSplitterHandle::mousePressEvent +168 QSplitterHandle::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QSplitterHandle::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QSplitterHandle::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI15QSplitterHandle) +464 QSplitterHandle::_ZThn16_N15QSplitterHandleD1Ev +472 QSplitterHandle::_ZThn16_N15QSplitterHandleD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSplitterHandle + size=40 align=8 + base size=40 base align=8 +QSplitterHandle (0x7f2f38a44230) 0 + vptr=((& QSplitterHandle::_ZTV15QSplitterHandle) + 16u) + QWidget (0x7f2f38a41780) 0 + primary-for QSplitterHandle (0x7f2f38a44230) + QObject (0x7f2f38a442a0) 0 + primary-for QWidget (0x7f2f38a41780) + QPaintDevice (0x7f2f38a44310) 16 + vptr=((& QSplitterHandle::_ZTV15QSplitterHandle) + 464u) + +Vtable for QStackedWidget +QStackedWidget::_ZTV14QStackedWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QStackedWidget) +16 QStackedWidget::metaObject +24 QStackedWidget::qt_metacast +32 QStackedWidget::qt_metacall +40 QStackedWidget::~QStackedWidget +48 QStackedWidget::~QStackedWidget +56 QStackedWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QFrame::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFrame::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI14QStackedWidget) +464 QStackedWidget::_ZThn16_N14QStackedWidgetD1Ev +472 QStackedWidget::_ZThn16_N14QStackedWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QStackedWidget + size=40 align=8 + base size=40 base align=8 +QStackedWidget (0x7f2f38a5ea10) 0 + vptr=((& QStackedWidget::_ZTV14QStackedWidget) + 16u) + QFrame (0x7f2f38a5ea80) 0 + primary-for QStackedWidget (0x7f2f38a5ea10) + QWidget (0x7f2f38a61180) 0 + primary-for QFrame (0x7f2f38a5ea80) + QObject (0x7f2f38a5eaf0) 0 + primary-for QWidget (0x7f2f38a61180) + QPaintDevice (0x7f2f38a5eb60) 16 + vptr=((& QStackedWidget::_ZTV14QStackedWidget) + 464u) + +Vtable for QStatusBar +QStatusBar::_ZTV10QStatusBar: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QStatusBar) +16 QStatusBar::metaObject +24 QStatusBar::qt_metacast +32 QStatusBar::qt_metacall +40 QStatusBar::~QStatusBar +48 QStatusBar::~QStatusBar +56 QStatusBar::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QStatusBar::paintEvent +256 QWidget::moveEvent +264 QStatusBar::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QStatusBar::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI10QStatusBar) +464 QStatusBar::_ZThn16_N10QStatusBarD1Ev +472 QStatusBar::_ZThn16_N10QStatusBarD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QStatusBar + size=40 align=8 + base size=40 base align=8 +QStatusBar (0x7f2f38a7a8c0) 0 + vptr=((& QStatusBar::_ZTV10QStatusBar) + 16u) + QWidget (0x7f2f38a61b80) 0 + primary-for QStatusBar (0x7f2f38a7a8c0) + QObject (0x7f2f38a7a930) 0 + primary-for QWidget (0x7f2f38a61b80) + QPaintDevice (0x7f2f38a7a9a0) 16 + vptr=((& QStatusBar::_ZTV10QStatusBar) + 464u) + +Vtable for QTextBrowser +QTextBrowser::_ZTV12QTextBrowser: 74u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextBrowser) +16 QTextBrowser::metaObject +24 QTextBrowser::qt_metacast +32 QTextBrowser::qt_metacall +40 QTextBrowser::~QTextBrowser +48 QTextBrowser::~QTextBrowser +56 QTextBrowser::event +64 QObject::eventFilter +72 QTextEdit::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTextBrowser::mousePressEvent +168 QTextBrowser::mouseReleaseEvent +176 QTextEdit::mouseDoubleClickEvent +184 QTextBrowser::mouseMoveEvent +192 QTextEdit::wheelEvent +200 QTextBrowser::keyPressEvent +208 QTextEdit::keyReleaseEvent +216 QTextEdit::focusInEvent +224 QTextBrowser::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTextBrowser::paintEvent +256 QWidget::moveEvent +264 QTextEdit::resizeEvent +272 QWidget::closeEvent +280 QTextEdit::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QTextEdit::dragEnterEvent +312 QTextEdit::dragMoveEvent +320 QTextEdit::dragLeaveEvent +328 QTextEdit::dropEvent +336 QTextEdit::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QTextEdit::changeEvent +368 QWidget::metric +376 QTextEdit::inputMethodEvent +384 QTextEdit::inputMethodQuery +392 QTextBrowser::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QTextEdit::scrollContentsBy +464 QTextBrowser::loadResource +472 QTextEdit::createMimeDataFromSelection +480 QTextEdit::canInsertFromMimeData +488 QTextEdit::insertFromMimeData +496 QTextBrowser::setSource +504 QTextBrowser::backward +512 QTextBrowser::forward +520 QTextBrowser::home +528 QTextBrowser::reload +536 (int (*)(...))-0x00000000000000010 +544 (int (*)(...))(& _ZTI12QTextBrowser) +552 QTextBrowser::_ZThn16_N12QTextBrowserD1Ev +560 QTextBrowser::_ZThn16_N12QTextBrowserD0Ev +568 QWidget::_ZThn16_NK7QWidget7devTypeEv +576 QWidget::_ZThn16_NK7QWidget11paintEngineEv +584 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTextBrowser + size=40 align=8 + base size=40 base align=8 +QTextBrowser (0x7f2f38a9de00) 0 + vptr=((& QTextBrowser::_ZTV12QTextBrowser) + 16u) + QTextEdit (0x7f2f38a9de70) 0 + primary-for QTextBrowser (0x7f2f38a9de00) + QAbstractScrollArea (0x7f2f38a9dee0) 0 + primary-for QTextEdit (0x7f2f38a9de70) + QFrame (0x7f2f38a9df50) 0 + primary-for QAbstractScrollArea (0x7f2f38a9dee0) + QWidget (0x7f2f38a97b80) 0 + primary-for QFrame (0x7f2f38a9df50) + QObject (0x7f2f38aa3000) 0 + primary-for QWidget (0x7f2f38a97b80) + QPaintDevice (0x7f2f38aa3070) 16 + vptr=((& QTextBrowser::_ZTV12QTextBrowser) + 552u) + +Vtable for QToolBar +QToolBar::_ZTV8QToolBar: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QToolBar) +16 QToolBar::metaObject +24 QToolBar::qt_metacast +32 QToolBar::qt_metacall +40 QToolBar::~QToolBar +48 QToolBar::~QToolBar +56 QToolBar::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QToolBar::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QToolBar::paintEvent +256 QWidget::moveEvent +264 QToolBar::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QToolBar::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QToolBar::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI8QToolBar) +464 QToolBar::_ZThn16_N8QToolBarD1Ev +472 QToolBar::_ZThn16_N8QToolBarD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QToolBar + size=40 align=8 + base size=40 base align=8 +QToolBar (0x7f2f38ac1a10) 0 + vptr=((& QToolBar::_ZTV8QToolBar) + 16u) + QWidget (0x7f2f38abd580) 0 + primary-for QToolBar (0x7f2f38ac1a10) + QObject (0x7f2f38ac1a80) 0 + primary-for QWidget (0x7f2f38abd580) + QPaintDevice (0x7f2f38ac1af0) 16 + vptr=((& QToolBar::_ZTV8QToolBar) + 464u) + +Vtable for QToolBox +QToolBox::_ZTV8QToolBox: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QToolBox) +16 QToolBox::metaObject +24 QToolBox::qt_metacast +32 QToolBox::qt_metacall +40 QToolBox::~QToolBox +48 QToolBox::~QToolBox +56 QToolBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QFrame::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFrame::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QToolBox::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QToolBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QToolBox::itemInserted +456 QToolBox::itemRemoved +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI8QToolBox) +480 QToolBox::_ZThn16_N8QToolBoxD1Ev +488 QToolBox::_ZThn16_N8QToolBoxD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QToolBox + size=40 align=8 + base size=40 base align=8 +QToolBox (0x7f2f38afc850) 0 + vptr=((& QToolBox::_ZTV8QToolBox) + 16u) + QFrame (0x7f2f38afc8c0) 0 + primary-for QToolBox (0x7f2f38afc850) + QWidget (0x7f2f38afa680) 0 + primary-for QFrame (0x7f2f38afc8c0) + QObject (0x7f2f38afc930) 0 + primary-for QWidget (0x7f2f38afa680) + QPaintDevice (0x7f2f38afc9a0) 16 + vptr=((& QToolBox::_ZTV8QToolBox) + 480u) + +Vtable for QToolButton +QToolButton::_ZTV11QToolButton: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QToolButton) +16 QToolButton::metaObject +24 QToolButton::qt_metacast +32 QToolButton::qt_metacall +40 QToolButton::~QToolButton +48 QToolButton::~QToolButton +56 QToolButton::event +64 QObject::eventFilter +72 QToolButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QToolButton::sizeHint +136 QToolButton::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QToolButton::mousePressEvent +168 QToolButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QAbstractButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QAbstractButton::focusInEvent +224 QAbstractButton::focusOutEvent +232 QToolButton::enterEvent +240 QToolButton::leaveEvent +248 QToolButton::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QToolButton::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QToolButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QToolButton::hitButton +456 QAbstractButton::checkStateSet +464 QToolButton::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11QToolButton) +488 QToolButton::_ZThn16_N11QToolButtonD1Ev +496 QToolButton::_ZThn16_N11QToolButtonD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QToolButton + size=40 align=8 + base size=40 base align=8 +QToolButton (0x7f2f38936310) 0 + vptr=((& QToolButton::_ZTV11QToolButton) + 16u) + QAbstractButton (0x7f2f38936380) 0 + primary-for QToolButton (0x7f2f38936310) + QWidget (0x7f2f38b33400) 0 + primary-for QAbstractButton (0x7f2f38936380) + QObject (0x7f2f389363f0) 0 + primary-for QWidget (0x7f2f38b33400) + QPaintDevice (0x7f2f38936460) 16 + vptr=((& QToolButton::_ZTV11QToolButton) + 488u) + +Vtable for QWorkspace +QWorkspace::_ZTV10QWorkspace: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QWorkspace) +16 QWorkspace::metaObject +24 QWorkspace::qt_metacast +32 QWorkspace::qt_metacall +40 QWorkspace::~QWorkspace +48 QWorkspace::~QWorkspace +56 QWorkspace::event +64 QWorkspace::eventFilter +72 QObject::timerEvent +80 QWorkspace::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWorkspace::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWorkspace::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWorkspace::paintEvent +256 QWidget::moveEvent +264 QWorkspace::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWorkspace::showEvent +344 QWorkspace::hideEvent +352 QWidget::x11Event +360 QWorkspace::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI10QWorkspace) +464 QWorkspace::_ZThn16_N10QWorkspaceD1Ev +472 QWorkspace::_ZThn16_N10QWorkspaceD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWorkspace + size=40 align=8 + base size=40 base align=8 +QWorkspace (0x7f2f3897a620) 0 + vptr=((& QWorkspace::_ZTV10QWorkspace) + 16u) + QWidget (0x7f2f38980100) 0 + primary-for QWorkspace (0x7f2f3897a620) + QObject (0x7f2f3897a690) 0 + primary-for QWidget (0x7f2f38980100) + QPaintDevice (0x7f2f3897a700) 16 + vptr=((& QWorkspace::_ZTV10QWorkspace) + 464u) + +Class QGLColormap::QGLColormapData + size=24 align=8 + base size=24 base align=8 +QGLColormap::QGLColormapData (0x7f2f3899dc40) 0 + +Class QGLColormap + size=8 align=8 + base size=8 base align=8 +QGLColormap (0x7f2f3899d700) 0 + +Class QGLFormat + size=8 align=8 + base size=8 base align=8 +QGLFormat (0x7f2f384de620) 0 + +Vtable for QGLContext +QGLContext::_ZTV10QGLContext: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QGLContext) +16 QGLContext::~QGLContext +24 QGLContext::~QGLContext +32 QGLContext::create +40 QGLContext::makeCurrent +48 QGLContext::doneCurrent +56 QGLContext::swapBuffers +64 QGLContext::chooseContext +72 QGLContext::tryVisual +80 QGLContext::chooseVisual + +Class QGLContext + size=16 align=8 + base size=16 base align=8 +QGLContext (0x7f2f383694d0) 0 + vptr=((& QGLContext::_ZTV10QGLContext) + 16u) + +Vtable for QGLWidget +QGLWidget::_ZTV9QGLWidget: 73u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QGLWidget) +16 QGLWidget::metaObject +24 QGLWidget::qt_metacast +32 QGLWidget::qt_metacall +40 QGLWidget::~QGLWidget +48 QGLWidget::~QGLWidget +56 QGLWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QGLWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QGLWidget::paintEvent +256 QWidget::moveEvent +264 QGLWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QGLWidget::updateGL +456 QGLWidget::updateOverlayGL +464 QGLWidget::initializeGL +472 QGLWidget::resizeGL +480 QGLWidget::paintGL +488 QGLWidget::initializeOverlayGL +496 QGLWidget::resizeOverlayGL +504 QGLWidget::paintOverlayGL +512 QGLWidget::glInit +520 QGLWidget::glDraw +528 (int (*)(...))-0x00000000000000010 +536 (int (*)(...))(& _ZTI9QGLWidget) +544 QGLWidget::_ZThn16_N9QGLWidgetD1Ev +552 QGLWidget::_ZThn16_N9QGLWidgetD0Ev +560 QWidget::_ZThn16_NK7QWidget7devTypeEv +568 QGLWidget::_ZThn16_NK9QGLWidget11paintEngineEv +576 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QGLWidget + size=40 align=8 + base size=40 base align=8 +QGLWidget (0x7f2f383becb0) 0 + vptr=((& QGLWidget::_ZTV9QGLWidget) + 16u) + QWidget (0x7f2f383c1280) 0 + primary-for QGLWidget (0x7f2f383becb0) + QObject (0x7f2f383bed20) 0 + primary-for QWidget (0x7f2f383c1280) + QPaintDevice (0x7f2f383bed90) 16 + vptr=((& QGLWidget::_ZTV9QGLWidget) + 544u) + +Vtable for QGLFramebufferObject +QGLFramebufferObject::_ZTV20QGLFramebufferObject: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QGLFramebufferObject) +16 QGLFramebufferObject::~QGLFramebufferObject +24 QGLFramebufferObject::~QGLFramebufferObject +32 QGLFramebufferObject::devType +40 QGLFramebufferObject::paintEngine +48 QGLFramebufferObject::metric + +Class QGLFramebufferObject + size=24 align=8 + base size=24 base align=8 +QGLFramebufferObject (0x7f2f38421850) 0 + vptr=((& QGLFramebufferObject::_ZTV20QGLFramebufferObject) + 16u) + QPaintDevice (0x7f2f384218c0) 0 + primary-for QGLFramebufferObject (0x7f2f38421850) + +Class QGLFramebufferObjectFormat + size=8 align=8 + base size=8 base align=8 +QGLFramebufferObjectFormat (0x7f2f38432d90) 0 + +Vtable for QGLPixelBuffer +QGLPixelBuffer::_ZTV14QGLPixelBuffer: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QGLPixelBuffer) +16 QGLPixelBuffer::~QGLPixelBuffer +24 QGLPixelBuffer::~QGLPixelBuffer +32 QGLPixelBuffer::devType +40 QGLPixelBuffer::paintEngine +48 QGLPixelBuffer::metric + +Class QGLPixelBuffer + size=24 align=8 + base size=24 base align=8 +QGLPixelBuffer (0x7f2f382475b0) 0 + vptr=((& QGLPixelBuffer::_ZTV14QGLPixelBuffer) + 16u) + QPaintDevice (0x7f2f38247620) 0 + primary-for QGLPixelBuffer (0x7f2f382475b0) + +Vtable for QGLShader +QGLShader::_ZTV9QGLShader: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QGLShader) +16 QGLShader::metaObject +24 QGLShader::qt_metacast +32 QGLShader::qt_metacall +40 QGLShader::~QGLShader +48 QGLShader::~QGLShader +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QGLShader + size=16 align=8 + base size=16 base align=8 +QGLShader (0x7f2f38263540) 0 + vptr=((& QGLShader::_ZTV9QGLShader) + 16u) + QObject (0x7f2f382635b0) 0 + primary-for QGLShader (0x7f2f38263540) + +Vtable for QGLShaderProgram +QGLShaderProgram::_ZTV16QGLShaderProgram: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QGLShaderProgram) +16 QGLShaderProgram::metaObject +24 QGLShaderProgram::qt_metacast +32 QGLShaderProgram::qt_metacall +40 QGLShaderProgram::~QGLShaderProgram +48 QGLShaderProgram::~QGLShaderProgram +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGLShaderProgram::link + +Class QGLShaderProgram + size=16 align=8 + base size=16 base align=8 +QGLShaderProgram (0x7f2f382b3690) 0 + vptr=((& QGLShaderProgram::_ZTV16QGLShaderProgram) + 16u) + QObject (0x7f2f382b3700) 0 + primary-for QGLShaderProgram (0x7f2f382b3690) + diff --git a/tests/auto/bic/data/QtScript.4.5.0.linux-gcc-amd64.txt b/tests/auto/bic/data/QtScript.4.5.0.linux-gcc-amd64.txt new file mode 100644 index 0000000..563623f --- /dev/null +++ b/tests/auto/bic/data/QtScript.4.5.0.linux-gcc-amd64.txt @@ -0,0 +1,2525 @@ +Class QSysInfo + size=1 align=1 + base size=0 base align=1 +QSysInfo (0x7fdfa342a460) 0 empty + +Class QBool + size=1 align=1 + base size=1 base align=1 +QBool (0x7fdfa343f150) 0 + +Class qIsNull(double)::U + size=8 align=8 + base size=8 base align=8 +qIsNull(double)::U (0x7fdfa3457540) 0 + +Class qIsNull(float)::U + size=4 align=4 + base size=4 base align=4 +qIsNull(float)::U (0x7fdfa34577e0) 0 + +Class QFlag + size=4 align=4 + base size=4 base align=4 +QFlag (0x7fdfa348d620) 0 + +Class QIncompatibleFlag + size=4 align=4 + base size=4 base align=4 +QIncompatibleFlag (0x7fdfa348de00) 0 + +Class QInternal + size=1 align=1 + base size=0 base align=1 +QInternal (0x7fdfa2a88540) 0 empty + +Class QGenericArgument + size=16 align=8 + base size=16 base align=8 +QGenericArgument (0x7fdfa2a88850) 0 + +Class QGenericReturnArgument + size=16 align=8 + base size=16 base align=8 +QGenericReturnArgument (0x7fdfa2aa53f0) 0 + QGenericArgument (0x7fdfa2aa5460) 0 + +Class QMetaObject + size=32 align=8 + base size=32 base align=8 +QMetaObject (0x7fdfa2aa5cb0) 0 + +Class QMetaObjectExtraData + size=16 align=8 + base size=16 base align=8 +QMetaObjectExtraData (0x7fdfa2acbcb0) 0 + +Class QLatin1Char + size=1 align=1 + base size=1 base align=1 +QLatin1Char (0x7fdfa2ad7700) 0 + +Class QChar + size=2 align=2 + base size=2 base align=2 +QChar (0x7fdfa2adb2a0) 0 + +Class QBasicAtomicInt + size=4 align=4 + base size=4 base align=4 +QBasicAtomicInt (0x7fdfa2943380) 0 + +Class QAtomicInt + size=4 align=4 + base size=4 base align=4 +QAtomicInt (0x7fdfa297dd20) 0 + QBasicAtomicInt (0x7fdfa297dd90) 0 + +Class __locale_struct + size=232 align=8 + base size=232 base align=8 +__locale_struct (0x7fdfa29a31c0) 0 + +Class QByteArray::Data + size=32 align=8 + base size=32 base align=8 +QByteArray::Data (0x7fdfa28207e0) 0 + +Class QByteArray + size=8 align=8 + base size=8 base align=8 +QByteArray (0x7fdfa29dd540) 0 + +Class QByteRef + size=16 align=8 + base size=12 base align=8 +QByteRef (0x7fdfa2876a80) 0 + +Class QString::Null + size=1 align=1 + base size=0 base align=1 +QString::Null (0x7fdfa277e700) 0 empty + +Class QString::Data + size=32 align=8 + base size=32 base align=8 +QString::Data (0x7fdfa278dee0) 0 + +Class QString + size=8 align=8 + base size=8 base align=8 +QString (0x7fdfa26fe5b0) 0 + +Class QLatin1String + size=8 align=8 + base size=8 base align=8 +QLatin1String (0x7fdfa2669000) 0 + +Class QCharRef + size=16 align=8 + base size=12 base align=8 +QCharRef (0x7fdfa24ff620) 0 + +Class QConstString + size=8 align=8 + base size=8 base align=8 +QConstString (0x7fdfa2449ee0) 0 + QString (0x7fdfa2449f50) 0 + +Class QStringRef + size=16 align=8 + base size=16 base align=8 +QStringRef (0x7fdfa2469bd0) 0 + +Vtable for std::exception +std::exception::_ZTVSt9exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9exception) +16 std::exception::~exception +24 std::exception::~exception +32 std::exception::what + +Class std::exception + size=8 align=8 + base size=8 base align=8 +std::exception (0x7fdfa2324620) 0 nearly-empty + vptr=((& std::exception::_ZTVSt9exception) + 16u) + +Vtable for std::bad_exception +std::bad_exception::_ZTVSt13bad_exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13bad_exception) +16 std::bad_exception::~bad_exception +24 std::bad_exception::~bad_exception +32 std::bad_exception::what + +Class std::bad_exception + size=8 align=8 + base size=8 base align=8 +std::bad_exception (0x7fdfa2346000) 0 nearly-empty + vptr=((& std::bad_exception::_ZTVSt13bad_exception) + 16u) + std::exception (0x7fdfa2346070) 0 nearly-empty + primary-for std::bad_exception (0x7fdfa2346000) + +Vtable for std::bad_alloc +std::bad_alloc::_ZTVSt9bad_alloc: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9bad_alloc) +16 std::bad_alloc::~bad_alloc +24 std::bad_alloc::~bad_alloc +32 std::bad_alloc::what + +Class std::bad_alloc + size=8 align=8 + base size=8 base align=8 +std::bad_alloc (0x7fdfa23468c0) 0 nearly-empty + vptr=((& std::bad_alloc::_ZTVSt9bad_alloc) + 16u) + std::exception (0x7fdfa2346930) 0 nearly-empty + primary-for std::bad_alloc (0x7fdfa23468c0) + +Class std::nothrow_t + size=1 align=1 + base size=0 base align=1 +std::nothrow_t (0x7fdfa23570e0) 0 empty + +Class QListData::Data + size=32 align=8 + base size=32 base align=8 +QListData::Data (0x7fdfa2357620) 0 + +Class QListData + size=8 align=8 + base size=8 base align=8 +QListData (0x7fdfa23575b0) 0 + +Vtable for QObjectData +QObjectData::_ZTV11QObjectData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QObjectData) +16 __cxa_pure_virtual +24 __cxa_pure_virtual + +Class QObjectData + size=40 align=8 + base size=40 base align=8 +QObjectData (0x7fdfa2259bd0) 0 + vptr=((& QObjectData::_ZTV11QObjectData) + 16u) + +Vtable for QObject +QObject::_ZTV7QObject: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QObject) +16 QObject::metaObject +24 QObject::qt_metacast +32 QObject::qt_metacall +40 QObject::~QObject +48 QObject::~QObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObject + size=16 align=8 + base size=16 base align=8 +QObject (0x7fdfa2259ee0) 0 + vptr=((& QObject::_ZTV7QObject) + 16u) + +Vtable for QObjectUserData +QObjectUserData::_ZTV15QObjectUserData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QObjectUserData) +16 QObjectUserData::~QObjectUserData +24 QObjectUserData::~QObjectUserData + +Class QObjectUserData + size=8 align=8 + base size=8 base align=8 +QObjectUserData (0x7fdfa20db3f0) 0 nearly-empty + vptr=((& QObjectUserData::_ZTV15QObjectUserData) + 16u) + +Vtable for QIODevice +QIODevice::_ZTV9QIODevice: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QIODevice) +16 QIODevice::metaObject +24 QIODevice::qt_metacast +32 QIODevice::qt_metacall +40 QIODevice::~QIODevice +48 QIODevice::~QIODevice +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QIODevice::isSequential +120 QIODevice::open +128 QIODevice::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QIODevice::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 __cxa_pure_virtual +224 QIODevice::readLineData +232 __cxa_pure_virtual + +Class QIODevice + size=16 align=8 + base size=16 base align=8 +QIODevice (0x7fdfa20db930) 0 + vptr=((& QIODevice::_ZTV9QIODevice) + 16u) + QObject (0x7fdfa20db9a0) 0 + primary-for QIODevice (0x7fdfa20db930) + +Vtable for QDataStream +QDataStream::_ZTV11QDataStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QDataStream) +16 QDataStream::~QDataStream +24 QDataStream::~QDataStream + +Class QDataStream + size=40 align=8 + base size=40 base align=8 +QDataStream (0x7fdfa21532a0) 0 + vptr=((& QDataStream::_ZTV11QDataStream) + 16u) + +Class QHashData::Node + size=16 align=8 + base size=16 base align=8 +QHashData::Node (0x7fdfa1fd7150) 0 + +Class QHashData + size=40 align=8 + base size=40 base align=8 +QHashData (0x7fdfa1fd70e0) 0 + +Class QHashDummyValue + size=1 align=1 + base size=0 base align=1 +QHashDummyValue (0x7fdfa1fe8ee0) 0 empty + +Class QMapData::Node + size=16 align=8 + base size=16 base align=8 +QMapData::Node (0x7fdfa1efa690) 0 + +Class QMapData + size=128 align=8 + base size=128 base align=8 +QMapData (0x7fdfa1efa620) 0 + +Vtable for QSystemLocale +QSystemLocale::_ZTV13QSystemLocale: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSystemLocale) +16 QSystemLocale::~QSystemLocale +24 QSystemLocale::~QSystemLocale +32 QSystemLocale::query +40 QSystemLocale::fallbackLocale + +Class QSystemLocale + size=8 align=8 + base size=8 base align=8 +QSystemLocale (0x7fdfa1e0fe00) 0 nearly-empty + vptr=((& QSystemLocale::_ZTV13QSystemLocale) + 16u) + +Class QLocale::Data + size=4 align=2 + base size=4 base align=2 +QLocale::Data (0x7fdfa1e6e3f0) 0 + +Class QLocale + size=8 align=8 + base size=8 base align=8 +QLocale (0x7fdfa1e310e0) 0 + +Class QTextCodec::ConverterState + size=32 align=8 + base size=32 base align=8 +QTextCodec::ConverterState (0x7fdfa1ebbe70) 0 + +Vtable for QTextCodec +QTextCodec::_ZTV10QTextCodec: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextCodec) +16 __cxa_pure_virtual +24 QTextCodec::aliases +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QTextCodec::~QTextCodec +64 QTextCodec::~QTextCodec + +Class QTextCodec + size=8 align=8 + base size=8 base align=8 +QTextCodec (0x7fdfa1ea5a80) 0 nearly-empty + vptr=((& QTextCodec::_ZTV10QTextCodec) + 16u) + +Class QTextEncoder + size=40 align=8 + base size=40 base align=8 +QTextEncoder (0x7fdfa1d273f0) 0 + +Class QTextDecoder + size=40 align=8 + base size=40 base align=8 +QTextDecoder (0x7fdfa1d30230) 0 + +Class _IO_marker + size=24 align=8 + base size=24 base align=8 +_IO_marker (0x7fdfa1d382a0) 0 + +Class _IO_FILE + size=216 align=8 + base size=216 base align=8 +_IO_FILE (0x7fdfa1d38310) 0 + +Vtable for QTextStream +QTextStream::_ZTV11QTextStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTextStream) +16 QTextStream::~QTextStream +24 QTextStream::~QTextStream + +Class QTextStream + size=16 align=8 + base size=16 base align=8 +QTextStream (0x7fdfa1d383f0) 0 + vptr=((& QTextStream::_ZTV11QTextStream) + 16u) + +Class QTextStreamManipulator + size=40 align=8 + base size=38 base align=8 +QTextStreamManipulator (0x7fdfa1dd0ee0) 0 + +Vtable for QTextIStream +QTextIStream::_ZTV12QTextIStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextIStream) +16 QTextIStream::~QTextIStream +24 QTextIStream::~QTextIStream + +Class QTextIStream + size=16 align=8 + base size=16 base align=8 +QTextIStream (0x7fdfa1bfd1c0) 0 + vptr=((& QTextIStream::_ZTV12QTextIStream) + 16u) + QTextStream (0x7fdfa1bfd230) 0 + primary-for QTextIStream (0x7fdfa1bfd1c0) + +Vtable for QTextOStream +QTextOStream::_ZTV12QTextOStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextOStream) +16 QTextOStream::~QTextOStream +24 QTextOStream::~QTextOStream + +Class QTextOStream + size=16 align=8 + base size=16 base align=8 +QTextOStream (0x7fdfa1c12070) 0 + vptr=((& QTextOStream::_ZTV12QTextOStream) + 16u) + QTextStream (0x7fdfa1c120e0) 0 + primary-for QTextOStream (0x7fdfa1c12070) + +Class wait + size=4 align=4 + base size=4 base align=4 +wait (0x7fdfa1c1fee0) 0 + +Class timespec + size=16 align=8 + base size=16 base align=8 +timespec (0x7fdfa1c2c230) 0 + +Class timeval + size=16 align=8 + base size=16 base align=8 +timeval (0x7fdfa1c2c2a0) 0 + +Class __pthread_internal_list + size=16 align=8 + base size=16 base align=8 +__pthread_internal_list (0x7fdfa1c2c3f0) 0 + +Class random_data + size=48 align=8 + base size=48 base align=8 +random_data (0x7fdfa1c2c9a0) 0 + +Class drand48_data + size=24 align=8 + base size=24 base align=8 +drand48_data (0x7fdfa1c2ca10) 0 + +Class QVectorData + size=16 align=4 + base size=16 base align=4 +QVectorData (0x7fdfa1c2ca80) 0 + +Class QDebug::Stream + size=40 align=8 + base size=34 base align=8 +QDebug::Stream (0x7fdfa1ba6230) 0 + +Class QDebug + size=8 align=8 + base size=8 base align=8 +QDebug (0x7fdfa1ba61c0) 0 + +Class QNoDebug + size=1 align=1 + base size=0 base align=1 +QNoDebug (0x7fdfa1a44070) 0 empty + +Vtable for QFile +QFile::_ZTV5QFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QFile) +16 QFile::metaObject +24 QFile::qt_metacast +32 QFile::qt_metacall +40 QFile::~QFile +48 QFile::~QFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QFile::fileEngine + +Class QFile + size=16 align=8 + base size=16 base align=8 +QFile (0x7fdfa1a56620) 0 + vptr=((& QFile::_ZTV5QFile) + 16u) + QIODevice (0x7fdfa1a56690) 0 + primary-for QFile (0x7fdfa1a56620) + QObject (0x7fdfa1a56700) 0 + primary-for QIODevice (0x7fdfa1a56690) + +Vtable for QTemporaryFile +QTemporaryFile::_ZTV14QTemporaryFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QTemporaryFile) +16 QTemporaryFile::metaObject +24 QTemporaryFile::qt_metacast +32 QTemporaryFile::qt_metacall +40 QTemporaryFile::~QTemporaryFile +48 QTemporaryFile::~QTemporaryFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QTemporaryFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QTemporaryFile::fileEngine + +Class QTemporaryFile + size=16 align=8 + base size=16 base align=8 +QTemporaryFile (0x7fdfa1ac1850) 0 + vptr=((& QTemporaryFile::_ZTV14QTemporaryFile) + 16u) + QFile (0x7fdfa1ac18c0) 0 + primary-for QTemporaryFile (0x7fdfa1ac1850) + QIODevice (0x7fdfa1ac1930) 0 + primary-for QFile (0x7fdfa1ac18c0) + QObject (0x7fdfa1ac19a0) 0 + primary-for QIODevice (0x7fdfa1ac1930) + +Class QFileInfo + size=8 align=8 + base size=8 base align=8 +QFileInfo (0x7fdfa18e1f50) 0 + +Class QRegExp + size=8 align=8 + base size=8 base align=8 +QRegExp (0x7fdfa193f770) 0 + +Class QStringMatcher + size=1048 align=8 + base size=1048 base align=8 +QStringMatcher (0x7fdfa198a5b0) 0 + +Class QStringList + size=8 align=8 + base size=8 base align=8 +QStringList (0x7fdfa19a0070) 0 + QList (0x7fdfa19a00e0) 0 + +Class QDir + size=8 align=8 + base size=8 base align=8 +QDir (0x7fdfa182bcb0) 0 + +Class QAbstractFileEngine::ExtensionOption + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionOption (0x7fdfa18c6e70) 0 empty + +Class QAbstractFileEngine::ExtensionReturn + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionReturn (0x7fdfa18c6ee0) 0 empty + +Class QAbstractFileEngine::MapExtensionOption + size=24 align=8 + base size=20 base align=8 +QAbstractFileEngine::MapExtensionOption (0x7fdfa18c6f50) 0 + QAbstractFileEngine::ExtensionOption (0x7fdfa16da000) 0 empty + +Class QAbstractFileEngine::MapExtensionReturn + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::MapExtensionReturn (0x7fdfa16da1c0) 0 + QAbstractFileEngine::ExtensionReturn (0x7fdfa16da230) 0 empty + +Class QAbstractFileEngine::UnMapExtensionOption + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::UnMapExtensionOption (0x7fdfa16da2a0) 0 + QAbstractFileEngine::ExtensionOption (0x7fdfa16da310) 0 empty + +Vtable for QAbstractFileEngine +QAbstractFileEngine::_ZTV19QAbstractFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractFileEngine) +16 QAbstractFileEngine::~QAbstractFileEngine +24 QAbstractFileEngine::~QAbstractFileEngine +32 QAbstractFileEngine::open +40 QAbstractFileEngine::close +48 QAbstractFileEngine::flush +56 QAbstractFileEngine::size +64 QAbstractFileEngine::pos +72 QAbstractFileEngine::seek +80 QAbstractFileEngine::isSequential +88 QAbstractFileEngine::remove +96 QAbstractFileEngine::copy +104 QAbstractFileEngine::rename +112 QAbstractFileEngine::link +120 QAbstractFileEngine::mkdir +128 QAbstractFileEngine::rmdir +136 QAbstractFileEngine::setSize +144 QAbstractFileEngine::caseSensitive +152 QAbstractFileEngine::isRelativePath +160 QAbstractFileEngine::entryList +168 QAbstractFileEngine::fileFlags +176 QAbstractFileEngine::setPermissions +184 QAbstractFileEngine::fileName +192 QAbstractFileEngine::ownerId +200 QAbstractFileEngine::owner +208 QAbstractFileEngine::fileTime +216 QAbstractFileEngine::setFileName +224 QAbstractFileEngine::handle +232 QAbstractFileEngine::beginEntryList +240 QAbstractFileEngine::endEntryList +248 QAbstractFileEngine::read +256 QAbstractFileEngine::readLine +264 QAbstractFileEngine::write +272 QAbstractFileEngine::extension +280 QAbstractFileEngine::supportsExtension + +Class QAbstractFileEngine + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngine (0x7fdfa18b6e00) 0 + vptr=((& QAbstractFileEngine::_ZTV19QAbstractFileEngine) + 16u) + +Vtable for QAbstractFileEngineHandler +QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QAbstractFileEngineHandler) +16 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +24 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +32 __cxa_pure_virtual + +Class QAbstractFileEngineHandler + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngineHandler (0x7fdfa170a000) 0 nearly-empty + vptr=((& QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler) + 16u) + +Vtable for QAbstractFileEngineIterator +QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QAbstractFileEngineIterator) +16 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +24 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QAbstractFileEngineIterator::currentFileInfo +64 QAbstractFileEngineIterator::entryInfo + +Class QAbstractFileEngineIterator + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngineIterator (0x7fdfa170a1c0) 0 + vptr=((& QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator) + 16u) + +Vtable for QFSFileEngine +QFSFileEngine::_ZTV13QFSFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QFSFileEngine) +16 QFSFileEngine::~QFSFileEngine +24 QFSFileEngine::~QFSFileEngine +32 QFSFileEngine::open +40 QFSFileEngine::close +48 QFSFileEngine::flush +56 QFSFileEngine::size +64 QFSFileEngine::pos +72 QFSFileEngine::seek +80 QFSFileEngine::isSequential +88 QFSFileEngine::remove +96 QFSFileEngine::copy +104 QFSFileEngine::rename +112 QFSFileEngine::link +120 QFSFileEngine::mkdir +128 QFSFileEngine::rmdir +136 QFSFileEngine::setSize +144 QFSFileEngine::caseSensitive +152 QFSFileEngine::isRelativePath +160 QFSFileEngine::entryList +168 QFSFileEngine::fileFlags +176 QFSFileEngine::setPermissions +184 QFSFileEngine::fileName +192 QFSFileEngine::ownerId +200 QFSFileEngine::owner +208 QFSFileEngine::fileTime +216 QFSFileEngine::setFileName +224 QFSFileEngine::handle +232 QFSFileEngine::beginEntryList +240 QFSFileEngine::endEntryList +248 QFSFileEngine::read +256 QFSFileEngine::readLine +264 QFSFileEngine::write +272 QFSFileEngine::extension +280 QFSFileEngine::supportsExtension + +Class QFSFileEngine + size=16 align=8 + base size=16 base align=8 +QFSFileEngine (0x7fdfa170aa10) 0 + vptr=((& QFSFileEngine::_ZTV13QFSFileEngine) + 16u) + QAbstractFileEngine (0x7fdfa170aa80) 0 + primary-for QFSFileEngine (0x7fdfa170aa10) + +Vtable for QProcess +QProcess::_ZTV8QProcess: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QProcess) +16 QProcess::metaObject +24 QProcess::qt_metacast +32 QProcess::qt_metacall +40 QProcess::~QProcess +48 QProcess::~QProcess +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QProcess::isSequential +120 QIODevice::open +128 QProcess::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QProcess::atEnd +168 QIODevice::reset +176 QProcess::bytesAvailable +184 QProcess::bytesToWrite +192 QProcess::canReadLine +200 QProcess::waitForReadyRead +208 QProcess::waitForBytesWritten +216 QProcess::readData +224 QIODevice::readLineData +232 QProcess::writeData +240 QProcess::setupChildProcess + +Class QProcess + size=16 align=8 + base size=16 base align=8 +QProcess (0x7fdfa1722d20) 0 + vptr=((& QProcess::_ZTV8QProcess) + 16u) + QIODevice (0x7fdfa1722d90) 0 + primary-for QProcess (0x7fdfa1722d20) + QObject (0x7fdfa1722e00) 0 + primary-for QIODevice (0x7fdfa1722d90) + +Class QResource + size=8 align=8 + base size=8 base align=8 +QResource (0x7fdfa175e230) 0 + +Vtable for QDirIterator +QDirIterator::_ZTV12QDirIterator: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QDirIterator) +16 QDirIterator::~QDirIterator +24 QDirIterator::~QDirIterator + +Class QDirIterator + size=16 align=8 + base size=16 base align=8 +QDirIterator (0x7fdfa175ecb0) 0 + vptr=((& QDirIterator::_ZTV12QDirIterator) + 16u) + +Vtable for QBuffer +QBuffer::_ZTV7QBuffer: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QBuffer) +16 QBuffer::metaObject +24 QBuffer::qt_metacast +32 QBuffer::qt_metacall +40 QBuffer::~QBuffer +48 QBuffer::~QBuffer +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QBuffer::connectNotify +104 QBuffer::disconnectNotify +112 QIODevice::isSequential +120 QBuffer::open +128 QBuffer::close +136 QBuffer::pos +144 QBuffer::size +152 QBuffer::seek +160 QBuffer::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QBuffer::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QBuffer::readData +224 QIODevice::readLineData +232 QBuffer::writeData + +Class QBuffer + size=16 align=8 + base size=16 base align=8 +QBuffer (0x7fdfa178fa80) 0 + vptr=((& QBuffer::_ZTV7QBuffer) + 16u) + QIODevice (0x7fdfa178faf0) 0 + primary-for QBuffer (0x7fdfa178fa80) + QObject (0x7fdfa178fb60) 0 + primary-for QIODevice (0x7fdfa178faf0) + +Vtable for QFileSystemWatcher +QFileSystemWatcher::_ZTV18QFileSystemWatcher: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFileSystemWatcher) +16 QFileSystemWatcher::metaObject +24 QFileSystemWatcher::qt_metacast +32 QFileSystemWatcher::qt_metacall +40 QFileSystemWatcher::~QFileSystemWatcher +48 QFileSystemWatcher::~QFileSystemWatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QFileSystemWatcher + size=16 align=8 + base size=16 base align=8 +QFileSystemWatcher (0x7fdfa17b7690) 0 + vptr=((& QFileSystemWatcher::_ZTV18QFileSystemWatcher) + 16u) + QObject (0x7fdfa17b7700) 0 + primary-for QFileSystemWatcher (0x7fdfa17b7690) + +Class QUrl + size=8 align=8 + base size=8 base align=8 +QUrl (0x7fdfa17cabd0) 0 + +Class QMetaType + size=1 align=1 + base size=0 base align=1 +QMetaType (0x7fdfa16343f0) 0 empty + +Class QVariant::PrivateShared + size=16 align=8 + base size=12 base align=8 +QVariant::PrivateShared (0x7fdfa1506930) 0 + +Class QVariant::Private::Data + size=8 align=8 + base size=8 base align=8 +QVariant::Private::Data (0x7fdfa1506c40) 0 + +Class QVariant::Private + size=16 align=8 + base size=12 base align=8 +QVariant::Private (0x7fdfa1506a10) 0 + +Class QVariant::Handler + size=72 align=8 + base size=72 base align=8 +QVariant::Handler (0x7fdfa1514930) 0 + +Class QVariant + size=16 align=8 + base size=16 base align=8 +QVariant (0x7fdfa14d6af0) 0 + +Class QVariantComparisonHelper + size=8 align=8 + base size=8 base align=8 +QVariantComparisonHelper (0x7fdfa13bacb0) 0 + +Vtable for QSettings +QSettings::_ZTV9QSettings: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QSettings) +16 QSettings::metaObject +24 QSettings::qt_metacast +32 QSettings::qt_metacall +40 QSettings::~QSettings +48 QSettings::~QSettings +56 QSettings::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSettings + size=16 align=8 + base size=16 base align=8 +QSettings (0x7fdfa13dfcb0) 0 + vptr=((& QSettings::_ZTV9QSettings) + 16u) + QObject (0x7fdfa13dfd20) 0 + primary-for QSettings (0x7fdfa13dfcb0) + +Class QXmlStreamStringRef + size=16 align=8 + base size=16 base align=8 +QXmlStreamStringRef (0x7fdfa1462070) 0 + +Class QXmlStreamAttribute + size=80 align=8 + base size=73 base align=8 +QXmlStreamAttribute (0x7fdfa1480850) 0 + +Class QXmlStreamAttributes + size=8 align=8 + base size=8 base align=8 +QXmlStreamAttributes (0x7fdfa14a7380) 0 + QVector (0x7fdfa14a73f0) 0 + +Class QXmlStreamNamespaceDeclaration + size=40 align=8 + base size=40 base align=8 +QXmlStreamNamespaceDeclaration (0x7fdfa14a7850) 0 + +Class QXmlStreamNotationDeclaration + size=56 align=8 + base size=56 base align=8 +QXmlStreamNotationDeclaration (0x7fdfa12e71c0) 0 + +Class QXmlStreamEntityDeclaration + size=88 align=8 + base size=88 base align=8 +QXmlStreamEntityDeclaration (0x7fdfa1307070) 0 + +Vtable for QXmlStreamEntityResolver +QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QXmlStreamEntityResolver) +16 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +24 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +32 QXmlStreamEntityResolver::resolveEntity +40 QXmlStreamEntityResolver::resolveUndeclaredEntity + +Class QXmlStreamEntityResolver + size=8 align=8 + base size=8 base align=8 +QXmlStreamEntityResolver (0x7fdfa13249a0) 0 nearly-empty + vptr=((& QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver) + 16u) + +Class QXmlStreamReader + size=8 align=8 + base size=8 base align=8 +QXmlStreamReader (0x7fdfa1324b60) 0 + +Class QXmlStreamWriter + size=8 align=8 + base size=8 base align=8 +QXmlStreamWriter (0x7fdfa1362a10) 0 + +Class QPoint + size=8 align=4 + base size=8 base align=4 +QPoint (0x7fdfa139e150) 0 + +Class QPointF + size=16 align=8 + base size=16 base align=8 +QPointF (0x7fdfa11d5d90) 0 + +Class QLine + size=16 align=4 + base size=16 base align=4 +QLine (0x7fdfa1212bd0) 0 + +Class QLineF + size=32 align=8 + base size=32 base align=8 +QLineF (0x7fdfa124da80) 0 + +Class QSize + size=8 align=4 + base size=8 base align=4 +QSize (0x7fdfa10a9540) 0 + +Class QSizeF + size=16 align=8 + base size=16 base align=8 +QSizeF (0x7fdfa10f5380) 0 + +Class QRect + size=16 align=4 + base size=16 base align=4 +QRect (0x7fdfa11419a0) 0 + +Class QRectF + size=32 align=8 + base size=32 base align=8 +QRectF (0x7fdfa0ff1380) 0 + +Class QSharedData + size=4 align=4 + base size=4 base align=4 +QSharedData (0x7fdfa109d150) 0 + +Vtable for QtSharedPointer::ExternalRefCountData +QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN15QtSharedPointer20ExternalRefCountDataE) +16 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +24 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +32 QtSharedPointer::ExternalRefCountData::destroy + +Class QtSharedPointer::ExternalRefCountData + size=16 align=8 + base size=16 base align=8 +QtSharedPointer::ExternalRefCountData (0x7fdfa0ecbaf0) 0 + vptr=((& QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE) + 16u) + +Class QLinkedListData + size=32 align=8 + base size=32 base align=8 +QLinkedListData (0x7fdfa0f53c40) 0 + +Class QBitArray + size=8 align=8 + base size=8 base align=8 +QBitArray (0x7fdfa0e1fb60) 0 + +Class QBitRef + size=16 align=8 + base size=12 base align=8 +QBitRef (0x7fdfa0e92930) 0 + +Class QByteArrayMatcher + size=1040 align=8 + base size=1040 base align=8 +QByteArrayMatcher (0x7fdfa0cad310) 0 + +Class QCryptographicHash + size=8 align=8 + base size=8 base align=8 +QCryptographicHash (0x7fdfa0cbea10) 0 + +Class QTextBoundaryFinder + size=48 align=8 + base size=48 base align=8 +QTextBoundaryFinder (0x7fdfa0ceb460) 0 + +Class QDate + size=4 align=4 + base size=4 base align=4 +QDate (0x7fdfa0d017e0) 0 + +Class QTime + size=4 align=4 + base size=4 base align=4 +QTime (0x7fdfa0d2a770) 0 + +Class QDateTime + size=8 align=8 + base size=8 base align=8 +QDateTime (0x7fdfa0d47d20) 0 + +Vtable for QTimeLine +QTimeLine::_ZTV9QTimeLine: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTimeLine) +16 QTimeLine::metaObject +24 QTimeLine::qt_metacast +32 QTimeLine::qt_metacall +40 QTimeLine::~QTimeLine +48 QTimeLine::~QTimeLine +56 QObject::event +64 QObject::eventFilter +72 QTimeLine::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTimeLine::valueForTime + +Class QTimeLine + size=16 align=8 + base size=16 base align=8 +QTimeLine (0x7fdfa0d7c1c0) 0 + vptr=((& QTimeLine::_ZTV9QTimeLine) + 16u) + QObject (0x7fdfa0d7c230) 0 + primary-for QTimeLine (0x7fdfa0d7c1c0) + +Vtable for QRunnable +QRunnable::_ZTV9QRunnable: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QRunnable) +16 __cxa_pure_virtual +24 QRunnable::~QRunnable +32 QRunnable::~QRunnable + +Class QRunnable + size=16 align=8 + base size=12 base align=8 +QRunnable (0x7fdfa0ba2070) 0 + vptr=((& QRunnable::_ZTV9QRunnable) + 16u) + +Class QMutex + size=8 align=8 + base size=8 base align=8 +QMutex (0x7fdfa0baf700) 0 + +Class QMutexLocker + size=8 align=8 + base size=8 base align=8 +QMutexLocker (0x7fdfa0bbe2a0) 0 + +Vtable for QtConcurrent::Exception +QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent9ExceptionE) +16 QtConcurrent::Exception::~Exception +24 QtConcurrent::Exception::~Exception +32 std::exception::what +40 QtConcurrent::Exception::raise +48 QtConcurrent::Exception::clone + +Class QtConcurrent::Exception + size=8 align=8 + base size=8 base align=8 +QtConcurrent::Exception (0x7fdfa0bd35b0) 0 nearly-empty + vptr=((& QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE) + 16u) + std::exception (0x7fdfa0bd3620) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7fdfa0bd35b0) + +Vtable for QtConcurrent::UnhandledException +QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent18UnhandledExceptionE) +16 QtConcurrent::UnhandledException::~UnhandledException +24 QtConcurrent::UnhandledException::~UnhandledException +32 std::exception::what +40 QtConcurrent::UnhandledException::raise +48 QtConcurrent::UnhandledException::clone + +Class QtConcurrent::UnhandledException + size=8 align=8 + base size=8 base align=8 +QtConcurrent::UnhandledException (0x7fdfa0bd3850) 0 nearly-empty + vptr=((& QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE) + 16u) + QtConcurrent::Exception (0x7fdfa0bd38c0) 0 nearly-empty + primary-for QtConcurrent::UnhandledException (0x7fdfa0bd3850) + std::exception (0x7fdfa0bd3930) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7fdfa0bd38c0) + +Class QtConcurrent::internal::ExceptionHolder + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionHolder (0x7fdfa0bd3b60) 0 + +Class QtConcurrent::internal::ExceptionStore + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionStore (0x7fdfa0bd3ee0) 0 + +Class QtConcurrent::ResultItem + size=16 align=8 + base size=16 base align=8 +QtConcurrent::ResultItem (0x7fdfa0bd3f50) 0 + +Class QtConcurrent::ResultIteratorBase + size=16 align=8 + base size=12 base align=8 +QtConcurrent::ResultIteratorBase (0x7fdfa0bece70) 0 + +Vtable for QtConcurrent::ResultStoreBase +QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent15ResultStoreBaseE) +16 QtConcurrent::ResultStoreBase::~ResultStoreBase +24 QtConcurrent::ResultStoreBase::~ResultStoreBase + +Class QtConcurrent::ResultStoreBase + size=48 align=8 + base size=44 base align=8 +QtConcurrent::ResultStoreBase (0x7fdfa0bf0a10) 0 + vptr=((& QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE) + 16u) + +Vtable for QFutureInterfaceBase +QFutureInterfaceBase::_ZTV20QFutureInterfaceBase: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QFutureInterfaceBase) +16 QFutureInterfaceBase::~QFutureInterfaceBase +24 QFutureInterfaceBase::~QFutureInterfaceBase + +Class QFutureInterfaceBase + size=16 align=8 + base size=16 base align=8 +QFutureInterfaceBase (0x7fdfa0c30e70) 0 + vptr=((& QFutureInterfaceBase::_ZTV20QFutureInterfaceBase) + 16u) + +Vtable for QThread +QThread::_ZTV7QThread: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QThread) +16 QThread::metaObject +24 QThread::qt_metacast +32 QThread::qt_metacall +40 QThread::~QThread +48 QThread::~QThread +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QThread::run + +Class QThread + size=16 align=8 + base size=16 base align=8 +QThread (0x7fdfa0b14e00) 0 + vptr=((& QThread::_ZTV7QThread) + 16u) + QObject (0x7fdfa0b14e70) 0 + primary-for QThread (0x7fdfa0b14e00) + +Vtable for QThreadPool +QThreadPool::_ZTV11QThreadPool: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QThreadPool) +16 QThreadPool::metaObject +24 QThreadPool::qt_metacast +32 QThreadPool::qt_metacall +40 QThreadPool::~QThreadPool +48 QThreadPool::~QThreadPool +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QThreadPool + size=16 align=8 + base size=16 base align=8 +QThreadPool (0x7fdfa0b47cb0) 0 + vptr=((& QThreadPool::_ZTV11QThreadPool) + 16u) + QObject (0x7fdfa0b47d20) 0 + primary-for QThreadPool (0x7fdfa0b47cb0) + +Class QWaitCondition + size=8 align=8 + base size=8 base align=8 +QWaitCondition (0x7fdfa0b61540) 0 + +Class QtConcurrent::ThreadEngineSemaphore + size=24 align=8 + base size=24 base align=8 +QtConcurrent::ThreadEngineSemaphore (0x7fdfa0b61a80) 0 + +Vtable for QtConcurrent::ThreadEngineBase +QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent16ThreadEngineBaseE) +16 QtConcurrent::ThreadEngineBase::run +24 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +32 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +40 QtConcurrent::ThreadEngineBase::start +48 QtConcurrent::ThreadEngineBase::finish +56 QtConcurrent::ThreadEngineBase::threadFunction +64 QtConcurrent::ThreadEngineBase::shouldStartThread +72 QtConcurrent::ThreadEngineBase::shouldThrottleThread +80 __cxa_pure_virtual + +Class QtConcurrent::ThreadEngineBase + size=64 align=8 + base size=64 base align=8 +QtConcurrent::ThreadEngineBase (0x7fdfa0b7f460) 0 + vptr=((& QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE) + 16u) + QRunnable (0x7fdfa0b7f4d0) 0 + primary-for QtConcurrent::ThreadEngineBase (0x7fdfa0b7f460) + +VTT for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTTN12QtConcurrent12ThreadEngineIvEE: 2u entries +0 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 24u) +8 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 136u) + +Class std::input_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::input_iterator_tag (0x7fdfa09c2850) 0 empty + +Class std::output_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::output_iterator_tag (0x7fdfa09c28c0) 0 empty + +Class std::forward_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::forward_iterator_tag (0x7fdfa09c2930) 0 empty + std::input_iterator_tag (0x7fdfa09c29a0) 0 empty + +Class std::bidirectional_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::bidirectional_iterator_tag (0x7fdfa09c2a10) 0 empty + std::forward_iterator_tag (0x7fdfa09c2a80) 0 empty + std::input_iterator_tag (0x7fdfa09c2af0) 0 empty + +Class std::random_access_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::random_access_iterator_tag (0x7fdfa09c2b60) 0 empty + std::bidirectional_iterator_tag (0x7fdfa09c2bd0) 0 empty + std::forward_iterator_tag (0x7fdfa09c2c40) 0 empty + std::input_iterator_tag (0x7fdfa09c2cb0) 0 empty + +Class std::__true_type + size=1 align=1 + base size=0 base align=1 +std::__true_type (0x7fdfa09d32a0) 0 empty + +Class std::__false_type + size=1 align=1 + base size=0 base align=1 +std::__false_type (0x7fdfa09d3310) 0 empty + +Class lconv + size=96 align=8 + base size=96 base align=8 +lconv (0x7fdfa07b0620) 0 + +Class sched_param + size=4 align=4 + base size=4 base align=4 +sched_param (0x7fdfa07b0a80) 0 + +Class __sched_param + size=4 align=4 + base size=4 base align=4 +__sched_param (0x7fdfa07b0af0) 0 + +Class tm + size=56 align=8 + base size=56 base align=8 +tm (0x7fdfa07b0bd0) 0 + +Class itimerspec + size=32 align=8 + base size=32 base align=8 +itimerspec (0x7fdfa07b0cb0) 0 + +Class _pthread_cleanup_buffer + size=32 align=8 + base size=32 base align=8 +_pthread_cleanup_buffer (0x7fdfa07b0d20) 0 + +Class __pthread_cleanup_frame + size=24 align=8 + base size=24 base align=8 +__pthread_cleanup_frame (0x7fdfa07b0e70) 0 + +Class __pthread_cleanup_class + size=24 align=8 + base size=24 base align=8 +__pthread_cleanup_class (0x7fdfa07b0ee0) 0 + +Vtable for __cxxabiv1::__forced_unwind +__cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN10__cxxabiv115__forced_unwindE) +16 __cxxabiv1::__forced_unwind::~__forced_unwind +24 __cxxabiv1::__forced_unwind::~__forced_unwind +32 __cxa_pure_virtual + +Class __cxxabiv1::__forced_unwind + size=8 align=8 + base size=8 base align=8 +__cxxabiv1::__forced_unwind (0x7fdfa06c5a80) 0 nearly-empty + vptr=((& __cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE) + 16u) + +Class std::locale + size=8 align=8 + base size=8 base align=8 +std::locale (0x7fdfa05795b0) 0 + +Vtable for std::locale::facet +std::locale::facet::_ZTVNSt6locale5facetE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTINSt6locale5facetE) +16 std::locale::facet::~facet +24 std::locale::facet::~facet + +Class std::locale::facet + size=16 align=8 + base size=12 base align=8 +std::locale::facet (0x7fdfa041acb0) 0 + vptr=((& std::locale::facet::_ZTVNSt6locale5facetE) + 16u) + +Class std::locale::id + size=8 align=8 + base size=8 base align=8 +std::locale::id (0x7fdfa042e2a0) 0 + +Class std::locale::_Impl + size=40 align=8 + base size=40 base align=8 +std::locale::_Impl (0x7fdfa042e8c0) 0 + +Vtable for std::ios_base::failure +std::ios_base::failure::_ZTVNSt8ios_base7failureE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTINSt8ios_base7failureE) +16 std::ios_base::failure::~failure +24 std::ios_base::failure::~failure +32 std::ios_base::failure::what + +Class std::ios_base::failure + size=16 align=8 + base size=16 base align=8 +std::ios_base::failure (0x7fdfa02bc070) 0 + vptr=((& std::ios_base::failure::_ZTVNSt8ios_base7failureE) + 16u) + std::exception (0x7fdfa02bc0e0) 0 nearly-empty + primary-for std::ios_base::failure (0x7fdfa02bc070) + +Class std::ios_base::_Callback_list + size=24 align=8 + base size=24 base align=8 +std::ios_base::_Callback_list (0x7fdfa02ca310) 0 + +Class std::ios_base::_Words + size=16 align=8 + base size=16 base align=8 +std::ios_base::_Words (0x7fdfa02cad90) 0 + +Class std::ios_base::Init + size=1 align=1 + base size=0 base align=1 +std::ios_base::Init (0x7fdfa02d14d0) 0 empty + +Vtable for std::ios_base +std::ios_base::_ZTVSt8ios_base: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt8ios_base) +16 std::ios_base::~ios_base +24 std::ios_base::~ios_base + +Class std::ios_base + size=216 align=8 + base size=216 base align=8 +std::ios_base (0x7fdfa02bc000) 0 + vptr=((& std::ios_base::_ZTVSt8ios_base) + 16u) + +Class std::ctype_base + size=1 align=1 + base size=0 base align=1 +std::ctype_base (0x7fdfa034a930) 0 empty + +Class std::__num_base + size=1 align=1 + base size=0 base align=1 +std::__num_base (0x7fdfa026e1c0) 0 empty + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSo: 2u entries +0 ((& std::basic_ostream >::_ZTVSo) + 24u) +8 ((& std::basic_ostream >::_ZTVSo) + 64u) + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSt13basic_ostreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 24u) +8 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 64u) + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSi: 2u entries +0 ((& std::basic_istream >::_ZTVSi) + 24u) +8 ((& std::basic_istream >::_ZTVSi) + 64u) + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSt13basic_istreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 24u) +8 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 64u) + +Construction vtable for std::basic_istream > (0x7fdf9fd9a310 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd0_Si: 10u entries +0 24u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISi) +24 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +32 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +40 -24u +48 (int (*)(...))-0x00000000000000018 +56 (int (*)(...))(& _ZTISi) +64 std::basic_istream >::_ZTv0_n24_NSiD1Ev +72 std::basic_istream >::_ZTv0_n24_NSiD0Ev + +Construction vtable for std::basic_ostream > (0x7fdf9fd9a460 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd16_So: 10u entries +0 8u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISo) +24 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +32 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +40 -8u +48 (int (*)(...))-0x00000000000000008 +56 (int (*)(...))(& _ZTISo) +64 std::basic_ostream >::_ZTv0_n24_NSoD1Ev +72 std::basic_ostream >::_ZTv0_n24_NSoD0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSd: 7u entries +0 ((& std::basic_iostream >::_ZTVSd) + 24u) +8 ((& std::basic_iostream >::_ZTCSd0_Si) + 24u) +16 ((& std::basic_iostream >::_ZTCSd0_Si) + 64u) +24 ((& std::basic_iostream >::_ZTCSd16_So) + 24u) +32 ((& std::basic_iostream >::_ZTCSd16_So) + 64u) +40 ((& std::basic_iostream >::_ZTVSd) + 104u) +48 ((& std::basic_iostream >::_ZTVSd) + 64u) + +Construction vtable for std::basic_istream > (0x7fdf9fd9a620 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E: 10u entries +0 24u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +24 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +32 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +40 -24u +48 (int (*)(...))-0x00000000000000018 +56 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +64 std::basic_istream >::_ZTv0_n24_NSt13basic_istreamIwSt11char_traitsIwEED1Ev +72 std::basic_istream >::_ZTv0_n24_NSt13basic_istreamIwSt11char_traitsIwEED0Ev + +Construction vtable for std::basic_ostream > (0x7fdf9fd9a770 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE16_St13basic_ostreamIwS1_E: 10u entries +0 8u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +24 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +32 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +40 -8u +48 (int (*)(...))-0x00000000000000008 +56 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +64 std::basic_ostream >::_ZTv0_n24_NSt13basic_ostreamIwSt11char_traitsIwEED1Ev +72 std::basic_ostream >::_ZTv0_n24_NSt13basic_ostreamIwSt11char_traitsIwEED0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSt14basic_iostreamIwSt11char_traitsIwEE: 7u entries +0 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 24u) +8 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 24u) +16 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 64u) +24 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE16_St13basic_ostreamIwS1_E) + 24u) +32 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE16_St13basic_ostreamIwS1_E) + 64u) +40 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 104u) +48 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 64u) + +Class QtConcurrent::BlockSizeManager + size=96 align=8 + base size=92 base align=8 +QtConcurrent::BlockSizeManager (0x7fdf9fe04230) 0 + +Vtable for QFutureWatcherBase +QFutureWatcherBase::_ZTV18QFutureWatcherBase: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFutureWatcherBase) +16 QFutureWatcherBase::metaObject +24 QFutureWatcherBase::qt_metacast +32 QFutureWatcherBase::qt_metacall +40 QFutureWatcherBase::~QFutureWatcherBase +48 QFutureWatcherBase::~QFutureWatcherBase +56 QFutureWatcherBase::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QFutureWatcherBase::connectNotify +104 QFutureWatcherBase::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QFutureWatcherBase + size=16 align=8 + base size=16 base align=8 +QFutureWatcherBase (0x7fdf9f9cfbd0) 0 + vptr=((& QFutureWatcherBase::_ZTV18QFutureWatcherBase) + 16u) + QObject (0x7fdf9f9cfc40) 0 + primary-for QFutureWatcherBase (0x7fdf9f9cfbd0) + +Vtable for QFactoryInterface +QFactoryInterface::_ZTV17QFactoryInterface: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QFactoryInterface) +16 QFactoryInterface::~QFactoryInterface +24 QFactoryInterface::~QFactoryInterface +32 __cxa_pure_virtual + +Class QFactoryInterface + size=8 align=8 + base size=8 base align=8 +QFactoryInterface (0x7fdf9f8e6e00) 0 nearly-empty + vptr=((& QFactoryInterface::_ZTV17QFactoryInterface) + 16u) + +Vtable for QTextCodecFactoryInterface +QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QTextCodecFactoryInterface) +16 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +24 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QTextCodecFactoryInterface + size=8 align=8 + base size=8 base align=8 +QTextCodecFactoryInterface (0x7fdf9f909ee0) 0 nearly-empty + vptr=((& QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface) + 16u) + QFactoryInterface (0x7fdf9f909f50) 0 nearly-empty + primary-for QTextCodecFactoryInterface (0x7fdf9f909ee0) + +Vtable for QTextCodecPlugin +QTextCodecPlugin::_ZTV16QTextCodecPlugin: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QTextCodecPlugin) +16 QTextCodecPlugin::metaObject +24 QTextCodecPlugin::qt_metacast +32 QTextCodecPlugin::qt_metacall +40 QTextCodecPlugin::~QTextCodecPlugin +48 QTextCodecPlugin::~QTextCodecPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 QTextCodecPlugin::keys +160 QTextCodecPlugin::create +168 (int (*)(...))-0x00000000000000010 +176 (int (*)(...))(& _ZTI16QTextCodecPlugin) +184 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD1Ev +192 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD0Ev +200 QTextCodecPlugin::_ZThn16_NK16QTextCodecPlugin4keysEv +208 QTextCodecPlugin::_ZThn16_N16QTextCodecPlugin6createERK7QString + +Class QTextCodecPlugin + size=24 align=8 + base size=24 base align=8 +QTextCodecPlugin (0x7fdf9f90de00) 0 + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 16u) + QObject (0x7fdf9f9157e0) 0 + primary-for QTextCodecPlugin (0x7fdf9f90de00) + QTextCodecFactoryInterface (0x7fdf9f915850) 16 nearly-empty + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 184u) + QFactoryInterface (0x7fdf9f9158c0) 16 nearly-empty + primary-for QTextCodecFactoryInterface (0x7fdf9f915850) + +Class QLibraryInfo + size=1 align=1 + base size=0 base align=1 +QLibraryInfo (0x7fdf9f92b700) 0 empty + +Vtable for QTranslator +QTranslator::_ZTV11QTranslator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTranslator) +16 QTranslator::metaObject +24 QTranslator::qt_metacast +32 QTranslator::qt_metacall +40 QTranslator::~QTranslator +48 QTranslator::~QTranslator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTranslator::translate +120 QTranslator::isEmpty + +Class QTranslator + size=16 align=8 + base size=16 base align=8 +QTranslator (0x7fdf9f970000) 0 + vptr=((& QTranslator::_ZTV11QTranslator) + 16u) + QObject (0x7fdf9f970070) 0 + primary-for QTranslator (0x7fdf9f970000) + +Class __exception + size=40 align=8 + base size=40 base align=8 +__exception (0x7fdf9f982f50) 0 + +Vtable for QMimeData +QMimeData::_ZTV9QMimeData: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QMimeData) +16 QMimeData::metaObject +24 QMimeData::qt_metacast +32 QMimeData::qt_metacall +40 QMimeData::~QMimeData +48 QMimeData::~QMimeData +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMimeData::hasFormat +120 QMimeData::formats +128 QMimeData::retrieveData + +Class QMimeData + size=16 align=8 + base size=16 base align=8 +QMimeData (0x7fdf9f7ee150) 0 + vptr=((& QMimeData::_ZTV9QMimeData) + 16u) + QObject (0x7fdf9f7ee1c0) 0 + primary-for QMimeData (0x7fdf9f7ee150) + +Vtable for QEventLoop +QEventLoop::_ZTV10QEventLoop: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QEventLoop) +16 QEventLoop::metaObject +24 QEventLoop::qt_metacast +32 QEventLoop::qt_metacall +40 QEventLoop::~QEventLoop +48 QEventLoop::~QEventLoop +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QEventLoop + size=16 align=8 + base size=16 base align=8 +QEventLoop (0x7fdf9f8059a0) 0 + vptr=((& QEventLoop::_ZTV10QEventLoop) + 16u) + QObject (0x7fdf9f805a10) 0 + primary-for QEventLoop (0x7fdf9f8059a0) + +Vtable for QEvent +QEvent::_ZTV6QEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QEvent) +16 QEvent::~QEvent +24 QEvent::~QEvent + +Class QEvent + size=24 align=8 + base size=20 base align=8 +QEvent (0x7fdf9f846310) 0 + vptr=((& QEvent::_ZTV6QEvent) + 16u) + +Vtable for QTimerEvent +QTimerEvent::_ZTV11QTimerEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTimerEvent) +16 QTimerEvent::~QTimerEvent +24 QTimerEvent::~QTimerEvent + +Class QTimerEvent + size=24 align=8 + base size=24 base align=8 +QTimerEvent (0x7fdf9f85fee0) 0 + vptr=((& QTimerEvent::_ZTV11QTimerEvent) + 16u) + QEvent (0x7fdf9f85ff50) 0 + primary-for QTimerEvent (0x7fdf9f85fee0) + +Vtable for QChildEvent +QChildEvent::_ZTV11QChildEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QChildEvent) +16 QChildEvent::~QChildEvent +24 QChildEvent::~QChildEvent + +Class QChildEvent + size=32 align=8 + base size=32 base align=8 +QChildEvent (0x7fdf9f862380) 0 + vptr=((& QChildEvent::_ZTV11QChildEvent) + 16u) + QEvent (0x7fdf9f8623f0) 0 + primary-for QChildEvent (0x7fdf9f862380) + +Vtable for QCustomEvent +QCustomEvent::_ZTV12QCustomEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QCustomEvent) +16 QCustomEvent::~QCustomEvent +24 QCustomEvent::~QCustomEvent + +Class QCustomEvent + size=24 align=8 + base size=20 base align=8 +QCustomEvent (0x7fdf9f873620) 0 + vptr=((& QCustomEvent::_ZTV12QCustomEvent) + 16u) + QEvent (0x7fdf9f873690) 0 + primary-for QCustomEvent (0x7fdf9f873620) + +Vtable for QDynamicPropertyChangeEvent +QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QDynamicPropertyChangeEvent) +16 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent +24 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent + +Class QDynamicPropertyChangeEvent + size=32 align=8 + base size=32 base align=8 +QDynamicPropertyChangeEvent (0x7fdf9f873e00) 0 + vptr=((& QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent) + 16u) + QEvent (0x7fdf9f873e70) 0 + primary-for QDynamicPropertyChangeEvent (0x7fdf9f873e00) + +Vtable for QCoreApplication +QCoreApplication::_ZTV16QCoreApplication: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QCoreApplication) +16 QCoreApplication::metaObject +24 QCoreApplication::qt_metacast +32 QCoreApplication::qt_metacall +40 QCoreApplication::~QCoreApplication +48 QCoreApplication::~QCoreApplication +56 QCoreApplication::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCoreApplication::notify +120 QCoreApplication::compressEvent + +Class QCoreApplication + size=16 align=8 + base size=16 base align=8 +QCoreApplication (0x7fdf9f884230) 0 + vptr=((& QCoreApplication::_ZTV16QCoreApplication) + 16u) + QObject (0x7fdf9f8842a0) 0 + primary-for QCoreApplication (0x7fdf9f884230) + +Vtable for QSharedMemory +QSharedMemory::_ZTV13QSharedMemory: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSharedMemory) +16 QSharedMemory::metaObject +24 QSharedMemory::qt_metacast +32 QSharedMemory::qt_metacall +40 QSharedMemory::~QSharedMemory +48 QSharedMemory::~QSharedMemory +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSharedMemory + size=16 align=8 + base size=16 base align=8 +QSharedMemory (0x7fdf9f6afa80) 0 + vptr=((& QSharedMemory::_ZTV13QSharedMemory) + 16u) + QObject (0x7fdf9f6afaf0) 0 + primary-for QSharedMemory (0x7fdf9f6afa80) + +Class QModelIndex + size=24 align=8 + base size=24 base align=8 +QModelIndex (0x7fdf9f6cf850) 0 + +Class QPersistentModelIndex + size=8 align=8 + base size=8 base align=8 +QPersistentModelIndex (0x7fdf9f6f7310) 0 + +Vtable for QAbstractItemModel +QAbstractItemModel::_ZTV18QAbstractItemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractItemModel) +16 QAbstractItemModel::metaObject +24 QAbstractItemModel::qt_metacast +32 QAbstractItemModel::qt_metacall +40 QAbstractItemModel::~QAbstractItemModel +48 QAbstractItemModel::~QAbstractItemModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractItemModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractItemModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractItemModel + size=16 align=8 + base size=16 base align=8 +QAbstractItemModel (0x7fdf9f7055b0) 0 + vptr=((& QAbstractItemModel::_ZTV18QAbstractItemModel) + 16u) + QObject (0x7fdf9f705620) 0 + primary-for QAbstractItemModel (0x7fdf9f7055b0) + +Vtable for QAbstractTableModel +QAbstractTableModel::_ZTV19QAbstractTableModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractTableModel) +16 QAbstractTableModel::metaObject +24 QAbstractTableModel::qt_metacast +32 QAbstractTableModel::qt_metacall +40 QAbstractTableModel::~QAbstractTableModel +48 QAbstractTableModel::~QAbstractTableModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractTableModel::index +120 QAbstractTableModel::parent +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractTableModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractTableModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractTableModel + size=16 align=8 + base size=16 base align=8 +QAbstractTableModel (0x7fdf9f755930) 0 + vptr=((& QAbstractTableModel::_ZTV19QAbstractTableModel) + 16u) + QAbstractItemModel (0x7fdf9f7559a0) 0 + primary-for QAbstractTableModel (0x7fdf9f755930) + QObject (0x7fdf9f755a10) 0 + primary-for QAbstractItemModel (0x7fdf9f7559a0) + +Vtable for QAbstractListModel +QAbstractListModel::_ZTV18QAbstractListModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractListModel) +16 QAbstractListModel::metaObject +24 QAbstractListModel::qt_metacast +32 QAbstractListModel::qt_metacall +40 QAbstractListModel::~QAbstractListModel +48 QAbstractListModel::~QAbstractListModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractListModel::index +120 QAbstractListModel::parent +128 __cxa_pure_virtual +136 QAbstractListModel::columnCount +144 QAbstractListModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractListModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractListModel + size=16 align=8 + base size=16 base align=8 +QAbstractListModel (0x7fdf9f763ee0) 0 + vptr=((& QAbstractListModel::_ZTV18QAbstractListModel) + 16u) + QAbstractItemModel (0x7fdf9f763f50) 0 + primary-for QAbstractListModel (0x7fdf9f763ee0) + QObject (0x7fdf9f763230) 0 + primary-for QAbstractItemModel (0x7fdf9f763f50) + +Vtable for QSignalMapper +QSignalMapper::_ZTV13QSignalMapper: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSignalMapper) +16 QSignalMapper::metaObject +24 QSignalMapper::qt_metacast +32 QSignalMapper::qt_metacall +40 QSignalMapper::~QSignalMapper +48 QSignalMapper::~QSignalMapper +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSignalMapper + size=16 align=8 + base size=16 base align=8 +QSignalMapper (0x7fdf9f5a4000) 0 + vptr=((& QSignalMapper::_ZTV13QSignalMapper) + 16u) + QObject (0x7fdf9f5a4070) 0 + primary-for QSignalMapper (0x7fdf9f5a4000) + +Vtable for QObjectCleanupHandler +QObjectCleanupHandler::_ZTV21QObjectCleanupHandler: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QObjectCleanupHandler) +16 QObjectCleanupHandler::metaObject +24 QObjectCleanupHandler::qt_metacast +32 QObjectCleanupHandler::qt_metacall +40 QObjectCleanupHandler::~QObjectCleanupHandler +48 QObjectCleanupHandler::~QObjectCleanupHandler +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObjectCleanupHandler + size=24 align=8 + base size=24 base align=8 +QObjectCleanupHandler (0x7fdf9f5bc3f0) 0 + vptr=((& QObjectCleanupHandler::_ZTV21QObjectCleanupHandler) + 16u) + QObject (0x7fdf9f5bc460) 0 + primary-for QObjectCleanupHandler (0x7fdf9f5bc3f0) + +Class QBasicTimer + size=4 align=4 + base size=4 base align=4 +QBasicTimer (0x7fdf9f5cc540) 0 + +Vtable for QSocketNotifier +QSocketNotifier::_ZTV15QSocketNotifier: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSocketNotifier) +16 QSocketNotifier::metaObject +24 QSocketNotifier::qt_metacast +32 QSocketNotifier::qt_metacall +40 QSocketNotifier::~QSocketNotifier +48 QSocketNotifier::~QSocketNotifier +56 QSocketNotifier::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSocketNotifier + size=32 align=8 + base size=25 base align=8 +QSocketNotifier (0x7fdf9f5d7930) 0 + vptr=((& QSocketNotifier::_ZTV15QSocketNotifier) + 16u) + QObject (0x7fdf9f5d79a0) 0 + primary-for QSocketNotifier (0x7fdf9f5d7930) + +Vtable for QTimer +QTimer::_ZTV6QTimer: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QTimer) +16 QTimer::metaObject +24 QTimer::qt_metacast +32 QTimer::qt_metacall +40 QTimer::~QTimer +48 QTimer::~QTimer +56 QObject::event +64 QObject::eventFilter +72 QTimer::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTimer + size=32 align=8 + base size=29 base align=8 +QTimer (0x7fdf9f5f4cb0) 0 + vptr=((& QTimer::_ZTV6QTimer) + 16u) + QObject (0x7fdf9f5f4d20) 0 + primary-for QTimer (0x7fdf9f5f4cb0) + +Vtable for QAbstractEventDispatcher +QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QAbstractEventDispatcher) +16 QAbstractEventDispatcher::metaObject +24 QAbstractEventDispatcher::qt_metacast +32 QAbstractEventDispatcher::qt_metacall +40 QAbstractEventDispatcher::~QAbstractEventDispatcher +48 QAbstractEventDispatcher::~QAbstractEventDispatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 QAbstractEventDispatcher::startingUp +208 QAbstractEventDispatcher::closingDown + +Class QAbstractEventDispatcher + size=16 align=8 + base size=16 base align=8 +QAbstractEventDispatcher (0x7fdf9f6182a0) 0 + vptr=((& QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher) + 16u) + QObject (0x7fdf9f618310) 0 + primary-for QAbstractEventDispatcher (0x7fdf9f6182a0) + +Class QMetaMethod + size=16 align=8 + base size=12 base align=8 +QMetaMethod (0x7fdf9f632150) 0 + +Class QMetaEnum + size=16 align=8 + base size=12 base align=8 +QMetaEnum (0x7fdf9f64e5b0) 0 + +Class QMetaProperty + size=32 align=8 + base size=32 base align=8 +QMetaProperty (0x7fdf9f659310) 0 + +Class QMetaClassInfo + size=16 align=8 + base size=12 base align=8 +QMetaClassInfo (0x7fdf9f6599a0) 0 + +Class QSystemSemaphore + size=8 align=8 + base size=8 base align=8 +QSystemSemaphore (0x7fdf9f66d4d0) 0 + +Vtable for QLibrary +QLibrary::_ZTV8QLibrary: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QLibrary) +16 QLibrary::metaObject +24 QLibrary::qt_metacast +32 QLibrary::qt_metacall +40 QLibrary::~QLibrary +48 QLibrary::~QLibrary +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QLibrary + size=32 align=8 + base size=25 base align=8 +QLibrary (0x7fdf9f66de00) 0 + vptr=((& QLibrary::_ZTV8QLibrary) + 16u) + QObject (0x7fdf9f66de70) 0 + primary-for QLibrary (0x7fdf9f66de00) + +Vtable for QPluginLoader +QPluginLoader::_ZTV13QPluginLoader: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QPluginLoader) +16 QPluginLoader::metaObject +24 QPluginLoader::qt_metacast +32 QPluginLoader::qt_metacall +40 QPluginLoader::~QPluginLoader +48 QPluginLoader::~QPluginLoader +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QPluginLoader + size=32 align=8 + base size=25 base align=8 +QPluginLoader (0x7fdf9f4b18c0) 0 + vptr=((& QPluginLoader::_ZTV13QPluginLoader) + 16u) + QObject (0x7fdf9f4b1930) 0 + primary-for QPluginLoader (0x7fdf9f4b18c0) + +Class QUuid + size=16 align=4 + base size=16 base align=4 +QUuid (0x7fdf9f4d7070) 0 + +Class QSemaphore + size=8 align=8 + base size=8 base align=8 +QSemaphore (0x7fdf9f4f39a0) 0 + +Class QThreadStorageData + size=4 align=4 + base size=4 base align=4 +QThreadStorageData (0x7fdf9f4f3ee0) 0 + +Class QReadWriteLock + size=8 align=8 + base size=8 base align=8 +QReadWriteLock (0x7fdf9f506690) 0 + +Class QReadLocker + size=8 align=8 + base size=8 base align=8 +QReadLocker (0x7fdf9f506d20) 0 + +Class QWriteLocker + size=8 align=8 + base size=8 base align=8 +QWriteLocker (0x7fdf9f5350e0) 0 + +Class QScriptValue + size=8 align=8 + base size=8 base align=8 +QScriptValue (0x7fdf9f547460) 0 + +Vtable for QScriptClassPropertyIterator +QScriptClassPropertyIterator::_ZTV28QScriptClassPropertyIterator: 13u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI28QScriptClassPropertyIterator) +16 QScriptClassPropertyIterator::~QScriptClassPropertyIterator +24 QScriptClassPropertyIterator::~QScriptClassPropertyIterator +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 QScriptClassPropertyIterator::id +96 QScriptClassPropertyIterator::flags + +Class QScriptClassPropertyIterator + size=16 align=8 + base size=16 base align=8 +QScriptClassPropertyIterator (0x7fdf9f3f3310) 0 + vptr=((& QScriptClassPropertyIterator::_ZTV28QScriptClassPropertyIterator) + 16u) + +Vtable for QScriptEngineAgent +QScriptEngineAgent::_ZTV18QScriptEngineAgent: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QScriptEngineAgent) +16 QScriptEngineAgent::~QScriptEngineAgent +24 QScriptEngineAgent::~QScriptEngineAgent +32 QScriptEngineAgent::scriptLoad +40 QScriptEngineAgent::scriptUnload +48 QScriptEngineAgent::contextPush +56 QScriptEngineAgent::contextPop +64 QScriptEngineAgent::functionEntry +72 QScriptEngineAgent::functionExit +80 QScriptEngineAgent::positionChange +88 QScriptEngineAgent::exceptionThrow +96 QScriptEngineAgent::exceptionCatch +104 QScriptEngineAgent::supportsExtension +112 QScriptEngineAgent::extension + +Class QScriptEngineAgent + size=16 align=8 + base size=16 base align=8 +QScriptEngineAgent (0x7fdf9f3f3ee0) 0 + vptr=((& QScriptEngineAgent::_ZTV18QScriptEngineAgent) + 16u) + +Vtable for QScriptClass +QScriptClass::_ZTV12QScriptClass: 13u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QScriptClass) +16 QScriptClass::~QScriptClass +24 QScriptClass::~QScriptClass +32 QScriptClass::queryProperty +40 QScriptClass::property +48 QScriptClass::setProperty +56 QScriptClass::propertyFlags +64 QScriptClass::newIterator +72 QScriptClass::prototype +80 QScriptClass::name +88 QScriptClass::supportsExtension +96 QScriptClass::extension + +Class QScriptClass + size=16 align=8 + base size=16 base align=8 +QScriptClass (0x7fdf9f404a80) 0 + vptr=((& QScriptClass::_ZTV12QScriptClass) + 16u) + +Class QScriptContext + size=8 align=8 + base size=8 base align=8 +QScriptContext (0x7fdf9f439850) 0 + +Class QScriptString + size=8 align=8 + base size=8 base align=8 +QScriptString (0x7fdf9f4525b0) 0 + +Class QScriptSyntaxCheckResult + size=8 align=8 + base size=8 base align=8 +QScriptSyntaxCheckResult (0x7fdf9f45e1c0) 0 + +Vtable for QScriptEngine +QScriptEngine::_ZTV13QScriptEngine: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QScriptEngine) +16 QScriptEngine::metaObject +24 QScriptEngine::qt_metacast +32 QScriptEngine::qt_metacall +40 QScriptEngine::~QScriptEngine +48 QScriptEngine::~QScriptEngine +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QScriptEngine + size=16 align=8 + base size=16 base align=8 +QScriptEngine (0x7fdf9f45ed20) 0 + vptr=((& QScriptEngine::_ZTV13QScriptEngine) + 16u) + QObject (0x7fdf9f45ed90) 0 + primary-for QScriptEngine (0x7fdf9f45ed20) + +Vtable for QScriptExtensionInterface +QScriptExtensionInterface::_ZTV25QScriptExtensionInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QScriptExtensionInterface) +16 QScriptExtensionInterface::~QScriptExtensionInterface +24 QScriptExtensionInterface::~QScriptExtensionInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QScriptExtensionInterface + size=8 align=8 + base size=8 base align=8 +QScriptExtensionInterface (0x7fdf9f2e25b0) 0 nearly-empty + vptr=((& QScriptExtensionInterface::_ZTV25QScriptExtensionInterface) + 16u) + QFactoryInterface (0x7fdf9f2e2620) 0 nearly-empty + primary-for QScriptExtensionInterface (0x7fdf9f2e25b0) + +Vtable for QScriptExtensionPlugin +QScriptExtensionPlugin::_ZTV22QScriptExtensionPlugin: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QScriptExtensionPlugin) +16 QScriptExtensionPlugin::metaObject +24 QScriptExtensionPlugin::qt_metacast +32 QScriptExtensionPlugin::qt_metacall +40 QScriptExtensionPlugin::~QScriptExtensionPlugin +48 QScriptExtensionPlugin::~QScriptExtensionPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI22QScriptExtensionPlugin) +144 QScriptExtensionPlugin::_ZThn16_N22QScriptExtensionPluginD1Ev +152 QScriptExtensionPlugin::_ZThn16_N22QScriptExtensionPluginD0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QScriptExtensionPlugin + size=24 align=8 + base size=24 base align=8 +QScriptExtensionPlugin (0x7fdf9f2d3b80) 0 + vptr=((& QScriptExtensionPlugin::_ZTV22QScriptExtensionPlugin) + 16u) + QObject (0x7fdf9f2e2e70) 0 + primary-for QScriptExtensionPlugin (0x7fdf9f2d3b80) + QScriptExtensionInterface (0x7fdf9f2e2ee0) 16 nearly-empty + vptr=((& QScriptExtensionPlugin::_ZTV22QScriptExtensionPlugin) + 144u) + QFactoryInterface (0x7fdf9f2e2f50) 16 nearly-empty + primary-for QScriptExtensionInterface (0x7fdf9f2e2ee0) + +Class QScriptable + size=8 align=8 + base size=8 base align=8 +QScriptable (0x7fdf9f2f0e00) 0 + +Class QScriptValueIterator + size=8 align=8 + base size=8 base align=8 +QScriptValueIterator (0x7fdf9f301770) 0 + +Class QScriptContextInfo + size=8 align=8 + base size=8 base align=8 +QScriptContextInfo (0x7fdf9f30d460) 0 + diff --git a/tests/auto/bic/data/QtScript.4.6.0.linux-gcc-amd64.txt b/tests/auto/bic/data/QtScript.4.6.0.linux-gcc-amd64.txt new file mode 100644 index 0000000..3cc35fa --- /dev/null +++ b/tests/auto/bic/data/QtScript.4.6.0.linux-gcc-amd64.txt @@ -0,0 +1,2811 @@ +Class QSysInfo + size=1 align=1 + base size=0 base align=1 +QSysInfo (0x7fea87567230) 0 empty + +Class QBool + size=1 align=1 + base size=1 base align=1 +QBool (0x7fea87567e70) 0 + +Class qIsNull(double)::U + size=8 align=8 + base size=8 base align=8 +qIsNull(double)::U (0x7fea86d79540) 0 + +Class qIsNull(float)::U + size=4 align=4 + base size=4 base align=4 +qIsNull(float)::U (0x7fea86d797e0) 0 + +Class QFlag + size=4 align=4 + base size=4 base align=4 +QFlag (0x7fea86db2690) 0 + +Class QIncompatibleFlag + size=4 align=4 + base size=4 base align=4 +QIncompatibleFlag (0x7fea86db2e70) 0 + +Class QLatin1Char + size=1 align=1 + base size=1 base align=1 +QLatin1Char (0x7fea86de15b0) 0 + +Class QChar + size=2 align=2 + base size=2 base align=2 +QChar (0x7fea86e08150) 0 + +Class QBasicAtomicInt + size=4 align=4 + base size=4 base align=4 +QBasicAtomicInt (0x7fea86c6f310) 0 + +Class QAtomicInt + size=4 align=4 + base size=4 base align=4 +QAtomicInt (0x7fea86cadcb0) 0 + QBasicAtomicInt (0x7fea86cadd20) 0 + +Class QInternal + size=1 align=1 + base size=0 base align=1 +QInternal (0x7fea86b014d0) 0 empty + +Class __locale_struct + size=232 align=8 + base size=232 base align=8 +__locale_struct (0x7fea86b01700) 0 + +Class QByteArray::Data + size=32 align=8 + base size=32 base align=8 +QByteArray::Data (0x7fea86b3caf0) 0 + +Class QByteArray + size=8 align=8 + base size=8 base align=8 +QByteArray (0x7fea86b3ca80) 0 + +Class QByteRef + size=16 align=8 + base size=12 base align=8 +QByteRef (0x7fea869e0380) 0 + +Class QString::Null + size=1 align=1 + base size=0 base align=1 +QString::Null (0x7fea868dfd20) 0 empty + +Class QString::Data + size=32 align=8 + base size=32 base align=8 +QString::Data (0x7fea868f85b0) 0 + +Class QString + size=8 align=8 + base size=8 base align=8 +QString (0x7fea8685abd0) 0 + +Class QLatin1String + size=8 align=8 + base size=8 base align=8 +QLatin1String (0x7fea867d09a0) 0 + +Class QCharRef + size=16 align=8 + base size=12 base align=8 +QCharRef (0x7fea8666f000) 0 + +Class QConstString + size=8 align=8 + base size=8 base align=8 +QConstString (0x7fea865b88c0) 0 + QString (0x7fea865b8930) 0 + +Class QStringRef + size=16 align=8 + base size=16 base align=8 +QStringRef (0x7fea865de310) 0 + +Class QGenericArgument + size=16 align=8 + base size=16 base align=8 +QGenericArgument (0x7fea86415700) 0 + +Class QGenericReturnArgument + size=16 align=8 + base size=16 base align=8 +QGenericReturnArgument (0x7fea864202a0) 0 + QGenericArgument (0x7fea86420310) 0 + +Class QMetaObject + size=32 align=8 + base size=32 base align=8 +QMetaObject (0x7fea86420b60) 0 + +Class QMetaObjectExtraData + size=16 align=8 + base size=16 base align=8 +QMetaObjectExtraData (0x7fea8644abd0) 0 + +Vtable for std::exception +std::exception::_ZTVSt9exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9exception) +16 std::exception::~exception +24 std::exception::~exception +32 std::exception::what + +Class std::exception + size=8 align=8 + base size=8 base align=8 +std::exception (0x7fea8649e1c0) 0 nearly-empty + vptr=((& std::exception::_ZTVSt9exception) + 16u) + +Vtable for std::bad_exception +std::bad_exception::_ZTVSt13bad_exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13bad_exception) +16 std::bad_exception::~bad_exception +24 std::bad_exception::~bad_exception +32 std::bad_exception::what + +Class std::bad_exception + size=8 align=8 + base size=8 base align=8 +std::bad_exception (0x7fea8649e770) 0 nearly-empty + vptr=((& std::bad_exception::_ZTVSt13bad_exception) + 16u) + std::exception (0x7fea8649e7e0) 0 nearly-empty + primary-for std::bad_exception (0x7fea8649e770) + +Vtable for std::bad_alloc +std::bad_alloc::_ZTVSt9bad_alloc: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9bad_alloc) +16 std::bad_alloc::~bad_alloc +24 std::bad_alloc::~bad_alloc +32 std::bad_alloc::what + +Class std::bad_alloc + size=8 align=8 + base size=8 base align=8 +std::bad_alloc (0x7fea8649e930) 0 nearly-empty + vptr=((& std::bad_alloc::_ZTVSt9bad_alloc) + 16u) + std::exception (0x7fea864b3000) 0 nearly-empty + primary-for std::bad_alloc (0x7fea8649e930) + +Class std::nothrow_t + size=1 align=1 + base size=0 base align=1 +std::nothrow_t (0x7fea864b3850) 0 empty + +Class QListData::Data + size=32 align=8 + base size=32 base align=8 +QListData::Data (0x7fea864b3d90) 0 + +Class QListData + size=8 align=8 + base size=8 base align=8 +QListData (0x7fea864b3d20) 0 + +Class QScopedPointerPodDeleter + size=1 align=1 + base size=0 base align=1 +QScopedPointerPodDeleter (0x7fea863dd850) 0 empty + +Vtable for QObjectData +QObjectData::_ZTV11QObjectData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QObjectData) +16 __cxa_pure_virtual +24 __cxa_pure_virtual + +Class QObjectData + size=48 align=8 + base size=48 base align=8 +QObjectData (0x7fea863fd2a0) 0 + vptr=((& QObjectData::_ZTV11QObjectData) + 16u) + +Vtable for QObject +QObject::_ZTV7QObject: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QObject) +16 QObject::metaObject +24 QObject::qt_metacast +32 QObject::qt_metacall +40 QObject::~QObject +48 QObject::~QObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObject + size=16 align=8 + base size=16 base align=8 +QObject (0x7fea863fd5b0) 0 + vptr=((& QObject::_ZTV7QObject) + 16u) + +Vtable for QObjectUserData +QObjectUserData::_ZTV15QObjectUserData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QObjectUserData) +16 QObjectUserData::~QObjectUserData +24 QObjectUserData::~QObjectUserData + +Class QObjectUserData + size=8 align=8 + base size=8 base align=8 +QObjectUserData (0x7fea86272b60) 0 nearly-empty + vptr=((& QObjectUserData::_ZTV15QObjectUserData) + 16u) + +Vtable for QIODevice +QIODevice::_ZTV9QIODevice: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QIODevice) +16 QIODevice::metaObject +24 QIODevice::qt_metacast +32 QIODevice::qt_metacall +40 QIODevice::~QIODevice +48 QIODevice::~QIODevice +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QIODevice::isSequential +120 QIODevice::open +128 QIODevice::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QIODevice::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 __cxa_pure_virtual +224 QIODevice::readLineData +232 __cxa_pure_virtual + +Class QIODevice + size=16 align=8 + base size=16 base align=8 +QIODevice (0x7fea86283150) 0 + vptr=((& QIODevice::_ZTV9QIODevice) + 16u) + QObject (0x7fea862831c0) 0 + primary-for QIODevice (0x7fea86283150) + +Class _IO_marker + size=24 align=8 + base size=24 base align=8 +_IO_marker (0x7fea862e6cb0) 0 + +Class _IO_FILE + size=216 align=8 + base size=216 base align=8 +_IO_FILE (0x7fea862e6d20) 0 + +Vtable for QFile +QFile::_ZTV5QFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QFile) +16 QFile::metaObject +24 QFile::qt_metacast +32 QFile::qt_metacall +40 QFile::~QFile +48 QFile::~QFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QFile::fileEngine + +Class QFile + size=16 align=8 + base size=16 base align=8 +QFile (0x7fea862e6e00) 0 + vptr=((& QFile::_ZTV5QFile) + 16u) + QIODevice (0x7fea862e6e70) 0 + primary-for QFile (0x7fea862e6e00) + QObject (0x7fea862e6ee0) 0 + primary-for QIODevice (0x7fea862e6e70) + +Class QFileInfo + size=8 align=8 + base size=8 base align=8 +QFileInfo (0x7fea86188070) 0 + +Vtable for QDataStream +QDataStream::_ZTV11QDataStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QDataStream) +16 QDataStream::~QDataStream +24 QDataStream::~QDataStream + +Class QDataStream + size=40 align=8 + base size=40 base align=8 +QDataStream (0x7fea861dca10) 0 + vptr=((& QDataStream::_ZTV11QDataStream) + 16u) + +Class QRegExp + size=8 align=8 + base size=8 base align=8 +QRegExp (0x7fea86045e70) 0 + +Class QStringMatcher::Data + size=272 align=8 + base size=272 base align=8 +QStringMatcher::Data (0x7fea860ad2a0) 0 + +Class QStringMatcher + size=1048 align=8 + base size=1048 base align=8 +QStringMatcher (0x7fea860a1c40) 0 + +Class QStringList + size=8 align=8 + base size=8 base align=8 +QStringList (0x7fea860ad850) 0 + QList (0x7fea860ad8c0) 0 + +Class QDir + size=8 align=8 + base size=8 base align=8 +QDir (0x7fea85f4b4d0) 0 + +Class QAbstractFileEngine::ExtensionOption + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionOption (0x7fea85ff38c0) 0 empty + +Class QAbstractFileEngine::ExtensionReturn + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionReturn (0x7fea85ff3930) 0 empty + +Class QAbstractFileEngine::MapExtensionOption + size=24 align=8 + base size=20 base align=8 +QAbstractFileEngine::MapExtensionOption (0x7fea85ff39a0) 0 + QAbstractFileEngine::ExtensionOption (0x7fea85ff3a10) 0 empty + +Class QAbstractFileEngine::MapExtensionReturn + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::MapExtensionReturn (0x7fea85ff3bd0) 0 + QAbstractFileEngine::ExtensionReturn (0x7fea85ff3c40) 0 empty + +Class QAbstractFileEngine::UnMapExtensionOption + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::UnMapExtensionOption (0x7fea85ff3cb0) 0 + QAbstractFileEngine::ExtensionOption (0x7fea85ff3d20) 0 empty + +Vtable for QAbstractFileEngine +QAbstractFileEngine::_ZTV19QAbstractFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractFileEngine) +16 QAbstractFileEngine::~QAbstractFileEngine +24 QAbstractFileEngine::~QAbstractFileEngine +32 QAbstractFileEngine::open +40 QAbstractFileEngine::close +48 QAbstractFileEngine::flush +56 QAbstractFileEngine::size +64 QAbstractFileEngine::pos +72 QAbstractFileEngine::seek +80 QAbstractFileEngine::isSequential +88 QAbstractFileEngine::remove +96 QAbstractFileEngine::copy +104 QAbstractFileEngine::rename +112 QAbstractFileEngine::link +120 QAbstractFileEngine::mkdir +128 QAbstractFileEngine::rmdir +136 QAbstractFileEngine::setSize +144 QAbstractFileEngine::caseSensitive +152 QAbstractFileEngine::isRelativePath +160 QAbstractFileEngine::entryList +168 QAbstractFileEngine::fileFlags +176 QAbstractFileEngine::setPermissions +184 QAbstractFileEngine::fileName +192 QAbstractFileEngine::ownerId +200 QAbstractFileEngine::owner +208 QAbstractFileEngine::fileTime +216 QAbstractFileEngine::setFileName +224 QAbstractFileEngine::handle +232 QAbstractFileEngine::beginEntryList +240 QAbstractFileEngine::endEntryList +248 QAbstractFileEngine::read +256 QAbstractFileEngine::readLine +264 QAbstractFileEngine::write +272 QAbstractFileEngine::extension +280 QAbstractFileEngine::supportsExtension + +Class QAbstractFileEngine + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngine (0x7fea85fd8850) 0 + vptr=((& QAbstractFileEngine::_ZTV19QAbstractFileEngine) + 16u) + +Vtable for QAbstractFileEngineHandler +QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QAbstractFileEngineHandler) +16 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +24 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +32 __cxa_pure_virtual + +Class QAbstractFileEngineHandler + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngineHandler (0x7fea85e2abd0) 0 nearly-empty + vptr=((& QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler) + 16u) + +Vtable for QAbstractFileEngineIterator +QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QAbstractFileEngineIterator) +16 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +24 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QAbstractFileEngineIterator::currentFileInfo +64 QAbstractFileEngineIterator::entryInfo + +Class QAbstractFileEngineIterator + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngineIterator (0x7fea85e2ad90) 0 + vptr=((& QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator) + 16u) + +Vtable for QBuffer +QBuffer::_ZTV7QBuffer: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QBuffer) +16 QBuffer::metaObject +24 QBuffer::qt_metacast +32 QBuffer::qt_metacall +40 QBuffer::~QBuffer +48 QBuffer::~QBuffer +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QBuffer::connectNotify +104 QBuffer::disconnectNotify +112 QIODevice::isSequential +120 QBuffer::open +128 QBuffer::close +136 QBuffer::pos +144 QBuffer::size +152 QBuffer::seek +160 QBuffer::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QBuffer::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QBuffer::readData +224 QIODevice::readLineData +232 QBuffer::writeData + +Class QBuffer + size=16 align=8 + base size=16 base align=8 +QBuffer (0x7fea85e3d690) 0 + vptr=((& QBuffer::_ZTV7QBuffer) + 16u) + QIODevice (0x7fea85e3d700) 0 + primary-for QBuffer (0x7fea85e3d690) + QObject (0x7fea85e3d770) 0 + primary-for QIODevice (0x7fea85e3d700) + +Class QHashData::Node + size=16 align=8 + base size=16 base align=8 +QHashData::Node (0x7fea85e7ee00) 0 + +Class QHashData + size=40 align=8 + base size=40 base align=8 +QHashData (0x7fea85e7ed90) 0 + +Class QHashDummyValue + size=1 align=1 + base size=0 base align=1 +QHashDummyValue (0x7fea85ea1150) 0 empty + +Class QMapData::Node + size=16 align=8 + base size=16 base align=8 +QMapData::Node (0x7fea85da0a80) 0 + +Class QMapData + size=128 align=8 + base size=128 base align=8 +QMapData (0x7fea85da0a10) 0 + +Vtable for QSystemLocale +QSystemLocale::_ZTV13QSystemLocale: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSystemLocale) +16 QSystemLocale::~QSystemLocale +24 QSystemLocale::~QSystemLocale +32 QSystemLocale::query +40 QSystemLocale::fallbackLocale + +Class QSystemLocale + size=8 align=8 + base size=8 base align=8 +QSystemLocale (0x7fea85cde690) 0 nearly-empty + vptr=((& QSystemLocale::_ZTV13QSystemLocale) + 16u) + +Class QLocale::Data + size=4 align=2 + base size=4 base align=2 +QLocale::Data (0x7fea85b26d90) 0 + +Class QLocale + size=8 align=8 + base size=8 base align=8 +QLocale (0x7fea85cdeaf0) 0 + +Class QTextCodec::ConverterState + size=32 align=8 + base size=32 base align=8 +QTextCodec::ConverterState (0x7fea85b7ebd0) 0 + +Vtable for QTextCodec +QTextCodec::_ZTV10QTextCodec: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextCodec) +16 __cxa_pure_virtual +24 QTextCodec::aliases +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QTextCodec::~QTextCodec +64 QTextCodec::~QTextCodec + +Class QTextCodec + size=8 align=8 + base size=8 base align=8 +QTextCodec (0x7fea85b6f460) 0 nearly-empty + vptr=((& QTextCodec::_ZTV10QTextCodec) + 16u) + +Class QTextEncoder + size=40 align=8 + base size=40 base align=8 +QTextEncoder (0x7fea85bf1150) 0 + +Class QTextDecoder + size=40 align=8 + base size=40 base align=8 +QTextDecoder (0x7fea85bf1f50) 0 + +Vtable for QTextStream +QTextStream::_ZTV11QTextStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTextStream) +16 QTextStream::~QTextStream +24 QTextStream::~QTextStream + +Class QTextStream + size=16 align=8 + base size=16 base align=8 +QTextStream (0x7fea85bf9d90) 0 + vptr=((& QTextStream::_ZTV11QTextStream) + 16u) + +Class QTextStreamManipulator + size=40 align=8 + base size=38 base align=8 +QTextStreamManipulator (0x7fea85a72a80) 0 + +Vtable for QTextIStream +QTextIStream::_ZTV12QTextIStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextIStream) +16 QTextIStream::~QTextIStream +24 QTextIStream::~QTextIStream + +Class QTextIStream + size=16 align=8 + base size=16 base align=8 +QTextIStream (0x7fea85aa3070) 0 + vptr=((& QTextIStream::_ZTV12QTextIStream) + 16u) + QTextStream (0x7fea85aa30e0) 0 + primary-for QTextIStream (0x7fea85aa3070) + +Vtable for QTextOStream +QTextOStream::_ZTV12QTextOStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextOStream) +16 QTextOStream::~QTextOStream +24 QTextOStream::~QTextOStream + +Class QTextOStream + size=16 align=8 + base size=16 base align=8 +QTextOStream (0x7fea85aafee0) 0 + vptr=((& QTextOStream::_ZTV12QTextOStream) + 16u) + QTextStream (0x7fea85aaff50) 0 + primary-for QTextOStream (0x7fea85aafee0) + +Class wait + size=4 align=4 + base size=4 base align=4 +wait (0x7fea85ac4d90) 0 + +Class timespec + size=16 align=8 + base size=16 base align=8 +timespec (0x7fea85ad10e0) 0 + +Class timeval + size=16 align=8 + base size=16 base align=8 +timeval (0x7fea85ad1150) 0 + +Class __pthread_internal_list + size=16 align=8 + base size=16 base align=8 +__pthread_internal_list (0x7fea85ad12a0) 0 + +Class random_data + size=48 align=8 + base size=48 base align=8 +random_data (0x7fea85ad1850) 0 + +Class drand48_data + size=24 align=8 + base size=24 base align=8 +drand48_data (0x7fea85ad18c0) 0 + +Class QVectorData + size=16 align=4 + base size=16 base align=4 +QVectorData (0x7fea85ad1930) 0 + +Class QContiguousCacheData + size=24 align=4 + base size=24 base align=4 +QContiguousCacheData (0x7fea8588e620) 0 + +Class QDebug::Stream + size=40 align=8 + base size=34 base align=8 +QDebug::Stream (0x7fea856f0150) 0 + +Class QDebug + size=8 align=8 + base size=8 base align=8 +QDebug (0x7fea856f00e0) 0 + +Class QNoDebug + size=1 align=1 + base size=0 base align=1 +QNoDebug (0x7fea8579d0e0) 0 empty + +Vtable for QDirIterator +QDirIterator::_ZTV12QDirIterator: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QDirIterator) +16 QDirIterator::~QDirIterator +24 QDirIterator::~QDirIterator + +Class QDirIterator + size=16 align=8 + base size=16 base align=8 +QDirIterator (0x7fea857ad700) 0 + vptr=((& QDirIterator::_ZTV12QDirIterator) + 16u) + +Vtable for QFileSystemWatcher +QFileSystemWatcher::_ZTV18QFileSystemWatcher: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFileSystemWatcher) +16 QFileSystemWatcher::metaObject +24 QFileSystemWatcher::qt_metacast +32 QFileSystemWatcher::qt_metacall +40 QFileSystemWatcher::~QFileSystemWatcher +48 QFileSystemWatcher::~QFileSystemWatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QFileSystemWatcher + size=16 align=8 + base size=16 base align=8 +QFileSystemWatcher (0x7fea85609540) 0 + vptr=((& QFileSystemWatcher::_ZTV18QFileSystemWatcher) + 16u) + QObject (0x7fea856095b0) 0 + primary-for QFileSystemWatcher (0x7fea85609540) + +Vtable for QFSFileEngine +QFSFileEngine::_ZTV13QFSFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QFSFileEngine) +16 QFSFileEngine::~QFSFileEngine +24 QFSFileEngine::~QFSFileEngine +32 QFSFileEngine::open +40 QFSFileEngine::close +48 QFSFileEngine::flush +56 QFSFileEngine::size +64 QFSFileEngine::pos +72 QFSFileEngine::seek +80 QFSFileEngine::isSequential +88 QFSFileEngine::remove +96 QFSFileEngine::copy +104 QFSFileEngine::rename +112 QFSFileEngine::link +120 QFSFileEngine::mkdir +128 QFSFileEngine::rmdir +136 QFSFileEngine::setSize +144 QFSFileEngine::caseSensitive +152 QFSFileEngine::isRelativePath +160 QFSFileEngine::entryList +168 QFSFileEngine::fileFlags +176 QFSFileEngine::setPermissions +184 QFSFileEngine::fileName +192 QFSFileEngine::ownerId +200 QFSFileEngine::owner +208 QFSFileEngine::fileTime +216 QFSFileEngine::setFileName +224 QFSFileEngine::handle +232 QFSFileEngine::beginEntryList +240 QFSFileEngine::endEntryList +248 QFSFileEngine::read +256 QFSFileEngine::readLine +264 QFSFileEngine::write +272 QFSFileEngine::extension +280 QFSFileEngine::supportsExtension + +Class QFSFileEngine + size=16 align=8 + base size=16 base align=8 +QFSFileEngine (0x7fea8561ba80) 0 + vptr=((& QFSFileEngine::_ZTV13QFSFileEngine) + 16u) + QAbstractFileEngine (0x7fea8561baf0) 0 + primary-for QFSFileEngine (0x7fea8561ba80) + +Class QSharedData + size=4 align=4 + base size=4 base align=4 +QSharedData (0x7fea8562be70) 0 + +Class QProcessEnvironment + size=8 align=8 + base size=8 base align=8 +QProcessEnvironment (0x7fea856751c0) 0 + +Vtable for QProcess +QProcess::_ZTV8QProcess: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QProcess) +16 QProcess::metaObject +24 QProcess::qt_metacast +32 QProcess::qt_metacall +40 QProcess::~QProcess +48 QProcess::~QProcess +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QProcess::isSequential +120 QIODevice::open +128 QProcess::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QProcess::atEnd +168 QIODevice::reset +176 QProcess::bytesAvailable +184 QProcess::bytesToWrite +192 QProcess::canReadLine +200 QProcess::waitForReadyRead +208 QProcess::waitForBytesWritten +216 QProcess::readData +224 QIODevice::readLineData +232 QProcess::writeData +240 QProcess::setupChildProcess + +Class QProcess + size=16 align=8 + base size=16 base align=8 +QProcess (0x7fea85675cb0) 0 + vptr=((& QProcess::_ZTV8QProcess) + 16u) + QIODevice (0x7fea85675d20) 0 + primary-for QProcess (0x7fea85675cb0) + QObject (0x7fea85675d90) 0 + primary-for QIODevice (0x7fea85675d20) + +Class QResource + size=8 align=8 + base size=8 base align=8 +QResource (0x7fea856bb1c0) 0 + +Class QMetaType + size=1 align=1 + base size=0 base align=1 +QMetaType (0x7fea856bbe70) 0 empty + +Class QVariant::PrivateShared + size=16 align=8 + base size=12 base align=8 +QVariant::PrivateShared (0x7fea855b9700) 0 + +Class QVariant::Private::Data + size=8 align=8 + base size=8 base align=8 +QVariant::Private::Data (0x7fea855b9a10) 0 + +Class QVariant::Private + size=16 align=8 + base size=12 base align=8 +QVariant::Private (0x7fea855b97e0) 0 + +Class QVariant::Handler + size=72 align=8 + base size=72 base align=8 +QVariant::Handler (0x7fea855c8700) 0 + +Class QVariant + size=16 align=8 + base size=16 base align=8 +QVariant (0x7fea8558a7e0) 0 + +Class QVariantComparisonHelper + size=8 align=8 + base size=8 base align=8 +QVariantComparisonHelper (0x7fea8547a9a0) 0 + +Vtable for QSettings +QSettings::_ZTV9QSettings: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QSettings) +16 QSettings::metaObject +24 QSettings::qt_metacast +32 QSettings::qt_metacall +40 QSettings::~QSettings +48 QSettings::~QSettings +56 QSettings::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSettings + size=16 align=8 + base size=16 base align=8 +QSettings (0x7fea854a0ee0) 0 + vptr=((& QSettings::_ZTV9QSettings) + 16u) + QObject (0x7fea854a0f50) 0 + primary-for QSettings (0x7fea854a0ee0) + +Vtable for QTemporaryFile +QTemporaryFile::_ZTV14QTemporaryFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QTemporaryFile) +16 QTemporaryFile::metaObject +24 QTemporaryFile::qt_metacast +32 QTemporaryFile::qt_metacall +40 QTemporaryFile::~QTemporaryFile +48 QTemporaryFile::~QTemporaryFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QTemporaryFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QTemporaryFile::fileEngine + +Class QTemporaryFile + size=16 align=8 + base size=16 base align=8 +QTemporaryFile (0x7fea853222a0) 0 + vptr=((& QTemporaryFile::_ZTV14QTemporaryFile) + 16u) + QFile (0x7fea85322310) 0 + primary-for QTemporaryFile (0x7fea853222a0) + QIODevice (0x7fea85322380) 0 + primary-for QFile (0x7fea85322310) + QObject (0x7fea853223f0) 0 + primary-for QIODevice (0x7fea85322380) + +Class QUrl + size=8 align=8 + base size=8 base align=8 +QUrl (0x7fea8533e9a0) 0 + +Class QXmlStreamStringRef + size=16 align=8 + base size=16 base align=8 +QXmlStreamStringRef (0x7fea853cc070) 0 + +Class QXmlStreamAttribute + size=80 align=8 + base size=73 base align=8 +QXmlStreamAttribute (0x7fea851e6850) 0 + +Class QXmlStreamAttributes + size=8 align=8 + base size=8 base align=8 +QXmlStreamAttributes (0x7fea8520e310) 0 + QVector (0x7fea8520e380) 0 + +Class QXmlStreamNamespaceDeclaration + size=40 align=8 + base size=40 base align=8 +QXmlStreamNamespaceDeclaration (0x7fea8520e7e0) 0 + +Class QXmlStreamNotationDeclaration + size=56 align=8 + base size=56 base align=8 +QXmlStreamNotationDeclaration (0x7fea852501c0) 0 + +Class QXmlStreamEntityDeclaration + size=88 align=8 + base size=88 base align=8 +QXmlStreamEntityDeclaration (0x7fea8526e070) 0 + +Vtable for QXmlStreamEntityResolver +QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QXmlStreamEntityResolver) +16 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +24 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +32 QXmlStreamEntityResolver::resolveEntity +40 QXmlStreamEntityResolver::resolveUndeclaredEntity + +Class QXmlStreamEntityResolver + size=8 align=8 + base size=8 base align=8 +QXmlStreamEntityResolver (0x7fea8528b9a0) 0 nearly-empty + vptr=((& QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver) + 16u) + +Class QXmlStreamReader + size=8 align=8 + base size=8 base align=8 +QXmlStreamReader (0x7fea8528bb60) 0 + +Class QXmlStreamWriter + size=8 align=8 + base size=8 base align=8 +QXmlStreamWriter (0x7fea850d3c40) 0 + +Vtable for QAbstractState +QAbstractState::_ZTV14QAbstractState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QAbstractState) +16 QAbstractState::metaObject +24 QAbstractState::qt_metacast +32 QAbstractState::qt_metacall +40 QAbstractState::~QAbstractState +48 QAbstractState::~QAbstractState +56 QAbstractState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QAbstractState + size=16 align=8 + base size=16 base align=8 +QAbstractState (0x7fea850e8a80) 0 + vptr=((& QAbstractState::_ZTV14QAbstractState) + 16u) + QObject (0x7fea850e8af0) 0 + primary-for QAbstractState (0x7fea850e8a80) + +Vtable for QAbstractTransition +QAbstractTransition::_ZTV19QAbstractTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractTransition) +16 QAbstractTransition::metaObject +24 QAbstractTransition::qt_metacast +32 QAbstractTransition::qt_metacall +40 QAbstractTransition::~QAbstractTransition +48 QAbstractTransition::~QAbstractTransition +56 QAbstractTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QAbstractTransition + size=16 align=8 + base size=16 base align=8 +QAbstractTransition (0x7fea8510f2a0) 0 + vptr=((& QAbstractTransition::_ZTV19QAbstractTransition) + 16u) + QObject (0x7fea8510f310) 0 + primary-for QAbstractTransition (0x7fea8510f2a0) + +Vtable for QEvent +QEvent::_ZTV6QEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QEvent) +16 QEvent::~QEvent +24 QEvent::~QEvent + +Class QEvent + size=24 align=8 + base size=20 base align=8 +QEvent (0x7fea85123af0) 0 + vptr=((& QEvent::_ZTV6QEvent) + 16u) + +Vtable for QTimerEvent +QTimerEvent::_ZTV11QTimerEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTimerEvent) +16 QTimerEvent::~QTimerEvent +24 QTimerEvent::~QTimerEvent + +Class QTimerEvent + size=24 align=8 + base size=24 base align=8 +QTimerEvent (0x7fea85145700) 0 + vptr=((& QTimerEvent::_ZTV11QTimerEvent) + 16u) + QEvent (0x7fea85145770) 0 + primary-for QTimerEvent (0x7fea85145700) + +Vtable for QChildEvent +QChildEvent::_ZTV11QChildEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QChildEvent) +16 QChildEvent::~QChildEvent +24 QChildEvent::~QChildEvent + +Class QChildEvent + size=32 align=8 + base size=32 base align=8 +QChildEvent (0x7fea85145b60) 0 + vptr=((& QChildEvent::_ZTV11QChildEvent) + 16u) + QEvent (0x7fea85145bd0) 0 + primary-for QChildEvent (0x7fea85145b60) + +Vtable for QCustomEvent +QCustomEvent::_ZTV12QCustomEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QCustomEvent) +16 QCustomEvent::~QCustomEvent +24 QCustomEvent::~QCustomEvent + +Class QCustomEvent + size=24 align=8 + base size=20 base align=8 +QCustomEvent (0x7fea8514ee00) 0 + vptr=((& QCustomEvent::_ZTV12QCustomEvent) + 16u) + QEvent (0x7fea8514ee70) 0 + primary-for QCustomEvent (0x7fea8514ee00) + +Vtable for QDynamicPropertyChangeEvent +QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QDynamicPropertyChangeEvent) +16 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent +24 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent + +Class QDynamicPropertyChangeEvent + size=32 align=8 + base size=32 base align=8 +QDynamicPropertyChangeEvent (0x7fea8515f620) 0 + vptr=((& QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent) + 16u) + QEvent (0x7fea8515f690) 0 + primary-for QDynamicPropertyChangeEvent (0x7fea8515f620) + +Vtable for QEventTransition +QEventTransition::_ZTV16QEventTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QEventTransition) +16 QEventTransition::metaObject +24 QEventTransition::qt_metacast +32 QEventTransition::qt_metacall +40 QEventTransition::~QEventTransition +48 QEventTransition::~QEventTransition +56 QEventTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QEventTransition::eventTest +120 QEventTransition::onTransition + +Class QEventTransition + size=16 align=8 + base size=16 base align=8 +QEventTransition (0x7fea8515faf0) 0 + vptr=((& QEventTransition::_ZTV16QEventTransition) + 16u) + QAbstractTransition (0x7fea8515fb60) 0 + primary-for QEventTransition (0x7fea8515faf0) + QObject (0x7fea8515fbd0) 0 + primary-for QAbstractTransition (0x7fea8515fb60) + +Vtable for QFinalState +QFinalState::_ZTV11QFinalState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFinalState) +16 QFinalState::metaObject +24 QFinalState::qt_metacast +32 QFinalState::qt_metacall +40 QFinalState::~QFinalState +48 QFinalState::~QFinalState +56 QFinalState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFinalState::onEntry +120 QFinalState::onExit + +Class QFinalState + size=16 align=8 + base size=16 base align=8 +QFinalState (0x7fea8517b9a0) 0 + vptr=((& QFinalState::_ZTV11QFinalState) + 16u) + QAbstractState (0x7fea8517ba10) 0 + primary-for QFinalState (0x7fea8517b9a0) + QObject (0x7fea8517ba80) 0 + primary-for QAbstractState (0x7fea8517ba10) + +Vtable for QHistoryState +QHistoryState::_ZTV13QHistoryState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QHistoryState) +16 QHistoryState::metaObject +24 QHistoryState::qt_metacast +32 QHistoryState::qt_metacall +40 QHistoryState::~QHistoryState +48 QHistoryState::~QHistoryState +56 QHistoryState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QHistoryState::onEntry +120 QHistoryState::onExit + +Class QHistoryState + size=16 align=8 + base size=16 base align=8 +QHistoryState (0x7fea85195230) 0 + vptr=((& QHistoryState::_ZTV13QHistoryState) + 16u) + QAbstractState (0x7fea851952a0) 0 + primary-for QHistoryState (0x7fea85195230) + QObject (0x7fea85195310) 0 + primary-for QAbstractState (0x7fea851952a0) + +Vtable for QSignalTransition +QSignalTransition::_ZTV17QSignalTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QSignalTransition) +16 QSignalTransition::metaObject +24 QSignalTransition::qt_metacast +32 QSignalTransition::qt_metacall +40 QSignalTransition::~QSignalTransition +48 QSignalTransition::~QSignalTransition +56 QSignalTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QSignalTransition::eventTest +120 QSignalTransition::onTransition + +Class QSignalTransition + size=16 align=8 + base size=16 base align=8 +QSignalTransition (0x7fea851a4f50) 0 + vptr=((& QSignalTransition::_ZTV17QSignalTransition) + 16u) + QAbstractTransition (0x7fea851ae000) 0 + primary-for QSignalTransition (0x7fea851a4f50) + QObject (0x7fea851ae070) 0 + primary-for QAbstractTransition (0x7fea851ae000) + +Vtable for QState +QState::_ZTV6QState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QState) +16 QState::metaObject +24 QState::qt_metacast +32 QState::qt_metacall +40 QState::~QState +48 QState::~QState +56 QState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QState::onEntry +120 QState::onExit + +Class QState + size=16 align=8 + base size=16 base align=8 +QState (0x7fea851c1af0) 0 + vptr=((& QState::_ZTV6QState) + 16u) + QAbstractState (0x7fea851c1b60) 0 + primary-for QState (0x7fea851c1af0) + QObject (0x7fea851c1bd0) 0 + primary-for QAbstractState (0x7fea851c1b60) + +Vtable for QStateMachine::SignalEvent +QStateMachine::SignalEvent::_ZTVN13QStateMachine11SignalEventE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN13QStateMachine11SignalEventE) +16 QStateMachine::SignalEvent::~SignalEvent +24 QStateMachine::SignalEvent::~SignalEvent + +Class QStateMachine::SignalEvent + size=48 align=8 + base size=48 base align=8 +QStateMachine::SignalEvent (0x7fea84fe5150) 0 + vptr=((& QStateMachine::SignalEvent::_ZTVN13QStateMachine11SignalEventE) + 16u) + QEvent (0x7fea84fe51c0) 0 + primary-for QStateMachine::SignalEvent (0x7fea84fe5150) + +Vtable for QStateMachine::WrappedEvent +QStateMachine::WrappedEvent::_ZTVN13QStateMachine12WrappedEventE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN13QStateMachine12WrappedEventE) +16 QStateMachine::WrappedEvent::~WrappedEvent +24 QStateMachine::WrappedEvent::~WrappedEvent + +Class QStateMachine::WrappedEvent + size=40 align=8 + base size=40 base align=8 +QStateMachine::WrappedEvent (0x7fea84fe5700) 0 + vptr=((& QStateMachine::WrappedEvent::_ZTVN13QStateMachine12WrappedEventE) + 16u) + QEvent (0x7fea84fe5770) 0 + primary-for QStateMachine::WrappedEvent (0x7fea84fe5700) + +Vtable for QStateMachine +QStateMachine::_ZTV13QStateMachine: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QStateMachine) +16 QStateMachine::metaObject +24 QStateMachine::qt_metacast +32 QStateMachine::qt_metacall +40 QStateMachine::~QStateMachine +48 QStateMachine::~QStateMachine +56 QStateMachine::event +64 QStateMachine::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QStateMachine::onEntry +120 QStateMachine::onExit +128 QStateMachine::beginSelectTransitions +136 QStateMachine::endSelectTransitions +144 QStateMachine::beginMicrostep +152 QStateMachine::endMicrostep + +Class QStateMachine + size=16 align=8 + base size=16 base align=8 +QStateMachine (0x7fea84fdcee0) 0 + vptr=((& QStateMachine::_ZTV13QStateMachine) + 16u) + QState (0x7fea84fdcf50) 0 + primary-for QStateMachine (0x7fea84fdcee0) + QAbstractState (0x7fea84fe5000) 0 + primary-for QState (0x7fea84fdcf50) + QObject (0x7fea84fe5070) 0 + primary-for QAbstractState (0x7fea84fe5000) + +Class QBitArray + size=8 align=8 + base size=8 base align=8 +QBitArray (0x7fea85016150) 0 + +Class QBitRef + size=16 align=8 + base size=12 base align=8 +QBitRef (0x7fea8506de00) 0 + +Class QByteArrayMatcher::Data + size=272 align=8 + base size=272 base align=8 +QByteArrayMatcher::Data (0x7fea8507faf0) 0 + +Class QByteArrayMatcher + size=1040 align=8 + base size=1040 base align=8 +QByteArrayMatcher (0x7fea8507f4d0) 0 + +Class QCryptographicHash + size=8 align=8 + base size=8 base align=8 +QCryptographicHash (0x7fea850b5150) 0 + +Vtable for QtSharedPointer::ExternalRefCountData +QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN15QtSharedPointer20ExternalRefCountDataE) +16 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +24 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +32 QtSharedPointer::ExternalRefCountData::destroy + +Class QtSharedPointer::ExternalRefCountData + size=16 align=8 + base size=16 base align=8 +QtSharedPointer::ExternalRefCountData (0x7fea84ee0070) 0 + vptr=((& QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE) + 16u) + +Vtable for QtSharedPointer::ExternalRefCountWithDestroyFn +QtSharedPointer::ExternalRefCountWithDestroyFn::_ZTVN15QtSharedPointer29ExternalRefCountWithDestroyFnE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN15QtSharedPointer29ExternalRefCountWithDestroyFnE) +16 QtSharedPointer::ExternalRefCountWithDestroyFn::~ExternalRefCountWithDestroyFn +24 QtSharedPointer::ExternalRefCountWithDestroyFn::~ExternalRefCountWithDestroyFn +32 QtSharedPointer::ExternalRefCountWithDestroyFn::destroy + +Class QtSharedPointer::ExternalRefCountWithDestroyFn + size=24 align=8 + base size=24 base align=8 +QtSharedPointer::ExternalRefCountWithDestroyFn (0x7fea84ef9930) 0 + vptr=((& QtSharedPointer::ExternalRefCountWithDestroyFn::_ZTVN15QtSharedPointer29ExternalRefCountWithDestroyFnE) + 16u) + QtSharedPointer::ExternalRefCountData (0x7fea84ef99a0) 0 + primary-for QtSharedPointer::ExternalRefCountWithDestroyFn (0x7fea84ef9930) + +Class QDate + size=4 align=4 + base size=4 base align=4 +QDate (0x7fea84f7e5b0) 0 + +Class QTime + size=4 align=4 + base size=4 base align=4 +QTime (0x7fea84faf540) 0 + +Class QDateTime + size=8 align=8 + base size=8 base align=8 +QDateTime (0x7fea84fcbaf0) 0 + +Class QEasingCurve + size=8 align=8 + base size=8 base align=8 +QEasingCurve (0x7fea84e11000) 0 + +Class QPoint + size=8 align=4 + base size=8 base align=4 +QPoint (0x7fea84e11ee0) 0 + +Class QPointF + size=16 align=8 + base size=16 base align=8 +QPointF (0x7fea84e54af0) 0 + +Class QLine + size=16 align=4 + base size=16 base align=4 +QLine (0x7fea84e91af0) 0 + +Class QLineF + size=32 align=8 + base size=32 base align=8 +QLineF (0x7fea84ece9a0) 0 + +Class QLinkedListData + size=32 align=8 + base size=32 base align=8 +QLinkedListData (0x7fea84d22460) 0 + +Class QMargins + size=16 align=4 + base size=16 base align=4 +QMargins (0x7fea84be1380) 0 + +Class QSize + size=8 align=4 + base size=8 base align=4 +QSize (0x7fea84c10150) 0 + +Class QSizeF + size=16 align=8 + base size=16 base align=8 +QSizeF (0x7fea84c4fe00) 0 + +Class QRect + size=16 align=4 + base size=16 base align=4 +QRect (0x7fea84ca5380) 0 + +Class QRectF + size=32 align=8 + base size=32 base align=8 +QRectF (0x7fea84b4fd20) 0 + +Class QLatin1Literal + size=16 align=8 + base size=16 base align=8 +QLatin1Literal (0x7fea849ffee0) 0 + +Class QAbstractConcatenable + size=1 align=1 + base size=0 base align=1 +QAbstractConcatenable (0x7fea84a103f0) 0 empty + +Class QTextBoundaryFinder + size=48 align=8 + base size=48 base align=8 +QTextBoundaryFinder (0x7fea84a48380) 0 + +Vtable for QTimeLine +QTimeLine::_ZTV9QTimeLine: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTimeLine) +16 QTimeLine::metaObject +24 QTimeLine::qt_metacast +32 QTimeLine::qt_metacall +40 QTimeLine::~QTimeLine +48 QTimeLine::~QTimeLine +56 QObject::event +64 QObject::eventFilter +72 QTimeLine::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTimeLine::valueForTime + +Class QTimeLine + size=16 align=8 + base size=16 base align=8 +QTimeLine (0x7fea84a58700) 0 + vptr=((& QTimeLine::_ZTV9QTimeLine) + 16u) + QObject (0x7fea84a58770) 0 + primary-for QTimeLine (0x7fea84a58700) + +Vtable for QRunnable +QRunnable::_ZTV9QRunnable: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QRunnable) +16 __cxa_pure_virtual +24 QRunnable::~QRunnable +32 QRunnable::~QRunnable + +Class QRunnable + size=16 align=8 + base size=12 base align=8 +QRunnable (0x7fea84a80f50) 0 + vptr=((& QRunnable::_ZTV9QRunnable) + 16u) + +Class QMutex + size=8 align=8 + base size=8 base align=8 +QMutex (0x7fea84ab6620) 0 + +Class QMutexLocker + size=8 align=8 + base size=8 base align=8 +QMutexLocker (0x7fea84ac51c0) 0 + +Vtable for QtConcurrent::Exception +QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent9ExceptionE) +16 QtConcurrent::Exception::~Exception +24 QtConcurrent::Exception::~Exception +32 std::exception::what +40 QtConcurrent::Exception::raise +48 QtConcurrent::Exception::clone + +Class QtConcurrent::Exception + size=8 align=8 + base size=8 base align=8 +QtConcurrent::Exception (0x7fea848dc4d0) 0 nearly-empty + vptr=((& QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE) + 16u) + std::exception (0x7fea848dc540) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7fea848dc4d0) + +Vtable for QtConcurrent::UnhandledException +QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent18UnhandledExceptionE) +16 QtConcurrent::UnhandledException::~UnhandledException +24 QtConcurrent::UnhandledException::~UnhandledException +32 std::exception::what +40 QtConcurrent::UnhandledException::raise +48 QtConcurrent::UnhandledException::clone + +Class QtConcurrent::UnhandledException + size=8 align=8 + base size=8 base align=8 +QtConcurrent::UnhandledException (0x7fea848dc770) 0 nearly-empty + vptr=((& QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE) + 16u) + QtConcurrent::Exception (0x7fea848dc7e0) 0 nearly-empty + primary-for QtConcurrent::UnhandledException (0x7fea848dc770) + std::exception (0x7fea848dc850) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7fea848dc7e0) + +Class QtConcurrent::internal::ExceptionHolder + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionHolder (0x7fea848dca80) 0 + +Class QtConcurrent::internal::ExceptionStore + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionStore (0x7fea848dce00) 0 + +Class QtConcurrent::ResultItem + size=16 align=8 + base size=16 base align=8 +QtConcurrent::ResultItem (0x7fea848dce70) 0 + +Class QtConcurrent::ResultIteratorBase + size=16 align=8 + base size=12 base align=8 +QtConcurrent::ResultIteratorBase (0x7fea848f4d90) 0 + +Vtable for QtConcurrent::ResultStoreBase +QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent15ResultStoreBaseE) +16 QtConcurrent::ResultStoreBase::~ResultStoreBase +24 QtConcurrent::ResultStoreBase::~ResultStoreBase + +Class QtConcurrent::ResultStoreBase + size=48 align=8 + base size=44 base align=8 +QtConcurrent::ResultStoreBase (0x7fea848fa930) 0 + vptr=((& QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE) + 16u) + +Vtable for QFutureInterfaceBase +QFutureInterfaceBase::_ZTV20QFutureInterfaceBase: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QFutureInterfaceBase) +16 QFutureInterfaceBase::~QFutureInterfaceBase +24 QFutureInterfaceBase::~QFutureInterfaceBase + +Class QFutureInterfaceBase + size=16 align=8 + base size=16 base align=8 +QFutureInterfaceBase (0x7fea84937d90) 0 + vptr=((& QFutureInterfaceBase::_ZTV20QFutureInterfaceBase) + 16u) + +Vtable for QFutureWatcherBase +QFutureWatcherBase::_ZTV18QFutureWatcherBase: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFutureWatcherBase) +16 QFutureWatcherBase::metaObject +24 QFutureWatcherBase::qt_metacast +32 QFutureWatcherBase::qt_metacall +40 QFutureWatcherBase::~QFutureWatcherBase +48 QFutureWatcherBase::~QFutureWatcherBase +56 QFutureWatcherBase::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QFutureWatcherBase::connectNotify +104 QFutureWatcherBase::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QFutureWatcherBase + size=16 align=8 + base size=16 base align=8 +QFutureWatcherBase (0x7fea8481d690) 0 + vptr=((& QFutureWatcherBase::_ZTV18QFutureWatcherBase) + 16u) + QObject (0x7fea8481d700) 0 + primary-for QFutureWatcherBase (0x7fea8481d690) + +Vtable for QThread +QThread::_ZTV7QThread: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QThread) +16 QThread::metaObject +24 QThread::qt_metacast +32 QThread::qt_metacall +40 QThread::~QThread +48 QThread::~QThread +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QThread::run + +Class QThread + size=16 align=8 + base size=16 base align=8 +QThread (0x7fea8486fa80) 0 + vptr=((& QThread::_ZTV7QThread) + 16u) + QObject (0x7fea8486faf0) 0 + primary-for QThread (0x7fea8486fa80) + +Vtable for QThreadPool +QThreadPool::_ZTV11QThreadPool: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QThreadPool) +16 QThreadPool::metaObject +24 QThreadPool::qt_metacast +32 QThreadPool::qt_metacall +40 QThreadPool::~QThreadPool +48 QThreadPool::~QThreadPool +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QThreadPool + size=16 align=8 + base size=16 base align=8 +QThreadPool (0x7fea84895930) 0 + vptr=((& QThreadPool::_ZTV11QThreadPool) + 16u) + QObject (0x7fea848959a0) 0 + primary-for QThreadPool (0x7fea84895930) + +Class QWaitCondition + size=8 align=8 + base size=8 base align=8 +QWaitCondition (0x7fea848a7ee0) 0 + +Class QSemaphore + size=8 align=8 + base size=8 base align=8 +QSemaphore (0x7fea848af460) 0 + +Class QtConcurrent::ThreadEngineBarrier + size=24 align=8 + base size=24 base align=8 +QtConcurrent::ThreadEngineBarrier (0x7fea848af9a0) 0 + +Vtable for QtConcurrent::ThreadEngineBase +QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent16ThreadEngineBaseE) +16 QtConcurrent::ThreadEngineBase::run +24 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +32 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +40 QtConcurrent::ThreadEngineBase::start +48 QtConcurrent::ThreadEngineBase::finish +56 QtConcurrent::ThreadEngineBase::threadFunction +64 QtConcurrent::ThreadEngineBase::shouldStartThread +72 QtConcurrent::ThreadEngineBase::shouldThrottleThread +80 __cxa_pure_virtual + +Class QtConcurrent::ThreadEngineBase + size=64 align=8 + base size=64 base align=8 +QtConcurrent::ThreadEngineBase (0x7fea848afa80) 0 + vptr=((& QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE) + 16u) + QRunnable (0x7fea848afaf0) 0 + primary-for QtConcurrent::ThreadEngineBase (0x7fea848afa80) + +VTT for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTTN12QtConcurrent12ThreadEngineIvEE: 2u entries +0 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 24u) +8 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 136u) + +Class QtConcurrent::BlockSizeManager + size=96 align=8 + base size=92 base align=8 +QtConcurrent::BlockSizeManager (0x7fea846fcee0) 0 + +Vtable for QFactoryInterface +QFactoryInterface::_ZTV17QFactoryInterface: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QFactoryInterface) +16 QFactoryInterface::~QFactoryInterface +24 QFactoryInterface::~QFactoryInterface +32 __cxa_pure_virtual + +Class QFactoryInterface + size=8 align=8 + base size=8 base align=8 +QFactoryInterface (0x7fea8439ed20) 0 nearly-empty + vptr=((& QFactoryInterface::_ZTV17QFactoryInterface) + 16u) + +Vtable for QTextCodecFactoryInterface +QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QTextCodecFactoryInterface) +16 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +24 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QTextCodecFactoryInterface + size=8 align=8 + base size=8 base align=8 +QTextCodecFactoryInterface (0x7fea841d1000) 0 nearly-empty + vptr=((& QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface) + 16u) + QFactoryInterface (0x7fea841d1070) 0 nearly-empty + primary-for QTextCodecFactoryInterface (0x7fea841d1000) + +Vtable for QTextCodecPlugin +QTextCodecPlugin::_ZTV16QTextCodecPlugin: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QTextCodecPlugin) +16 QTextCodecPlugin::metaObject +24 QTextCodecPlugin::qt_metacast +32 QTextCodecPlugin::qt_metacall +40 QTextCodecPlugin::~QTextCodecPlugin +48 QTextCodecPlugin::~QTextCodecPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 QTextCodecPlugin::keys +160 QTextCodecPlugin::create +168 (int (*)(...))-0x00000000000000010 +176 (int (*)(...))(& _ZTI16QTextCodecPlugin) +184 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD1Ev +192 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD0Ev +200 QTextCodecPlugin::_ZThn16_NK16QTextCodecPlugin4keysEv +208 QTextCodecPlugin::_ZThn16_N16QTextCodecPlugin6createERK7QString + +Class QTextCodecPlugin + size=24 align=8 + base size=24 base align=8 +QTextCodecPlugin (0x7fea841dc580) 0 + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 16u) + QObject (0x7fea841d1a80) 0 + primary-for QTextCodecPlugin (0x7fea841dc580) + QTextCodecFactoryInterface (0x7fea841d1af0) 16 nearly-empty + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 184u) + QFactoryInterface (0x7fea841d1b60) 16 nearly-empty + primary-for QTextCodecFactoryInterface (0x7fea841d1af0) + +Class QLibraryInfo + size=1 align=1 + base size=0 base align=1 +QLibraryInfo (0x7fea84228150) 0 empty + +Vtable for QEventLoop +QEventLoop::_ZTV10QEventLoop: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QEventLoop) +16 QEventLoop::metaObject +24 QEventLoop::qt_metacast +32 QEventLoop::qt_metacall +40 QEventLoop::~QEventLoop +48 QEventLoop::~QEventLoop +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QEventLoop + size=16 align=8 + base size=16 base align=8 +QEventLoop (0x7fea842282a0) 0 + vptr=((& QEventLoop::_ZTV10QEventLoop) + 16u) + QObject (0x7fea84228310) 0 + primary-for QEventLoop (0x7fea842282a0) + +Vtable for QAbstractEventDispatcher +QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QAbstractEventDispatcher) +16 QAbstractEventDispatcher::metaObject +24 QAbstractEventDispatcher::qt_metacast +32 QAbstractEventDispatcher::qt_metacall +40 QAbstractEventDispatcher::~QAbstractEventDispatcher +48 QAbstractEventDispatcher::~QAbstractEventDispatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 QAbstractEventDispatcher::startingUp +208 QAbstractEventDispatcher::closingDown + +Class QAbstractEventDispatcher + size=16 align=8 + base size=16 base align=8 +QAbstractEventDispatcher (0x7fea84263bd0) 0 + vptr=((& QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher) + 16u) + QObject (0x7fea84263c40) 0 + primary-for QAbstractEventDispatcher (0x7fea84263bd0) + +Class QModelIndex + size=24 align=8 + base size=24 base align=8 +QModelIndex (0x7fea84288a80) 0 + +Class QPersistentModelIndex + size=8 align=8 + base size=8 base align=8 +QPersistentModelIndex (0x7fea842b4540) 0 + +Vtable for QAbstractItemModel +QAbstractItemModel::_ZTV18QAbstractItemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractItemModel) +16 QAbstractItemModel::metaObject +24 QAbstractItemModel::qt_metacast +32 QAbstractItemModel::qt_metacall +40 QAbstractItemModel::~QAbstractItemModel +48 QAbstractItemModel::~QAbstractItemModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractItemModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractItemModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractItemModel + size=16 align=8 + base size=16 base align=8 +QAbstractItemModel (0x7fea842bc850) 0 + vptr=((& QAbstractItemModel::_ZTV18QAbstractItemModel) + 16u) + QObject (0x7fea842bc8c0) 0 + primary-for QAbstractItemModel (0x7fea842bc850) + +Vtable for QAbstractTableModel +QAbstractTableModel::_ZTV19QAbstractTableModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractTableModel) +16 QAbstractTableModel::metaObject +24 QAbstractTableModel::qt_metacast +32 QAbstractTableModel::qt_metacall +40 QAbstractTableModel::~QAbstractTableModel +48 QAbstractTableModel::~QAbstractTableModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractTableModel::index +120 QAbstractTableModel::parent +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractTableModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractTableModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractTableModel + size=16 align=8 + base size=16 base align=8 +QAbstractTableModel (0x7fea84116b60) 0 + vptr=((& QAbstractTableModel::_ZTV19QAbstractTableModel) + 16u) + QAbstractItemModel (0x7fea84116bd0) 0 + primary-for QAbstractTableModel (0x7fea84116b60) + QObject (0x7fea84116c40) 0 + primary-for QAbstractItemModel (0x7fea84116bd0) + +Vtable for QAbstractListModel +QAbstractListModel::_ZTV18QAbstractListModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractListModel) +16 QAbstractListModel::metaObject +24 QAbstractListModel::qt_metacast +32 QAbstractListModel::qt_metacall +40 QAbstractListModel::~QAbstractListModel +48 QAbstractListModel::~QAbstractListModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractListModel::index +120 QAbstractListModel::parent +128 __cxa_pure_virtual +136 QAbstractListModel::columnCount +144 QAbstractListModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractListModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractListModel + size=16 align=8 + base size=16 base align=8 +QAbstractListModel (0x7fea841350e0) 0 + vptr=((& QAbstractListModel::_ZTV18QAbstractListModel) + 16u) + QAbstractItemModel (0x7fea84135150) 0 + primary-for QAbstractListModel (0x7fea841350e0) + QObject (0x7fea841351c0) 0 + primary-for QAbstractItemModel (0x7fea84135150) + +Class QBasicTimer + size=4 align=4 + base size=4 base align=4 +QBasicTimer (0x7fea84165230) 0 + +Vtable for QCoreApplication +QCoreApplication::_ZTV16QCoreApplication: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QCoreApplication) +16 QCoreApplication::metaObject +24 QCoreApplication::qt_metacast +32 QCoreApplication::qt_metacall +40 QCoreApplication::~QCoreApplication +48 QCoreApplication::~QCoreApplication +56 QCoreApplication::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCoreApplication::notify +120 QCoreApplication::compressEvent + +Class QCoreApplication + size=16 align=8 + base size=16 base align=8 +QCoreApplication (0x7fea84173620) 0 + vptr=((& QCoreApplication::_ZTV16QCoreApplication) + 16u) + QObject (0x7fea84173690) 0 + primary-for QCoreApplication (0x7fea84173620) + +Class __exception + size=40 align=8 + base size=40 base align=8 +__exception (0x7fea841a4310) 0 + +Class QMetaMethod + size=16 align=8 + base size=12 base align=8 +QMetaMethod (0x7fea84011770) 0 + +Class QMetaEnum + size=16 align=8 + base size=12 base align=8 +QMetaEnum (0x7fea8402cbd0) 0 + +Class QMetaProperty + size=32 align=8 + base size=32 base align=8 +QMetaProperty (0x7fea8403c930) 0 + +Class QMetaClassInfo + size=16 align=8 + base size=12 base align=8 +QMetaClassInfo (0x7fea8404c000) 0 + +Vtable for QMimeData +QMimeData::_ZTV9QMimeData: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QMimeData) +16 QMimeData::metaObject +24 QMimeData::qt_metacast +32 QMimeData::qt_metacall +40 QMimeData::~QMimeData +48 QMimeData::~QMimeData +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMimeData::hasFormat +120 QMimeData::formats +128 QMimeData::retrieveData + +Class QMimeData + size=16 align=8 + base size=16 base align=8 +QMimeData (0x7fea8404caf0) 0 + vptr=((& QMimeData::_ZTV9QMimeData) + 16u) + QObject (0x7fea8404cb60) 0 + primary-for QMimeData (0x7fea8404caf0) + +Vtable for QObjectCleanupHandler +QObjectCleanupHandler::_ZTV21QObjectCleanupHandler: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QObjectCleanupHandler) +16 QObjectCleanupHandler::metaObject +24 QObjectCleanupHandler::qt_metacast +32 QObjectCleanupHandler::qt_metacall +40 QObjectCleanupHandler::~QObjectCleanupHandler +48 QObjectCleanupHandler::~QObjectCleanupHandler +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObjectCleanupHandler + size=24 align=8 + base size=24 base align=8 +QObjectCleanupHandler (0x7fea84070380) 0 + vptr=((& QObjectCleanupHandler::_ZTV21QObjectCleanupHandler) + 16u) + QObject (0x7fea840703f0) 0 + primary-for QObjectCleanupHandler (0x7fea84070380) + +Vtable for QSharedMemory +QSharedMemory::_ZTV13QSharedMemory: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSharedMemory) +16 QSharedMemory::metaObject +24 QSharedMemory::qt_metacast +32 QSharedMemory::qt_metacall +40 QSharedMemory::~QSharedMemory +48 QSharedMemory::~QSharedMemory +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSharedMemory + size=16 align=8 + base size=16 base align=8 +QSharedMemory (0x7fea840814d0) 0 + vptr=((& QSharedMemory::_ZTV13QSharedMemory) + 16u) + QObject (0x7fea84081540) 0 + primary-for QSharedMemory (0x7fea840814d0) + +Vtable for QSignalMapper +QSignalMapper::_ZTV13QSignalMapper: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSignalMapper) +16 QSignalMapper::metaObject +24 QSignalMapper::qt_metacast +32 QSignalMapper::qt_metacall +40 QSignalMapper::~QSignalMapper +48 QSignalMapper::~QSignalMapper +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSignalMapper + size=16 align=8 + base size=16 base align=8 +QSignalMapper (0x7fea8409b2a0) 0 + vptr=((& QSignalMapper::_ZTV13QSignalMapper) + 16u) + QObject (0x7fea8409b310) 0 + primary-for QSignalMapper (0x7fea8409b2a0) + +Vtable for QSocketNotifier +QSocketNotifier::_ZTV15QSocketNotifier: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSocketNotifier) +16 QSocketNotifier::metaObject +24 QSocketNotifier::qt_metacast +32 QSocketNotifier::qt_metacall +40 QSocketNotifier::~QSocketNotifier +48 QSocketNotifier::~QSocketNotifier +56 QSocketNotifier::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSocketNotifier + size=32 align=8 + base size=25 base align=8 +QSocketNotifier (0x7fea840b7690) 0 + vptr=((& QSocketNotifier::_ZTV15QSocketNotifier) + 16u) + QObject (0x7fea840b7700) 0 + primary-for QSocketNotifier (0x7fea840b7690) + +Class QSystemSemaphore + size=8 align=8 + base size=8 base align=8 +QSystemSemaphore (0x7fea83ed0a10) 0 + +Vtable for QTimer +QTimer::_ZTV6QTimer: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QTimer) +16 QTimer::metaObject +24 QTimer::qt_metacast +32 QTimer::qt_metacall +40 QTimer::~QTimer +48 QTimer::~QTimer +56 QObject::event +64 QObject::eventFilter +72 QTimer::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTimer + size=32 align=8 + base size=29 base align=8 +QTimer (0x7fea83edc460) 0 + vptr=((& QTimer::_ZTV6QTimer) + 16u) + QObject (0x7fea83edc4d0) 0 + primary-for QTimer (0x7fea83edc460) + +Vtable for QTranslator +QTranslator::_ZTV11QTranslator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTranslator) +16 QTranslator::metaObject +24 QTranslator::qt_metacast +32 QTranslator::qt_metacall +40 QTranslator::~QTranslator +48 QTranslator::~QTranslator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTranslator::translate +120 QTranslator::isEmpty + +Class QTranslator + size=16 align=8 + base size=16 base align=8 +QTranslator (0x7fea83f009a0) 0 + vptr=((& QTranslator::_ZTV11QTranslator) + 16u) + QObject (0x7fea83f00a10) 0 + primary-for QTranslator (0x7fea83f009a0) + +Vtable for QLibrary +QLibrary::_ZTV8QLibrary: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QLibrary) +16 QLibrary::metaObject +24 QLibrary::qt_metacast +32 QLibrary::qt_metacall +40 QLibrary::~QLibrary +48 QLibrary::~QLibrary +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QLibrary + size=32 align=8 + base size=25 base align=8 +QLibrary (0x7fea83f1c930) 0 + vptr=((& QLibrary::_ZTV8QLibrary) + 16u) + QObject (0x7fea83f1c9a0) 0 + primary-for QLibrary (0x7fea83f1c930) + +Vtable for QPluginLoader +QPluginLoader::_ZTV13QPluginLoader: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QPluginLoader) +16 QPluginLoader::metaObject +24 QPluginLoader::qt_metacast +32 QPluginLoader::qt_metacall +40 QPluginLoader::~QPluginLoader +48 QPluginLoader::~QPluginLoader +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QPluginLoader + size=32 align=8 + base size=25 base align=8 +QPluginLoader (0x7fea83f683f0) 0 + vptr=((& QPluginLoader::_ZTV13QPluginLoader) + 16u) + QObject (0x7fea83f68460) 0 + primary-for QPluginLoader (0x7fea83f683f0) + +Class QUuid + size=16 align=4 + base size=16 base align=4 +QUuid (0x7fea83f76b60) 0 + +Class QReadWriteLock + size=8 align=8 + base size=8 base align=8 +QReadWriteLock (0x7fea83f9e4d0) 0 + +Class QReadLocker + size=8 align=8 + base size=8 base align=8 +QReadLocker (0x7fea83f9eb60) 0 + +Class QWriteLocker + size=8 align=8 + base size=8 base align=8 +QWriteLocker (0x7fea83fbdee0) 0 + +Class QThreadStorageData + size=4 align=4 + base size=4 base align=4 +QThreadStorageData (0x7fea83dd72a0) 0 + +Vtable for QAbstractAnimation +QAbstractAnimation::_ZTV18QAbstractAnimation: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractAnimation) +16 QAbstractAnimation::metaObject +24 QAbstractAnimation::qt_metacast +32 QAbstractAnimation::qt_metacall +40 QAbstractAnimation::~QAbstractAnimation +48 QAbstractAnimation::~QAbstractAnimation +56 QAbstractAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAbstractAnimation::updateState +136 QAbstractAnimation::updateDirection + +Class QAbstractAnimation + size=16 align=8 + base size=16 base align=8 +QAbstractAnimation (0x7fea83dd7a10) 0 + vptr=((& QAbstractAnimation::_ZTV18QAbstractAnimation) + 16u) + QObject (0x7fea83dd7a80) 0 + primary-for QAbstractAnimation (0x7fea83dd7a10) + +Vtable for QAnimationGroup +QAnimationGroup::_ZTV15QAnimationGroup: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QAnimationGroup) +16 QAnimationGroup::metaObject +24 QAnimationGroup::qt_metacast +32 QAnimationGroup::qt_metacall +40 QAnimationGroup::~QAnimationGroup +48 QAnimationGroup::~QAnimationGroup +56 QAnimationGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAbstractAnimation::updateState +136 QAbstractAnimation::updateDirection + +Class QAnimationGroup + size=16 align=8 + base size=16 base align=8 +QAnimationGroup (0x7fea83e0e150) 0 + vptr=((& QAnimationGroup::_ZTV15QAnimationGroup) + 16u) + QAbstractAnimation (0x7fea83e0e1c0) 0 + primary-for QAnimationGroup (0x7fea83e0e150) + QObject (0x7fea83e0e230) 0 + primary-for QAbstractAnimation (0x7fea83e0e1c0) + +Vtable for QParallelAnimationGroup +QParallelAnimationGroup::_ZTV23QParallelAnimationGroup: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QParallelAnimationGroup) +16 QParallelAnimationGroup::metaObject +24 QParallelAnimationGroup::qt_metacast +32 QParallelAnimationGroup::qt_metacall +40 QParallelAnimationGroup::~QParallelAnimationGroup +48 QParallelAnimationGroup::~QParallelAnimationGroup +56 QParallelAnimationGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QParallelAnimationGroup::duration +120 QParallelAnimationGroup::updateCurrentTime +128 QParallelAnimationGroup::updateState +136 QParallelAnimationGroup::updateDirection + +Class QParallelAnimationGroup + size=16 align=8 + base size=16 base align=8 +QParallelAnimationGroup (0x7fea83e27000) 0 + vptr=((& QParallelAnimationGroup::_ZTV23QParallelAnimationGroup) + 16u) + QAnimationGroup (0x7fea83e27070) 0 + primary-for QParallelAnimationGroup (0x7fea83e27000) + QAbstractAnimation (0x7fea83e270e0) 0 + primary-for QAnimationGroup (0x7fea83e27070) + QObject (0x7fea83e27150) 0 + primary-for QAbstractAnimation (0x7fea83e270e0) + +Vtable for QPauseAnimation +QPauseAnimation::_ZTV15QPauseAnimation: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QPauseAnimation) +16 QPauseAnimation::metaObject +24 QPauseAnimation::qt_metacast +32 QPauseAnimation::qt_metacall +40 QPauseAnimation::~QPauseAnimation +48 QPauseAnimation::~QPauseAnimation +56 QPauseAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QPauseAnimation::duration +120 QPauseAnimation::updateCurrentTime +128 QAbstractAnimation::updateState +136 QAbstractAnimation::updateDirection + +Class QPauseAnimation + size=16 align=8 + base size=16 base align=8 +QPauseAnimation (0x7fea83e36e70) 0 + vptr=((& QPauseAnimation::_ZTV15QPauseAnimation) + 16u) + QAbstractAnimation (0x7fea83e36ee0) 0 + primary-for QPauseAnimation (0x7fea83e36e70) + QObject (0x7fea83e36f50) 0 + primary-for QAbstractAnimation (0x7fea83e36ee0) + +Vtable for QVariantAnimation +QVariantAnimation::_ZTV17QVariantAnimation: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QVariantAnimation) +16 QVariantAnimation::metaObject +24 QVariantAnimation::qt_metacast +32 QVariantAnimation::qt_metacall +40 QVariantAnimation::~QVariantAnimation +48 QVariantAnimation::~QVariantAnimation +56 QVariantAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QVariantAnimation::duration +120 QVariantAnimation::updateCurrentTime +128 QVariantAnimation::updateState +136 QAbstractAnimation::updateDirection +144 __cxa_pure_virtual +152 QVariantAnimation::interpolated + +Class QVariantAnimation + size=16 align=8 + base size=16 base align=8 +QVariantAnimation (0x7fea83e538c0) 0 + vptr=((& QVariantAnimation::_ZTV17QVariantAnimation) + 16u) + QAbstractAnimation (0x7fea83e53930) 0 + primary-for QVariantAnimation (0x7fea83e538c0) + QObject (0x7fea83e539a0) 0 + primary-for QAbstractAnimation (0x7fea83e53930) + +Vtable for QPropertyAnimation +QPropertyAnimation::_ZTV18QPropertyAnimation: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QPropertyAnimation) +16 QPropertyAnimation::metaObject +24 QPropertyAnimation::qt_metacast +32 QPropertyAnimation::qt_metacall +40 QPropertyAnimation::~QPropertyAnimation +48 QPropertyAnimation::~QPropertyAnimation +56 QPropertyAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QVariantAnimation::duration +120 QVariantAnimation::updateCurrentTime +128 QPropertyAnimation::updateState +136 QAbstractAnimation::updateDirection +144 QPropertyAnimation::updateCurrentValue +152 QVariantAnimation::interpolated + +Class QPropertyAnimation + size=16 align=8 + base size=16 base align=8 +QPropertyAnimation (0x7fea83e71b60) 0 + vptr=((& QPropertyAnimation::_ZTV18QPropertyAnimation) + 16u) + QVariantAnimation (0x7fea83e71bd0) 0 + primary-for QPropertyAnimation (0x7fea83e71b60) + QAbstractAnimation (0x7fea83e71c40) 0 + primary-for QVariantAnimation (0x7fea83e71bd0) + QObject (0x7fea83e71cb0) 0 + primary-for QAbstractAnimation (0x7fea83e71c40) + +Vtable for QSequentialAnimationGroup +QSequentialAnimationGroup::_ZTV25QSequentialAnimationGroup: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QSequentialAnimationGroup) +16 QSequentialAnimationGroup::metaObject +24 QSequentialAnimationGroup::qt_metacast +32 QSequentialAnimationGroup::qt_metacall +40 QSequentialAnimationGroup::~QSequentialAnimationGroup +48 QSequentialAnimationGroup::~QSequentialAnimationGroup +56 QSequentialAnimationGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QSequentialAnimationGroup::duration +120 QSequentialAnimationGroup::updateCurrentTime +128 QSequentialAnimationGroup::updateState +136 QSequentialAnimationGroup::updateDirection + +Class QSequentialAnimationGroup + size=16 align=8 + base size=16 base align=8 +QSequentialAnimationGroup (0x7fea83e8bb60) 0 + vptr=((& QSequentialAnimationGroup::_ZTV25QSequentialAnimationGroup) + 16u) + QAnimationGroup (0x7fea83e8bbd0) 0 + primary-for QSequentialAnimationGroup (0x7fea83e8bb60) + QAbstractAnimation (0x7fea83e8bc40) 0 + primary-for QAnimationGroup (0x7fea83e8bbd0) + QObject (0x7fea83e8bcb0) 0 + primary-for QAbstractAnimation (0x7fea83e8bc40) + +Class QScriptable + size=8 align=8 + base size=8 base align=8 +QScriptable (0x7fea83ea3bd0) 0 + +Class QScriptValue + size=8 align=8 + base size=8 base align=8 +QScriptValue (0x7fea83eb4770) 0 + +Vtable for QScriptClass +QScriptClass::_ZTV12QScriptClass: 13u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QScriptClass) +16 QScriptClass::~QScriptClass +24 QScriptClass::~QScriptClass +32 QScriptClass::queryProperty +40 QScriptClass::property +48 QScriptClass::setProperty +56 QScriptClass::propertyFlags +64 QScriptClass::newIterator +72 QScriptClass::prototype +80 QScriptClass::name +88 QScriptClass::supportsExtension +96 QScriptClass::extension + +Class QScriptClass + size=16 align=8 + base size=16 base align=8 +QScriptClass (0x7fea83d74310) 0 + vptr=((& QScriptClass::_ZTV12QScriptClass) + 16u) + +Vtable for QScriptClassPropertyIterator +QScriptClassPropertyIterator::_ZTV28QScriptClassPropertyIterator: 13u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI28QScriptClassPropertyIterator) +16 QScriptClassPropertyIterator::~QScriptClassPropertyIterator +24 QScriptClassPropertyIterator::~QScriptClassPropertyIterator +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 QScriptClassPropertyIterator::id +96 QScriptClassPropertyIterator::flags + +Class QScriptClassPropertyIterator + size=16 align=8 + base size=16 base align=8 +QScriptClassPropertyIterator (0x7fea83db8310) 0 + vptr=((& QScriptClassPropertyIterator::_ZTV28QScriptClassPropertyIterator) + 16u) + +Class QScriptContext + size=8 align=8 + base size=8 base align=8 +QScriptContext (0x7fea83bcf070) 0 + +Class QScriptContextInfo + size=8 align=8 + base size=8 base align=8 +QScriptContextInfo (0x7fea83bcfee0) 0 + +Class QScriptString + size=8 align=8 + base size=8 base align=8 +QScriptString (0x7fea83bf6150) 0 + +Class QScriptProgram + size=8 align=8 + base size=8 base align=8 +QScriptProgram (0x7fea83bf6ee0) 0 + +Class QScriptSyntaxCheckResult + size=8 align=8 + base size=8 base align=8 +QScriptSyntaxCheckResult (0x7fea83c0dd90) 0 + +Vtable for QScriptEngine +QScriptEngine::_ZTV13QScriptEngine: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QScriptEngine) +16 QScriptEngine::metaObject +24 QScriptEngine::qt_metacast +32 QScriptEngine::qt_metacall +40 QScriptEngine::~QScriptEngine +48 QScriptEngine::~QScriptEngine +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QScriptEngine + size=16 align=8 + base size=16 base align=8 +QScriptEngine (0x7fea83c24af0) 0 + vptr=((& QScriptEngine::_ZTV13QScriptEngine) + 16u) + QObject (0x7fea83c24b60) 0 + primary-for QScriptEngine (0x7fea83c24af0) + +Vtable for QScriptEngineAgent +QScriptEngineAgent::_ZTV18QScriptEngineAgent: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QScriptEngineAgent) +16 QScriptEngineAgent::~QScriptEngineAgent +24 QScriptEngineAgent::~QScriptEngineAgent +32 QScriptEngineAgent::scriptLoad +40 QScriptEngineAgent::scriptUnload +48 QScriptEngineAgent::contextPush +56 QScriptEngineAgent::contextPop +64 QScriptEngineAgent::functionEntry +72 QScriptEngineAgent::functionExit +80 QScriptEngineAgent::positionChange +88 QScriptEngineAgent::exceptionThrow +96 QScriptEngineAgent::exceptionCatch +104 QScriptEngineAgent::supportsExtension +112 QScriptEngineAgent::extension + +Class QScriptEngineAgent + size=16 align=8 + base size=16 base align=8 +QScriptEngineAgent (0x7fea83cb8310) 0 + vptr=((& QScriptEngineAgent::_ZTV18QScriptEngineAgent) + 16u) + +Vtable for QScriptExtensionInterface +QScriptExtensionInterface::_ZTV25QScriptExtensionInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QScriptExtensionInterface) +16 QScriptExtensionInterface::~QScriptExtensionInterface +24 QScriptExtensionInterface::~QScriptExtensionInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QScriptExtensionInterface + size=8 align=8 + base size=8 base align=8 +QScriptExtensionInterface (0x7fea83ad3070) 0 nearly-empty + vptr=((& QScriptExtensionInterface::_ZTV25QScriptExtensionInterface) + 16u) + QFactoryInterface (0x7fea83ad30e0) 0 nearly-empty + primary-for QScriptExtensionInterface (0x7fea83ad3070) + +Vtable for QScriptExtensionPlugin +QScriptExtensionPlugin::_ZTV22QScriptExtensionPlugin: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QScriptExtensionPlugin) +16 QScriptExtensionPlugin::metaObject +24 QScriptExtensionPlugin::qt_metacast +32 QScriptExtensionPlugin::qt_metacall +40 QScriptExtensionPlugin::~QScriptExtensionPlugin +48 QScriptExtensionPlugin::~QScriptExtensionPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI22QScriptExtensionPlugin) +144 QScriptExtensionPlugin::_ZThn16_N22QScriptExtensionPluginD1Ev +152 QScriptExtensionPlugin::_ZThn16_N22QScriptExtensionPluginD0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QScriptExtensionPlugin + size=24 align=8 + base size=24 base align=8 +QScriptExtensionPlugin (0x7fea83ad1a80) 0 + vptr=((& QScriptExtensionPlugin::_ZTV22QScriptExtensionPlugin) + 16u) + QObject (0x7fea83ad3af0) 0 + primary-for QScriptExtensionPlugin (0x7fea83ad1a80) + QScriptExtensionInterface (0x7fea83ad3b60) 16 nearly-empty + vptr=((& QScriptExtensionPlugin::_ZTV22QScriptExtensionPlugin) + 144u) + QFactoryInterface (0x7fea83ad3bd0) 16 nearly-empty + primary-for QScriptExtensionInterface (0x7fea83ad3b60) + +Class QScriptValueIterator + size=8 align=8 + base size=8 base align=8 +QScriptValueIterator (0x7fea83ae8a10) 0 + diff --git a/tests/auto/bic/data/QtScriptTools.4.5.0.linux-gcc-amd64.txt b/tests/auto/bic/data/QtScriptTools.4.5.0.linux-gcc-amd64.txt new file mode 100644 index 0000000..813ae56 --- /dev/null +++ b/tests/auto/bic/data/QtScriptTools.4.5.0.linux-gcc-amd64.txt @@ -0,0 +1,15825 @@ +Class QSysInfo + size=1 align=1 + base size=0 base align=1 +QSysInfo (0x7ffd18ec2460) 0 empty + +Class QBool + size=1 align=1 + base size=1 base align=1 +QBool (0x7ffd18ed7150) 0 + +Class qIsNull(double)::U + size=8 align=8 + base size=8 base align=8 +qIsNull(double)::U (0x7ffd18eee540) 0 + +Class qIsNull(float)::U + size=4 align=4 + base size=4 base align=4 +qIsNull(float)::U (0x7ffd18eee7e0) 0 + +Class QFlag + size=4 align=4 + base size=4 base align=4 +QFlag (0x7ffd18f26620) 0 + +Class QIncompatibleFlag + size=4 align=4 + base size=4 base align=4 +QIncompatibleFlag (0x7ffd18f26e00) 0 + +Class QInternal + size=1 align=1 + base size=0 base align=1 +QInternal (0x7ffd18d22540) 0 empty + +Class QGenericArgument + size=16 align=8 + base size=16 base align=8 +QGenericArgument (0x7ffd18d22850) 0 + +Class QGenericReturnArgument + size=16 align=8 + base size=16 base align=8 +QGenericReturnArgument (0x7ffd18d3c3f0) 0 + QGenericArgument (0x7ffd18d3c460) 0 + +Class QMetaObject + size=32 align=8 + base size=32 base align=8 +QMetaObject (0x7ffd18d3ccb0) 0 + +Class QMetaObjectExtraData + size=16 align=8 + base size=16 base align=8 +QMetaObjectExtraData (0x7ffd18d64cb0) 0 + +Class QLatin1Char + size=1 align=1 + base size=1 base align=1 +QLatin1Char (0x7ffd18d6e700) 0 + +Class QChar + size=2 align=2 + base size=2 base align=2 +QChar (0x7ffd18d742a0) 0 + +Class QBasicAtomicInt + size=4 align=4 + base size=4 base align=4 +QBasicAtomicInt (0x7ffd18bdd380) 0 + +Class QAtomicInt + size=4 align=4 + base size=4 base align=4 +QAtomicInt (0x7ffd18c1ad20) 0 + QBasicAtomicInt (0x7ffd18c1ad90) 0 + +Class __locale_struct + size=232 align=8 + base size=232 base align=8 +__locale_struct (0x7ffd18c3d1c0) 0 + +Class QByteArray::Data + size=32 align=8 + base size=32 base align=8 +QByteArray::Data (0x7ffd18ab87e0) 0 + +Class QByteArray + size=8 align=8 + base size=8 base align=8 +QByteArray (0x7ffd18c76540) 0 + +Class QByteRef + size=16 align=8 + base size=12 base align=8 +QByteRef (0x7ffd18b0fa80) 0 + +Class QString::Null + size=1 align=1 + base size=0 base align=1 +QString::Null (0x7ffd18a19700) 0 empty + +Class QString::Data + size=32 align=8 + base size=32 base align=8 +QString::Data (0x7ffd18a28ee0) 0 + +Class QString + size=8 align=8 + base size=8 base align=8 +QString (0x7ffd18b975b0) 0 + +Class QLatin1String + size=8 align=8 + base size=8 base align=8 +QLatin1String (0x7ffd18901000) 0 + +Class QCharRef + size=16 align=8 + base size=12 base align=8 +QCharRef (0x7ffd1899a620) 0 + +Class QConstString + size=8 align=8 + base size=8 base align=8 +QConstString (0x7ffd186dfee0) 0 + QString (0x7ffd186dff50) 0 + +Class QStringRef + size=16 align=8 + base size=16 base align=8 +QStringRef (0x7ffd18701bd0) 0 + +Vtable for std::exception +std::exception::_ZTVSt9exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9exception) +16 std::exception::~exception +24 std::exception::~exception +32 std::exception::what + +Class std::exception + size=8 align=8 + base size=8 base align=8 +std::exception (0x7ffd185bb620) 0 nearly-empty + vptr=((& std::exception::_ZTVSt9exception) + 16u) + +Vtable for std::bad_exception +std::bad_exception::_ZTVSt13bad_exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13bad_exception) +16 std::bad_exception::~bad_exception +24 std::bad_exception::~bad_exception +32 std::bad_exception::what + +Class std::bad_exception + size=8 align=8 + base size=8 base align=8 +std::bad_exception (0x7ffd185dd000) 0 nearly-empty + vptr=((& std::bad_exception::_ZTVSt13bad_exception) + 16u) + std::exception (0x7ffd185dd070) 0 nearly-empty + primary-for std::bad_exception (0x7ffd185dd000) + +Vtable for std::bad_alloc +std::bad_alloc::_ZTVSt9bad_alloc: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9bad_alloc) +16 std::bad_alloc::~bad_alloc +24 std::bad_alloc::~bad_alloc +32 std::bad_alloc::what + +Class std::bad_alloc + size=8 align=8 + base size=8 base align=8 +std::bad_alloc (0x7ffd185dd8c0) 0 nearly-empty + vptr=((& std::bad_alloc::_ZTVSt9bad_alloc) + 16u) + std::exception (0x7ffd185dd930) 0 nearly-empty + primary-for std::bad_alloc (0x7ffd185dd8c0) + +Class std::nothrow_t + size=1 align=1 + base size=0 base align=1 +std::nothrow_t (0x7ffd185ef0e0) 0 empty + +Class QListData::Data + size=32 align=8 + base size=32 base align=8 +QListData::Data (0x7ffd185ef620) 0 + +Class QListData + size=8 align=8 + base size=8 base align=8 +QListData (0x7ffd185ef5b0) 0 + +Vtable for QObjectData +QObjectData::_ZTV11QObjectData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QObjectData) +16 __cxa_pure_virtual +24 __cxa_pure_virtual + +Class QObjectData + size=40 align=8 + base size=40 base align=8 +QObjectData (0x7ffd184f4bd0) 0 + vptr=((& QObjectData::_ZTV11QObjectData) + 16u) + +Vtable for QObject +QObject::_ZTV7QObject: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QObject) +16 QObject::metaObject +24 QObject::qt_metacast +32 QObject::qt_metacall +40 QObject::~QObject +48 QObject::~QObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObject + size=16 align=8 + base size=16 base align=8 +QObject (0x7ffd184f4ee0) 0 + vptr=((& QObject::_ZTV7QObject) + 16u) + +Vtable for QObjectUserData +QObjectUserData::_ZTV15QObjectUserData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QObjectUserData) +16 QObjectUserData::~QObjectUserData +24 QObjectUserData::~QObjectUserData + +Class QObjectUserData + size=8 align=8 + base size=8 base align=8 +QObjectUserData (0x7ffd185853f0) 0 nearly-empty + vptr=((& QObjectUserData::_ZTV15QObjectUserData) + 16u) + +Vtable for QIODevice +QIODevice::_ZTV9QIODevice: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QIODevice) +16 QIODevice::metaObject +24 QIODevice::qt_metacast +32 QIODevice::qt_metacall +40 QIODevice::~QIODevice +48 QIODevice::~QIODevice +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QIODevice::isSequential +120 QIODevice::open +128 QIODevice::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QIODevice::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 __cxa_pure_virtual +224 QIODevice::readLineData +232 __cxa_pure_virtual + +Class QIODevice + size=16 align=8 + base size=16 base align=8 +QIODevice (0x7ffd18585930) 0 + vptr=((& QIODevice::_ZTV9QIODevice) + 16u) + QObject (0x7ffd185859a0) 0 + primary-for QIODevice (0x7ffd18585930) + +Vtable for QDataStream +QDataStream::_ZTV11QDataStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QDataStream) +16 QDataStream::~QDataStream +24 QDataStream::~QDataStream + +Class QDataStream + size=40 align=8 + base size=40 base align=8 +QDataStream (0x7ffd183f82a0) 0 + vptr=((& QDataStream::_ZTV11QDataStream) + 16u) + +Class QHashData::Node + size=16 align=8 + base size=16 base align=8 +QHashData::Node (0x7ffd18481150) 0 + +Class QHashData + size=40 align=8 + base size=40 base align=8 +QHashData (0x7ffd184810e0) 0 + +Class QHashDummyValue + size=1 align=1 + base size=0 base align=1 +QHashDummyValue (0x7ffd18490ee0) 0 empty + +Class QMapData::Node + size=16 align=8 + base size=16 base align=8 +QMapData::Node (0x7ffd181a4690) 0 + +Class QMapData + size=128 align=8 + base size=128 base align=8 +QMapData (0x7ffd181a4620) 0 + +Vtable for QSystemLocale +QSystemLocale::_ZTV13QSystemLocale: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSystemLocale) +16 QSystemLocale::~QSystemLocale +24 QSystemLocale::~QSystemLocale +32 QSystemLocale::query +40 QSystemLocale::fallbackLocale + +Class QSystemLocale + size=8 align=8 + base size=8 base align=8 +QSystemLocale (0x7ffd180b6e00) 0 nearly-empty + vptr=((& QSystemLocale::_ZTV13QSystemLocale) + 16u) + +Class QLocale::Data + size=4 align=2 + base size=4 base align=2 +QLocale::Data (0x7ffd181143f0) 0 + +Class QLocale + size=8 align=8 + base size=8 base align=8 +QLocale (0x7ffd180d90e0) 0 + +Class QTextCodec::ConverterState + size=32 align=8 + base size=32 base align=8 +QTextCodec::ConverterState (0x7ffd18163e70) 0 + +Vtable for QTextCodec +QTextCodec::_ZTV10QTextCodec: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextCodec) +16 __cxa_pure_virtual +24 QTextCodec::aliases +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QTextCodec::~QTextCodec +64 QTextCodec::~QTextCodec + +Class QTextCodec + size=8 align=8 + base size=8 base align=8 +QTextCodec (0x7ffd1814ba80) 0 nearly-empty + vptr=((& QTextCodec::_ZTV10QTextCodec) + 16u) + +Class QTextEncoder + size=40 align=8 + base size=40 base align=8 +QTextEncoder (0x7ffd17fce3f0) 0 + +Class QTextDecoder + size=40 align=8 + base size=40 base align=8 +QTextDecoder (0x7ffd17fd8230) 0 + +Class _IO_marker + size=24 align=8 + base size=24 base align=8 +_IO_marker (0x7ffd17fe22a0) 0 + +Class _IO_FILE + size=216 align=8 + base size=216 base align=8 +_IO_FILE (0x7ffd17fe2310) 0 + +Vtable for QTextStream +QTextStream::_ZTV11QTextStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTextStream) +16 QTextStream::~QTextStream +24 QTextStream::~QTextStream + +Class QTextStream + size=16 align=8 + base size=16 base align=8 +QTextStream (0x7ffd17fe23f0) 0 + vptr=((& QTextStream::_ZTV11QTextStream) + 16u) + +Class QTextStreamManipulator + size=40 align=8 + base size=38 base align=8 +QTextStreamManipulator (0x7ffd1807aee0) 0 + +Vtable for QTextIStream +QTextIStream::_ZTV12QTextIStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextIStream) +16 QTextIStream::~QTextIStream +24 QTextIStream::~QTextIStream + +Class QTextIStream + size=16 align=8 + base size=16 base align=8 +QTextIStream (0x7ffd17ea41c0) 0 + vptr=((& QTextIStream::_ZTV12QTextIStream) + 16u) + QTextStream (0x7ffd17ea4230) 0 + primary-for QTextIStream (0x7ffd17ea41c0) + +Vtable for QTextOStream +QTextOStream::_ZTV12QTextOStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextOStream) +16 QTextOStream::~QTextOStream +24 QTextOStream::~QTextOStream + +Class QTextOStream + size=16 align=8 + base size=16 base align=8 +QTextOStream (0x7ffd17eba070) 0 + vptr=((& QTextOStream::_ZTV12QTextOStream) + 16u) + QTextStream (0x7ffd17eba0e0) 0 + primary-for QTextOStream (0x7ffd17eba070) + +Class wait + size=4 align=4 + base size=4 base align=4 +wait (0x7ffd17ec5ee0) 0 + +Class timespec + size=16 align=8 + base size=16 base align=8 +timespec (0x7ffd17ed3230) 0 + +Class timeval + size=16 align=8 + base size=16 base align=8 +timeval (0x7ffd17ed32a0) 0 + +Class __pthread_internal_list + size=16 align=8 + base size=16 base align=8 +__pthread_internal_list (0x7ffd17ed33f0) 0 + +Class random_data + size=48 align=8 + base size=48 base align=8 +random_data (0x7ffd17ed39a0) 0 + +Class drand48_data + size=24 align=8 + base size=24 base align=8 +drand48_data (0x7ffd17ed3a10) 0 + +Class QVectorData + size=16 align=4 + base size=16 base align=4 +QVectorData (0x7ffd17ed3a80) 0 + +Class QDebug::Stream + size=40 align=8 + base size=34 base align=8 +QDebug::Stream (0x7ffd17e50230) 0 + +Class QDebug + size=8 align=8 + base size=8 base align=8 +QDebug (0x7ffd17e501c0) 0 + +Class QNoDebug + size=1 align=1 + base size=0 base align=1 +QNoDebug (0x7ffd17cee070) 0 empty + +Vtable for QFile +QFile::_ZTV5QFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QFile) +16 QFile::metaObject +24 QFile::qt_metacast +32 QFile::qt_metacall +40 QFile::~QFile +48 QFile::~QFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QFile::fileEngine + +Class QFile + size=16 align=8 + base size=16 base align=8 +QFile (0x7ffd17d00620) 0 + vptr=((& QFile::_ZTV5QFile) + 16u) + QIODevice (0x7ffd17d00690) 0 + primary-for QFile (0x7ffd17d00620) + QObject (0x7ffd17d00700) 0 + primary-for QIODevice (0x7ffd17d00690) + +Vtable for QTemporaryFile +QTemporaryFile::_ZTV14QTemporaryFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QTemporaryFile) +16 QTemporaryFile::metaObject +24 QTemporaryFile::qt_metacast +32 QTemporaryFile::qt_metacall +40 QTemporaryFile::~QTemporaryFile +48 QTemporaryFile::~QTemporaryFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QTemporaryFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QTemporaryFile::fileEngine + +Class QTemporaryFile + size=16 align=8 + base size=16 base align=8 +QTemporaryFile (0x7ffd17d68850) 0 + vptr=((& QTemporaryFile::_ZTV14QTemporaryFile) + 16u) + QFile (0x7ffd17d688c0) 0 + primary-for QTemporaryFile (0x7ffd17d68850) + QIODevice (0x7ffd17d68930) 0 + primary-for QFile (0x7ffd17d688c0) + QObject (0x7ffd17d689a0) 0 + primary-for QIODevice (0x7ffd17d68930) + +Class QFileInfo + size=8 align=8 + base size=8 base align=8 +QFileInfo (0x7ffd17d8bf50) 0 + +Class QRegExp + size=8 align=8 + base size=8 base align=8 +QRegExp (0x7ffd17be7770) 0 + +Class QStringMatcher + size=1048 align=8 + base size=1048 base align=8 +QStringMatcher (0x7ffd17c345b0) 0 + +Class QStringList + size=8 align=8 + base size=8 base align=8 +QStringList (0x7ffd17c45070) 0 + QList (0x7ffd17c450e0) 0 + +Class QDir + size=8 align=8 + base size=8 base align=8 +QDir (0x7ffd17ad6cb0) 0 + +Class QAbstractFileEngine::ExtensionOption + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionOption (0x7ffd17b6de70) 0 empty + +Class QAbstractFileEngine::ExtensionReturn + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionReturn (0x7ffd17b6dee0) 0 empty + +Class QAbstractFileEngine::MapExtensionOption + size=24 align=8 + base size=20 base align=8 +QAbstractFileEngine::MapExtensionOption (0x7ffd17b6df50) 0 + QAbstractFileEngine::ExtensionOption (0x7ffd17b83000) 0 empty + +Class QAbstractFileEngine::MapExtensionReturn + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::MapExtensionReturn (0x7ffd17b831c0) 0 + QAbstractFileEngine::ExtensionReturn (0x7ffd17b83230) 0 empty + +Class QAbstractFileEngine::UnMapExtensionOption + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::UnMapExtensionOption (0x7ffd17b832a0) 0 + QAbstractFileEngine::ExtensionOption (0x7ffd17b83310) 0 empty + +Vtable for QAbstractFileEngine +QAbstractFileEngine::_ZTV19QAbstractFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractFileEngine) +16 QAbstractFileEngine::~QAbstractFileEngine +24 QAbstractFileEngine::~QAbstractFileEngine +32 QAbstractFileEngine::open +40 QAbstractFileEngine::close +48 QAbstractFileEngine::flush +56 QAbstractFileEngine::size +64 QAbstractFileEngine::pos +72 QAbstractFileEngine::seek +80 QAbstractFileEngine::isSequential +88 QAbstractFileEngine::remove +96 QAbstractFileEngine::copy +104 QAbstractFileEngine::rename +112 QAbstractFileEngine::link +120 QAbstractFileEngine::mkdir +128 QAbstractFileEngine::rmdir +136 QAbstractFileEngine::setSize +144 QAbstractFileEngine::caseSensitive +152 QAbstractFileEngine::isRelativePath +160 QAbstractFileEngine::entryList +168 QAbstractFileEngine::fileFlags +176 QAbstractFileEngine::setPermissions +184 QAbstractFileEngine::fileName +192 QAbstractFileEngine::ownerId +200 QAbstractFileEngine::owner +208 QAbstractFileEngine::fileTime +216 QAbstractFileEngine::setFileName +224 QAbstractFileEngine::handle +232 QAbstractFileEngine::beginEntryList +240 QAbstractFileEngine::endEntryList +248 QAbstractFileEngine::read +256 QAbstractFileEngine::readLine +264 QAbstractFileEngine::write +272 QAbstractFileEngine::extension +280 QAbstractFileEngine::supportsExtension + +Class QAbstractFileEngine + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngine (0x7ffd17b5fe00) 0 + vptr=((& QAbstractFileEngine::_ZTV19QAbstractFileEngine) + 16u) + +Vtable for QAbstractFileEngineHandler +QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QAbstractFileEngineHandler) +16 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +24 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +32 __cxa_pure_virtual + +Class QAbstractFileEngineHandler + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngineHandler (0x7ffd179b3000) 0 nearly-empty + vptr=((& QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler) + 16u) + +Vtable for QAbstractFileEngineIterator +QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QAbstractFileEngineIterator) +16 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +24 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QAbstractFileEngineIterator::currentFileInfo +64 QAbstractFileEngineIterator::entryInfo + +Class QAbstractFileEngineIterator + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngineIterator (0x7ffd179b31c0) 0 + vptr=((& QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator) + 16u) + +Vtable for QFSFileEngine +QFSFileEngine::_ZTV13QFSFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QFSFileEngine) +16 QFSFileEngine::~QFSFileEngine +24 QFSFileEngine::~QFSFileEngine +32 QFSFileEngine::open +40 QFSFileEngine::close +48 QFSFileEngine::flush +56 QFSFileEngine::size +64 QFSFileEngine::pos +72 QFSFileEngine::seek +80 QFSFileEngine::isSequential +88 QFSFileEngine::remove +96 QFSFileEngine::copy +104 QFSFileEngine::rename +112 QFSFileEngine::link +120 QFSFileEngine::mkdir +128 QFSFileEngine::rmdir +136 QFSFileEngine::setSize +144 QFSFileEngine::caseSensitive +152 QFSFileEngine::isRelativePath +160 QFSFileEngine::entryList +168 QFSFileEngine::fileFlags +176 QFSFileEngine::setPermissions +184 QFSFileEngine::fileName +192 QFSFileEngine::ownerId +200 QFSFileEngine::owner +208 QFSFileEngine::fileTime +216 QFSFileEngine::setFileName +224 QFSFileEngine::handle +232 QFSFileEngine::beginEntryList +240 QFSFileEngine::endEntryList +248 QFSFileEngine::read +256 QFSFileEngine::readLine +264 QFSFileEngine::write +272 QFSFileEngine::extension +280 QFSFileEngine::supportsExtension + +Class QFSFileEngine + size=16 align=8 + base size=16 base align=8 +QFSFileEngine (0x7ffd179b3a10) 0 + vptr=((& QFSFileEngine::_ZTV13QFSFileEngine) + 16u) + QAbstractFileEngine (0x7ffd179b3a80) 0 + primary-for QFSFileEngine (0x7ffd179b3a10) + +Vtable for QProcess +QProcess::_ZTV8QProcess: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QProcess) +16 QProcess::metaObject +24 QProcess::qt_metacast +32 QProcess::qt_metacall +40 QProcess::~QProcess +48 QProcess::~QProcess +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QProcess::isSequential +120 QIODevice::open +128 QProcess::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QProcess::atEnd +168 QIODevice::reset +176 QProcess::bytesAvailable +184 QProcess::bytesToWrite +192 QProcess::canReadLine +200 QProcess::waitForReadyRead +208 QProcess::waitForBytesWritten +216 QProcess::readData +224 QIODevice::readLineData +232 QProcess::writeData +240 QProcess::setupChildProcess + +Class QProcess + size=16 align=8 + base size=16 base align=8 +QProcess (0x7ffd179cbd20) 0 + vptr=((& QProcess::_ZTV8QProcess) + 16u) + QIODevice (0x7ffd179cbd90) 0 + primary-for QProcess (0x7ffd179cbd20) + QObject (0x7ffd179cbe00) 0 + primary-for QIODevice (0x7ffd179cbd90) + +Class QResource + size=8 align=8 + base size=8 base align=8 +QResource (0x7ffd17a07230) 0 + +Vtable for QDirIterator +QDirIterator::_ZTV12QDirIterator: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QDirIterator) +16 QDirIterator::~QDirIterator +24 QDirIterator::~QDirIterator + +Class QDirIterator + size=16 align=8 + base size=16 base align=8 +QDirIterator (0x7ffd17a07cb0) 0 + vptr=((& QDirIterator::_ZTV12QDirIterator) + 16u) + +Vtable for QBuffer +QBuffer::_ZTV7QBuffer: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QBuffer) +16 QBuffer::metaObject +24 QBuffer::qt_metacast +32 QBuffer::qt_metacall +40 QBuffer::~QBuffer +48 QBuffer::~QBuffer +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QBuffer::connectNotify +104 QBuffer::disconnectNotify +112 QIODevice::isSequential +120 QBuffer::open +128 QBuffer::close +136 QBuffer::pos +144 QBuffer::size +152 QBuffer::seek +160 QBuffer::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QBuffer::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QBuffer::readData +224 QIODevice::readLineData +232 QBuffer::writeData + +Class QBuffer + size=16 align=8 + base size=16 base align=8 +QBuffer (0x7ffd17a38a80) 0 + vptr=((& QBuffer::_ZTV7QBuffer) + 16u) + QIODevice (0x7ffd17a38af0) 0 + primary-for QBuffer (0x7ffd17a38a80) + QObject (0x7ffd17a38b60) 0 + primary-for QIODevice (0x7ffd17a38af0) + +Vtable for QFileSystemWatcher +QFileSystemWatcher::_ZTV18QFileSystemWatcher: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFileSystemWatcher) +16 QFileSystemWatcher::metaObject +24 QFileSystemWatcher::qt_metacast +32 QFileSystemWatcher::qt_metacall +40 QFileSystemWatcher::~QFileSystemWatcher +48 QFileSystemWatcher::~QFileSystemWatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QFileSystemWatcher + size=16 align=8 + base size=16 base align=8 +QFileSystemWatcher (0x7ffd17a5e690) 0 + vptr=((& QFileSystemWatcher::_ZTV18QFileSystemWatcher) + 16u) + QObject (0x7ffd17a5e700) 0 + primary-for QFileSystemWatcher (0x7ffd17a5e690) + +Class QUrl + size=8 align=8 + base size=8 base align=8 +QUrl (0x7ffd17a71bd0) 0 + +Class QMetaType + size=1 align=1 + base size=0 base align=1 +QMetaType (0x7ffd178dc3f0) 0 empty + +Class QVariant::PrivateShared + size=16 align=8 + base size=12 base align=8 +QVariant::PrivateShared (0x7ffd177ae930) 0 + +Class QVariant::Private::Data + size=8 align=8 + base size=8 base align=8 +QVariant::Private::Data (0x7ffd177aec40) 0 + +Class QVariant::Private + size=16 align=8 + base size=12 base align=8 +QVariant::Private (0x7ffd177aea10) 0 + +Class QVariant::Handler + size=72 align=8 + base size=72 base align=8 +QVariant::Handler (0x7ffd177be930) 0 + +Class QVariant + size=16 align=8 + base size=16 base align=8 +QVariant (0x7ffd1777eaf0) 0 + +Class QVariantComparisonHelper + size=8 align=8 + base size=8 base align=8 +QVariantComparisonHelper (0x7ffd1786acb0) 0 + +Vtable for QSettings +QSettings::_ZTV9QSettings: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QSettings) +16 QSettings::metaObject +24 QSettings::qt_metacast +32 QSettings::qt_metacall +40 QSettings::~QSettings +48 QSettings::~QSettings +56 QSettings::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSettings + size=16 align=8 + base size=16 base align=8 +QSettings (0x7ffd17687cb0) 0 + vptr=((& QSettings::_ZTV9QSettings) + 16u) + QObject (0x7ffd17687d20) 0 + primary-for QSettings (0x7ffd17687cb0) + +Class QXmlStreamStringRef + size=16 align=8 + base size=16 base align=8 +QXmlStreamStringRef (0x7ffd1770b070) 0 + +Class QXmlStreamAttribute + size=80 align=8 + base size=73 base align=8 +QXmlStreamAttribute (0x7ffd17728850) 0 + +Class QXmlStreamAttributes + size=8 align=8 + base size=8 base align=8 +QXmlStreamAttributes (0x7ffd17751380) 0 + QVector (0x7ffd177513f0) 0 + +Class QXmlStreamNamespaceDeclaration + size=40 align=8 + base size=40 base align=8 +QXmlStreamNamespaceDeclaration (0x7ffd17751850) 0 + +Class QXmlStreamNotationDeclaration + size=56 align=8 + base size=56 base align=8 +QXmlStreamNotationDeclaration (0x7ffd175901c0) 0 + +Class QXmlStreamEntityDeclaration + size=88 align=8 + base size=88 base align=8 +QXmlStreamEntityDeclaration (0x7ffd175af070) 0 + +Vtable for QXmlStreamEntityResolver +QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QXmlStreamEntityResolver) +16 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +24 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +32 QXmlStreamEntityResolver::resolveEntity +40 QXmlStreamEntityResolver::resolveUndeclaredEntity + +Class QXmlStreamEntityResolver + size=8 align=8 + base size=8 base align=8 +QXmlStreamEntityResolver (0x7ffd175ca9a0) 0 nearly-empty + vptr=((& QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver) + 16u) + +Class QXmlStreamReader + size=8 align=8 + base size=8 base align=8 +QXmlStreamReader (0x7ffd175cab60) 0 + +Class QXmlStreamWriter + size=8 align=8 + base size=8 base align=8 +QXmlStreamWriter (0x7ffd17608a10) 0 + +Class QPoint + size=8 align=4 + base size=8 base align=4 +QPoint (0x7ffd17645150) 0 + +Class QPointF + size=16 align=8 + base size=16 base align=8 +QPointF (0x7ffd1747cd90) 0 + +Class QLine + size=16 align=4 + base size=16 base align=4 +QLine (0x7ffd174b9bd0) 0 + +Class QLineF + size=32 align=8 + base size=32 base align=8 +QLineF (0x7ffd174f4a80) 0 + +Class QSize + size=8 align=4 + base size=8 base align=4 +QSize (0x7ffd1754f540) 0 + +Class QSizeF + size=16 align=8 + base size=16 base align=8 +QSizeF (0x7ffd1739c380) 0 + +Class QRect + size=16 align=4 + base size=16 base align=4 +QRect (0x7ffd173e69a0) 0 + +Class QRectF + size=32 align=8 + base size=32 base align=8 +QRectF (0x7ffd17297380) 0 + +Class QSharedData + size=4 align=4 + base size=4 base align=4 +QSharedData (0x7ffd17342150) 0 + +Vtable for QtSharedPointer::ExternalRefCountData +QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN15QtSharedPointer20ExternalRefCountDataE) +16 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +24 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +32 QtSharedPointer::ExternalRefCountData::destroy + +Class QtSharedPointer::ExternalRefCountData + size=16 align=8 + base size=16 base align=8 +QtSharedPointer::ExternalRefCountData (0x7ffd17172af0) 0 + vptr=((& QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE) + 16u) + +Class QLinkedListData + size=32 align=8 + base size=32 base align=8 +QLinkedListData (0x7ffd171f7c40) 0 + +Class QBitArray + size=8 align=8 + base size=8 base align=8 +QBitArray (0x7ffd170c4b60) 0 + +Class QBitRef + size=16 align=8 + base size=12 base align=8 +QBitRef (0x7ffd17138930) 0 + +Class QByteArrayMatcher + size=1040 align=8 + base size=1040 base align=8 +QByteArrayMatcher (0x7ffd17153310) 0 + +Class QCryptographicHash + size=8 align=8 + base size=8 base align=8 +QCryptographicHash (0x7ffd16f67a10) 0 + +Class QTextBoundaryFinder + size=48 align=8 + base size=48 base align=8 +QTextBoundaryFinder (0x7ffd16f93460) 0 + +Class QDate + size=4 align=4 + base size=4 base align=4 +QDate (0x7ffd16fa97e0) 0 + +Class QTime + size=4 align=4 + base size=4 base align=4 +QTime (0x7ffd16fd1770) 0 + +Class QDateTime + size=8 align=8 + base size=8 base align=8 +QDateTime (0x7ffd16ff0d20) 0 + +Vtable for QTimeLine +QTimeLine::_ZTV9QTimeLine: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTimeLine) +16 QTimeLine::metaObject +24 QTimeLine::qt_metacast +32 QTimeLine::qt_metacall +40 QTimeLine::~QTimeLine +48 QTimeLine::~QTimeLine +56 QObject::event +64 QObject::eventFilter +72 QTimeLine::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTimeLine::valueForTime + +Class QTimeLine + size=16 align=8 + base size=16 base align=8 +QTimeLine (0x7ffd170231c0) 0 + vptr=((& QTimeLine::_ZTV9QTimeLine) + 16u) + QObject (0x7ffd17023230) 0 + primary-for QTimeLine (0x7ffd170231c0) + +Vtable for QRunnable +QRunnable::_ZTV9QRunnable: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QRunnable) +16 __cxa_pure_virtual +24 QRunnable::~QRunnable +32 QRunnable::~QRunnable + +Class QRunnable + size=16 align=8 + base size=12 base align=8 +QRunnable (0x7ffd1704b070) 0 + vptr=((& QRunnable::_ZTV9QRunnable) + 16u) + +Class QMutex + size=8 align=8 + base size=8 base align=8 +QMutex (0x7ffd17057700) 0 + +Class QMutexLocker + size=8 align=8 + base size=8 base align=8 +QMutexLocker (0x7ffd16e672a0) 0 + +Vtable for QtConcurrent::Exception +QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent9ExceptionE) +16 QtConcurrent::Exception::~Exception +24 QtConcurrent::Exception::~Exception +32 std::exception::what +40 QtConcurrent::Exception::raise +48 QtConcurrent::Exception::clone + +Class QtConcurrent::Exception + size=8 align=8 + base size=8 base align=8 +QtConcurrent::Exception (0x7ffd16e7d5b0) 0 nearly-empty + vptr=((& QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE) + 16u) + std::exception (0x7ffd16e7d620) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7ffd16e7d5b0) + +Vtable for QtConcurrent::UnhandledException +QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent18UnhandledExceptionE) +16 QtConcurrent::UnhandledException::~UnhandledException +24 QtConcurrent::UnhandledException::~UnhandledException +32 std::exception::what +40 QtConcurrent::UnhandledException::raise +48 QtConcurrent::UnhandledException::clone + +Class QtConcurrent::UnhandledException + size=8 align=8 + base size=8 base align=8 +QtConcurrent::UnhandledException (0x7ffd16e7d850) 0 nearly-empty + vptr=((& QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE) + 16u) + QtConcurrent::Exception (0x7ffd16e7d8c0) 0 nearly-empty + primary-for QtConcurrent::UnhandledException (0x7ffd16e7d850) + std::exception (0x7ffd16e7d930) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7ffd16e7d8c0) + +Class QtConcurrent::internal::ExceptionHolder + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionHolder (0x7ffd16e7db60) 0 + +Class QtConcurrent::internal::ExceptionStore + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionStore (0x7ffd16e7dee0) 0 + +Class QtConcurrent::ResultItem + size=16 align=8 + base size=16 base align=8 +QtConcurrent::ResultItem (0x7ffd16e7df50) 0 + +Class QtConcurrent::ResultIteratorBase + size=16 align=8 + base size=12 base align=8 +QtConcurrent::ResultIteratorBase (0x7ffd16e92e70) 0 + +Vtable for QtConcurrent::ResultStoreBase +QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent15ResultStoreBaseE) +16 QtConcurrent::ResultStoreBase::~ResultStoreBase +24 QtConcurrent::ResultStoreBase::~ResultStoreBase + +Class QtConcurrent::ResultStoreBase + size=48 align=8 + base size=44 base align=8 +QtConcurrent::ResultStoreBase (0x7ffd16e96a10) 0 + vptr=((& QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE) + 16u) + +Vtable for QFutureInterfaceBase +QFutureInterfaceBase::_ZTV20QFutureInterfaceBase: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QFutureInterfaceBase) +16 QFutureInterfaceBase::~QFutureInterfaceBase +24 QFutureInterfaceBase::~QFutureInterfaceBase + +Class QFutureInterfaceBase + size=16 align=8 + base size=16 base align=8 +QFutureInterfaceBase (0x7ffd16ed8e70) 0 + vptr=((& QFutureInterfaceBase::_ZTV20QFutureInterfaceBase) + 16u) + +Vtable for QThread +QThread::_ZTV7QThread: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QThread) +16 QThread::metaObject +24 QThread::qt_metacast +32 QThread::qt_metacall +40 QThread::~QThread +48 QThread::~QThread +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QThread::run + +Class QThread + size=16 align=8 + base size=16 base align=8 +QThread (0x7ffd16dbbe00) 0 + vptr=((& QThread::_ZTV7QThread) + 16u) + QObject (0x7ffd16dbbe70) 0 + primary-for QThread (0x7ffd16dbbe00) + +Vtable for QThreadPool +QThreadPool::_ZTV11QThreadPool: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QThreadPool) +16 QThreadPool::metaObject +24 QThreadPool::qt_metacast +32 QThreadPool::qt_metacall +40 QThreadPool::~QThreadPool +48 QThreadPool::~QThreadPool +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QThreadPool + size=16 align=8 + base size=16 base align=8 +QThreadPool (0x7ffd16deecb0) 0 + vptr=((& QThreadPool::_ZTV11QThreadPool) + 16u) + QObject (0x7ffd16deed20) 0 + primary-for QThreadPool (0x7ffd16deecb0) + +Class QWaitCondition + size=8 align=8 + base size=8 base align=8 +QWaitCondition (0x7ffd16e08540) 0 + +Class QtConcurrent::ThreadEngineSemaphore + size=24 align=8 + base size=24 base align=8 +QtConcurrent::ThreadEngineSemaphore (0x7ffd16e08a80) 0 + +Vtable for QtConcurrent::ThreadEngineBase +QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent16ThreadEngineBaseE) +16 QtConcurrent::ThreadEngineBase::run +24 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +32 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +40 QtConcurrent::ThreadEngineBase::start +48 QtConcurrent::ThreadEngineBase::finish +56 QtConcurrent::ThreadEngineBase::threadFunction +64 QtConcurrent::ThreadEngineBase::shouldStartThread +72 QtConcurrent::ThreadEngineBase::shouldThrottleThread +80 __cxa_pure_virtual + +Class QtConcurrent::ThreadEngineBase + size=64 align=8 + base size=64 base align=8 +QtConcurrent::ThreadEngineBase (0x7ffd16e26460) 0 + vptr=((& QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE) + 16u) + QRunnable (0x7ffd16e264d0) 0 + primary-for QtConcurrent::ThreadEngineBase (0x7ffd16e26460) + +VTT for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTTN12QtConcurrent12ThreadEngineIvEE: 2u entries +0 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 24u) +8 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 136u) + +Class std::input_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::input_iterator_tag (0x7ffd16c68850) 0 empty + +Class std::output_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::output_iterator_tag (0x7ffd16c688c0) 0 empty + +Class std::forward_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::forward_iterator_tag (0x7ffd16c68930) 0 empty + std::input_iterator_tag (0x7ffd16c689a0) 0 empty + +Class std::bidirectional_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::bidirectional_iterator_tag (0x7ffd16c68a10) 0 empty + std::forward_iterator_tag (0x7ffd16c68a80) 0 empty + std::input_iterator_tag (0x7ffd16c68af0) 0 empty + +Class std::random_access_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::random_access_iterator_tag (0x7ffd16c68b60) 0 empty + std::bidirectional_iterator_tag (0x7ffd16c68bd0) 0 empty + std::forward_iterator_tag (0x7ffd16c68c40) 0 empty + std::input_iterator_tag (0x7ffd16c68cb0) 0 empty + +Class std::__true_type + size=1 align=1 + base size=0 base align=1 +std::__true_type (0x7ffd16c7b2a0) 0 empty + +Class std::__false_type + size=1 align=1 + base size=0 base align=1 +std::__false_type (0x7ffd16c7b310) 0 empty + +Class lconv + size=96 align=8 + base size=96 base align=8 +lconv (0x7ffd16c58620) 0 + +Class sched_param + size=4 align=4 + base size=4 base align=4 +sched_param (0x7ffd16c58a80) 0 + +Class __sched_param + size=4 align=4 + base size=4 base align=4 +__sched_param (0x7ffd16c58af0) 0 + +Class tm + size=56 align=8 + base size=56 base align=8 +tm (0x7ffd16c58bd0) 0 + +Class itimerspec + size=32 align=8 + base size=32 base align=8 +itimerspec (0x7ffd16c58cb0) 0 + +Class _pthread_cleanup_buffer + size=32 align=8 + base size=32 base align=8 +_pthread_cleanup_buffer (0x7ffd16c58d20) 0 + +Class __pthread_cleanup_frame + size=24 align=8 + base size=24 base align=8 +__pthread_cleanup_frame (0x7ffd16c58e70) 0 + +Class __pthread_cleanup_class + size=24 align=8 + base size=24 base align=8 +__pthread_cleanup_class (0x7ffd16c58ee0) 0 + +Vtable for __cxxabiv1::__forced_unwind +__cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN10__cxxabiv115__forced_unwindE) +16 __cxxabiv1::__forced_unwind::~__forced_unwind +24 __cxxabiv1::__forced_unwind::~__forced_unwind +32 __cxa_pure_virtual + +Class __cxxabiv1::__forced_unwind + size=8 align=8 + base size=8 base align=8 +__cxxabiv1::__forced_unwind (0x7ffd16963a80) 0 nearly-empty + vptr=((& __cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE) + 16u) + +Class std::locale + size=8 align=8 + base size=8 base align=8 +std::locale (0x7ffd168155b0) 0 + +Vtable for std::locale::facet +std::locale::facet::_ZTVNSt6locale5facetE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTINSt6locale5facetE) +16 std::locale::facet::~facet +24 std::locale::facet::~facet + +Class std::locale::facet + size=16 align=8 + base size=12 base align=8 +std::locale::facet (0x7ffd166b7cb0) 0 + vptr=((& std::locale::facet::_ZTVNSt6locale5facetE) + 16u) + +Class std::locale::id + size=8 align=8 + base size=8 base align=8 +std::locale::id (0x7ffd166cc2a0) 0 + +Class std::locale::_Impl + size=40 align=8 + base size=40 base align=8 +std::locale::_Impl (0x7ffd166cc8c0) 0 + +Vtable for std::ios_base::failure +std::ios_base::failure::_ZTVNSt8ios_base7failureE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTINSt8ios_base7failureE) +16 std::ios_base::failure::~failure +24 std::ios_base::failure::~failure +32 std::ios_base::failure::what + +Class std::ios_base::failure + size=16 align=8 + base size=16 base align=8 +std::ios_base::failure (0x7ffd16559070) 0 + vptr=((& std::ios_base::failure::_ZTVNSt8ios_base7failureE) + 16u) + std::exception (0x7ffd165590e0) 0 nearly-empty + primary-for std::ios_base::failure (0x7ffd16559070) + +Class std::ios_base::_Callback_list + size=24 align=8 + base size=24 base align=8 +std::ios_base::_Callback_list (0x7ffd16568310) 0 + +Class std::ios_base::_Words + size=16 align=8 + base size=16 base align=8 +std::ios_base::_Words (0x7ffd16568d90) 0 + +Class std::ios_base::Init + size=1 align=1 + base size=0 base align=1 +std::ios_base::Init (0x7ffd165704d0) 0 empty + +Vtable for std::ios_base +std::ios_base::_ZTVSt8ios_base: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt8ios_base) +16 std::ios_base::~ios_base +24 std::ios_base::~ios_base + +Class std::ios_base + size=216 align=8 + base size=216 base align=8 +std::ios_base (0x7ffd16559000) 0 + vptr=((& std::ios_base::_ZTVSt8ios_base) + 16u) + +Class std::ctype_base + size=1 align=1 + base size=0 base align=1 +std::ctype_base (0x7ffd165e4930) 0 empty + +Class std::__num_base + size=1 align=1 + base size=0 base align=1 +std::__num_base (0x7ffd1650d1c0) 0 empty + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSo: 2u entries +0 ((& std::basic_ostream >::_ZTVSo) + 24u) +8 ((& std::basic_ostream >::_ZTVSo) + 64u) + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSt13basic_ostreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 24u) +8 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 64u) + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSi: 2u entries +0 ((& std::basic_istream >::_ZTVSi) + 24u) +8 ((& std::basic_istream >::_ZTVSi) + 64u) + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSt13basic_istreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 24u) +8 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 64u) + +Construction vtable for std::basic_istream > (0x7ffd1623f310 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd0_Si: 10u entries +0 24u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISi) +24 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +32 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +40 -24u +48 (int (*)(...))-0x00000000000000018 +56 (int (*)(...))(& _ZTISi) +64 std::basic_istream >::_ZTv0_n24_NSiD1Ev +72 std::basic_istream >::_ZTv0_n24_NSiD0Ev + +Construction vtable for std::basic_ostream > (0x7ffd1623f460 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd16_So: 10u entries +0 8u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISo) +24 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +32 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +40 -8u +48 (int (*)(...))-0x00000000000000008 +56 (int (*)(...))(& _ZTISo) +64 std::basic_ostream >::_ZTv0_n24_NSoD1Ev +72 std::basic_ostream >::_ZTv0_n24_NSoD0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSd: 7u entries +0 ((& std::basic_iostream >::_ZTVSd) + 24u) +8 ((& std::basic_iostream >::_ZTCSd0_Si) + 24u) +16 ((& std::basic_iostream >::_ZTCSd0_Si) + 64u) +24 ((& std::basic_iostream >::_ZTCSd16_So) + 24u) +32 ((& std::basic_iostream >::_ZTCSd16_So) + 64u) +40 ((& std::basic_iostream >::_ZTVSd) + 104u) +48 ((& std::basic_iostream >::_ZTVSd) + 64u) + +Construction vtable for std::basic_istream > (0x7ffd1623f620 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E: 10u entries +0 24u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +24 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +32 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +40 -24u +48 (int (*)(...))-0x00000000000000018 +56 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +64 std::basic_istream >::_ZTv0_n24_NSt13basic_istreamIwSt11char_traitsIwEED1Ev +72 std::basic_istream >::_ZTv0_n24_NSt13basic_istreamIwSt11char_traitsIwEED0Ev + +Construction vtable for std::basic_ostream > (0x7ffd1623f770 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE16_St13basic_ostreamIwS1_E: 10u entries +0 8u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +24 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +32 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +40 -8u +48 (int (*)(...))-0x00000000000000008 +56 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +64 std::basic_ostream >::_ZTv0_n24_NSt13basic_ostreamIwSt11char_traitsIwEED1Ev +72 std::basic_ostream >::_ZTv0_n24_NSt13basic_ostreamIwSt11char_traitsIwEED0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSt14basic_iostreamIwSt11char_traitsIwEE: 7u entries +0 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 24u) +8 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 24u) +16 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 64u) +24 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE16_St13basic_ostreamIwS1_E) + 24u) +32 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE16_St13basic_ostreamIwS1_E) + 64u) +40 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 104u) +48 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 64u) + +Class QtConcurrent::BlockSizeManager + size=96 align=8 + base size=92 base align=8 +QtConcurrent::BlockSizeManager (0x7ffd160ab230) 0 + +Vtable for QFutureWatcherBase +QFutureWatcherBase::_ZTV18QFutureWatcherBase: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFutureWatcherBase) +16 QFutureWatcherBase::metaObject +24 QFutureWatcherBase::qt_metacast +32 QFutureWatcherBase::qt_metacall +40 QFutureWatcherBase::~QFutureWatcherBase +48 QFutureWatcherBase::~QFutureWatcherBase +56 QFutureWatcherBase::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QFutureWatcherBase::connectNotify +104 QFutureWatcherBase::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QFutureWatcherBase + size=16 align=8 + base size=16 base align=8 +QFutureWatcherBase (0x7ffd15c76bd0) 0 + vptr=((& QFutureWatcherBase::_ZTV18QFutureWatcherBase) + 16u) + QObject (0x7ffd15c76c40) 0 + primary-for QFutureWatcherBase (0x7ffd15c76bd0) + +Vtable for QFactoryInterface +QFactoryInterface::_ZTV17QFactoryInterface: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QFactoryInterface) +16 QFactoryInterface::~QFactoryInterface +24 QFactoryInterface::~QFactoryInterface +32 __cxa_pure_virtual + +Class QFactoryInterface + size=8 align=8 + base size=8 base align=8 +QFactoryInterface (0x7ffd15b8fe00) 0 nearly-empty + vptr=((& QFactoryInterface::_ZTV17QFactoryInterface) + 16u) + +Vtable for QTextCodecFactoryInterface +QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QTextCodecFactoryInterface) +16 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +24 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QTextCodecFactoryInterface + size=8 align=8 + base size=8 base align=8 +QTextCodecFactoryInterface (0x7ffd15bb0ee0) 0 nearly-empty + vptr=((& QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface) + 16u) + QFactoryInterface (0x7ffd15bb0f50) 0 nearly-empty + primary-for QTextCodecFactoryInterface (0x7ffd15bb0ee0) + +Vtable for QTextCodecPlugin +QTextCodecPlugin::_ZTV16QTextCodecPlugin: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QTextCodecPlugin) +16 QTextCodecPlugin::metaObject +24 QTextCodecPlugin::qt_metacast +32 QTextCodecPlugin::qt_metacall +40 QTextCodecPlugin::~QTextCodecPlugin +48 QTextCodecPlugin::~QTextCodecPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 QTextCodecPlugin::keys +160 QTextCodecPlugin::create +168 (int (*)(...))-0x00000000000000010 +176 (int (*)(...))(& _ZTI16QTextCodecPlugin) +184 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD1Ev +192 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD0Ev +200 QTextCodecPlugin::_ZThn16_NK16QTextCodecPlugin4keysEv +208 QTextCodecPlugin::_ZThn16_N16QTextCodecPlugin6createERK7QString + +Class QTextCodecPlugin + size=24 align=8 + base size=24 base align=8 +QTextCodecPlugin (0x7ffd15bb5e00) 0 + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 16u) + QObject (0x7ffd15bbb7e0) 0 + primary-for QTextCodecPlugin (0x7ffd15bb5e00) + QTextCodecFactoryInterface (0x7ffd15bbb850) 16 nearly-empty + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 184u) + QFactoryInterface (0x7ffd15bbb8c0) 16 nearly-empty + primary-for QTextCodecFactoryInterface (0x7ffd15bbb850) + +Class QLibraryInfo + size=1 align=1 + base size=0 base align=1 +QLibraryInfo (0x7ffd15bd2700) 0 empty + +Vtable for QTranslator +QTranslator::_ZTV11QTranslator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTranslator) +16 QTranslator::metaObject +24 QTranslator::qt_metacast +32 QTranslator::qt_metacall +40 QTranslator::~QTranslator +48 QTranslator::~QTranslator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTranslator::translate +120 QTranslator::isEmpty + +Class QTranslator + size=16 align=8 + base size=16 base align=8 +QTranslator (0x7ffd15c15000) 0 + vptr=((& QTranslator::_ZTV11QTranslator) + 16u) + QObject (0x7ffd15c15070) 0 + primary-for QTranslator (0x7ffd15c15000) + +Class __exception + size=40 align=8 + base size=40 base align=8 +__exception (0x7ffd15c29f50) 0 + +Vtable for QMimeData +QMimeData::_ZTV9QMimeData: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QMimeData) +16 QMimeData::metaObject +24 QMimeData::qt_metacast +32 QMimeData::qt_metacall +40 QMimeData::~QMimeData +48 QMimeData::~QMimeData +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMimeData::hasFormat +120 QMimeData::formats +128 QMimeData::retrieveData + +Class QMimeData + size=16 align=8 + base size=16 base align=8 +QMimeData (0x7ffd15a95150) 0 + vptr=((& QMimeData::_ZTV9QMimeData) + 16u) + QObject (0x7ffd15a951c0) 0 + primary-for QMimeData (0x7ffd15a95150) + +Vtable for QEventLoop +QEventLoop::_ZTV10QEventLoop: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QEventLoop) +16 QEventLoop::metaObject +24 QEventLoop::qt_metacast +32 QEventLoop::qt_metacall +40 QEventLoop::~QEventLoop +48 QEventLoop::~QEventLoop +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QEventLoop + size=16 align=8 + base size=16 base align=8 +QEventLoop (0x7ffd15aac9a0) 0 + vptr=((& QEventLoop::_ZTV10QEventLoop) + 16u) + QObject (0x7ffd15aaca10) 0 + primary-for QEventLoop (0x7ffd15aac9a0) + +Vtable for QEvent +QEvent::_ZTV6QEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QEvent) +16 QEvent::~QEvent +24 QEvent::~QEvent + +Class QEvent + size=24 align=8 + base size=20 base align=8 +QEvent (0x7ffd15aec310) 0 + vptr=((& QEvent::_ZTV6QEvent) + 16u) + +Vtable for QTimerEvent +QTimerEvent::_ZTV11QTimerEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTimerEvent) +16 QTimerEvent::~QTimerEvent +24 QTimerEvent::~QTimerEvent + +Class QTimerEvent + size=24 align=8 + base size=24 base align=8 +QTimerEvent (0x7ffd15b05ee0) 0 + vptr=((& QTimerEvent::_ZTV11QTimerEvent) + 16u) + QEvent (0x7ffd15b05f50) 0 + primary-for QTimerEvent (0x7ffd15b05ee0) + +Vtable for QChildEvent +QChildEvent::_ZTV11QChildEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QChildEvent) +16 QChildEvent::~QChildEvent +24 QChildEvent::~QChildEvent + +Class QChildEvent + size=32 align=8 + base size=32 base align=8 +QChildEvent (0x7ffd15b08380) 0 + vptr=((& QChildEvent::_ZTV11QChildEvent) + 16u) + QEvent (0x7ffd15b083f0) 0 + primary-for QChildEvent (0x7ffd15b08380) + +Vtable for QCustomEvent +QCustomEvent::_ZTV12QCustomEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QCustomEvent) +16 QCustomEvent::~QCustomEvent +24 QCustomEvent::~QCustomEvent + +Class QCustomEvent + size=24 align=8 + base size=20 base align=8 +QCustomEvent (0x7ffd15b1c620) 0 + vptr=((& QCustomEvent::_ZTV12QCustomEvent) + 16u) + QEvent (0x7ffd15b1c690) 0 + primary-for QCustomEvent (0x7ffd15b1c620) + +Vtable for QDynamicPropertyChangeEvent +QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QDynamicPropertyChangeEvent) +16 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent +24 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent + +Class QDynamicPropertyChangeEvent + size=32 align=8 + base size=32 base align=8 +QDynamicPropertyChangeEvent (0x7ffd15b1ce00) 0 + vptr=((& QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent) + 16u) + QEvent (0x7ffd15b1ce70) 0 + primary-for QDynamicPropertyChangeEvent (0x7ffd15b1ce00) + +Vtable for QCoreApplication +QCoreApplication::_ZTV16QCoreApplication: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QCoreApplication) +16 QCoreApplication::metaObject +24 QCoreApplication::qt_metacast +32 QCoreApplication::qt_metacall +40 QCoreApplication::~QCoreApplication +48 QCoreApplication::~QCoreApplication +56 QCoreApplication::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCoreApplication::notify +120 QCoreApplication::compressEvent + +Class QCoreApplication + size=16 align=8 + base size=16 base align=8 +QCoreApplication (0x7ffd15b29230) 0 + vptr=((& QCoreApplication::_ZTV16QCoreApplication) + 16u) + QObject (0x7ffd15b292a0) 0 + primary-for QCoreApplication (0x7ffd15b29230) + +Vtable for QSharedMemory +QSharedMemory::_ZTV13QSharedMemory: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSharedMemory) +16 QSharedMemory::metaObject +24 QSharedMemory::qt_metacast +32 QSharedMemory::qt_metacall +40 QSharedMemory::~QSharedMemory +48 QSharedMemory::~QSharedMemory +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSharedMemory + size=16 align=8 + base size=16 base align=8 +QSharedMemory (0x7ffd15957a80) 0 + vptr=((& QSharedMemory::_ZTV13QSharedMemory) + 16u) + QObject (0x7ffd15957af0) 0 + primary-for QSharedMemory (0x7ffd15957a80) + +Class QModelIndex + size=24 align=8 + base size=24 base align=8 +QModelIndex (0x7ffd15974850) 0 + +Class QPersistentModelIndex + size=8 align=8 + base size=8 base align=8 +QPersistentModelIndex (0x7ffd1599d310) 0 + +Vtable for QAbstractItemModel +QAbstractItemModel::_ZTV18QAbstractItemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractItemModel) +16 QAbstractItemModel::metaObject +24 QAbstractItemModel::qt_metacast +32 QAbstractItemModel::qt_metacall +40 QAbstractItemModel::~QAbstractItemModel +48 QAbstractItemModel::~QAbstractItemModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractItemModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractItemModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractItemModel + size=16 align=8 + base size=16 base align=8 +QAbstractItemModel (0x7ffd159aa5b0) 0 + vptr=((& QAbstractItemModel::_ZTV18QAbstractItemModel) + 16u) + QObject (0x7ffd159aa620) 0 + primary-for QAbstractItemModel (0x7ffd159aa5b0) + +Vtable for QAbstractTableModel +QAbstractTableModel::_ZTV19QAbstractTableModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractTableModel) +16 QAbstractTableModel::metaObject +24 QAbstractTableModel::qt_metacast +32 QAbstractTableModel::qt_metacall +40 QAbstractTableModel::~QAbstractTableModel +48 QAbstractTableModel::~QAbstractTableModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractTableModel::index +120 QAbstractTableModel::parent +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractTableModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractTableModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractTableModel + size=16 align=8 + base size=16 base align=8 +QAbstractTableModel (0x7ffd159fe930) 0 + vptr=((& QAbstractTableModel::_ZTV19QAbstractTableModel) + 16u) + QAbstractItemModel (0x7ffd159fe9a0) 0 + primary-for QAbstractTableModel (0x7ffd159fe930) + QObject (0x7ffd159fea10) 0 + primary-for QAbstractItemModel (0x7ffd159fe9a0) + +Vtable for QAbstractListModel +QAbstractListModel::_ZTV18QAbstractListModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractListModel) +16 QAbstractListModel::metaObject +24 QAbstractListModel::qt_metacast +32 QAbstractListModel::qt_metacall +40 QAbstractListModel::~QAbstractListModel +48 QAbstractListModel::~QAbstractListModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractListModel::index +120 QAbstractListModel::parent +128 __cxa_pure_virtual +136 QAbstractListModel::columnCount +144 QAbstractListModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractListModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractListModel + size=16 align=8 + base size=16 base align=8 +QAbstractListModel (0x7ffd15a0aee0) 0 + vptr=((& QAbstractListModel::_ZTV18QAbstractListModel) + 16u) + QAbstractItemModel (0x7ffd15a0af50) 0 + primary-for QAbstractListModel (0x7ffd15a0aee0) + QObject (0x7ffd15a0a230) 0 + primary-for QAbstractItemModel (0x7ffd15a0af50) + +Vtable for QSignalMapper +QSignalMapper::_ZTV13QSignalMapper: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSignalMapper) +16 QSignalMapper::metaObject +24 QSignalMapper::qt_metacast +32 QSignalMapper::qt_metacall +40 QSignalMapper::~QSignalMapper +48 QSignalMapper::~QSignalMapper +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSignalMapper + size=16 align=8 + base size=16 base align=8 +QSignalMapper (0x7ffd15a4b000) 0 + vptr=((& QSignalMapper::_ZTV13QSignalMapper) + 16u) + QObject (0x7ffd15a4b070) 0 + primary-for QSignalMapper (0x7ffd15a4b000) + +Vtable for QObjectCleanupHandler +QObjectCleanupHandler::_ZTV21QObjectCleanupHandler: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QObjectCleanupHandler) +16 QObjectCleanupHandler::metaObject +24 QObjectCleanupHandler::qt_metacast +32 QObjectCleanupHandler::qt_metacall +40 QObjectCleanupHandler::~QObjectCleanupHandler +48 QObjectCleanupHandler::~QObjectCleanupHandler +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObjectCleanupHandler + size=24 align=8 + base size=24 base align=8 +QObjectCleanupHandler (0x7ffd158633f0) 0 + vptr=((& QObjectCleanupHandler::_ZTV21QObjectCleanupHandler) + 16u) + QObject (0x7ffd15863460) 0 + primary-for QObjectCleanupHandler (0x7ffd158633f0) + +Class QBasicTimer + size=4 align=4 + base size=4 base align=4 +QBasicTimer (0x7ffd15873540) 0 + +Vtable for QSocketNotifier +QSocketNotifier::_ZTV15QSocketNotifier: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSocketNotifier) +16 QSocketNotifier::metaObject +24 QSocketNotifier::qt_metacast +32 QSocketNotifier::qt_metacall +40 QSocketNotifier::~QSocketNotifier +48 QSocketNotifier::~QSocketNotifier +56 QSocketNotifier::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSocketNotifier + size=32 align=8 + base size=25 base align=8 +QSocketNotifier (0x7ffd1587e930) 0 + vptr=((& QSocketNotifier::_ZTV15QSocketNotifier) + 16u) + QObject (0x7ffd1587e9a0) 0 + primary-for QSocketNotifier (0x7ffd1587e930) + +Vtable for QTimer +QTimer::_ZTV6QTimer: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QTimer) +16 QTimer::metaObject +24 QTimer::qt_metacast +32 QTimer::qt_metacall +40 QTimer::~QTimer +48 QTimer::~QTimer +56 QObject::event +64 QObject::eventFilter +72 QTimer::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTimer + size=32 align=8 + base size=29 base align=8 +QTimer (0x7ffd1589bcb0) 0 + vptr=((& QTimer::_ZTV6QTimer) + 16u) + QObject (0x7ffd1589bd20) 0 + primary-for QTimer (0x7ffd1589bcb0) + +Vtable for QAbstractEventDispatcher +QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QAbstractEventDispatcher) +16 QAbstractEventDispatcher::metaObject +24 QAbstractEventDispatcher::qt_metacast +32 QAbstractEventDispatcher::qt_metacall +40 QAbstractEventDispatcher::~QAbstractEventDispatcher +48 QAbstractEventDispatcher::~QAbstractEventDispatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 QAbstractEventDispatcher::startingUp +208 QAbstractEventDispatcher::closingDown + +Class QAbstractEventDispatcher + size=16 align=8 + base size=16 base align=8 +QAbstractEventDispatcher (0x7ffd158bd2a0) 0 + vptr=((& QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher) + 16u) + QObject (0x7ffd158bd310) 0 + primary-for QAbstractEventDispatcher (0x7ffd158bd2a0) + +Class QMetaMethod + size=16 align=8 + base size=12 base align=8 +QMetaMethod (0x7ffd158d9150) 0 + +Class QMetaEnum + size=16 align=8 + base size=12 base align=8 +QMetaEnum (0x7ffd158f35b0) 0 + +Class QMetaProperty + size=32 align=8 + base size=32 base align=8 +QMetaProperty (0x7ffd158ff310) 0 + +Class QMetaClassInfo + size=16 align=8 + base size=12 base align=8 +QMetaClassInfo (0x7ffd158ff9a0) 0 + +Class QSystemSemaphore + size=8 align=8 + base size=8 base align=8 +QSystemSemaphore (0x7ffd159124d0) 0 + +Vtable for QLibrary +QLibrary::_ZTV8QLibrary: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QLibrary) +16 QLibrary::metaObject +24 QLibrary::qt_metacast +32 QLibrary::qt_metacall +40 QLibrary::~QLibrary +48 QLibrary::~QLibrary +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QLibrary + size=32 align=8 + base size=25 base align=8 +QLibrary (0x7ffd15912e00) 0 + vptr=((& QLibrary::_ZTV8QLibrary) + 16u) + QObject (0x7ffd15912e70) 0 + primary-for QLibrary (0x7ffd15912e00) + +Vtable for QPluginLoader +QPluginLoader::_ZTV13QPluginLoader: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QPluginLoader) +16 QPluginLoader::metaObject +24 QPluginLoader::qt_metacast +32 QPluginLoader::qt_metacall +40 QPluginLoader::~QPluginLoader +48 QPluginLoader::~QPluginLoader +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QPluginLoader + size=32 align=8 + base size=25 base align=8 +QPluginLoader (0x7ffd1575a8c0) 0 + vptr=((& QPluginLoader::_ZTV13QPluginLoader) + 16u) + QObject (0x7ffd1575a930) 0 + primary-for QPluginLoader (0x7ffd1575a8c0) + +Class QUuid + size=16 align=4 + base size=16 base align=4 +QUuid (0x7ffd1577a070) 0 + +Class QSemaphore + size=8 align=8 + base size=8 base align=8 +QSemaphore (0x7ffd1579b9a0) 0 + +Class QThreadStorageData + size=4 align=4 + base size=4 base align=4 +QThreadStorageData (0x7ffd1579bee0) 0 + +Class QReadWriteLock + size=8 align=8 + base size=8 base align=8 +QReadWriteLock (0x7ffd157aa690) 0 + +Class QReadLocker + size=8 align=8 + base size=8 base align=8 +QReadLocker (0x7ffd157aad20) 0 + +Class QWriteLocker + size=8 align=8 + base size=8 base align=8 +QWriteLocker (0x7ffd157db0e0) 0 + +Class QColor + size=16 align=4 + base size=14 base align=4 +QColor (0x7ffd157f7e70) 0 + +Class QFont + size=16 align=8 + base size=12 base align=8 +QFont (0x7ffd1584e0e0) 0 + +Class QPolygon + size=8 align=8 + base size=8 base align=8 +QPolygon (0x7ffd15686ee0) 0 + QVector (0x7ffd15686f50) 0 + +Class QPolygonF + size=8 align=8 + base size=8 base align=8 +QPolygonF (0x7ffd156ee070) 0 + QVector (0x7ffd156ee0e0) 0 + +Class QRegion::QRegionData + size=32 align=8 + base size=32 base align=8 +QRegion::QRegionData (0x7ffd157275b0) 0 + +Class QRegion + size=8 align=8 + base size=8 base align=8 +QRegion (0x7ffd15706cb0) 0 + +Class QMatrix + size=48 align=8 + base size=48 base align=8 +QMatrix (0x7ffd1573ae00) 0 + +Class QPainterPath::Element + size=24 align=8 + base size=24 base align=8 +QPainterPath::Element (0x7ffd15571850) 0 + +Class QPainterPath + size=8 align=8 + base size=8 base align=8 +QPainterPath (0x7ffd155717e0) 0 + +Class QPainterPathPrivate + size=16 align=8 + base size=16 base align=8 +QPainterPathPrivate (0x7ffd155b4bd0) 0 + +Class QPainterPathStroker + size=8 align=8 + base size=8 base align=8 +QPainterPathStroker (0x7ffd155bd770) 0 + +Class QTransform + size=88 align=8 + base size=88 base align=8 +QTransform (0x7ffd15622310) 0 + +Vtable for QPaintDevice +QPaintDevice::_ZTV12QPaintDevice: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QPaintDevice) +16 QPaintDevice::~QPaintDevice +24 QPaintDevice::~QPaintDevice +32 QPaintDevice::devType +40 __cxa_pure_virtual +48 QPaintDevice::metric + +Class QPaintDevice + size=16 align=8 + base size=10 base align=8 +QPaintDevice (0x7ffd15499620) 0 + vptr=((& QPaintDevice::_ZTV12QPaintDevice) + 16u) + +Class QImageTextKeyLang + size=16 align=8 + base size=16 base align=8 +QImageTextKeyLang (0x7ffd154bdf50) 0 + +Vtable for QImage +QImage::_ZTV6QImage: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QImage) +16 QImage::~QImage +24 QImage::~QImage +32 QImage::devType +40 QImage::paintEngine +48 QImage::metric + +Class QImage + size=24 align=8 + base size=24 base align=8 +QImage (0x7ffd154ec7e0) 0 + vptr=((& QImage::_ZTV6QImage) + 16u) + QPaintDevice (0x7ffd154ec850) 0 + primary-for QImage (0x7ffd154ec7e0) + +Vtable for QPixmap +QPixmap::_ZTV7QPixmap: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QPixmap) +16 QPixmap::~QPixmap +24 QPixmap::~QPixmap +32 QPixmap::devType +40 QPixmap::paintEngine +48 QPixmap::metric + +Class QPixmap + size=24 align=8 + base size=24 base align=8 +QPixmap (0x7ffd1538c230) 0 + vptr=((& QPixmap::_ZTV7QPixmap) + 16u) + QPaintDevice (0x7ffd1538c2a0) 0 + primary-for QPixmap (0x7ffd1538c230) + +Class QBrush + size=8 align=8 + base size=8 base align=8 +QBrush (0x7ffd153d93f0) 0 + +Class QBrushData + size=112 align=8 + base size=112 base align=8 +QBrushData (0x7ffd153fd000) 0 + +Class QGradient + size=64 align=8 + base size=64 base align=8 +QGradient (0x7ffd1540e1c0) 0 + +Class QLinearGradient + size=64 align=8 + base size=64 base align=8 +QLinearGradient (0x7ffd1541ecb0) 0 + QGradient (0x7ffd1541ed20) 0 + +Class QRadialGradient + size=64 align=8 + base size=64 base align=8 +QRadialGradient (0x7ffd1544a150) 0 + QGradient (0x7ffd1544a1c0) 0 + +Class QConicalGradient + size=64 align=8 + base size=64 base align=8 +QConicalGradient (0x7ffd1544a700) 0 + QGradient (0x7ffd1544a770) 0 + +Class QPen + size=8 align=8 + base size=8 base align=8 +QPen (0x7ffd1544aa80) 0 + +Class QTextOption::Tab + size=16 align=8 + base size=14 base align=8 +QTextOption::Tab (0x7ffd151f2230) 0 + +Class QTextOption + size=32 align=8 + base size=32 base align=8 +QTextOption (0x7ffd151f21c0) 0 + +Class QTextLength + size=16 align=8 + base size=16 base align=8 +QTextLength (0x7ffd15250620) 0 + +Class QTextFormat + size=16 align=8 + base size=12 base align=8 +QTextFormat (0x7ffd1526a9a0) 0 + +Class QTextCharFormat + size=16 align=8 + base size=12 base align=8 +QTextCharFormat (0x7ffd15112a10) 0 + QTextFormat (0x7ffd15112a80) 0 + +Class QTextBlockFormat + size=16 align=8 + base size=12 base align=8 +QTextBlockFormat (0x7ffd1517f690) 0 + QTextFormat (0x7ffd1517f700) 0 + +Class QTextListFormat + size=16 align=8 + base size=12 base align=8 +QTextListFormat (0x7ffd151a0cb0) 0 + QTextFormat (0x7ffd151a0d20) 0 + +Class QTextImageFormat + size=16 align=8 + base size=12 base align=8 +QTextImageFormat (0x7ffd151b11c0) 0 + QTextCharFormat (0x7ffd151b1230) 0 + QTextFormat (0x7ffd151b12a0) 0 + +Class QTextFrameFormat + size=16 align=8 + base size=12 base align=8 +QTextFrameFormat (0x7ffd151bc8c0) 0 + QTextFormat (0x7ffd151bc930) 0 + +Class QTextTableFormat + size=16 align=8 + base size=12 base align=8 +QTextTableFormat (0x7ffd14ff27e0) 0 + QTextFrameFormat (0x7ffd14ff2850) 0 + QTextFormat (0x7ffd14ff28c0) 0 + +Class QTextTableCellFormat + size=16 align=8 + base size=12 base align=8 +QTextTableCellFormat (0x7ffd1500c690) 0 + QTextCharFormat (0x7ffd1500c700) 0 + QTextFormat (0x7ffd1500c770) 0 + +Vtable for QTextObject +QTextObject::_ZTV11QTextObject: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTextObject) +16 QTextObject::metaObject +24 QTextObject::qt_metacast +32 QTextObject::qt_metacall +40 QTextObject::~QTextObject +48 QTextObject::~QTextObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTextObject + size=16 align=8 + base size=16 base align=8 +QTextObject (0x7ffd15022b60) 0 + vptr=((& QTextObject::_ZTV11QTextObject) + 16u) + QObject (0x7ffd15022bd0) 0 + primary-for QTextObject (0x7ffd15022b60) + +Vtable for QTextBlockGroup +QTextBlockGroup::_ZTV15QTextBlockGroup: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QTextBlockGroup) +16 QTextBlockGroup::metaObject +24 QTextBlockGroup::qt_metacast +32 QTextBlockGroup::qt_metacall +40 QTextBlockGroup::~QTextBlockGroup +48 QTextBlockGroup::~QTextBlockGroup +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTextBlockGroup::blockInserted +120 QTextBlockGroup::blockRemoved +128 QTextBlockGroup::blockFormatChanged + +Class QTextBlockGroup + size=16 align=8 + base size=16 base align=8 +QTextBlockGroup (0x7ffd1503b3f0) 0 + vptr=((& QTextBlockGroup::_ZTV15QTextBlockGroup) + 16u) + QTextObject (0x7ffd1503b460) 0 + primary-for QTextBlockGroup (0x7ffd1503b3f0) + QObject (0x7ffd1503b4d0) 0 + primary-for QTextObject (0x7ffd1503b460) + +Vtable for QTextFrameLayoutData +QTextFrameLayoutData::_ZTV20QTextFrameLayoutData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QTextFrameLayoutData) +16 QTextFrameLayoutData::~QTextFrameLayoutData +24 QTextFrameLayoutData::~QTextFrameLayoutData + +Class QTextFrameLayoutData + size=8 align=8 + base size=8 base align=8 +QTextFrameLayoutData (0x7ffd1504dcb0) 0 nearly-empty + vptr=((& QTextFrameLayoutData::_ZTV20QTextFrameLayoutData) + 16u) + +Class QTextFrame::iterator + size=32 align=8 + base size=28 base align=8 +QTextFrame::iterator (0x7ffd15058700) 0 + +Vtable for QTextFrame +QTextFrame::_ZTV10QTextFrame: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextFrame) +16 QTextFrame::metaObject +24 QTextFrame::qt_metacast +32 QTextFrame::qt_metacall +40 QTextFrame::~QTextFrame +48 QTextFrame::~QTextFrame +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTextFrame + size=16 align=8 + base size=16 base align=8 +QTextFrame (0x7ffd1504de00) 0 + vptr=((& QTextFrame::_ZTV10QTextFrame) + 16u) + QTextObject (0x7ffd1504de70) 0 + primary-for QTextFrame (0x7ffd1504de00) + QObject (0x7ffd1504dee0) 0 + primary-for QTextObject (0x7ffd1504de70) + +Vtable for QTextBlockUserData +QTextBlockUserData::_ZTV18QTextBlockUserData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QTextBlockUserData) +16 QTextBlockUserData::~QTextBlockUserData +24 QTextBlockUserData::~QTextBlockUserData + +Class QTextBlockUserData + size=8 align=8 + base size=8 base align=8 +QTextBlockUserData (0x7ffd1508a850) 0 nearly-empty + vptr=((& QTextBlockUserData::_ZTV18QTextBlockUserData) + 16u) + +Class QTextBlock::iterator + size=24 align=8 + base size=20 base align=8 +QTextBlock::iterator (0x7ffd150951c0) 0 + +Class QTextBlock + size=16 align=8 + base size=12 base align=8 +QTextBlock (0x7ffd1508a9a0) 0 + +Class QTextFragment + size=16 align=8 + base size=16 base align=8 +QTextFragment (0x7ffd14ecd310) 0 + +Class QFontMetrics + size=8 align=8 + base size=8 base align=8 +QFontMetrics (0x7ffd14ee94d0) 0 + +Class QFontMetricsF + size=8 align=8 + base size=8 base align=8 +QFontMetricsF (0x7ffd14f02930) 0 + +Class QFontDatabase + size=8 align=8 + base size=8 base align=8 +QFontDatabase (0x7ffd14f0d850) 0 + +Vtable for QAbstractUndoItem +QAbstractUndoItem::_ZTV17QAbstractUndoItem: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAbstractUndoItem) +16 __cxa_pure_virtual +24 __cxa_pure_virtual +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QAbstractUndoItem + size=8 align=8 + base size=8 base align=8 +QAbstractUndoItem (0x7ffd14f24850) 0 nearly-empty + vptr=((& QAbstractUndoItem::_ZTV17QAbstractUndoItem) + 16u) + +Vtable for QTextDocument +QTextDocument::_ZTV13QTextDocument: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QTextDocument) +16 QTextDocument::metaObject +24 QTextDocument::qt_metacast +32 QTextDocument::qt_metacall +40 QTextDocument::~QTextDocument +48 QTextDocument::~QTextDocument +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTextDocument::clear +120 QTextDocument::createObject +128 QTextDocument::loadResource + +Class QTextDocument + size=16 align=8 + base size=16 base align=8 +QTextDocument (0x7ffd14f392a0) 0 + vptr=((& QTextDocument::_ZTV13QTextDocument) + 16u) + QObject (0x7ffd14f39310) 0 + primary-for QTextDocument (0x7ffd14f392a0) + +Class QTextTableCell + size=16 align=8 + base size=12 base align=8 +QTextTableCell (0x7ffd14f992a0) 0 + +Vtable for QTextTable +QTextTable::_ZTV10QTextTable: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextTable) +16 QTextTable::metaObject +24 QTextTable::qt_metacast +32 QTextTable::qt_metacall +40 QTextTable::~QTextTable +48 QTextTable::~QTextTable +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTextTable + size=16 align=8 + base size=16 base align=8 +QTextTable (0x7ffd14fb23f0) 0 + vptr=((& QTextTable::_ZTV10QTextTable) + 16u) + QTextFrame (0x7ffd14fb2460) 0 + primary-for QTextTable (0x7ffd14fb23f0) + QTextObject (0x7ffd14fb24d0) 0 + primary-for QTextFrame (0x7ffd14fb2460) + QObject (0x7ffd14fb2540) 0 + primary-for QTextObject (0x7ffd14fb24d0) + +Class QTextDocumentWriter + size=8 align=8 + base size=8 base align=8 +QTextDocumentWriter (0x7ffd14dcbbd0) 0 + +Class QKeySequence + size=8 align=8 + base size=8 base align=8 +QKeySequence (0x7ffd14dd82a0) 0 + +Vtable for QMimeSource +QMimeSource::_ZTV11QMimeSource: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMimeSource) +16 QMimeSource::~QMimeSource +24 QMimeSource::~QMimeSource +32 __cxa_pure_virtual +40 QMimeSource::provides +48 __cxa_pure_virtual + +Class QMimeSource + size=8 align=8 + base size=8 base align=8 +QMimeSource (0x7ffd14df4e70) 0 nearly-empty + vptr=((& QMimeSource::_ZTV11QMimeSource) + 16u) + +Vtable for QDrag +QDrag::_ZTV5QDrag: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QDrag) +16 QDrag::metaObject +24 QDrag::qt_metacast +32 QDrag::qt_metacall +40 QDrag::~QDrag +48 QDrag::~QDrag +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QDrag + size=16 align=8 + base size=16 base align=8 +QDrag (0x7ffd14df4f50) 0 + vptr=((& QDrag::_ZTV5QDrag) + 16u) + QObject (0x7ffd14e20000) 0 + primary-for QDrag (0x7ffd14df4f50) + +Vtable for QInputEvent +QInputEvent::_ZTV11QInputEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QInputEvent) +16 QInputEvent::~QInputEvent +24 QInputEvent::~QInputEvent + +Class QInputEvent + size=24 align=8 + base size=24 base align=8 +QInputEvent (0x7ffd14e34770) 0 + vptr=((& QInputEvent::_ZTV11QInputEvent) + 16u) + QEvent (0x7ffd14e347e0) 0 + primary-for QInputEvent (0x7ffd14e34770) + +Vtable for QMouseEvent +QMouseEvent::_ZTV11QMouseEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMouseEvent) +16 QMouseEvent::~QMouseEvent +24 QMouseEvent::~QMouseEvent + +Class QMouseEvent + size=48 align=8 + base size=48 base align=8 +QMouseEvent (0x7ffd14e34d20) 0 + vptr=((& QMouseEvent::_ZTV11QMouseEvent) + 16u) + QInputEvent (0x7ffd14e34d90) 0 + primary-for QMouseEvent (0x7ffd14e34d20) + QEvent (0x7ffd14e34e00) 0 + primary-for QInputEvent (0x7ffd14e34d90) + +Vtable for QHoverEvent +QHoverEvent::_ZTV11QHoverEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QHoverEvent) +16 QHoverEvent::~QHoverEvent +24 QHoverEvent::~QHoverEvent + +Class QHoverEvent + size=40 align=8 + base size=36 base align=8 +QHoverEvent (0x7ffd14e54b60) 0 + vptr=((& QHoverEvent::_ZTV11QHoverEvent) + 16u) + QEvent (0x7ffd14e54bd0) 0 + primary-for QHoverEvent (0x7ffd14e54b60) + +Vtable for QWheelEvent +QWheelEvent::_ZTV11QWheelEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QWheelEvent) +16 QWheelEvent::~QWheelEvent +24 QWheelEvent::~QWheelEvent + +Class QWheelEvent + size=56 align=8 + base size=52 base align=8 +QWheelEvent (0x7ffd14e6b230) 0 + vptr=((& QWheelEvent::_ZTV11QWheelEvent) + 16u) + QInputEvent (0x7ffd14e6b2a0) 0 + primary-for QWheelEvent (0x7ffd14e6b230) + QEvent (0x7ffd14e6b310) 0 + primary-for QInputEvent (0x7ffd14e6b2a0) + +Vtable for QTabletEvent +QTabletEvent::_ZTV12QTabletEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTabletEvent) +16 QTabletEvent::~QTabletEvent +24 QTabletEvent::~QTabletEvent + +Class QTabletEvent + size=120 align=8 + base size=120 base align=8 +QTabletEvent (0x7ffd14e81070) 0 + vptr=((& QTabletEvent::_ZTV12QTabletEvent) + 16u) + QInputEvent (0x7ffd14e810e0) 0 + primary-for QTabletEvent (0x7ffd14e81070) + QEvent (0x7ffd14e81150) 0 + primary-for QInputEvent (0x7ffd14e810e0) + +Vtable for QKeyEvent +QKeyEvent::_ZTV9QKeyEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QKeyEvent) +16 QKeyEvent::~QKeyEvent +24 QKeyEvent::~QKeyEvent + +Class QKeyEvent + size=40 align=8 + base size=39 base align=8 +QKeyEvent (0x7ffd14e9e380) 0 + vptr=((& QKeyEvent::_ZTV9QKeyEvent) + 16u) + QInputEvent (0x7ffd14e9e3f0) 0 + primary-for QKeyEvent (0x7ffd14e9e380) + QEvent (0x7ffd14e9e460) 0 + primary-for QInputEvent (0x7ffd14e9e3f0) + +Vtable for QFocusEvent +QFocusEvent::_ZTV11QFocusEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFocusEvent) +16 QFocusEvent::~QFocusEvent +24 QFocusEvent::~QFocusEvent + +Class QFocusEvent + size=24 align=8 + base size=24 base align=8 +QFocusEvent (0x7ffd14ec1cb0) 0 + vptr=((& QFocusEvent::_ZTV11QFocusEvent) + 16u) + QEvent (0x7ffd14ec1d20) 0 + primary-for QFocusEvent (0x7ffd14ec1cb0) + +Vtable for QPaintEvent +QPaintEvent::_ZTV11QPaintEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QPaintEvent) +16 QPaintEvent::~QPaintEvent +24 QPaintEvent::~QPaintEvent + +Class QPaintEvent + size=56 align=8 + base size=49 base align=8 +QPaintEvent (0x7ffd14ccd770) 0 + vptr=((& QPaintEvent::_ZTV11QPaintEvent) + 16u) + QEvent (0x7ffd14ccd7e0) 0 + primary-for QPaintEvent (0x7ffd14ccd770) + +Vtable for QUpdateLaterEvent +QUpdateLaterEvent::_ZTV17QUpdateLaterEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QUpdateLaterEvent) +16 QUpdateLaterEvent::~QUpdateLaterEvent +24 QUpdateLaterEvent::~QUpdateLaterEvent + +Class QUpdateLaterEvent + size=32 align=8 + base size=32 base align=8 +QUpdateLaterEvent (0x7ffd14cda380) 0 + vptr=((& QUpdateLaterEvent::_ZTV17QUpdateLaterEvent) + 16u) + QEvent (0x7ffd14cda3f0) 0 + primary-for QUpdateLaterEvent (0x7ffd14cda380) + +Vtable for QMoveEvent +QMoveEvent::_ZTV10QMoveEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QMoveEvent) +16 QMoveEvent::~QMoveEvent +24 QMoveEvent::~QMoveEvent + +Class QMoveEvent + size=40 align=8 + base size=36 base align=8 +QMoveEvent (0x7ffd14cda7e0) 0 + vptr=((& QMoveEvent::_ZTV10QMoveEvent) + 16u) + QEvent (0x7ffd14cda850) 0 + primary-for QMoveEvent (0x7ffd14cda7e0) + +Vtable for QResizeEvent +QResizeEvent::_ZTV12QResizeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QResizeEvent) +16 QResizeEvent::~QResizeEvent +24 QResizeEvent::~QResizeEvent + +Class QResizeEvent + size=40 align=8 + base size=36 base align=8 +QResizeEvent (0x7ffd14cdae70) 0 + vptr=((& QResizeEvent::_ZTV12QResizeEvent) + 16u) + QEvent (0x7ffd14cdaee0) 0 + primary-for QResizeEvent (0x7ffd14cdae70) + +Vtable for QCloseEvent +QCloseEvent::_ZTV11QCloseEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QCloseEvent) +16 QCloseEvent::~QCloseEvent +24 QCloseEvent::~QCloseEvent + +Class QCloseEvent + size=24 align=8 + base size=20 base align=8 +QCloseEvent (0x7ffd14cec3f0) 0 + vptr=((& QCloseEvent::_ZTV11QCloseEvent) + 16u) + QEvent (0x7ffd14cec460) 0 + primary-for QCloseEvent (0x7ffd14cec3f0) + +Vtable for QIconDragEvent +QIconDragEvent::_ZTV14QIconDragEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QIconDragEvent) +16 QIconDragEvent::~QIconDragEvent +24 QIconDragEvent::~QIconDragEvent + +Class QIconDragEvent + size=24 align=8 + base size=20 base align=8 +QIconDragEvent (0x7ffd14cec620) 0 + vptr=((& QIconDragEvent::_ZTV14QIconDragEvent) + 16u) + QEvent (0x7ffd14cec690) 0 + primary-for QIconDragEvent (0x7ffd14cec620) + +Vtable for QShowEvent +QShowEvent::_ZTV10QShowEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QShowEvent) +16 QShowEvent::~QShowEvent +24 QShowEvent::~QShowEvent + +Class QShowEvent + size=24 align=8 + base size=20 base align=8 +QShowEvent (0x7ffd14cec850) 0 + vptr=((& QShowEvent::_ZTV10QShowEvent) + 16u) + QEvent (0x7ffd14cec8c0) 0 + primary-for QShowEvent (0x7ffd14cec850) + +Vtable for QHideEvent +QHideEvent::_ZTV10QHideEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QHideEvent) +16 QHideEvent::~QHideEvent +24 QHideEvent::~QHideEvent + +Class QHideEvent + size=24 align=8 + base size=20 base align=8 +QHideEvent (0x7ffd14ceca80) 0 + vptr=((& QHideEvent::_ZTV10QHideEvent) + 16u) + QEvent (0x7ffd14cecaf0) 0 + primary-for QHideEvent (0x7ffd14ceca80) + +Vtable for QContextMenuEvent +QContextMenuEvent::_ZTV17QContextMenuEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QContextMenuEvent) +16 QContextMenuEvent::~QContextMenuEvent +24 QContextMenuEvent::~QContextMenuEvent + +Class QContextMenuEvent + size=48 align=8 + base size=41 base align=8 +QContextMenuEvent (0x7ffd14ceccb0) 0 + vptr=((& QContextMenuEvent::_ZTV17QContextMenuEvent) + 16u) + QInputEvent (0x7ffd14cecd20) 0 + primary-for QContextMenuEvent (0x7ffd14ceccb0) + QEvent (0x7ffd14cecd90) 0 + primary-for QInputEvent (0x7ffd14cecd20) + +Class QInputMethodEvent::Attribute + size=32 align=8 + base size=32 base align=8 +QInputMethodEvent::Attribute (0x7ffd14d06850) 0 + +Vtable for QInputMethodEvent +QInputMethodEvent::_ZTV17QInputMethodEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QInputMethodEvent) +16 QInputMethodEvent::~QInputMethodEvent +24 QInputMethodEvent::~QInputMethodEvent + +Class QInputMethodEvent + size=56 align=8 + base size=56 base align=8 +QInputMethodEvent (0x7ffd14d06770) 0 + vptr=((& QInputMethodEvent::_ZTV17QInputMethodEvent) + 16u) + QEvent (0x7ffd14d067e0) 0 + primary-for QInputMethodEvent (0x7ffd14d06770) + +Vtable for QDropEvent +QDropEvent::_ZTV10QDropEvent: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QDropEvent) +16 QDropEvent::~QDropEvent +24 QDropEvent::~QDropEvent +32 QDropEvent::format +40 QDropEvent::encodedData +48 QDropEvent::provides +56 (int (*)(...))-0x00000000000000018 +64 (int (*)(...))(& _ZTI10QDropEvent) +72 QDropEvent::_ZThn24_N10QDropEventD1Ev +80 QDropEvent::_ZThn24_N10QDropEventD0Ev +88 QDropEvent::_ZThn24_NK10QDropEvent6formatEi +96 QDropEvent::_ZThn24_NK10QDropEvent8providesEPKc +104 QDropEvent::_ZThn24_NK10QDropEvent11encodedDataEPKc + +Class QDropEvent + size=80 align=8 + base size=80 base align=8 +QDropEvent (0x7ffd14d3f200) 0 + vptr=((& QDropEvent::_ZTV10QDropEvent) + 16u) + QEvent (0x7ffd14d3df50) 0 + primary-for QDropEvent (0x7ffd14d3f200) + QMimeSource (0x7ffd14d41000) 24 nearly-empty + vptr=((& QDropEvent::_ZTV10QDropEvent) + 72u) + +Vtable for QDragMoveEvent +QDragMoveEvent::_ZTV14QDragMoveEvent: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QDragMoveEvent) +16 QDragMoveEvent::~QDragMoveEvent +24 QDragMoveEvent::~QDragMoveEvent +32 QDropEvent::format +40 QDropEvent::encodedData +48 QDropEvent::provides +56 (int (*)(...))-0x00000000000000018 +64 (int (*)(...))(& _ZTI14QDragMoveEvent) +72 QDragMoveEvent::_ZThn24_N14QDragMoveEventD1Ev +80 QDragMoveEvent::_ZThn24_N14QDragMoveEventD0Ev +88 QDropEvent::_ZThn24_NK10QDropEvent6formatEi +96 QDropEvent::_ZThn24_NK10QDropEvent8providesEPKc +104 QDropEvent::_ZThn24_NK10QDropEvent11encodedDataEPKc + +Class QDragMoveEvent + size=96 align=8 + base size=96 base align=8 +QDragMoveEvent (0x7ffd14d5acb0) 0 + vptr=((& QDragMoveEvent::_ZTV14QDragMoveEvent) + 16u) + QDropEvent (0x7ffd14d59900) 0 + primary-for QDragMoveEvent (0x7ffd14d5acb0) + QEvent (0x7ffd14d5ad20) 0 + primary-for QDropEvent (0x7ffd14d59900) + QMimeSource (0x7ffd14d5ad90) 24 nearly-empty + vptr=((& QDragMoveEvent::_ZTV14QDragMoveEvent) + 72u) + +Vtable for QDragEnterEvent +QDragEnterEvent::_ZTV15QDragEnterEvent: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QDragEnterEvent) +16 QDragEnterEvent::~QDragEnterEvent +24 QDragEnterEvent::~QDragEnterEvent +32 QDropEvent::format +40 QDropEvent::encodedData +48 QDropEvent::provides +56 (int (*)(...))-0x00000000000000018 +64 (int (*)(...))(& _ZTI15QDragEnterEvent) +72 QDragEnterEvent::_ZThn24_N15QDragEnterEventD1Ev +80 QDragEnterEvent::_ZThn24_N15QDragEnterEventD0Ev +88 QDropEvent::_ZThn24_NK10QDropEvent6formatEi +96 QDropEvent::_ZThn24_NK10QDropEvent8providesEPKc +104 QDropEvent::_ZThn24_NK10QDropEvent11encodedDataEPKc + +Class QDragEnterEvent + size=96 align=8 + base size=96 base align=8 +QDragEnterEvent (0x7ffd14d6c460) 0 + vptr=((& QDragEnterEvent::_ZTV15QDragEnterEvent) + 16u) + QDragMoveEvent (0x7ffd14d6c4d0) 0 + primary-for QDragEnterEvent (0x7ffd14d6c460) + QDropEvent (0x7ffd14d6a280) 0 + primary-for QDragMoveEvent (0x7ffd14d6c4d0) + QEvent (0x7ffd14d6c540) 0 + primary-for QDropEvent (0x7ffd14d6a280) + QMimeSource (0x7ffd14d6c5b0) 24 nearly-empty + vptr=((& QDragEnterEvent::_ZTV15QDragEnterEvent) + 72u) + +Vtable for QDragResponseEvent +QDragResponseEvent::_ZTV18QDragResponseEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QDragResponseEvent) +16 QDragResponseEvent::~QDragResponseEvent +24 QDragResponseEvent::~QDragResponseEvent + +Class QDragResponseEvent + size=24 align=8 + base size=21 base align=8 +QDragResponseEvent (0x7ffd14d6c770) 0 + vptr=((& QDragResponseEvent::_ZTV18QDragResponseEvent) + 16u) + QEvent (0x7ffd14d6c7e0) 0 + primary-for QDragResponseEvent (0x7ffd14d6c770) + +Vtable for QDragLeaveEvent +QDragLeaveEvent::_ZTV15QDragLeaveEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QDragLeaveEvent) +16 QDragLeaveEvent::~QDragLeaveEvent +24 QDragLeaveEvent::~QDragLeaveEvent + +Class QDragLeaveEvent + size=24 align=8 + base size=20 base align=8 +QDragLeaveEvent (0x7ffd14d6cbd0) 0 + vptr=((& QDragLeaveEvent::_ZTV15QDragLeaveEvent) + 16u) + QEvent (0x7ffd14d6cc40) 0 + primary-for QDragLeaveEvent (0x7ffd14d6cbd0) + +Vtable for QHelpEvent +QHelpEvent::_ZTV10QHelpEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QHelpEvent) +16 QHelpEvent::~QHelpEvent +24 QHelpEvent::~QHelpEvent + +Class QHelpEvent + size=40 align=8 + base size=36 base align=8 +QHelpEvent (0x7ffd14d6ce00) 0 + vptr=((& QHelpEvent::_ZTV10QHelpEvent) + 16u) + QEvent (0x7ffd14d6ce70) 0 + primary-for QHelpEvent (0x7ffd14d6ce00) + +Vtable for QStatusTipEvent +QStatusTipEvent::_ZTV15QStatusTipEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QStatusTipEvent) +16 QStatusTipEvent::~QStatusTipEvent +24 QStatusTipEvent::~QStatusTipEvent + +Class QStatusTipEvent + size=32 align=8 + base size=32 base align=8 +QStatusTipEvent (0x7ffd14d7ce70) 0 + vptr=((& QStatusTipEvent::_ZTV15QStatusTipEvent) + 16u) + QEvent (0x7ffd14d7cee0) 0 + primary-for QStatusTipEvent (0x7ffd14d7ce70) + +Vtable for QWhatsThisClickedEvent +QWhatsThisClickedEvent::_ZTV22QWhatsThisClickedEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QWhatsThisClickedEvent) +16 QWhatsThisClickedEvent::~QWhatsThisClickedEvent +24 QWhatsThisClickedEvent::~QWhatsThisClickedEvent + +Class QWhatsThisClickedEvent + size=32 align=8 + base size=32 base align=8 +QWhatsThisClickedEvent (0x7ffd14d81380) 0 + vptr=((& QWhatsThisClickedEvent::_ZTV22QWhatsThisClickedEvent) + 16u) + QEvent (0x7ffd14d813f0) 0 + primary-for QWhatsThisClickedEvent (0x7ffd14d81380) + +Vtable for QActionEvent +QActionEvent::_ZTV12QActionEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QActionEvent) +16 QActionEvent::~QActionEvent +24 QActionEvent::~QActionEvent + +Class QActionEvent + size=40 align=8 + base size=40 base align=8 +QActionEvent (0x7ffd14d81850) 0 + vptr=((& QActionEvent::_ZTV12QActionEvent) + 16u) + QEvent (0x7ffd14d818c0) 0 + primary-for QActionEvent (0x7ffd14d81850) + +Vtable for QFileOpenEvent +QFileOpenEvent::_ZTV14QFileOpenEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QFileOpenEvent) +16 QFileOpenEvent::~QFileOpenEvent +24 QFileOpenEvent::~QFileOpenEvent + +Class QFileOpenEvent + size=32 align=8 + base size=32 base align=8 +QFileOpenEvent (0x7ffd14d81ee0) 0 + vptr=((& QFileOpenEvent::_ZTV14QFileOpenEvent) + 16u) + QEvent (0x7ffd14d81f50) 0 + primary-for QFileOpenEvent (0x7ffd14d81ee0) + +Vtable for QToolBarChangeEvent +QToolBarChangeEvent::_ZTV19QToolBarChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QToolBarChangeEvent) +16 QToolBarChangeEvent::~QToolBarChangeEvent +24 QToolBarChangeEvent::~QToolBarChangeEvent + +Class QToolBarChangeEvent + size=24 align=8 + base size=21 base align=8 +QToolBarChangeEvent (0x7ffd14d95230) 0 + vptr=((& QToolBarChangeEvent::_ZTV19QToolBarChangeEvent) + 16u) + QEvent (0x7ffd14d952a0) 0 + primary-for QToolBarChangeEvent (0x7ffd14d95230) + +Vtable for QShortcutEvent +QShortcutEvent::_ZTV14QShortcutEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QShortcutEvent) +16 QShortcutEvent::~QShortcutEvent +24 QShortcutEvent::~QShortcutEvent + +Class QShortcutEvent + size=40 align=8 + base size=40 base align=8 +QShortcutEvent (0x7ffd14d95770) 0 + vptr=((& QShortcutEvent::_ZTV14QShortcutEvent) + 16u) + QEvent (0x7ffd14d957e0) 0 + primary-for QShortcutEvent (0x7ffd14d95770) + +Vtable for QClipboardEvent +QClipboardEvent::_ZTV15QClipboardEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QClipboardEvent) +16 QClipboardEvent::~QClipboardEvent +24 QClipboardEvent::~QClipboardEvent + +Class QClipboardEvent + size=24 align=8 + base size=20 base align=8 +QClipboardEvent (0x7ffd14da3620) 0 + vptr=((& QClipboardEvent::_ZTV15QClipboardEvent) + 16u) + QEvent (0x7ffd14da3690) 0 + primary-for QClipboardEvent (0x7ffd14da3620) + +Vtable for QWindowStateChangeEvent +QWindowStateChangeEvent::_ZTV23QWindowStateChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QWindowStateChangeEvent) +16 QWindowStateChangeEvent::~QWindowStateChangeEvent +24 QWindowStateChangeEvent::~QWindowStateChangeEvent + +Class QWindowStateChangeEvent + size=24 align=8 + base size=24 base align=8 +QWindowStateChangeEvent (0x7ffd14da3a80) 0 + vptr=((& QWindowStateChangeEvent::_ZTV23QWindowStateChangeEvent) + 16u) + QEvent (0x7ffd14da3af0) 0 + primary-for QWindowStateChangeEvent (0x7ffd14da3a80) + +Vtable for QMenubarUpdatedEvent +QMenubarUpdatedEvent::_ZTV20QMenubarUpdatedEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QMenubarUpdatedEvent) +16 QMenubarUpdatedEvent::~QMenubarUpdatedEvent +24 QMenubarUpdatedEvent::~QMenubarUpdatedEvent + +Class QMenubarUpdatedEvent + size=32 align=8 + base size=32 base align=8 +QMenubarUpdatedEvent (0x7ffd14da37e0) 0 + vptr=((& QMenubarUpdatedEvent::_ZTV20QMenubarUpdatedEvent) + 16u) + QEvent (0x7ffd14da3cb0) 0 + primary-for QMenubarUpdatedEvent (0x7ffd14da37e0) + +Class QTextInlineObject + size=16 align=8 + base size=16 base align=8 +QTextInlineObject (0x7ffd14dafa10) 0 + +Class QTextLayout::FormatRange + size=24 align=8 + base size=24 base align=8 +QTextLayout::FormatRange (0x7ffd14dc0cb0) 0 + +Class QTextLayout + size=8 align=8 + base size=8 base align=8 +QTextLayout (0x7ffd14dc0a10) 0 + +Class QTextLine + size=16 align=8 + base size=16 base align=8 +QTextLine (0x7ffd14bdaa80) 0 + +Vtable for QTextList +QTextList::_ZTV9QTextList: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTextList) +16 QTextList::metaObject +24 QTextList::qt_metacast +32 QTextList::qt_metacall +40 QTextList::~QTextList +48 QTextList::~QTextList +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTextBlockGroup::blockInserted +120 QTextBlockGroup::blockRemoved +128 QTextBlockGroup::blockFormatChanged + +Class QTextList + size=16 align=8 + base size=16 base align=8 +QTextList (0x7ffd14c0c310) 0 + vptr=((& QTextList::_ZTV9QTextList) + 16u) + QTextBlockGroup (0x7ffd14c0c380) 0 + primary-for QTextList (0x7ffd14c0c310) + QTextObject (0x7ffd14c0c3f0) 0 + primary-for QTextBlockGroup (0x7ffd14c0c380) + QObject (0x7ffd14c0c460) 0 + primary-for QTextObject (0x7ffd14c0c3f0) + +Class QFontInfo + size=8 align=8 + base size=8 base align=8 +QFontInfo (0x7ffd14c301c0) 0 + +Class QTextDocumentFragment + size=8 align=8 + base size=8 base align=8 +QTextDocumentFragment (0x7ffd14c30cb0) 0 + +Class QTextCursor + size=8 align=8 + base size=8 base align=8 +QTextCursor (0x7ffd14c3c700) 0 + +Class QPalette + size=16 align=8 + base size=12 base align=8 +QPalette (0x7ffd14c50bd0) 0 + +Class QColorGroup + size=16 align=8 + base size=12 base align=8 +QColorGroup (0x7ffd14cb64d0) 0 + QPalette (0x7ffd14cb6540) 0 + +Class QAbstractTextDocumentLayout::Selection + size=24 align=8 + base size=24 base align=8 +QAbstractTextDocumentLayout::Selection (0x7ffd14aeda10) 0 + +Class QAbstractTextDocumentLayout::PaintContext + size=64 align=8 + base size=64 base align=8 +QAbstractTextDocumentLayout::PaintContext (0x7ffd14aeda80) 0 + +Vtable for QAbstractTextDocumentLayout +QAbstractTextDocumentLayout::_ZTV27QAbstractTextDocumentLayout: 24u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QAbstractTextDocumentLayout) +16 QAbstractTextDocumentLayout::metaObject +24 QAbstractTextDocumentLayout::qt_metacast +32 QAbstractTextDocumentLayout::qt_metacall +40 QAbstractTextDocumentLayout::~QAbstractTextDocumentLayout +48 QAbstractTextDocumentLayout::~QAbstractTextDocumentLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 QAbstractTextDocumentLayout::resizeInlineObject +176 QAbstractTextDocumentLayout::positionInlineObject +184 QAbstractTextDocumentLayout::drawInlineObject + +Class QAbstractTextDocumentLayout + size=16 align=8 + base size=16 base align=8 +QAbstractTextDocumentLayout (0x7ffd14aed7e0) 0 + vptr=((& QAbstractTextDocumentLayout::_ZTV27QAbstractTextDocumentLayout) + 16u) + QObject (0x7ffd14aed850) 0 + primary-for QAbstractTextDocumentLayout (0x7ffd14aed7e0) + +Vtable for QTextObjectInterface +QTextObjectInterface::_ZTV20QTextObjectInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QTextObjectInterface) +16 QTextObjectInterface::~QTextObjectInterface +24 QTextObjectInterface::~QTextObjectInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QTextObjectInterface + size=8 align=8 + base size=8 base align=8 +QTextObjectInterface (0x7ffd14b35150) 0 nearly-empty + vptr=((& QTextObjectInterface::_ZTV20QTextObjectInterface) + 16u) + +Vtable for QSyntaxHighlighter +QSyntaxHighlighter::_ZTV18QSyntaxHighlighter: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QSyntaxHighlighter) +16 QSyntaxHighlighter::metaObject +24 QSyntaxHighlighter::qt_metacast +32 QSyntaxHighlighter::qt_metacall +40 QSyntaxHighlighter::~QSyntaxHighlighter +48 QSyntaxHighlighter::~QSyntaxHighlighter +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual + +Class QSyntaxHighlighter + size=16 align=8 + base size=16 base align=8 +QSyntaxHighlighter (0x7ffd14b412a0) 0 + vptr=((& QSyntaxHighlighter::_ZTV18QSyntaxHighlighter) + 16u) + QObject (0x7ffd14b41310) 0 + primary-for QSyntaxHighlighter (0x7ffd14b412a0) + +Vtable for QUndoGroup +QUndoGroup::_ZTV10QUndoGroup: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QUndoGroup) +16 QUndoGroup::metaObject +24 QUndoGroup::qt_metacast +32 QUndoGroup::qt_metacall +40 QUndoGroup::~QUndoGroup +48 QUndoGroup::~QUndoGroup +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QUndoGroup + size=16 align=8 + base size=16 base align=8 +QUndoGroup (0x7ffd14b58c40) 0 + vptr=((& QUndoGroup::_ZTV10QUndoGroup) + 16u) + QObject (0x7ffd14b58cb0) 0 + primary-for QUndoGroup (0x7ffd14b58c40) + +Class QDesktopServices + size=1 align=1 + base size=0 base align=1 +QDesktopServices (0x7ffd14b737e0) 0 empty + +Class QSizePolicy + size=4 align=4 + base size=4 base align=4 +QSizePolicy (0x7ffd14b73930) 0 + +Class QCursor + size=8 align=8 + base size=8 base align=8 +QCursor (0x7ffd14a31690) 0 + +Class QWidgetData + size=88 align=8 + base size=88 base align=8 +QWidgetData (0x7ffd14a31e70) 0 + +Vtable for QWidget +QWidget::_ZTV7QWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QWidget) +16 QWidget::metaObject +24 QWidget::qt_metacast +32 QWidget::qt_metacall +40 QWidget::~QWidget +48 QWidget::~QWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI7QWidget) +464 QWidget::_ZThn16_N7QWidgetD1Ev +472 QWidget::_ZThn16_N7QWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWidget + size=40 align=8 + base size=40 base align=8 +QWidget (0x7ffd14a2da00) 0 + vptr=((& QWidget::_ZTV7QWidget) + 16u) + QObject (0x7ffd14a31ee0) 0 + primary-for QWidget (0x7ffd14a2da00) + QPaintDevice (0x7ffd14a31f50) 16 + vptr=((& QWidget::_ZTV7QWidget) + 464u) + +Vtable for QFrame +QFrame::_ZTV6QFrame: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QFrame) +16 QFrame::metaObject +24 QFrame::qt_metacast +32 QFrame::qt_metacall +40 QFrame::~QFrame +48 QFrame::~QFrame +56 QFrame::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QFrame::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFrame::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI6QFrame) +464 QFrame::_ZThn16_N6QFrameD1Ev +472 QFrame::_ZThn16_N6QFrameD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFrame + size=40 align=8 + base size=40 base align=8 +QFrame (0x7ffd149b0cb0) 0 + vptr=((& QFrame::_ZTV6QFrame) + 16u) + QWidget (0x7ffd147b1400) 0 + primary-for QFrame (0x7ffd149b0cb0) + QObject (0x7ffd149b0d20) 0 + primary-for QWidget (0x7ffd147b1400) + QPaintDevice (0x7ffd149b0d90) 16 + vptr=((& QFrame::_ZTV6QFrame) + 464u) + +Vtable for QAbstractScrollArea +QAbstractScrollArea::_ZTV19QAbstractScrollArea: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractScrollArea) +16 QAbstractScrollArea::metaObject +24 QAbstractScrollArea::qt_metacast +32 QAbstractScrollArea::qt_metacall +40 QAbstractScrollArea::~QAbstractScrollArea +48 QAbstractScrollArea::~QAbstractScrollArea +56 QAbstractScrollArea::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractScrollArea::mousePressEvent +168 QAbstractScrollArea::mouseReleaseEvent +176 QAbstractScrollArea::mouseDoubleClickEvent +184 QAbstractScrollArea::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractScrollArea::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractScrollArea::paintEvent +256 QWidget::moveEvent +264 QAbstractScrollArea::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractScrollArea::dragEnterEvent +312 QAbstractScrollArea::dragMoveEvent +320 QAbstractScrollArea::dragLeaveEvent +328 QAbstractScrollArea::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QAbstractScrollArea::scrollContentsBy +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI19QAbstractScrollArea) +480 QAbstractScrollArea::_ZThn16_N19QAbstractScrollAreaD1Ev +488 QAbstractScrollArea::_ZThn16_N19QAbstractScrollAreaD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractScrollArea + size=40 align=8 + base size=40 base align=8 +QAbstractScrollArea (0x7ffd147d9310) 0 + vptr=((& QAbstractScrollArea::_ZTV19QAbstractScrollArea) + 16u) + QFrame (0x7ffd147d9380) 0 + primary-for QAbstractScrollArea (0x7ffd147d9310) + QWidget (0x7ffd147ce700) 0 + primary-for QFrame (0x7ffd147d9380) + QObject (0x7ffd147d93f0) 0 + primary-for QWidget (0x7ffd147ce700) + QPaintDevice (0x7ffd147d9460) 16 + vptr=((& QAbstractScrollArea::_ZTV19QAbstractScrollArea) + 480u) + +Class QItemSelectionRange + size=16 align=8 + base size=16 base align=8 +QItemSelectionRange (0x7ffd147fc230) 0 + +Vtable for QItemSelectionModel +QItemSelectionModel::_ZTV19QItemSelectionModel: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QItemSelectionModel) +16 QItemSelectionModel::metaObject +24 QItemSelectionModel::qt_metacast +32 QItemSelectionModel::qt_metacall +40 QItemSelectionModel::~QItemSelectionModel +48 QItemSelectionModel::~QItemSelectionModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QItemSelectionModel::select +120 QItemSelectionModel::select +128 QItemSelectionModel::clear +136 QItemSelectionModel::reset + +Class QItemSelectionModel + size=16 align=8 + base size=16 base align=8 +QItemSelectionModel (0x7ffd14861700) 0 + vptr=((& QItemSelectionModel::_ZTV19QItemSelectionModel) + 16u) + QObject (0x7ffd14861770) 0 + primary-for QItemSelectionModel (0x7ffd14861700) + +Class QItemSelection + size=8 align=8 + base size=8 base align=8 +QItemSelection (0x7ffd148a2bd0) 0 + QList (0x7ffd148a2c40) 0 + +Vtable for QValidator +QValidator::_ZTV10QValidator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QValidator) +16 QValidator::metaObject +24 QValidator::qt_metacast +32 QValidator::qt_metacall +40 QValidator::~QValidator +48 QValidator::~QValidator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 QValidator::fixup + +Class QValidator + size=16 align=8 + base size=16 base align=8 +QValidator (0x7ffd146dd4d0) 0 + vptr=((& QValidator::_ZTV10QValidator) + 16u) + QObject (0x7ffd146dd540) 0 + primary-for QValidator (0x7ffd146dd4d0) + +Vtable for QIntValidator +QIntValidator::_ZTV13QIntValidator: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QIntValidator) +16 QIntValidator::metaObject +24 QIntValidator::qt_metacast +32 QIntValidator::qt_metacall +40 QIntValidator::~QIntValidator +48 QIntValidator::~QIntValidator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QIntValidator::validate +120 QValidator::fixup +128 QIntValidator::setRange + +Class QIntValidator + size=24 align=8 + base size=24 base align=8 +QIntValidator (0x7ffd146f7310) 0 + vptr=((& QIntValidator::_ZTV13QIntValidator) + 16u) + QValidator (0x7ffd146f7380) 0 + primary-for QIntValidator (0x7ffd146f7310) + QObject (0x7ffd146f73f0) 0 + primary-for QValidator (0x7ffd146f7380) + +Vtable for QDoubleValidator +QDoubleValidator::_ZTV16QDoubleValidator: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QDoubleValidator) +16 QDoubleValidator::metaObject +24 QDoubleValidator::qt_metacast +32 QDoubleValidator::qt_metacall +40 QDoubleValidator::~QDoubleValidator +48 QDoubleValidator::~QDoubleValidator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QDoubleValidator::validate +120 QValidator::fixup +128 QDoubleValidator::setRange + +Class QDoubleValidator + size=40 align=8 + base size=36 base align=8 +QDoubleValidator (0x7ffd147102a0) 0 + vptr=((& QDoubleValidator::_ZTV16QDoubleValidator) + 16u) + QValidator (0x7ffd14710310) 0 + primary-for QDoubleValidator (0x7ffd147102a0) + QObject (0x7ffd14710380) 0 + primary-for QValidator (0x7ffd14710310) + +Vtable for QRegExpValidator +QRegExpValidator::_ZTV16QRegExpValidator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QRegExpValidator) +16 QRegExpValidator::metaObject +24 QRegExpValidator::qt_metacast +32 QRegExpValidator::qt_metacall +40 QRegExpValidator::~QRegExpValidator +48 QRegExpValidator::~QRegExpValidator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QRegExpValidator::validate +120 QValidator::fixup + +Class QRegExpValidator + size=24 align=8 + base size=24 base align=8 +QRegExpValidator (0x7ffd1472cb60) 0 + vptr=((& QRegExpValidator::_ZTV16QRegExpValidator) + 16u) + QValidator (0x7ffd1472cbd0) 0 + primary-for QRegExpValidator (0x7ffd1472cb60) + QObject (0x7ffd1472cc40) 0 + primary-for QValidator (0x7ffd1472cbd0) + +Vtable for QAbstractSpinBox +QAbstractSpinBox::_ZTV16QAbstractSpinBox: 68u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QAbstractSpinBox) +16 QAbstractSpinBox::metaObject +24 QAbstractSpinBox::qt_metacast +32 QAbstractSpinBox::qt_metacall +40 QAbstractSpinBox::~QAbstractSpinBox +48 QAbstractSpinBox::~QAbstractSpinBox +56 QAbstractSpinBox::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractSpinBox::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractSpinBox::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QAbstractSpinBox::wheelEvent +200 QAbstractSpinBox::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QAbstractSpinBox::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractSpinBox::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractSpinBox::validate +456 QAbstractSpinBox::fixup +464 QAbstractSpinBox::stepBy +472 QAbstractSpinBox::clear +480 QAbstractSpinBox::stepEnabled +488 (int (*)(...))-0x00000000000000010 +496 (int (*)(...))(& _ZTI16QAbstractSpinBox) +504 QAbstractSpinBox::_ZThn16_N16QAbstractSpinBoxD1Ev +512 QAbstractSpinBox::_ZThn16_N16QAbstractSpinBoxD0Ev +520 QWidget::_ZThn16_NK7QWidget7devTypeEv +528 QWidget::_ZThn16_NK7QWidget11paintEngineEv +536 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractSpinBox + size=40 align=8 + base size=40 base align=8 +QAbstractSpinBox (0x7ffd147407e0) 0 + vptr=((& QAbstractSpinBox::_ZTV16QAbstractSpinBox) + 16u) + QWidget (0x7ffd1472e700) 0 + primary-for QAbstractSpinBox (0x7ffd147407e0) + QObject (0x7ffd14740850) 0 + primary-for QWidget (0x7ffd1472e700) + QPaintDevice (0x7ffd147408c0) 16 + vptr=((& QAbstractSpinBox::_ZTV16QAbstractSpinBox) + 504u) + +Class QIcon + size=8 align=8 + base size=8 base align=8 +QIcon (0x7ffd147907e0) 0 + +Vtable for QAbstractSlider +QAbstractSlider::_ZTV15QAbstractSlider: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QAbstractSlider) +16 QAbstractSlider::metaObject +24 QAbstractSlider::qt_metacast +32 QAbstractSlider::qt_metacall +40 QAbstractSlider::~QAbstractSlider +48 QAbstractSlider::~QAbstractSlider +56 QAbstractSlider::event +64 QObject::eventFilter +72 QAbstractSlider::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QAbstractSlider::wheelEvent +200 QAbstractSlider::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractSlider::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractSlider::sliderChange +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI15QAbstractSlider) +472 QAbstractSlider::_ZThn16_N15QAbstractSliderD1Ev +480 QAbstractSlider::_ZThn16_N15QAbstractSliderD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractSlider + size=40 align=8 + base size=40 base align=8 +QAbstractSlider (0x7ffd145cc380) 0 + vptr=((& QAbstractSlider::_ZTV15QAbstractSlider) + 16u) + QWidget (0x7ffd145cf380) 0 + primary-for QAbstractSlider (0x7ffd145cc380) + QObject (0x7ffd145cc3f0) 0 + primary-for QWidget (0x7ffd145cf380) + QPaintDevice (0x7ffd145cc460) 16 + vptr=((& QAbstractSlider::_ZTV15QAbstractSlider) + 472u) + +Vtable for QSlider +QSlider::_ZTV7QSlider: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QSlider) +16 QSlider::metaObject +24 QSlider::qt_metacast +32 QSlider::qt_metacall +40 QSlider::~QSlider +48 QSlider::~QSlider +56 QSlider::event +64 QObject::eventFilter +72 QAbstractSlider::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QSlider::sizeHint +136 QSlider::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QSlider::mousePressEvent +168 QSlider::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QSlider::mouseMoveEvent +192 QAbstractSlider::wheelEvent +200 QAbstractSlider::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QSlider::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractSlider::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractSlider::sliderChange +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI7QSlider) +472 QSlider::_ZThn16_N7QSliderD1Ev +480 QSlider::_ZThn16_N7QSliderD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSlider + size=40 align=8 + base size=40 base align=8 +QSlider (0x7ffd146021c0) 0 + vptr=((& QSlider::_ZTV7QSlider) + 16u) + QAbstractSlider (0x7ffd14602230) 0 + primary-for QSlider (0x7ffd146021c0) + QWidget (0x7ffd14600380) 0 + primary-for QAbstractSlider (0x7ffd14602230) + QObject (0x7ffd146022a0) 0 + primary-for QWidget (0x7ffd14600380) + QPaintDevice (0x7ffd14602310) 16 + vptr=((& QSlider::_ZTV7QSlider) + 472u) + +Vtable for QStyle +QStyle::_ZTV6QStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QStyle) +16 QStyle::metaObject +24 QStyle::qt_metacast +32 QStyle::qt_metacall +40 QStyle::~QStyle +48 QStyle::~QStyle +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QStyle::polish +120 QStyle::unpolish +128 QStyle::polish +136 QStyle::unpolish +144 QStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QStyle::standardPalette +192 __cxa_pure_virtual +200 __cxa_pure_virtual +208 __cxa_pure_virtual +216 __cxa_pure_virtual +224 __cxa_pure_virtual +232 __cxa_pure_virtual +240 __cxa_pure_virtual +248 __cxa_pure_virtual +256 __cxa_pure_virtual +264 __cxa_pure_virtual +272 __cxa_pure_virtual + +Class QStyle + size=16 align=8 + base size=16 base align=8 +QStyle (0x7ffd1462a770) 0 + vptr=((& QStyle::_ZTV6QStyle) + 16u) + QObject (0x7ffd1462a7e0) 0 + primary-for QStyle (0x7ffd1462a770) + +Vtable for QTabBar +QTabBar::_ZTV7QTabBar: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QTabBar) +16 QTabBar::metaObject +24 QTabBar::qt_metacast +32 QTabBar::qt_metacall +40 QTabBar::~QTabBar +48 QTabBar::~QTabBar +56 QTabBar::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QTabBar::sizeHint +136 QTabBar::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTabBar::mousePressEvent +168 QTabBar::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QTabBar::mouseMoveEvent +192 QTabBar::wheelEvent +200 QTabBar::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTabBar::paintEvent +256 QWidget::moveEvent +264 QTabBar::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QTabBar::showEvent +344 QTabBar::hideEvent +352 QWidget::x11Event +360 QTabBar::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QTabBar::tabSizeHint +456 QTabBar::tabInserted +464 QTabBar::tabRemoved +472 QTabBar::tabLayoutChange +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI7QTabBar) +496 QTabBar::_ZThn16_N7QTabBarD1Ev +504 QTabBar::_ZThn16_N7QTabBarD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTabBar + size=40 align=8 + base size=40 base align=8 +QTabBar (0x7ffd144da4d0) 0 + vptr=((& QTabBar::_ZTV7QTabBar) + 16u) + QWidget (0x7ffd1467ee80) 0 + primary-for QTabBar (0x7ffd144da4d0) + QObject (0x7ffd144da540) 0 + primary-for QWidget (0x7ffd1467ee80) + QPaintDevice (0x7ffd144da5b0) 16 + vptr=((& QTabBar::_ZTV7QTabBar) + 496u) + +Vtable for QTabWidget +QTabWidget::_ZTV10QTabWidget: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTabWidget) +16 QTabWidget::metaObject +24 QTabWidget::qt_metacast +32 QTabWidget::qt_metacall +40 QTabWidget::~QTabWidget +48 QTabWidget::~QTabWidget +56 QTabWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QTabWidget::sizeHint +136 QTabWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QTabWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTabWidget::paintEvent +256 QWidget::moveEvent +264 QTabWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QTabWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QTabWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QTabWidget::tabInserted +456 QTabWidget::tabRemoved +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI10QTabWidget) +480 QTabWidget::_ZThn16_N10QTabWidgetD1Ev +488 QTabWidget::_ZThn16_N10QTabWidgetD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTabWidget + size=40 align=8 + base size=40 base align=8 +QTabWidget (0x7ffd1450daf0) 0 + vptr=((& QTabWidget::_ZTV10QTabWidget) + 16u) + QWidget (0x7ffd14510180) 0 + primary-for QTabWidget (0x7ffd1450daf0) + QObject (0x7ffd1450db60) 0 + primary-for QWidget (0x7ffd14510180) + QPaintDevice (0x7ffd1450dbd0) 16 + vptr=((& QTabWidget::_ZTV10QTabWidget) + 480u) + +Vtable for QRubberBand +QRubberBand::_ZTV11QRubberBand: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QRubberBand) +16 QRubberBand::metaObject +24 QRubberBand::qt_metacast +32 QRubberBand::qt_metacall +40 QRubberBand::~QRubberBand +48 QRubberBand::~QRubberBand +56 QRubberBand::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QRubberBand::paintEvent +256 QRubberBand::moveEvent +264 QRubberBand::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QRubberBand::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QRubberBand::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI11QRubberBand) +464 QRubberBand::_ZThn16_N11QRubberBandD1Ev +472 QRubberBand::_ZThn16_N11QRubberBandD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QRubberBand + size=40 align=8 + base size=40 base align=8 +QRubberBand (0x7ffd145634d0) 0 + vptr=((& QRubberBand::_ZTV11QRubberBand) + 16u) + QWidget (0x7ffd14562200) 0 + primary-for QRubberBand (0x7ffd145634d0) + QObject (0x7ffd14563540) 0 + primary-for QWidget (0x7ffd14562200) + QPaintDevice (0x7ffd145635b0) 16 + vptr=((& QRubberBand::_ZTV11QRubberBand) + 464u) + +Class QStyleOption + size=56 align=8 + base size=56 base align=8 +QStyleOption (0x7ffd145857e0) 0 + +Class QStyleOptionFocusRect + size=72 align=8 + base size=72 base align=8 +QStyleOptionFocusRect (0x7ffd14594540) 0 + QStyleOption (0x7ffd145945b0) 0 + +Class QStyleOptionFrame + size=64 align=8 + base size=64 base align=8 +QStyleOptionFrame (0x7ffd1459d540) 0 + QStyleOption (0x7ffd1459d5b0) 0 + +Class QStyleOptionFrameV2 + size=72 align=8 + base size=68 base align=8 +QStyleOptionFrameV2 (0x7ffd143aa4d0) 0 + QStyleOptionFrame (0x7ffd143aa540) 0 + QStyleOption (0x7ffd143aa5b0) 0 + +Class QStyleOptionFrameV3 + size=72 align=8 + base size=72 base align=8 +QStyleOptionFrameV3 (0x7ffd143dad90) 0 + QStyleOptionFrameV2 (0x7ffd143dae00) 0 + QStyleOptionFrame (0x7ffd143dae70) 0 + QStyleOption (0x7ffd143daee0) 0 + +Class QStyleOptionTabWidgetFrame + size=96 align=8 + base size=92 base align=8 +QStyleOptionTabWidgetFrame (0x7ffd143fc690) 0 + QStyleOption (0x7ffd143fc700) 0 + +Class QStyleOptionTabBarBase + size=96 align=8 + base size=92 base align=8 +QStyleOptionTabBarBase (0x7ffd1440ae00) 0 + QStyleOption (0x7ffd1440ae70) 0 + +Class QStyleOptionTabBarBaseV2 + size=96 align=8 + base size=93 base align=8 +QStyleOptionTabBarBaseV2 (0x7ffd1441c1c0) 0 + QStyleOptionTabBarBase (0x7ffd1441c230) 0 + QStyleOption (0x7ffd1441c2a0) 0 + +Class QStyleOptionHeader + size=112 align=8 + base size=108 base align=8 +QStyleOptionHeader (0x7ffd14426850) 0 + QStyleOption (0x7ffd144268c0) 0 + +Class QStyleOptionButton + size=88 align=8 + base size=88 base align=8 +QStyleOptionButton (0x7ffd14441a10) 0 + QStyleOption (0x7ffd14441a80) 0 + +Class QStyleOptionTab + size=96 align=8 + base size=96 base align=8 +QStyleOptionTab (0x7ffd1448d3f0) 0 + QStyleOption (0x7ffd1448d460) 0 + +Class QStyleOptionTabV2 + size=104 align=8 + base size=104 base align=8 +QStyleOptionTabV2 (0x7ffd142d7380) 0 + QStyleOptionTab (0x7ffd142d73f0) 0 + QStyleOption (0x7ffd142d7460) 0 + +Class QStyleOptionTabV3 + size=128 align=8 + base size=124 base align=8 +QStyleOptionTabV3 (0x7ffd142e1d90) 0 + QStyleOptionTabV2 (0x7ffd142e1e00) 0 + QStyleOptionTab (0x7ffd142e1e70) 0 + QStyleOption (0x7ffd142e1ee0) 0 + +Class QStyleOptionToolBar + size=80 align=8 + base size=80 base align=8 +QStyleOptionToolBar (0x7ffd143003f0) 0 + QStyleOption (0x7ffd14300460) 0 + +Class QStyleOptionProgressBar + size=88 align=8 + base size=85 base align=8 +QStyleOptionProgressBar (0x7ffd14333bd0) 0 + QStyleOption (0x7ffd14333c40) 0 + +Class QStyleOptionProgressBarV2 + size=96 align=8 + base size=94 base align=8 +QStyleOptionProgressBarV2 (0x7ffd14357380) 0 + QStyleOptionProgressBar (0x7ffd143573f0) 0 + QStyleOption (0x7ffd14357460) 0 + +Class QStyleOptionMenuItem + size=128 align=8 + base size=128 base align=8 +QStyleOptionMenuItem (0x7ffd14357c40) 0 + QStyleOption (0x7ffd14357cb0) 0 + +Class QStyleOptionQ3ListViewItem + size=80 align=8 + base size=76 base align=8 +QStyleOptionQ3ListViewItem (0x7ffd14372e70) 0 + QStyleOption (0x7ffd14372ee0) 0 + +Class QStyleOptionQ3DockWindow + size=64 align=8 + base size=58 base align=8 +QStyleOptionQ3DockWindow (0x7ffd141be310) 0 + QStyleOption (0x7ffd141be380) 0 + +Class QStyleOptionDockWidget + size=72 align=8 + base size=67 base align=8 +QStyleOptionDockWidget (0x7ffd141ca2a0) 0 + QStyleOption (0x7ffd141ca310) 0 + +Class QStyleOptionDockWidgetV2 + size=72 align=8 + base size=68 base align=8 +QStyleOptionDockWidgetV2 (0x7ffd141d8690) 0 + QStyleOptionDockWidget (0x7ffd141d8700) 0 + QStyleOption (0x7ffd141d8770) 0 + +Class QStyleOptionViewItem + size=104 align=8 + base size=97 base align=8 +QStyleOptionViewItem (0x7ffd141e1e70) 0 + QStyleOption (0x7ffd141e1ee0) 0 + +Class QStyleOptionViewItemV2 + size=104 align=8 + base size=104 base align=8 +QStyleOptionViewItemV2 (0x7ffd141fba10) 0 + QStyleOptionViewItem (0x7ffd141fba80) 0 + QStyleOption (0x7ffd141fbaf0) 0 + +Class QStyleOptionViewItemV3 + size=120 align=8 + base size=120 base align=8 +QStyleOptionViewItemV3 (0x7ffd14243460) 0 + QStyleOptionViewItemV2 (0x7ffd142434d0) 0 + QStyleOptionViewItem (0x7ffd14243540) 0 + QStyleOption (0x7ffd142435b0) 0 + +Class QStyleOptionViewItemV4 + size=184 align=8 + base size=184 base align=8 +QStyleOptionViewItemV4 (0x7ffd1424ed20) 0 + QStyleOptionViewItemV3 (0x7ffd1424ed90) 0 + QStyleOptionViewItemV2 (0x7ffd1424ee00) 0 + QStyleOptionViewItem (0x7ffd1424ee70) 0 + QStyleOption (0x7ffd1424eee0) 0 + +Class QStyleOptionToolBox + size=72 align=8 + base size=72 base align=8 +QStyleOptionToolBox (0x7ffd14270460) 0 + QStyleOption (0x7ffd142704d0) 0 + +Class QStyleOptionToolBoxV2 + size=80 align=8 + base size=80 base align=8 +QStyleOptionToolBoxV2 (0x7ffd1427f930) 0 + QStyleOptionToolBox (0x7ffd1427f9a0) 0 + QStyleOption (0x7ffd1427fa10) 0 + +Class QStyleOptionRubberBand + size=64 align=8 + base size=61 base align=8 +QStyleOptionRubberBand (0x7ffd14294620) 0 + QStyleOption (0x7ffd14294690) 0 + +Class QStyleOptionComplex + size=64 align=8 + base size=64 base align=8 +QStyleOptionComplex (0x7ffd1429f700) 0 + QStyleOption (0x7ffd1429f770) 0 + +Class QStyleOptionSlider + size=120 align=8 + base size=113 base align=8 +QStyleOptionSlider (0x7ffd142a7ee0) 0 + QStyleOptionComplex (0x7ffd142a7f50) 0 + QStyleOption (0x7ffd142a7310) 0 + +Class QStyleOptionSpinBox + size=80 align=8 + base size=73 base align=8 +QStyleOptionSpinBox (0x7ffd140becb0) 0 + QStyleOptionComplex (0x7ffd140bed20) 0 + QStyleOption (0x7ffd140bed90) 0 + +Class QStyleOptionQ3ListView + size=112 align=8 + base size=105 base align=8 +QStyleOptionQ3ListView (0x7ffd140cf1c0) 0 + QStyleOptionComplex (0x7ffd140cf230) 0 + QStyleOption (0x7ffd140cf2a0) 0 + +Class QStyleOptionToolButton + size=128 align=8 + base size=128 base align=8 +QStyleOptionToolButton (0x7ffd14102e00) 0 + QStyleOptionComplex (0x7ffd14102e70) 0 + QStyleOption (0x7ffd14102ee0) 0 + +Class QStyleOptionComboBox + size=112 align=8 + base size=112 base align=8 +QStyleOptionComboBox (0x7ffd14159070) 0 + QStyleOptionComplex (0x7ffd141590e0) 0 + QStyleOption (0x7ffd14159150) 0 + +Class QStyleOptionTitleBar + size=88 align=8 + base size=88 base align=8 +QStyleOptionTitleBar (0x7ffd14167b60) 0 + QStyleOptionComplex (0x7ffd14167bd0) 0 + QStyleOption (0x7ffd14167c40) 0 + +Class QStyleOptionGroupBox + size=112 align=8 + base size=108 base align=8 +QStyleOptionGroupBox (0x7ffd1417e3f0) 0 + QStyleOptionComplex (0x7ffd1417e460) 0 + QStyleOption (0x7ffd1417e4d0) 0 + +Class QStyleOptionSizeGrip + size=72 align=8 + base size=68 base align=8 +QStyleOptionSizeGrip (0x7ffd14194000) 0 + QStyleOptionComplex (0x7ffd14194070) 0 + QStyleOption (0x7ffd141940e0) 0 + +Class QStyleOptionGraphicsItem + size=144 align=8 + base size=144 base align=8 +QStyleOptionGraphicsItem (0x7ffd14194f50) 0 + QStyleOption (0x7ffd14194700) 0 + +Class QStyleHintReturn + size=8 align=4 + base size=8 base align=4 +QStyleHintReturn (0x7ffd13fac2a0) 0 + +Class QStyleHintReturnMask + size=16 align=8 + base size=16 base align=8 +QStyleHintReturnMask (0x7ffd13fac700) 0 + QStyleHintReturn (0x7ffd13fac770) 0 + +Class QStyleHintReturnVariant + size=24 align=8 + base size=24 base align=8 +QStyleHintReturnVariant (0x7ffd13fac930) 0 + QStyleHintReturn (0x7ffd13fac9a0) 0 + +Vtable for QAbstractItemDelegate +QAbstractItemDelegate::_ZTV21QAbstractItemDelegate: 21u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QAbstractItemDelegate) +16 QAbstractItemDelegate::metaObject +24 QAbstractItemDelegate::qt_metacast +32 QAbstractItemDelegate::qt_metacall +40 QAbstractItemDelegate::~QAbstractItemDelegate +48 QAbstractItemDelegate::~QAbstractItemDelegate +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAbstractItemDelegate::createEditor +136 QAbstractItemDelegate::setEditorData +144 QAbstractItemDelegate::setModelData +152 QAbstractItemDelegate::updateEditorGeometry +160 QAbstractItemDelegate::editorEvent + +Class QAbstractItemDelegate + size=16 align=8 + base size=16 base align=8 +QAbstractItemDelegate (0x7ffd13face00) 0 + vptr=((& QAbstractItemDelegate::_ZTV21QAbstractItemDelegate) + 16u) + QObject (0x7ffd13face70) 0 + primary-for QAbstractItemDelegate (0x7ffd13face00) + +Vtable for QAbstractItemView +QAbstractItemView::_ZTV17QAbstractItemView: 103u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAbstractItemView) +16 QAbstractItemView::metaObject +24 QAbstractItemView::qt_metacast +32 QAbstractItemView::qt_metacall +40 QAbstractItemView::~QAbstractItemView +48 QAbstractItemView::~QAbstractItemView +56 QAbstractItemView::event +64 QObject::eventFilter +72 QAbstractItemView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QAbstractItemView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QAbstractItemView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractScrollArea::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QAbstractScrollArea::scrollContentsBy +464 QAbstractItemView::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 __cxa_pure_virtual +496 __cxa_pure_virtual +504 __cxa_pure_virtual +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QAbstractItemView::reset +536 QAbstractItemView::setRootIndex +544 QAbstractItemView::doItemsLayout +552 QAbstractItemView::selectAll +560 QAbstractItemView::dataChanged +568 QAbstractItemView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QAbstractItemView::selectionChanged +592 QAbstractItemView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QAbstractItemView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 __cxa_pure_virtual +688 __cxa_pure_virtual +696 __cxa_pure_virtual +704 __cxa_pure_virtual +712 __cxa_pure_virtual +720 __cxa_pure_virtual +728 QAbstractItemView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 (int (*)(...))-0x00000000000000010 +776 (int (*)(...))(& _ZTI17QAbstractItemView) +784 QAbstractItemView::_ZThn16_N17QAbstractItemViewD1Ev +792 QAbstractItemView::_ZThn16_N17QAbstractItemViewD0Ev +800 QWidget::_ZThn16_NK7QWidget7devTypeEv +808 QWidget::_ZThn16_NK7QWidget11paintEngineEv +816 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractItemView + size=40 align=8 + base size=40 base align=8 +QAbstractItemView (0x7ffd13ff14d0) 0 + vptr=((& QAbstractItemView::_ZTV17QAbstractItemView) + 16u) + QAbstractScrollArea (0x7ffd13ff1540) 0 + primary-for QAbstractItemView (0x7ffd13ff14d0) + QFrame (0x7ffd13ff15b0) 0 + primary-for QAbstractScrollArea (0x7ffd13ff1540) + QWidget (0x7ffd13ff3000) 0 + primary-for QFrame (0x7ffd13ff15b0) + QObject (0x7ffd13ff1620) 0 + primary-for QWidget (0x7ffd13ff3000) + QPaintDevice (0x7ffd13ff1690) 16 + vptr=((& QAbstractItemView::_ZTV17QAbstractItemView) + 784u) + +Vtable for QListView +QListView::_ZTV9QListView: 103u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QListView) +16 QListView::metaObject +24 QListView::qt_metacast +32 QListView::qt_metacall +40 QListView::~QListView +48 QListView::~QListView +56 QListView::event +64 QObject::eventFilter +72 QListView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QListView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QListView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QListView::paintEvent +256 QWidget::moveEvent +264 QListView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QListView::dragMoveEvent +320 QListView::dragLeaveEvent +328 QListView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QListView::scrollContentsBy +464 QAbstractItemView::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QListView::visualRect +496 QListView::scrollTo +504 QListView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QListView::reset +536 QListView::setRootIndex +544 QListView::doItemsLayout +552 QAbstractItemView::selectAll +560 QListView::dataChanged +568 QListView::rowsInserted +576 QListView::rowsAboutToBeRemoved +584 QListView::selectionChanged +592 QListView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QListView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QListView::moveCursor +688 QListView::horizontalOffset +696 QListView::verticalOffset +704 QListView::isIndexHidden +712 QListView::setSelection +720 QListView::visualRegionForSelection +728 QListView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QListView::startDrag +760 QListView::viewOptions +768 (int (*)(...))-0x00000000000000010 +776 (int (*)(...))(& _ZTI9QListView) +784 QListView::_ZThn16_N9QListViewD1Ev +792 QListView::_ZThn16_N9QListViewD0Ev +800 QWidget::_ZThn16_NK7QWidget7devTypeEv +808 QWidget::_ZThn16_NK7QWidget11paintEngineEv +816 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QListView + size=40 align=8 + base size=40 base align=8 +QListView (0x7ffd14064cb0) 0 + vptr=((& QListView::_ZTV9QListView) + 16u) + QAbstractItemView (0x7ffd14064d20) 0 + primary-for QListView (0x7ffd14064cb0) + QAbstractScrollArea (0x7ffd14064d90) 0 + primary-for QAbstractItemView (0x7ffd14064d20) + QFrame (0x7ffd14064e00) 0 + primary-for QAbstractScrollArea (0x7ffd14064d90) + QWidget (0x7ffd14043680) 0 + primary-for QFrame (0x7ffd14064e00) + QObject (0x7ffd14064e70) 0 + primary-for QWidget (0x7ffd14043680) + QPaintDevice (0x7ffd14064ee0) 16 + vptr=((& QListView::_ZTV9QListView) + 784u) + +Vtable for QUndoView +QUndoView::_ZTV9QUndoView: 103u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QUndoView) +16 QUndoView::metaObject +24 QUndoView::qt_metacast +32 QUndoView::qt_metacall +40 QUndoView::~QUndoView +48 QUndoView::~QUndoView +56 QListView::event +64 QObject::eventFilter +72 QListView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QListView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QListView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QListView::paintEvent +256 QWidget::moveEvent +264 QListView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QListView::dragMoveEvent +320 QListView::dragLeaveEvent +328 QListView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QListView::scrollContentsBy +464 QAbstractItemView::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QListView::visualRect +496 QListView::scrollTo +504 QListView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QListView::reset +536 QListView::setRootIndex +544 QListView::doItemsLayout +552 QAbstractItemView::selectAll +560 QListView::dataChanged +568 QListView::rowsInserted +576 QListView::rowsAboutToBeRemoved +584 QListView::selectionChanged +592 QListView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QListView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QListView::moveCursor +688 QListView::horizontalOffset +696 QListView::verticalOffset +704 QListView::isIndexHidden +712 QListView::setSelection +720 QListView::visualRegionForSelection +728 QListView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QListView::startDrag +760 QListView::viewOptions +768 (int (*)(...))-0x00000000000000010 +776 (int (*)(...))(& _ZTI9QUndoView) +784 QUndoView::_ZThn16_N9QUndoViewD1Ev +792 QUndoView::_ZThn16_N9QUndoViewD0Ev +800 QWidget::_ZThn16_NK7QWidget7devTypeEv +808 QWidget::_ZThn16_NK7QWidget11paintEngineEv +816 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QUndoView + size=40 align=8 + base size=40 base align=8 +QUndoView (0x7ffd13eaa380) 0 + vptr=((& QUndoView::_ZTV9QUndoView) + 16u) + QListView (0x7ffd13eaa3f0) 0 + primary-for QUndoView (0x7ffd13eaa380) + QAbstractItemView (0x7ffd13eaa460) 0 + primary-for QListView (0x7ffd13eaa3f0) + QAbstractScrollArea (0x7ffd13eaa4d0) 0 + primary-for QAbstractItemView (0x7ffd13eaa460) + QFrame (0x7ffd13eaa540) 0 + primary-for QAbstractScrollArea (0x7ffd13eaa4d0) + QWidget (0x7ffd13ea3580) 0 + primary-for QFrame (0x7ffd13eaa540) + QObject (0x7ffd13eaa5b0) 0 + primary-for QWidget (0x7ffd13ea3580) + QPaintDevice (0x7ffd13eaa620) 16 + vptr=((& QUndoView::_ZTV9QUndoView) + 784u) + +Vtable for QCompleter +QCompleter::_ZTV10QCompleter: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QCompleter) +16 QCompleter::metaObject +24 QCompleter::qt_metacast +32 QCompleter::qt_metacall +40 QCompleter::~QCompleter +48 QCompleter::~QCompleter +56 QCompleter::event +64 QCompleter::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCompleter::pathFromIndex +120 QCompleter::splitPath + +Class QCompleter + size=16 align=8 + base size=16 base align=8 +QCompleter (0x7ffd13eca070) 0 + vptr=((& QCompleter::_ZTV10QCompleter) + 16u) + QObject (0x7ffd13eca0e0) 0 + primary-for QCompleter (0x7ffd13eca070) + +Vtable for QUndoCommand +QUndoCommand::_ZTV12QUndoCommand: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QUndoCommand) +16 QUndoCommand::~QUndoCommand +24 QUndoCommand::~QUndoCommand +32 QUndoCommand::undo +40 QUndoCommand::redo +48 QUndoCommand::id +56 QUndoCommand::mergeWith + +Class QUndoCommand + size=16 align=8 + base size=16 base align=8 +QUndoCommand (0x7ffd13eef000) 0 + vptr=((& QUndoCommand::_ZTV12QUndoCommand) + 16u) + +Vtable for QUndoStack +QUndoStack::_ZTV10QUndoStack: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QUndoStack) +16 QUndoStack::metaObject +24 QUndoStack::qt_metacast +32 QUndoStack::qt_metacall +40 QUndoStack::~QUndoStack +48 QUndoStack::~QUndoStack +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QUndoStack + size=16 align=8 + base size=16 base align=8 +QUndoStack (0x7ffd13eef930) 0 + vptr=((& QUndoStack::_ZTV10QUndoStack) + 16u) + QObject (0x7ffd13eef9a0) 0 + primary-for QUndoStack (0x7ffd13eef930) + +Vtable for QSystemTrayIcon +QSystemTrayIcon::_ZTV15QSystemTrayIcon: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSystemTrayIcon) +16 QSystemTrayIcon::metaObject +24 QSystemTrayIcon::qt_metacast +32 QSystemTrayIcon::qt_metacall +40 QSystemTrayIcon::~QSystemTrayIcon +48 QSystemTrayIcon::~QSystemTrayIcon +56 QSystemTrayIcon::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSystemTrayIcon + size=16 align=8 + base size=16 base align=8 +QSystemTrayIcon (0x7ffd13f13460) 0 + vptr=((& QSystemTrayIcon::_ZTV15QSystemTrayIcon) + 16u) + QObject (0x7ffd13f134d0) 0 + primary-for QSystemTrayIcon (0x7ffd13f13460) + +Vtable for QDialog +QDialog::_ZTV7QDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QDialog) +16 QDialog::metaObject +24 QDialog::qt_metacast +32 QDialog::qt_metacall +40 QDialog::~QDialog +48 QDialog::~QDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI7QDialog) +488 QDialog::_ZThn16_N7QDialogD1Ev +496 QDialog::_ZThn16_N7QDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDialog + size=40 align=8 + base size=40 base align=8 +QDialog (0x7ffd13f30690) 0 + vptr=((& QDialog::_ZTV7QDialog) + 16u) + QWidget (0x7ffd13f2f380) 0 + primary-for QDialog (0x7ffd13f30690) + QObject (0x7ffd13f30700) 0 + primary-for QWidget (0x7ffd13f2f380) + QPaintDevice (0x7ffd13f30770) 16 + vptr=((& QDialog::_ZTV7QDialog) + 488u) + +Vtable for QAbstractPageSetupDialog +QAbstractPageSetupDialog::_ZTV24QAbstractPageSetupDialog: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QAbstractPageSetupDialog) +16 QAbstractPageSetupDialog::metaObject +24 QAbstractPageSetupDialog::qt_metacast +32 QAbstractPageSetupDialog::qt_metacall +40 QAbstractPageSetupDialog::~QAbstractPageSetupDialog +48 QAbstractPageSetupDialog::~QAbstractPageSetupDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractPageSetupDialog::done +456 QDialog::accept +464 QDialog::reject +472 __cxa_pure_virtual +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI24QAbstractPageSetupDialog) +496 QAbstractPageSetupDialog::_ZThn16_N24QAbstractPageSetupDialogD1Ev +504 QAbstractPageSetupDialog::_ZThn16_N24QAbstractPageSetupDialogD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractPageSetupDialog + size=40 align=8 + base size=40 base align=8 +QAbstractPageSetupDialog (0x7ffd13f554d0) 0 + vptr=((& QAbstractPageSetupDialog::_ZTV24QAbstractPageSetupDialog) + 16u) + QDialog (0x7ffd13f55540) 0 + primary-for QAbstractPageSetupDialog (0x7ffd13f554d0) + QWidget (0x7ffd13f2fd80) 0 + primary-for QDialog (0x7ffd13f55540) + QObject (0x7ffd13f555b0) 0 + primary-for QWidget (0x7ffd13f2fd80) + QPaintDevice (0x7ffd13f55620) 16 + vptr=((& QAbstractPageSetupDialog::_ZTV24QAbstractPageSetupDialog) + 496u) + +Vtable for QColorDialog +QColorDialog::_ZTV12QColorDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QColorDialog) +16 QColorDialog::metaObject +24 QColorDialog::qt_metacast +32 QColorDialog::qt_metacall +40 QColorDialog::~QColorDialog +48 QColorDialog::~QColorDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QColorDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QColorDialog::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QColorDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI12QColorDialog) +488 QColorDialog::_ZThn16_N12QColorDialogD1Ev +496 QColorDialog::_ZThn16_N12QColorDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QColorDialog + size=40 align=8 + base size=40 base align=8 +QColorDialog (0x7ffd13f6ba80) 0 + vptr=((& QColorDialog::_ZTV12QColorDialog) + 16u) + QDialog (0x7ffd13f6baf0) 0 + primary-for QColorDialog (0x7ffd13f6ba80) + QWidget (0x7ffd13f68680) 0 + primary-for QDialog (0x7ffd13f6baf0) + QObject (0x7ffd13f6bb60) 0 + primary-for QWidget (0x7ffd13f68680) + QPaintDevice (0x7ffd13f6bbd0) 16 + vptr=((& QColorDialog::_ZTV12QColorDialog) + 488u) + +Vtable for QFontDialog +QFontDialog::_ZTV11QFontDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFontDialog) +16 QFontDialog::metaObject +24 QFontDialog::qt_metacast +32 QFontDialog::qt_metacall +40 QFontDialog::~QFontDialog +48 QFontDialog::~QFontDialog +56 QWidget::event +64 QFontDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QFontDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFontDialog::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QFontDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11QFontDialog) +488 QFontDialog::_ZThn16_N11QFontDialogD1Ev +496 QFontDialog::_ZThn16_N11QFontDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFontDialog + size=40 align=8 + base size=40 base align=8 +QFontDialog (0x7ffd13db7e00) 0 + vptr=((& QFontDialog::_ZTV11QFontDialog) + 16u) + QDialog (0x7ffd13db7e70) 0 + primary-for QFontDialog (0x7ffd13db7e00) + QWidget (0x7ffd13f9e900) 0 + primary-for QDialog (0x7ffd13db7e70) + QObject (0x7ffd13db7ee0) 0 + primary-for QWidget (0x7ffd13f9e900) + QPaintDevice (0x7ffd13db7f50) 16 + vptr=((& QFontDialog::_ZTV11QFontDialog) + 488u) + +Vtable for QMessageBox +QMessageBox::_ZTV11QMessageBox: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMessageBox) +16 QMessageBox::metaObject +24 QMessageBox::qt_metacast +32 QMessageBox::qt_metacall +40 QMessageBox::~QMessageBox +48 QMessageBox::~QMessageBox +56 QMessageBox::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QMessageBox::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QMessageBox::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QMessageBox::resizeEvent +272 QMessageBox::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QMessageBox::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QMessageBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11QMessageBox) +488 QMessageBox::_ZThn16_N11QMessageBoxD1Ev +496 QMessageBox::_ZThn16_N11QMessageBoxD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMessageBox + size=40 align=8 + base size=40 base align=8 +QMessageBox (0x7ffd13e2a2a0) 0 + vptr=((& QMessageBox::_ZTV11QMessageBox) + 16u) + QDialog (0x7ffd13e2a310) 0 + primary-for QMessageBox (0x7ffd13e2a2a0) + QWidget (0x7ffd13debb00) 0 + primary-for QDialog (0x7ffd13e2a310) + QObject (0x7ffd13e2a380) 0 + primary-for QWidget (0x7ffd13debb00) + QPaintDevice (0x7ffd13e2a3f0) 16 + vptr=((& QMessageBox::_ZTV11QMessageBox) + 488u) + +Vtable for QProgressDialog +QProgressDialog::_ZTV15QProgressDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QProgressDialog) +16 QProgressDialog::metaObject +24 QProgressDialog::qt_metacast +32 QProgressDialog::qt_metacall +40 QProgressDialog::~QProgressDialog +48 QProgressDialog::~QProgressDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QProgressDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QProgressDialog::resizeEvent +272 QProgressDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QProgressDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QProgressDialog::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI15QProgressDialog) +488 QProgressDialog::_ZThn16_N15QProgressDialogD1Ev +496 QProgressDialog::_ZThn16_N15QProgressDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QProgressDialog + size=40 align=8 + base size=40 base align=8 +QProgressDialog (0x7ffd13ca6bd0) 0 + vptr=((& QProgressDialog::_ZTV15QProgressDialog) + 16u) + QDialog (0x7ffd13ca6c40) 0 + primary-for QProgressDialog (0x7ffd13ca6bd0) + QWidget (0x7ffd13cbc100) 0 + primary-for QDialog (0x7ffd13ca6c40) + QObject (0x7ffd13ca6cb0) 0 + primary-for QWidget (0x7ffd13cbc100) + QPaintDevice (0x7ffd13ca6d20) 16 + vptr=((& QProgressDialog::_ZTV15QProgressDialog) + 488u) + +Vtable for QErrorMessage +QErrorMessage::_ZTV13QErrorMessage: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QErrorMessage) +16 QErrorMessage::metaObject +24 QErrorMessage::qt_metacast +32 QErrorMessage::qt_metacall +40 QErrorMessage::~QErrorMessage +48 QErrorMessage::~QErrorMessage +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QErrorMessage::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QErrorMessage::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI13QErrorMessage) +488 QErrorMessage::_ZThn16_N13QErrorMessageD1Ev +496 QErrorMessage::_ZThn16_N13QErrorMessageD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QErrorMessage + size=40 align=8 + base size=40 base align=8 +QErrorMessage (0x7ffd13cde7e0) 0 + vptr=((& QErrorMessage::_ZTV13QErrorMessage) + 16u) + QDialog (0x7ffd13cde850) 0 + primary-for QErrorMessage (0x7ffd13cde7e0) + QWidget (0x7ffd13cbca00) 0 + primary-for QDialog (0x7ffd13cde850) + QObject (0x7ffd13cde8c0) 0 + primary-for QWidget (0x7ffd13cbca00) + QPaintDevice (0x7ffd13cde930) 16 + vptr=((& QErrorMessage::_ZTV13QErrorMessage) + 488u) + +Vtable for QPrintPreviewDialog +QPrintPreviewDialog::_ZTV19QPrintPreviewDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QPrintPreviewDialog) +16 QPrintPreviewDialog::metaObject +24 QPrintPreviewDialog::qt_metacast +32 QPrintPreviewDialog::qt_metacall +40 QPrintPreviewDialog::~QPrintPreviewDialog +48 QPrintPreviewDialog::~QPrintPreviewDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QPrintPreviewDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QPrintPreviewDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI19QPrintPreviewDialog) +488 QPrintPreviewDialog::_ZThn16_N19QPrintPreviewDialogD1Ev +496 QPrintPreviewDialog::_ZThn16_N19QPrintPreviewDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPrintPreviewDialog + size=48 align=8 + base size=48 base align=8 +QPrintPreviewDialog (0x7ffd13cfb3f0) 0 + vptr=((& QPrintPreviewDialog::_ZTV19QPrintPreviewDialog) + 16u) + QDialog (0x7ffd13cfb460) 0 + primary-for QPrintPreviewDialog (0x7ffd13cfb3f0) + QWidget (0x7ffd13cf7480) 0 + primary-for QDialog (0x7ffd13cfb460) + QObject (0x7ffd13cfb4d0) 0 + primary-for QWidget (0x7ffd13cf7480) + QPaintDevice (0x7ffd13cfb540) 16 + vptr=((& QPrintPreviewDialog::_ZTV19QPrintPreviewDialog) + 488u) + +Vtable for QFileDialog +QFileDialog::_ZTV11QFileDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFileDialog) +16 QFileDialog::metaObject +24 QFileDialog::qt_metacast +32 QFileDialog::qt_metacall +40 QFileDialog::~QFileDialog +48 QFileDialog::~QFileDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QFileDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFileDialog::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QFileDialog::done +456 QFileDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11QFileDialog) +488 QFileDialog::_ZThn16_N11QFileDialogD1Ev +496 QFileDialog::_ZThn16_N11QFileDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFileDialog + size=40 align=8 + base size=40 base align=8 +QFileDialog (0x7ffd13d13a80) 0 + vptr=((& QFileDialog::_ZTV11QFileDialog) + 16u) + QDialog (0x7ffd13d13af0) 0 + primary-for QFileDialog (0x7ffd13d13a80) + QWidget (0x7ffd13cf7d80) 0 + primary-for QDialog (0x7ffd13d13af0) + QObject (0x7ffd13d13b60) 0 + primary-for QWidget (0x7ffd13cf7d80) + QPaintDevice (0x7ffd13d13bd0) 16 + vptr=((& QFileDialog::_ZTV11QFileDialog) + 488u) + +Vtable for QAbstractPrintDialog +QAbstractPrintDialog::_ZTV20QAbstractPrintDialog: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QAbstractPrintDialog) +16 QAbstractPrintDialog::metaObject +24 QAbstractPrintDialog::qt_metacast +32 QAbstractPrintDialog::qt_metacall +40 QAbstractPrintDialog::~QAbstractPrintDialog +48 QAbstractPrintDialog::~QAbstractPrintDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDialog::done +456 QDialog::accept +464 QDialog::reject +472 __cxa_pure_virtual +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI20QAbstractPrintDialog) +496 QAbstractPrintDialog::_ZThn16_N20QAbstractPrintDialogD1Ev +504 QAbstractPrintDialog::_ZThn16_N20QAbstractPrintDialogD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractPrintDialog + size=40 align=8 + base size=40 base align=8 +QAbstractPrintDialog (0x7ffd13ba7070) 0 + vptr=((& QAbstractPrintDialog::_ZTV20QAbstractPrintDialog) + 16u) + QDialog (0x7ffd13ba70e0) 0 + primary-for QAbstractPrintDialog (0x7ffd13ba7070) + QWidget (0x7ffd13ba4200) 0 + primary-for QDialog (0x7ffd13ba70e0) + QObject (0x7ffd13ba7150) 0 + primary-for QWidget (0x7ffd13ba4200) + QPaintDevice (0x7ffd13ba71c0) 16 + vptr=((& QAbstractPrintDialog::_ZTV20QAbstractPrintDialog) + 496u) + +Vtable for QUnixPrintWidget +QUnixPrintWidget::_ZTV16QUnixPrintWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QUnixPrintWidget) +16 QUnixPrintWidget::metaObject +24 QUnixPrintWidget::qt_metacast +32 QUnixPrintWidget::qt_metacall +40 QUnixPrintWidget::~QUnixPrintWidget +48 QUnixPrintWidget::~QUnixPrintWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI16QUnixPrintWidget) +464 QUnixPrintWidget::_ZThn16_N16QUnixPrintWidgetD1Ev +472 QUnixPrintWidget::_ZThn16_N16QUnixPrintWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QUnixPrintWidget + size=48 align=8 + base size=48 base align=8 +QUnixPrintWidget (0x7ffd13c03150) 0 + vptr=((& QUnixPrintWidget::_ZTV16QUnixPrintWidget) + 16u) + QWidget (0x7ffd13bd2580) 0 + primary-for QUnixPrintWidget (0x7ffd13c03150) + QObject (0x7ffd13c031c0) 0 + primary-for QWidget (0x7ffd13bd2580) + QPaintDevice (0x7ffd13c03230) 16 + vptr=((& QUnixPrintWidget::_ZTV16QUnixPrintWidget) + 464u) + +Vtable for QPrintDialog +QPrintDialog::_ZTV12QPrintDialog: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QPrintDialog) +16 QPrintDialog::metaObject +24 QPrintDialog::qt_metacast +32 QPrintDialog::qt_metacall +40 QPrintDialog::~QPrintDialog +48 QPrintDialog::~QPrintDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QPrintDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QPrintDialog::done +456 QPrintDialog::accept +464 QDialog::reject +472 QPrintDialog::exec +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI12QPrintDialog) +496 QPrintDialog::_ZThn16_N12QPrintDialogD1Ev +504 QPrintDialog::_ZThn16_N12QPrintDialogD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPrintDialog + size=40 align=8 + base size=40 base align=8 +QPrintDialog (0x7ffd13c18070) 0 + vptr=((& QPrintDialog::_ZTV12QPrintDialog) + 16u) + QAbstractPrintDialog (0x7ffd13c180e0) 0 + primary-for QPrintDialog (0x7ffd13c18070) + QDialog (0x7ffd13c18150) 0 + primary-for QAbstractPrintDialog (0x7ffd13c180e0) + QWidget (0x7ffd13bd2c80) 0 + primary-for QDialog (0x7ffd13c18150) + QObject (0x7ffd13c181c0) 0 + primary-for QWidget (0x7ffd13bd2c80) + QPaintDevice (0x7ffd13c18230) 16 + vptr=((& QPrintDialog::_ZTV12QPrintDialog) + 496u) + +Vtable for QWizard +QWizard::_ZTV7QWizard: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QWizard) +16 QWizard::metaObject +24 QWizard::qt_metacast +32 QWizard::qt_metacall +40 QWizard::~QWizard +48 QWizard::~QWizard +56 QWizard::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWizard::setVisible +128 QWizard::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWizard::paintEvent +256 QWidget::moveEvent +264 QWizard::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QWizard::done +456 QDialog::accept +464 QDialog::reject +472 QWizard::validateCurrentPage +480 QWizard::nextId +488 QWizard::initializePage +496 QWizard::cleanupPage +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI7QWizard) +520 QWizard::_ZThn16_N7QWizardD1Ev +528 QWizard::_ZThn16_N7QWizardD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWizard + size=40 align=8 + base size=40 base align=8 +QWizard (0x7ffd13c30bd0) 0 + vptr=((& QWizard::_ZTV7QWizard) + 16u) + QDialog (0x7ffd13c30c40) 0 + primary-for QWizard (0x7ffd13c30bd0) + QWidget (0x7ffd13c2b580) 0 + primary-for QDialog (0x7ffd13c30c40) + QObject (0x7ffd13c30cb0) 0 + primary-for QWidget (0x7ffd13c2b580) + QPaintDevice (0x7ffd13c30d20) 16 + vptr=((& QWizard::_ZTV7QWizard) + 520u) + +Vtable for QWizardPage +QWizardPage::_ZTV11QWizardPage: 68u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QWizardPage) +16 QWizardPage::metaObject +24 QWizardPage::qt_metacast +32 QWizardPage::qt_metacall +40 QWizardPage::~QWizardPage +48 QWizardPage::~QWizardPage +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QWizardPage::initializePage +456 QWizardPage::cleanupPage +464 QWizardPage::validatePage +472 QWizardPage::isComplete +480 QWizardPage::nextId +488 (int (*)(...))-0x00000000000000010 +496 (int (*)(...))(& _ZTI11QWizardPage) +504 QWizardPage::_ZThn16_N11QWizardPageD1Ev +512 QWizardPage::_ZThn16_N11QWizardPageD0Ev +520 QWidget::_ZThn16_NK7QWidget7devTypeEv +528 QWidget::_ZThn16_NK7QWidget11paintEngineEv +536 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWizardPage + size=40 align=8 + base size=40 base align=8 +QWizardPage (0x7ffd13c86f50) 0 + vptr=((& QWizardPage::_ZTV11QWizardPage) + 16u) + QWidget (0x7ffd13c62780) 0 + primary-for QWizardPage (0x7ffd13c86f50) + QObject (0x7ffd13c9f000) 0 + primary-for QWidget (0x7ffd13c62780) + QPaintDevice (0x7ffd13c9f070) 16 + vptr=((& QWizardPage::_ZTV11QWizardPage) + 504u) + +Vtable for QPageSetupDialog +QPageSetupDialog::_ZTV16QPageSetupDialog: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QPageSetupDialog) +16 QPageSetupDialog::metaObject +24 QPageSetupDialog::qt_metacast +32 QPageSetupDialog::qt_metacall +40 QPageSetupDialog::~QPageSetupDialog +48 QPageSetupDialog::~QPageSetupDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractPageSetupDialog::done +456 QDialog::accept +464 QDialog::reject +472 QPageSetupDialog::exec +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI16QPageSetupDialog) +496 QPageSetupDialog::_ZThn16_N16QPageSetupDialogD1Ev +504 QPageSetupDialog::_ZThn16_N16QPageSetupDialogD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPageSetupDialog + size=40 align=8 + base size=40 base align=8 +QPageSetupDialog (0x7ffd13abaa80) 0 + vptr=((& QPageSetupDialog::_ZTV16QPageSetupDialog) + 16u) + QAbstractPageSetupDialog (0x7ffd13abaaf0) 0 + primary-for QPageSetupDialog (0x7ffd13abaa80) + QDialog (0x7ffd13abab60) 0 + primary-for QAbstractPageSetupDialog (0x7ffd13abaaf0) + QWidget (0x7ffd13abd080) 0 + primary-for QDialog (0x7ffd13abab60) + QObject (0x7ffd13ababd0) 0 + primary-for QWidget (0x7ffd13abd080) + QPaintDevice (0x7ffd13abac40) 16 + vptr=((& QPageSetupDialog::_ZTV16QPageSetupDialog) + 496u) + +Vtable for QLineEdit +QLineEdit::_ZTV9QLineEdit: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QLineEdit) +16 QLineEdit::metaObject +24 QLineEdit::qt_metacast +32 QLineEdit::qt_metacall +40 QLineEdit::~QLineEdit +48 QLineEdit::~QLineEdit +56 QLineEdit::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QLineEdit::sizeHint +136 QLineEdit::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QLineEdit::mousePressEvent +168 QLineEdit::mouseReleaseEvent +176 QLineEdit::mouseDoubleClickEvent +184 QLineEdit::mouseMoveEvent +192 QWidget::wheelEvent +200 QLineEdit::keyPressEvent +208 QWidget::keyReleaseEvent +216 QLineEdit::focusInEvent +224 QLineEdit::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QLineEdit::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QLineEdit::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QLineEdit::dragEnterEvent +312 QLineEdit::dragMoveEvent +320 QLineEdit::dragLeaveEvent +328 QLineEdit::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QLineEdit::changeEvent +368 QWidget::metric +376 QLineEdit::inputMethodEvent +384 QLineEdit::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI9QLineEdit) +464 QLineEdit::_ZThn16_N9QLineEditD1Ev +472 QLineEdit::_ZThn16_N9QLineEditD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QLineEdit + size=40 align=8 + base size=40 base align=8 +QLineEdit (0x7ffd13ad7a10) 0 + vptr=((& QLineEdit::_ZTV9QLineEdit) + 16u) + QWidget (0x7ffd13abdb00) 0 + primary-for QLineEdit (0x7ffd13ad7a10) + QObject (0x7ffd13ad7a80) 0 + primary-for QWidget (0x7ffd13abdb00) + QPaintDevice (0x7ffd13ad7af0) 16 + vptr=((& QLineEdit::_ZTV9QLineEdit) + 464u) + +Vtable for QInputDialog +QInputDialog::_ZTV12QInputDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QInputDialog) +16 QInputDialog::metaObject +24 QInputDialog::qt_metacast +32 QInputDialog::qt_metacall +40 QInputDialog::~QInputDialog +48 QInputDialog::~QInputDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QInputDialog::setVisible +128 QInputDialog::sizeHint +136 QInputDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QInputDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI12QInputDialog) +488 QInputDialog::_ZThn16_N12QInputDialogD1Ev +496 QInputDialog::_ZThn16_N12QInputDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QInputDialog + size=40 align=8 + base size=40 base align=8 +QInputDialog (0x7ffd13b27930) 0 + vptr=((& QInputDialog::_ZTV12QInputDialog) + 16u) + QDialog (0x7ffd13b279a0) 0 + primary-for QInputDialog (0x7ffd13b27930) + QWidget (0x7ffd13b24980) 0 + primary-for QDialog (0x7ffd13b279a0) + QObject (0x7ffd13b27a10) 0 + primary-for QWidget (0x7ffd13b24980) + QPaintDevice (0x7ffd13b27a80) 16 + vptr=((& QInputDialog::_ZTV12QInputDialog) + 488u) + +Vtable for QFileSystemModel +QFileSystemModel::_ZTV16QFileSystemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QFileSystemModel) +16 QFileSystemModel::metaObject +24 QFileSystemModel::qt_metacast +32 QFileSystemModel::qt_metacall +40 QFileSystemModel::~QFileSystemModel +48 QFileSystemModel::~QFileSystemModel +56 QFileSystemModel::event +64 QObject::eventFilter +72 QFileSystemModel::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFileSystemModel::index +120 QFileSystemModel::parent +128 QFileSystemModel::rowCount +136 QFileSystemModel::columnCount +144 QFileSystemModel::hasChildren +152 QFileSystemModel::data +160 QFileSystemModel::setData +168 QFileSystemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QFileSystemModel::mimeTypes +208 QFileSystemModel::mimeData +216 QFileSystemModel::dropMimeData +224 QFileSystemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QFileSystemModel::fetchMore +272 QFileSystemModel::canFetchMore +280 QFileSystemModel::flags +288 QFileSystemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QFileSystemModel + size=16 align=8 + base size=16 base align=8 +QFileSystemModel (0x7ffd13b8a7e0) 0 + vptr=((& QFileSystemModel::_ZTV16QFileSystemModel) + 16u) + QAbstractItemModel (0x7ffd13b8a850) 0 + primary-for QFileSystemModel (0x7ffd13b8a7e0) + QObject (0x7ffd13b8a8c0) 0 + primary-for QAbstractItemModel (0x7ffd13b8a850) + +Class QPixmapCache + size=1 align=1 + base size=0 base align=1 +QPixmapCache (0x7ffd139ceee0) 0 empty + +Vtable for QImageIOHandler +QImageIOHandler::_ZTV15QImageIOHandler: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QImageIOHandler) +16 QImageIOHandler::~QImageIOHandler +24 QImageIOHandler::~QImageIOHandler +32 QImageIOHandler::name +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QImageIOHandler::write +64 QImageIOHandler::option +72 QImageIOHandler::setOption +80 QImageIOHandler::supportsOption +88 QImageIOHandler::jumpToNextImage +96 QImageIOHandler::jumpToImage +104 QImageIOHandler::loopCount +112 QImageIOHandler::imageCount +120 QImageIOHandler::nextImageDelay +128 QImageIOHandler::currentImageNumber +136 QImageIOHandler::currentImageRect + +Class QImageIOHandler + size=16 align=8 + base size=16 base align=8 +QImageIOHandler (0x7ffd139cef50) 0 + vptr=((& QImageIOHandler::_ZTV15QImageIOHandler) + 16u) + +Vtable for QImageIOHandlerFactoryInterface +QImageIOHandlerFactoryInterface::_ZTV31QImageIOHandlerFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI31QImageIOHandlerFactoryInterface) +16 QImageIOHandlerFactoryInterface::~QImageIOHandlerFactoryInterface +24 QImageIOHandlerFactoryInterface::~QImageIOHandlerFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QImageIOHandlerFactoryInterface + size=8 align=8 + base size=8 base align=8 +QImageIOHandlerFactoryInterface (0x7ffd139dfb60) 0 nearly-empty + vptr=((& QImageIOHandlerFactoryInterface::_ZTV31QImageIOHandlerFactoryInterface) + 16u) + QFactoryInterface (0x7ffd139dfbd0) 0 nearly-empty + primary-for QImageIOHandlerFactoryInterface (0x7ffd139dfb60) + +Vtable for QImageIOPlugin +QImageIOPlugin::_ZTV14QImageIOPlugin: 23u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QImageIOPlugin) +16 QImageIOPlugin::metaObject +24 QImageIOPlugin::qt_metacast +32 QImageIOPlugin::qt_metacall +40 QImageIOPlugin::~QImageIOPlugin +48 QImageIOPlugin::~QImageIOPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 (int (*)(...))-0x00000000000000010 +144 (int (*)(...))(& _ZTI14QImageIOPlugin) +152 QImageIOPlugin::_ZThn16_N14QImageIOPluginD1Ev +160 QImageIOPlugin::_ZThn16_N14QImageIOPluginD0Ev +168 __cxa_pure_virtual +176 __cxa_pure_virtual + +Class QImageIOPlugin + size=24 align=8 + base size=24 base align=8 +QImageIOPlugin (0x7ffd139e3b00) 0 + vptr=((& QImageIOPlugin::_ZTV14QImageIOPlugin) + 16u) + QObject (0x7ffd139f43f0) 0 + primary-for QImageIOPlugin (0x7ffd139e3b00) + QImageIOHandlerFactoryInterface (0x7ffd139f4460) 16 nearly-empty + vptr=((& QImageIOPlugin::_ZTV14QImageIOPlugin) + 152u) + QFactoryInterface (0x7ffd139f44d0) 16 nearly-empty + primary-for QImageIOHandlerFactoryInterface (0x7ffd139f4460) + +Vtable for QPicture +QPicture::_ZTV8QPicture: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QPicture) +16 QPicture::~QPicture +24 QPicture::~QPicture +32 QPicture::devType +40 QPicture::paintEngine +48 QPicture::metric +56 QPicture::setData + +Class QPicture + size=24 align=8 + base size=24 base align=8 +QPicture (0x7ffd13a474d0) 0 + vptr=((& QPicture::_ZTV8QPicture) + 16u) + QPaintDevice (0x7ffd13a47540) 0 + primary-for QPicture (0x7ffd13a474d0) + +Class QPictureIO + size=8 align=8 + base size=8 base align=8 +QPictureIO (0x7ffd13a60070) 0 + +Class QImageReader + size=8 align=8 + base size=8 base align=8 +QImageReader (0x7ffd13a60690) 0 + +Class QImageWriter + size=8 align=8 + base size=8 base align=8 +QImageWriter (0x7ffd13a7c0e0) 0 + +Vtable for QMovie +QMovie::_ZTV6QMovie: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QMovie) +16 QMovie::metaObject +24 QMovie::qt_metacast +32 QMovie::qt_metacall +40 QMovie::~QMovie +48 QMovie::~QMovie +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QMovie + size=16 align=8 + base size=16 base align=8 +QMovie (0x7ffd13a7c930) 0 + vptr=((& QMovie::_ZTV6QMovie) + 16u) + QObject (0x7ffd13a7c9a0) 0 + primary-for QMovie (0x7ffd13a7c930) + +Vtable for QIconEngineFactoryInterface +QIconEngineFactoryInterface::_ZTV27QIconEngineFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QIconEngineFactoryInterface) +16 QIconEngineFactoryInterface::~QIconEngineFactoryInterface +24 QIconEngineFactoryInterface::~QIconEngineFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QIconEngineFactoryInterface + size=8 align=8 + base size=8 base align=8 +QIconEngineFactoryInterface (0x7ffd138c29a0) 0 nearly-empty + vptr=((& QIconEngineFactoryInterface::_ZTV27QIconEngineFactoryInterface) + 16u) + QFactoryInterface (0x7ffd138c2a10) 0 nearly-empty + primary-for QIconEngineFactoryInterface (0x7ffd138c29a0) + +Vtable for QIconEnginePlugin +QIconEnginePlugin::_ZTV17QIconEnginePlugin: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QIconEnginePlugin) +16 QIconEnginePlugin::metaObject +24 QIconEnginePlugin::qt_metacast +32 QIconEnginePlugin::qt_metacall +40 QIconEnginePlugin::~QIconEnginePlugin +48 QIconEnginePlugin::~QIconEnginePlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI17QIconEnginePlugin) +144 QIconEnginePlugin::_ZThn16_N17QIconEnginePluginD1Ev +152 QIconEnginePlugin::_ZThn16_N17QIconEnginePluginD0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QIconEnginePlugin + size=24 align=8 + base size=24 base align=8 +QIconEnginePlugin (0x7ffd138c0e80) 0 + vptr=((& QIconEnginePlugin::_ZTV17QIconEnginePlugin) + 16u) + QObject (0x7ffd138cb230) 0 + primary-for QIconEnginePlugin (0x7ffd138c0e80) + QIconEngineFactoryInterface (0x7ffd138cb2a0) 16 nearly-empty + vptr=((& QIconEnginePlugin::_ZTV17QIconEnginePlugin) + 144u) + QFactoryInterface (0x7ffd138cb310) 16 nearly-empty + primary-for QIconEngineFactoryInterface (0x7ffd138cb2a0) + +Vtable for QIconEngineFactoryInterfaceV2 +QIconEngineFactoryInterfaceV2::_ZTV29QIconEngineFactoryInterfaceV2: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI29QIconEngineFactoryInterfaceV2) +16 QIconEngineFactoryInterfaceV2::~QIconEngineFactoryInterfaceV2 +24 QIconEngineFactoryInterfaceV2::~QIconEngineFactoryInterfaceV2 +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QIconEngineFactoryInterfaceV2 + size=8 align=8 + base size=8 base align=8 +QIconEngineFactoryInterfaceV2 (0x7ffd138db1c0) 0 nearly-empty + vptr=((& QIconEngineFactoryInterfaceV2::_ZTV29QIconEngineFactoryInterfaceV2) + 16u) + QFactoryInterface (0x7ffd138db230) 0 nearly-empty + primary-for QIconEngineFactoryInterfaceV2 (0x7ffd138db1c0) + +Vtable for QIconEnginePluginV2 +QIconEnginePluginV2::_ZTV19QIconEnginePluginV2: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QIconEnginePluginV2) +16 QIconEnginePluginV2::metaObject +24 QIconEnginePluginV2::qt_metacast +32 QIconEnginePluginV2::qt_metacall +40 QIconEnginePluginV2::~QIconEnginePluginV2 +48 QIconEnginePluginV2::~QIconEnginePluginV2 +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI19QIconEnginePluginV2) +144 QIconEnginePluginV2::_ZThn16_N19QIconEnginePluginV2D1Ev +152 QIconEnginePluginV2::_ZThn16_N19QIconEnginePluginV2D0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QIconEnginePluginV2 + size=24 align=8 + base size=24 base align=8 +QIconEnginePluginV2 (0x7ffd138d5d00) 0 + vptr=((& QIconEnginePluginV2::_ZTV19QIconEnginePluginV2) + 16u) + QObject (0x7ffd138dbaf0) 0 + primary-for QIconEnginePluginV2 (0x7ffd138d5d00) + QIconEngineFactoryInterfaceV2 (0x7ffd138dbb60) 16 nearly-empty + vptr=((& QIconEnginePluginV2::_ZTV19QIconEnginePluginV2) + 144u) + QFactoryInterface (0x7ffd138dbbd0) 16 nearly-empty + primary-for QIconEngineFactoryInterfaceV2 (0x7ffd138dbb60) + +Vtable for QIconEngine +QIconEngine::_ZTV11QIconEngine: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QIconEngine) +16 QIconEngine::~QIconEngine +24 QIconEngine::~QIconEngine +32 __cxa_pure_virtual +40 QIconEngine::actualSize +48 QIconEngine::pixmap +56 QIconEngine::addPixmap +64 QIconEngine::addFile + +Class QIconEngine + size=8 align=8 + base size=8 base align=8 +QIconEngine (0x7ffd138f2a80) 0 nearly-empty + vptr=((& QIconEngine::_ZTV11QIconEngine) + 16u) + +Class QIconEngineV2::AvailableSizesArgument + size=16 align=8 + base size=16 base align=8 +QIconEngineV2::AvailableSizesArgument (0x7ffd138fd2a0) 0 + +Vtable for QIconEngineV2 +QIconEngineV2::_ZTV13QIconEngineV2: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QIconEngineV2) +16 QIconEngineV2::~QIconEngineV2 +24 QIconEngineV2::~QIconEngineV2 +32 __cxa_pure_virtual +40 QIconEngine::actualSize +48 QIconEngine::pixmap +56 QIconEngine::addPixmap +64 QIconEngine::addFile +72 QIconEngineV2::key +80 QIconEngineV2::clone +88 QIconEngineV2::read +96 QIconEngineV2::write +104 QIconEngineV2::virtual_hook + +Class QIconEngineV2 + size=8 align=8 + base size=8 base align=8 +QIconEngineV2 (0x7ffd138fd070) 0 nearly-empty + vptr=((& QIconEngineV2::_ZTV13QIconEngineV2) + 16u) + QIconEngine (0x7ffd138fd0e0) 0 nearly-empty + primary-for QIconEngineV2 (0x7ffd138fd070) + +Vtable for QBitmap +QBitmap::_ZTV7QBitmap: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QBitmap) +16 QBitmap::~QBitmap +24 QBitmap::~QBitmap +32 QPixmap::devType +40 QPixmap::paintEngine +48 QPixmap::metric + +Class QBitmap + size=24 align=8 + base size=24 base align=8 +QBitmap (0x7ffd138fda80) 0 + vptr=((& QBitmap::_ZTV7QBitmap) + 16u) + QPixmap (0x7ffd138fdaf0) 0 + primary-for QBitmap (0x7ffd138fda80) + QPaintDevice (0x7ffd138fdb60) 0 + primary-for QPixmap (0x7ffd138fdaf0) + +Vtable for QPictureFormatInterface +QPictureFormatInterface::_ZTV23QPictureFormatInterface: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QPictureFormatInterface) +16 QPictureFormatInterface::~QPictureFormatInterface +24 QPictureFormatInterface::~QPictureFormatInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual + +Class QPictureFormatInterface + size=8 align=8 + base size=8 base align=8 +QPictureFormatInterface (0x7ffd13955bd0) 0 nearly-empty + vptr=((& QPictureFormatInterface::_ZTV23QPictureFormatInterface) + 16u) + QFactoryInterface (0x7ffd13955c40) 0 nearly-empty + primary-for QPictureFormatInterface (0x7ffd13955bd0) + +Vtable for QPictureFormatPlugin +QPictureFormatPlugin::_ZTV20QPictureFormatPlugin: 26u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QPictureFormatPlugin) +16 QPictureFormatPlugin::metaObject +24 QPictureFormatPlugin::qt_metacast +32 QPictureFormatPlugin::qt_metacall +40 QPictureFormatPlugin::~QPictureFormatPlugin +48 QPictureFormatPlugin::~QPictureFormatPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 QPictureFormatPlugin::loadPicture +128 QPictureFormatPlugin::savePicture +136 __cxa_pure_virtual +144 (int (*)(...))-0x00000000000000010 +152 (int (*)(...))(& _ZTI20QPictureFormatPlugin) +160 QPictureFormatPlugin::_ZThn16_N20QPictureFormatPluginD1Ev +168 QPictureFormatPlugin::_ZThn16_N20QPictureFormatPluginD0Ev +176 __cxa_pure_virtual +184 QPictureFormatPlugin::_ZThn16_N20QPictureFormatPlugin11loadPictureERK7QStringS2_P8QPicture +192 QPictureFormatPlugin::_ZThn16_N20QPictureFormatPlugin11savePictureERK7QStringS2_RK8QPicture +200 __cxa_pure_virtual + +Class QPictureFormatPlugin + size=24 align=8 + base size=24 base align=8 +QPictureFormatPlugin (0x7ffd1395ba00) 0 + vptr=((& QPictureFormatPlugin::_ZTV20QPictureFormatPlugin) + 16u) + QObject (0x7ffd139653f0) 0 + primary-for QPictureFormatPlugin (0x7ffd1395ba00) + QPictureFormatInterface (0x7ffd13965460) 16 nearly-empty + vptr=((& QPictureFormatPlugin::_ZTV20QPictureFormatPlugin) + 160u) + QFactoryInterface (0x7ffd139654d0) 16 nearly-empty + primary-for QPictureFormatInterface (0x7ffd13965460) + +Class QVFbHeader + size=1088 align=8 + base size=1088 base align=8 +QVFbHeader (0x7ffd13979380) 0 + +Class QVFbKeyData + size=12 align=4 + base size=12 base align=4 +QVFbKeyData (0x7ffd139793f0) 0 + +Vtable for QWSEmbedWidget +QWSEmbedWidget::_ZTV14QWSEmbedWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QWSEmbedWidget) +16 QWSEmbedWidget::metaObject +24 QWSEmbedWidget::qt_metacast +32 QWSEmbedWidget::qt_metacall +40 QWSEmbedWidget::~QWSEmbedWidget +48 QWSEmbedWidget::~QWSEmbedWidget +56 QWidget::event +64 QWSEmbedWidget::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWSEmbedWidget::moveEvent +264 QWSEmbedWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWSEmbedWidget::showEvent +344 QWSEmbedWidget::hideEvent +352 QWidget::x11Event +360 QWSEmbedWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI14QWSEmbedWidget) +464 QWSEmbedWidget::_ZThn16_N14QWSEmbedWidgetD1Ev +472 QWSEmbedWidget::_ZThn16_N14QWSEmbedWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWSEmbedWidget + size=40 align=8 + base size=40 base align=8 +QWSEmbedWidget (0x7ffd13979460) 0 + vptr=((& QWSEmbedWidget::_ZTV14QWSEmbedWidget) + 16u) + QWidget (0x7ffd13978200) 0 + primary-for QWSEmbedWidget (0x7ffd13979460) + QObject (0x7ffd139794d0) 0 + primary-for QWidget (0x7ffd13978200) + QPaintDevice (0x7ffd13979540) 16 + vptr=((& QWSEmbedWidget::_ZTV14QWSEmbedWidget) + 464u) + +Class QColormap + size=8 align=8 + base size=8 base align=8 +QColormap (0x7ffd13990930) 0 + +Vtable for QPrinter +QPrinter::_ZTV8QPrinter: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QPrinter) +16 QPrinter::~QPrinter +24 QPrinter::~QPrinter +32 QPrinter::devType +40 QPrinter::paintEngine +48 QPrinter::metric + +Class QPrinter + size=24 align=8 + base size=24 base align=8 +QPrinter (0x7ffd13999150) 0 + vptr=((& QPrinter::_ZTV8QPrinter) + 16u) + QPaintDevice (0x7ffd139991c0) 0 + primary-for QPrinter (0x7ffd13999150) + +Vtable for QPrintEngine +QPrintEngine::_ZTV12QPrintEngine: 10u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QPrintEngine) +16 QPrintEngine::~QPrintEngine +24 QPrintEngine::~QPrintEngine +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual + +Class QPrintEngine + size=8 align=8 + base size=8 base align=8 +QPrintEngine (0x7ffd137da620) 0 nearly-empty + vptr=((& QPrintEngine::_ZTV12QPrintEngine) + 16u) + +Class QPainter + size=8 align=8 + base size=8 base align=8 +QPainter (0x7ffd137ea380) 0 + +Class QStylePainter + size=24 align=8 + base size=24 base align=8 +QStylePainter (0x7ffd135edc40) 0 + QPainter (0x7ffd135edcb0) 0 + +Class QPrinterInfo + size=8 align=8 + base size=8 base align=8 +QPrinterInfo (0x7ffd13620230) 0 + +Class QTextItem + size=1 align=1 + base size=0 base align=1 +QTextItem (0x7ffd13623700) 0 empty + +Vtable for QPaintEngine +QPaintEngine::_ZTV12QPaintEngine: 24u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QPaintEngine) +16 QPaintEngine::~QPaintEngine +24 QPaintEngine::~QPaintEngine +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QPaintEngine::drawRects +64 QPaintEngine::drawRects +72 QPaintEngine::drawLines +80 QPaintEngine::drawLines +88 QPaintEngine::drawEllipse +96 QPaintEngine::drawEllipse +104 QPaintEngine::drawPath +112 QPaintEngine::drawPoints +120 QPaintEngine::drawPoints +128 QPaintEngine::drawPolygon +136 QPaintEngine::drawPolygon +144 __cxa_pure_virtual +152 QPaintEngine::drawTextItem +160 QPaintEngine::drawTiledPixmap +168 QPaintEngine::drawImage +176 QPaintEngine::coordinateOffset +184 __cxa_pure_virtual + +Class QPaintEngine + size=32 align=8 + base size=32 base align=8 +QPaintEngine (0x7ffd13623d20) 0 + vptr=((& QPaintEngine::_ZTV12QPaintEngine) + 16u) + +Class QPaintEngineState + size=4 align=4 + base size=4 base align=4 +QPaintEngineState (0x7ffd1366f7e0) 0 + +Class QTreeWidgetItemIterator + size=24 align=8 + base size=20 base align=8 +QTreeWidgetItemIterator (0x7ffd13528af0) 0 + +Vtable for QDataWidgetMapper +QDataWidgetMapper::_ZTV17QDataWidgetMapper: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QDataWidgetMapper) +16 QDataWidgetMapper::metaObject +24 QDataWidgetMapper::qt_metacast +32 QDataWidgetMapper::qt_metacall +40 QDataWidgetMapper::~QDataWidgetMapper +48 QDataWidgetMapper::~QDataWidgetMapper +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QDataWidgetMapper::setCurrentIndex + +Class QDataWidgetMapper + size=16 align=8 + base size=16 base align=8 +QDataWidgetMapper (0x7ffd13583690) 0 + vptr=((& QDataWidgetMapper::_ZTV17QDataWidgetMapper) + 16u) + QObject (0x7ffd13583700) 0 + primary-for QDataWidgetMapper (0x7ffd13583690) + +Vtable for QFileIconProvider +QFileIconProvider::_ZTV17QFileIconProvider: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QFileIconProvider) +16 QFileIconProvider::~QFileIconProvider +24 QFileIconProvider::~QFileIconProvider +32 QFileIconProvider::icon +40 QFileIconProvider::icon +48 QFileIconProvider::type + +Class QFileIconProvider + size=16 align=8 + base size=16 base align=8 +QFileIconProvider (0x7ffd133bc150) 0 + vptr=((& QFileIconProvider::_ZTV17QFileIconProvider) + 16u) + +Vtable for QStringListModel +QStringListModel::_ZTV16QStringListModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QStringListModel) +16 QStringListModel::metaObject +24 QStringListModel::qt_metacast +32 QStringListModel::qt_metacall +40 QStringListModel::~QStringListModel +48 QStringListModel::~QStringListModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractListModel::index +120 QAbstractListModel::parent +128 QStringListModel::rowCount +136 QAbstractListModel::columnCount +144 QAbstractListModel::hasChildren +152 QStringListModel::data +160 QStringListModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractListModel::dropMimeData +224 QStringListModel::supportedDropActions +232 QStringListModel::insertRows +240 QAbstractItemModel::insertColumns +248 QStringListModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QStringListModel::flags +288 QStringListModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QStringListModel + size=24 align=8 + base size=24 base align=8 +QStringListModel (0x7ffd133bcc40) 0 + vptr=((& QStringListModel::_ZTV16QStringListModel) + 16u) + QAbstractListModel (0x7ffd133bccb0) 0 + primary-for QStringListModel (0x7ffd133bcc40) + QAbstractItemModel (0x7ffd133bcd20) 0 + primary-for QAbstractListModel (0x7ffd133bccb0) + QObject (0x7ffd133bcd90) 0 + primary-for QAbstractItemModel (0x7ffd133bcd20) + +Vtable for QListWidgetItem +QListWidgetItem::_ZTV15QListWidgetItem: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QListWidgetItem) +16 QListWidgetItem::~QListWidgetItem +24 QListWidgetItem::~QListWidgetItem +32 QListWidgetItem::clone +40 QListWidgetItem::setBackgroundColor +48 QListWidgetItem::data +56 QListWidgetItem::setData +64 QListWidgetItem::operator< +72 QListWidgetItem::read +80 QListWidgetItem::write + +Class QListWidgetItem + size=48 align=8 + base size=44 base align=8 +QListWidgetItem (0x7ffd133dd230) 0 + vptr=((& QListWidgetItem::_ZTV15QListWidgetItem) + 16u) + +Vtable for QListWidget +QListWidget::_ZTV11QListWidget: 107u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QListWidget) +16 QListWidget::metaObject +24 QListWidget::qt_metacast +32 QListWidget::qt_metacall +40 QListWidget::~QListWidget +48 QListWidget::~QListWidget +56 QListWidget::event +64 QObject::eventFilter +72 QListView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QListView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QListView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QListView::paintEvent +256 QWidget::moveEvent +264 QListView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QListView::dragMoveEvent +320 QListView::dragLeaveEvent +328 QListWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QListView::scrollContentsBy +464 QListWidget::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QListView::visualRect +496 QListView::scrollTo +504 QListView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QListView::reset +536 QListView::setRootIndex +544 QListView::doItemsLayout +552 QAbstractItemView::selectAll +560 QListView::dataChanged +568 QListView::rowsInserted +576 QListView::rowsAboutToBeRemoved +584 QListView::selectionChanged +592 QListView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QListView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QListView::moveCursor +688 QListView::horizontalOffset +696 QListView::verticalOffset +704 QListView::isIndexHidden +712 QListView::setSelection +720 QListView::visualRegionForSelection +728 QListView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QListView::startDrag +760 QListView::viewOptions +768 QListWidget::mimeTypes +776 QListWidget::mimeData +784 QListWidget::dropMimeData +792 QListWidget::supportedDropActions +800 (int (*)(...))-0x00000000000000010 +808 (int (*)(...))(& _ZTI11QListWidget) +816 QListWidget::_ZThn16_N11QListWidgetD1Ev +824 QListWidget::_ZThn16_N11QListWidgetD0Ev +832 QWidget::_ZThn16_NK7QWidget7devTypeEv +840 QWidget::_ZThn16_NK7QWidget11paintEngineEv +848 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QListWidget + size=40 align=8 + base size=40 base align=8 +QListWidget (0x7ffd134509a0) 0 + vptr=((& QListWidget::_ZTV11QListWidget) + 16u) + QListView (0x7ffd13450a10) 0 + primary-for QListWidget (0x7ffd134509a0) + QAbstractItemView (0x7ffd13450a80) 0 + primary-for QListView (0x7ffd13450a10) + QAbstractScrollArea (0x7ffd13450af0) 0 + primary-for QAbstractItemView (0x7ffd13450a80) + QFrame (0x7ffd13450b60) 0 + primary-for QAbstractScrollArea (0x7ffd13450af0) + QWidget (0x7ffd1344e580) 0 + primary-for QFrame (0x7ffd13450b60) + QObject (0x7ffd13450bd0) 0 + primary-for QWidget (0x7ffd1344e580) + QPaintDevice (0x7ffd13450c40) 16 + vptr=((& QListWidget::_ZTV11QListWidget) + 816u) + +Vtable for QDirModel +QDirModel::_ZTV9QDirModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QDirModel) +16 QDirModel::metaObject +24 QDirModel::qt_metacast +32 QDirModel::qt_metacall +40 QDirModel::~QDirModel +48 QDirModel::~QDirModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QDirModel::index +120 QDirModel::parent +128 QDirModel::rowCount +136 QDirModel::columnCount +144 QDirModel::hasChildren +152 QDirModel::data +160 QDirModel::setData +168 QDirModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QDirModel::mimeTypes +208 QDirModel::mimeData +216 QDirModel::dropMimeData +224 QDirModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QDirModel::flags +288 QDirModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QDirModel + size=16 align=8 + base size=16 base align=8 +QDirModel (0x7ffd1348be00) 0 + vptr=((& QDirModel::_ZTV9QDirModel) + 16u) + QAbstractItemModel (0x7ffd1348be70) 0 + primary-for QDirModel (0x7ffd1348be00) + QObject (0x7ffd1348bee0) 0 + primary-for QAbstractItemModel (0x7ffd1348be70) + +Vtable for QColumnView +QColumnView::_ZTV11QColumnView: 104u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QColumnView) +16 QColumnView::metaObject +24 QColumnView::qt_metacast +32 QColumnView::qt_metacall +40 QColumnView::~QColumnView +48 QColumnView::~QColumnView +56 QAbstractItemView::event +64 QObject::eventFilter +72 QAbstractItemView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QColumnView::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QAbstractItemView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QAbstractItemView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractScrollArea::paintEvent +256 QWidget::moveEvent +264 QColumnView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QColumnView::scrollContentsBy +464 QColumnView::setModel +472 QColumnView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QColumnView::visualRect +496 QColumnView::scrollTo +504 QColumnView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QAbstractItemView::reset +536 QColumnView::setRootIndex +544 QAbstractItemView::doItemsLayout +552 QColumnView::selectAll +560 QAbstractItemView::dataChanged +568 QAbstractItemView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QAbstractItemView::selectionChanged +592 QColumnView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QAbstractItemView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QColumnView::moveCursor +688 QColumnView::horizontalOffset +696 QColumnView::verticalOffset +704 QColumnView::isIndexHidden +712 QColumnView::setSelection +720 QColumnView::visualRegionForSelection +728 QAbstractItemView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 QColumnView::createColumn +776 (int (*)(...))-0x00000000000000010 +784 (int (*)(...))(& _ZTI11QColumnView) +792 QColumnView::_ZThn16_N11QColumnViewD1Ev +800 QColumnView::_ZThn16_N11QColumnViewD0Ev +808 QWidget::_ZThn16_NK7QWidget7devTypeEv +816 QWidget::_ZThn16_NK7QWidget11paintEngineEv +824 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QColumnView + size=40 align=8 + base size=40 base align=8 +QColumnView (0x7ffd132b90e0) 0 + vptr=((& QColumnView::_ZTV11QColumnView) + 16u) + QAbstractItemView (0x7ffd132b9150) 0 + primary-for QColumnView (0x7ffd132b90e0) + QAbstractScrollArea (0x7ffd132b91c0) 0 + primary-for QAbstractItemView (0x7ffd132b9150) + QFrame (0x7ffd132b9230) 0 + primary-for QAbstractScrollArea (0x7ffd132b91c0) + QWidget (0x7ffd1348ed00) 0 + primary-for QFrame (0x7ffd132b9230) + QObject (0x7ffd132b92a0) 0 + primary-for QWidget (0x7ffd1348ed00) + QPaintDevice (0x7ffd132b9310) 16 + vptr=((& QColumnView::_ZTV11QColumnView) + 792u) + +Vtable for QStandardItem +QStandardItem::_ZTV13QStandardItem: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QStandardItem) +16 QStandardItem::~QStandardItem +24 QStandardItem::~QStandardItem +32 QStandardItem::data +40 QStandardItem::setData +48 QStandardItem::clone +56 QStandardItem::type +64 QStandardItem::read +72 QStandardItem::write +80 QStandardItem::operator< + +Class QStandardItem + size=16 align=8 + base size=16 base align=8 +QStandardItem (0x7ffd132dd230) 0 + vptr=((& QStandardItem::_ZTV13QStandardItem) + 16u) + +Vtable for QStandardItemModel +QStandardItemModel::_ZTV18QStandardItemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QStandardItemModel) +16 QStandardItemModel::metaObject +24 QStandardItemModel::qt_metacast +32 QStandardItemModel::qt_metacall +40 QStandardItemModel::~QStandardItemModel +48 QStandardItemModel::~QStandardItemModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QStandardItemModel::index +120 QStandardItemModel::parent +128 QStandardItemModel::rowCount +136 QStandardItemModel::columnCount +144 QStandardItemModel::hasChildren +152 QStandardItemModel::data +160 QStandardItemModel::setData +168 QStandardItemModel::headerData +176 QStandardItemModel::setHeaderData +184 QStandardItemModel::itemData +192 QStandardItemModel::setItemData +200 QStandardItemModel::mimeTypes +208 QStandardItemModel::mimeData +216 QStandardItemModel::dropMimeData +224 QStandardItemModel::supportedDropActions +232 QStandardItemModel::insertRows +240 QStandardItemModel::insertColumns +248 QStandardItemModel::removeRows +256 QStandardItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QStandardItemModel::flags +288 QStandardItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QStandardItemModel + size=16 align=8 + base size=16 base align=8 +QStandardItemModel (0x7ffd131b9e00) 0 + vptr=((& QStandardItemModel::_ZTV18QStandardItemModel) + 16u) + QAbstractItemModel (0x7ffd131b9e70) 0 + primary-for QStandardItemModel (0x7ffd131b9e00) + QObject (0x7ffd131b9ee0) 0 + primary-for QAbstractItemModel (0x7ffd131b9e70) + +Vtable for QAbstractProxyModel +QAbstractProxyModel::_ZTV19QAbstractProxyModel: 47u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractProxyModel) +16 QAbstractProxyModel::metaObject +24 QAbstractProxyModel::qt_metacast +32 QAbstractProxyModel::qt_metacall +40 QAbstractProxyModel::~QAbstractProxyModel +48 QAbstractProxyModel::~QAbstractProxyModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractItemModel::hasChildren +152 QAbstractProxyModel::data +160 QAbstractProxyModel::setData +168 QAbstractProxyModel::headerData +176 QAbstractProxyModel::setHeaderData +184 QAbstractProxyModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractItemModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractProxyModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractProxyModel::submit +328 QAbstractProxyModel::revert +336 QAbstractProxyModel::setSourceModel +344 __cxa_pure_virtual +352 __cxa_pure_virtual +360 QAbstractProxyModel::mapSelectionToSource +368 QAbstractProxyModel::mapSelectionFromSource + +Class QAbstractProxyModel + size=16 align=8 + base size=16 base align=8 +QAbstractProxyModel (0x7ffd131f89a0) 0 + vptr=((& QAbstractProxyModel::_ZTV19QAbstractProxyModel) + 16u) + QAbstractItemModel (0x7ffd131f8a10) 0 + primary-for QAbstractProxyModel (0x7ffd131f89a0) + QObject (0x7ffd131f8a80) 0 + primary-for QAbstractItemModel (0x7ffd131f8a10) + +Vtable for QSortFilterProxyModel +QSortFilterProxyModel::_ZTV21QSortFilterProxyModel: 50u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QSortFilterProxyModel) +16 QSortFilterProxyModel::metaObject +24 QSortFilterProxyModel::qt_metacast +32 QSortFilterProxyModel::qt_metacall +40 QSortFilterProxyModel::~QSortFilterProxyModel +48 QSortFilterProxyModel::~QSortFilterProxyModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QSortFilterProxyModel::index +120 QSortFilterProxyModel::parent +128 QSortFilterProxyModel::rowCount +136 QSortFilterProxyModel::columnCount +144 QSortFilterProxyModel::hasChildren +152 QSortFilterProxyModel::data +160 QSortFilterProxyModel::setData +168 QSortFilterProxyModel::headerData +176 QSortFilterProxyModel::setHeaderData +184 QAbstractProxyModel::itemData +192 QAbstractItemModel::setItemData +200 QSortFilterProxyModel::mimeTypes +208 QSortFilterProxyModel::mimeData +216 QSortFilterProxyModel::dropMimeData +224 QSortFilterProxyModel::supportedDropActions +232 QSortFilterProxyModel::insertRows +240 QSortFilterProxyModel::insertColumns +248 QSortFilterProxyModel::removeRows +256 QSortFilterProxyModel::removeColumns +264 QSortFilterProxyModel::fetchMore +272 QSortFilterProxyModel::canFetchMore +280 QSortFilterProxyModel::flags +288 QSortFilterProxyModel::sort +296 QSortFilterProxyModel::buddy +304 QSortFilterProxyModel::match +312 QSortFilterProxyModel::span +320 QAbstractProxyModel::submit +328 QAbstractProxyModel::revert +336 QSortFilterProxyModel::setSourceModel +344 QSortFilterProxyModel::mapToSource +352 QSortFilterProxyModel::mapFromSource +360 QSortFilterProxyModel::mapSelectionToSource +368 QSortFilterProxyModel::mapSelectionFromSource +376 QSortFilterProxyModel::filterAcceptsRow +384 QSortFilterProxyModel::filterAcceptsColumn +392 QSortFilterProxyModel::lessThan + +Class QSortFilterProxyModel + size=16 align=8 + base size=16 base align=8 +QSortFilterProxyModel (0x7ffd132225b0) 0 + vptr=((& QSortFilterProxyModel::_ZTV21QSortFilterProxyModel) + 16u) + QAbstractProxyModel (0x7ffd13222620) 0 + primary-for QSortFilterProxyModel (0x7ffd132225b0) + QAbstractItemModel (0x7ffd13222690) 0 + primary-for QAbstractProxyModel (0x7ffd13222620) + QObject (0x7ffd13222700) 0 + primary-for QAbstractItemModel (0x7ffd13222690) + +Vtable for QStyledItemDelegate +QStyledItemDelegate::_ZTV19QStyledItemDelegate: 23u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QStyledItemDelegate) +16 QStyledItemDelegate::metaObject +24 QStyledItemDelegate::qt_metacast +32 QStyledItemDelegate::qt_metacall +40 QStyledItemDelegate::~QStyledItemDelegate +48 QStyledItemDelegate::~QStyledItemDelegate +56 QObject::event +64 QStyledItemDelegate::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QStyledItemDelegate::paint +120 QStyledItemDelegate::sizeHint +128 QStyledItemDelegate::createEditor +136 QStyledItemDelegate::setEditorData +144 QStyledItemDelegate::setModelData +152 QStyledItemDelegate::updateEditorGeometry +160 QStyledItemDelegate::editorEvent +168 QStyledItemDelegate::displayText +176 QStyledItemDelegate::initStyleOption + +Class QStyledItemDelegate + size=16 align=8 + base size=16 base align=8 +QStyledItemDelegate (0x7ffd132534d0) 0 + vptr=((& QStyledItemDelegate::_ZTV19QStyledItemDelegate) + 16u) + QAbstractItemDelegate (0x7ffd13253540) 0 + primary-for QStyledItemDelegate (0x7ffd132534d0) + QObject (0x7ffd132535b0) 0 + primary-for QAbstractItemDelegate (0x7ffd13253540) + +Vtable for QItemDelegate +QItemDelegate::_ZTV13QItemDelegate: 25u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QItemDelegate) +16 QItemDelegate::metaObject +24 QItemDelegate::qt_metacast +32 QItemDelegate::qt_metacall +40 QItemDelegate::~QItemDelegate +48 QItemDelegate::~QItemDelegate +56 QObject::event +64 QItemDelegate::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QItemDelegate::paint +120 QItemDelegate::sizeHint +128 QItemDelegate::createEditor +136 QItemDelegate::setEditorData +144 QItemDelegate::setModelData +152 QItemDelegate::updateEditorGeometry +160 QItemDelegate::editorEvent +168 QItemDelegate::drawDisplay +176 QItemDelegate::drawDecoration +184 QItemDelegate::drawFocus +192 QItemDelegate::drawCheck + +Class QItemDelegate + size=16 align=8 + base size=16 base align=8 +QItemDelegate (0x7ffd13265e70) 0 + vptr=((& QItemDelegate::_ZTV13QItemDelegate) + 16u) + QAbstractItemDelegate (0x7ffd13265ee0) 0 + primary-for QItemDelegate (0x7ffd13265e70) + QObject (0x7ffd13265f50) 0 + primary-for QAbstractItemDelegate (0x7ffd13265ee0) + +Vtable for QTableView +QTableView::_ZTV10QTableView: 103u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTableView) +16 QTableView::metaObject +24 QTableView::qt_metacast +32 QTableView::qt_metacall +40 QTableView::~QTableView +48 QTableView::~QTableView +56 QAbstractItemView::event +64 QObject::eventFilter +72 QTableView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QAbstractItemView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QAbstractItemView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTableView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QTableView::scrollContentsBy +464 QTableView::setModel +472 QTableView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QTableView::visualRect +496 QTableView::scrollTo +504 QTableView::indexAt +512 QTableView::sizeHintForRow +520 QTableView::sizeHintForColumn +528 QAbstractItemView::reset +536 QTableView::setRootIndex +544 QAbstractItemView::doItemsLayout +552 QAbstractItemView::selectAll +560 QAbstractItemView::dataChanged +568 QAbstractItemView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QTableView::selectionChanged +592 QTableView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QTableView::updateGeometries +624 QTableView::verticalScrollbarAction +632 QTableView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QTableView::moveCursor +688 QTableView::horizontalOffset +696 QTableView::verticalOffset +704 QTableView::isIndexHidden +712 QTableView::setSelection +720 QTableView::visualRegionForSelection +728 QTableView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QTableView::viewOptions +768 (int (*)(...))-0x00000000000000010 +776 (int (*)(...))(& _ZTI10QTableView) +784 QTableView::_ZThn16_N10QTableViewD1Ev +792 QTableView::_ZThn16_N10QTableViewD0Ev +800 QWidget::_ZThn16_NK7QWidget7devTypeEv +808 QWidget::_ZThn16_NK7QWidget11paintEngineEv +816 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTableView + size=40 align=8 + base size=40 base align=8 +QTableView (0x7ffd1328b850) 0 + vptr=((& QTableView::_ZTV10QTableView) + 16u) + QAbstractItemView (0x7ffd1328b8c0) 0 + primary-for QTableView (0x7ffd1328b850) + QAbstractScrollArea (0x7ffd1328b930) 0 + primary-for QAbstractItemView (0x7ffd1328b8c0) + QFrame (0x7ffd1328b9a0) 0 + primary-for QAbstractScrollArea (0x7ffd1328b930) + QWidget (0x7ffd13287500) 0 + primary-for QFrame (0x7ffd1328b9a0) + QObject (0x7ffd1328ba10) 0 + primary-for QWidget (0x7ffd13287500) + QPaintDevice (0x7ffd1328ba80) 16 + vptr=((& QTableView::_ZTV10QTableView) + 784u) + +Class QTableWidgetSelectionRange + size=16 align=4 + base size=16 base align=4 +QTableWidgetSelectionRange (0x7ffd130bd620) 0 + +Vtable for QTableWidgetItem +QTableWidgetItem::_ZTV16QTableWidgetItem: 10u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QTableWidgetItem) +16 QTableWidgetItem::~QTableWidgetItem +24 QTableWidgetItem::~QTableWidgetItem +32 QTableWidgetItem::clone +40 QTableWidgetItem::data +48 QTableWidgetItem::setData +56 QTableWidgetItem::operator< +64 QTableWidgetItem::read +72 QTableWidgetItem::write + +Class QTableWidgetItem + size=48 align=8 + base size=44 base align=8 +QTableWidgetItem (0x7ffd130c7af0) 0 + vptr=((& QTableWidgetItem::_ZTV16QTableWidgetItem) + 16u) + +Vtable for QTableWidget +QTableWidget::_ZTV12QTableWidget: 107u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTableWidget) +16 QTableWidget::metaObject +24 QTableWidget::qt_metacast +32 QTableWidget::qt_metacall +40 QTableWidget::~QTableWidget +48 QTableWidget::~QTableWidget +56 QTableWidget::event +64 QObject::eventFilter +72 QTableView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QAbstractItemView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QAbstractItemView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTableView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QTableWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QTableView::scrollContentsBy +464 QTableWidget::setModel +472 QTableView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QTableView::visualRect +496 QTableView::scrollTo +504 QTableView::indexAt +512 QTableView::sizeHintForRow +520 QTableView::sizeHintForColumn +528 QAbstractItemView::reset +536 QTableView::setRootIndex +544 QAbstractItemView::doItemsLayout +552 QAbstractItemView::selectAll +560 QAbstractItemView::dataChanged +568 QAbstractItemView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QTableView::selectionChanged +592 QTableView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QTableView::updateGeometries +624 QTableView::verticalScrollbarAction +632 QTableView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QTableView::moveCursor +688 QTableView::horizontalOffset +696 QTableView::verticalOffset +704 QTableView::isIndexHidden +712 QTableView::setSelection +720 QTableView::visualRegionForSelection +728 QTableView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QTableView::viewOptions +768 QTableWidget::mimeTypes +776 QTableWidget::mimeData +784 QTableWidget::dropMimeData +792 QTableWidget::supportedDropActions +800 (int (*)(...))-0x00000000000000010 +808 (int (*)(...))(& _ZTI12QTableWidget) +816 QTableWidget::_ZThn16_N12QTableWidgetD1Ev +824 QTableWidget::_ZThn16_N12QTableWidgetD0Ev +832 QWidget::_ZThn16_NK7QWidget7devTypeEv +840 QWidget::_ZThn16_NK7QWidget11paintEngineEv +848 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTableWidget + size=40 align=8 + base size=40 base align=8 +QTableWidget (0x7ffd1313c0e0) 0 + vptr=((& QTableWidget::_ZTV12QTableWidget) + 16u) + QTableView (0x7ffd1313c150) 0 + primary-for QTableWidget (0x7ffd1313c0e0) + QAbstractItemView (0x7ffd1313c1c0) 0 + primary-for QTableView (0x7ffd1313c150) + QAbstractScrollArea (0x7ffd1313c230) 0 + primary-for QAbstractItemView (0x7ffd1313c1c0) + QFrame (0x7ffd1313c2a0) 0 + primary-for QAbstractScrollArea (0x7ffd1313c230) + QWidget (0x7ffd13137580) 0 + primary-for QFrame (0x7ffd1313c2a0) + QObject (0x7ffd1313c310) 0 + primary-for QWidget (0x7ffd13137580) + QPaintDevice (0x7ffd1313c380) 16 + vptr=((& QTableWidget::_ZTV12QTableWidget) + 816u) + +Vtable for QTreeView +QTreeView::_ZTV9QTreeView: 105u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTreeView) +16 QTreeView::metaObject +24 QTreeView::qt_metacast +32 QTreeView::qt_metacall +40 QTreeView::~QTreeView +48 QTreeView::~QTreeView +56 QAbstractItemView::event +64 QObject::eventFilter +72 QTreeView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTreeView::mousePressEvent +168 QTreeView::mouseReleaseEvent +176 QTreeView::mouseDoubleClickEvent +184 QTreeView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QTreeView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTreeView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QTreeView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QTreeView::viewportEvent +456 QTreeView::scrollContentsBy +464 QTreeView::setModel +472 QTreeView::setSelectionModel +480 QTreeView::keyboardSearch +488 QTreeView::visualRect +496 QTreeView::scrollTo +504 QTreeView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QTreeView::sizeHintForColumn +528 QTreeView::reset +536 QTreeView::setRootIndex +544 QTreeView::doItemsLayout +552 QTreeView::selectAll +560 QTreeView::dataChanged +568 QTreeView::rowsInserted +576 QTreeView::rowsAboutToBeRemoved +584 QTreeView::selectionChanged +592 QTreeView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QTreeView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QTreeView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QTreeView::moveCursor +688 QTreeView::horizontalOffset +696 QTreeView::verticalOffset +704 QTreeView::isIndexHidden +712 QTreeView::setSelection +720 QTreeView::visualRegionForSelection +728 QTreeView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 QTreeView::drawRow +776 QTreeView::drawBranches +784 (int (*)(...))-0x00000000000000010 +792 (int (*)(...))(& _ZTI9QTreeView) +800 QTreeView::_ZThn16_N9QTreeViewD1Ev +808 QTreeView::_ZThn16_N9QTreeViewD0Ev +816 QWidget::_ZThn16_NK7QWidget7devTypeEv +824 QWidget::_ZThn16_NK7QWidget11paintEngineEv +832 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTreeView + size=40 align=8 + base size=40 base align=8 +QTreeView (0x7ffd1317b070) 0 + vptr=((& QTreeView::_ZTV9QTreeView) + 16u) + QAbstractItemView (0x7ffd1317b0e0) 0 + primary-for QTreeView (0x7ffd1317b070) + QAbstractScrollArea (0x7ffd1317b150) 0 + primary-for QAbstractItemView (0x7ffd1317b0e0) + QFrame (0x7ffd1317b1c0) 0 + primary-for QAbstractScrollArea (0x7ffd1317b150) + QWidget (0x7ffd13175e00) 0 + primary-for QFrame (0x7ffd1317b1c0) + QObject (0x7ffd1317b230) 0 + primary-for QWidget (0x7ffd13175e00) + QPaintDevice (0x7ffd1317b2a0) 16 + vptr=((& QTreeView::_ZTV9QTreeView) + 800u) + +Vtable for QProxyModel +QProxyModel::_ZTV11QProxyModel: 43u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QProxyModel) +16 QProxyModel::metaObject +24 QProxyModel::qt_metacast +32 QProxyModel::qt_metacall +40 QProxyModel::~QProxyModel +48 QProxyModel::~QProxyModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QProxyModel::index +120 QProxyModel::parent +128 QProxyModel::rowCount +136 QProxyModel::columnCount +144 QProxyModel::hasChildren +152 QProxyModel::data +160 QProxyModel::setData +168 QProxyModel::headerData +176 QProxyModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QProxyModel::mimeTypes +208 QProxyModel::mimeData +216 QProxyModel::dropMimeData +224 QProxyModel::supportedDropActions +232 QProxyModel::insertRows +240 QProxyModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QProxyModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QProxyModel::flags +288 QProxyModel::sort +296 QAbstractItemModel::buddy +304 QProxyModel::match +312 QProxyModel::span +320 QProxyModel::submit +328 QProxyModel::revert +336 QProxyModel::setModel + +Class QProxyModel + size=16 align=8 + base size=16 base align=8 +QProxyModel (0x7ffd12f9ee00) 0 + vptr=((& QProxyModel::_ZTV11QProxyModel) + 16u) + QAbstractItemModel (0x7ffd12f9ee70) 0 + primary-for QProxyModel (0x7ffd12f9ee00) + QObject (0x7ffd12f9eee0) 0 + primary-for QAbstractItemModel (0x7ffd12f9ee70) + +Vtable for QHeaderView +QHeaderView::_ZTV11QHeaderView: 105u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QHeaderView) +16 QHeaderView::metaObject +24 QHeaderView::qt_metacast +32 QHeaderView::qt_metacall +40 QHeaderView::~QHeaderView +48 QHeaderView::~QHeaderView +56 QHeaderView::event +64 QObject::eventFilter +72 QAbstractItemView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QHeaderView::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QHeaderView::mousePressEvent +168 QHeaderView::mouseReleaseEvent +176 QHeaderView::mouseDoubleClickEvent +184 QHeaderView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QHeaderView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QHeaderView::viewportEvent +456 QHeaderView::scrollContentsBy +464 QHeaderView::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QHeaderView::visualRect +496 QHeaderView::scrollTo +504 QHeaderView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QHeaderView::reset +536 QAbstractItemView::setRootIndex +544 QHeaderView::doItemsLayout +552 QAbstractItemView::selectAll +560 QHeaderView::dataChanged +568 QHeaderView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QAbstractItemView::selectionChanged +592 QHeaderView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QHeaderView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QHeaderView::moveCursor +688 QHeaderView::horizontalOffset +696 QHeaderView::verticalOffset +704 QHeaderView::isIndexHidden +712 QHeaderView::setSelection +720 QHeaderView::visualRegionForSelection +728 QAbstractItemView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 QHeaderView::paintSection +776 QHeaderView::sectionSizeFromContents +784 (int (*)(...))-0x00000000000000010 +792 (int (*)(...))(& _ZTI11QHeaderView) +800 QHeaderView::_ZThn16_N11QHeaderViewD1Ev +808 QHeaderView::_ZThn16_N11QHeaderViewD0Ev +816 QWidget::_ZThn16_NK7QWidget7devTypeEv +824 QWidget::_ZThn16_NK7QWidget11paintEngineEv +832 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QHeaderView + size=40 align=8 + base size=40 base align=8 +QHeaderView (0x7ffd12fc3cb0) 0 + vptr=((& QHeaderView::_ZTV11QHeaderView) + 16u) + QAbstractItemView (0x7ffd12fc3d20) 0 + primary-for QHeaderView (0x7ffd12fc3cb0) + QAbstractScrollArea (0x7ffd12fc3d90) 0 + primary-for QAbstractItemView (0x7ffd12fc3d20) + QFrame (0x7ffd12fc3e00) 0 + primary-for QAbstractScrollArea (0x7ffd12fc3d90) + QWidget (0x7ffd12f99f80) 0 + primary-for QFrame (0x7ffd12fc3e00) + QObject (0x7ffd12fc3e70) 0 + primary-for QWidget (0x7ffd12f99f80) + QPaintDevice (0x7ffd12fc3ee0) 16 + vptr=((& QHeaderView::_ZTV11QHeaderView) + 800u) + +Vtable for QItemEditorCreatorBase +QItemEditorCreatorBase::_ZTV22QItemEditorCreatorBase: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QItemEditorCreatorBase) +16 QItemEditorCreatorBase::~QItemEditorCreatorBase +24 QItemEditorCreatorBase::~QItemEditorCreatorBase +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QItemEditorCreatorBase + size=8 align=8 + base size=8 base align=8 +QItemEditorCreatorBase (0x7ffd130058c0) 0 nearly-empty + vptr=((& QItemEditorCreatorBase::_ZTV22QItemEditorCreatorBase) + 16u) + +Vtable for QItemEditorFactory +QItemEditorFactory::_ZTV18QItemEditorFactory: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QItemEditorFactory) +16 QItemEditorFactory::~QItemEditorFactory +24 QItemEditorFactory::~QItemEditorFactory +32 QItemEditorFactory::createEditor +40 QItemEditorFactory::valuePropertyName + +Class QItemEditorFactory + size=16 align=8 + base size=16 base align=8 +QItemEditorFactory (0x7ffd13010770) 0 + vptr=((& QItemEditorFactory::_ZTV18QItemEditorFactory) + 16u) + +Vtable for QTreeWidgetItem +QTreeWidgetItem::_ZTV15QTreeWidgetItem: 10u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QTreeWidgetItem) +16 QTreeWidgetItem::~QTreeWidgetItem +24 QTreeWidgetItem::~QTreeWidgetItem +32 QTreeWidgetItem::clone +40 QTreeWidgetItem::data +48 QTreeWidgetItem::setData +56 QTreeWidgetItem::operator< +64 QTreeWidgetItem::read +72 QTreeWidgetItem::write + +Class QTreeWidgetItem + size=64 align=8 + base size=60 base align=8 +QTreeWidgetItem (0x7ffd1301ca10) 0 + vptr=((& QTreeWidgetItem::_ZTV15QTreeWidgetItem) + 16u) + +Vtable for QTreeWidget +QTreeWidget::_ZTV11QTreeWidget: 109u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTreeWidget) +16 QTreeWidget::metaObject +24 QTreeWidget::qt_metacast +32 QTreeWidget::qt_metacall +40 QTreeWidget::~QTreeWidget +48 QTreeWidget::~QTreeWidget +56 QTreeWidget::event +64 QObject::eventFilter +72 QTreeView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTreeView::mousePressEvent +168 QTreeView::mouseReleaseEvent +176 QTreeView::mouseDoubleClickEvent +184 QTreeView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QTreeView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTreeView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QTreeView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QTreeWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QTreeView::viewportEvent +456 QTreeView::scrollContentsBy +464 QTreeWidget::setModel +472 QTreeWidget::setSelectionModel +480 QTreeView::keyboardSearch +488 QTreeView::visualRect +496 QTreeView::scrollTo +504 QTreeView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QTreeView::sizeHintForColumn +528 QTreeView::reset +536 QTreeView::setRootIndex +544 QTreeView::doItemsLayout +552 QTreeView::selectAll +560 QTreeView::dataChanged +568 QTreeView::rowsInserted +576 QTreeView::rowsAboutToBeRemoved +584 QTreeView::selectionChanged +592 QTreeView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QTreeView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QTreeView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QTreeView::moveCursor +688 QTreeView::horizontalOffset +696 QTreeView::verticalOffset +704 QTreeView::isIndexHidden +712 QTreeView::setSelection +720 QTreeView::visualRegionForSelection +728 QTreeView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 QTreeView::drawRow +776 QTreeView::drawBranches +784 QTreeWidget::mimeTypes +792 QTreeWidget::mimeData +800 QTreeWidget::dropMimeData +808 QTreeWidget::supportedDropActions +816 (int (*)(...))-0x00000000000000010 +824 (int (*)(...))(& _ZTI11QTreeWidget) +832 QTreeWidget::_ZThn16_N11QTreeWidgetD1Ev +840 QTreeWidget::_ZThn16_N11QTreeWidgetD0Ev +848 QWidget::_ZThn16_NK7QWidget7devTypeEv +856 QWidget::_ZThn16_NK7QWidget11paintEngineEv +864 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTreeWidget + size=40 align=8 + base size=40 base align=8 +QTreeWidget (0x7ffd12ee4f50) 0 + vptr=((& QTreeWidget::_ZTV11QTreeWidget) + 16u) + QTreeView (0x7ffd12eec000) 0 + primary-for QTreeWidget (0x7ffd12ee4f50) + QAbstractItemView (0x7ffd12eec070) 0 + primary-for QTreeView (0x7ffd12eec000) + QAbstractScrollArea (0x7ffd12eec0e0) 0 + primary-for QAbstractItemView (0x7ffd12eec070) + QFrame (0x7ffd12eec150) 0 + primary-for QAbstractScrollArea (0x7ffd12eec0e0) + QWidget (0x7ffd12edde00) 0 + primary-for QFrame (0x7ffd12eec150) + QObject (0x7ffd12eec1c0) 0 + primary-for QWidget (0x7ffd12edde00) + QPaintDevice (0x7ffd12eec230) 16 + vptr=((& QTreeWidget::_ZTV11QTreeWidget) + 832u) + +Vtable for QAccessibleBridge +QAccessibleBridge::_ZTV17QAccessibleBridge: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAccessibleBridge) +16 QAccessibleBridge::~QAccessibleBridge +24 QAccessibleBridge::~QAccessibleBridge +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QAccessibleBridge + size=8 align=8 + base size=8 base align=8 +QAccessibleBridge (0x7ffd12f4d310) 0 nearly-empty + vptr=((& QAccessibleBridge::_ZTV17QAccessibleBridge) + 16u) + +Vtable for QAccessibleBridgeFactoryInterface +QAccessibleBridgeFactoryInterface::_ZTV33QAccessibleBridgeFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI33QAccessibleBridgeFactoryInterface) +16 QAccessibleBridgeFactoryInterface::~QAccessibleBridgeFactoryInterface +24 QAccessibleBridgeFactoryInterface::~QAccessibleBridgeFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QAccessibleBridgeFactoryInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleBridgeFactoryInterface (0x7ffd12f4dd90) 0 nearly-empty + vptr=((& QAccessibleBridgeFactoryInterface::_ZTV33QAccessibleBridgeFactoryInterface) + 16u) + QFactoryInterface (0x7ffd12f4de00) 0 nearly-empty + primary-for QAccessibleBridgeFactoryInterface (0x7ffd12f4dd90) + +Vtable for QAccessibleBridgePlugin +QAccessibleBridgePlugin::_ZTV23QAccessibleBridgePlugin: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QAccessibleBridgePlugin) +16 QAccessibleBridgePlugin::metaObject +24 QAccessibleBridgePlugin::qt_metacast +32 QAccessibleBridgePlugin::qt_metacall +40 QAccessibleBridgePlugin::~QAccessibleBridgePlugin +48 QAccessibleBridgePlugin::~QAccessibleBridgePlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI23QAccessibleBridgePlugin) +144 QAccessibleBridgePlugin::_ZThn16_N23QAccessibleBridgePluginD1Ev +152 QAccessibleBridgePlugin::_ZThn16_N23QAccessibleBridgePluginD0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QAccessibleBridgePlugin + size=24 align=8 + base size=24 base align=8 +QAccessibleBridgePlugin (0x7ffd12f5c500) 0 + vptr=((& QAccessibleBridgePlugin::_ZTV23QAccessibleBridgePlugin) + 16u) + QObject (0x7ffd12f5d5b0) 0 + primary-for QAccessibleBridgePlugin (0x7ffd12f5c500) + QAccessibleBridgeFactoryInterface (0x7ffd12f5d620) 16 nearly-empty + vptr=((& QAccessibleBridgePlugin::_ZTV23QAccessibleBridgePlugin) + 144u) + QFactoryInterface (0x7ffd12f5d690) 16 nearly-empty + primary-for QAccessibleBridgeFactoryInterface (0x7ffd12f5d620) + +Class QAccessible + size=1 align=1 + base size=0 base align=1 +QAccessible (0x7ffd12f6f540) 0 empty + +Vtable for QAccessibleInterface +QAccessibleInterface::_ZTV20QAccessibleInterface: 19u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QAccessibleInterface) +16 QAccessibleInterface::~QAccessibleInterface +24 QAccessibleInterface::~QAccessibleInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual + +Class QAccessibleInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleInterface (0x7ffd12e10700) 0 nearly-empty + vptr=((& QAccessibleInterface::_ZTV20QAccessibleInterface) + 16u) + QAccessible (0x7ffd12e10770) 0 empty + +Vtable for QAccessibleInterfaceEx +QAccessibleInterfaceEx::_ZTV22QAccessibleInterfaceEx: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QAccessibleInterfaceEx) +16 QAccessibleInterfaceEx::~QAccessibleInterfaceEx +24 QAccessibleInterfaceEx::~QAccessibleInterfaceEx +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 QAccessibleInterfaceEx::virtual_hook +168 QAccessibleInterfaceEx::interface_cast + +Class QAccessibleInterfaceEx + size=8 align=8 + base size=8 base align=8 +QAccessibleInterfaceEx (0x7ffd12e6d000) 0 nearly-empty + vptr=((& QAccessibleInterfaceEx::_ZTV22QAccessibleInterfaceEx) + 16u) + QAccessibleInterface (0x7ffd12e6d070) 0 nearly-empty + primary-for QAccessibleInterfaceEx (0x7ffd12e6d000) + QAccessible (0x7ffd12e6d0e0) 0 empty + +Vtable for QAccessibleEvent +QAccessibleEvent::_ZTV16QAccessibleEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QAccessibleEvent) +16 QAccessibleEvent::~QAccessibleEvent +24 QAccessibleEvent::~QAccessibleEvent + +Class QAccessibleEvent + size=32 align=8 + base size=32 base align=8 +QAccessibleEvent (0x7ffd12e6d380) 0 + vptr=((& QAccessibleEvent::_ZTV16QAccessibleEvent) + 16u) + QEvent (0x7ffd12e6d3f0) 0 + primary-for QAccessibleEvent (0x7ffd12e6d380) + +Vtable for QAccessibleObject +QAccessibleObject::_ZTV17QAccessibleObject: 19u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAccessibleObject) +16 QAccessibleObject::~QAccessibleObject +24 QAccessibleObject::~QAccessibleObject +32 QAccessibleObject::isValid +40 QAccessibleObject::object +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 QAccessibleObject::setText +104 QAccessibleObject::rect +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAccessibleObject::userActionCount +136 QAccessibleObject::actionText +144 QAccessibleObject::doAction + +Class QAccessibleObject + size=16 align=8 + base size=16 base align=8 +QAccessibleObject (0x7ffd12e85230) 0 + vptr=((& QAccessibleObject::_ZTV17QAccessibleObject) + 16u) + QAccessibleInterface (0x7ffd12e852a0) 0 nearly-empty + primary-for QAccessibleObject (0x7ffd12e85230) + QAccessible (0x7ffd12e85310) 0 empty + +Vtable for QAccessibleObjectEx +QAccessibleObjectEx::_ZTV19QAccessibleObjectEx: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAccessibleObjectEx) +16 QAccessibleObjectEx::~QAccessibleObjectEx +24 QAccessibleObjectEx::~QAccessibleObjectEx +32 QAccessibleObjectEx::isValid +40 QAccessibleObjectEx::object +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 QAccessibleObjectEx::setText +104 QAccessibleObjectEx::rect +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAccessibleObjectEx::userActionCount +136 QAccessibleObjectEx::actionText +144 QAccessibleObjectEx::doAction +152 __cxa_pure_virtual +160 QAccessibleInterfaceEx::virtual_hook +168 QAccessibleInterfaceEx::interface_cast + +Class QAccessibleObjectEx + size=16 align=8 + base size=16 base align=8 +QAccessibleObjectEx (0x7ffd12e85a10) 0 + vptr=((& QAccessibleObjectEx::_ZTV19QAccessibleObjectEx) + 16u) + QAccessibleInterfaceEx (0x7ffd12e85a80) 0 nearly-empty + primary-for QAccessibleObjectEx (0x7ffd12e85a10) + QAccessibleInterface (0x7ffd12e85af0) 0 nearly-empty + primary-for QAccessibleInterfaceEx (0x7ffd12e85a80) + QAccessible (0x7ffd12e85b60) 0 empty + +Vtable for QAccessibleApplication +QAccessibleApplication::_ZTV22QAccessibleApplication: 19u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QAccessibleApplication) +16 QAccessibleApplication::~QAccessibleApplication +24 QAccessibleApplication::~QAccessibleApplication +32 QAccessibleObject::isValid +40 QAccessibleObject::object +48 QAccessibleApplication::childCount +56 QAccessibleApplication::indexOfChild +64 QAccessibleApplication::relationTo +72 QAccessibleApplication::childAt +80 QAccessibleApplication::navigate +88 QAccessibleApplication::text +96 QAccessibleObject::setText +104 QAccessibleObject::rect +112 QAccessibleApplication::role +120 QAccessibleApplication::state +128 QAccessibleApplication::userActionCount +136 QAccessibleApplication::actionText +144 QAccessibleApplication::doAction + +Class QAccessibleApplication + size=16 align=8 + base size=16 base align=8 +QAccessibleApplication (0x7ffd12c97230) 0 + vptr=((& QAccessibleApplication::_ZTV22QAccessibleApplication) + 16u) + QAccessibleObject (0x7ffd12c972a0) 0 + primary-for QAccessibleApplication (0x7ffd12c97230) + QAccessibleInterface (0x7ffd12c97310) 0 nearly-empty + primary-for QAccessibleObject (0x7ffd12c972a0) + QAccessible (0x7ffd12c97380) 0 empty + +Vtable for QAccessibleWidget +QAccessibleWidget::_ZTV17QAccessibleWidget: 19u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAccessibleWidget) +16 QAccessibleWidget::~QAccessibleWidget +24 QAccessibleWidget::~QAccessibleWidget +32 QAccessibleObject::isValid +40 QAccessibleObject::object +48 QAccessibleWidget::childCount +56 QAccessibleWidget::indexOfChild +64 QAccessibleWidget::relationTo +72 QAccessibleWidget::childAt +80 QAccessibleWidget::navigate +88 QAccessibleWidget::text +96 QAccessibleObject::setText +104 QAccessibleWidget::rect +112 QAccessibleWidget::role +120 QAccessibleWidget::state +128 QAccessibleWidget::userActionCount +136 QAccessibleWidget::actionText +144 QAccessibleWidget::doAction + +Class QAccessibleWidget + size=24 align=8 + base size=24 base align=8 +QAccessibleWidget (0x7ffd12c97c40) 0 + vptr=((& QAccessibleWidget::_ZTV17QAccessibleWidget) + 16u) + QAccessibleObject (0x7ffd12c97cb0) 0 + primary-for QAccessibleWidget (0x7ffd12c97c40) + QAccessibleInterface (0x7ffd12c97d20) 0 nearly-empty + primary-for QAccessibleObject (0x7ffd12c97cb0) + QAccessible (0x7ffd12c97d90) 0 empty + +Vtable for QAccessibleWidgetEx +QAccessibleWidgetEx::_ZTV19QAccessibleWidgetEx: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAccessibleWidgetEx) +16 QAccessibleWidgetEx::~QAccessibleWidgetEx +24 QAccessibleWidgetEx::~QAccessibleWidgetEx +32 QAccessibleObjectEx::isValid +40 QAccessibleObjectEx::object +48 QAccessibleWidgetEx::childCount +56 QAccessibleWidgetEx::indexOfChild +64 QAccessibleWidgetEx::relationTo +72 QAccessibleWidgetEx::childAt +80 QAccessibleWidgetEx::navigate +88 QAccessibleWidgetEx::text +96 QAccessibleObjectEx::setText +104 QAccessibleWidgetEx::rect +112 QAccessibleWidgetEx::role +120 QAccessibleWidgetEx::state +128 QAccessibleObjectEx::userActionCount +136 QAccessibleWidgetEx::actionText +144 QAccessibleWidgetEx::doAction +152 QAccessibleWidgetEx::invokeMethodEx +160 QAccessibleInterfaceEx::virtual_hook +168 QAccessibleInterfaceEx::interface_cast + +Class QAccessibleWidgetEx + size=24 align=8 + base size=24 base align=8 +QAccessibleWidgetEx (0x7ffd12ca5c40) 0 + vptr=((& QAccessibleWidgetEx::_ZTV19QAccessibleWidgetEx) + 16u) + QAccessibleObjectEx (0x7ffd12ca5cb0) 0 + primary-for QAccessibleWidgetEx (0x7ffd12ca5c40) + QAccessibleInterfaceEx (0x7ffd12ca5d20) 0 nearly-empty + primary-for QAccessibleObjectEx (0x7ffd12ca5cb0) + QAccessibleInterface (0x7ffd12ca5d90) 0 nearly-empty + primary-for QAccessibleInterfaceEx (0x7ffd12ca5d20) + QAccessible (0x7ffd12ca5e00) 0 empty + +Vtable for QAccessible2Interface +QAccessible2Interface::_ZTV21QAccessible2Interface: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QAccessible2Interface) +16 QAccessible2Interface::~QAccessible2Interface +24 QAccessible2Interface::~QAccessible2Interface + +Class QAccessible2Interface + size=8 align=8 + base size=8 base align=8 +QAccessible2Interface (0x7ffd12cb2d90) 0 nearly-empty + vptr=((& QAccessible2Interface::_ZTV21QAccessible2Interface) + 16u) + +Vtable for QAccessibleTextInterface +QAccessibleTextInterface::_ZTV24QAccessibleTextInterface: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QAccessibleTextInterface) +16 QAccessibleTextInterface::~QAccessibleTextInterface +24 QAccessibleTextInterface::~QAccessibleTextInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual + +Class QAccessibleTextInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleTextInterface (0x7ffd12cc2cb0) 0 nearly-empty + vptr=((& QAccessibleTextInterface::_ZTV24QAccessibleTextInterface) + 16u) + QAccessible2Interface (0x7ffd12cc2d20) 0 nearly-empty + primary-for QAccessibleTextInterface (0x7ffd12cc2cb0) + +Vtable for QAccessibleEditableTextInterface +QAccessibleEditableTextInterface::_ZTV32QAccessibleEditableTextInterface: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI32QAccessibleEditableTextInterface) +16 QAccessibleEditableTextInterface::~QAccessibleEditableTextInterface +24 QAccessibleEditableTextInterface::~QAccessibleEditableTextInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual + +Class QAccessibleEditableTextInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleEditableTextInterface (0x7ffd12cd1b60) 0 nearly-empty + vptr=((& QAccessibleEditableTextInterface::_ZTV32QAccessibleEditableTextInterface) + 16u) + QAccessible2Interface (0x7ffd12cd1bd0) 0 nearly-empty + primary-for QAccessibleEditableTextInterface (0x7ffd12cd1b60) + +Vtable for QAccessibleSimpleEditableTextInterface +QAccessibleSimpleEditableTextInterface::_ZTV38QAccessibleSimpleEditableTextInterface: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI38QAccessibleSimpleEditableTextInterface) +16 QAccessibleSimpleEditableTextInterface::~QAccessibleSimpleEditableTextInterface +24 QAccessibleSimpleEditableTextInterface::~QAccessibleSimpleEditableTextInterface +32 QAccessibleSimpleEditableTextInterface::copyText +40 QAccessibleSimpleEditableTextInterface::deleteText +48 QAccessibleSimpleEditableTextInterface::insertText +56 QAccessibleSimpleEditableTextInterface::cutText +64 QAccessibleSimpleEditableTextInterface::pasteText +72 QAccessibleSimpleEditableTextInterface::replaceText +80 QAccessibleSimpleEditableTextInterface::setAttributes + +Class QAccessibleSimpleEditableTextInterface + size=16 align=8 + base size=16 base align=8 +QAccessibleSimpleEditableTextInterface (0x7ffd12ce0a10) 0 + vptr=((& QAccessibleSimpleEditableTextInterface::_ZTV38QAccessibleSimpleEditableTextInterface) + 16u) + QAccessibleEditableTextInterface (0x7ffd12ce0a80) 0 nearly-empty + primary-for QAccessibleSimpleEditableTextInterface (0x7ffd12ce0a10) + QAccessible2Interface (0x7ffd12ce0af0) 0 nearly-empty + primary-for QAccessibleEditableTextInterface (0x7ffd12ce0a80) + +Vtable for QAccessibleValueInterface +QAccessibleValueInterface::_ZTV25QAccessibleValueInterface: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QAccessibleValueInterface) +16 QAccessibleValueInterface::~QAccessibleValueInterface +24 QAccessibleValueInterface::~QAccessibleValueInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual + +Class QAccessibleValueInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleValueInterface (0x7ffd12ce0d20) 0 nearly-empty + vptr=((& QAccessibleValueInterface::_ZTV25QAccessibleValueInterface) + 16u) + QAccessible2Interface (0x7ffd12ce0d90) 0 nearly-empty + primary-for QAccessibleValueInterface (0x7ffd12ce0d20) + +Vtable for QAccessibleTableInterface +QAccessibleTableInterface::_ZTV25QAccessibleTableInterface: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QAccessibleTableInterface) +16 QAccessibleTableInterface::~QAccessibleTableInterface +24 QAccessibleTableInterface::~QAccessibleTableInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 __cxa_pure_virtual +208 __cxa_pure_virtual +216 __cxa_pure_virtual +224 __cxa_pure_virtual +232 __cxa_pure_virtual + +Class QAccessibleTableInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleTableInterface (0x7ffd12ceeb60) 0 nearly-empty + vptr=((& QAccessibleTableInterface::_ZTV25QAccessibleTableInterface) + 16u) + QAccessible2Interface (0x7ffd12ceebd0) 0 nearly-empty + primary-for QAccessibleTableInterface (0x7ffd12ceeb60) + +Vtable for QAccessibleFactoryInterface +QAccessibleFactoryInterface::_ZTV27QAccessibleFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QAccessibleFactoryInterface) +16 QAccessibleFactoryInterface::~QAccessibleFactoryInterface +24 QAccessibleFactoryInterface::~QAccessibleFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QAccessibleFactoryInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleFactoryInterface (0x7ffd12cf3c80) 0 nearly-empty + vptr=((& QAccessibleFactoryInterface::_ZTV27QAccessibleFactoryInterface) + 16u) + QAccessible (0x7ffd12ceef50) 0 empty + QFactoryInterface (0x7ffd12ceed90) 0 nearly-empty + primary-for QAccessibleFactoryInterface (0x7ffd12cf3c80) + +Vtable for QAccessiblePlugin +QAccessiblePlugin::_ZTV17QAccessiblePlugin: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAccessiblePlugin) +16 QAccessiblePlugin::metaObject +24 QAccessiblePlugin::qt_metacast +32 QAccessiblePlugin::qt_metacall +40 QAccessiblePlugin::~QAccessiblePlugin +48 QAccessiblePlugin::~QAccessiblePlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI17QAccessiblePlugin) +144 QAccessiblePlugin::_ZThn16_N17QAccessiblePluginD1Ev +152 QAccessiblePlugin::_ZThn16_N17QAccessiblePluginD0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QAccessiblePlugin + size=24 align=8 + base size=24 base align=8 +QAccessiblePlugin (0x7ffd12d07480) 0 + vptr=((& QAccessiblePlugin::_ZTV17QAccessiblePlugin) + 16u) + QObject (0x7ffd12d047e0) 0 + primary-for QAccessiblePlugin (0x7ffd12d07480) + QAccessibleFactoryInterface (0x7ffd12d07500) 16 nearly-empty + vptr=((& QAccessiblePlugin::_ZTV17QAccessiblePlugin) + 144u) + QAccessible (0x7ffd12d04850) 16 empty + QFactoryInterface (0x7ffd12d048c0) 16 nearly-empty + primary-for QAccessibleFactoryInterface (0x7ffd12d07500) + +Vtable for QLayoutItem +QLayoutItem::_ZTV11QLayoutItem: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QLayoutItem) +16 QLayoutItem::~QLayoutItem +24 QLayoutItem::~QLayoutItem +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 QLayoutItem::hasHeightForWidth +96 QLayoutItem::heightForWidth +104 QLayoutItem::minimumHeightForWidth +112 QLayoutItem::invalidate +120 QLayoutItem::widget +128 QLayoutItem::layout +136 QLayoutItem::spacerItem + +Class QLayoutItem + size=16 align=8 + base size=12 base align=8 +QLayoutItem (0x7ffd12d167e0) 0 + vptr=((& QLayoutItem::_ZTV11QLayoutItem) + 16u) + +Vtable for QSpacerItem +QSpacerItem::_ZTV11QSpacerItem: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QSpacerItem) +16 QSpacerItem::~QSpacerItem +24 QSpacerItem::~QSpacerItem +32 QSpacerItem::sizeHint +40 QSpacerItem::minimumSize +48 QSpacerItem::maximumSize +56 QSpacerItem::expandingDirections +64 QSpacerItem::setGeometry +72 QSpacerItem::geometry +80 QSpacerItem::isEmpty +88 QLayoutItem::hasHeightForWidth +96 QLayoutItem::heightForWidth +104 QLayoutItem::minimumHeightForWidth +112 QLayoutItem::invalidate +120 QLayoutItem::widget +128 QLayoutItem::layout +136 QSpacerItem::spacerItem + +Class QSpacerItem + size=40 align=8 + base size=40 base align=8 +QSpacerItem (0x7ffd12d29380) 0 + vptr=((& QSpacerItem::_ZTV11QSpacerItem) + 16u) + QLayoutItem (0x7ffd12d293f0) 0 + primary-for QSpacerItem (0x7ffd12d29380) + +Vtable for QWidgetItem +QWidgetItem::_ZTV11QWidgetItem: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QWidgetItem) +16 QWidgetItem::~QWidgetItem +24 QWidgetItem::~QWidgetItem +32 QWidgetItem::sizeHint +40 QWidgetItem::minimumSize +48 QWidgetItem::maximumSize +56 QWidgetItem::expandingDirections +64 QWidgetItem::setGeometry +72 QWidgetItem::geometry +80 QWidgetItem::isEmpty +88 QWidgetItem::hasHeightForWidth +96 QWidgetItem::heightForWidth +104 QLayoutItem::minimumHeightForWidth +112 QLayoutItem::invalidate +120 QWidgetItem::widget +128 QLayoutItem::layout +136 QLayoutItem::spacerItem + +Class QWidgetItem + size=24 align=8 + base size=24 base align=8 +QWidgetItem (0x7ffd12d368c0) 0 + vptr=((& QWidgetItem::_ZTV11QWidgetItem) + 16u) + QLayoutItem (0x7ffd12d36930) 0 + primary-for QWidgetItem (0x7ffd12d368c0) + +Vtable for QWidgetItemV2 +QWidgetItemV2::_ZTV13QWidgetItemV2: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QWidgetItemV2) +16 QWidgetItemV2::~QWidgetItemV2 +24 QWidgetItemV2::~QWidgetItemV2 +32 QWidgetItemV2::sizeHint +40 QWidgetItemV2::minimumSize +48 QWidgetItemV2::maximumSize +56 QWidgetItem::expandingDirections +64 QWidgetItem::setGeometry +72 QWidgetItem::geometry +80 QWidgetItem::isEmpty +88 QWidgetItem::hasHeightForWidth +96 QWidgetItemV2::heightForWidth +104 QLayoutItem::minimumHeightForWidth +112 QLayoutItem::invalidate +120 QWidgetItem::widget +128 QLayoutItem::layout +136 QLayoutItem::spacerItem + +Class QWidgetItemV2 + size=88 align=8 + base size=88 base align=8 +QWidgetItemV2 (0x7ffd12d44700) 0 + vptr=((& QWidgetItemV2::_ZTV13QWidgetItemV2) + 16u) + QWidgetItem (0x7ffd12d44770) 0 + primary-for QWidgetItemV2 (0x7ffd12d44700) + QLayoutItem (0x7ffd12d447e0) 0 + primary-for QWidgetItem (0x7ffd12d44770) + +Class QLayoutIterator + size=16 align=8 + base size=12 base align=8 +QLayoutIterator (0x7ffd12d53540) 0 + +Vtable for QLayout +QLayout::_ZTV7QLayout: 45u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QLayout) +16 QLayout::metaObject +24 QLayout::qt_metacast +32 QLayout::qt_metacall +40 QLayout::~QLayout +48 QLayout::~QLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QLayout::invalidate +120 QLayout::geometry +128 __cxa_pure_virtual +136 QLayout::expandingDirections +144 QLayout::minimumSize +152 QLayout::maximumSize +160 QLayout::setGeometry +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 QLayout::indexOf +192 __cxa_pure_virtual +200 QLayout::isEmpty +208 QLayout::layout +216 (int (*)(...))-0x00000000000000010 +224 (int (*)(...))(& _ZTI7QLayout) +232 QLayout::_ZThn16_N7QLayoutD1Ev +240 QLayout::_ZThn16_N7QLayoutD0Ev +248 __cxa_pure_virtual +256 QLayout::_ZThn16_NK7QLayout11minimumSizeEv +264 QLayout::_ZThn16_NK7QLayout11maximumSizeEv +272 QLayout::_ZThn16_NK7QLayout19expandingDirectionsEv +280 QLayout::_ZThn16_N7QLayout11setGeometryERK5QRect +288 QLayout::_ZThn16_NK7QLayout8geometryEv +296 QLayout::_ZThn16_NK7QLayout7isEmptyEv +304 QLayoutItem::hasHeightForWidth +312 QLayoutItem::heightForWidth +320 QLayoutItem::minimumHeightForWidth +328 QLayout::_ZThn16_N7QLayout10invalidateEv +336 QLayoutItem::widget +344 QLayout::_ZThn16_N7QLayout6layoutEv +352 QLayoutItem::spacerItem + +Class QLayout + size=32 align=8 + base size=28 base align=8 +QLayout (0x7ffd12d61180) 0 + vptr=((& QLayout::_ZTV7QLayout) + 16u) + QObject (0x7ffd12d5e690) 0 + primary-for QLayout (0x7ffd12d61180) + QLayoutItem (0x7ffd12d5e700) 16 + vptr=((& QLayout::_ZTV7QLayout) + 232u) + +Vtable for QBoxLayout +QBoxLayout::_ZTV10QBoxLayout: 49u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QBoxLayout) +16 QBoxLayout::metaObject +24 QBoxLayout::qt_metacast +32 QBoxLayout::qt_metacall +40 QBoxLayout::~QBoxLayout +48 QBoxLayout::~QBoxLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QBoxLayout::invalidate +120 QLayout::geometry +128 QBoxLayout::addItem +136 QBoxLayout::expandingDirections +144 QBoxLayout::minimumSize +152 QBoxLayout::maximumSize +160 QBoxLayout::setGeometry +168 QBoxLayout::itemAt +176 QBoxLayout::takeAt +184 QLayout::indexOf +192 QBoxLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QBoxLayout::sizeHint +224 QBoxLayout::hasHeightForWidth +232 QBoxLayout::heightForWidth +240 QBoxLayout::minimumHeightForWidth +248 (int (*)(...))-0x00000000000000010 +256 (int (*)(...))(& _ZTI10QBoxLayout) +264 QBoxLayout::_ZThn16_N10QBoxLayoutD1Ev +272 QBoxLayout::_ZThn16_N10QBoxLayoutD0Ev +280 QBoxLayout::_ZThn16_NK10QBoxLayout8sizeHintEv +288 QBoxLayout::_ZThn16_NK10QBoxLayout11minimumSizeEv +296 QBoxLayout::_ZThn16_NK10QBoxLayout11maximumSizeEv +304 QBoxLayout::_ZThn16_NK10QBoxLayout19expandingDirectionsEv +312 QBoxLayout::_ZThn16_N10QBoxLayout11setGeometryERK5QRect +320 QLayout::_ZThn16_NK7QLayout8geometryEv +328 QLayout::_ZThn16_NK7QLayout7isEmptyEv +336 QBoxLayout::_ZThn16_NK10QBoxLayout17hasHeightForWidthEv +344 QBoxLayout::_ZThn16_NK10QBoxLayout14heightForWidthEi +352 QBoxLayout::_ZThn16_NK10QBoxLayout21minimumHeightForWidthEi +360 QBoxLayout::_ZThn16_N10QBoxLayout10invalidateEv +368 QLayoutItem::widget +376 QLayout::_ZThn16_N7QLayout6layoutEv +384 QLayoutItem::spacerItem + +Class QBoxLayout + size=32 align=8 + base size=28 base align=8 +QBoxLayout (0x7ffd12b99bd0) 0 + vptr=((& QBoxLayout::_ZTV10QBoxLayout) + 16u) + QLayout (0x7ffd12b9e200) 0 + primary-for QBoxLayout (0x7ffd12b99bd0) + QObject (0x7ffd12b99c40) 0 + primary-for QLayout (0x7ffd12b9e200) + QLayoutItem (0x7ffd12b99cb0) 16 + vptr=((& QBoxLayout::_ZTV10QBoxLayout) + 264u) + +Vtable for QHBoxLayout +QHBoxLayout::_ZTV11QHBoxLayout: 49u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QHBoxLayout) +16 QHBoxLayout::metaObject +24 QHBoxLayout::qt_metacast +32 QHBoxLayout::qt_metacall +40 QHBoxLayout::~QHBoxLayout +48 QHBoxLayout::~QHBoxLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QBoxLayout::invalidate +120 QLayout::geometry +128 QBoxLayout::addItem +136 QBoxLayout::expandingDirections +144 QBoxLayout::minimumSize +152 QBoxLayout::maximumSize +160 QBoxLayout::setGeometry +168 QBoxLayout::itemAt +176 QBoxLayout::takeAt +184 QLayout::indexOf +192 QBoxLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QBoxLayout::sizeHint +224 QBoxLayout::hasHeightForWidth +232 QBoxLayout::heightForWidth +240 QBoxLayout::minimumHeightForWidth +248 (int (*)(...))-0x00000000000000010 +256 (int (*)(...))(& _ZTI11QHBoxLayout) +264 QHBoxLayout::_ZThn16_N11QHBoxLayoutD1Ev +272 QHBoxLayout::_ZThn16_N11QHBoxLayoutD0Ev +280 QBoxLayout::_ZThn16_NK10QBoxLayout8sizeHintEv +288 QBoxLayout::_ZThn16_NK10QBoxLayout11minimumSizeEv +296 QBoxLayout::_ZThn16_NK10QBoxLayout11maximumSizeEv +304 QBoxLayout::_ZThn16_NK10QBoxLayout19expandingDirectionsEv +312 QBoxLayout::_ZThn16_N10QBoxLayout11setGeometryERK5QRect +320 QLayout::_ZThn16_NK7QLayout8geometryEv +328 QLayout::_ZThn16_NK7QLayout7isEmptyEv +336 QBoxLayout::_ZThn16_NK10QBoxLayout17hasHeightForWidthEv +344 QBoxLayout::_ZThn16_NK10QBoxLayout14heightForWidthEi +352 QBoxLayout::_ZThn16_NK10QBoxLayout21minimumHeightForWidthEi +360 QBoxLayout::_ZThn16_N10QBoxLayout10invalidateEv +368 QLayoutItem::widget +376 QLayout::_ZThn16_N7QLayout6layoutEv +384 QLayoutItem::spacerItem + +Class QHBoxLayout + size=32 align=8 + base size=28 base align=8 +QHBoxLayout (0x7ffd12bc8620) 0 + vptr=((& QHBoxLayout::_ZTV11QHBoxLayout) + 16u) + QBoxLayout (0x7ffd12bc8690) 0 + primary-for QHBoxLayout (0x7ffd12bc8620) + QLayout (0x7ffd12b9ef80) 0 + primary-for QBoxLayout (0x7ffd12bc8690) + QObject (0x7ffd12bc8700) 0 + primary-for QLayout (0x7ffd12b9ef80) + QLayoutItem (0x7ffd12bc8770) 16 + vptr=((& QHBoxLayout::_ZTV11QHBoxLayout) + 264u) + +Vtable for QVBoxLayout +QVBoxLayout::_ZTV11QVBoxLayout: 49u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QVBoxLayout) +16 QVBoxLayout::metaObject +24 QVBoxLayout::qt_metacast +32 QVBoxLayout::qt_metacall +40 QVBoxLayout::~QVBoxLayout +48 QVBoxLayout::~QVBoxLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QBoxLayout::invalidate +120 QLayout::geometry +128 QBoxLayout::addItem +136 QBoxLayout::expandingDirections +144 QBoxLayout::minimumSize +152 QBoxLayout::maximumSize +160 QBoxLayout::setGeometry +168 QBoxLayout::itemAt +176 QBoxLayout::takeAt +184 QLayout::indexOf +192 QBoxLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QBoxLayout::sizeHint +224 QBoxLayout::hasHeightForWidth +232 QBoxLayout::heightForWidth +240 QBoxLayout::minimumHeightForWidth +248 (int (*)(...))-0x00000000000000010 +256 (int (*)(...))(& _ZTI11QVBoxLayout) +264 QVBoxLayout::_ZThn16_N11QVBoxLayoutD1Ev +272 QVBoxLayout::_ZThn16_N11QVBoxLayoutD0Ev +280 QBoxLayout::_ZThn16_NK10QBoxLayout8sizeHintEv +288 QBoxLayout::_ZThn16_NK10QBoxLayout11minimumSizeEv +296 QBoxLayout::_ZThn16_NK10QBoxLayout11maximumSizeEv +304 QBoxLayout::_ZThn16_NK10QBoxLayout19expandingDirectionsEv +312 QBoxLayout::_ZThn16_N10QBoxLayout11setGeometryERK5QRect +320 QLayout::_ZThn16_NK7QLayout8geometryEv +328 QLayout::_ZThn16_NK7QLayout7isEmptyEv +336 QBoxLayout::_ZThn16_NK10QBoxLayout17hasHeightForWidthEv +344 QBoxLayout::_ZThn16_NK10QBoxLayout14heightForWidthEi +352 QBoxLayout::_ZThn16_NK10QBoxLayout21minimumHeightForWidthEi +360 QBoxLayout::_ZThn16_N10QBoxLayout10invalidateEv +368 QLayoutItem::widget +376 QLayout::_ZThn16_N7QLayout6layoutEv +384 QLayoutItem::spacerItem + +Class QVBoxLayout + size=32 align=8 + base size=28 base align=8 +QVBoxLayout (0x7ffd12bd4cb0) 0 + vptr=((& QVBoxLayout::_ZTV11QVBoxLayout) + 16u) + QBoxLayout (0x7ffd12bd4d20) 0 + primary-for QVBoxLayout (0x7ffd12bd4cb0) + QLayout (0x7ffd12bcc680) 0 + primary-for QBoxLayout (0x7ffd12bd4d20) + QObject (0x7ffd12bd4d90) 0 + primary-for QLayout (0x7ffd12bcc680) + QLayoutItem (0x7ffd12bd4e00) 16 + vptr=((& QVBoxLayout::_ZTV11QVBoxLayout) + 264u) + +Vtable for QGridLayout +QGridLayout::_ZTV11QGridLayout: 49u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QGridLayout) +16 QGridLayout::metaObject +24 QGridLayout::qt_metacast +32 QGridLayout::qt_metacall +40 QGridLayout::~QGridLayout +48 QGridLayout::~QGridLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGridLayout::invalidate +120 QLayout::geometry +128 QGridLayout::addItem +136 QGridLayout::expandingDirections +144 QGridLayout::minimumSize +152 QGridLayout::maximumSize +160 QGridLayout::setGeometry +168 QGridLayout::itemAt +176 QGridLayout::takeAt +184 QLayout::indexOf +192 QGridLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QGridLayout::sizeHint +224 QGridLayout::hasHeightForWidth +232 QGridLayout::heightForWidth +240 QGridLayout::minimumHeightForWidth +248 (int (*)(...))-0x00000000000000010 +256 (int (*)(...))(& _ZTI11QGridLayout) +264 QGridLayout::_ZThn16_N11QGridLayoutD1Ev +272 QGridLayout::_ZThn16_N11QGridLayoutD0Ev +280 QGridLayout::_ZThn16_NK11QGridLayout8sizeHintEv +288 QGridLayout::_ZThn16_NK11QGridLayout11minimumSizeEv +296 QGridLayout::_ZThn16_NK11QGridLayout11maximumSizeEv +304 QGridLayout::_ZThn16_NK11QGridLayout19expandingDirectionsEv +312 QGridLayout::_ZThn16_N11QGridLayout11setGeometryERK5QRect +320 QLayout::_ZThn16_NK7QLayout8geometryEv +328 QLayout::_ZThn16_NK7QLayout7isEmptyEv +336 QGridLayout::_ZThn16_NK11QGridLayout17hasHeightForWidthEv +344 QGridLayout::_ZThn16_NK11QGridLayout14heightForWidthEi +352 QGridLayout::_ZThn16_NK11QGridLayout21minimumHeightForWidthEi +360 QGridLayout::_ZThn16_N11QGridLayout10invalidateEv +368 QLayoutItem::widget +376 QLayout::_ZThn16_N7QLayout6layoutEv +384 QLayoutItem::spacerItem + +Class QGridLayout + size=32 align=8 + base size=28 base align=8 +QGridLayout (0x7ffd12bf82a0) 0 + vptr=((& QGridLayout::_ZTV11QGridLayout) + 16u) + QLayout (0x7ffd12bccd80) 0 + primary-for QGridLayout (0x7ffd12bf82a0) + QObject (0x7ffd12bf8310) 0 + primary-for QLayout (0x7ffd12bccd80) + QLayoutItem (0x7ffd12bf8380) 16 + vptr=((& QGridLayout::_ZTV11QGridLayout) + 264u) + +Vtable for QFormLayout +QFormLayout::_ZTV11QFormLayout: 48u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFormLayout) +16 QFormLayout::metaObject +24 QFormLayout::qt_metacast +32 QFormLayout::qt_metacall +40 QFormLayout::~QFormLayout +48 QFormLayout::~QFormLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFormLayout::invalidate +120 QLayout::geometry +128 QFormLayout::addItem +136 QFormLayout::expandingDirections +144 QFormLayout::minimumSize +152 QLayout::maximumSize +160 QFormLayout::setGeometry +168 QFormLayout::itemAt +176 QFormLayout::takeAt +184 QLayout::indexOf +192 QFormLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QFormLayout::sizeHint +224 QFormLayout::hasHeightForWidth +232 QFormLayout::heightForWidth +240 (int (*)(...))-0x00000000000000010 +248 (int (*)(...))(& _ZTI11QFormLayout) +256 QFormLayout::_ZThn16_N11QFormLayoutD1Ev +264 QFormLayout::_ZThn16_N11QFormLayoutD0Ev +272 QFormLayout::_ZThn16_NK11QFormLayout8sizeHintEv +280 QFormLayout::_ZThn16_NK11QFormLayout11minimumSizeEv +288 QLayout::_ZThn16_NK7QLayout11maximumSizeEv +296 QFormLayout::_ZThn16_NK11QFormLayout19expandingDirectionsEv +304 QFormLayout::_ZThn16_N11QFormLayout11setGeometryERK5QRect +312 QLayout::_ZThn16_NK7QLayout8geometryEv +320 QLayout::_ZThn16_NK7QLayout7isEmptyEv +328 QFormLayout::_ZThn16_NK11QFormLayout17hasHeightForWidthEv +336 QFormLayout::_ZThn16_NK11QFormLayout14heightForWidthEi +344 QLayoutItem::minimumHeightForWidth +352 QFormLayout::_ZThn16_N11QFormLayout10invalidateEv +360 QLayoutItem::widget +368 QLayout::_ZThn16_N7QLayout6layoutEv +376 QLayoutItem::spacerItem + +Class QFormLayout + size=32 align=8 + base size=28 base align=8 +QFormLayout (0x7ffd12c43310) 0 + vptr=((& QFormLayout::_ZTV11QFormLayout) + 16u) + QLayout (0x7ffd12c3eb80) 0 + primary-for QFormLayout (0x7ffd12c43310) + QObject (0x7ffd12c43380) 0 + primary-for QLayout (0x7ffd12c3eb80) + QLayoutItem (0x7ffd12c433f0) 16 + vptr=((& QFormLayout::_ZTV11QFormLayout) + 256u) + +Vtable for QClipboard +QClipboard::_ZTV10QClipboard: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QClipboard) +16 QClipboard::metaObject +24 QClipboard::qt_metacast +32 QClipboard::qt_metacall +40 QClipboard::~QClipboard +48 QClipboard::~QClipboard +56 QClipboard::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QClipboard::connectNotify +104 QObject::disconnectNotify + +Class QClipboard + size=16 align=8 + base size=16 base align=8 +QClipboard (0x7ffd12c6f770) 0 + vptr=((& QClipboard::_ZTV10QClipboard) + 16u) + QObject (0x7ffd12c6f7e0) 0 + primary-for QClipboard (0x7ffd12c6f770) + +Class QWhatsThis + size=1 align=1 + base size=0 base align=1 +QWhatsThis (0x7ffd12a914d0) 0 empty + +Vtable for QDesktopWidget +QDesktopWidget::_ZTV14QDesktopWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QDesktopWidget) +16 QDesktopWidget::metaObject +24 QDesktopWidget::qt_metacast +32 QDesktopWidget::qt_metacall +40 QDesktopWidget::~QDesktopWidget +48 QDesktopWidget::~QDesktopWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDesktopWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI14QDesktopWidget) +464 QDesktopWidget::_ZThn16_N14QDesktopWidgetD1Ev +472 QDesktopWidget::_ZThn16_N14QDesktopWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDesktopWidget + size=40 align=8 + base size=40 base align=8 +QDesktopWidget (0x7ffd12a915b0) 0 + vptr=((& QDesktopWidget::_ZTV14QDesktopWidget) + 16u) + QWidget (0x7ffd12a8d400) 0 + primary-for QDesktopWidget (0x7ffd12a915b0) + QObject (0x7ffd12a91620) 0 + primary-for QWidget (0x7ffd12a8d400) + QPaintDevice (0x7ffd12a91690) 16 + vptr=((& QDesktopWidget::_ZTV14QDesktopWidget) + 464u) + +Vtable for QShortcut +QShortcut::_ZTV9QShortcut: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QShortcut) +16 QShortcut::metaObject +24 QShortcut::qt_metacast +32 QShortcut::qt_metacall +40 QShortcut::~QShortcut +48 QShortcut::~QShortcut +56 QShortcut::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QShortcut + size=16 align=8 + base size=16 base align=8 +QShortcut (0x7ffd12ab65b0) 0 + vptr=((& QShortcut::_ZTV9QShortcut) + 16u) + QObject (0x7ffd12ab6620) 0 + primary-for QShortcut (0x7ffd12ab65b0) + +Vtable for QSessionManager +QSessionManager::_ZTV15QSessionManager: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSessionManager) +16 QSessionManager::metaObject +24 QSessionManager::qt_metacast +32 QSessionManager::qt_metacall +40 QSessionManager::~QSessionManager +48 QSessionManager::~QSessionManager +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSessionManager + size=16 align=8 + base size=16 base align=8 +QSessionManager (0x7ffd12acad20) 0 + vptr=((& QSessionManager::_ZTV15QSessionManager) + 16u) + QObject (0x7ffd12acad90) 0 + primary-for QSessionManager (0x7ffd12acad20) + +Vtable for QApplication +QApplication::_ZTV12QApplication: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QApplication) +16 QApplication::metaObject +24 QApplication::qt_metacast +32 QApplication::qt_metacall +40 QApplication::~QApplication +48 QApplication::~QApplication +56 QApplication::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QApplication::notify +120 QApplication::compressEvent +128 QApplication::x11EventFilter +136 QApplication::x11ClientMessage +144 QApplication::commitData +152 QApplication::saveState + +Class QApplication + size=16 align=8 + base size=16 base align=8 +QApplication (0x7ffd12ae92a0) 0 + vptr=((& QApplication::_ZTV12QApplication) + 16u) + QCoreApplication (0x7ffd12ae9310) 0 + primary-for QApplication (0x7ffd12ae92a0) + QObject (0x7ffd12ae9380) 0 + primary-for QCoreApplication (0x7ffd12ae9310) + +Vtable for QAction +QAction::_ZTV7QAction: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QAction) +16 QAction::metaObject +24 QAction::qt_metacast +32 QAction::qt_metacall +40 QAction::~QAction +48 QAction::~QAction +56 QAction::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QAction + size=16 align=8 + base size=16 base align=8 +QAction (0x7ffd12b30ee0) 0 + vptr=((& QAction::_ZTV7QAction) + 16u) + QObject (0x7ffd12b30f50) 0 + primary-for QAction (0x7ffd12b30ee0) + +Vtable for QActionGroup +QActionGroup::_ZTV12QActionGroup: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QActionGroup) +16 QActionGroup::metaObject +24 QActionGroup::qt_metacast +32 QActionGroup::qt_metacall +40 QActionGroup::~QActionGroup +48 QActionGroup::~QActionGroup +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QActionGroup + size=16 align=8 + base size=16 base align=8 +QActionGroup (0x7ffd12b72700) 0 + vptr=((& QActionGroup::_ZTV12QActionGroup) + 16u) + QObject (0x7ffd12b72770) 0 + primary-for QActionGroup (0x7ffd12b72700) + +Vtable for QSound +QSound::_ZTV6QSound: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QSound) +16 QSound::metaObject +24 QSound::qt_metacast +32 QSound::qt_metacall +40 QSound::~QSound +48 QSound::~QSound +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSound + size=16 align=8 + base size=16 base align=8 +QSound (0x7ffd1298eaf0) 0 + vptr=((& QSound::_ZTV6QSound) + 16u) + QObject (0x7ffd1298eb60) 0 + primary-for QSound (0x7ffd1298eaf0) + +Vtable for QStackedLayout +QStackedLayout::_ZTV14QStackedLayout: 46u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QStackedLayout) +16 QStackedLayout::metaObject +24 QStackedLayout::qt_metacast +32 QStackedLayout::qt_metacall +40 QStackedLayout::~QStackedLayout +48 QStackedLayout::~QStackedLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QLayout::invalidate +120 QLayout::geometry +128 QStackedLayout::addItem +136 QLayout::expandingDirections +144 QStackedLayout::minimumSize +152 QLayout::maximumSize +160 QStackedLayout::setGeometry +168 QStackedLayout::itemAt +176 QStackedLayout::takeAt +184 QLayout::indexOf +192 QStackedLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QStackedLayout::sizeHint +224 (int (*)(...))-0x00000000000000010 +232 (int (*)(...))(& _ZTI14QStackedLayout) +240 QStackedLayout::_ZThn16_N14QStackedLayoutD1Ev +248 QStackedLayout::_ZThn16_N14QStackedLayoutD0Ev +256 QStackedLayout::_ZThn16_NK14QStackedLayout8sizeHintEv +264 QStackedLayout::_ZThn16_NK14QStackedLayout11minimumSizeEv +272 QLayout::_ZThn16_NK7QLayout11maximumSizeEv +280 QLayout::_ZThn16_NK7QLayout19expandingDirectionsEv +288 QStackedLayout::_ZThn16_N14QStackedLayout11setGeometryERK5QRect +296 QLayout::_ZThn16_NK7QLayout8geometryEv +304 QLayout::_ZThn16_NK7QLayout7isEmptyEv +312 QLayoutItem::hasHeightForWidth +320 QLayoutItem::heightForWidth +328 QLayoutItem::minimumHeightForWidth +336 QLayout::_ZThn16_N7QLayout10invalidateEv +344 QLayoutItem::widget +352 QLayout::_ZThn16_N7QLayout6layoutEv +360 QLayoutItem::spacerItem + +Class QStackedLayout + size=32 align=8 + base size=28 base align=8 +QStackedLayout (0x7ffd129ce2a0) 0 + vptr=((& QStackedLayout::_ZTV14QStackedLayout) + 16u) + QLayout (0x7ffd129b6a80) 0 + primary-for QStackedLayout (0x7ffd129ce2a0) + QObject (0x7ffd129ce310) 0 + primary-for QLayout (0x7ffd129b6a80) + QLayoutItem (0x7ffd129ce380) 16 + vptr=((& QStackedLayout::_ZTV14QStackedLayout) + 240u) + +Vtable for QWidgetAction +QWidgetAction::_ZTV13QWidgetAction: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QWidgetAction) +16 QWidgetAction::metaObject +24 QWidgetAction::qt_metacast +32 QWidgetAction::qt_metacall +40 QWidgetAction::~QWidgetAction +48 QWidgetAction::~QWidgetAction +56 QWidgetAction::event +64 QWidgetAction::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidgetAction::createWidget +120 QWidgetAction::deleteWidget + +Class QWidgetAction + size=16 align=8 + base size=16 base align=8 +QWidgetAction (0x7ffd129ea2a0) 0 + vptr=((& QWidgetAction::_ZTV13QWidgetAction) + 16u) + QAction (0x7ffd129ea310) 0 + primary-for QWidgetAction (0x7ffd129ea2a0) + QObject (0x7ffd129ea380) 0 + primary-for QAction (0x7ffd129ea310) + +Class QToolTip + size=1 align=1 + base size=0 base align=1 +QToolTip (0x7ffd129fec40) 0 empty + +Vtable for QCommonStyle +QCommonStyle::_ZTV12QCommonStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QCommonStyle) +16 QCommonStyle::metaObject +24 QCommonStyle::qt_metacast +32 QCommonStyle::qt_metacall +40 QCommonStyle::~QCommonStyle +48 QCommonStyle::~QCommonStyle +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCommonStyle::polish +120 QCommonStyle::unpolish +128 QCommonStyle::polish +136 QCommonStyle::unpolish +144 QCommonStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QStyle::standardPalette +192 QCommonStyle::drawPrimitive +200 QCommonStyle::drawControl +208 QCommonStyle::subElementRect +216 QCommonStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QCommonStyle::subControlRect +240 QCommonStyle::pixelMetric +248 QCommonStyle::sizeFromContents +256 QCommonStyle::styleHint +264 QCommonStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QCommonStyle + size=16 align=8 + base size=16 base align=8 +QCommonStyle (0x7ffd12a09230) 0 + vptr=((& QCommonStyle::_ZTV12QCommonStyle) + 16u) + QStyle (0x7ffd12a092a0) 0 + primary-for QCommonStyle (0x7ffd12a09230) + QObject (0x7ffd12a09310) 0 + primary-for QStyle (0x7ffd12a092a0) + +Vtable for QMotifStyle +QMotifStyle::_ZTV11QMotifStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMotifStyle) +16 QMotifStyle::metaObject +24 QMotifStyle::qt_metacast +32 QMotifStyle::qt_metacall +40 QMotifStyle::~QMotifStyle +48 QMotifStyle::~QMotifStyle +56 QMotifStyle::event +64 QMotifStyle::eventFilter +72 QMotifStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMotifStyle::polish +120 QMotifStyle::unpolish +128 QMotifStyle::polish +136 QMotifStyle::unpolish +144 QMotifStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QMotifStyle::standardPalette +192 QMotifStyle::drawPrimitive +200 QMotifStyle::drawControl +208 QMotifStyle::subElementRect +216 QMotifStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QMotifStyle::subControlRect +240 QMotifStyle::pixelMetric +248 QMotifStyle::sizeFromContents +256 QMotifStyle::styleHint +264 QMotifStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QMotifStyle + size=32 align=8 + base size=25 base align=8 +QMotifStyle (0x7ffd12a2a230) 0 + vptr=((& QMotifStyle::_ZTV11QMotifStyle) + 16u) + QCommonStyle (0x7ffd12a2a2a0) 0 + primary-for QMotifStyle (0x7ffd12a2a230) + QStyle (0x7ffd12a2a310) 0 + primary-for QCommonStyle (0x7ffd12a2a2a0) + QObject (0x7ffd12a2a380) 0 + primary-for QStyle (0x7ffd12a2a310) + +Vtable for QWindowsStyle +QWindowsStyle::_ZTV13QWindowsStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QWindowsStyle) +16 QWindowsStyle::metaObject +24 QWindowsStyle::qt_metacast +32 QWindowsStyle::qt_metacall +40 QWindowsStyle::~QWindowsStyle +48 QWindowsStyle::~QWindowsStyle +56 QObject::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWindowsStyle::polish +120 QWindowsStyle::unpolish +128 QWindowsStyle::polish +136 QWindowsStyle::unpolish +144 QWindowsStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QStyle::standardPalette +192 QWindowsStyle::drawPrimitive +200 QWindowsStyle::drawControl +208 QWindowsStyle::subElementRect +216 QWindowsStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QCommonStyle::subControlRect +240 QWindowsStyle::pixelMetric +248 QWindowsStyle::sizeFromContents +256 QWindowsStyle::styleHint +264 QWindowsStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QWindowsStyle + size=24 align=8 + base size=24 base align=8 +QWindowsStyle (0x7ffd12a52150) 0 + vptr=((& QWindowsStyle::_ZTV13QWindowsStyle) + 16u) + QCommonStyle (0x7ffd12a521c0) 0 + primary-for QWindowsStyle (0x7ffd12a52150) + QStyle (0x7ffd12a52230) 0 + primary-for QCommonStyle (0x7ffd12a521c0) + QObject (0x7ffd12a522a0) 0 + primary-for QStyle (0x7ffd12a52230) + +Vtable for QCleanlooksStyle +QCleanlooksStyle::_ZTV16QCleanlooksStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QCleanlooksStyle) +16 QCleanlooksStyle::metaObject +24 QCleanlooksStyle::qt_metacast +32 QCleanlooksStyle::qt_metacall +40 QCleanlooksStyle::~QCleanlooksStyle +48 QCleanlooksStyle::~QCleanlooksStyle +56 QObject::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCleanlooksStyle::polish +120 QCleanlooksStyle::unpolish +128 QCleanlooksStyle::polish +136 QCleanlooksStyle::unpolish +144 QCleanlooksStyle::polish +152 QStyle::itemTextRect +160 QCleanlooksStyle::itemPixmapRect +168 QCleanlooksStyle::drawItemText +176 QCleanlooksStyle::drawItemPixmap +184 QCleanlooksStyle::standardPalette +192 QCleanlooksStyle::drawPrimitive +200 QCleanlooksStyle::drawControl +208 QCleanlooksStyle::subElementRect +216 QCleanlooksStyle::drawComplexControl +224 QCleanlooksStyle::hitTestComplexControl +232 QCleanlooksStyle::subControlRect +240 QCleanlooksStyle::pixelMetric +248 QCleanlooksStyle::sizeFromContents +256 QCleanlooksStyle::styleHint +264 QCleanlooksStyle::standardPixmap +272 QCleanlooksStyle::generatedIconPixmap + +Class QCleanlooksStyle + size=24 align=8 + base size=24 base align=8 +QCleanlooksStyle (0x7ffd12a69ee0) 0 + vptr=((& QCleanlooksStyle::_ZTV16QCleanlooksStyle) + 16u) + QWindowsStyle (0x7ffd12a69f50) 0 + primary-for QCleanlooksStyle (0x7ffd12a69ee0) + QCommonStyle (0x7ffd12a71000) 0 + primary-for QWindowsStyle (0x7ffd12a69f50) + QStyle (0x7ffd12a71070) 0 + primary-for QCommonStyle (0x7ffd12a71000) + QObject (0x7ffd12a710e0) 0 + primary-for QStyle (0x7ffd12a71070) + +Vtable for QStyleFactoryInterface +QStyleFactoryInterface::_ZTV22QStyleFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QStyleFactoryInterface) +16 QStyleFactoryInterface::~QStyleFactoryInterface +24 QStyleFactoryInterface::~QStyleFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QStyleFactoryInterface + size=8 align=8 + base size=8 base align=8 +QStyleFactoryInterface (0x7ffd1288ecb0) 0 nearly-empty + vptr=((& QStyleFactoryInterface::_ZTV22QStyleFactoryInterface) + 16u) + QFactoryInterface (0x7ffd1288ed20) 0 nearly-empty + primary-for QStyleFactoryInterface (0x7ffd1288ecb0) + +Vtable for QStylePlugin +QStylePlugin::_ZTV12QStylePlugin: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QStylePlugin) +16 QStylePlugin::metaObject +24 QStylePlugin::qt_metacast +32 QStylePlugin::qt_metacall +40 QStylePlugin::~QStylePlugin +48 QStylePlugin::~QStylePlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI12QStylePlugin) +144 QStylePlugin::_ZThn16_N12QStylePluginD1Ev +152 QStylePlugin::_ZThn16_N12QStylePluginD0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QStylePlugin + size=24 align=8 + base size=24 base align=8 +QStylePlugin (0x7ffd12a72f80) 0 + vptr=((& QStylePlugin::_ZTV12QStylePlugin) + 16u) + QObject (0x7ffd12898540) 0 + primary-for QStylePlugin (0x7ffd12a72f80) + QStyleFactoryInterface (0x7ffd128985b0) 16 nearly-empty + vptr=((& QStylePlugin::_ZTV12QStylePlugin) + 144u) + QFactoryInterface (0x7ffd12898620) 16 nearly-empty + primary-for QStyleFactoryInterface (0x7ffd128985b0) + +Vtable for QWindowsXPStyle +QWindowsXPStyle::_ZTV15QWindowsXPStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QWindowsXPStyle) +16 QWindowsXPStyle::metaObject +24 QWindowsXPStyle::qt_metacast +32 QWindowsXPStyle::qt_metacall +40 QWindowsXPStyle::~QWindowsXPStyle +48 QWindowsXPStyle::~QWindowsXPStyle +56 QObject::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWindowsXPStyle::polish +120 QWindowsXPStyle::unpolish +128 QWindowsXPStyle::polish +136 QWindowsXPStyle::unpolish +144 QWindowsXPStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QWindowsXPStyle::standardPalette +192 QWindowsXPStyle::drawPrimitive +200 QWindowsXPStyle::drawControl +208 QWindowsXPStyle::subElementRect +216 QWindowsXPStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QWindowsXPStyle::subControlRect +240 QWindowsXPStyle::pixelMetric +248 QWindowsXPStyle::sizeFromContents +256 QWindowsXPStyle::styleHint +264 QWindowsXPStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QWindowsXPStyle + size=32 align=8 + base size=32 base align=8 +QWindowsXPStyle (0x7ffd128aa4d0) 0 + vptr=((& QWindowsXPStyle::_ZTV15QWindowsXPStyle) + 16u) + QWindowsStyle (0x7ffd128aa540) 0 + primary-for QWindowsXPStyle (0x7ffd128aa4d0) + QCommonStyle (0x7ffd128aa5b0) 0 + primary-for QWindowsStyle (0x7ffd128aa540) + QStyle (0x7ffd128aa620) 0 + primary-for QCommonStyle (0x7ffd128aa5b0) + QObject (0x7ffd128aa690) 0 + primary-for QStyle (0x7ffd128aa620) + +Vtable for QCDEStyle +QCDEStyle::_ZTV9QCDEStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QCDEStyle) +16 QCDEStyle::metaObject +24 QCDEStyle::qt_metacast +32 QCDEStyle::qt_metacall +40 QCDEStyle::~QCDEStyle +48 QCDEStyle::~QCDEStyle +56 QMotifStyle::event +64 QMotifStyle::eventFilter +72 QMotifStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMotifStyle::polish +120 QMotifStyle::unpolish +128 QMotifStyle::polish +136 QMotifStyle::unpolish +144 QMotifStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QCDEStyle::standardPalette +192 QCDEStyle::drawPrimitive +200 QCDEStyle::drawControl +208 QMotifStyle::subElementRect +216 QMotifStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QMotifStyle::subControlRect +240 QCDEStyle::pixelMetric +248 QMotifStyle::sizeFromContents +256 QMotifStyle::styleHint +264 QMotifStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QCDEStyle + size=32 align=8 + base size=25 base align=8 +QCDEStyle (0x7ffd128cb380) 0 + vptr=((& QCDEStyle::_ZTV9QCDEStyle) + 16u) + QMotifStyle (0x7ffd128cb3f0) 0 + primary-for QCDEStyle (0x7ffd128cb380) + QCommonStyle (0x7ffd128cb460) 0 + primary-for QMotifStyle (0x7ffd128cb3f0) + QStyle (0x7ffd128cb4d0) 0 + primary-for QCommonStyle (0x7ffd128cb460) + QObject (0x7ffd128cb540) 0 + primary-for QStyle (0x7ffd128cb4d0) + +Vtable for QPlastiqueStyle +QPlastiqueStyle::_ZTV15QPlastiqueStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QPlastiqueStyle) +16 QPlastiqueStyle::metaObject +24 QPlastiqueStyle::qt_metacast +32 QPlastiqueStyle::qt_metacall +40 QPlastiqueStyle::~QPlastiqueStyle +48 QPlastiqueStyle::~QPlastiqueStyle +56 QObject::event +64 QPlastiqueStyle::eventFilter +72 QPlastiqueStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QPlastiqueStyle::polish +120 QPlastiqueStyle::unpolish +128 QPlastiqueStyle::polish +136 QPlastiqueStyle::unpolish +144 QPlastiqueStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QPlastiqueStyle::standardPalette +192 QPlastiqueStyle::drawPrimitive +200 QPlastiqueStyle::drawControl +208 QPlastiqueStyle::subElementRect +216 QPlastiqueStyle::drawComplexControl +224 QPlastiqueStyle::hitTestComplexControl +232 QPlastiqueStyle::subControlRect +240 QPlastiqueStyle::pixelMetric +248 QPlastiqueStyle::sizeFromContents +256 QPlastiqueStyle::styleHint +264 QPlastiqueStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QPlastiqueStyle + size=32 align=8 + base size=32 base align=8 +QPlastiqueStyle (0x7ffd128de4d0) 0 + vptr=((& QPlastiqueStyle::_ZTV15QPlastiqueStyle) + 16u) + QWindowsStyle (0x7ffd128de540) 0 + primary-for QPlastiqueStyle (0x7ffd128de4d0) + QCommonStyle (0x7ffd128de5b0) 0 + primary-for QWindowsStyle (0x7ffd128de540) + QStyle (0x7ffd128de620) 0 + primary-for QCommonStyle (0x7ffd128de5b0) + QObject (0x7ffd128de690) 0 + primary-for QStyle (0x7ffd128de620) + +Vtable for QWindowsVistaStyle +QWindowsVistaStyle::_ZTV18QWindowsVistaStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QWindowsVistaStyle) +16 QWindowsVistaStyle::metaObject +24 QWindowsVistaStyle::qt_metacast +32 QWindowsVistaStyle::qt_metacall +40 QWindowsVistaStyle::~QWindowsVistaStyle +48 QWindowsVistaStyle::~QWindowsVistaStyle +56 QWindowsVistaStyle::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWindowsVistaStyle::polish +120 QWindowsVistaStyle::unpolish +128 QWindowsVistaStyle::polish +136 QWindowsVistaStyle::unpolish +144 QWindowsVistaStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QWindowsVistaStyle::standardPalette +192 QWindowsVistaStyle::drawPrimitive +200 QWindowsVistaStyle::drawControl +208 QWindowsVistaStyle::subElementRect +216 QWindowsVistaStyle::drawComplexControl +224 QWindowsVistaStyle::hitTestComplexControl +232 QWindowsVistaStyle::subControlRect +240 QWindowsVistaStyle::pixelMetric +248 QWindowsVistaStyle::sizeFromContents +256 QWindowsVistaStyle::styleHint +264 QWindowsVistaStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QWindowsVistaStyle + size=32 align=8 + base size=32 base align=8 +QWindowsVistaStyle (0x7ffd128ff620) 0 + vptr=((& QWindowsVistaStyle::_ZTV18QWindowsVistaStyle) + 16u) + QWindowsXPStyle (0x7ffd128ff690) 0 + primary-for QWindowsVistaStyle (0x7ffd128ff620) + QWindowsStyle (0x7ffd128ff700) 0 + primary-for QWindowsXPStyle (0x7ffd128ff690) + QCommonStyle (0x7ffd128ff770) 0 + primary-for QWindowsStyle (0x7ffd128ff700) + QStyle (0x7ffd128ff7e0) 0 + primary-for QCommonStyle (0x7ffd128ff770) + QObject (0x7ffd128ff850) 0 + primary-for QStyle (0x7ffd128ff7e0) + +Vtable for QWindowsCEStyle +QWindowsCEStyle::_ZTV15QWindowsCEStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QWindowsCEStyle) +16 QWindowsCEStyle::metaObject +24 QWindowsCEStyle::qt_metacast +32 QWindowsCEStyle::qt_metacall +40 QWindowsCEStyle::~QWindowsCEStyle +48 QWindowsCEStyle::~QWindowsCEStyle +56 QObject::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWindowsCEStyle::polish +120 QWindowsStyle::unpolish +128 QWindowsCEStyle::polish +136 QWindowsStyle::unpolish +144 QWindowsCEStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QWindowsCEStyle::drawItemText +176 QStyle::drawItemPixmap +184 QWindowsCEStyle::standardPalette +192 QWindowsCEStyle::drawPrimitive +200 QWindowsCEStyle::drawControl +208 QWindowsCEStyle::subElementRect +216 QWindowsCEStyle::drawComplexControl +224 QWindowsCEStyle::hitTestComplexControl +232 QWindowsCEStyle::subControlRect +240 QWindowsCEStyle::pixelMetric +248 QWindowsCEStyle::sizeFromContents +256 QWindowsCEStyle::styleHint +264 QWindowsCEStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QWindowsCEStyle + size=24 align=8 + base size=24 base align=8 +QWindowsCEStyle (0x7ffd1291d620) 0 + vptr=((& QWindowsCEStyle::_ZTV15QWindowsCEStyle) + 16u) + QWindowsStyle (0x7ffd1291d690) 0 + primary-for QWindowsCEStyle (0x7ffd1291d620) + QCommonStyle (0x7ffd1291d700) 0 + primary-for QWindowsStyle (0x7ffd1291d690) + QStyle (0x7ffd1291d770) 0 + primary-for QCommonStyle (0x7ffd1291d700) + QObject (0x7ffd1291d7e0) 0 + primary-for QStyle (0x7ffd1291d770) + +Vtable for QWindowsMobileStyle +QWindowsMobileStyle::_ZTV19QWindowsMobileStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QWindowsMobileStyle) +16 QWindowsMobileStyle::metaObject +24 QWindowsMobileStyle::qt_metacast +32 QWindowsMobileStyle::qt_metacall +40 QWindowsMobileStyle::~QWindowsMobileStyle +48 QWindowsMobileStyle::~QWindowsMobileStyle +56 QObject::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWindowsMobileStyle::polish +120 QWindowsMobileStyle::unpolish +128 QWindowsMobileStyle::polish +136 QWindowsMobileStyle::unpolish +144 QWindowsMobileStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QWindowsMobileStyle::standardPalette +192 QWindowsMobileStyle::drawPrimitive +200 QWindowsMobileStyle::drawControl +208 QWindowsMobileStyle::subElementRect +216 QWindowsMobileStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QWindowsMobileStyle::subControlRect +240 QWindowsMobileStyle::pixelMetric +248 QWindowsMobileStyle::sizeFromContents +256 QWindowsMobileStyle::styleHint +264 QWindowsMobileStyle::standardPixmap +272 QWindowsMobileStyle::generatedIconPixmap + +Class QWindowsMobileStyle + size=24 align=8 + base size=24 base align=8 +QWindowsMobileStyle (0x7ffd12930d20) 0 + vptr=((& QWindowsMobileStyle::_ZTV19QWindowsMobileStyle) + 16u) + QWindowsStyle (0x7ffd12930d90) 0 + primary-for QWindowsMobileStyle (0x7ffd12930d20) + QCommonStyle (0x7ffd12930e00) 0 + primary-for QWindowsStyle (0x7ffd12930d90) + QStyle (0x7ffd12930e70) 0 + primary-for QCommonStyle (0x7ffd12930e00) + QObject (0x7ffd12930ee0) 0 + primary-for QStyle (0x7ffd12930e70) + +Class QStyleFactory + size=1 align=1 + base size=0 base align=1 +QStyleFactory (0x7ffd12956690) 0 empty + +Vtable for QInputContextFactoryInterface +QInputContextFactoryInterface::_ZTV29QInputContextFactoryInterface: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI29QInputContextFactoryInterface) +16 QInputContextFactoryInterface::~QInputContextFactoryInterface +24 QInputContextFactoryInterface::~QInputContextFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual + +Class QInputContextFactoryInterface + size=8 align=8 + base size=8 base align=8 +QInputContextFactoryInterface (0x7ffd12956700) 0 nearly-empty + vptr=((& QInputContextFactoryInterface::_ZTV29QInputContextFactoryInterface) + 16u) + QFactoryInterface (0x7ffd12956770) 0 nearly-empty + primary-for QInputContextFactoryInterface (0x7ffd12956700) + +Vtable for QInputContextPlugin +QInputContextPlugin::_ZTV19QInputContextPlugin: 28u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QInputContextPlugin) +16 QInputContextPlugin::metaObject +24 QInputContextPlugin::qt_metacast +32 QInputContextPlugin::qt_metacall +40 QInputContextPlugin::~QInputContextPlugin +48 QInputContextPlugin::~QInputContextPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 (int (*)(...))-0x00000000000000010 +160 (int (*)(...))(& _ZTI19QInputContextPlugin) +168 QInputContextPlugin::_ZThn16_N19QInputContextPluginD1Ev +176 QInputContextPlugin::_ZThn16_N19QInputContextPluginD0Ev +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 __cxa_pure_virtual +208 __cxa_pure_virtual +216 __cxa_pure_virtual + +Class QInputContextPlugin + size=24 align=8 + base size=24 base align=8 +QInputContextPlugin (0x7ffd12950d80) 0 + vptr=((& QInputContextPlugin::_ZTV19QInputContextPlugin) + 16u) + QObject (0x7ffd12956f50) 0 + primary-for QInputContextPlugin (0x7ffd12950d80) + QInputContextFactoryInterface (0x7ffd129567e0) 16 nearly-empty + vptr=((& QInputContextPlugin::_ZTV19QInputContextPlugin) + 168u) + QFactoryInterface (0x7ffd12961000) 16 nearly-empty + primary-for QInputContextFactoryInterface (0x7ffd129567e0) + +Class QInputContextFactory + size=1 align=1 + base size=0 base align=1 +QInputContextFactory (0x7ffd12961ee0) 0 empty + +Vtable for QInputContext +QInputContext::_ZTV13QInputContext: 26u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QInputContext) +16 QInputContext::metaObject +24 QInputContext::qt_metacast +32 QInputContext::qt_metacall +40 QInputContext::~QInputContext +48 QInputContext::~QInputContext +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 QInputContext::update +144 QInputContext::mouseHandler +152 QInputContext::font +160 __cxa_pure_virtual +168 QInputContext::setFocusWidget +176 QInputContext::widgetDestroyed +184 QInputContext::actions +192 QInputContext::x11FilterEvent +200 QInputContext::filterEvent + +Class QInputContext + size=16 align=8 + base size=16 base align=8 +QInputContext (0x7ffd12961f50) 0 + vptr=((& QInputContext::_ZTV13QInputContext) + 16u) + QObject (0x7ffd129612a0) 0 + primary-for QInputContext (0x7ffd12961f50) + +Vtable for QGraphicsItem +QGraphicsItem::_ZTV13QGraphicsItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QGraphicsItem) +16 QGraphicsItem::~QGraphicsItem +24 QGraphicsItem::~QGraphicsItem +32 QGraphicsItem::advance +40 __cxa_pure_virtual +48 QGraphicsItem::shape +56 QGraphicsItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsItem::isObscuredBy +88 QGraphicsItem::opaqueArea +96 __cxa_pure_virtual +104 QGraphicsItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsItem::supportsExtension +296 QGraphicsItem::setExtension +304 QGraphicsItem::extension + +Class QGraphicsItem + size=16 align=8 + base size=16 base align=8 +QGraphicsItem (0x7ffd12789850) 0 + vptr=((& QGraphicsItem::_ZTV13QGraphicsItem) + 16u) + +Vtable for QAbstractGraphicsShapeItem +QAbstractGraphicsShapeItem::_ZTV26QAbstractGraphicsShapeItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QAbstractGraphicsShapeItem) +16 QAbstractGraphicsShapeItem::~QAbstractGraphicsShapeItem +24 QAbstractGraphicsShapeItem::~QAbstractGraphicsShapeItem +32 QGraphicsItem::advance +40 __cxa_pure_virtual +48 QGraphicsItem::shape +56 QGraphicsItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QAbstractGraphicsShapeItem::isObscuredBy +88 QAbstractGraphicsShapeItem::opaqueArea +96 __cxa_pure_virtual +104 QGraphicsItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsItem::supportsExtension +296 QGraphicsItem::setExtension +304 QGraphicsItem::extension + +Class QAbstractGraphicsShapeItem + size=16 align=8 + base size=16 base align=8 +QAbstractGraphicsShapeItem (0x7ffd12860380) 0 + vptr=((& QAbstractGraphicsShapeItem::_ZTV26QAbstractGraphicsShapeItem) + 16u) + QGraphicsItem (0x7ffd128603f0) 0 + primary-for QAbstractGraphicsShapeItem (0x7ffd12860380) + +Vtable for QGraphicsPathItem +QGraphicsPathItem::_ZTV17QGraphicsPathItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QGraphicsPathItem) +16 QGraphicsPathItem::~QGraphicsPathItem +24 QGraphicsPathItem::~QGraphicsPathItem +32 QGraphicsItem::advance +40 QGraphicsPathItem::boundingRect +48 QGraphicsPathItem::shape +56 QGraphicsPathItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsPathItem::isObscuredBy +88 QGraphicsPathItem::opaqueArea +96 QGraphicsPathItem::paint +104 QGraphicsPathItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsPathItem::supportsExtension +296 QGraphicsPathItem::setExtension +304 QGraphicsPathItem::extension + +Class QGraphicsPathItem + size=16 align=8 + base size=16 base align=8 +QGraphicsPathItem (0x7ffd1286b1c0) 0 + vptr=((& QGraphicsPathItem::_ZTV17QGraphicsPathItem) + 16u) + QAbstractGraphicsShapeItem (0x7ffd1286b230) 0 + primary-for QGraphicsPathItem (0x7ffd1286b1c0) + QGraphicsItem (0x7ffd1286b2a0) 0 + primary-for QAbstractGraphicsShapeItem (0x7ffd1286b230) + +Vtable for QGraphicsRectItem +QGraphicsRectItem::_ZTV17QGraphicsRectItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QGraphicsRectItem) +16 QGraphicsRectItem::~QGraphicsRectItem +24 QGraphicsRectItem::~QGraphicsRectItem +32 QGraphicsItem::advance +40 QGraphicsRectItem::boundingRect +48 QGraphicsRectItem::shape +56 QGraphicsRectItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsRectItem::isObscuredBy +88 QGraphicsRectItem::opaqueArea +96 QGraphicsRectItem::paint +104 QGraphicsRectItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsRectItem::supportsExtension +296 QGraphicsRectItem::setExtension +304 QGraphicsRectItem::extension + +Class QGraphicsRectItem + size=16 align=8 + base size=16 base align=8 +QGraphicsRectItem (0x7ffd1287d150) 0 + vptr=((& QGraphicsRectItem::_ZTV17QGraphicsRectItem) + 16u) + QAbstractGraphicsShapeItem (0x7ffd1287d1c0) 0 + primary-for QGraphicsRectItem (0x7ffd1287d150) + QGraphicsItem (0x7ffd1287d230) 0 + primary-for QAbstractGraphicsShapeItem (0x7ffd1287d1c0) + +Vtable for QGraphicsEllipseItem +QGraphicsEllipseItem::_ZTV20QGraphicsEllipseItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QGraphicsEllipseItem) +16 QGraphicsEllipseItem::~QGraphicsEllipseItem +24 QGraphicsEllipseItem::~QGraphicsEllipseItem +32 QGraphicsItem::advance +40 QGraphicsEllipseItem::boundingRect +48 QGraphicsEllipseItem::shape +56 QGraphicsEllipseItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsEllipseItem::isObscuredBy +88 QGraphicsEllipseItem::opaqueArea +96 QGraphicsEllipseItem::paint +104 QGraphicsEllipseItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsEllipseItem::supportsExtension +296 QGraphicsEllipseItem::setExtension +304 QGraphicsEllipseItem::extension + +Class QGraphicsEllipseItem + size=16 align=8 + base size=16 base align=8 +QGraphicsEllipseItem (0x7ffd12689460) 0 + vptr=((& QGraphicsEllipseItem::_ZTV20QGraphicsEllipseItem) + 16u) + QAbstractGraphicsShapeItem (0x7ffd126894d0) 0 + primary-for QGraphicsEllipseItem (0x7ffd12689460) + QGraphicsItem (0x7ffd12689540) 0 + primary-for QAbstractGraphicsShapeItem (0x7ffd126894d0) + +Vtable for QGraphicsPolygonItem +QGraphicsPolygonItem::_ZTV20QGraphicsPolygonItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QGraphicsPolygonItem) +16 QGraphicsPolygonItem::~QGraphicsPolygonItem +24 QGraphicsPolygonItem::~QGraphicsPolygonItem +32 QGraphicsItem::advance +40 QGraphicsPolygonItem::boundingRect +48 QGraphicsPolygonItem::shape +56 QGraphicsPolygonItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsPolygonItem::isObscuredBy +88 QGraphicsPolygonItem::opaqueArea +96 QGraphicsPolygonItem::paint +104 QGraphicsPolygonItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsPolygonItem::supportsExtension +296 QGraphicsPolygonItem::setExtension +304 QGraphicsPolygonItem::extension + +Class QGraphicsPolygonItem + size=16 align=8 + base size=16 base align=8 +QGraphicsPolygonItem (0x7ffd1269c770) 0 + vptr=((& QGraphicsPolygonItem::_ZTV20QGraphicsPolygonItem) + 16u) + QAbstractGraphicsShapeItem (0x7ffd1269c7e0) 0 + primary-for QGraphicsPolygonItem (0x7ffd1269c770) + QGraphicsItem (0x7ffd1269c850) 0 + primary-for QAbstractGraphicsShapeItem (0x7ffd1269c7e0) + +Vtable for QGraphicsLineItem +QGraphicsLineItem::_ZTV17QGraphicsLineItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QGraphicsLineItem) +16 QGraphicsLineItem::~QGraphicsLineItem +24 QGraphicsLineItem::~QGraphicsLineItem +32 QGraphicsItem::advance +40 QGraphicsLineItem::boundingRect +48 QGraphicsLineItem::shape +56 QGraphicsLineItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsLineItem::isObscuredBy +88 QGraphicsLineItem::opaqueArea +96 QGraphicsLineItem::paint +104 QGraphicsLineItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsLineItem::supportsExtension +296 QGraphicsLineItem::setExtension +304 QGraphicsLineItem::extension + +Class QGraphicsLineItem + size=16 align=8 + base size=16 base align=8 +QGraphicsLineItem (0x7ffd126ad770) 0 + vptr=((& QGraphicsLineItem::_ZTV17QGraphicsLineItem) + 16u) + QGraphicsItem (0x7ffd126ad7e0) 0 + primary-for QGraphicsLineItem (0x7ffd126ad770) + +Vtable for QGraphicsPixmapItem +QGraphicsPixmapItem::_ZTV19QGraphicsPixmapItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QGraphicsPixmapItem) +16 QGraphicsPixmapItem::~QGraphicsPixmapItem +24 QGraphicsPixmapItem::~QGraphicsPixmapItem +32 QGraphicsItem::advance +40 QGraphicsPixmapItem::boundingRect +48 QGraphicsPixmapItem::shape +56 QGraphicsPixmapItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsPixmapItem::isObscuredBy +88 QGraphicsPixmapItem::opaqueArea +96 QGraphicsPixmapItem::paint +104 QGraphicsPixmapItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsPixmapItem::supportsExtension +296 QGraphicsPixmapItem::setExtension +304 QGraphicsPixmapItem::extension + +Class QGraphicsPixmapItem + size=16 align=8 + base size=16 base align=8 +QGraphicsPixmapItem (0x7ffd126bea10) 0 + vptr=((& QGraphicsPixmapItem::_ZTV19QGraphicsPixmapItem) + 16u) + QGraphicsItem (0x7ffd126bea80) 0 + primary-for QGraphicsPixmapItem (0x7ffd126bea10) + +Vtable for QGraphicsTextItem +QGraphicsTextItem::_ZTV17QGraphicsTextItem: 82u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QGraphicsTextItem) +16 QGraphicsTextItem::metaObject +24 QGraphicsTextItem::qt_metacast +32 QGraphicsTextItem::qt_metacall +40 QGraphicsTextItem::~QGraphicsTextItem +48 QGraphicsTextItem::~QGraphicsTextItem +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsTextItem::boundingRect +120 QGraphicsTextItem::shape +128 QGraphicsTextItem::contains +136 QGraphicsTextItem::paint +144 QGraphicsTextItem::isObscuredBy +152 QGraphicsTextItem::opaqueArea +160 QGraphicsTextItem::type +168 QGraphicsTextItem::sceneEvent +176 QGraphicsTextItem::mousePressEvent +184 QGraphicsTextItem::mouseMoveEvent +192 QGraphicsTextItem::mouseReleaseEvent +200 QGraphicsTextItem::mouseDoubleClickEvent +208 QGraphicsTextItem::contextMenuEvent +216 QGraphicsTextItem::keyPressEvent +224 QGraphicsTextItem::keyReleaseEvent +232 QGraphicsTextItem::focusInEvent +240 QGraphicsTextItem::focusOutEvent +248 QGraphicsTextItem::dragEnterEvent +256 QGraphicsTextItem::dragLeaveEvent +264 QGraphicsTextItem::dragMoveEvent +272 QGraphicsTextItem::dropEvent +280 QGraphicsTextItem::inputMethodEvent +288 QGraphicsTextItem::hoverEnterEvent +296 QGraphicsTextItem::hoverMoveEvent +304 QGraphicsTextItem::hoverLeaveEvent +312 QGraphicsTextItem::inputMethodQuery +320 QGraphicsTextItem::supportsExtension +328 QGraphicsTextItem::setExtension +336 QGraphicsTextItem::extension +344 (int (*)(...))-0x00000000000000010 +352 (int (*)(...))(& _ZTI17QGraphicsTextItem) +360 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItemD1Ev +368 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItemD0Ev +376 QGraphicsItem::advance +384 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem12boundingRectEv +392 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem5shapeEv +400 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem8containsERK7QPointF +408 QGraphicsItem::collidesWithItem +416 QGraphicsItem::collidesWithPath +424 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem12isObscuredByEPK13QGraphicsItem +432 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem10opaqueAreaEv +440 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget +448 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem4typeEv +456 QGraphicsItem::sceneEventFilter +464 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem10sceneEventEP6QEvent +472 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem16contextMenuEventEP30QGraphicsSceneContextMenuEvent +480 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem14dragEnterEventEP27QGraphicsSceneDragDropEvent +488 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem14dragLeaveEventEP27QGraphicsSceneDragDropEvent +496 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem13dragMoveEventEP27QGraphicsSceneDragDropEvent +504 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem9dropEventEP27QGraphicsSceneDragDropEvent +512 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem12focusInEventEP11QFocusEvent +520 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem13focusOutEventEP11QFocusEvent +528 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem15hoverEnterEventEP24QGraphicsSceneHoverEvent +536 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem14hoverMoveEventEP24QGraphicsSceneHoverEvent +544 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem15hoverLeaveEventEP24QGraphicsSceneHoverEvent +552 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem13keyPressEventEP9QKeyEvent +560 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem15keyReleaseEventEP9QKeyEvent +568 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem15mousePressEventEP24QGraphicsSceneMouseEvent +576 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem14mouseMoveEventEP24QGraphicsSceneMouseEvent +584 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem17mouseReleaseEventEP24QGraphicsSceneMouseEvent +592 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem21mouseDoubleClickEventEP24QGraphicsSceneMouseEvent +600 QGraphicsItem::wheelEvent +608 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem16inputMethodEventEP17QInputMethodEvent +616 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem16inputMethodQueryEN2Qt16InputMethodQueryE +624 QGraphicsItem::itemChange +632 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem17supportsExtensionEN13QGraphicsItem9ExtensionE +640 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem12setExtensionEN13QGraphicsItem9ExtensionERK8QVariant +648 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem9extensionERK8QVariant + +Class QGraphicsTextItem + size=40 align=8 + base size=40 base align=8 +QGraphicsTextItem (0x7ffd1269ef80) 0 + vptr=((& QGraphicsTextItem::_ZTV17QGraphicsTextItem) + 16u) + QObject (0x7ffd126cfc40) 0 + primary-for QGraphicsTextItem (0x7ffd1269ef80) + QGraphicsItem (0x7ffd126cfcb0) 16 + vptr=((& QGraphicsTextItem::_ZTV17QGraphicsTextItem) + 360u) + +Vtable for QGraphicsSimpleTextItem +QGraphicsSimpleTextItem::_ZTV23QGraphicsSimpleTextItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QGraphicsSimpleTextItem) +16 QGraphicsSimpleTextItem::~QGraphicsSimpleTextItem +24 QGraphicsSimpleTextItem::~QGraphicsSimpleTextItem +32 QGraphicsItem::advance +40 QGraphicsSimpleTextItem::boundingRect +48 QGraphicsSimpleTextItem::shape +56 QGraphicsSimpleTextItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsSimpleTextItem::isObscuredBy +88 QGraphicsSimpleTextItem::opaqueArea +96 QGraphicsSimpleTextItem::paint +104 QGraphicsSimpleTextItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsSimpleTextItem::supportsExtension +296 QGraphicsSimpleTextItem::setExtension +304 QGraphicsSimpleTextItem::extension + +Class QGraphicsSimpleTextItem + size=16 align=8 + base size=16 base align=8 +QGraphicsSimpleTextItem (0x7ffd127081c0) 0 + vptr=((& QGraphicsSimpleTextItem::_ZTV23QGraphicsSimpleTextItem) + 16u) + QAbstractGraphicsShapeItem (0x7ffd12708230) 0 + primary-for QGraphicsSimpleTextItem (0x7ffd127081c0) + QGraphicsItem (0x7ffd127082a0) 0 + primary-for QAbstractGraphicsShapeItem (0x7ffd12708230) + +Vtable for QGraphicsItemGroup +QGraphicsItemGroup::_ZTV18QGraphicsItemGroup: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QGraphicsItemGroup) +16 QGraphicsItemGroup::~QGraphicsItemGroup +24 QGraphicsItemGroup::~QGraphicsItemGroup +32 QGraphicsItem::advance +40 QGraphicsItemGroup::boundingRect +48 QGraphicsItem::shape +56 QGraphicsItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsItemGroup::isObscuredBy +88 QGraphicsItemGroup::opaqueArea +96 QGraphicsItemGroup::paint +104 QGraphicsItemGroup::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsItem::supportsExtension +296 QGraphicsItem::setExtension +304 QGraphicsItem::extension + +Class QGraphicsItemGroup + size=16 align=8 + base size=16 base align=8 +QGraphicsItemGroup (0x7ffd12717150) 0 + vptr=((& QGraphicsItemGroup::_ZTV18QGraphicsItemGroup) + 16u) + QGraphicsItem (0x7ffd127171c0) 0 + primary-for QGraphicsItemGroup (0x7ffd12717150) + +Vtable for QGraphicsLayoutItem +QGraphicsLayoutItem::_ZTV19QGraphicsLayoutItem: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QGraphicsLayoutItem) +16 QGraphicsLayoutItem::~QGraphicsLayoutItem +24 QGraphicsLayoutItem::~QGraphicsLayoutItem +32 QGraphicsLayoutItem::setGeometry +40 QGraphicsLayoutItem::getContentsMargins +48 QGraphicsLayoutItem::updateGeometry +56 __cxa_pure_virtual + +Class QGraphicsLayoutItem + size=16 align=8 + base size=16 base align=8 +QGraphicsLayoutItem (0x7ffd12726a80) 0 + vptr=((& QGraphicsLayoutItem::_ZTV19QGraphicsLayoutItem) + 16u) + +Vtable for QGraphicsLayout +QGraphicsLayout::_ZTV15QGraphicsLayout: 13u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QGraphicsLayout) +16 QGraphicsLayout::~QGraphicsLayout +24 QGraphicsLayout::~QGraphicsLayout +32 QGraphicsLayoutItem::setGeometry +40 QGraphicsLayout::getContentsMargins +48 QGraphicsLayout::updateGeometry +56 __cxa_pure_virtual +64 QGraphicsLayout::invalidate +72 QGraphicsLayout::widgetEvent +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual + +Class QGraphicsLayout + size=16 align=8 + base size=16 base align=8 +QGraphicsLayout (0x7ffd127547e0) 0 + vptr=((& QGraphicsLayout::_ZTV15QGraphicsLayout) + 16u) + QGraphicsLayoutItem (0x7ffd12754850) 0 + primary-for QGraphicsLayout (0x7ffd127547e0) + +Vtable for QGraphicsScene +QGraphicsScene::_ZTV14QGraphicsScene: 34u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QGraphicsScene) +16 QGraphicsScene::metaObject +24 QGraphicsScene::qt_metacast +32 QGraphicsScene::qt_metacall +40 QGraphicsScene::~QGraphicsScene +48 QGraphicsScene::~QGraphicsScene +56 QGraphicsScene::event +64 QGraphicsScene::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsScene::inputMethodQuery +120 QGraphicsScene::contextMenuEvent +128 QGraphicsScene::dragEnterEvent +136 QGraphicsScene::dragMoveEvent +144 QGraphicsScene::dragLeaveEvent +152 QGraphicsScene::dropEvent +160 QGraphicsScene::focusInEvent +168 QGraphicsScene::focusOutEvent +176 QGraphicsScene::helpEvent +184 QGraphicsScene::keyPressEvent +192 QGraphicsScene::keyReleaseEvent +200 QGraphicsScene::mousePressEvent +208 QGraphicsScene::mouseMoveEvent +216 QGraphicsScene::mouseReleaseEvent +224 QGraphicsScene::mouseDoubleClickEvent +232 QGraphicsScene::wheelEvent +240 QGraphicsScene::inputMethodEvent +248 QGraphicsScene::drawBackground +256 QGraphicsScene::drawForeground +264 QGraphicsScene::drawItems + +Class QGraphicsScene + size=16 align=8 + base size=16 base align=8 +QGraphicsScene (0x7ffd12762700) 0 + vptr=((& QGraphicsScene::_ZTV14QGraphicsScene) + 16u) + QObject (0x7ffd12762770) 0 + primary-for QGraphicsScene (0x7ffd12762700) + +Vtable for QGraphicsLinearLayout +QGraphicsLinearLayout::_ZTV21QGraphicsLinearLayout: 13u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QGraphicsLinearLayout) +16 QGraphicsLinearLayout::~QGraphicsLinearLayout +24 QGraphicsLinearLayout::~QGraphicsLinearLayout +32 QGraphicsLinearLayout::setGeometry +40 QGraphicsLayout::getContentsMargins +48 QGraphicsLayout::updateGeometry +56 QGraphicsLinearLayout::sizeHint +64 QGraphicsLinearLayout::invalidate +72 QGraphicsLayout::widgetEvent +80 QGraphicsLinearLayout::count +88 QGraphicsLinearLayout::itemAt +96 QGraphicsLinearLayout::removeAt + +Class QGraphicsLinearLayout + size=16 align=8 + base size=16 base align=8 +QGraphicsLinearLayout (0x7ffd12608d20) 0 + vptr=((& QGraphicsLinearLayout::_ZTV21QGraphicsLinearLayout) + 16u) + QGraphicsLayout (0x7ffd12608d90) 0 + primary-for QGraphicsLinearLayout (0x7ffd12608d20) + QGraphicsLayoutItem (0x7ffd12608e00) 0 + primary-for QGraphicsLayout (0x7ffd12608d90) + +Vtable for QScrollArea +QScrollArea::_ZTV11QScrollArea: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QScrollArea) +16 QScrollArea::metaObject +24 QScrollArea::qt_metacast +32 QScrollArea::qt_metacall +40 QScrollArea::~QScrollArea +48 QScrollArea::~QScrollArea +56 QScrollArea::event +64 QScrollArea::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractScrollArea::mousePressEvent +168 QAbstractScrollArea::mouseReleaseEvent +176 QAbstractScrollArea::mouseDoubleClickEvent +184 QAbstractScrollArea::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractScrollArea::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractScrollArea::paintEvent +256 QWidget::moveEvent +264 QScrollArea::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractScrollArea::dragEnterEvent +312 QAbstractScrollArea::dragMoveEvent +320 QAbstractScrollArea::dragLeaveEvent +328 QAbstractScrollArea::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QScrollArea::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QScrollArea::scrollContentsBy +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI11QScrollArea) +480 QScrollArea::_ZThn16_N11QScrollAreaD1Ev +488 QScrollArea::_ZThn16_N11QScrollAreaD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QScrollArea + size=40 align=8 + base size=40 base align=8 +QScrollArea (0x7ffd12635540) 0 + vptr=((& QScrollArea::_ZTV11QScrollArea) + 16u) + QAbstractScrollArea (0x7ffd126355b0) 0 + primary-for QScrollArea (0x7ffd12635540) + QFrame (0x7ffd12635620) 0 + primary-for QAbstractScrollArea (0x7ffd126355b0) + QWidget (0x7ffd12607880) 0 + primary-for QFrame (0x7ffd12635620) + QObject (0x7ffd12635690) 0 + primary-for QWidget (0x7ffd12607880) + QPaintDevice (0x7ffd12635700) 16 + vptr=((& QScrollArea::_ZTV11QScrollArea) + 480u) + +Vtable for QGraphicsView +QGraphicsView::_ZTV13QGraphicsView: 68u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QGraphicsView) +16 QGraphicsView::metaObject +24 QGraphicsView::qt_metacast +32 QGraphicsView::qt_metacall +40 QGraphicsView::~QGraphicsView +48 QGraphicsView::~QGraphicsView +56 QGraphicsView::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QGraphicsView::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QGraphicsView::mousePressEvent +168 QGraphicsView::mouseReleaseEvent +176 QGraphicsView::mouseDoubleClickEvent +184 QGraphicsView::mouseMoveEvent +192 QGraphicsView::wheelEvent +200 QGraphicsView::keyPressEvent +208 QGraphicsView::keyReleaseEvent +216 QGraphicsView::focusInEvent +224 QGraphicsView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QGraphicsView::paintEvent +256 QWidget::moveEvent +264 QGraphicsView::resizeEvent +272 QWidget::closeEvent +280 QGraphicsView::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QGraphicsView::dragEnterEvent +312 QGraphicsView::dragMoveEvent +320 QGraphicsView::dragLeaveEvent +328 QGraphicsView::dropEvent +336 QGraphicsView::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QGraphicsView::inputMethodEvent +384 QGraphicsView::inputMethodQuery +392 QGraphicsView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QGraphicsView::viewportEvent +456 QGraphicsView::scrollContentsBy +464 QGraphicsView::drawBackground +472 QGraphicsView::drawForeground +480 QGraphicsView::drawItems +488 (int (*)(...))-0x00000000000000010 +496 (int (*)(...))(& _ZTI13QGraphicsView) +504 QGraphicsView::_ZThn16_N13QGraphicsViewD1Ev +512 QGraphicsView::_ZThn16_N13QGraphicsViewD0Ev +520 QWidget::_ZThn16_NK7QWidget7devTypeEv +528 QWidget::_ZThn16_NK7QWidget11paintEngineEv +536 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QGraphicsView + size=40 align=8 + base size=40 base align=8 +QGraphicsView (0x7ffd12655460) 0 + vptr=((& QGraphicsView::_ZTV13QGraphicsView) + 16u) + QAbstractScrollArea (0x7ffd126554d0) 0 + primary-for QGraphicsView (0x7ffd12655460) + QFrame (0x7ffd12655540) 0 + primary-for QAbstractScrollArea (0x7ffd126554d0) + QWidget (0x7ffd12654180) 0 + primary-for QFrame (0x7ffd12655540) + QObject (0x7ffd126555b0) 0 + primary-for QWidget (0x7ffd12654180) + QPaintDevice (0x7ffd12655620) 16 + vptr=((& QGraphicsView::_ZTV13QGraphicsView) + 504u) + +Vtable for QGraphicsWidget +QGraphicsWidget::_ZTV15QGraphicsWidget: 92u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QGraphicsWidget) +16 QGraphicsWidget::metaObject +24 QGraphicsWidget::qt_metacast +32 QGraphicsWidget::qt_metacall +40 QGraphicsWidget::~QGraphicsWidget +48 QGraphicsWidget::~QGraphicsWidget +56 QGraphicsWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsWidget::setGeometry +120 QGraphicsWidget::getContentsMargins +128 QGraphicsWidget::type +136 QGraphicsWidget::paint +144 QGraphicsWidget::paintWindowFrame +152 QGraphicsWidget::boundingRect +160 QGraphicsWidget::shape +168 QGraphicsWidget::initStyleOption +176 QGraphicsWidget::sizeHint +184 QGraphicsWidget::updateGeometry +192 QGraphicsWidget::itemChange +200 QGraphicsWidget::propertyChange +208 QGraphicsWidget::sceneEvent +216 QGraphicsWidget::windowFrameEvent +224 QGraphicsWidget::windowFrameSectionAt +232 QGraphicsWidget::changeEvent +240 QGraphicsWidget::closeEvent +248 QGraphicsWidget::focusInEvent +256 QGraphicsWidget::focusNextPrevChild +264 QGraphicsWidget::focusOutEvent +272 QGraphicsWidget::hideEvent +280 QGraphicsWidget::moveEvent +288 QGraphicsWidget::polishEvent +296 QGraphicsWidget::resizeEvent +304 QGraphicsWidget::showEvent +312 QGraphicsWidget::hoverMoveEvent +320 QGraphicsWidget::hoverLeaveEvent +328 QGraphicsWidget::grabMouseEvent +336 QGraphicsWidget::ungrabMouseEvent +344 QGraphicsWidget::grabKeyboardEvent +352 QGraphicsWidget::ungrabKeyboardEvent +360 (int (*)(...))-0x00000000000000010 +368 (int (*)(...))(& _ZTI15QGraphicsWidget) +376 QGraphicsWidget::_ZThn16_N15QGraphicsWidgetD1Ev +384 QGraphicsWidget::_ZThn16_N15QGraphicsWidgetD0Ev +392 QGraphicsItem::advance +400 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget12boundingRectEv +408 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget5shapeEv +416 QGraphicsItem::contains +424 QGraphicsItem::collidesWithItem +432 QGraphicsItem::collidesWithPath +440 QGraphicsItem::isObscuredBy +448 QGraphicsItem::opaqueArea +456 QGraphicsWidget::_ZThn16_N15QGraphicsWidget5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget +464 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget4typeEv +472 QGraphicsItem::sceneEventFilter +480 QGraphicsWidget::_ZThn16_N15QGraphicsWidget10sceneEventEP6QEvent +488 QGraphicsItem::contextMenuEvent +496 QGraphicsItem::dragEnterEvent +504 QGraphicsItem::dragLeaveEvent +512 QGraphicsItem::dragMoveEvent +520 QGraphicsItem::dropEvent +528 QGraphicsWidget::_ZThn16_N15QGraphicsWidget12focusInEventEP11QFocusEvent +536 QGraphicsWidget::_ZThn16_N15QGraphicsWidget13focusOutEventEP11QFocusEvent +544 QGraphicsItem::hoverEnterEvent +552 QGraphicsWidget::_ZThn16_N15QGraphicsWidget14hoverMoveEventEP24QGraphicsSceneHoverEvent +560 QGraphicsWidget::_ZThn16_N15QGraphicsWidget15hoverLeaveEventEP24QGraphicsSceneHoverEvent +568 QGraphicsItem::keyPressEvent +576 QGraphicsItem::keyReleaseEvent +584 QGraphicsItem::mousePressEvent +592 QGraphicsItem::mouseMoveEvent +600 QGraphicsItem::mouseReleaseEvent +608 QGraphicsItem::mouseDoubleClickEvent +616 QGraphicsItem::wheelEvent +624 QGraphicsItem::inputMethodEvent +632 QGraphicsItem::inputMethodQuery +640 QGraphicsWidget::_ZThn16_N15QGraphicsWidget10itemChangeEN13QGraphicsItem18GraphicsItemChangeERK8QVariant +648 QGraphicsItem::supportsExtension +656 QGraphicsItem::setExtension +664 QGraphicsItem::extension +672 (int (*)(...))-0x00000000000000020 +680 (int (*)(...))(& _ZTI15QGraphicsWidget) +688 QGraphicsWidget::_ZThn32_N15QGraphicsWidgetD1Ev +696 QGraphicsWidget::_ZThn32_N15QGraphicsWidgetD0Ev +704 QGraphicsWidget::_ZThn32_N15QGraphicsWidget11setGeometryERK6QRectF +712 QGraphicsWidget::_ZThn32_NK15QGraphicsWidget18getContentsMarginsEPdS0_S0_S0_ +720 QGraphicsWidget::_ZThn32_N15QGraphicsWidget14updateGeometryEv +728 QGraphicsWidget::_ZThn32_NK15QGraphicsWidget8sizeHintEN2Qt8SizeHintERK6QSizeF + +Class QGraphicsWidget + size=48 align=8 + base size=48 base align=8 +QGraphicsWidget (0x7ffd1252cd00) 0 + vptr=((& QGraphicsWidget::_ZTV15QGraphicsWidget) + 16u) + QObject (0x7ffd12539930) 0 + primary-for QGraphicsWidget (0x7ffd1252cd00) + QGraphicsItem (0x7ffd125399a0) 16 + vptr=((& QGraphicsWidget::_ZTV15QGraphicsWidget) + 376u) + QGraphicsLayoutItem (0x7ffd12539a10) 32 + vptr=((& QGraphicsWidget::_ZTV15QGraphicsWidget) + 688u) + +Vtable for QGraphicsProxyWidget +QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget: 105u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QGraphicsProxyWidget) +16 QGraphicsProxyWidget::metaObject +24 QGraphicsProxyWidget::qt_metacast +32 QGraphicsProxyWidget::qt_metacall +40 QGraphicsProxyWidget::~QGraphicsProxyWidget +48 QGraphicsProxyWidget::~QGraphicsProxyWidget +56 QGraphicsProxyWidget::event +64 QGraphicsProxyWidget::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsProxyWidget::setGeometry +120 QGraphicsWidget::getContentsMargins +128 QGraphicsProxyWidget::type +136 QGraphicsProxyWidget::paint +144 QGraphicsWidget::paintWindowFrame +152 QGraphicsWidget::boundingRect +160 QGraphicsWidget::shape +168 QGraphicsWidget::initStyleOption +176 QGraphicsProxyWidget::sizeHint +184 QGraphicsWidget::updateGeometry +192 QGraphicsProxyWidget::itemChange +200 QGraphicsWidget::propertyChange +208 QGraphicsWidget::sceneEvent +216 QGraphicsWidget::windowFrameEvent +224 QGraphicsWidget::windowFrameSectionAt +232 QGraphicsWidget::changeEvent +240 QGraphicsWidget::closeEvent +248 QGraphicsProxyWidget::focusInEvent +256 QGraphicsProxyWidget::focusNextPrevChild +264 QGraphicsProxyWidget::focusOutEvent +272 QGraphicsProxyWidget::hideEvent +280 QGraphicsWidget::moveEvent +288 QGraphicsWidget::polishEvent +296 QGraphicsProxyWidget::resizeEvent +304 QGraphicsProxyWidget::showEvent +312 QGraphicsProxyWidget::hoverMoveEvent +320 QGraphicsProxyWidget::hoverLeaveEvent +328 QGraphicsProxyWidget::grabMouseEvent +336 QGraphicsProxyWidget::ungrabMouseEvent +344 QGraphicsWidget::grabKeyboardEvent +352 QGraphicsWidget::ungrabKeyboardEvent +360 QGraphicsProxyWidget::contextMenuEvent +368 QGraphicsProxyWidget::dragEnterEvent +376 QGraphicsProxyWidget::dragLeaveEvent +384 QGraphicsProxyWidget::dragMoveEvent +392 QGraphicsProxyWidget::dropEvent +400 QGraphicsProxyWidget::hoverEnterEvent +408 QGraphicsProxyWidget::mouseMoveEvent +416 QGraphicsProxyWidget::mousePressEvent +424 QGraphicsProxyWidget::mouseReleaseEvent +432 QGraphicsProxyWidget::mouseDoubleClickEvent +440 QGraphicsProxyWidget::wheelEvent +448 QGraphicsProxyWidget::keyPressEvent +456 QGraphicsProxyWidget::keyReleaseEvent +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI20QGraphicsProxyWidget) +480 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidgetD1Ev +488 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidgetD0Ev +496 QGraphicsItem::advance +504 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget12boundingRectEv +512 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget5shapeEv +520 QGraphicsItem::contains +528 QGraphicsItem::collidesWithItem +536 QGraphicsItem::collidesWithPath +544 QGraphicsItem::isObscuredBy +552 QGraphicsItem::opaqueArea +560 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget +568 QGraphicsProxyWidget::_ZThn16_NK20QGraphicsProxyWidget4typeEv +576 QGraphicsItem::sceneEventFilter +584 QGraphicsWidget::_ZThn16_N15QGraphicsWidget10sceneEventEP6QEvent +592 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget16contextMenuEventEP30QGraphicsSceneContextMenuEvent +600 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget14dragEnterEventEP27QGraphicsSceneDragDropEvent +608 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget14dragLeaveEventEP27QGraphicsSceneDragDropEvent +616 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget13dragMoveEventEP27QGraphicsSceneDragDropEvent +624 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget9dropEventEP27QGraphicsSceneDragDropEvent +632 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget12focusInEventEP11QFocusEvent +640 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget13focusOutEventEP11QFocusEvent +648 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget15hoverEnterEventEP24QGraphicsSceneHoverEvent +656 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget14hoverMoveEventEP24QGraphicsSceneHoverEvent +664 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget15hoverLeaveEventEP24QGraphicsSceneHoverEvent +672 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget13keyPressEventEP9QKeyEvent +680 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget15keyReleaseEventEP9QKeyEvent +688 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget15mousePressEventEP24QGraphicsSceneMouseEvent +696 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget14mouseMoveEventEP24QGraphicsSceneMouseEvent +704 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget17mouseReleaseEventEP24QGraphicsSceneMouseEvent +712 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget21mouseDoubleClickEventEP24QGraphicsSceneMouseEvent +720 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget10wheelEventEP24QGraphicsSceneWheelEvent +728 QGraphicsItem::inputMethodEvent +736 QGraphicsItem::inputMethodQuery +744 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget10itemChangeEN13QGraphicsItem18GraphicsItemChangeERK8QVariant +752 QGraphicsItem::supportsExtension +760 QGraphicsItem::setExtension +768 QGraphicsItem::extension +776 (int (*)(...))-0x00000000000000020 +784 (int (*)(...))(& _ZTI20QGraphicsProxyWidget) +792 QGraphicsProxyWidget::_ZThn32_N20QGraphicsProxyWidgetD1Ev +800 QGraphicsProxyWidget::_ZThn32_N20QGraphicsProxyWidgetD0Ev +808 QGraphicsProxyWidget::_ZThn32_N20QGraphicsProxyWidget11setGeometryERK6QRectF +816 QGraphicsWidget::_ZThn32_NK15QGraphicsWidget18getContentsMarginsEPdS0_S0_S0_ +824 QGraphicsWidget::_ZThn32_N15QGraphicsWidget14updateGeometryEv +832 QGraphicsProxyWidget::_ZThn32_NK20QGraphicsProxyWidget8sizeHintEN2Qt8SizeHintERK6QSizeF + +Class QGraphicsProxyWidget + size=48 align=8 + base size=48 base align=8 +QGraphicsProxyWidget (0x7ffd125801c0) 0 + vptr=((& QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget) + 16u) + QGraphicsWidget (0x7ffd12570b80) 0 + primary-for QGraphicsProxyWidget (0x7ffd125801c0) + QObject (0x7ffd12580230) 0 + primary-for QGraphicsWidget (0x7ffd12570b80) + QGraphicsItem (0x7ffd125802a0) 16 + vptr=((& QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget) + 480u) + QGraphicsLayoutItem (0x7ffd12580310) 32 + vptr=((& QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget) + 792u) + +Vtable for QGraphicsSceneEvent +QGraphicsSceneEvent::_ZTV19QGraphicsSceneEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QGraphicsSceneEvent) +16 QGraphicsSceneEvent::~QGraphicsSceneEvent +24 QGraphicsSceneEvent::~QGraphicsSceneEvent + +Class QGraphicsSceneEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneEvent (0x7ffd123aa230) 0 + vptr=((& QGraphicsSceneEvent::_ZTV19QGraphicsSceneEvent) + 16u) + QEvent (0x7ffd123aa2a0) 0 + primary-for QGraphicsSceneEvent (0x7ffd123aa230) + +Vtable for QGraphicsSceneMouseEvent +QGraphicsSceneMouseEvent::_ZTV24QGraphicsSceneMouseEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QGraphicsSceneMouseEvent) +16 QGraphicsSceneMouseEvent::~QGraphicsSceneMouseEvent +24 QGraphicsSceneMouseEvent::~QGraphicsSceneMouseEvent + +Class QGraphicsSceneMouseEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneMouseEvent (0x7ffd123aab60) 0 + vptr=((& QGraphicsSceneMouseEvent::_ZTV24QGraphicsSceneMouseEvent) + 16u) + QGraphicsSceneEvent (0x7ffd123aabd0) 0 + primary-for QGraphicsSceneMouseEvent (0x7ffd123aab60) + QEvent (0x7ffd123aac40) 0 + primary-for QGraphicsSceneEvent (0x7ffd123aabd0) + +Vtable for QGraphicsSceneWheelEvent +QGraphicsSceneWheelEvent::_ZTV24QGraphicsSceneWheelEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QGraphicsSceneWheelEvent) +16 QGraphicsSceneWheelEvent::~QGraphicsSceneWheelEvent +24 QGraphicsSceneWheelEvent::~QGraphicsSceneWheelEvent + +Class QGraphicsSceneWheelEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneWheelEvent (0x7ffd123bc460) 0 + vptr=((& QGraphicsSceneWheelEvent::_ZTV24QGraphicsSceneWheelEvent) + 16u) + QGraphicsSceneEvent (0x7ffd123bc4d0) 0 + primary-for QGraphicsSceneWheelEvent (0x7ffd123bc460) + QEvent (0x7ffd123bc540) 0 + primary-for QGraphicsSceneEvent (0x7ffd123bc4d0) + +Vtable for QGraphicsSceneContextMenuEvent +QGraphicsSceneContextMenuEvent::_ZTV30QGraphicsSceneContextMenuEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI30QGraphicsSceneContextMenuEvent) +16 QGraphicsSceneContextMenuEvent::~QGraphicsSceneContextMenuEvent +24 QGraphicsSceneContextMenuEvent::~QGraphicsSceneContextMenuEvent + +Class QGraphicsSceneContextMenuEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneContextMenuEvent (0x7ffd123bce00) 0 + vptr=((& QGraphicsSceneContextMenuEvent::_ZTV30QGraphicsSceneContextMenuEvent) + 16u) + QGraphicsSceneEvent (0x7ffd123bce70) 0 + primary-for QGraphicsSceneContextMenuEvent (0x7ffd123bce00) + QEvent (0x7ffd123bcee0) 0 + primary-for QGraphicsSceneEvent (0x7ffd123bce70) + +Vtable for QGraphicsSceneHoverEvent +QGraphicsSceneHoverEvent::_ZTV24QGraphicsSceneHoverEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QGraphicsSceneHoverEvent) +16 QGraphicsSceneHoverEvent::~QGraphicsSceneHoverEvent +24 QGraphicsSceneHoverEvent::~QGraphicsSceneHoverEvent + +Class QGraphicsSceneHoverEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneHoverEvent (0x7ffd123c9930) 0 + vptr=((& QGraphicsSceneHoverEvent::_ZTV24QGraphicsSceneHoverEvent) + 16u) + QGraphicsSceneEvent (0x7ffd123c99a0) 0 + primary-for QGraphicsSceneHoverEvent (0x7ffd123c9930) + QEvent (0x7ffd123c9a10) 0 + primary-for QGraphicsSceneEvent (0x7ffd123c99a0) + +Vtable for QGraphicsSceneHelpEvent +QGraphicsSceneHelpEvent::_ZTV23QGraphicsSceneHelpEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QGraphicsSceneHelpEvent) +16 QGraphicsSceneHelpEvent::~QGraphicsSceneHelpEvent +24 QGraphicsSceneHelpEvent::~QGraphicsSceneHelpEvent + +Class QGraphicsSceneHelpEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneHelpEvent (0x7ffd123dc230) 0 + vptr=((& QGraphicsSceneHelpEvent::_ZTV23QGraphicsSceneHelpEvent) + 16u) + QGraphicsSceneEvent (0x7ffd123dc2a0) 0 + primary-for QGraphicsSceneHelpEvent (0x7ffd123dc230) + QEvent (0x7ffd123dc310) 0 + primary-for QGraphicsSceneEvent (0x7ffd123dc2a0) + +Vtable for QGraphicsSceneDragDropEvent +QGraphicsSceneDragDropEvent::_ZTV27QGraphicsSceneDragDropEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QGraphicsSceneDragDropEvent) +16 QGraphicsSceneDragDropEvent::~QGraphicsSceneDragDropEvent +24 QGraphicsSceneDragDropEvent::~QGraphicsSceneDragDropEvent + +Class QGraphicsSceneDragDropEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneDragDropEvent (0x7ffd123dcbd0) 0 + vptr=((& QGraphicsSceneDragDropEvent::_ZTV27QGraphicsSceneDragDropEvent) + 16u) + QGraphicsSceneEvent (0x7ffd123dcc40) 0 + primary-for QGraphicsSceneDragDropEvent (0x7ffd123dcbd0) + QEvent (0x7ffd123dccb0) 0 + primary-for QGraphicsSceneEvent (0x7ffd123dcc40) + +Vtable for QGraphicsSceneResizeEvent +QGraphicsSceneResizeEvent::_ZTV25QGraphicsSceneResizeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QGraphicsSceneResizeEvent) +16 QGraphicsSceneResizeEvent::~QGraphicsSceneResizeEvent +24 QGraphicsSceneResizeEvent::~QGraphicsSceneResizeEvent + +Class QGraphicsSceneResizeEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneResizeEvent (0x7ffd123ec4d0) 0 + vptr=((& QGraphicsSceneResizeEvent::_ZTV25QGraphicsSceneResizeEvent) + 16u) + QGraphicsSceneEvent (0x7ffd123ec540) 0 + primary-for QGraphicsSceneResizeEvent (0x7ffd123ec4d0) + QEvent (0x7ffd123ec5b0) 0 + primary-for QGraphicsSceneEvent (0x7ffd123ec540) + +Vtable for QGraphicsSceneMoveEvent +QGraphicsSceneMoveEvent::_ZTV23QGraphicsSceneMoveEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QGraphicsSceneMoveEvent) +16 QGraphicsSceneMoveEvent::~QGraphicsSceneMoveEvent +24 QGraphicsSceneMoveEvent::~QGraphicsSceneMoveEvent + +Class QGraphicsSceneMoveEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneMoveEvent (0x7ffd123eccb0) 0 + vptr=((& QGraphicsSceneMoveEvent::_ZTV23QGraphicsSceneMoveEvent) + 16u) + QGraphicsSceneEvent (0x7ffd123ecd20) 0 + primary-for QGraphicsSceneMoveEvent (0x7ffd123eccb0) + QEvent (0x7ffd123ecd90) 0 + primary-for QGraphicsSceneEvent (0x7ffd123ecd20) + +Vtable for QGraphicsItemAnimation +QGraphicsItemAnimation::_ZTV22QGraphicsItemAnimation: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QGraphicsItemAnimation) +16 QGraphicsItemAnimation::metaObject +24 QGraphicsItemAnimation::qt_metacast +32 QGraphicsItemAnimation::qt_metacall +40 QGraphicsItemAnimation::~QGraphicsItemAnimation +48 QGraphicsItemAnimation::~QGraphicsItemAnimation +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsItemAnimation::beforeAnimationStep +120 QGraphicsItemAnimation::afterAnimationStep + +Class QGraphicsItemAnimation + size=24 align=8 + base size=24 base align=8 +QGraphicsItemAnimation (0x7ffd123fb3f0) 0 + vptr=((& QGraphicsItemAnimation::_ZTV22QGraphicsItemAnimation) + 16u) + QObject (0x7ffd123fb460) 0 + primary-for QGraphicsItemAnimation (0x7ffd123fb3f0) + +Vtable for QGraphicsGridLayout +QGraphicsGridLayout::_ZTV19QGraphicsGridLayout: 13u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QGraphicsGridLayout) +16 QGraphicsGridLayout::~QGraphicsGridLayout +24 QGraphicsGridLayout::~QGraphicsGridLayout +32 QGraphicsGridLayout::setGeometry +40 QGraphicsLayout::getContentsMargins +48 QGraphicsLayout::updateGeometry +56 QGraphicsGridLayout::sizeHint +64 QGraphicsGridLayout::invalidate +72 QGraphicsLayout::widgetEvent +80 QGraphicsGridLayout::count +88 QGraphicsGridLayout::itemAt +96 QGraphicsGridLayout::removeAt + +Class QGraphicsGridLayout + size=16 align=8 + base size=16 base align=8 +QGraphicsGridLayout (0x7ffd12415770) 0 + vptr=((& QGraphicsGridLayout::_ZTV19QGraphicsGridLayout) + 16u) + QGraphicsLayout (0x7ffd124157e0) 0 + primary-for QGraphicsGridLayout (0x7ffd12415770) + QGraphicsLayoutItem (0x7ffd12415850) 0 + primary-for QGraphicsLayout (0x7ffd124157e0) + +Vtable for QAbstractButton +QAbstractButton::_ZTV15QAbstractButton: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QAbstractButton) +16 QAbstractButton::metaObject +24 QAbstractButton::qt_metacast +32 QAbstractButton::qt_metacall +40 QAbstractButton::~QAbstractButton +48 QAbstractButton::~QAbstractButton +56 QAbstractButton::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QAbstractButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QAbstractButton::focusInEvent +224 QAbstractButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 __cxa_pure_virtual +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractButton::hitButton +456 QAbstractButton::checkStateSet +464 QAbstractButton::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI15QAbstractButton) +488 QAbstractButton::_ZThn16_N15QAbstractButtonD1Ev +496 QAbstractButton::_ZThn16_N15QAbstractButtonD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractButton + size=40 align=8 + base size=40 base align=8 +QAbstractButton (0x7ffd12430bd0) 0 + vptr=((& QAbstractButton::_ZTV15QAbstractButton) + 16u) + QWidget (0x7ffd12412800) 0 + primary-for QAbstractButton (0x7ffd12430bd0) + QObject (0x7ffd12430c40) 0 + primary-for QWidget (0x7ffd12412800) + QPaintDevice (0x7ffd12430cb0) 16 + vptr=((& QAbstractButton::_ZTV15QAbstractButton) + 488u) + +Vtable for QCheckBox +QCheckBox::_ZTV9QCheckBox: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QCheckBox) +16 QCheckBox::metaObject +24 QCheckBox::qt_metacast +32 QCheckBox::qt_metacall +40 QCheckBox::~QCheckBox +48 QCheckBox::~QCheckBox +56 QCheckBox::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QCheckBox::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QCheckBox::mouseMoveEvent +192 QWidget::wheelEvent +200 QAbstractButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QAbstractButton::focusInEvent +224 QAbstractButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QCheckBox::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QCheckBox::hitButton +456 QCheckBox::checkStateSet +464 QCheckBox::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI9QCheckBox) +488 QCheckBox::_ZThn16_N9QCheckBoxD1Ev +496 QCheckBox::_ZThn16_N9QCheckBoxD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QCheckBox + size=40 align=8 + base size=40 base align=8 +QCheckBox (0x7ffd12464f50) 0 + vptr=((& QCheckBox::_ZTV9QCheckBox) + 16u) + QAbstractButton (0x7ffd1246b000) 0 + primary-for QCheckBox (0x7ffd12464f50) + QWidget (0x7ffd1246c000) 0 + primary-for QAbstractButton (0x7ffd1246b000) + QObject (0x7ffd1246b070) 0 + primary-for QWidget (0x7ffd1246c000) + QPaintDevice (0x7ffd1246b0e0) 16 + vptr=((& QCheckBox::_ZTV9QCheckBox) + 488u) + +Vtable for QMenu +QMenu::_ZTV5QMenu: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QMenu) +16 QMenu::metaObject +24 QMenu::qt_metacast +32 QMenu::qt_metacall +40 QMenu::~QMenu +48 QMenu::~QMenu +56 QMenu::event +64 QObject::eventFilter +72 QMenu::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QMenu::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QMenu::mousePressEvent +168 QMenu::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QMenu::mouseMoveEvent +192 QMenu::wheelEvent +200 QMenu::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QMenu::enterEvent +240 QMenu::leaveEvent +248 QMenu::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QMenu::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QMenu::hideEvent +352 QWidget::x11Event +360 QMenu::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QMenu::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI5QMenu) +464 QMenu::_ZThn16_N5QMenuD1Ev +472 QMenu::_ZThn16_N5QMenuD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMenu + size=40 align=8 + base size=40 base align=8 +QMenu (0x7ffd1228b770) 0 + vptr=((& QMenu::_ZTV5QMenu) + 16u) + QWidget (0x7ffd1246cf00) 0 + primary-for QMenu (0x7ffd1228b770) + QObject (0x7ffd1228b7e0) 0 + primary-for QWidget (0x7ffd1246cf00) + QPaintDevice (0x7ffd1228b850) 16 + vptr=((& QMenu::_ZTV5QMenu) + 464u) + +Vtable for QPrintPreviewWidget +QPrintPreviewWidget::_ZTV19QPrintPreviewWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QPrintPreviewWidget) +16 QPrintPreviewWidget::metaObject +24 QPrintPreviewWidget::qt_metacast +32 QPrintPreviewWidget::qt_metacall +40 QPrintPreviewWidget::~QPrintPreviewWidget +48 QPrintPreviewWidget::~QPrintPreviewWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QPrintPreviewWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI19QPrintPreviewWidget) +464 QPrintPreviewWidget::_ZThn16_N19QPrintPreviewWidgetD1Ev +472 QPrintPreviewWidget::_ZThn16_N19QPrintPreviewWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPrintPreviewWidget + size=48 align=8 + base size=48 base align=8 +QPrintPreviewWidget (0x7ffd123335b0) 0 + vptr=((& QPrintPreviewWidget::_ZTV19QPrintPreviewWidget) + 16u) + QWidget (0x7ffd12331680) 0 + primary-for QPrintPreviewWidget (0x7ffd123335b0) + QObject (0x7ffd12333620) 0 + primary-for QWidget (0x7ffd12331680) + QPaintDevice (0x7ffd12333690) 16 + vptr=((& QPrintPreviewWidget::_ZTV19QPrintPreviewWidget) + 464u) + +Vtable for QWorkspace +QWorkspace::_ZTV10QWorkspace: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QWorkspace) +16 QWorkspace::metaObject +24 QWorkspace::qt_metacast +32 QWorkspace::qt_metacall +40 QWorkspace::~QWorkspace +48 QWorkspace::~QWorkspace +56 QWorkspace::event +64 QWorkspace::eventFilter +72 QObject::timerEvent +80 QWorkspace::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWorkspace::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWorkspace::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWorkspace::paintEvent +256 QWidget::moveEvent +264 QWorkspace::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWorkspace::showEvent +344 QWorkspace::hideEvent +352 QWidget::x11Event +360 QWorkspace::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI10QWorkspace) +464 QWorkspace::_ZThn16_N10QWorkspaceD1Ev +472 QWorkspace::_ZThn16_N10QWorkspaceD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWorkspace + size=40 align=8 + base size=40 base align=8 +QWorkspace (0x7ffd12357070) 0 + vptr=((& QWorkspace::_ZTV10QWorkspace) + 16u) + QWidget (0x7ffd12354280) 0 + primary-for QWorkspace (0x7ffd12357070) + QObject (0x7ffd123570e0) 0 + primary-for QWidget (0x7ffd12354280) + QPaintDevice (0x7ffd12357150) 16 + vptr=((& QWorkspace::_ZTV10QWorkspace) + 464u) + +Vtable for QButtonGroup +QButtonGroup::_ZTV12QButtonGroup: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QButtonGroup) +16 QButtonGroup::metaObject +24 QButtonGroup::qt_metacast +32 QButtonGroup::qt_metacall +40 QButtonGroup::~QButtonGroup +48 QButtonGroup::~QButtonGroup +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QButtonGroup + size=16 align=8 + base size=16 base align=8 +QButtonGroup (0x7ffd1237a150) 0 + vptr=((& QButtonGroup::_ZTV12QButtonGroup) + 16u) + QObject (0x7ffd1237a1c0) 0 + primary-for QButtonGroup (0x7ffd1237a150) + +Vtable for QSpinBox +QSpinBox::_ZTV8QSpinBox: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QSpinBox) +16 QSpinBox::metaObject +24 QSpinBox::qt_metacast +32 QSpinBox::qt_metacall +40 QSpinBox::~QSpinBox +48 QSpinBox::~QSpinBox +56 QSpinBox::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractSpinBox::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractSpinBox::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QAbstractSpinBox::wheelEvent +200 QAbstractSpinBox::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QAbstractSpinBox::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractSpinBox::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QSpinBox::validate +456 QSpinBox::fixup +464 QAbstractSpinBox::stepBy +472 QAbstractSpinBox::clear +480 QAbstractSpinBox::stepEnabled +488 QSpinBox::valueFromText +496 QSpinBox::textFromValue +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI8QSpinBox) +520 QSpinBox::_ZThn16_N8QSpinBoxD1Ev +528 QSpinBox::_ZThn16_N8QSpinBoxD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSpinBox + size=40 align=8 + base size=40 base align=8 +QSpinBox (0x7ffd1218fd90) 0 + vptr=((& QSpinBox::_ZTV8QSpinBox) + 16u) + QAbstractSpinBox (0x7ffd1218fe00) 0 + primary-for QSpinBox (0x7ffd1218fd90) + QWidget (0x7ffd1218c800) 0 + primary-for QAbstractSpinBox (0x7ffd1218fe00) + QObject (0x7ffd1218fe70) 0 + primary-for QWidget (0x7ffd1218c800) + QPaintDevice (0x7ffd1218fee0) 16 + vptr=((& QSpinBox::_ZTV8QSpinBox) + 520u) + +Vtable for QDoubleSpinBox +QDoubleSpinBox::_ZTV14QDoubleSpinBox: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QDoubleSpinBox) +16 QDoubleSpinBox::metaObject +24 QDoubleSpinBox::qt_metacast +32 QDoubleSpinBox::qt_metacall +40 QDoubleSpinBox::~QDoubleSpinBox +48 QDoubleSpinBox::~QDoubleSpinBox +56 QAbstractSpinBox::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractSpinBox::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractSpinBox::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QAbstractSpinBox::wheelEvent +200 QAbstractSpinBox::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QAbstractSpinBox::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractSpinBox::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDoubleSpinBox::validate +456 QDoubleSpinBox::fixup +464 QAbstractSpinBox::stepBy +472 QAbstractSpinBox::clear +480 QAbstractSpinBox::stepEnabled +488 QDoubleSpinBox::valueFromText +496 QDoubleSpinBox::textFromValue +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI14QDoubleSpinBox) +520 QDoubleSpinBox::_ZThn16_N14QDoubleSpinBoxD1Ev +528 QDoubleSpinBox::_ZThn16_N14QDoubleSpinBoxD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDoubleSpinBox + size=40 align=8 + base size=40 base align=8 +QDoubleSpinBox (0x7ffd121b7700) 0 + vptr=((& QDoubleSpinBox::_ZTV14QDoubleSpinBox) + 16u) + QAbstractSpinBox (0x7ffd121b7770) 0 + primary-for QDoubleSpinBox (0x7ffd121b7700) + QWidget (0x7ffd121b5880) 0 + primary-for QAbstractSpinBox (0x7ffd121b7770) + QObject (0x7ffd121b77e0) 0 + primary-for QWidget (0x7ffd121b5880) + QPaintDevice (0x7ffd121b7850) 16 + vptr=((& QDoubleSpinBox::_ZTV14QDoubleSpinBox) + 520u) + +Vtable for QLCDNumber +QLCDNumber::_ZTV10QLCDNumber: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QLCDNumber) +16 QLCDNumber::metaObject +24 QLCDNumber::qt_metacast +32 QLCDNumber::qt_metacall +40 QLCDNumber::~QLCDNumber +48 QLCDNumber::~QLCDNumber +56 QLCDNumber::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QLCDNumber::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QLCDNumber::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI10QLCDNumber) +464 QLCDNumber::_ZThn16_N10QLCDNumberD1Ev +472 QLCDNumber::_ZThn16_N10QLCDNumberD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QLCDNumber + size=40 align=8 + base size=40 base align=8 +QLCDNumber (0x7ffd121d91c0) 0 + vptr=((& QLCDNumber::_ZTV10QLCDNumber) + 16u) + QFrame (0x7ffd121d9230) 0 + primary-for QLCDNumber (0x7ffd121d91c0) + QWidget (0x7ffd121d8180) 0 + primary-for QFrame (0x7ffd121d9230) + QObject (0x7ffd121d92a0) 0 + primary-for QWidget (0x7ffd121d8180) + QPaintDevice (0x7ffd121d9310) 16 + vptr=((& QLCDNumber::_ZTV10QLCDNumber) + 464u) + +Vtable for QStackedWidget +QStackedWidget::_ZTV14QStackedWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QStackedWidget) +16 QStackedWidget::metaObject +24 QStackedWidget::qt_metacast +32 QStackedWidget::qt_metacall +40 QStackedWidget::~QStackedWidget +48 QStackedWidget::~QStackedWidget +56 QStackedWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QFrame::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFrame::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI14QStackedWidget) +464 QStackedWidget::_ZThn16_N14QStackedWidgetD1Ev +472 QStackedWidget::_ZThn16_N14QStackedWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QStackedWidget + size=40 align=8 + base size=40 base align=8 +QStackedWidget (0x7ffd121fcd20) 0 + vptr=((& QStackedWidget::_ZTV14QStackedWidget) + 16u) + QFrame (0x7ffd121fcd90) 0 + primary-for QStackedWidget (0x7ffd121fcd20) + QWidget (0x7ffd12200200) 0 + primary-for QFrame (0x7ffd121fcd90) + QObject (0x7ffd121fce00) 0 + primary-for QWidget (0x7ffd12200200) + QPaintDevice (0x7ffd121fce70) 16 + vptr=((& QStackedWidget::_ZTV14QStackedWidget) + 464u) + +Vtable for QMdiArea +QMdiArea::_ZTV8QMdiArea: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QMdiArea) +16 QMdiArea::metaObject +24 QMdiArea::qt_metacast +32 QMdiArea::qt_metacall +40 QMdiArea::~QMdiArea +48 QMdiArea::~QMdiArea +56 QMdiArea::event +64 QMdiArea::eventFilter +72 QMdiArea::timerEvent +80 QMdiArea::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QMdiArea::sizeHint +136 QMdiArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractScrollArea::mousePressEvent +168 QAbstractScrollArea::mouseReleaseEvent +176 QAbstractScrollArea::mouseDoubleClickEvent +184 QAbstractScrollArea::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractScrollArea::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QMdiArea::paintEvent +256 QWidget::moveEvent +264 QMdiArea::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractScrollArea::dragEnterEvent +312 QAbstractScrollArea::dragMoveEvent +320 QAbstractScrollArea::dragLeaveEvent +328 QAbstractScrollArea::dropEvent +336 QMdiArea::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QMdiArea::viewportEvent +456 QMdiArea::scrollContentsBy +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI8QMdiArea) +480 QMdiArea::_ZThn16_N8QMdiAreaD1Ev +488 QMdiArea::_ZThn16_N8QMdiAreaD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMdiArea + size=40 align=8 + base size=40 base align=8 +QMdiArea (0x7ffd12217bd0) 0 + vptr=((& QMdiArea::_ZTV8QMdiArea) + 16u) + QAbstractScrollArea (0x7ffd12217c40) 0 + primary-for QMdiArea (0x7ffd12217bd0) + QFrame (0x7ffd12217cb0) 0 + primary-for QAbstractScrollArea (0x7ffd12217c40) + QWidget (0x7ffd12200b00) 0 + primary-for QFrame (0x7ffd12217cb0) + QObject (0x7ffd12217d20) 0 + primary-for QWidget (0x7ffd12200b00) + QPaintDevice (0x7ffd12217d90) 16 + vptr=((& QMdiArea::_ZTV8QMdiArea) + 480u) + +Vtable for QPushButton +QPushButton::_ZTV11QPushButton: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QPushButton) +16 QPushButton::metaObject +24 QPushButton::qt_metacast +32 QPushButton::qt_metacall +40 QPushButton::~QPushButton +48 QPushButton::~QPushButton +56 QPushButton::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QPushButton::sizeHint +136 QPushButton::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QPushButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QPushButton::focusInEvent +224 QPushButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QPushButton::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractButton::hitButton +456 QAbstractButton::checkStateSet +464 QAbstractButton::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11QPushButton) +488 QPushButton::_ZThn16_N11QPushButtonD1Ev +496 QPushButton::_ZThn16_N11QPushButtonD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPushButton + size=40 align=8 + base size=40 base align=8 +QPushButton (0x7ffd1208b150) 0 + vptr=((& QPushButton::_ZTV11QPushButton) + 16u) + QAbstractButton (0x7ffd1208b1c0) 0 + primary-for QPushButton (0x7ffd1208b150) + QWidget (0x7ffd1223cd00) 0 + primary-for QAbstractButton (0x7ffd1208b1c0) + QObject (0x7ffd1208b230) 0 + primary-for QWidget (0x7ffd1223cd00) + QPaintDevice (0x7ffd1208b2a0) 16 + vptr=((& QPushButton::_ZTV11QPushButton) + 488u) + +Vtable for QMdiSubWindow +QMdiSubWindow::_ZTV13QMdiSubWindow: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QMdiSubWindow) +16 QMdiSubWindow::metaObject +24 QMdiSubWindow::qt_metacast +32 QMdiSubWindow::qt_metacall +40 QMdiSubWindow::~QMdiSubWindow +48 QMdiSubWindow::~QMdiSubWindow +56 QMdiSubWindow::event +64 QMdiSubWindow::eventFilter +72 QMdiSubWindow::timerEvent +80 QMdiSubWindow::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QMdiSubWindow::sizeHint +136 QMdiSubWindow::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QMdiSubWindow::mousePressEvent +168 QMdiSubWindow::mouseReleaseEvent +176 QMdiSubWindow::mouseDoubleClickEvent +184 QMdiSubWindow::mouseMoveEvent +192 QWidget::wheelEvent +200 QMdiSubWindow::keyPressEvent +208 QWidget::keyReleaseEvent +216 QMdiSubWindow::focusInEvent +224 QMdiSubWindow::focusOutEvent +232 QWidget::enterEvent +240 QMdiSubWindow::leaveEvent +248 QMdiSubWindow::paintEvent +256 QMdiSubWindow::moveEvent +264 QMdiSubWindow::resizeEvent +272 QMdiSubWindow::closeEvent +280 QMdiSubWindow::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QMdiSubWindow::showEvent +344 QMdiSubWindow::hideEvent +352 QWidget::x11Event +360 QMdiSubWindow::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI13QMdiSubWindow) +464 QMdiSubWindow::_ZThn16_N13QMdiSubWindowD1Ev +472 QMdiSubWindow::_ZThn16_N13QMdiSubWindowD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMdiSubWindow + size=40 align=8 + base size=40 base align=8 +QMdiSubWindow (0x7ffd120afa80) 0 + vptr=((& QMdiSubWindow::_ZTV13QMdiSubWindow) + 16u) + QWidget (0x7ffd120a6c00) 0 + primary-for QMdiSubWindow (0x7ffd120afa80) + QObject (0x7ffd120afaf0) 0 + primary-for QWidget (0x7ffd120a6c00) + QPaintDevice (0x7ffd120afb60) 16 + vptr=((& QMdiSubWindow::_ZTV13QMdiSubWindow) + 464u) + +Vtable for QSplashScreen +QSplashScreen::_ZTV13QSplashScreen: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSplashScreen) +16 QSplashScreen::metaObject +24 QSplashScreen::qt_metacast +32 QSplashScreen::qt_metacall +40 QSplashScreen::~QSplashScreen +48 QSplashScreen::~QSplashScreen +56 QSplashScreen::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QSplashScreen::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QSplashScreen::drawContents +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI13QSplashScreen) +472 QSplashScreen::_ZThn16_N13QSplashScreenD1Ev +480 QSplashScreen::_ZThn16_N13QSplashScreenD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSplashScreen + size=40 align=8 + base size=40 base align=8 +QSplashScreen (0x7ffd12103930) 0 + vptr=((& QSplashScreen::_ZTV13QSplashScreen) + 16u) + QWidget (0x7ffd120d0d00) 0 + primary-for QSplashScreen (0x7ffd12103930) + QObject (0x7ffd121039a0) 0 + primary-for QWidget (0x7ffd120d0d00) + QPaintDevice (0x7ffd12103a10) 16 + vptr=((& QSplashScreen::_ZTV13QSplashScreen) + 472u) + +Vtable for QDateTimeEdit +QDateTimeEdit::_ZTV13QDateTimeEdit: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QDateTimeEdit) +16 QDateTimeEdit::metaObject +24 QDateTimeEdit::qt_metacast +32 QDateTimeEdit::qt_metacall +40 QDateTimeEdit::~QDateTimeEdit +48 QDateTimeEdit::~QDateTimeEdit +56 QDateTimeEdit::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QDateTimeEdit::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QDateTimeEdit::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QDateTimeEdit::wheelEvent +200 QDateTimeEdit::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QDateTimeEdit::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QDateTimeEdit::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QDateTimeEdit::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDateTimeEdit::validate +456 QDateTimeEdit::fixup +464 QDateTimeEdit::stepBy +472 QDateTimeEdit::clear +480 QDateTimeEdit::stepEnabled +488 QDateTimeEdit::dateTimeFromText +496 QDateTimeEdit::textFromDateTime +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI13QDateTimeEdit) +520 QDateTimeEdit::_ZThn16_N13QDateTimeEditD1Ev +528 QDateTimeEdit::_ZThn16_N13QDateTimeEditD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDateTimeEdit + size=40 align=8 + base size=40 base align=8 +QDateTimeEdit (0x7ffd1213ea10) 0 + vptr=((& QDateTimeEdit::_ZTV13QDateTimeEdit) + 16u) + QAbstractSpinBox (0x7ffd1213ea80) 0 + primary-for QDateTimeEdit (0x7ffd1213ea10) + QWidget (0x7ffd12136880) 0 + primary-for QAbstractSpinBox (0x7ffd1213ea80) + QObject (0x7ffd1213eaf0) 0 + primary-for QWidget (0x7ffd12136880) + QPaintDevice (0x7ffd1213eb60) 16 + vptr=((& QDateTimeEdit::_ZTV13QDateTimeEdit) + 520u) + +Vtable for QTimeEdit +QTimeEdit::_ZTV9QTimeEdit: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTimeEdit) +16 QTimeEdit::metaObject +24 QTimeEdit::qt_metacast +32 QTimeEdit::qt_metacall +40 QTimeEdit::~QTimeEdit +48 QTimeEdit::~QTimeEdit +56 QDateTimeEdit::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QDateTimeEdit::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QDateTimeEdit::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QDateTimeEdit::wheelEvent +200 QDateTimeEdit::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QDateTimeEdit::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QDateTimeEdit::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QDateTimeEdit::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDateTimeEdit::validate +456 QDateTimeEdit::fixup +464 QDateTimeEdit::stepBy +472 QDateTimeEdit::clear +480 QDateTimeEdit::stepEnabled +488 QDateTimeEdit::dateTimeFromText +496 QDateTimeEdit::textFromDateTime +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI9QTimeEdit) +520 QTimeEdit::_ZThn16_N9QTimeEditD1Ev +528 QTimeEdit::_ZThn16_N9QTimeEditD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTimeEdit + size=40 align=8 + base size=40 base align=8 +QTimeEdit (0x7ffd1216d930) 0 + vptr=((& QTimeEdit::_ZTV9QTimeEdit) + 16u) + QDateTimeEdit (0x7ffd1216d9a0) 0 + primary-for QTimeEdit (0x7ffd1216d930) + QAbstractSpinBox (0x7ffd1216da10) 0 + primary-for QDateTimeEdit (0x7ffd1216d9a0) + QWidget (0x7ffd12165700) 0 + primary-for QAbstractSpinBox (0x7ffd1216da10) + QObject (0x7ffd1216da80) 0 + primary-for QWidget (0x7ffd12165700) + QPaintDevice (0x7ffd1216daf0) 16 + vptr=((& QTimeEdit::_ZTV9QTimeEdit) + 520u) + +Vtable for QDateEdit +QDateEdit::_ZTV9QDateEdit: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QDateEdit) +16 QDateEdit::metaObject +24 QDateEdit::qt_metacast +32 QDateEdit::qt_metacall +40 QDateEdit::~QDateEdit +48 QDateEdit::~QDateEdit +56 QDateTimeEdit::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QDateTimeEdit::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QDateTimeEdit::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QDateTimeEdit::wheelEvent +200 QDateTimeEdit::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QDateTimeEdit::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QDateTimeEdit::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QDateTimeEdit::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDateTimeEdit::validate +456 QDateTimeEdit::fixup +464 QDateTimeEdit::stepBy +472 QDateTimeEdit::clear +480 QDateTimeEdit::stepEnabled +488 QDateTimeEdit::dateTimeFromText +496 QDateTimeEdit::textFromDateTime +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI9QDateEdit) +520 QDateEdit::_ZThn16_N9QDateEditD1Ev +528 QDateEdit::_ZThn16_N9QDateEditD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDateEdit + size=40 align=8 + base size=40 base align=8 +QDateEdit (0x7ffd1217fa10) 0 + vptr=((& QDateEdit::_ZTV9QDateEdit) + 16u) + QDateTimeEdit (0x7ffd1217fa80) 0 + primary-for QDateEdit (0x7ffd1217fa10) + QAbstractSpinBox (0x7ffd1217faf0) 0 + primary-for QDateTimeEdit (0x7ffd1217fa80) + QWidget (0x7ffd12165e00) 0 + primary-for QAbstractSpinBox (0x7ffd1217faf0) + QObject (0x7ffd1217fb60) 0 + primary-for QWidget (0x7ffd12165e00) + QPaintDevice (0x7ffd1217fbd0) 16 + vptr=((& QDateEdit::_ZTV9QDateEdit) + 520u) + +Vtable for QLabel +QLabel::_ZTV6QLabel: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QLabel) +16 QLabel::metaObject +24 QLabel::qt_metacast +32 QLabel::qt_metacall +40 QLabel::~QLabel +48 QLabel::~QLabel +56 QLabel::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QLabel::sizeHint +136 QLabel::minimumSizeHint +144 QLabel::heightForWidth +152 QWidget::paintEngine +160 QLabel::mousePressEvent +168 QLabel::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QLabel::mouseMoveEvent +192 QWidget::wheelEvent +200 QLabel::keyPressEvent +208 QWidget::keyReleaseEvent +216 QLabel::focusInEvent +224 QLabel::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QLabel::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QLabel::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QLabel::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QLabel::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI6QLabel) +464 QLabel::_ZThn16_N6QLabelD1Ev +472 QLabel::_ZThn16_N6QLabelD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QLabel + size=40 align=8 + base size=40 base align=8 +QLabel (0x7ffd11fc67e0) 0 + vptr=((& QLabel::_ZTV6QLabel) + 16u) + QFrame (0x7ffd11fc6850) 0 + primary-for QLabel (0x7ffd11fc67e0) + QWidget (0x7ffd11f95a80) 0 + primary-for QFrame (0x7ffd11fc6850) + QObject (0x7ffd11fc68c0) 0 + primary-for QWidget (0x7ffd11f95a80) + QPaintDevice (0x7ffd11fc6930) 16 + vptr=((& QLabel::_ZTV6QLabel) + 464u) + +Vtable for QDockWidget +QDockWidget::_ZTV11QDockWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QDockWidget) +16 QDockWidget::metaObject +24 QDockWidget::qt_metacast +32 QDockWidget::qt_metacall +40 QDockWidget::~QDockWidget +48 QDockWidget::~QDockWidget +56 QDockWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QDockWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QDockWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QDockWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI11QDockWidget) +464 QDockWidget::_ZThn16_N11QDockWidgetD1Ev +472 QDockWidget::_ZThn16_N11QDockWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDockWidget + size=40 align=8 + base size=40 base align=8 +QDockWidget (0x7ffd1200f930) 0 + vptr=((& QDockWidget::_ZTV11QDockWidget) + 16u) + QWidget (0x7ffd1200b580) 0 + primary-for QDockWidget (0x7ffd1200f930) + QObject (0x7ffd1200f9a0) 0 + primary-for QWidget (0x7ffd1200b580) + QPaintDevice (0x7ffd1200fa10) 16 + vptr=((& QDockWidget::_ZTV11QDockWidget) + 464u) + +Vtable for QGroupBox +QGroupBox::_ZTV9QGroupBox: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QGroupBox) +16 QGroupBox::metaObject +24 QGroupBox::qt_metacast +32 QGroupBox::qt_metacall +40 QGroupBox::~QGroupBox +48 QGroupBox::~QGroupBox +56 QGroupBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QGroupBox::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QGroupBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QGroupBox::mousePressEvent +168 QGroupBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QGroupBox::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QGroupBox::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QGroupBox::paintEvent +256 QWidget::moveEvent +264 QGroupBox::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QGroupBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI9QGroupBox) +464 QGroupBox::_ZThn16_N9QGroupBoxD1Ev +472 QGroupBox::_ZThn16_N9QGroupBoxD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QGroupBox + size=40 align=8 + base size=40 base align=8 +QGroupBox (0x7ffd11e8a380) 0 + vptr=((& QGroupBox::_ZTV9QGroupBox) + 16u) + QWidget (0x7ffd12033c80) 0 + primary-for QGroupBox (0x7ffd11e8a380) + QObject (0x7ffd11e8a3f0) 0 + primary-for QWidget (0x7ffd12033c80) + QPaintDevice (0x7ffd11e8a460) 16 + vptr=((& QGroupBox::_ZTV9QGroupBox) + 464u) + +Vtable for QDialogButtonBox +QDialogButtonBox::_ZTV16QDialogButtonBox: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QDialogButtonBox) +16 QDialogButtonBox::metaObject +24 QDialogButtonBox::qt_metacast +32 QDialogButtonBox::qt_metacall +40 QDialogButtonBox::~QDialogButtonBox +48 QDialogButtonBox::~QDialogButtonBox +56 QDialogButtonBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QDialogButtonBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI16QDialogButtonBox) +464 QDialogButtonBox::_ZThn16_N16QDialogButtonBoxD1Ev +472 QDialogButtonBox::_ZThn16_N16QDialogButtonBoxD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDialogButtonBox + size=40 align=8 + base size=40 base align=8 +QDialogButtonBox (0x7ffd11eac000) 0 + vptr=((& QDialogButtonBox::_ZTV16QDialogButtonBox) + 16u) + QWidget (0x7ffd11ea4580) 0 + primary-for QDialogButtonBox (0x7ffd11eac000) + QObject (0x7ffd11eac070) 0 + primary-for QWidget (0x7ffd11ea4580) + QPaintDevice (0x7ffd11eac0e0) 16 + vptr=((& QDialogButtonBox::_ZTV16QDialogButtonBox) + 464u) + +Vtable for QMainWindow +QMainWindow::_ZTV11QMainWindow: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMainWindow) +16 QMainWindow::metaObject +24 QMainWindow::qt_metacast +32 QMainWindow::qt_metacall +40 QMainWindow::~QMainWindow +48 QMainWindow::~QMainWindow +56 QMainWindow::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QMainWindow::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QMainWindow::createPopupMenu +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI11QMainWindow) +472 QMainWindow::_ZThn16_N11QMainWindowD1Ev +480 QMainWindow::_ZThn16_N11QMainWindowD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMainWindow + size=40 align=8 + base size=40 base align=8 +QMainWindow (0x7ffd11f1d4d0) 0 + vptr=((& QMainWindow::_ZTV11QMainWindow) + 16u) + QWidget (0x7ffd11ed4600) 0 + primary-for QMainWindow (0x7ffd11f1d4d0) + QObject (0x7ffd11f1d540) 0 + primary-for QWidget (0x7ffd11ed4600) + QPaintDevice (0x7ffd11f1d5b0) 16 + vptr=((& QMainWindow::_ZTV11QMainWindow) + 472u) + +Class QTextEdit::ExtraSelection + size=24 align=8 + base size=24 base align=8 +QTextEdit::ExtraSelection (0x7ffd11da0770) 0 + +Vtable for QTextEdit +QTextEdit::_ZTV9QTextEdit: 69u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTextEdit) +16 QTextEdit::metaObject +24 QTextEdit::qt_metacast +32 QTextEdit::qt_metacall +40 QTextEdit::~QTextEdit +48 QTextEdit::~QTextEdit +56 QTextEdit::event +64 QObject::eventFilter +72 QTextEdit::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTextEdit::mousePressEvent +168 QTextEdit::mouseReleaseEvent +176 QTextEdit::mouseDoubleClickEvent +184 QTextEdit::mouseMoveEvent +192 QTextEdit::wheelEvent +200 QTextEdit::keyPressEvent +208 QTextEdit::keyReleaseEvent +216 QTextEdit::focusInEvent +224 QTextEdit::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTextEdit::paintEvent +256 QWidget::moveEvent +264 QTextEdit::resizeEvent +272 QWidget::closeEvent +280 QTextEdit::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QTextEdit::dragEnterEvent +312 QTextEdit::dragMoveEvent +320 QTextEdit::dragLeaveEvent +328 QTextEdit::dropEvent +336 QTextEdit::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QTextEdit::changeEvent +368 QWidget::metric +376 QTextEdit::inputMethodEvent +384 QTextEdit::inputMethodQuery +392 QTextEdit::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QTextEdit::scrollContentsBy +464 QTextEdit::loadResource +472 QTextEdit::createMimeDataFromSelection +480 QTextEdit::canInsertFromMimeData +488 QTextEdit::insertFromMimeData +496 (int (*)(...))-0x00000000000000010 +504 (int (*)(...))(& _ZTI9QTextEdit) +512 QTextEdit::_ZThn16_N9QTextEditD1Ev +520 QTextEdit::_ZThn16_N9QTextEditD0Ev +528 QWidget::_ZThn16_NK7QWidget7devTypeEv +536 QWidget::_ZThn16_NK7QWidget11paintEngineEv +544 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTextEdit + size=40 align=8 + base size=40 base align=8 +QTextEdit (0x7ffd11f777e0) 0 + vptr=((& QTextEdit::_ZTV9QTextEdit) + 16u) + QAbstractScrollArea (0x7ffd11f77850) 0 + primary-for QTextEdit (0x7ffd11f777e0) + QFrame (0x7ffd11f778c0) 0 + primary-for QAbstractScrollArea (0x7ffd11f77850) + QWidget (0x7ffd11f49700) 0 + primary-for QFrame (0x7ffd11f778c0) + QObject (0x7ffd11f77930) 0 + primary-for QWidget (0x7ffd11f49700) + QPaintDevice (0x7ffd11f779a0) 16 + vptr=((& QTextEdit::_ZTV9QTextEdit) + 512u) + +Vtable for QPlainTextEdit +QPlainTextEdit::_ZTV14QPlainTextEdit: 69u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QPlainTextEdit) +16 QPlainTextEdit::metaObject +24 QPlainTextEdit::qt_metacast +32 QPlainTextEdit::qt_metacall +40 QPlainTextEdit::~QPlainTextEdit +48 QPlainTextEdit::~QPlainTextEdit +56 QPlainTextEdit::event +64 QObject::eventFilter +72 QPlainTextEdit::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QPlainTextEdit::mousePressEvent +168 QPlainTextEdit::mouseReleaseEvent +176 QPlainTextEdit::mouseDoubleClickEvent +184 QPlainTextEdit::mouseMoveEvent +192 QPlainTextEdit::wheelEvent +200 QPlainTextEdit::keyPressEvent +208 QPlainTextEdit::keyReleaseEvent +216 QPlainTextEdit::focusInEvent +224 QPlainTextEdit::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QPlainTextEdit::paintEvent +256 QWidget::moveEvent +264 QPlainTextEdit::resizeEvent +272 QWidget::closeEvent +280 QPlainTextEdit::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QPlainTextEdit::dragEnterEvent +312 QPlainTextEdit::dragMoveEvent +320 QPlainTextEdit::dragLeaveEvent +328 QPlainTextEdit::dropEvent +336 QPlainTextEdit::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QPlainTextEdit::changeEvent +368 QWidget::metric +376 QPlainTextEdit::inputMethodEvent +384 QPlainTextEdit::inputMethodQuery +392 QPlainTextEdit::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QPlainTextEdit::scrollContentsBy +464 QPlainTextEdit::loadResource +472 QPlainTextEdit::createMimeDataFromSelection +480 QPlainTextEdit::canInsertFromMimeData +488 QPlainTextEdit::insertFromMimeData +496 (int (*)(...))-0x00000000000000010 +504 (int (*)(...))(& _ZTI14QPlainTextEdit) +512 QPlainTextEdit::_ZThn16_N14QPlainTextEditD1Ev +520 QPlainTextEdit::_ZThn16_N14QPlainTextEditD0Ev +528 QWidget::_ZThn16_NK7QWidget7devTypeEv +536 QWidget::_ZThn16_NK7QWidget11paintEngineEv +544 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPlainTextEdit + size=40 align=8 + base size=40 base align=8 +QPlainTextEdit (0x7ffd11e37930) 0 + vptr=((& QPlainTextEdit::_ZTV14QPlainTextEdit) + 16u) + QAbstractScrollArea (0x7ffd11e379a0) 0 + primary-for QPlainTextEdit (0x7ffd11e37930) + QFrame (0x7ffd11e37a10) 0 + primary-for QAbstractScrollArea (0x7ffd11e379a0) + QWidget (0x7ffd11e07f00) 0 + primary-for QFrame (0x7ffd11e37a10) + QObject (0x7ffd11e37a80) 0 + primary-for QWidget (0x7ffd11e07f00) + QPaintDevice (0x7ffd11e37af0) 16 + vptr=((& QPlainTextEdit::_ZTV14QPlainTextEdit) + 512u) + +Vtable for QPlainTextDocumentLayout +QPlainTextDocumentLayout::_ZTV24QPlainTextDocumentLayout: 24u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QPlainTextDocumentLayout) +16 QPlainTextDocumentLayout::metaObject +24 QPlainTextDocumentLayout::qt_metacast +32 QPlainTextDocumentLayout::qt_metacall +40 QPlainTextDocumentLayout::~QPlainTextDocumentLayout +48 QPlainTextDocumentLayout::~QPlainTextDocumentLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QPlainTextDocumentLayout::draw +120 QPlainTextDocumentLayout::hitTest +128 QPlainTextDocumentLayout::pageCount +136 QPlainTextDocumentLayout::documentSize +144 QPlainTextDocumentLayout::frameBoundingRect +152 QPlainTextDocumentLayout::blockBoundingRect +160 QPlainTextDocumentLayout::documentChanged +168 QAbstractTextDocumentLayout::resizeInlineObject +176 QAbstractTextDocumentLayout::positionInlineObject +184 QAbstractTextDocumentLayout::drawInlineObject + +Class QPlainTextDocumentLayout + size=16 align=8 + base size=16 base align=8 +QPlainTextDocumentLayout (0x7ffd11c96700) 0 + vptr=((& QPlainTextDocumentLayout::_ZTV24QPlainTextDocumentLayout) + 16u) + QAbstractTextDocumentLayout (0x7ffd11c96770) 0 + primary-for QPlainTextDocumentLayout (0x7ffd11c96700) + QObject (0x7ffd11c967e0) 0 + primary-for QAbstractTextDocumentLayout (0x7ffd11c96770) + +Vtable for QProgressBar +QProgressBar::_ZTV12QProgressBar: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QProgressBar) +16 QProgressBar::metaObject +24 QProgressBar::qt_metacast +32 QProgressBar::qt_metacall +40 QProgressBar::~QProgressBar +48 QProgressBar::~QProgressBar +56 QProgressBar::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QProgressBar::sizeHint +136 QProgressBar::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QProgressBar::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QProgressBar::text +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI12QProgressBar) +472 QProgressBar::_ZThn16_N12QProgressBarD1Ev +480 QProgressBar::_ZThn16_N12QProgressBarD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QProgressBar + size=40 align=8 + base size=40 base align=8 +QProgressBar (0x7ffd11caabd0) 0 + vptr=((& QProgressBar::_ZTV12QProgressBar) + 16u) + QWidget (0x7ffd11c95f00) 0 + primary-for QProgressBar (0x7ffd11caabd0) + QObject (0x7ffd11caac40) 0 + primary-for QWidget (0x7ffd11c95f00) + QPaintDevice (0x7ffd11caacb0) 16 + vptr=((& QProgressBar::_ZTV12QProgressBar) + 472u) + +Vtable for QScrollBar +QScrollBar::_ZTV10QScrollBar: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QScrollBar) +16 QScrollBar::metaObject +24 QScrollBar::qt_metacast +32 QScrollBar::qt_metacall +40 QScrollBar::~QScrollBar +48 QScrollBar::~QScrollBar +56 QScrollBar::event +64 QObject::eventFilter +72 QAbstractSlider::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QScrollBar::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QScrollBar::mousePressEvent +168 QScrollBar::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QScrollBar::mouseMoveEvent +192 QAbstractSlider::wheelEvent +200 QAbstractSlider::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QScrollBar::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QScrollBar::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QScrollBar::hideEvent +352 QWidget::x11Event +360 QAbstractSlider::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QScrollBar::sliderChange +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI10QScrollBar) +472 QScrollBar::_ZThn16_N10QScrollBarD1Ev +480 QScrollBar::_ZThn16_N10QScrollBarD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QScrollBar + size=40 align=8 + base size=40 base align=8 +QScrollBar (0x7ffd11ccea10) 0 + vptr=((& QScrollBar::_ZTV10QScrollBar) + 16u) + QAbstractSlider (0x7ffd11ccea80) 0 + primary-for QScrollBar (0x7ffd11ccea10) + QWidget (0x7ffd11cb2900) 0 + primary-for QAbstractSlider (0x7ffd11ccea80) + QObject (0x7ffd11cceaf0) 0 + primary-for QWidget (0x7ffd11cb2900) + QPaintDevice (0x7ffd11cceb60) 16 + vptr=((& QScrollBar::_ZTV10QScrollBar) + 472u) + +Vtable for QSizeGrip +QSizeGrip::_ZTV9QSizeGrip: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QSizeGrip) +16 QSizeGrip::metaObject +24 QSizeGrip::qt_metacast +32 QSizeGrip::qt_metacall +40 QSizeGrip::~QSizeGrip +48 QSizeGrip::~QSizeGrip +56 QSizeGrip::event +64 QSizeGrip::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QSizeGrip::setVisible +128 QSizeGrip::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QSizeGrip::mousePressEvent +168 QSizeGrip::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QSizeGrip::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QSizeGrip::paintEvent +256 QSizeGrip::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QSizeGrip::showEvent +344 QSizeGrip::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI9QSizeGrip) +464 QSizeGrip::_ZThn16_N9QSizeGripD1Ev +472 QSizeGrip::_ZThn16_N9QSizeGripD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSizeGrip + size=40 align=8 + base size=40 base align=8 +QSizeGrip (0x7ffd11ceeb60) 0 + vptr=((& QSizeGrip::_ZTV9QSizeGrip) + 16u) + QWidget (0x7ffd11cf1380) 0 + primary-for QSizeGrip (0x7ffd11ceeb60) + QObject (0x7ffd11ceebd0) 0 + primary-for QWidget (0x7ffd11cf1380) + QPaintDevice (0x7ffd11ceec40) 16 + vptr=((& QSizeGrip::_ZTV9QSizeGrip) + 464u) + +Vtable for QTextBrowser +QTextBrowser::_ZTV12QTextBrowser: 74u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextBrowser) +16 QTextBrowser::metaObject +24 QTextBrowser::qt_metacast +32 QTextBrowser::qt_metacall +40 QTextBrowser::~QTextBrowser +48 QTextBrowser::~QTextBrowser +56 QTextBrowser::event +64 QObject::eventFilter +72 QTextEdit::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTextBrowser::mousePressEvent +168 QTextBrowser::mouseReleaseEvent +176 QTextEdit::mouseDoubleClickEvent +184 QTextBrowser::mouseMoveEvent +192 QTextEdit::wheelEvent +200 QTextBrowser::keyPressEvent +208 QTextEdit::keyReleaseEvent +216 QTextEdit::focusInEvent +224 QTextBrowser::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTextBrowser::paintEvent +256 QWidget::moveEvent +264 QTextEdit::resizeEvent +272 QWidget::closeEvent +280 QTextEdit::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QTextEdit::dragEnterEvent +312 QTextEdit::dragMoveEvent +320 QTextEdit::dragLeaveEvent +328 QTextEdit::dropEvent +336 QTextEdit::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QTextEdit::changeEvent +368 QWidget::metric +376 QTextEdit::inputMethodEvent +384 QTextEdit::inputMethodQuery +392 QTextBrowser::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QTextEdit::scrollContentsBy +464 QTextBrowser::loadResource +472 QTextEdit::createMimeDataFromSelection +480 QTextEdit::canInsertFromMimeData +488 QTextEdit::insertFromMimeData +496 QTextBrowser::setSource +504 QTextBrowser::backward +512 QTextBrowser::forward +520 QTextBrowser::home +528 QTextBrowser::reload +536 (int (*)(...))-0x00000000000000010 +544 (int (*)(...))(& _ZTI12QTextBrowser) +552 QTextBrowser::_ZThn16_N12QTextBrowserD1Ev +560 QTextBrowser::_ZThn16_N12QTextBrowserD0Ev +568 QWidget::_ZThn16_NK7QWidget7devTypeEv +576 QWidget::_ZThn16_NK7QWidget11paintEngineEv +584 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTextBrowser + size=40 align=8 + base size=40 base align=8 +QTextBrowser (0x7ffd11d0d690) 0 + vptr=((& QTextBrowser::_ZTV12QTextBrowser) + 16u) + QTextEdit (0x7ffd11d0d700) 0 + primary-for QTextBrowser (0x7ffd11d0d690) + QAbstractScrollArea (0x7ffd11d0d770) 0 + primary-for QTextEdit (0x7ffd11d0d700) + QFrame (0x7ffd11d0d7e0) 0 + primary-for QAbstractScrollArea (0x7ffd11d0d770) + QWidget (0x7ffd11cf1c80) 0 + primary-for QFrame (0x7ffd11d0d7e0) + QObject (0x7ffd11d0d850) 0 + primary-for QWidget (0x7ffd11cf1c80) + QPaintDevice (0x7ffd11d0d8c0) 16 + vptr=((& QTextBrowser::_ZTV12QTextBrowser) + 552u) + +Vtable for QStatusBar +QStatusBar::_ZTV10QStatusBar: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QStatusBar) +16 QStatusBar::metaObject +24 QStatusBar::qt_metacast +32 QStatusBar::qt_metacall +40 QStatusBar::~QStatusBar +48 QStatusBar::~QStatusBar +56 QStatusBar::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QStatusBar::paintEvent +256 QWidget::moveEvent +264 QStatusBar::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QStatusBar::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI10QStatusBar) +464 QStatusBar::_ZThn16_N10QStatusBarD1Ev +472 QStatusBar::_ZThn16_N10QStatusBarD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QStatusBar + size=40 align=8 + base size=40 base align=8 +QStatusBar (0x7ffd11d332a0) 0 + vptr=((& QStatusBar::_ZTV10QStatusBar) + 16u) + QWidget (0x7ffd11d2a580) 0 + primary-for QStatusBar (0x7ffd11d332a0) + QObject (0x7ffd11d33310) 0 + primary-for QWidget (0x7ffd11d2a580) + QPaintDevice (0x7ffd11d33380) 16 + vptr=((& QStatusBar::_ZTV10QStatusBar) + 464u) + +Vtable for QToolButton +QToolButton::_ZTV11QToolButton: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QToolButton) +16 QToolButton::metaObject +24 QToolButton::qt_metacast +32 QToolButton::qt_metacall +40 QToolButton::~QToolButton +48 QToolButton::~QToolButton +56 QToolButton::event +64 QObject::eventFilter +72 QToolButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QToolButton::sizeHint +136 QToolButton::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QToolButton::mousePressEvent +168 QToolButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QAbstractButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QAbstractButton::focusInEvent +224 QAbstractButton::focusOutEvent +232 QToolButton::enterEvent +240 QToolButton::leaveEvent +248 QToolButton::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QToolButton::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QToolButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QToolButton::hitButton +456 QAbstractButton::checkStateSet +464 QToolButton::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11QToolButton) +488 QToolButton::_ZThn16_N11QToolButtonD1Ev +496 QToolButton::_ZThn16_N11QToolButtonD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QToolButton + size=40 align=8 + base size=40 base align=8 +QToolButton (0x7ffd11d537e0) 0 + vptr=((& QToolButton::_ZTV11QToolButton) + 16u) + QAbstractButton (0x7ffd11d53850) 0 + primary-for QToolButton (0x7ffd11d537e0) + QWidget (0x7ffd11d52480) 0 + primary-for QAbstractButton (0x7ffd11d53850) + QObject (0x7ffd11d538c0) 0 + primary-for QWidget (0x7ffd11d52480) + QPaintDevice (0x7ffd11d53930) 16 + vptr=((& QToolButton::_ZTV11QToolButton) + 488u) + +Vtable for QComboBox +QComboBox::_ZTV9QComboBox: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QComboBox) +16 QComboBox::metaObject +24 QComboBox::qt_metacast +32 QComboBox::qt_metacall +40 QComboBox::~QComboBox +48 QComboBox::~QComboBox +56 QComboBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QComboBox::sizeHint +136 QComboBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QComboBox::mousePressEvent +168 QComboBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QComboBox::wheelEvent +200 QComboBox::keyPressEvent +208 QComboBox::keyReleaseEvent +216 QComboBox::focusInEvent +224 QComboBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QComboBox::paintEvent +256 QWidget::moveEvent +264 QComboBox::resizeEvent +272 QWidget::closeEvent +280 QComboBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QComboBox::showEvent +344 QComboBox::hideEvent +352 QWidget::x11Event +360 QComboBox::changeEvent +368 QWidget::metric +376 QComboBox::inputMethodEvent +384 QComboBox::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QComboBox::showPopup +456 QComboBox::hidePopup +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI9QComboBox) +480 QComboBox::_ZThn16_N9QComboBoxD1Ev +488 QComboBox::_ZThn16_N9QComboBoxD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QComboBox + size=40 align=8 + base size=40 base align=8 +QComboBox (0x7ffd11b93af0) 0 + vptr=((& QComboBox::_ZTV9QComboBox) + 16u) + QWidget (0x7ffd11b9b080) 0 + primary-for QComboBox (0x7ffd11b93af0) + QObject (0x7ffd11b93b60) 0 + primary-for QWidget (0x7ffd11b9b080) + QPaintDevice (0x7ffd11b93bd0) 16 + vptr=((& QComboBox::_ZTV9QComboBox) + 480u) + +Vtable for QCommandLinkButton +QCommandLinkButton::_ZTV18QCommandLinkButton: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QCommandLinkButton) +16 QCommandLinkButton::metaObject +24 QCommandLinkButton::qt_metacast +32 QCommandLinkButton::qt_metacall +40 QCommandLinkButton::~QCommandLinkButton +48 QCommandLinkButton::~QCommandLinkButton +56 QCommandLinkButton::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QCommandLinkButton::sizeHint +136 QCommandLinkButton::minimumSizeHint +144 QCommandLinkButton::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QPushButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QPushButton::focusInEvent +224 QPushButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QCommandLinkButton::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractButton::hitButton +456 QAbstractButton::checkStateSet +464 QAbstractButton::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI18QCommandLinkButton) +488 QCommandLinkButton::_ZThn16_N18QCommandLinkButtonD1Ev +496 QCommandLinkButton::_ZThn16_N18QCommandLinkButtonD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QCommandLinkButton + size=40 align=8 + base size=40 base align=8 +QCommandLinkButton (0x7ffd11c03620) 0 + vptr=((& QCommandLinkButton::_ZTV18QCommandLinkButton) + 16u) + QPushButton (0x7ffd11c03690) 0 + primary-for QCommandLinkButton (0x7ffd11c03620) + QAbstractButton (0x7ffd11c03700) 0 + primary-for QPushButton (0x7ffd11c03690) + QWidget (0x7ffd11bffc80) 0 + primary-for QAbstractButton (0x7ffd11c03700) + QObject (0x7ffd11c03770) 0 + primary-for QWidget (0x7ffd11bffc80) + QPaintDevice (0x7ffd11c037e0) 16 + vptr=((& QCommandLinkButton::_ZTV18QCommandLinkButton) + 488u) + +Vtable for QMenuItem +QMenuItem::_ZTV9QMenuItem: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QMenuItem) +16 QMenuItem::metaObject +24 QMenuItem::qt_metacast +32 QMenuItem::qt_metacall +40 QMenuItem::~QMenuItem +48 QMenuItem::~QMenuItem +56 QAction::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QMenuItem + size=16 align=8 + base size=16 base align=8 +QMenuItem (0x7ffd11c241c0) 0 + vptr=((& QMenuItem::_ZTV9QMenuItem) + 16u) + QAction (0x7ffd11c24230) 0 + primary-for QMenuItem (0x7ffd11c241c0) + QObject (0x7ffd11c242a0) 0 + primary-for QAction (0x7ffd11c24230) + +Vtable for QCalendarWidget +QCalendarWidget::_ZTV15QCalendarWidget: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QCalendarWidget) +16 QCalendarWidget::metaObject +24 QCalendarWidget::qt_metacast +32 QCalendarWidget::qt_metacall +40 QCalendarWidget::~QCalendarWidget +48 QCalendarWidget::~QCalendarWidget +56 QCalendarWidget::event +64 QCalendarWidget::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QCalendarWidget::sizeHint +136 QCalendarWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QCalendarWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QCalendarWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QCalendarWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QCalendarWidget::paintCell +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI15QCalendarWidget) +472 QCalendarWidget::_ZThn16_N15QCalendarWidgetD1Ev +480 QCalendarWidget::_ZThn16_N15QCalendarWidgetD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QCalendarWidget + size=40 align=8 + base size=40 base align=8 +QCalendarWidget (0x7ffd11c33000) 0 + vptr=((& QCalendarWidget::_ZTV15QCalendarWidget) + 16u) + QWidget (0x7ffd11c1bc00) 0 + primary-for QCalendarWidget (0x7ffd11c33000) + QObject (0x7ffd11c33070) 0 + primary-for QWidget (0x7ffd11c1bc00) + QPaintDevice (0x7ffd11c330e0) 16 + vptr=((& QCalendarWidget::_ZTV15QCalendarWidget) + 472u) + +Vtable for QRadioButton +QRadioButton::_ZTV12QRadioButton: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QRadioButton) +16 QRadioButton::metaObject +24 QRadioButton::qt_metacast +32 QRadioButton::qt_metacall +40 QRadioButton::~QRadioButton +48 QRadioButton::~QRadioButton +56 QRadioButton::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QRadioButton::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QRadioButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QAbstractButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QAbstractButton::focusInEvent +224 QAbstractButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QRadioButton::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QRadioButton::hitButton +456 QAbstractButton::checkStateSet +464 QAbstractButton::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI12QRadioButton) +488 QRadioButton::_ZThn16_N12QRadioButtonD1Ev +496 QRadioButton::_ZThn16_N12QRadioButtonD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QRadioButton + size=40 align=8 + base size=40 base align=8 +QRadioButton (0x7ffd11c60150) 0 + vptr=((& QRadioButton::_ZTV12QRadioButton) + 16u) + QAbstractButton (0x7ffd11c601c0) 0 + primary-for QRadioButton (0x7ffd11c60150) + QWidget (0x7ffd11c39b00) 0 + primary-for QAbstractButton (0x7ffd11c601c0) + QObject (0x7ffd11c60230) 0 + primary-for QWidget (0x7ffd11c39b00) + QPaintDevice (0x7ffd11c602a0) 16 + vptr=((& QRadioButton::_ZTV12QRadioButton) + 488u) + +Vtable for QMenuBar +QMenuBar::_ZTV8QMenuBar: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QMenuBar) +16 QMenuBar::metaObject +24 QMenuBar::qt_metacast +32 QMenuBar::qt_metacall +40 QMenuBar::~QMenuBar +48 QMenuBar::~QMenuBar +56 QMenuBar::event +64 QMenuBar::eventFilter +72 QMenuBar::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QMenuBar::setVisible +128 QMenuBar::sizeHint +136 QMenuBar::minimumSizeHint +144 QMenuBar::heightForWidth +152 QWidget::paintEngine +160 QMenuBar::mousePressEvent +168 QMenuBar::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QMenuBar::mouseMoveEvent +192 QWidget::wheelEvent +200 QMenuBar::keyPressEvent +208 QWidget::keyReleaseEvent +216 QMenuBar::focusInEvent +224 QMenuBar::focusOutEvent +232 QWidget::enterEvent +240 QMenuBar::leaveEvent +248 QMenuBar::paintEvent +256 QWidget::moveEvent +264 QMenuBar::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QMenuBar::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QMenuBar::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI8QMenuBar) +464 QMenuBar::_ZThn16_N8QMenuBarD1Ev +472 QMenuBar::_ZThn16_N8QMenuBarD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMenuBar + size=40 align=8 + base size=40 base align=8 +QMenuBar (0x7ffd11c77d90) 0 + vptr=((& QMenuBar::_ZTV8QMenuBar) + 16u) + QWidget (0x7ffd11c79400) 0 + primary-for QMenuBar (0x7ffd11c77d90) + QObject (0x7ffd11c77e00) 0 + primary-for QWidget (0x7ffd11c79400) + QPaintDevice (0x7ffd11c77e70) 16 + vptr=((& QMenuBar::_ZTV8QMenuBar) + 464u) + +Vtable for QFocusFrame +QFocusFrame::_ZTV11QFocusFrame: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFocusFrame) +16 QFocusFrame::metaObject +24 QFocusFrame::qt_metacast +32 QFocusFrame::qt_metacall +40 QFocusFrame::~QFocusFrame +48 QFocusFrame::~QFocusFrame +56 QFocusFrame::event +64 QFocusFrame::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFocusFrame::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI11QFocusFrame) +464 QFocusFrame::_ZThn16_N11QFocusFrameD1Ev +472 QFocusFrame::_ZThn16_N11QFocusFrameD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFocusFrame + size=40 align=8 + base size=40 base align=8 +QFocusFrame (0x7ffd11b11cb0) 0 + vptr=((& QFocusFrame::_ZTV11QFocusFrame) + 16u) + QWidget (0x7ffd11b0fe00) 0 + primary-for QFocusFrame (0x7ffd11b11cb0) + QObject (0x7ffd11b11d20) 0 + primary-for QWidget (0x7ffd11b0fe00) + QPaintDevice (0x7ffd11b11d90) 16 + vptr=((& QFocusFrame::_ZTV11QFocusFrame) + 464u) + +Vtable for QFontComboBox +QFontComboBox::_ZTV13QFontComboBox: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QFontComboBox) +16 QFontComboBox::metaObject +24 QFontComboBox::qt_metacast +32 QFontComboBox::qt_metacall +40 QFontComboBox::~QFontComboBox +48 QFontComboBox::~QFontComboBox +56 QFontComboBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QFontComboBox::sizeHint +136 QComboBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QComboBox::mousePressEvent +168 QComboBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QComboBox::wheelEvent +200 QComboBox::keyPressEvent +208 QComboBox::keyReleaseEvent +216 QComboBox::focusInEvent +224 QComboBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QComboBox::paintEvent +256 QWidget::moveEvent +264 QComboBox::resizeEvent +272 QWidget::closeEvent +280 QComboBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QComboBox::showEvent +344 QComboBox::hideEvent +352 QWidget::x11Event +360 QComboBox::changeEvent +368 QWidget::metric +376 QComboBox::inputMethodEvent +384 QComboBox::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QComboBox::showPopup +456 QComboBox::hidePopup +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI13QFontComboBox) +480 QFontComboBox::_ZThn16_N13QFontComboBoxD1Ev +488 QFontComboBox::_ZThn16_N13QFontComboBoxD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFontComboBox + size=40 align=8 + base size=40 base align=8 +QFontComboBox (0x7ffd11b2c850) 0 + vptr=((& QFontComboBox::_ZTV13QFontComboBox) + 16u) + QComboBox (0x7ffd11b2c8c0) 0 + primary-for QFontComboBox (0x7ffd11b2c850) + QWidget (0x7ffd11b26700) 0 + primary-for QComboBox (0x7ffd11b2c8c0) + QObject (0x7ffd11b2c930) 0 + primary-for QWidget (0x7ffd11b26700) + QPaintDevice (0x7ffd11b2c9a0) 16 + vptr=((& QFontComboBox::_ZTV13QFontComboBox) + 480u) + +Vtable for QToolBar +QToolBar::_ZTV8QToolBar: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QToolBar) +16 QToolBar::metaObject +24 QToolBar::qt_metacast +32 QToolBar::qt_metacall +40 QToolBar::~QToolBar +48 QToolBar::~QToolBar +56 QToolBar::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QToolBar::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QToolBar::paintEvent +256 QWidget::moveEvent +264 QToolBar::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QToolBar::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QToolBar::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI8QToolBar) +464 QToolBar::_ZThn16_N8QToolBarD1Ev +472 QToolBar::_ZThn16_N8QToolBarD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QToolBar + size=40 align=8 + base size=40 base align=8 +QToolBar (0x7ffd11998540) 0 + vptr=((& QToolBar::_ZTV8QToolBar) + 16u) + QWidget (0x7ffd11b48800) 0 + primary-for QToolBar (0x7ffd11998540) + QObject (0x7ffd119985b0) 0 + primary-for QWidget (0x7ffd11b48800) + QPaintDevice (0x7ffd11998620) 16 + vptr=((& QToolBar::_ZTV8QToolBar) + 464u) + +Vtable for QToolBox +QToolBox::_ZTV8QToolBox: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QToolBox) +16 QToolBox::metaObject +24 QToolBox::qt_metacast +32 QToolBox::qt_metacall +40 QToolBox::~QToolBox +48 QToolBox::~QToolBox +56 QToolBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QFrame::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFrame::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QToolBox::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QToolBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QToolBox::itemInserted +456 QToolBox::itemRemoved +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI8QToolBox) +480 QToolBox::_ZThn16_N8QToolBoxD1Ev +488 QToolBox::_ZThn16_N8QToolBoxD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QToolBox + size=40 align=8 + base size=40 base align=8 +QToolBox (0x7ffd119cf380) 0 + vptr=((& QToolBox::_ZTV8QToolBox) + 16u) + QFrame (0x7ffd119cf3f0) 0 + primary-for QToolBox (0x7ffd119cf380) + QWidget (0x7ffd119cb800) 0 + primary-for QFrame (0x7ffd119cf3f0) + QObject (0x7ffd119cf460) 0 + primary-for QWidget (0x7ffd119cb800) + QPaintDevice (0x7ffd119cf4d0) 16 + vptr=((& QToolBox::_ZTV8QToolBox) + 480u) + +Vtable for QSplitter +QSplitter::_ZTV9QSplitter: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QSplitter) +16 QSplitter::metaObject +24 QSplitter::qt_metacast +32 QSplitter::qt_metacall +40 QSplitter::~QSplitter +48 QSplitter::~QSplitter +56 QSplitter::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QSplitter::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QSplitter::sizeHint +136 QSplitter::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFrame::paintEvent +256 QWidget::moveEvent +264 QSplitter::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QSplitter::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QSplitter::createHandle +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI9QSplitter) +472 QSplitter::_ZThn16_N9QSplitterD1Ev +480 QSplitter::_ZThn16_N9QSplitterD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSplitter + size=40 align=8 + base size=40 base align=8 +QSplitter (0x7ffd11a08000) 0 + vptr=((& QSplitter::_ZTV9QSplitter) + 16u) + QFrame (0x7ffd11a08070) 0 + primary-for QSplitter (0x7ffd11a08000) + QWidget (0x7ffd11a03480) 0 + primary-for QFrame (0x7ffd11a08070) + QObject (0x7ffd11a080e0) 0 + primary-for QWidget (0x7ffd11a03480) + QPaintDevice (0x7ffd11a08150) 16 + vptr=((& QSplitter::_ZTV9QSplitter) + 472u) + +Vtable for QSplitterHandle +QSplitterHandle::_ZTV15QSplitterHandle: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSplitterHandle) +16 QSplitterHandle::metaObject +24 QSplitterHandle::qt_metacast +32 QSplitterHandle::qt_metacall +40 QSplitterHandle::~QSplitterHandle +48 QSplitterHandle::~QSplitterHandle +56 QSplitterHandle::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QSplitterHandle::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QSplitterHandle::mousePressEvent +168 QSplitterHandle::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QSplitterHandle::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QSplitterHandle::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI15QSplitterHandle) +464 QSplitterHandle::_ZThn16_N15QSplitterHandleD1Ev +472 QSplitterHandle::_ZThn16_N15QSplitterHandleD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSplitterHandle + size=40 align=8 + base size=40 base align=8 +QSplitterHandle (0x7ffd11a340e0) 0 + vptr=((& QSplitterHandle::_ZTV15QSplitterHandle) + 16u) + QWidget (0x7ffd11a2f580) 0 + primary-for QSplitterHandle (0x7ffd11a340e0) + QObject (0x7ffd11a34150) 0 + primary-for QWidget (0x7ffd11a2f580) + QPaintDevice (0x7ffd11a341c0) 16 + vptr=((& QSplitterHandle::_ZTV15QSplitterHandle) + 464u) + +Vtable for QDial +QDial::_ZTV5QDial: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QDial) +16 QDial::metaObject +24 QDial::qt_metacast +32 QDial::qt_metacall +40 QDial::~QDial +48 QDial::~QDial +56 QDial::event +64 QObject::eventFilter +72 QAbstractSlider::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QDial::sizeHint +136 QDial::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QDial::mousePressEvent +168 QDial::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QDial::mouseMoveEvent +192 QAbstractSlider::wheelEvent +200 QAbstractSlider::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QDial::paintEvent +256 QWidget::moveEvent +264 QDial::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractSlider::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDial::sliderChange +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI5QDial) +472 QDial::_ZThn16_N5QDialD1Ev +480 QDial::_ZThn16_N5QDialD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDial + size=40 align=8 + base size=40 base align=8 +QDial (0x7ffd11a4d8c0) 0 + vptr=((& QDial::_ZTV5QDial) + 16u) + QAbstractSlider (0x7ffd11a4d930) 0 + primary-for QDial (0x7ffd11a4d8c0) + QWidget (0x7ffd11a2fe80) 0 + primary-for QAbstractSlider (0x7ffd11a4d930) + QObject (0x7ffd11a4d9a0) 0 + primary-for QWidget (0x7ffd11a2fe80) + QPaintDevice (0x7ffd11a4da10) 16 + vptr=((& QDial::_ZTV5QDial) + 472u) + +Class QScriptValue + size=8 align=8 + base size=8 base align=8 +QScriptValue (0x7ffd11a6d540) 0 + +Vtable for QScriptClassPropertyIterator +QScriptClassPropertyIterator::_ZTV28QScriptClassPropertyIterator: 13u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI28QScriptClassPropertyIterator) +16 QScriptClassPropertyIterator::~QScriptClassPropertyIterator +24 QScriptClassPropertyIterator::~QScriptClassPropertyIterator +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 QScriptClassPropertyIterator::id +96 QScriptClassPropertyIterator::flags + +Class QScriptClassPropertyIterator + size=16 align=8 + base size=16 base align=8 +QScriptClassPropertyIterator (0x7ffd119643f0) 0 + vptr=((& QScriptClassPropertyIterator::_ZTV28QScriptClassPropertyIterator) + 16u) + +Vtable for QScriptEngineAgent +QScriptEngineAgent::_ZTV18QScriptEngineAgent: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QScriptEngineAgent) +16 QScriptEngineAgent::~QScriptEngineAgent +24 QScriptEngineAgent::~QScriptEngineAgent +32 QScriptEngineAgent::scriptLoad +40 QScriptEngineAgent::scriptUnload +48 QScriptEngineAgent::contextPush +56 QScriptEngineAgent::contextPop +64 QScriptEngineAgent::functionEntry +72 QScriptEngineAgent::functionExit +80 QScriptEngineAgent::positionChange +88 QScriptEngineAgent::exceptionThrow +96 QScriptEngineAgent::exceptionCatch +104 QScriptEngineAgent::supportsExtension +112 QScriptEngineAgent::extension + +Class QScriptEngineAgent + size=16 align=8 + base size=16 base align=8 +QScriptEngineAgent (0x7ffd11964af0) 0 + vptr=((& QScriptEngineAgent::_ZTV18QScriptEngineAgent) + 16u) + +Vtable for QScriptClass +QScriptClass::_ZTV12QScriptClass: 13u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QScriptClass) +16 QScriptClass::~QScriptClass +24 QScriptClass::~QScriptClass +32 QScriptClass::queryProperty +40 QScriptClass::property +48 QScriptClass::setProperty +56 QScriptClass::propertyFlags +64 QScriptClass::newIterator +72 QScriptClass::prototype +80 QScriptClass::name +88 QScriptClass::supportsExtension +96 QScriptClass::extension + +Class QScriptClass + size=16 align=8 + base size=16 base align=8 +QScriptClass (0x7ffd11971b60) 0 + vptr=((& QScriptClass::_ZTV12QScriptClass) + 16u) + +Class QScriptContext + size=8 align=8 + base size=8 base align=8 +QScriptContext (0x7ffd117b7930) 0 + +Class QScriptString + size=8 align=8 + base size=8 base align=8 +QScriptString (0x7ffd117e7690) 0 + +Class QScriptSyntaxCheckResult + size=8 align=8 + base size=8 base align=8 +QScriptSyntaxCheckResult (0x7ffd117ef2a0) 0 + +Vtable for QScriptEngine +QScriptEngine::_ZTV13QScriptEngine: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QScriptEngine) +16 QScriptEngine::metaObject +24 QScriptEngine::qt_metacast +32 QScriptEngine::qt_metacall +40 QScriptEngine::~QScriptEngine +48 QScriptEngine::~QScriptEngine +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QScriptEngine + size=16 align=8 + base size=16 base align=8 +QScriptEngine (0x7ffd117efe00) 0 + vptr=((& QScriptEngine::_ZTV13QScriptEngine) + 16u) + QObject (0x7ffd117efe70) 0 + primary-for QScriptEngine (0x7ffd117efe00) + +Vtable for QScriptExtensionInterface +QScriptExtensionInterface::_ZTV25QScriptExtensionInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QScriptExtensionInterface) +16 QScriptExtensionInterface::~QScriptExtensionInterface +24 QScriptExtensionInterface::~QScriptExtensionInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QScriptExtensionInterface + size=8 align=8 + base size=8 base align=8 +QScriptExtensionInterface (0x7ffd1167a690) 0 nearly-empty + vptr=((& QScriptExtensionInterface::_ZTV25QScriptExtensionInterface) + 16u) + QFactoryInterface (0x7ffd1167a700) 0 nearly-empty + primary-for QScriptExtensionInterface (0x7ffd1167a690) + +Vtable for QScriptExtensionPlugin +QScriptExtensionPlugin::_ZTV22QScriptExtensionPlugin: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QScriptExtensionPlugin) +16 QScriptExtensionPlugin::metaObject +24 QScriptExtensionPlugin::qt_metacast +32 QScriptExtensionPlugin::qt_metacall +40 QScriptExtensionPlugin::~QScriptExtensionPlugin +48 QScriptExtensionPlugin::~QScriptExtensionPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI22QScriptExtensionPlugin) +144 QScriptExtensionPlugin::_ZThn16_N22QScriptExtensionPluginD1Ev +152 QScriptExtensionPlugin::_ZThn16_N22QScriptExtensionPluginD0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QScriptExtensionPlugin + size=24 align=8 + base size=24 base align=8 +QScriptExtensionPlugin (0x7ffd116a3380) 0 + vptr=((& QScriptExtensionPlugin::_ZTV22QScriptExtensionPlugin) + 16u) + QObject (0x7ffd1167af50) 0 + primary-for QScriptExtensionPlugin (0x7ffd116a3380) + QScriptExtensionInterface (0x7ffd1167a770) 16 nearly-empty + vptr=((& QScriptExtensionPlugin::_ZTV22QScriptExtensionPlugin) + 144u) + QFactoryInterface (0x7ffd116a8000) 16 nearly-empty + primary-for QScriptExtensionInterface (0x7ffd1167a770) + +Class QScriptable + size=8 align=8 + base size=8 base align=8 +QScriptable (0x7ffd116a8ee0) 0 + +Class QScriptValueIterator + size=8 align=8 + base size=8 base align=8 +QScriptValueIterator (0x7ffd116ba850) 0 + +Class QScriptContextInfo + size=8 align=8 + base size=8 base align=8 +QScriptContextInfo (0x7ffd116c5540) 0 + +Vtable for QScriptEngineDebugger +QScriptEngineDebugger::_ZTV21QScriptEngineDebugger: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QScriptEngineDebugger) +16 QScriptEngineDebugger::metaObject +24 QScriptEngineDebugger::qt_metacast +32 QScriptEngineDebugger::qt_metacall +40 QScriptEngineDebugger::~QScriptEngineDebugger +48 QScriptEngineDebugger::~QScriptEngineDebugger +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QScriptEngineDebugger + size=16 align=8 + base size=16 base align=8 +QScriptEngineDebugger (0x7ffd116ce5b0) 0 + vptr=((& QScriptEngineDebugger::_ZTV21QScriptEngineDebugger) + 16u) + QObject (0x7ffd116ce620) 0 + primary-for QScriptEngineDebugger (0x7ffd116ce5b0) + diff --git a/tests/auto/bic/data/QtScriptTools.4.6.0.linux-gcc-amd64.txt b/tests/auto/bic/data/QtScriptTools.4.6.0.linux-gcc-amd64.txt new file mode 100644 index 0000000..0f22beb --- /dev/null +++ b/tests/auto/bic/data/QtScriptTools.4.6.0.linux-gcc-amd64.txt @@ -0,0 +1,16925 @@ +Class QSysInfo + size=1 align=1 + base size=0 base align=1 +QSysInfo (0x7faaae0bb230) 0 empty + +Class QBool + size=1 align=1 + base size=1 base align=1 +QBool (0x7faaae0bbe70) 0 + +Class qIsNull(double)::U + size=8 align=8 + base size=8 base align=8 +qIsNull(double)::U (0x7faaad6c2540) 0 + +Class qIsNull(float)::U + size=4 align=4 + base size=4 base align=4 +qIsNull(float)::U (0x7faaad6c27e0) 0 + +Class QFlag + size=4 align=4 + base size=4 base align=4 +QFlag (0x7faaad6fe690) 0 + +Class QIncompatibleFlag + size=4 align=4 + base size=4 base align=4 +QIncompatibleFlag (0x7faaad6fee70) 0 + +Class QLatin1Char + size=1 align=1 + base size=1 base align=1 +QLatin1Char (0x7faaad72b5b0) 0 + +Class QChar + size=2 align=2 + base size=2 base align=2 +QChar (0x7faaad750150) 0 + +Class QBasicAtomicInt + size=4 align=4 + base size=4 base align=4 +QBasicAtomicInt (0x7faaad5b9310) 0 + +Class QAtomicInt + size=4 align=4 + base size=4 base align=4 +QAtomicInt (0x7faaad5f5cb0) 0 + QBasicAtomicInt (0x7faaad5f5d20) 0 + +Class QInternal + size=1 align=1 + base size=0 base align=1 +QInternal (0x7faaad44f4d0) 0 empty + +Class __locale_struct + size=232 align=8 + base size=232 base align=8 +__locale_struct (0x7faaad44f700) 0 + +Class QByteArray::Data + size=32 align=8 + base size=32 base align=8 +QByteArray::Data (0x7faaad488af0) 0 + +Class QByteArray + size=8 align=8 + base size=8 base align=8 +QByteArray (0x7faaad488a80) 0 + +Class QByteRef + size=16 align=8 + base size=12 base align=8 +QByteRef (0x7faaad329380) 0 + +Class QString::Null + size=1 align=1 + base size=0 base align=1 +QString::Null (0x7faaad22ad20) 0 empty + +Class QString::Data + size=32 align=8 + base size=32 base align=8 +QString::Data (0x7faaad2435b0) 0 + +Class QString + size=8 align=8 + base size=8 base align=8 +QString (0x7faaad3a6bd0) 0 + +Class QLatin1String + size=8 align=8 + base size=8 base align=8 +QLatin1String (0x7faaad1189a0) 0 + +Class QCharRef + size=16 align=8 + base size=12 base align=8 +QCharRef (0x7faaacfb8000) 0 + +Class QConstString + size=8 align=8 + base size=8 base align=8 +QConstString (0x7faaacf018c0) 0 + QString (0x7faaacf01930) 0 + +Class QStringRef + size=16 align=8 + base size=16 base align=8 +QStringRef (0x7faaacf27310) 0 + +Class QGenericArgument + size=16 align=8 + base size=16 base align=8 +QGenericArgument (0x7faaacda1700) 0 + +Class QGenericReturnArgument + size=16 align=8 + base size=16 base align=8 +QGenericReturnArgument (0x7faaacdaa2a0) 0 + QGenericArgument (0x7faaacdaa310) 0 + +Class QMetaObject + size=32 align=8 + base size=32 base align=8 +QMetaObject (0x7faaacdaab60) 0 + +Class QMetaObjectExtraData + size=16 align=8 + base size=16 base align=8 +QMetaObjectExtraData (0x7faaacdd2bd0) 0 + +Vtable for std::exception +std::exception::_ZTVSt9exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9exception) +16 std::exception::~exception +24 std::exception::~exception +32 std::exception::what + +Class std::exception + size=8 align=8 + base size=8 base align=8 +std::exception (0x7faaace261c0) 0 nearly-empty + vptr=((& std::exception::_ZTVSt9exception) + 16u) + +Vtable for std::bad_exception +std::bad_exception::_ZTVSt13bad_exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13bad_exception) +16 std::bad_exception::~bad_exception +24 std::bad_exception::~bad_exception +32 std::bad_exception::what + +Class std::bad_exception + size=8 align=8 + base size=8 base align=8 +std::bad_exception (0x7faaace26770) 0 nearly-empty + vptr=((& std::bad_exception::_ZTVSt13bad_exception) + 16u) + std::exception (0x7faaace267e0) 0 nearly-empty + primary-for std::bad_exception (0x7faaace26770) + +Vtable for std::bad_alloc +std::bad_alloc::_ZTVSt9bad_alloc: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9bad_alloc) +16 std::bad_alloc::~bad_alloc +24 std::bad_alloc::~bad_alloc +32 std::bad_alloc::what + +Class std::bad_alloc + size=8 align=8 + base size=8 base align=8 +std::bad_alloc (0x7faaace26930) 0 nearly-empty + vptr=((& std::bad_alloc::_ZTVSt9bad_alloc) + 16u) + std::exception (0x7faaace3d000) 0 nearly-empty + primary-for std::bad_alloc (0x7faaace26930) + +Class std::nothrow_t + size=1 align=1 + base size=0 base align=1 +std::nothrow_t (0x7faaace3d850) 0 empty + +Class QListData::Data + size=32 align=8 + base size=32 base align=8 +QListData::Data (0x7faaace3dd90) 0 + +Class QListData + size=8 align=8 + base size=8 base align=8 +QListData (0x7faaace3dd20) 0 + +Class QScopedPointerPodDeleter + size=1 align=1 + base size=0 base align=1 +QScopedPointerPodDeleter (0x7faaacd69850) 0 empty + +Vtable for QObjectData +QObjectData::_ZTV11QObjectData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QObjectData) +16 __cxa_pure_virtual +24 __cxa_pure_virtual + +Class QObjectData + size=48 align=8 + base size=48 base align=8 +QObjectData (0x7faaacd892a0) 0 + vptr=((& QObjectData::_ZTV11QObjectData) + 16u) + +Vtable for QObject +QObject::_ZTV7QObject: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QObject) +16 QObject::metaObject +24 QObject::qt_metacast +32 QObject::qt_metacall +40 QObject::~QObject +48 QObject::~QObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObject + size=16 align=8 + base size=16 base align=8 +QObject (0x7faaacd895b0) 0 + vptr=((& QObject::_ZTV7QObject) + 16u) + +Vtable for QObjectUserData +QObjectUserData::_ZTV15QObjectUserData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QObjectUserData) +16 QObjectUserData::~QObjectUserData +24 QObjectUserData::~QObjectUserData + +Class QObjectUserData + size=8 align=8 + base size=8 base align=8 +QObjectUserData (0x7faaacc0db60) 0 nearly-empty + vptr=((& QObjectUserData::_ZTV15QObjectUserData) + 16u) + +Vtable for QIODevice +QIODevice::_ZTV9QIODevice: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QIODevice) +16 QIODevice::metaObject +24 QIODevice::qt_metacast +32 QIODevice::qt_metacall +40 QIODevice::~QIODevice +48 QIODevice::~QIODevice +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QIODevice::isSequential +120 QIODevice::open +128 QIODevice::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QIODevice::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 __cxa_pure_virtual +224 QIODevice::readLineData +232 __cxa_pure_virtual + +Class QIODevice + size=16 align=8 + base size=16 base align=8 +QIODevice (0x7faaacc1d150) 0 + vptr=((& QIODevice::_ZTV9QIODevice) + 16u) + QObject (0x7faaacc1d1c0) 0 + primary-for QIODevice (0x7faaacc1d150) + +Class _IO_marker + size=24 align=8 + base size=24 base align=8 +_IO_marker (0x7faaacc7ecb0) 0 + +Class _IO_FILE + size=216 align=8 + base size=216 base align=8 +_IO_FILE (0x7faaacc7ed20) 0 + +Vtable for QFile +QFile::_ZTV5QFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QFile) +16 QFile::metaObject +24 QFile::qt_metacast +32 QFile::qt_metacall +40 QFile::~QFile +48 QFile::~QFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QFile::fileEngine + +Class QFile + size=16 align=8 + base size=16 base align=8 +QFile (0x7faaacc7ee00) 0 + vptr=((& QFile::_ZTV5QFile) + 16u) + QIODevice (0x7faaacc7ee70) 0 + primary-for QFile (0x7faaacc7ee00) + QObject (0x7faaacc7eee0) 0 + primary-for QIODevice (0x7faaacc7ee70) + +Class QFileInfo + size=8 align=8 + base size=8 base align=8 +QFileInfo (0x7faaacb21070) 0 + +Vtable for QDataStream +QDataStream::_ZTV11QDataStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QDataStream) +16 QDataStream::~QDataStream +24 QDataStream::~QDataStream + +Class QDataStream + size=40 align=8 + base size=40 base align=8 +QDataStream (0x7faaacb73a10) 0 + vptr=((& QDataStream::_ZTV11QDataStream) + 16u) + +Class QRegExp + size=8 align=8 + base size=8 base align=8 +QRegExp (0x7faaac9dfe70) 0 + +Class QStringMatcher::Data + size=272 align=8 + base size=272 base align=8 +QStringMatcher::Data (0x7faaaca462a0) 0 + +Class QStringMatcher + size=1048 align=8 + base size=1048 base align=8 +QStringMatcher (0x7faaaca3ac40) 0 + +Class QStringList + size=8 align=8 + base size=8 base align=8 +QStringList (0x7faaaca46850) 0 + QList (0x7faaaca468c0) 0 + +Class QDir + size=8 align=8 + base size=8 base align=8 +QDir (0x7faaac8e54d0) 0 + +Class QAbstractFileEngine::ExtensionOption + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionOption (0x7faaac98d8c0) 0 empty + +Class QAbstractFileEngine::ExtensionReturn + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionReturn (0x7faaac98d930) 0 empty + +Class QAbstractFileEngine::MapExtensionOption + size=24 align=8 + base size=20 base align=8 +QAbstractFileEngine::MapExtensionOption (0x7faaac98d9a0) 0 + QAbstractFileEngine::ExtensionOption (0x7faaac98da10) 0 empty + +Class QAbstractFileEngine::MapExtensionReturn + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::MapExtensionReturn (0x7faaac98dbd0) 0 + QAbstractFileEngine::ExtensionReturn (0x7faaac98dc40) 0 empty + +Class QAbstractFileEngine::UnMapExtensionOption + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::UnMapExtensionOption (0x7faaac98dcb0) 0 + QAbstractFileEngine::ExtensionOption (0x7faaac98dd20) 0 empty + +Vtable for QAbstractFileEngine +QAbstractFileEngine::_ZTV19QAbstractFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractFileEngine) +16 QAbstractFileEngine::~QAbstractFileEngine +24 QAbstractFileEngine::~QAbstractFileEngine +32 QAbstractFileEngine::open +40 QAbstractFileEngine::close +48 QAbstractFileEngine::flush +56 QAbstractFileEngine::size +64 QAbstractFileEngine::pos +72 QAbstractFileEngine::seek +80 QAbstractFileEngine::isSequential +88 QAbstractFileEngine::remove +96 QAbstractFileEngine::copy +104 QAbstractFileEngine::rename +112 QAbstractFileEngine::link +120 QAbstractFileEngine::mkdir +128 QAbstractFileEngine::rmdir +136 QAbstractFileEngine::setSize +144 QAbstractFileEngine::caseSensitive +152 QAbstractFileEngine::isRelativePath +160 QAbstractFileEngine::entryList +168 QAbstractFileEngine::fileFlags +176 QAbstractFileEngine::setPermissions +184 QAbstractFileEngine::fileName +192 QAbstractFileEngine::ownerId +200 QAbstractFileEngine::owner +208 QAbstractFileEngine::fileTime +216 QAbstractFileEngine::setFileName +224 QAbstractFileEngine::handle +232 QAbstractFileEngine::beginEntryList +240 QAbstractFileEngine::endEntryList +248 QAbstractFileEngine::read +256 QAbstractFileEngine::readLine +264 QAbstractFileEngine::write +272 QAbstractFileEngine::extension +280 QAbstractFileEngine::supportsExtension + +Class QAbstractFileEngine + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngine (0x7faaac971850) 0 + vptr=((& QAbstractFileEngine::_ZTV19QAbstractFileEngine) + 16u) + +Vtable for QAbstractFileEngineHandler +QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QAbstractFileEngineHandler) +16 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +24 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +32 __cxa_pure_virtual + +Class QAbstractFileEngineHandler + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngineHandler (0x7faaac7c0bd0) 0 nearly-empty + vptr=((& QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler) + 16u) + +Vtable for QAbstractFileEngineIterator +QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QAbstractFileEngineIterator) +16 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +24 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QAbstractFileEngineIterator::currentFileInfo +64 QAbstractFileEngineIterator::entryInfo + +Class QAbstractFileEngineIterator + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngineIterator (0x7faaac7c0d90) 0 + vptr=((& QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator) + 16u) + +Vtable for QBuffer +QBuffer::_ZTV7QBuffer: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QBuffer) +16 QBuffer::metaObject +24 QBuffer::qt_metacast +32 QBuffer::qt_metacall +40 QBuffer::~QBuffer +48 QBuffer::~QBuffer +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QBuffer::connectNotify +104 QBuffer::disconnectNotify +112 QIODevice::isSequential +120 QBuffer::open +128 QBuffer::close +136 QBuffer::pos +144 QBuffer::size +152 QBuffer::seek +160 QBuffer::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QBuffer::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QBuffer::readData +224 QIODevice::readLineData +232 QBuffer::writeData + +Class QBuffer + size=16 align=8 + base size=16 base align=8 +QBuffer (0x7faaac7d4690) 0 + vptr=((& QBuffer::_ZTV7QBuffer) + 16u) + QIODevice (0x7faaac7d4700) 0 + primary-for QBuffer (0x7faaac7d4690) + QObject (0x7faaac7d4770) 0 + primary-for QIODevice (0x7faaac7d4700) + +Class QHashData::Node + size=16 align=8 + base size=16 base align=8 +QHashData::Node (0x7faaac818e00) 0 + +Class QHashData + size=40 align=8 + base size=40 base align=8 +QHashData (0x7faaac818d90) 0 + +Class QHashDummyValue + size=1 align=1 + base size=0 base align=1 +QHashDummyValue (0x7faaac83a150) 0 empty + +Class QMapData::Node + size=16 align=8 + base size=16 base align=8 +QMapData::Node (0x7faaac73da80) 0 + +Class QMapData + size=128 align=8 + base size=128 base align=8 +QMapData (0x7faaac73da10) 0 + +Vtable for QSystemLocale +QSystemLocale::_ZTV13QSystemLocale: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSystemLocale) +16 QSystemLocale::~QSystemLocale +24 QSystemLocale::~QSystemLocale +32 QSystemLocale::query +40 QSystemLocale::fallbackLocale + +Class QSystemLocale + size=8 align=8 + base size=8 base align=8 +QSystemLocale (0x7faaac676690) 0 nearly-empty + vptr=((& QSystemLocale::_ZTV13QSystemLocale) + 16u) + +Class QLocale::Data + size=4 align=2 + base size=4 base align=2 +QLocale::Data (0x7faaac4c1d90) 0 + +Class QLocale + size=8 align=8 + base size=8 base align=8 +QLocale (0x7faaac676af0) 0 + +Class QTextCodec::ConverterState + size=32 align=8 + base size=32 base align=8 +QTextCodec::ConverterState (0x7faaac515bd0) 0 + +Vtable for QTextCodec +QTextCodec::_ZTV10QTextCodec: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextCodec) +16 __cxa_pure_virtual +24 QTextCodec::aliases +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QTextCodec::~QTextCodec +64 QTextCodec::~QTextCodec + +Class QTextCodec + size=8 align=8 + base size=8 base align=8 +QTextCodec (0x7faaac509460) 0 nearly-empty + vptr=((& QTextCodec::_ZTV10QTextCodec) + 16u) + +Class QTextEncoder + size=40 align=8 + base size=40 base align=8 +QTextEncoder (0x7faaac58a150) 0 + +Class QTextDecoder + size=40 align=8 + base size=40 base align=8 +QTextDecoder (0x7faaac58af50) 0 + +Vtable for QTextStream +QTextStream::_ZTV11QTextStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTextStream) +16 QTextStream::~QTextStream +24 QTextStream::~QTextStream + +Class QTextStream + size=16 align=8 + base size=16 base align=8 +QTextStream (0x7faaac592d90) 0 + vptr=((& QTextStream::_ZTV11QTextStream) + 16u) + +Class QTextStreamManipulator + size=40 align=8 + base size=38 base align=8 +QTextStreamManipulator (0x7faaac40ca80) 0 + +Vtable for QTextIStream +QTextIStream::_ZTV12QTextIStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextIStream) +16 QTextIStream::~QTextIStream +24 QTextIStream::~QTextIStream + +Class QTextIStream + size=16 align=8 + base size=16 base align=8 +QTextIStream (0x7faaac43e070) 0 + vptr=((& QTextIStream::_ZTV12QTextIStream) + 16u) + QTextStream (0x7faaac43e0e0) 0 + primary-for QTextIStream (0x7faaac43e070) + +Vtable for QTextOStream +QTextOStream::_ZTV12QTextOStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextOStream) +16 QTextOStream::~QTextOStream +24 QTextOStream::~QTextOStream + +Class QTextOStream + size=16 align=8 + base size=16 base align=8 +QTextOStream (0x7faaac44aee0) 0 + vptr=((& QTextOStream::_ZTV12QTextOStream) + 16u) + QTextStream (0x7faaac44af50) 0 + primary-for QTextOStream (0x7faaac44aee0) + +Class wait + size=4 align=4 + base size=4 base align=4 +wait (0x7faaac45dd90) 0 + +Class timespec + size=16 align=8 + base size=16 base align=8 +timespec (0x7faaac46a0e0) 0 + +Class timeval + size=16 align=8 + base size=16 base align=8 +timeval (0x7faaac46a150) 0 + +Class __pthread_internal_list + size=16 align=8 + base size=16 base align=8 +__pthread_internal_list (0x7faaac46a2a0) 0 + +Class random_data + size=48 align=8 + base size=48 base align=8 +random_data (0x7faaac46a850) 0 + +Class drand48_data + size=24 align=8 + base size=24 base align=8 +drand48_data (0x7faaac46a8c0) 0 + +Class QVectorData + size=16 align=4 + base size=16 base align=4 +QVectorData (0x7faaac46a930) 0 + +Class QContiguousCacheData + size=24 align=4 + base size=24 base align=4 +QContiguousCacheData (0x7faaac227620) 0 + +Class QDebug::Stream + size=40 align=8 + base size=34 base align=8 +QDebug::Stream (0x7faaac088150) 0 + +Class QDebug + size=8 align=8 + base size=8 base align=8 +QDebug (0x7faaac0880e0) 0 + +Class QNoDebug + size=1 align=1 + base size=0 base align=1 +QNoDebug (0x7faaac1350e0) 0 empty + +Vtable for QDirIterator +QDirIterator::_ZTV12QDirIterator: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QDirIterator) +16 QDirIterator::~QDirIterator +24 QDirIterator::~QDirIterator + +Class QDirIterator + size=16 align=8 + base size=16 base align=8 +QDirIterator (0x7faaac145700) 0 + vptr=((& QDirIterator::_ZTV12QDirIterator) + 16u) + +Vtable for QFileSystemWatcher +QFileSystemWatcher::_ZTV18QFileSystemWatcher: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFileSystemWatcher) +16 QFileSystemWatcher::metaObject +24 QFileSystemWatcher::qt_metacast +32 QFileSystemWatcher::qt_metacall +40 QFileSystemWatcher::~QFileSystemWatcher +48 QFileSystemWatcher::~QFileSystemWatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QFileSystemWatcher + size=16 align=8 + base size=16 base align=8 +QFileSystemWatcher (0x7faaabfa3540) 0 + vptr=((& QFileSystemWatcher::_ZTV18QFileSystemWatcher) + 16u) + QObject (0x7faaabfa35b0) 0 + primary-for QFileSystemWatcher (0x7faaabfa3540) + +Vtable for QFSFileEngine +QFSFileEngine::_ZTV13QFSFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QFSFileEngine) +16 QFSFileEngine::~QFSFileEngine +24 QFSFileEngine::~QFSFileEngine +32 QFSFileEngine::open +40 QFSFileEngine::close +48 QFSFileEngine::flush +56 QFSFileEngine::size +64 QFSFileEngine::pos +72 QFSFileEngine::seek +80 QFSFileEngine::isSequential +88 QFSFileEngine::remove +96 QFSFileEngine::copy +104 QFSFileEngine::rename +112 QFSFileEngine::link +120 QFSFileEngine::mkdir +128 QFSFileEngine::rmdir +136 QFSFileEngine::setSize +144 QFSFileEngine::caseSensitive +152 QFSFileEngine::isRelativePath +160 QFSFileEngine::entryList +168 QFSFileEngine::fileFlags +176 QFSFileEngine::setPermissions +184 QFSFileEngine::fileName +192 QFSFileEngine::ownerId +200 QFSFileEngine::owner +208 QFSFileEngine::fileTime +216 QFSFileEngine::setFileName +224 QFSFileEngine::handle +232 QFSFileEngine::beginEntryList +240 QFSFileEngine::endEntryList +248 QFSFileEngine::read +256 QFSFileEngine::readLine +264 QFSFileEngine::write +272 QFSFileEngine::extension +280 QFSFileEngine::supportsExtension + +Class QFSFileEngine + size=16 align=8 + base size=16 base align=8 +QFSFileEngine (0x7faaabfb5a80) 0 + vptr=((& QFSFileEngine::_ZTV13QFSFileEngine) + 16u) + QAbstractFileEngine (0x7faaabfb5af0) 0 + primary-for QFSFileEngine (0x7faaabfb5a80) + +Class QSharedData + size=4 align=4 + base size=4 base align=4 +QSharedData (0x7faaabfc5e70) 0 + +Class QProcessEnvironment + size=8 align=8 + base size=8 base align=8 +QProcessEnvironment (0x7faaac00c1c0) 0 + +Vtable for QProcess +QProcess::_ZTV8QProcess: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QProcess) +16 QProcess::metaObject +24 QProcess::qt_metacast +32 QProcess::qt_metacall +40 QProcess::~QProcess +48 QProcess::~QProcess +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QProcess::isSequential +120 QIODevice::open +128 QProcess::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QProcess::atEnd +168 QIODevice::reset +176 QProcess::bytesAvailable +184 QProcess::bytesToWrite +192 QProcess::canReadLine +200 QProcess::waitForReadyRead +208 QProcess::waitForBytesWritten +216 QProcess::readData +224 QIODevice::readLineData +232 QProcess::writeData +240 QProcess::setupChildProcess + +Class QProcess + size=16 align=8 + base size=16 base align=8 +QProcess (0x7faaac00ccb0) 0 + vptr=((& QProcess::_ZTV8QProcess) + 16u) + QIODevice (0x7faaac00cd20) 0 + primary-for QProcess (0x7faaac00ccb0) + QObject (0x7faaac00cd90) 0 + primary-for QIODevice (0x7faaac00cd20) + +Class QResource + size=8 align=8 + base size=8 base align=8 +QResource (0x7faaac0561c0) 0 + +Class QMetaType + size=1 align=1 + base size=0 base align=1 +QMetaType (0x7faaac056e70) 0 empty + +Class QVariant::PrivateShared + size=16 align=8 + base size=12 base align=8 +QVariant::PrivateShared (0x7faaabf54700) 0 + +Class QVariant::Private::Data + size=8 align=8 + base size=8 base align=8 +QVariant::Private::Data (0x7faaabf54a10) 0 + +Class QVariant::Private + size=16 align=8 + base size=12 base align=8 +QVariant::Private (0x7faaabf547e0) 0 + +Class QVariant::Handler + size=72 align=8 + base size=72 base align=8 +QVariant::Handler (0x7faaabf62700) 0 + +Class QVariant + size=16 align=8 + base size=16 base align=8 +QVariant (0x7faaabf237e0) 0 + +Class QVariantComparisonHelper + size=8 align=8 + base size=8 base align=8 +QVariantComparisonHelper (0x7faaabe149a0) 0 + +Vtable for QSettings +QSettings::_ZTV9QSettings: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QSettings) +16 QSettings::metaObject +24 QSettings::qt_metacast +32 QSettings::qt_metacall +40 QSettings::~QSettings +48 QSettings::~QSettings +56 QSettings::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSettings + size=16 align=8 + base size=16 base align=8 +QSettings (0x7faaabe3bee0) 0 + vptr=((& QSettings::_ZTV9QSettings) + 16u) + QObject (0x7faaabe3bf50) 0 + primary-for QSettings (0x7faaabe3bee0) + +Vtable for QTemporaryFile +QTemporaryFile::_ZTV14QTemporaryFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QTemporaryFile) +16 QTemporaryFile::metaObject +24 QTemporaryFile::qt_metacast +32 QTemporaryFile::qt_metacall +40 QTemporaryFile::~QTemporaryFile +48 QTemporaryFile::~QTemporaryFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QTemporaryFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QTemporaryFile::fileEngine + +Class QTemporaryFile + size=16 align=8 + base size=16 base align=8 +QTemporaryFile (0x7faaabcbc2a0) 0 + vptr=((& QTemporaryFile::_ZTV14QTemporaryFile) + 16u) + QFile (0x7faaabcbc310) 0 + primary-for QTemporaryFile (0x7faaabcbc2a0) + QIODevice (0x7faaabcbc380) 0 + primary-for QFile (0x7faaabcbc310) + QObject (0x7faaabcbc3f0) 0 + primary-for QIODevice (0x7faaabcbc380) + +Class QUrl + size=8 align=8 + base size=8 base align=8 +QUrl (0x7faaabcd89a0) 0 + +Class QXmlStreamStringRef + size=16 align=8 + base size=16 base align=8 +QXmlStreamStringRef (0x7faaabd65070) 0 + +Class QXmlStreamAttribute + size=80 align=8 + base size=73 base align=8 +QXmlStreamAttribute (0x7faaabb80850) 0 + +Class QXmlStreamAttributes + size=8 align=8 + base size=8 base align=8 +QXmlStreamAttributes (0x7faaabba7310) 0 + QVector (0x7faaabba7380) 0 + +Class QXmlStreamNamespaceDeclaration + size=40 align=8 + base size=40 base align=8 +QXmlStreamNamespaceDeclaration (0x7faaabba77e0) 0 + +Class QXmlStreamNotationDeclaration + size=56 align=8 + base size=56 base align=8 +QXmlStreamNotationDeclaration (0x7faaabbe91c0) 0 + +Class QXmlStreamEntityDeclaration + size=88 align=8 + base size=88 base align=8 +QXmlStreamEntityDeclaration (0x7faaabc0b070) 0 + +Vtable for QXmlStreamEntityResolver +QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QXmlStreamEntityResolver) +16 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +24 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +32 QXmlStreamEntityResolver::resolveEntity +40 QXmlStreamEntityResolver::resolveUndeclaredEntity + +Class QXmlStreamEntityResolver + size=8 align=8 + base size=8 base align=8 +QXmlStreamEntityResolver (0x7faaabc239a0) 0 nearly-empty + vptr=((& QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver) + 16u) + +Class QXmlStreamReader + size=8 align=8 + base size=8 base align=8 +QXmlStreamReader (0x7faaabc23b60) 0 + +Class QXmlStreamWriter + size=8 align=8 + base size=8 base align=8 +QXmlStreamWriter (0x7faaabc6dc40) 0 + +Vtable for QAbstractState +QAbstractState::_ZTV14QAbstractState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QAbstractState) +16 QAbstractState::metaObject +24 QAbstractState::qt_metacast +32 QAbstractState::qt_metacall +40 QAbstractState::~QAbstractState +48 QAbstractState::~QAbstractState +56 QAbstractState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QAbstractState + size=16 align=8 + base size=16 base align=8 +QAbstractState (0x7faaaba7aa80) 0 + vptr=((& QAbstractState::_ZTV14QAbstractState) + 16u) + QObject (0x7faaaba7aaf0) 0 + primary-for QAbstractState (0x7faaaba7aa80) + +Vtable for QAbstractTransition +QAbstractTransition::_ZTV19QAbstractTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractTransition) +16 QAbstractTransition::metaObject +24 QAbstractTransition::qt_metacast +32 QAbstractTransition::qt_metacall +40 QAbstractTransition::~QAbstractTransition +48 QAbstractTransition::~QAbstractTransition +56 QAbstractTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QAbstractTransition + size=16 align=8 + base size=16 base align=8 +QAbstractTransition (0x7faaabaa02a0) 0 + vptr=((& QAbstractTransition::_ZTV19QAbstractTransition) + 16u) + QObject (0x7faaabaa0310) 0 + primary-for QAbstractTransition (0x7faaabaa02a0) + +Vtable for QEvent +QEvent::_ZTV6QEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QEvent) +16 QEvent::~QEvent +24 QEvent::~QEvent + +Class QEvent + size=24 align=8 + base size=20 base align=8 +QEvent (0x7faaabab3af0) 0 + vptr=((& QEvent::_ZTV6QEvent) + 16u) + +Vtable for QTimerEvent +QTimerEvent::_ZTV11QTimerEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTimerEvent) +16 QTimerEvent::~QTimerEvent +24 QTimerEvent::~QTimerEvent + +Class QTimerEvent + size=24 align=8 + base size=24 base align=8 +QTimerEvent (0x7faaabad5700) 0 + vptr=((& QTimerEvent::_ZTV11QTimerEvent) + 16u) + QEvent (0x7faaabad5770) 0 + primary-for QTimerEvent (0x7faaabad5700) + +Vtable for QChildEvent +QChildEvent::_ZTV11QChildEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QChildEvent) +16 QChildEvent::~QChildEvent +24 QChildEvent::~QChildEvent + +Class QChildEvent + size=32 align=8 + base size=32 base align=8 +QChildEvent (0x7faaabad5b60) 0 + vptr=((& QChildEvent::_ZTV11QChildEvent) + 16u) + QEvent (0x7faaabad5bd0) 0 + primary-for QChildEvent (0x7faaabad5b60) + +Vtable for QCustomEvent +QCustomEvent::_ZTV12QCustomEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QCustomEvent) +16 QCustomEvent::~QCustomEvent +24 QCustomEvent::~QCustomEvent + +Class QCustomEvent + size=24 align=8 + base size=20 base align=8 +QCustomEvent (0x7faaabadee00) 0 + vptr=((& QCustomEvent::_ZTV12QCustomEvent) + 16u) + QEvent (0x7faaabadee70) 0 + primary-for QCustomEvent (0x7faaabadee00) + +Vtable for QDynamicPropertyChangeEvent +QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QDynamicPropertyChangeEvent) +16 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent +24 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent + +Class QDynamicPropertyChangeEvent + size=32 align=8 + base size=32 base align=8 +QDynamicPropertyChangeEvent (0x7faaabaf0620) 0 + vptr=((& QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent) + 16u) + QEvent (0x7faaabaf0690) 0 + primary-for QDynamicPropertyChangeEvent (0x7faaabaf0620) + +Vtable for QEventTransition +QEventTransition::_ZTV16QEventTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QEventTransition) +16 QEventTransition::metaObject +24 QEventTransition::qt_metacast +32 QEventTransition::qt_metacall +40 QEventTransition::~QEventTransition +48 QEventTransition::~QEventTransition +56 QEventTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QEventTransition::eventTest +120 QEventTransition::onTransition + +Class QEventTransition + size=16 align=8 + base size=16 base align=8 +QEventTransition (0x7faaabaf0af0) 0 + vptr=((& QEventTransition::_ZTV16QEventTransition) + 16u) + QAbstractTransition (0x7faaabaf0b60) 0 + primary-for QEventTransition (0x7faaabaf0af0) + QObject (0x7faaabaf0bd0) 0 + primary-for QAbstractTransition (0x7faaabaf0b60) + +Vtable for QFinalState +QFinalState::_ZTV11QFinalState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFinalState) +16 QFinalState::metaObject +24 QFinalState::qt_metacast +32 QFinalState::qt_metacall +40 QFinalState::~QFinalState +48 QFinalState::~QFinalState +56 QFinalState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFinalState::onEntry +120 QFinalState::onExit + +Class QFinalState + size=16 align=8 + base size=16 base align=8 +QFinalState (0x7faaabb0c9a0) 0 + vptr=((& QFinalState::_ZTV11QFinalState) + 16u) + QAbstractState (0x7faaabb0ca10) 0 + primary-for QFinalState (0x7faaabb0c9a0) + QObject (0x7faaabb0ca80) 0 + primary-for QAbstractState (0x7faaabb0ca10) + +Vtable for QHistoryState +QHistoryState::_ZTV13QHistoryState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QHistoryState) +16 QHistoryState::metaObject +24 QHistoryState::qt_metacast +32 QHistoryState::qt_metacall +40 QHistoryState::~QHistoryState +48 QHistoryState::~QHistoryState +56 QHistoryState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QHistoryState::onEntry +120 QHistoryState::onExit + +Class QHistoryState + size=16 align=8 + base size=16 base align=8 +QHistoryState (0x7faaabb25230) 0 + vptr=((& QHistoryState::_ZTV13QHistoryState) + 16u) + QAbstractState (0x7faaabb252a0) 0 + primary-for QHistoryState (0x7faaabb25230) + QObject (0x7faaabb25310) 0 + primary-for QAbstractState (0x7faaabb252a0) + +Vtable for QSignalTransition +QSignalTransition::_ZTV17QSignalTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QSignalTransition) +16 QSignalTransition::metaObject +24 QSignalTransition::qt_metacast +32 QSignalTransition::qt_metacall +40 QSignalTransition::~QSignalTransition +48 QSignalTransition::~QSignalTransition +56 QSignalTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QSignalTransition::eventTest +120 QSignalTransition::onTransition + +Class QSignalTransition + size=16 align=8 + base size=16 base align=8 +QSignalTransition (0x7faaabb37f50) 0 + vptr=((& QSignalTransition::_ZTV17QSignalTransition) + 16u) + QAbstractTransition (0x7faaabb40000) 0 + primary-for QSignalTransition (0x7faaabb37f50) + QObject (0x7faaabb40070) 0 + primary-for QAbstractTransition (0x7faaabb40000) + +Vtable for QState +QState::_ZTV6QState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QState) +16 QState::metaObject +24 QState::qt_metacast +32 QState::qt_metacall +40 QState::~QState +48 QState::~QState +56 QState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QState::onEntry +120 QState::onExit + +Class QState + size=16 align=8 + base size=16 base align=8 +QState (0x7faaabb50af0) 0 + vptr=((& QState::_ZTV6QState) + 16u) + QAbstractState (0x7faaabb50b60) 0 + primary-for QState (0x7faaabb50af0) + QObject (0x7faaabb50bd0) 0 + primary-for QAbstractState (0x7faaabb50b60) + +Vtable for QStateMachine::SignalEvent +QStateMachine::SignalEvent::_ZTVN13QStateMachine11SignalEventE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN13QStateMachine11SignalEventE) +16 QStateMachine::SignalEvent::~SignalEvent +24 QStateMachine::SignalEvent::~SignalEvent + +Class QStateMachine::SignalEvent + size=48 align=8 + base size=48 base align=8 +QStateMachine::SignalEvent (0x7faaab975150) 0 + vptr=((& QStateMachine::SignalEvent::_ZTVN13QStateMachine11SignalEventE) + 16u) + QEvent (0x7faaab9751c0) 0 + primary-for QStateMachine::SignalEvent (0x7faaab975150) + +Vtable for QStateMachine::WrappedEvent +QStateMachine::WrappedEvent::_ZTVN13QStateMachine12WrappedEventE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN13QStateMachine12WrappedEventE) +16 QStateMachine::WrappedEvent::~WrappedEvent +24 QStateMachine::WrappedEvent::~WrappedEvent + +Class QStateMachine::WrappedEvent + size=40 align=8 + base size=40 base align=8 +QStateMachine::WrappedEvent (0x7faaab975700) 0 + vptr=((& QStateMachine::WrappedEvent::_ZTVN13QStateMachine12WrappedEventE) + 16u) + QEvent (0x7faaab975770) 0 + primary-for QStateMachine::WrappedEvent (0x7faaab975700) + +Vtable for QStateMachine +QStateMachine::_ZTV13QStateMachine: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QStateMachine) +16 QStateMachine::metaObject +24 QStateMachine::qt_metacast +32 QStateMachine::qt_metacall +40 QStateMachine::~QStateMachine +48 QStateMachine::~QStateMachine +56 QStateMachine::event +64 QStateMachine::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QStateMachine::onEntry +120 QStateMachine::onExit +128 QStateMachine::beginSelectTransitions +136 QStateMachine::endSelectTransitions +144 QStateMachine::beginMicrostep +152 QStateMachine::endMicrostep + +Class QStateMachine + size=16 align=8 + base size=16 base align=8 +QStateMachine (0x7faaab96cee0) 0 + vptr=((& QStateMachine::_ZTV13QStateMachine) + 16u) + QState (0x7faaab96cf50) 0 + primary-for QStateMachine (0x7faaab96cee0) + QAbstractState (0x7faaab975000) 0 + primary-for QState (0x7faaab96cf50) + QObject (0x7faaab975070) 0 + primary-for QAbstractState (0x7faaab975000) + +Class QBitArray + size=8 align=8 + base size=8 base align=8 +QBitArray (0x7faaab9a8150) 0 + +Class QBitRef + size=16 align=8 + base size=12 base align=8 +QBitRef (0x7faaab9fbe00) 0 + +Class QByteArrayMatcher::Data + size=272 align=8 + base size=272 base align=8 +QByteArrayMatcher::Data (0x7faaaba0faf0) 0 + +Class QByteArrayMatcher + size=1040 align=8 + base size=1040 base align=8 +QByteArrayMatcher (0x7faaaba0f4d0) 0 + +Class QCryptographicHash + size=8 align=8 + base size=8 base align=8 +QCryptographicHash (0x7faaaba47150) 0 + +Vtable for QtSharedPointer::ExternalRefCountData +QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN15QtSharedPointer20ExternalRefCountDataE) +16 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +24 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +32 QtSharedPointer::ExternalRefCountData::destroy + +Class QtSharedPointer::ExternalRefCountData + size=16 align=8 + base size=16 base align=8 +QtSharedPointer::ExternalRefCountData (0x7faaab870070) 0 + vptr=((& QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE) + 16u) + +Vtable for QtSharedPointer::ExternalRefCountWithDestroyFn +QtSharedPointer::ExternalRefCountWithDestroyFn::_ZTVN15QtSharedPointer29ExternalRefCountWithDestroyFnE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN15QtSharedPointer29ExternalRefCountWithDestroyFnE) +16 QtSharedPointer::ExternalRefCountWithDestroyFn::~ExternalRefCountWithDestroyFn +24 QtSharedPointer::ExternalRefCountWithDestroyFn::~ExternalRefCountWithDestroyFn +32 QtSharedPointer::ExternalRefCountWithDestroyFn::destroy + +Class QtSharedPointer::ExternalRefCountWithDestroyFn + size=24 align=8 + base size=24 base align=8 +QtSharedPointer::ExternalRefCountWithDestroyFn (0x7faaab888930) 0 + vptr=((& QtSharedPointer::ExternalRefCountWithDestroyFn::_ZTVN15QtSharedPointer29ExternalRefCountWithDestroyFnE) + 16u) + QtSharedPointer::ExternalRefCountData (0x7faaab8889a0) 0 + primary-for QtSharedPointer::ExternalRefCountWithDestroyFn (0x7faaab888930) + +Class QDate + size=4 align=4 + base size=4 base align=4 +QDate (0x7faaab9105b0) 0 + +Class QTime + size=4 align=4 + base size=4 base align=4 +QTime (0x7faaab940540) 0 + +Class QDateTime + size=8 align=8 + base size=8 base align=8 +QDateTime (0x7faaab95eaf0) 0 + +Class QEasingCurve + size=8 align=8 + base size=8 base align=8 +QEasingCurve (0x7faaab7a4000) 0 + +Class QPoint + size=8 align=4 + base size=8 base align=4 +QPoint (0x7faaab7a4ee0) 0 + +Class QPointF + size=16 align=8 + base size=16 base align=8 +QPointF (0x7faaab7e3af0) 0 + +Class QLine + size=16 align=4 + base size=16 base align=4 +QLine (0x7faaab823af0) 0 + +Class QLineF + size=32 align=8 + base size=32 base align=8 +QLineF (0x7faaab8609a0) 0 + +Class QLinkedListData + size=32 align=8 + base size=32 base align=8 +QLinkedListData (0x7faaab6b5460) 0 + +Class QMargins + size=16 align=4 + base size=16 base align=4 +QMargins (0x7faaab573380) 0 + +Class QSize + size=8 align=4 + base size=8 base align=4 +QSize (0x7faaab5a0150) 0 + +Class QSizeF + size=16 align=8 + base size=16 base align=8 +QSizeF (0x7faaab5e1e00) 0 + +Class QRect + size=16 align=4 + base size=16 base align=4 +QRect (0x7faaab632380) 0 + +Class QRectF + size=32 align=8 + base size=32 base align=8 +QRectF (0x7faaab4e1d20) 0 + +Class QLatin1Literal + size=16 align=8 + base size=16 base align=8 +QLatin1Literal (0x7faaab38fee0) 0 + +Class QAbstractConcatenable + size=1 align=1 + base size=0 base align=1 +QAbstractConcatenable (0x7faaab3a13f0) 0 empty + +Class QTextBoundaryFinder + size=48 align=8 + base size=48 base align=8 +QTextBoundaryFinder (0x7faaab3d9380) 0 + +Vtable for QTimeLine +QTimeLine::_ZTV9QTimeLine: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTimeLine) +16 QTimeLine::metaObject +24 QTimeLine::qt_metacast +32 QTimeLine::qt_metacall +40 QTimeLine::~QTimeLine +48 QTimeLine::~QTimeLine +56 QObject::event +64 QObject::eventFilter +72 QTimeLine::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTimeLine::valueForTime + +Class QTimeLine + size=16 align=8 + base size=16 base align=8 +QTimeLine (0x7faaab3e8700) 0 + vptr=((& QTimeLine::_ZTV9QTimeLine) + 16u) + QObject (0x7faaab3e8770) 0 + primary-for QTimeLine (0x7faaab3e8700) + +Vtable for QRunnable +QRunnable::_ZTV9QRunnable: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QRunnable) +16 __cxa_pure_virtual +24 QRunnable::~QRunnable +32 QRunnable::~QRunnable + +Class QRunnable + size=16 align=8 + base size=12 base align=8 +QRunnable (0x7faaab411f50) 0 + vptr=((& QRunnable::_ZTV9QRunnable) + 16u) + +Class QMutex + size=8 align=8 + base size=8 base align=8 +QMutex (0x7faaab448620) 0 + +Class QMutexLocker + size=8 align=8 + base size=8 base align=8 +QMutexLocker (0x7faaab4571c0) 0 + +Vtable for QtConcurrent::Exception +QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent9ExceptionE) +16 QtConcurrent::Exception::~Exception +24 QtConcurrent::Exception::~Exception +32 std::exception::what +40 QtConcurrent::Exception::raise +48 QtConcurrent::Exception::clone + +Class QtConcurrent::Exception + size=8 align=8 + base size=8 base align=8 +QtConcurrent::Exception (0x7faaab26c4d0) 0 nearly-empty + vptr=((& QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE) + 16u) + std::exception (0x7faaab26c540) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7faaab26c4d0) + +Vtable for QtConcurrent::UnhandledException +QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent18UnhandledExceptionE) +16 QtConcurrent::UnhandledException::~UnhandledException +24 QtConcurrent::UnhandledException::~UnhandledException +32 std::exception::what +40 QtConcurrent::UnhandledException::raise +48 QtConcurrent::UnhandledException::clone + +Class QtConcurrent::UnhandledException + size=8 align=8 + base size=8 base align=8 +QtConcurrent::UnhandledException (0x7faaab26c770) 0 nearly-empty + vptr=((& QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE) + 16u) + QtConcurrent::Exception (0x7faaab26c7e0) 0 nearly-empty + primary-for QtConcurrent::UnhandledException (0x7faaab26c770) + std::exception (0x7faaab26c850) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7faaab26c7e0) + +Class QtConcurrent::internal::ExceptionHolder + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionHolder (0x7faaab26ca80) 0 + +Class QtConcurrent::internal::ExceptionStore + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionStore (0x7faaab26ce00) 0 + +Class QtConcurrent::ResultItem + size=16 align=8 + base size=16 base align=8 +QtConcurrent::ResultItem (0x7faaab26ce70) 0 + +Class QtConcurrent::ResultIteratorBase + size=16 align=8 + base size=12 base align=8 +QtConcurrent::ResultIteratorBase (0x7faaab284d90) 0 + +Vtable for QtConcurrent::ResultStoreBase +QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent15ResultStoreBaseE) +16 QtConcurrent::ResultStoreBase::~ResultStoreBase +24 QtConcurrent::ResultStoreBase::~ResultStoreBase + +Class QtConcurrent::ResultStoreBase + size=48 align=8 + base size=44 base align=8 +QtConcurrent::ResultStoreBase (0x7faaab289930) 0 + vptr=((& QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE) + 16u) + +Vtable for QFutureInterfaceBase +QFutureInterfaceBase::_ZTV20QFutureInterfaceBase: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QFutureInterfaceBase) +16 QFutureInterfaceBase::~QFutureInterfaceBase +24 QFutureInterfaceBase::~QFutureInterfaceBase + +Class QFutureInterfaceBase + size=16 align=8 + base size=16 base align=8 +QFutureInterfaceBase (0x7faaab2c9d90) 0 + vptr=((& QFutureInterfaceBase::_ZTV20QFutureInterfaceBase) + 16u) + +Vtable for QFutureWatcherBase +QFutureWatcherBase::_ZTV18QFutureWatcherBase: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFutureWatcherBase) +16 QFutureWatcherBase::metaObject +24 QFutureWatcherBase::qt_metacast +32 QFutureWatcherBase::qt_metacall +40 QFutureWatcherBase::~QFutureWatcherBase +48 QFutureWatcherBase::~QFutureWatcherBase +56 QFutureWatcherBase::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QFutureWatcherBase::connectNotify +104 QFutureWatcherBase::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QFutureWatcherBase + size=16 align=8 + base size=16 base align=8 +QFutureWatcherBase (0x7faaab1af690) 0 + vptr=((& QFutureWatcherBase::_ZTV18QFutureWatcherBase) + 16u) + QObject (0x7faaab1af700) 0 + primary-for QFutureWatcherBase (0x7faaab1af690) + +Vtable for QThread +QThread::_ZTV7QThread: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QThread) +16 QThread::metaObject +24 QThread::qt_metacast +32 QThread::qt_metacall +40 QThread::~QThread +48 QThread::~QThread +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QThread::run + +Class QThread + size=16 align=8 + base size=16 base align=8 +QThread (0x7faaab200a80) 0 + vptr=((& QThread::_ZTV7QThread) + 16u) + QObject (0x7faaab200af0) 0 + primary-for QThread (0x7faaab200a80) + +Vtable for QThreadPool +QThreadPool::_ZTV11QThreadPool: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QThreadPool) +16 QThreadPool::metaObject +24 QThreadPool::qt_metacast +32 QThreadPool::qt_metacall +40 QThreadPool::~QThreadPool +48 QThreadPool::~QThreadPool +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QThreadPool + size=16 align=8 + base size=16 base align=8 +QThreadPool (0x7faaab226930) 0 + vptr=((& QThreadPool::_ZTV11QThreadPool) + 16u) + QObject (0x7faaab2269a0) 0 + primary-for QThreadPool (0x7faaab226930) + +Class QWaitCondition + size=8 align=8 + base size=8 base align=8 +QWaitCondition (0x7faaab235ee0) 0 + +Class QSemaphore + size=8 align=8 + base size=8 base align=8 +QSemaphore (0x7faaab242460) 0 + +Class QtConcurrent::ThreadEngineBarrier + size=24 align=8 + base size=24 base align=8 +QtConcurrent::ThreadEngineBarrier (0x7faaab2429a0) 0 + +Vtable for QtConcurrent::ThreadEngineBase +QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent16ThreadEngineBaseE) +16 QtConcurrent::ThreadEngineBase::run +24 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +32 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +40 QtConcurrent::ThreadEngineBase::start +48 QtConcurrent::ThreadEngineBase::finish +56 QtConcurrent::ThreadEngineBase::threadFunction +64 QtConcurrent::ThreadEngineBase::shouldStartThread +72 QtConcurrent::ThreadEngineBase::shouldThrottleThread +80 __cxa_pure_virtual + +Class QtConcurrent::ThreadEngineBase + size=64 align=8 + base size=64 base align=8 +QtConcurrent::ThreadEngineBase (0x7faaab242a80) 0 + vptr=((& QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE) + 16u) + QRunnable (0x7faaab242af0) 0 + primary-for QtConcurrent::ThreadEngineBase (0x7faaab242a80) + +VTT for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTTN12QtConcurrent12ThreadEngineIvEE: 2u entries +0 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 24u) +8 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 136u) + +Class QtConcurrent::BlockSizeManager + size=96 align=8 + base size=92 base align=8 +QtConcurrent::BlockSizeManager (0x7faaab08eee0) 0 + +Vtable for QFactoryInterface +QFactoryInterface::_ZTV17QFactoryInterface: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QFactoryInterface) +16 QFactoryInterface::~QFactoryInterface +24 QFactoryInterface::~QFactoryInterface +32 __cxa_pure_virtual + +Class QFactoryInterface + size=8 align=8 + base size=8 base align=8 +QFactoryInterface (0x7faaaad37d20) 0 nearly-empty + vptr=((& QFactoryInterface::_ZTV17QFactoryInterface) + 16u) + +Vtable for QTextCodecFactoryInterface +QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QTextCodecFactoryInterface) +16 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +24 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QTextCodecFactoryInterface + size=8 align=8 + base size=8 base align=8 +QTextCodecFactoryInterface (0x7faaaab6a000) 0 nearly-empty + vptr=((& QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface) + 16u) + QFactoryInterface (0x7faaaab6a070) 0 nearly-empty + primary-for QTextCodecFactoryInterface (0x7faaaab6a000) + +Vtable for QTextCodecPlugin +QTextCodecPlugin::_ZTV16QTextCodecPlugin: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QTextCodecPlugin) +16 QTextCodecPlugin::metaObject +24 QTextCodecPlugin::qt_metacast +32 QTextCodecPlugin::qt_metacall +40 QTextCodecPlugin::~QTextCodecPlugin +48 QTextCodecPlugin::~QTextCodecPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 QTextCodecPlugin::keys +160 QTextCodecPlugin::create +168 (int (*)(...))-0x00000000000000010 +176 (int (*)(...))(& _ZTI16QTextCodecPlugin) +184 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD1Ev +192 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD0Ev +200 QTextCodecPlugin::_ZThn16_NK16QTextCodecPlugin4keysEv +208 QTextCodecPlugin::_ZThn16_N16QTextCodecPlugin6createERK7QString + +Class QTextCodecPlugin + size=24 align=8 + base size=24 base align=8 +QTextCodecPlugin (0x7faaaab73580) 0 + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 16u) + QObject (0x7faaaab6aa80) 0 + primary-for QTextCodecPlugin (0x7faaaab73580) + QTextCodecFactoryInterface (0x7faaaab6aaf0) 16 nearly-empty + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 184u) + QFactoryInterface (0x7faaaab6ab60) 16 nearly-empty + primary-for QTextCodecFactoryInterface (0x7faaaab6aaf0) + +Class QLibraryInfo + size=1 align=1 + base size=0 base align=1 +QLibraryInfo (0x7faaaabc1150) 0 empty + +Vtable for QEventLoop +QEventLoop::_ZTV10QEventLoop: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QEventLoop) +16 QEventLoop::metaObject +24 QEventLoop::qt_metacast +32 QEventLoop::qt_metacall +40 QEventLoop::~QEventLoop +48 QEventLoop::~QEventLoop +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QEventLoop + size=16 align=8 + base size=16 base align=8 +QEventLoop (0x7faaaabc12a0) 0 + vptr=((& QEventLoop::_ZTV10QEventLoop) + 16u) + QObject (0x7faaaabc1310) 0 + primary-for QEventLoop (0x7faaaabc12a0) + +Vtable for QAbstractEventDispatcher +QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QAbstractEventDispatcher) +16 QAbstractEventDispatcher::metaObject +24 QAbstractEventDispatcher::qt_metacast +32 QAbstractEventDispatcher::qt_metacall +40 QAbstractEventDispatcher::~QAbstractEventDispatcher +48 QAbstractEventDispatcher::~QAbstractEventDispatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 QAbstractEventDispatcher::startingUp +208 QAbstractEventDispatcher::closingDown + +Class QAbstractEventDispatcher + size=16 align=8 + base size=16 base align=8 +QAbstractEventDispatcher (0x7faaaabf8bd0) 0 + vptr=((& QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher) + 16u) + QObject (0x7faaaabf8c40) 0 + primary-for QAbstractEventDispatcher (0x7faaaabf8bd0) + +Class QModelIndex + size=24 align=8 + base size=24 base align=8 +QModelIndex (0x7faaaac22a80) 0 + +Class QPersistentModelIndex + size=8 align=8 + base size=8 base align=8 +QPersistentModelIndex (0x7faaaac4d540) 0 + +Vtable for QAbstractItemModel +QAbstractItemModel::_ZTV18QAbstractItemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractItemModel) +16 QAbstractItemModel::metaObject +24 QAbstractItemModel::qt_metacast +32 QAbstractItemModel::qt_metacall +40 QAbstractItemModel::~QAbstractItemModel +48 QAbstractItemModel::~QAbstractItemModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractItemModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractItemModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractItemModel + size=16 align=8 + base size=16 base align=8 +QAbstractItemModel (0x7faaaac58850) 0 + vptr=((& QAbstractItemModel::_ZTV18QAbstractItemModel) + 16u) + QObject (0x7faaaac588c0) 0 + primary-for QAbstractItemModel (0x7faaaac58850) + +Vtable for QAbstractTableModel +QAbstractTableModel::_ZTV19QAbstractTableModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractTableModel) +16 QAbstractTableModel::metaObject +24 QAbstractTableModel::qt_metacast +32 QAbstractTableModel::qt_metacall +40 QAbstractTableModel::~QAbstractTableModel +48 QAbstractTableModel::~QAbstractTableModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractTableModel::index +120 QAbstractTableModel::parent +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractTableModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractTableModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractTableModel + size=16 align=8 + base size=16 base align=8 +QAbstractTableModel (0x7faaaaab3b60) 0 + vptr=((& QAbstractTableModel::_ZTV19QAbstractTableModel) + 16u) + QAbstractItemModel (0x7faaaaab3bd0) 0 + primary-for QAbstractTableModel (0x7faaaaab3b60) + QObject (0x7faaaaab3c40) 0 + primary-for QAbstractItemModel (0x7faaaaab3bd0) + +Vtable for QAbstractListModel +QAbstractListModel::_ZTV18QAbstractListModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractListModel) +16 QAbstractListModel::metaObject +24 QAbstractListModel::qt_metacast +32 QAbstractListModel::qt_metacall +40 QAbstractListModel::~QAbstractListModel +48 QAbstractListModel::~QAbstractListModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractListModel::index +120 QAbstractListModel::parent +128 __cxa_pure_virtual +136 QAbstractListModel::columnCount +144 QAbstractListModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractListModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractListModel + size=16 align=8 + base size=16 base align=8 +QAbstractListModel (0x7faaaaace0e0) 0 + vptr=((& QAbstractListModel::_ZTV18QAbstractListModel) + 16u) + QAbstractItemModel (0x7faaaaace150) 0 + primary-for QAbstractListModel (0x7faaaaace0e0) + QObject (0x7faaaaace1c0) 0 + primary-for QAbstractItemModel (0x7faaaaace150) + +Class QBasicTimer + size=4 align=4 + base size=4 base align=4 +QBasicTimer (0x7faaaab00230) 0 + +Vtable for QCoreApplication +QCoreApplication::_ZTV16QCoreApplication: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QCoreApplication) +16 QCoreApplication::metaObject +24 QCoreApplication::qt_metacast +32 QCoreApplication::qt_metacall +40 QCoreApplication::~QCoreApplication +48 QCoreApplication::~QCoreApplication +56 QCoreApplication::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCoreApplication::notify +120 QCoreApplication::compressEvent + +Class QCoreApplication + size=16 align=8 + base size=16 base align=8 +QCoreApplication (0x7faaaab0a620) 0 + vptr=((& QCoreApplication::_ZTV16QCoreApplication) + 16u) + QObject (0x7faaaab0a690) 0 + primary-for QCoreApplication (0x7faaaab0a620) + +Class __exception + size=40 align=8 + base size=40 base align=8 +__exception (0x7faaaab3f310) 0 + +Class QMetaMethod + size=16 align=8 + base size=12 base align=8 +QMetaMethod (0x7faaaa9ab770) 0 + +Class QMetaEnum + size=16 align=8 + base size=12 base align=8 +QMetaEnum (0x7faaaa9c4bd0) 0 + +Class QMetaProperty + size=32 align=8 + base size=32 base align=8 +QMetaProperty (0x7faaaa9d3930) 0 + +Class QMetaClassInfo + size=16 align=8 + base size=12 base align=8 +QMetaClassInfo (0x7faaaa9e5000) 0 + +Vtable for QMimeData +QMimeData::_ZTV9QMimeData: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QMimeData) +16 QMimeData::metaObject +24 QMimeData::qt_metacast +32 QMimeData::qt_metacall +40 QMimeData::~QMimeData +48 QMimeData::~QMimeData +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMimeData::hasFormat +120 QMimeData::formats +128 QMimeData::retrieveData + +Class QMimeData + size=16 align=8 + base size=16 base align=8 +QMimeData (0x7faaaa9e5af0) 0 + vptr=((& QMimeData::_ZTV9QMimeData) + 16u) + QObject (0x7faaaa9e5b60) 0 + primary-for QMimeData (0x7faaaa9e5af0) + +Vtable for QObjectCleanupHandler +QObjectCleanupHandler::_ZTV21QObjectCleanupHandler: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QObjectCleanupHandler) +16 QObjectCleanupHandler::metaObject +24 QObjectCleanupHandler::qt_metacast +32 QObjectCleanupHandler::qt_metacall +40 QObjectCleanupHandler::~QObjectCleanupHandler +48 QObjectCleanupHandler::~QObjectCleanupHandler +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObjectCleanupHandler + size=24 align=8 + base size=24 base align=8 +QObjectCleanupHandler (0x7faaaaa08380) 0 + vptr=((& QObjectCleanupHandler::_ZTV21QObjectCleanupHandler) + 16u) + QObject (0x7faaaaa083f0) 0 + primary-for QObjectCleanupHandler (0x7faaaaa08380) + +Vtable for QSharedMemory +QSharedMemory::_ZTV13QSharedMemory: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSharedMemory) +16 QSharedMemory::metaObject +24 QSharedMemory::qt_metacast +32 QSharedMemory::qt_metacall +40 QSharedMemory::~QSharedMemory +48 QSharedMemory::~QSharedMemory +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSharedMemory + size=16 align=8 + base size=16 base align=8 +QSharedMemory (0x7faaaaa1a4d0) 0 + vptr=((& QSharedMemory::_ZTV13QSharedMemory) + 16u) + QObject (0x7faaaaa1a540) 0 + primary-for QSharedMemory (0x7faaaaa1a4d0) + +Vtable for QSignalMapper +QSignalMapper::_ZTV13QSignalMapper: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSignalMapper) +16 QSignalMapper::metaObject +24 QSignalMapper::qt_metacast +32 QSignalMapper::qt_metacall +40 QSignalMapper::~QSignalMapper +48 QSignalMapper::~QSignalMapper +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSignalMapper + size=16 align=8 + base size=16 base align=8 +QSignalMapper (0x7faaaaa372a0) 0 + vptr=((& QSignalMapper::_ZTV13QSignalMapper) + 16u) + QObject (0x7faaaaa37310) 0 + primary-for QSignalMapper (0x7faaaaa372a0) + +Vtable for QSocketNotifier +QSocketNotifier::_ZTV15QSocketNotifier: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSocketNotifier) +16 QSocketNotifier::metaObject +24 QSocketNotifier::qt_metacast +32 QSocketNotifier::qt_metacall +40 QSocketNotifier::~QSocketNotifier +48 QSocketNotifier::~QSocketNotifier +56 QSocketNotifier::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSocketNotifier + size=32 align=8 + base size=25 base align=8 +QSocketNotifier (0x7faaaaa4f690) 0 + vptr=((& QSocketNotifier::_ZTV15QSocketNotifier) + 16u) + QObject (0x7faaaaa4f700) 0 + primary-for QSocketNotifier (0x7faaaaa4f690) + +Class QSystemSemaphore + size=8 align=8 + base size=8 base align=8 +QSystemSemaphore (0x7faaaa869a10) 0 + +Vtable for QTimer +QTimer::_ZTV6QTimer: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QTimer) +16 QTimer::metaObject +24 QTimer::qt_metacast +32 QTimer::qt_metacall +40 QTimer::~QTimer +48 QTimer::~QTimer +56 QObject::event +64 QObject::eventFilter +72 QTimer::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTimer + size=32 align=8 + base size=29 base align=8 +QTimer (0x7faaaa876460) 0 + vptr=((& QTimer::_ZTV6QTimer) + 16u) + QObject (0x7faaaa8764d0) 0 + primary-for QTimer (0x7faaaa876460) + +Vtable for QTranslator +QTranslator::_ZTV11QTranslator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTranslator) +16 QTranslator::metaObject +24 QTranslator::qt_metacast +32 QTranslator::qt_metacall +40 QTranslator::~QTranslator +48 QTranslator::~QTranslator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTranslator::translate +120 QTranslator::isEmpty + +Class QTranslator + size=16 align=8 + base size=16 base align=8 +QTranslator (0x7faaaa89a9a0) 0 + vptr=((& QTranslator::_ZTV11QTranslator) + 16u) + QObject (0x7faaaa89aa10) 0 + primary-for QTranslator (0x7faaaa89a9a0) + +Vtable for QLibrary +QLibrary::_ZTV8QLibrary: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QLibrary) +16 QLibrary::metaObject +24 QLibrary::qt_metacast +32 QLibrary::qt_metacall +40 QLibrary::~QLibrary +48 QLibrary::~QLibrary +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QLibrary + size=32 align=8 + base size=25 base align=8 +QLibrary (0x7faaaa8b5930) 0 + vptr=((& QLibrary::_ZTV8QLibrary) + 16u) + QObject (0x7faaaa8b59a0) 0 + primary-for QLibrary (0x7faaaa8b5930) + +Vtable for QPluginLoader +QPluginLoader::_ZTV13QPluginLoader: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QPluginLoader) +16 QPluginLoader::metaObject +24 QPluginLoader::qt_metacast +32 QPluginLoader::qt_metacall +40 QPluginLoader::~QPluginLoader +48 QPluginLoader::~QPluginLoader +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QPluginLoader + size=32 align=8 + base size=25 base align=8 +QPluginLoader (0x7faaaa9013f0) 0 + vptr=((& QPluginLoader::_ZTV13QPluginLoader) + 16u) + QObject (0x7faaaa901460) 0 + primary-for QPluginLoader (0x7faaaa9013f0) + +Class QUuid + size=16 align=4 + base size=16 base align=4 +QUuid (0x7faaaa90fb60) 0 + +Class QReadWriteLock + size=8 align=8 + base size=8 base align=8 +QReadWriteLock (0x7faaaa93a4d0) 0 + +Class QReadLocker + size=8 align=8 + base size=8 base align=8 +QReadLocker (0x7faaaa93ab60) 0 + +Class QWriteLocker + size=8 align=8 + base size=8 base align=8 +QWriteLocker (0x7faaaa958ee0) 0 + +Class QThreadStorageData + size=4 align=4 + base size=4 base align=4 +QThreadStorageData (0x7faaaa7712a0) 0 + +Vtable for QAbstractAnimation +QAbstractAnimation::_ZTV18QAbstractAnimation: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractAnimation) +16 QAbstractAnimation::metaObject +24 QAbstractAnimation::qt_metacast +32 QAbstractAnimation::qt_metacall +40 QAbstractAnimation::~QAbstractAnimation +48 QAbstractAnimation::~QAbstractAnimation +56 QAbstractAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAbstractAnimation::updateState +136 QAbstractAnimation::updateDirection + +Class QAbstractAnimation + size=16 align=8 + base size=16 base align=8 +QAbstractAnimation (0x7faaaa771a10) 0 + vptr=((& QAbstractAnimation::_ZTV18QAbstractAnimation) + 16u) + QObject (0x7faaaa771a80) 0 + primary-for QAbstractAnimation (0x7faaaa771a10) + +Vtable for QAnimationGroup +QAnimationGroup::_ZTV15QAnimationGroup: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QAnimationGroup) +16 QAnimationGroup::metaObject +24 QAnimationGroup::qt_metacast +32 QAnimationGroup::qt_metacall +40 QAnimationGroup::~QAnimationGroup +48 QAnimationGroup::~QAnimationGroup +56 QAnimationGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAbstractAnimation::updateState +136 QAbstractAnimation::updateDirection + +Class QAnimationGroup + size=16 align=8 + base size=16 base align=8 +QAnimationGroup (0x7faaaa7a9150) 0 + vptr=((& QAnimationGroup::_ZTV15QAnimationGroup) + 16u) + QAbstractAnimation (0x7faaaa7a91c0) 0 + primary-for QAnimationGroup (0x7faaaa7a9150) + QObject (0x7faaaa7a9230) 0 + primary-for QAbstractAnimation (0x7faaaa7a91c0) + +Vtable for QParallelAnimationGroup +QParallelAnimationGroup::_ZTV23QParallelAnimationGroup: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QParallelAnimationGroup) +16 QParallelAnimationGroup::metaObject +24 QParallelAnimationGroup::qt_metacast +32 QParallelAnimationGroup::qt_metacall +40 QParallelAnimationGroup::~QParallelAnimationGroup +48 QParallelAnimationGroup::~QParallelAnimationGroup +56 QParallelAnimationGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QParallelAnimationGroup::duration +120 QParallelAnimationGroup::updateCurrentTime +128 QParallelAnimationGroup::updateState +136 QParallelAnimationGroup::updateDirection + +Class QParallelAnimationGroup + size=16 align=8 + base size=16 base align=8 +QParallelAnimationGroup (0x7faaaa7c1000) 0 + vptr=((& QParallelAnimationGroup::_ZTV23QParallelAnimationGroup) + 16u) + QAnimationGroup (0x7faaaa7c1070) 0 + primary-for QParallelAnimationGroup (0x7faaaa7c1000) + QAbstractAnimation (0x7faaaa7c10e0) 0 + primary-for QAnimationGroup (0x7faaaa7c1070) + QObject (0x7faaaa7c1150) 0 + primary-for QAbstractAnimation (0x7faaaa7c10e0) + +Vtable for QPauseAnimation +QPauseAnimation::_ZTV15QPauseAnimation: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QPauseAnimation) +16 QPauseAnimation::metaObject +24 QPauseAnimation::qt_metacast +32 QPauseAnimation::qt_metacall +40 QPauseAnimation::~QPauseAnimation +48 QPauseAnimation::~QPauseAnimation +56 QPauseAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QPauseAnimation::duration +120 QPauseAnimation::updateCurrentTime +128 QAbstractAnimation::updateState +136 QAbstractAnimation::updateDirection + +Class QPauseAnimation + size=16 align=8 + base size=16 base align=8 +QPauseAnimation (0x7faaaa7cfe70) 0 + vptr=((& QPauseAnimation::_ZTV15QPauseAnimation) + 16u) + QAbstractAnimation (0x7faaaa7cfee0) 0 + primary-for QPauseAnimation (0x7faaaa7cfe70) + QObject (0x7faaaa7cff50) 0 + primary-for QAbstractAnimation (0x7faaaa7cfee0) + +Vtable for QVariantAnimation +QVariantAnimation::_ZTV17QVariantAnimation: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QVariantAnimation) +16 QVariantAnimation::metaObject +24 QVariantAnimation::qt_metacast +32 QVariantAnimation::qt_metacall +40 QVariantAnimation::~QVariantAnimation +48 QVariantAnimation::~QVariantAnimation +56 QVariantAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QVariantAnimation::duration +120 QVariantAnimation::updateCurrentTime +128 QVariantAnimation::updateState +136 QAbstractAnimation::updateDirection +144 __cxa_pure_virtual +152 QVariantAnimation::interpolated + +Class QVariantAnimation + size=16 align=8 + base size=16 base align=8 +QVariantAnimation (0x7faaaa7ed8c0) 0 + vptr=((& QVariantAnimation::_ZTV17QVariantAnimation) + 16u) + QAbstractAnimation (0x7faaaa7ed930) 0 + primary-for QVariantAnimation (0x7faaaa7ed8c0) + QObject (0x7faaaa7ed9a0) 0 + primary-for QAbstractAnimation (0x7faaaa7ed930) + +Vtable for QPropertyAnimation +QPropertyAnimation::_ZTV18QPropertyAnimation: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QPropertyAnimation) +16 QPropertyAnimation::metaObject +24 QPropertyAnimation::qt_metacast +32 QPropertyAnimation::qt_metacall +40 QPropertyAnimation::~QPropertyAnimation +48 QPropertyAnimation::~QPropertyAnimation +56 QPropertyAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QVariantAnimation::duration +120 QVariantAnimation::updateCurrentTime +128 QPropertyAnimation::updateState +136 QAbstractAnimation::updateDirection +144 QPropertyAnimation::updateCurrentValue +152 QVariantAnimation::interpolated + +Class QPropertyAnimation + size=16 align=8 + base size=16 base align=8 +QPropertyAnimation (0x7faaaa80bb60) 0 + vptr=((& QPropertyAnimation::_ZTV18QPropertyAnimation) + 16u) + QVariantAnimation (0x7faaaa80bbd0) 0 + primary-for QPropertyAnimation (0x7faaaa80bb60) + QAbstractAnimation (0x7faaaa80bc40) 0 + primary-for QVariantAnimation (0x7faaaa80bbd0) + QObject (0x7faaaa80bcb0) 0 + primary-for QAbstractAnimation (0x7faaaa80bc40) + +Vtable for QSequentialAnimationGroup +QSequentialAnimationGroup::_ZTV25QSequentialAnimationGroup: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QSequentialAnimationGroup) +16 QSequentialAnimationGroup::metaObject +24 QSequentialAnimationGroup::qt_metacast +32 QSequentialAnimationGroup::qt_metacall +40 QSequentialAnimationGroup::~QSequentialAnimationGroup +48 QSequentialAnimationGroup::~QSequentialAnimationGroup +56 QSequentialAnimationGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QSequentialAnimationGroup::duration +120 QSequentialAnimationGroup::updateCurrentTime +128 QSequentialAnimationGroup::updateState +136 QSequentialAnimationGroup::updateDirection + +Class QSequentialAnimationGroup + size=16 align=8 + base size=16 base align=8 +QSequentialAnimationGroup (0x7faaaa824b60) 0 + vptr=((& QSequentialAnimationGroup::_ZTV25QSequentialAnimationGroup) + 16u) + QAnimationGroup (0x7faaaa824bd0) 0 + primary-for QSequentialAnimationGroup (0x7faaaa824b60) + QAbstractAnimation (0x7faaaa824c40) 0 + primary-for QAnimationGroup (0x7faaaa824bd0) + QObject (0x7faaaa824cb0) 0 + primary-for QAbstractAnimation (0x7faaaa824c40) + +Class QColor + size=16 align=4 + base size=14 base align=4 +QColor (0x7faaaa84c620) 0 + +Class QRegion::QRegionData + size=32 align=8 + base size=32 base align=8 +QRegion::QRegionData (0x7faaaa6c65b0) 0 + +Class QRegion + size=8 align=8 + base size=8 base align=8 +QRegion (0x7faaaa6a1cb0) 0 + +Class QKeySequence + size=8 align=8 + base size=8 base align=8 +QKeySequence (0x7faaaa6dae00) 0 + +Vtable for QMimeSource +QMimeSource::_ZTV11QMimeSource: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMimeSource) +16 QMimeSource::~QMimeSource +24 QMimeSource::~QMimeSource +32 __cxa_pure_virtual +40 QMimeSource::provides +48 __cxa_pure_virtual + +Class QMimeSource + size=8 align=8 + base size=8 base align=8 +QMimeSource (0x7faaaa719770) 0 nearly-empty + vptr=((& QMimeSource::_ZTV11QMimeSource) + 16u) + +Vtable for QDrag +QDrag::_ZTV5QDrag: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QDrag) +16 QDrag::metaObject +24 QDrag::qt_metacast +32 QDrag::qt_metacall +40 QDrag::~QDrag +48 QDrag::~QDrag +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QDrag + size=16 align=8 + base size=16 base align=8 +QDrag (0x7faaaa7198c0) 0 + vptr=((& QDrag::_ZTV5QDrag) + 16u) + QObject (0x7faaaa719930) 0 + primary-for QDrag (0x7faaaa7198c0) + +Vtable for QInputEvent +QInputEvent::_ZTV11QInputEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QInputEvent) +16 QInputEvent::~QInputEvent +24 QInputEvent::~QInputEvent + +Class QInputEvent + size=24 align=8 + base size=24 base align=8 +QInputEvent (0x7faaaa740070) 0 + vptr=((& QInputEvent::_ZTV11QInputEvent) + 16u) + QEvent (0x7faaaa7400e0) 0 + primary-for QInputEvent (0x7faaaa740070) + +Vtable for QMouseEvent +QMouseEvent::_ZTV11QMouseEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMouseEvent) +16 QMouseEvent::~QMouseEvent +24 QMouseEvent::~QMouseEvent + +Class QMouseEvent + size=48 align=8 + base size=48 base align=8 +QMouseEvent (0x7faaaa740930) 0 + vptr=((& QMouseEvent::_ZTV11QMouseEvent) + 16u) + QInputEvent (0x7faaaa7409a0) 0 + primary-for QMouseEvent (0x7faaaa740930) + QEvent (0x7faaaa740a10) 0 + primary-for QInputEvent (0x7faaaa7409a0) + +Vtable for QHoverEvent +QHoverEvent::_ZTV11QHoverEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QHoverEvent) +16 QHoverEvent::~QHoverEvent +24 QHoverEvent::~QHoverEvent + +Class QHoverEvent + size=40 align=8 + base size=36 base align=8 +QHoverEvent (0x7faaaa56d700) 0 + vptr=((& QHoverEvent::_ZTV11QHoverEvent) + 16u) + QEvent (0x7faaaa56d770) 0 + primary-for QHoverEvent (0x7faaaa56d700) + +Vtable for QWheelEvent +QWheelEvent::_ZTV11QWheelEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QWheelEvent) +16 QWheelEvent::~QWheelEvent +24 QWheelEvent::~QWheelEvent + +Class QWheelEvent + size=56 align=8 + base size=52 base align=8 +QWheelEvent (0x7faaaa56de70) 0 + vptr=((& QWheelEvent::_ZTV11QWheelEvent) + 16u) + QInputEvent (0x7faaaa56dee0) 0 + primary-for QWheelEvent (0x7faaaa56de70) + QEvent (0x7faaaa56df50) 0 + primary-for QInputEvent (0x7faaaa56dee0) + +Vtable for QTabletEvent +QTabletEvent::_ZTV12QTabletEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTabletEvent) +16 QTabletEvent::~QTabletEvent +24 QTabletEvent::~QTabletEvent + +Class QTabletEvent + size=120 align=8 + base size=120 base align=8 +QTabletEvent (0x7faaaa588c40) 0 + vptr=((& QTabletEvent::_ZTV12QTabletEvent) + 16u) + QInputEvent (0x7faaaa588cb0) 0 + primary-for QTabletEvent (0x7faaaa588c40) + QEvent (0x7faaaa588d20) 0 + primary-for QInputEvent (0x7faaaa588cb0) + +Vtable for QKeyEvent +QKeyEvent::_ZTV9QKeyEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QKeyEvent) +16 QKeyEvent::~QKeyEvent +24 QKeyEvent::~QKeyEvent + +Class QKeyEvent + size=40 align=8 + base size=39 base align=8 +QKeyEvent (0x7faaaa5a5f50) 0 + vptr=((& QKeyEvent::_ZTV9QKeyEvent) + 16u) + QInputEvent (0x7faaaa5ab000) 0 + primary-for QKeyEvent (0x7faaaa5a5f50) + QEvent (0x7faaaa5ab070) 0 + primary-for QInputEvent (0x7faaaa5ab000) + +Vtable for QFocusEvent +QFocusEvent::_ZTV11QFocusEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFocusEvent) +16 QFocusEvent::~QFocusEvent +24 QFocusEvent::~QFocusEvent + +Class QFocusEvent + size=24 align=8 + base size=24 base align=8 +QFocusEvent (0x7faaaa5ce930) 0 + vptr=((& QFocusEvent::_ZTV11QFocusEvent) + 16u) + QEvent (0x7faaaa5ce9a0) 0 + primary-for QFocusEvent (0x7faaaa5ce930) + +Vtable for QPaintEvent +QPaintEvent::_ZTV11QPaintEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QPaintEvent) +16 QPaintEvent::~QPaintEvent +24 QPaintEvent::~QPaintEvent + +Class QPaintEvent + size=56 align=8 + base size=49 base align=8 +QPaintEvent (0x7faaaa5db380) 0 + vptr=((& QPaintEvent::_ZTV11QPaintEvent) + 16u) + QEvent (0x7faaaa5db3f0) 0 + primary-for QPaintEvent (0x7faaaa5db380) + +Vtable for QUpdateLaterEvent +QUpdateLaterEvent::_ZTV17QUpdateLaterEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QUpdateLaterEvent) +16 QUpdateLaterEvent::~QUpdateLaterEvent +24 QUpdateLaterEvent::~QUpdateLaterEvent + +Class QUpdateLaterEvent + size=32 align=8 + base size=32 base align=8 +QUpdateLaterEvent (0x7faaaa5e8000) 0 + vptr=((& QUpdateLaterEvent::_ZTV17QUpdateLaterEvent) + 16u) + QEvent (0x7faaaa5e8070) 0 + primary-for QUpdateLaterEvent (0x7faaaa5e8000) + +Vtable for QMoveEvent +QMoveEvent::_ZTV10QMoveEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QMoveEvent) +16 QMoveEvent::~QMoveEvent +24 QMoveEvent::~QMoveEvent + +Class QMoveEvent + size=40 align=8 + base size=36 base align=8 +QMoveEvent (0x7faaaa5e8460) 0 + vptr=((& QMoveEvent::_ZTV10QMoveEvent) + 16u) + QEvent (0x7faaaa5e84d0) 0 + primary-for QMoveEvent (0x7faaaa5e8460) + +Vtable for QResizeEvent +QResizeEvent::_ZTV12QResizeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QResizeEvent) +16 QResizeEvent::~QResizeEvent +24 QResizeEvent::~QResizeEvent + +Class QResizeEvent + size=40 align=8 + base size=36 base align=8 +QResizeEvent (0x7faaaa5e8af0) 0 + vptr=((& QResizeEvent::_ZTV12QResizeEvent) + 16u) + QEvent (0x7faaaa5e8b60) 0 + primary-for QResizeEvent (0x7faaaa5e8af0) + +Vtable for QCloseEvent +QCloseEvent::_ZTV11QCloseEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QCloseEvent) +16 QCloseEvent::~QCloseEvent +24 QCloseEvent::~QCloseEvent + +Class QCloseEvent + size=24 align=8 + base size=20 base align=8 +QCloseEvent (0x7faaaa5f9070) 0 + vptr=((& QCloseEvent::_ZTV11QCloseEvent) + 16u) + QEvent (0x7faaaa5f90e0) 0 + primary-for QCloseEvent (0x7faaaa5f9070) + +Vtable for QIconDragEvent +QIconDragEvent::_ZTV14QIconDragEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QIconDragEvent) +16 QIconDragEvent::~QIconDragEvent +24 QIconDragEvent::~QIconDragEvent + +Class QIconDragEvent + size=24 align=8 + base size=20 base align=8 +QIconDragEvent (0x7faaaa5f92a0) 0 + vptr=((& QIconDragEvent::_ZTV14QIconDragEvent) + 16u) + QEvent (0x7faaaa5f9310) 0 + primary-for QIconDragEvent (0x7faaaa5f92a0) + +Vtable for QShowEvent +QShowEvent::_ZTV10QShowEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QShowEvent) +16 QShowEvent::~QShowEvent +24 QShowEvent::~QShowEvent + +Class QShowEvent + size=24 align=8 + base size=20 base align=8 +QShowEvent (0x7faaaa5f94d0) 0 + vptr=((& QShowEvent::_ZTV10QShowEvent) + 16u) + QEvent (0x7faaaa5f9540) 0 + primary-for QShowEvent (0x7faaaa5f94d0) + +Vtable for QHideEvent +QHideEvent::_ZTV10QHideEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QHideEvent) +16 QHideEvent::~QHideEvent +24 QHideEvent::~QHideEvent + +Class QHideEvent + size=24 align=8 + base size=20 base align=8 +QHideEvent (0x7faaaa5f9700) 0 + vptr=((& QHideEvent::_ZTV10QHideEvent) + 16u) + QEvent (0x7faaaa5f9770) 0 + primary-for QHideEvent (0x7faaaa5f9700) + +Vtable for QContextMenuEvent +QContextMenuEvent::_ZTV17QContextMenuEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QContextMenuEvent) +16 QContextMenuEvent::~QContextMenuEvent +24 QContextMenuEvent::~QContextMenuEvent + +Class QContextMenuEvent + size=48 align=8 + base size=41 base align=8 +QContextMenuEvent (0x7faaaa5f9930) 0 + vptr=((& QContextMenuEvent::_ZTV17QContextMenuEvent) + 16u) + QInputEvent (0x7faaaa5f99a0) 0 + primary-for QContextMenuEvent (0x7faaaa5f9930) + QEvent (0x7faaaa5f9a10) 0 + primary-for QInputEvent (0x7faaaa5f99a0) + +Class QInputMethodEvent::Attribute + size=32 align=8 + base size=32 base align=8 +QInputMethodEvent::Attribute (0x7faaaa6134d0) 0 + +Vtable for QInputMethodEvent +QInputMethodEvent::_ZTV17QInputMethodEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QInputMethodEvent) +16 QInputMethodEvent::~QInputMethodEvent +24 QInputMethodEvent::~QInputMethodEvent + +Class QInputMethodEvent + size=56 align=8 + base size=56 base align=8 +QInputMethodEvent (0x7faaaa6133f0) 0 + vptr=((& QInputMethodEvent::_ZTV17QInputMethodEvent) + 16u) + QEvent (0x7faaaa613460) 0 + primary-for QInputMethodEvent (0x7faaaa6133f0) + +Vtable for QDropEvent +QDropEvent::_ZTV10QDropEvent: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QDropEvent) +16 QDropEvent::~QDropEvent +24 QDropEvent::~QDropEvent +32 QDropEvent::format +40 QDropEvent::encodedData +48 QDropEvent::provides +56 (int (*)(...))-0x00000000000000018 +64 (int (*)(...))(& _ZTI10QDropEvent) +72 QDropEvent::_ZThn24_N10QDropEventD1Ev +80 QDropEvent::_ZThn24_N10QDropEventD0Ev +88 QDropEvent::_ZThn24_NK10QDropEvent6formatEi +96 QDropEvent::_ZThn24_NK10QDropEvent8providesEPKc +104 QDropEvent::_ZThn24_NK10QDropEvent11encodedDataEPKc + +Class QDropEvent + size=80 align=8 + base size=80 base align=8 +QDropEvent (0x7faaaa64d200) 0 + vptr=((& QDropEvent::_ZTV10QDropEvent) + 16u) + QEvent (0x7faaaa64cbd0) 0 + primary-for QDropEvent (0x7faaaa64d200) + QMimeSource (0x7faaaa64cc40) 24 nearly-empty + vptr=((& QDropEvent::_ZTV10QDropEvent) + 72u) + +Vtable for QDragMoveEvent +QDragMoveEvent::_ZTV14QDragMoveEvent: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QDragMoveEvent) +16 QDragMoveEvent::~QDragMoveEvent +24 QDragMoveEvent::~QDragMoveEvent +32 QDropEvent::format +40 QDropEvent::encodedData +48 QDropEvent::provides +56 (int (*)(...))-0x00000000000000018 +64 (int (*)(...))(& _ZTI14QDragMoveEvent) +72 QDragMoveEvent::_ZThn24_N14QDragMoveEventD1Ev +80 QDragMoveEvent::_ZThn24_N14QDragMoveEventD0Ev +88 QDropEvent::_ZThn24_NK10QDropEvent6formatEi +96 QDropEvent::_ZThn24_NK10QDropEvent8providesEPKc +104 QDropEvent::_ZThn24_NK10QDropEvent11encodedDataEPKc + +Class QDragMoveEvent + size=96 align=8 + base size=96 base align=8 +QDragMoveEvent (0x7faaaa466930) 0 + vptr=((& QDragMoveEvent::_ZTV14QDragMoveEvent) + 16u) + QDropEvent (0x7faaaa463900) 0 + primary-for QDragMoveEvent (0x7faaaa466930) + QEvent (0x7faaaa4669a0) 0 + primary-for QDropEvent (0x7faaaa463900) + QMimeSource (0x7faaaa466a10) 24 nearly-empty + vptr=((& QDragMoveEvent::_ZTV14QDragMoveEvent) + 72u) + +Vtable for QDragEnterEvent +QDragEnterEvent::_ZTV15QDragEnterEvent: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QDragEnterEvent) +16 QDragEnterEvent::~QDragEnterEvent +24 QDragEnterEvent::~QDragEnterEvent +32 QDropEvent::format +40 QDropEvent::encodedData +48 QDropEvent::provides +56 (int (*)(...))-0x00000000000000018 +64 (int (*)(...))(& _ZTI15QDragEnterEvent) +72 QDragEnterEvent::_ZThn24_N15QDragEnterEventD1Ev +80 QDragEnterEvent::_ZThn24_N15QDragEnterEventD0Ev +88 QDropEvent::_ZThn24_NK10QDropEvent6formatEi +96 QDropEvent::_ZThn24_NK10QDropEvent8providesEPKc +104 QDropEvent::_ZThn24_NK10QDropEvent11encodedDataEPKc + +Class QDragEnterEvent + size=96 align=8 + base size=96 base align=8 +QDragEnterEvent (0x7faaaa4760e0) 0 + vptr=((& QDragEnterEvent::_ZTV15QDragEnterEvent) + 16u) + QDragMoveEvent (0x7faaaa476150) 0 + primary-for QDragEnterEvent (0x7faaaa4760e0) + QDropEvent (0x7faaaa474280) 0 + primary-for QDragMoveEvent (0x7faaaa476150) + QEvent (0x7faaaa4761c0) 0 + primary-for QDropEvent (0x7faaaa474280) + QMimeSource (0x7faaaa476230) 24 nearly-empty + vptr=((& QDragEnterEvent::_ZTV15QDragEnterEvent) + 72u) + +Vtable for QDragResponseEvent +QDragResponseEvent::_ZTV18QDragResponseEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QDragResponseEvent) +16 QDragResponseEvent::~QDragResponseEvent +24 QDragResponseEvent::~QDragResponseEvent + +Class QDragResponseEvent + size=24 align=8 + base size=21 base align=8 +QDragResponseEvent (0x7faaaa4763f0) 0 + vptr=((& QDragResponseEvent::_ZTV18QDragResponseEvent) + 16u) + QEvent (0x7faaaa476460) 0 + primary-for QDragResponseEvent (0x7faaaa4763f0) + +Vtable for QDragLeaveEvent +QDragLeaveEvent::_ZTV15QDragLeaveEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QDragLeaveEvent) +16 QDragLeaveEvent::~QDragLeaveEvent +24 QDragLeaveEvent::~QDragLeaveEvent + +Class QDragLeaveEvent + size=24 align=8 + base size=20 base align=8 +QDragLeaveEvent (0x7faaaa476850) 0 + vptr=((& QDragLeaveEvent::_ZTV15QDragLeaveEvent) + 16u) + QEvent (0x7faaaa4768c0) 0 + primary-for QDragLeaveEvent (0x7faaaa476850) + +Vtable for QHelpEvent +QHelpEvent::_ZTV10QHelpEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QHelpEvent) +16 QHelpEvent::~QHelpEvent +24 QHelpEvent::~QHelpEvent + +Class QHelpEvent + size=40 align=8 + base size=36 base align=8 +QHelpEvent (0x7faaaa476a80) 0 + vptr=((& QHelpEvent::_ZTV10QHelpEvent) + 16u) + QEvent (0x7faaaa476af0) 0 + primary-for QHelpEvent (0x7faaaa476a80) + +Vtable for QStatusTipEvent +QStatusTipEvent::_ZTV15QStatusTipEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QStatusTipEvent) +16 QStatusTipEvent::~QStatusTipEvent +24 QStatusTipEvent::~QStatusTipEvent + +Class QStatusTipEvent + size=32 align=8 + base size=32 base align=8 +QStatusTipEvent (0x7faaaa488af0) 0 + vptr=((& QStatusTipEvent::_ZTV15QStatusTipEvent) + 16u) + QEvent (0x7faaaa488b60) 0 + primary-for QStatusTipEvent (0x7faaaa488af0) + +Vtable for QWhatsThisClickedEvent +QWhatsThisClickedEvent::_ZTV22QWhatsThisClickedEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QWhatsThisClickedEvent) +16 QWhatsThisClickedEvent::~QWhatsThisClickedEvent +24 QWhatsThisClickedEvent::~QWhatsThisClickedEvent + +Class QWhatsThisClickedEvent + size=32 align=8 + base size=32 base align=8 +QWhatsThisClickedEvent (0x7faaaa488cb0) 0 + vptr=((& QWhatsThisClickedEvent::_ZTV22QWhatsThisClickedEvent) + 16u) + QEvent (0x7faaaa492000) 0 + primary-for QWhatsThisClickedEvent (0x7faaaa488cb0) + +Vtable for QActionEvent +QActionEvent::_ZTV12QActionEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QActionEvent) +16 QActionEvent::~QActionEvent +24 QActionEvent::~QActionEvent + +Class QActionEvent + size=40 align=8 + base size=40 base align=8 +QActionEvent (0x7faaaa492460) 0 + vptr=((& QActionEvent::_ZTV12QActionEvent) + 16u) + QEvent (0x7faaaa4924d0) 0 + primary-for QActionEvent (0x7faaaa492460) + +Vtable for QFileOpenEvent +QFileOpenEvent::_ZTV14QFileOpenEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QFileOpenEvent) +16 QFileOpenEvent::~QFileOpenEvent +24 QFileOpenEvent::~QFileOpenEvent + +Class QFileOpenEvent + size=32 align=8 + base size=32 base align=8 +QFileOpenEvent (0x7faaaa492af0) 0 + vptr=((& QFileOpenEvent::_ZTV14QFileOpenEvent) + 16u) + QEvent (0x7faaaa492b60) 0 + primary-for QFileOpenEvent (0x7faaaa492af0) + +Vtable for QToolBarChangeEvent +QToolBarChangeEvent::_ZTV19QToolBarChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QToolBarChangeEvent) +16 QToolBarChangeEvent::~QToolBarChangeEvent +24 QToolBarChangeEvent::~QToolBarChangeEvent + +Class QToolBarChangeEvent + size=24 align=8 + base size=21 base align=8 +QToolBarChangeEvent (0x7faaaa492620) 0 + vptr=((& QToolBarChangeEvent::_ZTV19QToolBarChangeEvent) + 16u) + QEvent (0x7faaaa492d20) 0 + primary-for QToolBarChangeEvent (0x7faaaa492620) + +Vtable for QShortcutEvent +QShortcutEvent::_ZTV14QShortcutEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QShortcutEvent) +16 QShortcutEvent::~QShortcutEvent +24 QShortcutEvent::~QShortcutEvent + +Class QShortcutEvent + size=40 align=8 + base size=40 base align=8 +QShortcutEvent (0x7faaaa4a5460) 0 + vptr=((& QShortcutEvent::_ZTV14QShortcutEvent) + 16u) + QEvent (0x7faaaa4a54d0) 0 + primary-for QShortcutEvent (0x7faaaa4a5460) + +Vtable for QClipboardEvent +QClipboardEvent::_ZTV15QClipboardEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QClipboardEvent) +16 QClipboardEvent::~QClipboardEvent +24 QClipboardEvent::~QClipboardEvent + +Class QClipboardEvent + size=24 align=8 + base size=20 base align=8 +QClipboardEvent (0x7faaaa4b0310) 0 + vptr=((& QClipboardEvent::_ZTV15QClipboardEvent) + 16u) + QEvent (0x7faaaa4b0380) 0 + primary-for QClipboardEvent (0x7faaaa4b0310) + +Vtable for QWindowStateChangeEvent +QWindowStateChangeEvent::_ZTV23QWindowStateChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QWindowStateChangeEvent) +16 QWindowStateChangeEvent::~QWindowStateChangeEvent +24 QWindowStateChangeEvent::~QWindowStateChangeEvent + +Class QWindowStateChangeEvent + size=24 align=8 + base size=24 base align=8 +QWindowStateChangeEvent (0x7faaaa4b0770) 0 + vptr=((& QWindowStateChangeEvent::_ZTV23QWindowStateChangeEvent) + 16u) + QEvent (0x7faaaa4b07e0) 0 + primary-for QWindowStateChangeEvent (0x7faaaa4b0770) + +Vtable for QMenubarUpdatedEvent +QMenubarUpdatedEvent::_ZTV20QMenubarUpdatedEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QMenubarUpdatedEvent) +16 QMenubarUpdatedEvent::~QMenubarUpdatedEvent +24 QMenubarUpdatedEvent::~QMenubarUpdatedEvent + +Class QMenubarUpdatedEvent + size=32 align=8 + base size=32 base align=8 +QMenubarUpdatedEvent (0x7faaaa4b0cb0) 0 + vptr=((& QMenubarUpdatedEvent::_ZTV20QMenubarUpdatedEvent) + 16u) + QEvent (0x7faaaa4b0d20) 0 + primary-for QMenubarUpdatedEvent (0x7faaaa4b0cb0) + +Class QTouchEvent::TouchPoint + size=8 align=8 + base size=8 base align=8 +QTouchEvent::TouchPoint (0x7faaaa4c27e0) 0 + +Vtable for QTouchEvent +QTouchEvent::_ZTV11QTouchEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTouchEvent) +16 QTouchEvent::~QTouchEvent +24 QTouchEvent::~QTouchEvent + +Class QTouchEvent + size=48 align=8 + base size=48 base align=8 +QTouchEvent (0x7faaaa4c2690) 0 + vptr=((& QTouchEvent::_ZTV11QTouchEvent) + 16u) + QInputEvent (0x7faaaa4c2700) 0 + primary-for QTouchEvent (0x7faaaa4c2690) + QEvent (0x7faaaa4c2770) 0 + primary-for QInputEvent (0x7faaaa4c2700) + +Vtable for QGestureEvent +QGestureEvent::_ZTV13QGestureEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QGestureEvent) +16 QGestureEvent::~QGestureEvent +24 QGestureEvent::~QGestureEvent + +Class QGestureEvent + size=24 align=8 + base size=20 base align=8 +QGestureEvent (0x7faaaa507d20) 0 + vptr=((& QGestureEvent::_ZTV13QGestureEvent) + 16u) + QEvent (0x7faaaa507d90) 0 + primary-for QGestureEvent (0x7faaaa507d20) + +Class QFont + size=16 align=8 + base size=12 base align=8 +QFont (0x7faaaa50c310) 0 + +Class QPolygon + size=8 align=8 + base size=8 base align=8 +QPolygon (0x7faaaa55e0e0) 0 + QVector (0x7faaaa55e150) 0 + +Class QPolygonF + size=8 align=8 + base size=8 base align=8 +QPolygonF (0x7faaaa39a620) 0 + QVector (0x7faaaa39a690) 0 + +Class QMatrix + size=48 align=8 + base size=48 base align=8 +QMatrix (0x7faaaa3de770) 0 + +Class QPainterPath::Element + size=24 align=8 + base size=24 base align=8 +QPainterPath::Element (0x7faaaa4228c0) 0 + +Class QPainterPath + size=8 align=8 + base size=8 base align=8 +QPainterPath (0x7faaaa422850) 0 + +Class QPainterPathPrivate + size=16 align=8 + base size=16 base align=8 +QPainterPathPrivate (0x7faaaa27c000) 0 + +Class QPainterPathStroker + size=8 align=8 + base size=8 base align=8 +QPainterPathStroker (0x7faaaa27caf0) 0 + +Class QTransform + size=88 align=8 + base size=88 base align=8 +QTransform (0x7faaaa2e9af0) 0 + +Vtable for QPaintDevice +QPaintDevice::_ZTV12QPaintDevice: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QPaintDevice) +16 QPaintDevice::~QPaintDevice +24 QPaintDevice::~QPaintDevice +32 QPaintDevice::devType +40 __cxa_pure_virtual +48 QPaintDevice::metric + +Class QPaintDevice + size=16 align=8 + base size=10 base align=8 +QPaintDevice (0x7faaaa194150) 0 + vptr=((& QPaintDevice::_ZTV12QPaintDevice) + 16u) + +Class QImageTextKeyLang + size=16 align=8 + base size=16 base align=8 +QImageTextKeyLang (0x7faaaa1b9070) 0 + +Vtable for QImage +QImage::_ZTV6QImage: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QImage) +16 QImage::~QImage +24 QImage::~QImage +32 QImage::devType +40 QImage::paintEngine +48 QImage::metric + +Class QImage + size=24 align=8 + base size=24 base align=8 +QImage (0x7faaaa1e38c0) 0 + vptr=((& QImage::_ZTV6QImage) + 16u) + QPaintDevice (0x7faaaa1e3930) 0 + primary-for QImage (0x7faaaa1e38c0) + +Vtable for QPixmap +QPixmap::_ZTV7QPixmap: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QPixmap) +16 QPixmap::~QPixmap +24 QPixmap::~QPixmap +32 QPixmap::devType +40 QPixmap::paintEngine +48 QPixmap::metric + +Class QPixmap + size=24 align=8 + base size=24 base align=8 +QPixmap (0x7faaaa087070) 0 + vptr=((& QPixmap::_ZTV7QPixmap) + 16u) + QPaintDevice (0x7faaaa0870e0) 0 + primary-for QPixmap (0x7faaaa087070) + +Class QBrush + size=8 align=8 + base size=8 base align=8 +QBrush (0x7faaaa0e5380) 0 + +Class QBrushData + size=112 align=8 + base size=112 base align=8 +QBrushData (0x7faaaa100d90) 0 + +Class QGradient + size=64 align=8 + base size=64 base align=8 +QGradient (0x7faaaa115f50) 0 + +Class QLinearGradient + size=64 align=8 + base size=64 base align=8 +QLinearGradient (0x7faaaa156a10) 0 + QGradient (0x7faaaa156a80) 0 + +Class QRadialGradient + size=64 align=8 + base size=64 base align=8 +QRadialGradient (0x7faaaa156ee0) 0 + QGradient (0x7faaaa156f50) 0 + +Class QConicalGradient + size=64 align=8 + base size=64 base align=8 +QConicalGradient (0x7faaa9f604d0) 0 + QGradient (0x7faaa9f60540) 0 + +Class QPen + size=8 align=8 + base size=8 base align=8 +QPen (0x7faaa9f60850) 0 + +Class QTextOption::Tab + size=16 align=8 + base size=14 base align=8 +QTextOption::Tab (0x7faaa9f7de00) 0 + +Class QTextOption + size=32 align=8 + base size=32 base align=8 +QTextOption (0x7faaa9f7dd90) 0 + +Class QTextLength + size=16 align=8 + base size=16 base align=8 +QTextLength (0x7faaa9fee150) 0 + +Class QTextFormat + size=16 align=8 + base size=12 base align=8 +QTextFormat (0x7faaaa0084d0) 0 + +Class QTextCharFormat + size=16 align=8 + base size=12 base align=8 +QTextCharFormat (0x7faaa9ec0540) 0 + QTextFormat (0x7faaa9ec05b0) 0 + +Class QTextBlockFormat + size=16 align=8 + base size=12 base align=8 +QTextBlockFormat (0x7faaa9f221c0) 0 + QTextFormat (0x7faaa9f22230) 0 + +Class QTextListFormat + size=16 align=8 + base size=12 base align=8 +QTextListFormat (0x7faaa9f417e0) 0 + QTextFormat (0x7faaa9f41850) 0 + +Class QTextImageFormat + size=16 align=8 + base size=12 base align=8 +QTextImageFormat (0x7faaa9f4ed20) 0 + QTextCharFormat (0x7faaa9f4ed90) 0 + QTextFormat (0x7faaa9f4ee00) 0 + +Class QTextFrameFormat + size=16 align=8 + base size=12 base align=8 +QTextFrameFormat (0x7faaa9d5e460) 0 + QTextFormat (0x7faaa9d5e4d0) 0 + +Class QTextTableFormat + size=16 align=8 + base size=12 base align=8 +QTextTableFormat (0x7faaa9d95380) 0 + QTextFrameFormat (0x7faaa9d953f0) 0 + QTextFormat (0x7faaa9d95460) 0 + +Class QTextTableCellFormat + size=16 align=8 + base size=12 base align=8 +QTextTableCellFormat (0x7faaa9db0230) 0 + QTextCharFormat (0x7faaa9db02a0) 0 + QTextFormat (0x7faaa9db0310) 0 + +Class QTextInlineObject + size=16 align=8 + base size=16 base align=8 +QTextInlineObject (0x7faaa9dc4700) 0 + +Class QTextLayout::FormatRange + size=24 align=8 + base size=24 base align=8 +QTextLayout::FormatRange (0x7faaa9dd0a10) 0 + +Class QTextLayout + size=8 align=8 + base size=8 base align=8 +QTextLayout (0x7faaa9dd0770) 0 + +Class QTextLine + size=16 align=8 + base size=16 base align=8 +QTextLine (0x7faaa9de9770) 0 + +Vtable for QAbstractUndoItem +QAbstractUndoItem::_ZTV17QAbstractUndoItem: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAbstractUndoItem) +16 __cxa_pure_virtual +24 __cxa_pure_virtual +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QAbstractUndoItem + size=8 align=8 + base size=8 base align=8 +QAbstractUndoItem (0x7faaa9e1e070) 0 nearly-empty + vptr=((& QAbstractUndoItem::_ZTV17QAbstractUndoItem) + 16u) + +Vtable for QTextDocument +QTextDocument::_ZTV13QTextDocument: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QTextDocument) +16 QTextDocument::metaObject +24 QTextDocument::qt_metacast +32 QTextDocument::qt_metacall +40 QTextDocument::~QTextDocument +48 QTextDocument::~QTextDocument +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTextDocument::clear +120 QTextDocument::createObject +128 QTextDocument::loadResource + +Class QTextDocument + size=16 align=8 + base size=16 base align=8 +QTextDocument (0x7faaa9e1eaf0) 0 + vptr=((& QTextDocument::_ZTV13QTextDocument) + 16u) + QObject (0x7faaa9e1eb60) 0 + primary-for QTextDocument (0x7faaa9e1eaf0) + +Class QTextCursor + size=8 align=8 + base size=8 base align=8 +QTextCursor (0x7faaa9c7ba80) 0 + +Class QPalette + size=16 align=8 + base size=12 base align=8 +QPalette (0x7faaa9c90f50) 0 + +Class QColorGroup + size=16 align=8 + base size=12 base align=8 +QColorGroup (0x7faaa9d02850) 0 + QPalette (0x7faaa9d028c0) 0 + +Class QAbstractTextDocumentLayout::Selection + size=24 align=8 + base size=24 base align=8 +QAbstractTextDocumentLayout::Selection (0x7faaa9d39d90) 0 + +Class QAbstractTextDocumentLayout::PaintContext + size=64 align=8 + base size=64 base align=8 +QAbstractTextDocumentLayout::PaintContext (0x7faaa9d39e00) 0 + +Vtable for QAbstractTextDocumentLayout +QAbstractTextDocumentLayout::_ZTV27QAbstractTextDocumentLayout: 24u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QAbstractTextDocumentLayout) +16 QAbstractTextDocumentLayout::metaObject +24 QAbstractTextDocumentLayout::qt_metacast +32 QAbstractTextDocumentLayout::qt_metacall +40 QAbstractTextDocumentLayout::~QAbstractTextDocumentLayout +48 QAbstractTextDocumentLayout::~QAbstractTextDocumentLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 QAbstractTextDocumentLayout::resizeInlineObject +176 QAbstractTextDocumentLayout::positionInlineObject +184 QAbstractTextDocumentLayout::drawInlineObject + +Class QAbstractTextDocumentLayout + size=16 align=8 + base size=16 base align=8 +QAbstractTextDocumentLayout (0x7faaa9d39b60) 0 + vptr=((& QAbstractTextDocumentLayout::_ZTV27QAbstractTextDocumentLayout) + 16u) + QObject (0x7faaa9d39bd0) 0 + primary-for QAbstractTextDocumentLayout (0x7faaa9d39b60) + +Vtable for QTextObjectInterface +QTextObjectInterface::_ZTV20QTextObjectInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QTextObjectInterface) +16 QTextObjectInterface::~QTextObjectInterface +24 QTextObjectInterface::~QTextObjectInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QTextObjectInterface + size=8 align=8 + base size=8 base align=8 +QTextObjectInterface (0x7faaa9b714d0) 0 nearly-empty + vptr=((& QTextObjectInterface::_ZTV20QTextObjectInterface) + 16u) + +Class QFontDatabase + size=8 align=8 + base size=8 base align=8 +QFontDatabase (0x7faaa9b7c7e0) 0 + +Class QFontInfo + size=8 align=8 + base size=8 base align=8 +QFontInfo (0x7faaa9b8c7e0) 0 + +Class QFontMetrics + size=8 align=8 + base size=8 base align=8 +QFontMetrics (0x7faaa9b9f310) 0 + +Class QFontMetricsF + size=8 align=8 + base size=8 base align=8 +QFontMetricsF (0x7faaa9bb4770) 0 + +Vtable for QTextObject +QTextObject::_ZTV11QTextObject: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTextObject) +16 QTextObject::metaObject +24 QTextObject::qt_metacast +32 QTextObject::qt_metacall +40 QTextObject::~QTextObject +48 QTextObject::~QTextObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTextObject + size=16 align=8 + base size=16 base align=8 +QTextObject (0x7faaa9bc8690) 0 + vptr=((& QTextObject::_ZTV11QTextObject) + 16u) + QObject (0x7faaa9bc8700) 0 + primary-for QTextObject (0x7faaa9bc8690) + +Vtable for QTextBlockGroup +QTextBlockGroup::_ZTV15QTextBlockGroup: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QTextBlockGroup) +16 QTextBlockGroup::metaObject +24 QTextBlockGroup::qt_metacast +32 QTextBlockGroup::qt_metacall +40 QTextBlockGroup::~QTextBlockGroup +48 QTextBlockGroup::~QTextBlockGroup +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTextBlockGroup::blockInserted +120 QTextBlockGroup::blockRemoved +128 QTextBlockGroup::blockFormatChanged + +Class QTextBlockGroup + size=16 align=8 + base size=16 base align=8 +QTextBlockGroup (0x7faaa9bdbee0) 0 + vptr=((& QTextBlockGroup::_ZTV15QTextBlockGroup) + 16u) + QTextObject (0x7faaa9bdbf50) 0 + primary-for QTextBlockGroup (0x7faaa9bdbee0) + QObject (0x7faaa9be2000) 0 + primary-for QTextObject (0x7faaa9bdbf50) + +Vtable for QTextFrameLayoutData +QTextFrameLayoutData::_ZTV20QTextFrameLayoutData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QTextFrameLayoutData) +16 QTextFrameLayoutData::~QTextFrameLayoutData +24 QTextFrameLayoutData::~QTextFrameLayoutData + +Class QTextFrameLayoutData + size=8 align=8 + base size=8 base align=8 +QTextFrameLayoutData (0x7faaa9bf77e0) 0 nearly-empty + vptr=((& QTextFrameLayoutData::_ZTV20QTextFrameLayoutData) + 16u) + +Class QTextFrame::iterator + size=32 align=8 + base size=28 base align=8 +QTextFrame::iterator (0x7faaa9c03230) 0 + +Vtable for QTextFrame +QTextFrame::_ZTV10QTextFrame: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextFrame) +16 QTextFrame::metaObject +24 QTextFrame::qt_metacast +32 QTextFrame::qt_metacall +40 QTextFrame::~QTextFrame +48 QTextFrame::~QTextFrame +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTextFrame + size=16 align=8 + base size=16 base align=8 +QTextFrame (0x7faaa9bf7930) 0 + vptr=((& QTextFrame::_ZTV10QTextFrame) + 16u) + QTextObject (0x7faaa9bf79a0) 0 + primary-for QTextFrame (0x7faaa9bf7930) + QObject (0x7faaa9bf7a10) 0 + primary-for QTextObject (0x7faaa9bf79a0) + +Vtable for QTextBlockUserData +QTextBlockUserData::_ZTV18QTextBlockUserData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QTextBlockUserData) +16 QTextBlockUserData::~QTextBlockUserData +24 QTextBlockUserData::~QTextBlockUserData + +Class QTextBlockUserData + size=8 align=8 + base size=8 base align=8 +QTextBlockUserData (0x7faaa9c37380) 0 nearly-empty + vptr=((& QTextBlockUserData::_ZTV18QTextBlockUserData) + 16u) + +Class QTextBlock::iterator + size=24 align=8 + base size=20 base align=8 +QTextBlock::iterator (0x7faaa9c37cb0) 0 + +Class QTextBlock + size=16 align=8 + base size=12 base align=8 +QTextBlock (0x7faaa9c374d0) 0 + +Class QTextFragment + size=16 align=8 + base size=16 base align=8 +QTextFragment (0x7faaa9a2ee00) 0 + +Vtable for QSyntaxHighlighter +QSyntaxHighlighter::_ZTV18QSyntaxHighlighter: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QSyntaxHighlighter) +16 QSyntaxHighlighter::metaObject +24 QSyntaxHighlighter::qt_metacast +32 QSyntaxHighlighter::qt_metacall +40 QSyntaxHighlighter::~QSyntaxHighlighter +48 QSyntaxHighlighter::~QSyntaxHighlighter +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual + +Class QSyntaxHighlighter + size=16 align=8 + base size=16 base align=8 +QSyntaxHighlighter (0x7faaa9a57000) 0 + vptr=((& QSyntaxHighlighter::_ZTV18QSyntaxHighlighter) + 16u) + QObject (0x7faaa9a57070) 0 + primary-for QSyntaxHighlighter (0x7faaa9a57000) + +Class QTextDocumentFragment + size=8 align=8 + base size=8 base align=8 +QTextDocumentFragment (0x7faaa9a709a0) 0 + +Class QTextDocumentWriter + size=8 align=8 + base size=8 base align=8 +QTextDocumentWriter (0x7faaa9a763f0) 0 + +Vtable for QTextList +QTextList::_ZTV9QTextList: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTextList) +16 QTextList::metaObject +24 QTextList::qt_metacast +32 QTextList::qt_metacall +40 QTextList::~QTextList +48 QTextList::~QTextList +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTextBlockGroup::blockInserted +120 QTextBlockGroup::blockRemoved +128 QTextBlockGroup::blockFormatChanged + +Class QTextList + size=16 align=8 + base size=16 base align=8 +QTextList (0x7faaa9a76a80) 0 + vptr=((& QTextList::_ZTV9QTextList) + 16u) + QTextBlockGroup (0x7faaa9a76af0) 0 + primary-for QTextList (0x7faaa9a76a80) + QTextObject (0x7faaa9a76b60) 0 + primary-for QTextBlockGroup (0x7faaa9a76af0) + QObject (0x7faaa9a76bd0) 0 + primary-for QTextObject (0x7faaa9a76b60) + +Class QTextTableCell + size=16 align=8 + base size=12 base align=8 +QTextTableCell (0x7faaa9aa1930) 0 + +Vtable for QTextTable +QTextTable::_ZTV10QTextTable: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextTable) +16 QTextTable::metaObject +24 QTextTable::qt_metacast +32 QTextTable::qt_metacall +40 QTextTable::~QTextTable +48 QTextTable::~QTextTable +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTextTable + size=16 align=8 + base size=16 base align=8 +QTextTable (0x7faaa9ab6a80) 0 + vptr=((& QTextTable::_ZTV10QTextTable) + 16u) + QTextFrame (0x7faaa9ab6af0) 0 + primary-for QTextTable (0x7faaa9ab6a80) + QTextObject (0x7faaa9ab6b60) 0 + primary-for QTextFrame (0x7faaa9ab6af0) + QObject (0x7faaa9ab6bd0) 0 + primary-for QTextObject (0x7faaa9ab6b60) + +Vtable for QCompleter +QCompleter::_ZTV10QCompleter: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QCompleter) +16 QCompleter::metaObject +24 QCompleter::qt_metacast +32 QCompleter::qt_metacall +40 QCompleter::~QCompleter +48 QCompleter::~QCompleter +56 QCompleter::event +64 QCompleter::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCompleter::pathFromIndex +120 QCompleter::splitPath + +Class QCompleter + size=16 align=8 + base size=16 base align=8 +QCompleter (0x7faaa9ade2a0) 0 + vptr=((& QCompleter::_ZTV10QCompleter) + 16u) + QObject (0x7faaa9ade310) 0 + primary-for QCompleter (0x7faaa9ade2a0) + +Class QDesktopServices + size=1 align=1 + base size=0 base align=1 +QDesktopServices (0x7faaa9901230) 0 empty + +Class QIcon + size=8 align=8 + base size=8 base align=8 +QIcon (0x7faaa9901380) 0 + +Vtable for QSystemTrayIcon +QSystemTrayIcon::_ZTV15QSystemTrayIcon: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSystemTrayIcon) +16 QSystemTrayIcon::metaObject +24 QSystemTrayIcon::qt_metacast +32 QSystemTrayIcon::qt_metacall +40 QSystemTrayIcon::~QSystemTrayIcon +48 QSystemTrayIcon::~QSystemTrayIcon +56 QSystemTrayIcon::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSystemTrayIcon + size=16 align=8 + base size=16 base align=8 +QSystemTrayIcon (0x7faaa992af50) 0 + vptr=((& QSystemTrayIcon::_ZTV15QSystemTrayIcon) + 16u) + QObject (0x7faaa993b000) 0 + primary-for QSystemTrayIcon (0x7faaa992af50) + +Vtable for QUndoGroup +QUndoGroup::_ZTV10QUndoGroup: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QUndoGroup) +16 QUndoGroup::metaObject +24 QUndoGroup::qt_metacast +32 QUndoGroup::qt_metacall +40 QUndoGroup::~QUndoGroup +48 QUndoGroup::~QUndoGroup +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QUndoGroup + size=16 align=8 + base size=16 base align=8 +QUndoGroup (0x7faaa99591c0) 0 + vptr=((& QUndoGroup::_ZTV10QUndoGroup) + 16u) + QObject (0x7faaa9959230) 0 + primary-for QUndoGroup (0x7faaa99591c0) + +Vtable for QUndoCommand +QUndoCommand::_ZTV12QUndoCommand: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QUndoCommand) +16 QUndoCommand::~QUndoCommand +24 QUndoCommand::~QUndoCommand +32 QUndoCommand::undo +40 QUndoCommand::redo +48 QUndoCommand::id +56 QUndoCommand::mergeWith + +Class QUndoCommand + size=16 align=8 + base size=16 base align=8 +QUndoCommand (0x7faaa996ed20) 0 + vptr=((& QUndoCommand::_ZTV12QUndoCommand) + 16u) + +Vtable for QUndoStack +QUndoStack::_ZTV10QUndoStack: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QUndoStack) +16 QUndoStack::metaObject +24 QUndoStack::qt_metacast +32 QUndoStack::qt_metacall +40 QUndoStack::~QUndoStack +48 QUndoStack::~QUndoStack +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QUndoStack + size=16 align=8 + base size=16 base align=8 +QUndoStack (0x7faaa9976690) 0 + vptr=((& QUndoStack::_ZTV10QUndoStack) + 16u) + QObject (0x7faaa9976700) 0 + primary-for QUndoStack (0x7faaa9976690) + +Class QSizePolicy + size=4 align=4 + base size=4 base align=4 +QSizePolicy (0x7faaa999c1c0) 0 + +Class QCursor + size=8 align=8 + base size=8 base align=8 +QCursor (0x7faaa986b1c0) 0 + +Class QWidgetData + size=88 align=8 + base size=88 base align=8 +QWidgetData (0x7faaa986b9a0) 0 + +Vtable for QWidget +QWidget::_ZTV7QWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QWidget) +16 QWidget::metaObject +24 QWidget::qt_metacast +32 QWidget::qt_metacall +40 QWidget::~QWidget +48 QWidget::~QWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI7QWidget) +464 QWidget::_ZThn16_N7QWidgetD1Ev +472 QWidget::_ZThn16_N7QWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWidget + size=40 align=8 + base size=40 base align=8 +QWidget (0x7faaa9864a00) 0 + vptr=((& QWidget::_ZTV7QWidget) + 16u) + QObject (0x7faaa986ba10) 0 + primary-for QWidget (0x7faaa9864a00) + QPaintDevice (0x7faaa986ba80) 16 + vptr=((& QWidget::_ZTV7QWidget) + 464u) + +Vtable for QFrame +QFrame::_ZTV6QFrame: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QFrame) +16 QFrame::metaObject +24 QFrame::qt_metacast +32 QFrame::qt_metacall +40 QFrame::~QFrame +48 QFrame::~QFrame +56 QFrame::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QFrame::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFrame::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI6QFrame) +464 QFrame::_ZThn16_N6QFrameD1Ev +472 QFrame::_ZThn16_N6QFrameD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFrame + size=40 align=8 + base size=40 base align=8 +QFrame (0x7faaa97f3a80) 0 + vptr=((& QFrame::_ZTV6QFrame) + 16u) + QWidget (0x7faaa97f7680) 0 + primary-for QFrame (0x7faaa97f3a80) + QObject (0x7faaa97f3af0) 0 + primary-for QWidget (0x7faaa97f7680) + QPaintDevice (0x7faaa97f3b60) 16 + vptr=((& QFrame::_ZTV6QFrame) + 464u) + +Vtable for QAbstractScrollArea +QAbstractScrollArea::_ZTV19QAbstractScrollArea: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractScrollArea) +16 QAbstractScrollArea::metaObject +24 QAbstractScrollArea::qt_metacast +32 QAbstractScrollArea::qt_metacall +40 QAbstractScrollArea::~QAbstractScrollArea +48 QAbstractScrollArea::~QAbstractScrollArea +56 QAbstractScrollArea::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractScrollArea::mousePressEvent +168 QAbstractScrollArea::mouseReleaseEvent +176 QAbstractScrollArea::mouseDoubleClickEvent +184 QAbstractScrollArea::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractScrollArea::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractScrollArea::paintEvent +256 QWidget::moveEvent +264 QAbstractScrollArea::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractScrollArea::dragEnterEvent +312 QAbstractScrollArea::dragMoveEvent +320 QAbstractScrollArea::dragLeaveEvent +328 QAbstractScrollArea::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QAbstractScrollArea::scrollContentsBy +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI19QAbstractScrollArea) +480 QAbstractScrollArea::_ZThn16_N19QAbstractScrollAreaD1Ev +488 QAbstractScrollArea::_ZThn16_N19QAbstractScrollAreaD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractScrollArea + size=40 align=8 + base size=40 base align=8 +QAbstractScrollArea (0x7faaa961f0e0) 0 + vptr=((& QAbstractScrollArea::_ZTV19QAbstractScrollArea) + 16u) + QFrame (0x7faaa961f150) 0 + primary-for QAbstractScrollArea (0x7faaa961f0e0) + QWidget (0x7faaa9605a80) 0 + primary-for QFrame (0x7faaa961f150) + QObject (0x7faaa961f1c0) 0 + primary-for QWidget (0x7faaa9605a80) + QPaintDevice (0x7faaa961f230) 16 + vptr=((& QAbstractScrollArea::_ZTV19QAbstractScrollArea) + 480u) + +Class QItemSelectionRange + size=16 align=8 + base size=16 base align=8 +QItemSelectionRange (0x7faaa9646000) 0 + +Vtable for QItemSelectionModel +QItemSelectionModel::_ZTV19QItemSelectionModel: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QItemSelectionModel) +16 QItemSelectionModel::metaObject +24 QItemSelectionModel::qt_metacast +32 QItemSelectionModel::qt_metacall +40 QItemSelectionModel::~QItemSelectionModel +48 QItemSelectionModel::~QItemSelectionModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QItemSelectionModel::select +120 QItemSelectionModel::select +128 QItemSelectionModel::clear +136 QItemSelectionModel::reset + +Class QItemSelectionModel + size=16 align=8 + base size=16 base align=8 +QItemSelectionModel (0x7faaa96ae4d0) 0 + vptr=((& QItemSelectionModel::_ZTV19QItemSelectionModel) + 16u) + QObject (0x7faaa96ae540) 0 + primary-for QItemSelectionModel (0x7faaa96ae4d0) + +Class QItemSelection + size=8 align=8 + base size=8 base align=8 +QItemSelection (0x7faaa96ef9a0) 0 + QList (0x7faaa96efa10) 0 + +Vtable for QValidator +QValidator::_ZTV10QValidator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QValidator) +16 QValidator::metaObject +24 QValidator::qt_metacast +32 QValidator::qt_metacall +40 QValidator::~QValidator +48 QValidator::~QValidator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 QValidator::fixup + +Class QValidator + size=16 align=8 + base size=16 base align=8 +QValidator (0x7faaa952e2a0) 0 + vptr=((& QValidator::_ZTV10QValidator) + 16u) + QObject (0x7faaa952e310) 0 + primary-for QValidator (0x7faaa952e2a0) + +Vtable for QIntValidator +QIntValidator::_ZTV13QIntValidator: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QIntValidator) +16 QIntValidator::metaObject +24 QIntValidator::qt_metacast +32 QIntValidator::qt_metacall +40 QIntValidator::~QIntValidator +48 QIntValidator::~QIntValidator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QIntValidator::validate +120 QValidator::fixup +128 QIntValidator::setRange + +Class QIntValidator + size=24 align=8 + base size=24 base align=8 +QIntValidator (0x7faaa95490e0) 0 + vptr=((& QIntValidator::_ZTV13QIntValidator) + 16u) + QValidator (0x7faaa9549150) 0 + primary-for QIntValidator (0x7faaa95490e0) + QObject (0x7faaa95491c0) 0 + primary-for QValidator (0x7faaa9549150) + +Vtable for QDoubleValidator +QDoubleValidator::_ZTV16QDoubleValidator: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QDoubleValidator) +16 QDoubleValidator::metaObject +24 QDoubleValidator::qt_metacast +32 QDoubleValidator::qt_metacall +40 QDoubleValidator::~QDoubleValidator +48 QDoubleValidator::~QDoubleValidator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QDoubleValidator::validate +120 QValidator::fixup +128 QDoubleValidator::setRange + +Class QDoubleValidator + size=40 align=8 + base size=36 base align=8 +QDoubleValidator (0x7faaa955f070) 0 + vptr=((& QDoubleValidator::_ZTV16QDoubleValidator) + 16u) + QValidator (0x7faaa955f0e0) 0 + primary-for QDoubleValidator (0x7faaa955f070) + QObject (0x7faaa955f150) 0 + primary-for QValidator (0x7faaa955f0e0) + +Vtable for QRegExpValidator +QRegExpValidator::_ZTV16QRegExpValidator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QRegExpValidator) +16 QRegExpValidator::metaObject +24 QRegExpValidator::qt_metacast +32 QRegExpValidator::qt_metacall +40 QRegExpValidator::~QRegExpValidator +48 QRegExpValidator::~QRegExpValidator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QRegExpValidator::validate +120 QValidator::fixup + +Class QRegExpValidator + size=24 align=8 + base size=24 base align=8 +QRegExpValidator (0x7faaa957b930) 0 + vptr=((& QRegExpValidator::_ZTV16QRegExpValidator) + 16u) + QValidator (0x7faaa957b9a0) 0 + primary-for QRegExpValidator (0x7faaa957b930) + QObject (0x7faaa957ba10) 0 + primary-for QValidator (0x7faaa957b9a0) + +Vtable for QAbstractSpinBox +QAbstractSpinBox::_ZTV16QAbstractSpinBox: 68u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QAbstractSpinBox) +16 QAbstractSpinBox::metaObject +24 QAbstractSpinBox::qt_metacast +32 QAbstractSpinBox::qt_metacall +40 QAbstractSpinBox::~QAbstractSpinBox +48 QAbstractSpinBox::~QAbstractSpinBox +56 QAbstractSpinBox::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractSpinBox::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractSpinBox::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QAbstractSpinBox::wheelEvent +200 QAbstractSpinBox::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QAbstractSpinBox::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractSpinBox::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QAbstractSpinBox::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractSpinBox::validate +456 QAbstractSpinBox::fixup +464 QAbstractSpinBox::stepBy +472 QAbstractSpinBox::clear +480 QAbstractSpinBox::stepEnabled +488 (int (*)(...))-0x00000000000000010 +496 (int (*)(...))(& _ZTI16QAbstractSpinBox) +504 QAbstractSpinBox::_ZThn16_N16QAbstractSpinBoxD1Ev +512 QAbstractSpinBox::_ZThn16_N16QAbstractSpinBoxD0Ev +520 QWidget::_ZThn16_NK7QWidget7devTypeEv +528 QWidget::_ZThn16_NK7QWidget11paintEngineEv +536 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractSpinBox + size=40 align=8 + base size=40 base align=8 +QAbstractSpinBox (0x7faaa95935b0) 0 + vptr=((& QAbstractSpinBox::_ZTV16QAbstractSpinBox) + 16u) + QWidget (0x7faaa9578e80) 0 + primary-for QAbstractSpinBox (0x7faaa95935b0) + QObject (0x7faaa9593620) 0 + primary-for QWidget (0x7faaa9578e80) + QPaintDevice (0x7faaa9593690) 16 + vptr=((& QAbstractSpinBox::_ZTV16QAbstractSpinBox) + 504u) + +Vtable for QAbstractSlider +QAbstractSlider::_ZTV15QAbstractSlider: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QAbstractSlider) +16 QAbstractSlider::metaObject +24 QAbstractSlider::qt_metacast +32 QAbstractSlider::qt_metacall +40 QAbstractSlider::~QAbstractSlider +48 QAbstractSlider::~QAbstractSlider +56 QAbstractSlider::event +64 QObject::eventFilter +72 QAbstractSlider::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QAbstractSlider::wheelEvent +200 QAbstractSlider::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractSlider::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractSlider::sliderChange +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI15QAbstractSlider) +472 QAbstractSlider::_ZThn16_N15QAbstractSliderD1Ev +480 QAbstractSlider::_ZThn16_N15QAbstractSliderD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractSlider + size=40 align=8 + base size=40 base align=8 +QAbstractSlider (0x7faaa95ef5b0) 0 + vptr=((& QAbstractSlider::_ZTV15QAbstractSlider) + 16u) + QWidget (0x7faaa95f0200) 0 + primary-for QAbstractSlider (0x7faaa95ef5b0) + QObject (0x7faaa95ef620) 0 + primary-for QWidget (0x7faaa95f0200) + QPaintDevice (0x7faaa95ef690) 16 + vptr=((& QAbstractSlider::_ZTV15QAbstractSlider) + 472u) + +Vtable for QSlider +QSlider::_ZTV7QSlider: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QSlider) +16 QSlider::metaObject +24 QSlider::qt_metacast +32 QSlider::qt_metacall +40 QSlider::~QSlider +48 QSlider::~QSlider +56 QSlider::event +64 QObject::eventFilter +72 QAbstractSlider::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QSlider::sizeHint +136 QSlider::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QSlider::mousePressEvent +168 QSlider::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QSlider::mouseMoveEvent +192 QAbstractSlider::wheelEvent +200 QAbstractSlider::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QSlider::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractSlider::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractSlider::sliderChange +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI7QSlider) +472 QSlider::_ZThn16_N7QSliderD1Ev +480 QSlider::_ZThn16_N7QSliderD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSlider + size=40 align=8 + base size=40 base align=8 +QSlider (0x7faaa94273f0) 0 + vptr=((& QSlider::_ZTV7QSlider) + 16u) + QAbstractSlider (0x7faaa9427460) 0 + primary-for QSlider (0x7faaa94273f0) + QWidget (0x7faaa9425300) 0 + primary-for QAbstractSlider (0x7faaa9427460) + QObject (0x7faaa94274d0) 0 + primary-for QWidget (0x7faaa9425300) + QPaintDevice (0x7faaa9427540) 16 + vptr=((& QSlider::_ZTV7QSlider) + 472u) + +Vtable for QStyle +QStyle::_ZTV6QStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QStyle) +16 QStyle::metaObject +24 QStyle::qt_metacast +32 QStyle::qt_metacall +40 QStyle::~QStyle +48 QStyle::~QStyle +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QStyle::polish +120 QStyle::unpolish +128 QStyle::polish +136 QStyle::unpolish +144 QStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QStyle::standardPalette +192 __cxa_pure_virtual +200 __cxa_pure_virtual +208 __cxa_pure_virtual +216 __cxa_pure_virtual +224 __cxa_pure_virtual +232 __cxa_pure_virtual +240 __cxa_pure_virtual +248 __cxa_pure_virtual +256 __cxa_pure_virtual +264 __cxa_pure_virtual +272 __cxa_pure_virtual + +Class QStyle + size=16 align=8 + base size=16 base align=8 +QStyle (0x7faaa944e9a0) 0 + vptr=((& QStyle::_ZTV6QStyle) + 16u) + QObject (0x7faaa944ea10) 0 + primary-for QStyle (0x7faaa944e9a0) + +Vtable for QTabBar +QTabBar::_ZTV7QTabBar: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QTabBar) +16 QTabBar::metaObject +24 QTabBar::qt_metacast +32 QTabBar::qt_metacall +40 QTabBar::~QTabBar +48 QTabBar::~QTabBar +56 QTabBar::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QTabBar::sizeHint +136 QTabBar::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTabBar::mousePressEvent +168 QTabBar::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QTabBar::mouseMoveEvent +192 QTabBar::wheelEvent +200 QTabBar::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTabBar::paintEvent +256 QWidget::moveEvent +264 QTabBar::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QTabBar::showEvent +344 QTabBar::hideEvent +352 QWidget::x11Event +360 QTabBar::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QTabBar::tabSizeHint +456 QTabBar::tabInserted +464 QTabBar::tabRemoved +472 QTabBar::tabLayoutChange +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI7QTabBar) +496 QTabBar::_ZThn16_N7QTabBarD1Ev +504 QTabBar::_ZThn16_N7QTabBarD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTabBar + size=40 align=8 + base size=40 base align=8 +QTabBar (0x7faaa94fd850) 0 + vptr=((& QTabBar::_ZTV7QTabBar) + 16u) + QWidget (0x7faaa94fe300) 0 + primary-for QTabBar (0x7faaa94fd850) + QObject (0x7faaa94fd8c0) 0 + primary-for QWidget (0x7faaa94fe300) + QPaintDevice (0x7faaa94fd930) 16 + vptr=((& QTabBar::_ZTV7QTabBar) + 496u) + +Vtable for QTabWidget +QTabWidget::_ZTV10QTabWidget: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTabWidget) +16 QTabWidget::metaObject +24 QTabWidget::qt_metacast +32 QTabWidget::qt_metacall +40 QTabWidget::~QTabWidget +48 QTabWidget::~QTabWidget +56 QTabWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QTabWidget::sizeHint +136 QTabWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QTabWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTabWidget::paintEvent +256 QWidget::moveEvent +264 QTabWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QTabWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QTabWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QTabWidget::tabInserted +456 QTabWidget::tabRemoved +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI10QTabWidget) +480 QTabWidget::_ZThn16_N10QTabWidgetD1Ev +488 QTabWidget::_ZThn16_N10QTabWidgetD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTabWidget + size=40 align=8 + base size=40 base align=8 +QTabWidget (0x7faaa9329e70) 0 + vptr=((& QTabWidget::_ZTV10QTabWidget) + 16u) + QWidget (0x7faaa9327700) 0 + primary-for QTabWidget (0x7faaa9329e70) + QObject (0x7faaa9329ee0) 0 + primary-for QWidget (0x7faaa9327700) + QPaintDevice (0x7faaa9329f50) 16 + vptr=((& QTabWidget::_ZTV10QTabWidget) + 480u) + +Vtable for QRubberBand +QRubberBand::_ZTV11QRubberBand: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QRubberBand) +16 QRubberBand::metaObject +24 QRubberBand::qt_metacast +32 QRubberBand::qt_metacall +40 QRubberBand::~QRubberBand +48 QRubberBand::~QRubberBand +56 QRubberBand::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QRubberBand::paintEvent +256 QRubberBand::moveEvent +264 QRubberBand::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QRubberBand::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QRubberBand::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI11QRubberBand) +464 QRubberBand::_ZThn16_N11QRubberBandD1Ev +472 QRubberBand::_ZThn16_N11QRubberBandD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QRubberBand + size=40 align=8 + base size=40 base align=8 +QRubberBand (0x7faaa937d850) 0 + vptr=((& QRubberBand::_ZTV11QRubberBand) + 16u) + QWidget (0x7faaa937c880) 0 + primary-for QRubberBand (0x7faaa937d850) + QObject (0x7faaa937d8c0) 0 + primary-for QWidget (0x7faaa937c880) + QPaintDevice (0x7faaa937d930) 16 + vptr=((& QRubberBand::_ZTV11QRubberBand) + 464u) + +Class QStyleOption + size=56 align=8 + base size=56 base align=8 +QStyleOption (0x7faaa93a2b60) 0 + +Class QStyleOptionFocusRect + size=72 align=8 + base size=72 base align=8 +QStyleOptionFocusRect (0x7faaa93af8c0) 0 + QStyleOption (0x7faaa93af930) 0 + +Class QStyleOptionFrame + size=64 align=8 + base size=64 base align=8 +QStyleOptionFrame (0x7faaa93bb8c0) 0 + QStyleOption (0x7faaa93bb930) 0 + +Class QStyleOptionFrameV2 + size=72 align=8 + base size=68 base align=8 +QStyleOptionFrameV2 (0x7faaa93c8850) 0 + QStyleOptionFrame (0x7faaa93c88c0) 0 + QStyleOption (0x7faaa93c8930) 0 + +Class QStyleOptionFrameV3 + size=72 align=8 + base size=72 base align=8 +QStyleOptionFrameV3 (0x7faaa920f150) 0 + QStyleOptionFrameV2 (0x7faaa920f1c0) 0 + QStyleOptionFrame (0x7faaa920f230) 0 + QStyleOption (0x7faaa920f2a0) 0 + +Class QStyleOptionTabWidgetFrame + size=96 align=8 + base size=92 base align=8 +QStyleOptionTabWidgetFrame (0x7faaa921ba10) 0 + QStyleOption (0x7faaa921ba80) 0 + +Class QStyleOptionTabWidgetFrameV2 + size=128 align=8 + base size=124 base align=8 +QStyleOptionTabWidgetFrameV2 (0x7faaa92311c0) 0 + QStyleOptionTabWidgetFrame (0x7faaa9231230) 0 + QStyleOption (0x7faaa92312a0) 0 + +Class QStyleOptionTabBarBase + size=96 align=8 + base size=92 base align=8 +QStyleOptionTabBarBase (0x7faaa9239af0) 0 + QStyleOption (0x7faaa9239b60) 0 + +Class QStyleOptionTabBarBaseV2 + size=96 align=8 + base size=93 base align=8 +QStyleOptionTabBarBaseV2 (0x7faaa9245ee0) 0 + QStyleOptionTabBarBase (0x7faaa9245f50) 0 + QStyleOption (0x7faaa9245310) 0 + +Class QStyleOptionHeader + size=112 align=8 + base size=108 base align=8 +QStyleOptionHeader (0x7faaa925b540) 0 + QStyleOption (0x7faaa925b5b0) 0 + +Class QStyleOptionButton + size=88 align=8 + base size=88 base align=8 +QStyleOptionButton (0x7faaa9274700) 0 + QStyleOption (0x7faaa9274770) 0 + +Class QStyleOptionTab + size=96 align=8 + base size=96 base align=8 +QStyleOptionTab (0x7faaa92c20e0) 0 + QStyleOption (0x7faaa92c2150) 0 + +Class QStyleOptionTabV2 + size=104 align=8 + base size=104 base align=8 +QStyleOptionTabV2 (0x7faaa910f070) 0 + QStyleOptionTab (0x7faaa910f0e0) 0 + QStyleOption (0x7faaa910f150) 0 + +Class QStyleOptionTabV3 + size=128 align=8 + base size=124 base align=8 +QStyleOptionTabV3 (0x7faaa911aa80) 0 + QStyleOptionTabV2 (0x7faaa911aaf0) 0 + QStyleOptionTab (0x7faaa911ab60) 0 + QStyleOption (0x7faaa911abd0) 0 + +Class QStyleOptionToolBar + size=80 align=8 + base size=80 base align=8 +QStyleOptionToolBar (0x7faaa91390e0) 0 + QStyleOption (0x7faaa9139150) 0 + +Class QStyleOptionProgressBar + size=88 align=8 + base size=85 base align=8 +QStyleOptionProgressBar (0x7faaa916c8c0) 0 + QStyleOption (0x7faaa916c930) 0 + +Class QStyleOptionProgressBarV2 + size=96 align=8 + base size=94 base align=8 +QStyleOptionProgressBarV2 (0x7faaa9193070) 0 + QStyleOptionProgressBar (0x7faaa91930e0) 0 + QStyleOption (0x7faaa9193150) 0 + +Class QStyleOptionMenuItem + size=128 align=8 + base size=128 base align=8 +QStyleOptionMenuItem (0x7faaa9193930) 0 + QStyleOption (0x7faaa91939a0) 0 + +Class QStyleOptionQ3ListViewItem + size=80 align=8 + base size=76 base align=8 +QStyleOptionQ3ListViewItem (0x7faaa91aeb60) 0 + QStyleOption (0x7faaa91aebd0) 0 + +Class QStyleOptionQ3DockWindow + size=64 align=8 + base size=58 base align=8 +QStyleOptionQ3DockWindow (0x7faaa8ffc000) 0 + QStyleOption (0x7faaa8ffc070) 0 + +Class QStyleOptionDockWidget + size=72 align=8 + base size=67 base align=8 +QStyleOptionDockWidget (0x7faaa8ffc690) 0 + QStyleOption (0x7faaa9009000) 0 + +Class QStyleOptionDockWidgetV2 + size=72 align=8 + base size=68 base align=8 +QStyleOptionDockWidgetV2 (0x7faaa9017380) 0 + QStyleOptionDockWidget (0x7faaa90173f0) 0 + QStyleOption (0x7faaa9017460) 0 + +Class QStyleOptionViewItem + size=104 align=8 + base size=97 base align=8 +QStyleOptionViewItem (0x7faaa901fb60) 0 + QStyleOption (0x7faaa901fbd0) 0 + +Class QStyleOptionViewItemV2 + size=104 align=8 + base size=104 base align=8 +QStyleOptionViewItemV2 (0x7faaa9038700) 0 + QStyleOptionViewItem (0x7faaa9038770) 0 + QStyleOption (0x7faaa90387e0) 0 + +Class QStyleOptionViewItemV3 + size=120 align=8 + base size=120 base align=8 +QStyleOptionViewItemV3 (0x7faaa9086150) 0 + QStyleOptionViewItemV2 (0x7faaa90861c0) 0 + QStyleOptionViewItem (0x7faaa9086230) 0 + QStyleOption (0x7faaa90862a0) 0 + +Class QStyleOptionViewItemV4 + size=184 align=8 + base size=184 base align=8 +QStyleOptionViewItemV4 (0x7faaa9090a10) 0 + QStyleOptionViewItemV3 (0x7faaa9090a80) 0 + QStyleOptionViewItemV2 (0x7faaa9090af0) 0 + QStyleOptionViewItem (0x7faaa9090b60) 0 + QStyleOption (0x7faaa9090bd0) 0 + +Class QStyleOptionToolBox + size=72 align=8 + base size=72 base align=8 +QStyleOptionToolBox (0x7faaa90b2150) 0 + QStyleOption (0x7faaa90b21c0) 0 + +Class QStyleOptionToolBoxV2 + size=80 align=8 + base size=80 base align=8 +QStyleOptionToolBoxV2 (0x7faaa90be620) 0 + QStyleOptionToolBox (0x7faaa90be690) 0 + QStyleOption (0x7faaa90be700) 0 + +Class QStyleOptionRubberBand + size=64 align=8 + base size=61 base align=8 +QStyleOptionRubberBand (0x7faaa90d6310) 0 + QStyleOption (0x7faaa90d6380) 0 + +Class QStyleOptionComplex + size=64 align=8 + base size=64 base align=8 +QStyleOptionComplex (0x7faaa90de3f0) 0 + QStyleOption (0x7faaa90de460) 0 + +Class QStyleOptionSlider + size=120 align=8 + base size=113 base align=8 +QStyleOptionSlider (0x7faaa90e9bd0) 0 + QStyleOptionComplex (0x7faaa90e9c40) 0 + QStyleOption (0x7faaa90e9cb0) 0 + +Class QStyleOptionSpinBox + size=80 align=8 + base size=73 base align=8 +QStyleOptionSpinBox (0x7faaa8efe9a0) 0 + QStyleOptionComplex (0x7faaa8efea10) 0 + QStyleOption (0x7faaa8efea80) 0 + +Class QStyleOptionQ3ListView + size=112 align=8 + base size=105 base align=8 +QStyleOptionQ3ListView (0x7faaa8f07ee0) 0 + QStyleOptionComplex (0x7faaa8f07f50) 0 + QStyleOption (0x7faaa8f07380) 0 + +Class QStyleOptionToolButton + size=128 align=8 + base size=128 base align=8 +QStyleOptionToolButton (0x7faaa8f40af0) 0 + QStyleOptionComplex (0x7faaa8f40b60) 0 + QStyleOption (0x7faaa8f40bd0) 0 + +Class QStyleOptionComboBox + size=112 align=8 + base size=112 base align=8 +QStyleOptionComboBox (0x7faaa8f81d20) 0 + QStyleOptionComplex (0x7faaa8f81d90) 0 + QStyleOption (0x7faaa8f81e00) 0 + +Class QStyleOptionTitleBar + size=88 align=8 + base size=88 base align=8 +QStyleOptionTitleBar (0x7faaa8fa8850) 0 + QStyleOptionComplex (0x7faaa8fa88c0) 0 + QStyleOption (0x7faaa8fa8930) 0 + +Class QStyleOptionGroupBox + size=112 align=8 + base size=108 base align=8 +QStyleOptionGroupBox (0x7faaa8fc00e0) 0 + QStyleOptionComplex (0x7faaa8fc0150) 0 + QStyleOption (0x7faaa8fc01c0) 0 + +Class QStyleOptionSizeGrip + size=72 align=8 + base size=68 base align=8 +QStyleOptionSizeGrip (0x7faaa8fd0cb0) 0 + QStyleOptionComplex (0x7faaa8fd0d20) 0 + QStyleOption (0x7faaa8fd0d90) 0 + +Class QStyleOptionGraphicsItem + size=144 align=8 + base size=144 base align=8 +QStyleOptionGraphicsItem (0x7faaa8fd9c40) 0 + QStyleOption (0x7faaa8fd9cb0) 0 + +Class QStyleHintReturn + size=8 align=4 + base size=8 base align=4 +QStyleHintReturn (0x7faaa8fe62a0) 0 + +Class QStyleHintReturnMask + size=16 align=8 + base size=16 base align=8 +QStyleHintReturnMask (0x7faaa8e063f0) 0 + QStyleHintReturn (0x7faaa8e06460) 0 + +Class QStyleHintReturnVariant + size=24 align=8 + base size=24 base align=8 +QStyleHintReturnVariant (0x7faaa8e06620) 0 + QStyleHintReturn (0x7faaa8e06690) 0 + +Vtable for QAbstractItemDelegate +QAbstractItemDelegate::_ZTV21QAbstractItemDelegate: 21u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QAbstractItemDelegate) +16 QAbstractItemDelegate::metaObject +24 QAbstractItemDelegate::qt_metacast +32 QAbstractItemDelegate::qt_metacall +40 QAbstractItemDelegate::~QAbstractItemDelegate +48 QAbstractItemDelegate::~QAbstractItemDelegate +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAbstractItemDelegate::createEditor +136 QAbstractItemDelegate::setEditorData +144 QAbstractItemDelegate::setModelData +152 QAbstractItemDelegate::updateEditorGeometry +160 QAbstractItemDelegate::editorEvent + +Class QAbstractItemDelegate + size=16 align=8 + base size=16 base align=8 +QAbstractItemDelegate (0x7faaa8e06af0) 0 + vptr=((& QAbstractItemDelegate::_ZTV21QAbstractItemDelegate) + 16u) + QObject (0x7faaa8e06b60) 0 + primary-for QAbstractItemDelegate (0x7faaa8e06af0) + +Vtable for QAbstractItemView +QAbstractItemView::_ZTV17QAbstractItemView: 103u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAbstractItemView) +16 QAbstractItemView::metaObject +24 QAbstractItemView::qt_metacast +32 QAbstractItemView::qt_metacall +40 QAbstractItemView::~QAbstractItemView +48 QAbstractItemView::~QAbstractItemView +56 QAbstractItemView::event +64 QObject::eventFilter +72 QAbstractItemView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QAbstractItemView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QAbstractItemView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractScrollArea::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QAbstractScrollArea::scrollContentsBy +464 QAbstractItemView::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 __cxa_pure_virtual +496 __cxa_pure_virtual +504 __cxa_pure_virtual +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QAbstractItemView::reset +536 QAbstractItemView::setRootIndex +544 QAbstractItemView::doItemsLayout +552 QAbstractItemView::selectAll +560 QAbstractItemView::dataChanged +568 QAbstractItemView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QAbstractItemView::selectionChanged +592 QAbstractItemView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QAbstractItemView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 __cxa_pure_virtual +688 __cxa_pure_virtual +696 __cxa_pure_virtual +704 __cxa_pure_virtual +712 __cxa_pure_virtual +720 __cxa_pure_virtual +728 QAbstractItemView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 (int (*)(...))-0x00000000000000010 +776 (int (*)(...))(& _ZTI17QAbstractItemView) +784 QAbstractItemView::_ZThn16_N17QAbstractItemViewD1Ev +792 QAbstractItemView::_ZThn16_N17QAbstractItemViewD0Ev +800 QWidget::_ZThn16_NK7QWidget7devTypeEv +808 QWidget::_ZThn16_NK7QWidget11paintEngineEv +816 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractItemView + size=40 align=8 + base size=40 base align=8 +QAbstractItemView (0x7faaa8e351c0) 0 + vptr=((& QAbstractItemView::_ZTV17QAbstractItemView) + 16u) + QAbstractScrollArea (0x7faaa8e35230) 0 + primary-for QAbstractItemView (0x7faaa8e351c0) + QFrame (0x7faaa8e352a0) 0 + primary-for QAbstractScrollArea (0x7faaa8e35230) + QWidget (0x7faaa8e14d80) 0 + primary-for QFrame (0x7faaa8e352a0) + QObject (0x7faaa8e35310) 0 + primary-for QWidget (0x7faaa8e14d80) + QPaintDevice (0x7faaa8e35380) 16 + vptr=((& QAbstractItemView::_ZTV17QAbstractItemView) + 784u) + +Vtable for QListView +QListView::_ZTV9QListView: 103u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QListView) +16 QListView::metaObject +24 QListView::qt_metacast +32 QListView::qt_metacall +40 QListView::~QListView +48 QListView::~QListView +56 QListView::event +64 QObject::eventFilter +72 QListView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QListView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QListView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QListView::paintEvent +256 QWidget::moveEvent +264 QListView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QListView::dragMoveEvent +320 QListView::dragLeaveEvent +328 QListView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QListView::scrollContentsBy +464 QAbstractItemView::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QListView::visualRect +496 QListView::scrollTo +504 QListView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QListView::reset +536 QListView::setRootIndex +544 QListView::doItemsLayout +552 QAbstractItemView::selectAll +560 QListView::dataChanged +568 QListView::rowsInserted +576 QListView::rowsAboutToBeRemoved +584 QListView::selectionChanged +592 QListView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QListView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QListView::moveCursor +688 QListView::horizontalOffset +696 QListView::verticalOffset +704 QListView::isIndexHidden +712 QListView::setSelection +720 QListView::visualRegionForSelection +728 QListView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QListView::startDrag +760 QListView::viewOptions +768 (int (*)(...))-0x00000000000000010 +776 (int (*)(...))(& _ZTI9QListView) +784 QListView::_ZThn16_N9QListViewD1Ev +792 QListView::_ZThn16_N9QListViewD0Ev +800 QWidget::_ZThn16_NK7QWidget7devTypeEv +808 QWidget::_ZThn16_NK7QWidget11paintEngineEv +816 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QListView + size=40 align=8 + base size=40 base align=8 +QListView (0x7faaa8eab9a0) 0 + vptr=((& QListView::_ZTV9QListView) + 16u) + QAbstractItemView (0x7faaa8eaba10) 0 + primary-for QListView (0x7faaa8eab9a0) + QAbstractScrollArea (0x7faaa8eaba80) 0 + primary-for QAbstractItemView (0x7faaa8eaba10) + QFrame (0x7faaa8eabaf0) 0 + primary-for QAbstractScrollArea (0x7faaa8eaba80) + QWidget (0x7faaa8e95500) 0 + primary-for QFrame (0x7faaa8eabaf0) + QObject (0x7faaa8eabb60) 0 + primary-for QWidget (0x7faaa8e95500) + QPaintDevice (0x7faaa8eabbd0) 16 + vptr=((& QListView::_ZTV9QListView) + 784u) + +Vtable for QUndoView +QUndoView::_ZTV9QUndoView: 103u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QUndoView) +16 QUndoView::metaObject +24 QUndoView::qt_metacast +32 QUndoView::qt_metacall +40 QUndoView::~QUndoView +48 QUndoView::~QUndoView +56 QListView::event +64 QObject::eventFilter +72 QListView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QListView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QListView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QListView::paintEvent +256 QWidget::moveEvent +264 QListView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QListView::dragMoveEvent +320 QListView::dragLeaveEvent +328 QListView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QListView::scrollContentsBy +464 QAbstractItemView::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QListView::visualRect +496 QListView::scrollTo +504 QListView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QListView::reset +536 QListView::setRootIndex +544 QListView::doItemsLayout +552 QAbstractItemView::selectAll +560 QListView::dataChanged +568 QListView::rowsInserted +576 QListView::rowsAboutToBeRemoved +584 QListView::selectionChanged +592 QListView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QListView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QListView::moveCursor +688 QListView::horizontalOffset +696 QListView::verticalOffset +704 QListView::isIndexHidden +712 QListView::setSelection +720 QListView::visualRegionForSelection +728 QListView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QListView::startDrag +760 QListView::viewOptions +768 (int (*)(...))-0x00000000000000010 +776 (int (*)(...))(& _ZTI9QUndoView) +784 QUndoView::_ZThn16_N9QUndoViewD1Ev +792 QUndoView::_ZThn16_N9QUndoViewD0Ev +800 QWidget::_ZThn16_NK7QWidget7devTypeEv +808 QWidget::_ZThn16_NK7QWidget11paintEngineEv +816 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QUndoView + size=40 align=8 + base size=40 base align=8 +QUndoView (0x7faaa8cf8070) 0 + vptr=((& QUndoView::_ZTV9QUndoView) + 16u) + QListView (0x7faaa8cf80e0) 0 + primary-for QUndoView (0x7faaa8cf8070) + QAbstractItemView (0x7faaa8cf8150) 0 + primary-for QListView (0x7faaa8cf80e0) + QAbstractScrollArea (0x7faaa8cf81c0) 0 + primary-for QAbstractItemView (0x7faaa8cf8150) + QFrame (0x7faaa8cf8230) 0 + primary-for QAbstractScrollArea (0x7faaa8cf81c0) + QWidget (0x7faaa8cf2500) 0 + primary-for QFrame (0x7faaa8cf8230) + QObject (0x7faaa8cf82a0) 0 + primary-for QWidget (0x7faaa8cf2500) + QPaintDevice (0x7faaa8cf8310) 16 + vptr=((& QUndoView::_ZTV9QUndoView) + 784u) + +Vtable for QDialog +QDialog::_ZTV7QDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QDialog) +16 QDialog::metaObject +24 QDialog::qt_metacast +32 QDialog::qt_metacall +40 QDialog::~QDialog +48 QDialog::~QDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI7QDialog) +488 QDialog::_ZThn16_N7QDialogD1Ev +496 QDialog::_ZThn16_N7QDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDialog + size=40 align=8 + base size=40 base align=8 +QDialog (0x7faaa8d10d20) 0 + vptr=((& QDialog::_ZTV7QDialog) + 16u) + QWidget (0x7faaa8cf2f00) 0 + primary-for QDialog (0x7faaa8d10d20) + QObject (0x7faaa8d10d90) 0 + primary-for QWidget (0x7faaa8cf2f00) + QPaintDevice (0x7faaa8d10e00) 16 + vptr=((& QDialog::_ZTV7QDialog) + 488u) + +Vtable for QAbstractPageSetupDialog +QAbstractPageSetupDialog::_ZTV24QAbstractPageSetupDialog: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QAbstractPageSetupDialog) +16 QAbstractPageSetupDialog::metaObject +24 QAbstractPageSetupDialog::qt_metacast +32 QAbstractPageSetupDialog::qt_metacall +40 QAbstractPageSetupDialog::~QAbstractPageSetupDialog +48 QAbstractPageSetupDialog::~QAbstractPageSetupDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractPageSetupDialog::done +456 QDialog::accept +464 QDialog::reject +472 __cxa_pure_virtual +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI24QAbstractPageSetupDialog) +496 QAbstractPageSetupDialog::_ZThn16_N24QAbstractPageSetupDialogD1Ev +504 QAbstractPageSetupDialog::_ZThn16_N24QAbstractPageSetupDialogD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractPageSetupDialog + size=40 align=8 + base size=40 base align=8 +QAbstractPageSetupDialog (0x7faaa8d38b60) 0 + vptr=((& QAbstractPageSetupDialog::_ZTV24QAbstractPageSetupDialog) + 16u) + QDialog (0x7faaa8d38bd0) 0 + primary-for QAbstractPageSetupDialog (0x7faaa8d38b60) + QWidget (0x7faaa8d18a00) 0 + primary-for QDialog (0x7faaa8d38bd0) + QObject (0x7faaa8d38c40) 0 + primary-for QWidget (0x7faaa8d18a00) + QPaintDevice (0x7faaa8d38cb0) 16 + vptr=((& QAbstractPageSetupDialog::_ZTV24QAbstractPageSetupDialog) + 496u) + +Vtable for QAbstractPrintDialog +QAbstractPrintDialog::_ZTV20QAbstractPrintDialog: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QAbstractPrintDialog) +16 QAbstractPrintDialog::metaObject +24 QAbstractPrintDialog::qt_metacast +32 QAbstractPrintDialog::qt_metacall +40 QAbstractPrintDialog::~QAbstractPrintDialog +48 QAbstractPrintDialog::~QAbstractPrintDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDialog::done +456 QDialog::accept +464 QDialog::reject +472 __cxa_pure_virtual +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI20QAbstractPrintDialog) +496 QAbstractPrintDialog::_ZThn16_N20QAbstractPrintDialogD1Ev +504 QAbstractPrintDialog::_ZThn16_N20QAbstractPrintDialogD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractPrintDialog + size=40 align=8 + base size=40 base align=8 +QAbstractPrintDialog (0x7faaa8d57150) 0 + vptr=((& QAbstractPrintDialog::_ZTV20QAbstractPrintDialog) + 16u) + QDialog (0x7faaa8d571c0) 0 + primary-for QAbstractPrintDialog (0x7faaa8d57150) + QWidget (0x7faaa8d4f400) 0 + primary-for QDialog (0x7faaa8d571c0) + QObject (0x7faaa8d57230) 0 + primary-for QWidget (0x7faaa8d4f400) + QPaintDevice (0x7faaa8d572a0) 16 + vptr=((& QAbstractPrintDialog::_ZTV20QAbstractPrintDialog) + 496u) + +Vtable for QColorDialog +QColorDialog::_ZTV12QColorDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QColorDialog) +16 QColorDialog::metaObject +24 QColorDialog::qt_metacast +32 QColorDialog::qt_metacall +40 QColorDialog::~QColorDialog +48 QColorDialog::~QColorDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QColorDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QColorDialog::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QColorDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI12QColorDialog) +488 QColorDialog::_ZThn16_N12QColorDialogD1Ev +496 QColorDialog::_ZThn16_N12QColorDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QColorDialog + size=40 align=8 + base size=40 base align=8 +QColorDialog (0x7faaa8db3230) 0 + vptr=((& QColorDialog::_ZTV12QColorDialog) + 16u) + QDialog (0x7faaa8db32a0) 0 + primary-for QColorDialog (0x7faaa8db3230) + QWidget (0x7faaa8d73880) 0 + primary-for QDialog (0x7faaa8db32a0) + QObject (0x7faaa8db3310) 0 + primary-for QWidget (0x7faaa8d73880) + QPaintDevice (0x7faaa8db3380) 16 + vptr=((& QColorDialog::_ZTV12QColorDialog) + 488u) + +Vtable for QErrorMessage +QErrorMessage::_ZTV13QErrorMessage: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QErrorMessage) +16 QErrorMessage::metaObject +24 QErrorMessage::qt_metacast +32 QErrorMessage::qt_metacall +40 QErrorMessage::~QErrorMessage +48 QErrorMessage::~QErrorMessage +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QErrorMessage::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QErrorMessage::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI13QErrorMessage) +488 QErrorMessage::_ZThn16_N13QErrorMessageD1Ev +496 QErrorMessage::_ZThn16_N13QErrorMessageD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QErrorMessage + size=40 align=8 + base size=40 base align=8 +QErrorMessage (0x7faaa8c135b0) 0 + vptr=((& QErrorMessage::_ZTV13QErrorMessage) + 16u) + QDialog (0x7faaa8c13620) 0 + primary-for QErrorMessage (0x7faaa8c135b0) + QWidget (0x7faaa8ddbc00) 0 + primary-for QDialog (0x7faaa8c13620) + QObject (0x7faaa8c13690) 0 + primary-for QWidget (0x7faaa8ddbc00) + QPaintDevice (0x7faaa8c13700) 16 + vptr=((& QErrorMessage::_ZTV13QErrorMessage) + 488u) + +Vtable for QFileDialog +QFileDialog::_ZTV11QFileDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFileDialog) +16 QFileDialog::metaObject +24 QFileDialog::qt_metacast +32 QFileDialog::qt_metacall +40 QFileDialog::~QFileDialog +48 QFileDialog::~QFileDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QFileDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFileDialog::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QFileDialog::done +456 QFileDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11QFileDialog) +488 QFileDialog::_ZThn16_N11QFileDialogD1Ev +496 QFileDialog::_ZThn16_N11QFileDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFileDialog + size=40 align=8 + base size=40 base align=8 +QFileDialog (0x7faaa8c311c0) 0 + vptr=((& QFileDialog::_ZTV11QFileDialog) + 16u) + QDialog (0x7faaa8c31230) 0 + primary-for QFileDialog (0x7faaa8c311c0) + QWidget (0x7faaa8c28780) 0 + primary-for QDialog (0x7faaa8c31230) + QObject (0x7faaa8c312a0) 0 + primary-for QWidget (0x7faaa8c28780) + QPaintDevice (0x7faaa8c31310) 16 + vptr=((& QFileDialog::_ZTV11QFileDialog) + 488u) + +Vtable for QFileSystemModel +QFileSystemModel::_ZTV16QFileSystemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QFileSystemModel) +16 QFileSystemModel::metaObject +24 QFileSystemModel::qt_metacast +32 QFileSystemModel::qt_metacall +40 QFileSystemModel::~QFileSystemModel +48 QFileSystemModel::~QFileSystemModel +56 QFileSystemModel::event +64 QObject::eventFilter +72 QFileSystemModel::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFileSystemModel::index +120 QFileSystemModel::parent +128 QFileSystemModel::rowCount +136 QFileSystemModel::columnCount +144 QFileSystemModel::hasChildren +152 QFileSystemModel::data +160 QFileSystemModel::setData +168 QFileSystemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QFileSystemModel::mimeTypes +208 QFileSystemModel::mimeData +216 QFileSystemModel::dropMimeData +224 QFileSystemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QFileSystemModel::fetchMore +272 QFileSystemModel::canFetchMore +280 QFileSystemModel::flags +288 QFileSystemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QFileSystemModel + size=16 align=8 + base size=16 base align=8 +QFileSystemModel (0x7faaa8cad770) 0 + vptr=((& QFileSystemModel::_ZTV16QFileSystemModel) + 16u) + QAbstractItemModel (0x7faaa8cad7e0) 0 + primary-for QFileSystemModel (0x7faaa8cad770) + QObject (0x7faaa8cad850) 0 + primary-for QAbstractItemModel (0x7faaa8cad7e0) + +Vtable for QFontDialog +QFontDialog::_ZTV11QFontDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFontDialog) +16 QFontDialog::metaObject +24 QFontDialog::qt_metacast +32 QFontDialog::qt_metacall +40 QFontDialog::~QFontDialog +48 QFontDialog::~QFontDialog +56 QWidget::event +64 QFontDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QFontDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFontDialog::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QFontDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11QFontDialog) +488 QFontDialog::_ZThn16_N11QFontDialogD1Ev +496 QFontDialog::_ZThn16_N11QFontDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFontDialog + size=40 align=8 + base size=40 base align=8 +QFontDialog (0x7faaa8af0e70) 0 + vptr=((& QFontDialog::_ZTV11QFontDialog) + 16u) + QDialog (0x7faaa8af0ee0) 0 + primary-for QFontDialog (0x7faaa8af0e70) + QWidget (0x7faaa8af9500) 0 + primary-for QDialog (0x7faaa8af0ee0) + QObject (0x7faaa8af0f50) 0 + primary-for QWidget (0x7faaa8af9500) + QPaintDevice (0x7faaa8aff000) 16 + vptr=((& QFontDialog::_ZTV11QFontDialog) + 488u) + +Vtable for QLineEdit +QLineEdit::_ZTV9QLineEdit: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QLineEdit) +16 QLineEdit::metaObject +24 QLineEdit::qt_metacast +32 QLineEdit::qt_metacall +40 QLineEdit::~QLineEdit +48 QLineEdit::~QLineEdit +56 QLineEdit::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QLineEdit::sizeHint +136 QLineEdit::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QLineEdit::mousePressEvent +168 QLineEdit::mouseReleaseEvent +176 QLineEdit::mouseDoubleClickEvent +184 QLineEdit::mouseMoveEvent +192 QWidget::wheelEvent +200 QLineEdit::keyPressEvent +208 QWidget::keyReleaseEvent +216 QLineEdit::focusInEvent +224 QLineEdit::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QLineEdit::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QLineEdit::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QLineEdit::dragEnterEvent +312 QLineEdit::dragMoveEvent +320 QLineEdit::dragLeaveEvent +328 QLineEdit::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QLineEdit::changeEvent +368 QWidget::metric +376 QLineEdit::inputMethodEvent +384 QLineEdit::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI9QLineEdit) +464 QLineEdit::_ZThn16_N9QLineEditD1Ev +472 QLineEdit::_ZThn16_N9QLineEditD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QLineEdit + size=40 align=8 + base size=40 base align=8 +QLineEdit (0x7faaa8b60310) 0 + vptr=((& QLineEdit::_ZTV9QLineEdit) + 16u) + QWidget (0x7faaa8b22800) 0 + primary-for QLineEdit (0x7faaa8b60310) + QObject (0x7faaa8b60380) 0 + primary-for QWidget (0x7faaa8b22800) + QPaintDevice (0x7faaa8b603f0) 16 + vptr=((& QLineEdit::_ZTV9QLineEdit) + 464u) + +Vtable for QInputDialog +QInputDialog::_ZTV12QInputDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QInputDialog) +16 QInputDialog::metaObject +24 QInputDialog::qt_metacast +32 QInputDialog::qt_metacall +40 QInputDialog::~QInputDialog +48 QInputDialog::~QInputDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QInputDialog::setVisible +128 QInputDialog::sizeHint +136 QInputDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QInputDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI12QInputDialog) +488 QInputDialog::_ZThn16_N12QInputDialogD1Ev +496 QInputDialog::_ZThn16_N12QInputDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QInputDialog + size=40 align=8 + base size=40 base align=8 +QInputDialog (0x7faaa8bb1070) 0 + vptr=((& QInputDialog::_ZTV12QInputDialog) + 16u) + QDialog (0x7faaa8bb10e0) 0 + primary-for QInputDialog (0x7faaa8bb1070) + QWidget (0x7faaa8bac780) 0 + primary-for QDialog (0x7faaa8bb10e0) + QObject (0x7faaa8bb1150) 0 + primary-for QWidget (0x7faaa8bac780) + QPaintDevice (0x7faaa8bb11c0) 16 + vptr=((& QInputDialog::_ZTV12QInputDialog) + 488u) + +Vtable for QMessageBox +QMessageBox::_ZTV11QMessageBox: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMessageBox) +16 QMessageBox::metaObject +24 QMessageBox::qt_metacast +32 QMessageBox::qt_metacall +40 QMessageBox::~QMessageBox +48 QMessageBox::~QMessageBox +56 QMessageBox::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QMessageBox::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QMessageBox::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QMessageBox::resizeEvent +272 QMessageBox::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QMessageBox::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QMessageBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11QMessageBox) +488 QMessageBox::_ZThn16_N11QMessageBoxD1Ev +496 QMessageBox::_ZThn16_N11QMessageBoxD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMessageBox + size=40 align=8 + base size=40 base align=8 +QMessageBox (0x7faaa8a0fee0) 0 + vptr=((& QMessageBox::_ZTV11QMessageBox) + 16u) + QDialog (0x7faaa8a0ff50) 0 + primary-for QMessageBox (0x7faaa8a0fee0) + QWidget (0x7faaa8a28100) 0 + primary-for QDialog (0x7faaa8a0ff50) + QObject (0x7faaa8a2a000) 0 + primary-for QWidget (0x7faaa8a28100) + QPaintDevice (0x7faaa8a2a070) 16 + vptr=((& QMessageBox::_ZTV11QMessageBox) + 488u) + +Vtable for QPageSetupDialog +QPageSetupDialog::_ZTV16QPageSetupDialog: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QPageSetupDialog) +16 QPageSetupDialog::metaObject +24 QPageSetupDialog::qt_metacast +32 QPageSetupDialog::qt_metacall +40 QPageSetupDialog::~QPageSetupDialog +48 QPageSetupDialog::~QPageSetupDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractPageSetupDialog::done +456 QDialog::accept +464 QDialog::reject +472 QPageSetupDialog::exec +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI16QPageSetupDialog) +496 QPageSetupDialog::_ZThn16_N16QPageSetupDialogD1Ev +504 QPageSetupDialog::_ZThn16_N16QPageSetupDialogD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPageSetupDialog + size=40 align=8 + base size=40 base align=8 +QPageSetupDialog (0x7faaa8aa9850) 0 + vptr=((& QPageSetupDialog::_ZTV16QPageSetupDialog) + 16u) + QAbstractPageSetupDialog (0x7faaa8aa98c0) 0 + primary-for QPageSetupDialog (0x7faaa8aa9850) + QDialog (0x7faaa8aa9930) 0 + primary-for QAbstractPageSetupDialog (0x7faaa8aa98c0) + QWidget (0x7faaa8a8e800) 0 + primary-for QDialog (0x7faaa8aa9930) + QObject (0x7faaa8aa99a0) 0 + primary-for QWidget (0x7faaa8a8e800) + QPaintDevice (0x7faaa8aa9a10) 16 + vptr=((& QPageSetupDialog::_ZTV16QPageSetupDialog) + 496u) + +Vtable for QUnixPrintWidget +QUnixPrintWidget::_ZTV16QUnixPrintWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QUnixPrintWidget) +16 QUnixPrintWidget::metaObject +24 QUnixPrintWidget::qt_metacast +32 QUnixPrintWidget::qt_metacall +40 QUnixPrintWidget::~QUnixPrintWidget +48 QUnixPrintWidget::~QUnixPrintWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI16QUnixPrintWidget) +464 QUnixPrintWidget::_ZThn16_N16QUnixPrintWidgetD1Ev +472 QUnixPrintWidget::_ZThn16_N16QUnixPrintWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QUnixPrintWidget + size=48 align=8 + base size=48 base align=8 +QUnixPrintWidget (0x7faaa8ade7e0) 0 + vptr=((& QUnixPrintWidget::_ZTV16QUnixPrintWidget) + 16u) + QWidget (0x7faaa8add380) 0 + primary-for QUnixPrintWidget (0x7faaa8ade7e0) + QObject (0x7faaa8ade850) 0 + primary-for QWidget (0x7faaa8add380) + QPaintDevice (0x7faaa8ade8c0) 16 + vptr=((& QUnixPrintWidget::_ZTV16QUnixPrintWidget) + 464u) + +Vtable for QPrintDialog +QPrintDialog::_ZTV12QPrintDialog: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QPrintDialog) +16 QPrintDialog::metaObject +24 QPrintDialog::qt_metacast +32 QPrintDialog::qt_metacall +40 QPrintDialog::~QPrintDialog +48 QPrintDialog::~QPrintDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QPrintDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QPrintDialog::done +456 QPrintDialog::accept +464 QDialog::reject +472 QPrintDialog::exec +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI12QPrintDialog) +496 QPrintDialog::_ZThn16_N12QPrintDialogD1Ev +504 QPrintDialog::_ZThn16_N12QPrintDialogD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPrintDialog + size=40 align=8 + base size=40 base align=8 +QPrintDialog (0x7faaa88f4700) 0 + vptr=((& QPrintDialog::_ZTV12QPrintDialog) + 16u) + QAbstractPrintDialog (0x7faaa88f4770) 0 + primary-for QPrintDialog (0x7faaa88f4700) + QDialog (0x7faaa88f47e0) 0 + primary-for QAbstractPrintDialog (0x7faaa88f4770) + QWidget (0x7faaa8adda80) 0 + primary-for QDialog (0x7faaa88f47e0) + QObject (0x7faaa88f4850) 0 + primary-for QWidget (0x7faaa8adda80) + QPaintDevice (0x7faaa88f48c0) 16 + vptr=((& QPrintDialog::_ZTV12QPrintDialog) + 496u) + +Vtable for QPrintPreviewDialog +QPrintPreviewDialog::_ZTV19QPrintPreviewDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QPrintPreviewDialog) +16 QPrintPreviewDialog::metaObject +24 QPrintPreviewDialog::qt_metacast +32 QPrintPreviewDialog::qt_metacall +40 QPrintPreviewDialog::~QPrintPreviewDialog +48 QPrintPreviewDialog::~QPrintPreviewDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QPrintPreviewDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QPrintPreviewDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI19QPrintPreviewDialog) +488 QPrintPreviewDialog::_ZThn16_N19QPrintPreviewDialogD1Ev +496 QPrintPreviewDialog::_ZThn16_N19QPrintPreviewDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPrintPreviewDialog + size=48 align=8 + base size=48 base align=8 +QPrintPreviewDialog (0x7faaa89122a0) 0 + vptr=((& QPrintPreviewDialog::_ZTV19QPrintPreviewDialog) + 16u) + QDialog (0x7faaa8912310) 0 + primary-for QPrintPreviewDialog (0x7faaa89122a0) + QWidget (0x7faaa890d480) 0 + primary-for QDialog (0x7faaa8912310) + QObject (0x7faaa8912380) 0 + primary-for QWidget (0x7faaa890d480) + QPaintDevice (0x7faaa89123f0) 16 + vptr=((& QPrintPreviewDialog::_ZTV19QPrintPreviewDialog) + 488u) + +Vtable for QProgressDialog +QProgressDialog::_ZTV15QProgressDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QProgressDialog) +16 QProgressDialog::metaObject +24 QProgressDialog::qt_metacast +32 QProgressDialog::qt_metacall +40 QProgressDialog::~QProgressDialog +48 QProgressDialog::~QProgressDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QProgressDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QProgressDialog::resizeEvent +272 QProgressDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QProgressDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QProgressDialog::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI15QProgressDialog) +488 QProgressDialog::_ZThn16_N15QProgressDialogD1Ev +496 QProgressDialog::_ZThn16_N15QProgressDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QProgressDialog + size=40 align=8 + base size=40 base align=8 +QProgressDialog (0x7faaa892aa10) 0 + vptr=((& QProgressDialog::_ZTV15QProgressDialog) + 16u) + QDialog (0x7faaa892aa80) 0 + primary-for QProgressDialog (0x7faaa892aa10) + QWidget (0x7faaa890de80) 0 + primary-for QDialog (0x7faaa892aa80) + QObject (0x7faaa892aaf0) 0 + primary-for QWidget (0x7faaa890de80) + QPaintDevice (0x7faaa892ab60) 16 + vptr=((& QProgressDialog::_ZTV15QProgressDialog) + 488u) + +Vtable for QWizard +QWizard::_ZTV7QWizard: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QWizard) +16 QWizard::metaObject +24 QWizard::qt_metacast +32 QWizard::qt_metacall +40 QWizard::~QWizard +48 QWizard::~QWizard +56 QWizard::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWizard::setVisible +128 QWizard::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWizard::paintEvent +256 QWidget::moveEvent +264 QWizard::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QWizard::done +456 QDialog::accept +464 QDialog::reject +472 QWizard::validateCurrentPage +480 QWizard::nextId +488 QWizard::initializePage +496 QWizard::cleanupPage +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI7QWizard) +520 QWizard::_ZThn16_N7QWizardD1Ev +528 QWizard::_ZThn16_N7QWizardD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWizard + size=40 align=8 + base size=40 base align=8 +QWizard (0x7faaa8951620) 0 + vptr=((& QWizard::_ZTV7QWizard) + 16u) + QDialog (0x7faaa8951690) 0 + primary-for QWizard (0x7faaa8951620) + QWidget (0x7faaa8949880) 0 + primary-for QDialog (0x7faaa8951690) + QObject (0x7faaa8951700) 0 + primary-for QWidget (0x7faaa8949880) + QPaintDevice (0x7faaa8951770) 16 + vptr=((& QWizard::_ZTV7QWizard) + 520u) + +Vtable for QWizardPage +QWizardPage::_ZTV11QWizardPage: 68u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QWizardPage) +16 QWizardPage::metaObject +24 QWizardPage::qt_metacast +32 QWizardPage::qt_metacall +40 QWizardPage::~QWizardPage +48 QWizardPage::~QWizardPage +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QWizardPage::initializePage +456 QWizardPage::cleanupPage +464 QWizardPage::validatePage +472 QWizardPage::isComplete +480 QWizardPage::nextId +488 (int (*)(...))-0x00000000000000010 +496 (int (*)(...))(& _ZTI11QWizardPage) +504 QWizardPage::_ZThn16_N11QWizardPageD1Ev +512 QWizardPage::_ZThn16_N11QWizardPageD0Ev +520 QWidget::_ZThn16_NK7QWidget7devTypeEv +528 QWidget::_ZThn16_NK7QWidget11paintEngineEv +536 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWizardPage + size=40 align=8 + base size=40 base align=8 +QWizardPage (0x7faaa89a99a0) 0 + vptr=((& QWizardPage::_ZTV11QWizardPage) + 16u) + QWidget (0x7faaa897cb80) 0 + primary-for QWizardPage (0x7faaa89a99a0) + QObject (0x7faaa89a9a10) 0 + primary-for QWidget (0x7faaa897cb80) + QPaintDevice (0x7faaa89a9a80) 16 + vptr=((& QWizardPage::_ZTV11QWizardPage) + 504u) + +Vtable for QKeyEventTransition +QKeyEventTransition::_ZTV19QKeyEventTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QKeyEventTransition) +16 QKeyEventTransition::metaObject +24 QKeyEventTransition::qt_metacast +32 QKeyEventTransition::qt_metacall +40 QKeyEventTransition::~QKeyEventTransition +48 QKeyEventTransition::~QKeyEventTransition +56 QEventTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QKeyEventTransition::eventTest +120 QKeyEventTransition::onTransition + +Class QKeyEventTransition + size=16 align=8 + base size=16 base align=8 +QKeyEventTransition (0x7faaa89e04d0) 0 + vptr=((& QKeyEventTransition::_ZTV19QKeyEventTransition) + 16u) + QEventTransition (0x7faaa89e0540) 0 + primary-for QKeyEventTransition (0x7faaa89e04d0) + QAbstractTransition (0x7faaa89e05b0) 0 + primary-for QEventTransition (0x7faaa89e0540) + QObject (0x7faaa89e0620) 0 + primary-for QAbstractTransition (0x7faaa89e05b0) + +Vtable for QMouseEventTransition +QMouseEventTransition::_ZTV21QMouseEventTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QMouseEventTransition) +16 QMouseEventTransition::metaObject +24 QMouseEventTransition::qt_metacast +32 QMouseEventTransition::qt_metacall +40 QMouseEventTransition::~QMouseEventTransition +48 QMouseEventTransition::~QMouseEventTransition +56 QEventTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMouseEventTransition::eventTest +120 QMouseEventTransition::onTransition + +Class QMouseEventTransition + size=16 align=8 + base size=16 base align=8 +QMouseEventTransition (0x7faaa87f2f50) 0 + vptr=((& QMouseEventTransition::_ZTV21QMouseEventTransition) + 16u) + QEventTransition (0x7faaa87fc000) 0 + primary-for QMouseEventTransition (0x7faaa87f2f50) + QAbstractTransition (0x7faaa87fc070) 0 + primary-for QEventTransition (0x7faaa87fc000) + QObject (0x7faaa87fc0e0) 0 + primary-for QAbstractTransition (0x7faaa87fc070) + +Vtable for QBitmap +QBitmap::_ZTV7QBitmap: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QBitmap) +16 QBitmap::~QBitmap +24 QBitmap::~QBitmap +32 QPixmap::devType +40 QPixmap::paintEngine +48 QPixmap::metric + +Class QBitmap + size=24 align=8 + base size=24 base align=8 +QBitmap (0x7faaa880fa10) 0 + vptr=((& QBitmap::_ZTV7QBitmap) + 16u) + QPixmap (0x7faaa880fa80) 0 + primary-for QBitmap (0x7faaa880fa10) + QPaintDevice (0x7faaa880faf0) 0 + primary-for QPixmap (0x7faaa880fa80) + +Vtable for QIconEngine +QIconEngine::_ZTV11QIconEngine: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QIconEngine) +16 QIconEngine::~QIconEngine +24 QIconEngine::~QIconEngine +32 __cxa_pure_virtual +40 QIconEngine::actualSize +48 QIconEngine::pixmap +56 QIconEngine::addPixmap +64 QIconEngine::addFile + +Class QIconEngine + size=8 align=8 + base size=8 base align=8 +QIconEngine (0x7faaa88418c0) 0 nearly-empty + vptr=((& QIconEngine::_ZTV11QIconEngine) + 16u) + +Class QIconEngineV2::AvailableSizesArgument + size=16 align=8 + base size=16 base align=8 +QIconEngineV2::AvailableSizesArgument (0x7faaa884d070) 0 + +Vtable for QIconEngineV2 +QIconEngineV2::_ZTV13QIconEngineV2: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QIconEngineV2) +16 QIconEngineV2::~QIconEngineV2 +24 QIconEngineV2::~QIconEngineV2 +32 __cxa_pure_virtual +40 QIconEngine::actualSize +48 QIconEngine::pixmap +56 QIconEngine::addPixmap +64 QIconEngine::addFile +72 QIconEngineV2::key +80 QIconEngineV2::clone +88 QIconEngineV2::read +96 QIconEngineV2::write +104 QIconEngineV2::virtual_hook + +Class QIconEngineV2 + size=8 align=8 + base size=8 base align=8 +QIconEngineV2 (0x7faaa8841e70) 0 nearly-empty + vptr=((& QIconEngineV2::_ZTV13QIconEngineV2) + 16u) + QIconEngine (0x7faaa8841ee0) 0 nearly-empty + primary-for QIconEngineV2 (0x7faaa8841e70) + +Vtable for QIconEngineFactoryInterface +QIconEngineFactoryInterface::_ZTV27QIconEngineFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QIconEngineFactoryInterface) +16 QIconEngineFactoryInterface::~QIconEngineFactoryInterface +24 QIconEngineFactoryInterface::~QIconEngineFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QIconEngineFactoryInterface + size=8 align=8 + base size=8 base align=8 +QIconEngineFactoryInterface (0x7faaa884d850) 0 nearly-empty + vptr=((& QIconEngineFactoryInterface::_ZTV27QIconEngineFactoryInterface) + 16u) + QFactoryInterface (0x7faaa884d8c0) 0 nearly-empty + primary-for QIconEngineFactoryInterface (0x7faaa884d850) + +Vtable for QIconEnginePlugin +QIconEnginePlugin::_ZTV17QIconEnginePlugin: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QIconEnginePlugin) +16 QIconEnginePlugin::metaObject +24 QIconEnginePlugin::qt_metacast +32 QIconEnginePlugin::qt_metacall +40 QIconEnginePlugin::~QIconEnginePlugin +48 QIconEnginePlugin::~QIconEnginePlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI17QIconEnginePlugin) +144 QIconEnginePlugin::_ZThn16_N17QIconEnginePluginD1Ev +152 QIconEnginePlugin::_ZThn16_N17QIconEnginePluginD0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QIconEnginePlugin + size=24 align=8 + base size=24 base align=8 +QIconEnginePlugin (0x7faaa8846f80) 0 + vptr=((& QIconEnginePlugin::_ZTV17QIconEnginePlugin) + 16u) + QObject (0x7faaa88821c0) 0 + primary-for QIconEnginePlugin (0x7faaa8846f80) + QIconEngineFactoryInterface (0x7faaa8882230) 16 nearly-empty + vptr=((& QIconEnginePlugin::_ZTV17QIconEnginePlugin) + 144u) + QFactoryInterface (0x7faaa88822a0) 16 nearly-empty + primary-for QIconEngineFactoryInterface (0x7faaa8882230) + +Vtable for QIconEngineFactoryInterfaceV2 +QIconEngineFactoryInterfaceV2::_ZTV29QIconEngineFactoryInterfaceV2: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI29QIconEngineFactoryInterfaceV2) +16 QIconEngineFactoryInterfaceV2::~QIconEngineFactoryInterfaceV2 +24 QIconEngineFactoryInterfaceV2::~QIconEngineFactoryInterfaceV2 +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QIconEngineFactoryInterfaceV2 + size=8 align=8 + base size=8 base align=8 +QIconEngineFactoryInterfaceV2 (0x7faaa8895150) 0 nearly-empty + vptr=((& QIconEngineFactoryInterfaceV2::_ZTV29QIconEngineFactoryInterfaceV2) + 16u) + QFactoryInterface (0x7faaa88951c0) 0 nearly-empty + primary-for QIconEngineFactoryInterfaceV2 (0x7faaa8895150) + +Vtable for QIconEnginePluginV2 +QIconEnginePluginV2::_ZTV19QIconEnginePluginV2: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QIconEnginePluginV2) +16 QIconEnginePluginV2::metaObject +24 QIconEnginePluginV2::qt_metacast +32 QIconEnginePluginV2::qt_metacall +40 QIconEnginePluginV2::~QIconEnginePluginV2 +48 QIconEnginePluginV2::~QIconEnginePluginV2 +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI19QIconEnginePluginV2) +144 QIconEnginePluginV2::_ZThn16_N19QIconEnginePluginV2D1Ev +152 QIconEnginePluginV2::_ZThn16_N19QIconEnginePluginV2D0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QIconEnginePluginV2 + size=24 align=8 + base size=24 base align=8 +QIconEnginePluginV2 (0x7faaa88a1000) 0 + vptr=((& QIconEnginePluginV2::_ZTV19QIconEnginePluginV2) + 16u) + QObject (0x7faaa8895c40) 0 + primary-for QIconEnginePluginV2 (0x7faaa88a1000) + QIconEngineFactoryInterfaceV2 (0x7faaa8895cb0) 16 nearly-empty + vptr=((& QIconEnginePluginV2::_ZTV19QIconEnginePluginV2) + 144u) + QFactoryInterface (0x7faaa8895d20) 16 nearly-empty + primary-for QIconEngineFactoryInterfaceV2 (0x7faaa8895cb0) + +Vtable for QImageIOHandler +QImageIOHandler::_ZTV15QImageIOHandler: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QImageIOHandler) +16 QImageIOHandler::~QImageIOHandler +24 QImageIOHandler::~QImageIOHandler +32 QImageIOHandler::name +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QImageIOHandler::write +64 QImageIOHandler::option +72 QImageIOHandler::setOption +80 QImageIOHandler::supportsOption +88 QImageIOHandler::jumpToNextImage +96 QImageIOHandler::jumpToImage +104 QImageIOHandler::loopCount +112 QImageIOHandler::imageCount +120 QImageIOHandler::nextImageDelay +128 QImageIOHandler::currentImageNumber +136 QImageIOHandler::currentImageRect + +Class QImageIOHandler + size=16 align=8 + base size=16 base align=8 +QImageIOHandler (0x7faaa88a9bd0) 0 + vptr=((& QImageIOHandler::_ZTV15QImageIOHandler) + 16u) + +Vtable for QImageIOHandlerFactoryInterface +QImageIOHandlerFactoryInterface::_ZTV31QImageIOHandlerFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI31QImageIOHandlerFactoryInterface) +16 QImageIOHandlerFactoryInterface::~QImageIOHandlerFactoryInterface +24 QImageIOHandlerFactoryInterface::~QImageIOHandlerFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QImageIOHandlerFactoryInterface + size=8 align=8 + base size=8 base align=8 +QImageIOHandlerFactoryInterface (0x7faaa88c49a0) 0 nearly-empty + vptr=((& QImageIOHandlerFactoryInterface::_ZTV31QImageIOHandlerFactoryInterface) + 16u) + QFactoryInterface (0x7faaa88c4a10) 0 nearly-empty + primary-for QImageIOHandlerFactoryInterface (0x7faaa88c49a0) + +Vtable for QImageIOPlugin +QImageIOPlugin::_ZTV14QImageIOPlugin: 23u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QImageIOPlugin) +16 QImageIOPlugin::metaObject +24 QImageIOPlugin::qt_metacast +32 QImageIOPlugin::qt_metacall +40 QImageIOPlugin::~QImageIOPlugin +48 QImageIOPlugin::~QImageIOPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 (int (*)(...))-0x00000000000000010 +144 (int (*)(...))(& _ZTI14QImageIOPlugin) +152 QImageIOPlugin::_ZThn16_N14QImageIOPluginD1Ev +160 QImageIOPlugin::_ZThn16_N14QImageIOPluginD0Ev +168 __cxa_pure_virtual +176 __cxa_pure_virtual + +Class QImageIOPlugin + size=24 align=8 + base size=24 base align=8 +QImageIOPlugin (0x7faaa88cac00) 0 + vptr=((& QImageIOPlugin::_ZTV14QImageIOPlugin) + 16u) + QObject (0x7faaa88d53f0) 0 + primary-for QImageIOPlugin (0x7faaa88cac00) + QImageIOHandlerFactoryInterface (0x7faaa88d5460) 16 nearly-empty + vptr=((& QImageIOPlugin::_ZTV14QImageIOPlugin) + 152u) + QFactoryInterface (0x7faaa88d54d0) 16 nearly-empty + primary-for QImageIOHandlerFactoryInterface (0x7faaa88d5460) + +Class QImageReader + size=8 align=8 + base size=8 base align=8 +QImageReader (0x7faaa87294d0) 0 + +Class QImageWriter + size=8 align=8 + base size=8 base align=8 +QImageWriter (0x7faaa8729ee0) 0 + +Vtable for QMovie +QMovie::_ZTV6QMovie: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QMovie) +16 QMovie::metaObject +24 QMovie::qt_metacast +32 QMovie::qt_metacall +40 QMovie::~QMovie +48 QMovie::~QMovie +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QMovie + size=16 align=8 + base size=16 base align=8 +QMovie (0x7faaa8740770) 0 + vptr=((& QMovie::_ZTV6QMovie) + 16u) + QObject (0x7faaa87407e0) 0 + primary-for QMovie (0x7faaa8740770) + +Vtable for QPicture +QPicture::_ZTV8QPicture: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QPicture) +16 QPicture::~QPicture +24 QPicture::~QPicture +32 QPicture::devType +40 QPicture::paintEngine +48 QPicture::metric +56 QPicture::setData + +Class QPicture + size=24 align=8 + base size=24 base align=8 +QPicture (0x7faaa87857e0) 0 + vptr=((& QPicture::_ZTV8QPicture) + 16u) + QPaintDevice (0x7faaa8785850) 0 + primary-for QPicture (0x7faaa87857e0) + +Class QPictureIO + size=8 align=8 + base size=8 base align=8 +QPictureIO (0x7faaa87a7310) 0 + +Vtable for QPictureFormatInterface +QPictureFormatInterface::_ZTV23QPictureFormatInterface: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QPictureFormatInterface) +16 QPictureFormatInterface::~QPictureFormatInterface +24 QPictureFormatInterface::~QPictureFormatInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual + +Class QPictureFormatInterface + size=8 align=8 + base size=8 base align=8 +QPictureFormatInterface (0x7faaa87a7930) 0 nearly-empty + vptr=((& QPictureFormatInterface::_ZTV23QPictureFormatInterface) + 16u) + QFactoryInterface (0x7faaa87a79a0) 0 nearly-empty + primary-for QPictureFormatInterface (0x7faaa87a7930) + +Vtable for QPictureFormatPlugin +QPictureFormatPlugin::_ZTV20QPictureFormatPlugin: 26u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QPictureFormatPlugin) +16 QPictureFormatPlugin::metaObject +24 QPictureFormatPlugin::qt_metacast +32 QPictureFormatPlugin::qt_metacall +40 QPictureFormatPlugin::~QPictureFormatPlugin +48 QPictureFormatPlugin::~QPictureFormatPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 QPictureFormatPlugin::loadPicture +128 QPictureFormatPlugin::savePicture +136 __cxa_pure_virtual +144 (int (*)(...))-0x00000000000000010 +152 (int (*)(...))(& _ZTI20QPictureFormatPlugin) +160 QPictureFormatPlugin::_ZThn16_N20QPictureFormatPluginD1Ev +168 QPictureFormatPlugin::_ZThn16_N20QPictureFormatPluginD0Ev +176 __cxa_pure_virtual +184 QPictureFormatPlugin::_ZThn16_N20QPictureFormatPlugin11loadPictureERK7QStringS2_P8QPicture +192 QPictureFormatPlugin::_ZThn16_N20QPictureFormatPlugin11savePictureERK7QStringS2_RK8QPicture +200 __cxa_pure_virtual + +Class QPictureFormatPlugin + size=24 align=8 + base size=24 base align=8 +QPictureFormatPlugin (0x7faaa87c4300) 0 + vptr=((& QPictureFormatPlugin::_ZTV20QPictureFormatPlugin) + 16u) + QObject (0x7faaa87c5310) 0 + primary-for QPictureFormatPlugin (0x7faaa87c4300) + QPictureFormatInterface (0x7faaa87c5380) 16 nearly-empty + vptr=((& QPictureFormatPlugin::_ZTV20QPictureFormatPlugin) + 160u) + QFactoryInterface (0x7faaa87c53f0) 16 nearly-empty + primary-for QPictureFormatInterface (0x7faaa87c5380) + +Class QPixmapCache::Key + size=8 align=8 + base size=8 base align=8 +QPixmapCache::Key (0x7faaa87d4310) 0 + +Class QPixmapCache + size=1 align=1 + base size=0 base align=1 +QPixmapCache (0x7faaa87d42a0) 0 empty + +Vtable for QGraphicsEffect +QGraphicsEffect::_ZTV15QGraphicsEffect: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QGraphicsEffect) +16 QGraphicsEffect::metaObject +24 QGraphicsEffect::qt_metacast +32 QGraphicsEffect::qt_metacall +40 QGraphicsEffect::~QGraphicsEffect +48 QGraphicsEffect::~QGraphicsEffect +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsEffect::boundingRectFor +120 __cxa_pure_virtual +128 QGraphicsEffect::sourceChanged + +Class QGraphicsEffect + size=16 align=8 + base size=16 base align=8 +QGraphicsEffect (0x7faaa87dc150) 0 + vptr=((& QGraphicsEffect::_ZTV15QGraphicsEffect) + 16u) + QObject (0x7faaa87dc1c0) 0 + primary-for QGraphicsEffect (0x7faaa87dc150) + +Vtable for QGraphicsColorizeEffect +QGraphicsColorizeEffect::_ZTV23QGraphicsColorizeEffect: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QGraphicsColorizeEffect) +16 QGraphicsColorizeEffect::metaObject +24 QGraphicsColorizeEffect::qt_metacast +32 QGraphicsColorizeEffect::qt_metacall +40 QGraphicsColorizeEffect::~QGraphicsColorizeEffect +48 QGraphicsColorizeEffect::~QGraphicsColorizeEffect +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsEffect::boundingRectFor +120 QGraphicsColorizeEffect::draw +128 QGraphicsEffect::sourceChanged + +Class QGraphicsColorizeEffect + size=16 align=8 + base size=16 base align=8 +QGraphicsColorizeEffect (0x7faaa8624c40) 0 + vptr=((& QGraphicsColorizeEffect::_ZTV23QGraphicsColorizeEffect) + 16u) + QGraphicsEffect (0x7faaa8624cb0) 0 + primary-for QGraphicsColorizeEffect (0x7faaa8624c40) + QObject (0x7faaa8624d20) 0 + primary-for QGraphicsEffect (0x7faaa8624cb0) + +Vtable for QGraphicsBlurEffect +QGraphicsBlurEffect::_ZTV19QGraphicsBlurEffect: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QGraphicsBlurEffect) +16 QGraphicsBlurEffect::metaObject +24 QGraphicsBlurEffect::qt_metacast +32 QGraphicsBlurEffect::qt_metacall +40 QGraphicsBlurEffect::~QGraphicsBlurEffect +48 QGraphicsBlurEffect::~QGraphicsBlurEffect +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsBlurEffect::boundingRectFor +120 QGraphicsBlurEffect::draw +128 QGraphicsEffect::sourceChanged + +Class QGraphicsBlurEffect + size=16 align=8 + base size=16 base align=8 +QGraphicsBlurEffect (0x7faaa86535b0) 0 + vptr=((& QGraphicsBlurEffect::_ZTV19QGraphicsBlurEffect) + 16u) + QGraphicsEffect (0x7faaa8653620) 0 + primary-for QGraphicsBlurEffect (0x7faaa86535b0) + QObject (0x7faaa8653690) 0 + primary-for QGraphicsEffect (0x7faaa8653620) + +Vtable for QGraphicsDropShadowEffect +QGraphicsDropShadowEffect::_ZTV25QGraphicsDropShadowEffect: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QGraphicsDropShadowEffect) +16 QGraphicsDropShadowEffect::metaObject +24 QGraphicsDropShadowEffect::qt_metacast +32 QGraphicsDropShadowEffect::qt_metacall +40 QGraphicsDropShadowEffect::~QGraphicsDropShadowEffect +48 QGraphicsDropShadowEffect::~QGraphicsDropShadowEffect +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsDropShadowEffect::boundingRectFor +120 QGraphicsDropShadowEffect::draw +128 QGraphicsEffect::sourceChanged + +Class QGraphicsDropShadowEffect + size=16 align=8 + base size=16 base align=8 +QGraphicsDropShadowEffect (0x7faaa86b10e0) 0 + vptr=((& QGraphicsDropShadowEffect::_ZTV25QGraphicsDropShadowEffect) + 16u) + QGraphicsEffect (0x7faaa86b1150) 0 + primary-for QGraphicsDropShadowEffect (0x7faaa86b10e0) + QObject (0x7faaa86b11c0) 0 + primary-for QGraphicsEffect (0x7faaa86b1150) + +Vtable for QGraphicsOpacityEffect +QGraphicsOpacityEffect::_ZTV22QGraphicsOpacityEffect: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QGraphicsOpacityEffect) +16 QGraphicsOpacityEffect::metaObject +24 QGraphicsOpacityEffect::qt_metacast +32 QGraphicsOpacityEffect::qt_metacall +40 QGraphicsOpacityEffect::~QGraphicsOpacityEffect +48 QGraphicsOpacityEffect::~QGraphicsOpacityEffect +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsEffect::boundingRectFor +120 QGraphicsOpacityEffect::draw +128 QGraphicsEffect::sourceChanged + +Class QGraphicsOpacityEffect + size=16 align=8 + base size=16 base align=8 +QGraphicsOpacityEffect (0x7faaa86d05b0) 0 + vptr=((& QGraphicsOpacityEffect::_ZTV22QGraphicsOpacityEffect) + 16u) + QGraphicsEffect (0x7faaa86d0620) 0 + primary-for QGraphicsOpacityEffect (0x7faaa86d05b0) + QObject (0x7faaa86d0690) 0 + primary-for QGraphicsEffect (0x7faaa86d0620) + +Class QVFbHeader + size=1088 align=8 + base size=1088 base align=8 +QVFbHeader (0x7faaa86e2ee0) 0 + +Class QVFbKeyData + size=12 align=4 + base size=12 base align=4 +QVFbKeyData (0x7faaa86e2f50) 0 + +Vtable for QWSEmbedWidget +QWSEmbedWidget::_ZTV14QWSEmbedWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QWSEmbedWidget) +16 QWSEmbedWidget::metaObject +24 QWSEmbedWidget::qt_metacast +32 QWSEmbedWidget::qt_metacall +40 QWSEmbedWidget::~QWSEmbedWidget +48 QWSEmbedWidget::~QWSEmbedWidget +56 QWidget::event +64 QWSEmbedWidget::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWSEmbedWidget::moveEvent +264 QWSEmbedWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWSEmbedWidget::showEvent +344 QWSEmbedWidget::hideEvent +352 QWidget::x11Event +360 QWSEmbedWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI14QWSEmbedWidget) +464 QWSEmbedWidget::_ZThn16_N14QWSEmbedWidgetD1Ev +472 QWSEmbedWidget::_ZThn16_N14QWSEmbedWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWSEmbedWidget + size=40 align=8 + base size=40 base align=8 +QWSEmbedWidget (0x7faaa84ec000) 0 + vptr=((& QWSEmbedWidget::_ZTV14QWSEmbedWidget) + 16u) + QWidget (0x7faaa86df900) 0 + primary-for QWSEmbedWidget (0x7faaa84ec000) + QObject (0x7faaa84ec070) 0 + primary-for QWidget (0x7faaa86df900) + QPaintDevice (0x7faaa84ec0e0) 16 + vptr=((& QWSEmbedWidget::_ZTV14QWSEmbedWidget) + 464u) + +Class QColormap + size=8 align=8 + base size=8 base align=8 +QColormap (0x7faaa85044d0) 0 + +Class QTileRules + size=8 align=4 + base size=8 base align=4 +QTileRules (0x7faaa8504cb0) 0 + +Class QDrawPixmaps::Data + size=80 align=8 + base size=80 base align=8 +QDrawPixmaps::Data (0x7faaa851bd20) 0 + +Class QPainter + size=8 align=8 + base size=8 base align=8 +QPainter (0x7faaa851be00) 0 + +Class QTextItem + size=1 align=1 + base size=0 base align=1 +QTextItem (0x7faaa83498c0) 0 empty + +Vtable for QPaintEngine +QPaintEngine::_ZTV12QPaintEngine: 24u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QPaintEngine) +16 QPaintEngine::~QPaintEngine +24 QPaintEngine::~QPaintEngine +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QPaintEngine::drawRects +64 QPaintEngine::drawRects +72 QPaintEngine::drawLines +80 QPaintEngine::drawLines +88 QPaintEngine::drawEllipse +96 QPaintEngine::drawEllipse +104 QPaintEngine::drawPath +112 QPaintEngine::drawPoints +120 QPaintEngine::drawPoints +128 QPaintEngine::drawPolygon +136 QPaintEngine::drawPolygon +144 __cxa_pure_virtual +152 QPaintEngine::drawTextItem +160 QPaintEngine::drawTiledPixmap +168 QPaintEngine::drawImage +176 QPaintEngine::coordinateOffset +184 __cxa_pure_virtual + +Class QPaintEngine + size=32 align=8 + base size=32 base align=8 +QPaintEngine (0x7faaa8349ee0) 0 + vptr=((& QPaintEngine::_ZTV12QPaintEngine) + 16u) + +Class QPaintEngineState + size=4 align=4 + base size=4 base align=4 +QPaintEngineState (0x7faaa8393b60) 0 + +Vtable for QPrinter +QPrinter::_ZTV8QPrinter: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QPrinter) +16 QPrinter::~QPrinter +24 QPrinter::~QPrinter +32 QPrinter::devType +40 QPrinter::paintEngine +48 QPrinter::metric + +Class QPrinter + size=24 align=8 + base size=24 base align=8 +QPrinter (0x7faaa8262e70) 0 + vptr=((& QPrinter::_ZTV8QPrinter) + 16u) + QPaintDevice (0x7faaa8262ee0) 0 + primary-for QPrinter (0x7faaa8262e70) + +Vtable for QPrintEngine +QPrintEngine::_ZTV12QPrintEngine: 10u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QPrintEngine) +16 QPrintEngine::~QPrintEngine +24 QPrintEngine::~QPrintEngine +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual + +Class QPrintEngine + size=8 align=8 + base size=8 base align=8 +QPrintEngine (0x7faaa82c9540) 0 nearly-empty + vptr=((& QPrintEngine::_ZTV12QPrintEngine) + 16u) + +Class QPrinterInfo + size=8 align=8 + base size=8 base align=8 +QPrinterInfo (0x7faaa82d62a0) 0 + +Class QStylePainter + size=24 align=8 + base size=24 base align=8 +QStylePainter (0x7faaa82de9a0) 0 + QPainter (0x7faaa82dea10) 0 + +Vtable for QAbstractProxyModel +QAbstractProxyModel::_ZTV19QAbstractProxyModel: 47u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractProxyModel) +16 QAbstractProxyModel::metaObject +24 QAbstractProxyModel::qt_metacast +32 QAbstractProxyModel::qt_metacall +40 QAbstractProxyModel::~QAbstractProxyModel +48 QAbstractProxyModel::~QAbstractProxyModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractItemModel::hasChildren +152 QAbstractProxyModel::data +160 QAbstractProxyModel::setData +168 QAbstractProxyModel::headerData +176 QAbstractProxyModel::setHeaderData +184 QAbstractProxyModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractItemModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractProxyModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractProxyModel::submit +328 QAbstractProxyModel::revert +336 QAbstractProxyModel::setSourceModel +344 __cxa_pure_virtual +352 __cxa_pure_virtual +360 QAbstractProxyModel::mapSelectionToSource +368 QAbstractProxyModel::mapSelectionFromSource + +Class QAbstractProxyModel + size=16 align=8 + base size=16 base align=8 +QAbstractProxyModel (0x7faaa810bee0) 0 + vptr=((& QAbstractProxyModel::_ZTV19QAbstractProxyModel) + 16u) + QAbstractItemModel (0x7faaa810bf50) 0 + primary-for QAbstractProxyModel (0x7faaa810bee0) + QObject (0x7faaa8111000) 0 + primary-for QAbstractItemModel (0x7faaa810bf50) + +Vtable for QColumnView +QColumnView::_ZTV11QColumnView: 104u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QColumnView) +16 QColumnView::metaObject +24 QColumnView::qt_metacast +32 QColumnView::qt_metacall +40 QColumnView::~QColumnView +48 QColumnView::~QColumnView +56 QAbstractItemView::event +64 QObject::eventFilter +72 QAbstractItemView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QColumnView::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QAbstractItemView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QAbstractItemView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractScrollArea::paintEvent +256 QWidget::moveEvent +264 QColumnView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QColumnView::scrollContentsBy +464 QColumnView::setModel +472 QColumnView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QColumnView::visualRect +496 QColumnView::scrollTo +504 QColumnView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QAbstractItemView::reset +536 QColumnView::setRootIndex +544 QAbstractItemView::doItemsLayout +552 QColumnView::selectAll +560 QAbstractItemView::dataChanged +568 QColumnView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QAbstractItemView::selectionChanged +592 QColumnView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QAbstractItemView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QColumnView::moveCursor +688 QColumnView::horizontalOffset +696 QColumnView::verticalOffset +704 QColumnView::isIndexHidden +712 QColumnView::setSelection +720 QColumnView::visualRegionForSelection +728 QAbstractItemView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 QColumnView::createColumn +776 (int (*)(...))-0x00000000000000010 +784 (int (*)(...))(& _ZTI11QColumnView) +792 QColumnView::_ZThn16_N11QColumnViewD1Ev +800 QColumnView::_ZThn16_N11QColumnViewD0Ev +808 QWidget::_ZThn16_NK7QWidget7devTypeEv +816 QWidget::_ZThn16_NK7QWidget11paintEngineEv +824 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QColumnView + size=40 align=8 + base size=40 base align=8 +QColumnView (0x7faaa8127af0) 0 + vptr=((& QColumnView::_ZTV11QColumnView) + 16u) + QAbstractItemView (0x7faaa8127b60) 0 + primary-for QColumnView (0x7faaa8127af0) + QAbstractScrollArea (0x7faaa8127bd0) 0 + primary-for QAbstractItemView (0x7faaa8127b60) + QFrame (0x7faaa8127c40) 0 + primary-for QAbstractScrollArea (0x7faaa8127bd0) + QWidget (0x7faaa812e200) 0 + primary-for QFrame (0x7faaa8127c40) + QObject (0x7faaa8127cb0) 0 + primary-for QWidget (0x7faaa812e200) + QPaintDevice (0x7faaa8127d20) 16 + vptr=((& QColumnView::_ZTV11QColumnView) + 792u) + +Vtable for QDataWidgetMapper +QDataWidgetMapper::_ZTV17QDataWidgetMapper: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QDataWidgetMapper) +16 QDataWidgetMapper::metaObject +24 QDataWidgetMapper::qt_metacast +32 QDataWidgetMapper::qt_metacall +40 QDataWidgetMapper::~QDataWidgetMapper +48 QDataWidgetMapper::~QDataWidgetMapper +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QDataWidgetMapper::setCurrentIndex + +Class QDataWidgetMapper + size=16 align=8 + base size=16 base align=8 +QDataWidgetMapper (0x7faaa814dc40) 0 + vptr=((& QDataWidgetMapper::_ZTV17QDataWidgetMapper) + 16u) + QObject (0x7faaa814dcb0) 0 + primary-for QDataWidgetMapper (0x7faaa814dc40) + +Vtable for QFileIconProvider +QFileIconProvider::_ZTV17QFileIconProvider: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QFileIconProvider) +16 QFileIconProvider::~QFileIconProvider +24 QFileIconProvider::~QFileIconProvider +32 QFileIconProvider::icon +40 QFileIconProvider::icon +48 QFileIconProvider::type + +Class QFileIconProvider + size=16 align=8 + base size=16 base align=8 +QFileIconProvider (0x7faaa816e700) 0 + vptr=((& QFileIconProvider::_ZTV17QFileIconProvider) + 16u) + +Vtable for QDirModel +QDirModel::_ZTV9QDirModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QDirModel) +16 QDirModel::metaObject +24 QDirModel::qt_metacast +32 QDirModel::qt_metacall +40 QDirModel::~QDirModel +48 QDirModel::~QDirModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QDirModel::index +120 QDirModel::parent +128 QDirModel::rowCount +136 QDirModel::columnCount +144 QDirModel::hasChildren +152 QDirModel::data +160 QDirModel::setData +168 QDirModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QDirModel::mimeTypes +208 QDirModel::mimeData +216 QDirModel::dropMimeData +224 QDirModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QDirModel::flags +288 QDirModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QDirModel + size=16 align=8 + base size=16 base align=8 +QDirModel (0x7faaa8181380) 0 + vptr=((& QDirModel::_ZTV9QDirModel) + 16u) + QAbstractItemModel (0x7faaa81813f0) 0 + primary-for QDirModel (0x7faaa8181380) + QObject (0x7faaa8181460) 0 + primary-for QAbstractItemModel (0x7faaa81813f0) + +Vtable for QHeaderView +QHeaderView::_ZTV11QHeaderView: 105u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QHeaderView) +16 QHeaderView::metaObject +24 QHeaderView::qt_metacast +32 QHeaderView::qt_metacall +40 QHeaderView::~QHeaderView +48 QHeaderView::~QHeaderView +56 QHeaderView::event +64 QObject::eventFilter +72 QAbstractItemView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QHeaderView::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QHeaderView::mousePressEvent +168 QHeaderView::mouseReleaseEvent +176 QHeaderView::mouseDoubleClickEvent +184 QHeaderView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QHeaderView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QHeaderView::viewportEvent +456 QHeaderView::scrollContentsBy +464 QHeaderView::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QHeaderView::visualRect +496 QHeaderView::scrollTo +504 QHeaderView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QHeaderView::reset +536 QAbstractItemView::setRootIndex +544 QHeaderView::doItemsLayout +552 QAbstractItemView::selectAll +560 QHeaderView::dataChanged +568 QHeaderView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QAbstractItemView::selectionChanged +592 QHeaderView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QHeaderView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QHeaderView::moveCursor +688 QHeaderView::horizontalOffset +696 QHeaderView::verticalOffset +704 QHeaderView::isIndexHidden +712 QHeaderView::setSelection +720 QHeaderView::visualRegionForSelection +728 QAbstractItemView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 QHeaderView::paintSection +776 QHeaderView::sectionSizeFromContents +784 (int (*)(...))-0x00000000000000010 +792 (int (*)(...))(& _ZTI11QHeaderView) +800 QHeaderView::_ZThn16_N11QHeaderViewD1Ev +808 QHeaderView::_ZThn16_N11QHeaderViewD0Ev +816 QWidget::_ZThn16_NK7QWidget7devTypeEv +824 QWidget::_ZThn16_NK7QWidget11paintEngineEv +832 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QHeaderView + size=40 align=8 + base size=40 base align=8 +QHeaderView (0x7faaa81ad620) 0 + vptr=((& QHeaderView::_ZTV11QHeaderView) + 16u) + QAbstractItemView (0x7faaa81ad690) 0 + primary-for QHeaderView (0x7faaa81ad620) + QAbstractScrollArea (0x7faaa81ad700) 0 + primary-for QAbstractItemView (0x7faaa81ad690) + QFrame (0x7faaa81ad770) 0 + primary-for QAbstractScrollArea (0x7faaa81ad700) + QWidget (0x7faaa8188980) 0 + primary-for QFrame (0x7faaa81ad770) + QObject (0x7faaa81ad7e0) 0 + primary-for QWidget (0x7faaa8188980) + QPaintDevice (0x7faaa81ad850) 16 + vptr=((& QHeaderView::_ZTV11QHeaderView) + 800u) + +Vtable for QItemDelegate +QItemDelegate::_ZTV13QItemDelegate: 25u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QItemDelegate) +16 QItemDelegate::metaObject +24 QItemDelegate::qt_metacast +32 QItemDelegate::qt_metacall +40 QItemDelegate::~QItemDelegate +48 QItemDelegate::~QItemDelegate +56 QObject::event +64 QItemDelegate::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QItemDelegate::paint +120 QItemDelegate::sizeHint +128 QItemDelegate::createEditor +136 QItemDelegate::setEditorData +144 QItemDelegate::setModelData +152 QItemDelegate::updateEditorGeometry +160 QItemDelegate::editorEvent +168 QItemDelegate::drawDisplay +176 QItemDelegate::drawDecoration +184 QItemDelegate::drawFocus +192 QItemDelegate::drawCheck + +Class QItemDelegate + size=16 align=8 + base size=16 base align=8 +QItemDelegate (0x7faaa7ff1230) 0 + vptr=((& QItemDelegate::_ZTV13QItemDelegate) + 16u) + QAbstractItemDelegate (0x7faaa7ff12a0) 0 + primary-for QItemDelegate (0x7faaa7ff1230) + QObject (0x7faaa7ff1310) 0 + primary-for QAbstractItemDelegate (0x7faaa7ff12a0) + +Vtable for QItemEditorCreatorBase +QItemEditorCreatorBase::_ZTV22QItemEditorCreatorBase: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QItemEditorCreatorBase) +16 QItemEditorCreatorBase::~QItemEditorCreatorBase +24 QItemEditorCreatorBase::~QItemEditorCreatorBase +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QItemEditorCreatorBase + size=8 align=8 + base size=8 base align=8 +QItemEditorCreatorBase (0x7faaa800dbd0) 0 nearly-empty + vptr=((& QItemEditorCreatorBase::_ZTV22QItemEditorCreatorBase) + 16u) + +Vtable for QItemEditorFactory +QItemEditorFactory::_ZTV18QItemEditorFactory: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QItemEditorFactory) +16 QItemEditorFactory::~QItemEditorFactory +24 QItemEditorFactory::~QItemEditorFactory +32 QItemEditorFactory::createEditor +40 QItemEditorFactory::valuePropertyName + +Class QItemEditorFactory + size=16 align=8 + base size=16 base align=8 +QItemEditorFactory (0x7faaa8018a80) 0 + vptr=((& QItemEditorFactory::_ZTV18QItemEditorFactory) + 16u) + +Vtable for QListWidgetItem +QListWidgetItem::_ZTV15QListWidgetItem: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QListWidgetItem) +16 QListWidgetItem::~QListWidgetItem +24 QListWidgetItem::~QListWidgetItem +32 QListWidgetItem::clone +40 QListWidgetItem::setBackgroundColor +48 QListWidgetItem::data +56 QListWidgetItem::setData +64 QListWidgetItem::operator< +72 QListWidgetItem::read +80 QListWidgetItem::write + +Class QListWidgetItem + size=48 align=8 + base size=44 base align=8 +QListWidgetItem (0x7faaa8026d20) 0 + vptr=((& QListWidgetItem::_ZTV15QListWidgetItem) + 16u) + +Vtable for QListWidget +QListWidget::_ZTV11QListWidget: 107u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QListWidget) +16 QListWidget::metaObject +24 QListWidget::qt_metacast +32 QListWidget::qt_metacall +40 QListWidget::~QListWidget +48 QListWidget::~QListWidget +56 QListWidget::event +64 QObject::eventFilter +72 QListView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QListView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QListView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QListView::paintEvent +256 QWidget::moveEvent +264 QListView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QListView::dragMoveEvent +320 QListView::dragLeaveEvent +328 QListWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QListView::scrollContentsBy +464 QListWidget::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QListView::visualRect +496 QListView::scrollTo +504 QListView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QListView::reset +536 QListView::setRootIndex +544 QListView::doItemsLayout +552 QAbstractItemView::selectAll +560 QListView::dataChanged +568 QListView::rowsInserted +576 QListView::rowsAboutToBeRemoved +584 QListView::selectionChanged +592 QListView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QListView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QListView::moveCursor +688 QListView::horizontalOffset +696 QListView::verticalOffset +704 QListView::isIndexHidden +712 QListView::setSelection +720 QListView::visualRegionForSelection +728 QListView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QListView::startDrag +760 QListView::viewOptions +768 QListWidget::mimeTypes +776 QListWidget::mimeData +784 QListWidget::dropMimeData +792 QListWidget::supportedDropActions +800 (int (*)(...))-0x00000000000000010 +808 (int (*)(...))(& _ZTI11QListWidget) +816 QListWidget::_ZThn16_N11QListWidgetD1Ev +824 QListWidget::_ZThn16_N11QListWidgetD0Ev +832 QWidget::_ZThn16_NK7QWidget7devTypeEv +840 QWidget::_ZThn16_NK7QWidget11paintEngineEv +848 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QListWidget + size=40 align=8 + base size=40 base align=8 +QListWidget (0x7faaa80b83f0) 0 + vptr=((& QListWidget::_ZTV11QListWidget) + 16u) + QListView (0x7faaa80b8460) 0 + primary-for QListWidget (0x7faaa80b83f0) + QAbstractItemView (0x7faaa80b84d0) 0 + primary-for QListView (0x7faaa80b8460) + QAbstractScrollArea (0x7faaa80b8540) 0 + primary-for QAbstractItemView (0x7faaa80b84d0) + QFrame (0x7faaa80b85b0) 0 + primary-for QAbstractScrollArea (0x7faaa80b8540) + QWidget (0x7faaa80b1a00) 0 + primary-for QFrame (0x7faaa80b85b0) + QObject (0x7faaa80b8620) 0 + primary-for QWidget (0x7faaa80b1a00) + QPaintDevice (0x7faaa80b8690) 16 + vptr=((& QListWidget::_ZTV11QListWidget) + 816u) + +Vtable for QProxyModel +QProxyModel::_ZTV11QProxyModel: 43u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QProxyModel) +16 QProxyModel::metaObject +24 QProxyModel::qt_metacast +32 QProxyModel::qt_metacall +40 QProxyModel::~QProxyModel +48 QProxyModel::~QProxyModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QProxyModel::index +120 QProxyModel::parent +128 QProxyModel::rowCount +136 QProxyModel::columnCount +144 QProxyModel::hasChildren +152 QProxyModel::data +160 QProxyModel::setData +168 QProxyModel::headerData +176 QProxyModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QProxyModel::mimeTypes +208 QProxyModel::mimeData +216 QProxyModel::dropMimeData +224 QProxyModel::supportedDropActions +232 QProxyModel::insertRows +240 QProxyModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QProxyModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QProxyModel::flags +288 QProxyModel::sort +296 QAbstractItemModel::buddy +304 QProxyModel::match +312 QProxyModel::span +320 QProxyModel::submit +328 QProxyModel::revert +336 QProxyModel::setModel + +Class QProxyModel + size=16 align=8 + base size=16 base align=8 +QProxyModel (0x7faaa7ef1850) 0 + vptr=((& QProxyModel::_ZTV11QProxyModel) + 16u) + QAbstractItemModel (0x7faaa7ef18c0) 0 + primary-for QProxyModel (0x7faaa7ef1850) + QObject (0x7faaa7ef1930) 0 + primary-for QAbstractItemModel (0x7faaa7ef18c0) + +Vtable for QSortFilterProxyModel +QSortFilterProxyModel::_ZTV21QSortFilterProxyModel: 50u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QSortFilterProxyModel) +16 QSortFilterProxyModel::metaObject +24 QSortFilterProxyModel::qt_metacast +32 QSortFilterProxyModel::qt_metacall +40 QSortFilterProxyModel::~QSortFilterProxyModel +48 QSortFilterProxyModel::~QSortFilterProxyModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QSortFilterProxyModel::index +120 QSortFilterProxyModel::parent +128 QSortFilterProxyModel::rowCount +136 QSortFilterProxyModel::columnCount +144 QSortFilterProxyModel::hasChildren +152 QSortFilterProxyModel::data +160 QSortFilterProxyModel::setData +168 QSortFilterProxyModel::headerData +176 QSortFilterProxyModel::setHeaderData +184 QAbstractProxyModel::itemData +192 QAbstractItemModel::setItemData +200 QSortFilterProxyModel::mimeTypes +208 QSortFilterProxyModel::mimeData +216 QSortFilterProxyModel::dropMimeData +224 QSortFilterProxyModel::supportedDropActions +232 QSortFilterProxyModel::insertRows +240 QSortFilterProxyModel::insertColumns +248 QSortFilterProxyModel::removeRows +256 QSortFilterProxyModel::removeColumns +264 QSortFilterProxyModel::fetchMore +272 QSortFilterProxyModel::canFetchMore +280 QSortFilterProxyModel::flags +288 QSortFilterProxyModel::sort +296 QSortFilterProxyModel::buddy +304 QSortFilterProxyModel::match +312 QSortFilterProxyModel::span +320 QAbstractProxyModel::submit +328 QAbstractProxyModel::revert +336 QSortFilterProxyModel::setSourceModel +344 QSortFilterProxyModel::mapToSource +352 QSortFilterProxyModel::mapFromSource +360 QSortFilterProxyModel::mapSelectionToSource +368 QSortFilterProxyModel::mapSelectionFromSource +376 QSortFilterProxyModel::filterAcceptsRow +384 QSortFilterProxyModel::filterAcceptsColumn +392 QSortFilterProxyModel::lessThan + +Class QSortFilterProxyModel + size=16 align=8 + base size=16 base align=8 +QSortFilterProxyModel (0x7faaa7f15700) 0 + vptr=((& QSortFilterProxyModel::_ZTV21QSortFilterProxyModel) + 16u) + QAbstractProxyModel (0x7faaa7f15770) 0 + primary-for QSortFilterProxyModel (0x7faaa7f15700) + QAbstractItemModel (0x7faaa7f157e0) 0 + primary-for QAbstractProxyModel (0x7faaa7f15770) + QObject (0x7faaa7f15850) 0 + primary-for QAbstractItemModel (0x7faaa7f157e0) + +Vtable for QStandardItem +QStandardItem::_ZTV13QStandardItem: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QStandardItem) +16 QStandardItem::~QStandardItem +24 QStandardItem::~QStandardItem +32 QStandardItem::data +40 QStandardItem::setData +48 QStandardItem::clone +56 QStandardItem::type +64 QStandardItem::read +72 QStandardItem::write +80 QStandardItem::operator< + +Class QStandardItem + size=16 align=8 + base size=16 base align=8 +QStandardItem (0x7faaa7f45620) 0 + vptr=((& QStandardItem::_ZTV13QStandardItem) + 16u) + +Vtable for QStandardItemModel +QStandardItemModel::_ZTV18QStandardItemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QStandardItemModel) +16 QStandardItemModel::metaObject +24 QStandardItemModel::qt_metacast +32 QStandardItemModel::qt_metacall +40 QStandardItemModel::~QStandardItemModel +48 QStandardItemModel::~QStandardItemModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QStandardItemModel::index +120 QStandardItemModel::parent +128 QStandardItemModel::rowCount +136 QStandardItemModel::columnCount +144 QStandardItemModel::hasChildren +152 QStandardItemModel::data +160 QStandardItemModel::setData +168 QStandardItemModel::headerData +176 QStandardItemModel::setHeaderData +184 QStandardItemModel::itemData +192 QStandardItemModel::setItemData +200 QStandardItemModel::mimeTypes +208 QStandardItemModel::mimeData +216 QStandardItemModel::dropMimeData +224 QStandardItemModel::supportedDropActions +232 QStandardItemModel::insertRows +240 QStandardItemModel::insertColumns +248 QStandardItemModel::removeRows +256 QStandardItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QStandardItemModel::flags +288 QStandardItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QStandardItemModel + size=16 align=8 + base size=16 base align=8 +QStandardItemModel (0x7faaa7e2f3f0) 0 + vptr=((& QStandardItemModel::_ZTV18QStandardItemModel) + 16u) + QAbstractItemModel (0x7faaa7e2f460) 0 + primary-for QStandardItemModel (0x7faaa7e2f3f0) + QObject (0x7faaa7e2f4d0) 0 + primary-for QAbstractItemModel (0x7faaa7e2f460) + +Vtable for QStringListModel +QStringListModel::_ZTV16QStringListModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QStringListModel) +16 QStringListModel::metaObject +24 QStringListModel::qt_metacast +32 QStringListModel::qt_metacall +40 QStringListModel::~QStringListModel +48 QStringListModel::~QStringListModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractListModel::index +120 QAbstractListModel::parent +128 QStringListModel::rowCount +136 QAbstractListModel::columnCount +144 QAbstractListModel::hasChildren +152 QStringListModel::data +160 QStringListModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractListModel::dropMimeData +224 QStringListModel::supportedDropActions +232 QStringListModel::insertRows +240 QAbstractItemModel::insertColumns +248 QStringListModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QStringListModel::flags +288 QStringListModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QStringListModel + size=24 align=8 + base size=24 base align=8 +QStringListModel (0x7faaa7e6af50) 0 + vptr=((& QStringListModel::_ZTV16QStringListModel) + 16u) + QAbstractListModel (0x7faaa7e7d000) 0 + primary-for QStringListModel (0x7faaa7e6af50) + QAbstractItemModel (0x7faaa7e7d070) 0 + primary-for QAbstractListModel (0x7faaa7e7d000) + QObject (0x7faaa7e7d0e0) 0 + primary-for QAbstractItemModel (0x7faaa7e7d070) + +Vtable for QStyledItemDelegate +QStyledItemDelegate::_ZTV19QStyledItemDelegate: 23u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QStyledItemDelegate) +16 QStyledItemDelegate::metaObject +24 QStyledItemDelegate::qt_metacast +32 QStyledItemDelegate::qt_metacall +40 QStyledItemDelegate::~QStyledItemDelegate +48 QStyledItemDelegate::~QStyledItemDelegate +56 QObject::event +64 QStyledItemDelegate::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QStyledItemDelegate::paint +120 QStyledItemDelegate::sizeHint +128 QStyledItemDelegate::createEditor +136 QStyledItemDelegate::setEditorData +144 QStyledItemDelegate::setModelData +152 QStyledItemDelegate::updateEditorGeometry +160 QStyledItemDelegate::editorEvent +168 QStyledItemDelegate::displayText +176 QStyledItemDelegate::initStyleOption + +Class QStyledItemDelegate + size=16 align=8 + base size=16 base align=8 +QStyledItemDelegate (0x7faaa7e965b0) 0 + vptr=((& QStyledItemDelegate::_ZTV19QStyledItemDelegate) + 16u) + QAbstractItemDelegate (0x7faaa7e96620) 0 + primary-for QStyledItemDelegate (0x7faaa7e965b0) + QObject (0x7faaa7e96690) 0 + primary-for QAbstractItemDelegate (0x7faaa7e96620) + +Vtable for QTableView +QTableView::_ZTV10QTableView: 103u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTableView) +16 QTableView::metaObject +24 QTableView::qt_metacast +32 QTableView::qt_metacall +40 QTableView::~QTableView +48 QTableView::~QTableView +56 QAbstractItemView::event +64 QObject::eventFilter +72 QTableView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QAbstractItemView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QAbstractItemView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTableView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QTableView::scrollContentsBy +464 QTableView::setModel +472 QTableView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QTableView::visualRect +496 QTableView::scrollTo +504 QTableView::indexAt +512 QTableView::sizeHintForRow +520 QTableView::sizeHintForColumn +528 QAbstractItemView::reset +536 QTableView::setRootIndex +544 QAbstractItemView::doItemsLayout +552 QAbstractItemView::selectAll +560 QAbstractItemView::dataChanged +568 QAbstractItemView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QTableView::selectionChanged +592 QTableView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QTableView::updateGeometries +624 QTableView::verticalScrollbarAction +632 QTableView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QTableView::moveCursor +688 QTableView::horizontalOffset +696 QTableView::verticalOffset +704 QTableView::isIndexHidden +712 QTableView::setSelection +720 QTableView::visualRegionForSelection +728 QTableView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QTableView::viewOptions +768 (int (*)(...))-0x00000000000000010 +776 (int (*)(...))(& _ZTI10QTableView) +784 QTableView::_ZThn16_N10QTableViewD1Ev +792 QTableView::_ZThn16_N10QTableViewD0Ev +800 QWidget::_ZThn16_NK7QWidget7devTypeEv +808 QWidget::_ZThn16_NK7QWidget11paintEngineEv +816 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTableView + size=40 align=8 + base size=40 base align=8 +QTableView (0x7faaa7eacf50) 0 + vptr=((& QTableView::_ZTV10QTableView) + 16u) + QAbstractItemView (0x7faaa7eb3000) 0 + primary-for QTableView (0x7faaa7eacf50) + QAbstractScrollArea (0x7faaa7eb3070) 0 + primary-for QAbstractItemView (0x7faaa7eb3000) + QFrame (0x7faaa7eb30e0) 0 + primary-for QAbstractScrollArea (0x7faaa7eb3070) + QWidget (0x7faaa7e95b00) 0 + primary-for QFrame (0x7faaa7eb30e0) + QObject (0x7faaa7eb3150) 0 + primary-for QWidget (0x7faaa7e95b00) + QPaintDevice (0x7faaa7eb31c0) 16 + vptr=((& QTableView::_ZTV10QTableView) + 784u) + +Class QTableWidgetSelectionRange + size=16 align=4 + base size=16 base align=4 +QTableWidgetSelectionRange (0x7faaa7cdfd20) 0 + +Vtable for QTableWidgetItem +QTableWidgetItem::_ZTV16QTableWidgetItem: 10u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QTableWidgetItem) +16 QTableWidgetItem::~QTableWidgetItem +24 QTableWidgetItem::~QTableWidgetItem +32 QTableWidgetItem::clone +40 QTableWidgetItem::data +48 QTableWidgetItem::setData +56 QTableWidgetItem::operator< +64 QTableWidgetItem::read +72 QTableWidgetItem::write + +Class QTableWidgetItem + size=48 align=8 + base size=44 base align=8 +QTableWidgetItem (0x7faaa7cee230) 0 + vptr=((& QTableWidgetItem::_ZTV16QTableWidgetItem) + 16u) + +Vtable for QTableWidget +QTableWidget::_ZTV12QTableWidget: 107u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTableWidget) +16 QTableWidget::metaObject +24 QTableWidget::qt_metacast +32 QTableWidget::qt_metacall +40 QTableWidget::~QTableWidget +48 QTableWidget::~QTableWidget +56 QTableWidget::event +64 QObject::eventFilter +72 QTableView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QAbstractItemView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QAbstractItemView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTableView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QTableWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QTableView::scrollContentsBy +464 QTableWidget::setModel +472 QTableView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QTableView::visualRect +496 QTableView::scrollTo +504 QTableView::indexAt +512 QTableView::sizeHintForRow +520 QTableView::sizeHintForColumn +528 QAbstractItemView::reset +536 QTableView::setRootIndex +544 QAbstractItemView::doItemsLayout +552 QAbstractItemView::selectAll +560 QAbstractItemView::dataChanged +568 QAbstractItemView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QTableView::selectionChanged +592 QTableView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QTableView::updateGeometries +624 QTableView::verticalScrollbarAction +632 QTableView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QTableView::moveCursor +688 QTableView::horizontalOffset +696 QTableView::verticalOffset +704 QTableView::isIndexHidden +712 QTableView::setSelection +720 QTableView::visualRegionForSelection +728 QTableView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QTableView::viewOptions +768 QTableWidget::mimeTypes +776 QTableWidget::mimeData +784 QTableWidget::dropMimeData +792 QTableWidget::supportedDropActions +800 (int (*)(...))-0x00000000000000010 +808 (int (*)(...))(& _ZTI12QTableWidget) +816 QTableWidget::_ZThn16_N12QTableWidgetD1Ev +824 QTableWidget::_ZThn16_N12QTableWidgetD0Ev +832 QWidget::_ZThn16_NK7QWidget7devTypeEv +840 QWidget::_ZThn16_NK7QWidget11paintEngineEv +848 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTableWidget + size=40 align=8 + base size=40 base align=8 +QTableWidget (0x7faaa7d627e0) 0 + vptr=((& QTableWidget::_ZTV12QTableWidget) + 16u) + QTableView (0x7faaa7d62850) 0 + primary-for QTableWidget (0x7faaa7d627e0) + QAbstractItemView (0x7faaa7d628c0) 0 + primary-for QTableView (0x7faaa7d62850) + QAbstractScrollArea (0x7faaa7d62930) 0 + primary-for QAbstractItemView (0x7faaa7d628c0) + QFrame (0x7faaa7d629a0) 0 + primary-for QAbstractScrollArea (0x7faaa7d62930) + QWidget (0x7faaa7d58c80) 0 + primary-for QFrame (0x7faaa7d629a0) + QObject (0x7faaa7d62a10) 0 + primary-for QWidget (0x7faaa7d58c80) + QPaintDevice (0x7faaa7d62a80) 16 + vptr=((& QTableWidget::_ZTV12QTableWidget) + 816u) + +Vtable for QTreeView +QTreeView::_ZTV9QTreeView: 105u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTreeView) +16 QTreeView::metaObject +24 QTreeView::qt_metacast +32 QTreeView::qt_metacall +40 QTreeView::~QTreeView +48 QTreeView::~QTreeView +56 QAbstractItemView::event +64 QObject::eventFilter +72 QTreeView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTreeView::mousePressEvent +168 QTreeView::mouseReleaseEvent +176 QTreeView::mouseDoubleClickEvent +184 QTreeView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QTreeView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTreeView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QTreeView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QTreeView::viewportEvent +456 QTreeView::scrollContentsBy +464 QTreeView::setModel +472 QTreeView::setSelectionModel +480 QTreeView::keyboardSearch +488 QTreeView::visualRect +496 QTreeView::scrollTo +504 QTreeView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QTreeView::sizeHintForColumn +528 QTreeView::reset +536 QTreeView::setRootIndex +544 QTreeView::doItemsLayout +552 QTreeView::selectAll +560 QTreeView::dataChanged +568 QTreeView::rowsInserted +576 QTreeView::rowsAboutToBeRemoved +584 QTreeView::selectionChanged +592 QTreeView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QTreeView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QTreeView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QTreeView::moveCursor +688 QTreeView::horizontalOffset +696 QTreeView::verticalOffset +704 QTreeView::isIndexHidden +712 QTreeView::setSelection +720 QTreeView::visualRegionForSelection +728 QTreeView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 QTreeView::drawRow +776 QTreeView::drawBranches +784 (int (*)(...))-0x00000000000000010 +792 (int (*)(...))(& _ZTI9QTreeView) +800 QTreeView::_ZThn16_N9QTreeViewD1Ev +808 QTreeView::_ZThn16_N9QTreeViewD0Ev +816 QWidget::_ZThn16_NK7QWidget7devTypeEv +824 QWidget::_ZThn16_NK7QWidget11paintEngineEv +832 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTreeView + size=40 align=8 + base size=40 base align=8 +QTreeView (0x7faaa7da0770) 0 + vptr=((& QTreeView::_ZTV9QTreeView) + 16u) + QAbstractItemView (0x7faaa7da07e0) 0 + primary-for QTreeView (0x7faaa7da0770) + QAbstractScrollArea (0x7faaa7da0850) 0 + primary-for QAbstractItemView (0x7faaa7da07e0) + QFrame (0x7faaa7da08c0) 0 + primary-for QAbstractScrollArea (0x7faaa7da0850) + QWidget (0x7faaa7d9f600) 0 + primary-for QFrame (0x7faaa7da08c0) + QObject (0x7faaa7da0930) 0 + primary-for QWidget (0x7faaa7d9f600) + QPaintDevice (0x7faaa7da09a0) 16 + vptr=((& QTreeView::_ZTV9QTreeView) + 800u) + +Class QTreeWidgetItemIterator + size=24 align=8 + base size=20 base align=8 +QTreeWidgetItemIterator (0x7faaa7dd9540) 0 + +Vtable for QTreeWidgetItem +QTreeWidgetItem::_ZTV15QTreeWidgetItem: 10u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QTreeWidgetItem) +16 QTreeWidgetItem::~QTreeWidgetItem +24 QTreeWidgetItem::~QTreeWidgetItem +32 QTreeWidgetItem::clone +40 QTreeWidgetItem::data +48 QTreeWidgetItem::setData +56 QTreeWidgetItem::operator< +64 QTreeWidgetItem::read +72 QTreeWidgetItem::write + +Class QTreeWidgetItem + size=64 align=8 + base size=60 base align=8 +QTreeWidgetItem (0x7faaa7c472a0) 0 + vptr=((& QTreeWidgetItem::_ZTV15QTreeWidgetItem) + 16u) + +Vtable for QTreeWidget +QTreeWidget::_ZTV11QTreeWidget: 109u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTreeWidget) +16 QTreeWidget::metaObject +24 QTreeWidget::qt_metacast +32 QTreeWidget::qt_metacall +40 QTreeWidget::~QTreeWidget +48 QTreeWidget::~QTreeWidget +56 QTreeWidget::event +64 QObject::eventFilter +72 QTreeView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTreeView::mousePressEvent +168 QTreeView::mouseReleaseEvent +176 QTreeView::mouseDoubleClickEvent +184 QTreeView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QTreeView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTreeView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QTreeView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QTreeWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QTreeView::viewportEvent +456 QTreeView::scrollContentsBy +464 QTreeWidget::setModel +472 QTreeWidget::setSelectionModel +480 QTreeView::keyboardSearch +488 QTreeView::visualRect +496 QTreeView::scrollTo +504 QTreeView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QTreeView::sizeHintForColumn +528 QTreeView::reset +536 QTreeView::setRootIndex +544 QTreeView::doItemsLayout +552 QTreeView::selectAll +560 QTreeView::dataChanged +568 QTreeView::rowsInserted +576 QTreeView::rowsAboutToBeRemoved +584 QTreeView::selectionChanged +592 QTreeView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QTreeView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QTreeView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QTreeView::moveCursor +688 QTreeView::horizontalOffset +696 QTreeView::verticalOffset +704 QTreeView::isIndexHidden +712 QTreeView::setSelection +720 QTreeView::visualRegionForSelection +728 QTreeView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 QTreeView::drawRow +776 QTreeView::drawBranches +784 QTreeWidget::mimeTypes +792 QTreeWidget::mimeData +800 QTreeWidget::dropMimeData +808 QTreeWidget::supportedDropActions +816 (int (*)(...))-0x00000000000000010 +824 (int (*)(...))(& _ZTI11QTreeWidget) +832 QTreeWidget::_ZThn16_N11QTreeWidgetD1Ev +840 QTreeWidget::_ZThn16_N11QTreeWidgetD0Ev +848 QWidget::_ZThn16_NK7QWidget7devTypeEv +856 QWidget::_ZThn16_NK7QWidget11paintEngineEv +864 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTreeWidget + size=40 align=8 + base size=40 base align=8 +QTreeWidget (0x7faaa7af58c0) 0 + vptr=((& QTreeWidget::_ZTV11QTreeWidget) + 16u) + QTreeView (0x7faaa7af5930) 0 + primary-for QTreeWidget (0x7faaa7af58c0) + QAbstractItemView (0x7faaa7af59a0) 0 + primary-for QTreeView (0x7faaa7af5930) + QAbstractScrollArea (0x7faaa7af5a10) 0 + primary-for QAbstractItemView (0x7faaa7af59a0) + QFrame (0x7faaa7af5a80) 0 + primary-for QAbstractScrollArea (0x7faaa7af5a10) + QWidget (0x7faaa7af6200) 0 + primary-for QFrame (0x7faaa7af5a80) + QObject (0x7faaa7af5af0) 0 + primary-for QWidget (0x7faaa7af6200) + QPaintDevice (0x7faaa7af5b60) 16 + vptr=((& QTreeWidget::_ZTV11QTreeWidget) + 832u) + +Class QAccessible + size=1 align=1 + base size=0 base align=1 +QAccessible (0x7faaa7b3cc40) 0 empty + +Vtable for QAccessibleInterface +QAccessibleInterface::_ZTV20QAccessibleInterface: 19u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QAccessibleInterface) +16 QAccessibleInterface::~QAccessibleInterface +24 QAccessibleInterface::~QAccessibleInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual + +Class QAccessibleInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleInterface (0x7faaa79e6e00) 0 nearly-empty + vptr=((& QAccessibleInterface::_ZTV20QAccessibleInterface) + 16u) + QAccessible (0x7faaa79e6e70) 0 empty + +Vtable for QAccessibleInterfaceEx +QAccessibleInterfaceEx::_ZTV22QAccessibleInterfaceEx: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QAccessibleInterfaceEx) +16 QAccessibleInterfaceEx::~QAccessibleInterfaceEx +24 QAccessibleInterfaceEx::~QAccessibleInterfaceEx +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 QAccessibleInterfaceEx::virtual_hook +168 QAccessibleInterfaceEx::interface_cast + +Class QAccessibleInterfaceEx + size=8 align=8 + base size=8 base align=8 +QAccessibleInterfaceEx (0x7faaa7a63b60) 0 nearly-empty + vptr=((& QAccessibleInterfaceEx::_ZTV22QAccessibleInterfaceEx) + 16u) + QAccessibleInterface (0x7faaa7a63bd0) 0 nearly-empty + primary-for QAccessibleInterfaceEx (0x7faaa7a63b60) + QAccessible (0x7faaa7a63c40) 0 empty + +Vtable for QAccessibleEvent +QAccessibleEvent::_ZTV16QAccessibleEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QAccessibleEvent) +16 QAccessibleEvent::~QAccessibleEvent +24 QAccessibleEvent::~QAccessibleEvent + +Class QAccessibleEvent + size=32 align=8 + base size=32 base align=8 +QAccessibleEvent (0x7faaa7a63ee0) 0 + vptr=((& QAccessibleEvent::_ZTV16QAccessibleEvent) + 16u) + QEvent (0x7faaa7a63f50) 0 + primary-for QAccessibleEvent (0x7faaa7a63ee0) + +Vtable for QAccessible2Interface +QAccessible2Interface::_ZTV21QAccessible2Interface: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QAccessible2Interface) +16 QAccessible2Interface::~QAccessible2Interface +24 QAccessible2Interface::~QAccessible2Interface + +Class QAccessible2Interface + size=8 align=8 + base size=8 base align=8 +QAccessible2Interface (0x7faaa7a78f50) 0 nearly-empty + vptr=((& QAccessible2Interface::_ZTV21QAccessible2Interface) + 16u) + +Vtable for QAccessibleTextInterface +QAccessibleTextInterface::_ZTV24QAccessibleTextInterface: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QAccessibleTextInterface) +16 QAccessibleTextInterface::~QAccessibleTextInterface +24 QAccessibleTextInterface::~QAccessibleTextInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual + +Class QAccessibleTextInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleTextInterface (0x7faaa7a8f1c0) 0 nearly-empty + vptr=((& QAccessibleTextInterface::_ZTV24QAccessibleTextInterface) + 16u) + QAccessible2Interface (0x7faaa7a8f230) 0 nearly-empty + primary-for QAccessibleTextInterface (0x7faaa7a8f1c0) + +Vtable for QAccessibleEditableTextInterface +QAccessibleEditableTextInterface::_ZTV32QAccessibleEditableTextInterface: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI32QAccessibleEditableTextInterface) +16 QAccessibleEditableTextInterface::~QAccessibleEditableTextInterface +24 QAccessibleEditableTextInterface::~QAccessibleEditableTextInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual + +Class QAccessibleEditableTextInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleEditableTextInterface (0x7faaa7aa1070) 0 nearly-empty + vptr=((& QAccessibleEditableTextInterface::_ZTV32QAccessibleEditableTextInterface) + 16u) + QAccessible2Interface (0x7faaa7aa10e0) 0 nearly-empty + primary-for QAccessibleEditableTextInterface (0x7faaa7aa1070) + +Vtable for QAccessibleSimpleEditableTextInterface +QAccessibleSimpleEditableTextInterface::_ZTV38QAccessibleSimpleEditableTextInterface: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI38QAccessibleSimpleEditableTextInterface) +16 QAccessibleSimpleEditableTextInterface::~QAccessibleSimpleEditableTextInterface +24 QAccessibleSimpleEditableTextInterface::~QAccessibleSimpleEditableTextInterface +32 QAccessibleSimpleEditableTextInterface::copyText +40 QAccessibleSimpleEditableTextInterface::deleteText +48 QAccessibleSimpleEditableTextInterface::insertText +56 QAccessibleSimpleEditableTextInterface::cutText +64 QAccessibleSimpleEditableTextInterface::pasteText +72 QAccessibleSimpleEditableTextInterface::replaceText +80 QAccessibleSimpleEditableTextInterface::setAttributes + +Class QAccessibleSimpleEditableTextInterface + size=16 align=8 + base size=16 base align=8 +QAccessibleSimpleEditableTextInterface (0x7faaa7aa1f50) 0 + vptr=((& QAccessibleSimpleEditableTextInterface::_ZTV38QAccessibleSimpleEditableTextInterface) + 16u) + QAccessibleEditableTextInterface (0x7faaa7aa1310) 0 nearly-empty + primary-for QAccessibleSimpleEditableTextInterface (0x7faaa7aa1f50) + QAccessible2Interface (0x7faaa7aab000) 0 nearly-empty + primary-for QAccessibleEditableTextInterface (0x7faaa7aa1310) + +Vtable for QAccessibleValueInterface +QAccessibleValueInterface::_ZTV25QAccessibleValueInterface: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QAccessibleValueInterface) +16 QAccessibleValueInterface::~QAccessibleValueInterface +24 QAccessibleValueInterface::~QAccessibleValueInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual + +Class QAccessibleValueInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleValueInterface (0x7faaa7aab230) 0 nearly-empty + vptr=((& QAccessibleValueInterface::_ZTV25QAccessibleValueInterface) + 16u) + QAccessible2Interface (0x7faaa7aab2a0) 0 nearly-empty + primary-for QAccessibleValueInterface (0x7faaa7aab230) + +Vtable for QAccessibleTableInterface +QAccessibleTableInterface::_ZTV25QAccessibleTableInterface: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QAccessibleTableInterface) +16 QAccessibleTableInterface::~QAccessibleTableInterface +24 QAccessibleTableInterface::~QAccessibleTableInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 __cxa_pure_virtual +208 __cxa_pure_virtual +216 __cxa_pure_virtual +224 __cxa_pure_virtual +232 __cxa_pure_virtual + +Class QAccessibleTableInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleTableInterface (0x7faaa7abc070) 0 nearly-empty + vptr=((& QAccessibleTableInterface::_ZTV25QAccessibleTableInterface) + 16u) + QAccessible2Interface (0x7faaa7abc0e0) 0 nearly-empty + primary-for QAccessibleTableInterface (0x7faaa7abc070) + +Vtable for QAccessibleActionInterface +QAccessibleActionInterface::_ZTV26QAccessibleActionInterface: 10u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QAccessibleActionInterface) +16 QAccessibleActionInterface::~QAccessibleActionInterface +24 QAccessibleActionInterface::~QAccessibleActionInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual + +Class QAccessibleActionInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleActionInterface (0x7faaa7abc460) 0 nearly-empty + vptr=((& QAccessibleActionInterface::_ZTV26QAccessibleActionInterface) + 16u) + QAccessible2Interface (0x7faaa7abc4d0) 0 nearly-empty + primary-for QAccessibleActionInterface (0x7faaa7abc460) + +Vtable for QAccessibleImageInterface +QAccessibleImageInterface::_ZTV25QAccessibleImageInterface: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QAccessibleImageInterface) +16 QAccessibleImageInterface::~QAccessibleImageInterface +24 QAccessibleImageInterface::~QAccessibleImageInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual + +Class QAccessibleImageInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleImageInterface (0x7faaa7abc850) 0 nearly-empty + vptr=((& QAccessibleImageInterface::_ZTV25QAccessibleImageInterface) + 16u) + QAccessible2Interface (0x7faaa7abc8c0) 0 nearly-empty + primary-for QAccessibleImageInterface (0x7faaa7abc850) + +Vtable for QAccessibleBridge +QAccessibleBridge::_ZTV17QAccessibleBridge: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAccessibleBridge) +16 QAccessibleBridge::~QAccessibleBridge +24 QAccessibleBridge::~QAccessibleBridge +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QAccessibleBridge + size=8 align=8 + base size=8 base align=8 +QAccessibleBridge (0x7faaa7abcc40) 0 nearly-empty + vptr=((& QAccessibleBridge::_ZTV17QAccessibleBridge) + 16u) + +Vtable for QAccessibleBridgeFactoryInterface +QAccessibleBridgeFactoryInterface::_ZTV33QAccessibleBridgeFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI33QAccessibleBridgeFactoryInterface) +16 QAccessibleBridgeFactoryInterface::~QAccessibleBridgeFactoryInterface +24 QAccessibleBridgeFactoryInterface::~QAccessibleBridgeFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QAccessibleBridgeFactoryInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleBridgeFactoryInterface (0x7faaa7ad5540) 0 nearly-empty + vptr=((& QAccessibleBridgeFactoryInterface::_ZTV33QAccessibleBridgeFactoryInterface) + 16u) + QFactoryInterface (0x7faaa7ad55b0) 0 nearly-empty + primary-for QAccessibleBridgeFactoryInterface (0x7faaa7ad5540) + +Vtable for QAccessibleBridgePlugin +QAccessibleBridgePlugin::_ZTV23QAccessibleBridgePlugin: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QAccessibleBridgePlugin) +16 QAccessibleBridgePlugin::metaObject +24 QAccessibleBridgePlugin::qt_metacast +32 QAccessibleBridgePlugin::qt_metacall +40 QAccessibleBridgePlugin::~QAccessibleBridgePlugin +48 QAccessibleBridgePlugin::~QAccessibleBridgePlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI23QAccessibleBridgePlugin) +144 QAccessibleBridgePlugin::_ZThn16_N23QAccessibleBridgePluginD1Ev +152 QAccessibleBridgePlugin::_ZThn16_N23QAccessibleBridgePluginD0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QAccessibleBridgePlugin + size=24 align=8 + base size=24 base align=8 +QAccessibleBridgePlugin (0x7faaa78e0580) 0 + vptr=((& QAccessibleBridgePlugin::_ZTV23QAccessibleBridgePlugin) + 16u) + QObject (0x7faaa7ad5620) 0 + primary-for QAccessibleBridgePlugin (0x7faaa78e0580) + QAccessibleBridgeFactoryInterface (0x7faaa78e5000) 16 nearly-empty + vptr=((& QAccessibleBridgePlugin::_ZTV23QAccessibleBridgePlugin) + 144u) + QFactoryInterface (0x7faaa78e5070) 16 nearly-empty + primary-for QAccessibleBridgeFactoryInterface (0x7faaa78e5000) + +Vtable for QAccessibleObject +QAccessibleObject::_ZTV17QAccessibleObject: 19u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAccessibleObject) +16 QAccessibleObject::~QAccessibleObject +24 QAccessibleObject::~QAccessibleObject +32 QAccessibleObject::isValid +40 QAccessibleObject::object +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 QAccessibleObject::setText +104 QAccessibleObject::rect +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAccessibleObject::userActionCount +136 QAccessibleObject::actionText +144 QAccessibleObject::doAction + +Class QAccessibleObject + size=16 align=8 + base size=16 base align=8 +QAccessibleObject (0x7faaa78e5f50) 0 + vptr=((& QAccessibleObject::_ZTV17QAccessibleObject) + 16u) + QAccessibleInterface (0x7faaa78e5310) 0 nearly-empty + primary-for QAccessibleObject (0x7faaa78e5f50) + QAccessible (0x7faaa78f6000) 0 empty + +Vtable for QAccessibleObjectEx +QAccessibleObjectEx::_ZTV19QAccessibleObjectEx: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAccessibleObjectEx) +16 QAccessibleObjectEx::~QAccessibleObjectEx +24 QAccessibleObjectEx::~QAccessibleObjectEx +32 QAccessibleObjectEx::isValid +40 QAccessibleObjectEx::object +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 QAccessibleObjectEx::setText +104 QAccessibleObjectEx::rect +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAccessibleObjectEx::userActionCount +136 QAccessibleObjectEx::actionText +144 QAccessibleObjectEx::doAction +152 __cxa_pure_virtual +160 QAccessibleInterfaceEx::virtual_hook +168 QAccessibleInterfaceEx::interface_cast + +Class QAccessibleObjectEx + size=16 align=8 + base size=16 base align=8 +QAccessibleObjectEx (0x7faaa78f6700) 0 + vptr=((& QAccessibleObjectEx::_ZTV19QAccessibleObjectEx) + 16u) + QAccessibleInterfaceEx (0x7faaa78f6770) 0 nearly-empty + primary-for QAccessibleObjectEx (0x7faaa78f6700) + QAccessibleInterface (0x7faaa78f67e0) 0 nearly-empty + primary-for QAccessibleInterfaceEx (0x7faaa78f6770) + QAccessible (0x7faaa78f6850) 0 empty + +Vtable for QAccessibleApplication +QAccessibleApplication::_ZTV22QAccessibleApplication: 19u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QAccessibleApplication) +16 QAccessibleApplication::~QAccessibleApplication +24 QAccessibleApplication::~QAccessibleApplication +32 QAccessibleObject::isValid +40 QAccessibleObject::object +48 QAccessibleApplication::childCount +56 QAccessibleApplication::indexOfChild +64 QAccessibleApplication::relationTo +72 QAccessibleApplication::childAt +80 QAccessibleApplication::navigate +88 QAccessibleApplication::text +96 QAccessibleObject::setText +104 QAccessibleObject::rect +112 QAccessibleApplication::role +120 QAccessibleApplication::state +128 QAccessibleApplication::userActionCount +136 QAccessibleApplication::actionText +144 QAccessibleApplication::doAction + +Class QAccessibleApplication + size=16 align=8 + base size=16 base align=8 +QAccessibleApplication (0x7faaa78f6f50) 0 + vptr=((& QAccessibleApplication::_ZTV22QAccessibleApplication) + 16u) + QAccessibleObject (0x7faaa78f6690) 0 + primary-for QAccessibleApplication (0x7faaa78f6f50) + QAccessibleInterface (0x7faaa78f6ee0) 0 nearly-empty + primary-for QAccessibleObject (0x7faaa78f6690) + QAccessible (0x7faaa7908000) 0 empty + +Vtable for QAccessibleFactoryInterface +QAccessibleFactoryInterface::_ZTV27QAccessibleFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QAccessibleFactoryInterface) +16 QAccessibleFactoryInterface::~QAccessibleFactoryInterface +24 QAccessibleFactoryInterface::~QAccessibleFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QAccessibleFactoryInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleFactoryInterface (0x7faaa78e0e00) 0 nearly-empty + vptr=((& QAccessibleFactoryInterface::_ZTV27QAccessibleFactoryInterface) + 16u) + QAccessible (0x7faaa79088c0) 0 empty + QFactoryInterface (0x7faaa7908930) 0 nearly-empty + primary-for QAccessibleFactoryInterface (0x7faaa78e0e00) + +Vtable for QAccessiblePlugin +QAccessiblePlugin::_ZTV17QAccessiblePlugin: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAccessiblePlugin) +16 QAccessiblePlugin::metaObject +24 QAccessiblePlugin::qt_metacast +32 QAccessiblePlugin::qt_metacall +40 QAccessiblePlugin::~QAccessiblePlugin +48 QAccessiblePlugin::~QAccessiblePlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI17QAccessiblePlugin) +144 QAccessiblePlugin::_ZThn16_N17QAccessiblePluginD1Ev +152 QAccessiblePlugin::_ZThn16_N17QAccessiblePluginD0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QAccessiblePlugin + size=24 align=8 + base size=24 base align=8 +QAccessiblePlugin (0x7faaa7914800) 0 + vptr=((& QAccessiblePlugin::_ZTV17QAccessiblePlugin) + 16u) + QObject (0x7faaa791b2a0) 0 + primary-for QAccessiblePlugin (0x7faaa7914800) + QAccessibleFactoryInterface (0x7faaa7914880) 16 nearly-empty + vptr=((& QAccessiblePlugin::_ZTV17QAccessiblePlugin) + 144u) + QAccessible (0x7faaa791b310) 16 empty + QFactoryInterface (0x7faaa791b380) 16 nearly-empty + primary-for QAccessibleFactoryInterface (0x7faaa7914880) + +Vtable for QAccessibleWidget +QAccessibleWidget::_ZTV17QAccessibleWidget: 19u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAccessibleWidget) +16 QAccessibleWidget::~QAccessibleWidget +24 QAccessibleWidget::~QAccessibleWidget +32 QAccessibleObject::isValid +40 QAccessibleObject::object +48 QAccessibleWidget::childCount +56 QAccessibleWidget::indexOfChild +64 QAccessibleWidget::relationTo +72 QAccessibleWidget::childAt +80 QAccessibleWidget::navigate +88 QAccessibleWidget::text +96 QAccessibleObject::setText +104 QAccessibleWidget::rect +112 QAccessibleWidget::role +120 QAccessibleWidget::state +128 QAccessibleWidget::userActionCount +136 QAccessibleWidget::actionText +144 QAccessibleWidget::doAction + +Class QAccessibleWidget + size=24 align=8 + base size=24 base align=8 +QAccessibleWidget (0x7faaa792b310) 0 + vptr=((& QAccessibleWidget::_ZTV17QAccessibleWidget) + 16u) + QAccessibleObject (0x7faaa792b380) 0 + primary-for QAccessibleWidget (0x7faaa792b310) + QAccessibleInterface (0x7faaa792b3f0) 0 nearly-empty + primary-for QAccessibleObject (0x7faaa792b380) + QAccessible (0x7faaa792b460) 0 empty + +Vtable for QAccessibleWidgetEx +QAccessibleWidgetEx::_ZTV19QAccessibleWidgetEx: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAccessibleWidgetEx) +16 QAccessibleWidgetEx::~QAccessibleWidgetEx +24 QAccessibleWidgetEx::~QAccessibleWidgetEx +32 QAccessibleObjectEx::isValid +40 QAccessibleObjectEx::object +48 QAccessibleWidgetEx::childCount +56 QAccessibleWidgetEx::indexOfChild +64 QAccessibleWidgetEx::relationTo +72 QAccessibleWidgetEx::childAt +80 QAccessibleWidgetEx::navigate +88 QAccessibleWidgetEx::text +96 QAccessibleObjectEx::setText +104 QAccessibleWidgetEx::rect +112 QAccessibleWidgetEx::role +120 QAccessibleWidgetEx::state +128 QAccessibleObjectEx::userActionCount +136 QAccessibleWidgetEx::actionText +144 QAccessibleWidgetEx::doAction +152 QAccessibleWidgetEx::invokeMethodEx +160 QAccessibleInterfaceEx::virtual_hook +168 QAccessibleInterfaceEx::interface_cast + +Class QAccessibleWidgetEx + size=24 align=8 + base size=24 base align=8 +QAccessibleWidgetEx (0x7faaa79373f0) 0 + vptr=((& QAccessibleWidgetEx::_ZTV19QAccessibleWidgetEx) + 16u) + QAccessibleObjectEx (0x7faaa7937460) 0 + primary-for QAccessibleWidgetEx (0x7faaa79373f0) + QAccessibleInterfaceEx (0x7faaa79374d0) 0 nearly-empty + primary-for QAccessibleObjectEx (0x7faaa7937460) + QAccessibleInterface (0x7faaa7937540) 0 nearly-empty + primary-for QAccessibleInterfaceEx (0x7faaa79374d0) + QAccessible (0x7faaa79375b0) 0 empty + +Vtable for QAction +QAction::_ZTV7QAction: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QAction) +16 QAction::metaObject +24 QAction::qt_metacast +32 QAction::qt_metacall +40 QAction::~QAction +48 QAction::~QAction +56 QAction::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QAction + size=16 align=8 + base size=16 base align=8 +QAction (0x7faaa7945540) 0 + vptr=((& QAction::_ZTV7QAction) + 16u) + QObject (0x7faaa79455b0) 0 + primary-for QAction (0x7faaa7945540) + +Vtable for QActionGroup +QActionGroup::_ZTV12QActionGroup: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QActionGroup) +16 QActionGroup::metaObject +24 QActionGroup::qt_metacast +32 QActionGroup::qt_metacall +40 QActionGroup::~QActionGroup +48 QActionGroup::~QActionGroup +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QActionGroup + size=16 align=8 + base size=16 base align=8 +QActionGroup (0x7faaa798d070) 0 + vptr=((& QActionGroup::_ZTV12QActionGroup) + 16u) + QObject (0x7faaa798d0e0) 0 + primary-for QActionGroup (0x7faaa798d070) + +Vtable for QApplication +QApplication::_ZTV12QApplication: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QApplication) +16 QApplication::metaObject +24 QApplication::qt_metacast +32 QApplication::qt_metacall +40 QApplication::~QApplication +48 QApplication::~QApplication +56 QApplication::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QApplication::notify +120 QApplication::compressEvent +128 QApplication::x11EventFilter +136 QApplication::x11ClientMessage +144 QApplication::commitData +152 QApplication::saveState + +Class QApplication + size=16 align=8 + base size=16 base align=8 +QApplication (0x7faaa79d1460) 0 + vptr=((& QApplication::_ZTV12QApplication) + 16u) + QCoreApplication (0x7faaa79d14d0) 0 + primary-for QApplication (0x7faaa79d1460) + QObject (0x7faaa79d1540) 0 + primary-for QCoreApplication (0x7faaa79d14d0) + +Vtable for QLayoutItem +QLayoutItem::_ZTV11QLayoutItem: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QLayoutItem) +16 QLayoutItem::~QLayoutItem +24 QLayoutItem::~QLayoutItem +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 QLayoutItem::hasHeightForWidth +96 QLayoutItem::heightForWidth +104 QLayoutItem::minimumHeightForWidth +112 QLayoutItem::invalidate +120 QLayoutItem::widget +128 QLayoutItem::layout +136 QLayoutItem::spacerItem + +Class QLayoutItem + size=16 align=8 + base size=12 base align=8 +QLayoutItem (0x7faaa78220e0) 0 + vptr=((& QLayoutItem::_ZTV11QLayoutItem) + 16u) + +Vtable for QSpacerItem +QSpacerItem::_ZTV11QSpacerItem: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QSpacerItem) +16 QSpacerItem::~QSpacerItem +24 QSpacerItem::~QSpacerItem +32 QSpacerItem::sizeHint +40 QSpacerItem::minimumSize +48 QSpacerItem::maximumSize +56 QSpacerItem::expandingDirections +64 QSpacerItem::setGeometry +72 QSpacerItem::geometry +80 QSpacerItem::isEmpty +88 QLayoutItem::hasHeightForWidth +96 QLayoutItem::heightForWidth +104 QLayoutItem::minimumHeightForWidth +112 QLayoutItem::invalidate +120 QLayoutItem::widget +128 QLayoutItem::layout +136 QSpacerItem::spacerItem + +Class QSpacerItem + size=40 align=8 + base size=40 base align=8 +QSpacerItem (0x7faaa7822cb0) 0 + vptr=((& QSpacerItem::_ZTV11QSpacerItem) + 16u) + QLayoutItem (0x7faaa7822d20) 0 + primary-for QSpacerItem (0x7faaa7822cb0) + +Vtable for QWidgetItem +QWidgetItem::_ZTV11QWidgetItem: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QWidgetItem) +16 QWidgetItem::~QWidgetItem +24 QWidgetItem::~QWidgetItem +32 QWidgetItem::sizeHint +40 QWidgetItem::minimumSize +48 QWidgetItem::maximumSize +56 QWidgetItem::expandingDirections +64 QWidgetItem::setGeometry +72 QWidgetItem::geometry +80 QWidgetItem::isEmpty +88 QWidgetItem::hasHeightForWidth +96 QWidgetItem::heightForWidth +104 QLayoutItem::minimumHeightForWidth +112 QLayoutItem::invalidate +120 QWidgetItem::widget +128 QLayoutItem::layout +136 QLayoutItem::spacerItem + +Class QWidgetItem + size=24 align=8 + base size=24 base align=8 +QWidgetItem (0x7faaa783e1c0) 0 + vptr=((& QWidgetItem::_ZTV11QWidgetItem) + 16u) + QLayoutItem (0x7faaa783e230) 0 + primary-for QWidgetItem (0x7faaa783e1c0) + +Vtable for QWidgetItemV2 +QWidgetItemV2::_ZTV13QWidgetItemV2: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QWidgetItemV2) +16 QWidgetItemV2::~QWidgetItemV2 +24 QWidgetItemV2::~QWidgetItemV2 +32 QWidgetItemV2::sizeHint +40 QWidgetItemV2::minimumSize +48 QWidgetItemV2::maximumSize +56 QWidgetItem::expandingDirections +64 QWidgetItem::setGeometry +72 QWidgetItem::geometry +80 QWidgetItem::isEmpty +88 QWidgetItem::hasHeightForWidth +96 QWidgetItemV2::heightForWidth +104 QLayoutItem::minimumHeightForWidth +112 QLayoutItem::invalidate +120 QWidgetItem::widget +128 QLayoutItem::layout +136 QLayoutItem::spacerItem + +Class QWidgetItemV2 + size=88 align=8 + base size=88 base align=8 +QWidgetItemV2 (0x7faaa7850000) 0 + vptr=((& QWidgetItemV2::_ZTV13QWidgetItemV2) + 16u) + QWidgetItem (0x7faaa7850070) 0 + primary-for QWidgetItemV2 (0x7faaa7850000) + QLayoutItem (0x7faaa78500e0) 0 + primary-for QWidgetItem (0x7faaa7850070) + +Class QLayoutIterator + size=16 align=8 + base size=12 base align=8 +QLayoutIterator (0x7faaa7850e70) 0 + +Vtable for QLayout +QLayout::_ZTV7QLayout: 45u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QLayout) +16 QLayout::metaObject +24 QLayout::qt_metacast +32 QLayout::qt_metacall +40 QLayout::~QLayout +48 QLayout::~QLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QLayout::invalidate +120 QLayout::geometry +128 __cxa_pure_virtual +136 QLayout::expandingDirections +144 QLayout::minimumSize +152 QLayout::maximumSize +160 QLayout::setGeometry +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 QLayout::indexOf +192 __cxa_pure_virtual +200 QLayout::isEmpty +208 QLayout::layout +216 (int (*)(...))-0x00000000000000010 +224 (int (*)(...))(& _ZTI7QLayout) +232 QLayout::_ZThn16_N7QLayoutD1Ev +240 QLayout::_ZThn16_N7QLayoutD0Ev +248 __cxa_pure_virtual +256 QLayout::_ZThn16_NK7QLayout11minimumSizeEv +264 QLayout::_ZThn16_NK7QLayout11maximumSizeEv +272 QLayout::_ZThn16_NK7QLayout19expandingDirectionsEv +280 QLayout::_ZThn16_N7QLayout11setGeometryERK5QRect +288 QLayout::_ZThn16_NK7QLayout8geometryEv +296 QLayout::_ZThn16_NK7QLayout7isEmptyEv +304 QLayoutItem::hasHeightForWidth +312 QLayoutItem::heightForWidth +320 QLayoutItem::minimumHeightForWidth +328 QLayout::_ZThn16_N7QLayout10invalidateEv +336 QLayoutItem::widget +344 QLayout::_ZThn16_N7QLayout6layoutEv +352 QLayoutItem::spacerItem + +Class QLayout + size=32 align=8 + base size=28 base align=8 +QLayout (0x7faaa7864380) 0 + vptr=((& QLayout::_ZTV7QLayout) + 16u) + QObject (0x7faaa7863f50) 0 + primary-for QLayout (0x7faaa7864380) + QLayoutItem (0x7faaa7867000) 16 + vptr=((& QLayout::_ZTV7QLayout) + 232u) + +Vtable for QGridLayout +QGridLayout::_ZTV11QGridLayout: 49u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QGridLayout) +16 QGridLayout::metaObject +24 QGridLayout::qt_metacast +32 QGridLayout::qt_metacall +40 QGridLayout::~QGridLayout +48 QGridLayout::~QGridLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGridLayout::invalidate +120 QLayout::geometry +128 QGridLayout::addItem +136 QGridLayout::expandingDirections +144 QGridLayout::minimumSize +152 QGridLayout::maximumSize +160 QGridLayout::setGeometry +168 QGridLayout::itemAt +176 QGridLayout::takeAt +184 QLayout::indexOf +192 QGridLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QGridLayout::sizeHint +224 QGridLayout::hasHeightForWidth +232 QGridLayout::heightForWidth +240 QGridLayout::minimumHeightForWidth +248 (int (*)(...))-0x00000000000000010 +256 (int (*)(...))(& _ZTI11QGridLayout) +264 QGridLayout::_ZThn16_N11QGridLayoutD1Ev +272 QGridLayout::_ZThn16_N11QGridLayoutD0Ev +280 QGridLayout::_ZThn16_NK11QGridLayout8sizeHintEv +288 QGridLayout::_ZThn16_NK11QGridLayout11minimumSizeEv +296 QGridLayout::_ZThn16_NK11QGridLayout11maximumSizeEv +304 QGridLayout::_ZThn16_NK11QGridLayout19expandingDirectionsEv +312 QGridLayout::_ZThn16_N11QGridLayout11setGeometryERK5QRect +320 QLayout::_ZThn16_NK7QLayout8geometryEv +328 QLayout::_ZThn16_NK7QLayout7isEmptyEv +336 QGridLayout::_ZThn16_NK11QGridLayout17hasHeightForWidthEv +344 QGridLayout::_ZThn16_NK11QGridLayout14heightForWidthEi +352 QGridLayout::_ZThn16_NK11QGridLayout21minimumHeightForWidthEi +360 QGridLayout::_ZThn16_N11QGridLayout10invalidateEv +368 QLayoutItem::widget +376 QLayout::_ZThn16_N7QLayout6layoutEv +384 QLayoutItem::spacerItem + +Class QGridLayout + size=32 align=8 + base size=28 base align=8 +QGridLayout (0x7faaa78a74d0) 0 + vptr=((& QGridLayout::_ZTV11QGridLayout) + 16u) + QLayout (0x7faaa78a2500) 0 + primary-for QGridLayout (0x7faaa78a74d0) + QObject (0x7faaa78a7540) 0 + primary-for QLayout (0x7faaa78a2500) + QLayoutItem (0x7faaa78a75b0) 16 + vptr=((& QGridLayout::_ZTV11QGridLayout) + 264u) + +Vtable for QBoxLayout +QBoxLayout::_ZTV10QBoxLayout: 49u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QBoxLayout) +16 QBoxLayout::metaObject +24 QBoxLayout::qt_metacast +32 QBoxLayout::qt_metacall +40 QBoxLayout::~QBoxLayout +48 QBoxLayout::~QBoxLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QBoxLayout::invalidate +120 QLayout::geometry +128 QBoxLayout::addItem +136 QBoxLayout::expandingDirections +144 QBoxLayout::minimumSize +152 QBoxLayout::maximumSize +160 QBoxLayout::setGeometry +168 QBoxLayout::itemAt +176 QBoxLayout::takeAt +184 QLayout::indexOf +192 QBoxLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QBoxLayout::sizeHint +224 QBoxLayout::hasHeightForWidth +232 QBoxLayout::heightForWidth +240 QBoxLayout::minimumHeightForWidth +248 (int (*)(...))-0x00000000000000010 +256 (int (*)(...))(& _ZTI10QBoxLayout) +264 QBoxLayout::_ZThn16_N10QBoxLayoutD1Ev +272 QBoxLayout::_ZThn16_N10QBoxLayoutD0Ev +280 QBoxLayout::_ZThn16_NK10QBoxLayout8sizeHintEv +288 QBoxLayout::_ZThn16_NK10QBoxLayout11minimumSizeEv +296 QBoxLayout::_ZThn16_NK10QBoxLayout11maximumSizeEv +304 QBoxLayout::_ZThn16_NK10QBoxLayout19expandingDirectionsEv +312 QBoxLayout::_ZThn16_N10QBoxLayout11setGeometryERK5QRect +320 QLayout::_ZThn16_NK7QLayout8geometryEv +328 QLayout::_ZThn16_NK7QLayout7isEmptyEv +336 QBoxLayout::_ZThn16_NK10QBoxLayout17hasHeightForWidthEv +344 QBoxLayout::_ZThn16_NK10QBoxLayout14heightForWidthEi +352 QBoxLayout::_ZThn16_NK10QBoxLayout21minimumHeightForWidthEi +360 QBoxLayout::_ZThn16_N10QBoxLayout10invalidateEv +368 QLayoutItem::widget +376 QLayout::_ZThn16_N7QLayout6layoutEv +384 QLayoutItem::spacerItem + +Class QBoxLayout + size=32 align=8 + base size=28 base align=8 +QBoxLayout (0x7faaa76f1540) 0 + vptr=((& QBoxLayout::_ZTV10QBoxLayout) + 16u) + QLayout (0x7faaa76f0400) 0 + primary-for QBoxLayout (0x7faaa76f1540) + QObject (0x7faaa76f15b0) 0 + primary-for QLayout (0x7faaa76f0400) + QLayoutItem (0x7faaa76f1620) 16 + vptr=((& QBoxLayout::_ZTV10QBoxLayout) + 264u) + +Vtable for QHBoxLayout +QHBoxLayout::_ZTV11QHBoxLayout: 49u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QHBoxLayout) +16 QHBoxLayout::metaObject +24 QHBoxLayout::qt_metacast +32 QHBoxLayout::qt_metacall +40 QHBoxLayout::~QHBoxLayout +48 QHBoxLayout::~QHBoxLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QBoxLayout::invalidate +120 QLayout::geometry +128 QBoxLayout::addItem +136 QBoxLayout::expandingDirections +144 QBoxLayout::minimumSize +152 QBoxLayout::maximumSize +160 QBoxLayout::setGeometry +168 QBoxLayout::itemAt +176 QBoxLayout::takeAt +184 QLayout::indexOf +192 QBoxLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QBoxLayout::sizeHint +224 QBoxLayout::hasHeightForWidth +232 QBoxLayout::heightForWidth +240 QBoxLayout::minimumHeightForWidth +248 (int (*)(...))-0x00000000000000010 +256 (int (*)(...))(& _ZTI11QHBoxLayout) +264 QHBoxLayout::_ZThn16_N11QHBoxLayoutD1Ev +272 QHBoxLayout::_ZThn16_N11QHBoxLayoutD0Ev +280 QBoxLayout::_ZThn16_NK10QBoxLayout8sizeHintEv +288 QBoxLayout::_ZThn16_NK10QBoxLayout11minimumSizeEv +296 QBoxLayout::_ZThn16_NK10QBoxLayout11maximumSizeEv +304 QBoxLayout::_ZThn16_NK10QBoxLayout19expandingDirectionsEv +312 QBoxLayout::_ZThn16_N10QBoxLayout11setGeometryERK5QRect +320 QLayout::_ZThn16_NK7QLayout8geometryEv +328 QLayout::_ZThn16_NK7QLayout7isEmptyEv +336 QBoxLayout::_ZThn16_NK10QBoxLayout17hasHeightForWidthEv +344 QBoxLayout::_ZThn16_NK10QBoxLayout14heightForWidthEi +352 QBoxLayout::_ZThn16_NK10QBoxLayout21minimumHeightForWidthEi +360 QBoxLayout::_ZThn16_N10QBoxLayout10invalidateEv +368 QLayoutItem::widget +376 QLayout::_ZThn16_N7QLayout6layoutEv +384 QLayoutItem::spacerItem + +Class QHBoxLayout + size=32 align=8 + base size=28 base align=8 +QHBoxLayout (0x7faaa7715f50) 0 + vptr=((& QHBoxLayout::_ZTV11QHBoxLayout) + 16u) + QBoxLayout (0x7faaa771f000) 0 + primary-for QHBoxLayout (0x7faaa7715f50) + QLayout (0x7faaa771d280) 0 + primary-for QBoxLayout (0x7faaa771f000) + QObject (0x7faaa771f070) 0 + primary-for QLayout (0x7faaa771d280) + QLayoutItem (0x7faaa771f0e0) 16 + vptr=((& QHBoxLayout::_ZTV11QHBoxLayout) + 264u) + +Vtable for QVBoxLayout +QVBoxLayout::_ZTV11QVBoxLayout: 49u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QVBoxLayout) +16 QVBoxLayout::metaObject +24 QVBoxLayout::qt_metacast +32 QVBoxLayout::qt_metacall +40 QVBoxLayout::~QVBoxLayout +48 QVBoxLayout::~QVBoxLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QBoxLayout::invalidate +120 QLayout::geometry +128 QBoxLayout::addItem +136 QBoxLayout::expandingDirections +144 QBoxLayout::minimumSize +152 QBoxLayout::maximumSize +160 QBoxLayout::setGeometry +168 QBoxLayout::itemAt +176 QBoxLayout::takeAt +184 QLayout::indexOf +192 QBoxLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QBoxLayout::sizeHint +224 QBoxLayout::hasHeightForWidth +232 QBoxLayout::heightForWidth +240 QBoxLayout::minimumHeightForWidth +248 (int (*)(...))-0x00000000000000010 +256 (int (*)(...))(& _ZTI11QVBoxLayout) +264 QVBoxLayout::_ZThn16_N11QVBoxLayoutD1Ev +272 QVBoxLayout::_ZThn16_N11QVBoxLayoutD0Ev +280 QBoxLayout::_ZThn16_NK10QBoxLayout8sizeHintEv +288 QBoxLayout::_ZThn16_NK10QBoxLayout11minimumSizeEv +296 QBoxLayout::_ZThn16_NK10QBoxLayout11maximumSizeEv +304 QBoxLayout::_ZThn16_NK10QBoxLayout19expandingDirectionsEv +312 QBoxLayout::_ZThn16_N10QBoxLayout11setGeometryERK5QRect +320 QLayout::_ZThn16_NK7QLayout8geometryEv +328 QLayout::_ZThn16_NK7QLayout7isEmptyEv +336 QBoxLayout::_ZThn16_NK10QBoxLayout17hasHeightForWidthEv +344 QBoxLayout::_ZThn16_NK10QBoxLayout14heightForWidthEi +352 QBoxLayout::_ZThn16_NK10QBoxLayout21minimumHeightForWidthEi +360 QBoxLayout::_ZThn16_N10QBoxLayout10invalidateEv +368 QLayoutItem::widget +376 QLayout::_ZThn16_N7QLayout6layoutEv +384 QLayoutItem::spacerItem + +Class QVBoxLayout + size=32 align=8 + base size=28 base align=8 +QVBoxLayout (0x7faaa77335b0) 0 + vptr=((& QVBoxLayout::_ZTV11QVBoxLayout) + 16u) + QBoxLayout (0x7faaa7733620) 0 + primary-for QVBoxLayout (0x7faaa77335b0) + QLayout (0x7faaa771d980) 0 + primary-for QBoxLayout (0x7faaa7733620) + QObject (0x7faaa7733690) 0 + primary-for QLayout (0x7faaa771d980) + QLayoutItem (0x7faaa7733700) 16 + vptr=((& QVBoxLayout::_ZTV11QVBoxLayout) + 264u) + +Vtable for QClipboard +QClipboard::_ZTV10QClipboard: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QClipboard) +16 QClipboard::metaObject +24 QClipboard::qt_metacast +32 QClipboard::qt_metacall +40 QClipboard::~QClipboard +48 QClipboard::~QClipboard +56 QClipboard::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QClipboard::connectNotify +104 QObject::disconnectNotify + +Class QClipboard + size=16 align=8 + base size=16 base align=8 +QClipboard (0x7faaa7744c40) 0 + vptr=((& QClipboard::_ZTV10QClipboard) + 16u) + QObject (0x7faaa7744cb0) 0 + primary-for QClipboard (0x7faaa7744c40) + +Vtable for QDesktopWidget +QDesktopWidget::_ZTV14QDesktopWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QDesktopWidget) +16 QDesktopWidget::metaObject +24 QDesktopWidget::qt_metacast +32 QDesktopWidget::qt_metacall +40 QDesktopWidget::~QDesktopWidget +48 QDesktopWidget::~QDesktopWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDesktopWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI14QDesktopWidget) +464 QDesktopWidget::_ZThn16_N14QDesktopWidgetD1Ev +472 QDesktopWidget::_ZThn16_N14QDesktopWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDesktopWidget + size=40 align=8 + base size=40 base align=8 +QDesktopWidget (0x7faaa776d930) 0 + vptr=((& QDesktopWidget::_ZTV14QDesktopWidget) + 16u) + QWidget (0x7faaa774cc00) 0 + primary-for QDesktopWidget (0x7faaa776d930) + QObject (0x7faaa776d9a0) 0 + primary-for QWidget (0x7faaa774cc00) + QPaintDevice (0x7faaa776da10) 16 + vptr=((& QDesktopWidget::_ZTV14QDesktopWidget) + 464u) + +Vtable for QFormLayout +QFormLayout::_ZTV11QFormLayout: 48u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFormLayout) +16 QFormLayout::metaObject +24 QFormLayout::qt_metacast +32 QFormLayout::qt_metacall +40 QFormLayout::~QFormLayout +48 QFormLayout::~QFormLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFormLayout::invalidate +120 QLayout::geometry +128 QFormLayout::addItem +136 QFormLayout::expandingDirections +144 QFormLayout::minimumSize +152 QLayout::maximumSize +160 QFormLayout::setGeometry +168 QFormLayout::itemAt +176 QFormLayout::takeAt +184 QLayout::indexOf +192 QFormLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QFormLayout::sizeHint +224 QFormLayout::hasHeightForWidth +232 QFormLayout::heightForWidth +240 (int (*)(...))-0x00000000000000010 +248 (int (*)(...))(& _ZTI11QFormLayout) +256 QFormLayout::_ZThn16_N11QFormLayoutD1Ev +264 QFormLayout::_ZThn16_N11QFormLayoutD0Ev +272 QFormLayout::_ZThn16_NK11QFormLayout8sizeHintEv +280 QFormLayout::_ZThn16_NK11QFormLayout11minimumSizeEv +288 QLayout::_ZThn16_NK7QLayout11maximumSizeEv +296 QFormLayout::_ZThn16_NK11QFormLayout19expandingDirectionsEv +304 QFormLayout::_ZThn16_N11QFormLayout11setGeometryERK5QRect +312 QLayout::_ZThn16_NK7QLayout8geometryEv +320 QLayout::_ZThn16_NK7QLayout7isEmptyEv +328 QFormLayout::_ZThn16_NK11QFormLayout17hasHeightForWidthEv +336 QFormLayout::_ZThn16_NK11QFormLayout14heightForWidthEi +344 QLayoutItem::minimumHeightForWidth +352 QFormLayout::_ZThn16_N11QFormLayout10invalidateEv +360 QLayoutItem::widget +368 QLayout::_ZThn16_N7QLayout6layoutEv +376 QLayoutItem::spacerItem + +Class QFormLayout + size=32 align=8 + base size=28 base align=8 +QFormLayout (0x7faaa778b9a0) 0 + vptr=((& QFormLayout::_ZTV11QFormLayout) + 16u) + QLayout (0x7faaa7786b80) 0 + primary-for QFormLayout (0x7faaa778b9a0) + QObject (0x7faaa778ba10) 0 + primary-for QLayout (0x7faaa7786b80) + QLayoutItem (0x7faaa778ba80) 16 + vptr=((& QFormLayout::_ZTV11QFormLayout) + 256u) + +Vtable for QGesture +QGesture::_ZTV8QGesture: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QGesture) +16 QGesture::metaObject +24 QGesture::qt_metacast +32 QGesture::qt_metacall +40 QGesture::~QGesture +48 QGesture::~QGesture +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QGesture + size=16 align=8 + base size=16 base align=8 +QGesture (0x7faaa77c0150) 0 + vptr=((& QGesture::_ZTV8QGesture) + 16u) + QObject (0x7faaa77c01c0) 0 + primary-for QGesture (0x7faaa77c0150) + +Vtable for QPanGesture +QPanGesture::_ZTV11QPanGesture: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QPanGesture) +16 QPanGesture::metaObject +24 QPanGesture::qt_metacast +32 QPanGesture::qt_metacall +40 QPanGesture::~QPanGesture +48 QPanGesture::~QPanGesture +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QPanGesture + size=16 align=8 + base size=16 base align=8 +QPanGesture (0x7faaa77d9850) 0 + vptr=((& QPanGesture::_ZTV11QPanGesture) + 16u) + QGesture (0x7faaa77d98c0) 0 + primary-for QPanGesture (0x7faaa77d9850) + QObject (0x7faaa77d9930) 0 + primary-for QGesture (0x7faaa77d98c0) + +Vtable for QPinchGesture +QPinchGesture::_ZTV13QPinchGesture: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QPinchGesture) +16 QPinchGesture::metaObject +24 QPinchGesture::qt_metacast +32 QPinchGesture::qt_metacall +40 QPinchGesture::~QPinchGesture +48 QPinchGesture::~QPinchGesture +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QPinchGesture + size=16 align=8 + base size=16 base align=8 +QPinchGesture (0x7faaa75ebcb0) 0 + vptr=((& QPinchGesture::_ZTV13QPinchGesture) + 16u) + QGesture (0x7faaa75ebd20) 0 + primary-for QPinchGesture (0x7faaa75ebcb0) + QObject (0x7faaa75ebd90) 0 + primary-for QGesture (0x7faaa75ebd20) + +Vtable for QSwipeGesture +QSwipeGesture::_ZTV13QSwipeGesture: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSwipeGesture) +16 QSwipeGesture::metaObject +24 QSwipeGesture::qt_metacast +32 QSwipeGesture::qt_metacall +40 QSwipeGesture::~QSwipeGesture +48 QSwipeGesture::~QSwipeGesture +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSwipeGesture + size=16 align=8 + base size=16 base align=8 +QSwipeGesture (0x7faaa760cd20) 0 + vptr=((& QSwipeGesture::_ZTV13QSwipeGesture) + 16u) + QGesture (0x7faaa760cd90) 0 + primary-for QSwipeGesture (0x7faaa760cd20) + QObject (0x7faaa760ce00) 0 + primary-for QGesture (0x7faaa760cd90) + +Vtable for QTapGesture +QTapGesture::_ZTV11QTapGesture: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTapGesture) +16 QTapGesture::metaObject +24 QTapGesture::qt_metacast +32 QTapGesture::qt_metacall +40 QTapGesture::~QTapGesture +48 QTapGesture::~QTapGesture +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTapGesture + size=16 align=8 + base size=16 base align=8 +QTapGesture (0x7faaa762b460) 0 + vptr=((& QTapGesture::_ZTV11QTapGesture) + 16u) + QGesture (0x7faaa762b4d0) 0 + primary-for QTapGesture (0x7faaa762b460) + QObject (0x7faaa762b540) 0 + primary-for QGesture (0x7faaa762b4d0) + +Vtable for QTapAndHoldGesture +QTapAndHoldGesture::_ZTV18QTapAndHoldGesture: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QTapAndHoldGesture) +16 QTapAndHoldGesture::metaObject +24 QTapAndHoldGesture::qt_metacast +32 QTapAndHoldGesture::qt_metacall +40 QTapAndHoldGesture::~QTapAndHoldGesture +48 QTapAndHoldGesture::~QTapAndHoldGesture +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTapAndHoldGesture + size=16 align=8 + base size=16 base align=8 +QTapAndHoldGesture (0x7faaa763b8c0) 0 + vptr=((& QTapAndHoldGesture::_ZTV18QTapAndHoldGesture) + 16u) + QGesture (0x7faaa763b930) 0 + primary-for QTapAndHoldGesture (0x7faaa763b8c0) + QObject (0x7faaa763b9a0) 0 + primary-for QGesture (0x7faaa763b930) + +Vtable for QGestureRecognizer +QGestureRecognizer::_ZTV18QGestureRecognizer: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QGestureRecognizer) +16 QGestureRecognizer::~QGestureRecognizer +24 QGestureRecognizer::~QGestureRecognizer +32 QGestureRecognizer::create +40 __cxa_pure_virtual +48 QGestureRecognizer::reset + +Class QGestureRecognizer + size=8 align=8 + base size=8 base align=8 +QGestureRecognizer (0x7faaa7656310) 0 nearly-empty + vptr=((& QGestureRecognizer::_ZTV18QGestureRecognizer) + 16u) + +Vtable for QSessionManager +QSessionManager::_ZTV15QSessionManager: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSessionManager) +16 QSessionManager::metaObject +24 QSessionManager::qt_metacast +32 QSessionManager::qt_metacall +40 QSessionManager::~QSessionManager +48 QSessionManager::~QSessionManager +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSessionManager + size=16 align=8 + base size=16 base align=8 +QSessionManager (0x7faaa768c620) 0 + vptr=((& QSessionManager::_ZTV15QSessionManager) + 16u) + QObject (0x7faaa768c690) 0 + primary-for QSessionManager (0x7faaa768c620) + +Vtable for QShortcut +QShortcut::_ZTV9QShortcut: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QShortcut) +16 QShortcut::metaObject +24 QShortcut::qt_metacast +32 QShortcut::qt_metacall +40 QShortcut::~QShortcut +48 QShortcut::~QShortcut +56 QShortcut::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QShortcut + size=16 align=8 + base size=16 base align=8 +QShortcut (0x7faaa76bcb60) 0 + vptr=((& QShortcut::_ZTV9QShortcut) + 16u) + QObject (0x7faaa76bcbd0) 0 + primary-for QShortcut (0x7faaa76bcb60) + +Vtable for QSound +QSound::_ZTV6QSound: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QSound) +16 QSound::metaObject +24 QSound::qt_metacast +32 QSound::qt_metacall +40 QSound::~QSound +48 QSound::~QSound +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSound + size=16 align=8 + base size=16 base align=8 +QSound (0x7faaa76d9310) 0 + vptr=((& QSound::_ZTV6QSound) + 16u) + QObject (0x7faaa76d9380) 0 + primary-for QSound (0x7faaa76d9310) + +Vtable for QStackedLayout +QStackedLayout::_ZTV14QStackedLayout: 46u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QStackedLayout) +16 QStackedLayout::metaObject +24 QStackedLayout::qt_metacast +32 QStackedLayout::qt_metacall +40 QStackedLayout::~QStackedLayout +48 QStackedLayout::~QStackedLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QLayout::invalidate +120 QLayout::geometry +128 QStackedLayout::addItem +136 QLayout::expandingDirections +144 QStackedLayout::minimumSize +152 QLayout::maximumSize +160 QStackedLayout::setGeometry +168 QStackedLayout::itemAt +176 QStackedLayout::takeAt +184 QLayout::indexOf +192 QStackedLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QStackedLayout::sizeHint +224 (int (*)(...))-0x00000000000000010 +232 (int (*)(...))(& _ZTI14QStackedLayout) +240 QStackedLayout::_ZThn16_N14QStackedLayoutD1Ev +248 QStackedLayout::_ZThn16_N14QStackedLayoutD0Ev +256 QStackedLayout::_ZThn16_NK14QStackedLayout8sizeHintEv +264 QStackedLayout::_ZThn16_NK14QStackedLayout11minimumSizeEv +272 QLayout::_ZThn16_NK7QLayout11maximumSizeEv +280 QLayout::_ZThn16_NK7QLayout19expandingDirectionsEv +288 QStackedLayout::_ZThn16_N14QStackedLayout11setGeometryERK5QRect +296 QLayout::_ZThn16_NK7QLayout8geometryEv +304 QLayout::_ZThn16_NK7QLayout7isEmptyEv +312 QLayoutItem::hasHeightForWidth +320 QLayoutItem::heightForWidth +328 QLayoutItem::minimumHeightForWidth +336 QLayout::_ZThn16_N7QLayout10invalidateEv +344 QLayoutItem::widget +352 QLayout::_ZThn16_N7QLayout6layoutEv +360 QLayoutItem::spacerItem + +Class QStackedLayout + size=32 align=8 + base size=28 base align=8 +QStackedLayout (0x7faaa74eea80) 0 + vptr=((& QStackedLayout::_ZTV14QStackedLayout) + 16u) + QLayout (0x7faaa74e6880) 0 + primary-for QStackedLayout (0x7faaa74eea80) + QObject (0x7faaa74eeaf0) 0 + primary-for QLayout (0x7faaa74e6880) + QLayoutItem (0x7faaa74eeb60) 16 + vptr=((& QStackedLayout::_ZTV14QStackedLayout) + 240u) + +Class QToolTip + size=1 align=1 + base size=0 base align=1 +QToolTip (0x7faaa750da80) 0 empty + +Class QWhatsThis + size=1 align=1 + base size=0 base align=1 +QWhatsThis (0x7faaa751b070) 0 empty + +Vtable for QWidgetAction +QWidgetAction::_ZTV13QWidgetAction: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QWidgetAction) +16 QWidgetAction::metaObject +24 QWidgetAction::qt_metacast +32 QWidgetAction::qt_metacall +40 QWidgetAction::~QWidgetAction +48 QWidgetAction::~QWidgetAction +56 QWidgetAction::event +64 QWidgetAction::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidgetAction::createWidget +120 QWidgetAction::deleteWidget + +Class QWidgetAction + size=16 align=8 + base size=16 base align=8 +QWidgetAction (0x7faaa751b150) 0 + vptr=((& QWidgetAction::_ZTV13QWidgetAction) + 16u) + QAction (0x7faaa751b1c0) 0 + primary-for QWidgetAction (0x7faaa751b150) + QObject (0x7faaa751b230) 0 + primary-for QAction (0x7faaa751b1c0) + +Class QVector3D + size=12 align=4 + base size=12 base align=4 +QVector3D (0x7faaa73ea1c0) 0 + +Class QVector4D + size=16 align=4 + base size=16 base align=4 +QVector4D (0x7faaa744ccb0) 0 + +Class QQuaternion + size=32 align=8 + base size=32 base align=8 +QQuaternion (0x7faaa74c2d20) 0 + +Class QMatrix4x4 + size=136 align=8 + base size=132 base align=8 +QMatrix4x4 (0x7faaa7340b60) 0 + +Class QVector2D + size=8 align=4 + base size=8 base align=4 +QVector2D (0x7faaa718dd90) 0 + +Vtable for QCommonStyle +QCommonStyle::_ZTV12QCommonStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QCommonStyle) +16 QCommonStyle::metaObject +24 QCommonStyle::qt_metacast +32 QCommonStyle::qt_metacall +40 QCommonStyle::~QCommonStyle +48 QCommonStyle::~QCommonStyle +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCommonStyle::polish +120 QCommonStyle::unpolish +128 QCommonStyle::polish +136 QCommonStyle::unpolish +144 QCommonStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QStyle::standardPalette +192 QCommonStyle::drawPrimitive +200 QCommonStyle::drawControl +208 QCommonStyle::subElementRect +216 QCommonStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QCommonStyle::subControlRect +240 QCommonStyle::pixelMetric +248 QCommonStyle::sizeFromContents +256 QCommonStyle::styleHint +264 QCommonStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QCommonStyle + size=16 align=8 + base size=16 base align=8 +QCommonStyle (0x7faaa6ff22a0) 0 + vptr=((& QCommonStyle::_ZTV12QCommonStyle) + 16u) + QStyle (0x7faaa6ff2310) 0 + primary-for QCommonStyle (0x7faaa6ff22a0) + QObject (0x7faaa6ff2380) 0 + primary-for QStyle (0x7faaa6ff2310) + +Vtable for QMotifStyle +QMotifStyle::_ZTV11QMotifStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMotifStyle) +16 QMotifStyle::metaObject +24 QMotifStyle::qt_metacast +32 QMotifStyle::qt_metacall +40 QMotifStyle::~QMotifStyle +48 QMotifStyle::~QMotifStyle +56 QMotifStyle::event +64 QMotifStyle::eventFilter +72 QMotifStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMotifStyle::polish +120 QMotifStyle::unpolish +128 QMotifStyle::polish +136 QMotifStyle::unpolish +144 QMotifStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QMotifStyle::standardPalette +192 QMotifStyle::drawPrimitive +200 QMotifStyle::drawControl +208 QMotifStyle::subElementRect +216 QMotifStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QMotifStyle::subControlRect +240 QMotifStyle::pixelMetric +248 QMotifStyle::sizeFromContents +256 QMotifStyle::styleHint +264 QMotifStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QMotifStyle + size=32 align=8 + base size=25 base align=8 +QMotifStyle (0x7faaa70142a0) 0 + vptr=((& QMotifStyle::_ZTV11QMotifStyle) + 16u) + QCommonStyle (0x7faaa7014310) 0 + primary-for QMotifStyle (0x7faaa70142a0) + QStyle (0x7faaa7014380) 0 + primary-for QCommonStyle (0x7faaa7014310) + QObject (0x7faaa70143f0) 0 + primary-for QStyle (0x7faaa7014380) + +Vtable for QCDEStyle +QCDEStyle::_ZTV9QCDEStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QCDEStyle) +16 QCDEStyle::metaObject +24 QCDEStyle::qt_metacast +32 QCDEStyle::qt_metacall +40 QCDEStyle::~QCDEStyle +48 QCDEStyle::~QCDEStyle +56 QMotifStyle::event +64 QMotifStyle::eventFilter +72 QMotifStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMotifStyle::polish +120 QMotifStyle::unpolish +128 QMotifStyle::polish +136 QMotifStyle::unpolish +144 QMotifStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QCDEStyle::standardPalette +192 QCDEStyle::drawPrimitive +200 QCDEStyle::drawControl +208 QMotifStyle::subElementRect +216 QMotifStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QMotifStyle::subControlRect +240 QCDEStyle::pixelMetric +248 QMotifStyle::sizeFromContents +256 QMotifStyle::styleHint +264 QMotifStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QCDEStyle + size=32 align=8 + base size=25 base align=8 +QCDEStyle (0x7faaa703c1c0) 0 + vptr=((& QCDEStyle::_ZTV9QCDEStyle) + 16u) + QMotifStyle (0x7faaa703c230) 0 + primary-for QCDEStyle (0x7faaa703c1c0) + QCommonStyle (0x7faaa703c2a0) 0 + primary-for QMotifStyle (0x7faaa703c230) + QStyle (0x7faaa703c310) 0 + primary-for QCommonStyle (0x7faaa703c2a0) + QObject (0x7faaa703c380) 0 + primary-for QStyle (0x7faaa703c310) + +Vtable for QWindowsStyle +QWindowsStyle::_ZTV13QWindowsStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QWindowsStyle) +16 QWindowsStyle::metaObject +24 QWindowsStyle::qt_metacast +32 QWindowsStyle::qt_metacall +40 QWindowsStyle::~QWindowsStyle +48 QWindowsStyle::~QWindowsStyle +56 QObject::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWindowsStyle::polish +120 QWindowsStyle::unpolish +128 QWindowsStyle::polish +136 QWindowsStyle::unpolish +144 QWindowsStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QStyle::standardPalette +192 QWindowsStyle::drawPrimitive +200 QWindowsStyle::drawControl +208 QWindowsStyle::subElementRect +216 QWindowsStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QCommonStyle::subControlRect +240 QWindowsStyle::pixelMetric +248 QWindowsStyle::sizeFromContents +256 QWindowsStyle::styleHint +264 QWindowsStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QWindowsStyle + size=24 align=8 + base size=24 base align=8 +QWindowsStyle (0x7faaa704f310) 0 + vptr=((& QWindowsStyle::_ZTV13QWindowsStyle) + 16u) + QCommonStyle (0x7faaa704f380) 0 + primary-for QWindowsStyle (0x7faaa704f310) + QStyle (0x7faaa704f3f0) 0 + primary-for QCommonStyle (0x7faaa704f380) + QObject (0x7faaa704f460) 0 + primary-for QStyle (0x7faaa704f3f0) + +Vtable for QCleanlooksStyle +QCleanlooksStyle::_ZTV16QCleanlooksStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QCleanlooksStyle) +16 QCleanlooksStyle::metaObject +24 QCleanlooksStyle::qt_metacast +32 QCleanlooksStyle::qt_metacall +40 QCleanlooksStyle::~QCleanlooksStyle +48 QCleanlooksStyle::~QCleanlooksStyle +56 QObject::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCleanlooksStyle::polish +120 QCleanlooksStyle::unpolish +128 QCleanlooksStyle::polish +136 QCleanlooksStyle::unpolish +144 QCleanlooksStyle::polish +152 QStyle::itemTextRect +160 QCleanlooksStyle::itemPixmapRect +168 QCleanlooksStyle::drawItemText +176 QCleanlooksStyle::drawItemPixmap +184 QCleanlooksStyle::standardPalette +192 QCleanlooksStyle::drawPrimitive +200 QCleanlooksStyle::drawControl +208 QCleanlooksStyle::subElementRect +216 QCleanlooksStyle::drawComplexControl +224 QCleanlooksStyle::hitTestComplexControl +232 QCleanlooksStyle::subControlRect +240 QCleanlooksStyle::pixelMetric +248 QCleanlooksStyle::sizeFromContents +256 QCleanlooksStyle::styleHint +264 QCleanlooksStyle::standardPixmap +272 QCleanlooksStyle::generatedIconPixmap + +Class QCleanlooksStyle + size=24 align=8 + base size=24 base align=8 +QCleanlooksStyle (0x7faaa70710e0) 0 + vptr=((& QCleanlooksStyle::_ZTV16QCleanlooksStyle) + 16u) + QWindowsStyle (0x7faaa7071150) 0 + primary-for QCleanlooksStyle (0x7faaa70710e0) + QCommonStyle (0x7faaa70711c0) 0 + primary-for QWindowsStyle (0x7faaa7071150) + QStyle (0x7faaa7071230) 0 + primary-for QCommonStyle (0x7faaa70711c0) + QObject (0x7faaa70712a0) 0 + primary-for QStyle (0x7faaa7071230) + +Vtable for QPlastiqueStyle +QPlastiqueStyle::_ZTV15QPlastiqueStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QPlastiqueStyle) +16 QPlastiqueStyle::metaObject +24 QPlastiqueStyle::qt_metacast +32 QPlastiqueStyle::qt_metacall +40 QPlastiqueStyle::~QPlastiqueStyle +48 QPlastiqueStyle::~QPlastiqueStyle +56 QObject::event +64 QPlastiqueStyle::eventFilter +72 QPlastiqueStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QPlastiqueStyle::polish +120 QPlastiqueStyle::unpolish +128 QPlastiqueStyle::polish +136 QPlastiqueStyle::unpolish +144 QPlastiqueStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QPlastiqueStyle::standardPalette +192 QPlastiqueStyle::drawPrimitive +200 QPlastiqueStyle::drawControl +208 QPlastiqueStyle::subElementRect +216 QPlastiqueStyle::drawComplexControl +224 QPlastiqueStyle::hitTestComplexControl +232 QPlastiqueStyle::subControlRect +240 QPlastiqueStyle::pixelMetric +248 QPlastiqueStyle::sizeFromContents +256 QPlastiqueStyle::styleHint +264 QPlastiqueStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QPlastiqueStyle + size=32 align=8 + base size=32 base align=8 +QPlastiqueStyle (0x7faaa708be70) 0 + vptr=((& QPlastiqueStyle::_ZTV15QPlastiqueStyle) + 16u) + QWindowsStyle (0x7faaa708bee0) 0 + primary-for QPlastiqueStyle (0x7faaa708be70) + QCommonStyle (0x7faaa708bf50) 0 + primary-for QWindowsStyle (0x7faaa708bee0) + QStyle (0x7faaa7092000) 0 + primary-for QCommonStyle (0x7faaa708bf50) + QObject (0x7faaa7092070) 0 + primary-for QStyle (0x7faaa7092000) + +Vtable for QProxyStyle +QProxyStyle::_ZTV11QProxyStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QProxyStyle) +16 QProxyStyle::metaObject +24 QProxyStyle::qt_metacast +32 QProxyStyle::qt_metacall +40 QProxyStyle::~QProxyStyle +48 QProxyStyle::~QProxyStyle +56 QProxyStyle::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QProxyStyle::polish +120 QProxyStyle::unpolish +128 QProxyStyle::polish +136 QProxyStyle::unpolish +144 QProxyStyle::polish +152 QProxyStyle::itemTextRect +160 QProxyStyle::itemPixmapRect +168 QProxyStyle::drawItemText +176 QProxyStyle::drawItemPixmap +184 QProxyStyle::standardPalette +192 QProxyStyle::drawPrimitive +200 QProxyStyle::drawControl +208 QProxyStyle::subElementRect +216 QProxyStyle::drawComplexControl +224 QProxyStyle::hitTestComplexControl +232 QProxyStyle::subControlRect +240 QProxyStyle::pixelMetric +248 QProxyStyle::sizeFromContents +256 QProxyStyle::styleHint +264 QProxyStyle::standardPixmap +272 QProxyStyle::generatedIconPixmap + +Class QProxyStyle + size=16 align=8 + base size=16 base align=8 +QProxyStyle (0x7faaa70b5000) 0 + vptr=((& QProxyStyle::_ZTV11QProxyStyle) + 16u) + QCommonStyle (0x7faaa70b5070) 0 + primary-for QProxyStyle (0x7faaa70b5000) + QStyle (0x7faaa70b50e0) 0 + primary-for QCommonStyle (0x7faaa70b5070) + QObject (0x7faaa70b5150) 0 + primary-for QStyle (0x7faaa70b50e0) + +Vtable for QS60Style +QS60Style::_ZTV9QS60Style: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QS60Style) +16 QS60Style::metaObject +24 QS60Style::qt_metacast +32 QS60Style::qt_metacall +40 QS60Style::~QS60Style +48 QS60Style::~QS60Style +56 QS60Style::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QS60Style::polish +120 QS60Style::unpolish +128 QS60Style::polish +136 QS60Style::unpolish +144 QCommonStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QStyle::standardPalette +192 QS60Style::drawPrimitive +200 QS60Style::drawControl +208 QS60Style::subElementRect +216 QS60Style::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QS60Style::subControlRect +240 QS60Style::pixelMetric +248 QS60Style::sizeFromContents +256 QS60Style::styleHint +264 QCommonStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QS60Style + size=16 align=8 + base size=16 base align=8 +QS60Style (0x7faaa70d54d0) 0 + vptr=((& QS60Style::_ZTV9QS60Style) + 16u) + QCommonStyle (0x7faaa70d5540) 0 + primary-for QS60Style (0x7faaa70d54d0) + QStyle (0x7faaa70d55b0) 0 + primary-for QCommonStyle (0x7faaa70d5540) + QObject (0x7faaa70d5620) 0 + primary-for QStyle (0x7faaa70d55b0) + +Class QStyleFactory + size=1 align=1 + base size=0 base align=1 +QStyleFactory (0x7faaa6efa310) 0 empty + +Vtable for QStyleFactoryInterface +QStyleFactoryInterface::_ZTV22QStyleFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QStyleFactoryInterface) +16 QStyleFactoryInterface::~QStyleFactoryInterface +24 QStyleFactoryInterface::~QStyleFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QStyleFactoryInterface + size=8 align=8 + base size=8 base align=8 +QStyleFactoryInterface (0x7faaa6efa380) 0 nearly-empty + vptr=((& QStyleFactoryInterface::_ZTV22QStyleFactoryInterface) + 16u) + QFactoryInterface (0x7faaa6efa3f0) 0 nearly-empty + primary-for QStyleFactoryInterface (0x7faaa6efa380) + +Vtable for QStylePlugin +QStylePlugin::_ZTV12QStylePlugin: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QStylePlugin) +16 QStylePlugin::metaObject +24 QStylePlugin::qt_metacast +32 QStylePlugin::qt_metacall +40 QStylePlugin::~QStylePlugin +48 QStylePlugin::~QStylePlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI12QStylePlugin) +144 QStylePlugin::_ZThn16_N12QStylePluginD1Ev +152 QStylePlugin::_ZThn16_N12QStylePluginD0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QStylePlugin + size=24 align=8 + base size=24 base align=8 +QStylePlugin (0x7faaa6f06000) 0 + vptr=((& QStylePlugin::_ZTV12QStylePlugin) + 16u) + QObject (0x7faaa6efae00) 0 + primary-for QStylePlugin (0x7faaa6f06000) + QStyleFactoryInterface (0x7faaa6efae70) 16 nearly-empty + vptr=((& QStylePlugin::_ZTV12QStylePlugin) + 144u) + QFactoryInterface (0x7faaa6efaee0) 16 nearly-empty + primary-for QStyleFactoryInterface (0x7faaa6efae70) + +Vtable for QWindowsCEStyle +QWindowsCEStyle::_ZTV15QWindowsCEStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QWindowsCEStyle) +16 QWindowsCEStyle::metaObject +24 QWindowsCEStyle::qt_metacast +32 QWindowsCEStyle::qt_metacall +40 QWindowsCEStyle::~QWindowsCEStyle +48 QWindowsCEStyle::~QWindowsCEStyle +56 QObject::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWindowsCEStyle::polish +120 QWindowsStyle::unpolish +128 QWindowsCEStyle::polish +136 QWindowsStyle::unpolish +144 QWindowsCEStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QWindowsCEStyle::drawItemText +176 QStyle::drawItemPixmap +184 QWindowsCEStyle::standardPalette +192 QWindowsCEStyle::drawPrimitive +200 QWindowsCEStyle::drawControl +208 QWindowsCEStyle::subElementRect +216 QWindowsCEStyle::drawComplexControl +224 QWindowsCEStyle::hitTestComplexControl +232 QWindowsCEStyle::subControlRect +240 QWindowsCEStyle::pixelMetric +248 QWindowsCEStyle::sizeFromContents +256 QWindowsCEStyle::styleHint +264 QWindowsCEStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QWindowsCEStyle + size=24 align=8 + base size=24 base align=8 +QWindowsCEStyle (0x7faaa6f09d90) 0 + vptr=((& QWindowsCEStyle::_ZTV15QWindowsCEStyle) + 16u) + QWindowsStyle (0x7faaa6f09e00) 0 + primary-for QWindowsCEStyle (0x7faaa6f09d90) + QCommonStyle (0x7faaa6f09e70) 0 + primary-for QWindowsStyle (0x7faaa6f09e00) + QStyle (0x7faaa6f09ee0) 0 + primary-for QCommonStyle (0x7faaa6f09e70) + QObject (0x7faaa6f09f50) 0 + primary-for QStyle (0x7faaa6f09ee0) + +Vtable for QWindowsMobileStyle +QWindowsMobileStyle::_ZTV19QWindowsMobileStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QWindowsMobileStyle) +16 QWindowsMobileStyle::metaObject +24 QWindowsMobileStyle::qt_metacast +32 QWindowsMobileStyle::qt_metacall +40 QWindowsMobileStyle::~QWindowsMobileStyle +48 QWindowsMobileStyle::~QWindowsMobileStyle +56 QObject::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWindowsMobileStyle::polish +120 QWindowsMobileStyle::unpolish +128 QWindowsMobileStyle::polish +136 QWindowsMobileStyle::unpolish +144 QWindowsMobileStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QWindowsMobileStyle::standardPalette +192 QWindowsMobileStyle::drawPrimitive +200 QWindowsMobileStyle::drawControl +208 QWindowsMobileStyle::subElementRect +216 QWindowsMobileStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QWindowsMobileStyle::subControlRect +240 QWindowsMobileStyle::pixelMetric +248 QWindowsMobileStyle::sizeFromContents +256 QWindowsMobileStyle::styleHint +264 QWindowsMobileStyle::standardPixmap +272 QWindowsMobileStyle::generatedIconPixmap + +Class QWindowsMobileStyle + size=24 align=8 + base size=24 base align=8 +QWindowsMobileStyle (0x7faaa6f2e3f0) 0 + vptr=((& QWindowsMobileStyle::_ZTV19QWindowsMobileStyle) + 16u) + QWindowsStyle (0x7faaa6f2e460) 0 + primary-for QWindowsMobileStyle (0x7faaa6f2e3f0) + QCommonStyle (0x7faaa6f2e4d0) 0 + primary-for QWindowsStyle (0x7faaa6f2e460) + QStyle (0x7faaa6f2e540) 0 + primary-for QCommonStyle (0x7faaa6f2e4d0) + QObject (0x7faaa6f2e5b0) 0 + primary-for QStyle (0x7faaa6f2e540) + +Vtable for QWindowsXPStyle +QWindowsXPStyle::_ZTV15QWindowsXPStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QWindowsXPStyle) +16 QWindowsXPStyle::metaObject +24 QWindowsXPStyle::qt_metacast +32 QWindowsXPStyle::qt_metacall +40 QWindowsXPStyle::~QWindowsXPStyle +48 QWindowsXPStyle::~QWindowsXPStyle +56 QObject::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWindowsXPStyle::polish +120 QWindowsXPStyle::unpolish +128 QWindowsXPStyle::polish +136 QWindowsXPStyle::unpolish +144 QWindowsXPStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QWindowsXPStyle::standardPalette +192 QWindowsXPStyle::drawPrimitive +200 QWindowsXPStyle::drawControl +208 QWindowsXPStyle::subElementRect +216 QWindowsXPStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QWindowsXPStyle::subControlRect +240 QWindowsXPStyle::pixelMetric +248 QWindowsXPStyle::sizeFromContents +256 QWindowsXPStyle::styleHint +264 QWindowsXPStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QWindowsXPStyle + size=32 align=8 + base size=32 base align=8 +QWindowsXPStyle (0x7faaa6f47d90) 0 + vptr=((& QWindowsXPStyle::_ZTV15QWindowsXPStyle) + 16u) + QWindowsStyle (0x7faaa6f47e00) 0 + primary-for QWindowsXPStyle (0x7faaa6f47d90) + QCommonStyle (0x7faaa6f47e70) 0 + primary-for QWindowsStyle (0x7faaa6f47e00) + QStyle (0x7faaa6f47ee0) 0 + primary-for QCommonStyle (0x7faaa6f47e70) + QObject (0x7faaa6f47f50) 0 + primary-for QStyle (0x7faaa6f47ee0) + +Vtable for QWindowsVistaStyle +QWindowsVistaStyle::_ZTV18QWindowsVistaStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QWindowsVistaStyle) +16 QWindowsVistaStyle::metaObject +24 QWindowsVistaStyle::qt_metacast +32 QWindowsVistaStyle::qt_metacall +40 QWindowsVistaStyle::~QWindowsVistaStyle +48 QWindowsVistaStyle::~QWindowsVistaStyle +56 QWindowsVistaStyle::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWindowsVistaStyle::polish +120 QWindowsVistaStyle::unpolish +128 QWindowsVistaStyle::polish +136 QWindowsVistaStyle::unpolish +144 QWindowsVistaStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QWindowsVistaStyle::standardPalette +192 QWindowsVistaStyle::drawPrimitive +200 QWindowsVistaStyle::drawControl +208 QWindowsVistaStyle::subElementRect +216 QWindowsVistaStyle::drawComplexControl +224 QWindowsVistaStyle::hitTestComplexControl +232 QWindowsVistaStyle::subControlRect +240 QWindowsVistaStyle::pixelMetric +248 QWindowsVistaStyle::sizeFromContents +256 QWindowsVistaStyle::styleHint +264 QWindowsVistaStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QWindowsVistaStyle + size=32 align=8 + base size=32 base align=8 +QWindowsVistaStyle (0x7faaa6f68c40) 0 + vptr=((& QWindowsVistaStyle::_ZTV18QWindowsVistaStyle) + 16u) + QWindowsXPStyle (0x7faaa6f68cb0) 0 + primary-for QWindowsVistaStyle (0x7faaa6f68c40) + QWindowsStyle (0x7faaa6f68d20) 0 + primary-for QWindowsXPStyle (0x7faaa6f68cb0) + QCommonStyle (0x7faaa6f68d90) 0 + primary-for QWindowsStyle (0x7faaa6f68d20) + QStyle (0x7faaa6f68e00) 0 + primary-for QCommonStyle (0x7faaa6f68d90) + QObject (0x7faaa6f68e70) 0 + primary-for QStyle (0x7faaa6f68e00) + +Vtable for QInputContext +QInputContext::_ZTV13QInputContext: 26u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QInputContext) +16 QInputContext::metaObject +24 QInputContext::qt_metacast +32 QInputContext::qt_metacall +40 QInputContext::~QInputContext +48 QInputContext::~QInputContext +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 QInputContext::update +144 QInputContext::mouseHandler +152 QInputContext::font +160 __cxa_pure_virtual +168 QInputContext::setFocusWidget +176 QInputContext::widgetDestroyed +184 QInputContext::actions +192 QInputContext::x11FilterEvent +200 QInputContext::filterEvent + +Class QInputContext + size=16 align=8 + base size=16 base align=8 +QInputContext (0x7faaa6f88c40) 0 + vptr=((& QInputContext::_ZTV13QInputContext) + 16u) + QObject (0x7faaa6f88cb0) 0 + primary-for QInputContext (0x7faaa6f88c40) + +Class QInputContextFactory + size=1 align=1 + base size=0 base align=1 +QInputContextFactory (0x7faaa6fa95b0) 0 empty + +Vtable for QInputContextFactoryInterface +QInputContextFactoryInterface::_ZTV29QInputContextFactoryInterface: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI29QInputContextFactoryInterface) +16 QInputContextFactoryInterface::~QInputContextFactoryInterface +24 QInputContextFactoryInterface::~QInputContextFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual + +Class QInputContextFactoryInterface + size=8 align=8 + base size=8 base align=8 +QInputContextFactoryInterface (0x7faaa6fa9620) 0 nearly-empty + vptr=((& QInputContextFactoryInterface::_ZTV29QInputContextFactoryInterface) + 16u) + QFactoryInterface (0x7faaa6fa9690) 0 nearly-empty + primary-for QInputContextFactoryInterface (0x7faaa6fa9620) + +Vtable for QInputContextPlugin +QInputContextPlugin::_ZTV19QInputContextPlugin: 28u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QInputContextPlugin) +16 QInputContextPlugin::metaObject +24 QInputContextPlugin::qt_metacast +32 QInputContextPlugin::qt_metacall +40 QInputContextPlugin::~QInputContextPlugin +48 QInputContextPlugin::~QInputContextPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 (int (*)(...))-0x00000000000000010 +160 (int (*)(...))(& _ZTI19QInputContextPlugin) +168 QInputContextPlugin::_ZThn16_N19QInputContextPluginD1Ev +176 QInputContextPlugin::_ZThn16_N19QInputContextPluginD0Ev +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 __cxa_pure_virtual +208 __cxa_pure_virtual +216 __cxa_pure_virtual + +Class QInputContextPlugin + size=24 align=8 + base size=24 base align=8 +QInputContextPlugin (0x7faaa6fa5e80) 0 + vptr=((& QInputContextPlugin::_ZTV19QInputContextPlugin) + 16u) + QObject (0x7faaa6fb7000) 0 + primary-for QInputContextPlugin (0x7faaa6fa5e80) + QInputContextFactoryInterface (0x7faaa6fb7070) 16 nearly-empty + vptr=((& QInputContextPlugin::_ZTV19QInputContextPlugin) + 168u) + QFactoryInterface (0x7faaa6fb70e0) 16 nearly-empty + primary-for QInputContextFactoryInterface (0x7faaa6fb7070) + +Vtable for QGraphicsItem +QGraphicsItem::_ZTV13QGraphicsItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QGraphicsItem) +16 QGraphicsItem::~QGraphicsItem +24 QGraphicsItem::~QGraphicsItem +32 QGraphicsItem::advance +40 __cxa_pure_virtual +48 QGraphicsItem::shape +56 QGraphicsItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsItem::isObscuredBy +88 QGraphicsItem::opaqueArea +96 __cxa_pure_virtual +104 QGraphicsItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsItem::supportsExtension +296 QGraphicsItem::setExtension +304 QGraphicsItem::extension + +Class QGraphicsItem + size=16 align=8 + base size=16 base align=8 +QGraphicsItem (0x7faaa6fb7380) 0 + vptr=((& QGraphicsItem::_ZTV13QGraphicsItem) + 16u) + +Vtable for QGraphicsObject +QGraphicsObject::_ZTV15QGraphicsObject: 53u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QGraphicsObject) +16 QGraphicsObject::metaObject +24 QGraphicsObject::qt_metacast +32 QGraphicsObject::qt_metacall +40 QGraphicsObject::~QGraphicsObject +48 QGraphicsObject::~QGraphicsObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 (int (*)(...))-0x00000000000000010 +120 (int (*)(...))(& _ZTI15QGraphicsObject) +128 QGraphicsObject::_ZThn16_N15QGraphicsObjectD1Ev +136 QGraphicsObject::_ZThn16_N15QGraphicsObjectD0Ev +144 QGraphicsItem::advance +152 __cxa_pure_virtual +160 QGraphicsItem::shape +168 QGraphicsItem::contains +176 QGraphicsItem::collidesWithItem +184 QGraphicsItem::collidesWithPath +192 QGraphicsItem::isObscuredBy +200 QGraphicsItem::opaqueArea +208 __cxa_pure_virtual +216 QGraphicsItem::type +224 QGraphicsItem::sceneEventFilter +232 QGraphicsItem::sceneEvent +240 QGraphicsItem::contextMenuEvent +248 QGraphicsItem::dragEnterEvent +256 QGraphicsItem::dragLeaveEvent +264 QGraphicsItem::dragMoveEvent +272 QGraphicsItem::dropEvent +280 QGraphicsItem::focusInEvent +288 QGraphicsItem::focusOutEvent +296 QGraphicsItem::hoverEnterEvent +304 QGraphicsItem::hoverMoveEvent +312 QGraphicsItem::hoverLeaveEvent +320 QGraphicsItem::keyPressEvent +328 QGraphicsItem::keyReleaseEvent +336 QGraphicsItem::mousePressEvent +344 QGraphicsItem::mouseMoveEvent +352 QGraphicsItem::mouseReleaseEvent +360 QGraphicsItem::mouseDoubleClickEvent +368 QGraphicsItem::wheelEvent +376 QGraphicsItem::inputMethodEvent +384 QGraphicsItem::inputMethodQuery +392 QGraphicsItem::itemChange +400 QGraphicsItem::supportsExtension +408 QGraphicsItem::setExtension +416 QGraphicsItem::extension + +Class QGraphicsObject + size=32 align=8 + base size=32 base align=8 +QGraphicsObject (0x7faaa6eb2c80) 0 + vptr=((& QGraphicsObject::_ZTV15QGraphicsObject) + 16u) + QObject (0x7faaa6eb8f50) 0 + primary-for QGraphicsObject (0x7faaa6eb2c80) + QGraphicsItem (0x7faaa6ec3000) 16 + vptr=((& QGraphicsObject::_ZTV15QGraphicsObject) + 128u) + +Vtable for QAbstractGraphicsShapeItem +QAbstractGraphicsShapeItem::_ZTV26QAbstractGraphicsShapeItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QAbstractGraphicsShapeItem) +16 QAbstractGraphicsShapeItem::~QAbstractGraphicsShapeItem +24 QAbstractGraphicsShapeItem::~QAbstractGraphicsShapeItem +32 QGraphicsItem::advance +40 __cxa_pure_virtual +48 QGraphicsItem::shape +56 QGraphicsItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QAbstractGraphicsShapeItem::isObscuredBy +88 QAbstractGraphicsShapeItem::opaqueArea +96 __cxa_pure_virtual +104 QGraphicsItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsItem::supportsExtension +296 QGraphicsItem::setExtension +304 QGraphicsItem::extension + +Class QAbstractGraphicsShapeItem + size=16 align=8 + base size=16 base align=8 +QAbstractGraphicsShapeItem (0x7faaa6ed9070) 0 + vptr=((& QAbstractGraphicsShapeItem::_ZTV26QAbstractGraphicsShapeItem) + 16u) + QGraphicsItem (0x7faaa6ed90e0) 0 + primary-for QAbstractGraphicsShapeItem (0x7faaa6ed9070) + +Vtable for QGraphicsPathItem +QGraphicsPathItem::_ZTV17QGraphicsPathItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QGraphicsPathItem) +16 QGraphicsPathItem::~QGraphicsPathItem +24 QGraphicsPathItem::~QGraphicsPathItem +32 QGraphicsItem::advance +40 QGraphicsPathItem::boundingRect +48 QGraphicsPathItem::shape +56 QGraphicsPathItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsPathItem::isObscuredBy +88 QGraphicsPathItem::opaqueArea +96 QGraphicsPathItem::paint +104 QGraphicsPathItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsPathItem::supportsExtension +296 QGraphicsPathItem::setExtension +304 QGraphicsPathItem::extension + +Class QGraphicsPathItem + size=16 align=8 + base size=16 base align=8 +QGraphicsPathItem (0x7faaa6ed9ee0) 0 + vptr=((& QGraphicsPathItem::_ZTV17QGraphicsPathItem) + 16u) + QAbstractGraphicsShapeItem (0x7faaa6ed9f50) 0 + primary-for QGraphicsPathItem (0x7faaa6ed9ee0) + QGraphicsItem (0x7faaa6ed9930) 0 + primary-for QAbstractGraphicsShapeItem (0x7faaa6ed9f50) + +Vtable for QGraphicsRectItem +QGraphicsRectItem::_ZTV17QGraphicsRectItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QGraphicsRectItem) +16 QGraphicsRectItem::~QGraphicsRectItem +24 QGraphicsRectItem::~QGraphicsRectItem +32 QGraphicsItem::advance +40 QGraphicsRectItem::boundingRect +48 QGraphicsRectItem::shape +56 QGraphicsRectItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsRectItem::isObscuredBy +88 QGraphicsRectItem::opaqueArea +96 QGraphicsRectItem::paint +104 QGraphicsRectItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsRectItem::supportsExtension +296 QGraphicsRectItem::setExtension +304 QGraphicsRectItem::extension + +Class QGraphicsRectItem + size=16 align=8 + base size=16 base align=8 +QGraphicsRectItem (0x7faaa6cdfe70) 0 + vptr=((& QGraphicsRectItem::_ZTV17QGraphicsRectItem) + 16u) + QAbstractGraphicsShapeItem (0x7faaa6cdfee0) 0 + primary-for QGraphicsRectItem (0x7faaa6cdfe70) + QGraphicsItem (0x7faaa6cdff50) 0 + primary-for QAbstractGraphicsShapeItem (0x7faaa6cdfee0) + +Vtable for QGraphicsEllipseItem +QGraphicsEllipseItem::_ZTV20QGraphicsEllipseItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QGraphicsEllipseItem) +16 QGraphicsEllipseItem::~QGraphicsEllipseItem +24 QGraphicsEllipseItem::~QGraphicsEllipseItem +32 QGraphicsItem::advance +40 QGraphicsEllipseItem::boundingRect +48 QGraphicsEllipseItem::shape +56 QGraphicsEllipseItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsEllipseItem::isObscuredBy +88 QGraphicsEllipseItem::opaqueArea +96 QGraphicsEllipseItem::paint +104 QGraphicsEllipseItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsEllipseItem::supportsExtension +296 QGraphicsEllipseItem::setExtension +304 QGraphicsEllipseItem::extension + +Class QGraphicsEllipseItem + size=16 align=8 + base size=16 base align=8 +QGraphicsEllipseItem (0x7faaa6d04150) 0 + vptr=((& QGraphicsEllipseItem::_ZTV20QGraphicsEllipseItem) + 16u) + QAbstractGraphicsShapeItem (0x7faaa6d041c0) 0 + primary-for QGraphicsEllipseItem (0x7faaa6d04150) + QGraphicsItem (0x7faaa6d04230) 0 + primary-for QAbstractGraphicsShapeItem (0x7faaa6d041c0) + +Vtable for QGraphicsPolygonItem +QGraphicsPolygonItem::_ZTV20QGraphicsPolygonItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QGraphicsPolygonItem) +16 QGraphicsPolygonItem::~QGraphicsPolygonItem +24 QGraphicsPolygonItem::~QGraphicsPolygonItem +32 QGraphicsItem::advance +40 QGraphicsPolygonItem::boundingRect +48 QGraphicsPolygonItem::shape +56 QGraphicsPolygonItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsPolygonItem::isObscuredBy +88 QGraphicsPolygonItem::opaqueArea +96 QGraphicsPolygonItem::paint +104 QGraphicsPolygonItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsPolygonItem::supportsExtension +296 QGraphicsPolygonItem::setExtension +304 QGraphicsPolygonItem::extension + +Class QGraphicsPolygonItem + size=16 align=8 + base size=16 base align=8 +QGraphicsPolygonItem (0x7faaa6d17460) 0 + vptr=((& QGraphicsPolygonItem::_ZTV20QGraphicsPolygonItem) + 16u) + QAbstractGraphicsShapeItem (0x7faaa6d174d0) 0 + primary-for QGraphicsPolygonItem (0x7faaa6d17460) + QGraphicsItem (0x7faaa6d17540) 0 + primary-for QAbstractGraphicsShapeItem (0x7faaa6d174d0) + +Vtable for QGraphicsLineItem +QGraphicsLineItem::_ZTV17QGraphicsLineItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QGraphicsLineItem) +16 QGraphicsLineItem::~QGraphicsLineItem +24 QGraphicsLineItem::~QGraphicsLineItem +32 QGraphicsItem::advance +40 QGraphicsLineItem::boundingRect +48 QGraphicsLineItem::shape +56 QGraphicsLineItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsLineItem::isObscuredBy +88 QGraphicsLineItem::opaqueArea +96 QGraphicsLineItem::paint +104 QGraphicsLineItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsLineItem::supportsExtension +296 QGraphicsLineItem::setExtension +304 QGraphicsLineItem::extension + +Class QGraphicsLineItem + size=16 align=8 + base size=16 base align=8 +QGraphicsLineItem (0x7faaa6d2b3f0) 0 + vptr=((& QGraphicsLineItem::_ZTV17QGraphicsLineItem) + 16u) + QGraphicsItem (0x7faaa6d2b460) 0 + primary-for QGraphicsLineItem (0x7faaa6d2b3f0) + +Vtable for QGraphicsPixmapItem +QGraphicsPixmapItem::_ZTV19QGraphicsPixmapItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QGraphicsPixmapItem) +16 QGraphicsPixmapItem::~QGraphicsPixmapItem +24 QGraphicsPixmapItem::~QGraphicsPixmapItem +32 QGraphicsItem::advance +40 QGraphicsPixmapItem::boundingRect +48 QGraphicsPixmapItem::shape +56 QGraphicsPixmapItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsPixmapItem::isObscuredBy +88 QGraphicsPixmapItem::opaqueArea +96 QGraphicsPixmapItem::paint +104 QGraphicsPixmapItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsPixmapItem::supportsExtension +296 QGraphicsPixmapItem::setExtension +304 QGraphicsPixmapItem::extension + +Class QGraphicsPixmapItem + size=16 align=8 + base size=16 base align=8 +QGraphicsPixmapItem (0x7faaa6d3f690) 0 + vptr=((& QGraphicsPixmapItem::_ZTV19QGraphicsPixmapItem) + 16u) + QGraphicsItem (0x7faaa6d3f700) 0 + primary-for QGraphicsPixmapItem (0x7faaa6d3f690) + +Vtable for QGraphicsTextItem +QGraphicsTextItem::_ZTV17QGraphicsTextItem: 82u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QGraphicsTextItem) +16 QGraphicsTextItem::metaObject +24 QGraphicsTextItem::qt_metacast +32 QGraphicsTextItem::qt_metacall +40 QGraphicsTextItem::~QGraphicsTextItem +48 QGraphicsTextItem::~QGraphicsTextItem +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsTextItem::boundingRect +120 QGraphicsTextItem::shape +128 QGraphicsTextItem::contains +136 QGraphicsTextItem::paint +144 QGraphicsTextItem::isObscuredBy +152 QGraphicsTextItem::opaqueArea +160 QGraphicsTextItem::type +168 QGraphicsTextItem::sceneEvent +176 QGraphicsTextItem::mousePressEvent +184 QGraphicsTextItem::mouseMoveEvent +192 QGraphicsTextItem::mouseReleaseEvent +200 QGraphicsTextItem::mouseDoubleClickEvent +208 QGraphicsTextItem::contextMenuEvent +216 QGraphicsTextItem::keyPressEvent +224 QGraphicsTextItem::keyReleaseEvent +232 QGraphicsTextItem::focusInEvent +240 QGraphicsTextItem::focusOutEvent +248 QGraphicsTextItem::dragEnterEvent +256 QGraphicsTextItem::dragLeaveEvent +264 QGraphicsTextItem::dragMoveEvent +272 QGraphicsTextItem::dropEvent +280 QGraphicsTextItem::inputMethodEvent +288 QGraphicsTextItem::hoverEnterEvent +296 QGraphicsTextItem::hoverMoveEvent +304 QGraphicsTextItem::hoverLeaveEvent +312 QGraphicsTextItem::inputMethodQuery +320 QGraphicsTextItem::supportsExtension +328 QGraphicsTextItem::setExtension +336 QGraphicsTextItem::extension +344 (int (*)(...))-0x00000000000000010 +352 (int (*)(...))(& _ZTI17QGraphicsTextItem) +360 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItemD1Ev +368 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItemD0Ev +376 QGraphicsItem::advance +384 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem12boundingRectEv +392 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem5shapeEv +400 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem8containsERK7QPointF +408 QGraphicsItem::collidesWithItem +416 QGraphicsItem::collidesWithPath +424 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem12isObscuredByEPK13QGraphicsItem +432 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem10opaqueAreaEv +440 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget +448 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem4typeEv +456 QGraphicsItem::sceneEventFilter +464 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem10sceneEventEP6QEvent +472 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem16contextMenuEventEP30QGraphicsSceneContextMenuEvent +480 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem14dragEnterEventEP27QGraphicsSceneDragDropEvent +488 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem14dragLeaveEventEP27QGraphicsSceneDragDropEvent +496 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem13dragMoveEventEP27QGraphicsSceneDragDropEvent +504 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem9dropEventEP27QGraphicsSceneDragDropEvent +512 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem12focusInEventEP11QFocusEvent +520 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem13focusOutEventEP11QFocusEvent +528 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem15hoverEnterEventEP24QGraphicsSceneHoverEvent +536 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem14hoverMoveEventEP24QGraphicsSceneHoverEvent +544 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem15hoverLeaveEventEP24QGraphicsSceneHoverEvent +552 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem13keyPressEventEP9QKeyEvent +560 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem15keyReleaseEventEP9QKeyEvent +568 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem15mousePressEventEP24QGraphicsSceneMouseEvent +576 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem14mouseMoveEventEP24QGraphicsSceneMouseEvent +584 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem17mouseReleaseEventEP24QGraphicsSceneMouseEvent +592 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem21mouseDoubleClickEventEP24QGraphicsSceneMouseEvent +600 QGraphicsItem::wheelEvent +608 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem16inputMethodEventEP17QInputMethodEvent +616 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem16inputMethodQueryEN2Qt16InputMethodQueryE +624 QGraphicsItem::itemChange +632 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem17supportsExtensionEN13QGraphicsItem9ExtensionE +640 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem12setExtensionEN13QGraphicsItem9ExtensionERK8QVariant +648 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem9extensionERK8QVariant + +Class QGraphicsTextItem + size=40 align=8 + base size=40 base align=8 +QGraphicsTextItem (0x7faaa6d4f930) 0 + vptr=((& QGraphicsTextItem::_ZTV17QGraphicsTextItem) + 16u) + QGraphicsObject (0x7faaa6d43700) 0 + primary-for QGraphicsTextItem (0x7faaa6d4f930) + QObject (0x7faaa6d4f9a0) 0 + primary-for QGraphicsObject (0x7faaa6d43700) + QGraphicsItem (0x7faaa6d4fa10) 16 + vptr=((& QGraphicsTextItem::_ZTV17QGraphicsTextItem) + 360u) + +Vtable for QGraphicsSimpleTextItem +QGraphicsSimpleTextItem::_ZTV23QGraphicsSimpleTextItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QGraphicsSimpleTextItem) +16 QGraphicsSimpleTextItem::~QGraphicsSimpleTextItem +24 QGraphicsSimpleTextItem::~QGraphicsSimpleTextItem +32 QGraphicsItem::advance +40 QGraphicsSimpleTextItem::boundingRect +48 QGraphicsSimpleTextItem::shape +56 QGraphicsSimpleTextItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsSimpleTextItem::isObscuredBy +88 QGraphicsSimpleTextItem::opaqueArea +96 QGraphicsSimpleTextItem::paint +104 QGraphicsSimpleTextItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsSimpleTextItem::supportsExtension +296 QGraphicsSimpleTextItem::setExtension +304 QGraphicsSimpleTextItem::extension + +Class QGraphicsSimpleTextItem + size=16 align=8 + base size=16 base align=8 +QGraphicsSimpleTextItem (0x7faaa6d6f380) 0 + vptr=((& QGraphicsSimpleTextItem::_ZTV23QGraphicsSimpleTextItem) + 16u) + QAbstractGraphicsShapeItem (0x7faaa6d84000) 0 + primary-for QGraphicsSimpleTextItem (0x7faaa6d6f380) + QGraphicsItem (0x7faaa6d84070) 0 + primary-for QAbstractGraphicsShapeItem (0x7faaa6d84000) + +Vtable for QGraphicsItemGroup +QGraphicsItemGroup::_ZTV18QGraphicsItemGroup: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QGraphicsItemGroup) +16 QGraphicsItemGroup::~QGraphicsItemGroup +24 QGraphicsItemGroup::~QGraphicsItemGroup +32 QGraphicsItem::advance +40 QGraphicsItemGroup::boundingRect +48 QGraphicsItem::shape +56 QGraphicsItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsItemGroup::isObscuredBy +88 QGraphicsItemGroup::opaqueArea +96 QGraphicsItemGroup::paint +104 QGraphicsItemGroup::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsItem::supportsExtension +296 QGraphicsItem::setExtension +304 QGraphicsItem::extension + +Class QGraphicsItemGroup + size=16 align=8 + base size=16 base align=8 +QGraphicsItemGroup (0x7faaa6d84f50) 0 + vptr=((& QGraphicsItemGroup::_ZTV18QGraphicsItemGroup) + 16u) + QGraphicsItem (0x7faaa6d849a0) 0 + primary-for QGraphicsItemGroup (0x7faaa6d84f50) + +Vtable for QGraphicsLayoutItem +QGraphicsLayoutItem::_ZTV19QGraphicsLayoutItem: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QGraphicsLayoutItem) +16 QGraphicsLayoutItem::~QGraphicsLayoutItem +24 QGraphicsLayoutItem::~QGraphicsLayoutItem +32 QGraphicsLayoutItem::setGeometry +40 QGraphicsLayoutItem::getContentsMargins +48 QGraphicsLayoutItem::updateGeometry +56 __cxa_pure_virtual + +Class QGraphicsLayoutItem + size=16 align=8 + base size=16 base align=8 +QGraphicsLayoutItem (0x7faaa6da8850) 0 + vptr=((& QGraphicsLayoutItem::_ZTV19QGraphicsLayoutItem) + 16u) + +Vtable for QGraphicsLayout +QGraphicsLayout::_ZTV15QGraphicsLayout: 13u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QGraphicsLayout) +16 QGraphicsLayout::~QGraphicsLayout +24 QGraphicsLayout::~QGraphicsLayout +32 QGraphicsLayoutItem::setGeometry +40 QGraphicsLayout::getContentsMargins +48 QGraphicsLayout::updateGeometry +56 __cxa_pure_virtual +64 QGraphicsLayout::invalidate +72 QGraphicsLayout::widgetEvent +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual + +Class QGraphicsLayout + size=16 align=8 + base size=16 base align=8 +QGraphicsLayout (0x7faaa6beb070) 0 + vptr=((& QGraphicsLayout::_ZTV15QGraphicsLayout) + 16u) + QGraphicsLayoutItem (0x7faaa6beb0e0) 0 + primary-for QGraphicsLayout (0x7faaa6beb070) + +Vtable for QGraphicsAnchor +QGraphicsAnchor::_ZTV15QGraphicsAnchor: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QGraphicsAnchor) +16 QGraphicsAnchor::metaObject +24 QGraphicsAnchor::qt_metacast +32 QGraphicsAnchor::qt_metacall +40 QGraphicsAnchor::~QGraphicsAnchor +48 QGraphicsAnchor::~QGraphicsAnchor +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QGraphicsAnchor + size=16 align=8 + base size=16 base align=8 +QGraphicsAnchor (0x7faaa6bf9850) 0 + vptr=((& QGraphicsAnchor::_ZTV15QGraphicsAnchor) + 16u) + QObject (0x7faaa6bf98c0) 0 + primary-for QGraphicsAnchor (0x7faaa6bf9850) + +Vtable for QGraphicsAnchorLayout +QGraphicsAnchorLayout::_ZTV21QGraphicsAnchorLayout: 13u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QGraphicsAnchorLayout) +16 QGraphicsAnchorLayout::~QGraphicsAnchorLayout +24 QGraphicsAnchorLayout::~QGraphicsAnchorLayout +32 QGraphicsAnchorLayout::setGeometry +40 QGraphicsLayout::getContentsMargins +48 QGraphicsLayout::updateGeometry +56 QGraphicsAnchorLayout::sizeHint +64 QGraphicsAnchorLayout::invalidate +72 QGraphicsLayout::widgetEvent +80 QGraphicsAnchorLayout::count +88 QGraphicsAnchorLayout::itemAt +96 QGraphicsAnchorLayout::removeAt + +Class QGraphicsAnchorLayout + size=16 align=8 + base size=16 base align=8 +QGraphicsAnchorLayout (0x7faaa6c0cd90) 0 + vptr=((& QGraphicsAnchorLayout::_ZTV21QGraphicsAnchorLayout) + 16u) + QGraphicsLayout (0x7faaa6c0ce00) 0 + primary-for QGraphicsAnchorLayout (0x7faaa6c0cd90) + QGraphicsLayoutItem (0x7faaa6c0ce70) 0 + primary-for QGraphicsLayout (0x7faaa6c0ce00) + +Vtable for QGraphicsGridLayout +QGraphicsGridLayout::_ZTV19QGraphicsGridLayout: 13u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QGraphicsGridLayout) +16 QGraphicsGridLayout::~QGraphicsGridLayout +24 QGraphicsGridLayout::~QGraphicsGridLayout +32 QGraphicsGridLayout::setGeometry +40 QGraphicsLayout::getContentsMargins +48 QGraphicsLayout::updateGeometry +56 QGraphicsGridLayout::sizeHint +64 QGraphicsGridLayout::invalidate +72 QGraphicsLayout::widgetEvent +80 QGraphicsGridLayout::count +88 QGraphicsGridLayout::itemAt +96 QGraphicsGridLayout::removeAt + +Class QGraphicsGridLayout + size=16 align=8 + base size=16 base align=8 +QGraphicsGridLayout (0x7faaa6c240e0) 0 + vptr=((& QGraphicsGridLayout::_ZTV19QGraphicsGridLayout) + 16u) + QGraphicsLayout (0x7faaa6c24150) 0 + primary-for QGraphicsGridLayout (0x7faaa6c240e0) + QGraphicsLayoutItem (0x7faaa6c241c0) 0 + primary-for QGraphicsLayout (0x7faaa6c24150) + +Vtable for QGraphicsItemAnimation +QGraphicsItemAnimation::_ZTV22QGraphicsItemAnimation: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QGraphicsItemAnimation) +16 QGraphicsItemAnimation::metaObject +24 QGraphicsItemAnimation::qt_metacast +32 QGraphicsItemAnimation::qt_metacall +40 QGraphicsItemAnimation::~QGraphicsItemAnimation +48 QGraphicsItemAnimation::~QGraphicsItemAnimation +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsItemAnimation::beforeAnimationStep +120 QGraphicsItemAnimation::afterAnimationStep + +Class QGraphicsItemAnimation + size=24 align=8 + base size=24 base align=8 +QGraphicsItemAnimation (0x7faaa6c414d0) 0 + vptr=((& QGraphicsItemAnimation::_ZTV22QGraphicsItemAnimation) + 16u) + QObject (0x7faaa6c41540) 0 + primary-for QGraphicsItemAnimation (0x7faaa6c414d0) + +Vtable for QGraphicsLinearLayout +QGraphicsLinearLayout::_ZTV21QGraphicsLinearLayout: 13u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QGraphicsLinearLayout) +16 QGraphicsLinearLayout::~QGraphicsLinearLayout +24 QGraphicsLinearLayout::~QGraphicsLinearLayout +32 QGraphicsLinearLayout::setGeometry +40 QGraphicsLayout::getContentsMargins +48 QGraphicsLayout::updateGeometry +56 QGraphicsLinearLayout::sizeHint +64 QGraphicsLinearLayout::invalidate +72 QGraphicsLayout::widgetEvent +80 QGraphicsLinearLayout::count +88 QGraphicsLinearLayout::itemAt +96 QGraphicsLinearLayout::removeAt + +Class QGraphicsLinearLayout + size=16 align=8 + base size=16 base align=8 +QGraphicsLinearLayout (0x7faaa6c5b850) 0 + vptr=((& QGraphicsLinearLayout::_ZTV21QGraphicsLinearLayout) + 16u) + QGraphicsLayout (0x7faaa6c5b8c0) 0 + primary-for QGraphicsLinearLayout (0x7faaa6c5b850) + QGraphicsLayoutItem (0x7faaa6c5b930) 0 + primary-for QGraphicsLayout (0x7faaa6c5b8c0) + +Vtable for QGraphicsWidget +QGraphicsWidget::_ZTV15QGraphicsWidget: 92u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QGraphicsWidget) +16 QGraphicsWidget::metaObject +24 QGraphicsWidget::qt_metacast +32 QGraphicsWidget::qt_metacall +40 QGraphicsWidget::~QGraphicsWidget +48 QGraphicsWidget::~QGraphicsWidget +56 QGraphicsWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsWidget::setGeometry +120 QGraphicsWidget::getContentsMargins +128 QGraphicsWidget::type +136 QGraphicsWidget::paint +144 QGraphicsWidget::paintWindowFrame +152 QGraphicsWidget::boundingRect +160 QGraphicsWidget::shape +168 QGraphicsWidget::initStyleOption +176 QGraphicsWidget::sizeHint +184 QGraphicsWidget::updateGeometry +192 QGraphicsWidget::itemChange +200 QGraphicsWidget::propertyChange +208 QGraphicsWidget::sceneEvent +216 QGraphicsWidget::windowFrameEvent +224 QGraphicsWidget::windowFrameSectionAt +232 QGraphicsWidget::changeEvent +240 QGraphicsWidget::closeEvent +248 QGraphicsWidget::focusInEvent +256 QGraphicsWidget::focusNextPrevChild +264 QGraphicsWidget::focusOutEvent +272 QGraphicsWidget::hideEvent +280 QGraphicsWidget::moveEvent +288 QGraphicsWidget::polishEvent +296 QGraphicsWidget::resizeEvent +304 QGraphicsWidget::showEvent +312 QGraphicsWidget::hoverMoveEvent +320 QGraphicsWidget::hoverLeaveEvent +328 QGraphicsWidget::grabMouseEvent +336 QGraphicsWidget::ungrabMouseEvent +344 QGraphicsWidget::grabKeyboardEvent +352 QGraphicsWidget::ungrabKeyboardEvent +360 (int (*)(...))-0x00000000000000010 +368 (int (*)(...))(& _ZTI15QGraphicsWidget) +376 QGraphicsWidget::_ZThn16_N15QGraphicsWidgetD1Ev +384 QGraphicsWidget::_ZThn16_N15QGraphicsWidgetD0Ev +392 QGraphicsItem::advance +400 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget12boundingRectEv +408 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget5shapeEv +416 QGraphicsItem::contains +424 QGraphicsItem::collidesWithItem +432 QGraphicsItem::collidesWithPath +440 QGraphicsItem::isObscuredBy +448 QGraphicsItem::opaqueArea +456 QGraphicsWidget::_ZThn16_N15QGraphicsWidget5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget +464 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget4typeEv +472 QGraphicsItem::sceneEventFilter +480 QGraphicsWidget::_ZThn16_N15QGraphicsWidget10sceneEventEP6QEvent +488 QGraphicsItem::contextMenuEvent +496 QGraphicsItem::dragEnterEvent +504 QGraphicsItem::dragLeaveEvent +512 QGraphicsItem::dragMoveEvent +520 QGraphicsItem::dropEvent +528 QGraphicsWidget::_ZThn16_N15QGraphicsWidget12focusInEventEP11QFocusEvent +536 QGraphicsWidget::_ZThn16_N15QGraphicsWidget13focusOutEventEP11QFocusEvent +544 QGraphicsItem::hoverEnterEvent +552 QGraphicsWidget::_ZThn16_N15QGraphicsWidget14hoverMoveEventEP24QGraphicsSceneHoverEvent +560 QGraphicsWidget::_ZThn16_N15QGraphicsWidget15hoverLeaveEventEP24QGraphicsSceneHoverEvent +568 QGraphicsItem::keyPressEvent +576 QGraphicsItem::keyReleaseEvent +584 QGraphicsItem::mousePressEvent +592 QGraphicsItem::mouseMoveEvent +600 QGraphicsItem::mouseReleaseEvent +608 QGraphicsItem::mouseDoubleClickEvent +616 QGraphicsItem::wheelEvent +624 QGraphicsItem::inputMethodEvent +632 QGraphicsItem::inputMethodQuery +640 QGraphicsWidget::_ZThn16_N15QGraphicsWidget10itemChangeEN13QGraphicsItem18GraphicsItemChangeERK8QVariant +648 QGraphicsItem::supportsExtension +656 QGraphicsItem::setExtension +664 QGraphicsItem::extension +672 (int (*)(...))-0x00000000000000020 +680 (int (*)(...))(& _ZTI15QGraphicsWidget) +688 QGraphicsWidget::_ZThn32_N15QGraphicsWidgetD1Ev +696 QGraphicsWidget::_ZThn32_N15QGraphicsWidgetD0Ev +704 QGraphicsWidget::_ZThn32_N15QGraphicsWidget11setGeometryERK6QRectF +712 QGraphicsWidget::_ZThn32_NK15QGraphicsWidget18getContentsMarginsEPdS0_S0_S0_ +720 QGraphicsWidget::_ZThn32_N15QGraphicsWidget14updateGeometryEv +728 QGraphicsWidget::_ZThn32_NK15QGraphicsWidget8sizeHintEN2Qt8SizeHintERK6QSizeF + +Class QGraphicsWidget + size=48 align=8 + base size=48 base align=8 +QGraphicsWidget (0x7faaa6c78000) 0 + vptr=((& QGraphicsWidget::_ZTV15QGraphicsWidget) + 16u) + QGraphicsObject (0x7faaa6c78080) 0 + primary-for QGraphicsWidget (0x7faaa6c78000) + QObject (0x7faaa6c77070) 0 + primary-for QGraphicsObject (0x7faaa6c78080) + QGraphicsItem (0x7faaa6c770e0) 16 + vptr=((& QGraphicsWidget::_ZTV15QGraphicsWidget) + 376u) + QGraphicsLayoutItem (0x7faaa6c77150) 32 + vptr=((& QGraphicsWidget::_ZTV15QGraphicsWidget) + 688u) + +Vtable for QGraphicsProxyWidget +QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget: 105u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QGraphicsProxyWidget) +16 QGraphicsProxyWidget::metaObject +24 QGraphicsProxyWidget::qt_metacast +32 QGraphicsProxyWidget::qt_metacall +40 QGraphicsProxyWidget::~QGraphicsProxyWidget +48 QGraphicsProxyWidget::~QGraphicsProxyWidget +56 QGraphicsProxyWidget::event +64 QGraphicsProxyWidget::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsProxyWidget::setGeometry +120 QGraphicsWidget::getContentsMargins +128 QGraphicsProxyWidget::type +136 QGraphicsProxyWidget::paint +144 QGraphicsWidget::paintWindowFrame +152 QGraphicsWidget::boundingRect +160 QGraphicsWidget::shape +168 QGraphicsWidget::initStyleOption +176 QGraphicsProxyWidget::sizeHint +184 QGraphicsWidget::updateGeometry +192 QGraphicsProxyWidget::itemChange +200 QGraphicsWidget::propertyChange +208 QGraphicsWidget::sceneEvent +216 QGraphicsWidget::windowFrameEvent +224 QGraphicsWidget::windowFrameSectionAt +232 QGraphicsWidget::changeEvent +240 QGraphicsWidget::closeEvent +248 QGraphicsProxyWidget::focusInEvent +256 QGraphicsProxyWidget::focusNextPrevChild +264 QGraphicsProxyWidget::focusOutEvent +272 QGraphicsProxyWidget::hideEvent +280 QGraphicsWidget::moveEvent +288 QGraphicsWidget::polishEvent +296 QGraphicsProxyWidget::resizeEvent +304 QGraphicsProxyWidget::showEvent +312 QGraphicsProxyWidget::hoverMoveEvent +320 QGraphicsProxyWidget::hoverLeaveEvent +328 QGraphicsProxyWidget::grabMouseEvent +336 QGraphicsProxyWidget::ungrabMouseEvent +344 QGraphicsWidget::grabKeyboardEvent +352 QGraphicsWidget::ungrabKeyboardEvent +360 QGraphicsProxyWidget::contextMenuEvent +368 QGraphicsProxyWidget::dragEnterEvent +376 QGraphicsProxyWidget::dragLeaveEvent +384 QGraphicsProxyWidget::dragMoveEvent +392 QGraphicsProxyWidget::dropEvent +400 QGraphicsProxyWidget::hoverEnterEvent +408 QGraphicsProxyWidget::mouseMoveEvent +416 QGraphicsProxyWidget::mousePressEvent +424 QGraphicsProxyWidget::mouseReleaseEvent +432 QGraphicsProxyWidget::mouseDoubleClickEvent +440 QGraphicsProxyWidget::wheelEvent +448 QGraphicsProxyWidget::keyPressEvent +456 QGraphicsProxyWidget::keyReleaseEvent +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI20QGraphicsProxyWidget) +480 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidgetD1Ev +488 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidgetD0Ev +496 QGraphicsItem::advance +504 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget12boundingRectEv +512 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget5shapeEv +520 QGraphicsItem::contains +528 QGraphicsItem::collidesWithItem +536 QGraphicsItem::collidesWithPath +544 QGraphicsItem::isObscuredBy +552 QGraphicsItem::opaqueArea +560 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget +568 QGraphicsProxyWidget::_ZThn16_NK20QGraphicsProxyWidget4typeEv +576 QGraphicsItem::sceneEventFilter +584 QGraphicsWidget::_ZThn16_N15QGraphicsWidget10sceneEventEP6QEvent +592 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget16contextMenuEventEP30QGraphicsSceneContextMenuEvent +600 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget14dragEnterEventEP27QGraphicsSceneDragDropEvent +608 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget14dragLeaveEventEP27QGraphicsSceneDragDropEvent +616 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget13dragMoveEventEP27QGraphicsSceneDragDropEvent +624 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget9dropEventEP27QGraphicsSceneDragDropEvent +632 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget12focusInEventEP11QFocusEvent +640 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget13focusOutEventEP11QFocusEvent +648 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget15hoverEnterEventEP24QGraphicsSceneHoverEvent +656 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget14hoverMoveEventEP24QGraphicsSceneHoverEvent +664 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget15hoverLeaveEventEP24QGraphicsSceneHoverEvent +672 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget13keyPressEventEP9QKeyEvent +680 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget15keyReleaseEventEP9QKeyEvent +688 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget15mousePressEventEP24QGraphicsSceneMouseEvent +696 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget14mouseMoveEventEP24QGraphicsSceneMouseEvent +704 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget17mouseReleaseEventEP24QGraphicsSceneMouseEvent +712 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget21mouseDoubleClickEventEP24QGraphicsSceneMouseEvent +720 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget10wheelEventEP24QGraphicsSceneWheelEvent +728 QGraphicsItem::inputMethodEvent +736 QGraphicsItem::inputMethodQuery +744 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget10itemChangeEN13QGraphicsItem18GraphicsItemChangeERK8QVariant +752 QGraphicsItem::supportsExtension +760 QGraphicsItem::setExtension +768 QGraphicsItem::extension +776 (int (*)(...))-0x00000000000000020 +784 (int (*)(...))(& _ZTI20QGraphicsProxyWidget) +792 QGraphicsProxyWidget::_ZThn32_N20QGraphicsProxyWidgetD1Ev +800 QGraphicsProxyWidget::_ZThn32_N20QGraphicsProxyWidgetD0Ev +808 QGraphicsProxyWidget::_ZThn32_N20QGraphicsProxyWidget11setGeometryERK6QRectF +816 QGraphicsWidget::_ZThn32_NK15QGraphicsWidget18getContentsMarginsEPdS0_S0_S0_ +824 QGraphicsWidget::_ZThn32_N15QGraphicsWidget14updateGeometryEv +832 QGraphicsProxyWidget::_ZThn32_NK20QGraphicsProxyWidget8sizeHintEN2Qt8SizeHintERK6QSizeF + +Class QGraphicsProxyWidget + size=48 align=8 + base size=48 base align=8 +QGraphicsProxyWidget (0x7faaa6cb08c0) 0 + vptr=((& QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget) + 16u) + QGraphicsWidget (0x7faaa6cb5000) 0 + primary-for QGraphicsProxyWidget (0x7faaa6cb08c0) + QGraphicsObject (0x7faaa6cb5080) 0 + primary-for QGraphicsWidget (0x7faaa6cb5000) + QObject (0x7faaa6cb0930) 0 + primary-for QGraphicsObject (0x7faaa6cb5080) + QGraphicsItem (0x7faaa6cb09a0) 16 + vptr=((& QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget) + 480u) + QGraphicsLayoutItem (0x7faaa6cb0a10) 32 + vptr=((& QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget) + 792u) + +Vtable for QGraphicsScene +QGraphicsScene::_ZTV14QGraphicsScene: 34u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QGraphicsScene) +16 QGraphicsScene::metaObject +24 QGraphicsScene::qt_metacast +32 QGraphicsScene::qt_metacall +40 QGraphicsScene::~QGraphicsScene +48 QGraphicsScene::~QGraphicsScene +56 QGraphicsScene::event +64 QGraphicsScene::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsScene::inputMethodQuery +120 QGraphicsScene::contextMenuEvent +128 QGraphicsScene::dragEnterEvent +136 QGraphicsScene::dragMoveEvent +144 QGraphicsScene::dragLeaveEvent +152 QGraphicsScene::dropEvent +160 QGraphicsScene::focusInEvent +168 QGraphicsScene::focusOutEvent +176 QGraphicsScene::helpEvent +184 QGraphicsScene::keyPressEvent +192 QGraphicsScene::keyReleaseEvent +200 QGraphicsScene::mousePressEvent +208 QGraphicsScene::mouseMoveEvent +216 QGraphicsScene::mouseReleaseEvent +224 QGraphicsScene::mouseDoubleClickEvent +232 QGraphicsScene::wheelEvent +240 QGraphicsScene::inputMethodEvent +248 QGraphicsScene::drawBackground +256 QGraphicsScene::drawForeground +264 QGraphicsScene::drawItems + +Class QGraphicsScene + size=16 align=8 + base size=16 base align=8 +QGraphicsScene (0x7faaa6adb930) 0 + vptr=((& QGraphicsScene::_ZTV14QGraphicsScene) + 16u) + QObject (0x7faaa6adb9a0) 0 + primary-for QGraphicsScene (0x7faaa6adb930) + +Vtable for QGraphicsSceneEvent +QGraphicsSceneEvent::_ZTV19QGraphicsSceneEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QGraphicsSceneEvent) +16 QGraphicsSceneEvent::~QGraphicsSceneEvent +24 QGraphicsSceneEvent::~QGraphicsSceneEvent + +Class QGraphicsSceneEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneEvent (0x7faaa6b8f850) 0 + vptr=((& QGraphicsSceneEvent::_ZTV19QGraphicsSceneEvent) + 16u) + QEvent (0x7faaa6b8f8c0) 0 + primary-for QGraphicsSceneEvent (0x7faaa6b8f850) + +Vtable for QGraphicsSceneMouseEvent +QGraphicsSceneMouseEvent::_ZTV24QGraphicsSceneMouseEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QGraphicsSceneMouseEvent) +16 QGraphicsSceneMouseEvent::~QGraphicsSceneMouseEvent +24 QGraphicsSceneMouseEvent::~QGraphicsSceneMouseEvent + +Class QGraphicsSceneMouseEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneMouseEvent (0x7faaa6bbd310) 0 + vptr=((& QGraphicsSceneMouseEvent::_ZTV24QGraphicsSceneMouseEvent) + 16u) + QGraphicsSceneEvent (0x7faaa6bbd380) 0 + primary-for QGraphicsSceneMouseEvent (0x7faaa6bbd310) + QEvent (0x7faaa6bbd3f0) 0 + primary-for QGraphicsSceneEvent (0x7faaa6bbd380) + +Vtable for QGraphicsSceneWheelEvent +QGraphicsSceneWheelEvent::_ZTV24QGraphicsSceneWheelEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QGraphicsSceneWheelEvent) +16 QGraphicsSceneWheelEvent::~QGraphicsSceneWheelEvent +24 QGraphicsSceneWheelEvent::~QGraphicsSceneWheelEvent + +Class QGraphicsSceneWheelEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneWheelEvent (0x7faaa6bbdcb0) 0 + vptr=((& QGraphicsSceneWheelEvent::_ZTV24QGraphicsSceneWheelEvent) + 16u) + QGraphicsSceneEvent (0x7faaa6bbdd20) 0 + primary-for QGraphicsSceneWheelEvent (0x7faaa6bbdcb0) + QEvent (0x7faaa6bbdd90) 0 + primary-for QGraphicsSceneEvent (0x7faaa6bbdd20) + +Vtable for QGraphicsSceneContextMenuEvent +QGraphicsSceneContextMenuEvent::_ZTV30QGraphicsSceneContextMenuEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI30QGraphicsSceneContextMenuEvent) +16 QGraphicsSceneContextMenuEvent::~QGraphicsSceneContextMenuEvent +24 QGraphicsSceneContextMenuEvent::~QGraphicsSceneContextMenuEvent + +Class QGraphicsSceneContextMenuEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneContextMenuEvent (0x7faaa69d45b0) 0 + vptr=((& QGraphicsSceneContextMenuEvent::_ZTV30QGraphicsSceneContextMenuEvent) + 16u) + QGraphicsSceneEvent (0x7faaa69d4620) 0 + primary-for QGraphicsSceneContextMenuEvent (0x7faaa69d45b0) + QEvent (0x7faaa69d4690) 0 + primary-for QGraphicsSceneEvent (0x7faaa69d4620) + +Vtable for QGraphicsSceneHoverEvent +QGraphicsSceneHoverEvent::_ZTV24QGraphicsSceneHoverEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QGraphicsSceneHoverEvent) +16 QGraphicsSceneHoverEvent::~QGraphicsSceneHoverEvent +24 QGraphicsSceneHoverEvent::~QGraphicsSceneHoverEvent + +Class QGraphicsSceneHoverEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneHoverEvent (0x7faaa69e00e0) 0 + vptr=((& QGraphicsSceneHoverEvent::_ZTV24QGraphicsSceneHoverEvent) + 16u) + QGraphicsSceneEvent (0x7faaa69e0150) 0 + primary-for QGraphicsSceneHoverEvent (0x7faaa69e00e0) + QEvent (0x7faaa69e01c0) 0 + primary-for QGraphicsSceneEvent (0x7faaa69e0150) + +Vtable for QGraphicsSceneHelpEvent +QGraphicsSceneHelpEvent::_ZTV23QGraphicsSceneHelpEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QGraphicsSceneHelpEvent) +16 QGraphicsSceneHelpEvent::~QGraphicsSceneHelpEvent +24 QGraphicsSceneHelpEvent::~QGraphicsSceneHelpEvent + +Class QGraphicsSceneHelpEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneHelpEvent (0x7faaa69e0a80) 0 + vptr=((& QGraphicsSceneHelpEvent::_ZTV23QGraphicsSceneHelpEvent) + 16u) + QGraphicsSceneEvent (0x7faaa69e0af0) 0 + primary-for QGraphicsSceneHelpEvent (0x7faaa69e0a80) + QEvent (0x7faaa69e0b60) 0 + primary-for QGraphicsSceneEvent (0x7faaa69e0af0) + +Vtable for QGraphicsSceneDragDropEvent +QGraphicsSceneDragDropEvent::_ZTV27QGraphicsSceneDragDropEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QGraphicsSceneDragDropEvent) +16 QGraphicsSceneDragDropEvent::~QGraphicsSceneDragDropEvent +24 QGraphicsSceneDragDropEvent::~QGraphicsSceneDragDropEvent + +Class QGraphicsSceneDragDropEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneDragDropEvent (0x7faaa69f3380) 0 + vptr=((& QGraphicsSceneDragDropEvent::_ZTV27QGraphicsSceneDragDropEvent) + 16u) + QGraphicsSceneEvent (0x7faaa69f33f0) 0 + primary-for QGraphicsSceneDragDropEvent (0x7faaa69f3380) + QEvent (0x7faaa69f3460) 0 + primary-for QGraphicsSceneEvent (0x7faaa69f33f0) + +Vtable for QGraphicsSceneResizeEvent +QGraphicsSceneResizeEvent::_ZTV25QGraphicsSceneResizeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QGraphicsSceneResizeEvent) +16 QGraphicsSceneResizeEvent::~QGraphicsSceneResizeEvent +24 QGraphicsSceneResizeEvent::~QGraphicsSceneResizeEvent + +Class QGraphicsSceneResizeEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneResizeEvent (0x7faaa69f3d20) 0 + vptr=((& QGraphicsSceneResizeEvent::_ZTV25QGraphicsSceneResizeEvent) + 16u) + QGraphicsSceneEvent (0x7faaa69f3d90) 0 + primary-for QGraphicsSceneResizeEvent (0x7faaa69f3d20) + QEvent (0x7faaa69f3e00) 0 + primary-for QGraphicsSceneEvent (0x7faaa69f3d90) + +Vtable for QGraphicsSceneMoveEvent +QGraphicsSceneMoveEvent::_ZTV23QGraphicsSceneMoveEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QGraphicsSceneMoveEvent) +16 QGraphicsSceneMoveEvent::~QGraphicsSceneMoveEvent +24 QGraphicsSceneMoveEvent::~QGraphicsSceneMoveEvent + +Class QGraphicsSceneMoveEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneMoveEvent (0x7faaa6a07460) 0 + vptr=((& QGraphicsSceneMoveEvent::_ZTV23QGraphicsSceneMoveEvent) + 16u) + QGraphicsSceneEvent (0x7faaa6a074d0) 0 + primary-for QGraphicsSceneMoveEvent (0x7faaa6a07460) + QEvent (0x7faaa6a07540) 0 + primary-for QGraphicsSceneEvent (0x7faaa6a074d0) + +Vtable for QGraphicsTransform +QGraphicsTransform::_ZTV18QGraphicsTransform: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QGraphicsTransform) +16 QGraphicsTransform::metaObject +24 QGraphicsTransform::qt_metacast +32 QGraphicsTransform::qt_metacall +40 QGraphicsTransform::~QGraphicsTransform +48 QGraphicsTransform::~QGraphicsTransform +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual + +Class QGraphicsTransform + size=16 align=8 + base size=16 base align=8 +QGraphicsTransform (0x7faaa6a07c40) 0 + vptr=((& QGraphicsTransform::_ZTV18QGraphicsTransform) + 16u) + QObject (0x7faaa6a07cb0) 0 + primary-for QGraphicsTransform (0x7faaa6a07c40) + +Vtable for QGraphicsScale +QGraphicsScale::_ZTV14QGraphicsScale: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QGraphicsScale) +16 QGraphicsScale::metaObject +24 QGraphicsScale::qt_metacast +32 QGraphicsScale::qt_metacall +40 QGraphicsScale::~QGraphicsScale +48 QGraphicsScale::~QGraphicsScale +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsScale::applyTo + +Class QGraphicsScale + size=16 align=8 + base size=16 base align=8 +QGraphicsScale (0x7faaa6a25150) 0 + vptr=((& QGraphicsScale::_ZTV14QGraphicsScale) + 16u) + QGraphicsTransform (0x7faaa6a251c0) 0 + primary-for QGraphicsScale (0x7faaa6a25150) + QObject (0x7faaa6a25230) 0 + primary-for QGraphicsTransform (0x7faaa6a251c0) + +Vtable for QGraphicsRotation +QGraphicsRotation::_ZTV17QGraphicsRotation: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QGraphicsRotation) +16 QGraphicsRotation::metaObject +24 QGraphicsRotation::qt_metacast +32 QGraphicsRotation::qt_metacall +40 QGraphicsRotation::~QGraphicsRotation +48 QGraphicsRotation::~QGraphicsRotation +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsRotation::applyTo + +Class QGraphicsRotation + size=16 align=8 + base size=16 base align=8 +QGraphicsRotation (0x7faaa6a39620) 0 + vptr=((& QGraphicsRotation::_ZTV17QGraphicsRotation) + 16u) + QGraphicsTransform (0x7faaa6a39690) 0 + primary-for QGraphicsRotation (0x7faaa6a39620) + QObject (0x7faaa6a39700) 0 + primary-for QGraphicsTransform (0x7faaa6a39690) + +Vtable for QScrollArea +QScrollArea::_ZTV11QScrollArea: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QScrollArea) +16 QScrollArea::metaObject +24 QScrollArea::qt_metacast +32 QScrollArea::qt_metacall +40 QScrollArea::~QScrollArea +48 QScrollArea::~QScrollArea +56 QScrollArea::event +64 QScrollArea::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractScrollArea::mousePressEvent +168 QAbstractScrollArea::mouseReleaseEvent +176 QAbstractScrollArea::mouseDoubleClickEvent +184 QAbstractScrollArea::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractScrollArea::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractScrollArea::paintEvent +256 QWidget::moveEvent +264 QScrollArea::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractScrollArea::dragEnterEvent +312 QAbstractScrollArea::dragMoveEvent +320 QAbstractScrollArea::dragLeaveEvent +328 QAbstractScrollArea::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QScrollArea::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QScrollArea::scrollContentsBy +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI11QScrollArea) +480 QScrollArea::_ZThn16_N11QScrollAreaD1Ev +488 QScrollArea::_ZThn16_N11QScrollAreaD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QScrollArea + size=40 align=8 + base size=40 base align=8 +QScrollArea (0x7faaa6a4baf0) 0 + vptr=((& QScrollArea::_ZTV11QScrollArea) + 16u) + QAbstractScrollArea (0x7faaa6a4bb60) 0 + primary-for QScrollArea (0x7faaa6a4baf0) + QFrame (0x7faaa6a4bbd0) 0 + primary-for QAbstractScrollArea (0x7faaa6a4bb60) + QWidget (0x7faaa6a3ac80) 0 + primary-for QFrame (0x7faaa6a4bbd0) + QObject (0x7faaa6a4bc40) 0 + primary-for QWidget (0x7faaa6a3ac80) + QPaintDevice (0x7faaa6a4bcb0) 16 + vptr=((& QScrollArea::_ZTV11QScrollArea) + 480u) + +Vtable for QGraphicsView +QGraphicsView::_ZTV13QGraphicsView: 68u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QGraphicsView) +16 QGraphicsView::metaObject +24 QGraphicsView::qt_metacast +32 QGraphicsView::qt_metacall +40 QGraphicsView::~QGraphicsView +48 QGraphicsView::~QGraphicsView +56 QGraphicsView::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QGraphicsView::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QGraphicsView::mousePressEvent +168 QGraphicsView::mouseReleaseEvent +176 QGraphicsView::mouseDoubleClickEvent +184 QGraphicsView::mouseMoveEvent +192 QGraphicsView::wheelEvent +200 QGraphicsView::keyPressEvent +208 QGraphicsView::keyReleaseEvent +216 QGraphicsView::focusInEvent +224 QGraphicsView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QGraphicsView::paintEvent +256 QWidget::moveEvent +264 QGraphicsView::resizeEvent +272 QWidget::closeEvent +280 QGraphicsView::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QGraphicsView::dragEnterEvent +312 QGraphicsView::dragMoveEvent +320 QGraphicsView::dragLeaveEvent +328 QGraphicsView::dropEvent +336 QGraphicsView::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QGraphicsView::inputMethodEvent +384 QGraphicsView::inputMethodQuery +392 QGraphicsView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QGraphicsView::viewportEvent +456 QGraphicsView::scrollContentsBy +464 QGraphicsView::drawBackground +472 QGraphicsView::drawForeground +480 QGraphicsView::drawItems +488 (int (*)(...))-0x00000000000000010 +496 (int (*)(...))(& _ZTI13QGraphicsView) +504 QGraphicsView::_ZThn16_N13QGraphicsViewD1Ev +512 QGraphicsView::_ZThn16_N13QGraphicsViewD0Ev +520 QWidget::_ZThn16_NK7QWidget7devTypeEv +528 QWidget::_ZThn16_NK7QWidget11paintEngineEv +536 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QGraphicsView + size=40 align=8 + base size=40 base align=8 +QGraphicsView (0x7faaa6a6da10) 0 + vptr=((& QGraphicsView::_ZTV13QGraphicsView) + 16u) + QAbstractScrollArea (0x7faaa6a6da80) 0 + primary-for QGraphicsView (0x7faaa6a6da10) + QFrame (0x7faaa6a6daf0) 0 + primary-for QAbstractScrollArea (0x7faaa6a6da80) + QWidget (0x7faaa6a68680) 0 + primary-for QFrame (0x7faaa6a6daf0) + QObject (0x7faaa6a6db60) 0 + primary-for QWidget (0x7faaa6a68680) + QPaintDevice (0x7faaa6a6dbd0) 16 + vptr=((& QGraphicsView::_ZTV13QGraphicsView) + 504u) + +Vtable for QAbstractButton +QAbstractButton::_ZTV15QAbstractButton: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QAbstractButton) +16 QAbstractButton::metaObject +24 QAbstractButton::qt_metacast +32 QAbstractButton::qt_metacall +40 QAbstractButton::~QAbstractButton +48 QAbstractButton::~QAbstractButton +56 QAbstractButton::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QAbstractButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QAbstractButton::focusInEvent +224 QAbstractButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 __cxa_pure_virtual +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractButton::hitButton +456 QAbstractButton::checkStateSet +464 QAbstractButton::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI15QAbstractButton) +488 QAbstractButton::_ZThn16_N15QAbstractButtonD1Ev +496 QAbstractButton::_ZThn16_N15QAbstractButtonD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractButton + size=40 align=8 + base size=40 base align=8 +QAbstractButton (0x7faaa695dee0) 0 + vptr=((& QAbstractButton::_ZTV15QAbstractButton) + 16u) + QWidget (0x7faaa6966380) 0 + primary-for QAbstractButton (0x7faaa695dee0) + QObject (0x7faaa695df50) 0 + primary-for QWidget (0x7faaa6966380) + QPaintDevice (0x7faaa696b000) 16 + vptr=((& QAbstractButton::_ZTV15QAbstractButton) + 488u) + +Vtable for QButtonGroup +QButtonGroup::_ZTV12QButtonGroup: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QButtonGroup) +16 QButtonGroup::metaObject +24 QButtonGroup::qt_metacast +32 QButtonGroup::qt_metacall +40 QButtonGroup::~QButtonGroup +48 QButtonGroup::~QButtonGroup +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QButtonGroup + size=16 align=8 + base size=16 base align=8 +QButtonGroup (0x7faaa699c310) 0 + vptr=((& QButtonGroup::_ZTV12QButtonGroup) + 16u) + QObject (0x7faaa699c380) 0 + primary-for QButtonGroup (0x7faaa699c310) + +Vtable for QCalendarWidget +QCalendarWidget::_ZTV15QCalendarWidget: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QCalendarWidget) +16 QCalendarWidget::metaObject +24 QCalendarWidget::qt_metacast +32 QCalendarWidget::qt_metacall +40 QCalendarWidget::~QCalendarWidget +48 QCalendarWidget::~QCalendarWidget +56 QCalendarWidget::event +64 QCalendarWidget::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QCalendarWidget::sizeHint +136 QCalendarWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QCalendarWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QCalendarWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QCalendarWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QCalendarWidget::paintCell +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI15QCalendarWidget) +472 QCalendarWidget::_ZThn16_N15QCalendarWidgetD1Ev +480 QCalendarWidget::_ZThn16_N15QCalendarWidgetD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QCalendarWidget + size=40 align=8 + base size=40 base align=8 +QCalendarWidget (0x7faaa69b4f50) 0 + vptr=((& QCalendarWidget::_ZTV15QCalendarWidget) + 16u) + QWidget (0x7faaa69b1900) 0 + primary-for QCalendarWidget (0x7faaa69b4f50) + QObject (0x7faaa69bb000) 0 + primary-for QWidget (0x7faaa69b1900) + QPaintDevice (0x7faaa69bb070) 16 + vptr=((& QCalendarWidget::_ZTV15QCalendarWidget) + 472u) + +Vtable for QCheckBox +QCheckBox::_ZTV9QCheckBox: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QCheckBox) +16 QCheckBox::metaObject +24 QCheckBox::qt_metacast +32 QCheckBox::qt_metacall +40 QCheckBox::~QCheckBox +48 QCheckBox::~QCheckBox +56 QCheckBox::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QCheckBox::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QCheckBox::mouseMoveEvent +192 QWidget::wheelEvent +200 QAbstractButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QAbstractButton::focusInEvent +224 QAbstractButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QCheckBox::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QCheckBox::hitButton +456 QCheckBox::checkStateSet +464 QCheckBox::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI9QCheckBox) +488 QCheckBox::_ZThn16_N9QCheckBoxD1Ev +496 QCheckBox::_ZThn16_N9QCheckBoxD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QCheckBox + size=40 align=8 + base size=40 base align=8 +QCheckBox (0x7faaa67e80e0) 0 + vptr=((& QCheckBox::_ZTV9QCheckBox) + 16u) + QAbstractButton (0x7faaa67e8150) 0 + primary-for QCheckBox (0x7faaa67e80e0) + QWidget (0x7faaa67da900) 0 + primary-for QAbstractButton (0x7faaa67e8150) + QObject (0x7faaa67e81c0) 0 + primary-for QWidget (0x7faaa67da900) + QPaintDevice (0x7faaa67e8230) 16 + vptr=((& QCheckBox::_ZTV9QCheckBox) + 488u) + +Vtable for QComboBox +QComboBox::_ZTV9QComboBox: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QComboBox) +16 QComboBox::metaObject +24 QComboBox::qt_metacast +32 QComboBox::qt_metacall +40 QComboBox::~QComboBox +48 QComboBox::~QComboBox +56 QComboBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QComboBox::sizeHint +136 QComboBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QComboBox::mousePressEvent +168 QComboBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QComboBox::wheelEvent +200 QComboBox::keyPressEvent +208 QComboBox::keyReleaseEvent +216 QComboBox::focusInEvent +224 QComboBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QComboBox::paintEvent +256 QWidget::moveEvent +264 QComboBox::resizeEvent +272 QWidget::closeEvent +280 QComboBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QComboBox::showEvent +344 QComboBox::hideEvent +352 QWidget::x11Event +360 QComboBox::changeEvent +368 QWidget::metric +376 QComboBox::inputMethodEvent +384 QComboBox::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QComboBox::showPopup +456 QComboBox::hidePopup +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI9QComboBox) +480 QComboBox::_ZThn16_N9QComboBoxD1Ev +488 QComboBox::_ZThn16_N9QComboBoxD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QComboBox + size=40 align=8 + base size=40 base align=8 +QComboBox (0x7faaa680a8c0) 0 + vptr=((& QComboBox::_ZTV9QComboBox) + 16u) + QWidget (0x7faaa6804900) 0 + primary-for QComboBox (0x7faaa680a8c0) + QObject (0x7faaa680a930) 0 + primary-for QWidget (0x7faaa6804900) + QPaintDevice (0x7faaa680a9a0) 16 + vptr=((& QComboBox::_ZTV9QComboBox) + 480u) + +Vtable for QPushButton +QPushButton::_ZTV11QPushButton: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QPushButton) +16 QPushButton::metaObject +24 QPushButton::qt_metacast +32 QPushButton::qt_metacall +40 QPushButton::~QPushButton +48 QPushButton::~QPushButton +56 QPushButton::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QPushButton::sizeHint +136 QPushButton::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QPushButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QPushButton::focusInEvent +224 QPushButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QPushButton::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractButton::hitButton +456 QAbstractButton::checkStateSet +464 QAbstractButton::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11QPushButton) +488 QPushButton::_ZThn16_N11QPushButtonD1Ev +496 QPushButton::_ZThn16_N11QPushButtonD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPushButton + size=40 align=8 + base size=40 base align=8 +QPushButton (0x7faaa68783f0) 0 + vptr=((& QPushButton::_ZTV11QPushButton) + 16u) + QAbstractButton (0x7faaa6878460) 0 + primary-for QPushButton (0x7faaa68783f0) + QWidget (0x7faaa6874600) 0 + primary-for QAbstractButton (0x7faaa6878460) + QObject (0x7faaa68784d0) 0 + primary-for QWidget (0x7faaa6874600) + QPaintDevice (0x7faaa6878540) 16 + vptr=((& QPushButton::_ZTV11QPushButton) + 488u) + +Vtable for QCommandLinkButton +QCommandLinkButton::_ZTV18QCommandLinkButton: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QCommandLinkButton) +16 QCommandLinkButton::metaObject +24 QCommandLinkButton::qt_metacast +32 QCommandLinkButton::qt_metacall +40 QCommandLinkButton::~QCommandLinkButton +48 QCommandLinkButton::~QCommandLinkButton +56 QCommandLinkButton::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QCommandLinkButton::sizeHint +136 QCommandLinkButton::minimumSizeHint +144 QCommandLinkButton::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QPushButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QPushButton::focusInEvent +224 QPushButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QCommandLinkButton::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractButton::hitButton +456 QAbstractButton::checkStateSet +464 QAbstractButton::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI18QCommandLinkButton) +488 QCommandLinkButton::_ZThn16_N18QCommandLinkButtonD1Ev +496 QCommandLinkButton::_ZThn16_N18QCommandLinkButtonD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QCommandLinkButton + size=40 align=8 + base size=40 base align=8 +QCommandLinkButton (0x7faaa689dd20) 0 + vptr=((& QCommandLinkButton::_ZTV18QCommandLinkButton) + 16u) + QPushButton (0x7faaa689dd90) 0 + primary-for QCommandLinkButton (0x7faaa689dd20) + QAbstractButton (0x7faaa689de00) 0 + primary-for QPushButton (0x7faaa689dd90) + QWidget (0x7faaa689f600) 0 + primary-for QAbstractButton (0x7faaa689de00) + QObject (0x7faaa689de70) 0 + primary-for QWidget (0x7faaa689f600) + QPaintDevice (0x7faaa689dee0) 16 + vptr=((& QCommandLinkButton::_ZTV18QCommandLinkButton) + 488u) + +Vtable for QDateTimeEdit +QDateTimeEdit::_ZTV13QDateTimeEdit: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QDateTimeEdit) +16 QDateTimeEdit::metaObject +24 QDateTimeEdit::qt_metacast +32 QDateTimeEdit::qt_metacall +40 QDateTimeEdit::~QDateTimeEdit +48 QDateTimeEdit::~QDateTimeEdit +56 QDateTimeEdit::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QDateTimeEdit::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QDateTimeEdit::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QDateTimeEdit::wheelEvent +200 QDateTimeEdit::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QDateTimeEdit::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QDateTimeEdit::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QAbstractSpinBox::inputMethodQuery +392 QDateTimeEdit::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDateTimeEdit::validate +456 QDateTimeEdit::fixup +464 QDateTimeEdit::stepBy +472 QDateTimeEdit::clear +480 QDateTimeEdit::stepEnabled +488 QDateTimeEdit::dateTimeFromText +496 QDateTimeEdit::textFromDateTime +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI13QDateTimeEdit) +520 QDateTimeEdit::_ZThn16_N13QDateTimeEditD1Ev +528 QDateTimeEdit::_ZThn16_N13QDateTimeEditD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDateTimeEdit + size=40 align=8 + base size=40 base align=8 +QDateTimeEdit (0x7faaa68ba8c0) 0 + vptr=((& QDateTimeEdit::_ZTV13QDateTimeEdit) + 16u) + QAbstractSpinBox (0x7faaa68ba930) 0 + primary-for QDateTimeEdit (0x7faaa68ba8c0) + QWidget (0x7faaa68c1000) 0 + primary-for QAbstractSpinBox (0x7faaa68ba930) + QObject (0x7faaa68ba9a0) 0 + primary-for QWidget (0x7faaa68c1000) + QPaintDevice (0x7faaa68baa10) 16 + vptr=((& QDateTimeEdit::_ZTV13QDateTimeEdit) + 520u) + +Vtable for QTimeEdit +QTimeEdit::_ZTV9QTimeEdit: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTimeEdit) +16 QTimeEdit::metaObject +24 QTimeEdit::qt_metacast +32 QTimeEdit::qt_metacall +40 QTimeEdit::~QTimeEdit +48 QTimeEdit::~QTimeEdit +56 QDateTimeEdit::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QDateTimeEdit::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QDateTimeEdit::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QDateTimeEdit::wheelEvent +200 QDateTimeEdit::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QDateTimeEdit::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QDateTimeEdit::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QAbstractSpinBox::inputMethodQuery +392 QDateTimeEdit::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDateTimeEdit::validate +456 QDateTimeEdit::fixup +464 QDateTimeEdit::stepBy +472 QDateTimeEdit::clear +480 QDateTimeEdit::stepEnabled +488 QDateTimeEdit::dateTimeFromText +496 QDateTimeEdit::textFromDateTime +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI9QTimeEdit) +520 QTimeEdit::_ZThn16_N9QTimeEditD1Ev +528 QTimeEdit::_ZThn16_N9QTimeEditD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTimeEdit + size=40 align=8 + base size=40 base align=8 +QTimeEdit (0x7faaa66ea7e0) 0 + vptr=((& QTimeEdit::_ZTV9QTimeEdit) + 16u) + QDateTimeEdit (0x7faaa66ea850) 0 + primary-for QTimeEdit (0x7faaa66ea7e0) + QAbstractSpinBox (0x7faaa66ea8c0) 0 + primary-for QDateTimeEdit (0x7faaa66ea850) + QWidget (0x7faaa68c1f80) 0 + primary-for QAbstractSpinBox (0x7faaa66ea8c0) + QObject (0x7faaa66ea930) 0 + primary-for QWidget (0x7faaa68c1f80) + QPaintDevice (0x7faaa66ea9a0) 16 + vptr=((& QTimeEdit::_ZTV9QTimeEdit) + 520u) + +Vtable for QDateEdit +QDateEdit::_ZTV9QDateEdit: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QDateEdit) +16 QDateEdit::metaObject +24 QDateEdit::qt_metacast +32 QDateEdit::qt_metacall +40 QDateEdit::~QDateEdit +48 QDateEdit::~QDateEdit +56 QDateTimeEdit::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QDateTimeEdit::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QDateTimeEdit::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QDateTimeEdit::wheelEvent +200 QDateTimeEdit::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QDateTimeEdit::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QDateTimeEdit::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QAbstractSpinBox::inputMethodQuery +392 QDateTimeEdit::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDateTimeEdit::validate +456 QDateTimeEdit::fixup +464 QDateTimeEdit::stepBy +472 QDateTimeEdit::clear +480 QDateTimeEdit::stepEnabled +488 QDateTimeEdit::dateTimeFromText +496 QDateTimeEdit::textFromDateTime +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI9QDateEdit) +520 QDateEdit::_ZThn16_N9QDateEditD1Ev +528 QDateEdit::_ZThn16_N9QDateEditD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDateEdit + size=40 align=8 + base size=40 base align=8 +QDateEdit (0x7faaa67008c0) 0 + vptr=((& QDateEdit::_ZTV9QDateEdit) + 16u) + QDateTimeEdit (0x7faaa6700930) 0 + primary-for QDateEdit (0x7faaa67008c0) + QAbstractSpinBox (0x7faaa67009a0) 0 + primary-for QDateTimeEdit (0x7faaa6700930) + QWidget (0x7faaa66f0680) 0 + primary-for QAbstractSpinBox (0x7faaa67009a0) + QObject (0x7faaa6700a10) 0 + primary-for QWidget (0x7faaa66f0680) + QPaintDevice (0x7faaa6700a80) 16 + vptr=((& QDateEdit::_ZTV9QDateEdit) + 520u) + +Vtable for QDial +QDial::_ZTV5QDial: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QDial) +16 QDial::metaObject +24 QDial::qt_metacast +32 QDial::qt_metacall +40 QDial::~QDial +48 QDial::~QDial +56 QDial::event +64 QObject::eventFilter +72 QAbstractSlider::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QDial::sizeHint +136 QDial::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QDial::mousePressEvent +168 QDial::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QDial::mouseMoveEvent +192 QAbstractSlider::wheelEvent +200 QAbstractSlider::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QDial::paintEvent +256 QWidget::moveEvent +264 QDial::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractSlider::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDial::sliderChange +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI5QDial) +472 QDial::_ZThn16_N5QDialD1Ev +480 QDial::_ZThn16_N5QDialD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDial + size=40 align=8 + base size=40 base align=8 +QDial (0x7faaa6747690) 0 + vptr=((& QDial::_ZTV5QDial) + 16u) + QAbstractSlider (0x7faaa6747700) 0 + primary-for QDial (0x7faaa6747690) + QWidget (0x7faaa6748300) 0 + primary-for QAbstractSlider (0x7faaa6747700) + QObject (0x7faaa6747770) 0 + primary-for QWidget (0x7faaa6748300) + QPaintDevice (0x7faaa67477e0) 16 + vptr=((& QDial::_ZTV5QDial) + 472u) + +Vtable for QDialogButtonBox +QDialogButtonBox::_ZTV16QDialogButtonBox: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QDialogButtonBox) +16 QDialogButtonBox::metaObject +24 QDialogButtonBox::qt_metacast +32 QDialogButtonBox::qt_metacall +40 QDialogButtonBox::~QDialogButtonBox +48 QDialogButtonBox::~QDialogButtonBox +56 QDialogButtonBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QDialogButtonBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI16QDialogButtonBox) +464 QDialogButtonBox::_ZThn16_N16QDialogButtonBoxD1Ev +472 QDialogButtonBox::_ZThn16_N16QDialogButtonBoxD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDialogButtonBox + size=40 align=8 + base size=40 base align=8 +QDialogButtonBox (0x7faaa6785310) 0 + vptr=((& QDialogButtonBox::_ZTV16QDialogButtonBox) + 16u) + QWidget (0x7faaa6748d00) 0 + primary-for QDialogButtonBox (0x7faaa6785310) + QObject (0x7faaa6785380) 0 + primary-for QWidget (0x7faaa6748d00) + QPaintDevice (0x7faaa67853f0) 16 + vptr=((& QDialogButtonBox::_ZTV16QDialogButtonBox) + 464u) + +Vtable for QDockWidget +QDockWidget::_ZTV11QDockWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QDockWidget) +16 QDockWidget::metaObject +24 QDockWidget::qt_metacast +32 QDockWidget::qt_metacall +40 QDockWidget::~QDockWidget +48 QDockWidget::~QDockWidget +56 QDockWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QDockWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QDockWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QDockWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI11QDockWidget) +464 QDockWidget::_ZThn16_N11QDockWidgetD1Ev +472 QDockWidget::_ZThn16_N11QDockWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDockWidget + size=40 align=8 + base size=40 base align=8 +QDockWidget (0x7faaa65d87e0) 0 + vptr=((& QDockWidget::_ZTV11QDockWidget) + 16u) + QWidget (0x7faaa6792e80) 0 + primary-for QDockWidget (0x7faaa65d87e0) + QObject (0x7faaa65d8850) 0 + primary-for QWidget (0x7faaa6792e80) + QPaintDevice (0x7faaa65d88c0) 16 + vptr=((& QDockWidget::_ZTV11QDockWidget) + 464u) + +Vtable for QFocusFrame +QFocusFrame::_ZTV11QFocusFrame: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFocusFrame) +16 QFocusFrame::metaObject +24 QFocusFrame::qt_metacast +32 QFocusFrame::qt_metacall +40 QFocusFrame::~QFocusFrame +48 QFocusFrame::~QFocusFrame +56 QFocusFrame::event +64 QFocusFrame::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFocusFrame::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI11QFocusFrame) +464 QFocusFrame::_ZThn16_N11QFocusFrameD1Ev +472 QFocusFrame::_ZThn16_N11QFocusFrameD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFocusFrame + size=40 align=8 + base size=40 base align=8 +QFocusFrame (0x7faaa667b230) 0 + vptr=((& QFocusFrame::_ZTV11QFocusFrame) + 16u) + QWidget (0x7faaa662c680) 0 + primary-for QFocusFrame (0x7faaa667b230) + QObject (0x7faaa667b2a0) 0 + primary-for QWidget (0x7faaa662c680) + QPaintDevice (0x7faaa667b310) 16 + vptr=((& QFocusFrame::_ZTV11QFocusFrame) + 464u) + +Vtable for QFontComboBox +QFontComboBox::_ZTV13QFontComboBox: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QFontComboBox) +16 QFontComboBox::metaObject +24 QFontComboBox::qt_metacast +32 QFontComboBox::qt_metacall +40 QFontComboBox::~QFontComboBox +48 QFontComboBox::~QFontComboBox +56 QFontComboBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QFontComboBox::sizeHint +136 QComboBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QComboBox::mousePressEvent +168 QComboBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QComboBox::wheelEvent +200 QComboBox::keyPressEvent +208 QComboBox::keyReleaseEvent +216 QComboBox::focusInEvent +224 QComboBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QComboBox::paintEvent +256 QWidget::moveEvent +264 QComboBox::resizeEvent +272 QWidget::closeEvent +280 QComboBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QComboBox::showEvent +344 QComboBox::hideEvent +352 QWidget::x11Event +360 QComboBox::changeEvent +368 QWidget::metric +376 QComboBox::inputMethodEvent +384 QComboBox::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QComboBox::showPopup +456 QComboBox::hidePopup +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI13QFontComboBox) +480 QFontComboBox::_ZThn16_N13QFontComboBoxD1Ev +488 QFontComboBox::_ZThn16_N13QFontComboBoxD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFontComboBox + size=40 align=8 + base size=40 base align=8 +QFontComboBox (0x7faaa668dd90) 0 + vptr=((& QFontComboBox::_ZTV13QFontComboBox) + 16u) + QComboBox (0x7faaa668de00) 0 + primary-for QFontComboBox (0x7faaa668dd90) + QWidget (0x7faaa6695080) 0 + primary-for QComboBox (0x7faaa668de00) + QObject (0x7faaa668de70) 0 + primary-for QWidget (0x7faaa6695080) + QPaintDevice (0x7faaa668dee0) 16 + vptr=((& QFontComboBox::_ZTV13QFontComboBox) + 480u) + +Vtable for QGroupBox +QGroupBox::_ZTV9QGroupBox: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QGroupBox) +16 QGroupBox::metaObject +24 QGroupBox::qt_metacast +32 QGroupBox::qt_metacall +40 QGroupBox::~QGroupBox +48 QGroupBox::~QGroupBox +56 QGroupBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QGroupBox::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QGroupBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QGroupBox::mousePressEvent +168 QGroupBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QGroupBox::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QGroupBox::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QGroupBox::paintEvent +256 QWidget::moveEvent +264 QGroupBox::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QGroupBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI9QGroupBox) +464 QGroupBox::_ZThn16_N9QGroupBoxD1Ev +472 QGroupBox::_ZThn16_N9QGroupBoxD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QGroupBox + size=40 align=8 + base size=40 base align=8 +QGroupBox (0x7faaa64dda80) 0 + vptr=((& QGroupBox::_ZTV9QGroupBox) + 16u) + QWidget (0x7faaa64df280) 0 + primary-for QGroupBox (0x7faaa64dda80) + QObject (0x7faaa64ddaf0) 0 + primary-for QWidget (0x7faaa64df280) + QPaintDevice (0x7faaa64ddb60) 16 + vptr=((& QGroupBox::_ZTV9QGroupBox) + 464u) + +Vtable for QLabel +QLabel::_ZTV6QLabel: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QLabel) +16 QLabel::metaObject +24 QLabel::qt_metacast +32 QLabel::qt_metacall +40 QLabel::~QLabel +48 QLabel::~QLabel +56 QLabel::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QLabel::sizeHint +136 QLabel::minimumSizeHint +144 QLabel::heightForWidth +152 QWidget::paintEngine +160 QLabel::mousePressEvent +168 QLabel::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QLabel::mouseMoveEvent +192 QWidget::wheelEvent +200 QLabel::keyPressEvent +208 QWidget::keyReleaseEvent +216 QLabel::focusInEvent +224 QLabel::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QLabel::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QLabel::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QLabel::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QLabel::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI6QLabel) +464 QLabel::_ZThn16_N6QLabelD1Ev +472 QLabel::_ZThn16_N6QLabelD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QLabel + size=40 align=8 + base size=40 base align=8 +QLabel (0x7faaa651c700) 0 + vptr=((& QLabel::_ZTV6QLabel) + 16u) + QFrame (0x7faaa651c770) 0 + primary-for QLabel (0x7faaa651c700) + QWidget (0x7faaa64dfc80) 0 + primary-for QFrame (0x7faaa651c770) + QObject (0x7faaa651c7e0) 0 + primary-for QWidget (0x7faaa64dfc80) + QPaintDevice (0x7faaa651c850) 16 + vptr=((& QLabel::_ZTV6QLabel) + 464u) + +Vtable for QLCDNumber +QLCDNumber::_ZTV10QLCDNumber: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QLCDNumber) +16 QLCDNumber::metaObject +24 QLCDNumber::qt_metacast +32 QLCDNumber::qt_metacall +40 QLCDNumber::~QLCDNumber +48 QLCDNumber::~QLCDNumber +56 QLCDNumber::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QLCDNumber::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QLCDNumber::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI10QLCDNumber) +464 QLCDNumber::_ZThn16_N10QLCDNumberD1Ev +472 QLCDNumber::_ZThn16_N10QLCDNumberD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QLCDNumber + size=40 align=8 + base size=40 base align=8 +QLCDNumber (0x7faaa654c850) 0 + vptr=((& QLCDNumber::_ZTV10QLCDNumber) + 16u) + QFrame (0x7faaa654c8c0) 0 + primary-for QLCDNumber (0x7faaa654c850) + QWidget (0x7faaa6545880) 0 + primary-for QFrame (0x7faaa654c8c0) + QObject (0x7faaa654c930) 0 + primary-for QWidget (0x7faaa6545880) + QPaintDevice (0x7faaa654c9a0) 16 + vptr=((& QLCDNumber::_ZTV10QLCDNumber) + 464u) + +Vtable for QMainWindow +QMainWindow::_ZTV11QMainWindow: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMainWindow) +16 QMainWindow::metaObject +24 QMainWindow::qt_metacast +32 QMainWindow::qt_metacall +40 QMainWindow::~QMainWindow +48 QMainWindow::~QMainWindow +56 QMainWindow::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QMainWindow::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QMainWindow::createPopupMenu +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI11QMainWindow) +472 QMainWindow::_ZThn16_N11QMainWindowD1Ev +480 QMainWindow::_ZThn16_N11QMainWindowD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMainWindow + size=40 align=8 + base size=40 base align=8 +QMainWindow (0x7faaa6577230) 0 + vptr=((& QMainWindow::_ZTV11QMainWindow) + 16u) + QWidget (0x7faaa656ba00) 0 + primary-for QMainWindow (0x7faaa6577230) + QObject (0x7faaa65772a0) 0 + primary-for QWidget (0x7faaa656ba00) + QPaintDevice (0x7faaa6577310) 16 + vptr=((& QMainWindow::_ZTV11QMainWindow) + 472u) + +Vtable for QMdiArea +QMdiArea::_ZTV8QMdiArea: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QMdiArea) +16 QMdiArea::metaObject +24 QMdiArea::qt_metacast +32 QMdiArea::qt_metacall +40 QMdiArea::~QMdiArea +48 QMdiArea::~QMdiArea +56 QMdiArea::event +64 QMdiArea::eventFilter +72 QMdiArea::timerEvent +80 QMdiArea::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QMdiArea::sizeHint +136 QMdiArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractScrollArea::mousePressEvent +168 QAbstractScrollArea::mouseReleaseEvent +176 QAbstractScrollArea::mouseDoubleClickEvent +184 QAbstractScrollArea::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractScrollArea::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QMdiArea::paintEvent +256 QWidget::moveEvent +264 QMdiArea::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractScrollArea::dragEnterEvent +312 QAbstractScrollArea::dragMoveEvent +320 QAbstractScrollArea::dragLeaveEvent +328 QAbstractScrollArea::dropEvent +336 QMdiArea::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QMdiArea::viewportEvent +456 QMdiArea::scrollContentsBy +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI8QMdiArea) +480 QMdiArea::_ZThn16_N8QMdiAreaD1Ev +488 QMdiArea::_ZThn16_N8QMdiAreaD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMdiArea + size=40 align=8 + base size=40 base align=8 +QMdiArea (0x7faaa63f4540) 0 + vptr=((& QMdiArea::_ZTV8QMdiArea) + 16u) + QAbstractScrollArea (0x7faaa63f45b0) 0 + primary-for QMdiArea (0x7faaa63f4540) + QFrame (0x7faaa63f4620) 0 + primary-for QAbstractScrollArea (0x7faaa63f45b0) + QWidget (0x7faaa659dc00) 0 + primary-for QFrame (0x7faaa63f4620) + QObject (0x7faaa63f4690) 0 + primary-for QWidget (0x7faaa659dc00) + QPaintDevice (0x7faaa63f4700) 16 + vptr=((& QMdiArea::_ZTV8QMdiArea) + 480u) + +Vtable for QMdiSubWindow +QMdiSubWindow::_ZTV13QMdiSubWindow: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QMdiSubWindow) +16 QMdiSubWindow::metaObject +24 QMdiSubWindow::qt_metacast +32 QMdiSubWindow::qt_metacall +40 QMdiSubWindow::~QMdiSubWindow +48 QMdiSubWindow::~QMdiSubWindow +56 QMdiSubWindow::event +64 QMdiSubWindow::eventFilter +72 QMdiSubWindow::timerEvent +80 QMdiSubWindow::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QMdiSubWindow::sizeHint +136 QMdiSubWindow::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QMdiSubWindow::mousePressEvent +168 QMdiSubWindow::mouseReleaseEvent +176 QMdiSubWindow::mouseDoubleClickEvent +184 QMdiSubWindow::mouseMoveEvent +192 QWidget::wheelEvent +200 QMdiSubWindow::keyPressEvent +208 QWidget::keyReleaseEvent +216 QMdiSubWindow::focusInEvent +224 QMdiSubWindow::focusOutEvent +232 QWidget::enterEvent +240 QMdiSubWindow::leaveEvent +248 QMdiSubWindow::paintEvent +256 QMdiSubWindow::moveEvent +264 QMdiSubWindow::resizeEvent +272 QMdiSubWindow::closeEvent +280 QMdiSubWindow::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QMdiSubWindow::showEvent +344 QMdiSubWindow::hideEvent +352 QWidget::x11Event +360 QMdiSubWindow::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI13QMdiSubWindow) +464 QMdiSubWindow::_ZThn16_N13QMdiSubWindowD1Ev +472 QMdiSubWindow::_ZThn16_N13QMdiSubWindowD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMdiSubWindow + size=40 align=8 + base size=40 base align=8 +QMdiSubWindow (0x7faaa644ea80) 0 + vptr=((& QMdiSubWindow::_ZTV13QMdiSubWindow) + 16u) + QWidget (0x7faaa63fef00) 0 + primary-for QMdiSubWindow (0x7faaa644ea80) + QObject (0x7faaa644eaf0) 0 + primary-for QWidget (0x7faaa63fef00) + QPaintDevice (0x7faaa644eb60) 16 + vptr=((& QMdiSubWindow::_ZTV13QMdiSubWindow) + 464u) + +Vtable for QMenu +QMenu::_ZTV5QMenu: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QMenu) +16 QMenu::metaObject +24 QMenu::qt_metacast +32 QMenu::qt_metacall +40 QMenu::~QMenu +48 QMenu::~QMenu +56 QMenu::event +64 QObject::eventFilter +72 QMenu::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QMenu::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QMenu::mousePressEvent +168 QMenu::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QMenu::mouseMoveEvent +192 QMenu::wheelEvent +200 QMenu::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QMenu::enterEvent +240 QMenu::leaveEvent +248 QMenu::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QMenu::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QMenu::hideEvent +352 QWidget::x11Event +360 QMenu::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QMenu::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI5QMenu) +464 QMenu::_ZThn16_N5QMenuD1Ev +472 QMenu::_ZThn16_N5QMenuD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMenu + size=40 align=8 + base size=40 base align=8 +QMenu (0x7faaa64c6930) 0 + vptr=((& QMenu::_ZTV5QMenu) + 16u) + QWidget (0x7faaa62e9100) 0 + primary-for QMenu (0x7faaa64c6930) + QObject (0x7faaa64c69a0) 0 + primary-for QWidget (0x7faaa62e9100) + QPaintDevice (0x7faaa64c6a10) 16 + vptr=((& QMenu::_ZTV5QMenu) + 464u) + +Vtable for QMenuBar +QMenuBar::_ZTV8QMenuBar: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QMenuBar) +16 QMenuBar::metaObject +24 QMenuBar::qt_metacast +32 QMenuBar::qt_metacall +40 QMenuBar::~QMenuBar +48 QMenuBar::~QMenuBar +56 QMenuBar::event +64 QMenuBar::eventFilter +72 QMenuBar::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QMenuBar::setVisible +128 QMenuBar::sizeHint +136 QMenuBar::minimumSizeHint +144 QMenuBar::heightForWidth +152 QWidget::paintEngine +160 QMenuBar::mousePressEvent +168 QMenuBar::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QMenuBar::mouseMoveEvent +192 QWidget::wheelEvent +200 QMenuBar::keyPressEvent +208 QWidget::keyReleaseEvent +216 QMenuBar::focusInEvent +224 QMenuBar::focusOutEvent +232 QWidget::enterEvent +240 QMenuBar::leaveEvent +248 QMenuBar::paintEvent +256 QWidget::moveEvent +264 QMenuBar::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QMenuBar::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QMenuBar::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI8QMenuBar) +464 QMenuBar::_ZThn16_N8QMenuBarD1Ev +472 QMenuBar::_ZThn16_N8QMenuBarD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMenuBar + size=40 align=8 + base size=40 base align=8 +QMenuBar (0x7faaa638e770) 0 + vptr=((& QMenuBar::_ZTV8QMenuBar) + 16u) + QWidget (0x7faaa638c980) 0 + primary-for QMenuBar (0x7faaa638e770) + QObject (0x7faaa638e7e0) 0 + primary-for QWidget (0x7faaa638c980) + QPaintDevice (0x7faaa638e850) 16 + vptr=((& QMenuBar::_ZTV8QMenuBar) + 464u) + +Vtable for QMenuItem +QMenuItem::_ZTV9QMenuItem: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QMenuItem) +16 QMenuItem::metaObject +24 QMenuItem::qt_metacast +32 QMenuItem::qt_metacall +40 QMenuItem::~QMenuItem +48 QMenuItem::~QMenuItem +56 QAction::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QMenuItem + size=16 align=8 + base size=16 base align=8 +QMenuItem (0x7faaa622f4d0) 0 + vptr=((& QMenuItem::_ZTV9QMenuItem) + 16u) + QAction (0x7faaa622f540) 0 + primary-for QMenuItem (0x7faaa622f4d0) + QObject (0x7faaa622f5b0) 0 + primary-for QAction (0x7faaa622f540) + +Class QTextEdit::ExtraSelection + size=24 align=8 + base size=24 base align=8 +QTextEdit::ExtraSelection (0x7faaa624f700) 0 + +Vtable for QTextEdit +QTextEdit::_ZTV9QTextEdit: 69u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTextEdit) +16 QTextEdit::metaObject +24 QTextEdit::qt_metacast +32 QTextEdit::qt_metacall +40 QTextEdit::~QTextEdit +48 QTextEdit::~QTextEdit +56 QTextEdit::event +64 QObject::eventFilter +72 QTextEdit::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTextEdit::mousePressEvent +168 QTextEdit::mouseReleaseEvent +176 QTextEdit::mouseDoubleClickEvent +184 QTextEdit::mouseMoveEvent +192 QTextEdit::wheelEvent +200 QTextEdit::keyPressEvent +208 QTextEdit::keyReleaseEvent +216 QTextEdit::focusInEvent +224 QTextEdit::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTextEdit::paintEvent +256 QWidget::moveEvent +264 QTextEdit::resizeEvent +272 QWidget::closeEvent +280 QTextEdit::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QTextEdit::dragEnterEvent +312 QTextEdit::dragMoveEvent +320 QTextEdit::dragLeaveEvent +328 QTextEdit::dropEvent +336 QTextEdit::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QTextEdit::changeEvent +368 QWidget::metric +376 QTextEdit::inputMethodEvent +384 QTextEdit::inputMethodQuery +392 QTextEdit::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QTextEdit::scrollContentsBy +464 QTextEdit::loadResource +472 QTextEdit::createMimeDataFromSelection +480 QTextEdit::canInsertFromMimeData +488 QTextEdit::insertFromMimeData +496 (int (*)(...))-0x00000000000000010 +504 (int (*)(...))(& _ZTI9QTextEdit) +512 QTextEdit::_ZThn16_N9QTextEditD1Ev +520 QTextEdit::_ZThn16_N9QTextEditD0Ev +528 QWidget::_ZThn16_NK7QWidget7devTypeEv +536 QWidget::_ZThn16_NK7QWidget11paintEngineEv +544 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTextEdit + size=40 align=8 + base size=40 base align=8 +QTextEdit (0x7faaa623f770) 0 + vptr=((& QTextEdit::_ZTV9QTextEdit) + 16u) + QAbstractScrollArea (0x7faaa623f7e0) 0 + primary-for QTextEdit (0x7faaa623f770) + QFrame (0x7faaa623f850) 0 + primary-for QAbstractScrollArea (0x7faaa623f7e0) + QWidget (0x7faaa622cb00) 0 + primary-for QFrame (0x7faaa623f850) + QObject (0x7faaa623f8c0) 0 + primary-for QWidget (0x7faaa622cb00) + QPaintDevice (0x7faaa623f930) 16 + vptr=((& QTextEdit::_ZTV9QTextEdit) + 512u) + +Vtable for QPlainTextEdit +QPlainTextEdit::_ZTV14QPlainTextEdit: 69u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QPlainTextEdit) +16 QPlainTextEdit::metaObject +24 QPlainTextEdit::qt_metacast +32 QPlainTextEdit::qt_metacall +40 QPlainTextEdit::~QPlainTextEdit +48 QPlainTextEdit::~QPlainTextEdit +56 QPlainTextEdit::event +64 QObject::eventFilter +72 QPlainTextEdit::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QPlainTextEdit::mousePressEvent +168 QPlainTextEdit::mouseReleaseEvent +176 QPlainTextEdit::mouseDoubleClickEvent +184 QPlainTextEdit::mouseMoveEvent +192 QPlainTextEdit::wheelEvent +200 QPlainTextEdit::keyPressEvent +208 QPlainTextEdit::keyReleaseEvent +216 QPlainTextEdit::focusInEvent +224 QPlainTextEdit::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QPlainTextEdit::paintEvent +256 QWidget::moveEvent +264 QPlainTextEdit::resizeEvent +272 QWidget::closeEvent +280 QPlainTextEdit::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QPlainTextEdit::dragEnterEvent +312 QPlainTextEdit::dragMoveEvent +320 QPlainTextEdit::dragLeaveEvent +328 QPlainTextEdit::dropEvent +336 QPlainTextEdit::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QPlainTextEdit::changeEvent +368 QWidget::metric +376 QPlainTextEdit::inputMethodEvent +384 QPlainTextEdit::inputMethodQuery +392 QPlainTextEdit::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QPlainTextEdit::scrollContentsBy +464 QPlainTextEdit::loadResource +472 QPlainTextEdit::createMimeDataFromSelection +480 QPlainTextEdit::canInsertFromMimeData +488 QPlainTextEdit::insertFromMimeData +496 (int (*)(...))-0x00000000000000010 +504 (int (*)(...))(& _ZTI14QPlainTextEdit) +512 QPlainTextEdit::_ZThn16_N14QPlainTextEditD1Ev +520 QPlainTextEdit::_ZThn16_N14QPlainTextEditD0Ev +528 QWidget::_ZThn16_NK7QWidget7devTypeEv +536 QWidget::_ZThn16_NK7QWidget11paintEngineEv +544 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPlainTextEdit + size=40 align=8 + base size=40 base align=8 +QPlainTextEdit (0x7faaa60e68c0) 0 + vptr=((& QPlainTextEdit::_ZTV14QPlainTextEdit) + 16u) + QAbstractScrollArea (0x7faaa60e6930) 0 + primary-for QPlainTextEdit (0x7faaa60e68c0) + QFrame (0x7faaa60e69a0) 0 + primary-for QAbstractScrollArea (0x7faaa60e6930) + QWidget (0x7faaa60e5400) 0 + primary-for QFrame (0x7faaa60e69a0) + QObject (0x7faaa60e6a10) 0 + primary-for QWidget (0x7faaa60e5400) + QPaintDevice (0x7faaa60e6a80) 16 + vptr=((& QPlainTextEdit::_ZTV14QPlainTextEdit) + 512u) + +Vtable for QPlainTextDocumentLayout +QPlainTextDocumentLayout::_ZTV24QPlainTextDocumentLayout: 24u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QPlainTextDocumentLayout) +16 QPlainTextDocumentLayout::metaObject +24 QPlainTextDocumentLayout::qt_metacast +32 QPlainTextDocumentLayout::qt_metacall +40 QPlainTextDocumentLayout::~QPlainTextDocumentLayout +48 QPlainTextDocumentLayout::~QPlainTextDocumentLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QPlainTextDocumentLayout::draw +120 QPlainTextDocumentLayout::hitTest +128 QPlainTextDocumentLayout::pageCount +136 QPlainTextDocumentLayout::documentSize +144 QPlainTextDocumentLayout::frameBoundingRect +152 QPlainTextDocumentLayout::blockBoundingRect +160 QPlainTextDocumentLayout::documentChanged +168 QAbstractTextDocumentLayout::resizeInlineObject +176 QAbstractTextDocumentLayout::positionInlineObject +184 QAbstractTextDocumentLayout::drawInlineObject + +Class QPlainTextDocumentLayout + size=16 align=8 + base size=16 base align=8 +QPlainTextDocumentLayout (0x7faaa6148690) 0 + vptr=((& QPlainTextDocumentLayout::_ZTV24QPlainTextDocumentLayout) + 16u) + QAbstractTextDocumentLayout (0x7faaa6148700) 0 + primary-for QPlainTextDocumentLayout (0x7faaa6148690) + QObject (0x7faaa6148770) 0 + primary-for QAbstractTextDocumentLayout (0x7faaa6148700) + +Vtable for QPrintPreviewWidget +QPrintPreviewWidget::_ZTV19QPrintPreviewWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QPrintPreviewWidget) +16 QPrintPreviewWidget::metaObject +24 QPrintPreviewWidget::qt_metacast +32 QPrintPreviewWidget::qt_metacall +40 QPrintPreviewWidget::~QPrintPreviewWidget +48 QPrintPreviewWidget::~QPrintPreviewWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QPrintPreviewWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI19QPrintPreviewWidget) +464 QPrintPreviewWidget::_ZThn16_N19QPrintPreviewWidgetD1Ev +472 QPrintPreviewWidget::_ZThn16_N19QPrintPreviewWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPrintPreviewWidget + size=48 align=8 + base size=48 base align=8 +QPrintPreviewWidget (0x7faaa6160b60) 0 + vptr=((& QPrintPreviewWidget::_ZTV19QPrintPreviewWidget) + 16u) + QWidget (0x7faaa615c600) 0 + primary-for QPrintPreviewWidget (0x7faaa6160b60) + QObject (0x7faaa6160bd0) 0 + primary-for QWidget (0x7faaa615c600) + QPaintDevice (0x7faaa6160c40) 16 + vptr=((& QPrintPreviewWidget::_ZTV19QPrintPreviewWidget) + 464u) + +Vtable for QProgressBar +QProgressBar::_ZTV12QProgressBar: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QProgressBar) +16 QProgressBar::metaObject +24 QProgressBar::qt_metacast +32 QProgressBar::qt_metacall +40 QProgressBar::~QProgressBar +48 QProgressBar::~QProgressBar +56 QProgressBar::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QProgressBar::sizeHint +136 QProgressBar::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QProgressBar::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QProgressBar::text +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI12QProgressBar) +472 QProgressBar::_ZThn16_N12QProgressBarD1Ev +480 QProgressBar::_ZThn16_N12QProgressBarD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QProgressBar + size=40 align=8 + base size=40 base align=8 +QProgressBar (0x7faaa6183700) 0 + vptr=((& QProgressBar::_ZTV12QProgressBar) + 16u) + QWidget (0x7faaa6186300) 0 + primary-for QProgressBar (0x7faaa6183700) + QObject (0x7faaa6183770) 0 + primary-for QWidget (0x7faaa6186300) + QPaintDevice (0x7faaa61837e0) 16 + vptr=((& QProgressBar::_ZTV12QProgressBar) + 472u) + +Vtable for QRadioButton +QRadioButton::_ZTV12QRadioButton: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QRadioButton) +16 QRadioButton::metaObject +24 QRadioButton::qt_metacast +32 QRadioButton::qt_metacall +40 QRadioButton::~QRadioButton +48 QRadioButton::~QRadioButton +56 QRadioButton::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QRadioButton::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QRadioButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QAbstractButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QAbstractButton::focusInEvent +224 QAbstractButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QRadioButton::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QRadioButton::hitButton +456 QAbstractButton::checkStateSet +464 QAbstractButton::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI12QRadioButton) +488 QRadioButton::_ZThn16_N12QRadioButtonD1Ev +496 QRadioButton::_ZThn16_N12QRadioButtonD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QRadioButton + size=40 align=8 + base size=40 base align=8 +QRadioButton (0x7faaa61a7540) 0 + vptr=((& QRadioButton::_ZTV12QRadioButton) + 16u) + QAbstractButton (0x7faaa61a75b0) 0 + primary-for QRadioButton (0x7faaa61a7540) + QWidget (0x7faaa6186e00) 0 + primary-for QAbstractButton (0x7faaa61a75b0) + QObject (0x7faaa61a7620) 0 + primary-for QWidget (0x7faaa6186e00) + QPaintDevice (0x7faaa61a7690) 16 + vptr=((& QRadioButton::_ZTV12QRadioButton) + 488u) + +Vtable for QScrollBar +QScrollBar::_ZTV10QScrollBar: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QScrollBar) +16 QScrollBar::metaObject +24 QScrollBar::qt_metacast +32 QScrollBar::qt_metacall +40 QScrollBar::~QScrollBar +48 QScrollBar::~QScrollBar +56 QScrollBar::event +64 QObject::eventFilter +72 QAbstractSlider::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QScrollBar::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QScrollBar::mousePressEvent +168 QScrollBar::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QScrollBar::mouseMoveEvent +192 QAbstractSlider::wheelEvent +200 QAbstractSlider::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QScrollBar::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QScrollBar::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QScrollBar::hideEvent +352 QWidget::x11Event +360 QAbstractSlider::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QScrollBar::sliderChange +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI10QScrollBar) +472 QScrollBar::_ZThn16_N10QScrollBarD1Ev +480 QScrollBar::_ZThn16_N10QScrollBarD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QScrollBar + size=40 align=8 + base size=40 base align=8 +QScrollBar (0x7faaa61c81c0) 0 + vptr=((& QScrollBar::_ZTV10QScrollBar) + 16u) + QAbstractSlider (0x7faaa61c8230) 0 + primary-for QScrollBar (0x7faaa61c81c0) + QWidget (0x7faaa61bd800) 0 + primary-for QAbstractSlider (0x7faaa61c8230) + QObject (0x7faaa61c82a0) 0 + primary-for QWidget (0x7faaa61bd800) + QPaintDevice (0x7faaa61c8310) 16 + vptr=((& QScrollBar::_ZTV10QScrollBar) + 472u) + +Vtable for QSizeGrip +QSizeGrip::_ZTV9QSizeGrip: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QSizeGrip) +16 QSizeGrip::metaObject +24 QSizeGrip::qt_metacast +32 QSizeGrip::qt_metacall +40 QSizeGrip::~QSizeGrip +48 QSizeGrip::~QSizeGrip +56 QSizeGrip::event +64 QSizeGrip::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QSizeGrip::setVisible +128 QSizeGrip::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QSizeGrip::mousePressEvent +168 QSizeGrip::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QSizeGrip::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QSizeGrip::paintEvent +256 QSizeGrip::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QSizeGrip::showEvent +344 QSizeGrip::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI9QSizeGrip) +464 QSizeGrip::_ZThn16_N9QSizeGripD1Ev +472 QSizeGrip::_ZThn16_N9QSizeGripD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSizeGrip + size=40 align=8 + base size=40 base align=8 +QSizeGrip (0x7faaa5fe6310) 0 + vptr=((& QSizeGrip::_ZTV9QSizeGrip) + 16u) + QWidget (0x7faaa5fe4380) 0 + primary-for QSizeGrip (0x7faaa5fe6310) + QObject (0x7faaa5fe6380) 0 + primary-for QWidget (0x7faaa5fe4380) + QPaintDevice (0x7faaa5fe63f0) 16 + vptr=((& QSizeGrip::_ZTV9QSizeGrip) + 464u) + +Vtable for QSpinBox +QSpinBox::_ZTV8QSpinBox: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QSpinBox) +16 QSpinBox::metaObject +24 QSpinBox::qt_metacast +32 QSpinBox::qt_metacall +40 QSpinBox::~QSpinBox +48 QSpinBox::~QSpinBox +56 QSpinBox::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractSpinBox::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractSpinBox::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QAbstractSpinBox::wheelEvent +200 QAbstractSpinBox::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QAbstractSpinBox::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractSpinBox::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QAbstractSpinBox::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QSpinBox::validate +456 QSpinBox::fixup +464 QAbstractSpinBox::stepBy +472 QAbstractSpinBox::clear +480 QAbstractSpinBox::stepEnabled +488 QSpinBox::valueFromText +496 QSpinBox::textFromValue +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI8QSpinBox) +520 QSpinBox::_ZThn16_N8QSpinBoxD1Ev +528 QSpinBox::_ZThn16_N8QSpinBoxD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSpinBox + size=40 align=8 + base size=40 base align=8 +QSpinBox (0x7faaa5ffde00) 0 + vptr=((& QSpinBox::_ZTV8QSpinBox) + 16u) + QAbstractSpinBox (0x7faaa5ffde70) 0 + primary-for QSpinBox (0x7faaa5ffde00) + QWidget (0x7faaa5fe4d80) 0 + primary-for QAbstractSpinBox (0x7faaa5ffde70) + QObject (0x7faaa5ffdee0) 0 + primary-for QWidget (0x7faaa5fe4d80) + QPaintDevice (0x7faaa5ffdf50) 16 + vptr=((& QSpinBox::_ZTV8QSpinBox) + 520u) + +Vtable for QDoubleSpinBox +QDoubleSpinBox::_ZTV14QDoubleSpinBox: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QDoubleSpinBox) +16 QDoubleSpinBox::metaObject +24 QDoubleSpinBox::qt_metacast +32 QDoubleSpinBox::qt_metacall +40 QDoubleSpinBox::~QDoubleSpinBox +48 QDoubleSpinBox::~QDoubleSpinBox +56 QAbstractSpinBox::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractSpinBox::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractSpinBox::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QAbstractSpinBox::wheelEvent +200 QAbstractSpinBox::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QAbstractSpinBox::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractSpinBox::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QAbstractSpinBox::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDoubleSpinBox::validate +456 QDoubleSpinBox::fixup +464 QAbstractSpinBox::stepBy +472 QAbstractSpinBox::clear +480 QAbstractSpinBox::stepEnabled +488 QDoubleSpinBox::valueFromText +496 QDoubleSpinBox::textFromValue +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI14QDoubleSpinBox) +520 QDoubleSpinBox::_ZThn16_N14QDoubleSpinBoxD1Ev +528 QDoubleSpinBox::_ZThn16_N14QDoubleSpinBoxD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDoubleSpinBox + size=40 align=8 + base size=40 base align=8 +QDoubleSpinBox (0x7faaa6029770) 0 + vptr=((& QDoubleSpinBox::_ZTV14QDoubleSpinBox) + 16u) + QAbstractSpinBox (0x7faaa60297e0) 0 + primary-for QDoubleSpinBox (0x7faaa6029770) + QWidget (0x7faaa601df00) 0 + primary-for QAbstractSpinBox (0x7faaa60297e0) + QObject (0x7faaa6029850) 0 + primary-for QWidget (0x7faaa601df00) + QPaintDevice (0x7faaa60298c0) 16 + vptr=((& QDoubleSpinBox::_ZTV14QDoubleSpinBox) + 520u) + +Vtable for QSplashScreen +QSplashScreen::_ZTV13QSplashScreen: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSplashScreen) +16 QSplashScreen::metaObject +24 QSplashScreen::qt_metacast +32 QSplashScreen::qt_metacall +40 QSplashScreen::~QSplashScreen +48 QSplashScreen::~QSplashScreen +56 QSplashScreen::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QSplashScreen::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QSplashScreen::drawContents +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI13QSplashScreen) +472 QSplashScreen::_ZThn16_N13QSplashScreenD1Ev +480 QSplashScreen::_ZThn16_N13QSplashScreenD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSplashScreen + size=40 align=8 + base size=40 base align=8 +QSplashScreen (0x7faaa6049230) 0 + vptr=((& QSplashScreen::_ZTV13QSplashScreen) + 16u) + QWidget (0x7faaa602c900) 0 + primary-for QSplashScreen (0x7faaa6049230) + QObject (0x7faaa60492a0) 0 + primary-for QWidget (0x7faaa602c900) + QPaintDevice (0x7faaa6049310) 16 + vptr=((& QSplashScreen::_ZTV13QSplashScreen) + 472u) + +Vtable for QSplitter +QSplitter::_ZTV9QSplitter: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QSplitter) +16 QSplitter::metaObject +24 QSplitter::qt_metacast +32 QSplitter::qt_metacall +40 QSplitter::~QSplitter +48 QSplitter::~QSplitter +56 QSplitter::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QSplitter::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QSplitter::sizeHint +136 QSplitter::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFrame::paintEvent +256 QWidget::moveEvent +264 QSplitter::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QSplitter::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QSplitter::createHandle +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI9QSplitter) +472 QSplitter::_ZThn16_N9QSplitterD1Ev +480 QSplitter::_ZThn16_N9QSplitterD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSplitter + size=40 align=8 + base size=40 base align=8 +QSplitter (0x7faaa606b310) 0 + vptr=((& QSplitter::_ZTV9QSplitter) + 16u) + QFrame (0x7faaa606b380) 0 + primary-for QSplitter (0x7faaa606b310) + QWidget (0x7faaa6066580) 0 + primary-for QFrame (0x7faaa606b380) + QObject (0x7faaa606b3f0) 0 + primary-for QWidget (0x7faaa6066580) + QPaintDevice (0x7faaa606b460) 16 + vptr=((& QSplitter::_ZTV9QSplitter) + 472u) + +Vtable for QSplitterHandle +QSplitterHandle::_ZTV15QSplitterHandle: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSplitterHandle) +16 QSplitterHandle::metaObject +24 QSplitterHandle::qt_metacast +32 QSplitterHandle::qt_metacall +40 QSplitterHandle::~QSplitterHandle +48 QSplitterHandle::~QSplitterHandle +56 QSplitterHandle::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QSplitterHandle::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QSplitterHandle::mousePressEvent +168 QSplitterHandle::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QSplitterHandle::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QSplitterHandle::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI15QSplitterHandle) +464 QSplitterHandle::_ZThn16_N15QSplitterHandleD1Ev +472 QSplitterHandle::_ZThn16_N15QSplitterHandleD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSplitterHandle + size=40 align=8 + base size=40 base align=8 +QSplitterHandle (0x7faaa6097230) 0 + vptr=((& QSplitterHandle::_ZTV15QSplitterHandle) + 16u) + QWidget (0x7faaa6094780) 0 + primary-for QSplitterHandle (0x7faaa6097230) + QObject (0x7faaa60972a0) 0 + primary-for QWidget (0x7faaa6094780) + QPaintDevice (0x7faaa6097310) 16 + vptr=((& QSplitterHandle::_ZTV15QSplitterHandle) + 464u) + +Vtable for QStackedWidget +QStackedWidget::_ZTV14QStackedWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QStackedWidget) +16 QStackedWidget::metaObject +24 QStackedWidget::qt_metacast +32 QStackedWidget::qt_metacall +40 QStackedWidget::~QStackedWidget +48 QStackedWidget::~QStackedWidget +56 QStackedWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QFrame::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFrame::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI14QStackedWidget) +464 QStackedWidget::_ZThn16_N14QStackedWidgetD1Ev +472 QStackedWidget::_ZThn16_N14QStackedWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QStackedWidget + size=40 align=8 + base size=40 base align=8 +QStackedWidget (0x7faaa60b3a10) 0 + vptr=((& QStackedWidget::_ZTV14QStackedWidget) + 16u) + QFrame (0x7faaa60b3a80) 0 + primary-for QStackedWidget (0x7faaa60b3a10) + QWidget (0x7faaa60b5180) 0 + primary-for QFrame (0x7faaa60b3a80) + QObject (0x7faaa60b3af0) 0 + primary-for QWidget (0x7faaa60b5180) + QPaintDevice (0x7faaa60b3b60) 16 + vptr=((& QStackedWidget::_ZTV14QStackedWidget) + 464u) + +Vtable for QStatusBar +QStatusBar::_ZTV10QStatusBar: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QStatusBar) +16 QStatusBar::metaObject +24 QStatusBar::qt_metacast +32 QStatusBar::qt_metacall +40 QStatusBar::~QStatusBar +48 QStatusBar::~QStatusBar +56 QStatusBar::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QStatusBar::paintEvent +256 QWidget::moveEvent +264 QStatusBar::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QStatusBar::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI10QStatusBar) +464 QStatusBar::_ZThn16_N10QStatusBarD1Ev +472 QStatusBar::_ZThn16_N10QStatusBarD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QStatusBar + size=40 align=8 + base size=40 base align=8 +QStatusBar (0x7faaa5ece8c0) 0 + vptr=((& QStatusBar::_ZTV10QStatusBar) + 16u) + QWidget (0x7faaa60b5b80) 0 + primary-for QStatusBar (0x7faaa5ece8c0) + QObject (0x7faaa5ece930) 0 + primary-for QWidget (0x7faaa60b5b80) + QPaintDevice (0x7faaa5ece9a0) 16 + vptr=((& QStatusBar::_ZTV10QStatusBar) + 464u) + +Vtable for QTextBrowser +QTextBrowser::_ZTV12QTextBrowser: 74u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextBrowser) +16 QTextBrowser::metaObject +24 QTextBrowser::qt_metacast +32 QTextBrowser::qt_metacall +40 QTextBrowser::~QTextBrowser +48 QTextBrowser::~QTextBrowser +56 QTextBrowser::event +64 QObject::eventFilter +72 QTextEdit::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTextBrowser::mousePressEvent +168 QTextBrowser::mouseReleaseEvent +176 QTextEdit::mouseDoubleClickEvent +184 QTextBrowser::mouseMoveEvent +192 QTextEdit::wheelEvent +200 QTextBrowser::keyPressEvent +208 QTextEdit::keyReleaseEvent +216 QTextEdit::focusInEvent +224 QTextBrowser::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTextBrowser::paintEvent +256 QWidget::moveEvent +264 QTextEdit::resizeEvent +272 QWidget::closeEvent +280 QTextEdit::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QTextEdit::dragEnterEvent +312 QTextEdit::dragMoveEvent +320 QTextEdit::dragLeaveEvent +328 QTextEdit::dropEvent +336 QTextEdit::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QTextEdit::changeEvent +368 QWidget::metric +376 QTextEdit::inputMethodEvent +384 QTextEdit::inputMethodQuery +392 QTextBrowser::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QTextEdit::scrollContentsBy +464 QTextBrowser::loadResource +472 QTextEdit::createMimeDataFromSelection +480 QTextEdit::canInsertFromMimeData +488 QTextEdit::insertFromMimeData +496 QTextBrowser::setSource +504 QTextBrowser::backward +512 QTextBrowser::forward +520 QTextBrowser::home +528 QTextBrowser::reload +536 (int (*)(...))-0x00000000000000010 +544 (int (*)(...))(& _ZTI12QTextBrowser) +552 QTextBrowser::_ZThn16_N12QTextBrowserD1Ev +560 QTextBrowser::_ZThn16_N12QTextBrowserD0Ev +568 QWidget::_ZThn16_NK7QWidget7devTypeEv +576 QWidget::_ZThn16_NK7QWidget11paintEngineEv +584 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTextBrowser + size=40 align=8 + base size=40 base align=8 +QTextBrowser (0x7faaa5ef0e00) 0 + vptr=((& QTextBrowser::_ZTV12QTextBrowser) + 16u) + QTextEdit (0x7faaa5ef0e70) 0 + primary-for QTextBrowser (0x7faaa5ef0e00) + QAbstractScrollArea (0x7faaa5ef0ee0) 0 + primary-for QTextEdit (0x7faaa5ef0e70) + QFrame (0x7faaa5ef0f50) 0 + primary-for QAbstractScrollArea (0x7faaa5ef0ee0) + QWidget (0x7faaa5eebb80) 0 + primary-for QFrame (0x7faaa5ef0f50) + QObject (0x7faaa5ef5000) 0 + primary-for QWidget (0x7faaa5eebb80) + QPaintDevice (0x7faaa5ef5070) 16 + vptr=((& QTextBrowser::_ZTV12QTextBrowser) + 552u) + +Vtable for QToolBar +QToolBar::_ZTV8QToolBar: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QToolBar) +16 QToolBar::metaObject +24 QToolBar::qt_metacast +32 QToolBar::qt_metacall +40 QToolBar::~QToolBar +48 QToolBar::~QToolBar +56 QToolBar::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QToolBar::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QToolBar::paintEvent +256 QWidget::moveEvent +264 QToolBar::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QToolBar::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QToolBar::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI8QToolBar) +464 QToolBar::_ZThn16_N8QToolBarD1Ev +472 QToolBar::_ZThn16_N8QToolBarD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QToolBar + size=40 align=8 + base size=40 base align=8 +QToolBar (0x7faaa5f15a10) 0 + vptr=((& QToolBar::_ZTV8QToolBar) + 16u) + QWidget (0x7faaa5f11580) 0 + primary-for QToolBar (0x7faaa5f15a10) + QObject (0x7faaa5f15a80) 0 + primary-for QWidget (0x7faaa5f11580) + QPaintDevice (0x7faaa5f15af0) 16 + vptr=((& QToolBar::_ZTV8QToolBar) + 464u) + +Vtable for QToolBox +QToolBox::_ZTV8QToolBox: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QToolBox) +16 QToolBox::metaObject +24 QToolBox::qt_metacast +32 QToolBox::qt_metacall +40 QToolBox::~QToolBox +48 QToolBox::~QToolBox +56 QToolBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QFrame::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFrame::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QToolBox::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QToolBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QToolBox::itemInserted +456 QToolBox::itemRemoved +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI8QToolBox) +480 QToolBox::_ZThn16_N8QToolBoxD1Ev +488 QToolBox::_ZThn16_N8QToolBoxD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QToolBox + size=40 align=8 + base size=40 base align=8 +QToolBox (0x7faaa5f51850) 0 + vptr=((& QToolBox::_ZTV8QToolBox) + 16u) + QFrame (0x7faaa5f518c0) 0 + primary-for QToolBox (0x7faaa5f51850) + QWidget (0x7faaa5f4e680) 0 + primary-for QFrame (0x7faaa5f518c0) + QObject (0x7faaa5f51930) 0 + primary-for QWidget (0x7faaa5f4e680) + QPaintDevice (0x7faaa5f519a0) 16 + vptr=((& QToolBox::_ZTV8QToolBox) + 480u) + +Vtable for QToolButton +QToolButton::_ZTV11QToolButton: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QToolButton) +16 QToolButton::metaObject +24 QToolButton::qt_metacast +32 QToolButton::qt_metacall +40 QToolButton::~QToolButton +48 QToolButton::~QToolButton +56 QToolButton::event +64 QObject::eventFilter +72 QToolButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QToolButton::sizeHint +136 QToolButton::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QToolButton::mousePressEvent +168 QToolButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QAbstractButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QAbstractButton::focusInEvent +224 QAbstractButton::focusOutEvent +232 QToolButton::enterEvent +240 QToolButton::leaveEvent +248 QToolButton::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QToolButton::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QToolButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QToolButton::hitButton +456 QAbstractButton::checkStateSet +464 QToolButton::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11QToolButton) +488 QToolButton::_ZThn16_N11QToolButtonD1Ev +496 QToolButton::_ZThn16_N11QToolButtonD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QToolButton + size=40 align=8 + base size=40 base align=8 +QToolButton (0x7faaa5f89310) 0 + vptr=((& QToolButton::_ZTV11QToolButton) + 16u) + QAbstractButton (0x7faaa5f89380) 0 + primary-for QToolButton (0x7faaa5f89310) + QWidget (0x7faaa5f86400) 0 + primary-for QAbstractButton (0x7faaa5f89380) + QObject (0x7faaa5f893f0) 0 + primary-for QWidget (0x7faaa5f86400) + QPaintDevice (0x7faaa5f89460) 16 + vptr=((& QToolButton::_ZTV11QToolButton) + 488u) + +Vtable for QWorkspace +QWorkspace::_ZTV10QWorkspace: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QWorkspace) +16 QWorkspace::metaObject +24 QWorkspace::qt_metacast +32 QWorkspace::qt_metacall +40 QWorkspace::~QWorkspace +48 QWorkspace::~QWorkspace +56 QWorkspace::event +64 QWorkspace::eventFilter +72 QObject::timerEvent +80 QWorkspace::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWorkspace::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWorkspace::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWorkspace::paintEvent +256 QWidget::moveEvent +264 QWorkspace::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWorkspace::showEvent +344 QWorkspace::hideEvent +352 QWidget::x11Event +360 QWorkspace::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI10QWorkspace) +464 QWorkspace::_ZThn16_N10QWorkspaceD1Ev +472 QWorkspace::_ZThn16_N10QWorkspaceD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWorkspace + size=40 align=8 + base size=40 base align=8 +QWorkspace (0x7faaa5dce620) 0 + vptr=((& QWorkspace::_ZTV10QWorkspace) + 16u) + QWidget (0x7faaa5dd2100) 0 + primary-for QWorkspace (0x7faaa5dce620) + QObject (0x7faaa5dce690) 0 + primary-for QWidget (0x7faaa5dd2100) + QPaintDevice (0x7faaa5dce700) 16 + vptr=((& QWorkspace::_ZTV10QWorkspace) + 464u) + +Class QScriptable + size=8 align=8 + base size=8 base align=8 +QScriptable (0x7faaa5df2700) 0 + +Class QScriptValue + size=8 align=8 + base size=8 base align=8 +QScriptValue (0x7faaa5e062a0) 0 + +Vtable for QScriptClass +QScriptClass::_ZTV12QScriptClass: 13u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QScriptClass) +16 QScriptClass::~QScriptClass +24 QScriptClass::~QScriptClass +32 QScriptClass::queryProperty +40 QScriptClass::property +48 QScriptClass::setProperty +56 QScriptClass::propertyFlags +64 QScriptClass::newIterator +72 QScriptClass::prototype +80 QScriptClass::name +88 QScriptClass::supportsExtension +96 QScriptClass::extension + +Class QScriptClass + size=16 align=8 + base size=16 base align=8 +QScriptClass (0x7faaa5ce8e00) 0 + vptr=((& QScriptClass::_ZTV12QScriptClass) + 16u) + +Vtable for QScriptClassPropertyIterator +QScriptClassPropertyIterator::_ZTV28QScriptClassPropertyIterator: 13u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI28QScriptClassPropertyIterator) +16 QScriptClassPropertyIterator::~QScriptClassPropertyIterator +24 QScriptClassPropertyIterator::~QScriptClassPropertyIterator +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 QScriptClassPropertyIterator::id +96 QScriptClassPropertyIterator::flags + +Class QScriptClassPropertyIterator + size=16 align=8 + base size=16 base align=8 +QScriptClassPropertyIterator (0x7faaa5d58e00) 0 + vptr=((& QScriptClassPropertyIterator::_ZTV28QScriptClassPropertyIterator) + 16u) + +Class QScriptContext + size=8 align=8 + base size=8 base align=8 +QScriptContext (0x7faaa5d7fc40) 0 + +Class QScriptContextInfo + size=8 align=8 + base size=8 base align=8 +QScriptContextInfo (0x7faaa5d9aa10) 0 + +Class QScriptString + size=8 align=8 + base size=8 base align=8 +QScriptString (0x7faaa5da2cb0) 0 + +Class QScriptProgram + size=8 align=8 + base size=8 base align=8 +QScriptProgram (0x7faaa5db8a10) 0 + +Class QScriptSyntaxCheckResult + size=8 align=8 + base size=8 base align=8 +QScriptSyntaxCheckResult (0x7faaa5bd18c0) 0 + +Vtable for QScriptEngine +QScriptEngine::_ZTV13QScriptEngine: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QScriptEngine) +16 QScriptEngine::metaObject +24 QScriptEngine::qt_metacast +32 QScriptEngine::qt_metacall +40 QScriptEngine::~QScriptEngine +48 QScriptEngine::~QScriptEngine +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QScriptEngine + size=16 align=8 + base size=16 base align=8 +QScriptEngine (0x7faaa5bf85b0) 0 + vptr=((& QScriptEngine::_ZTV13QScriptEngine) + 16u) + QObject (0x7faaa5bf8620) 0 + primary-for QScriptEngine (0x7faaa5bf85b0) + +Vtable for QScriptEngineAgent +QScriptEngineAgent::_ZTV18QScriptEngineAgent: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QScriptEngineAgent) +16 QScriptEngineAgent::~QScriptEngineAgent +24 QScriptEngineAgent::~QScriptEngineAgent +32 QScriptEngineAgent::scriptLoad +40 QScriptEngineAgent::scriptUnload +48 QScriptEngineAgent::contextPush +56 QScriptEngineAgent::contextPop +64 QScriptEngineAgent::functionEntry +72 QScriptEngineAgent::functionExit +80 QScriptEngineAgent::positionChange +88 QScriptEngineAgent::exceptionThrow +96 QScriptEngineAgent::exceptionCatch +104 QScriptEngineAgent::supportsExtension +112 QScriptEngineAgent::extension + +Class QScriptEngineAgent + size=16 align=8 + base size=16 base align=8 +QScriptEngineAgent (0x7faaa5c7de00) 0 + vptr=((& QScriptEngineAgent::_ZTV18QScriptEngineAgent) + 16u) + +Vtable for QScriptExtensionInterface +QScriptExtensionInterface::_ZTV25QScriptExtensionInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QScriptExtensionInterface) +16 QScriptExtensionInterface::~QScriptExtensionInterface +24 QScriptExtensionInterface::~QScriptExtensionInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QScriptExtensionInterface + size=8 align=8 + base size=8 base align=8 +QScriptExtensionInterface (0x7faaa5ca9c40) 0 nearly-empty + vptr=((& QScriptExtensionInterface::_ZTV25QScriptExtensionInterface) + 16u) + QFactoryInterface (0x7faaa5ca9cb0) 0 nearly-empty + primary-for QScriptExtensionInterface (0x7faaa5ca9c40) + +Vtable for QScriptExtensionPlugin +QScriptExtensionPlugin::_ZTV22QScriptExtensionPlugin: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QScriptExtensionPlugin) +16 QScriptExtensionPlugin::metaObject +24 QScriptExtensionPlugin::qt_metacast +32 QScriptExtensionPlugin::qt_metacall +40 QScriptExtensionPlugin::~QScriptExtensionPlugin +48 QScriptExtensionPlugin::~QScriptExtensionPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI22QScriptExtensionPlugin) +144 QScriptExtensionPlugin::_ZThn16_N22QScriptExtensionPluginD1Ev +152 QScriptExtensionPlugin::_ZThn16_N22QScriptExtensionPluginD0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QScriptExtensionPlugin + size=24 align=8 + base size=24 base align=8 +QScriptExtensionPlugin (0x7faaa5cb4d00) 0 + vptr=((& QScriptExtensionPlugin::_ZTV22QScriptExtensionPlugin) + 16u) + QObject (0x7faaa5cc25b0) 0 + primary-for QScriptExtensionPlugin (0x7faaa5cb4d00) + QScriptExtensionInterface (0x7faaa5cc2620) 16 nearly-empty + vptr=((& QScriptExtensionPlugin::_ZTV22QScriptExtensionPlugin) + 144u) + QFactoryInterface (0x7faaa5cc2690) 16 nearly-empty + primary-for QScriptExtensionInterface (0x7faaa5cc2620) + +Class QScriptValueIterator + size=8 align=8 + base size=8 base align=8 +QScriptValueIterator (0x7faaa5ad6540) 0 + +Vtable for QScriptEngineDebugger +QScriptEngineDebugger::_ZTV21QScriptEngineDebugger: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QScriptEngineDebugger) +16 QScriptEngineDebugger::metaObject +24 QScriptEngineDebugger::qt_metacast +32 QScriptEngineDebugger::qt_metacall +40 QScriptEngineDebugger::~QScriptEngineDebugger +48 QScriptEngineDebugger::~QScriptEngineDebugger +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QScriptEngineDebugger + size=16 align=8 + base size=16 base align=8 +QScriptEngineDebugger (0x7faaa5ae93f0) 0 + vptr=((& QScriptEngineDebugger::_ZTV21QScriptEngineDebugger) + 16u) + QObject (0x7faaa5ae9460) 0 + primary-for QScriptEngineDebugger (0x7faaa5ae93f0) + diff --git a/tests/auto/bic/data/QtSql.4.5.0.linux-gcc-amd64.txt b/tests/auto/bic/data/QtSql.4.5.0.linux-gcc-amd64.txt new file mode 100644 index 0000000..49e295c --- /dev/null +++ b/tests/auto/bic/data/QtSql.4.5.0.linux-gcc-amd64.txt @@ -0,0 +1,2735 @@ +Class QSysInfo + size=1 align=1 + base size=0 base align=1 +QSysInfo (0x7f5e1d3ed460) 0 empty + +Class QBool + size=1 align=1 + base size=1 base align=1 +QBool (0x7f5e1d401150) 0 + +Class qIsNull(double)::U + size=8 align=8 + base size=8 base align=8 +qIsNull(double)::U (0x7f5e1d418540) 0 + +Class qIsNull(float)::U + size=4 align=4 + base size=4 base align=4 +qIsNull(float)::U (0x7f5e1d4187e0) 0 + +Class QFlag + size=4 align=4 + base size=4 base align=4 +QFlag (0x7f5e1d450620) 0 + +Class QIncompatibleFlag + size=4 align=4 + base size=4 base align=4 +QIncompatibleFlag (0x7f5e1d450e00) 0 + +Class QInternal + size=1 align=1 + base size=0 base align=1 +QInternal (0x7f5e1ca4b540) 0 empty + +Class QGenericArgument + size=16 align=8 + base size=16 base align=8 +QGenericArgument (0x7f5e1ca4b850) 0 + +Class QGenericReturnArgument + size=16 align=8 + base size=16 base align=8 +QGenericReturnArgument (0x7f5e1ca653f0) 0 + QGenericArgument (0x7f5e1ca65460) 0 + +Class QMetaObject + size=32 align=8 + base size=32 base align=8 +QMetaObject (0x7f5e1ca65cb0) 0 + +Class QMetaObjectExtraData + size=16 align=8 + base size=16 base align=8 +QMetaObjectExtraData (0x7f5e1ca8ecb0) 0 + +Class QLatin1Char + size=1 align=1 + base size=1 base align=1 +QLatin1Char (0x7f5e1ca98700) 0 + +Class QChar + size=2 align=2 + base size=2 base align=2 +QChar (0x7f5e1ca9e2a0) 0 + +Class QBasicAtomicInt + size=4 align=4 + base size=4 base align=4 +QBasicAtomicInt (0x7f5e1c906380) 0 + +Class QAtomicInt + size=4 align=4 + base size=4 base align=4 +QAtomicInt (0x7f5e1c941d20) 0 + QBasicAtomicInt (0x7f5e1c941d90) 0 + +Class __locale_struct + size=232 align=8 + base size=232 base align=8 +__locale_struct (0x7f5e1c9671c0) 0 + +Class QByteArray::Data + size=32 align=8 + base size=32 base align=8 +QByteArray::Data (0x7f5e1c7e27e0) 0 + +Class QByteArray + size=8 align=8 + base size=8 base align=8 +QByteArray (0x7f5e1c99f540) 0 + +Class QByteRef + size=16 align=8 + base size=12 base align=8 +QByteRef (0x7f5e1c839a80) 0 + +Class QString::Null + size=1 align=1 + base size=0 base align=1 +QString::Null (0x7f5e1c741700) 0 empty + +Class QString::Data + size=32 align=8 + base size=32 base align=8 +QString::Data (0x7f5e1c751ee0) 0 + +Class QString + size=8 align=8 + base size=8 base align=8 +QString (0x7f5e1c6c15b0) 0 + +Class QLatin1String + size=8 align=8 + base size=8 base align=8 +QLatin1String (0x7f5e1c62a000) 0 + +Class QCharRef + size=16 align=8 + base size=12 base align=8 +QCharRef (0x7f5e1c4c1620) 0 + +Class QConstString + size=8 align=8 + base size=8 base align=8 +QConstString (0x7f5e1c40cee0) 0 + QString (0x7f5e1c40cf50) 0 + +Class QStringRef + size=16 align=8 + base size=16 base align=8 +QStringRef (0x7f5e1c42cbd0) 0 + +Vtable for std::exception +std::exception::_ZTVSt9exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9exception) +16 std::exception::~exception +24 std::exception::~exception +32 std::exception::what + +Class std::exception + size=8 align=8 + base size=8 base align=8 +std::exception (0x7f5e1c2e6620) 0 nearly-empty + vptr=((& std::exception::_ZTVSt9exception) + 16u) + +Vtable for std::bad_exception +std::bad_exception::_ZTVSt13bad_exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13bad_exception) +16 std::bad_exception::~bad_exception +24 std::bad_exception::~bad_exception +32 std::bad_exception::what + +Class std::bad_exception + size=8 align=8 + base size=8 base align=8 +std::bad_exception (0x7f5e1c308000) 0 nearly-empty + vptr=((& std::bad_exception::_ZTVSt13bad_exception) + 16u) + std::exception (0x7f5e1c308070) 0 nearly-empty + primary-for std::bad_exception (0x7f5e1c308000) + +Vtable for std::bad_alloc +std::bad_alloc::_ZTVSt9bad_alloc: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9bad_alloc) +16 std::bad_alloc::~bad_alloc +24 std::bad_alloc::~bad_alloc +32 std::bad_alloc::what + +Class std::bad_alloc + size=8 align=8 + base size=8 base align=8 +std::bad_alloc (0x7f5e1c3088c0) 0 nearly-empty + vptr=((& std::bad_alloc::_ZTVSt9bad_alloc) + 16u) + std::exception (0x7f5e1c308930) 0 nearly-empty + primary-for std::bad_alloc (0x7f5e1c3088c0) + +Class std::nothrow_t + size=1 align=1 + base size=0 base align=1 +std::nothrow_t (0x7f5e1c31b0e0) 0 empty + +Class QListData::Data + size=32 align=8 + base size=32 base align=8 +QListData::Data (0x7f5e1c31b620) 0 + +Class QListData + size=8 align=8 + base size=8 base align=8 +QListData (0x7f5e1c31b5b0) 0 + +Vtable for QObjectData +QObjectData::_ZTV11QObjectData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QObjectData) +16 __cxa_pure_virtual +24 __cxa_pure_virtual + +Class QObjectData + size=40 align=8 + base size=40 base align=8 +QObjectData (0x7f5e1c21dbd0) 0 + vptr=((& QObjectData::_ZTV11QObjectData) + 16u) + +Vtable for QObject +QObject::_ZTV7QObject: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QObject) +16 QObject::metaObject +24 QObject::qt_metacast +32 QObject::qt_metacall +40 QObject::~QObject +48 QObject::~QObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObject + size=16 align=8 + base size=16 base align=8 +QObject (0x7f5e1c21dee0) 0 + vptr=((& QObject::_ZTV7QObject) + 16u) + +Vtable for QObjectUserData +QObjectUserData::_ZTV15QObjectUserData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QObjectUserData) +16 QObjectUserData::~QObjectUserData +24 QObjectUserData::~QObjectUserData + +Class QObjectUserData + size=8 align=8 + base size=8 base align=8 +QObjectUserData (0x7f5e1c09e3f0) 0 nearly-empty + vptr=((& QObjectUserData::_ZTV15QObjectUserData) + 16u) + +Vtable for QIODevice +QIODevice::_ZTV9QIODevice: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QIODevice) +16 QIODevice::metaObject +24 QIODevice::qt_metacast +32 QIODevice::qt_metacall +40 QIODevice::~QIODevice +48 QIODevice::~QIODevice +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QIODevice::isSequential +120 QIODevice::open +128 QIODevice::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QIODevice::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 __cxa_pure_virtual +224 QIODevice::readLineData +232 __cxa_pure_virtual + +Class QIODevice + size=16 align=8 + base size=16 base align=8 +QIODevice (0x7f5e1c09e930) 0 + vptr=((& QIODevice::_ZTV9QIODevice) + 16u) + QObject (0x7f5e1c09e9a0) 0 + primary-for QIODevice (0x7f5e1c09e930) + +Vtable for QDataStream +QDataStream::_ZTV11QDataStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QDataStream) +16 QDataStream::~QDataStream +24 QDataStream::~QDataStream + +Class QDataStream + size=40 align=8 + base size=40 base align=8 +QDataStream (0x7f5e1c1152a0) 0 + vptr=((& QDataStream::_ZTV11QDataStream) + 16u) + +Class QHashData::Node + size=16 align=8 + base size=16 base align=8 +QHashData::Node (0x7f5e1bf9b150) 0 + +Class QHashData + size=40 align=8 + base size=40 base align=8 +QHashData (0x7f5e1bf9b0e0) 0 + +Class QHashDummyValue + size=1 align=1 + base size=0 base align=1 +QHashDummyValue (0x7f5e1bfacee0) 0 empty + +Class QMapData::Node + size=16 align=8 + base size=16 base align=8 +QMapData::Node (0x7f5e1bebc690) 0 + +Class QMapData + size=128 align=8 + base size=128 base align=8 +QMapData (0x7f5e1bebc620) 0 + +Vtable for QSystemLocale +QSystemLocale::_ZTV13QSystemLocale: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSystemLocale) +16 QSystemLocale::~QSystemLocale +24 QSystemLocale::~QSystemLocale +32 QSystemLocale::query +40 QSystemLocale::fallbackLocale + +Class QSystemLocale + size=8 align=8 + base size=8 base align=8 +QSystemLocale (0x7f5e1bdd1e00) 0 nearly-empty + vptr=((& QSystemLocale::_ZTV13QSystemLocale) + 16u) + +Class QLocale::Data + size=4 align=2 + base size=4 base align=2 +QLocale::Data (0x7f5e1be2f3f0) 0 + +Class QLocale + size=8 align=8 + base size=8 base align=8 +QLocale (0x7f5e1bdf30e0) 0 + +Class QTextCodec::ConverterState + size=32 align=8 + base size=32 base align=8 +QTextCodec::ConverterState (0x7f5e1be7ee70) 0 + +Vtable for QTextCodec +QTextCodec::_ZTV10QTextCodec: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextCodec) +16 __cxa_pure_virtual +24 QTextCodec::aliases +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QTextCodec::~QTextCodec +64 QTextCodec::~QTextCodec + +Class QTextCodec + size=8 align=8 + base size=8 base align=8 +QTextCodec (0x7f5e1be68a80) 0 nearly-empty + vptr=((& QTextCodec::_ZTV10QTextCodec) + 16u) + +Class QTextEncoder + size=40 align=8 + base size=40 base align=8 +QTextEncoder (0x7f5e1bce93f0) 0 + +Class QTextDecoder + size=40 align=8 + base size=40 base align=8 +QTextDecoder (0x7f5e1bcf4230) 0 + +Class _IO_marker + size=24 align=8 + base size=24 base align=8 +_IO_marker (0x7f5e1bcfc2a0) 0 + +Class _IO_FILE + size=216 align=8 + base size=216 base align=8 +_IO_FILE (0x7f5e1bcfc310) 0 + +Vtable for QTextStream +QTextStream::_ZTV11QTextStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTextStream) +16 QTextStream::~QTextStream +24 QTextStream::~QTextStream + +Class QTextStream + size=16 align=8 + base size=16 base align=8 +QTextStream (0x7f5e1bcfc3f0) 0 + vptr=((& QTextStream::_ZTV11QTextStream) + 16u) + +Class QTextStreamManipulator + size=40 align=8 + base size=38 base align=8 +QTextStreamManipulator (0x7f5e1bd93ee0) 0 + +Vtable for QTextIStream +QTextIStream::_ZTV12QTextIStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextIStream) +16 QTextIStream::~QTextIStream +24 QTextIStream::~QTextIStream + +Class QTextIStream + size=16 align=8 + base size=16 base align=8 +QTextIStream (0x7f5e1bbc01c0) 0 + vptr=((& QTextIStream::_ZTV12QTextIStream) + 16u) + QTextStream (0x7f5e1bbc0230) 0 + primary-for QTextIStream (0x7f5e1bbc01c0) + +Vtable for QTextOStream +QTextOStream::_ZTV12QTextOStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextOStream) +16 QTextOStream::~QTextOStream +24 QTextOStream::~QTextOStream + +Class QTextOStream + size=16 align=8 + base size=16 base align=8 +QTextOStream (0x7f5e1bbd4070) 0 + vptr=((& QTextOStream::_ZTV12QTextOStream) + 16u) + QTextStream (0x7f5e1bbd40e0) 0 + primary-for QTextOStream (0x7f5e1bbd4070) + +Class wait + size=4 align=4 + base size=4 base align=4 +wait (0x7f5e1bbe1ee0) 0 + +Class timespec + size=16 align=8 + base size=16 base align=8 +timespec (0x7f5e1bbee230) 0 + +Class timeval + size=16 align=8 + base size=16 base align=8 +timeval (0x7f5e1bbee2a0) 0 + +Class __pthread_internal_list + size=16 align=8 + base size=16 base align=8 +__pthread_internal_list (0x7f5e1bbee3f0) 0 + +Class random_data + size=48 align=8 + base size=48 base align=8 +random_data (0x7f5e1bbee9a0) 0 + +Class drand48_data + size=24 align=8 + base size=24 base align=8 +drand48_data (0x7f5e1bbeea10) 0 + +Class QVectorData + size=16 align=4 + base size=16 base align=4 +QVectorData (0x7f5e1bbeea80) 0 + +Class QDebug::Stream + size=40 align=8 + base size=34 base align=8 +QDebug::Stream (0x7f5e1bb6a230) 0 + +Class QDebug + size=8 align=8 + base size=8 base align=8 +QDebug (0x7f5e1bb6a1c0) 0 + +Class QNoDebug + size=1 align=1 + base size=0 base align=1 +QNoDebug (0x7f5e1ba07070) 0 empty + +Vtable for QFile +QFile::_ZTV5QFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QFile) +16 QFile::metaObject +24 QFile::qt_metacast +32 QFile::qt_metacall +40 QFile::~QFile +48 QFile::~QFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QFile::fileEngine + +Class QFile + size=16 align=8 + base size=16 base align=8 +QFile (0x7f5e1ba18620) 0 + vptr=((& QFile::_ZTV5QFile) + 16u) + QIODevice (0x7f5e1ba18690) 0 + primary-for QFile (0x7f5e1ba18620) + QObject (0x7f5e1ba18700) 0 + primary-for QIODevice (0x7f5e1ba18690) + +Vtable for QTemporaryFile +QTemporaryFile::_ZTV14QTemporaryFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QTemporaryFile) +16 QTemporaryFile::metaObject +24 QTemporaryFile::qt_metacast +32 QTemporaryFile::qt_metacall +40 QTemporaryFile::~QTemporaryFile +48 QTemporaryFile::~QTemporaryFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QTemporaryFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QTemporaryFile::fileEngine + +Class QTemporaryFile + size=16 align=8 + base size=16 base align=8 +QTemporaryFile (0x7f5e1ba84850) 0 + vptr=((& QTemporaryFile::_ZTV14QTemporaryFile) + 16u) + QFile (0x7f5e1ba848c0) 0 + primary-for QTemporaryFile (0x7f5e1ba84850) + QIODevice (0x7f5e1ba84930) 0 + primary-for QFile (0x7f5e1ba848c0) + QObject (0x7f5e1ba849a0) 0 + primary-for QIODevice (0x7f5e1ba84930) + +Class QFileInfo + size=8 align=8 + base size=8 base align=8 +QFileInfo (0x7f5e1b8a5f50) 0 + +Class QRegExp + size=8 align=8 + base size=8 base align=8 +QRegExp (0x7f5e1b902770) 0 + +Class QStringMatcher + size=1048 align=8 + base size=1048 base align=8 +QStringMatcher (0x7f5e1b94e5b0) 0 + +Class QStringList + size=8 align=8 + base size=8 base align=8 +QStringList (0x7f5e1b961070) 0 + QList (0x7f5e1b9610e0) 0 + +Class QDir + size=8 align=8 + base size=8 base align=8 +QDir (0x7f5e1b7efcb0) 0 + +Class QAbstractFileEngine::ExtensionOption + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionOption (0x7f5e1b889e70) 0 empty + +Class QAbstractFileEngine::ExtensionReturn + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionReturn (0x7f5e1b889ee0) 0 empty + +Class QAbstractFileEngine::MapExtensionOption + size=24 align=8 + base size=20 base align=8 +QAbstractFileEngine::MapExtensionOption (0x7f5e1b889f50) 0 + QAbstractFileEngine::ExtensionOption (0x7f5e1b69c000) 0 empty + +Class QAbstractFileEngine::MapExtensionReturn + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::MapExtensionReturn (0x7f5e1b69c1c0) 0 + QAbstractFileEngine::ExtensionReturn (0x7f5e1b69c230) 0 empty + +Class QAbstractFileEngine::UnMapExtensionOption + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::UnMapExtensionOption (0x7f5e1b69c2a0) 0 + QAbstractFileEngine::ExtensionOption (0x7f5e1b69c310) 0 empty + +Vtable for QAbstractFileEngine +QAbstractFileEngine::_ZTV19QAbstractFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractFileEngine) +16 QAbstractFileEngine::~QAbstractFileEngine +24 QAbstractFileEngine::~QAbstractFileEngine +32 QAbstractFileEngine::open +40 QAbstractFileEngine::close +48 QAbstractFileEngine::flush +56 QAbstractFileEngine::size +64 QAbstractFileEngine::pos +72 QAbstractFileEngine::seek +80 QAbstractFileEngine::isSequential +88 QAbstractFileEngine::remove +96 QAbstractFileEngine::copy +104 QAbstractFileEngine::rename +112 QAbstractFileEngine::link +120 QAbstractFileEngine::mkdir +128 QAbstractFileEngine::rmdir +136 QAbstractFileEngine::setSize +144 QAbstractFileEngine::caseSensitive +152 QAbstractFileEngine::isRelativePath +160 QAbstractFileEngine::entryList +168 QAbstractFileEngine::fileFlags +176 QAbstractFileEngine::setPermissions +184 QAbstractFileEngine::fileName +192 QAbstractFileEngine::ownerId +200 QAbstractFileEngine::owner +208 QAbstractFileEngine::fileTime +216 QAbstractFileEngine::setFileName +224 QAbstractFileEngine::handle +232 QAbstractFileEngine::beginEntryList +240 QAbstractFileEngine::endEntryList +248 QAbstractFileEngine::read +256 QAbstractFileEngine::readLine +264 QAbstractFileEngine::write +272 QAbstractFileEngine::extension +280 QAbstractFileEngine::supportsExtension + +Class QAbstractFileEngine + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngine (0x7f5e1b879e00) 0 + vptr=((& QAbstractFileEngine::_ZTV19QAbstractFileEngine) + 16u) + +Vtable for QAbstractFileEngineHandler +QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QAbstractFileEngineHandler) +16 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +24 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +32 __cxa_pure_virtual + +Class QAbstractFileEngineHandler + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngineHandler (0x7f5e1b6ce000) 0 nearly-empty + vptr=((& QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler) + 16u) + +Vtable for QAbstractFileEngineIterator +QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QAbstractFileEngineIterator) +16 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +24 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QAbstractFileEngineIterator::currentFileInfo +64 QAbstractFileEngineIterator::entryInfo + +Class QAbstractFileEngineIterator + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngineIterator (0x7f5e1b6ce1c0) 0 + vptr=((& QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator) + 16u) + +Vtable for QFSFileEngine +QFSFileEngine::_ZTV13QFSFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QFSFileEngine) +16 QFSFileEngine::~QFSFileEngine +24 QFSFileEngine::~QFSFileEngine +32 QFSFileEngine::open +40 QFSFileEngine::close +48 QFSFileEngine::flush +56 QFSFileEngine::size +64 QFSFileEngine::pos +72 QFSFileEngine::seek +80 QFSFileEngine::isSequential +88 QFSFileEngine::remove +96 QFSFileEngine::copy +104 QFSFileEngine::rename +112 QFSFileEngine::link +120 QFSFileEngine::mkdir +128 QFSFileEngine::rmdir +136 QFSFileEngine::setSize +144 QFSFileEngine::caseSensitive +152 QFSFileEngine::isRelativePath +160 QFSFileEngine::entryList +168 QFSFileEngine::fileFlags +176 QFSFileEngine::setPermissions +184 QFSFileEngine::fileName +192 QFSFileEngine::ownerId +200 QFSFileEngine::owner +208 QFSFileEngine::fileTime +216 QFSFileEngine::setFileName +224 QFSFileEngine::handle +232 QFSFileEngine::beginEntryList +240 QFSFileEngine::endEntryList +248 QFSFileEngine::read +256 QFSFileEngine::readLine +264 QFSFileEngine::write +272 QFSFileEngine::extension +280 QFSFileEngine::supportsExtension + +Class QFSFileEngine + size=16 align=8 + base size=16 base align=8 +QFSFileEngine (0x7f5e1b6cea10) 0 + vptr=((& QFSFileEngine::_ZTV13QFSFileEngine) + 16u) + QAbstractFileEngine (0x7f5e1b6cea80) 0 + primary-for QFSFileEngine (0x7f5e1b6cea10) + +Vtable for QProcess +QProcess::_ZTV8QProcess: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QProcess) +16 QProcess::metaObject +24 QProcess::qt_metacast +32 QProcess::qt_metacall +40 QProcess::~QProcess +48 QProcess::~QProcess +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QProcess::isSequential +120 QIODevice::open +128 QProcess::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QProcess::atEnd +168 QIODevice::reset +176 QProcess::bytesAvailable +184 QProcess::bytesToWrite +192 QProcess::canReadLine +200 QProcess::waitForReadyRead +208 QProcess::waitForBytesWritten +216 QProcess::readData +224 QIODevice::readLineData +232 QProcess::writeData +240 QProcess::setupChildProcess + +Class QProcess + size=16 align=8 + base size=16 base align=8 +QProcess (0x7f5e1b6e5d20) 0 + vptr=((& QProcess::_ZTV8QProcess) + 16u) + QIODevice (0x7f5e1b6e5d90) 0 + primary-for QProcess (0x7f5e1b6e5d20) + QObject (0x7f5e1b6e5e00) 0 + primary-for QIODevice (0x7f5e1b6e5d90) + +Class QResource + size=8 align=8 + base size=8 base align=8 +QResource (0x7f5e1b720230) 0 + +Vtable for QDirIterator +QDirIterator::_ZTV12QDirIterator: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QDirIterator) +16 QDirIterator::~QDirIterator +24 QDirIterator::~QDirIterator + +Class QDirIterator + size=16 align=8 + base size=16 base align=8 +QDirIterator (0x7f5e1b720cb0) 0 + vptr=((& QDirIterator::_ZTV12QDirIterator) + 16u) + +Vtable for QBuffer +QBuffer::_ZTV7QBuffer: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QBuffer) +16 QBuffer::metaObject +24 QBuffer::qt_metacast +32 QBuffer::qt_metacall +40 QBuffer::~QBuffer +48 QBuffer::~QBuffer +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QBuffer::connectNotify +104 QBuffer::disconnectNotify +112 QIODevice::isSequential +120 QBuffer::open +128 QBuffer::close +136 QBuffer::pos +144 QBuffer::size +152 QBuffer::seek +160 QBuffer::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QBuffer::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QBuffer::readData +224 QIODevice::readLineData +232 QBuffer::writeData + +Class QBuffer + size=16 align=8 + base size=16 base align=8 +QBuffer (0x7f5e1b752a80) 0 + vptr=((& QBuffer::_ZTV7QBuffer) + 16u) + QIODevice (0x7f5e1b752af0) 0 + primary-for QBuffer (0x7f5e1b752a80) + QObject (0x7f5e1b752b60) 0 + primary-for QIODevice (0x7f5e1b752af0) + +Vtable for QFileSystemWatcher +QFileSystemWatcher::_ZTV18QFileSystemWatcher: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFileSystemWatcher) +16 QFileSystemWatcher::metaObject +24 QFileSystemWatcher::qt_metacast +32 QFileSystemWatcher::qt_metacall +40 QFileSystemWatcher::~QFileSystemWatcher +48 QFileSystemWatcher::~QFileSystemWatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QFileSystemWatcher + size=16 align=8 + base size=16 base align=8 +QFileSystemWatcher (0x7f5e1b779690) 0 + vptr=((& QFileSystemWatcher::_ZTV18QFileSystemWatcher) + 16u) + QObject (0x7f5e1b779700) 0 + primary-for QFileSystemWatcher (0x7f5e1b779690) + +Class QUrl + size=8 align=8 + base size=8 base align=8 +QUrl (0x7f5e1b78cbd0) 0 + +Class QMetaType + size=1 align=1 + base size=0 base align=1 +QMetaType (0x7f5e1b5f73f0) 0 empty + +Class QVariant::PrivateShared + size=16 align=8 + base size=12 base align=8 +QVariant::PrivateShared (0x7f5e1b4ca930) 0 + +Class QVariant::Private::Data + size=8 align=8 + base size=8 base align=8 +QVariant::Private::Data (0x7f5e1b4cac40) 0 + +Class QVariant::Private + size=16 align=8 + base size=12 base align=8 +QVariant::Private (0x7f5e1b4caa10) 0 + +Class QVariant::Handler + size=72 align=8 + base size=72 base align=8 +QVariant::Handler (0x7f5e1b4d8930) 0 + +Class QVariant + size=16 align=8 + base size=16 base align=8 +QVariant (0x7f5e1b499af0) 0 + +Class QVariantComparisonHelper + size=8 align=8 + base size=8 base align=8 +QVariantComparisonHelper (0x7f5e1b37ccb0) 0 + +Vtable for QSettings +QSettings::_ZTV9QSettings: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QSettings) +16 QSettings::metaObject +24 QSettings::qt_metacast +32 QSettings::qt_metacall +40 QSettings::~QSettings +48 QSettings::~QSettings +56 QSettings::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSettings + size=16 align=8 + base size=16 base align=8 +QSettings (0x7f5e1b3a2cb0) 0 + vptr=((& QSettings::_ZTV9QSettings) + 16u) + QObject (0x7f5e1b3a2d20) 0 + primary-for QSettings (0x7f5e1b3a2cb0) + +Class QXmlStreamStringRef + size=16 align=8 + base size=16 base align=8 +QXmlStreamStringRef (0x7f5e1b424070) 0 + +Class QXmlStreamAttribute + size=80 align=8 + base size=73 base align=8 +QXmlStreamAttribute (0x7f5e1b442850) 0 + +Class QXmlStreamAttributes + size=8 align=8 + base size=8 base align=8 +QXmlStreamAttributes (0x7f5e1b46a380) 0 + QVector (0x7f5e1b46a3f0) 0 + +Class QXmlStreamNamespaceDeclaration + size=40 align=8 + base size=40 base align=8 +QXmlStreamNamespaceDeclaration (0x7f5e1b46a850) 0 + +Class QXmlStreamNotationDeclaration + size=56 align=8 + base size=56 base align=8 +QXmlStreamNotationDeclaration (0x7f5e1b2ac1c0) 0 + +Class QXmlStreamEntityDeclaration + size=88 align=8 + base size=88 base align=8 +QXmlStreamEntityDeclaration (0x7f5e1b2cc070) 0 + +Vtable for QXmlStreamEntityResolver +QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QXmlStreamEntityResolver) +16 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +24 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +32 QXmlStreamEntityResolver::resolveEntity +40 QXmlStreamEntityResolver::resolveUndeclaredEntity + +Class QXmlStreamEntityResolver + size=8 align=8 + base size=8 base align=8 +QXmlStreamEntityResolver (0x7f5e1b2e89a0) 0 nearly-empty + vptr=((& QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver) + 16u) + +Class QXmlStreamReader + size=8 align=8 + base size=8 base align=8 +QXmlStreamReader (0x7f5e1b2e8b60) 0 + +Class QXmlStreamWriter + size=8 align=8 + base size=8 base align=8 +QXmlStreamWriter (0x7f5e1b325a10) 0 + +Class QPoint + size=8 align=4 + base size=8 base align=4 +QPoint (0x7f5e1b361150) 0 + +Class QPointF + size=16 align=8 + base size=16 base align=8 +QPointF (0x7f5e1b199d90) 0 + +Class QLine + size=16 align=4 + base size=16 base align=4 +QLine (0x7f5e1b1d7bd0) 0 + +Class QLineF + size=32 align=8 + base size=32 base align=8 +QLineF (0x7f5e1b211a80) 0 + +Class QSize + size=8 align=4 + base size=8 base align=4 +QSize (0x7f5e1b06d540) 0 + +Class QSizeF + size=16 align=8 + base size=16 base align=8 +QSizeF (0x7f5e1b0b8380) 0 + +Class QRect + size=16 align=4 + base size=16 base align=4 +QRect (0x7f5e1b1059a0) 0 + +Class QRectF + size=32 align=8 + base size=32 base align=8 +QRectF (0x7f5e1afb5380) 0 + +Class QSharedData + size=4 align=4 + base size=4 base align=4 +QSharedData (0x7f5e1b060150) 0 + +Vtable for QtSharedPointer::ExternalRefCountData +QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN15QtSharedPointer20ExternalRefCountDataE) +16 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +24 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +32 QtSharedPointer::ExternalRefCountData::destroy + +Class QtSharedPointer::ExternalRefCountData + size=16 align=8 + base size=16 base align=8 +QtSharedPointer::ExternalRefCountData (0x7f5e1ae90af0) 0 + vptr=((& QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE) + 16u) + +Class QLinkedListData + size=32 align=8 + base size=32 base align=8 +QLinkedListData (0x7f5e1af16c40) 0 + +Class QBitArray + size=8 align=8 + base size=8 base align=8 +QBitArray (0x7f5e1ade3b60) 0 + +Class QBitRef + size=16 align=8 + base size=12 base align=8 +QBitRef (0x7f5e1ae56930) 0 + +Class QByteArrayMatcher + size=1040 align=8 + base size=1040 base align=8 +QByteArrayMatcher (0x7f5e1ac70310) 0 + +Class QCryptographicHash + size=8 align=8 + base size=8 base align=8 +QCryptographicHash (0x7f5e1ac81a10) 0 + +Class QTextBoundaryFinder + size=48 align=8 + base size=48 base align=8 +QTextBoundaryFinder (0x7f5e1acae460) 0 + +Class QDate + size=4 align=4 + base size=4 base align=4 +QDate (0x7f5e1acc47e0) 0 + +Class QTime + size=4 align=4 + base size=4 base align=4 +QTime (0x7f5e1aced770) 0 + +Class QDateTime + size=8 align=8 + base size=8 base align=8 +QDateTime (0x7f5e1ad0bd20) 0 + +Vtable for QTimeLine +QTimeLine::_ZTV9QTimeLine: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTimeLine) +16 QTimeLine::metaObject +24 QTimeLine::qt_metacast +32 QTimeLine::qt_metacall +40 QTimeLine::~QTimeLine +48 QTimeLine::~QTimeLine +56 QObject::event +64 QObject::eventFilter +72 QTimeLine::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTimeLine::valueForTime + +Class QTimeLine + size=16 align=8 + base size=16 base align=8 +QTimeLine (0x7f5e1ad3f1c0) 0 + vptr=((& QTimeLine::_ZTV9QTimeLine) + 16u) + QObject (0x7f5e1ad3f230) 0 + primary-for QTimeLine (0x7f5e1ad3f1c0) + +Vtable for QRunnable +QRunnable::_ZTV9QRunnable: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QRunnable) +16 __cxa_pure_virtual +24 QRunnable::~QRunnable +32 QRunnable::~QRunnable + +Class QRunnable + size=16 align=8 + base size=12 base align=8 +QRunnable (0x7f5e1ab67070) 0 + vptr=((& QRunnable::_ZTV9QRunnable) + 16u) + +Class QMutex + size=8 align=8 + base size=8 base align=8 +QMutex (0x7f5e1ab73700) 0 + +Class QMutexLocker + size=8 align=8 + base size=8 base align=8 +QMutexLocker (0x7f5e1ab822a0) 0 + +Vtable for QtConcurrent::Exception +QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent9ExceptionE) +16 QtConcurrent::Exception::~Exception +24 QtConcurrent::Exception::~Exception +32 std::exception::what +40 QtConcurrent::Exception::raise +48 QtConcurrent::Exception::clone + +Class QtConcurrent::Exception + size=8 align=8 + base size=8 base align=8 +QtConcurrent::Exception (0x7f5e1ab985b0) 0 nearly-empty + vptr=((& QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE) + 16u) + std::exception (0x7f5e1ab98620) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7f5e1ab985b0) + +Vtable for QtConcurrent::UnhandledException +QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent18UnhandledExceptionE) +16 QtConcurrent::UnhandledException::~UnhandledException +24 QtConcurrent::UnhandledException::~UnhandledException +32 std::exception::what +40 QtConcurrent::UnhandledException::raise +48 QtConcurrent::UnhandledException::clone + +Class QtConcurrent::UnhandledException + size=8 align=8 + base size=8 base align=8 +QtConcurrent::UnhandledException (0x7f5e1ab98850) 0 nearly-empty + vptr=((& QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE) + 16u) + QtConcurrent::Exception (0x7f5e1ab988c0) 0 nearly-empty + primary-for QtConcurrent::UnhandledException (0x7f5e1ab98850) + std::exception (0x7f5e1ab98930) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7f5e1ab988c0) + +Class QtConcurrent::internal::ExceptionHolder + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionHolder (0x7f5e1ab98b60) 0 + +Class QtConcurrent::internal::ExceptionStore + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionStore (0x7f5e1ab98ee0) 0 + +Class QtConcurrent::ResultItem + size=16 align=8 + base size=16 base align=8 +QtConcurrent::ResultItem (0x7f5e1ab98f50) 0 + +Class QtConcurrent::ResultIteratorBase + size=16 align=8 + base size=12 base align=8 +QtConcurrent::ResultIteratorBase (0x7f5e1abafe70) 0 + +Vtable for QtConcurrent::ResultStoreBase +QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent15ResultStoreBaseE) +16 QtConcurrent::ResultStoreBase::~ResultStoreBase +24 QtConcurrent::ResultStoreBase::~ResultStoreBase + +Class QtConcurrent::ResultStoreBase + size=48 align=8 + base size=44 base align=8 +QtConcurrent::ResultStoreBase (0x7f5e1abb4a10) 0 + vptr=((& QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE) + 16u) + +Vtable for QFutureInterfaceBase +QFutureInterfaceBase::_ZTV20QFutureInterfaceBase: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QFutureInterfaceBase) +16 QFutureInterfaceBase::~QFutureInterfaceBase +24 QFutureInterfaceBase::~QFutureInterfaceBase + +Class QFutureInterfaceBase + size=16 align=8 + base size=16 base align=8 +QFutureInterfaceBase (0x7f5e1abf4e70) 0 + vptr=((& QFutureInterfaceBase::_ZTV20QFutureInterfaceBase) + 16u) + +Vtable for QThread +QThread::_ZTV7QThread: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QThread) +16 QThread::metaObject +24 QThread::qt_metacast +32 QThread::qt_metacall +40 QThread::~QThread +48 QThread::~QThread +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QThread::run + +Class QThread + size=16 align=8 + base size=16 base align=8 +QThread (0x7f5e1aad9e00) 0 + vptr=((& QThread::_ZTV7QThread) + 16u) + QObject (0x7f5e1aad9e70) 0 + primary-for QThread (0x7f5e1aad9e00) + +Vtable for QThreadPool +QThreadPool::_ZTV11QThreadPool: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QThreadPool) +16 QThreadPool::metaObject +24 QThreadPool::qt_metacast +32 QThreadPool::qt_metacall +40 QThreadPool::~QThreadPool +48 QThreadPool::~QThreadPool +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QThreadPool + size=16 align=8 + base size=16 base align=8 +QThreadPool (0x7f5e1ab0bcb0) 0 + vptr=((& QThreadPool::_ZTV11QThreadPool) + 16u) + QObject (0x7f5e1ab0bd20) 0 + primary-for QThreadPool (0x7f5e1ab0bcb0) + +Class QWaitCondition + size=8 align=8 + base size=8 base align=8 +QWaitCondition (0x7f5e1ab23540) 0 + +Class QtConcurrent::ThreadEngineSemaphore + size=24 align=8 + base size=24 base align=8 +QtConcurrent::ThreadEngineSemaphore (0x7f5e1ab23a80) 0 + +Vtable for QtConcurrent::ThreadEngineBase +QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent16ThreadEngineBaseE) +16 QtConcurrent::ThreadEngineBase::run +24 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +32 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +40 QtConcurrent::ThreadEngineBase::start +48 QtConcurrent::ThreadEngineBase::finish +56 QtConcurrent::ThreadEngineBase::threadFunction +64 QtConcurrent::ThreadEngineBase::shouldStartThread +72 QtConcurrent::ThreadEngineBase::shouldThrottleThread +80 __cxa_pure_virtual + +Class QtConcurrent::ThreadEngineBase + size=64 align=8 + base size=64 base align=8 +QtConcurrent::ThreadEngineBase (0x7f5e1ab42460) 0 + vptr=((& QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE) + 16u) + QRunnable (0x7f5e1ab424d0) 0 + primary-for QtConcurrent::ThreadEngineBase (0x7f5e1ab42460) + +VTT for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTTN12QtConcurrent12ThreadEngineIvEE: 2u entries +0 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 24u) +8 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 136u) + +Class std::input_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::input_iterator_tag (0x7f5e1a986850) 0 empty + +Class std::output_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::output_iterator_tag (0x7f5e1a9868c0) 0 empty + +Class std::forward_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::forward_iterator_tag (0x7f5e1a986930) 0 empty + std::input_iterator_tag (0x7f5e1a9869a0) 0 empty + +Class std::bidirectional_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::bidirectional_iterator_tag (0x7f5e1a986a10) 0 empty + std::forward_iterator_tag (0x7f5e1a986a80) 0 empty + std::input_iterator_tag (0x7f5e1a986af0) 0 empty + +Class std::random_access_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::random_access_iterator_tag (0x7f5e1a986b60) 0 empty + std::bidirectional_iterator_tag (0x7f5e1a986bd0) 0 empty + std::forward_iterator_tag (0x7f5e1a986c40) 0 empty + std::input_iterator_tag (0x7f5e1a986cb0) 0 empty + +Class std::__true_type + size=1 align=1 + base size=0 base align=1 +std::__true_type (0x7f5e1a9972a0) 0 empty + +Class std::__false_type + size=1 align=1 + base size=0 base align=1 +std::__false_type (0x7f5e1a997310) 0 empty + +Class lconv + size=96 align=8 + base size=96 base align=8 +lconv (0x7f5e1a773620) 0 + +Class sched_param + size=4 align=4 + base size=4 base align=4 +sched_param (0x7f5e1a773a80) 0 + +Class __sched_param + size=4 align=4 + base size=4 base align=4 +__sched_param (0x7f5e1a773af0) 0 + +Class tm + size=56 align=8 + base size=56 base align=8 +tm (0x7f5e1a773bd0) 0 + +Class itimerspec + size=32 align=8 + base size=32 base align=8 +itimerspec (0x7f5e1a773cb0) 0 + +Class _pthread_cleanup_buffer + size=32 align=8 + base size=32 base align=8 +_pthread_cleanup_buffer (0x7f5e1a773d20) 0 + +Class __pthread_cleanup_frame + size=24 align=8 + base size=24 base align=8 +__pthread_cleanup_frame (0x7f5e1a773e70) 0 + +Class __pthread_cleanup_class + size=24 align=8 + base size=24 base align=8 +__pthread_cleanup_class (0x7f5e1a773ee0) 0 + +Vtable for __cxxabiv1::__forced_unwind +__cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN10__cxxabiv115__forced_unwindE) +16 __cxxabiv1::__forced_unwind::~__forced_unwind +24 __cxxabiv1::__forced_unwind::~__forced_unwind +32 __cxa_pure_virtual + +Class __cxxabiv1::__forced_unwind + size=8 align=8 + base size=8 base align=8 +__cxxabiv1::__forced_unwind (0x7f5e1a689a80) 0 nearly-empty + vptr=((& __cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE) + 16u) + +Class std::locale + size=8 align=8 + base size=8 base align=8 +std::locale (0x7f5e1a5395b0) 0 + +Vtable for std::locale::facet +std::locale::facet::_ZTVNSt6locale5facetE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTINSt6locale5facetE) +16 std::locale::facet::~facet +24 std::locale::facet::~facet + +Class std::locale::facet + size=16 align=8 + base size=12 base align=8 +std::locale::facet (0x7f5e1a3dccb0) 0 + vptr=((& std::locale::facet::_ZTVNSt6locale5facetE) + 16u) + +Class std::locale::id + size=8 align=8 + base size=8 base align=8 +std::locale::id (0x7f5e1a3f12a0) 0 + +Class std::locale::_Impl + size=40 align=8 + base size=40 base align=8 +std::locale::_Impl (0x7f5e1a3f18c0) 0 + +Vtable for std::ios_base::failure +std::ios_base::failure::_ZTVNSt8ios_base7failureE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTINSt8ios_base7failureE) +16 std::ios_base::failure::~failure +24 std::ios_base::failure::~failure +32 std::ios_base::failure::what + +Class std::ios_base::failure + size=16 align=8 + base size=16 base align=8 +std::ios_base::failure (0x7f5e1a27e070) 0 + vptr=((& std::ios_base::failure::_ZTVNSt8ios_base7failureE) + 16u) + std::exception (0x7f5e1a27e0e0) 0 nearly-empty + primary-for std::ios_base::failure (0x7f5e1a27e070) + +Class std::ios_base::_Callback_list + size=24 align=8 + base size=24 base align=8 +std::ios_base::_Callback_list (0x7f5e1a28b310) 0 + +Class std::ios_base::_Words + size=16 align=8 + base size=16 base align=8 +std::ios_base::_Words (0x7f5e1a28bd90) 0 + +Class std::ios_base::Init + size=1 align=1 + base size=0 base align=1 +std::ios_base::Init (0x7f5e1a2944d0) 0 empty + +Vtable for std::ios_base +std::ios_base::_ZTVSt8ios_base: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt8ios_base) +16 std::ios_base::~ios_base +24 std::ios_base::~ios_base + +Class std::ios_base + size=216 align=8 + base size=216 base align=8 +std::ios_base (0x7f5e1a27e000) 0 + vptr=((& std::ios_base::_ZTVSt8ios_base) + 16u) + +Class std::ctype_base + size=1 align=1 + base size=0 base align=1 +std::ctype_base (0x7f5e1a30b930) 0 empty + +Class std::__num_base + size=1 align=1 + base size=0 base align=1 +std::__num_base (0x7f5e1a2301c0) 0 empty + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSo: 2u entries +0 ((& std::basic_ostream >::_ZTVSo) + 24u) +8 ((& std::basic_ostream >::_ZTVSo) + 64u) + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSt13basic_ostreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 24u) +8 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 64u) + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSi: 2u entries +0 ((& std::basic_istream >::_ZTVSi) + 24u) +8 ((& std::basic_istream >::_ZTVSi) + 64u) + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSt13basic_istreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 24u) +8 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 64u) + +Construction vtable for std::basic_istream > (0x7f5e19d5d310 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd0_Si: 10u entries +0 24u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISi) +24 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +32 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +40 -24u +48 (int (*)(...))-0x00000000000000018 +56 (int (*)(...))(& _ZTISi) +64 std::basic_istream >::_ZTv0_n24_NSiD1Ev +72 std::basic_istream >::_ZTv0_n24_NSiD0Ev + +Construction vtable for std::basic_ostream > (0x7f5e19d5d460 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd16_So: 10u entries +0 8u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISo) +24 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +32 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +40 -8u +48 (int (*)(...))-0x00000000000000008 +56 (int (*)(...))(& _ZTISo) +64 std::basic_ostream >::_ZTv0_n24_NSoD1Ev +72 std::basic_ostream >::_ZTv0_n24_NSoD0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSd: 7u entries +0 ((& std::basic_iostream >::_ZTVSd) + 24u) +8 ((& std::basic_iostream >::_ZTCSd0_Si) + 24u) +16 ((& std::basic_iostream >::_ZTCSd0_Si) + 64u) +24 ((& std::basic_iostream >::_ZTCSd16_So) + 24u) +32 ((& std::basic_iostream >::_ZTCSd16_So) + 64u) +40 ((& std::basic_iostream >::_ZTVSd) + 104u) +48 ((& std::basic_iostream >::_ZTVSd) + 64u) + +Construction vtable for std::basic_istream > (0x7f5e19d5d620 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E: 10u entries +0 24u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +24 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +32 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +40 -24u +48 (int (*)(...))-0x00000000000000018 +56 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +64 std::basic_istream >::_ZTv0_n24_NSt13basic_istreamIwSt11char_traitsIwEED1Ev +72 std::basic_istream >::_ZTv0_n24_NSt13basic_istreamIwSt11char_traitsIwEED0Ev + +Construction vtable for std::basic_ostream > (0x7f5e19d5d770 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE16_St13basic_ostreamIwS1_E: 10u entries +0 8u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +24 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +32 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +40 -8u +48 (int (*)(...))-0x00000000000000008 +56 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +64 std::basic_ostream >::_ZTv0_n24_NSt13basic_ostreamIwSt11char_traitsIwEED1Ev +72 std::basic_ostream >::_ZTv0_n24_NSt13basic_ostreamIwSt11char_traitsIwEED0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSt14basic_iostreamIwSt11char_traitsIwEE: 7u entries +0 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 24u) +8 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 24u) +16 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 64u) +24 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE16_St13basic_ostreamIwS1_E) + 24u) +32 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE16_St13basic_ostreamIwS1_E) + 64u) +40 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 104u) +48 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 64u) + +Class QtConcurrent::BlockSizeManager + size=96 align=8 + base size=92 base align=8 +QtConcurrent::BlockSizeManager (0x7f5e19dc7230) 0 + +Vtable for QFutureWatcherBase +QFutureWatcherBase::_ZTV18QFutureWatcherBase: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFutureWatcherBase) +16 QFutureWatcherBase::metaObject +24 QFutureWatcherBase::qt_metacast +32 QFutureWatcherBase::qt_metacall +40 QFutureWatcherBase::~QFutureWatcherBase +48 QFutureWatcherBase::~QFutureWatcherBase +56 QFutureWatcherBase::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QFutureWatcherBase::connectNotify +104 QFutureWatcherBase::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QFutureWatcherBase + size=16 align=8 + base size=16 base align=8 +QFutureWatcherBase (0x7f5e19991bd0) 0 + vptr=((& QFutureWatcherBase::_ZTV18QFutureWatcherBase) + 16u) + QObject (0x7f5e19991c40) 0 + primary-for QFutureWatcherBase (0x7f5e19991bd0) + +Vtable for QFactoryInterface +QFactoryInterface::_ZTV17QFactoryInterface: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QFactoryInterface) +16 QFactoryInterface::~QFactoryInterface +24 QFactoryInterface::~QFactoryInterface +32 __cxa_pure_virtual + +Class QFactoryInterface + size=8 align=8 + base size=8 base align=8 +QFactoryInterface (0x7f5e198a9e00) 0 nearly-empty + vptr=((& QFactoryInterface::_ZTV17QFactoryInterface) + 16u) + +Vtable for QTextCodecFactoryInterface +QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QTextCodecFactoryInterface) +16 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +24 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QTextCodecFactoryInterface + size=8 align=8 + base size=8 base align=8 +QTextCodecFactoryInterface (0x7f5e198cdee0) 0 nearly-empty + vptr=((& QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface) + 16u) + QFactoryInterface (0x7f5e198cdf50) 0 nearly-empty + primary-for QTextCodecFactoryInterface (0x7f5e198cdee0) + +Vtable for QTextCodecPlugin +QTextCodecPlugin::_ZTV16QTextCodecPlugin: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QTextCodecPlugin) +16 QTextCodecPlugin::metaObject +24 QTextCodecPlugin::qt_metacast +32 QTextCodecPlugin::qt_metacall +40 QTextCodecPlugin::~QTextCodecPlugin +48 QTextCodecPlugin::~QTextCodecPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 QTextCodecPlugin::keys +160 QTextCodecPlugin::create +168 (int (*)(...))-0x00000000000000010 +176 (int (*)(...))(& _ZTI16QTextCodecPlugin) +184 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD1Ev +192 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD0Ev +200 QTextCodecPlugin::_ZThn16_NK16QTextCodecPlugin4keysEv +208 QTextCodecPlugin::_ZThn16_N16QTextCodecPlugin6createERK7QString + +Class QTextCodecPlugin + size=24 align=8 + base size=24 base align=8 +QTextCodecPlugin (0x7f5e198d0e00) 0 + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 16u) + QObject (0x7f5e198d87e0) 0 + primary-for QTextCodecPlugin (0x7f5e198d0e00) + QTextCodecFactoryInterface (0x7f5e198d8850) 16 nearly-empty + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 184u) + QFactoryInterface (0x7f5e198d88c0) 16 nearly-empty + primary-for QTextCodecFactoryInterface (0x7f5e198d8850) + +Class QLibraryInfo + size=1 align=1 + base size=0 base align=1 +QLibraryInfo (0x7f5e198ee700) 0 empty + +Vtable for QTranslator +QTranslator::_ZTV11QTranslator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTranslator) +16 QTranslator::metaObject +24 QTranslator::qt_metacast +32 QTranslator::qt_metacall +40 QTranslator::~QTranslator +48 QTranslator::~QTranslator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTranslator::translate +120 QTranslator::isEmpty + +Class QTranslator + size=16 align=8 + base size=16 base align=8 +QTranslator (0x7f5e19933000) 0 + vptr=((& QTranslator::_ZTV11QTranslator) + 16u) + QObject (0x7f5e19933070) 0 + primary-for QTranslator (0x7f5e19933000) + +Class __exception + size=40 align=8 + base size=40 base align=8 +__exception (0x7f5e19943f50) 0 + +Vtable for QMimeData +QMimeData::_ZTV9QMimeData: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QMimeData) +16 QMimeData::metaObject +24 QMimeData::qt_metacast +32 QMimeData::qt_metacall +40 QMimeData::~QMimeData +48 QMimeData::~QMimeData +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMimeData::hasFormat +120 QMimeData::formats +128 QMimeData::retrieveData + +Class QMimeData + size=16 align=8 + base size=16 base align=8 +QMimeData (0x7f5e197b0150) 0 + vptr=((& QMimeData::_ZTV9QMimeData) + 16u) + QObject (0x7f5e197b01c0) 0 + primary-for QMimeData (0x7f5e197b0150) + +Vtable for QEventLoop +QEventLoop::_ZTV10QEventLoop: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QEventLoop) +16 QEventLoop::metaObject +24 QEventLoop::qt_metacast +32 QEventLoop::qt_metacall +40 QEventLoop::~QEventLoop +48 QEventLoop::~QEventLoop +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QEventLoop + size=16 align=8 + base size=16 base align=8 +QEventLoop (0x7f5e197c79a0) 0 + vptr=((& QEventLoop::_ZTV10QEventLoop) + 16u) + QObject (0x7f5e197c7a10) 0 + primary-for QEventLoop (0x7f5e197c79a0) + +Vtable for QEvent +QEvent::_ZTV6QEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QEvent) +16 QEvent::~QEvent +24 QEvent::~QEvent + +Class QEvent + size=24 align=8 + base size=20 base align=8 +QEvent (0x7f5e1980a310) 0 + vptr=((& QEvent::_ZTV6QEvent) + 16u) + +Vtable for QTimerEvent +QTimerEvent::_ZTV11QTimerEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTimerEvent) +16 QTimerEvent::~QTimerEvent +24 QTimerEvent::~QTimerEvent + +Class QTimerEvent + size=24 align=8 + base size=24 base align=8 +QTimerEvent (0x7f5e19822ee0) 0 + vptr=((& QTimerEvent::_ZTV11QTimerEvent) + 16u) + QEvent (0x7f5e19822f50) 0 + primary-for QTimerEvent (0x7f5e19822ee0) + +Vtable for QChildEvent +QChildEvent::_ZTV11QChildEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QChildEvent) +16 QChildEvent::~QChildEvent +24 QChildEvent::~QChildEvent + +Class QChildEvent + size=32 align=8 + base size=32 base align=8 +QChildEvent (0x7f5e19824380) 0 + vptr=((& QChildEvent::_ZTV11QChildEvent) + 16u) + QEvent (0x7f5e198243f0) 0 + primary-for QChildEvent (0x7f5e19824380) + +Vtable for QCustomEvent +QCustomEvent::_ZTV12QCustomEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QCustomEvent) +16 QCustomEvent::~QCustomEvent +24 QCustomEvent::~QCustomEvent + +Class QCustomEvent + size=24 align=8 + base size=20 base align=8 +QCustomEvent (0x7f5e19837620) 0 + vptr=((& QCustomEvent::_ZTV12QCustomEvent) + 16u) + QEvent (0x7f5e19837690) 0 + primary-for QCustomEvent (0x7f5e19837620) + +Vtable for QDynamicPropertyChangeEvent +QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QDynamicPropertyChangeEvent) +16 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent +24 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent + +Class QDynamicPropertyChangeEvent + size=32 align=8 + base size=32 base align=8 +QDynamicPropertyChangeEvent (0x7f5e19837e00) 0 + vptr=((& QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent) + 16u) + QEvent (0x7f5e19837e70) 0 + primary-for QDynamicPropertyChangeEvent (0x7f5e19837e00) + +Vtable for QCoreApplication +QCoreApplication::_ZTV16QCoreApplication: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QCoreApplication) +16 QCoreApplication::metaObject +24 QCoreApplication::qt_metacast +32 QCoreApplication::qt_metacall +40 QCoreApplication::~QCoreApplication +48 QCoreApplication::~QCoreApplication +56 QCoreApplication::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCoreApplication::notify +120 QCoreApplication::compressEvent + +Class QCoreApplication + size=16 align=8 + base size=16 base align=8 +QCoreApplication (0x7f5e19847230) 0 + vptr=((& QCoreApplication::_ZTV16QCoreApplication) + 16u) + QObject (0x7f5e198472a0) 0 + primary-for QCoreApplication (0x7f5e19847230) + +Vtable for QSharedMemory +QSharedMemory::_ZTV13QSharedMemory: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSharedMemory) +16 QSharedMemory::metaObject +24 QSharedMemory::qt_metacast +32 QSharedMemory::qt_metacall +40 QSharedMemory::~QSharedMemory +48 QSharedMemory::~QSharedMemory +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSharedMemory + size=16 align=8 + base size=16 base align=8 +QSharedMemory (0x7f5e19671a80) 0 + vptr=((& QSharedMemory::_ZTV13QSharedMemory) + 16u) + QObject (0x7f5e19671af0) 0 + primary-for QSharedMemory (0x7f5e19671a80) + +Class QModelIndex + size=24 align=8 + base size=24 base align=8 +QModelIndex (0x7f5e19691850) 0 + +Class QPersistentModelIndex + size=8 align=8 + base size=8 base align=8 +QPersistentModelIndex (0x7f5e196b9310) 0 + +Vtable for QAbstractItemModel +QAbstractItemModel::_ZTV18QAbstractItemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractItemModel) +16 QAbstractItemModel::metaObject +24 QAbstractItemModel::qt_metacast +32 QAbstractItemModel::qt_metacall +40 QAbstractItemModel::~QAbstractItemModel +48 QAbstractItemModel::~QAbstractItemModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractItemModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractItemModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractItemModel + size=16 align=8 + base size=16 base align=8 +QAbstractItemModel (0x7f5e196c85b0) 0 + vptr=((& QAbstractItemModel::_ZTV18QAbstractItemModel) + 16u) + QObject (0x7f5e196c8620) 0 + primary-for QAbstractItemModel (0x7f5e196c85b0) + +Vtable for QAbstractTableModel +QAbstractTableModel::_ZTV19QAbstractTableModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractTableModel) +16 QAbstractTableModel::metaObject +24 QAbstractTableModel::qt_metacast +32 QAbstractTableModel::qt_metacall +40 QAbstractTableModel::~QAbstractTableModel +48 QAbstractTableModel::~QAbstractTableModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractTableModel::index +120 QAbstractTableModel::parent +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractTableModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractTableModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractTableModel + size=16 align=8 + base size=16 base align=8 +QAbstractTableModel (0x7f5e19719930) 0 + vptr=((& QAbstractTableModel::_ZTV19QAbstractTableModel) + 16u) + QAbstractItemModel (0x7f5e197199a0) 0 + primary-for QAbstractTableModel (0x7f5e19719930) + QObject (0x7f5e19719a10) 0 + primary-for QAbstractItemModel (0x7f5e197199a0) + +Vtable for QAbstractListModel +QAbstractListModel::_ZTV18QAbstractListModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractListModel) +16 QAbstractListModel::metaObject +24 QAbstractListModel::qt_metacast +32 QAbstractListModel::qt_metacall +40 QAbstractListModel::~QAbstractListModel +48 QAbstractListModel::~QAbstractListModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractListModel::index +120 QAbstractListModel::parent +128 __cxa_pure_virtual +136 QAbstractListModel::columnCount +144 QAbstractListModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractListModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractListModel + size=16 align=8 + base size=16 base align=8 +QAbstractListModel (0x7f5e19726ee0) 0 + vptr=((& QAbstractListModel::_ZTV18QAbstractListModel) + 16u) + QAbstractItemModel (0x7f5e19726f50) 0 + primary-for QAbstractListModel (0x7f5e19726ee0) + QObject (0x7f5e19726230) 0 + primary-for QAbstractItemModel (0x7f5e19726f50) + +Vtable for QSignalMapper +QSignalMapper::_ZTV13QSignalMapper: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSignalMapper) +16 QSignalMapper::metaObject +24 QSignalMapper::qt_metacast +32 QSignalMapper::qt_metacall +40 QSignalMapper::~QSignalMapper +48 QSignalMapper::~QSignalMapper +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSignalMapper + size=16 align=8 + base size=16 base align=8 +QSignalMapper (0x7f5e19568000) 0 + vptr=((& QSignalMapper::_ZTV13QSignalMapper) + 16u) + QObject (0x7f5e19568070) 0 + primary-for QSignalMapper (0x7f5e19568000) + +Vtable for QObjectCleanupHandler +QObjectCleanupHandler::_ZTV21QObjectCleanupHandler: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QObjectCleanupHandler) +16 QObjectCleanupHandler::metaObject +24 QObjectCleanupHandler::qt_metacast +32 QObjectCleanupHandler::qt_metacall +40 QObjectCleanupHandler::~QObjectCleanupHandler +48 QObjectCleanupHandler::~QObjectCleanupHandler +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObjectCleanupHandler + size=24 align=8 + base size=24 base align=8 +QObjectCleanupHandler (0x7f5e1957e3f0) 0 + vptr=((& QObjectCleanupHandler::_ZTV21QObjectCleanupHandler) + 16u) + QObject (0x7f5e1957e460) 0 + primary-for QObjectCleanupHandler (0x7f5e1957e3f0) + +Class QBasicTimer + size=4 align=4 + base size=4 base align=4 +QBasicTimer (0x7f5e1958e540) 0 + +Vtable for QSocketNotifier +QSocketNotifier::_ZTV15QSocketNotifier: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSocketNotifier) +16 QSocketNotifier::metaObject +24 QSocketNotifier::qt_metacast +32 QSocketNotifier::qt_metacall +40 QSocketNotifier::~QSocketNotifier +48 QSocketNotifier::~QSocketNotifier +56 QSocketNotifier::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSocketNotifier + size=32 align=8 + base size=25 base align=8 +QSocketNotifier (0x7f5e19598930) 0 + vptr=((& QSocketNotifier::_ZTV15QSocketNotifier) + 16u) + QObject (0x7f5e195989a0) 0 + primary-for QSocketNotifier (0x7f5e19598930) + +Vtable for QTimer +QTimer::_ZTV6QTimer: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QTimer) +16 QTimer::metaObject +24 QTimer::qt_metacast +32 QTimer::qt_metacall +40 QTimer::~QTimer +48 QTimer::~QTimer +56 QObject::event +64 QObject::eventFilter +72 QTimer::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTimer + size=32 align=8 + base size=29 base align=8 +QTimer (0x7f5e195b7cb0) 0 + vptr=((& QTimer::_ZTV6QTimer) + 16u) + QObject (0x7f5e195b7d20) 0 + primary-for QTimer (0x7f5e195b7cb0) + +Vtable for QAbstractEventDispatcher +QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QAbstractEventDispatcher) +16 QAbstractEventDispatcher::metaObject +24 QAbstractEventDispatcher::qt_metacast +32 QAbstractEventDispatcher::qt_metacall +40 QAbstractEventDispatcher::~QAbstractEventDispatcher +48 QAbstractEventDispatcher::~QAbstractEventDispatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 QAbstractEventDispatcher::startingUp +208 QAbstractEventDispatcher::closingDown + +Class QAbstractEventDispatcher + size=16 align=8 + base size=16 base align=8 +QAbstractEventDispatcher (0x7f5e195da2a0) 0 + vptr=((& QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher) + 16u) + QObject (0x7f5e195da310) 0 + primary-for QAbstractEventDispatcher (0x7f5e195da2a0) + +Class QMetaMethod + size=16 align=8 + base size=12 base align=8 +QMetaMethod (0x7f5e195f5150) 0 + +Class QMetaEnum + size=16 align=8 + base size=12 base align=8 +QMetaEnum (0x7f5e196115b0) 0 + +Class QMetaProperty + size=32 align=8 + base size=32 base align=8 +QMetaProperty (0x7f5e1961b310) 0 + +Class QMetaClassInfo + size=16 align=8 + base size=12 base align=8 +QMetaClassInfo (0x7f5e1961b9a0) 0 + +Class QSystemSemaphore + size=8 align=8 + base size=8 base align=8 +QSystemSemaphore (0x7f5e1962f4d0) 0 + +Vtable for QLibrary +QLibrary::_ZTV8QLibrary: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QLibrary) +16 QLibrary::metaObject +24 QLibrary::qt_metacast +32 QLibrary::qt_metacall +40 QLibrary::~QLibrary +48 QLibrary::~QLibrary +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QLibrary + size=32 align=8 + base size=25 base align=8 +QLibrary (0x7f5e1962fe00) 0 + vptr=((& QLibrary::_ZTV8QLibrary) + 16u) + QObject (0x7f5e1962fe70) 0 + primary-for QLibrary (0x7f5e1962fe00) + +Vtable for QPluginLoader +QPluginLoader::_ZTV13QPluginLoader: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QPluginLoader) +16 QPluginLoader::metaObject +24 QPluginLoader::qt_metacast +32 QPluginLoader::qt_metacall +40 QPluginLoader::~QPluginLoader +48 QPluginLoader::~QPluginLoader +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QPluginLoader + size=32 align=8 + base size=25 base align=8 +QPluginLoader (0x7f5e194748c0) 0 + vptr=((& QPluginLoader::_ZTV13QPluginLoader) + 16u) + QObject (0x7f5e19474930) 0 + primary-for QPluginLoader (0x7f5e194748c0) + +Class QUuid + size=16 align=4 + base size=16 base align=4 +QUuid (0x7f5e19498070) 0 + +Class QSemaphore + size=8 align=8 + base size=8 base align=8 +QSemaphore (0x7f5e194b89a0) 0 + +Class QThreadStorageData + size=4 align=4 + base size=4 base align=4 +QThreadStorageData (0x7f5e194b8ee0) 0 + +Class QReadWriteLock + size=8 align=8 + base size=8 base align=8 +QReadWriteLock (0x7f5e194c9690) 0 + +Class QReadLocker + size=8 align=8 + base size=8 base align=8 +QReadLocker (0x7f5e194c9d20) 0 + +Class QWriteLocker + size=8 align=8 + base size=8 base align=8 +QWriteLocker (0x7f5e194f70e0) 0 + +Class QSqlRecord + size=8 align=8 + base size=8 base align=8 +QSqlRecord (0x7f5e1950a460) 0 + +Class QSqlIndex + size=32 align=8 + base size=32 base align=8 +QSqlIndex (0x7f5e1951d0e0) 0 + QSqlRecord (0x7f5e1951d150) 0 + +Vtable for QSqlResult +QSqlResult::_ZTV10QSqlResult: 29u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QSqlResult) +16 QSqlResult::~QSqlResult +24 QSqlResult::~QSqlResult +32 QSqlResult::handle +40 QSqlResult::setAt +48 QSqlResult::setActive +56 QSqlResult::setLastError +64 QSqlResult::setQuery +72 QSqlResult::setSelect +80 QSqlResult::setForwardOnly +88 QSqlResult::exec +96 QSqlResult::prepare +104 QSqlResult::savePrepare +112 QSqlResult::bindValue +120 QSqlResult::bindValue +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 QSqlResult::fetchNext +168 QSqlResult::fetchPrevious +176 __cxa_pure_virtual +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 __cxa_pure_virtual +208 QSqlResult::record +216 QSqlResult::lastInsertId +224 QSqlResult::virtual_hook + +Class QSqlResult + size=16 align=8 + base size=16 base align=8 +QSqlResult (0x7f5e1936f620) 0 + vptr=((& QSqlResult::_ZTV10QSqlResult) + 16u) + +Vtable for QSqlDriverCreatorBase +QSqlDriverCreatorBase::_ZTV21QSqlDriverCreatorBase: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QSqlDriverCreatorBase) +16 QSqlDriverCreatorBase::~QSqlDriverCreatorBase +24 QSqlDriverCreatorBase::~QSqlDriverCreatorBase +32 __cxa_pure_virtual + +Class QSqlDriverCreatorBase + size=8 align=8 + base size=8 base align=8 +QSqlDriverCreatorBase (0x7f5e1936fee0) 0 nearly-empty + vptr=((& QSqlDriverCreatorBase::_ZTV21QSqlDriverCreatorBase) + 16u) + +Class QSqlDatabase + size=8 align=8 + base size=8 base align=8 +QSqlDatabase (0x7f5e1939c9a0) 0 + +Class QSqlQuery + size=8 align=8 + base size=8 base align=8 +QSqlQuery (0x7f5e193acd90) 0 + +Vtable for QSqlDriverFactoryInterface +QSqlDriverFactoryInterface::_ZTV26QSqlDriverFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QSqlDriverFactoryInterface) +16 QSqlDriverFactoryInterface::~QSqlDriverFactoryInterface +24 QSqlDriverFactoryInterface::~QSqlDriverFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QSqlDriverFactoryInterface + size=8 align=8 + base size=8 base align=8 +QSqlDriverFactoryInterface (0x7f5e193b8850) 0 nearly-empty + vptr=((& QSqlDriverFactoryInterface::_ZTV26QSqlDriverFactoryInterface) + 16u) + QFactoryInterface (0x7f5e193b88c0) 0 nearly-empty + primary-for QSqlDriverFactoryInterface (0x7f5e193b8850) + +Vtable for QSqlDriverPlugin +QSqlDriverPlugin::_ZTV16QSqlDriverPlugin: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QSqlDriverPlugin) +16 QSqlDriverPlugin::metaObject +24 QSqlDriverPlugin::qt_metacast +32 QSqlDriverPlugin::qt_metacall +40 QSqlDriverPlugin::~QSqlDriverPlugin +48 QSqlDriverPlugin::~QSqlDriverPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI16QSqlDriverPlugin) +144 QSqlDriverPlugin::_ZThn16_N16QSqlDriverPluginD1Ev +152 QSqlDriverPlugin::_ZThn16_N16QSqlDriverPluginD0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QSqlDriverPlugin + size=24 align=8 + base size=24 base align=8 +QSqlDriverPlugin (0x7f5e193a2c80) 0 + vptr=((& QSqlDriverPlugin::_ZTV16QSqlDriverPlugin) + 16u) + QObject (0x7f5e193d10e0) 0 + primary-for QSqlDriverPlugin (0x7f5e193a2c80) + QSqlDriverFactoryInterface (0x7f5e193d1150) 16 nearly-empty + vptr=((& QSqlDriverPlugin::_ZTV16QSqlDriverPlugin) + 144u) + QFactoryInterface (0x7f5e193d11c0) 16 nearly-empty + primary-for QSqlDriverFactoryInterface (0x7f5e193d1150) + +Vtable for QSqlDriver +QSqlDriver::_ZTV10QSqlDriver: 32u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QSqlDriver) +16 QSqlDriver::metaObject +24 QSqlDriver::qt_metacast +32 QSqlDriver::qt_metacall +40 QSqlDriver::~QSqlDriver +48 QSqlDriver::~QSqlDriver +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QSqlDriver::isOpen +120 QSqlDriver::beginTransaction +128 QSqlDriver::commitTransaction +136 QSqlDriver::rollbackTransaction +144 QSqlDriver::tables +152 QSqlDriver::primaryIndex +160 QSqlDriver::record +168 QSqlDriver::formatValue +176 QSqlDriver::escapeIdentifier +184 QSqlDriver::sqlStatement +192 QSqlDriver::handle +200 __cxa_pure_virtual +208 __cxa_pure_virtual +216 __cxa_pure_virtual +224 __cxa_pure_virtual +232 QSqlDriver::setOpen +240 QSqlDriver::setOpenError +248 QSqlDriver::setLastError + +Class QSqlDriver + size=16 align=8 + base size=16 base align=8 +QSqlDriver (0x7f5e193e3070) 0 + vptr=((& QSqlDriver::_ZTV10QSqlDriver) + 16u) + QObject (0x7f5e193e30e0) 0 + primary-for QSqlDriver (0x7f5e193e3070) + +Class QSqlError + size=24 align=8 + base size=24 base align=8 +QSqlError (0x7f5e1940a700) 0 + +Class QSqlField + size=24 align=8 + base size=24 base align=8 +QSqlField (0x7f5e19413620) 0 + +Vtable for QSqlQueryModel +QSqlQueryModel::_ZTV14QSqlQueryModel: 44u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QSqlQueryModel) +16 QSqlQueryModel::metaObject +24 QSqlQueryModel::qt_metacast +32 QSqlQueryModel::qt_metacall +40 QSqlQueryModel::~QSqlQueryModel +48 QSqlQueryModel::~QSqlQueryModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractTableModel::index +120 QAbstractTableModel::parent +128 QSqlQueryModel::rowCount +136 QSqlQueryModel::columnCount +144 QAbstractTableModel::hasChildren +152 QSqlQueryModel::data +160 QAbstractItemModel::setData +168 QSqlQueryModel::headerData +176 QSqlQueryModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractTableModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QSqlQueryModel::insertColumns +248 QAbstractItemModel::removeRows +256 QSqlQueryModel::removeColumns +264 QSqlQueryModel::fetchMore +272 QSqlQueryModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert +336 QSqlQueryModel::clear +344 QSqlQueryModel::queryChange + +Class QSqlQueryModel + size=16 align=8 + base size=16 base align=8 +QSqlQueryModel (0x7f5e19424ee0) 0 + vptr=((& QSqlQueryModel::_ZTV14QSqlQueryModel) + 16u) + QAbstractTableModel (0x7f5e19424f50) 0 + primary-for QSqlQueryModel (0x7f5e19424ee0) + QAbstractItemModel (0x7f5e1942e000) 0 + primary-for QAbstractTableModel (0x7f5e19424f50) + QObject (0x7f5e1942e070) 0 + primary-for QAbstractItemModel (0x7f5e1942e000) + +Vtable for QSqlTableModel +QSqlTableModel::_ZTV14QSqlTableModel: 55u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QSqlTableModel) +16 QSqlTableModel::metaObject +24 QSqlTableModel::qt_metacast +32 QSqlTableModel::qt_metacall +40 QSqlTableModel::~QSqlTableModel +48 QSqlTableModel::~QSqlTableModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractTableModel::index +120 QAbstractTableModel::parent +128 QSqlTableModel::rowCount +136 QSqlQueryModel::columnCount +144 QAbstractTableModel::hasChildren +152 QSqlTableModel::data +160 QSqlTableModel::setData +168 QSqlTableModel::headerData +176 QSqlQueryModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractTableModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QSqlTableModel::insertRows +240 QSqlQueryModel::insertColumns +248 QSqlTableModel::removeRows +256 QSqlTableModel::removeColumns +264 QSqlQueryModel::fetchMore +272 QSqlQueryModel::canFetchMore +280 QSqlTableModel::flags +288 QSqlTableModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QSqlTableModel::submit +328 QSqlTableModel::revert +336 QSqlTableModel::clear +344 QSqlQueryModel::queryChange +352 QSqlTableModel::select +360 QSqlTableModel::setTable +368 QSqlTableModel::setEditStrategy +376 QSqlTableModel::setSort +384 QSqlTableModel::setFilter +392 QSqlTableModel::revertRow +400 QSqlTableModel::updateRowInTable +408 QSqlTableModel::insertRowIntoTable +416 QSqlTableModel::deleteRowFromTable +424 QSqlTableModel::orderByClause +432 QSqlTableModel::selectStatement + +Class QSqlTableModel + size=16 align=8 + base size=16 base align=8 +QSqlTableModel (0x7f5e1944c850) 0 + vptr=((& QSqlTableModel::_ZTV14QSqlTableModel) + 16u) + QSqlQueryModel (0x7f5e1944c8c0) 0 + primary-for QSqlTableModel (0x7f5e1944c850) + QAbstractTableModel (0x7f5e1944c930) 0 + primary-for QSqlQueryModel (0x7f5e1944c8c0) + QAbstractItemModel (0x7f5e1944c9a0) 0 + primary-for QAbstractTableModel (0x7f5e1944c930) + QObject (0x7f5e1944ca10) 0 + primary-for QAbstractItemModel (0x7f5e1944c9a0) + +Class QSqlRelation + size=24 align=8 + base size=24 base align=8 +QSqlRelation (0x7f5e19279380) 0 + +Vtable for QSqlRelationalTableModel +QSqlRelationalTableModel::_ZTV24QSqlRelationalTableModel: 57u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QSqlRelationalTableModel) +16 QSqlRelationalTableModel::metaObject +24 QSqlRelationalTableModel::qt_metacast +32 QSqlRelationalTableModel::qt_metacall +40 QSqlRelationalTableModel::~QSqlRelationalTableModel +48 QSqlRelationalTableModel::~QSqlRelationalTableModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractTableModel::index +120 QAbstractTableModel::parent +128 QSqlTableModel::rowCount +136 QSqlQueryModel::columnCount +144 QAbstractTableModel::hasChildren +152 QSqlRelationalTableModel::data +160 QSqlRelationalTableModel::setData +168 QSqlTableModel::headerData +176 QSqlQueryModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractTableModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QSqlTableModel::insertRows +240 QSqlQueryModel::insertColumns +248 QSqlTableModel::removeRows +256 QSqlRelationalTableModel::removeColumns +264 QSqlQueryModel::fetchMore +272 QSqlQueryModel::canFetchMore +280 QSqlTableModel::flags +288 QSqlTableModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QSqlTableModel::submit +328 QSqlTableModel::revert +336 QSqlRelationalTableModel::clear +344 QSqlQueryModel::queryChange +352 QSqlRelationalTableModel::select +360 QSqlRelationalTableModel::setTable +368 QSqlTableModel::setEditStrategy +376 QSqlTableModel::setSort +384 QSqlTableModel::setFilter +392 QSqlRelationalTableModel::revertRow +400 QSqlRelationalTableModel::updateRowInTable +408 QSqlRelationalTableModel::insertRowIntoTable +416 QSqlTableModel::deleteRowFromTable +424 QSqlRelationalTableModel::orderByClause +432 QSqlRelationalTableModel::selectStatement +440 QSqlRelationalTableModel::setRelation +448 QSqlRelationalTableModel::relationModel + +Class QSqlRelationalTableModel + size=16 align=8 + base size=16 base align=8 +QSqlRelationalTableModel (0x7f5e1928ecb0) 0 + vptr=((& QSqlRelationalTableModel::_ZTV24QSqlRelationalTableModel) + 16u) + QSqlTableModel (0x7f5e1928ed20) 0 + primary-for QSqlRelationalTableModel (0x7f5e1928ecb0) + QSqlQueryModel (0x7f5e1928ed90) 0 + primary-for QSqlTableModel (0x7f5e1928ed20) + QAbstractTableModel (0x7f5e1928ee00) 0 + primary-for QSqlQueryModel (0x7f5e1928ed90) + QAbstractItemModel (0x7f5e1928ee70) 0 + primary-for QAbstractTableModel (0x7f5e1928ee00) + QObject (0x7f5e1928eee0) 0 + primary-for QAbstractItemModel (0x7f5e1928ee70) + diff --git a/tests/auto/bic/data/QtSql.4.6.0.linux-gcc-amd64.txt b/tests/auto/bic/data/QtSql.4.6.0.linux-gcc-amd64.txt new file mode 100644 index 0000000..2115a2a --- /dev/null +++ b/tests/auto/bic/data/QtSql.4.6.0.linux-gcc-amd64.txt @@ -0,0 +1,3016 @@ +Class QSysInfo + size=1 align=1 + base size=0 base align=1 +QSysInfo (0x7f2cf04c8230) 0 empty + +Class QBool + size=1 align=1 + base size=1 base align=1 +QBool (0x7f2cf04c8e70) 0 + +Class qIsNull(double)::U + size=8 align=8 + base size=8 base align=8 +qIsNull(double)::U (0x7f2cefcda540) 0 + +Class qIsNull(float)::U + size=4 align=4 + base size=4 base align=4 +qIsNull(float)::U (0x7f2cefcda7e0) 0 + +Class QFlag + size=4 align=4 + base size=4 base align=4 +QFlag (0x7f2cefd12690) 0 + +Class QIncompatibleFlag + size=4 align=4 + base size=4 base align=4 +QIncompatibleFlag (0x7f2cefd12e70) 0 + +Class QLatin1Char + size=1 align=1 + base size=1 base align=1 +QLatin1Char (0x7f2cefd425b0) 0 + +Class QChar + size=2 align=2 + base size=2 base align=2 +QChar (0x7f2cefd69150) 0 + +Class QBasicAtomicInt + size=4 align=4 + base size=4 base align=4 +QBasicAtomicInt (0x7f2cefbd0310) 0 + +Class QAtomicInt + size=4 align=4 + base size=4 base align=4 +QAtomicInt (0x7f2cefc0ecb0) 0 + QBasicAtomicInt (0x7f2cefc0ed20) 0 + +Class QInternal + size=1 align=1 + base size=0 base align=1 +QInternal (0x7f2cefa624d0) 0 empty + +Class __locale_struct + size=232 align=8 + base size=232 base align=8 +__locale_struct (0x7f2cefa62700) 0 + +Class QByteArray::Data + size=32 align=8 + base size=32 base align=8 +QByteArray::Data (0x7f2cefa9daf0) 0 + +Class QByteArray + size=8 align=8 + base size=8 base align=8 +QByteArray (0x7f2cefa9da80) 0 + +Class QByteRef + size=16 align=8 + base size=12 base align=8 +QByteRef (0x7f2cef940380) 0 + +Class QString::Null + size=1 align=1 + base size=0 base align=1 +QString::Null (0x7f2cef7ffd20) 0 empty + +Class QString::Data + size=32 align=8 + base size=32 base align=8 +QString::Data (0x7f2cef8185b0) 0 + +Class QString + size=8 align=8 + base size=8 base align=8 +QString (0x7f2cef779bd0) 0 + +Class QLatin1String + size=8 align=8 + base size=8 base align=8 +QLatin1String (0x7f2cef6ef9a0) 0 + +Class QCharRef + size=16 align=8 + base size=12 base align=8 +QCharRef (0x7f2cef58e000) 0 + +Class QConstString + size=8 align=8 + base size=8 base align=8 +QConstString (0x7f2cef4d88c0) 0 + QString (0x7f2cef4d8930) 0 + +Class QStringRef + size=16 align=8 + base size=16 base align=8 +QStringRef (0x7f2cef4fe310) 0 + +Class QGenericArgument + size=16 align=8 + base size=16 base align=8 +QGenericArgument (0x7f2cef376700) 0 + +Class QGenericReturnArgument + size=16 align=8 + base size=16 base align=8 +QGenericReturnArgument (0x7f2cef3802a0) 0 + QGenericArgument (0x7f2cef380310) 0 + +Class QMetaObject + size=32 align=8 + base size=32 base align=8 +QMetaObject (0x7f2cef380b60) 0 + +Class QMetaObjectExtraData + size=16 align=8 + base size=16 base align=8 +QMetaObjectExtraData (0x7f2cef3a9bd0) 0 + +Vtable for std::exception +std::exception::_ZTVSt9exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9exception) +16 std::exception::~exception +24 std::exception::~exception +32 std::exception::what + +Class std::exception + size=8 align=8 + base size=8 base align=8 +std::exception (0x7f2cef3fe1c0) 0 nearly-empty + vptr=((& std::exception::_ZTVSt9exception) + 16u) + +Vtable for std::bad_exception +std::bad_exception::_ZTVSt13bad_exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13bad_exception) +16 std::bad_exception::~bad_exception +24 std::bad_exception::~bad_exception +32 std::bad_exception::what + +Class std::bad_exception + size=8 align=8 + base size=8 base align=8 +std::bad_exception (0x7f2cef3fe770) 0 nearly-empty + vptr=((& std::bad_exception::_ZTVSt13bad_exception) + 16u) + std::exception (0x7f2cef3fe7e0) 0 nearly-empty + primary-for std::bad_exception (0x7f2cef3fe770) + +Vtable for std::bad_alloc +std::bad_alloc::_ZTVSt9bad_alloc: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9bad_alloc) +16 std::bad_alloc::~bad_alloc +24 std::bad_alloc::~bad_alloc +32 std::bad_alloc::what + +Class std::bad_alloc + size=8 align=8 + base size=8 base align=8 +std::bad_alloc (0x7f2cef3fe930) 0 nearly-empty + vptr=((& std::bad_alloc::_ZTVSt9bad_alloc) + 16u) + std::exception (0x7f2cef414000) 0 nearly-empty + primary-for std::bad_alloc (0x7f2cef3fe930) + +Class std::nothrow_t + size=1 align=1 + base size=0 base align=1 +std::nothrow_t (0x7f2cef414850) 0 empty + +Class QListData::Data + size=32 align=8 + base size=32 base align=8 +QListData::Data (0x7f2cef414d90) 0 + +Class QListData + size=8 align=8 + base size=8 base align=8 +QListData (0x7f2cef414d20) 0 + +Class QScopedPointerPodDeleter + size=1 align=1 + base size=0 base align=1 +QScopedPointerPodDeleter (0x7f2cef33e850) 0 empty + +Vtable for QObjectData +QObjectData::_ZTV11QObjectData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QObjectData) +16 __cxa_pure_virtual +24 __cxa_pure_virtual + +Class QObjectData + size=48 align=8 + base size=48 base align=8 +QObjectData (0x7f2cef35f2a0) 0 + vptr=((& QObjectData::_ZTV11QObjectData) + 16u) + +Vtable for QObject +QObject::_ZTV7QObject: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QObject) +16 QObject::metaObject +24 QObject::qt_metacast +32 QObject::qt_metacall +40 QObject::~QObject +48 QObject::~QObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObject + size=16 align=8 + base size=16 base align=8 +QObject (0x7f2cef35f5b0) 0 + vptr=((& QObject::_ZTV7QObject) + 16u) + +Vtable for QObjectUserData +QObjectUserData::_ZTV15QObjectUserData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QObjectUserData) +16 QObjectUserData::~QObjectUserData +24 QObjectUserData::~QObjectUserData + +Class QObjectUserData + size=8 align=8 + base size=8 base align=8 +QObjectUserData (0x7f2cef1d3b60) 0 nearly-empty + vptr=((& QObjectUserData::_ZTV15QObjectUserData) + 16u) + +Vtable for QIODevice +QIODevice::_ZTV9QIODevice: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QIODevice) +16 QIODevice::metaObject +24 QIODevice::qt_metacast +32 QIODevice::qt_metacall +40 QIODevice::~QIODevice +48 QIODevice::~QIODevice +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QIODevice::isSequential +120 QIODevice::open +128 QIODevice::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QIODevice::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 __cxa_pure_virtual +224 QIODevice::readLineData +232 __cxa_pure_virtual + +Class QIODevice + size=16 align=8 + base size=16 base align=8 +QIODevice (0x7f2cef1e3150) 0 + vptr=((& QIODevice::_ZTV9QIODevice) + 16u) + QObject (0x7f2cef1e31c0) 0 + primary-for QIODevice (0x7f2cef1e3150) + +Class _IO_marker + size=24 align=8 + base size=24 base align=8 +_IO_marker (0x7f2cef247cb0) 0 + +Class _IO_FILE + size=216 align=8 + base size=216 base align=8 +_IO_FILE (0x7f2cef247d20) 0 + +Vtable for QFile +QFile::_ZTV5QFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QFile) +16 QFile::metaObject +24 QFile::qt_metacast +32 QFile::qt_metacall +40 QFile::~QFile +48 QFile::~QFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QFile::fileEngine + +Class QFile + size=16 align=8 + base size=16 base align=8 +QFile (0x7f2cef247e00) 0 + vptr=((& QFile::_ZTV5QFile) + 16u) + QIODevice (0x7f2cef247e70) 0 + primary-for QFile (0x7f2cef247e00) + QObject (0x7f2cef247ee0) 0 + primary-for QIODevice (0x7f2cef247e70) + +Class QFileInfo + size=8 align=8 + base size=8 base align=8 +QFileInfo (0x7f2cef0e8070) 0 + +Vtable for QDataStream +QDataStream::_ZTV11QDataStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QDataStream) +16 QDataStream::~QDataStream +24 QDataStream::~QDataStream + +Class QDataStream + size=40 align=8 + base size=40 base align=8 +QDataStream (0x7f2cef13ca10) 0 + vptr=((& QDataStream::_ZTV11QDataStream) + 16u) + +Class QRegExp + size=8 align=8 + base size=8 base align=8 +QRegExp (0x7f2ceefa5e70) 0 + +Class QStringMatcher::Data + size=272 align=8 + base size=272 base align=8 +QStringMatcher::Data (0x7f2cef00e2a0) 0 + +Class QStringMatcher + size=1048 align=8 + base size=1048 base align=8 +QStringMatcher (0x7f2cef001c40) 0 + +Class QStringList + size=8 align=8 + base size=8 base align=8 +QStringList (0x7f2cef00e850) 0 + QList (0x7f2cef00e8c0) 0 + +Class QDir + size=8 align=8 + base size=8 base align=8 +QDir (0x7f2ceeeac4d0) 0 + +Class QAbstractFileEngine::ExtensionOption + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionOption (0x7f2ceef548c0) 0 empty + +Class QAbstractFileEngine::ExtensionReturn + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionReturn (0x7f2ceef54930) 0 empty + +Class QAbstractFileEngine::MapExtensionOption + size=24 align=8 + base size=20 base align=8 +QAbstractFileEngine::MapExtensionOption (0x7f2ceef549a0) 0 + QAbstractFileEngine::ExtensionOption (0x7f2ceef54a10) 0 empty + +Class QAbstractFileEngine::MapExtensionReturn + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::MapExtensionReturn (0x7f2ceef54bd0) 0 + QAbstractFileEngine::ExtensionReturn (0x7f2ceef54c40) 0 empty + +Class QAbstractFileEngine::UnMapExtensionOption + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::UnMapExtensionOption (0x7f2ceef54cb0) 0 + QAbstractFileEngine::ExtensionOption (0x7f2ceef54d20) 0 empty + +Vtable for QAbstractFileEngine +QAbstractFileEngine::_ZTV19QAbstractFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractFileEngine) +16 QAbstractFileEngine::~QAbstractFileEngine +24 QAbstractFileEngine::~QAbstractFileEngine +32 QAbstractFileEngine::open +40 QAbstractFileEngine::close +48 QAbstractFileEngine::flush +56 QAbstractFileEngine::size +64 QAbstractFileEngine::pos +72 QAbstractFileEngine::seek +80 QAbstractFileEngine::isSequential +88 QAbstractFileEngine::remove +96 QAbstractFileEngine::copy +104 QAbstractFileEngine::rename +112 QAbstractFileEngine::link +120 QAbstractFileEngine::mkdir +128 QAbstractFileEngine::rmdir +136 QAbstractFileEngine::setSize +144 QAbstractFileEngine::caseSensitive +152 QAbstractFileEngine::isRelativePath +160 QAbstractFileEngine::entryList +168 QAbstractFileEngine::fileFlags +176 QAbstractFileEngine::setPermissions +184 QAbstractFileEngine::fileName +192 QAbstractFileEngine::ownerId +200 QAbstractFileEngine::owner +208 QAbstractFileEngine::fileTime +216 QAbstractFileEngine::setFileName +224 QAbstractFileEngine::handle +232 QAbstractFileEngine::beginEntryList +240 QAbstractFileEngine::endEntryList +248 QAbstractFileEngine::read +256 QAbstractFileEngine::readLine +264 QAbstractFileEngine::write +272 QAbstractFileEngine::extension +280 QAbstractFileEngine::supportsExtension + +Class QAbstractFileEngine + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngine (0x7f2ceef38850) 0 + vptr=((& QAbstractFileEngine::_ZTV19QAbstractFileEngine) + 16u) + +Vtable for QAbstractFileEngineHandler +QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QAbstractFileEngineHandler) +16 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +24 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +32 __cxa_pure_virtual + +Class QAbstractFileEngineHandler + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngineHandler (0x7f2ceed8abd0) 0 nearly-empty + vptr=((& QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler) + 16u) + +Vtable for QAbstractFileEngineIterator +QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QAbstractFileEngineIterator) +16 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +24 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QAbstractFileEngineIterator::currentFileInfo +64 QAbstractFileEngineIterator::entryInfo + +Class QAbstractFileEngineIterator + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngineIterator (0x7f2ceed8ad90) 0 + vptr=((& QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator) + 16u) + +Vtable for QBuffer +QBuffer::_ZTV7QBuffer: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QBuffer) +16 QBuffer::metaObject +24 QBuffer::qt_metacast +32 QBuffer::qt_metacall +40 QBuffer::~QBuffer +48 QBuffer::~QBuffer +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QBuffer::connectNotify +104 QBuffer::disconnectNotify +112 QIODevice::isSequential +120 QBuffer::open +128 QBuffer::close +136 QBuffer::pos +144 QBuffer::size +152 QBuffer::seek +160 QBuffer::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QBuffer::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QBuffer::readData +224 QIODevice::readLineData +232 QBuffer::writeData + +Class QBuffer + size=16 align=8 + base size=16 base align=8 +QBuffer (0x7f2ceed9e690) 0 + vptr=((& QBuffer::_ZTV7QBuffer) + 16u) + QIODevice (0x7f2ceed9e700) 0 + primary-for QBuffer (0x7f2ceed9e690) + QObject (0x7f2ceed9e770) 0 + primary-for QIODevice (0x7f2ceed9e700) + +Class QHashData::Node + size=16 align=8 + base size=16 base align=8 +QHashData::Node (0x7f2ceede0e00) 0 + +Class QHashData + size=40 align=8 + base size=40 base align=8 +QHashData (0x7f2ceede0d90) 0 + +Class QHashDummyValue + size=1 align=1 + base size=0 base align=1 +QHashDummyValue (0x7f2ceee01150) 0 empty + +Class QMapData::Node + size=16 align=8 + base size=16 base align=8 +QMapData::Node (0x7f2ceed01a80) 0 + +Class QMapData + size=128 align=8 + base size=128 base align=8 +QMapData (0x7f2ceed01a10) 0 + +Vtable for QSystemLocale +QSystemLocale::_ZTV13QSystemLocale: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSystemLocale) +16 QSystemLocale::~QSystemLocale +24 QSystemLocale::~QSystemLocale +32 QSystemLocale::query +40 QSystemLocale::fallbackLocale + +Class QSystemLocale + size=8 align=8 + base size=8 base align=8 +QSystemLocale (0x7f2ceec3f690) 0 nearly-empty + vptr=((& QSystemLocale::_ZTV13QSystemLocale) + 16u) + +Class QLocale::Data + size=4 align=2 + base size=4 base align=2 +QLocale::Data (0x7f2ceea87d90) 0 + +Class QLocale + size=8 align=8 + base size=8 base align=8 +QLocale (0x7f2ceec3faf0) 0 + +Class QTextCodec::ConverterState + size=32 align=8 + base size=32 base align=8 +QTextCodec::ConverterState (0x7f2ceeadebd0) 0 + +Vtable for QTextCodec +QTextCodec::_ZTV10QTextCodec: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextCodec) +16 __cxa_pure_virtual +24 QTextCodec::aliases +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QTextCodec::~QTextCodec +64 QTextCodec::~QTextCodec + +Class QTextCodec + size=8 align=8 + base size=8 base align=8 +QTextCodec (0x7f2ceead0460) 0 nearly-empty + vptr=((& QTextCodec::_ZTV10QTextCodec) + 16u) + +Class QTextEncoder + size=40 align=8 + base size=40 base align=8 +QTextEncoder (0x7f2ceeb52150) 0 + +Class QTextDecoder + size=40 align=8 + base size=40 base align=8 +QTextDecoder (0x7f2ceeb52f50) 0 + +Vtable for QTextStream +QTextStream::_ZTV11QTextStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTextStream) +16 QTextStream::~QTextStream +24 QTextStream::~QTextStream + +Class QTextStream + size=16 align=8 + base size=16 base align=8 +QTextStream (0x7f2ceeb59d90) 0 + vptr=((& QTextStream::_ZTV11QTextStream) + 16u) + +Class QTextStreamManipulator + size=40 align=8 + base size=38 base align=8 +QTextStreamManipulator (0x7f2cee9d2a80) 0 + +Vtable for QTextIStream +QTextIStream::_ZTV12QTextIStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextIStream) +16 QTextIStream::~QTextIStream +24 QTextIStream::~QTextIStream + +Class QTextIStream + size=16 align=8 + base size=16 base align=8 +QTextIStream (0x7f2ceea03070) 0 + vptr=((& QTextIStream::_ZTV12QTextIStream) + 16u) + QTextStream (0x7f2ceea030e0) 0 + primary-for QTextIStream (0x7f2ceea03070) + +Vtable for QTextOStream +QTextOStream::_ZTV12QTextOStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextOStream) +16 QTextOStream::~QTextOStream +24 QTextOStream::~QTextOStream + +Class QTextOStream + size=16 align=8 + base size=16 base align=8 +QTextOStream (0x7f2ceea10ee0) 0 + vptr=((& QTextOStream::_ZTV12QTextOStream) + 16u) + QTextStream (0x7f2ceea10f50) 0 + primary-for QTextOStream (0x7f2ceea10ee0) + +Class wait + size=4 align=4 + base size=4 base align=4 +wait (0x7f2ceea25d90) 0 + +Class timespec + size=16 align=8 + base size=16 base align=8 +timespec (0x7f2ceea310e0) 0 + +Class timeval + size=16 align=8 + base size=16 base align=8 +timeval (0x7f2ceea31150) 0 + +Class __pthread_internal_list + size=16 align=8 + base size=16 base align=8 +__pthread_internal_list (0x7f2ceea312a0) 0 + +Class random_data + size=48 align=8 + base size=48 base align=8 +random_data (0x7f2ceea31850) 0 + +Class drand48_data + size=24 align=8 + base size=24 base align=8 +drand48_data (0x7f2ceea318c0) 0 + +Class QVectorData + size=16 align=4 + base size=16 base align=4 +QVectorData (0x7f2ceea31930) 0 + +Class QContiguousCacheData + size=24 align=4 + base size=24 base align=4 +QContiguousCacheData (0x7f2cee7ef620) 0 + +Class QDebug::Stream + size=40 align=8 + base size=34 base align=8 +QDebug::Stream (0x7f2cee64f150) 0 + +Class QDebug + size=8 align=8 + base size=8 base align=8 +QDebug (0x7f2cee64f0e0) 0 + +Class QNoDebug + size=1 align=1 + base size=0 base align=1 +QNoDebug (0x7f2cee6fe0e0) 0 empty + +Vtable for QDirIterator +QDirIterator::_ZTV12QDirIterator: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QDirIterator) +16 QDirIterator::~QDirIterator +24 QDirIterator::~QDirIterator + +Class QDirIterator + size=16 align=8 + base size=16 base align=8 +QDirIterator (0x7f2cee70f700) 0 + vptr=((& QDirIterator::_ZTV12QDirIterator) + 16u) + +Vtable for QFileSystemWatcher +QFileSystemWatcher::_ZTV18QFileSystemWatcher: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFileSystemWatcher) +16 QFileSystemWatcher::metaObject +24 QFileSystemWatcher::qt_metacast +32 QFileSystemWatcher::qt_metacall +40 QFileSystemWatcher::~QFileSystemWatcher +48 QFileSystemWatcher::~QFileSystemWatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QFileSystemWatcher + size=16 align=8 + base size=16 base align=8 +QFileSystemWatcher (0x7f2cee569540) 0 + vptr=((& QFileSystemWatcher::_ZTV18QFileSystemWatcher) + 16u) + QObject (0x7f2cee5695b0) 0 + primary-for QFileSystemWatcher (0x7f2cee569540) + +Vtable for QFSFileEngine +QFSFileEngine::_ZTV13QFSFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QFSFileEngine) +16 QFSFileEngine::~QFSFileEngine +24 QFSFileEngine::~QFSFileEngine +32 QFSFileEngine::open +40 QFSFileEngine::close +48 QFSFileEngine::flush +56 QFSFileEngine::size +64 QFSFileEngine::pos +72 QFSFileEngine::seek +80 QFSFileEngine::isSequential +88 QFSFileEngine::remove +96 QFSFileEngine::copy +104 QFSFileEngine::rename +112 QFSFileEngine::link +120 QFSFileEngine::mkdir +128 QFSFileEngine::rmdir +136 QFSFileEngine::setSize +144 QFSFileEngine::caseSensitive +152 QFSFileEngine::isRelativePath +160 QFSFileEngine::entryList +168 QFSFileEngine::fileFlags +176 QFSFileEngine::setPermissions +184 QFSFileEngine::fileName +192 QFSFileEngine::ownerId +200 QFSFileEngine::owner +208 QFSFileEngine::fileTime +216 QFSFileEngine::setFileName +224 QFSFileEngine::handle +232 QFSFileEngine::beginEntryList +240 QFSFileEngine::endEntryList +248 QFSFileEngine::read +256 QFSFileEngine::readLine +264 QFSFileEngine::write +272 QFSFileEngine::extension +280 QFSFileEngine::supportsExtension + +Class QFSFileEngine + size=16 align=8 + base size=16 base align=8 +QFSFileEngine (0x7f2cee57ca80) 0 + vptr=((& QFSFileEngine::_ZTV13QFSFileEngine) + 16u) + QAbstractFileEngine (0x7f2cee57caf0) 0 + primary-for QFSFileEngine (0x7f2cee57ca80) + +Class QSharedData + size=4 align=4 + base size=4 base align=4 +QSharedData (0x7f2cee58ce70) 0 + +Class QProcessEnvironment + size=8 align=8 + base size=8 base align=8 +QProcessEnvironment (0x7f2cee5d71c0) 0 + +Vtable for QProcess +QProcess::_ZTV8QProcess: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QProcess) +16 QProcess::metaObject +24 QProcess::qt_metacast +32 QProcess::qt_metacall +40 QProcess::~QProcess +48 QProcess::~QProcess +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QProcess::isSequential +120 QIODevice::open +128 QProcess::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QProcess::atEnd +168 QIODevice::reset +176 QProcess::bytesAvailable +184 QProcess::bytesToWrite +192 QProcess::canReadLine +200 QProcess::waitForReadyRead +208 QProcess::waitForBytesWritten +216 QProcess::readData +224 QIODevice::readLineData +232 QProcess::writeData +240 QProcess::setupChildProcess + +Class QProcess + size=16 align=8 + base size=16 base align=8 +QProcess (0x7f2cee5d7cb0) 0 + vptr=((& QProcess::_ZTV8QProcess) + 16u) + QIODevice (0x7f2cee5d7d20) 0 + primary-for QProcess (0x7f2cee5d7cb0) + QObject (0x7f2cee5d7d90) 0 + primary-for QIODevice (0x7f2cee5d7d20) + +Class QResource + size=8 align=8 + base size=8 base align=8 +QResource (0x7f2cee61b1c0) 0 + +Class QMetaType + size=1 align=1 + base size=0 base align=1 +QMetaType (0x7f2cee61be70) 0 empty + +Class QVariant::PrivateShared + size=16 align=8 + base size=12 base align=8 +QVariant::PrivateShared (0x7f2cee51a700) 0 + +Class QVariant::Private::Data + size=8 align=8 + base size=8 base align=8 +QVariant::Private::Data (0x7f2cee51aa10) 0 + +Class QVariant::Private + size=16 align=8 + base size=12 base align=8 +QVariant::Private (0x7f2cee51a7e0) 0 + +Class QVariant::Handler + size=72 align=8 + base size=72 base align=8 +QVariant::Handler (0x7f2cee529700) 0 + +Class QVariant + size=16 align=8 + base size=16 base align=8 +QVariant (0x7f2cee4ea7e0) 0 + +Class QVariantComparisonHelper + size=8 align=8 + base size=8 base align=8 +QVariantComparisonHelper (0x7f2cee3db9a0) 0 + +Vtable for QSettings +QSettings::_ZTV9QSettings: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QSettings) +16 QSettings::metaObject +24 QSettings::qt_metacast +32 QSettings::qt_metacall +40 QSettings::~QSettings +48 QSettings::~QSettings +56 QSettings::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSettings + size=16 align=8 + base size=16 base align=8 +QSettings (0x7f2cee400ee0) 0 + vptr=((& QSettings::_ZTV9QSettings) + 16u) + QObject (0x7f2cee400f50) 0 + primary-for QSettings (0x7f2cee400ee0) + +Vtable for QTemporaryFile +QTemporaryFile::_ZTV14QTemporaryFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QTemporaryFile) +16 QTemporaryFile::metaObject +24 QTemporaryFile::qt_metacast +32 QTemporaryFile::qt_metacall +40 QTemporaryFile::~QTemporaryFile +48 QTemporaryFile::~QTemporaryFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QTemporaryFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QTemporaryFile::fileEngine + +Class QTemporaryFile + size=16 align=8 + base size=16 base align=8 +QTemporaryFile (0x7f2cee2832a0) 0 + vptr=((& QTemporaryFile::_ZTV14QTemporaryFile) + 16u) + QFile (0x7f2cee283310) 0 + primary-for QTemporaryFile (0x7f2cee2832a0) + QIODevice (0x7f2cee283380) 0 + primary-for QFile (0x7f2cee283310) + QObject (0x7f2cee2833f0) 0 + primary-for QIODevice (0x7f2cee283380) + +Class QUrl + size=8 align=8 + base size=8 base align=8 +QUrl (0x7f2cee29e9a0) 0 + +Class QXmlStreamStringRef + size=16 align=8 + base size=16 base align=8 +QXmlStreamStringRef (0x7f2cee32c070) 0 + +Class QXmlStreamAttribute + size=80 align=8 + base size=73 base align=8 +QXmlStreamAttribute (0x7f2cee146850) 0 + +Class QXmlStreamAttributes + size=8 align=8 + base size=8 base align=8 +QXmlStreamAttributes (0x7f2cee16f310) 0 + QVector (0x7f2cee16f380) 0 + +Class QXmlStreamNamespaceDeclaration + size=40 align=8 + base size=40 base align=8 +QXmlStreamNamespaceDeclaration (0x7f2cee16f7e0) 0 + +Class QXmlStreamNotationDeclaration + size=56 align=8 + base size=56 base align=8 +QXmlStreamNotationDeclaration (0x7f2cee1b11c0) 0 + +Class QXmlStreamEntityDeclaration + size=88 align=8 + base size=88 base align=8 +QXmlStreamEntityDeclaration (0x7f2cee1cf070) 0 + +Vtable for QXmlStreamEntityResolver +QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QXmlStreamEntityResolver) +16 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +24 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +32 QXmlStreamEntityResolver::resolveEntity +40 QXmlStreamEntityResolver::resolveUndeclaredEntity + +Class QXmlStreamEntityResolver + size=8 align=8 + base size=8 base align=8 +QXmlStreamEntityResolver (0x7f2cee1ec9a0) 0 nearly-empty + vptr=((& QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver) + 16u) + +Class QXmlStreamReader + size=8 align=8 + base size=8 base align=8 +QXmlStreamReader (0x7f2cee1ecb60) 0 + +Class QXmlStreamWriter + size=8 align=8 + base size=8 base align=8 +QXmlStreamWriter (0x7f2cee034c40) 0 + +Vtable for QAbstractState +QAbstractState::_ZTV14QAbstractState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QAbstractState) +16 QAbstractState::metaObject +24 QAbstractState::qt_metacast +32 QAbstractState::qt_metacall +40 QAbstractState::~QAbstractState +48 QAbstractState::~QAbstractState +56 QAbstractState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QAbstractState + size=16 align=8 + base size=16 base align=8 +QAbstractState (0x7f2cee049a80) 0 + vptr=((& QAbstractState::_ZTV14QAbstractState) + 16u) + QObject (0x7f2cee049af0) 0 + primary-for QAbstractState (0x7f2cee049a80) + +Vtable for QAbstractTransition +QAbstractTransition::_ZTV19QAbstractTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractTransition) +16 QAbstractTransition::metaObject +24 QAbstractTransition::qt_metacast +32 QAbstractTransition::qt_metacall +40 QAbstractTransition::~QAbstractTransition +48 QAbstractTransition::~QAbstractTransition +56 QAbstractTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QAbstractTransition + size=16 align=8 + base size=16 base align=8 +QAbstractTransition (0x7f2cee06f2a0) 0 + vptr=((& QAbstractTransition::_ZTV19QAbstractTransition) + 16u) + QObject (0x7f2cee06f310) 0 + primary-for QAbstractTransition (0x7f2cee06f2a0) + +Vtable for QEvent +QEvent::_ZTV6QEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QEvent) +16 QEvent::~QEvent +24 QEvent::~QEvent + +Class QEvent + size=24 align=8 + base size=20 base align=8 +QEvent (0x7f2cee083af0) 0 + vptr=((& QEvent::_ZTV6QEvent) + 16u) + +Vtable for QTimerEvent +QTimerEvent::_ZTV11QTimerEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTimerEvent) +16 QTimerEvent::~QTimerEvent +24 QTimerEvent::~QTimerEvent + +Class QTimerEvent + size=24 align=8 + base size=24 base align=8 +QTimerEvent (0x7f2cee0a5700) 0 + vptr=((& QTimerEvent::_ZTV11QTimerEvent) + 16u) + QEvent (0x7f2cee0a5770) 0 + primary-for QTimerEvent (0x7f2cee0a5700) + +Vtable for QChildEvent +QChildEvent::_ZTV11QChildEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QChildEvent) +16 QChildEvent::~QChildEvent +24 QChildEvent::~QChildEvent + +Class QChildEvent + size=32 align=8 + base size=32 base align=8 +QChildEvent (0x7f2cee0a5b60) 0 + vptr=((& QChildEvent::_ZTV11QChildEvent) + 16u) + QEvent (0x7f2cee0a5bd0) 0 + primary-for QChildEvent (0x7f2cee0a5b60) + +Vtable for QCustomEvent +QCustomEvent::_ZTV12QCustomEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QCustomEvent) +16 QCustomEvent::~QCustomEvent +24 QCustomEvent::~QCustomEvent + +Class QCustomEvent + size=24 align=8 + base size=20 base align=8 +QCustomEvent (0x7f2cee0b0e00) 0 + vptr=((& QCustomEvent::_ZTV12QCustomEvent) + 16u) + QEvent (0x7f2cee0b0e70) 0 + primary-for QCustomEvent (0x7f2cee0b0e00) + +Vtable for QDynamicPropertyChangeEvent +QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QDynamicPropertyChangeEvent) +16 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent +24 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent + +Class QDynamicPropertyChangeEvent + size=32 align=8 + base size=32 base align=8 +QDynamicPropertyChangeEvent (0x7f2cee0c1620) 0 + vptr=((& QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent) + 16u) + QEvent (0x7f2cee0c1690) 0 + primary-for QDynamicPropertyChangeEvent (0x7f2cee0c1620) + +Vtable for QEventTransition +QEventTransition::_ZTV16QEventTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QEventTransition) +16 QEventTransition::metaObject +24 QEventTransition::qt_metacast +32 QEventTransition::qt_metacall +40 QEventTransition::~QEventTransition +48 QEventTransition::~QEventTransition +56 QEventTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QEventTransition::eventTest +120 QEventTransition::onTransition + +Class QEventTransition + size=16 align=8 + base size=16 base align=8 +QEventTransition (0x7f2cee0c1af0) 0 + vptr=((& QEventTransition::_ZTV16QEventTransition) + 16u) + QAbstractTransition (0x7f2cee0c1b60) 0 + primary-for QEventTransition (0x7f2cee0c1af0) + QObject (0x7f2cee0c1bd0) 0 + primary-for QAbstractTransition (0x7f2cee0c1b60) + +Vtable for QFinalState +QFinalState::_ZTV11QFinalState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFinalState) +16 QFinalState::metaObject +24 QFinalState::qt_metacast +32 QFinalState::qt_metacall +40 QFinalState::~QFinalState +48 QFinalState::~QFinalState +56 QFinalState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFinalState::onEntry +120 QFinalState::onExit + +Class QFinalState + size=16 align=8 + base size=16 base align=8 +QFinalState (0x7f2cee0dc9a0) 0 + vptr=((& QFinalState::_ZTV11QFinalState) + 16u) + QAbstractState (0x7f2cee0dca10) 0 + primary-for QFinalState (0x7f2cee0dc9a0) + QObject (0x7f2cee0dca80) 0 + primary-for QAbstractState (0x7f2cee0dca10) + +Vtable for QHistoryState +QHistoryState::_ZTV13QHistoryState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QHistoryState) +16 QHistoryState::metaObject +24 QHistoryState::qt_metacast +32 QHistoryState::qt_metacall +40 QHistoryState::~QHistoryState +48 QHistoryState::~QHistoryState +56 QHistoryState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QHistoryState::onEntry +120 QHistoryState::onExit + +Class QHistoryState + size=16 align=8 + base size=16 base align=8 +QHistoryState (0x7f2cee0f5230) 0 + vptr=((& QHistoryState::_ZTV13QHistoryState) + 16u) + QAbstractState (0x7f2cee0f52a0) 0 + primary-for QHistoryState (0x7f2cee0f5230) + QObject (0x7f2cee0f5310) 0 + primary-for QAbstractState (0x7f2cee0f52a0) + +Vtable for QSignalTransition +QSignalTransition::_ZTV17QSignalTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QSignalTransition) +16 QSignalTransition::metaObject +24 QSignalTransition::qt_metacast +32 QSignalTransition::qt_metacall +40 QSignalTransition::~QSignalTransition +48 QSignalTransition::~QSignalTransition +56 QSignalTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QSignalTransition::eventTest +120 QSignalTransition::onTransition + +Class QSignalTransition + size=16 align=8 + base size=16 base align=8 +QSignalTransition (0x7f2cee105f50) 0 + vptr=((& QSignalTransition::_ZTV17QSignalTransition) + 16u) + QAbstractTransition (0x7f2cee10e000) 0 + primary-for QSignalTransition (0x7f2cee105f50) + QObject (0x7f2cee10e070) 0 + primary-for QAbstractTransition (0x7f2cee10e000) + +Vtable for QState +QState::_ZTV6QState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QState) +16 QState::metaObject +24 QState::qt_metacast +32 QState::qt_metacall +40 QState::~QState +48 QState::~QState +56 QState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QState::onEntry +120 QState::onExit + +Class QState + size=16 align=8 + base size=16 base align=8 +QState (0x7f2cee121af0) 0 + vptr=((& QState::_ZTV6QState) + 16u) + QAbstractState (0x7f2cee121b60) 0 + primary-for QState (0x7f2cee121af0) + QObject (0x7f2cee121bd0) 0 + primary-for QAbstractState (0x7f2cee121b60) + +Vtable for QStateMachine::SignalEvent +QStateMachine::SignalEvent::_ZTVN13QStateMachine11SignalEventE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN13QStateMachine11SignalEventE) +16 QStateMachine::SignalEvent::~SignalEvent +24 QStateMachine::SignalEvent::~SignalEvent + +Class QStateMachine::SignalEvent + size=48 align=8 + base size=48 base align=8 +QStateMachine::SignalEvent (0x7f2cedf45150) 0 + vptr=((& QStateMachine::SignalEvent::_ZTVN13QStateMachine11SignalEventE) + 16u) + QEvent (0x7f2cedf451c0) 0 + primary-for QStateMachine::SignalEvent (0x7f2cedf45150) + +Vtable for QStateMachine::WrappedEvent +QStateMachine::WrappedEvent::_ZTVN13QStateMachine12WrappedEventE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN13QStateMachine12WrappedEventE) +16 QStateMachine::WrappedEvent::~WrappedEvent +24 QStateMachine::WrappedEvent::~WrappedEvent + +Class QStateMachine::WrappedEvent + size=40 align=8 + base size=40 base align=8 +QStateMachine::WrappedEvent (0x7f2cedf45700) 0 + vptr=((& QStateMachine::WrappedEvent::_ZTVN13QStateMachine12WrappedEventE) + 16u) + QEvent (0x7f2cedf45770) 0 + primary-for QStateMachine::WrappedEvent (0x7f2cedf45700) + +Vtable for QStateMachine +QStateMachine::_ZTV13QStateMachine: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QStateMachine) +16 QStateMachine::metaObject +24 QStateMachine::qt_metacast +32 QStateMachine::qt_metacall +40 QStateMachine::~QStateMachine +48 QStateMachine::~QStateMachine +56 QStateMachine::event +64 QStateMachine::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QStateMachine::onEntry +120 QStateMachine::onExit +128 QStateMachine::beginSelectTransitions +136 QStateMachine::endSelectTransitions +144 QStateMachine::beginMicrostep +152 QStateMachine::endMicrostep + +Class QStateMachine + size=16 align=8 + base size=16 base align=8 +QStateMachine (0x7f2cedf3cee0) 0 + vptr=((& QStateMachine::_ZTV13QStateMachine) + 16u) + QState (0x7f2cedf3cf50) 0 + primary-for QStateMachine (0x7f2cedf3cee0) + QAbstractState (0x7f2cedf45000) 0 + primary-for QState (0x7f2cedf3cf50) + QObject (0x7f2cedf45070) 0 + primary-for QAbstractState (0x7f2cedf45000) + +Class QBitArray + size=8 align=8 + base size=8 base align=8 +QBitArray (0x7f2cedf76150) 0 + +Class QBitRef + size=16 align=8 + base size=12 base align=8 +QBitRef (0x7f2cedfcce00) 0 + +Class QByteArrayMatcher::Data + size=272 align=8 + base size=272 base align=8 +QByteArrayMatcher::Data (0x7f2cedfdfaf0) 0 + +Class QByteArrayMatcher + size=1040 align=8 + base size=1040 base align=8 +QByteArrayMatcher (0x7f2cedfdf4d0) 0 + +Class QCryptographicHash + size=8 align=8 + base size=8 base align=8 +QCryptographicHash (0x7f2cee015150) 0 + +Vtable for QtSharedPointer::ExternalRefCountData +QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN15QtSharedPointer20ExternalRefCountDataE) +16 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +24 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +32 QtSharedPointer::ExternalRefCountData::destroy + +Class QtSharedPointer::ExternalRefCountData + size=16 align=8 + base size=16 base align=8 +QtSharedPointer::ExternalRefCountData (0x7f2cede42070) 0 + vptr=((& QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE) + 16u) + +Vtable for QtSharedPointer::ExternalRefCountWithDestroyFn +QtSharedPointer::ExternalRefCountWithDestroyFn::_ZTVN15QtSharedPointer29ExternalRefCountWithDestroyFnE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN15QtSharedPointer29ExternalRefCountWithDestroyFnE) +16 QtSharedPointer::ExternalRefCountWithDestroyFn::~ExternalRefCountWithDestroyFn +24 QtSharedPointer::ExternalRefCountWithDestroyFn::~ExternalRefCountWithDestroyFn +32 QtSharedPointer::ExternalRefCountWithDestroyFn::destroy + +Class QtSharedPointer::ExternalRefCountWithDestroyFn + size=24 align=8 + base size=24 base align=8 +QtSharedPointer::ExternalRefCountWithDestroyFn (0x7f2cede5a930) 0 + vptr=((& QtSharedPointer::ExternalRefCountWithDestroyFn::_ZTVN15QtSharedPointer29ExternalRefCountWithDestroyFnE) + 16u) + QtSharedPointer::ExternalRefCountData (0x7f2cede5a9a0) 0 + primary-for QtSharedPointer::ExternalRefCountWithDestroyFn (0x7f2cede5a930) + +Class QDate + size=4 align=4 + base size=4 base align=4 +QDate (0x7f2cedee05b0) 0 + +Class QTime + size=4 align=4 + base size=4 base align=4 +QTime (0x7f2cedf10540) 0 + +Class QDateTime + size=8 align=8 + base size=8 base align=8 +QDateTime (0x7f2cedf2caf0) 0 + +Class QEasingCurve + size=8 align=8 + base size=8 base align=8 +QEasingCurve (0x7f2cedd72000) 0 + +Class QPoint + size=8 align=4 + base size=8 base align=4 +QPoint (0x7f2cedd72ee0) 0 + +Class QPointF + size=16 align=8 + base size=16 base align=8 +QPointF (0x7f2ceddb5af0) 0 + +Class QLine + size=16 align=4 + base size=16 base align=4 +QLine (0x7f2ceddf3af0) 0 + +Class QLineF + size=32 align=8 + base size=32 base align=8 +QLineF (0x7f2cede2e9a0) 0 + +Class QLinkedListData + size=32 align=8 + base size=32 base align=8 +QLinkedListData (0x7f2cedc83460) 0 + +Class QMargins + size=16 align=4 + base size=16 base align=4 +QMargins (0x7f2cedb42380) 0 + +Class QSize + size=8 align=4 + base size=8 base align=4 +QSize (0x7f2cedb70150) 0 + +Class QSizeF + size=16 align=8 + base size=16 base align=8 +QSizeF (0x7f2cedbb0e00) 0 + +Class QRect + size=16 align=4 + base size=16 base align=4 +QRect (0x7f2cedc06380) 0 + +Class QRectF + size=32 align=8 + base size=32 base align=8 +QRectF (0x7f2cedab0d20) 0 + +Class QLatin1Literal + size=16 align=8 + base size=16 base align=8 +QLatin1Literal (0x7f2ced95fee0) 0 + +Class QAbstractConcatenable + size=1 align=1 + base size=0 base align=1 +QAbstractConcatenable (0x7f2ced9723f0) 0 empty + +Class QTextBoundaryFinder + size=48 align=8 + base size=48 base align=8 +QTextBoundaryFinder (0x7f2ced9a9380) 0 + +Vtable for QTimeLine +QTimeLine::_ZTV9QTimeLine: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTimeLine) +16 QTimeLine::metaObject +24 QTimeLine::qt_metacast +32 QTimeLine::qt_metacall +40 QTimeLine::~QTimeLine +48 QTimeLine::~QTimeLine +56 QObject::event +64 QObject::eventFilter +72 QTimeLine::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTimeLine::valueForTime + +Class QTimeLine + size=16 align=8 + base size=16 base align=8 +QTimeLine (0x7f2ced9b9700) 0 + vptr=((& QTimeLine::_ZTV9QTimeLine) + 16u) + QObject (0x7f2ced9b9770) 0 + primary-for QTimeLine (0x7f2ced9b9700) + +Vtable for QRunnable +QRunnable::_ZTV9QRunnable: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QRunnable) +16 __cxa_pure_virtual +24 QRunnable::~QRunnable +32 QRunnable::~QRunnable + +Class QRunnable + size=16 align=8 + base size=12 base align=8 +QRunnable (0x7f2ced9e0f50) 0 + vptr=((& QRunnable::_ZTV9QRunnable) + 16u) + +Class QMutex + size=8 align=8 + base size=8 base align=8 +QMutex (0x7f2ceda17620) 0 + +Class QMutexLocker + size=8 align=8 + base size=8 base align=8 +QMutexLocker (0x7f2ceda261c0) 0 + +Vtable for QtConcurrent::Exception +QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent9ExceptionE) +16 QtConcurrent::Exception::~Exception +24 QtConcurrent::Exception::~Exception +32 std::exception::what +40 QtConcurrent::Exception::raise +48 QtConcurrent::Exception::clone + +Class QtConcurrent::Exception + size=8 align=8 + base size=8 base align=8 +QtConcurrent::Exception (0x7f2ced83d4d0) 0 nearly-empty + vptr=((& QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE) + 16u) + std::exception (0x7f2ced83d540) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7f2ced83d4d0) + +Vtable for QtConcurrent::UnhandledException +QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent18UnhandledExceptionE) +16 QtConcurrent::UnhandledException::~UnhandledException +24 QtConcurrent::UnhandledException::~UnhandledException +32 std::exception::what +40 QtConcurrent::UnhandledException::raise +48 QtConcurrent::UnhandledException::clone + +Class QtConcurrent::UnhandledException + size=8 align=8 + base size=8 base align=8 +QtConcurrent::UnhandledException (0x7f2ced83d770) 0 nearly-empty + vptr=((& QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE) + 16u) + QtConcurrent::Exception (0x7f2ced83d7e0) 0 nearly-empty + primary-for QtConcurrent::UnhandledException (0x7f2ced83d770) + std::exception (0x7f2ced83d850) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7f2ced83d7e0) + +Class QtConcurrent::internal::ExceptionHolder + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionHolder (0x7f2ced83da80) 0 + +Class QtConcurrent::internal::ExceptionStore + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionStore (0x7f2ced83de00) 0 + +Class QtConcurrent::ResultItem + size=16 align=8 + base size=16 base align=8 +QtConcurrent::ResultItem (0x7f2ced83de70) 0 + +Class QtConcurrent::ResultIteratorBase + size=16 align=8 + base size=12 base align=8 +QtConcurrent::ResultIteratorBase (0x7f2ced855d90) 0 + +Vtable for QtConcurrent::ResultStoreBase +QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent15ResultStoreBaseE) +16 QtConcurrent::ResultStoreBase::~ResultStoreBase +24 QtConcurrent::ResultStoreBase::~ResultStoreBase + +Class QtConcurrent::ResultStoreBase + size=48 align=8 + base size=44 base align=8 +QtConcurrent::ResultStoreBase (0x7f2ced85a930) 0 + vptr=((& QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE) + 16u) + +Vtable for QFutureInterfaceBase +QFutureInterfaceBase::_ZTV20QFutureInterfaceBase: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QFutureInterfaceBase) +16 QFutureInterfaceBase::~QFutureInterfaceBase +24 QFutureInterfaceBase::~QFutureInterfaceBase + +Class QFutureInterfaceBase + size=16 align=8 + base size=16 base align=8 +QFutureInterfaceBase (0x7f2ced897d90) 0 + vptr=((& QFutureInterfaceBase::_ZTV20QFutureInterfaceBase) + 16u) + +Vtable for QFutureWatcherBase +QFutureWatcherBase::_ZTV18QFutureWatcherBase: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFutureWatcherBase) +16 QFutureWatcherBase::metaObject +24 QFutureWatcherBase::qt_metacast +32 QFutureWatcherBase::qt_metacall +40 QFutureWatcherBase::~QFutureWatcherBase +48 QFutureWatcherBase::~QFutureWatcherBase +56 QFutureWatcherBase::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QFutureWatcherBase::connectNotify +104 QFutureWatcherBase::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QFutureWatcherBase + size=16 align=8 + base size=16 base align=8 +QFutureWatcherBase (0x7f2ced77c690) 0 + vptr=((& QFutureWatcherBase::_ZTV18QFutureWatcherBase) + 16u) + QObject (0x7f2ced77c700) 0 + primary-for QFutureWatcherBase (0x7f2ced77c690) + +Vtable for QThread +QThread::_ZTV7QThread: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QThread) +16 QThread::metaObject +24 QThread::qt_metacast +32 QThread::qt_metacall +40 QThread::~QThread +48 QThread::~QThread +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QThread::run + +Class QThread + size=16 align=8 + base size=16 base align=8 +QThread (0x7f2ced7cfa80) 0 + vptr=((& QThread::_ZTV7QThread) + 16u) + QObject (0x7f2ced7cfaf0) 0 + primary-for QThread (0x7f2ced7cfa80) + +Vtable for QThreadPool +QThreadPool::_ZTV11QThreadPool: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QThreadPool) +16 QThreadPool::metaObject +24 QThreadPool::qt_metacast +32 QThreadPool::qt_metacall +40 QThreadPool::~QThreadPool +48 QThreadPool::~QThreadPool +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QThreadPool + size=16 align=8 + base size=16 base align=8 +QThreadPool (0x7f2ced7f5930) 0 + vptr=((& QThreadPool::_ZTV11QThreadPool) + 16u) + QObject (0x7f2ced7f59a0) 0 + primary-for QThreadPool (0x7f2ced7f5930) + +Class QWaitCondition + size=8 align=8 + base size=8 base align=8 +QWaitCondition (0x7f2ced807ee0) 0 + +Class QSemaphore + size=8 align=8 + base size=8 base align=8 +QSemaphore (0x7f2ced80e460) 0 + +Class QtConcurrent::ThreadEngineBarrier + size=24 align=8 + base size=24 base align=8 +QtConcurrent::ThreadEngineBarrier (0x7f2ced80e9a0) 0 + +Vtable for QtConcurrent::ThreadEngineBase +QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent16ThreadEngineBaseE) +16 QtConcurrent::ThreadEngineBase::run +24 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +32 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +40 QtConcurrent::ThreadEngineBase::start +48 QtConcurrent::ThreadEngineBase::finish +56 QtConcurrent::ThreadEngineBase::threadFunction +64 QtConcurrent::ThreadEngineBase::shouldStartThread +72 QtConcurrent::ThreadEngineBase::shouldThrottleThread +80 __cxa_pure_virtual + +Class QtConcurrent::ThreadEngineBase + size=64 align=8 + base size=64 base align=8 +QtConcurrent::ThreadEngineBase (0x7f2ced80ea80) 0 + vptr=((& QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE) + 16u) + QRunnable (0x7f2ced80eaf0) 0 + primary-for QtConcurrent::ThreadEngineBase (0x7f2ced80ea80) + +VTT for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTTN12QtConcurrent12ThreadEngineIvEE: 2u entries +0 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 24u) +8 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 136u) + +Class QtConcurrent::BlockSizeManager + size=96 align=8 + base size=92 base align=8 +QtConcurrent::BlockSizeManager (0x7f2ced65cee0) 0 + +Vtable for QFactoryInterface +QFactoryInterface::_ZTV17QFactoryInterface: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QFactoryInterface) +16 QFactoryInterface::~QFactoryInterface +24 QFactoryInterface::~QFactoryInterface +32 __cxa_pure_virtual + +Class QFactoryInterface + size=8 align=8 + base size=8 base align=8 +QFactoryInterface (0x7f2ced2ffd20) 0 nearly-empty + vptr=((& QFactoryInterface::_ZTV17QFactoryInterface) + 16u) + +Vtable for QTextCodecFactoryInterface +QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QTextCodecFactoryInterface) +16 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +24 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QTextCodecFactoryInterface + size=8 align=8 + base size=8 base align=8 +QTextCodecFactoryInterface (0x7f2ced132000) 0 nearly-empty + vptr=((& QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface) + 16u) + QFactoryInterface (0x7f2ced132070) 0 nearly-empty + primary-for QTextCodecFactoryInterface (0x7f2ced132000) + +Vtable for QTextCodecPlugin +QTextCodecPlugin::_ZTV16QTextCodecPlugin: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QTextCodecPlugin) +16 QTextCodecPlugin::metaObject +24 QTextCodecPlugin::qt_metacast +32 QTextCodecPlugin::qt_metacall +40 QTextCodecPlugin::~QTextCodecPlugin +48 QTextCodecPlugin::~QTextCodecPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 QTextCodecPlugin::keys +160 QTextCodecPlugin::create +168 (int (*)(...))-0x00000000000000010 +176 (int (*)(...))(& _ZTI16QTextCodecPlugin) +184 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD1Ev +192 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD0Ev +200 QTextCodecPlugin::_ZThn16_NK16QTextCodecPlugin4keysEv +208 QTextCodecPlugin::_ZThn16_N16QTextCodecPlugin6createERK7QString + +Class QTextCodecPlugin + size=24 align=8 + base size=24 base align=8 +QTextCodecPlugin (0x7f2ced13b580) 0 + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 16u) + QObject (0x7f2ced132a80) 0 + primary-for QTextCodecPlugin (0x7f2ced13b580) + QTextCodecFactoryInterface (0x7f2ced132af0) 16 nearly-empty + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 184u) + QFactoryInterface (0x7f2ced132b60) 16 nearly-empty + primary-for QTextCodecFactoryInterface (0x7f2ced132af0) + +Class QLibraryInfo + size=1 align=1 + base size=0 base align=1 +QLibraryInfo (0x7f2ced188150) 0 empty + +Vtable for QEventLoop +QEventLoop::_ZTV10QEventLoop: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QEventLoop) +16 QEventLoop::metaObject +24 QEventLoop::qt_metacast +32 QEventLoop::qt_metacall +40 QEventLoop::~QEventLoop +48 QEventLoop::~QEventLoop +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QEventLoop + size=16 align=8 + base size=16 base align=8 +QEventLoop (0x7f2ced1882a0) 0 + vptr=((& QEventLoop::_ZTV10QEventLoop) + 16u) + QObject (0x7f2ced188310) 0 + primary-for QEventLoop (0x7f2ced1882a0) + +Vtable for QAbstractEventDispatcher +QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QAbstractEventDispatcher) +16 QAbstractEventDispatcher::metaObject +24 QAbstractEventDispatcher::qt_metacast +32 QAbstractEventDispatcher::qt_metacall +40 QAbstractEventDispatcher::~QAbstractEventDispatcher +48 QAbstractEventDispatcher::~QAbstractEventDispatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 QAbstractEventDispatcher::startingUp +208 QAbstractEventDispatcher::closingDown + +Class QAbstractEventDispatcher + size=16 align=8 + base size=16 base align=8 +QAbstractEventDispatcher (0x7f2ced1c3bd0) 0 + vptr=((& QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher) + 16u) + QObject (0x7f2ced1c3c40) 0 + primary-for QAbstractEventDispatcher (0x7f2ced1c3bd0) + +Class QModelIndex + size=24 align=8 + base size=24 base align=8 +QModelIndex (0x7f2ced1eaa80) 0 + +Class QPersistentModelIndex + size=8 align=8 + base size=8 base align=8 +QPersistentModelIndex (0x7f2ced214540) 0 + +Vtable for QAbstractItemModel +QAbstractItemModel::_ZTV18QAbstractItemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractItemModel) +16 QAbstractItemModel::metaObject +24 QAbstractItemModel::qt_metacast +32 QAbstractItemModel::qt_metacall +40 QAbstractItemModel::~QAbstractItemModel +48 QAbstractItemModel::~QAbstractItemModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractItemModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractItemModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractItemModel + size=16 align=8 + base size=16 base align=8 +QAbstractItemModel (0x7f2ced21c850) 0 + vptr=((& QAbstractItemModel::_ZTV18QAbstractItemModel) + 16u) + QObject (0x7f2ced21c8c0) 0 + primary-for QAbstractItemModel (0x7f2ced21c850) + +Vtable for QAbstractTableModel +QAbstractTableModel::_ZTV19QAbstractTableModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractTableModel) +16 QAbstractTableModel::metaObject +24 QAbstractTableModel::qt_metacast +32 QAbstractTableModel::qt_metacall +40 QAbstractTableModel::~QAbstractTableModel +48 QAbstractTableModel::~QAbstractTableModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractTableModel::index +120 QAbstractTableModel::parent +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractTableModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractTableModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractTableModel + size=16 align=8 + base size=16 base align=8 +QAbstractTableModel (0x7f2ced078b60) 0 + vptr=((& QAbstractTableModel::_ZTV19QAbstractTableModel) + 16u) + QAbstractItemModel (0x7f2ced078bd0) 0 + primary-for QAbstractTableModel (0x7f2ced078b60) + QObject (0x7f2ced078c40) 0 + primary-for QAbstractItemModel (0x7f2ced078bd0) + +Vtable for QAbstractListModel +QAbstractListModel::_ZTV18QAbstractListModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractListModel) +16 QAbstractListModel::metaObject +24 QAbstractListModel::qt_metacast +32 QAbstractListModel::qt_metacall +40 QAbstractListModel::~QAbstractListModel +48 QAbstractListModel::~QAbstractListModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractListModel::index +120 QAbstractListModel::parent +128 __cxa_pure_virtual +136 QAbstractListModel::columnCount +144 QAbstractListModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractListModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractListModel + size=16 align=8 + base size=16 base align=8 +QAbstractListModel (0x7f2ced0950e0) 0 + vptr=((& QAbstractListModel::_ZTV18QAbstractListModel) + 16u) + QAbstractItemModel (0x7f2ced095150) 0 + primary-for QAbstractListModel (0x7f2ced0950e0) + QObject (0x7f2ced0951c0) 0 + primary-for QAbstractItemModel (0x7f2ced095150) + +Class QBasicTimer + size=4 align=4 + base size=4 base align=4 +QBasicTimer (0x7f2ced0c6230) 0 + +Vtable for QCoreApplication +QCoreApplication::_ZTV16QCoreApplication: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QCoreApplication) +16 QCoreApplication::metaObject +24 QCoreApplication::qt_metacast +32 QCoreApplication::qt_metacall +40 QCoreApplication::~QCoreApplication +48 QCoreApplication::~QCoreApplication +56 QCoreApplication::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCoreApplication::notify +120 QCoreApplication::compressEvent + +Class QCoreApplication + size=16 align=8 + base size=16 base align=8 +QCoreApplication (0x7f2ced0d2620) 0 + vptr=((& QCoreApplication::_ZTV16QCoreApplication) + 16u) + QObject (0x7f2ced0d2690) 0 + primary-for QCoreApplication (0x7f2ced0d2620) + +Class __exception + size=40 align=8 + base size=40 base align=8 +__exception (0x7f2ced105310) 0 + +Class QMetaMethod + size=16 align=8 + base size=12 base align=8 +QMetaMethod (0x7f2cecf72770) 0 + +Class QMetaEnum + size=16 align=8 + base size=12 base align=8 +QMetaEnum (0x7f2cecf8fbd0) 0 + +Class QMetaProperty + size=32 align=8 + base size=32 base align=8 +QMetaProperty (0x7f2cecf9e930) 0 + +Class QMetaClassInfo + size=16 align=8 + base size=12 base align=8 +QMetaClassInfo (0x7f2cecfae000) 0 + +Vtable for QMimeData +QMimeData::_ZTV9QMimeData: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QMimeData) +16 QMimeData::metaObject +24 QMimeData::qt_metacast +32 QMimeData::qt_metacall +40 QMimeData::~QMimeData +48 QMimeData::~QMimeData +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMimeData::hasFormat +120 QMimeData::formats +128 QMimeData::retrieveData + +Class QMimeData + size=16 align=8 + base size=16 base align=8 +QMimeData (0x7f2cecfaeaf0) 0 + vptr=((& QMimeData::_ZTV9QMimeData) + 16u) + QObject (0x7f2cecfaeb60) 0 + primary-for QMimeData (0x7f2cecfaeaf0) + +Vtable for QObjectCleanupHandler +QObjectCleanupHandler::_ZTV21QObjectCleanupHandler: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QObjectCleanupHandler) +16 QObjectCleanupHandler::metaObject +24 QObjectCleanupHandler::qt_metacast +32 QObjectCleanupHandler::qt_metacall +40 QObjectCleanupHandler::~QObjectCleanupHandler +48 QObjectCleanupHandler::~QObjectCleanupHandler +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObjectCleanupHandler + size=24 align=8 + base size=24 base align=8 +QObjectCleanupHandler (0x7f2cecfd1380) 0 + vptr=((& QObjectCleanupHandler::_ZTV21QObjectCleanupHandler) + 16u) + QObject (0x7f2cecfd13f0) 0 + primary-for QObjectCleanupHandler (0x7f2cecfd1380) + +Vtable for QSharedMemory +QSharedMemory::_ZTV13QSharedMemory: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSharedMemory) +16 QSharedMemory::metaObject +24 QSharedMemory::qt_metacast +32 QSharedMemory::qt_metacall +40 QSharedMemory::~QSharedMemory +48 QSharedMemory::~QSharedMemory +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSharedMemory + size=16 align=8 + base size=16 base align=8 +QSharedMemory (0x7f2cecfe24d0) 0 + vptr=((& QSharedMemory::_ZTV13QSharedMemory) + 16u) + QObject (0x7f2cecfe2540) 0 + primary-for QSharedMemory (0x7f2cecfe24d0) + +Vtable for QSignalMapper +QSignalMapper::_ZTV13QSignalMapper: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSignalMapper) +16 QSignalMapper::metaObject +24 QSignalMapper::qt_metacast +32 QSignalMapper::qt_metacall +40 QSignalMapper::~QSignalMapper +48 QSignalMapper::~QSignalMapper +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSignalMapper + size=16 align=8 + base size=16 base align=8 +QSignalMapper (0x7f2cecffe2a0) 0 + vptr=((& QSignalMapper::_ZTV13QSignalMapper) + 16u) + QObject (0x7f2cecffe310) 0 + primary-for QSignalMapper (0x7f2cecffe2a0) + +Vtable for QSocketNotifier +QSocketNotifier::_ZTV15QSocketNotifier: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSocketNotifier) +16 QSocketNotifier::metaObject +24 QSocketNotifier::qt_metacast +32 QSocketNotifier::qt_metacall +40 QSocketNotifier::~QSocketNotifier +48 QSocketNotifier::~QSocketNotifier +56 QSocketNotifier::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSocketNotifier + size=32 align=8 + base size=25 base align=8 +QSocketNotifier (0x7f2ced019690) 0 + vptr=((& QSocketNotifier::_ZTV15QSocketNotifier) + 16u) + QObject (0x7f2ced019700) 0 + primary-for QSocketNotifier (0x7f2ced019690) + +Class QSystemSemaphore + size=8 align=8 + base size=8 base align=8 +QSystemSemaphore (0x7f2cece33a10) 0 + +Vtable for QTimer +QTimer::_ZTV6QTimer: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QTimer) +16 QTimer::metaObject +24 QTimer::qt_metacast +32 QTimer::qt_metacall +40 QTimer::~QTimer +48 QTimer::~QTimer +56 QObject::event +64 QObject::eventFilter +72 QTimer::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTimer + size=32 align=8 + base size=29 base align=8 +QTimer (0x7f2cece3d460) 0 + vptr=((& QTimer::_ZTV6QTimer) + 16u) + QObject (0x7f2cece3d4d0) 0 + primary-for QTimer (0x7f2cece3d460) + +Vtable for QTranslator +QTranslator::_ZTV11QTranslator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTranslator) +16 QTranslator::metaObject +24 QTranslator::qt_metacast +32 QTranslator::qt_metacall +40 QTranslator::~QTranslator +48 QTranslator::~QTranslator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTranslator::translate +120 QTranslator::isEmpty + +Class QTranslator + size=16 align=8 + base size=16 base align=8 +QTranslator (0x7f2cece629a0) 0 + vptr=((& QTranslator::_ZTV11QTranslator) + 16u) + QObject (0x7f2cece62a10) 0 + primary-for QTranslator (0x7f2cece629a0) + +Vtable for QLibrary +QLibrary::_ZTV8QLibrary: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QLibrary) +16 QLibrary::metaObject +24 QLibrary::qt_metacast +32 QLibrary::qt_metacall +40 QLibrary::~QLibrary +48 QLibrary::~QLibrary +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QLibrary + size=32 align=8 + base size=25 base align=8 +QLibrary (0x7f2cece7d930) 0 + vptr=((& QLibrary::_ZTV8QLibrary) + 16u) + QObject (0x7f2cece7d9a0) 0 + primary-for QLibrary (0x7f2cece7d930) + +Vtable for QPluginLoader +QPluginLoader::_ZTV13QPluginLoader: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QPluginLoader) +16 QPluginLoader::metaObject +24 QPluginLoader::qt_metacast +32 QPluginLoader::qt_metacall +40 QPluginLoader::~QPluginLoader +48 QPluginLoader::~QPluginLoader +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QPluginLoader + size=32 align=8 + base size=25 base align=8 +QPluginLoader (0x7f2cececa3f0) 0 + vptr=((& QPluginLoader::_ZTV13QPluginLoader) + 16u) + QObject (0x7f2cececa460) 0 + primary-for QPluginLoader (0x7f2cececa3f0) + +Class QUuid + size=16 align=4 + base size=16 base align=4 +QUuid (0x7f2ceced9b60) 0 + +Class QReadWriteLock + size=8 align=8 + base size=8 base align=8 +QReadWriteLock (0x7f2cecf004d0) 0 + +Class QReadLocker + size=8 align=8 + base size=8 base align=8 +QReadLocker (0x7f2cecf00b60) 0 + +Class QWriteLocker + size=8 align=8 + base size=8 base align=8 +QWriteLocker (0x7f2cecf1eee0) 0 + +Class QThreadStorageData + size=4 align=4 + base size=4 base align=4 +QThreadStorageData (0x7f2cecd372a0) 0 + +Vtable for QAbstractAnimation +QAbstractAnimation::_ZTV18QAbstractAnimation: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractAnimation) +16 QAbstractAnimation::metaObject +24 QAbstractAnimation::qt_metacast +32 QAbstractAnimation::qt_metacall +40 QAbstractAnimation::~QAbstractAnimation +48 QAbstractAnimation::~QAbstractAnimation +56 QAbstractAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAbstractAnimation::updateState +136 QAbstractAnimation::updateDirection + +Class QAbstractAnimation + size=16 align=8 + base size=16 base align=8 +QAbstractAnimation (0x7f2cecd37a10) 0 + vptr=((& QAbstractAnimation::_ZTV18QAbstractAnimation) + 16u) + QObject (0x7f2cecd37a80) 0 + primary-for QAbstractAnimation (0x7f2cecd37a10) + +Vtable for QAnimationGroup +QAnimationGroup::_ZTV15QAnimationGroup: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QAnimationGroup) +16 QAnimationGroup::metaObject +24 QAnimationGroup::qt_metacast +32 QAnimationGroup::qt_metacall +40 QAnimationGroup::~QAnimationGroup +48 QAnimationGroup::~QAnimationGroup +56 QAnimationGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAbstractAnimation::updateState +136 QAbstractAnimation::updateDirection + +Class QAnimationGroup + size=16 align=8 + base size=16 base align=8 +QAnimationGroup (0x7f2cecd6f150) 0 + vptr=((& QAnimationGroup::_ZTV15QAnimationGroup) + 16u) + QAbstractAnimation (0x7f2cecd6f1c0) 0 + primary-for QAnimationGroup (0x7f2cecd6f150) + QObject (0x7f2cecd6f230) 0 + primary-for QAbstractAnimation (0x7f2cecd6f1c0) + +Vtable for QParallelAnimationGroup +QParallelAnimationGroup::_ZTV23QParallelAnimationGroup: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QParallelAnimationGroup) +16 QParallelAnimationGroup::metaObject +24 QParallelAnimationGroup::qt_metacast +32 QParallelAnimationGroup::qt_metacall +40 QParallelAnimationGroup::~QParallelAnimationGroup +48 QParallelAnimationGroup::~QParallelAnimationGroup +56 QParallelAnimationGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QParallelAnimationGroup::duration +120 QParallelAnimationGroup::updateCurrentTime +128 QParallelAnimationGroup::updateState +136 QParallelAnimationGroup::updateDirection + +Class QParallelAnimationGroup + size=16 align=8 + base size=16 base align=8 +QParallelAnimationGroup (0x7f2cecd8a000) 0 + vptr=((& QParallelAnimationGroup::_ZTV23QParallelAnimationGroup) + 16u) + QAnimationGroup (0x7f2cecd8a070) 0 + primary-for QParallelAnimationGroup (0x7f2cecd8a000) + QAbstractAnimation (0x7f2cecd8a0e0) 0 + primary-for QAnimationGroup (0x7f2cecd8a070) + QObject (0x7f2cecd8a150) 0 + primary-for QAbstractAnimation (0x7f2cecd8a0e0) + +Vtable for QPauseAnimation +QPauseAnimation::_ZTV15QPauseAnimation: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QPauseAnimation) +16 QPauseAnimation::metaObject +24 QPauseAnimation::qt_metacast +32 QPauseAnimation::qt_metacall +40 QPauseAnimation::~QPauseAnimation +48 QPauseAnimation::~QPauseAnimation +56 QPauseAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QPauseAnimation::duration +120 QPauseAnimation::updateCurrentTime +128 QAbstractAnimation::updateState +136 QAbstractAnimation::updateDirection + +Class QPauseAnimation + size=16 align=8 + base size=16 base align=8 +QPauseAnimation (0x7f2cecd97e70) 0 + vptr=((& QPauseAnimation::_ZTV15QPauseAnimation) + 16u) + QAbstractAnimation (0x7f2cecd97ee0) 0 + primary-for QPauseAnimation (0x7f2cecd97e70) + QObject (0x7f2cecd97f50) 0 + primary-for QAbstractAnimation (0x7f2cecd97ee0) + +Vtable for QVariantAnimation +QVariantAnimation::_ZTV17QVariantAnimation: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QVariantAnimation) +16 QVariantAnimation::metaObject +24 QVariantAnimation::qt_metacast +32 QVariantAnimation::qt_metacall +40 QVariantAnimation::~QVariantAnimation +48 QVariantAnimation::~QVariantAnimation +56 QVariantAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QVariantAnimation::duration +120 QVariantAnimation::updateCurrentTime +128 QVariantAnimation::updateState +136 QAbstractAnimation::updateDirection +144 __cxa_pure_virtual +152 QVariantAnimation::interpolated + +Class QVariantAnimation + size=16 align=8 + base size=16 base align=8 +QVariantAnimation (0x7f2cecdb58c0) 0 + vptr=((& QVariantAnimation::_ZTV17QVariantAnimation) + 16u) + QAbstractAnimation (0x7f2cecdb5930) 0 + primary-for QVariantAnimation (0x7f2cecdb58c0) + QObject (0x7f2cecdb59a0) 0 + primary-for QAbstractAnimation (0x7f2cecdb5930) + +Vtable for QPropertyAnimation +QPropertyAnimation::_ZTV18QPropertyAnimation: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QPropertyAnimation) +16 QPropertyAnimation::metaObject +24 QPropertyAnimation::qt_metacast +32 QPropertyAnimation::qt_metacall +40 QPropertyAnimation::~QPropertyAnimation +48 QPropertyAnimation::~QPropertyAnimation +56 QPropertyAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QVariantAnimation::duration +120 QVariantAnimation::updateCurrentTime +128 QPropertyAnimation::updateState +136 QAbstractAnimation::updateDirection +144 QPropertyAnimation::updateCurrentValue +152 QVariantAnimation::interpolated + +Class QPropertyAnimation + size=16 align=8 + base size=16 base align=8 +QPropertyAnimation (0x7f2cecdd2b60) 0 + vptr=((& QPropertyAnimation::_ZTV18QPropertyAnimation) + 16u) + QVariantAnimation (0x7f2cecdd2bd0) 0 + primary-for QPropertyAnimation (0x7f2cecdd2b60) + QAbstractAnimation (0x7f2cecdd2c40) 0 + primary-for QVariantAnimation (0x7f2cecdd2bd0) + QObject (0x7f2cecdd2cb0) 0 + primary-for QAbstractAnimation (0x7f2cecdd2c40) + +Vtable for QSequentialAnimationGroup +QSequentialAnimationGroup::_ZTV25QSequentialAnimationGroup: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QSequentialAnimationGroup) +16 QSequentialAnimationGroup::metaObject +24 QSequentialAnimationGroup::qt_metacast +32 QSequentialAnimationGroup::qt_metacall +40 QSequentialAnimationGroup::~QSequentialAnimationGroup +48 QSequentialAnimationGroup::~QSequentialAnimationGroup +56 QSequentialAnimationGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QSequentialAnimationGroup::duration +120 QSequentialAnimationGroup::updateCurrentTime +128 QSequentialAnimationGroup::updateState +136 QSequentialAnimationGroup::updateDirection + +Class QSequentialAnimationGroup + size=16 align=8 + base size=16 base align=8 +QSequentialAnimationGroup (0x7f2cecdecb60) 0 + vptr=((& QSequentialAnimationGroup::_ZTV25QSequentialAnimationGroup) + 16u) + QAnimationGroup (0x7f2cecdecbd0) 0 + primary-for QSequentialAnimationGroup (0x7f2cecdecb60) + QAbstractAnimation (0x7f2cecdecc40) 0 + primary-for QAnimationGroup (0x7f2cecdecbd0) + QObject (0x7f2cecdeccb0) 0 + primary-for QAbstractAnimation (0x7f2cecdecc40) + +Class QSqlRecord + size=8 align=8 + base size=8 base align=8 +QSqlRecord (0x7f2cecc3f230) 0 + +Vtable for QSqlDriverCreatorBase +QSqlDriverCreatorBase::_ZTV21QSqlDriverCreatorBase: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QSqlDriverCreatorBase) +16 QSqlDriverCreatorBase::~QSqlDriverCreatorBase +24 QSqlDriverCreatorBase::~QSqlDriverCreatorBase +32 __cxa_pure_virtual + +Class QSqlDriverCreatorBase + size=8 align=8 + base size=8 base align=8 +QSqlDriverCreatorBase (0x7f2cecc3fe70) 0 nearly-empty + vptr=((& QSqlDriverCreatorBase::_ZTV21QSqlDriverCreatorBase) + 16u) + +Class QSqlDatabase + size=8 align=8 + base size=8 base align=8 +QSqlDatabase (0x7f2cecc569a0) 0 + +Class QSqlQuery + size=8 align=8 + base size=8 base align=8 +QSqlQuery (0x7f2cecc67d90) 0 + +Vtable for QSqlDriver +QSqlDriver::_ZTV10QSqlDriver: 32u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QSqlDriver) +16 QSqlDriver::metaObject +24 QSqlDriver::qt_metacast +32 QSqlDriver::qt_metacall +40 QSqlDriver::~QSqlDriver +48 QSqlDriver::~QSqlDriver +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QSqlDriver::isOpen +120 QSqlDriver::beginTransaction +128 QSqlDriver::commitTransaction +136 QSqlDriver::rollbackTransaction +144 QSqlDriver::tables +152 QSqlDriver::primaryIndex +160 QSqlDriver::record +168 QSqlDriver::formatValue +176 QSqlDriver::escapeIdentifier +184 QSqlDriver::sqlStatement +192 QSqlDriver::handle +200 __cxa_pure_virtual +208 __cxa_pure_virtual +216 __cxa_pure_virtual +224 __cxa_pure_virtual +232 QSqlDriver::setOpen +240 QSqlDriver::setOpenError +248 QSqlDriver::setLastError + +Class QSqlDriver + size=16 align=8 + base size=16 base align=8 +QSqlDriver (0x7f2cecc73850) 0 + vptr=((& QSqlDriver::_ZTV10QSqlDriver) + 16u) + QObject (0x7f2cecc738c0) 0 + primary-for QSqlDriver (0x7f2cecc73850) + +Vtable for QSqlDriverFactoryInterface +QSqlDriverFactoryInterface::_ZTV26QSqlDriverFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QSqlDriverFactoryInterface) +16 QSqlDriverFactoryInterface::~QSqlDriverFactoryInterface +24 QSqlDriverFactoryInterface::~QSqlDriverFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QSqlDriverFactoryInterface + size=8 align=8 + base size=8 base align=8 +QSqlDriverFactoryInterface (0x7f2ceccb70e0) 0 nearly-empty + vptr=((& QSqlDriverFactoryInterface::_ZTV26QSqlDriverFactoryInterface) + 16u) + QFactoryInterface (0x7f2ceccb7150) 0 nearly-empty + primary-for QSqlDriverFactoryInterface (0x7f2ceccb70e0) + +Vtable for QSqlDriverPlugin +QSqlDriverPlugin::_ZTV16QSqlDriverPlugin: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QSqlDriverPlugin) +16 QSqlDriverPlugin::metaObject +24 QSqlDriverPlugin::qt_metacast +32 QSqlDriverPlugin::qt_metacall +40 QSqlDriverPlugin::~QSqlDriverPlugin +48 QSqlDriverPlugin::~QSqlDriverPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI16QSqlDriverPlugin) +144 QSqlDriverPlugin::_ZThn16_N16QSqlDriverPluginD1Ev +152 QSqlDriverPlugin::_ZThn16_N16QSqlDriverPluginD0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QSqlDriverPlugin + size=24 align=8 + base size=24 base align=8 +QSqlDriverPlugin (0x7f2ceccb2c00) 0 + vptr=((& QSqlDriverPlugin::_ZTV16QSqlDriverPlugin) + 16u) + QObject (0x7f2ceccb7b60) 0 + primary-for QSqlDriverPlugin (0x7f2ceccb2c00) + QSqlDriverFactoryInterface (0x7f2ceccb7bd0) 16 nearly-empty + vptr=((& QSqlDriverPlugin::_ZTV16QSqlDriverPlugin) + 144u) + QFactoryInterface (0x7f2ceccb7c40) 16 nearly-empty + primary-for QSqlDriverFactoryInterface (0x7f2ceccb7bd0) + +Class QSqlError + size=24 align=8 + base size=24 base align=8 +QSqlError (0x7f2cecccaa80) 0 + +Class QSqlField + size=24 align=8 + base size=24 base align=8 +QSqlField (0x7f2ceccd29a0) 0 + +Class QSqlIndex + size=32 align=8 + base size=32 base align=8 +QSqlIndex (0x7f2cecced2a0) 0 + QSqlRecord (0x7f2cecced310) 0 + +Vtable for QSqlResult +QSqlResult::_ZTV10QSqlResult: 29u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QSqlResult) +16 QSqlResult::~QSqlResult +24 QSqlResult::~QSqlResult +32 QSqlResult::handle +40 QSqlResult::setAt +48 QSqlResult::setActive +56 QSqlResult::setLastError +64 QSqlResult::setQuery +72 QSqlResult::setSelect +80 QSqlResult::setForwardOnly +88 QSqlResult::exec +96 QSqlResult::prepare +104 QSqlResult::savePrepare +112 QSqlResult::bindValue +120 QSqlResult::bindValue +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 QSqlResult::fetchNext +168 QSqlResult::fetchPrevious +176 __cxa_pure_virtual +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 __cxa_pure_virtual +208 QSqlResult::record +216 QSqlResult::lastInsertId +224 QSqlResult::virtual_hook + +Class QSqlResult + size=16 align=8 + base size=16 base align=8 +QSqlResult (0x7f2cecd201c0) 0 + vptr=((& QSqlResult::_ZTV10QSqlResult) + 16u) + +Vtable for QSqlQueryModel +QSqlQueryModel::_ZTV14QSqlQueryModel: 44u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QSqlQueryModel) +16 QSqlQueryModel::metaObject +24 QSqlQueryModel::qt_metacast +32 QSqlQueryModel::qt_metacall +40 QSqlQueryModel::~QSqlQueryModel +48 QSqlQueryModel::~QSqlQueryModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractTableModel::index +120 QAbstractTableModel::parent +128 QSqlQueryModel::rowCount +136 QSqlQueryModel::columnCount +144 QAbstractTableModel::hasChildren +152 QSqlQueryModel::data +160 QAbstractItemModel::setData +168 QSqlQueryModel::headerData +176 QSqlQueryModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractTableModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QSqlQueryModel::insertColumns +248 QAbstractItemModel::removeRows +256 QSqlQueryModel::removeColumns +264 QSqlQueryModel::fetchMore +272 QSqlQueryModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert +336 QSqlQueryModel::clear +344 QSqlQueryModel::queryChange + +Class QSqlQueryModel + size=16 align=8 + base size=16 base align=8 +QSqlQueryModel (0x7f2cecd20a80) 0 + vptr=((& QSqlQueryModel::_ZTV14QSqlQueryModel) + 16u) + QAbstractTableModel (0x7f2cecd20af0) 0 + primary-for QSqlQueryModel (0x7f2cecd20a80) + QAbstractItemModel (0x7f2cecd20b60) 0 + primary-for QAbstractTableModel (0x7f2cecd20af0) + QObject (0x7f2cecd20bd0) 0 + primary-for QAbstractItemModel (0x7f2cecd20b60) + +Vtable for QSqlTableModel +QSqlTableModel::_ZTV14QSqlTableModel: 55u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QSqlTableModel) +16 QSqlTableModel::metaObject +24 QSqlTableModel::qt_metacast +32 QSqlTableModel::qt_metacall +40 QSqlTableModel::~QSqlTableModel +48 QSqlTableModel::~QSqlTableModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractTableModel::index +120 QAbstractTableModel::parent +128 QSqlTableModel::rowCount +136 QSqlQueryModel::columnCount +144 QAbstractTableModel::hasChildren +152 QSqlTableModel::data +160 QSqlTableModel::setData +168 QSqlTableModel::headerData +176 QSqlQueryModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractTableModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QSqlTableModel::insertRows +240 QSqlQueryModel::insertColumns +248 QSqlTableModel::removeRows +256 QSqlTableModel::removeColumns +264 QSqlQueryModel::fetchMore +272 QSqlQueryModel::canFetchMore +280 QSqlTableModel::flags +288 QSqlTableModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QSqlTableModel::submit +328 QSqlTableModel::revert +336 QSqlTableModel::clear +344 QSqlQueryModel::queryChange +352 QSqlTableModel::select +360 QSqlTableModel::setTable +368 QSqlTableModel::setEditStrategy +376 QSqlTableModel::setSort +384 QSqlTableModel::setFilter +392 QSqlTableModel::revertRow +400 QSqlTableModel::updateRowInTable +408 QSqlTableModel::insertRowIntoTable +416 QSqlTableModel::deleteRowFromTable +424 QSqlTableModel::orderByClause +432 QSqlTableModel::selectStatement + +Class QSqlTableModel + size=16 align=8 + base size=16 base align=8 +QSqlTableModel (0x7f2cecb57380) 0 + vptr=((& QSqlTableModel::_ZTV14QSqlTableModel) + 16u) + QSqlQueryModel (0x7f2cecb573f0) 0 + primary-for QSqlTableModel (0x7f2cecb57380) + QAbstractTableModel (0x7f2cecb57460) 0 + primary-for QSqlQueryModel (0x7f2cecb573f0) + QAbstractItemModel (0x7f2cecb574d0) 0 + primary-for QAbstractTableModel (0x7f2cecb57460) + QObject (0x7f2cecb57540) 0 + primary-for QAbstractItemModel (0x7f2cecb574d0) + +Class QSqlRelation + size=24 align=8 + base size=24 base align=8 +QSqlRelation (0x7f2cecb7ae70) 0 + +Vtable for QSqlRelationalTableModel +QSqlRelationalTableModel::_ZTV24QSqlRelationalTableModel: 57u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QSqlRelationalTableModel) +16 QSqlRelationalTableModel::metaObject +24 QSqlRelationalTableModel::qt_metacast +32 QSqlRelationalTableModel::qt_metacall +40 QSqlRelationalTableModel::~QSqlRelationalTableModel +48 QSqlRelationalTableModel::~QSqlRelationalTableModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractTableModel::index +120 QAbstractTableModel::parent +128 QSqlTableModel::rowCount +136 QSqlQueryModel::columnCount +144 QAbstractTableModel::hasChildren +152 QSqlRelationalTableModel::data +160 QSqlRelationalTableModel::setData +168 QSqlTableModel::headerData +176 QSqlQueryModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractTableModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QSqlTableModel::insertRows +240 QSqlQueryModel::insertColumns +248 QSqlTableModel::removeRows +256 QSqlRelationalTableModel::removeColumns +264 QSqlQueryModel::fetchMore +272 QSqlQueryModel::canFetchMore +280 QSqlTableModel::flags +288 QSqlTableModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QSqlTableModel::submit +328 QSqlTableModel::revert +336 QSqlRelationalTableModel::clear +344 QSqlQueryModel::queryChange +352 QSqlRelationalTableModel::select +360 QSqlRelationalTableModel::setTable +368 QSqlTableModel::setEditStrategy +376 QSqlTableModel::setSort +384 QSqlTableModel::setFilter +392 QSqlRelationalTableModel::revertRow +400 QSqlRelationalTableModel::updateRowInTable +408 QSqlRelationalTableModel::insertRowIntoTable +416 QSqlTableModel::deleteRowFromTable +424 QSqlRelationalTableModel::orderByClause +432 QSqlRelationalTableModel::selectStatement +440 QSqlRelationalTableModel::setRelation +448 QSqlRelationalTableModel::relationModel + +Class QSqlRelationalTableModel + size=16 align=8 + base size=16 base align=8 +QSqlRelationalTableModel (0x7f2cecb9e7e0) 0 + vptr=((& QSqlRelationalTableModel::_ZTV24QSqlRelationalTableModel) + 16u) + QSqlTableModel (0x7f2cecb9e850) 0 + primary-for QSqlRelationalTableModel (0x7f2cecb9e7e0) + QSqlQueryModel (0x7f2cecb9e8c0) 0 + primary-for QSqlTableModel (0x7f2cecb9e850) + QAbstractTableModel (0x7f2cecb9e930) 0 + primary-for QSqlQueryModel (0x7f2cecb9e8c0) + QAbstractItemModel (0x7f2cecb9e9a0) 0 + primary-for QAbstractTableModel (0x7f2cecb9e930) + QObject (0x7f2cecb9ea10) 0 + primary-for QAbstractItemModel (0x7f2cecb9e9a0) + diff --git a/tests/auto/bic/data/QtSvg.4.5.0.linux-gcc-amd64.txt b/tests/auto/bic/data/QtSvg.4.5.0.linux-gcc-amd64.txt new file mode 100644 index 0000000..e9a7947 --- /dev/null +++ b/tests/auto/bic/data/QtSvg.4.5.0.linux-gcc-amd64.txt @@ -0,0 +1,15808 @@ +Class QSysInfo + size=1 align=1 + base size=0 base align=1 +QSysInfo (0x7f96e4940460) 0 empty + +Class QBool + size=1 align=1 + base size=1 base align=1 +QBool (0x7f96e4956150) 0 + +Class qIsNull(double)::U + size=8 align=8 + base size=8 base align=8 +qIsNull(double)::U (0x7f96e496d540) 0 + +Class qIsNull(float)::U + size=4 align=4 + base size=4 base align=4 +qIsNull(float)::U (0x7f96e496d7e0) 0 + +Class QFlag + size=4 align=4 + base size=4 base align=4 +QFlag (0x7f96e49a6620) 0 + +Class QIncompatibleFlag + size=4 align=4 + base size=4 base align=4 +QIncompatibleFlag (0x7f96e49a6e00) 0 + +Class QInternal + size=1 align=1 + base size=0 base align=1 +QInternal (0x7f96e479e540) 0 empty + +Class QGenericArgument + size=16 align=8 + base size=16 base align=8 +QGenericArgument (0x7f96e479e850) 0 + +Class QGenericReturnArgument + size=16 align=8 + base size=16 base align=8 +QGenericReturnArgument (0x7f96e47bb3f0) 0 + QGenericArgument (0x7f96e47bb460) 0 + +Class QMetaObject + size=32 align=8 + base size=32 base align=8 +QMetaObject (0x7f96e47bbcb0) 0 + +Class QMetaObjectExtraData + size=16 align=8 + base size=16 base align=8 +QMetaObjectExtraData (0x7f96e47e2cb0) 0 + +Class QLatin1Char + size=1 align=1 + base size=1 base align=1 +QLatin1Char (0x7f96e47ec700) 0 + +Class QChar + size=2 align=2 + base size=2 base align=2 +QChar (0x7f96e47f22a0) 0 + +Class QBasicAtomicInt + size=4 align=4 + base size=4 base align=4 +QBasicAtomicInt (0x7f96e465a380) 0 + +Class QAtomicInt + size=4 align=4 + base size=4 base align=4 +QAtomicInt (0x7f96e4698d20) 0 + QBasicAtomicInt (0x7f96e4698d90) 0 + +Class __locale_struct + size=232 align=8 + base size=232 base align=8 +__locale_struct (0x7f96e46bb1c0) 0 + +Class QByteArray::Data + size=32 align=8 + base size=32 base align=8 +QByteArray::Data (0x7f96e45387e0) 0 + +Class QByteArray + size=8 align=8 + base size=8 base align=8 +QByteArray (0x7f96e46f4540) 0 + +Class QByteRef + size=16 align=8 + base size=12 base align=8 +QByteRef (0x7f96e458fa80) 0 + +Class QString::Null + size=1 align=1 + base size=0 base align=1 +QString::Null (0x7f96e4497700) 0 empty + +Class QString::Data + size=32 align=8 + base size=32 base align=8 +QString::Data (0x7f96e44a7ee0) 0 + +Class QString + size=8 align=8 + base size=8 base align=8 +QString (0x7f96e46165b0) 0 + +Class QLatin1String + size=8 align=8 + base size=8 base align=8 +QLatin1String (0x7f96e4380000) 0 + +Class QCharRef + size=16 align=8 + base size=12 base align=8 +QCharRef (0x7f96e4418620) 0 + +Class QConstString + size=8 align=8 + base size=8 base align=8 +QConstString (0x7f96e415eee0) 0 + QString (0x7f96e415ef50) 0 + +Class QStringRef + size=16 align=8 + base size=16 base align=8 +QStringRef (0x7f96e417fbd0) 0 + +Vtable for std::exception +std::exception::_ZTVSt9exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9exception) +16 std::exception::~exception +24 std::exception::~exception +32 std::exception::what + +Class std::exception + size=8 align=8 + base size=8 base align=8 +std::exception (0x7f96e4039620) 0 nearly-empty + vptr=((& std::exception::_ZTVSt9exception) + 16u) + +Vtable for std::bad_exception +std::bad_exception::_ZTVSt13bad_exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13bad_exception) +16 std::bad_exception::~bad_exception +24 std::bad_exception::~bad_exception +32 std::bad_exception::what + +Class std::bad_exception + size=8 align=8 + base size=8 base align=8 +std::bad_exception (0x7f96e405c000) 0 nearly-empty + vptr=((& std::bad_exception::_ZTVSt13bad_exception) + 16u) + std::exception (0x7f96e405c070) 0 nearly-empty + primary-for std::bad_exception (0x7f96e405c000) + +Vtable for std::bad_alloc +std::bad_alloc::_ZTVSt9bad_alloc: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9bad_alloc) +16 std::bad_alloc::~bad_alloc +24 std::bad_alloc::~bad_alloc +32 std::bad_alloc::what + +Class std::bad_alloc + size=8 align=8 + base size=8 base align=8 +std::bad_alloc (0x7f96e405c8c0) 0 nearly-empty + vptr=((& std::bad_alloc::_ZTVSt9bad_alloc) + 16u) + std::exception (0x7f96e405c930) 0 nearly-empty + primary-for std::bad_alloc (0x7f96e405c8c0) + +Class std::nothrow_t + size=1 align=1 + base size=0 base align=1 +std::nothrow_t (0x7f96e406d0e0) 0 empty + +Class QListData::Data + size=32 align=8 + base size=32 base align=8 +QListData::Data (0x7f96e406d620) 0 + +Class QListData + size=8 align=8 + base size=8 base align=8 +QListData (0x7f96e406d5b0) 0 + +Vtable for QObjectData +QObjectData::_ZTV11QObjectData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QObjectData) +16 __cxa_pure_virtual +24 __cxa_pure_virtual + +Class QObjectData + size=40 align=8 + base size=40 base align=8 +QObjectData (0x7f96e3f73bd0) 0 + vptr=((& QObjectData::_ZTV11QObjectData) + 16u) + +Vtable for QObject +QObject::_ZTV7QObject: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QObject) +16 QObject::metaObject +24 QObject::qt_metacast +32 QObject::qt_metacall +40 QObject::~QObject +48 QObject::~QObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObject + size=16 align=8 + base size=16 base align=8 +QObject (0x7f96e3f73ee0) 0 + vptr=((& QObject::_ZTV7QObject) + 16u) + +Vtable for QObjectUserData +QObjectUserData::_ZTV15QObjectUserData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QObjectUserData) +16 QObjectUserData::~QObjectUserData +24 QObjectUserData::~QObjectUserData + +Class QObjectUserData + size=8 align=8 + base size=8 base align=8 +QObjectUserData (0x7f96e40033f0) 0 nearly-empty + vptr=((& QObjectUserData::_ZTV15QObjectUserData) + 16u) + +Vtable for QIODevice +QIODevice::_ZTV9QIODevice: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QIODevice) +16 QIODevice::metaObject +24 QIODevice::qt_metacast +32 QIODevice::qt_metacall +40 QIODevice::~QIODevice +48 QIODevice::~QIODevice +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QIODevice::isSequential +120 QIODevice::open +128 QIODevice::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QIODevice::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 __cxa_pure_virtual +224 QIODevice::readLineData +232 __cxa_pure_virtual + +Class QIODevice + size=16 align=8 + base size=16 base align=8 +QIODevice (0x7f96e4003930) 0 + vptr=((& QIODevice::_ZTV9QIODevice) + 16u) + QObject (0x7f96e40039a0) 0 + primary-for QIODevice (0x7f96e4003930) + +Vtable for QDataStream +QDataStream::_ZTV11QDataStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QDataStream) +16 QDataStream::~QDataStream +24 QDataStream::~QDataStream + +Class QDataStream + size=40 align=8 + base size=40 base align=8 +QDataStream (0x7f96e3e782a0) 0 + vptr=((& QDataStream::_ZTV11QDataStream) + 16u) + +Class QHashData::Node + size=16 align=8 + base size=16 base align=8 +QHashData::Node (0x7f96e3f00150) 0 + +Class QHashData + size=40 align=8 + base size=40 base align=8 +QHashData (0x7f96e3f000e0) 0 + +Class QHashDummyValue + size=1 align=1 + base size=0 base align=1 +QHashDummyValue (0x7f96e3f0fee0) 0 empty + +Class QMapData::Node + size=16 align=8 + base size=16 base align=8 +QMapData::Node (0x7f96e3c22690) 0 + +Class QMapData + size=128 align=8 + base size=128 base align=8 +QMapData (0x7f96e3c22620) 0 + +Vtable for QSystemLocale +QSystemLocale::_ZTV13QSystemLocale: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSystemLocale) +16 QSystemLocale::~QSystemLocale +24 QSystemLocale::~QSystemLocale +32 QSystemLocale::query +40 QSystemLocale::fallbackLocale + +Class QSystemLocale + size=8 align=8 + base size=8 base align=8 +QSystemLocale (0x7f96e3b35e00) 0 nearly-empty + vptr=((& QSystemLocale::_ZTV13QSystemLocale) + 16u) + +Class QLocale::Data + size=4 align=2 + base size=4 base align=2 +QLocale::Data (0x7f96e3b943f0) 0 + +Class QLocale + size=8 align=8 + base size=8 base align=8 +QLocale (0x7f96e3b580e0) 0 + +Class QTextCodec::ConverterState + size=32 align=8 + base size=32 base align=8 +QTextCodec::ConverterState (0x7f96e3be2e70) 0 + +Vtable for QTextCodec +QTextCodec::_ZTV10QTextCodec: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextCodec) +16 __cxa_pure_virtual +24 QTextCodec::aliases +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QTextCodec::~QTextCodec +64 QTextCodec::~QTextCodec + +Class QTextCodec + size=8 align=8 + base size=8 base align=8 +QTextCodec (0x7f96e3bcaa80) 0 nearly-empty + vptr=((& QTextCodec::_ZTV10QTextCodec) + 16u) + +Class QTextEncoder + size=40 align=8 + base size=40 base align=8 +QTextEncoder (0x7f96e3a4d3f0) 0 + +Class QTextDecoder + size=40 align=8 + base size=40 base align=8 +QTextDecoder (0x7f96e3a56230) 0 + +Class _IO_marker + size=24 align=8 + base size=24 base align=8 +_IO_marker (0x7f96e3a612a0) 0 + +Class _IO_FILE + size=216 align=8 + base size=216 base align=8 +_IO_FILE (0x7f96e3a61310) 0 + +Vtable for QTextStream +QTextStream::_ZTV11QTextStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTextStream) +16 QTextStream::~QTextStream +24 QTextStream::~QTextStream + +Class QTextStream + size=16 align=8 + base size=16 base align=8 +QTextStream (0x7f96e3a613f0) 0 + vptr=((& QTextStream::_ZTV11QTextStream) + 16u) + +Class QTextStreamManipulator + size=40 align=8 + base size=38 base align=8 +QTextStreamManipulator (0x7f96e3af8ee0) 0 + +Vtable for QTextIStream +QTextIStream::_ZTV12QTextIStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextIStream) +16 QTextIStream::~QTextIStream +24 QTextIStream::~QTextIStream + +Class QTextIStream + size=16 align=8 + base size=16 base align=8 +QTextIStream (0x7f96e39231c0) 0 + vptr=((& QTextIStream::_ZTV12QTextIStream) + 16u) + QTextStream (0x7f96e3923230) 0 + primary-for QTextIStream (0x7f96e39231c0) + +Vtable for QTextOStream +QTextOStream::_ZTV12QTextOStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextOStream) +16 QTextOStream::~QTextOStream +24 QTextOStream::~QTextOStream + +Class QTextOStream + size=16 align=8 + base size=16 base align=8 +QTextOStream (0x7f96e3939070) 0 + vptr=((& QTextOStream::_ZTV12QTextOStream) + 16u) + QTextStream (0x7f96e39390e0) 0 + primary-for QTextOStream (0x7f96e3939070) + +Class wait + size=4 align=4 + base size=4 base align=4 +wait (0x7f96e3944ee0) 0 + +Class timespec + size=16 align=8 + base size=16 base align=8 +timespec (0x7f96e3952230) 0 + +Class timeval + size=16 align=8 + base size=16 base align=8 +timeval (0x7f96e39522a0) 0 + +Class __pthread_internal_list + size=16 align=8 + base size=16 base align=8 +__pthread_internal_list (0x7f96e39523f0) 0 + +Class random_data + size=48 align=8 + base size=48 base align=8 +random_data (0x7f96e39529a0) 0 + +Class drand48_data + size=24 align=8 + base size=24 base align=8 +drand48_data (0x7f96e3952a10) 0 + +Class QVectorData + size=16 align=4 + base size=16 base align=4 +QVectorData (0x7f96e3952a80) 0 + +Class QDebug::Stream + size=40 align=8 + base size=34 base align=8 +QDebug::Stream (0x7f96e38cf230) 0 + +Class QDebug + size=8 align=8 + base size=8 base align=8 +QDebug (0x7f96e38cf1c0) 0 + +Class QNoDebug + size=1 align=1 + base size=0 base align=1 +QNoDebug (0x7f96e376c070) 0 empty + +Vtable for QFile +QFile::_ZTV5QFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QFile) +16 QFile::metaObject +24 QFile::qt_metacast +32 QFile::qt_metacall +40 QFile::~QFile +48 QFile::~QFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QFile::fileEngine + +Class QFile + size=16 align=8 + base size=16 base align=8 +QFile (0x7f96e377d620) 0 + vptr=((& QFile::_ZTV5QFile) + 16u) + QIODevice (0x7f96e377d690) 0 + primary-for QFile (0x7f96e377d620) + QObject (0x7f96e377d700) 0 + primary-for QIODevice (0x7f96e377d690) + +Vtable for QTemporaryFile +QTemporaryFile::_ZTV14QTemporaryFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QTemporaryFile) +16 QTemporaryFile::metaObject +24 QTemporaryFile::qt_metacast +32 QTemporaryFile::qt_metacall +40 QTemporaryFile::~QTemporaryFile +48 QTemporaryFile::~QTemporaryFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QTemporaryFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QTemporaryFile::fileEngine + +Class QTemporaryFile + size=16 align=8 + base size=16 base align=8 +QTemporaryFile (0x7f96e37e7850) 0 + vptr=((& QTemporaryFile::_ZTV14QTemporaryFile) + 16u) + QFile (0x7f96e37e78c0) 0 + primary-for QTemporaryFile (0x7f96e37e7850) + QIODevice (0x7f96e37e7930) 0 + primary-for QFile (0x7f96e37e78c0) + QObject (0x7f96e37e79a0) 0 + primary-for QIODevice (0x7f96e37e7930) + +Class QFileInfo + size=8 align=8 + base size=8 base align=8 +QFileInfo (0x7f96e380af50) 0 + +Class QRegExp + size=8 align=8 + base size=8 base align=8 +QRegExp (0x7f96e3665770) 0 + +Class QStringMatcher + size=1048 align=8 + base size=1048 base align=8 +QStringMatcher (0x7f96e36b35b0) 0 + +Class QStringList + size=8 align=8 + base size=8 base align=8 +QStringList (0x7f96e36c5070) 0 + QList (0x7f96e36c50e0) 0 + +Class QDir + size=8 align=8 + base size=8 base align=8 +QDir (0x7f96e3554cb0) 0 + +Class QAbstractFileEngine::ExtensionOption + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionOption (0x7f96e35ece70) 0 empty + +Class QAbstractFileEngine::ExtensionReturn + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionReturn (0x7f96e35ecee0) 0 empty + +Class QAbstractFileEngine::MapExtensionOption + size=24 align=8 + base size=20 base align=8 +QAbstractFileEngine::MapExtensionOption (0x7f96e35ecf50) 0 + QAbstractFileEngine::ExtensionOption (0x7f96e3601000) 0 empty + +Class QAbstractFileEngine::MapExtensionReturn + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::MapExtensionReturn (0x7f96e36011c0) 0 + QAbstractFileEngine::ExtensionReturn (0x7f96e3601230) 0 empty + +Class QAbstractFileEngine::UnMapExtensionOption + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::UnMapExtensionOption (0x7f96e36012a0) 0 + QAbstractFileEngine::ExtensionOption (0x7f96e3601310) 0 empty + +Vtable for QAbstractFileEngine +QAbstractFileEngine::_ZTV19QAbstractFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractFileEngine) +16 QAbstractFileEngine::~QAbstractFileEngine +24 QAbstractFileEngine::~QAbstractFileEngine +32 QAbstractFileEngine::open +40 QAbstractFileEngine::close +48 QAbstractFileEngine::flush +56 QAbstractFileEngine::size +64 QAbstractFileEngine::pos +72 QAbstractFileEngine::seek +80 QAbstractFileEngine::isSequential +88 QAbstractFileEngine::remove +96 QAbstractFileEngine::copy +104 QAbstractFileEngine::rename +112 QAbstractFileEngine::link +120 QAbstractFileEngine::mkdir +128 QAbstractFileEngine::rmdir +136 QAbstractFileEngine::setSize +144 QAbstractFileEngine::caseSensitive +152 QAbstractFileEngine::isRelativePath +160 QAbstractFileEngine::entryList +168 QAbstractFileEngine::fileFlags +176 QAbstractFileEngine::setPermissions +184 QAbstractFileEngine::fileName +192 QAbstractFileEngine::ownerId +200 QAbstractFileEngine::owner +208 QAbstractFileEngine::fileTime +216 QAbstractFileEngine::setFileName +224 QAbstractFileEngine::handle +232 QAbstractFileEngine::beginEntryList +240 QAbstractFileEngine::endEntryList +248 QAbstractFileEngine::read +256 QAbstractFileEngine::readLine +264 QAbstractFileEngine::write +272 QAbstractFileEngine::extension +280 QAbstractFileEngine::supportsExtension + +Class QAbstractFileEngine + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngine (0x7f96e35dde00) 0 + vptr=((& QAbstractFileEngine::_ZTV19QAbstractFileEngine) + 16u) + +Vtable for QAbstractFileEngineHandler +QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QAbstractFileEngineHandler) +16 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +24 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +32 __cxa_pure_virtual + +Class QAbstractFileEngineHandler + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngineHandler (0x7f96e3431000) 0 nearly-empty + vptr=((& QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler) + 16u) + +Vtable for QAbstractFileEngineIterator +QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QAbstractFileEngineIterator) +16 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +24 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QAbstractFileEngineIterator::currentFileInfo +64 QAbstractFileEngineIterator::entryInfo + +Class QAbstractFileEngineIterator + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngineIterator (0x7f96e34311c0) 0 + vptr=((& QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator) + 16u) + +Vtable for QFSFileEngine +QFSFileEngine::_ZTV13QFSFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QFSFileEngine) +16 QFSFileEngine::~QFSFileEngine +24 QFSFileEngine::~QFSFileEngine +32 QFSFileEngine::open +40 QFSFileEngine::close +48 QFSFileEngine::flush +56 QFSFileEngine::size +64 QFSFileEngine::pos +72 QFSFileEngine::seek +80 QFSFileEngine::isSequential +88 QFSFileEngine::remove +96 QFSFileEngine::copy +104 QFSFileEngine::rename +112 QFSFileEngine::link +120 QFSFileEngine::mkdir +128 QFSFileEngine::rmdir +136 QFSFileEngine::setSize +144 QFSFileEngine::caseSensitive +152 QFSFileEngine::isRelativePath +160 QFSFileEngine::entryList +168 QFSFileEngine::fileFlags +176 QFSFileEngine::setPermissions +184 QFSFileEngine::fileName +192 QFSFileEngine::ownerId +200 QFSFileEngine::owner +208 QFSFileEngine::fileTime +216 QFSFileEngine::setFileName +224 QFSFileEngine::handle +232 QFSFileEngine::beginEntryList +240 QFSFileEngine::endEntryList +248 QFSFileEngine::read +256 QFSFileEngine::readLine +264 QFSFileEngine::write +272 QFSFileEngine::extension +280 QFSFileEngine::supportsExtension + +Class QFSFileEngine + size=16 align=8 + base size=16 base align=8 +QFSFileEngine (0x7f96e3431a10) 0 + vptr=((& QFSFileEngine::_ZTV13QFSFileEngine) + 16u) + QAbstractFileEngine (0x7f96e3431a80) 0 + primary-for QFSFileEngine (0x7f96e3431a10) + +Vtable for QProcess +QProcess::_ZTV8QProcess: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QProcess) +16 QProcess::metaObject +24 QProcess::qt_metacast +32 QProcess::qt_metacall +40 QProcess::~QProcess +48 QProcess::~QProcess +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QProcess::isSequential +120 QIODevice::open +128 QProcess::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QProcess::atEnd +168 QIODevice::reset +176 QProcess::bytesAvailable +184 QProcess::bytesToWrite +192 QProcess::canReadLine +200 QProcess::waitForReadyRead +208 QProcess::waitForBytesWritten +216 QProcess::readData +224 QIODevice::readLineData +232 QProcess::writeData +240 QProcess::setupChildProcess + +Class QProcess + size=16 align=8 + base size=16 base align=8 +QProcess (0x7f96e3449d20) 0 + vptr=((& QProcess::_ZTV8QProcess) + 16u) + QIODevice (0x7f96e3449d90) 0 + primary-for QProcess (0x7f96e3449d20) + QObject (0x7f96e3449e00) 0 + primary-for QIODevice (0x7f96e3449d90) + +Class QResource + size=8 align=8 + base size=8 base align=8 +QResource (0x7f96e3484230) 0 + +Vtable for QDirIterator +QDirIterator::_ZTV12QDirIterator: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QDirIterator) +16 QDirIterator::~QDirIterator +24 QDirIterator::~QDirIterator + +Class QDirIterator + size=16 align=8 + base size=16 base align=8 +QDirIterator (0x7f96e3484cb0) 0 + vptr=((& QDirIterator::_ZTV12QDirIterator) + 16u) + +Vtable for QBuffer +QBuffer::_ZTV7QBuffer: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QBuffer) +16 QBuffer::metaObject +24 QBuffer::qt_metacast +32 QBuffer::qt_metacall +40 QBuffer::~QBuffer +48 QBuffer::~QBuffer +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QBuffer::connectNotify +104 QBuffer::disconnectNotify +112 QIODevice::isSequential +120 QBuffer::open +128 QBuffer::close +136 QBuffer::pos +144 QBuffer::size +152 QBuffer::seek +160 QBuffer::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QBuffer::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QBuffer::readData +224 QIODevice::readLineData +232 QBuffer::writeData + +Class QBuffer + size=16 align=8 + base size=16 base align=8 +QBuffer (0x7f96e34b7a80) 0 + vptr=((& QBuffer::_ZTV7QBuffer) + 16u) + QIODevice (0x7f96e34b7af0) 0 + primary-for QBuffer (0x7f96e34b7a80) + QObject (0x7f96e34b7b60) 0 + primary-for QIODevice (0x7f96e34b7af0) + +Vtable for QFileSystemWatcher +QFileSystemWatcher::_ZTV18QFileSystemWatcher: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFileSystemWatcher) +16 QFileSystemWatcher::metaObject +24 QFileSystemWatcher::qt_metacast +32 QFileSystemWatcher::qt_metacall +40 QFileSystemWatcher::~QFileSystemWatcher +48 QFileSystemWatcher::~QFileSystemWatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QFileSystemWatcher + size=16 align=8 + base size=16 base align=8 +QFileSystemWatcher (0x7f96e34de690) 0 + vptr=((& QFileSystemWatcher::_ZTV18QFileSystemWatcher) + 16u) + QObject (0x7f96e34de700) 0 + primary-for QFileSystemWatcher (0x7f96e34de690) + +Class QUrl + size=8 align=8 + base size=8 base align=8 +QUrl (0x7f96e34efbd0) 0 + +Class QMetaType + size=1 align=1 + base size=0 base align=1 +QMetaType (0x7f96e33593f0) 0 empty + +Class QVariant::PrivateShared + size=16 align=8 + base size=12 base align=8 +QVariant::PrivateShared (0x7f96e322c930) 0 + +Class QVariant::Private::Data + size=8 align=8 + base size=8 base align=8 +QVariant::Private::Data (0x7f96e322cc40) 0 + +Class QVariant::Private + size=16 align=8 + base size=12 base align=8 +QVariant::Private (0x7f96e322ca10) 0 + +Class QVariant::Handler + size=72 align=8 + base size=72 base align=8 +QVariant::Handler (0x7f96e323d930) 0 + +Class QVariant + size=16 align=8 + base size=16 base align=8 +QVariant (0x7f96e31fcaf0) 0 + +Class QVariantComparisonHelper + size=8 align=8 + base size=8 base align=8 +QVariantComparisonHelper (0x7f96e32e8cb0) 0 + +Vtable for QSettings +QSettings::_ZTV9QSettings: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QSettings) +16 QSettings::metaObject +24 QSettings::qt_metacast +32 QSettings::qt_metacall +40 QSettings::~QSettings +48 QSettings::~QSettings +56 QSettings::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSettings + size=16 align=8 + base size=16 base align=8 +QSettings (0x7f96e3105cb0) 0 + vptr=((& QSettings::_ZTV9QSettings) + 16u) + QObject (0x7f96e3105d20) 0 + primary-for QSettings (0x7f96e3105cb0) + +Class QXmlStreamStringRef + size=16 align=8 + base size=16 base align=8 +QXmlStreamStringRef (0x7f96e3189070) 0 + +Class QXmlStreamAttribute + size=80 align=8 + base size=73 base align=8 +QXmlStreamAttribute (0x7f96e31a6850) 0 + +Class QXmlStreamAttributes + size=8 align=8 + base size=8 base align=8 +QXmlStreamAttributes (0x7f96e31cf380) 0 + QVector (0x7f96e31cf3f0) 0 + +Class QXmlStreamNamespaceDeclaration + size=40 align=8 + base size=40 base align=8 +QXmlStreamNamespaceDeclaration (0x7f96e31cf850) 0 + +Class QXmlStreamNotationDeclaration + size=56 align=8 + base size=56 base align=8 +QXmlStreamNotationDeclaration (0x7f96e300e1c0) 0 + +Class QXmlStreamEntityDeclaration + size=88 align=8 + base size=88 base align=8 +QXmlStreamEntityDeclaration (0x7f96e302e070) 0 + +Vtable for QXmlStreamEntityResolver +QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QXmlStreamEntityResolver) +16 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +24 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +32 QXmlStreamEntityResolver::resolveEntity +40 QXmlStreamEntityResolver::resolveUndeclaredEntity + +Class QXmlStreamEntityResolver + size=8 align=8 + base size=8 base align=8 +QXmlStreamEntityResolver (0x7f96e304a9a0) 0 nearly-empty + vptr=((& QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver) + 16u) + +Class QXmlStreamReader + size=8 align=8 + base size=8 base align=8 +QXmlStreamReader (0x7f96e304ab60) 0 + +Class QXmlStreamWriter + size=8 align=8 + base size=8 base align=8 +QXmlStreamWriter (0x7f96e3087a10) 0 + +Class QPoint + size=8 align=4 + base size=8 base align=4 +QPoint (0x7f96e30c4150) 0 + +Class QPointF + size=16 align=8 + base size=16 base align=8 +QPointF (0x7f96e2efbd90) 0 + +Class QLine + size=16 align=4 + base size=16 base align=4 +QLine (0x7f96e2f38bd0) 0 + +Class QLineF + size=32 align=8 + base size=32 base align=8 +QLineF (0x7f96e2f73a80) 0 + +Class QSize + size=8 align=4 + base size=8 base align=4 +QSize (0x7f96e2fcd540) 0 + +Class QSizeF + size=16 align=8 + base size=16 base align=8 +QSizeF (0x7f96e2e1a380) 0 + +Class QRect + size=16 align=4 + base size=16 base align=4 +QRect (0x7f96e2e659a0) 0 + +Class QRectF + size=32 align=8 + base size=32 base align=8 +QRectF (0x7f96e2d16380) 0 + +Class QSharedData + size=4 align=4 + base size=4 base align=4 +QSharedData (0x7f96e2dc0150) 0 + +Vtable for QtSharedPointer::ExternalRefCountData +QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN15QtSharedPointer20ExternalRefCountDataE) +16 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +24 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +32 QtSharedPointer::ExternalRefCountData::destroy + +Class QtSharedPointer::ExternalRefCountData + size=16 align=8 + base size=16 base align=8 +QtSharedPointer::ExternalRefCountData (0x7f96e2bf1af0) 0 + vptr=((& QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE) + 16u) + +Class QLinkedListData + size=32 align=8 + base size=32 base align=8 +QLinkedListData (0x7f96e2c77c40) 0 + +Class QBitArray + size=8 align=8 + base size=8 base align=8 +QBitArray (0x7f96e2b43b60) 0 + +Class QBitRef + size=16 align=8 + base size=12 base align=8 +QBitRef (0x7f96e2bb7930) 0 + +Class QByteArrayMatcher + size=1040 align=8 + base size=1040 base align=8 +QByteArrayMatcher (0x7f96e2bd1310) 0 + +Class QCryptographicHash + size=8 align=8 + base size=8 base align=8 +QCryptographicHash (0x7f96e2be4a10) 0 + +Class QTextBoundaryFinder + size=48 align=8 + base size=48 base align=8 +QTextBoundaryFinder (0x7f96e2a11460) 0 + +Class QDate + size=4 align=4 + base size=4 base align=4 +QDate (0x7f96e2a287e0) 0 + +Class QTime + size=4 align=4 + base size=4 base align=4 +QTime (0x7f96e2a50770) 0 + +Class QDateTime + size=8 align=8 + base size=8 base align=8 +QDateTime (0x7f96e2a6ed20) 0 + +Vtable for QTimeLine +QTimeLine::_ZTV9QTimeLine: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTimeLine) +16 QTimeLine::metaObject +24 QTimeLine::qt_metacast +32 QTimeLine::qt_metacall +40 QTimeLine::~QTimeLine +48 QTimeLine::~QTimeLine +56 QObject::event +64 QObject::eventFilter +72 QTimeLine::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTimeLine::valueForTime + +Class QTimeLine + size=16 align=8 + base size=16 base align=8 +QTimeLine (0x7f96e2aa11c0) 0 + vptr=((& QTimeLine::_ZTV9QTimeLine) + 16u) + QObject (0x7f96e2aa1230) 0 + primary-for QTimeLine (0x7f96e2aa11c0) + +Vtable for QRunnable +QRunnable::_ZTV9QRunnable: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QRunnable) +16 __cxa_pure_virtual +24 QRunnable::~QRunnable +32 QRunnable::~QRunnable + +Class QRunnable + size=16 align=8 + base size=12 base align=8 +QRunnable (0x7f96e2aca070) 0 + vptr=((& QRunnable::_ZTV9QRunnable) + 16u) + +Class QMutex + size=8 align=8 + base size=8 base align=8 +QMutex (0x7f96e2ad6700) 0 + +Class QMutexLocker + size=8 align=8 + base size=8 base align=8 +QMutexLocker (0x7f96e2ae52a0) 0 + +Vtable for QtConcurrent::Exception +QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent9ExceptionE) +16 QtConcurrent::Exception::~Exception +24 QtConcurrent::Exception::~Exception +32 std::exception::what +40 QtConcurrent::Exception::raise +48 QtConcurrent::Exception::clone + +Class QtConcurrent::Exception + size=8 align=8 + base size=8 base align=8 +QtConcurrent::Exception (0x7f96e28fc5b0) 0 nearly-empty + vptr=((& QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE) + 16u) + std::exception (0x7f96e28fc620) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7f96e28fc5b0) + +Vtable for QtConcurrent::UnhandledException +QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent18UnhandledExceptionE) +16 QtConcurrent::UnhandledException::~UnhandledException +24 QtConcurrent::UnhandledException::~UnhandledException +32 std::exception::what +40 QtConcurrent::UnhandledException::raise +48 QtConcurrent::UnhandledException::clone + +Class QtConcurrent::UnhandledException + size=8 align=8 + base size=8 base align=8 +QtConcurrent::UnhandledException (0x7f96e28fc850) 0 nearly-empty + vptr=((& QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE) + 16u) + QtConcurrent::Exception (0x7f96e28fc8c0) 0 nearly-empty + primary-for QtConcurrent::UnhandledException (0x7f96e28fc850) + std::exception (0x7f96e28fc930) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7f96e28fc8c0) + +Class QtConcurrent::internal::ExceptionHolder + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionHolder (0x7f96e28fcb60) 0 + +Class QtConcurrent::internal::ExceptionStore + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionStore (0x7f96e28fcee0) 0 + +Class QtConcurrent::ResultItem + size=16 align=8 + base size=16 base align=8 +QtConcurrent::ResultItem (0x7f96e28fcf50) 0 + +Class QtConcurrent::ResultIteratorBase + size=16 align=8 + base size=12 base align=8 +QtConcurrent::ResultIteratorBase (0x7f96e2912e70) 0 + +Vtable for QtConcurrent::ResultStoreBase +QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent15ResultStoreBaseE) +16 QtConcurrent::ResultStoreBase::~ResultStoreBase +24 QtConcurrent::ResultStoreBase::~ResultStoreBase + +Class QtConcurrent::ResultStoreBase + size=48 align=8 + base size=44 base align=8 +QtConcurrent::ResultStoreBase (0x7f96e2915a10) 0 + vptr=((& QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE) + 16u) + +Vtable for QFutureInterfaceBase +QFutureInterfaceBase::_ZTV20QFutureInterfaceBase: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QFutureInterfaceBase) +16 QFutureInterfaceBase::~QFutureInterfaceBase +24 QFutureInterfaceBase::~QFutureInterfaceBase + +Class QFutureInterfaceBase + size=16 align=8 + base size=16 base align=8 +QFutureInterfaceBase (0x7f96e2956e70) 0 + vptr=((& QFutureInterfaceBase::_ZTV20QFutureInterfaceBase) + 16u) + +Vtable for QThread +QThread::_ZTV7QThread: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QThread) +16 QThread::metaObject +24 QThread::qt_metacast +32 QThread::qt_metacall +40 QThread::~QThread +48 QThread::~QThread +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QThread::run + +Class QThread + size=16 align=8 + base size=16 base align=8 +QThread (0x7f96e283ae00) 0 + vptr=((& QThread::_ZTV7QThread) + 16u) + QObject (0x7f96e283ae70) 0 + primary-for QThread (0x7f96e283ae00) + +Vtable for QThreadPool +QThreadPool::_ZTV11QThreadPool: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QThreadPool) +16 QThreadPool::metaObject +24 QThreadPool::qt_metacast +32 QThreadPool::qt_metacall +40 QThreadPool::~QThreadPool +48 QThreadPool::~QThreadPool +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QThreadPool + size=16 align=8 + base size=16 base align=8 +QThreadPool (0x7f96e286ccb0) 0 + vptr=((& QThreadPool::_ZTV11QThreadPool) + 16u) + QObject (0x7f96e286cd20) 0 + primary-for QThreadPool (0x7f96e286ccb0) + +Class QWaitCondition + size=8 align=8 + base size=8 base align=8 +QWaitCondition (0x7f96e2887540) 0 + +Class QtConcurrent::ThreadEngineSemaphore + size=24 align=8 + base size=24 base align=8 +QtConcurrent::ThreadEngineSemaphore (0x7f96e2887a80) 0 + +Vtable for QtConcurrent::ThreadEngineBase +QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent16ThreadEngineBaseE) +16 QtConcurrent::ThreadEngineBase::run +24 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +32 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +40 QtConcurrent::ThreadEngineBase::start +48 QtConcurrent::ThreadEngineBase::finish +56 QtConcurrent::ThreadEngineBase::threadFunction +64 QtConcurrent::ThreadEngineBase::shouldStartThread +72 QtConcurrent::ThreadEngineBase::shouldThrottleThread +80 __cxa_pure_virtual + +Class QtConcurrent::ThreadEngineBase + size=64 align=8 + base size=64 base align=8 +QtConcurrent::ThreadEngineBase (0x7f96e28a4460) 0 + vptr=((& QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE) + 16u) + QRunnable (0x7f96e28a44d0) 0 + primary-for QtConcurrent::ThreadEngineBase (0x7f96e28a4460) + +VTT for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTTN12QtConcurrent12ThreadEngineIvEE: 2u entries +0 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 24u) +8 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 136u) + +Class std::input_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::input_iterator_tag (0x7f96e28e7850) 0 empty + +Class std::output_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::output_iterator_tag (0x7f96e28e78c0) 0 empty + +Class std::forward_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::forward_iterator_tag (0x7f96e28e7930) 0 empty + std::input_iterator_tag (0x7f96e28e79a0) 0 empty + +Class std::bidirectional_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::bidirectional_iterator_tag (0x7f96e28e7a10) 0 empty + std::forward_iterator_tag (0x7f96e28e7a80) 0 empty + std::input_iterator_tag (0x7f96e28e7af0) 0 empty + +Class std::random_access_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::random_access_iterator_tag (0x7f96e28e7b60) 0 empty + std::bidirectional_iterator_tag (0x7f96e28e7bd0) 0 empty + std::forward_iterator_tag (0x7f96e28e7c40) 0 empty + std::input_iterator_tag (0x7f96e28e7cb0) 0 empty + +Class std::__true_type + size=1 align=1 + base size=0 base align=1 +std::__true_type (0x7f96e26fb2a0) 0 empty + +Class std::__false_type + size=1 align=1 + base size=0 base align=1 +std::__false_type (0x7f96e26fb310) 0 empty + +Class lconv + size=96 align=8 + base size=96 base align=8 +lconv (0x7f96e26d6620) 0 + +Class sched_param + size=4 align=4 + base size=4 base align=4 +sched_param (0x7f96e26d6a80) 0 + +Class __sched_param + size=4 align=4 + base size=4 base align=4 +__sched_param (0x7f96e26d6af0) 0 + +Class tm + size=56 align=8 + base size=56 base align=8 +tm (0x7f96e26d6bd0) 0 + +Class itimerspec + size=32 align=8 + base size=32 base align=8 +itimerspec (0x7f96e26d6cb0) 0 + +Class _pthread_cleanup_buffer + size=32 align=8 + base size=32 base align=8 +_pthread_cleanup_buffer (0x7f96e26d6d20) 0 + +Class __pthread_cleanup_frame + size=24 align=8 + base size=24 base align=8 +__pthread_cleanup_frame (0x7f96e26d6e70) 0 + +Class __pthread_cleanup_class + size=24 align=8 + base size=24 base align=8 +__pthread_cleanup_class (0x7f96e26d6ee0) 0 + +Vtable for __cxxabiv1::__forced_unwind +__cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN10__cxxabiv115__forced_unwindE) +16 __cxxabiv1::__forced_unwind::~__forced_unwind +24 __cxxabiv1::__forced_unwind::~__forced_unwind +32 __cxa_pure_virtual + +Class __cxxabiv1::__forced_unwind + size=8 align=8 + base size=8 base align=8 +__cxxabiv1::__forced_unwind (0x7f96e23e2a80) 0 nearly-empty + vptr=((& __cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE) + 16u) + +Class std::locale + size=8 align=8 + base size=8 base align=8 +std::locale (0x7f96e22935b0) 0 + +Vtable for std::locale::facet +std::locale::facet::_ZTVNSt6locale5facetE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTINSt6locale5facetE) +16 std::locale::facet::~facet +24 std::locale::facet::~facet + +Class std::locale::facet + size=16 align=8 + base size=12 base align=8 +std::locale::facet (0x7f96e2136cb0) 0 + vptr=((& std::locale::facet::_ZTVNSt6locale5facetE) + 16u) + +Class std::locale::id + size=8 align=8 + base size=8 base align=8 +std::locale::id (0x7f96e214b2a0) 0 + +Class std::locale::_Impl + size=40 align=8 + base size=40 base align=8 +std::locale::_Impl (0x7f96e214b8c0) 0 + +Vtable for std::ios_base::failure +std::ios_base::failure::_ZTVNSt8ios_base7failureE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTINSt8ios_base7failureE) +16 std::ios_base::failure::~failure +24 std::ios_base::failure::~failure +32 std::ios_base::failure::what + +Class std::ios_base::failure + size=16 align=8 + base size=16 base align=8 +std::ios_base::failure (0x7f96e21d8070) 0 + vptr=((& std::ios_base::failure::_ZTVNSt8ios_base7failureE) + 16u) + std::exception (0x7f96e21d80e0) 0 nearly-empty + primary-for std::ios_base::failure (0x7f96e21d8070) + +Class std::ios_base::_Callback_list + size=24 align=8 + base size=24 base align=8 +std::ios_base::_Callback_list (0x7f96e1fe6310) 0 + +Class std::ios_base::_Words + size=16 align=8 + base size=16 base align=8 +std::ios_base::_Words (0x7f96e1fe6d90) 0 + +Class std::ios_base::Init + size=1 align=1 + base size=0 base align=1 +std::ios_base::Init (0x7f96e1fee4d0) 0 empty + +Vtable for std::ios_base +std::ios_base::_ZTVSt8ios_base: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt8ios_base) +16 std::ios_base::~ios_base +24 std::ios_base::~ios_base + +Class std::ios_base + size=216 align=8 + base size=216 base align=8 +std::ios_base (0x7f96e21d8000) 0 + vptr=((& std::ios_base::_ZTVSt8ios_base) + 16u) + +Class std::ctype_base + size=1 align=1 + base size=0 base align=1 +std::ctype_base (0x7f96e2065930) 0 empty + +Class std::__num_base + size=1 align=1 + base size=0 base align=1 +std::__num_base (0x7f96e1f8b1c0) 0 empty + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSo: 2u entries +0 ((& std::basic_ostream >::_ZTVSo) + 24u) +8 ((& std::basic_ostream >::_ZTVSo) + 64u) + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSt13basic_ostreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 24u) +8 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 64u) + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSi: 2u entries +0 ((& std::basic_istream >::_ZTVSi) + 24u) +8 ((& std::basic_istream >::_ZTVSi) + 64u) + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSt13basic_istreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 24u) +8 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 64u) + +Construction vtable for std::basic_istream > (0x7f96e1cbe310 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd0_Si: 10u entries +0 24u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISi) +24 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +32 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +40 -24u +48 (int (*)(...))-0x00000000000000018 +56 (int (*)(...))(& _ZTISi) +64 std::basic_istream >::_ZTv0_n24_NSiD1Ev +72 std::basic_istream >::_ZTv0_n24_NSiD0Ev + +Construction vtable for std::basic_ostream > (0x7f96e1cbe460 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd16_So: 10u entries +0 8u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISo) +24 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +32 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +40 -8u +48 (int (*)(...))-0x00000000000000008 +56 (int (*)(...))(& _ZTISo) +64 std::basic_ostream >::_ZTv0_n24_NSoD1Ev +72 std::basic_ostream >::_ZTv0_n24_NSoD0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSd: 7u entries +0 ((& std::basic_iostream >::_ZTVSd) + 24u) +8 ((& std::basic_iostream >::_ZTCSd0_Si) + 24u) +16 ((& std::basic_iostream >::_ZTCSd0_Si) + 64u) +24 ((& std::basic_iostream >::_ZTCSd16_So) + 24u) +32 ((& std::basic_iostream >::_ZTCSd16_So) + 64u) +40 ((& std::basic_iostream >::_ZTVSd) + 104u) +48 ((& std::basic_iostream >::_ZTVSd) + 64u) + +Construction vtable for std::basic_istream > (0x7f96e1cbe620 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E: 10u entries +0 24u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +24 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +32 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +40 -24u +48 (int (*)(...))-0x00000000000000018 +56 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +64 std::basic_istream >::_ZTv0_n24_NSt13basic_istreamIwSt11char_traitsIwEED1Ev +72 std::basic_istream >::_ZTv0_n24_NSt13basic_istreamIwSt11char_traitsIwEED0Ev + +Construction vtable for std::basic_ostream > (0x7f96e1cbe770 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE16_St13basic_ostreamIwS1_E: 10u entries +0 8u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +24 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +32 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +40 -8u +48 (int (*)(...))-0x00000000000000008 +56 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +64 std::basic_ostream >::_ZTv0_n24_NSt13basic_ostreamIwSt11char_traitsIwEED1Ev +72 std::basic_ostream >::_ZTv0_n24_NSt13basic_ostreamIwSt11char_traitsIwEED0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSt14basic_iostreamIwSt11char_traitsIwEE: 7u entries +0 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 24u) +8 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 24u) +16 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 64u) +24 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE16_St13basic_ostreamIwS1_E) + 24u) +32 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE16_St13basic_ostreamIwS1_E) + 64u) +40 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 104u) +48 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 64u) + +Class QtConcurrent::BlockSizeManager + size=96 align=8 + base size=92 base align=8 +QtConcurrent::BlockSizeManager (0x7f96e1b29230) 0 + +Vtable for QFutureWatcherBase +QFutureWatcherBase::_ZTV18QFutureWatcherBase: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFutureWatcherBase) +16 QFutureWatcherBase::metaObject +24 QFutureWatcherBase::qt_metacast +32 QFutureWatcherBase::qt_metacall +40 QFutureWatcherBase::~QFutureWatcherBase +48 QFutureWatcherBase::~QFutureWatcherBase +56 QFutureWatcherBase::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QFutureWatcherBase::connectNotify +104 QFutureWatcherBase::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QFutureWatcherBase + size=16 align=8 + base size=16 base align=8 +QFutureWatcherBase (0x7f96e16f5bd0) 0 + vptr=((& QFutureWatcherBase::_ZTV18QFutureWatcherBase) + 16u) + QObject (0x7f96e16f5c40) 0 + primary-for QFutureWatcherBase (0x7f96e16f5bd0) + +Vtable for QFactoryInterface +QFactoryInterface::_ZTV17QFactoryInterface: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QFactoryInterface) +16 QFactoryInterface::~QFactoryInterface +24 QFactoryInterface::~QFactoryInterface +32 __cxa_pure_virtual + +Class QFactoryInterface + size=8 align=8 + base size=8 base align=8 +QFactoryInterface (0x7f96e160de00) 0 nearly-empty + vptr=((& QFactoryInterface::_ZTV17QFactoryInterface) + 16u) + +Vtable for QTextCodecFactoryInterface +QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QTextCodecFactoryInterface) +16 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +24 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QTextCodecFactoryInterface + size=8 align=8 + base size=8 base align=8 +QTextCodecFactoryInterface (0x7f96e162dee0) 0 nearly-empty + vptr=((& QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface) + 16u) + QFactoryInterface (0x7f96e162df50) 0 nearly-empty + primary-for QTextCodecFactoryInterface (0x7f96e162dee0) + +Vtable for QTextCodecPlugin +QTextCodecPlugin::_ZTV16QTextCodecPlugin: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QTextCodecPlugin) +16 QTextCodecPlugin::metaObject +24 QTextCodecPlugin::qt_metacast +32 QTextCodecPlugin::qt_metacall +40 QTextCodecPlugin::~QTextCodecPlugin +48 QTextCodecPlugin::~QTextCodecPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 QTextCodecPlugin::keys +160 QTextCodecPlugin::create +168 (int (*)(...))-0x00000000000000010 +176 (int (*)(...))(& _ZTI16QTextCodecPlugin) +184 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD1Ev +192 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD0Ev +200 QTextCodecPlugin::_ZThn16_NK16QTextCodecPlugin4keysEv +208 QTextCodecPlugin::_ZThn16_N16QTextCodecPlugin6createERK7QString + +Class QTextCodecPlugin + size=24 align=8 + base size=24 base align=8 +QTextCodecPlugin (0x7f96e1633e00) 0 + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 16u) + QObject (0x7f96e16397e0) 0 + primary-for QTextCodecPlugin (0x7f96e1633e00) + QTextCodecFactoryInterface (0x7f96e1639850) 16 nearly-empty + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 184u) + QFactoryInterface (0x7f96e16398c0) 16 nearly-empty + primary-for QTextCodecFactoryInterface (0x7f96e1639850) + +Class QLibraryInfo + size=1 align=1 + base size=0 base align=1 +QLibraryInfo (0x7f96e1651700) 0 empty + +Vtable for QTranslator +QTranslator::_ZTV11QTranslator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTranslator) +16 QTranslator::metaObject +24 QTranslator::qt_metacast +32 QTranslator::qt_metacall +40 QTranslator::~QTranslator +48 QTranslator::~QTranslator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTranslator::translate +120 QTranslator::isEmpty + +Class QTranslator + size=16 align=8 + base size=16 base align=8 +QTranslator (0x7f96e1694000) 0 + vptr=((& QTranslator::_ZTV11QTranslator) + 16u) + QObject (0x7f96e1694070) 0 + primary-for QTranslator (0x7f96e1694000) + +Class __exception + size=40 align=8 + base size=40 base align=8 +__exception (0x7f96e16a7f50) 0 + +Vtable for QMimeData +QMimeData::_ZTV9QMimeData: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QMimeData) +16 QMimeData::metaObject +24 QMimeData::qt_metacast +32 QMimeData::qt_metacall +40 QMimeData::~QMimeData +48 QMimeData::~QMimeData +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMimeData::hasFormat +120 QMimeData::formats +128 QMimeData::retrieveData + +Class QMimeData + size=16 align=8 + base size=16 base align=8 +QMimeData (0x7f96e1513150) 0 + vptr=((& QMimeData::_ZTV9QMimeData) + 16u) + QObject (0x7f96e15131c0) 0 + primary-for QMimeData (0x7f96e1513150) + +Vtable for QEventLoop +QEventLoop::_ZTV10QEventLoop: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QEventLoop) +16 QEventLoop::metaObject +24 QEventLoop::qt_metacast +32 QEventLoop::qt_metacall +40 QEventLoop::~QEventLoop +48 QEventLoop::~QEventLoop +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QEventLoop + size=16 align=8 + base size=16 base align=8 +QEventLoop (0x7f96e152b9a0) 0 + vptr=((& QEventLoop::_ZTV10QEventLoop) + 16u) + QObject (0x7f96e152ba10) 0 + primary-for QEventLoop (0x7f96e152b9a0) + +Vtable for QEvent +QEvent::_ZTV6QEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QEvent) +16 QEvent::~QEvent +24 QEvent::~QEvent + +Class QEvent + size=24 align=8 + base size=20 base align=8 +QEvent (0x7f96e156b310) 0 + vptr=((& QEvent::_ZTV6QEvent) + 16u) + +Vtable for QTimerEvent +QTimerEvent::_ZTV11QTimerEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTimerEvent) +16 QTimerEvent::~QTimerEvent +24 QTimerEvent::~QTimerEvent + +Class QTimerEvent + size=24 align=8 + base size=24 base align=8 +QTimerEvent (0x7f96e1584ee0) 0 + vptr=((& QTimerEvent::_ZTV11QTimerEvent) + 16u) + QEvent (0x7f96e1584f50) 0 + primary-for QTimerEvent (0x7f96e1584ee0) + +Vtable for QChildEvent +QChildEvent::_ZTV11QChildEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QChildEvent) +16 QChildEvent::~QChildEvent +24 QChildEvent::~QChildEvent + +Class QChildEvent + size=32 align=8 + base size=32 base align=8 +QChildEvent (0x7f96e1588380) 0 + vptr=((& QChildEvent::_ZTV11QChildEvent) + 16u) + QEvent (0x7f96e15883f0) 0 + primary-for QChildEvent (0x7f96e1588380) + +Vtable for QCustomEvent +QCustomEvent::_ZTV12QCustomEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QCustomEvent) +16 QCustomEvent::~QCustomEvent +24 QCustomEvent::~QCustomEvent + +Class QCustomEvent + size=24 align=8 + base size=20 base align=8 +QCustomEvent (0x7f96e159a620) 0 + vptr=((& QCustomEvent::_ZTV12QCustomEvent) + 16u) + QEvent (0x7f96e159a690) 0 + primary-for QCustomEvent (0x7f96e159a620) + +Vtable for QDynamicPropertyChangeEvent +QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QDynamicPropertyChangeEvent) +16 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent +24 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent + +Class QDynamicPropertyChangeEvent + size=32 align=8 + base size=32 base align=8 +QDynamicPropertyChangeEvent (0x7f96e159ae00) 0 + vptr=((& QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent) + 16u) + QEvent (0x7f96e159ae70) 0 + primary-for QDynamicPropertyChangeEvent (0x7f96e159ae00) + +Vtable for QCoreApplication +QCoreApplication::_ZTV16QCoreApplication: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QCoreApplication) +16 QCoreApplication::metaObject +24 QCoreApplication::qt_metacast +32 QCoreApplication::qt_metacall +40 QCoreApplication::~QCoreApplication +48 QCoreApplication::~QCoreApplication +56 QCoreApplication::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCoreApplication::notify +120 QCoreApplication::compressEvent + +Class QCoreApplication + size=16 align=8 + base size=16 base align=8 +QCoreApplication (0x7f96e15a9230) 0 + vptr=((& QCoreApplication::_ZTV16QCoreApplication) + 16u) + QObject (0x7f96e15a92a0) 0 + primary-for QCoreApplication (0x7f96e15a9230) + +Vtable for QSharedMemory +QSharedMemory::_ZTV13QSharedMemory: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSharedMemory) +16 QSharedMemory::metaObject +24 QSharedMemory::qt_metacast +32 QSharedMemory::qt_metacall +40 QSharedMemory::~QSharedMemory +48 QSharedMemory::~QSharedMemory +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSharedMemory + size=16 align=8 + base size=16 base align=8 +QSharedMemory (0x7f96e15d5a80) 0 + vptr=((& QSharedMemory::_ZTV13QSharedMemory) + 16u) + QObject (0x7f96e15d5af0) 0 + primary-for QSharedMemory (0x7f96e15d5a80) + +Class QModelIndex + size=24 align=8 + base size=24 base align=8 +QModelIndex (0x7f96e13f3850) 0 + +Class QPersistentModelIndex + size=8 align=8 + base size=8 base align=8 +QPersistentModelIndex (0x7f96e141b310) 0 + +Vtable for QAbstractItemModel +QAbstractItemModel::_ZTV18QAbstractItemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractItemModel) +16 QAbstractItemModel::metaObject +24 QAbstractItemModel::qt_metacast +32 QAbstractItemModel::qt_metacall +40 QAbstractItemModel::~QAbstractItemModel +48 QAbstractItemModel::~QAbstractItemModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractItemModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractItemModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractItemModel + size=16 align=8 + base size=16 base align=8 +QAbstractItemModel (0x7f96e142a5b0) 0 + vptr=((& QAbstractItemModel::_ZTV18QAbstractItemModel) + 16u) + QObject (0x7f96e142a620) 0 + primary-for QAbstractItemModel (0x7f96e142a5b0) + +Vtable for QAbstractTableModel +QAbstractTableModel::_ZTV19QAbstractTableModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractTableModel) +16 QAbstractTableModel::metaObject +24 QAbstractTableModel::qt_metacast +32 QAbstractTableModel::qt_metacall +40 QAbstractTableModel::~QAbstractTableModel +48 QAbstractTableModel::~QAbstractTableModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractTableModel::index +120 QAbstractTableModel::parent +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractTableModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractTableModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractTableModel + size=16 align=8 + base size=16 base align=8 +QAbstractTableModel (0x7f96e147d930) 0 + vptr=((& QAbstractTableModel::_ZTV19QAbstractTableModel) + 16u) + QAbstractItemModel (0x7f96e147d9a0) 0 + primary-for QAbstractTableModel (0x7f96e147d930) + QObject (0x7f96e147da10) 0 + primary-for QAbstractItemModel (0x7f96e147d9a0) + +Vtable for QAbstractListModel +QAbstractListModel::_ZTV18QAbstractListModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractListModel) +16 QAbstractListModel::metaObject +24 QAbstractListModel::qt_metacast +32 QAbstractListModel::qt_metacall +40 QAbstractListModel::~QAbstractListModel +48 QAbstractListModel::~QAbstractListModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractListModel::index +120 QAbstractListModel::parent +128 __cxa_pure_virtual +136 QAbstractListModel::columnCount +144 QAbstractListModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractListModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractListModel + size=16 align=8 + base size=16 base align=8 +QAbstractListModel (0x7f96e1488ee0) 0 + vptr=((& QAbstractListModel::_ZTV18QAbstractListModel) + 16u) + QAbstractItemModel (0x7f96e1488f50) 0 + primary-for QAbstractListModel (0x7f96e1488ee0) + QObject (0x7f96e1488230) 0 + primary-for QAbstractItemModel (0x7f96e1488f50) + +Vtable for QSignalMapper +QSignalMapper::_ZTV13QSignalMapper: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSignalMapper) +16 QSignalMapper::metaObject +24 QSignalMapper::qt_metacast +32 QSignalMapper::qt_metacall +40 QSignalMapper::~QSignalMapper +48 QSignalMapper::~QSignalMapper +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSignalMapper + size=16 align=8 + base size=16 base align=8 +QSignalMapper (0x7f96e14ca000) 0 + vptr=((& QSignalMapper::_ZTV13QSignalMapper) + 16u) + QObject (0x7f96e14ca070) 0 + primary-for QSignalMapper (0x7f96e14ca000) + +Vtable for QObjectCleanupHandler +QObjectCleanupHandler::_ZTV21QObjectCleanupHandler: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QObjectCleanupHandler) +16 QObjectCleanupHandler::metaObject +24 QObjectCleanupHandler::qt_metacast +32 QObjectCleanupHandler::qt_metacall +40 QObjectCleanupHandler::~QObjectCleanupHandler +48 QObjectCleanupHandler::~QObjectCleanupHandler +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObjectCleanupHandler + size=24 align=8 + base size=24 base align=8 +QObjectCleanupHandler (0x7f96e12e43f0) 0 + vptr=((& QObjectCleanupHandler::_ZTV21QObjectCleanupHandler) + 16u) + QObject (0x7f96e12e4460) 0 + primary-for QObjectCleanupHandler (0x7f96e12e43f0) + +Class QBasicTimer + size=4 align=4 + base size=4 base align=4 +QBasicTimer (0x7f96e12f2540) 0 + +Vtable for QSocketNotifier +QSocketNotifier::_ZTV15QSocketNotifier: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSocketNotifier) +16 QSocketNotifier::metaObject +24 QSocketNotifier::qt_metacast +32 QSocketNotifier::qt_metacall +40 QSocketNotifier::~QSocketNotifier +48 QSocketNotifier::~QSocketNotifier +56 QSocketNotifier::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSocketNotifier + size=32 align=8 + base size=25 base align=8 +QSocketNotifier (0x7f96e12fc930) 0 + vptr=((& QSocketNotifier::_ZTV15QSocketNotifier) + 16u) + QObject (0x7f96e12fc9a0) 0 + primary-for QSocketNotifier (0x7f96e12fc930) + +Vtable for QTimer +QTimer::_ZTV6QTimer: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QTimer) +16 QTimer::metaObject +24 QTimer::qt_metacast +32 QTimer::qt_metacall +40 QTimer::~QTimer +48 QTimer::~QTimer +56 QObject::event +64 QObject::eventFilter +72 QTimer::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTimer + size=32 align=8 + base size=29 base align=8 +QTimer (0x7f96e1318cb0) 0 + vptr=((& QTimer::_ZTV6QTimer) + 16u) + QObject (0x7f96e1318d20) 0 + primary-for QTimer (0x7f96e1318cb0) + +Vtable for QAbstractEventDispatcher +QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QAbstractEventDispatcher) +16 QAbstractEventDispatcher::metaObject +24 QAbstractEventDispatcher::qt_metacast +32 QAbstractEventDispatcher::qt_metacall +40 QAbstractEventDispatcher::~QAbstractEventDispatcher +48 QAbstractEventDispatcher::~QAbstractEventDispatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 QAbstractEventDispatcher::startingUp +208 QAbstractEventDispatcher::closingDown + +Class QAbstractEventDispatcher + size=16 align=8 + base size=16 base align=8 +QAbstractEventDispatcher (0x7f96e133c2a0) 0 + vptr=((& QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher) + 16u) + QObject (0x7f96e133c310) 0 + primary-for QAbstractEventDispatcher (0x7f96e133c2a0) + +Class QMetaMethod + size=16 align=8 + base size=12 base align=8 +QMetaMethod (0x7f96e1356150) 0 + +Class QMetaEnum + size=16 align=8 + base size=12 base align=8 +QMetaEnum (0x7f96e13725b0) 0 + +Class QMetaProperty + size=32 align=8 + base size=32 base align=8 +QMetaProperty (0x7f96e137e310) 0 + +Class QMetaClassInfo + size=16 align=8 + base size=12 base align=8 +QMetaClassInfo (0x7f96e137e9a0) 0 + +Class QSystemSemaphore + size=8 align=8 + base size=8 base align=8 +QSystemSemaphore (0x7f96e13914d0) 0 + +Vtable for QLibrary +QLibrary::_ZTV8QLibrary: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QLibrary) +16 QLibrary::metaObject +24 QLibrary::qt_metacast +32 QLibrary::qt_metacall +40 QLibrary::~QLibrary +48 QLibrary::~QLibrary +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QLibrary + size=32 align=8 + base size=25 base align=8 +QLibrary (0x7f96e1391e00) 0 + vptr=((& QLibrary::_ZTV8QLibrary) + 16u) + QObject (0x7f96e1391e70) 0 + primary-for QLibrary (0x7f96e1391e00) + +Vtable for QPluginLoader +QPluginLoader::_ZTV13QPluginLoader: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QPluginLoader) +16 QPluginLoader::metaObject +24 QPluginLoader::qt_metacast +32 QPluginLoader::qt_metacall +40 QPluginLoader::~QPluginLoader +48 QPluginLoader::~QPluginLoader +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QPluginLoader + size=32 align=8 + base size=25 base align=8 +QPluginLoader (0x7f96e11d88c0) 0 + vptr=((& QPluginLoader::_ZTV13QPluginLoader) + 16u) + QObject (0x7f96e11d8930) 0 + primary-for QPluginLoader (0x7f96e11d88c0) + +Class QUuid + size=16 align=4 + base size=16 base align=4 +QUuid (0x7f96e11f9070) 0 + +Class QSemaphore + size=8 align=8 + base size=8 base align=8 +QSemaphore (0x7f96e121a9a0) 0 + +Class QThreadStorageData + size=4 align=4 + base size=4 base align=4 +QThreadStorageData (0x7f96e121aee0) 0 + +Class QReadWriteLock + size=8 align=8 + base size=8 base align=8 +QReadWriteLock (0x7f96e122b690) 0 + +Class QReadLocker + size=8 align=8 + base size=8 base align=8 +QReadLocker (0x7f96e122bd20) 0 + +Class QWriteLocker + size=8 align=8 + base size=8 base align=8 +QWriteLocker (0x7f96e125b0e0) 0 + +Class QColor + size=16 align=4 + base size=14 base align=4 +QColor (0x7f96e1275e70) 0 + +Class QFont + size=16 align=8 + base size=12 base align=8 +QFont (0x7f96e12cd0e0) 0 + +Class QPolygon + size=8 align=8 + base size=8 base align=8 +QPolygon (0x7f96e1105ee0) 0 + QVector (0x7f96e1105f50) 0 + +Class QPolygonF + size=8 align=8 + base size=8 base align=8 +QPolygonF (0x7f96e116d070) 0 + QVector (0x7f96e116d0e0) 0 + +Class QRegion::QRegionData + size=32 align=8 + base size=32 base align=8 +QRegion::QRegionData (0x7f96e11a65b0) 0 + +Class QRegion + size=8 align=8 + base size=8 base align=8 +QRegion (0x7f96e1184cb0) 0 + +Class QMatrix + size=48 align=8 + base size=48 base align=8 +QMatrix (0x7f96e11b9e00) 0 + +Class QPainterPath::Element + size=24 align=8 + base size=24 base align=8 +QPainterPath::Element (0x7f96e0fef850) 0 + +Class QPainterPath + size=8 align=8 + base size=8 base align=8 +QPainterPath (0x7f96e0fef7e0) 0 + +Class QPainterPathPrivate + size=16 align=8 + base size=16 base align=8 +QPainterPathPrivate (0x7f96e1034bd0) 0 + +Class QPainterPathStroker + size=8 align=8 + base size=8 base align=8 +QPainterPathStroker (0x7f96e103c770) 0 + +Class QTransform + size=88 align=8 + base size=88 base align=8 +QTransform (0x7f96e10a0310) 0 + +Vtable for QPaintDevice +QPaintDevice::_ZTV12QPaintDevice: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QPaintDevice) +16 QPaintDevice::~QPaintDevice +24 QPaintDevice::~QPaintDevice +32 QPaintDevice::devType +40 __cxa_pure_virtual +48 QPaintDevice::metric + +Class QPaintDevice + size=16 align=8 + base size=10 base align=8 +QPaintDevice (0x7f96e0f17620) 0 + vptr=((& QPaintDevice::_ZTV12QPaintDevice) + 16u) + +Class QImageTextKeyLang + size=16 align=8 + base size=16 base align=8 +QImageTextKeyLang (0x7f96e0f3cf50) 0 + +Vtable for QImage +QImage::_ZTV6QImage: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QImage) +16 QImage::~QImage +24 QImage::~QImage +32 QImage::devType +40 QImage::paintEngine +48 QImage::metric + +Class QImage + size=24 align=8 + base size=24 base align=8 +QImage (0x7f96e0f6b7e0) 0 + vptr=((& QImage::_ZTV6QImage) + 16u) + QPaintDevice (0x7f96e0f6b850) 0 + primary-for QImage (0x7f96e0f6b7e0) + +Vtable for QPixmap +QPixmap::_ZTV7QPixmap: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QPixmap) +16 QPixmap::~QPixmap +24 QPixmap::~QPixmap +32 QPixmap::devType +40 QPixmap::paintEngine +48 QPixmap::metric + +Class QPixmap + size=24 align=8 + base size=24 base align=8 +QPixmap (0x7f96e0e0b230) 0 + vptr=((& QPixmap::_ZTV7QPixmap) + 16u) + QPaintDevice (0x7f96e0e0b2a0) 0 + primary-for QPixmap (0x7f96e0e0b230) + +Class QBrush + size=8 align=8 + base size=8 base align=8 +QBrush (0x7f96e0e583f0) 0 + +Class QBrushData + size=112 align=8 + base size=112 base align=8 +QBrushData (0x7f96e0e7b000) 0 + +Class QGradient + size=64 align=8 + base size=64 base align=8 +QGradient (0x7f96e0e8c1c0) 0 + +Class QLinearGradient + size=64 align=8 + base size=64 base align=8 +QLinearGradient (0x7f96e0e9ccb0) 0 + QGradient (0x7f96e0e9cd20) 0 + +Class QRadialGradient + size=64 align=8 + base size=64 base align=8 +QRadialGradient (0x7f96e0ec8150) 0 + QGradient (0x7f96e0ec81c0) 0 + +Class QConicalGradient + size=64 align=8 + base size=64 base align=8 +QConicalGradient (0x7f96e0ec8700) 0 + QGradient (0x7f96e0ec8770) 0 + +Class QPen + size=8 align=8 + base size=8 base align=8 +QPen (0x7f96e0ec8a80) 0 + +Class QTextOption::Tab + size=16 align=8 + base size=14 base align=8 +QTextOption::Tab (0x7f96e0c71230) 0 + +Class QTextOption + size=32 align=8 + base size=32 base align=8 +QTextOption (0x7f96e0c711c0) 0 + +Class QTextLength + size=16 align=8 + base size=16 base align=8 +QTextLength (0x7f96e0ccd620) 0 + +Class QTextFormat + size=16 align=8 + base size=12 base align=8 +QTextFormat (0x7f96e0ce89a0) 0 + +Class QTextCharFormat + size=16 align=8 + base size=12 base align=8 +QTextCharFormat (0x7f96e0b91a10) 0 + QTextFormat (0x7f96e0b91a80) 0 + +Class QTextBlockFormat + size=16 align=8 + base size=12 base align=8 +QTextBlockFormat (0x7f96e0bfd690) 0 + QTextFormat (0x7f96e0bfd700) 0 + +Class QTextListFormat + size=16 align=8 + base size=12 base align=8 +QTextListFormat (0x7f96e0c1ecb0) 0 + QTextFormat (0x7f96e0c1ed20) 0 + +Class QTextImageFormat + size=16 align=8 + base size=12 base align=8 +QTextImageFormat (0x7f96e0c2f1c0) 0 + QTextCharFormat (0x7f96e0c2f230) 0 + QTextFormat (0x7f96e0c2f2a0) 0 + +Class QTextFrameFormat + size=16 align=8 + base size=12 base align=8 +QTextFrameFormat (0x7f96e0c3b8c0) 0 + QTextFormat (0x7f96e0c3b930) 0 + +Class QTextTableFormat + size=16 align=8 + base size=12 base align=8 +QTextTableFormat (0x7f96e0a717e0) 0 + QTextFrameFormat (0x7f96e0a71850) 0 + QTextFormat (0x7f96e0a718c0) 0 + +Class QTextTableCellFormat + size=16 align=8 + base size=12 base align=8 +QTextTableCellFormat (0x7f96e0a8b690) 0 + QTextCharFormat (0x7f96e0a8b700) 0 + QTextFormat (0x7f96e0a8b770) 0 + +Vtable for QTextObject +QTextObject::_ZTV11QTextObject: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTextObject) +16 QTextObject::metaObject +24 QTextObject::qt_metacast +32 QTextObject::qt_metacall +40 QTextObject::~QTextObject +48 QTextObject::~QTextObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTextObject + size=16 align=8 + base size=16 base align=8 +QTextObject (0x7f96e0aa1b60) 0 + vptr=((& QTextObject::_ZTV11QTextObject) + 16u) + QObject (0x7f96e0aa1bd0) 0 + primary-for QTextObject (0x7f96e0aa1b60) + +Vtable for QTextBlockGroup +QTextBlockGroup::_ZTV15QTextBlockGroup: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QTextBlockGroup) +16 QTextBlockGroup::metaObject +24 QTextBlockGroup::qt_metacast +32 QTextBlockGroup::qt_metacall +40 QTextBlockGroup::~QTextBlockGroup +48 QTextBlockGroup::~QTextBlockGroup +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTextBlockGroup::blockInserted +120 QTextBlockGroup::blockRemoved +128 QTextBlockGroup::blockFormatChanged + +Class QTextBlockGroup + size=16 align=8 + base size=16 base align=8 +QTextBlockGroup (0x7f96e0aba3f0) 0 + vptr=((& QTextBlockGroup::_ZTV15QTextBlockGroup) + 16u) + QTextObject (0x7f96e0aba460) 0 + primary-for QTextBlockGroup (0x7f96e0aba3f0) + QObject (0x7f96e0aba4d0) 0 + primary-for QTextObject (0x7f96e0aba460) + +Vtable for QTextFrameLayoutData +QTextFrameLayoutData::_ZTV20QTextFrameLayoutData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QTextFrameLayoutData) +16 QTextFrameLayoutData::~QTextFrameLayoutData +24 QTextFrameLayoutData::~QTextFrameLayoutData + +Class QTextFrameLayoutData + size=8 align=8 + base size=8 base align=8 +QTextFrameLayoutData (0x7f96e0acbcb0) 0 nearly-empty + vptr=((& QTextFrameLayoutData::_ZTV20QTextFrameLayoutData) + 16u) + +Class QTextFrame::iterator + size=32 align=8 + base size=28 base align=8 +QTextFrame::iterator (0x7f96e0ad6700) 0 + +Vtable for QTextFrame +QTextFrame::_ZTV10QTextFrame: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextFrame) +16 QTextFrame::metaObject +24 QTextFrame::qt_metacast +32 QTextFrame::qt_metacall +40 QTextFrame::~QTextFrame +48 QTextFrame::~QTextFrame +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTextFrame + size=16 align=8 + base size=16 base align=8 +QTextFrame (0x7f96e0acbe00) 0 + vptr=((& QTextFrame::_ZTV10QTextFrame) + 16u) + QTextObject (0x7f96e0acbe70) 0 + primary-for QTextFrame (0x7f96e0acbe00) + QObject (0x7f96e0acbee0) 0 + primary-for QTextObject (0x7f96e0acbe70) + +Vtable for QTextBlockUserData +QTextBlockUserData::_ZTV18QTextBlockUserData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QTextBlockUserData) +16 QTextBlockUserData::~QTextBlockUserData +24 QTextBlockUserData::~QTextBlockUserData + +Class QTextBlockUserData + size=8 align=8 + base size=8 base align=8 +QTextBlockUserData (0x7f96e0b08850) 0 nearly-empty + vptr=((& QTextBlockUserData::_ZTV18QTextBlockUserData) + 16u) + +Class QTextBlock::iterator + size=24 align=8 + base size=20 base align=8 +QTextBlock::iterator (0x7f96e0b141c0) 0 + +Class QTextBlock + size=16 align=8 + base size=12 base align=8 +QTextBlock (0x7f96e0b089a0) 0 + +Class QTextFragment + size=16 align=8 + base size=16 base align=8 +QTextFragment (0x7f96e094c310) 0 + +Class QFontMetrics + size=8 align=8 + base size=8 base align=8 +QFontMetrics (0x7f96e09684d0) 0 + +Class QFontMetricsF + size=8 align=8 + base size=8 base align=8 +QFontMetricsF (0x7f96e0980930) 0 + +Class QFontDatabase + size=8 align=8 + base size=8 base align=8 +QFontDatabase (0x7f96e098c850) 0 + +Vtable for QAbstractUndoItem +QAbstractUndoItem::_ZTV17QAbstractUndoItem: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAbstractUndoItem) +16 __cxa_pure_virtual +24 __cxa_pure_virtual +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QAbstractUndoItem + size=8 align=8 + base size=8 base align=8 +QAbstractUndoItem (0x7f96e09a2850) 0 nearly-empty + vptr=((& QAbstractUndoItem::_ZTV17QAbstractUndoItem) + 16u) + +Vtable for QTextDocument +QTextDocument::_ZTV13QTextDocument: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QTextDocument) +16 QTextDocument::metaObject +24 QTextDocument::qt_metacast +32 QTextDocument::qt_metacall +40 QTextDocument::~QTextDocument +48 QTextDocument::~QTextDocument +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTextDocument::clear +120 QTextDocument::createObject +128 QTextDocument::loadResource + +Class QTextDocument + size=16 align=8 + base size=16 base align=8 +QTextDocument (0x7f96e09b72a0) 0 + vptr=((& QTextDocument::_ZTV13QTextDocument) + 16u) + QObject (0x7f96e09b7310) 0 + primary-for QTextDocument (0x7f96e09b72a0) + +Class QTextTableCell + size=16 align=8 + base size=12 base align=8 +QTextTableCell (0x7f96e0a172a0) 0 + +Vtable for QTextTable +QTextTable::_ZTV10QTextTable: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextTable) +16 QTextTable::metaObject +24 QTextTable::qt_metacast +32 QTextTable::qt_metacall +40 QTextTable::~QTextTable +48 QTextTable::~QTextTable +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTextTable + size=16 align=8 + base size=16 base align=8 +QTextTable (0x7f96e0a303f0) 0 + vptr=((& QTextTable::_ZTV10QTextTable) + 16u) + QTextFrame (0x7f96e0a30460) 0 + primary-for QTextTable (0x7f96e0a303f0) + QTextObject (0x7f96e0a304d0) 0 + primary-for QTextFrame (0x7f96e0a30460) + QObject (0x7f96e0a30540) 0 + primary-for QTextObject (0x7f96e0a304d0) + +Class QTextDocumentWriter + size=8 align=8 + base size=8 base align=8 +QTextDocumentWriter (0x7f96e084abd0) 0 + +Class QKeySequence + size=8 align=8 + base size=8 base align=8 +QKeySequence (0x7f96e08552a0) 0 + +Vtable for QMimeSource +QMimeSource::_ZTV11QMimeSource: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMimeSource) +16 QMimeSource::~QMimeSource +24 QMimeSource::~QMimeSource +32 __cxa_pure_virtual +40 QMimeSource::provides +48 __cxa_pure_virtual + +Class QMimeSource + size=8 align=8 + base size=8 base align=8 +QMimeSource (0x7f96e0873e70) 0 nearly-empty + vptr=((& QMimeSource::_ZTV11QMimeSource) + 16u) + +Vtable for QDrag +QDrag::_ZTV5QDrag: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QDrag) +16 QDrag::metaObject +24 QDrag::qt_metacast +32 QDrag::qt_metacall +40 QDrag::~QDrag +48 QDrag::~QDrag +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QDrag + size=16 align=8 + base size=16 base align=8 +QDrag (0x7f96e0873f50) 0 + vptr=((& QDrag::_ZTV5QDrag) + 16u) + QObject (0x7f96e089f000) 0 + primary-for QDrag (0x7f96e0873f50) + +Vtable for QInputEvent +QInputEvent::_ZTV11QInputEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QInputEvent) +16 QInputEvent::~QInputEvent +24 QInputEvent::~QInputEvent + +Class QInputEvent + size=24 align=8 + base size=24 base align=8 +QInputEvent (0x7f96e08b3770) 0 + vptr=((& QInputEvent::_ZTV11QInputEvent) + 16u) + QEvent (0x7f96e08b37e0) 0 + primary-for QInputEvent (0x7f96e08b3770) + +Vtable for QMouseEvent +QMouseEvent::_ZTV11QMouseEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMouseEvent) +16 QMouseEvent::~QMouseEvent +24 QMouseEvent::~QMouseEvent + +Class QMouseEvent + size=48 align=8 + base size=48 base align=8 +QMouseEvent (0x7f96e08b3d20) 0 + vptr=((& QMouseEvent::_ZTV11QMouseEvent) + 16u) + QInputEvent (0x7f96e08b3d90) 0 + primary-for QMouseEvent (0x7f96e08b3d20) + QEvent (0x7f96e08b3e00) 0 + primary-for QInputEvent (0x7f96e08b3d90) + +Vtable for QHoverEvent +QHoverEvent::_ZTV11QHoverEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QHoverEvent) +16 QHoverEvent::~QHoverEvent +24 QHoverEvent::~QHoverEvent + +Class QHoverEvent + size=40 align=8 + base size=36 base align=8 +QHoverEvent (0x7f96e08d2b60) 0 + vptr=((& QHoverEvent::_ZTV11QHoverEvent) + 16u) + QEvent (0x7f96e08d2bd0) 0 + primary-for QHoverEvent (0x7f96e08d2b60) + +Vtable for QWheelEvent +QWheelEvent::_ZTV11QWheelEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QWheelEvent) +16 QWheelEvent::~QWheelEvent +24 QWheelEvent::~QWheelEvent + +Class QWheelEvent + size=56 align=8 + base size=52 base align=8 +QWheelEvent (0x7f96e08ea230) 0 + vptr=((& QWheelEvent::_ZTV11QWheelEvent) + 16u) + QInputEvent (0x7f96e08ea2a0) 0 + primary-for QWheelEvent (0x7f96e08ea230) + QEvent (0x7f96e08ea310) 0 + primary-for QInputEvent (0x7f96e08ea2a0) + +Vtable for QTabletEvent +QTabletEvent::_ZTV12QTabletEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTabletEvent) +16 QTabletEvent::~QTabletEvent +24 QTabletEvent::~QTabletEvent + +Class QTabletEvent + size=120 align=8 + base size=120 base align=8 +QTabletEvent (0x7f96e0900070) 0 + vptr=((& QTabletEvent::_ZTV12QTabletEvent) + 16u) + QInputEvent (0x7f96e09000e0) 0 + primary-for QTabletEvent (0x7f96e0900070) + QEvent (0x7f96e0900150) 0 + primary-for QInputEvent (0x7f96e09000e0) + +Vtable for QKeyEvent +QKeyEvent::_ZTV9QKeyEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QKeyEvent) +16 QKeyEvent::~QKeyEvent +24 QKeyEvent::~QKeyEvent + +Class QKeyEvent + size=40 align=8 + base size=39 base align=8 +QKeyEvent (0x7f96e091c380) 0 + vptr=((& QKeyEvent::_ZTV9QKeyEvent) + 16u) + QInputEvent (0x7f96e091c3f0) 0 + primary-for QKeyEvent (0x7f96e091c380) + QEvent (0x7f96e091c460) 0 + primary-for QInputEvent (0x7f96e091c3f0) + +Vtable for QFocusEvent +QFocusEvent::_ZTV11QFocusEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFocusEvent) +16 QFocusEvent::~QFocusEvent +24 QFocusEvent::~QFocusEvent + +Class QFocusEvent + size=24 align=8 + base size=24 base align=8 +QFocusEvent (0x7f96e0940cb0) 0 + vptr=((& QFocusEvent::_ZTV11QFocusEvent) + 16u) + QEvent (0x7f96e0940d20) 0 + primary-for QFocusEvent (0x7f96e0940cb0) + +Vtable for QPaintEvent +QPaintEvent::_ZTV11QPaintEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QPaintEvent) +16 QPaintEvent::~QPaintEvent +24 QPaintEvent::~QPaintEvent + +Class QPaintEvent + size=56 align=8 + base size=49 base align=8 +QPaintEvent (0x7f96e074c770) 0 + vptr=((& QPaintEvent::_ZTV11QPaintEvent) + 16u) + QEvent (0x7f96e074c7e0) 0 + primary-for QPaintEvent (0x7f96e074c770) + +Vtable for QUpdateLaterEvent +QUpdateLaterEvent::_ZTV17QUpdateLaterEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QUpdateLaterEvent) +16 QUpdateLaterEvent::~QUpdateLaterEvent +24 QUpdateLaterEvent::~QUpdateLaterEvent + +Class QUpdateLaterEvent + size=32 align=8 + base size=32 base align=8 +QUpdateLaterEvent (0x7f96e075a380) 0 + vptr=((& QUpdateLaterEvent::_ZTV17QUpdateLaterEvent) + 16u) + QEvent (0x7f96e075a3f0) 0 + primary-for QUpdateLaterEvent (0x7f96e075a380) + +Vtable for QMoveEvent +QMoveEvent::_ZTV10QMoveEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QMoveEvent) +16 QMoveEvent::~QMoveEvent +24 QMoveEvent::~QMoveEvent + +Class QMoveEvent + size=40 align=8 + base size=36 base align=8 +QMoveEvent (0x7f96e075a7e0) 0 + vptr=((& QMoveEvent::_ZTV10QMoveEvent) + 16u) + QEvent (0x7f96e075a850) 0 + primary-for QMoveEvent (0x7f96e075a7e0) + +Vtable for QResizeEvent +QResizeEvent::_ZTV12QResizeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QResizeEvent) +16 QResizeEvent::~QResizeEvent +24 QResizeEvent::~QResizeEvent + +Class QResizeEvent + size=40 align=8 + base size=36 base align=8 +QResizeEvent (0x7f96e075ae70) 0 + vptr=((& QResizeEvent::_ZTV12QResizeEvent) + 16u) + QEvent (0x7f96e075aee0) 0 + primary-for QResizeEvent (0x7f96e075ae70) + +Vtable for QCloseEvent +QCloseEvent::_ZTV11QCloseEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QCloseEvent) +16 QCloseEvent::~QCloseEvent +24 QCloseEvent::~QCloseEvent + +Class QCloseEvent + size=24 align=8 + base size=20 base align=8 +QCloseEvent (0x7f96e076b3f0) 0 + vptr=((& QCloseEvent::_ZTV11QCloseEvent) + 16u) + QEvent (0x7f96e076b460) 0 + primary-for QCloseEvent (0x7f96e076b3f0) + +Vtable for QIconDragEvent +QIconDragEvent::_ZTV14QIconDragEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QIconDragEvent) +16 QIconDragEvent::~QIconDragEvent +24 QIconDragEvent::~QIconDragEvent + +Class QIconDragEvent + size=24 align=8 + base size=20 base align=8 +QIconDragEvent (0x7f96e076b620) 0 + vptr=((& QIconDragEvent::_ZTV14QIconDragEvent) + 16u) + QEvent (0x7f96e076b690) 0 + primary-for QIconDragEvent (0x7f96e076b620) + +Vtable for QShowEvent +QShowEvent::_ZTV10QShowEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QShowEvent) +16 QShowEvent::~QShowEvent +24 QShowEvent::~QShowEvent + +Class QShowEvent + size=24 align=8 + base size=20 base align=8 +QShowEvent (0x7f96e076b850) 0 + vptr=((& QShowEvent::_ZTV10QShowEvent) + 16u) + QEvent (0x7f96e076b8c0) 0 + primary-for QShowEvent (0x7f96e076b850) + +Vtable for QHideEvent +QHideEvent::_ZTV10QHideEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QHideEvent) +16 QHideEvent::~QHideEvent +24 QHideEvent::~QHideEvent + +Class QHideEvent + size=24 align=8 + base size=20 base align=8 +QHideEvent (0x7f96e076ba80) 0 + vptr=((& QHideEvent::_ZTV10QHideEvent) + 16u) + QEvent (0x7f96e076baf0) 0 + primary-for QHideEvent (0x7f96e076ba80) + +Vtable for QContextMenuEvent +QContextMenuEvent::_ZTV17QContextMenuEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QContextMenuEvent) +16 QContextMenuEvent::~QContextMenuEvent +24 QContextMenuEvent::~QContextMenuEvent + +Class QContextMenuEvent + size=48 align=8 + base size=41 base align=8 +QContextMenuEvent (0x7f96e076bcb0) 0 + vptr=((& QContextMenuEvent::_ZTV17QContextMenuEvent) + 16u) + QInputEvent (0x7f96e076bd20) 0 + primary-for QContextMenuEvent (0x7f96e076bcb0) + QEvent (0x7f96e076bd90) 0 + primary-for QInputEvent (0x7f96e076bd20) + +Class QInputMethodEvent::Attribute + size=32 align=8 + base size=32 base align=8 +QInputMethodEvent::Attribute (0x7f96e0786850) 0 + +Vtable for QInputMethodEvent +QInputMethodEvent::_ZTV17QInputMethodEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QInputMethodEvent) +16 QInputMethodEvent::~QInputMethodEvent +24 QInputMethodEvent::~QInputMethodEvent + +Class QInputMethodEvent + size=56 align=8 + base size=56 base align=8 +QInputMethodEvent (0x7f96e0786770) 0 + vptr=((& QInputMethodEvent::_ZTV17QInputMethodEvent) + 16u) + QEvent (0x7f96e07867e0) 0 + primary-for QInputMethodEvent (0x7f96e0786770) + +Vtable for QDropEvent +QDropEvent::_ZTV10QDropEvent: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QDropEvent) +16 QDropEvent::~QDropEvent +24 QDropEvent::~QDropEvent +32 QDropEvent::format +40 QDropEvent::encodedData +48 QDropEvent::provides +56 (int (*)(...))-0x00000000000000018 +64 (int (*)(...))(& _ZTI10QDropEvent) +72 QDropEvent::_ZThn24_N10QDropEventD1Ev +80 QDropEvent::_ZThn24_N10QDropEventD0Ev +88 QDropEvent::_ZThn24_NK10QDropEvent6formatEi +96 QDropEvent::_ZThn24_NK10QDropEvent8providesEPKc +104 QDropEvent::_ZThn24_NK10QDropEvent11encodedDataEPKc + +Class QDropEvent + size=80 align=8 + base size=80 base align=8 +QDropEvent (0x7f96e07be200) 0 + vptr=((& QDropEvent::_ZTV10QDropEvent) + 16u) + QEvent (0x7f96e07bbf50) 0 + primary-for QDropEvent (0x7f96e07be200) + QMimeSource (0x7f96e07bf000) 24 nearly-empty + vptr=((& QDropEvent::_ZTV10QDropEvent) + 72u) + +Vtable for QDragMoveEvent +QDragMoveEvent::_ZTV14QDragMoveEvent: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QDragMoveEvent) +16 QDragMoveEvent::~QDragMoveEvent +24 QDragMoveEvent::~QDragMoveEvent +32 QDropEvent::format +40 QDropEvent::encodedData +48 QDropEvent::provides +56 (int (*)(...))-0x00000000000000018 +64 (int (*)(...))(& _ZTI14QDragMoveEvent) +72 QDragMoveEvent::_ZThn24_N14QDragMoveEventD1Ev +80 QDragMoveEvent::_ZThn24_N14QDragMoveEventD0Ev +88 QDropEvent::_ZThn24_NK10QDropEvent6formatEi +96 QDropEvent::_ZThn24_NK10QDropEvent8providesEPKc +104 QDropEvent::_ZThn24_NK10QDropEvent11encodedDataEPKc + +Class QDragMoveEvent + size=96 align=8 + base size=96 base align=8 +QDragMoveEvent (0x7f96e07d8cb0) 0 + vptr=((& QDragMoveEvent::_ZTV14QDragMoveEvent) + 16u) + QDropEvent (0x7f96e07d7900) 0 + primary-for QDragMoveEvent (0x7f96e07d8cb0) + QEvent (0x7f96e07d8d20) 0 + primary-for QDropEvent (0x7f96e07d7900) + QMimeSource (0x7f96e07d8d90) 24 nearly-empty + vptr=((& QDragMoveEvent::_ZTV14QDragMoveEvent) + 72u) + +Vtable for QDragEnterEvent +QDragEnterEvent::_ZTV15QDragEnterEvent: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QDragEnterEvent) +16 QDragEnterEvent::~QDragEnterEvent +24 QDragEnterEvent::~QDragEnterEvent +32 QDropEvent::format +40 QDropEvent::encodedData +48 QDropEvent::provides +56 (int (*)(...))-0x00000000000000018 +64 (int (*)(...))(& _ZTI15QDragEnterEvent) +72 QDragEnterEvent::_ZThn24_N15QDragEnterEventD1Ev +80 QDragEnterEvent::_ZThn24_N15QDragEnterEventD0Ev +88 QDropEvent::_ZThn24_NK10QDropEvent6formatEi +96 QDropEvent::_ZThn24_NK10QDropEvent8providesEPKc +104 QDropEvent::_ZThn24_NK10QDropEvent11encodedDataEPKc + +Class QDragEnterEvent + size=96 align=8 + base size=96 base align=8 +QDragEnterEvent (0x7f96e07ea460) 0 + vptr=((& QDragEnterEvent::_ZTV15QDragEnterEvent) + 16u) + QDragMoveEvent (0x7f96e07ea4d0) 0 + primary-for QDragEnterEvent (0x7f96e07ea460) + QDropEvent (0x7f96e07e8280) 0 + primary-for QDragMoveEvent (0x7f96e07ea4d0) + QEvent (0x7f96e07ea540) 0 + primary-for QDropEvent (0x7f96e07e8280) + QMimeSource (0x7f96e07ea5b0) 24 nearly-empty + vptr=((& QDragEnterEvent::_ZTV15QDragEnterEvent) + 72u) + +Vtable for QDragResponseEvent +QDragResponseEvent::_ZTV18QDragResponseEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QDragResponseEvent) +16 QDragResponseEvent::~QDragResponseEvent +24 QDragResponseEvent::~QDragResponseEvent + +Class QDragResponseEvent + size=24 align=8 + base size=21 base align=8 +QDragResponseEvent (0x7f96e07ea770) 0 + vptr=((& QDragResponseEvent::_ZTV18QDragResponseEvent) + 16u) + QEvent (0x7f96e07ea7e0) 0 + primary-for QDragResponseEvent (0x7f96e07ea770) + +Vtable for QDragLeaveEvent +QDragLeaveEvent::_ZTV15QDragLeaveEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QDragLeaveEvent) +16 QDragLeaveEvent::~QDragLeaveEvent +24 QDragLeaveEvent::~QDragLeaveEvent + +Class QDragLeaveEvent + size=24 align=8 + base size=20 base align=8 +QDragLeaveEvent (0x7f96e07eabd0) 0 + vptr=((& QDragLeaveEvent::_ZTV15QDragLeaveEvent) + 16u) + QEvent (0x7f96e07eac40) 0 + primary-for QDragLeaveEvent (0x7f96e07eabd0) + +Vtable for QHelpEvent +QHelpEvent::_ZTV10QHelpEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QHelpEvent) +16 QHelpEvent::~QHelpEvent +24 QHelpEvent::~QHelpEvent + +Class QHelpEvent + size=40 align=8 + base size=36 base align=8 +QHelpEvent (0x7f96e07eae00) 0 + vptr=((& QHelpEvent::_ZTV10QHelpEvent) + 16u) + QEvent (0x7f96e07eae70) 0 + primary-for QHelpEvent (0x7f96e07eae00) + +Vtable for QStatusTipEvent +QStatusTipEvent::_ZTV15QStatusTipEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QStatusTipEvent) +16 QStatusTipEvent::~QStatusTipEvent +24 QStatusTipEvent::~QStatusTipEvent + +Class QStatusTipEvent + size=32 align=8 + base size=32 base align=8 +QStatusTipEvent (0x7f96e07fbe70) 0 + vptr=((& QStatusTipEvent::_ZTV15QStatusTipEvent) + 16u) + QEvent (0x7f96e07fbee0) 0 + primary-for QStatusTipEvent (0x7f96e07fbe70) + +Vtable for QWhatsThisClickedEvent +QWhatsThisClickedEvent::_ZTV22QWhatsThisClickedEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QWhatsThisClickedEvent) +16 QWhatsThisClickedEvent::~QWhatsThisClickedEvent +24 QWhatsThisClickedEvent::~QWhatsThisClickedEvent + +Class QWhatsThisClickedEvent + size=32 align=8 + base size=32 base align=8 +QWhatsThisClickedEvent (0x7f96e0800380) 0 + vptr=((& QWhatsThisClickedEvent::_ZTV22QWhatsThisClickedEvent) + 16u) + QEvent (0x7f96e08003f0) 0 + primary-for QWhatsThisClickedEvent (0x7f96e0800380) + +Vtable for QActionEvent +QActionEvent::_ZTV12QActionEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QActionEvent) +16 QActionEvent::~QActionEvent +24 QActionEvent::~QActionEvent + +Class QActionEvent + size=40 align=8 + base size=40 base align=8 +QActionEvent (0x7f96e0800850) 0 + vptr=((& QActionEvent::_ZTV12QActionEvent) + 16u) + QEvent (0x7f96e08008c0) 0 + primary-for QActionEvent (0x7f96e0800850) + +Vtable for QFileOpenEvent +QFileOpenEvent::_ZTV14QFileOpenEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QFileOpenEvent) +16 QFileOpenEvent::~QFileOpenEvent +24 QFileOpenEvent::~QFileOpenEvent + +Class QFileOpenEvent + size=32 align=8 + base size=32 base align=8 +QFileOpenEvent (0x7f96e0800ee0) 0 + vptr=((& QFileOpenEvent::_ZTV14QFileOpenEvent) + 16u) + QEvent (0x7f96e0800f50) 0 + primary-for QFileOpenEvent (0x7f96e0800ee0) + +Vtable for QToolBarChangeEvent +QToolBarChangeEvent::_ZTV19QToolBarChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QToolBarChangeEvent) +16 QToolBarChangeEvent::~QToolBarChangeEvent +24 QToolBarChangeEvent::~QToolBarChangeEvent + +Class QToolBarChangeEvent + size=24 align=8 + base size=21 base align=8 +QToolBarChangeEvent (0x7f96e0814230) 0 + vptr=((& QToolBarChangeEvent::_ZTV19QToolBarChangeEvent) + 16u) + QEvent (0x7f96e08142a0) 0 + primary-for QToolBarChangeEvent (0x7f96e0814230) + +Vtable for QShortcutEvent +QShortcutEvent::_ZTV14QShortcutEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QShortcutEvent) +16 QShortcutEvent::~QShortcutEvent +24 QShortcutEvent::~QShortcutEvent + +Class QShortcutEvent + size=40 align=8 + base size=40 base align=8 +QShortcutEvent (0x7f96e0814770) 0 + vptr=((& QShortcutEvent::_ZTV14QShortcutEvent) + 16u) + QEvent (0x7f96e08147e0) 0 + primary-for QShortcutEvent (0x7f96e0814770) + +Vtable for QClipboardEvent +QClipboardEvent::_ZTV15QClipboardEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QClipboardEvent) +16 QClipboardEvent::~QClipboardEvent +24 QClipboardEvent::~QClipboardEvent + +Class QClipboardEvent + size=24 align=8 + base size=20 base align=8 +QClipboardEvent (0x7f96e0821620) 0 + vptr=((& QClipboardEvent::_ZTV15QClipboardEvent) + 16u) + QEvent (0x7f96e0821690) 0 + primary-for QClipboardEvent (0x7f96e0821620) + +Vtable for QWindowStateChangeEvent +QWindowStateChangeEvent::_ZTV23QWindowStateChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QWindowStateChangeEvent) +16 QWindowStateChangeEvent::~QWindowStateChangeEvent +24 QWindowStateChangeEvent::~QWindowStateChangeEvent + +Class QWindowStateChangeEvent + size=24 align=8 + base size=24 base align=8 +QWindowStateChangeEvent (0x7f96e0821a80) 0 + vptr=((& QWindowStateChangeEvent::_ZTV23QWindowStateChangeEvent) + 16u) + QEvent (0x7f96e0821af0) 0 + primary-for QWindowStateChangeEvent (0x7f96e0821a80) + +Vtable for QMenubarUpdatedEvent +QMenubarUpdatedEvent::_ZTV20QMenubarUpdatedEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QMenubarUpdatedEvent) +16 QMenubarUpdatedEvent::~QMenubarUpdatedEvent +24 QMenubarUpdatedEvent::~QMenubarUpdatedEvent + +Class QMenubarUpdatedEvent + size=32 align=8 + base size=32 base align=8 +QMenubarUpdatedEvent (0x7f96e08217e0) 0 + vptr=((& QMenubarUpdatedEvent::_ZTV20QMenubarUpdatedEvent) + 16u) + QEvent (0x7f96e0821cb0) 0 + primary-for QMenubarUpdatedEvent (0x7f96e08217e0) + +Class QTextInlineObject + size=16 align=8 + base size=16 base align=8 +QTextInlineObject (0x7f96e082ea10) 0 + +Class QTextLayout::FormatRange + size=24 align=8 + base size=24 base align=8 +QTextLayout::FormatRange (0x7f96e083ecb0) 0 + +Class QTextLayout + size=8 align=8 + base size=8 base align=8 +QTextLayout (0x7f96e083ea10) 0 + +Class QTextLine + size=16 align=8 + base size=16 base align=8 +QTextLine (0x7f96e0658a80) 0 + +Vtable for QTextList +QTextList::_ZTV9QTextList: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTextList) +16 QTextList::metaObject +24 QTextList::qt_metacast +32 QTextList::qt_metacall +40 QTextList::~QTextList +48 QTextList::~QTextList +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTextBlockGroup::blockInserted +120 QTextBlockGroup::blockRemoved +128 QTextBlockGroup::blockFormatChanged + +Class QTextList + size=16 align=8 + base size=16 base align=8 +QTextList (0x7f96e068b310) 0 + vptr=((& QTextList::_ZTV9QTextList) + 16u) + QTextBlockGroup (0x7f96e068b380) 0 + primary-for QTextList (0x7f96e068b310) + QTextObject (0x7f96e068b3f0) 0 + primary-for QTextBlockGroup (0x7f96e068b380) + QObject (0x7f96e068b460) 0 + primary-for QTextObject (0x7f96e068b3f0) + +Class QFontInfo + size=8 align=8 + base size=8 base align=8 +QFontInfo (0x7f96e06b11c0) 0 + +Class QTextDocumentFragment + size=8 align=8 + base size=8 base align=8 +QTextDocumentFragment (0x7f96e06b1cb0) 0 + +Class QTextCursor + size=8 align=8 + base size=8 base align=8 +QTextCursor (0x7f96e06bb700) 0 + +Class QPalette + size=16 align=8 + base size=12 base align=8 +QPalette (0x7f96e06cebd0) 0 + +Class QColorGroup + size=16 align=8 + base size=12 base align=8 +QColorGroup (0x7f96e07354d0) 0 + QPalette (0x7f96e0735540) 0 + +Class QAbstractTextDocumentLayout::Selection + size=24 align=8 + base size=24 base align=8 +QAbstractTextDocumentLayout::Selection (0x7f96e056ca10) 0 + +Class QAbstractTextDocumentLayout::PaintContext + size=64 align=8 + base size=64 base align=8 +QAbstractTextDocumentLayout::PaintContext (0x7f96e056ca80) 0 + +Vtable for QAbstractTextDocumentLayout +QAbstractTextDocumentLayout::_ZTV27QAbstractTextDocumentLayout: 24u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QAbstractTextDocumentLayout) +16 QAbstractTextDocumentLayout::metaObject +24 QAbstractTextDocumentLayout::qt_metacast +32 QAbstractTextDocumentLayout::qt_metacall +40 QAbstractTextDocumentLayout::~QAbstractTextDocumentLayout +48 QAbstractTextDocumentLayout::~QAbstractTextDocumentLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 QAbstractTextDocumentLayout::resizeInlineObject +176 QAbstractTextDocumentLayout::positionInlineObject +184 QAbstractTextDocumentLayout::drawInlineObject + +Class QAbstractTextDocumentLayout + size=16 align=8 + base size=16 base align=8 +QAbstractTextDocumentLayout (0x7f96e056c7e0) 0 + vptr=((& QAbstractTextDocumentLayout::_ZTV27QAbstractTextDocumentLayout) + 16u) + QObject (0x7f96e056c850) 0 + primary-for QAbstractTextDocumentLayout (0x7f96e056c7e0) + +Vtable for QTextObjectInterface +QTextObjectInterface::_ZTV20QTextObjectInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QTextObjectInterface) +16 QTextObjectInterface::~QTextObjectInterface +24 QTextObjectInterface::~QTextObjectInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QTextObjectInterface + size=8 align=8 + base size=8 base align=8 +QTextObjectInterface (0x7f96e05b4150) 0 nearly-empty + vptr=((& QTextObjectInterface::_ZTV20QTextObjectInterface) + 16u) + +Vtable for QSyntaxHighlighter +QSyntaxHighlighter::_ZTV18QSyntaxHighlighter: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QSyntaxHighlighter) +16 QSyntaxHighlighter::metaObject +24 QSyntaxHighlighter::qt_metacast +32 QSyntaxHighlighter::qt_metacall +40 QSyntaxHighlighter::~QSyntaxHighlighter +48 QSyntaxHighlighter::~QSyntaxHighlighter +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual + +Class QSyntaxHighlighter + size=16 align=8 + base size=16 base align=8 +QSyntaxHighlighter (0x7f96e05c12a0) 0 + vptr=((& QSyntaxHighlighter::_ZTV18QSyntaxHighlighter) + 16u) + QObject (0x7f96e05c1310) 0 + primary-for QSyntaxHighlighter (0x7f96e05c12a0) + +Vtable for QUndoGroup +QUndoGroup::_ZTV10QUndoGroup: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QUndoGroup) +16 QUndoGroup::metaObject +24 QUndoGroup::qt_metacast +32 QUndoGroup::qt_metacall +40 QUndoGroup::~QUndoGroup +48 QUndoGroup::~QUndoGroup +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QUndoGroup + size=16 align=8 + base size=16 base align=8 +QUndoGroup (0x7f96e05d6c40) 0 + vptr=((& QUndoGroup::_ZTV10QUndoGroup) + 16u) + QObject (0x7f96e05d6cb0) 0 + primary-for QUndoGroup (0x7f96e05d6c40) + +Class QDesktopServices + size=1 align=1 + base size=0 base align=1 +QDesktopServices (0x7f96e05f47e0) 0 empty + +Class QSizePolicy + size=4 align=4 + base size=4 base align=4 +QSizePolicy (0x7f96e05f4930) 0 + +Class QCursor + size=8 align=8 + base size=8 base align=8 +QCursor (0x7f96e04b0690) 0 + +Class QWidgetData + size=88 align=8 + base size=88 base align=8 +QWidgetData (0x7f96e04b0e70) 0 + +Vtable for QWidget +QWidget::_ZTV7QWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QWidget) +16 QWidget::metaObject +24 QWidget::qt_metacast +32 QWidget::qt_metacall +40 QWidget::~QWidget +48 QWidget::~QWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI7QWidget) +464 QWidget::_ZThn16_N7QWidgetD1Ev +472 QWidget::_ZThn16_N7QWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWidget + size=40 align=8 + base size=40 base align=8 +QWidget (0x7f96e04aba00) 0 + vptr=((& QWidget::_ZTV7QWidget) + 16u) + QObject (0x7f96e04b0ee0) 0 + primary-for QWidget (0x7f96e04aba00) + QPaintDevice (0x7f96e04b0f50) 16 + vptr=((& QWidget::_ZTV7QWidget) + 464u) + +Vtable for QFrame +QFrame::_ZTV6QFrame: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QFrame) +16 QFrame::metaObject +24 QFrame::qt_metacast +32 QFrame::qt_metacall +40 QFrame::~QFrame +48 QFrame::~QFrame +56 QFrame::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QFrame::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFrame::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI6QFrame) +464 QFrame::_ZThn16_N6QFrameD1Ev +472 QFrame::_ZThn16_N6QFrameD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFrame + size=40 align=8 + base size=40 base align=8 +QFrame (0x7f96e042fcb0) 0 + vptr=((& QFrame::_ZTV6QFrame) + 16u) + QWidget (0x7f96e0434400) 0 + primary-for QFrame (0x7f96e042fcb0) + QObject (0x7f96e042fd20) 0 + primary-for QWidget (0x7f96e0434400) + QPaintDevice (0x7f96e042fd90) 16 + vptr=((& QFrame::_ZTV6QFrame) + 464u) + +Vtable for QAbstractScrollArea +QAbstractScrollArea::_ZTV19QAbstractScrollArea: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractScrollArea) +16 QAbstractScrollArea::metaObject +24 QAbstractScrollArea::qt_metacast +32 QAbstractScrollArea::qt_metacall +40 QAbstractScrollArea::~QAbstractScrollArea +48 QAbstractScrollArea::~QAbstractScrollArea +56 QAbstractScrollArea::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractScrollArea::mousePressEvent +168 QAbstractScrollArea::mouseReleaseEvent +176 QAbstractScrollArea::mouseDoubleClickEvent +184 QAbstractScrollArea::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractScrollArea::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractScrollArea::paintEvent +256 QWidget::moveEvent +264 QAbstractScrollArea::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractScrollArea::dragEnterEvent +312 QAbstractScrollArea::dragMoveEvent +320 QAbstractScrollArea::dragLeaveEvent +328 QAbstractScrollArea::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QAbstractScrollArea::scrollContentsBy +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI19QAbstractScrollArea) +480 QAbstractScrollArea::_ZThn16_N19QAbstractScrollAreaD1Ev +488 QAbstractScrollArea::_ZThn16_N19QAbstractScrollAreaD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractScrollArea + size=40 align=8 + base size=40 base align=8 +QAbstractScrollArea (0x7f96e0257310) 0 + vptr=((& QAbstractScrollArea::_ZTV19QAbstractScrollArea) + 16u) + QFrame (0x7f96e0257380) 0 + primary-for QAbstractScrollArea (0x7f96e0257310) + QWidget (0x7f96e024d700) 0 + primary-for QFrame (0x7f96e0257380) + QObject (0x7f96e02573f0) 0 + primary-for QWidget (0x7f96e024d700) + QPaintDevice (0x7f96e0257460) 16 + vptr=((& QAbstractScrollArea::_ZTV19QAbstractScrollArea) + 480u) + +Class QItemSelectionRange + size=16 align=8 + base size=16 base align=8 +QItemSelectionRange (0x7f96e027b230) 0 + +Vtable for QItemSelectionModel +QItemSelectionModel::_ZTV19QItemSelectionModel: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QItemSelectionModel) +16 QItemSelectionModel::metaObject +24 QItemSelectionModel::qt_metacast +32 QItemSelectionModel::qt_metacall +40 QItemSelectionModel::~QItemSelectionModel +48 QItemSelectionModel::~QItemSelectionModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QItemSelectionModel::select +120 QItemSelectionModel::select +128 QItemSelectionModel::clear +136 QItemSelectionModel::reset + +Class QItemSelectionModel + size=16 align=8 + base size=16 base align=8 +QItemSelectionModel (0x7f96e02e0700) 0 + vptr=((& QItemSelectionModel::_ZTV19QItemSelectionModel) + 16u) + QObject (0x7f96e02e0770) 0 + primary-for QItemSelectionModel (0x7f96e02e0700) + +Class QItemSelection + size=8 align=8 + base size=8 base align=8 +QItemSelection (0x7f96e0321bd0) 0 + QList (0x7f96e0321c40) 0 + +Vtable for QValidator +QValidator::_ZTV10QValidator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QValidator) +16 QValidator::metaObject +24 QValidator::qt_metacast +32 QValidator::qt_metacall +40 QValidator::~QValidator +48 QValidator::~QValidator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 QValidator::fixup + +Class QValidator + size=16 align=8 + base size=16 base align=8 +QValidator (0x7f96e015c4d0) 0 + vptr=((& QValidator::_ZTV10QValidator) + 16u) + QObject (0x7f96e015c540) 0 + primary-for QValidator (0x7f96e015c4d0) + +Vtable for QIntValidator +QIntValidator::_ZTV13QIntValidator: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QIntValidator) +16 QIntValidator::metaObject +24 QIntValidator::qt_metacast +32 QIntValidator::qt_metacall +40 QIntValidator::~QIntValidator +48 QIntValidator::~QIntValidator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QIntValidator::validate +120 QValidator::fixup +128 QIntValidator::setRange + +Class QIntValidator + size=24 align=8 + base size=24 base align=8 +QIntValidator (0x7f96e0175310) 0 + vptr=((& QIntValidator::_ZTV13QIntValidator) + 16u) + QValidator (0x7f96e0175380) 0 + primary-for QIntValidator (0x7f96e0175310) + QObject (0x7f96e01753f0) 0 + primary-for QValidator (0x7f96e0175380) + +Vtable for QDoubleValidator +QDoubleValidator::_ZTV16QDoubleValidator: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QDoubleValidator) +16 QDoubleValidator::metaObject +24 QDoubleValidator::qt_metacast +32 QDoubleValidator::qt_metacall +40 QDoubleValidator::~QDoubleValidator +48 QDoubleValidator::~QDoubleValidator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QDoubleValidator::validate +120 QValidator::fixup +128 QDoubleValidator::setRange + +Class QDoubleValidator + size=40 align=8 + base size=36 base align=8 +QDoubleValidator (0x7f96e018f2a0) 0 + vptr=((& QDoubleValidator::_ZTV16QDoubleValidator) + 16u) + QValidator (0x7f96e018f310) 0 + primary-for QDoubleValidator (0x7f96e018f2a0) + QObject (0x7f96e018f380) 0 + primary-for QValidator (0x7f96e018f310) + +Vtable for QRegExpValidator +QRegExpValidator::_ZTV16QRegExpValidator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QRegExpValidator) +16 QRegExpValidator::metaObject +24 QRegExpValidator::qt_metacast +32 QRegExpValidator::qt_metacall +40 QRegExpValidator::~QRegExpValidator +48 QRegExpValidator::~QRegExpValidator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QRegExpValidator::validate +120 QValidator::fixup + +Class QRegExpValidator + size=24 align=8 + base size=24 base align=8 +QRegExpValidator (0x7f96e01abb60) 0 + vptr=((& QRegExpValidator::_ZTV16QRegExpValidator) + 16u) + QValidator (0x7f96e01abbd0) 0 + primary-for QRegExpValidator (0x7f96e01abb60) + QObject (0x7f96e01abc40) 0 + primary-for QValidator (0x7f96e01abbd0) + +Vtable for QAbstractSpinBox +QAbstractSpinBox::_ZTV16QAbstractSpinBox: 68u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QAbstractSpinBox) +16 QAbstractSpinBox::metaObject +24 QAbstractSpinBox::qt_metacast +32 QAbstractSpinBox::qt_metacall +40 QAbstractSpinBox::~QAbstractSpinBox +48 QAbstractSpinBox::~QAbstractSpinBox +56 QAbstractSpinBox::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractSpinBox::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractSpinBox::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QAbstractSpinBox::wheelEvent +200 QAbstractSpinBox::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QAbstractSpinBox::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractSpinBox::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractSpinBox::validate +456 QAbstractSpinBox::fixup +464 QAbstractSpinBox::stepBy +472 QAbstractSpinBox::clear +480 QAbstractSpinBox::stepEnabled +488 (int (*)(...))-0x00000000000000010 +496 (int (*)(...))(& _ZTI16QAbstractSpinBox) +504 QAbstractSpinBox::_ZThn16_N16QAbstractSpinBoxD1Ev +512 QAbstractSpinBox::_ZThn16_N16QAbstractSpinBoxD0Ev +520 QWidget::_ZThn16_NK7QWidget7devTypeEv +528 QWidget::_ZThn16_NK7QWidget11paintEngineEv +536 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractSpinBox + size=40 align=8 + base size=40 base align=8 +QAbstractSpinBox (0x7f96e01bf7e0) 0 + vptr=((& QAbstractSpinBox::_ZTV16QAbstractSpinBox) + 16u) + QWidget (0x7f96e01af700) 0 + primary-for QAbstractSpinBox (0x7f96e01bf7e0) + QObject (0x7f96e01bf850) 0 + primary-for QWidget (0x7f96e01af700) + QPaintDevice (0x7f96e01bf8c0) 16 + vptr=((& QAbstractSpinBox::_ZTV16QAbstractSpinBox) + 504u) + +Class QIcon + size=8 align=8 + base size=8 base align=8 +QIcon (0x7f96e020d7e0) 0 + +Vtable for QAbstractSlider +QAbstractSlider::_ZTV15QAbstractSlider: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QAbstractSlider) +16 QAbstractSlider::metaObject +24 QAbstractSlider::qt_metacast +32 QAbstractSlider::qt_metacall +40 QAbstractSlider::~QAbstractSlider +48 QAbstractSlider::~QAbstractSlider +56 QAbstractSlider::event +64 QObject::eventFilter +72 QAbstractSlider::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QAbstractSlider::wheelEvent +200 QAbstractSlider::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractSlider::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractSlider::sliderChange +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI15QAbstractSlider) +472 QAbstractSlider::_ZThn16_N15QAbstractSliderD1Ev +480 QAbstractSlider::_ZThn16_N15QAbstractSliderD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractSlider + size=40 align=8 + base size=40 base align=8 +QAbstractSlider (0x7f96e004b380) 0 + vptr=((& QAbstractSlider::_ZTV15QAbstractSlider) + 16u) + QWidget (0x7f96e004e380) 0 + primary-for QAbstractSlider (0x7f96e004b380) + QObject (0x7f96e004b3f0) 0 + primary-for QWidget (0x7f96e004e380) + QPaintDevice (0x7f96e004b460) 16 + vptr=((& QAbstractSlider::_ZTV15QAbstractSlider) + 472u) + +Vtable for QSlider +QSlider::_ZTV7QSlider: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QSlider) +16 QSlider::metaObject +24 QSlider::qt_metacast +32 QSlider::qt_metacall +40 QSlider::~QSlider +48 QSlider::~QSlider +56 QSlider::event +64 QObject::eventFilter +72 QAbstractSlider::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QSlider::sizeHint +136 QSlider::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QSlider::mousePressEvent +168 QSlider::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QSlider::mouseMoveEvent +192 QAbstractSlider::wheelEvent +200 QAbstractSlider::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QSlider::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractSlider::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractSlider::sliderChange +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI7QSlider) +472 QSlider::_ZThn16_N7QSliderD1Ev +480 QSlider::_ZThn16_N7QSliderD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSlider + size=40 align=8 + base size=40 base align=8 +QSlider (0x7f96e00821c0) 0 + vptr=((& QSlider::_ZTV7QSlider) + 16u) + QAbstractSlider (0x7f96e0082230) 0 + primary-for QSlider (0x7f96e00821c0) + QWidget (0x7f96e007f380) 0 + primary-for QAbstractSlider (0x7f96e0082230) + QObject (0x7f96e00822a0) 0 + primary-for QWidget (0x7f96e007f380) + QPaintDevice (0x7f96e0082310) 16 + vptr=((& QSlider::_ZTV7QSlider) + 472u) + +Vtable for QStyle +QStyle::_ZTV6QStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QStyle) +16 QStyle::metaObject +24 QStyle::qt_metacast +32 QStyle::qt_metacall +40 QStyle::~QStyle +48 QStyle::~QStyle +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QStyle::polish +120 QStyle::unpolish +128 QStyle::polish +136 QStyle::unpolish +144 QStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QStyle::standardPalette +192 __cxa_pure_virtual +200 __cxa_pure_virtual +208 __cxa_pure_virtual +216 __cxa_pure_virtual +224 __cxa_pure_virtual +232 __cxa_pure_virtual +240 __cxa_pure_virtual +248 __cxa_pure_virtual +256 __cxa_pure_virtual +264 __cxa_pure_virtual +272 __cxa_pure_virtual + +Class QStyle + size=16 align=8 + base size=16 base align=8 +QStyle (0x7f96e00a8770) 0 + vptr=((& QStyle::_ZTV6QStyle) + 16u) + QObject (0x7f96e00a87e0) 0 + primary-for QStyle (0x7f96e00a8770) + +Vtable for QTabBar +QTabBar::_ZTV7QTabBar: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QTabBar) +16 QTabBar::metaObject +24 QTabBar::qt_metacast +32 QTabBar::qt_metacall +40 QTabBar::~QTabBar +48 QTabBar::~QTabBar +56 QTabBar::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QTabBar::sizeHint +136 QTabBar::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTabBar::mousePressEvent +168 QTabBar::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QTabBar::mouseMoveEvent +192 QTabBar::wheelEvent +200 QTabBar::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTabBar::paintEvent +256 QWidget::moveEvent +264 QTabBar::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QTabBar::showEvent +344 QTabBar::hideEvent +352 QWidget::x11Event +360 QTabBar::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QTabBar::tabSizeHint +456 QTabBar::tabInserted +464 QTabBar::tabRemoved +472 QTabBar::tabLayoutChange +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI7QTabBar) +496 QTabBar::_ZThn16_N7QTabBarD1Ev +504 QTabBar::_ZThn16_N7QTabBarD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTabBar + size=40 align=8 + base size=40 base align=8 +QTabBar (0x7f96dff594d0) 0 + vptr=((& QTabBar::_ZTV7QTabBar) + 16u) + QWidget (0x7f96e00fde80) 0 + primary-for QTabBar (0x7f96dff594d0) + QObject (0x7f96dff59540) 0 + primary-for QWidget (0x7f96e00fde80) + QPaintDevice (0x7f96dff595b0) 16 + vptr=((& QTabBar::_ZTV7QTabBar) + 496u) + +Vtable for QTabWidget +QTabWidget::_ZTV10QTabWidget: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTabWidget) +16 QTabWidget::metaObject +24 QTabWidget::qt_metacast +32 QTabWidget::qt_metacall +40 QTabWidget::~QTabWidget +48 QTabWidget::~QTabWidget +56 QTabWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QTabWidget::sizeHint +136 QTabWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QTabWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTabWidget::paintEvent +256 QWidget::moveEvent +264 QTabWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QTabWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QTabWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QTabWidget::tabInserted +456 QTabWidget::tabRemoved +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI10QTabWidget) +480 QTabWidget::_ZThn16_N10QTabWidgetD1Ev +488 QTabWidget::_ZThn16_N10QTabWidgetD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTabWidget + size=40 align=8 + base size=40 base align=8 +QTabWidget (0x7f96dff8baf0) 0 + vptr=((& QTabWidget::_ZTV10QTabWidget) + 16u) + QWidget (0x7f96dff8e180) 0 + primary-for QTabWidget (0x7f96dff8baf0) + QObject (0x7f96dff8bb60) 0 + primary-for QWidget (0x7f96dff8e180) + QPaintDevice (0x7f96dff8bbd0) 16 + vptr=((& QTabWidget::_ZTV10QTabWidget) + 480u) + +Vtable for QRubberBand +QRubberBand::_ZTV11QRubberBand: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QRubberBand) +16 QRubberBand::metaObject +24 QRubberBand::qt_metacast +32 QRubberBand::qt_metacall +40 QRubberBand::~QRubberBand +48 QRubberBand::~QRubberBand +56 QRubberBand::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QRubberBand::paintEvent +256 QRubberBand::moveEvent +264 QRubberBand::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QRubberBand::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QRubberBand::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI11QRubberBand) +464 QRubberBand::_ZThn16_N11QRubberBandD1Ev +472 QRubberBand::_ZThn16_N11QRubberBandD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QRubberBand + size=40 align=8 + base size=40 base align=8 +QRubberBand (0x7f96dffe34d0) 0 + vptr=((& QRubberBand::_ZTV11QRubberBand) + 16u) + QWidget (0x7f96dffe2200) 0 + primary-for QRubberBand (0x7f96dffe34d0) + QObject (0x7f96dffe3540) 0 + primary-for QWidget (0x7f96dffe2200) + QPaintDevice (0x7f96dffe35b0) 16 + vptr=((& QRubberBand::_ZTV11QRubberBand) + 464u) + +Class QStyleOption + size=56 align=8 + base size=56 base align=8 +QStyleOption (0x7f96e00047e0) 0 + +Class QStyleOptionFocusRect + size=72 align=8 + base size=72 base align=8 +QStyleOptionFocusRect (0x7f96e0012540) 0 + QStyleOption (0x7f96e00125b0) 0 + +Class QStyleOptionFrame + size=64 align=8 + base size=64 base align=8 +QStyleOptionFrame (0x7f96e001c540) 0 + QStyleOption (0x7f96e001c5b0) 0 + +Class QStyleOptionFrameV2 + size=72 align=8 + base size=68 base align=8 +QStyleOptionFrameV2 (0x7f96e00284d0) 0 + QStyleOptionFrame (0x7f96e0028540) 0 + QStyleOption (0x7f96e00285b0) 0 + +Class QStyleOptionFrameV3 + size=72 align=8 + base size=72 base align=8 +QStyleOptionFrameV3 (0x7f96dfe59d90) 0 + QStyleOptionFrameV2 (0x7f96dfe59e00) 0 + QStyleOptionFrame (0x7f96dfe59e70) 0 + QStyleOption (0x7f96dfe59ee0) 0 + +Class QStyleOptionTabWidgetFrame + size=96 align=8 + base size=92 base align=8 +QStyleOptionTabWidgetFrame (0x7f96dfe79690) 0 + QStyleOption (0x7f96dfe79700) 0 + +Class QStyleOptionTabBarBase + size=96 align=8 + base size=92 base align=8 +QStyleOptionTabBarBase (0x7f96dfe88e00) 0 + QStyleOption (0x7f96dfe88e70) 0 + +Class QStyleOptionTabBarBaseV2 + size=96 align=8 + base size=93 base align=8 +QStyleOptionTabBarBaseV2 (0x7f96dfe9b1c0) 0 + QStyleOptionTabBarBase (0x7f96dfe9b230) 0 + QStyleOption (0x7f96dfe9b2a0) 0 + +Class QStyleOptionHeader + size=112 align=8 + base size=108 base align=8 +QStyleOptionHeader (0x7f96dfea4850) 0 + QStyleOption (0x7f96dfea48c0) 0 + +Class QStyleOptionButton + size=88 align=8 + base size=88 base align=8 +QStyleOptionButton (0x7f96dfebea10) 0 + QStyleOption (0x7f96dfebea80) 0 + +Class QStyleOptionTab + size=96 align=8 + base size=96 base align=8 +QStyleOptionTab (0x7f96dff0c3f0) 0 + QStyleOption (0x7f96dff0c460) 0 + +Class QStyleOptionTabV2 + size=104 align=8 + base size=104 base align=8 +QStyleOptionTabV2 (0x7f96dfd56380) 0 + QStyleOptionTab (0x7f96dfd563f0) 0 + QStyleOption (0x7f96dfd56460) 0 + +Class QStyleOptionTabV3 + size=128 align=8 + base size=124 base align=8 +QStyleOptionTabV3 (0x7f96dfd60d90) 0 + QStyleOptionTabV2 (0x7f96dfd60e00) 0 + QStyleOptionTab (0x7f96dfd60e70) 0 + QStyleOption (0x7f96dfd60ee0) 0 + +Class QStyleOptionToolBar + size=80 align=8 + base size=80 base align=8 +QStyleOptionToolBar (0x7f96dfd7e3f0) 0 + QStyleOption (0x7f96dfd7e460) 0 + +Class QStyleOptionProgressBar + size=88 align=8 + base size=85 base align=8 +QStyleOptionProgressBar (0x7f96dfdb2bd0) 0 + QStyleOption (0x7f96dfdb2c40) 0 + +Class QStyleOptionProgressBarV2 + size=96 align=8 + base size=94 base align=8 +QStyleOptionProgressBarV2 (0x7f96dfdd6380) 0 + QStyleOptionProgressBar (0x7f96dfdd63f0) 0 + QStyleOption (0x7f96dfdd6460) 0 + +Class QStyleOptionMenuItem + size=128 align=8 + base size=128 base align=8 +QStyleOptionMenuItem (0x7f96dfdd6c40) 0 + QStyleOption (0x7f96dfdd6cb0) 0 + +Class QStyleOptionQ3ListViewItem + size=80 align=8 + base size=76 base align=8 +QStyleOptionQ3ListViewItem (0x7f96dfdf0e70) 0 + QStyleOption (0x7f96dfdf0ee0) 0 + +Class QStyleOptionQ3DockWindow + size=64 align=8 + base size=58 base align=8 +QStyleOptionQ3DockWindow (0x7f96dfc3c310) 0 + QStyleOption (0x7f96dfc3c380) 0 + +Class QStyleOptionDockWidget + size=72 align=8 + base size=67 base align=8 +QStyleOptionDockWidget (0x7f96dfc482a0) 0 + QStyleOption (0x7f96dfc48310) 0 + +Class QStyleOptionDockWidgetV2 + size=72 align=8 + base size=68 base align=8 +QStyleOptionDockWidgetV2 (0x7f96dfc57690) 0 + QStyleOptionDockWidget (0x7f96dfc57700) 0 + QStyleOption (0x7f96dfc57770) 0 + +Class QStyleOptionViewItem + size=104 align=8 + base size=97 base align=8 +QStyleOptionViewItem (0x7f96dfc5fe70) 0 + QStyleOption (0x7f96dfc5fee0) 0 + +Class QStyleOptionViewItemV2 + size=104 align=8 + base size=104 base align=8 +QStyleOptionViewItemV2 (0x7f96dfc79a10) 0 + QStyleOptionViewItem (0x7f96dfc79a80) 0 + QStyleOption (0x7f96dfc79af0) 0 + +Class QStyleOptionViewItemV3 + size=120 align=8 + base size=120 base align=8 +QStyleOptionViewItemV3 (0x7f96dfcc2460) 0 + QStyleOptionViewItemV2 (0x7f96dfcc24d0) 0 + QStyleOptionViewItem (0x7f96dfcc2540) 0 + QStyleOption (0x7f96dfcc25b0) 0 + +Class QStyleOptionViewItemV4 + size=184 align=8 + base size=184 base align=8 +QStyleOptionViewItemV4 (0x7f96dfcccd20) 0 + QStyleOptionViewItemV3 (0x7f96dfcccd90) 0 + QStyleOptionViewItemV2 (0x7f96dfccce00) 0 + QStyleOptionViewItem (0x7f96dfccce70) 0 + QStyleOption (0x7f96dfcccee0) 0 + +Class QStyleOptionToolBox + size=72 align=8 + base size=72 base align=8 +QStyleOptionToolBox (0x7f96dfcee460) 0 + QStyleOption (0x7f96dfcee4d0) 0 + +Class QStyleOptionToolBoxV2 + size=80 align=8 + base size=80 base align=8 +QStyleOptionToolBoxV2 (0x7f96dfcfd930) 0 + QStyleOptionToolBox (0x7f96dfcfd9a0) 0 + QStyleOption (0x7f96dfcfda10) 0 + +Class QStyleOptionRubberBand + size=64 align=8 + base size=61 base align=8 +QStyleOptionRubberBand (0x7f96dfd13620) 0 + QStyleOption (0x7f96dfd13690) 0 + +Class QStyleOptionComplex + size=64 align=8 + base size=64 base align=8 +QStyleOptionComplex (0x7f96dfd1f700) 0 + QStyleOption (0x7f96dfd1f770) 0 + +Class QStyleOptionSlider + size=120 align=8 + base size=113 base align=8 +QStyleOptionSlider (0x7f96dfd25ee0) 0 + QStyleOptionComplex (0x7f96dfd25f50) 0 + QStyleOption (0x7f96dfd25310) 0 + +Class QStyleOptionSpinBox + size=80 align=8 + base size=73 base align=8 +QStyleOptionSpinBox (0x7f96dfb3ecb0) 0 + QStyleOptionComplex (0x7f96dfb3ed20) 0 + QStyleOption (0x7f96dfb3ed90) 0 + +Class QStyleOptionQ3ListView + size=112 align=8 + base size=105 base align=8 +QStyleOptionQ3ListView (0x7f96dfb4e1c0) 0 + QStyleOptionComplex (0x7f96dfb4e230) 0 + QStyleOption (0x7f96dfb4e2a0) 0 + +Class QStyleOptionToolButton + size=128 align=8 + base size=128 base align=8 +QStyleOptionToolButton (0x7f96dfb81e00) 0 + QStyleOptionComplex (0x7f96dfb81e70) 0 + QStyleOption (0x7f96dfb81ee0) 0 + +Class QStyleOptionComboBox + size=112 align=8 + base size=112 base align=8 +QStyleOptionComboBox (0x7f96dfbd7070) 0 + QStyleOptionComplex (0x7f96dfbd70e0) 0 + QStyleOption (0x7f96dfbd7150) 0 + +Class QStyleOptionTitleBar + size=88 align=8 + base size=88 base align=8 +QStyleOptionTitleBar (0x7f96dfbe5b60) 0 + QStyleOptionComplex (0x7f96dfbe5bd0) 0 + QStyleOption (0x7f96dfbe5c40) 0 + +Class QStyleOptionGroupBox + size=112 align=8 + base size=108 base align=8 +QStyleOptionGroupBox (0x7f96dfbfc3f0) 0 + QStyleOptionComplex (0x7f96dfbfc460) 0 + QStyleOption (0x7f96dfbfc4d0) 0 + +Class QStyleOptionSizeGrip + size=72 align=8 + base size=68 base align=8 +QStyleOptionSizeGrip (0x7f96dfc12000) 0 + QStyleOptionComplex (0x7f96dfc12070) 0 + QStyleOption (0x7f96dfc120e0) 0 + +Class QStyleOptionGraphicsItem + size=144 align=8 + base size=144 base align=8 +QStyleOptionGraphicsItem (0x7f96dfc12f50) 0 + QStyleOption (0x7f96dfc12700) 0 + +Class QStyleHintReturn + size=8 align=4 + base size=8 base align=4 +QStyleHintReturn (0x7f96dfc2a2a0) 0 + +Class QStyleHintReturnMask + size=16 align=8 + base size=16 base align=8 +QStyleHintReturnMask (0x7f96dfc2a700) 0 + QStyleHintReturn (0x7f96dfc2a770) 0 + +Class QStyleHintReturnVariant + size=24 align=8 + base size=24 base align=8 +QStyleHintReturnVariant (0x7f96dfc2a930) 0 + QStyleHintReturn (0x7f96dfc2a9a0) 0 + +Vtable for QAbstractItemDelegate +QAbstractItemDelegate::_ZTV21QAbstractItemDelegate: 21u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QAbstractItemDelegate) +16 QAbstractItemDelegate::metaObject +24 QAbstractItemDelegate::qt_metacast +32 QAbstractItemDelegate::qt_metacall +40 QAbstractItemDelegate::~QAbstractItemDelegate +48 QAbstractItemDelegate::~QAbstractItemDelegate +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAbstractItemDelegate::createEditor +136 QAbstractItemDelegate::setEditorData +144 QAbstractItemDelegate::setModelData +152 QAbstractItemDelegate::updateEditorGeometry +160 QAbstractItemDelegate::editorEvent + +Class QAbstractItemDelegate + size=16 align=8 + base size=16 base align=8 +QAbstractItemDelegate (0x7f96dfc2ae00) 0 + vptr=((& QAbstractItemDelegate::_ZTV21QAbstractItemDelegate) + 16u) + QObject (0x7f96dfc2ae70) 0 + primary-for QAbstractItemDelegate (0x7f96dfc2ae00) + +Vtable for QAbstractItemView +QAbstractItemView::_ZTV17QAbstractItemView: 103u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAbstractItemView) +16 QAbstractItemView::metaObject +24 QAbstractItemView::qt_metacast +32 QAbstractItemView::qt_metacall +40 QAbstractItemView::~QAbstractItemView +48 QAbstractItemView::~QAbstractItemView +56 QAbstractItemView::event +64 QObject::eventFilter +72 QAbstractItemView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QAbstractItemView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QAbstractItemView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractScrollArea::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QAbstractScrollArea::scrollContentsBy +464 QAbstractItemView::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 __cxa_pure_virtual +496 __cxa_pure_virtual +504 __cxa_pure_virtual +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QAbstractItemView::reset +536 QAbstractItemView::setRootIndex +544 QAbstractItemView::doItemsLayout +552 QAbstractItemView::selectAll +560 QAbstractItemView::dataChanged +568 QAbstractItemView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QAbstractItemView::selectionChanged +592 QAbstractItemView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QAbstractItemView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 __cxa_pure_virtual +688 __cxa_pure_virtual +696 __cxa_pure_virtual +704 __cxa_pure_virtual +712 __cxa_pure_virtual +720 __cxa_pure_virtual +728 QAbstractItemView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 (int (*)(...))-0x00000000000000010 +776 (int (*)(...))(& _ZTI17QAbstractItemView) +784 QAbstractItemView::_ZThn16_N17QAbstractItemViewD1Ev +792 QAbstractItemView::_ZThn16_N17QAbstractItemViewD0Ev +800 QWidget::_ZThn16_NK7QWidget7devTypeEv +808 QWidget::_ZThn16_NK7QWidget11paintEngineEv +816 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractItemView + size=40 align=8 + base size=40 base align=8 +QAbstractItemView (0x7f96dfa6f4d0) 0 + vptr=((& QAbstractItemView::_ZTV17QAbstractItemView) + 16u) + QAbstractScrollArea (0x7f96dfa6f540) 0 + primary-for QAbstractItemView (0x7f96dfa6f4d0) + QFrame (0x7f96dfa6f5b0) 0 + primary-for QAbstractScrollArea (0x7f96dfa6f540) + QWidget (0x7f96dfa71000) 0 + primary-for QFrame (0x7f96dfa6f5b0) + QObject (0x7f96dfa6f620) 0 + primary-for QWidget (0x7f96dfa71000) + QPaintDevice (0x7f96dfa6f690) 16 + vptr=((& QAbstractItemView::_ZTV17QAbstractItemView) + 784u) + +Vtable for QListView +QListView::_ZTV9QListView: 103u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QListView) +16 QListView::metaObject +24 QListView::qt_metacast +32 QListView::qt_metacall +40 QListView::~QListView +48 QListView::~QListView +56 QListView::event +64 QObject::eventFilter +72 QListView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QListView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QListView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QListView::paintEvent +256 QWidget::moveEvent +264 QListView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QListView::dragMoveEvent +320 QListView::dragLeaveEvent +328 QListView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QListView::scrollContentsBy +464 QAbstractItemView::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QListView::visualRect +496 QListView::scrollTo +504 QListView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QListView::reset +536 QListView::setRootIndex +544 QListView::doItemsLayout +552 QAbstractItemView::selectAll +560 QListView::dataChanged +568 QListView::rowsInserted +576 QListView::rowsAboutToBeRemoved +584 QListView::selectionChanged +592 QListView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QListView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QListView::moveCursor +688 QListView::horizontalOffset +696 QListView::verticalOffset +704 QListView::isIndexHidden +712 QListView::setSelection +720 QListView::visualRegionForSelection +728 QListView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QListView::startDrag +760 QListView::viewOptions +768 (int (*)(...))-0x00000000000000010 +776 (int (*)(...))(& _ZTI9QListView) +784 QListView::_ZThn16_N9QListViewD1Ev +792 QListView::_ZThn16_N9QListViewD0Ev +800 QWidget::_ZThn16_NK7QWidget7devTypeEv +808 QWidget::_ZThn16_NK7QWidget11paintEngineEv +816 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QListView + size=40 align=8 + base size=40 base align=8 +QListView (0x7f96dfae2cb0) 0 + vptr=((& QListView::_ZTV9QListView) + 16u) + QAbstractItemView (0x7f96dfae2d20) 0 + primary-for QListView (0x7f96dfae2cb0) + QAbstractScrollArea (0x7f96dfae2d90) 0 + primary-for QAbstractItemView (0x7f96dfae2d20) + QFrame (0x7f96dfae2e00) 0 + primary-for QAbstractScrollArea (0x7f96dfae2d90) + QWidget (0x7f96dfac2680) 0 + primary-for QFrame (0x7f96dfae2e00) + QObject (0x7f96dfae2e70) 0 + primary-for QWidget (0x7f96dfac2680) + QPaintDevice (0x7f96dfae2ee0) 16 + vptr=((& QListView::_ZTV9QListView) + 784u) + +Vtable for QUndoView +QUndoView::_ZTV9QUndoView: 103u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QUndoView) +16 QUndoView::metaObject +24 QUndoView::qt_metacast +32 QUndoView::qt_metacall +40 QUndoView::~QUndoView +48 QUndoView::~QUndoView +56 QListView::event +64 QObject::eventFilter +72 QListView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QListView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QListView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QListView::paintEvent +256 QWidget::moveEvent +264 QListView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QListView::dragMoveEvent +320 QListView::dragLeaveEvent +328 QListView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QListView::scrollContentsBy +464 QAbstractItemView::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QListView::visualRect +496 QListView::scrollTo +504 QListView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QListView::reset +536 QListView::setRootIndex +544 QListView::doItemsLayout +552 QAbstractItemView::selectAll +560 QListView::dataChanged +568 QListView::rowsInserted +576 QListView::rowsAboutToBeRemoved +584 QListView::selectionChanged +592 QListView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QListView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QListView::moveCursor +688 QListView::horizontalOffset +696 QListView::verticalOffset +704 QListView::isIndexHidden +712 QListView::setSelection +720 QListView::visualRegionForSelection +728 QListView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QListView::startDrag +760 QListView::viewOptions +768 (int (*)(...))-0x00000000000000010 +776 (int (*)(...))(& _ZTI9QUndoView) +784 QUndoView::_ZThn16_N9QUndoViewD1Ev +792 QUndoView::_ZThn16_N9QUndoViewD0Ev +800 QWidget::_ZThn16_NK7QWidget7devTypeEv +808 QWidget::_ZThn16_NK7QWidget11paintEngineEv +816 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QUndoView + size=40 align=8 + base size=40 base align=8 +QUndoView (0x7f96df92a380) 0 + vptr=((& QUndoView::_ZTV9QUndoView) + 16u) + QListView (0x7f96df92a3f0) 0 + primary-for QUndoView (0x7f96df92a380) + QAbstractItemView (0x7f96df92a460) 0 + primary-for QListView (0x7f96df92a3f0) + QAbstractScrollArea (0x7f96df92a4d0) 0 + primary-for QAbstractItemView (0x7f96df92a460) + QFrame (0x7f96df92a540) 0 + primary-for QAbstractScrollArea (0x7f96df92a4d0) + QWidget (0x7f96dfb28580) 0 + primary-for QFrame (0x7f96df92a540) + QObject (0x7f96df92a5b0) 0 + primary-for QWidget (0x7f96dfb28580) + QPaintDevice (0x7f96df92a620) 16 + vptr=((& QUndoView::_ZTV9QUndoView) + 784u) + +Vtable for QCompleter +QCompleter::_ZTV10QCompleter: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QCompleter) +16 QCompleter::metaObject +24 QCompleter::qt_metacast +32 QCompleter::qt_metacall +40 QCompleter::~QCompleter +48 QCompleter::~QCompleter +56 QCompleter::event +64 QCompleter::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCompleter::pathFromIndex +120 QCompleter::splitPath + +Class QCompleter + size=16 align=8 + base size=16 base align=8 +QCompleter (0x7f96df949070) 0 + vptr=((& QCompleter::_ZTV10QCompleter) + 16u) + QObject (0x7f96df9490e0) 0 + primary-for QCompleter (0x7f96df949070) + +Vtable for QUndoCommand +QUndoCommand::_ZTV12QUndoCommand: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QUndoCommand) +16 QUndoCommand::~QUndoCommand +24 QUndoCommand::~QUndoCommand +32 QUndoCommand::undo +40 QUndoCommand::redo +48 QUndoCommand::id +56 QUndoCommand::mergeWith + +Class QUndoCommand + size=16 align=8 + base size=16 base align=8 +QUndoCommand (0x7f96df96e000) 0 + vptr=((& QUndoCommand::_ZTV12QUndoCommand) + 16u) + +Vtable for QUndoStack +QUndoStack::_ZTV10QUndoStack: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QUndoStack) +16 QUndoStack::metaObject +24 QUndoStack::qt_metacast +32 QUndoStack::qt_metacall +40 QUndoStack::~QUndoStack +48 QUndoStack::~QUndoStack +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QUndoStack + size=16 align=8 + base size=16 base align=8 +QUndoStack (0x7f96df96e930) 0 + vptr=((& QUndoStack::_ZTV10QUndoStack) + 16u) + QObject (0x7f96df96e9a0) 0 + primary-for QUndoStack (0x7f96df96e930) + +Vtable for QSystemTrayIcon +QSystemTrayIcon::_ZTV15QSystemTrayIcon: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSystemTrayIcon) +16 QSystemTrayIcon::metaObject +24 QSystemTrayIcon::qt_metacast +32 QSystemTrayIcon::qt_metacall +40 QSystemTrayIcon::~QSystemTrayIcon +48 QSystemTrayIcon::~QSystemTrayIcon +56 QSystemTrayIcon::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSystemTrayIcon + size=16 align=8 + base size=16 base align=8 +QSystemTrayIcon (0x7f96df991460) 0 + vptr=((& QSystemTrayIcon::_ZTV15QSystemTrayIcon) + 16u) + QObject (0x7f96df9914d0) 0 + primary-for QSystemTrayIcon (0x7f96df991460) + +Vtable for QDialog +QDialog::_ZTV7QDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QDialog) +16 QDialog::metaObject +24 QDialog::qt_metacast +32 QDialog::qt_metacall +40 QDialog::~QDialog +48 QDialog::~QDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI7QDialog) +488 QDialog::_ZThn16_N7QDialogD1Ev +496 QDialog::_ZThn16_N7QDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDialog + size=40 align=8 + base size=40 base align=8 +QDialog (0x7f96df9b0690) 0 + vptr=((& QDialog::_ZTV7QDialog) + 16u) + QWidget (0x7f96df9af380) 0 + primary-for QDialog (0x7f96df9b0690) + QObject (0x7f96df9b0700) 0 + primary-for QWidget (0x7f96df9af380) + QPaintDevice (0x7f96df9b0770) 16 + vptr=((& QDialog::_ZTV7QDialog) + 488u) + +Vtable for QAbstractPageSetupDialog +QAbstractPageSetupDialog::_ZTV24QAbstractPageSetupDialog: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QAbstractPageSetupDialog) +16 QAbstractPageSetupDialog::metaObject +24 QAbstractPageSetupDialog::qt_metacast +32 QAbstractPageSetupDialog::qt_metacall +40 QAbstractPageSetupDialog::~QAbstractPageSetupDialog +48 QAbstractPageSetupDialog::~QAbstractPageSetupDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractPageSetupDialog::done +456 QDialog::accept +464 QDialog::reject +472 __cxa_pure_virtual +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI24QAbstractPageSetupDialog) +496 QAbstractPageSetupDialog::_ZThn16_N24QAbstractPageSetupDialogD1Ev +504 QAbstractPageSetupDialog::_ZThn16_N24QAbstractPageSetupDialogD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractPageSetupDialog + size=40 align=8 + base size=40 base align=8 +QAbstractPageSetupDialog (0x7f96df9d44d0) 0 + vptr=((& QAbstractPageSetupDialog::_ZTV24QAbstractPageSetupDialog) + 16u) + QDialog (0x7f96df9d4540) 0 + primary-for QAbstractPageSetupDialog (0x7f96df9d44d0) + QWidget (0x7f96df9afd80) 0 + primary-for QDialog (0x7f96df9d4540) + QObject (0x7f96df9d45b0) 0 + primary-for QWidget (0x7f96df9afd80) + QPaintDevice (0x7f96df9d4620) 16 + vptr=((& QAbstractPageSetupDialog::_ZTV24QAbstractPageSetupDialog) + 496u) + +Vtable for QColorDialog +QColorDialog::_ZTV12QColorDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QColorDialog) +16 QColorDialog::metaObject +24 QColorDialog::qt_metacast +32 QColorDialog::qt_metacall +40 QColorDialog::~QColorDialog +48 QColorDialog::~QColorDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QColorDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QColorDialog::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QColorDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI12QColorDialog) +488 QColorDialog::_ZThn16_N12QColorDialogD1Ev +496 QColorDialog::_ZThn16_N12QColorDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QColorDialog + size=40 align=8 + base size=40 base align=8 +QColorDialog (0x7f96df9e9a80) 0 + vptr=((& QColorDialog::_ZTV12QColorDialog) + 16u) + QDialog (0x7f96df9e9af0) 0 + primary-for QColorDialog (0x7f96df9e9a80) + QWidget (0x7f96df9e7680) 0 + primary-for QDialog (0x7f96df9e9af0) + QObject (0x7f96df9e9b60) 0 + primary-for QWidget (0x7f96df9e7680) + QPaintDevice (0x7f96df9e9bd0) 16 + vptr=((& QColorDialog::_ZTV12QColorDialog) + 488u) + +Vtable for QFontDialog +QFontDialog::_ZTV11QFontDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFontDialog) +16 QFontDialog::metaObject +24 QFontDialog::qt_metacast +32 QFontDialog::qt_metacall +40 QFontDialog::~QFontDialog +48 QFontDialog::~QFontDialog +56 QWidget::event +64 QFontDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QFontDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFontDialog::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QFontDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11QFontDialog) +488 QFontDialog::_ZThn16_N11QFontDialogD1Ev +496 QFontDialog::_ZThn16_N11QFontDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFontDialog + size=40 align=8 + base size=40 base align=8 +QFontDialog (0x7f96df835e00) 0 + vptr=((& QFontDialog::_ZTV11QFontDialog) + 16u) + QDialog (0x7f96df835e70) 0 + primary-for QFontDialog (0x7f96df835e00) + QWidget (0x7f96dfa1c900) 0 + primary-for QDialog (0x7f96df835e70) + QObject (0x7f96df835ee0) 0 + primary-for QWidget (0x7f96dfa1c900) + QPaintDevice (0x7f96df835f50) 16 + vptr=((& QFontDialog::_ZTV11QFontDialog) + 488u) + +Vtable for QMessageBox +QMessageBox::_ZTV11QMessageBox: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMessageBox) +16 QMessageBox::metaObject +24 QMessageBox::qt_metacast +32 QMessageBox::qt_metacall +40 QMessageBox::~QMessageBox +48 QMessageBox::~QMessageBox +56 QMessageBox::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QMessageBox::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QMessageBox::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QMessageBox::resizeEvent +272 QMessageBox::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QMessageBox::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QMessageBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11QMessageBox) +488 QMessageBox::_ZThn16_N11QMessageBoxD1Ev +496 QMessageBox::_ZThn16_N11QMessageBoxD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMessageBox + size=40 align=8 + base size=40 base align=8 +QMessageBox (0x7f96df8a92a0) 0 + vptr=((& QMessageBox::_ZTV11QMessageBox) + 16u) + QDialog (0x7f96df8a9310) 0 + primary-for QMessageBox (0x7f96df8a92a0) + QWidget (0x7f96df86bb00) 0 + primary-for QDialog (0x7f96df8a9310) + QObject (0x7f96df8a9380) 0 + primary-for QWidget (0x7f96df86bb00) + QPaintDevice (0x7f96df8a93f0) 16 + vptr=((& QMessageBox::_ZTV11QMessageBox) + 488u) + +Vtable for QProgressDialog +QProgressDialog::_ZTV15QProgressDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QProgressDialog) +16 QProgressDialog::metaObject +24 QProgressDialog::qt_metacast +32 QProgressDialog::qt_metacall +40 QProgressDialog::~QProgressDialog +48 QProgressDialog::~QProgressDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QProgressDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QProgressDialog::resizeEvent +272 QProgressDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QProgressDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QProgressDialog::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI15QProgressDialog) +488 QProgressDialog::_ZThn16_N15QProgressDialogD1Ev +496 QProgressDialog::_ZThn16_N15QProgressDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QProgressDialog + size=40 align=8 + base size=40 base align=8 +QProgressDialog (0x7f96df925bd0) 0 + vptr=((& QProgressDialog::_ZTV15QProgressDialog) + 16u) + QDialog (0x7f96df925c40) 0 + primary-for QProgressDialog (0x7f96df925bd0) + QWidget (0x7f96df73a100) 0 + primary-for QDialog (0x7f96df925c40) + QObject (0x7f96df925cb0) 0 + primary-for QWidget (0x7f96df73a100) + QPaintDevice (0x7f96df925d20) 16 + vptr=((& QProgressDialog::_ZTV15QProgressDialog) + 488u) + +Vtable for QErrorMessage +QErrorMessage::_ZTV13QErrorMessage: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QErrorMessage) +16 QErrorMessage::metaObject +24 QErrorMessage::qt_metacast +32 QErrorMessage::qt_metacall +40 QErrorMessage::~QErrorMessage +48 QErrorMessage::~QErrorMessage +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QErrorMessage::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QErrorMessage::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI13QErrorMessage) +488 QErrorMessage::_ZThn16_N13QErrorMessageD1Ev +496 QErrorMessage::_ZThn16_N13QErrorMessageD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QErrorMessage + size=40 align=8 + base size=40 base align=8 +QErrorMessage (0x7f96df75d7e0) 0 + vptr=((& QErrorMessage::_ZTV13QErrorMessage) + 16u) + QDialog (0x7f96df75d850) 0 + primary-for QErrorMessage (0x7f96df75d7e0) + QWidget (0x7f96df73aa00) 0 + primary-for QDialog (0x7f96df75d850) + QObject (0x7f96df75d8c0) 0 + primary-for QWidget (0x7f96df73aa00) + QPaintDevice (0x7f96df75d930) 16 + vptr=((& QErrorMessage::_ZTV13QErrorMessage) + 488u) + +Vtable for QPrintPreviewDialog +QPrintPreviewDialog::_ZTV19QPrintPreviewDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QPrintPreviewDialog) +16 QPrintPreviewDialog::metaObject +24 QPrintPreviewDialog::qt_metacast +32 QPrintPreviewDialog::qt_metacall +40 QPrintPreviewDialog::~QPrintPreviewDialog +48 QPrintPreviewDialog::~QPrintPreviewDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QPrintPreviewDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QPrintPreviewDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI19QPrintPreviewDialog) +488 QPrintPreviewDialog::_ZThn16_N19QPrintPreviewDialogD1Ev +496 QPrintPreviewDialog::_ZThn16_N19QPrintPreviewDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPrintPreviewDialog + size=48 align=8 + base size=48 base align=8 +QPrintPreviewDialog (0x7f96df77a3f0) 0 + vptr=((& QPrintPreviewDialog::_ZTV19QPrintPreviewDialog) + 16u) + QDialog (0x7f96df77a460) 0 + primary-for QPrintPreviewDialog (0x7f96df77a3f0) + QWidget (0x7f96df776480) 0 + primary-for QDialog (0x7f96df77a460) + QObject (0x7f96df77a4d0) 0 + primary-for QWidget (0x7f96df776480) + QPaintDevice (0x7f96df77a540) 16 + vptr=((& QPrintPreviewDialog::_ZTV19QPrintPreviewDialog) + 488u) + +Vtable for QFileDialog +QFileDialog::_ZTV11QFileDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFileDialog) +16 QFileDialog::metaObject +24 QFileDialog::qt_metacast +32 QFileDialog::qt_metacall +40 QFileDialog::~QFileDialog +48 QFileDialog::~QFileDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QFileDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFileDialog::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QFileDialog::done +456 QFileDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11QFileDialog) +488 QFileDialog::_ZThn16_N11QFileDialogD1Ev +496 QFileDialog::_ZThn16_N11QFileDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFileDialog + size=40 align=8 + base size=40 base align=8 +QFileDialog (0x7f96df791a80) 0 + vptr=((& QFileDialog::_ZTV11QFileDialog) + 16u) + QDialog (0x7f96df791af0) 0 + primary-for QFileDialog (0x7f96df791a80) + QWidget (0x7f96df776d80) 0 + primary-for QDialog (0x7f96df791af0) + QObject (0x7f96df791b60) 0 + primary-for QWidget (0x7f96df776d80) + QPaintDevice (0x7f96df791bd0) 16 + vptr=((& QFileDialog::_ZTV11QFileDialog) + 488u) + +Vtable for QAbstractPrintDialog +QAbstractPrintDialog::_ZTV20QAbstractPrintDialog: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QAbstractPrintDialog) +16 QAbstractPrintDialog::metaObject +24 QAbstractPrintDialog::qt_metacast +32 QAbstractPrintDialog::qt_metacall +40 QAbstractPrintDialog::~QAbstractPrintDialog +48 QAbstractPrintDialog::~QAbstractPrintDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDialog::done +456 QDialog::accept +464 QDialog::reject +472 __cxa_pure_virtual +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI20QAbstractPrintDialog) +496 QAbstractPrintDialog::_ZThn16_N20QAbstractPrintDialogD1Ev +504 QAbstractPrintDialog::_ZThn16_N20QAbstractPrintDialogD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractPrintDialog + size=40 align=8 + base size=40 base align=8 +QAbstractPrintDialog (0x7f96df826070) 0 + vptr=((& QAbstractPrintDialog::_ZTV20QAbstractPrintDialog) + 16u) + QDialog (0x7f96df8260e0) 0 + primary-for QAbstractPrintDialog (0x7f96df826070) + QWidget (0x7f96df824200) 0 + primary-for QDialog (0x7f96df8260e0) + QObject (0x7f96df826150) 0 + primary-for QWidget (0x7f96df824200) + QPaintDevice (0x7f96df8261c0) 16 + vptr=((& QAbstractPrintDialog::_ZTV20QAbstractPrintDialog) + 496u) + +Vtable for QUnixPrintWidget +QUnixPrintWidget::_ZTV16QUnixPrintWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QUnixPrintWidget) +16 QUnixPrintWidget::metaObject +24 QUnixPrintWidget::qt_metacast +32 QUnixPrintWidget::qt_metacall +40 QUnixPrintWidget::~QUnixPrintWidget +48 QUnixPrintWidget::~QUnixPrintWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI16QUnixPrintWidget) +464 QUnixPrintWidget::_ZThn16_N16QUnixPrintWidgetD1Ev +472 QUnixPrintWidget::_ZThn16_N16QUnixPrintWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QUnixPrintWidget + size=48 align=8 + base size=48 base align=8 +QUnixPrintWidget (0x7f96df681150) 0 + vptr=((& QUnixPrintWidget::_ZTV16QUnixPrintWidget) + 16u) + QWidget (0x7f96df650580) 0 + primary-for QUnixPrintWidget (0x7f96df681150) + QObject (0x7f96df6811c0) 0 + primary-for QWidget (0x7f96df650580) + QPaintDevice (0x7f96df681230) 16 + vptr=((& QUnixPrintWidget::_ZTV16QUnixPrintWidget) + 464u) + +Vtable for QPrintDialog +QPrintDialog::_ZTV12QPrintDialog: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QPrintDialog) +16 QPrintDialog::metaObject +24 QPrintDialog::qt_metacast +32 QPrintDialog::qt_metacall +40 QPrintDialog::~QPrintDialog +48 QPrintDialog::~QPrintDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QPrintDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QPrintDialog::done +456 QPrintDialog::accept +464 QDialog::reject +472 QPrintDialog::exec +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI12QPrintDialog) +496 QPrintDialog::_ZThn16_N12QPrintDialogD1Ev +504 QPrintDialog::_ZThn16_N12QPrintDialogD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPrintDialog + size=40 align=8 + base size=40 base align=8 +QPrintDialog (0x7f96df696070) 0 + vptr=((& QPrintDialog::_ZTV12QPrintDialog) + 16u) + QAbstractPrintDialog (0x7f96df6960e0) 0 + primary-for QPrintDialog (0x7f96df696070) + QDialog (0x7f96df696150) 0 + primary-for QAbstractPrintDialog (0x7f96df6960e0) + QWidget (0x7f96df650c80) 0 + primary-for QDialog (0x7f96df696150) + QObject (0x7f96df6961c0) 0 + primary-for QWidget (0x7f96df650c80) + QPaintDevice (0x7f96df696230) 16 + vptr=((& QPrintDialog::_ZTV12QPrintDialog) + 496u) + +Vtable for QWizard +QWizard::_ZTV7QWizard: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QWizard) +16 QWizard::metaObject +24 QWizard::qt_metacast +32 QWizard::qt_metacall +40 QWizard::~QWizard +48 QWizard::~QWizard +56 QWizard::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWizard::setVisible +128 QWizard::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWizard::paintEvent +256 QWidget::moveEvent +264 QWizard::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QWizard::done +456 QDialog::accept +464 QDialog::reject +472 QWizard::validateCurrentPage +480 QWizard::nextId +488 QWizard::initializePage +496 QWizard::cleanupPage +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI7QWizard) +520 QWizard::_ZThn16_N7QWizardD1Ev +528 QWizard::_ZThn16_N7QWizardD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWizard + size=40 align=8 + base size=40 base align=8 +QWizard (0x7f96df6aebd0) 0 + vptr=((& QWizard::_ZTV7QWizard) + 16u) + QDialog (0x7f96df6aec40) 0 + primary-for QWizard (0x7f96df6aebd0) + QWidget (0x7f96df6a9580) 0 + primary-for QDialog (0x7f96df6aec40) + QObject (0x7f96df6aecb0) 0 + primary-for QWidget (0x7f96df6a9580) + QPaintDevice (0x7f96df6aed20) 16 + vptr=((& QWizard::_ZTV7QWizard) + 520u) + +Vtable for QWizardPage +QWizardPage::_ZTV11QWizardPage: 68u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QWizardPage) +16 QWizardPage::metaObject +24 QWizardPage::qt_metacast +32 QWizardPage::qt_metacall +40 QWizardPage::~QWizardPage +48 QWizardPage::~QWizardPage +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QWizardPage::initializePage +456 QWizardPage::cleanupPage +464 QWizardPage::validatePage +472 QWizardPage::isComplete +480 QWizardPage::nextId +488 (int (*)(...))-0x00000000000000010 +496 (int (*)(...))(& _ZTI11QWizardPage) +504 QWizardPage::_ZThn16_N11QWizardPageD1Ev +512 QWizardPage::_ZThn16_N11QWizardPageD0Ev +520 QWidget::_ZThn16_NK7QWidget7devTypeEv +528 QWidget::_ZThn16_NK7QWidget11paintEngineEv +536 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWizardPage + size=40 align=8 + base size=40 base align=8 +QWizardPage (0x7f96df704f50) 0 + vptr=((& QWizardPage::_ZTV11QWizardPage) + 16u) + QWidget (0x7f96df6e2780) 0 + primary-for QWizardPage (0x7f96df704f50) + QObject (0x7f96df71f000) 0 + primary-for QWidget (0x7f96df6e2780) + QPaintDevice (0x7f96df71f070) 16 + vptr=((& QWizardPage::_ZTV11QWizardPage) + 504u) + +Vtable for QPageSetupDialog +QPageSetupDialog::_ZTV16QPageSetupDialog: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QPageSetupDialog) +16 QPageSetupDialog::metaObject +24 QPageSetupDialog::qt_metacast +32 QPageSetupDialog::qt_metacall +40 QPageSetupDialog::~QPageSetupDialog +48 QPageSetupDialog::~QPageSetupDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractPageSetupDialog::done +456 QDialog::accept +464 QDialog::reject +472 QPageSetupDialog::exec +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI16QPageSetupDialog) +496 QPageSetupDialog::_ZThn16_N16QPageSetupDialogD1Ev +504 QPageSetupDialog::_ZThn16_N16QPageSetupDialogD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPageSetupDialog + size=40 align=8 + base size=40 base align=8 +QPageSetupDialog (0x7f96df537a80) 0 + vptr=((& QPageSetupDialog::_ZTV16QPageSetupDialog) + 16u) + QAbstractPageSetupDialog (0x7f96df537af0) 0 + primary-for QPageSetupDialog (0x7f96df537a80) + QDialog (0x7f96df537b60) 0 + primary-for QAbstractPageSetupDialog (0x7f96df537af0) + QWidget (0x7f96df53c080) 0 + primary-for QDialog (0x7f96df537b60) + QObject (0x7f96df537bd0) 0 + primary-for QWidget (0x7f96df53c080) + QPaintDevice (0x7f96df537c40) 16 + vptr=((& QPageSetupDialog::_ZTV16QPageSetupDialog) + 496u) + +Vtable for QLineEdit +QLineEdit::_ZTV9QLineEdit: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QLineEdit) +16 QLineEdit::metaObject +24 QLineEdit::qt_metacast +32 QLineEdit::qt_metacall +40 QLineEdit::~QLineEdit +48 QLineEdit::~QLineEdit +56 QLineEdit::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QLineEdit::sizeHint +136 QLineEdit::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QLineEdit::mousePressEvent +168 QLineEdit::mouseReleaseEvent +176 QLineEdit::mouseDoubleClickEvent +184 QLineEdit::mouseMoveEvent +192 QWidget::wheelEvent +200 QLineEdit::keyPressEvent +208 QWidget::keyReleaseEvent +216 QLineEdit::focusInEvent +224 QLineEdit::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QLineEdit::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QLineEdit::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QLineEdit::dragEnterEvent +312 QLineEdit::dragMoveEvent +320 QLineEdit::dragLeaveEvent +328 QLineEdit::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QLineEdit::changeEvent +368 QWidget::metric +376 QLineEdit::inputMethodEvent +384 QLineEdit::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI9QLineEdit) +464 QLineEdit::_ZThn16_N9QLineEditD1Ev +472 QLineEdit::_ZThn16_N9QLineEditD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QLineEdit + size=40 align=8 + base size=40 base align=8 +QLineEdit (0x7f96df555a10) 0 + vptr=((& QLineEdit::_ZTV9QLineEdit) + 16u) + QWidget (0x7f96df53cb00) 0 + primary-for QLineEdit (0x7f96df555a10) + QObject (0x7f96df555a80) 0 + primary-for QWidget (0x7f96df53cb00) + QPaintDevice (0x7f96df555af0) 16 + vptr=((& QLineEdit::_ZTV9QLineEdit) + 464u) + +Vtable for QInputDialog +QInputDialog::_ZTV12QInputDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QInputDialog) +16 QInputDialog::metaObject +24 QInputDialog::qt_metacast +32 QInputDialog::qt_metacall +40 QInputDialog::~QInputDialog +48 QInputDialog::~QInputDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QInputDialog::setVisible +128 QInputDialog::sizeHint +136 QInputDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QInputDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI12QInputDialog) +488 QInputDialog::_ZThn16_N12QInputDialogD1Ev +496 QInputDialog::_ZThn16_N12QInputDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QInputDialog + size=40 align=8 + base size=40 base align=8 +QInputDialog (0x7f96df5a6930) 0 + vptr=((& QInputDialog::_ZTV12QInputDialog) + 16u) + QDialog (0x7f96df5a69a0) 0 + primary-for QInputDialog (0x7f96df5a6930) + QWidget (0x7f96df5a3980) 0 + primary-for QDialog (0x7f96df5a69a0) + QObject (0x7f96df5a6a10) 0 + primary-for QWidget (0x7f96df5a3980) + QPaintDevice (0x7f96df5a6a80) 16 + vptr=((& QInputDialog::_ZTV12QInputDialog) + 488u) + +Vtable for QFileSystemModel +QFileSystemModel::_ZTV16QFileSystemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QFileSystemModel) +16 QFileSystemModel::metaObject +24 QFileSystemModel::qt_metacast +32 QFileSystemModel::qt_metacall +40 QFileSystemModel::~QFileSystemModel +48 QFileSystemModel::~QFileSystemModel +56 QFileSystemModel::event +64 QObject::eventFilter +72 QFileSystemModel::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFileSystemModel::index +120 QFileSystemModel::parent +128 QFileSystemModel::rowCount +136 QFileSystemModel::columnCount +144 QFileSystemModel::hasChildren +152 QFileSystemModel::data +160 QFileSystemModel::setData +168 QFileSystemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QFileSystemModel::mimeTypes +208 QFileSystemModel::mimeData +216 QFileSystemModel::dropMimeData +224 QFileSystemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QFileSystemModel::fetchMore +272 QFileSystemModel::canFetchMore +280 QFileSystemModel::flags +288 QFileSystemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QFileSystemModel + size=16 align=8 + base size=16 base align=8 +QFileSystemModel (0x7f96df6087e0) 0 + vptr=((& QFileSystemModel::_ZTV16QFileSystemModel) + 16u) + QAbstractItemModel (0x7f96df608850) 0 + primary-for QFileSystemModel (0x7f96df6087e0) + QObject (0x7f96df6088c0) 0 + primary-for QAbstractItemModel (0x7f96df608850) + +Class QPixmapCache + size=1 align=1 + base size=0 base align=1 +QPixmapCache (0x7f96df44dee0) 0 empty + +Vtable for QImageIOHandler +QImageIOHandler::_ZTV15QImageIOHandler: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QImageIOHandler) +16 QImageIOHandler::~QImageIOHandler +24 QImageIOHandler::~QImageIOHandler +32 QImageIOHandler::name +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QImageIOHandler::write +64 QImageIOHandler::option +72 QImageIOHandler::setOption +80 QImageIOHandler::supportsOption +88 QImageIOHandler::jumpToNextImage +96 QImageIOHandler::jumpToImage +104 QImageIOHandler::loopCount +112 QImageIOHandler::imageCount +120 QImageIOHandler::nextImageDelay +128 QImageIOHandler::currentImageNumber +136 QImageIOHandler::currentImageRect + +Class QImageIOHandler + size=16 align=8 + base size=16 base align=8 +QImageIOHandler (0x7f96df44df50) 0 + vptr=((& QImageIOHandler::_ZTV15QImageIOHandler) + 16u) + +Vtable for QImageIOHandlerFactoryInterface +QImageIOHandlerFactoryInterface::_ZTV31QImageIOHandlerFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI31QImageIOHandlerFactoryInterface) +16 QImageIOHandlerFactoryInterface::~QImageIOHandlerFactoryInterface +24 QImageIOHandlerFactoryInterface::~QImageIOHandlerFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QImageIOHandlerFactoryInterface + size=8 align=8 + base size=8 base align=8 +QImageIOHandlerFactoryInterface (0x7f96df45eb60) 0 nearly-empty + vptr=((& QImageIOHandlerFactoryInterface::_ZTV31QImageIOHandlerFactoryInterface) + 16u) + QFactoryInterface (0x7f96df45ebd0) 0 nearly-empty + primary-for QImageIOHandlerFactoryInterface (0x7f96df45eb60) + +Vtable for QImageIOPlugin +QImageIOPlugin::_ZTV14QImageIOPlugin: 23u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QImageIOPlugin) +16 QImageIOPlugin::metaObject +24 QImageIOPlugin::qt_metacast +32 QImageIOPlugin::qt_metacall +40 QImageIOPlugin::~QImageIOPlugin +48 QImageIOPlugin::~QImageIOPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 (int (*)(...))-0x00000000000000010 +144 (int (*)(...))(& _ZTI14QImageIOPlugin) +152 QImageIOPlugin::_ZThn16_N14QImageIOPluginD1Ev +160 QImageIOPlugin::_ZThn16_N14QImageIOPluginD0Ev +168 __cxa_pure_virtual +176 __cxa_pure_virtual + +Class QImageIOPlugin + size=24 align=8 + base size=24 base align=8 +QImageIOPlugin (0x7f96df462b00) 0 + vptr=((& QImageIOPlugin::_ZTV14QImageIOPlugin) + 16u) + QObject (0x7f96df4723f0) 0 + primary-for QImageIOPlugin (0x7f96df462b00) + QImageIOHandlerFactoryInterface (0x7f96df472460) 16 nearly-empty + vptr=((& QImageIOPlugin::_ZTV14QImageIOPlugin) + 152u) + QFactoryInterface (0x7f96df4724d0) 16 nearly-empty + primary-for QImageIOHandlerFactoryInterface (0x7f96df472460) + +Vtable for QPicture +QPicture::_ZTV8QPicture: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QPicture) +16 QPicture::~QPicture +24 QPicture::~QPicture +32 QPicture::devType +40 QPicture::paintEngine +48 QPicture::metric +56 QPicture::setData + +Class QPicture + size=24 align=8 + base size=24 base align=8 +QPicture (0x7f96df4c54d0) 0 + vptr=((& QPicture::_ZTV8QPicture) + 16u) + QPaintDevice (0x7f96df4c5540) 0 + primary-for QPicture (0x7f96df4c54d0) + +Class QPictureIO + size=8 align=8 + base size=8 base align=8 +QPictureIO (0x7f96df4de070) 0 + +Class QImageReader + size=8 align=8 + base size=8 base align=8 +QImageReader (0x7f96df4de690) 0 + +Class QImageWriter + size=8 align=8 + base size=8 base align=8 +QImageWriter (0x7f96df4fb0e0) 0 + +Vtable for QMovie +QMovie::_ZTV6QMovie: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QMovie) +16 QMovie::metaObject +24 QMovie::qt_metacast +32 QMovie::qt_metacall +40 QMovie::~QMovie +48 QMovie::~QMovie +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QMovie + size=16 align=8 + base size=16 base align=8 +QMovie (0x7f96df4fb930) 0 + vptr=((& QMovie::_ZTV6QMovie) + 16u) + QObject (0x7f96df4fb9a0) 0 + primary-for QMovie (0x7f96df4fb930) + +Vtable for QIconEngineFactoryInterface +QIconEngineFactoryInterface::_ZTV27QIconEngineFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QIconEngineFactoryInterface) +16 QIconEngineFactoryInterface::~QIconEngineFactoryInterface +24 QIconEngineFactoryInterface::~QIconEngineFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QIconEngineFactoryInterface + size=8 align=8 + base size=8 base align=8 +QIconEngineFactoryInterface (0x7f96df3419a0) 0 nearly-empty + vptr=((& QIconEngineFactoryInterface::_ZTV27QIconEngineFactoryInterface) + 16u) + QFactoryInterface (0x7f96df341a10) 0 nearly-empty + primary-for QIconEngineFactoryInterface (0x7f96df3419a0) + +Vtable for QIconEnginePlugin +QIconEnginePlugin::_ZTV17QIconEnginePlugin: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QIconEnginePlugin) +16 QIconEnginePlugin::metaObject +24 QIconEnginePlugin::qt_metacast +32 QIconEnginePlugin::qt_metacall +40 QIconEnginePlugin::~QIconEnginePlugin +48 QIconEnginePlugin::~QIconEnginePlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI17QIconEnginePlugin) +144 QIconEnginePlugin::_ZThn16_N17QIconEnginePluginD1Ev +152 QIconEnginePlugin::_ZThn16_N17QIconEnginePluginD0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QIconEnginePlugin + size=24 align=8 + base size=24 base align=8 +QIconEnginePlugin (0x7f96df33fe80) 0 + vptr=((& QIconEnginePlugin::_ZTV17QIconEnginePlugin) + 16u) + QObject (0x7f96df349230) 0 + primary-for QIconEnginePlugin (0x7f96df33fe80) + QIconEngineFactoryInterface (0x7f96df3492a0) 16 nearly-empty + vptr=((& QIconEnginePlugin::_ZTV17QIconEnginePlugin) + 144u) + QFactoryInterface (0x7f96df349310) 16 nearly-empty + primary-for QIconEngineFactoryInterface (0x7f96df3492a0) + +Vtable for QIconEngineFactoryInterfaceV2 +QIconEngineFactoryInterfaceV2::_ZTV29QIconEngineFactoryInterfaceV2: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI29QIconEngineFactoryInterfaceV2) +16 QIconEngineFactoryInterfaceV2::~QIconEngineFactoryInterfaceV2 +24 QIconEngineFactoryInterfaceV2::~QIconEngineFactoryInterfaceV2 +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QIconEngineFactoryInterfaceV2 + size=8 align=8 + base size=8 base align=8 +QIconEngineFactoryInterfaceV2 (0x7f96df35a1c0) 0 nearly-empty + vptr=((& QIconEngineFactoryInterfaceV2::_ZTV29QIconEngineFactoryInterfaceV2) + 16u) + QFactoryInterface (0x7f96df35a230) 0 nearly-empty + primary-for QIconEngineFactoryInterfaceV2 (0x7f96df35a1c0) + +Vtable for QIconEnginePluginV2 +QIconEnginePluginV2::_ZTV19QIconEnginePluginV2: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QIconEnginePluginV2) +16 QIconEnginePluginV2::metaObject +24 QIconEnginePluginV2::qt_metacast +32 QIconEnginePluginV2::qt_metacall +40 QIconEnginePluginV2::~QIconEnginePluginV2 +48 QIconEnginePluginV2::~QIconEnginePluginV2 +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI19QIconEnginePluginV2) +144 QIconEnginePluginV2::_ZThn16_N19QIconEnginePluginV2D1Ev +152 QIconEnginePluginV2::_ZThn16_N19QIconEnginePluginV2D0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QIconEnginePluginV2 + size=24 align=8 + base size=24 base align=8 +QIconEnginePluginV2 (0x7f96df353d00) 0 + vptr=((& QIconEnginePluginV2::_ZTV19QIconEnginePluginV2) + 16u) + QObject (0x7f96df35aaf0) 0 + primary-for QIconEnginePluginV2 (0x7f96df353d00) + QIconEngineFactoryInterfaceV2 (0x7f96df35ab60) 16 nearly-empty + vptr=((& QIconEnginePluginV2::_ZTV19QIconEnginePluginV2) + 144u) + QFactoryInterface (0x7f96df35abd0) 16 nearly-empty + primary-for QIconEngineFactoryInterfaceV2 (0x7f96df35ab60) + +Vtable for QIconEngine +QIconEngine::_ZTV11QIconEngine: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QIconEngine) +16 QIconEngine::~QIconEngine +24 QIconEngine::~QIconEngine +32 __cxa_pure_virtual +40 QIconEngine::actualSize +48 QIconEngine::pixmap +56 QIconEngine::addPixmap +64 QIconEngine::addFile + +Class QIconEngine + size=8 align=8 + base size=8 base align=8 +QIconEngine (0x7f96df370a80) 0 nearly-empty + vptr=((& QIconEngine::_ZTV11QIconEngine) + 16u) + +Class QIconEngineV2::AvailableSizesArgument + size=16 align=8 + base size=16 base align=8 +QIconEngineV2::AvailableSizesArgument (0x7f96df37b2a0) 0 + +Vtable for QIconEngineV2 +QIconEngineV2::_ZTV13QIconEngineV2: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QIconEngineV2) +16 QIconEngineV2::~QIconEngineV2 +24 QIconEngineV2::~QIconEngineV2 +32 __cxa_pure_virtual +40 QIconEngine::actualSize +48 QIconEngine::pixmap +56 QIconEngine::addPixmap +64 QIconEngine::addFile +72 QIconEngineV2::key +80 QIconEngineV2::clone +88 QIconEngineV2::read +96 QIconEngineV2::write +104 QIconEngineV2::virtual_hook + +Class QIconEngineV2 + size=8 align=8 + base size=8 base align=8 +QIconEngineV2 (0x7f96df37b070) 0 nearly-empty + vptr=((& QIconEngineV2::_ZTV13QIconEngineV2) + 16u) + QIconEngine (0x7f96df37b0e0) 0 nearly-empty + primary-for QIconEngineV2 (0x7f96df37b070) + +Vtable for QBitmap +QBitmap::_ZTV7QBitmap: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QBitmap) +16 QBitmap::~QBitmap +24 QBitmap::~QBitmap +32 QPixmap::devType +40 QPixmap::paintEngine +48 QPixmap::metric + +Class QBitmap + size=24 align=8 + base size=24 base align=8 +QBitmap (0x7f96df37ba80) 0 + vptr=((& QBitmap::_ZTV7QBitmap) + 16u) + QPixmap (0x7f96df37baf0) 0 + primary-for QBitmap (0x7f96df37ba80) + QPaintDevice (0x7f96df37bb60) 0 + primary-for QPixmap (0x7f96df37baf0) + +Vtable for QPictureFormatInterface +QPictureFormatInterface::_ZTV23QPictureFormatInterface: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QPictureFormatInterface) +16 QPictureFormatInterface::~QPictureFormatInterface +24 QPictureFormatInterface::~QPictureFormatInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual + +Class QPictureFormatInterface + size=8 align=8 + base size=8 base align=8 +QPictureFormatInterface (0x7f96df3d5bd0) 0 nearly-empty + vptr=((& QPictureFormatInterface::_ZTV23QPictureFormatInterface) + 16u) + QFactoryInterface (0x7f96df3d5c40) 0 nearly-empty + primary-for QPictureFormatInterface (0x7f96df3d5bd0) + +Vtable for QPictureFormatPlugin +QPictureFormatPlugin::_ZTV20QPictureFormatPlugin: 26u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QPictureFormatPlugin) +16 QPictureFormatPlugin::metaObject +24 QPictureFormatPlugin::qt_metacast +32 QPictureFormatPlugin::qt_metacall +40 QPictureFormatPlugin::~QPictureFormatPlugin +48 QPictureFormatPlugin::~QPictureFormatPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 QPictureFormatPlugin::loadPicture +128 QPictureFormatPlugin::savePicture +136 __cxa_pure_virtual +144 (int (*)(...))-0x00000000000000010 +152 (int (*)(...))(& _ZTI20QPictureFormatPlugin) +160 QPictureFormatPlugin::_ZThn16_N20QPictureFormatPluginD1Ev +168 QPictureFormatPlugin::_ZThn16_N20QPictureFormatPluginD0Ev +176 __cxa_pure_virtual +184 QPictureFormatPlugin::_ZThn16_N20QPictureFormatPlugin11loadPictureERK7QStringS2_P8QPicture +192 QPictureFormatPlugin::_ZThn16_N20QPictureFormatPlugin11savePictureERK7QStringS2_RK8QPicture +200 __cxa_pure_virtual + +Class QPictureFormatPlugin + size=24 align=8 + base size=24 base align=8 +QPictureFormatPlugin (0x7f96df3daa00) 0 + vptr=((& QPictureFormatPlugin::_ZTV20QPictureFormatPlugin) + 16u) + QObject (0x7f96df3e33f0) 0 + primary-for QPictureFormatPlugin (0x7f96df3daa00) + QPictureFormatInterface (0x7f96df3e3460) 16 nearly-empty + vptr=((& QPictureFormatPlugin::_ZTV20QPictureFormatPlugin) + 160u) + QFactoryInterface (0x7f96df3e34d0) 16 nearly-empty + primary-for QPictureFormatInterface (0x7f96df3e3460) + +Class QVFbHeader + size=1088 align=8 + base size=1088 base align=8 +QVFbHeader (0x7f96df3f7380) 0 + +Class QVFbKeyData + size=12 align=4 + base size=12 base align=4 +QVFbKeyData (0x7f96df3f73f0) 0 + +Vtable for QWSEmbedWidget +QWSEmbedWidget::_ZTV14QWSEmbedWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QWSEmbedWidget) +16 QWSEmbedWidget::metaObject +24 QWSEmbedWidget::qt_metacast +32 QWSEmbedWidget::qt_metacall +40 QWSEmbedWidget::~QWSEmbedWidget +48 QWSEmbedWidget::~QWSEmbedWidget +56 QWidget::event +64 QWSEmbedWidget::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWSEmbedWidget::moveEvent +264 QWSEmbedWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWSEmbedWidget::showEvent +344 QWSEmbedWidget::hideEvent +352 QWidget::x11Event +360 QWSEmbedWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI14QWSEmbedWidget) +464 QWSEmbedWidget::_ZThn16_N14QWSEmbedWidgetD1Ev +472 QWSEmbedWidget::_ZThn16_N14QWSEmbedWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWSEmbedWidget + size=40 align=8 + base size=40 base align=8 +QWSEmbedWidget (0x7f96df3f7460) 0 + vptr=((& QWSEmbedWidget::_ZTV14QWSEmbedWidget) + 16u) + QWidget (0x7f96df3f6200) 0 + primary-for QWSEmbedWidget (0x7f96df3f7460) + QObject (0x7f96df3f74d0) 0 + primary-for QWidget (0x7f96df3f6200) + QPaintDevice (0x7f96df3f7540) 16 + vptr=((& QWSEmbedWidget::_ZTV14QWSEmbedWidget) + 464u) + +Class QColormap + size=8 align=8 + base size=8 base align=8 +QColormap (0x7f96df40f930) 0 + +Vtable for QPrinter +QPrinter::_ZTV8QPrinter: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QPrinter) +16 QPrinter::~QPrinter +24 QPrinter::~QPrinter +32 QPrinter::devType +40 QPrinter::paintEngine +48 QPrinter::metric + +Class QPrinter + size=24 align=8 + base size=24 base align=8 +QPrinter (0x7f96df417150) 0 + vptr=((& QPrinter::_ZTV8QPrinter) + 16u) + QPaintDevice (0x7f96df4171c0) 0 + primary-for QPrinter (0x7f96df417150) + +Vtable for QPrintEngine +QPrintEngine::_ZTV12QPrintEngine: 10u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QPrintEngine) +16 QPrintEngine::~QPrintEngine +24 QPrintEngine::~QPrintEngine +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual + +Class QPrintEngine + size=8 align=8 + base size=8 base align=8 +QPrintEngine (0x7f96df25a620) 0 nearly-empty + vptr=((& QPrintEngine::_ZTV12QPrintEngine) + 16u) + +Class QPainter + size=8 align=8 + base size=8 base align=8 +QPainter (0x7f96df268380) 0 + +Class QStylePainter + size=24 align=8 + base size=24 base align=8 +QStylePainter (0x7f96df06cc40) 0 + QPainter (0x7f96df06ccb0) 0 + +Class QPrinterInfo + size=8 align=8 + base size=8 base align=8 +QPrinterInfo (0x7f96df09f230) 0 + +Class QTextItem + size=1 align=1 + base size=0 base align=1 +QTextItem (0x7f96df0a2700) 0 empty + +Vtable for QPaintEngine +QPaintEngine::_ZTV12QPaintEngine: 24u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QPaintEngine) +16 QPaintEngine::~QPaintEngine +24 QPaintEngine::~QPaintEngine +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QPaintEngine::drawRects +64 QPaintEngine::drawRects +72 QPaintEngine::drawLines +80 QPaintEngine::drawLines +88 QPaintEngine::drawEllipse +96 QPaintEngine::drawEllipse +104 QPaintEngine::drawPath +112 QPaintEngine::drawPoints +120 QPaintEngine::drawPoints +128 QPaintEngine::drawPolygon +136 QPaintEngine::drawPolygon +144 __cxa_pure_virtual +152 QPaintEngine::drawTextItem +160 QPaintEngine::drawTiledPixmap +168 QPaintEngine::drawImage +176 QPaintEngine::coordinateOffset +184 __cxa_pure_virtual + +Class QPaintEngine + size=32 align=8 + base size=32 base align=8 +QPaintEngine (0x7f96df0a2d20) 0 + vptr=((& QPaintEngine::_ZTV12QPaintEngine) + 16u) + +Class QPaintEngineState + size=4 align=4 + base size=4 base align=4 +QPaintEngineState (0x7f96df0ec7e0) 0 + +Class QTreeWidgetItemIterator + size=24 align=8 + base size=20 base align=8 +QTreeWidgetItemIterator (0x7f96defa6af0) 0 + +Vtable for QDataWidgetMapper +QDataWidgetMapper::_ZTV17QDataWidgetMapper: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QDataWidgetMapper) +16 QDataWidgetMapper::metaObject +24 QDataWidgetMapper::qt_metacast +32 QDataWidgetMapper::qt_metacall +40 QDataWidgetMapper::~QDataWidgetMapper +48 QDataWidgetMapper::~QDataWidgetMapper +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QDataWidgetMapper::setCurrentIndex + +Class QDataWidgetMapper + size=16 align=8 + base size=16 base align=8 +QDataWidgetMapper (0x7f96df002690) 0 + vptr=((& QDataWidgetMapper::_ZTV17QDataWidgetMapper) + 16u) + QObject (0x7f96df002700) 0 + primary-for QDataWidgetMapper (0x7f96df002690) + +Vtable for QFileIconProvider +QFileIconProvider::_ZTV17QFileIconProvider: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QFileIconProvider) +16 QFileIconProvider::~QFileIconProvider +24 QFileIconProvider::~QFileIconProvider +32 QFileIconProvider::icon +40 QFileIconProvider::icon +48 QFileIconProvider::type + +Class QFileIconProvider + size=16 align=8 + base size=16 base align=8 +QFileIconProvider (0x7f96dee3b150) 0 + vptr=((& QFileIconProvider::_ZTV17QFileIconProvider) + 16u) + +Vtable for QStringListModel +QStringListModel::_ZTV16QStringListModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QStringListModel) +16 QStringListModel::metaObject +24 QStringListModel::qt_metacast +32 QStringListModel::qt_metacall +40 QStringListModel::~QStringListModel +48 QStringListModel::~QStringListModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractListModel::index +120 QAbstractListModel::parent +128 QStringListModel::rowCount +136 QAbstractListModel::columnCount +144 QAbstractListModel::hasChildren +152 QStringListModel::data +160 QStringListModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractListModel::dropMimeData +224 QStringListModel::supportedDropActions +232 QStringListModel::insertRows +240 QAbstractItemModel::insertColumns +248 QStringListModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QStringListModel::flags +288 QStringListModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QStringListModel + size=24 align=8 + base size=24 base align=8 +QStringListModel (0x7f96dee3bc40) 0 + vptr=((& QStringListModel::_ZTV16QStringListModel) + 16u) + QAbstractListModel (0x7f96dee3bcb0) 0 + primary-for QStringListModel (0x7f96dee3bc40) + QAbstractItemModel (0x7f96dee3bd20) 0 + primary-for QAbstractListModel (0x7f96dee3bcb0) + QObject (0x7f96dee3bd90) 0 + primary-for QAbstractItemModel (0x7f96dee3bd20) + +Vtable for QListWidgetItem +QListWidgetItem::_ZTV15QListWidgetItem: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QListWidgetItem) +16 QListWidgetItem::~QListWidgetItem +24 QListWidgetItem::~QListWidgetItem +32 QListWidgetItem::clone +40 QListWidgetItem::setBackgroundColor +48 QListWidgetItem::data +56 QListWidgetItem::setData +64 QListWidgetItem::operator< +72 QListWidgetItem::read +80 QListWidgetItem::write + +Class QListWidgetItem + size=48 align=8 + base size=44 base align=8 +QListWidgetItem (0x7f96dee5b230) 0 + vptr=((& QListWidgetItem::_ZTV15QListWidgetItem) + 16u) + +Vtable for QListWidget +QListWidget::_ZTV11QListWidget: 107u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QListWidget) +16 QListWidget::metaObject +24 QListWidget::qt_metacast +32 QListWidget::qt_metacall +40 QListWidget::~QListWidget +48 QListWidget::~QListWidget +56 QListWidget::event +64 QObject::eventFilter +72 QListView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QListView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QListView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QListView::paintEvent +256 QWidget::moveEvent +264 QListView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QListView::dragMoveEvent +320 QListView::dragLeaveEvent +328 QListWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QListView::scrollContentsBy +464 QListWidget::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QListView::visualRect +496 QListView::scrollTo +504 QListView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QListView::reset +536 QListView::setRootIndex +544 QListView::doItemsLayout +552 QAbstractItemView::selectAll +560 QListView::dataChanged +568 QListView::rowsInserted +576 QListView::rowsAboutToBeRemoved +584 QListView::selectionChanged +592 QListView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QListView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QListView::moveCursor +688 QListView::horizontalOffset +696 QListView::verticalOffset +704 QListView::isIndexHidden +712 QListView::setSelection +720 QListView::visualRegionForSelection +728 QListView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QListView::startDrag +760 QListView::viewOptions +768 QListWidget::mimeTypes +776 QListWidget::mimeData +784 QListWidget::dropMimeData +792 QListWidget::supportedDropActions +800 (int (*)(...))-0x00000000000000010 +808 (int (*)(...))(& _ZTI11QListWidget) +816 QListWidget::_ZThn16_N11QListWidgetD1Ev +824 QListWidget::_ZThn16_N11QListWidgetD0Ev +832 QWidget::_ZThn16_NK7QWidget7devTypeEv +840 QWidget::_ZThn16_NK7QWidget11paintEngineEv +848 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QListWidget + size=40 align=8 + base size=40 base align=8 +QListWidget (0x7f96deed09a0) 0 + vptr=((& QListWidget::_ZTV11QListWidget) + 16u) + QListView (0x7f96deed0a10) 0 + primary-for QListWidget (0x7f96deed09a0) + QAbstractItemView (0x7f96deed0a80) 0 + primary-for QListView (0x7f96deed0a10) + QAbstractScrollArea (0x7f96deed0af0) 0 + primary-for QAbstractItemView (0x7f96deed0a80) + QFrame (0x7f96deed0b60) 0 + primary-for QAbstractScrollArea (0x7f96deed0af0) + QWidget (0x7f96deecd580) 0 + primary-for QFrame (0x7f96deed0b60) + QObject (0x7f96deed0bd0) 0 + primary-for QWidget (0x7f96deecd580) + QPaintDevice (0x7f96deed0c40) 16 + vptr=((& QListWidget::_ZTV11QListWidget) + 816u) + +Vtable for QDirModel +QDirModel::_ZTV9QDirModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QDirModel) +16 QDirModel::metaObject +24 QDirModel::qt_metacast +32 QDirModel::qt_metacall +40 QDirModel::~QDirModel +48 QDirModel::~QDirModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QDirModel::index +120 QDirModel::parent +128 QDirModel::rowCount +136 QDirModel::columnCount +144 QDirModel::hasChildren +152 QDirModel::data +160 QDirModel::setData +168 QDirModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QDirModel::mimeTypes +208 QDirModel::mimeData +216 QDirModel::dropMimeData +224 QDirModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QDirModel::flags +288 QDirModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QDirModel + size=16 align=8 + base size=16 base align=8 +QDirModel (0x7f96def09e00) 0 + vptr=((& QDirModel::_ZTV9QDirModel) + 16u) + QAbstractItemModel (0x7f96def09e70) 0 + primary-for QDirModel (0x7f96def09e00) + QObject (0x7f96def09ee0) 0 + primary-for QAbstractItemModel (0x7f96def09e70) + +Vtable for QColumnView +QColumnView::_ZTV11QColumnView: 104u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QColumnView) +16 QColumnView::metaObject +24 QColumnView::qt_metacast +32 QColumnView::qt_metacall +40 QColumnView::~QColumnView +48 QColumnView::~QColumnView +56 QAbstractItemView::event +64 QObject::eventFilter +72 QAbstractItemView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QColumnView::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QAbstractItemView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QAbstractItemView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractScrollArea::paintEvent +256 QWidget::moveEvent +264 QColumnView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QColumnView::scrollContentsBy +464 QColumnView::setModel +472 QColumnView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QColumnView::visualRect +496 QColumnView::scrollTo +504 QColumnView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QAbstractItemView::reset +536 QColumnView::setRootIndex +544 QAbstractItemView::doItemsLayout +552 QColumnView::selectAll +560 QAbstractItemView::dataChanged +568 QAbstractItemView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QAbstractItemView::selectionChanged +592 QColumnView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QAbstractItemView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QColumnView::moveCursor +688 QColumnView::horizontalOffset +696 QColumnView::verticalOffset +704 QColumnView::isIndexHidden +712 QColumnView::setSelection +720 QColumnView::visualRegionForSelection +728 QAbstractItemView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 QColumnView::createColumn +776 (int (*)(...))-0x00000000000000010 +784 (int (*)(...))(& _ZTI11QColumnView) +792 QColumnView::_ZThn16_N11QColumnViewD1Ev +800 QColumnView::_ZThn16_N11QColumnViewD0Ev +808 QWidget::_ZThn16_NK7QWidget7devTypeEv +816 QWidget::_ZThn16_NK7QWidget11paintEngineEv +824 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QColumnView + size=40 align=8 + base size=40 base align=8 +QColumnView (0x7f96ded380e0) 0 + vptr=((& QColumnView::_ZTV11QColumnView) + 16u) + QAbstractItemView (0x7f96ded38150) 0 + primary-for QColumnView (0x7f96ded380e0) + QAbstractScrollArea (0x7f96ded381c0) 0 + primary-for QAbstractItemView (0x7f96ded38150) + QFrame (0x7f96ded38230) 0 + primary-for QAbstractScrollArea (0x7f96ded381c0) + QWidget (0x7f96def0cd00) 0 + primary-for QFrame (0x7f96ded38230) + QObject (0x7f96ded382a0) 0 + primary-for QWidget (0x7f96def0cd00) + QPaintDevice (0x7f96ded38310) 16 + vptr=((& QColumnView::_ZTV11QColumnView) + 792u) + +Vtable for QStandardItem +QStandardItem::_ZTV13QStandardItem: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QStandardItem) +16 QStandardItem::~QStandardItem +24 QStandardItem::~QStandardItem +32 QStandardItem::data +40 QStandardItem::setData +48 QStandardItem::clone +56 QStandardItem::type +64 QStandardItem::read +72 QStandardItem::write +80 QStandardItem::operator< + +Class QStandardItem + size=16 align=8 + base size=16 base align=8 +QStandardItem (0x7f96ded5d230) 0 + vptr=((& QStandardItem::_ZTV13QStandardItem) + 16u) + +Vtable for QStandardItemModel +QStandardItemModel::_ZTV18QStandardItemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QStandardItemModel) +16 QStandardItemModel::metaObject +24 QStandardItemModel::qt_metacast +32 QStandardItemModel::qt_metacall +40 QStandardItemModel::~QStandardItemModel +48 QStandardItemModel::~QStandardItemModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QStandardItemModel::index +120 QStandardItemModel::parent +128 QStandardItemModel::rowCount +136 QStandardItemModel::columnCount +144 QStandardItemModel::hasChildren +152 QStandardItemModel::data +160 QStandardItemModel::setData +168 QStandardItemModel::headerData +176 QStandardItemModel::setHeaderData +184 QStandardItemModel::itemData +192 QStandardItemModel::setItemData +200 QStandardItemModel::mimeTypes +208 QStandardItemModel::mimeData +216 QStandardItemModel::dropMimeData +224 QStandardItemModel::supportedDropActions +232 QStandardItemModel::insertRows +240 QStandardItemModel::insertColumns +248 QStandardItemModel::removeRows +256 QStandardItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QStandardItemModel::flags +288 QStandardItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QStandardItemModel + size=16 align=8 + base size=16 base align=8 +QStandardItemModel (0x7f96dec38e00) 0 + vptr=((& QStandardItemModel::_ZTV18QStandardItemModel) + 16u) + QAbstractItemModel (0x7f96dec38e70) 0 + primary-for QStandardItemModel (0x7f96dec38e00) + QObject (0x7f96dec38ee0) 0 + primary-for QAbstractItemModel (0x7f96dec38e70) + +Vtable for QAbstractProxyModel +QAbstractProxyModel::_ZTV19QAbstractProxyModel: 47u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractProxyModel) +16 QAbstractProxyModel::metaObject +24 QAbstractProxyModel::qt_metacast +32 QAbstractProxyModel::qt_metacall +40 QAbstractProxyModel::~QAbstractProxyModel +48 QAbstractProxyModel::~QAbstractProxyModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractItemModel::hasChildren +152 QAbstractProxyModel::data +160 QAbstractProxyModel::setData +168 QAbstractProxyModel::headerData +176 QAbstractProxyModel::setHeaderData +184 QAbstractProxyModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractItemModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractProxyModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractProxyModel::submit +328 QAbstractProxyModel::revert +336 QAbstractProxyModel::setSourceModel +344 __cxa_pure_virtual +352 __cxa_pure_virtual +360 QAbstractProxyModel::mapSelectionToSource +368 QAbstractProxyModel::mapSelectionFromSource + +Class QAbstractProxyModel + size=16 align=8 + base size=16 base align=8 +QAbstractProxyModel (0x7f96dec769a0) 0 + vptr=((& QAbstractProxyModel::_ZTV19QAbstractProxyModel) + 16u) + QAbstractItemModel (0x7f96dec76a10) 0 + primary-for QAbstractProxyModel (0x7f96dec769a0) + QObject (0x7f96dec76a80) 0 + primary-for QAbstractItemModel (0x7f96dec76a10) + +Vtable for QSortFilterProxyModel +QSortFilterProxyModel::_ZTV21QSortFilterProxyModel: 50u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QSortFilterProxyModel) +16 QSortFilterProxyModel::metaObject +24 QSortFilterProxyModel::qt_metacast +32 QSortFilterProxyModel::qt_metacall +40 QSortFilterProxyModel::~QSortFilterProxyModel +48 QSortFilterProxyModel::~QSortFilterProxyModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QSortFilterProxyModel::index +120 QSortFilterProxyModel::parent +128 QSortFilterProxyModel::rowCount +136 QSortFilterProxyModel::columnCount +144 QSortFilterProxyModel::hasChildren +152 QSortFilterProxyModel::data +160 QSortFilterProxyModel::setData +168 QSortFilterProxyModel::headerData +176 QSortFilterProxyModel::setHeaderData +184 QAbstractProxyModel::itemData +192 QAbstractItemModel::setItemData +200 QSortFilterProxyModel::mimeTypes +208 QSortFilterProxyModel::mimeData +216 QSortFilterProxyModel::dropMimeData +224 QSortFilterProxyModel::supportedDropActions +232 QSortFilterProxyModel::insertRows +240 QSortFilterProxyModel::insertColumns +248 QSortFilterProxyModel::removeRows +256 QSortFilterProxyModel::removeColumns +264 QSortFilterProxyModel::fetchMore +272 QSortFilterProxyModel::canFetchMore +280 QSortFilterProxyModel::flags +288 QSortFilterProxyModel::sort +296 QSortFilterProxyModel::buddy +304 QSortFilterProxyModel::match +312 QSortFilterProxyModel::span +320 QAbstractProxyModel::submit +328 QAbstractProxyModel::revert +336 QSortFilterProxyModel::setSourceModel +344 QSortFilterProxyModel::mapToSource +352 QSortFilterProxyModel::mapFromSource +360 QSortFilterProxyModel::mapSelectionToSource +368 QSortFilterProxyModel::mapSelectionFromSource +376 QSortFilterProxyModel::filterAcceptsRow +384 QSortFilterProxyModel::filterAcceptsColumn +392 QSortFilterProxyModel::lessThan + +Class QSortFilterProxyModel + size=16 align=8 + base size=16 base align=8 +QSortFilterProxyModel (0x7f96deca05b0) 0 + vptr=((& QSortFilterProxyModel::_ZTV21QSortFilterProxyModel) + 16u) + QAbstractProxyModel (0x7f96deca0620) 0 + primary-for QSortFilterProxyModel (0x7f96deca05b0) + QAbstractItemModel (0x7f96deca0690) 0 + primary-for QAbstractProxyModel (0x7f96deca0620) + QObject (0x7f96deca0700) 0 + primary-for QAbstractItemModel (0x7f96deca0690) + +Vtable for QStyledItemDelegate +QStyledItemDelegate::_ZTV19QStyledItemDelegate: 23u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QStyledItemDelegate) +16 QStyledItemDelegate::metaObject +24 QStyledItemDelegate::qt_metacast +32 QStyledItemDelegate::qt_metacall +40 QStyledItemDelegate::~QStyledItemDelegate +48 QStyledItemDelegate::~QStyledItemDelegate +56 QObject::event +64 QStyledItemDelegate::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QStyledItemDelegate::paint +120 QStyledItemDelegate::sizeHint +128 QStyledItemDelegate::createEditor +136 QStyledItemDelegate::setEditorData +144 QStyledItemDelegate::setModelData +152 QStyledItemDelegate::updateEditorGeometry +160 QStyledItemDelegate::editorEvent +168 QStyledItemDelegate::displayText +176 QStyledItemDelegate::initStyleOption + +Class QStyledItemDelegate + size=16 align=8 + base size=16 base align=8 +QStyledItemDelegate (0x7f96decd24d0) 0 + vptr=((& QStyledItemDelegate::_ZTV19QStyledItemDelegate) + 16u) + QAbstractItemDelegate (0x7f96decd2540) 0 + primary-for QStyledItemDelegate (0x7f96decd24d0) + QObject (0x7f96decd25b0) 0 + primary-for QAbstractItemDelegate (0x7f96decd2540) + +Vtable for QItemDelegate +QItemDelegate::_ZTV13QItemDelegate: 25u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QItemDelegate) +16 QItemDelegate::metaObject +24 QItemDelegate::qt_metacast +32 QItemDelegate::qt_metacall +40 QItemDelegate::~QItemDelegate +48 QItemDelegate::~QItemDelegate +56 QObject::event +64 QItemDelegate::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QItemDelegate::paint +120 QItemDelegate::sizeHint +128 QItemDelegate::createEditor +136 QItemDelegate::setEditorData +144 QItemDelegate::setModelData +152 QItemDelegate::updateEditorGeometry +160 QItemDelegate::editorEvent +168 QItemDelegate::drawDisplay +176 QItemDelegate::drawDecoration +184 QItemDelegate::drawFocus +192 QItemDelegate::drawCheck + +Class QItemDelegate + size=16 align=8 + base size=16 base align=8 +QItemDelegate (0x7f96dece4e70) 0 + vptr=((& QItemDelegate::_ZTV13QItemDelegate) + 16u) + QAbstractItemDelegate (0x7f96dece4ee0) 0 + primary-for QItemDelegate (0x7f96dece4e70) + QObject (0x7f96dece4f50) 0 + primary-for QAbstractItemDelegate (0x7f96dece4ee0) + +Vtable for QTableView +QTableView::_ZTV10QTableView: 103u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTableView) +16 QTableView::metaObject +24 QTableView::qt_metacast +32 QTableView::qt_metacall +40 QTableView::~QTableView +48 QTableView::~QTableView +56 QAbstractItemView::event +64 QObject::eventFilter +72 QTableView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QAbstractItemView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QAbstractItemView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTableView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QTableView::scrollContentsBy +464 QTableView::setModel +472 QTableView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QTableView::visualRect +496 QTableView::scrollTo +504 QTableView::indexAt +512 QTableView::sizeHintForRow +520 QTableView::sizeHintForColumn +528 QAbstractItemView::reset +536 QTableView::setRootIndex +544 QAbstractItemView::doItemsLayout +552 QAbstractItemView::selectAll +560 QAbstractItemView::dataChanged +568 QAbstractItemView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QTableView::selectionChanged +592 QTableView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QTableView::updateGeometries +624 QTableView::verticalScrollbarAction +632 QTableView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QTableView::moveCursor +688 QTableView::horizontalOffset +696 QTableView::verticalOffset +704 QTableView::isIndexHidden +712 QTableView::setSelection +720 QTableView::visualRegionForSelection +728 QTableView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QTableView::viewOptions +768 (int (*)(...))-0x00000000000000010 +776 (int (*)(...))(& _ZTI10QTableView) +784 QTableView::_ZThn16_N10QTableViewD1Ev +792 QTableView::_ZThn16_N10QTableViewD0Ev +800 QWidget::_ZThn16_NK7QWidget7devTypeEv +808 QWidget::_ZThn16_NK7QWidget11paintEngineEv +816 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTableView + size=40 align=8 + base size=40 base align=8 +QTableView (0x7f96ded09850) 0 + vptr=((& QTableView::_ZTV10QTableView) + 16u) + QAbstractItemView (0x7f96ded098c0) 0 + primary-for QTableView (0x7f96ded09850) + QAbstractScrollArea (0x7f96ded09930) 0 + primary-for QAbstractItemView (0x7f96ded098c0) + QFrame (0x7f96ded099a0) 0 + primary-for QAbstractScrollArea (0x7f96ded09930) + QWidget (0x7f96ded05500) 0 + primary-for QFrame (0x7f96ded099a0) + QObject (0x7f96ded09a10) 0 + primary-for QWidget (0x7f96ded05500) + QPaintDevice (0x7f96ded09a80) 16 + vptr=((& QTableView::_ZTV10QTableView) + 784u) + +Class QTableWidgetSelectionRange + size=16 align=4 + base size=16 base align=4 +QTableWidgetSelectionRange (0x7f96deb3c620) 0 + +Vtable for QTableWidgetItem +QTableWidgetItem::_ZTV16QTableWidgetItem: 10u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QTableWidgetItem) +16 QTableWidgetItem::~QTableWidgetItem +24 QTableWidgetItem::~QTableWidgetItem +32 QTableWidgetItem::clone +40 QTableWidgetItem::data +48 QTableWidgetItem::setData +56 QTableWidgetItem::operator< +64 QTableWidgetItem::read +72 QTableWidgetItem::write + +Class QTableWidgetItem + size=48 align=8 + base size=44 base align=8 +QTableWidgetItem (0x7f96deb44af0) 0 + vptr=((& QTableWidgetItem::_ZTV16QTableWidgetItem) + 16u) + +Vtable for QTableWidget +QTableWidget::_ZTV12QTableWidget: 107u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTableWidget) +16 QTableWidget::metaObject +24 QTableWidget::qt_metacast +32 QTableWidget::qt_metacall +40 QTableWidget::~QTableWidget +48 QTableWidget::~QTableWidget +56 QTableWidget::event +64 QObject::eventFilter +72 QTableView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QAbstractItemView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QAbstractItemView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTableView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QTableWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QTableView::scrollContentsBy +464 QTableWidget::setModel +472 QTableView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QTableView::visualRect +496 QTableView::scrollTo +504 QTableView::indexAt +512 QTableView::sizeHintForRow +520 QTableView::sizeHintForColumn +528 QAbstractItemView::reset +536 QTableView::setRootIndex +544 QAbstractItemView::doItemsLayout +552 QAbstractItemView::selectAll +560 QAbstractItemView::dataChanged +568 QAbstractItemView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QTableView::selectionChanged +592 QTableView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QTableView::updateGeometries +624 QTableView::verticalScrollbarAction +632 QTableView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QTableView::moveCursor +688 QTableView::horizontalOffset +696 QTableView::verticalOffset +704 QTableView::isIndexHidden +712 QTableView::setSelection +720 QTableView::visualRegionForSelection +728 QTableView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QTableView::viewOptions +768 QTableWidget::mimeTypes +776 QTableWidget::mimeData +784 QTableWidget::dropMimeData +792 QTableWidget::supportedDropActions +800 (int (*)(...))-0x00000000000000010 +808 (int (*)(...))(& _ZTI12QTableWidget) +816 QTableWidget::_ZThn16_N12QTableWidgetD1Ev +824 QTableWidget::_ZThn16_N12QTableWidgetD0Ev +832 QWidget::_ZThn16_NK7QWidget7devTypeEv +840 QWidget::_ZThn16_NK7QWidget11paintEngineEv +848 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTableWidget + size=40 align=8 + base size=40 base align=8 +QTableWidget (0x7f96debbc0e0) 0 + vptr=((& QTableWidget::_ZTV12QTableWidget) + 16u) + QTableView (0x7f96debbc150) 0 + primary-for QTableWidget (0x7f96debbc0e0) + QAbstractItemView (0x7f96debbc1c0) 0 + primary-for QTableView (0x7f96debbc150) + QAbstractScrollArea (0x7f96debbc230) 0 + primary-for QAbstractItemView (0x7f96debbc1c0) + QFrame (0x7f96debbc2a0) 0 + primary-for QAbstractScrollArea (0x7f96debbc230) + QWidget (0x7f96debb6580) 0 + primary-for QFrame (0x7f96debbc2a0) + QObject (0x7f96debbc310) 0 + primary-for QWidget (0x7f96debb6580) + QPaintDevice (0x7f96debbc380) 16 + vptr=((& QTableWidget::_ZTV12QTableWidget) + 816u) + +Vtable for QTreeView +QTreeView::_ZTV9QTreeView: 105u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTreeView) +16 QTreeView::metaObject +24 QTreeView::qt_metacast +32 QTreeView::qt_metacall +40 QTreeView::~QTreeView +48 QTreeView::~QTreeView +56 QAbstractItemView::event +64 QObject::eventFilter +72 QTreeView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTreeView::mousePressEvent +168 QTreeView::mouseReleaseEvent +176 QTreeView::mouseDoubleClickEvent +184 QTreeView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QTreeView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTreeView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QTreeView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QTreeView::viewportEvent +456 QTreeView::scrollContentsBy +464 QTreeView::setModel +472 QTreeView::setSelectionModel +480 QTreeView::keyboardSearch +488 QTreeView::visualRect +496 QTreeView::scrollTo +504 QTreeView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QTreeView::sizeHintForColumn +528 QTreeView::reset +536 QTreeView::setRootIndex +544 QTreeView::doItemsLayout +552 QTreeView::selectAll +560 QTreeView::dataChanged +568 QTreeView::rowsInserted +576 QTreeView::rowsAboutToBeRemoved +584 QTreeView::selectionChanged +592 QTreeView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QTreeView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QTreeView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QTreeView::moveCursor +688 QTreeView::horizontalOffset +696 QTreeView::verticalOffset +704 QTreeView::isIndexHidden +712 QTreeView::setSelection +720 QTreeView::visualRegionForSelection +728 QTreeView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 QTreeView::drawRow +776 QTreeView::drawBranches +784 (int (*)(...))-0x00000000000000010 +792 (int (*)(...))(& _ZTI9QTreeView) +800 QTreeView::_ZThn16_N9QTreeViewD1Ev +808 QTreeView::_ZThn16_N9QTreeViewD0Ev +816 QWidget::_ZThn16_NK7QWidget7devTypeEv +824 QWidget::_ZThn16_NK7QWidget11paintEngineEv +832 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTreeView + size=40 align=8 + base size=40 base align=8 +QTreeView (0x7f96debf9070) 0 + vptr=((& QTreeView::_ZTV9QTreeView) + 16u) + QAbstractItemView (0x7f96debf90e0) 0 + primary-for QTreeView (0x7f96debf9070) + QAbstractScrollArea (0x7f96debf9150) 0 + primary-for QAbstractItemView (0x7f96debf90e0) + QFrame (0x7f96debf91c0) 0 + primary-for QAbstractScrollArea (0x7f96debf9150) + QWidget (0x7f96debf3e00) 0 + primary-for QFrame (0x7f96debf91c0) + QObject (0x7f96debf9230) 0 + primary-for QWidget (0x7f96debf3e00) + QPaintDevice (0x7f96debf92a0) 16 + vptr=((& QTreeView::_ZTV9QTreeView) + 800u) + +Vtable for QProxyModel +QProxyModel::_ZTV11QProxyModel: 43u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QProxyModel) +16 QProxyModel::metaObject +24 QProxyModel::qt_metacast +32 QProxyModel::qt_metacall +40 QProxyModel::~QProxyModel +48 QProxyModel::~QProxyModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QProxyModel::index +120 QProxyModel::parent +128 QProxyModel::rowCount +136 QProxyModel::columnCount +144 QProxyModel::hasChildren +152 QProxyModel::data +160 QProxyModel::setData +168 QProxyModel::headerData +176 QProxyModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QProxyModel::mimeTypes +208 QProxyModel::mimeData +216 QProxyModel::dropMimeData +224 QProxyModel::supportedDropActions +232 QProxyModel::insertRows +240 QProxyModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QProxyModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QProxyModel::flags +288 QProxyModel::sort +296 QAbstractItemModel::buddy +304 QProxyModel::match +312 QProxyModel::span +320 QProxyModel::submit +328 QProxyModel::revert +336 QProxyModel::setModel + +Class QProxyModel + size=16 align=8 + base size=16 base align=8 +QProxyModel (0x7f96dea1de00) 0 + vptr=((& QProxyModel::_ZTV11QProxyModel) + 16u) + QAbstractItemModel (0x7f96dea1de70) 0 + primary-for QProxyModel (0x7f96dea1de00) + QObject (0x7f96dea1dee0) 0 + primary-for QAbstractItemModel (0x7f96dea1de70) + +Vtable for QHeaderView +QHeaderView::_ZTV11QHeaderView: 105u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QHeaderView) +16 QHeaderView::metaObject +24 QHeaderView::qt_metacast +32 QHeaderView::qt_metacall +40 QHeaderView::~QHeaderView +48 QHeaderView::~QHeaderView +56 QHeaderView::event +64 QObject::eventFilter +72 QAbstractItemView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QHeaderView::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QHeaderView::mousePressEvent +168 QHeaderView::mouseReleaseEvent +176 QHeaderView::mouseDoubleClickEvent +184 QHeaderView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QHeaderView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QHeaderView::viewportEvent +456 QHeaderView::scrollContentsBy +464 QHeaderView::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QHeaderView::visualRect +496 QHeaderView::scrollTo +504 QHeaderView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QHeaderView::reset +536 QAbstractItemView::setRootIndex +544 QHeaderView::doItemsLayout +552 QAbstractItemView::selectAll +560 QHeaderView::dataChanged +568 QHeaderView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QAbstractItemView::selectionChanged +592 QHeaderView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QHeaderView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QHeaderView::moveCursor +688 QHeaderView::horizontalOffset +696 QHeaderView::verticalOffset +704 QHeaderView::isIndexHidden +712 QHeaderView::setSelection +720 QHeaderView::visualRegionForSelection +728 QAbstractItemView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 QHeaderView::paintSection +776 QHeaderView::sectionSizeFromContents +784 (int (*)(...))-0x00000000000000010 +792 (int (*)(...))(& _ZTI11QHeaderView) +800 QHeaderView::_ZThn16_N11QHeaderViewD1Ev +808 QHeaderView::_ZThn16_N11QHeaderViewD0Ev +816 QWidget::_ZThn16_NK7QWidget7devTypeEv +824 QWidget::_ZThn16_NK7QWidget11paintEngineEv +832 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QHeaderView + size=40 align=8 + base size=40 base align=8 +QHeaderView (0x7f96dea41cb0) 0 + vptr=((& QHeaderView::_ZTV11QHeaderView) + 16u) + QAbstractItemView (0x7f96dea41d20) 0 + primary-for QHeaderView (0x7f96dea41cb0) + QAbstractScrollArea (0x7f96dea41d90) 0 + primary-for QAbstractItemView (0x7f96dea41d20) + QFrame (0x7f96dea41e00) 0 + primary-for QAbstractScrollArea (0x7f96dea41d90) + QWidget (0x7f96dea19f80) 0 + primary-for QFrame (0x7f96dea41e00) + QObject (0x7f96dea41e70) 0 + primary-for QWidget (0x7f96dea19f80) + QPaintDevice (0x7f96dea41ee0) 16 + vptr=((& QHeaderView::_ZTV11QHeaderView) + 800u) + +Vtable for QItemEditorCreatorBase +QItemEditorCreatorBase::_ZTV22QItemEditorCreatorBase: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QItemEditorCreatorBase) +16 QItemEditorCreatorBase::~QItemEditorCreatorBase +24 QItemEditorCreatorBase::~QItemEditorCreatorBase +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QItemEditorCreatorBase + size=8 align=8 + base size=8 base align=8 +QItemEditorCreatorBase (0x7f96dea838c0) 0 nearly-empty + vptr=((& QItemEditorCreatorBase::_ZTV22QItemEditorCreatorBase) + 16u) + +Vtable for QItemEditorFactory +QItemEditorFactory::_ZTV18QItemEditorFactory: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QItemEditorFactory) +16 QItemEditorFactory::~QItemEditorFactory +24 QItemEditorFactory::~QItemEditorFactory +32 QItemEditorFactory::createEditor +40 QItemEditorFactory::valuePropertyName + +Class QItemEditorFactory + size=16 align=8 + base size=16 base align=8 +QItemEditorFactory (0x7f96dea8e770) 0 + vptr=((& QItemEditorFactory::_ZTV18QItemEditorFactory) + 16u) + +Vtable for QTreeWidgetItem +QTreeWidgetItem::_ZTV15QTreeWidgetItem: 10u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QTreeWidgetItem) +16 QTreeWidgetItem::~QTreeWidgetItem +24 QTreeWidgetItem::~QTreeWidgetItem +32 QTreeWidgetItem::clone +40 QTreeWidgetItem::data +48 QTreeWidgetItem::setData +56 QTreeWidgetItem::operator< +64 QTreeWidgetItem::read +72 QTreeWidgetItem::write + +Class QTreeWidgetItem + size=64 align=8 + base size=60 base align=8 +QTreeWidgetItem (0x7f96dea9aa10) 0 + vptr=((& QTreeWidgetItem::_ZTV15QTreeWidgetItem) + 16u) + +Vtable for QTreeWidget +QTreeWidget::_ZTV11QTreeWidget: 109u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTreeWidget) +16 QTreeWidget::metaObject +24 QTreeWidget::qt_metacast +32 QTreeWidget::qt_metacall +40 QTreeWidget::~QTreeWidget +48 QTreeWidget::~QTreeWidget +56 QTreeWidget::event +64 QObject::eventFilter +72 QTreeView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTreeView::mousePressEvent +168 QTreeView::mouseReleaseEvent +176 QTreeView::mouseDoubleClickEvent +184 QTreeView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QTreeView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTreeView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QTreeView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QTreeWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QTreeView::viewportEvent +456 QTreeView::scrollContentsBy +464 QTreeWidget::setModel +472 QTreeWidget::setSelectionModel +480 QTreeView::keyboardSearch +488 QTreeView::visualRect +496 QTreeView::scrollTo +504 QTreeView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QTreeView::sizeHintForColumn +528 QTreeView::reset +536 QTreeView::setRootIndex +544 QTreeView::doItemsLayout +552 QTreeView::selectAll +560 QTreeView::dataChanged +568 QTreeView::rowsInserted +576 QTreeView::rowsAboutToBeRemoved +584 QTreeView::selectionChanged +592 QTreeView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QTreeView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QTreeView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QTreeView::moveCursor +688 QTreeView::horizontalOffset +696 QTreeView::verticalOffset +704 QTreeView::isIndexHidden +712 QTreeView::setSelection +720 QTreeView::visualRegionForSelection +728 QTreeView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 QTreeView::drawRow +776 QTreeView::drawBranches +784 QTreeWidget::mimeTypes +792 QTreeWidget::mimeData +800 QTreeWidget::dropMimeData +808 QTreeWidget::supportedDropActions +816 (int (*)(...))-0x00000000000000010 +824 (int (*)(...))(& _ZTI11QTreeWidget) +832 QTreeWidget::_ZThn16_N11QTreeWidgetD1Ev +840 QTreeWidget::_ZThn16_N11QTreeWidgetD0Ev +848 QWidget::_ZThn16_NK7QWidget7devTypeEv +856 QWidget::_ZThn16_NK7QWidget11paintEngineEv +864 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTreeWidget + size=40 align=8 + base size=40 base align=8 +QTreeWidget (0x7f96de963f50) 0 + vptr=((& QTreeWidget::_ZTV11QTreeWidget) + 16u) + QTreeView (0x7f96de96a000) 0 + primary-for QTreeWidget (0x7f96de963f50) + QAbstractItemView (0x7f96de96a070) 0 + primary-for QTreeView (0x7f96de96a000) + QAbstractScrollArea (0x7f96de96a0e0) 0 + primary-for QAbstractItemView (0x7f96de96a070) + QFrame (0x7f96de96a150) 0 + primary-for QAbstractScrollArea (0x7f96de96a0e0) + QWidget (0x7f96de95be00) 0 + primary-for QFrame (0x7f96de96a150) + QObject (0x7f96de96a1c0) 0 + primary-for QWidget (0x7f96de95be00) + QPaintDevice (0x7f96de96a230) 16 + vptr=((& QTreeWidget::_ZTV11QTreeWidget) + 832u) + +Vtable for QAccessibleBridge +QAccessibleBridge::_ZTV17QAccessibleBridge: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAccessibleBridge) +16 QAccessibleBridge::~QAccessibleBridge +24 QAccessibleBridge::~QAccessibleBridge +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QAccessibleBridge + size=8 align=8 + base size=8 base align=8 +QAccessibleBridge (0x7f96de9cc310) 0 nearly-empty + vptr=((& QAccessibleBridge::_ZTV17QAccessibleBridge) + 16u) + +Vtable for QAccessibleBridgeFactoryInterface +QAccessibleBridgeFactoryInterface::_ZTV33QAccessibleBridgeFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI33QAccessibleBridgeFactoryInterface) +16 QAccessibleBridgeFactoryInterface::~QAccessibleBridgeFactoryInterface +24 QAccessibleBridgeFactoryInterface::~QAccessibleBridgeFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QAccessibleBridgeFactoryInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleBridgeFactoryInterface (0x7f96de9ccd90) 0 nearly-empty + vptr=((& QAccessibleBridgeFactoryInterface::_ZTV33QAccessibleBridgeFactoryInterface) + 16u) + QFactoryInterface (0x7f96de9cce00) 0 nearly-empty + primary-for QAccessibleBridgeFactoryInterface (0x7f96de9ccd90) + +Vtable for QAccessibleBridgePlugin +QAccessibleBridgePlugin::_ZTV23QAccessibleBridgePlugin: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QAccessibleBridgePlugin) +16 QAccessibleBridgePlugin::metaObject +24 QAccessibleBridgePlugin::qt_metacast +32 QAccessibleBridgePlugin::qt_metacall +40 QAccessibleBridgePlugin::~QAccessibleBridgePlugin +48 QAccessibleBridgePlugin::~QAccessibleBridgePlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI23QAccessibleBridgePlugin) +144 QAccessibleBridgePlugin::_ZThn16_N23QAccessibleBridgePluginD1Ev +152 QAccessibleBridgePlugin::_ZThn16_N23QAccessibleBridgePluginD0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QAccessibleBridgePlugin + size=24 align=8 + base size=24 base align=8 +QAccessibleBridgePlugin (0x7f96de9da500) 0 + vptr=((& QAccessibleBridgePlugin::_ZTV23QAccessibleBridgePlugin) + 16u) + QObject (0x7f96de9db5b0) 0 + primary-for QAccessibleBridgePlugin (0x7f96de9da500) + QAccessibleBridgeFactoryInterface (0x7f96de9db620) 16 nearly-empty + vptr=((& QAccessibleBridgePlugin::_ZTV23QAccessibleBridgePlugin) + 144u) + QFactoryInterface (0x7f96de9db690) 16 nearly-empty + primary-for QAccessibleBridgeFactoryInterface (0x7f96de9db620) + +Class QAccessible + size=1 align=1 + base size=0 base align=1 +QAccessible (0x7f96de9ed540) 0 empty + +Vtable for QAccessibleInterface +QAccessibleInterface::_ZTV20QAccessibleInterface: 19u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QAccessibleInterface) +16 QAccessibleInterface::~QAccessibleInterface +24 QAccessibleInterface::~QAccessibleInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual + +Class QAccessibleInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleInterface (0x7f96de88e700) 0 nearly-empty + vptr=((& QAccessibleInterface::_ZTV20QAccessibleInterface) + 16u) + QAccessible (0x7f96de88e770) 0 empty + +Vtable for QAccessibleInterfaceEx +QAccessibleInterfaceEx::_ZTV22QAccessibleInterfaceEx: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QAccessibleInterfaceEx) +16 QAccessibleInterfaceEx::~QAccessibleInterfaceEx +24 QAccessibleInterfaceEx::~QAccessibleInterfaceEx +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 QAccessibleInterfaceEx::virtual_hook +168 QAccessibleInterfaceEx::interface_cast + +Class QAccessibleInterfaceEx + size=8 align=8 + base size=8 base align=8 +QAccessibleInterfaceEx (0x7f96de8ed000) 0 nearly-empty + vptr=((& QAccessibleInterfaceEx::_ZTV22QAccessibleInterfaceEx) + 16u) + QAccessibleInterface (0x7f96de8ed070) 0 nearly-empty + primary-for QAccessibleInterfaceEx (0x7f96de8ed000) + QAccessible (0x7f96de8ed0e0) 0 empty + +Vtable for QAccessibleEvent +QAccessibleEvent::_ZTV16QAccessibleEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QAccessibleEvent) +16 QAccessibleEvent::~QAccessibleEvent +24 QAccessibleEvent::~QAccessibleEvent + +Class QAccessibleEvent + size=32 align=8 + base size=32 base align=8 +QAccessibleEvent (0x7f96de8ed380) 0 + vptr=((& QAccessibleEvent::_ZTV16QAccessibleEvent) + 16u) + QEvent (0x7f96de8ed3f0) 0 + primary-for QAccessibleEvent (0x7f96de8ed380) + +Vtable for QAccessibleObject +QAccessibleObject::_ZTV17QAccessibleObject: 19u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAccessibleObject) +16 QAccessibleObject::~QAccessibleObject +24 QAccessibleObject::~QAccessibleObject +32 QAccessibleObject::isValid +40 QAccessibleObject::object +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 QAccessibleObject::setText +104 QAccessibleObject::rect +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAccessibleObject::userActionCount +136 QAccessibleObject::actionText +144 QAccessibleObject::doAction + +Class QAccessibleObject + size=16 align=8 + base size=16 base align=8 +QAccessibleObject (0x7f96de905230) 0 + vptr=((& QAccessibleObject::_ZTV17QAccessibleObject) + 16u) + QAccessibleInterface (0x7f96de9052a0) 0 nearly-empty + primary-for QAccessibleObject (0x7f96de905230) + QAccessible (0x7f96de905310) 0 empty + +Vtable for QAccessibleObjectEx +QAccessibleObjectEx::_ZTV19QAccessibleObjectEx: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAccessibleObjectEx) +16 QAccessibleObjectEx::~QAccessibleObjectEx +24 QAccessibleObjectEx::~QAccessibleObjectEx +32 QAccessibleObjectEx::isValid +40 QAccessibleObjectEx::object +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 QAccessibleObjectEx::setText +104 QAccessibleObjectEx::rect +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAccessibleObjectEx::userActionCount +136 QAccessibleObjectEx::actionText +144 QAccessibleObjectEx::doAction +152 __cxa_pure_virtual +160 QAccessibleInterfaceEx::virtual_hook +168 QAccessibleInterfaceEx::interface_cast + +Class QAccessibleObjectEx + size=16 align=8 + base size=16 base align=8 +QAccessibleObjectEx (0x7f96de905a10) 0 + vptr=((& QAccessibleObjectEx::_ZTV19QAccessibleObjectEx) + 16u) + QAccessibleInterfaceEx (0x7f96de905a80) 0 nearly-empty + primary-for QAccessibleObjectEx (0x7f96de905a10) + QAccessibleInterface (0x7f96de905af0) 0 nearly-empty + primary-for QAccessibleInterfaceEx (0x7f96de905a80) + QAccessible (0x7f96de905b60) 0 empty + +Vtable for QAccessibleApplication +QAccessibleApplication::_ZTV22QAccessibleApplication: 19u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QAccessibleApplication) +16 QAccessibleApplication::~QAccessibleApplication +24 QAccessibleApplication::~QAccessibleApplication +32 QAccessibleObject::isValid +40 QAccessibleObject::object +48 QAccessibleApplication::childCount +56 QAccessibleApplication::indexOfChild +64 QAccessibleApplication::relationTo +72 QAccessibleApplication::childAt +80 QAccessibleApplication::navigate +88 QAccessibleApplication::text +96 QAccessibleObject::setText +104 QAccessibleObject::rect +112 QAccessibleApplication::role +120 QAccessibleApplication::state +128 QAccessibleApplication::userActionCount +136 QAccessibleApplication::actionText +144 QAccessibleApplication::doAction + +Class QAccessibleApplication + size=16 align=8 + base size=16 base align=8 +QAccessibleApplication (0x7f96de715230) 0 + vptr=((& QAccessibleApplication::_ZTV22QAccessibleApplication) + 16u) + QAccessibleObject (0x7f96de7152a0) 0 + primary-for QAccessibleApplication (0x7f96de715230) + QAccessibleInterface (0x7f96de715310) 0 nearly-empty + primary-for QAccessibleObject (0x7f96de7152a0) + QAccessible (0x7f96de715380) 0 empty + +Vtable for QAccessibleWidget +QAccessibleWidget::_ZTV17QAccessibleWidget: 19u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAccessibleWidget) +16 QAccessibleWidget::~QAccessibleWidget +24 QAccessibleWidget::~QAccessibleWidget +32 QAccessibleObject::isValid +40 QAccessibleObject::object +48 QAccessibleWidget::childCount +56 QAccessibleWidget::indexOfChild +64 QAccessibleWidget::relationTo +72 QAccessibleWidget::childAt +80 QAccessibleWidget::navigate +88 QAccessibleWidget::text +96 QAccessibleObject::setText +104 QAccessibleWidget::rect +112 QAccessibleWidget::role +120 QAccessibleWidget::state +128 QAccessibleWidget::userActionCount +136 QAccessibleWidget::actionText +144 QAccessibleWidget::doAction + +Class QAccessibleWidget + size=24 align=8 + base size=24 base align=8 +QAccessibleWidget (0x7f96de715c40) 0 + vptr=((& QAccessibleWidget::_ZTV17QAccessibleWidget) + 16u) + QAccessibleObject (0x7f96de715cb0) 0 + primary-for QAccessibleWidget (0x7f96de715c40) + QAccessibleInterface (0x7f96de715d20) 0 nearly-empty + primary-for QAccessibleObject (0x7f96de715cb0) + QAccessible (0x7f96de715d90) 0 empty + +Vtable for QAccessibleWidgetEx +QAccessibleWidgetEx::_ZTV19QAccessibleWidgetEx: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAccessibleWidgetEx) +16 QAccessibleWidgetEx::~QAccessibleWidgetEx +24 QAccessibleWidgetEx::~QAccessibleWidgetEx +32 QAccessibleObjectEx::isValid +40 QAccessibleObjectEx::object +48 QAccessibleWidgetEx::childCount +56 QAccessibleWidgetEx::indexOfChild +64 QAccessibleWidgetEx::relationTo +72 QAccessibleWidgetEx::childAt +80 QAccessibleWidgetEx::navigate +88 QAccessibleWidgetEx::text +96 QAccessibleObjectEx::setText +104 QAccessibleWidgetEx::rect +112 QAccessibleWidgetEx::role +120 QAccessibleWidgetEx::state +128 QAccessibleObjectEx::userActionCount +136 QAccessibleWidgetEx::actionText +144 QAccessibleWidgetEx::doAction +152 QAccessibleWidgetEx::invokeMethodEx +160 QAccessibleInterfaceEx::virtual_hook +168 QAccessibleInterfaceEx::interface_cast + +Class QAccessibleWidgetEx + size=24 align=8 + base size=24 base align=8 +QAccessibleWidgetEx (0x7f96de723c40) 0 + vptr=((& QAccessibleWidgetEx::_ZTV19QAccessibleWidgetEx) + 16u) + QAccessibleObjectEx (0x7f96de723cb0) 0 + primary-for QAccessibleWidgetEx (0x7f96de723c40) + QAccessibleInterfaceEx (0x7f96de723d20) 0 nearly-empty + primary-for QAccessibleObjectEx (0x7f96de723cb0) + QAccessibleInterface (0x7f96de723d90) 0 nearly-empty + primary-for QAccessibleInterfaceEx (0x7f96de723d20) + QAccessible (0x7f96de723e00) 0 empty + +Vtable for QAccessible2Interface +QAccessible2Interface::_ZTV21QAccessible2Interface: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QAccessible2Interface) +16 QAccessible2Interface::~QAccessible2Interface +24 QAccessible2Interface::~QAccessible2Interface + +Class QAccessible2Interface + size=8 align=8 + base size=8 base align=8 +QAccessible2Interface (0x7f96de730d90) 0 nearly-empty + vptr=((& QAccessible2Interface::_ZTV21QAccessible2Interface) + 16u) + +Vtable for QAccessibleTextInterface +QAccessibleTextInterface::_ZTV24QAccessibleTextInterface: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QAccessibleTextInterface) +16 QAccessibleTextInterface::~QAccessibleTextInterface +24 QAccessibleTextInterface::~QAccessibleTextInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual + +Class QAccessibleTextInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleTextInterface (0x7f96de740cb0) 0 nearly-empty + vptr=((& QAccessibleTextInterface::_ZTV24QAccessibleTextInterface) + 16u) + QAccessible2Interface (0x7f96de740d20) 0 nearly-empty + primary-for QAccessibleTextInterface (0x7f96de740cb0) + +Vtable for QAccessibleEditableTextInterface +QAccessibleEditableTextInterface::_ZTV32QAccessibleEditableTextInterface: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI32QAccessibleEditableTextInterface) +16 QAccessibleEditableTextInterface::~QAccessibleEditableTextInterface +24 QAccessibleEditableTextInterface::~QAccessibleEditableTextInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual + +Class QAccessibleEditableTextInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleEditableTextInterface (0x7f96de750b60) 0 nearly-empty + vptr=((& QAccessibleEditableTextInterface::_ZTV32QAccessibleEditableTextInterface) + 16u) + QAccessible2Interface (0x7f96de750bd0) 0 nearly-empty + primary-for QAccessibleEditableTextInterface (0x7f96de750b60) + +Vtable for QAccessibleSimpleEditableTextInterface +QAccessibleSimpleEditableTextInterface::_ZTV38QAccessibleSimpleEditableTextInterface: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI38QAccessibleSimpleEditableTextInterface) +16 QAccessibleSimpleEditableTextInterface::~QAccessibleSimpleEditableTextInterface +24 QAccessibleSimpleEditableTextInterface::~QAccessibleSimpleEditableTextInterface +32 QAccessibleSimpleEditableTextInterface::copyText +40 QAccessibleSimpleEditableTextInterface::deleteText +48 QAccessibleSimpleEditableTextInterface::insertText +56 QAccessibleSimpleEditableTextInterface::cutText +64 QAccessibleSimpleEditableTextInterface::pasteText +72 QAccessibleSimpleEditableTextInterface::replaceText +80 QAccessibleSimpleEditableTextInterface::setAttributes + +Class QAccessibleSimpleEditableTextInterface + size=16 align=8 + base size=16 base align=8 +QAccessibleSimpleEditableTextInterface (0x7f96de75ea10) 0 + vptr=((& QAccessibleSimpleEditableTextInterface::_ZTV38QAccessibleSimpleEditableTextInterface) + 16u) + QAccessibleEditableTextInterface (0x7f96de75ea80) 0 nearly-empty + primary-for QAccessibleSimpleEditableTextInterface (0x7f96de75ea10) + QAccessible2Interface (0x7f96de75eaf0) 0 nearly-empty + primary-for QAccessibleEditableTextInterface (0x7f96de75ea80) + +Vtable for QAccessibleValueInterface +QAccessibleValueInterface::_ZTV25QAccessibleValueInterface: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QAccessibleValueInterface) +16 QAccessibleValueInterface::~QAccessibleValueInterface +24 QAccessibleValueInterface::~QAccessibleValueInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual + +Class QAccessibleValueInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleValueInterface (0x7f96de75ed20) 0 nearly-empty + vptr=((& QAccessibleValueInterface::_ZTV25QAccessibleValueInterface) + 16u) + QAccessible2Interface (0x7f96de75ed90) 0 nearly-empty + primary-for QAccessibleValueInterface (0x7f96de75ed20) + +Vtable for QAccessibleTableInterface +QAccessibleTableInterface::_ZTV25QAccessibleTableInterface: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QAccessibleTableInterface) +16 QAccessibleTableInterface::~QAccessibleTableInterface +24 QAccessibleTableInterface::~QAccessibleTableInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 __cxa_pure_virtual +208 __cxa_pure_virtual +216 __cxa_pure_virtual +224 __cxa_pure_virtual +232 __cxa_pure_virtual + +Class QAccessibleTableInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleTableInterface (0x7f96de76eb60) 0 nearly-empty + vptr=((& QAccessibleTableInterface::_ZTV25QAccessibleTableInterface) + 16u) + QAccessible2Interface (0x7f96de76ebd0) 0 nearly-empty + primary-for QAccessibleTableInterface (0x7f96de76eb60) + +Vtable for QAccessibleFactoryInterface +QAccessibleFactoryInterface::_ZTV27QAccessibleFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QAccessibleFactoryInterface) +16 QAccessibleFactoryInterface::~QAccessibleFactoryInterface +24 QAccessibleFactoryInterface::~QAccessibleFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QAccessibleFactoryInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleFactoryInterface (0x7f96de772c80) 0 nearly-empty + vptr=((& QAccessibleFactoryInterface::_ZTV27QAccessibleFactoryInterface) + 16u) + QAccessible (0x7f96de76ef50) 0 empty + QFactoryInterface (0x7f96de76ed90) 0 nearly-empty + primary-for QAccessibleFactoryInterface (0x7f96de772c80) + +Vtable for QAccessiblePlugin +QAccessiblePlugin::_ZTV17QAccessiblePlugin: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAccessiblePlugin) +16 QAccessiblePlugin::metaObject +24 QAccessiblePlugin::qt_metacast +32 QAccessiblePlugin::qt_metacall +40 QAccessiblePlugin::~QAccessiblePlugin +48 QAccessiblePlugin::~QAccessiblePlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI17QAccessiblePlugin) +144 QAccessiblePlugin::_ZThn16_N17QAccessiblePluginD1Ev +152 QAccessiblePlugin::_ZThn16_N17QAccessiblePluginD0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QAccessiblePlugin + size=24 align=8 + base size=24 base align=8 +QAccessiblePlugin (0x7f96de786480) 0 + vptr=((& QAccessiblePlugin::_ZTV17QAccessiblePlugin) + 16u) + QObject (0x7f96de7837e0) 0 + primary-for QAccessiblePlugin (0x7f96de786480) + QAccessibleFactoryInterface (0x7f96de786500) 16 nearly-empty + vptr=((& QAccessiblePlugin::_ZTV17QAccessiblePlugin) + 144u) + QAccessible (0x7f96de783850) 16 empty + QFactoryInterface (0x7f96de7838c0) 16 nearly-empty + primary-for QAccessibleFactoryInterface (0x7f96de786500) + +Vtable for QLayoutItem +QLayoutItem::_ZTV11QLayoutItem: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QLayoutItem) +16 QLayoutItem::~QLayoutItem +24 QLayoutItem::~QLayoutItem +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 QLayoutItem::hasHeightForWidth +96 QLayoutItem::heightForWidth +104 QLayoutItem::minimumHeightForWidth +112 QLayoutItem::invalidate +120 QLayoutItem::widget +128 QLayoutItem::layout +136 QLayoutItem::spacerItem + +Class QLayoutItem + size=16 align=8 + base size=12 base align=8 +QLayoutItem (0x7f96de7957e0) 0 + vptr=((& QLayoutItem::_ZTV11QLayoutItem) + 16u) + +Vtable for QSpacerItem +QSpacerItem::_ZTV11QSpacerItem: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QSpacerItem) +16 QSpacerItem::~QSpacerItem +24 QSpacerItem::~QSpacerItem +32 QSpacerItem::sizeHint +40 QSpacerItem::minimumSize +48 QSpacerItem::maximumSize +56 QSpacerItem::expandingDirections +64 QSpacerItem::setGeometry +72 QSpacerItem::geometry +80 QSpacerItem::isEmpty +88 QLayoutItem::hasHeightForWidth +96 QLayoutItem::heightForWidth +104 QLayoutItem::minimumHeightForWidth +112 QLayoutItem::invalidate +120 QLayoutItem::widget +128 QLayoutItem::layout +136 QSpacerItem::spacerItem + +Class QSpacerItem + size=40 align=8 + base size=40 base align=8 +QSpacerItem (0x7f96de7a7380) 0 + vptr=((& QSpacerItem::_ZTV11QSpacerItem) + 16u) + QLayoutItem (0x7f96de7a73f0) 0 + primary-for QSpacerItem (0x7f96de7a7380) + +Vtable for QWidgetItem +QWidgetItem::_ZTV11QWidgetItem: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QWidgetItem) +16 QWidgetItem::~QWidgetItem +24 QWidgetItem::~QWidgetItem +32 QWidgetItem::sizeHint +40 QWidgetItem::minimumSize +48 QWidgetItem::maximumSize +56 QWidgetItem::expandingDirections +64 QWidgetItem::setGeometry +72 QWidgetItem::geometry +80 QWidgetItem::isEmpty +88 QWidgetItem::hasHeightForWidth +96 QWidgetItem::heightForWidth +104 QLayoutItem::minimumHeightForWidth +112 QLayoutItem::invalidate +120 QWidgetItem::widget +128 QLayoutItem::layout +136 QLayoutItem::spacerItem + +Class QWidgetItem + size=24 align=8 + base size=24 base align=8 +QWidgetItem (0x7f96de7b68c0) 0 + vptr=((& QWidgetItem::_ZTV11QWidgetItem) + 16u) + QLayoutItem (0x7f96de7b6930) 0 + primary-for QWidgetItem (0x7f96de7b68c0) + +Vtable for QWidgetItemV2 +QWidgetItemV2::_ZTV13QWidgetItemV2: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QWidgetItemV2) +16 QWidgetItemV2::~QWidgetItemV2 +24 QWidgetItemV2::~QWidgetItemV2 +32 QWidgetItemV2::sizeHint +40 QWidgetItemV2::minimumSize +48 QWidgetItemV2::maximumSize +56 QWidgetItem::expandingDirections +64 QWidgetItem::setGeometry +72 QWidgetItem::geometry +80 QWidgetItem::isEmpty +88 QWidgetItem::hasHeightForWidth +96 QWidgetItemV2::heightForWidth +104 QLayoutItem::minimumHeightForWidth +112 QLayoutItem::invalidate +120 QWidgetItem::widget +128 QLayoutItem::layout +136 QLayoutItem::spacerItem + +Class QWidgetItemV2 + size=88 align=8 + base size=88 base align=8 +QWidgetItemV2 (0x7f96de7c2700) 0 + vptr=((& QWidgetItemV2::_ZTV13QWidgetItemV2) + 16u) + QWidgetItem (0x7f96de7c2770) 0 + primary-for QWidgetItemV2 (0x7f96de7c2700) + QLayoutItem (0x7f96de7c27e0) 0 + primary-for QWidgetItem (0x7f96de7c2770) + +Class QLayoutIterator + size=16 align=8 + base size=12 base align=8 +QLayoutIterator (0x7f96de7d1540) 0 + +Vtable for QLayout +QLayout::_ZTV7QLayout: 45u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QLayout) +16 QLayout::metaObject +24 QLayout::qt_metacast +32 QLayout::qt_metacall +40 QLayout::~QLayout +48 QLayout::~QLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QLayout::invalidate +120 QLayout::geometry +128 __cxa_pure_virtual +136 QLayout::expandingDirections +144 QLayout::minimumSize +152 QLayout::maximumSize +160 QLayout::setGeometry +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 QLayout::indexOf +192 __cxa_pure_virtual +200 QLayout::isEmpty +208 QLayout::layout +216 (int (*)(...))-0x00000000000000010 +224 (int (*)(...))(& _ZTI7QLayout) +232 QLayout::_ZThn16_N7QLayoutD1Ev +240 QLayout::_ZThn16_N7QLayoutD0Ev +248 __cxa_pure_virtual +256 QLayout::_ZThn16_NK7QLayout11minimumSizeEv +264 QLayout::_ZThn16_NK7QLayout11maximumSizeEv +272 QLayout::_ZThn16_NK7QLayout19expandingDirectionsEv +280 QLayout::_ZThn16_N7QLayout11setGeometryERK5QRect +288 QLayout::_ZThn16_NK7QLayout8geometryEv +296 QLayout::_ZThn16_NK7QLayout7isEmptyEv +304 QLayoutItem::hasHeightForWidth +312 QLayoutItem::heightForWidth +320 QLayoutItem::minimumHeightForWidth +328 QLayout::_ZThn16_N7QLayout10invalidateEv +336 QLayoutItem::widget +344 QLayout::_ZThn16_N7QLayout6layoutEv +352 QLayoutItem::spacerItem + +Class QLayout + size=32 align=8 + base size=28 base align=8 +QLayout (0x7f96de7df180) 0 + vptr=((& QLayout::_ZTV7QLayout) + 16u) + QObject (0x7f96de7de690) 0 + primary-for QLayout (0x7f96de7df180) + QLayoutItem (0x7f96de7de700) 16 + vptr=((& QLayout::_ZTV7QLayout) + 232u) + +Vtable for QBoxLayout +QBoxLayout::_ZTV10QBoxLayout: 49u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QBoxLayout) +16 QBoxLayout::metaObject +24 QBoxLayout::qt_metacast +32 QBoxLayout::qt_metacall +40 QBoxLayout::~QBoxLayout +48 QBoxLayout::~QBoxLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QBoxLayout::invalidate +120 QLayout::geometry +128 QBoxLayout::addItem +136 QBoxLayout::expandingDirections +144 QBoxLayout::minimumSize +152 QBoxLayout::maximumSize +160 QBoxLayout::setGeometry +168 QBoxLayout::itemAt +176 QBoxLayout::takeAt +184 QLayout::indexOf +192 QBoxLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QBoxLayout::sizeHint +224 QBoxLayout::hasHeightForWidth +232 QBoxLayout::heightForWidth +240 QBoxLayout::minimumHeightForWidth +248 (int (*)(...))-0x00000000000000010 +256 (int (*)(...))(& _ZTI10QBoxLayout) +264 QBoxLayout::_ZThn16_N10QBoxLayoutD1Ev +272 QBoxLayout::_ZThn16_N10QBoxLayoutD0Ev +280 QBoxLayout::_ZThn16_NK10QBoxLayout8sizeHintEv +288 QBoxLayout::_ZThn16_NK10QBoxLayout11minimumSizeEv +296 QBoxLayout::_ZThn16_NK10QBoxLayout11maximumSizeEv +304 QBoxLayout::_ZThn16_NK10QBoxLayout19expandingDirectionsEv +312 QBoxLayout::_ZThn16_N10QBoxLayout11setGeometryERK5QRect +320 QLayout::_ZThn16_NK7QLayout8geometryEv +328 QLayout::_ZThn16_NK7QLayout7isEmptyEv +336 QBoxLayout::_ZThn16_NK10QBoxLayout17hasHeightForWidthEv +344 QBoxLayout::_ZThn16_NK10QBoxLayout14heightForWidthEi +352 QBoxLayout::_ZThn16_NK10QBoxLayout21minimumHeightForWidthEi +360 QBoxLayout::_ZThn16_N10QBoxLayout10invalidateEv +368 QLayoutItem::widget +376 QLayout::_ZThn16_N7QLayout6layoutEv +384 QLayoutItem::spacerItem + +Class QBoxLayout + size=32 align=8 + base size=28 base align=8 +QBoxLayout (0x7f96de618bd0) 0 + vptr=((& QBoxLayout::_ZTV10QBoxLayout) + 16u) + QLayout (0x7f96de61c200) 0 + primary-for QBoxLayout (0x7f96de618bd0) + QObject (0x7f96de618c40) 0 + primary-for QLayout (0x7f96de61c200) + QLayoutItem (0x7f96de618cb0) 16 + vptr=((& QBoxLayout::_ZTV10QBoxLayout) + 264u) + +Vtable for QHBoxLayout +QHBoxLayout::_ZTV11QHBoxLayout: 49u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QHBoxLayout) +16 QHBoxLayout::metaObject +24 QHBoxLayout::qt_metacast +32 QHBoxLayout::qt_metacall +40 QHBoxLayout::~QHBoxLayout +48 QHBoxLayout::~QHBoxLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QBoxLayout::invalidate +120 QLayout::geometry +128 QBoxLayout::addItem +136 QBoxLayout::expandingDirections +144 QBoxLayout::minimumSize +152 QBoxLayout::maximumSize +160 QBoxLayout::setGeometry +168 QBoxLayout::itemAt +176 QBoxLayout::takeAt +184 QLayout::indexOf +192 QBoxLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QBoxLayout::sizeHint +224 QBoxLayout::hasHeightForWidth +232 QBoxLayout::heightForWidth +240 QBoxLayout::minimumHeightForWidth +248 (int (*)(...))-0x00000000000000010 +256 (int (*)(...))(& _ZTI11QHBoxLayout) +264 QHBoxLayout::_ZThn16_N11QHBoxLayoutD1Ev +272 QHBoxLayout::_ZThn16_N11QHBoxLayoutD0Ev +280 QBoxLayout::_ZThn16_NK10QBoxLayout8sizeHintEv +288 QBoxLayout::_ZThn16_NK10QBoxLayout11minimumSizeEv +296 QBoxLayout::_ZThn16_NK10QBoxLayout11maximumSizeEv +304 QBoxLayout::_ZThn16_NK10QBoxLayout19expandingDirectionsEv +312 QBoxLayout::_ZThn16_N10QBoxLayout11setGeometryERK5QRect +320 QLayout::_ZThn16_NK7QLayout8geometryEv +328 QLayout::_ZThn16_NK7QLayout7isEmptyEv +336 QBoxLayout::_ZThn16_NK10QBoxLayout17hasHeightForWidthEv +344 QBoxLayout::_ZThn16_NK10QBoxLayout14heightForWidthEi +352 QBoxLayout::_ZThn16_NK10QBoxLayout21minimumHeightForWidthEi +360 QBoxLayout::_ZThn16_N10QBoxLayout10invalidateEv +368 QLayoutItem::widget +376 QLayout::_ZThn16_N7QLayout6layoutEv +384 QLayoutItem::spacerItem + +Class QHBoxLayout + size=32 align=8 + base size=28 base align=8 +QHBoxLayout (0x7f96de646620) 0 + vptr=((& QHBoxLayout::_ZTV11QHBoxLayout) + 16u) + QBoxLayout (0x7f96de646690) 0 + primary-for QHBoxLayout (0x7f96de646620) + QLayout (0x7f96de61cf80) 0 + primary-for QBoxLayout (0x7f96de646690) + QObject (0x7f96de646700) 0 + primary-for QLayout (0x7f96de61cf80) + QLayoutItem (0x7f96de646770) 16 + vptr=((& QHBoxLayout::_ZTV11QHBoxLayout) + 264u) + +Vtable for QVBoxLayout +QVBoxLayout::_ZTV11QVBoxLayout: 49u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QVBoxLayout) +16 QVBoxLayout::metaObject +24 QVBoxLayout::qt_metacast +32 QVBoxLayout::qt_metacall +40 QVBoxLayout::~QVBoxLayout +48 QVBoxLayout::~QVBoxLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QBoxLayout::invalidate +120 QLayout::geometry +128 QBoxLayout::addItem +136 QBoxLayout::expandingDirections +144 QBoxLayout::minimumSize +152 QBoxLayout::maximumSize +160 QBoxLayout::setGeometry +168 QBoxLayout::itemAt +176 QBoxLayout::takeAt +184 QLayout::indexOf +192 QBoxLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QBoxLayout::sizeHint +224 QBoxLayout::hasHeightForWidth +232 QBoxLayout::heightForWidth +240 QBoxLayout::minimumHeightForWidth +248 (int (*)(...))-0x00000000000000010 +256 (int (*)(...))(& _ZTI11QVBoxLayout) +264 QVBoxLayout::_ZThn16_N11QVBoxLayoutD1Ev +272 QVBoxLayout::_ZThn16_N11QVBoxLayoutD0Ev +280 QBoxLayout::_ZThn16_NK10QBoxLayout8sizeHintEv +288 QBoxLayout::_ZThn16_NK10QBoxLayout11minimumSizeEv +296 QBoxLayout::_ZThn16_NK10QBoxLayout11maximumSizeEv +304 QBoxLayout::_ZThn16_NK10QBoxLayout19expandingDirectionsEv +312 QBoxLayout::_ZThn16_N10QBoxLayout11setGeometryERK5QRect +320 QLayout::_ZThn16_NK7QLayout8geometryEv +328 QLayout::_ZThn16_NK7QLayout7isEmptyEv +336 QBoxLayout::_ZThn16_NK10QBoxLayout17hasHeightForWidthEv +344 QBoxLayout::_ZThn16_NK10QBoxLayout14heightForWidthEi +352 QBoxLayout::_ZThn16_NK10QBoxLayout21minimumHeightForWidthEi +360 QBoxLayout::_ZThn16_N10QBoxLayout10invalidateEv +368 QLayoutItem::widget +376 QLayout::_ZThn16_N7QLayout6layoutEv +384 QLayoutItem::spacerItem + +Class QVBoxLayout + size=32 align=8 + base size=28 base align=8 +QVBoxLayout (0x7f96de652cb0) 0 + vptr=((& QVBoxLayout::_ZTV11QVBoxLayout) + 16u) + QBoxLayout (0x7f96de652d20) 0 + primary-for QVBoxLayout (0x7f96de652cb0) + QLayout (0x7f96de64b680) 0 + primary-for QBoxLayout (0x7f96de652d20) + QObject (0x7f96de652d90) 0 + primary-for QLayout (0x7f96de64b680) + QLayoutItem (0x7f96de652e00) 16 + vptr=((& QVBoxLayout::_ZTV11QVBoxLayout) + 264u) + +Vtable for QGridLayout +QGridLayout::_ZTV11QGridLayout: 49u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QGridLayout) +16 QGridLayout::metaObject +24 QGridLayout::qt_metacast +32 QGridLayout::qt_metacall +40 QGridLayout::~QGridLayout +48 QGridLayout::~QGridLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGridLayout::invalidate +120 QLayout::geometry +128 QGridLayout::addItem +136 QGridLayout::expandingDirections +144 QGridLayout::minimumSize +152 QGridLayout::maximumSize +160 QGridLayout::setGeometry +168 QGridLayout::itemAt +176 QGridLayout::takeAt +184 QLayout::indexOf +192 QGridLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QGridLayout::sizeHint +224 QGridLayout::hasHeightForWidth +232 QGridLayout::heightForWidth +240 QGridLayout::minimumHeightForWidth +248 (int (*)(...))-0x00000000000000010 +256 (int (*)(...))(& _ZTI11QGridLayout) +264 QGridLayout::_ZThn16_N11QGridLayoutD1Ev +272 QGridLayout::_ZThn16_N11QGridLayoutD0Ev +280 QGridLayout::_ZThn16_NK11QGridLayout8sizeHintEv +288 QGridLayout::_ZThn16_NK11QGridLayout11minimumSizeEv +296 QGridLayout::_ZThn16_NK11QGridLayout11maximumSizeEv +304 QGridLayout::_ZThn16_NK11QGridLayout19expandingDirectionsEv +312 QGridLayout::_ZThn16_N11QGridLayout11setGeometryERK5QRect +320 QLayout::_ZThn16_NK7QLayout8geometryEv +328 QLayout::_ZThn16_NK7QLayout7isEmptyEv +336 QGridLayout::_ZThn16_NK11QGridLayout17hasHeightForWidthEv +344 QGridLayout::_ZThn16_NK11QGridLayout14heightForWidthEi +352 QGridLayout::_ZThn16_NK11QGridLayout21minimumHeightForWidthEi +360 QGridLayout::_ZThn16_N11QGridLayout10invalidateEv +368 QLayoutItem::widget +376 QLayout::_ZThn16_N7QLayout6layoutEv +384 QLayoutItem::spacerItem + +Class QGridLayout + size=32 align=8 + base size=28 base align=8 +QGridLayout (0x7f96de6762a0) 0 + vptr=((& QGridLayout::_ZTV11QGridLayout) + 16u) + QLayout (0x7f96de64bd80) 0 + primary-for QGridLayout (0x7f96de6762a0) + QObject (0x7f96de676310) 0 + primary-for QLayout (0x7f96de64bd80) + QLayoutItem (0x7f96de676380) 16 + vptr=((& QGridLayout::_ZTV11QGridLayout) + 264u) + +Vtable for QFormLayout +QFormLayout::_ZTV11QFormLayout: 48u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFormLayout) +16 QFormLayout::metaObject +24 QFormLayout::qt_metacast +32 QFormLayout::qt_metacall +40 QFormLayout::~QFormLayout +48 QFormLayout::~QFormLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFormLayout::invalidate +120 QLayout::geometry +128 QFormLayout::addItem +136 QFormLayout::expandingDirections +144 QFormLayout::minimumSize +152 QLayout::maximumSize +160 QFormLayout::setGeometry +168 QFormLayout::itemAt +176 QFormLayout::takeAt +184 QLayout::indexOf +192 QFormLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QFormLayout::sizeHint +224 QFormLayout::hasHeightForWidth +232 QFormLayout::heightForWidth +240 (int (*)(...))-0x00000000000000010 +248 (int (*)(...))(& _ZTI11QFormLayout) +256 QFormLayout::_ZThn16_N11QFormLayoutD1Ev +264 QFormLayout::_ZThn16_N11QFormLayoutD0Ev +272 QFormLayout::_ZThn16_NK11QFormLayout8sizeHintEv +280 QFormLayout::_ZThn16_NK11QFormLayout11minimumSizeEv +288 QLayout::_ZThn16_NK7QLayout11maximumSizeEv +296 QFormLayout::_ZThn16_NK11QFormLayout19expandingDirectionsEv +304 QFormLayout::_ZThn16_N11QFormLayout11setGeometryERK5QRect +312 QLayout::_ZThn16_NK7QLayout8geometryEv +320 QLayout::_ZThn16_NK7QLayout7isEmptyEv +328 QFormLayout::_ZThn16_NK11QFormLayout17hasHeightForWidthEv +336 QFormLayout::_ZThn16_NK11QFormLayout14heightForWidthEi +344 QLayoutItem::minimumHeightForWidth +352 QFormLayout::_ZThn16_N11QFormLayout10invalidateEv +360 QLayoutItem::widget +368 QLayout::_ZThn16_N7QLayout6layoutEv +376 QLayoutItem::spacerItem + +Class QFormLayout + size=32 align=8 + base size=28 base align=8 +QFormLayout (0x7f96de6c3310) 0 + vptr=((& QFormLayout::_ZTV11QFormLayout) + 16u) + QLayout (0x7f96de6bdb80) 0 + primary-for QFormLayout (0x7f96de6c3310) + QObject (0x7f96de6c3380) 0 + primary-for QLayout (0x7f96de6bdb80) + QLayoutItem (0x7f96de6c33f0) 16 + vptr=((& QFormLayout::_ZTV11QFormLayout) + 256u) + +Vtable for QClipboard +QClipboard::_ZTV10QClipboard: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QClipboard) +16 QClipboard::metaObject +24 QClipboard::qt_metacast +32 QClipboard::qt_metacall +40 QClipboard::~QClipboard +48 QClipboard::~QClipboard +56 QClipboard::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QClipboard::connectNotify +104 QObject::disconnectNotify + +Class QClipboard + size=16 align=8 + base size=16 base align=8 +QClipboard (0x7f96de6ed770) 0 + vptr=((& QClipboard::_ZTV10QClipboard) + 16u) + QObject (0x7f96de6ed7e0) 0 + primary-for QClipboard (0x7f96de6ed770) + +Class QWhatsThis + size=1 align=1 + base size=0 base align=1 +QWhatsThis (0x7f96de70f4d0) 0 empty + +Vtable for QDesktopWidget +QDesktopWidget::_ZTV14QDesktopWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QDesktopWidget) +16 QDesktopWidget::metaObject +24 QDesktopWidget::qt_metacast +32 QDesktopWidget::qt_metacall +40 QDesktopWidget::~QDesktopWidget +48 QDesktopWidget::~QDesktopWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDesktopWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI14QDesktopWidget) +464 QDesktopWidget::_ZThn16_N14QDesktopWidgetD1Ev +472 QDesktopWidget::_ZThn16_N14QDesktopWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDesktopWidget + size=40 align=8 + base size=40 base align=8 +QDesktopWidget (0x7f96de70f5b0) 0 + vptr=((& QDesktopWidget::_ZTV14QDesktopWidget) + 16u) + QWidget (0x7f96de70b400) 0 + primary-for QDesktopWidget (0x7f96de70f5b0) + QObject (0x7f96de70f620) 0 + primary-for QWidget (0x7f96de70b400) + QPaintDevice (0x7f96de70f690) 16 + vptr=((& QDesktopWidget::_ZTV14QDesktopWidget) + 464u) + +Vtable for QShortcut +QShortcut::_ZTV9QShortcut: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QShortcut) +16 QShortcut::metaObject +24 QShortcut::qt_metacast +32 QShortcut::qt_metacall +40 QShortcut::~QShortcut +48 QShortcut::~QShortcut +56 QShortcut::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QShortcut + size=16 align=8 + base size=16 base align=8 +QShortcut (0x7f96de5355b0) 0 + vptr=((& QShortcut::_ZTV9QShortcut) + 16u) + QObject (0x7f96de535620) 0 + primary-for QShortcut (0x7f96de5355b0) + +Vtable for QSessionManager +QSessionManager::_ZTV15QSessionManager: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSessionManager) +16 QSessionManager::metaObject +24 QSessionManager::qt_metacast +32 QSessionManager::qt_metacall +40 QSessionManager::~QSessionManager +48 QSessionManager::~QSessionManager +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSessionManager + size=16 align=8 + base size=16 base align=8 +QSessionManager (0x7f96de548d20) 0 + vptr=((& QSessionManager::_ZTV15QSessionManager) + 16u) + QObject (0x7f96de548d90) 0 + primary-for QSessionManager (0x7f96de548d20) + +Vtable for QApplication +QApplication::_ZTV12QApplication: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QApplication) +16 QApplication::metaObject +24 QApplication::qt_metacast +32 QApplication::qt_metacall +40 QApplication::~QApplication +48 QApplication::~QApplication +56 QApplication::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QApplication::notify +120 QApplication::compressEvent +128 QApplication::x11EventFilter +136 QApplication::x11ClientMessage +144 QApplication::commitData +152 QApplication::saveState + +Class QApplication + size=16 align=8 + base size=16 base align=8 +QApplication (0x7f96de5662a0) 0 + vptr=((& QApplication::_ZTV12QApplication) + 16u) + QCoreApplication (0x7f96de566310) 0 + primary-for QApplication (0x7f96de5662a0) + QObject (0x7f96de566380) 0 + primary-for QCoreApplication (0x7f96de566310) + +Vtable for QAction +QAction::_ZTV7QAction: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QAction) +16 QAction::metaObject +24 QAction::qt_metacast +32 QAction::qt_metacall +40 QAction::~QAction +48 QAction::~QAction +56 QAction::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QAction + size=16 align=8 + base size=16 base align=8 +QAction (0x7f96de5aeee0) 0 + vptr=((& QAction::_ZTV7QAction) + 16u) + QObject (0x7f96de5aef50) 0 + primary-for QAction (0x7f96de5aeee0) + +Vtable for QActionGroup +QActionGroup::_ZTV12QActionGroup: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QActionGroup) +16 QActionGroup::metaObject +24 QActionGroup::qt_metacast +32 QActionGroup::qt_metacall +40 QActionGroup::~QActionGroup +48 QActionGroup::~QActionGroup +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QActionGroup + size=16 align=8 + base size=16 base align=8 +QActionGroup (0x7f96de5f1700) 0 + vptr=((& QActionGroup::_ZTV12QActionGroup) + 16u) + QObject (0x7f96de5f1770) 0 + primary-for QActionGroup (0x7f96de5f1700) + +Vtable for QSound +QSound::_ZTV6QSound: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QSound) +16 QSound::metaObject +24 QSound::qt_metacast +32 QSound::qt_metacall +40 QSound::~QSound +48 QSound::~QSound +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSound + size=16 align=8 + base size=16 base align=8 +QSound (0x7f96de60eaf0) 0 + vptr=((& QSound::_ZTV6QSound) + 16u) + QObject (0x7f96de60eb60) 0 + primary-for QSound (0x7f96de60eaf0) + +Vtable for QStackedLayout +QStackedLayout::_ZTV14QStackedLayout: 46u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QStackedLayout) +16 QStackedLayout::metaObject +24 QStackedLayout::qt_metacast +32 QStackedLayout::qt_metacall +40 QStackedLayout::~QStackedLayout +48 QStackedLayout::~QStackedLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QLayout::invalidate +120 QLayout::geometry +128 QStackedLayout::addItem +136 QLayout::expandingDirections +144 QStackedLayout::minimumSize +152 QLayout::maximumSize +160 QStackedLayout::setGeometry +168 QStackedLayout::itemAt +176 QStackedLayout::takeAt +184 QLayout::indexOf +192 QStackedLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QStackedLayout::sizeHint +224 (int (*)(...))-0x00000000000000010 +232 (int (*)(...))(& _ZTI14QStackedLayout) +240 QStackedLayout::_ZThn16_N14QStackedLayoutD1Ev +248 QStackedLayout::_ZThn16_N14QStackedLayoutD0Ev +256 QStackedLayout::_ZThn16_NK14QStackedLayout8sizeHintEv +264 QStackedLayout::_ZThn16_NK14QStackedLayout11minimumSizeEv +272 QLayout::_ZThn16_NK7QLayout11maximumSizeEv +280 QLayout::_ZThn16_NK7QLayout19expandingDirectionsEv +288 QStackedLayout::_ZThn16_N14QStackedLayout11setGeometryERK5QRect +296 QLayout::_ZThn16_NK7QLayout8geometryEv +304 QLayout::_ZThn16_NK7QLayout7isEmptyEv +312 QLayoutItem::hasHeightForWidth +320 QLayoutItem::heightForWidth +328 QLayoutItem::minimumHeightForWidth +336 QLayout::_ZThn16_N7QLayout10invalidateEv +344 QLayoutItem::widget +352 QLayout::_ZThn16_N7QLayout6layoutEv +360 QLayoutItem::spacerItem + +Class QStackedLayout + size=32 align=8 + base size=28 base align=8 +QStackedLayout (0x7f96de44d2a0) 0 + vptr=((& QStackedLayout::_ZTV14QStackedLayout) + 16u) + QLayout (0x7f96de434a80) 0 + primary-for QStackedLayout (0x7f96de44d2a0) + QObject (0x7f96de44d310) 0 + primary-for QLayout (0x7f96de434a80) + QLayoutItem (0x7f96de44d380) 16 + vptr=((& QStackedLayout::_ZTV14QStackedLayout) + 240u) + +Vtable for QWidgetAction +QWidgetAction::_ZTV13QWidgetAction: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QWidgetAction) +16 QWidgetAction::metaObject +24 QWidgetAction::qt_metacast +32 QWidgetAction::qt_metacall +40 QWidgetAction::~QWidgetAction +48 QWidgetAction::~QWidgetAction +56 QWidgetAction::event +64 QWidgetAction::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidgetAction::createWidget +120 QWidgetAction::deleteWidget + +Class QWidgetAction + size=16 align=8 + base size=16 base align=8 +QWidgetAction (0x7f96de46a2a0) 0 + vptr=((& QWidgetAction::_ZTV13QWidgetAction) + 16u) + QAction (0x7f96de46a310) 0 + primary-for QWidgetAction (0x7f96de46a2a0) + QObject (0x7f96de46a380) 0 + primary-for QAction (0x7f96de46a310) + +Class QToolTip + size=1 align=1 + base size=0 base align=1 +QToolTip (0x7f96de47dc40) 0 empty + +Vtable for QCommonStyle +QCommonStyle::_ZTV12QCommonStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QCommonStyle) +16 QCommonStyle::metaObject +24 QCommonStyle::qt_metacast +32 QCommonStyle::qt_metacall +40 QCommonStyle::~QCommonStyle +48 QCommonStyle::~QCommonStyle +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCommonStyle::polish +120 QCommonStyle::unpolish +128 QCommonStyle::polish +136 QCommonStyle::unpolish +144 QCommonStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QStyle::standardPalette +192 QCommonStyle::drawPrimitive +200 QCommonStyle::drawControl +208 QCommonStyle::subElementRect +216 QCommonStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QCommonStyle::subControlRect +240 QCommonStyle::pixelMetric +248 QCommonStyle::sizeFromContents +256 QCommonStyle::styleHint +264 QCommonStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QCommonStyle + size=16 align=8 + base size=16 base align=8 +QCommonStyle (0x7f96de489230) 0 + vptr=((& QCommonStyle::_ZTV12QCommonStyle) + 16u) + QStyle (0x7f96de4892a0) 0 + primary-for QCommonStyle (0x7f96de489230) + QObject (0x7f96de489310) 0 + primary-for QStyle (0x7f96de4892a0) + +Vtable for QMotifStyle +QMotifStyle::_ZTV11QMotifStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMotifStyle) +16 QMotifStyle::metaObject +24 QMotifStyle::qt_metacast +32 QMotifStyle::qt_metacall +40 QMotifStyle::~QMotifStyle +48 QMotifStyle::~QMotifStyle +56 QMotifStyle::event +64 QMotifStyle::eventFilter +72 QMotifStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMotifStyle::polish +120 QMotifStyle::unpolish +128 QMotifStyle::polish +136 QMotifStyle::unpolish +144 QMotifStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QMotifStyle::standardPalette +192 QMotifStyle::drawPrimitive +200 QMotifStyle::drawControl +208 QMotifStyle::subElementRect +216 QMotifStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QMotifStyle::subControlRect +240 QMotifStyle::pixelMetric +248 QMotifStyle::sizeFromContents +256 QMotifStyle::styleHint +264 QMotifStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QMotifStyle + size=32 align=8 + base size=25 base align=8 +QMotifStyle (0x7f96de4a8230) 0 + vptr=((& QMotifStyle::_ZTV11QMotifStyle) + 16u) + QCommonStyle (0x7f96de4a82a0) 0 + primary-for QMotifStyle (0x7f96de4a8230) + QStyle (0x7f96de4a8310) 0 + primary-for QCommonStyle (0x7f96de4a82a0) + QObject (0x7f96de4a8380) 0 + primary-for QStyle (0x7f96de4a8310) + +Vtable for QWindowsStyle +QWindowsStyle::_ZTV13QWindowsStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QWindowsStyle) +16 QWindowsStyle::metaObject +24 QWindowsStyle::qt_metacast +32 QWindowsStyle::qt_metacall +40 QWindowsStyle::~QWindowsStyle +48 QWindowsStyle::~QWindowsStyle +56 QObject::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWindowsStyle::polish +120 QWindowsStyle::unpolish +128 QWindowsStyle::polish +136 QWindowsStyle::unpolish +144 QWindowsStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QStyle::standardPalette +192 QWindowsStyle::drawPrimitive +200 QWindowsStyle::drawControl +208 QWindowsStyle::subElementRect +216 QWindowsStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QCommonStyle::subControlRect +240 QWindowsStyle::pixelMetric +248 QWindowsStyle::sizeFromContents +256 QWindowsStyle::styleHint +264 QWindowsStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QWindowsStyle + size=24 align=8 + base size=24 base align=8 +QWindowsStyle (0x7f96de4d1150) 0 + vptr=((& QWindowsStyle::_ZTV13QWindowsStyle) + 16u) + QCommonStyle (0x7f96de4d11c0) 0 + primary-for QWindowsStyle (0x7f96de4d1150) + QStyle (0x7f96de4d1230) 0 + primary-for QCommonStyle (0x7f96de4d11c0) + QObject (0x7f96de4d12a0) 0 + primary-for QStyle (0x7f96de4d1230) + +Vtable for QCleanlooksStyle +QCleanlooksStyle::_ZTV16QCleanlooksStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QCleanlooksStyle) +16 QCleanlooksStyle::metaObject +24 QCleanlooksStyle::qt_metacast +32 QCleanlooksStyle::qt_metacall +40 QCleanlooksStyle::~QCleanlooksStyle +48 QCleanlooksStyle::~QCleanlooksStyle +56 QObject::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCleanlooksStyle::polish +120 QCleanlooksStyle::unpolish +128 QCleanlooksStyle::polish +136 QCleanlooksStyle::unpolish +144 QCleanlooksStyle::polish +152 QStyle::itemTextRect +160 QCleanlooksStyle::itemPixmapRect +168 QCleanlooksStyle::drawItemText +176 QCleanlooksStyle::drawItemPixmap +184 QCleanlooksStyle::standardPalette +192 QCleanlooksStyle::drawPrimitive +200 QCleanlooksStyle::drawControl +208 QCleanlooksStyle::subElementRect +216 QCleanlooksStyle::drawComplexControl +224 QCleanlooksStyle::hitTestComplexControl +232 QCleanlooksStyle::subControlRect +240 QCleanlooksStyle::pixelMetric +248 QCleanlooksStyle::sizeFromContents +256 QCleanlooksStyle::styleHint +264 QCleanlooksStyle::standardPixmap +272 QCleanlooksStyle::generatedIconPixmap + +Class QCleanlooksStyle + size=24 align=8 + base size=24 base align=8 +QCleanlooksStyle (0x7f96de4e9ee0) 0 + vptr=((& QCleanlooksStyle::_ZTV16QCleanlooksStyle) + 16u) + QWindowsStyle (0x7f96de4e9f50) 0 + primary-for QCleanlooksStyle (0x7f96de4e9ee0) + QCommonStyle (0x7f96de4f0000) 0 + primary-for QWindowsStyle (0x7f96de4e9f50) + QStyle (0x7f96de4f0070) 0 + primary-for QCommonStyle (0x7f96de4f0000) + QObject (0x7f96de4f00e0) 0 + primary-for QStyle (0x7f96de4f0070) + +Vtable for QStyleFactoryInterface +QStyleFactoryInterface::_ZTV22QStyleFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QStyleFactoryInterface) +16 QStyleFactoryInterface::~QStyleFactoryInterface +24 QStyleFactoryInterface::~QStyleFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QStyleFactoryInterface + size=8 align=8 + base size=8 base align=8 +QStyleFactoryInterface (0x7f96de50ccb0) 0 nearly-empty + vptr=((& QStyleFactoryInterface::_ZTV22QStyleFactoryInterface) + 16u) + QFactoryInterface (0x7f96de50cd20) 0 nearly-empty + primary-for QStyleFactoryInterface (0x7f96de50ccb0) + +Vtable for QStylePlugin +QStylePlugin::_ZTV12QStylePlugin: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QStylePlugin) +16 QStylePlugin::metaObject +24 QStylePlugin::qt_metacast +32 QStylePlugin::qt_metacall +40 QStylePlugin::~QStylePlugin +48 QStylePlugin::~QStylePlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI12QStylePlugin) +144 QStylePlugin::_ZThn16_N12QStylePluginD1Ev +152 QStylePlugin::_ZThn16_N12QStylePluginD0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QStylePlugin + size=24 align=8 + base size=24 base align=8 +QStylePlugin (0x7f96de4f1f80) 0 + vptr=((& QStylePlugin::_ZTV12QStylePlugin) + 16u) + QObject (0x7f96de316540) 0 + primary-for QStylePlugin (0x7f96de4f1f80) + QStyleFactoryInterface (0x7f96de3165b0) 16 nearly-empty + vptr=((& QStylePlugin::_ZTV12QStylePlugin) + 144u) + QFactoryInterface (0x7f96de316620) 16 nearly-empty + primary-for QStyleFactoryInterface (0x7f96de3165b0) + +Vtable for QWindowsXPStyle +QWindowsXPStyle::_ZTV15QWindowsXPStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QWindowsXPStyle) +16 QWindowsXPStyle::metaObject +24 QWindowsXPStyle::qt_metacast +32 QWindowsXPStyle::qt_metacall +40 QWindowsXPStyle::~QWindowsXPStyle +48 QWindowsXPStyle::~QWindowsXPStyle +56 QObject::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWindowsXPStyle::polish +120 QWindowsXPStyle::unpolish +128 QWindowsXPStyle::polish +136 QWindowsXPStyle::unpolish +144 QWindowsXPStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QWindowsXPStyle::standardPalette +192 QWindowsXPStyle::drawPrimitive +200 QWindowsXPStyle::drawControl +208 QWindowsXPStyle::subElementRect +216 QWindowsXPStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QWindowsXPStyle::subControlRect +240 QWindowsXPStyle::pixelMetric +248 QWindowsXPStyle::sizeFromContents +256 QWindowsXPStyle::styleHint +264 QWindowsXPStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QWindowsXPStyle + size=32 align=8 + base size=32 base align=8 +QWindowsXPStyle (0x7f96de3274d0) 0 + vptr=((& QWindowsXPStyle::_ZTV15QWindowsXPStyle) + 16u) + QWindowsStyle (0x7f96de327540) 0 + primary-for QWindowsXPStyle (0x7f96de3274d0) + QCommonStyle (0x7f96de3275b0) 0 + primary-for QWindowsStyle (0x7f96de327540) + QStyle (0x7f96de327620) 0 + primary-for QCommonStyle (0x7f96de3275b0) + QObject (0x7f96de327690) 0 + primary-for QStyle (0x7f96de327620) + +Vtable for QCDEStyle +QCDEStyle::_ZTV9QCDEStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QCDEStyle) +16 QCDEStyle::metaObject +24 QCDEStyle::qt_metacast +32 QCDEStyle::qt_metacall +40 QCDEStyle::~QCDEStyle +48 QCDEStyle::~QCDEStyle +56 QMotifStyle::event +64 QMotifStyle::eventFilter +72 QMotifStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMotifStyle::polish +120 QMotifStyle::unpolish +128 QMotifStyle::polish +136 QMotifStyle::unpolish +144 QMotifStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QCDEStyle::standardPalette +192 QCDEStyle::drawPrimitive +200 QCDEStyle::drawControl +208 QMotifStyle::subElementRect +216 QMotifStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QMotifStyle::subControlRect +240 QCDEStyle::pixelMetric +248 QMotifStyle::sizeFromContents +256 QMotifStyle::styleHint +264 QMotifStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QCDEStyle + size=32 align=8 + base size=25 base align=8 +QCDEStyle (0x7f96de34a380) 0 + vptr=((& QCDEStyle::_ZTV9QCDEStyle) + 16u) + QMotifStyle (0x7f96de34a3f0) 0 + primary-for QCDEStyle (0x7f96de34a380) + QCommonStyle (0x7f96de34a460) 0 + primary-for QMotifStyle (0x7f96de34a3f0) + QStyle (0x7f96de34a4d0) 0 + primary-for QCommonStyle (0x7f96de34a460) + QObject (0x7f96de34a540) 0 + primary-for QStyle (0x7f96de34a4d0) + +Vtable for QPlastiqueStyle +QPlastiqueStyle::_ZTV15QPlastiqueStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QPlastiqueStyle) +16 QPlastiqueStyle::metaObject +24 QPlastiqueStyle::qt_metacast +32 QPlastiqueStyle::qt_metacall +40 QPlastiqueStyle::~QPlastiqueStyle +48 QPlastiqueStyle::~QPlastiqueStyle +56 QObject::event +64 QPlastiqueStyle::eventFilter +72 QPlastiqueStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QPlastiqueStyle::polish +120 QPlastiqueStyle::unpolish +128 QPlastiqueStyle::polish +136 QPlastiqueStyle::unpolish +144 QPlastiqueStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QPlastiqueStyle::standardPalette +192 QPlastiqueStyle::drawPrimitive +200 QPlastiqueStyle::drawControl +208 QPlastiqueStyle::subElementRect +216 QPlastiqueStyle::drawComplexControl +224 QPlastiqueStyle::hitTestComplexControl +232 QPlastiqueStyle::subControlRect +240 QPlastiqueStyle::pixelMetric +248 QPlastiqueStyle::sizeFromContents +256 QPlastiqueStyle::styleHint +264 QPlastiqueStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QPlastiqueStyle + size=32 align=8 + base size=32 base align=8 +QPlastiqueStyle (0x7f96de35d4d0) 0 + vptr=((& QPlastiqueStyle::_ZTV15QPlastiqueStyle) + 16u) + QWindowsStyle (0x7f96de35d540) 0 + primary-for QPlastiqueStyle (0x7f96de35d4d0) + QCommonStyle (0x7f96de35d5b0) 0 + primary-for QWindowsStyle (0x7f96de35d540) + QStyle (0x7f96de35d620) 0 + primary-for QCommonStyle (0x7f96de35d5b0) + QObject (0x7f96de35d690) 0 + primary-for QStyle (0x7f96de35d620) + +Vtable for QWindowsVistaStyle +QWindowsVistaStyle::_ZTV18QWindowsVistaStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QWindowsVistaStyle) +16 QWindowsVistaStyle::metaObject +24 QWindowsVistaStyle::qt_metacast +32 QWindowsVistaStyle::qt_metacall +40 QWindowsVistaStyle::~QWindowsVistaStyle +48 QWindowsVistaStyle::~QWindowsVistaStyle +56 QWindowsVistaStyle::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWindowsVistaStyle::polish +120 QWindowsVistaStyle::unpolish +128 QWindowsVistaStyle::polish +136 QWindowsVistaStyle::unpolish +144 QWindowsVistaStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QWindowsVistaStyle::standardPalette +192 QWindowsVistaStyle::drawPrimitive +200 QWindowsVistaStyle::drawControl +208 QWindowsVistaStyle::subElementRect +216 QWindowsVistaStyle::drawComplexControl +224 QWindowsVistaStyle::hitTestComplexControl +232 QWindowsVistaStyle::subControlRect +240 QWindowsVistaStyle::pixelMetric +248 QWindowsVistaStyle::sizeFromContents +256 QWindowsVistaStyle::styleHint +264 QWindowsVistaStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QWindowsVistaStyle + size=32 align=8 + base size=32 base align=8 +QWindowsVistaStyle (0x7f96de37e620) 0 + vptr=((& QWindowsVistaStyle::_ZTV18QWindowsVistaStyle) + 16u) + QWindowsXPStyle (0x7f96de37e690) 0 + primary-for QWindowsVistaStyle (0x7f96de37e620) + QWindowsStyle (0x7f96de37e700) 0 + primary-for QWindowsXPStyle (0x7f96de37e690) + QCommonStyle (0x7f96de37e770) 0 + primary-for QWindowsStyle (0x7f96de37e700) + QStyle (0x7f96de37e7e0) 0 + primary-for QCommonStyle (0x7f96de37e770) + QObject (0x7f96de37e850) 0 + primary-for QStyle (0x7f96de37e7e0) + +Vtable for QWindowsCEStyle +QWindowsCEStyle::_ZTV15QWindowsCEStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QWindowsCEStyle) +16 QWindowsCEStyle::metaObject +24 QWindowsCEStyle::qt_metacast +32 QWindowsCEStyle::qt_metacall +40 QWindowsCEStyle::~QWindowsCEStyle +48 QWindowsCEStyle::~QWindowsCEStyle +56 QObject::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWindowsCEStyle::polish +120 QWindowsStyle::unpolish +128 QWindowsCEStyle::polish +136 QWindowsStyle::unpolish +144 QWindowsCEStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QWindowsCEStyle::drawItemText +176 QStyle::drawItemPixmap +184 QWindowsCEStyle::standardPalette +192 QWindowsCEStyle::drawPrimitive +200 QWindowsCEStyle::drawControl +208 QWindowsCEStyle::subElementRect +216 QWindowsCEStyle::drawComplexControl +224 QWindowsCEStyle::hitTestComplexControl +232 QWindowsCEStyle::subControlRect +240 QWindowsCEStyle::pixelMetric +248 QWindowsCEStyle::sizeFromContents +256 QWindowsCEStyle::styleHint +264 QWindowsCEStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QWindowsCEStyle + size=24 align=8 + base size=24 base align=8 +QWindowsCEStyle (0x7f96de39b620) 0 + vptr=((& QWindowsCEStyle::_ZTV15QWindowsCEStyle) + 16u) + QWindowsStyle (0x7f96de39b690) 0 + primary-for QWindowsCEStyle (0x7f96de39b620) + QCommonStyle (0x7f96de39b700) 0 + primary-for QWindowsStyle (0x7f96de39b690) + QStyle (0x7f96de39b770) 0 + primary-for QCommonStyle (0x7f96de39b700) + QObject (0x7f96de39b7e0) 0 + primary-for QStyle (0x7f96de39b770) + +Vtable for QWindowsMobileStyle +QWindowsMobileStyle::_ZTV19QWindowsMobileStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QWindowsMobileStyle) +16 QWindowsMobileStyle::metaObject +24 QWindowsMobileStyle::qt_metacast +32 QWindowsMobileStyle::qt_metacall +40 QWindowsMobileStyle::~QWindowsMobileStyle +48 QWindowsMobileStyle::~QWindowsMobileStyle +56 QObject::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWindowsMobileStyle::polish +120 QWindowsMobileStyle::unpolish +128 QWindowsMobileStyle::polish +136 QWindowsMobileStyle::unpolish +144 QWindowsMobileStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QWindowsMobileStyle::standardPalette +192 QWindowsMobileStyle::drawPrimitive +200 QWindowsMobileStyle::drawControl +208 QWindowsMobileStyle::subElementRect +216 QWindowsMobileStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QWindowsMobileStyle::subControlRect +240 QWindowsMobileStyle::pixelMetric +248 QWindowsMobileStyle::sizeFromContents +256 QWindowsMobileStyle::styleHint +264 QWindowsMobileStyle::standardPixmap +272 QWindowsMobileStyle::generatedIconPixmap + +Class QWindowsMobileStyle + size=24 align=8 + base size=24 base align=8 +QWindowsMobileStyle (0x7f96de3aed20) 0 + vptr=((& QWindowsMobileStyle::_ZTV19QWindowsMobileStyle) + 16u) + QWindowsStyle (0x7f96de3aed90) 0 + primary-for QWindowsMobileStyle (0x7f96de3aed20) + QCommonStyle (0x7f96de3aee00) 0 + primary-for QWindowsStyle (0x7f96de3aed90) + QStyle (0x7f96de3aee70) 0 + primary-for QCommonStyle (0x7f96de3aee00) + QObject (0x7f96de3aeee0) 0 + primary-for QStyle (0x7f96de3aee70) + +Class QStyleFactory + size=1 align=1 + base size=0 base align=1 +QStyleFactory (0x7f96de3d5690) 0 empty + +Vtable for QInputContextFactoryInterface +QInputContextFactoryInterface::_ZTV29QInputContextFactoryInterface: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI29QInputContextFactoryInterface) +16 QInputContextFactoryInterface::~QInputContextFactoryInterface +24 QInputContextFactoryInterface::~QInputContextFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual + +Class QInputContextFactoryInterface + size=8 align=8 + base size=8 base align=8 +QInputContextFactoryInterface (0x7f96de3d5700) 0 nearly-empty + vptr=((& QInputContextFactoryInterface::_ZTV29QInputContextFactoryInterface) + 16u) + QFactoryInterface (0x7f96de3d5770) 0 nearly-empty + primary-for QInputContextFactoryInterface (0x7f96de3d5700) + +Vtable for QInputContextPlugin +QInputContextPlugin::_ZTV19QInputContextPlugin: 28u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QInputContextPlugin) +16 QInputContextPlugin::metaObject +24 QInputContextPlugin::qt_metacast +32 QInputContextPlugin::qt_metacall +40 QInputContextPlugin::~QInputContextPlugin +48 QInputContextPlugin::~QInputContextPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 (int (*)(...))-0x00000000000000010 +160 (int (*)(...))(& _ZTI19QInputContextPlugin) +168 QInputContextPlugin::_ZThn16_N19QInputContextPluginD1Ev +176 QInputContextPlugin::_ZThn16_N19QInputContextPluginD0Ev +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 __cxa_pure_virtual +208 __cxa_pure_virtual +216 __cxa_pure_virtual + +Class QInputContextPlugin + size=24 align=8 + base size=24 base align=8 +QInputContextPlugin (0x7f96de3cfd80) 0 + vptr=((& QInputContextPlugin::_ZTV19QInputContextPlugin) + 16u) + QObject (0x7f96de3d5f50) 0 + primary-for QInputContextPlugin (0x7f96de3cfd80) + QInputContextFactoryInterface (0x7f96de3d57e0) 16 nearly-empty + vptr=((& QInputContextPlugin::_ZTV19QInputContextPlugin) + 168u) + QFactoryInterface (0x7f96de3e0000) 16 nearly-empty + primary-for QInputContextFactoryInterface (0x7f96de3d57e0) + +Class QInputContextFactory + size=1 align=1 + base size=0 base align=1 +QInputContextFactory (0x7f96de3e0ee0) 0 empty + +Vtable for QInputContext +QInputContext::_ZTV13QInputContext: 26u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QInputContext) +16 QInputContext::metaObject +24 QInputContext::qt_metacast +32 QInputContext::qt_metacall +40 QInputContext::~QInputContext +48 QInputContext::~QInputContext +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 QInputContext::update +144 QInputContext::mouseHandler +152 QInputContext::font +160 __cxa_pure_virtual +168 QInputContext::setFocusWidget +176 QInputContext::widgetDestroyed +184 QInputContext::actions +192 QInputContext::x11FilterEvent +200 QInputContext::filterEvent + +Class QInputContext + size=16 align=8 + base size=16 base align=8 +QInputContext (0x7f96de3e0f50) 0 + vptr=((& QInputContext::_ZTV13QInputContext) + 16u) + QObject (0x7f96de3e02a0) 0 + primary-for QInputContext (0x7f96de3e0f50) + +Vtable for QGraphicsItem +QGraphicsItem::_ZTV13QGraphicsItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QGraphicsItem) +16 QGraphicsItem::~QGraphicsItem +24 QGraphicsItem::~QGraphicsItem +32 QGraphicsItem::advance +40 __cxa_pure_virtual +48 QGraphicsItem::shape +56 QGraphicsItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsItem::isObscuredBy +88 QGraphicsItem::opaqueArea +96 __cxa_pure_virtual +104 QGraphicsItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsItem::supportsExtension +296 QGraphicsItem::setExtension +304 QGraphicsItem::extension + +Class QGraphicsItem + size=16 align=8 + base size=16 base align=8 +QGraphicsItem (0x7f96de407850) 0 + vptr=((& QGraphicsItem::_ZTV13QGraphicsItem) + 16u) + +Vtable for QAbstractGraphicsShapeItem +QAbstractGraphicsShapeItem::_ZTV26QAbstractGraphicsShapeItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QAbstractGraphicsShapeItem) +16 QAbstractGraphicsShapeItem::~QAbstractGraphicsShapeItem +24 QAbstractGraphicsShapeItem::~QAbstractGraphicsShapeItem +32 QGraphicsItem::advance +40 __cxa_pure_virtual +48 QGraphicsItem::shape +56 QGraphicsItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QAbstractGraphicsShapeItem::isObscuredBy +88 QAbstractGraphicsShapeItem::opaqueArea +96 __cxa_pure_virtual +104 QGraphicsItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsItem::supportsExtension +296 QGraphicsItem::setExtension +304 QGraphicsItem::extension + +Class QAbstractGraphicsShapeItem + size=16 align=8 + base size=16 base align=8 +QAbstractGraphicsShapeItem (0x7f96de2de380) 0 + vptr=((& QAbstractGraphicsShapeItem::_ZTV26QAbstractGraphicsShapeItem) + 16u) + QGraphicsItem (0x7f96de2de3f0) 0 + primary-for QAbstractGraphicsShapeItem (0x7f96de2de380) + +Vtable for QGraphicsPathItem +QGraphicsPathItem::_ZTV17QGraphicsPathItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QGraphicsPathItem) +16 QGraphicsPathItem::~QGraphicsPathItem +24 QGraphicsPathItem::~QGraphicsPathItem +32 QGraphicsItem::advance +40 QGraphicsPathItem::boundingRect +48 QGraphicsPathItem::shape +56 QGraphicsPathItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsPathItem::isObscuredBy +88 QGraphicsPathItem::opaqueArea +96 QGraphicsPathItem::paint +104 QGraphicsPathItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsPathItem::supportsExtension +296 QGraphicsPathItem::setExtension +304 QGraphicsPathItem::extension + +Class QGraphicsPathItem + size=16 align=8 + base size=16 base align=8 +QGraphicsPathItem (0x7f96de2ea1c0) 0 + vptr=((& QGraphicsPathItem::_ZTV17QGraphicsPathItem) + 16u) + QAbstractGraphicsShapeItem (0x7f96de2ea230) 0 + primary-for QGraphicsPathItem (0x7f96de2ea1c0) + QGraphicsItem (0x7f96de2ea2a0) 0 + primary-for QAbstractGraphicsShapeItem (0x7f96de2ea230) + +Vtable for QGraphicsRectItem +QGraphicsRectItem::_ZTV17QGraphicsRectItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QGraphicsRectItem) +16 QGraphicsRectItem::~QGraphicsRectItem +24 QGraphicsRectItem::~QGraphicsRectItem +32 QGraphicsItem::advance +40 QGraphicsRectItem::boundingRect +48 QGraphicsRectItem::shape +56 QGraphicsRectItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsRectItem::isObscuredBy +88 QGraphicsRectItem::opaqueArea +96 QGraphicsRectItem::paint +104 QGraphicsRectItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsRectItem::supportsExtension +296 QGraphicsRectItem::setExtension +304 QGraphicsRectItem::extension + +Class QGraphicsRectItem + size=16 align=8 + base size=16 base align=8 +QGraphicsRectItem (0x7f96de2fb150) 0 + vptr=((& QGraphicsRectItem::_ZTV17QGraphicsRectItem) + 16u) + QAbstractGraphicsShapeItem (0x7f96de2fb1c0) 0 + primary-for QGraphicsRectItem (0x7f96de2fb150) + QGraphicsItem (0x7f96de2fb230) 0 + primary-for QAbstractGraphicsShapeItem (0x7f96de2fb1c0) + +Vtable for QGraphicsEllipseItem +QGraphicsEllipseItem::_ZTV20QGraphicsEllipseItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QGraphicsEllipseItem) +16 QGraphicsEllipseItem::~QGraphicsEllipseItem +24 QGraphicsEllipseItem::~QGraphicsEllipseItem +32 QGraphicsItem::advance +40 QGraphicsEllipseItem::boundingRect +48 QGraphicsEllipseItem::shape +56 QGraphicsEllipseItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsEllipseItem::isObscuredBy +88 QGraphicsEllipseItem::opaqueArea +96 QGraphicsEllipseItem::paint +104 QGraphicsEllipseItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsEllipseItem::supportsExtension +296 QGraphicsEllipseItem::setExtension +304 QGraphicsEllipseItem::extension + +Class QGraphicsEllipseItem + size=16 align=8 + base size=16 base align=8 +QGraphicsEllipseItem (0x7f96de30b460) 0 + vptr=((& QGraphicsEllipseItem::_ZTV20QGraphicsEllipseItem) + 16u) + QAbstractGraphicsShapeItem (0x7f96de30b4d0) 0 + primary-for QGraphicsEllipseItem (0x7f96de30b460) + QGraphicsItem (0x7f96de30b540) 0 + primary-for QAbstractGraphicsShapeItem (0x7f96de30b4d0) + +Vtable for QGraphicsPolygonItem +QGraphicsPolygonItem::_ZTV20QGraphicsPolygonItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QGraphicsPolygonItem) +16 QGraphicsPolygonItem::~QGraphicsPolygonItem +24 QGraphicsPolygonItem::~QGraphicsPolygonItem +32 QGraphicsItem::advance +40 QGraphicsPolygonItem::boundingRect +48 QGraphicsPolygonItem::shape +56 QGraphicsPolygonItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsPolygonItem::isObscuredBy +88 QGraphicsPolygonItem::opaqueArea +96 QGraphicsPolygonItem::paint +104 QGraphicsPolygonItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsPolygonItem::supportsExtension +296 QGraphicsPolygonItem::setExtension +304 QGraphicsPolygonItem::extension + +Class QGraphicsPolygonItem + size=16 align=8 + base size=16 base align=8 +QGraphicsPolygonItem (0x7f96de11c770) 0 + vptr=((& QGraphicsPolygonItem::_ZTV20QGraphicsPolygonItem) + 16u) + QAbstractGraphicsShapeItem (0x7f96de11c7e0) 0 + primary-for QGraphicsPolygonItem (0x7f96de11c770) + QGraphicsItem (0x7f96de11c850) 0 + primary-for QAbstractGraphicsShapeItem (0x7f96de11c7e0) + +Vtable for QGraphicsLineItem +QGraphicsLineItem::_ZTV17QGraphicsLineItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QGraphicsLineItem) +16 QGraphicsLineItem::~QGraphicsLineItem +24 QGraphicsLineItem::~QGraphicsLineItem +32 QGraphicsItem::advance +40 QGraphicsLineItem::boundingRect +48 QGraphicsLineItem::shape +56 QGraphicsLineItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsLineItem::isObscuredBy +88 QGraphicsLineItem::opaqueArea +96 QGraphicsLineItem::paint +104 QGraphicsLineItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsLineItem::supportsExtension +296 QGraphicsLineItem::setExtension +304 QGraphicsLineItem::extension + +Class QGraphicsLineItem + size=16 align=8 + base size=16 base align=8 +QGraphicsLineItem (0x7f96de12d770) 0 + vptr=((& QGraphicsLineItem::_ZTV17QGraphicsLineItem) + 16u) + QGraphicsItem (0x7f96de12d7e0) 0 + primary-for QGraphicsLineItem (0x7f96de12d770) + +Vtable for QGraphicsPixmapItem +QGraphicsPixmapItem::_ZTV19QGraphicsPixmapItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QGraphicsPixmapItem) +16 QGraphicsPixmapItem::~QGraphicsPixmapItem +24 QGraphicsPixmapItem::~QGraphicsPixmapItem +32 QGraphicsItem::advance +40 QGraphicsPixmapItem::boundingRect +48 QGraphicsPixmapItem::shape +56 QGraphicsPixmapItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsPixmapItem::isObscuredBy +88 QGraphicsPixmapItem::opaqueArea +96 QGraphicsPixmapItem::paint +104 QGraphicsPixmapItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsPixmapItem::supportsExtension +296 QGraphicsPixmapItem::setExtension +304 QGraphicsPixmapItem::extension + +Class QGraphicsPixmapItem + size=16 align=8 + base size=16 base align=8 +QGraphicsPixmapItem (0x7f96de13ba10) 0 + vptr=((& QGraphicsPixmapItem::_ZTV19QGraphicsPixmapItem) + 16u) + QGraphicsItem (0x7f96de13ba80) 0 + primary-for QGraphicsPixmapItem (0x7f96de13ba10) + +Vtable for QGraphicsTextItem +QGraphicsTextItem::_ZTV17QGraphicsTextItem: 82u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QGraphicsTextItem) +16 QGraphicsTextItem::metaObject +24 QGraphicsTextItem::qt_metacast +32 QGraphicsTextItem::qt_metacall +40 QGraphicsTextItem::~QGraphicsTextItem +48 QGraphicsTextItem::~QGraphicsTextItem +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsTextItem::boundingRect +120 QGraphicsTextItem::shape +128 QGraphicsTextItem::contains +136 QGraphicsTextItem::paint +144 QGraphicsTextItem::isObscuredBy +152 QGraphicsTextItem::opaqueArea +160 QGraphicsTextItem::type +168 QGraphicsTextItem::sceneEvent +176 QGraphicsTextItem::mousePressEvent +184 QGraphicsTextItem::mouseMoveEvent +192 QGraphicsTextItem::mouseReleaseEvent +200 QGraphicsTextItem::mouseDoubleClickEvent +208 QGraphicsTextItem::contextMenuEvent +216 QGraphicsTextItem::keyPressEvent +224 QGraphicsTextItem::keyReleaseEvent +232 QGraphicsTextItem::focusInEvent +240 QGraphicsTextItem::focusOutEvent +248 QGraphicsTextItem::dragEnterEvent +256 QGraphicsTextItem::dragLeaveEvent +264 QGraphicsTextItem::dragMoveEvent +272 QGraphicsTextItem::dropEvent +280 QGraphicsTextItem::inputMethodEvent +288 QGraphicsTextItem::hoverEnterEvent +296 QGraphicsTextItem::hoverMoveEvent +304 QGraphicsTextItem::hoverLeaveEvent +312 QGraphicsTextItem::inputMethodQuery +320 QGraphicsTextItem::supportsExtension +328 QGraphicsTextItem::setExtension +336 QGraphicsTextItem::extension +344 (int (*)(...))-0x00000000000000010 +352 (int (*)(...))(& _ZTI17QGraphicsTextItem) +360 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItemD1Ev +368 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItemD0Ev +376 QGraphicsItem::advance +384 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem12boundingRectEv +392 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem5shapeEv +400 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem8containsERK7QPointF +408 QGraphicsItem::collidesWithItem +416 QGraphicsItem::collidesWithPath +424 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem12isObscuredByEPK13QGraphicsItem +432 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem10opaqueAreaEv +440 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget +448 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem4typeEv +456 QGraphicsItem::sceneEventFilter +464 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem10sceneEventEP6QEvent +472 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem16contextMenuEventEP30QGraphicsSceneContextMenuEvent +480 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem14dragEnterEventEP27QGraphicsSceneDragDropEvent +488 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem14dragLeaveEventEP27QGraphicsSceneDragDropEvent +496 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem13dragMoveEventEP27QGraphicsSceneDragDropEvent +504 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem9dropEventEP27QGraphicsSceneDragDropEvent +512 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem12focusInEventEP11QFocusEvent +520 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem13focusOutEventEP11QFocusEvent +528 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem15hoverEnterEventEP24QGraphicsSceneHoverEvent +536 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem14hoverMoveEventEP24QGraphicsSceneHoverEvent +544 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem15hoverLeaveEventEP24QGraphicsSceneHoverEvent +552 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem13keyPressEventEP9QKeyEvent +560 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem15keyReleaseEventEP9QKeyEvent +568 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem15mousePressEventEP24QGraphicsSceneMouseEvent +576 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem14mouseMoveEventEP24QGraphicsSceneMouseEvent +584 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem17mouseReleaseEventEP24QGraphicsSceneMouseEvent +592 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem21mouseDoubleClickEventEP24QGraphicsSceneMouseEvent +600 QGraphicsItem::wheelEvent +608 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem16inputMethodEventEP17QInputMethodEvent +616 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem16inputMethodQueryEN2Qt16InputMethodQueryE +624 QGraphicsItem::itemChange +632 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem17supportsExtensionEN13QGraphicsItem9ExtensionE +640 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem12setExtensionEN13QGraphicsItem9ExtensionERK8QVariant +648 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem9extensionERK8QVariant + +Class QGraphicsTextItem + size=40 align=8 + base size=40 base align=8 +QGraphicsTextItem (0x7f96de11ef80) 0 + vptr=((& QGraphicsTextItem::_ZTV17QGraphicsTextItem) + 16u) + QObject (0x7f96de14cc40) 0 + primary-for QGraphicsTextItem (0x7f96de11ef80) + QGraphicsItem (0x7f96de14ccb0) 16 + vptr=((& QGraphicsTextItem::_ZTV17QGraphicsTextItem) + 360u) + +Vtable for QGraphicsSimpleTextItem +QGraphicsSimpleTextItem::_ZTV23QGraphicsSimpleTextItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QGraphicsSimpleTextItem) +16 QGraphicsSimpleTextItem::~QGraphicsSimpleTextItem +24 QGraphicsSimpleTextItem::~QGraphicsSimpleTextItem +32 QGraphicsItem::advance +40 QGraphicsSimpleTextItem::boundingRect +48 QGraphicsSimpleTextItem::shape +56 QGraphicsSimpleTextItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsSimpleTextItem::isObscuredBy +88 QGraphicsSimpleTextItem::opaqueArea +96 QGraphicsSimpleTextItem::paint +104 QGraphicsSimpleTextItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsSimpleTextItem::supportsExtension +296 QGraphicsSimpleTextItem::setExtension +304 QGraphicsSimpleTextItem::extension + +Class QGraphicsSimpleTextItem + size=16 align=8 + base size=16 base align=8 +QGraphicsSimpleTextItem (0x7f96de1871c0) 0 + vptr=((& QGraphicsSimpleTextItem::_ZTV23QGraphicsSimpleTextItem) + 16u) + QAbstractGraphicsShapeItem (0x7f96de187230) 0 + primary-for QGraphicsSimpleTextItem (0x7f96de1871c0) + QGraphicsItem (0x7f96de1872a0) 0 + primary-for QAbstractGraphicsShapeItem (0x7f96de187230) + +Vtable for QGraphicsItemGroup +QGraphicsItemGroup::_ZTV18QGraphicsItemGroup: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QGraphicsItemGroup) +16 QGraphicsItemGroup::~QGraphicsItemGroup +24 QGraphicsItemGroup::~QGraphicsItemGroup +32 QGraphicsItem::advance +40 QGraphicsItemGroup::boundingRect +48 QGraphicsItem::shape +56 QGraphicsItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsItemGroup::isObscuredBy +88 QGraphicsItemGroup::opaqueArea +96 QGraphicsItemGroup::paint +104 QGraphicsItemGroup::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsItem::supportsExtension +296 QGraphicsItem::setExtension +304 QGraphicsItem::extension + +Class QGraphicsItemGroup + size=16 align=8 + base size=16 base align=8 +QGraphicsItemGroup (0x7f96de196150) 0 + vptr=((& QGraphicsItemGroup::_ZTV18QGraphicsItemGroup) + 16u) + QGraphicsItem (0x7f96de1961c0) 0 + primary-for QGraphicsItemGroup (0x7f96de196150) + +Vtable for QGraphicsLayoutItem +QGraphicsLayoutItem::_ZTV19QGraphicsLayoutItem: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QGraphicsLayoutItem) +16 QGraphicsLayoutItem::~QGraphicsLayoutItem +24 QGraphicsLayoutItem::~QGraphicsLayoutItem +32 QGraphicsLayoutItem::setGeometry +40 QGraphicsLayoutItem::getContentsMargins +48 QGraphicsLayoutItem::updateGeometry +56 __cxa_pure_virtual + +Class QGraphicsLayoutItem + size=16 align=8 + base size=16 base align=8 +QGraphicsLayoutItem (0x7f96de1a5a80) 0 + vptr=((& QGraphicsLayoutItem::_ZTV19QGraphicsLayoutItem) + 16u) + +Vtable for QGraphicsLayout +QGraphicsLayout::_ZTV15QGraphicsLayout: 13u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QGraphicsLayout) +16 QGraphicsLayout::~QGraphicsLayout +24 QGraphicsLayout::~QGraphicsLayout +32 QGraphicsLayoutItem::setGeometry +40 QGraphicsLayout::getContentsMargins +48 QGraphicsLayout::updateGeometry +56 __cxa_pure_virtual +64 QGraphicsLayout::invalidate +72 QGraphicsLayout::widgetEvent +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual + +Class QGraphicsLayout + size=16 align=8 + base size=16 base align=8 +QGraphicsLayout (0x7f96de1d27e0) 0 + vptr=((& QGraphicsLayout::_ZTV15QGraphicsLayout) + 16u) + QGraphicsLayoutItem (0x7f96de1d2850) 0 + primary-for QGraphicsLayout (0x7f96de1d27e0) + +Vtable for QGraphicsScene +QGraphicsScene::_ZTV14QGraphicsScene: 34u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QGraphicsScene) +16 QGraphicsScene::metaObject +24 QGraphicsScene::qt_metacast +32 QGraphicsScene::qt_metacall +40 QGraphicsScene::~QGraphicsScene +48 QGraphicsScene::~QGraphicsScene +56 QGraphicsScene::event +64 QGraphicsScene::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsScene::inputMethodQuery +120 QGraphicsScene::contextMenuEvent +128 QGraphicsScene::dragEnterEvent +136 QGraphicsScene::dragMoveEvent +144 QGraphicsScene::dragLeaveEvent +152 QGraphicsScene::dropEvent +160 QGraphicsScene::focusInEvent +168 QGraphicsScene::focusOutEvent +176 QGraphicsScene::helpEvent +184 QGraphicsScene::keyPressEvent +192 QGraphicsScene::keyReleaseEvent +200 QGraphicsScene::mousePressEvent +208 QGraphicsScene::mouseMoveEvent +216 QGraphicsScene::mouseReleaseEvent +224 QGraphicsScene::mouseDoubleClickEvent +232 QGraphicsScene::wheelEvent +240 QGraphicsScene::inputMethodEvent +248 QGraphicsScene::drawBackground +256 QGraphicsScene::drawForeground +264 QGraphicsScene::drawItems + +Class QGraphicsScene + size=16 align=8 + base size=16 base align=8 +QGraphicsScene (0x7f96de1df700) 0 + vptr=((& QGraphicsScene::_ZTV14QGraphicsScene) + 16u) + QObject (0x7f96de1df770) 0 + primary-for QGraphicsScene (0x7f96de1df700) + +Vtable for QGraphicsLinearLayout +QGraphicsLinearLayout::_ZTV21QGraphicsLinearLayout: 13u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QGraphicsLinearLayout) +16 QGraphicsLinearLayout::~QGraphicsLinearLayout +24 QGraphicsLinearLayout::~QGraphicsLinearLayout +32 QGraphicsLinearLayout::setGeometry +40 QGraphicsLayout::getContentsMargins +48 QGraphicsLayout::updateGeometry +56 QGraphicsLinearLayout::sizeHint +64 QGraphicsLinearLayout::invalidate +72 QGraphicsLayout::widgetEvent +80 QGraphicsLinearLayout::count +88 QGraphicsLinearLayout::itemAt +96 QGraphicsLinearLayout::removeAt + +Class QGraphicsLinearLayout + size=16 align=8 + base size=16 base align=8 +QGraphicsLinearLayout (0x7f96de085d20) 0 + vptr=((& QGraphicsLinearLayout::_ZTV21QGraphicsLinearLayout) + 16u) + QGraphicsLayout (0x7f96de085d90) 0 + primary-for QGraphicsLinearLayout (0x7f96de085d20) + QGraphicsLayoutItem (0x7f96de085e00) 0 + primary-for QGraphicsLayout (0x7f96de085d90) + +Vtable for QScrollArea +QScrollArea::_ZTV11QScrollArea: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QScrollArea) +16 QScrollArea::metaObject +24 QScrollArea::qt_metacast +32 QScrollArea::qt_metacall +40 QScrollArea::~QScrollArea +48 QScrollArea::~QScrollArea +56 QScrollArea::event +64 QScrollArea::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractScrollArea::mousePressEvent +168 QAbstractScrollArea::mouseReleaseEvent +176 QAbstractScrollArea::mouseDoubleClickEvent +184 QAbstractScrollArea::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractScrollArea::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractScrollArea::paintEvent +256 QWidget::moveEvent +264 QScrollArea::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractScrollArea::dragEnterEvent +312 QAbstractScrollArea::dragMoveEvent +320 QAbstractScrollArea::dragLeaveEvent +328 QAbstractScrollArea::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QScrollArea::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QScrollArea::scrollContentsBy +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI11QScrollArea) +480 QScrollArea::_ZThn16_N11QScrollAreaD1Ev +488 QScrollArea::_ZThn16_N11QScrollAreaD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QScrollArea + size=40 align=8 + base size=40 base align=8 +QScrollArea (0x7f96de0b5540) 0 + vptr=((& QScrollArea::_ZTV11QScrollArea) + 16u) + QAbstractScrollArea (0x7f96de0b55b0) 0 + primary-for QScrollArea (0x7f96de0b5540) + QFrame (0x7f96de0b5620) 0 + primary-for QAbstractScrollArea (0x7f96de0b55b0) + QWidget (0x7f96de084880) 0 + primary-for QFrame (0x7f96de0b5620) + QObject (0x7f96de0b5690) 0 + primary-for QWidget (0x7f96de084880) + QPaintDevice (0x7f96de0b5700) 16 + vptr=((& QScrollArea::_ZTV11QScrollArea) + 480u) + +Vtable for QGraphicsView +QGraphicsView::_ZTV13QGraphicsView: 68u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QGraphicsView) +16 QGraphicsView::metaObject +24 QGraphicsView::qt_metacast +32 QGraphicsView::qt_metacall +40 QGraphicsView::~QGraphicsView +48 QGraphicsView::~QGraphicsView +56 QGraphicsView::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QGraphicsView::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QGraphicsView::mousePressEvent +168 QGraphicsView::mouseReleaseEvent +176 QGraphicsView::mouseDoubleClickEvent +184 QGraphicsView::mouseMoveEvent +192 QGraphicsView::wheelEvent +200 QGraphicsView::keyPressEvent +208 QGraphicsView::keyReleaseEvent +216 QGraphicsView::focusInEvent +224 QGraphicsView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QGraphicsView::paintEvent +256 QWidget::moveEvent +264 QGraphicsView::resizeEvent +272 QWidget::closeEvent +280 QGraphicsView::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QGraphicsView::dragEnterEvent +312 QGraphicsView::dragMoveEvent +320 QGraphicsView::dragLeaveEvent +328 QGraphicsView::dropEvent +336 QGraphicsView::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QGraphicsView::inputMethodEvent +384 QGraphicsView::inputMethodQuery +392 QGraphicsView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QGraphicsView::viewportEvent +456 QGraphicsView::scrollContentsBy +464 QGraphicsView::drawBackground +472 QGraphicsView::drawForeground +480 QGraphicsView::drawItems +488 (int (*)(...))-0x00000000000000010 +496 (int (*)(...))(& _ZTI13QGraphicsView) +504 QGraphicsView::_ZThn16_N13QGraphicsViewD1Ev +512 QGraphicsView::_ZThn16_N13QGraphicsViewD0Ev +520 QWidget::_ZThn16_NK7QWidget7devTypeEv +528 QWidget::_ZThn16_NK7QWidget11paintEngineEv +536 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QGraphicsView + size=40 align=8 + base size=40 base align=8 +QGraphicsView (0x7f96de0d3460) 0 + vptr=((& QGraphicsView::_ZTV13QGraphicsView) + 16u) + QAbstractScrollArea (0x7f96de0d34d0) 0 + primary-for QGraphicsView (0x7f96de0d3460) + QFrame (0x7f96de0d3540) 0 + primary-for QAbstractScrollArea (0x7f96de0d34d0) + QWidget (0x7f96de0d2180) 0 + primary-for QFrame (0x7f96de0d3540) + QObject (0x7f96de0d35b0) 0 + primary-for QWidget (0x7f96de0d2180) + QPaintDevice (0x7f96de0d3620) 16 + vptr=((& QGraphicsView::_ZTV13QGraphicsView) + 504u) + +Vtable for QGraphicsWidget +QGraphicsWidget::_ZTV15QGraphicsWidget: 92u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QGraphicsWidget) +16 QGraphicsWidget::metaObject +24 QGraphicsWidget::qt_metacast +32 QGraphicsWidget::qt_metacall +40 QGraphicsWidget::~QGraphicsWidget +48 QGraphicsWidget::~QGraphicsWidget +56 QGraphicsWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsWidget::setGeometry +120 QGraphicsWidget::getContentsMargins +128 QGraphicsWidget::type +136 QGraphicsWidget::paint +144 QGraphicsWidget::paintWindowFrame +152 QGraphicsWidget::boundingRect +160 QGraphicsWidget::shape +168 QGraphicsWidget::initStyleOption +176 QGraphicsWidget::sizeHint +184 QGraphicsWidget::updateGeometry +192 QGraphicsWidget::itemChange +200 QGraphicsWidget::propertyChange +208 QGraphicsWidget::sceneEvent +216 QGraphicsWidget::windowFrameEvent +224 QGraphicsWidget::windowFrameSectionAt +232 QGraphicsWidget::changeEvent +240 QGraphicsWidget::closeEvent +248 QGraphicsWidget::focusInEvent +256 QGraphicsWidget::focusNextPrevChild +264 QGraphicsWidget::focusOutEvent +272 QGraphicsWidget::hideEvent +280 QGraphicsWidget::moveEvent +288 QGraphicsWidget::polishEvent +296 QGraphicsWidget::resizeEvent +304 QGraphicsWidget::showEvent +312 QGraphicsWidget::hoverMoveEvent +320 QGraphicsWidget::hoverLeaveEvent +328 QGraphicsWidget::grabMouseEvent +336 QGraphicsWidget::ungrabMouseEvent +344 QGraphicsWidget::grabKeyboardEvent +352 QGraphicsWidget::ungrabKeyboardEvent +360 (int (*)(...))-0x00000000000000010 +368 (int (*)(...))(& _ZTI15QGraphicsWidget) +376 QGraphicsWidget::_ZThn16_N15QGraphicsWidgetD1Ev +384 QGraphicsWidget::_ZThn16_N15QGraphicsWidgetD0Ev +392 QGraphicsItem::advance +400 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget12boundingRectEv +408 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget5shapeEv +416 QGraphicsItem::contains +424 QGraphicsItem::collidesWithItem +432 QGraphicsItem::collidesWithPath +440 QGraphicsItem::isObscuredBy +448 QGraphicsItem::opaqueArea +456 QGraphicsWidget::_ZThn16_N15QGraphicsWidget5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget +464 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget4typeEv +472 QGraphicsItem::sceneEventFilter +480 QGraphicsWidget::_ZThn16_N15QGraphicsWidget10sceneEventEP6QEvent +488 QGraphicsItem::contextMenuEvent +496 QGraphicsItem::dragEnterEvent +504 QGraphicsItem::dragLeaveEvent +512 QGraphicsItem::dragMoveEvent +520 QGraphicsItem::dropEvent +528 QGraphicsWidget::_ZThn16_N15QGraphicsWidget12focusInEventEP11QFocusEvent +536 QGraphicsWidget::_ZThn16_N15QGraphicsWidget13focusOutEventEP11QFocusEvent +544 QGraphicsItem::hoverEnterEvent +552 QGraphicsWidget::_ZThn16_N15QGraphicsWidget14hoverMoveEventEP24QGraphicsSceneHoverEvent +560 QGraphicsWidget::_ZThn16_N15QGraphicsWidget15hoverLeaveEventEP24QGraphicsSceneHoverEvent +568 QGraphicsItem::keyPressEvent +576 QGraphicsItem::keyReleaseEvent +584 QGraphicsItem::mousePressEvent +592 QGraphicsItem::mouseMoveEvent +600 QGraphicsItem::mouseReleaseEvent +608 QGraphicsItem::mouseDoubleClickEvent +616 QGraphicsItem::wheelEvent +624 QGraphicsItem::inputMethodEvent +632 QGraphicsItem::inputMethodQuery +640 QGraphicsWidget::_ZThn16_N15QGraphicsWidget10itemChangeEN13QGraphicsItem18GraphicsItemChangeERK8QVariant +648 QGraphicsItem::supportsExtension +656 QGraphicsItem::setExtension +664 QGraphicsItem::extension +672 (int (*)(...))-0x00000000000000020 +680 (int (*)(...))(& _ZTI15QGraphicsWidget) +688 QGraphicsWidget::_ZThn32_N15QGraphicsWidgetD1Ev +696 QGraphicsWidget::_ZThn32_N15QGraphicsWidgetD0Ev +704 QGraphicsWidget::_ZThn32_N15QGraphicsWidget11setGeometryERK6QRectF +712 QGraphicsWidget::_ZThn32_NK15QGraphicsWidget18getContentsMarginsEPdS0_S0_S0_ +720 QGraphicsWidget::_ZThn32_N15QGraphicsWidget14updateGeometryEv +728 QGraphicsWidget::_ZThn32_NK15QGraphicsWidget8sizeHintEN2Qt8SizeHintERK6QSizeF + +Class QGraphicsWidget + size=48 align=8 + base size=48 base align=8 +QGraphicsWidget (0x7f96ddfaad00) 0 + vptr=((& QGraphicsWidget::_ZTV15QGraphicsWidget) + 16u) + QObject (0x7f96ddfb6930) 0 + primary-for QGraphicsWidget (0x7f96ddfaad00) + QGraphicsItem (0x7f96ddfb69a0) 16 + vptr=((& QGraphicsWidget::_ZTV15QGraphicsWidget) + 376u) + QGraphicsLayoutItem (0x7f96ddfb6a10) 32 + vptr=((& QGraphicsWidget::_ZTV15QGraphicsWidget) + 688u) + +Vtable for QGraphicsProxyWidget +QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget: 105u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QGraphicsProxyWidget) +16 QGraphicsProxyWidget::metaObject +24 QGraphicsProxyWidget::qt_metacast +32 QGraphicsProxyWidget::qt_metacall +40 QGraphicsProxyWidget::~QGraphicsProxyWidget +48 QGraphicsProxyWidget::~QGraphicsProxyWidget +56 QGraphicsProxyWidget::event +64 QGraphicsProxyWidget::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsProxyWidget::setGeometry +120 QGraphicsWidget::getContentsMargins +128 QGraphicsProxyWidget::type +136 QGraphicsProxyWidget::paint +144 QGraphicsWidget::paintWindowFrame +152 QGraphicsWidget::boundingRect +160 QGraphicsWidget::shape +168 QGraphicsWidget::initStyleOption +176 QGraphicsProxyWidget::sizeHint +184 QGraphicsWidget::updateGeometry +192 QGraphicsProxyWidget::itemChange +200 QGraphicsWidget::propertyChange +208 QGraphicsWidget::sceneEvent +216 QGraphicsWidget::windowFrameEvent +224 QGraphicsWidget::windowFrameSectionAt +232 QGraphicsWidget::changeEvent +240 QGraphicsWidget::closeEvent +248 QGraphicsProxyWidget::focusInEvent +256 QGraphicsProxyWidget::focusNextPrevChild +264 QGraphicsProxyWidget::focusOutEvent +272 QGraphicsProxyWidget::hideEvent +280 QGraphicsWidget::moveEvent +288 QGraphicsWidget::polishEvent +296 QGraphicsProxyWidget::resizeEvent +304 QGraphicsProxyWidget::showEvent +312 QGraphicsProxyWidget::hoverMoveEvent +320 QGraphicsProxyWidget::hoverLeaveEvent +328 QGraphicsProxyWidget::grabMouseEvent +336 QGraphicsProxyWidget::ungrabMouseEvent +344 QGraphicsWidget::grabKeyboardEvent +352 QGraphicsWidget::ungrabKeyboardEvent +360 QGraphicsProxyWidget::contextMenuEvent +368 QGraphicsProxyWidget::dragEnterEvent +376 QGraphicsProxyWidget::dragLeaveEvent +384 QGraphicsProxyWidget::dragMoveEvent +392 QGraphicsProxyWidget::dropEvent +400 QGraphicsProxyWidget::hoverEnterEvent +408 QGraphicsProxyWidget::mouseMoveEvent +416 QGraphicsProxyWidget::mousePressEvent +424 QGraphicsProxyWidget::mouseReleaseEvent +432 QGraphicsProxyWidget::mouseDoubleClickEvent +440 QGraphicsProxyWidget::wheelEvent +448 QGraphicsProxyWidget::keyPressEvent +456 QGraphicsProxyWidget::keyReleaseEvent +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI20QGraphicsProxyWidget) +480 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidgetD1Ev +488 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidgetD0Ev +496 QGraphicsItem::advance +504 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget12boundingRectEv +512 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget5shapeEv +520 QGraphicsItem::contains +528 QGraphicsItem::collidesWithItem +536 QGraphicsItem::collidesWithPath +544 QGraphicsItem::isObscuredBy +552 QGraphicsItem::opaqueArea +560 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget +568 QGraphicsProxyWidget::_ZThn16_NK20QGraphicsProxyWidget4typeEv +576 QGraphicsItem::sceneEventFilter +584 QGraphicsWidget::_ZThn16_N15QGraphicsWidget10sceneEventEP6QEvent +592 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget16contextMenuEventEP30QGraphicsSceneContextMenuEvent +600 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget14dragEnterEventEP27QGraphicsSceneDragDropEvent +608 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget14dragLeaveEventEP27QGraphicsSceneDragDropEvent +616 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget13dragMoveEventEP27QGraphicsSceneDragDropEvent +624 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget9dropEventEP27QGraphicsSceneDragDropEvent +632 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget12focusInEventEP11QFocusEvent +640 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget13focusOutEventEP11QFocusEvent +648 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget15hoverEnterEventEP24QGraphicsSceneHoverEvent +656 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget14hoverMoveEventEP24QGraphicsSceneHoverEvent +664 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget15hoverLeaveEventEP24QGraphicsSceneHoverEvent +672 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget13keyPressEventEP9QKeyEvent +680 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget15keyReleaseEventEP9QKeyEvent +688 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget15mousePressEventEP24QGraphicsSceneMouseEvent +696 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget14mouseMoveEventEP24QGraphicsSceneMouseEvent +704 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget17mouseReleaseEventEP24QGraphicsSceneMouseEvent +712 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget21mouseDoubleClickEventEP24QGraphicsSceneMouseEvent +720 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget10wheelEventEP24QGraphicsSceneWheelEvent +728 QGraphicsItem::inputMethodEvent +736 QGraphicsItem::inputMethodQuery +744 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget10itemChangeEN13QGraphicsItem18GraphicsItemChangeERK8QVariant +752 QGraphicsItem::supportsExtension +760 QGraphicsItem::setExtension +768 QGraphicsItem::extension +776 (int (*)(...))-0x00000000000000020 +784 (int (*)(...))(& _ZTI20QGraphicsProxyWidget) +792 QGraphicsProxyWidget::_ZThn32_N20QGraphicsProxyWidgetD1Ev +800 QGraphicsProxyWidget::_ZThn32_N20QGraphicsProxyWidgetD0Ev +808 QGraphicsProxyWidget::_ZThn32_N20QGraphicsProxyWidget11setGeometryERK6QRectF +816 QGraphicsWidget::_ZThn32_NK15QGraphicsWidget18getContentsMarginsEPdS0_S0_S0_ +824 QGraphicsWidget::_ZThn32_N15QGraphicsWidget14updateGeometryEv +832 QGraphicsProxyWidget::_ZThn32_NK20QGraphicsProxyWidget8sizeHintEN2Qt8SizeHintERK6QSizeF + +Class QGraphicsProxyWidget + size=48 align=8 + base size=48 base align=8 +QGraphicsProxyWidget (0x7f96ddfff1c0) 0 + vptr=((& QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget) + 16u) + QGraphicsWidget (0x7f96ddff0b80) 0 + primary-for QGraphicsProxyWidget (0x7f96ddfff1c0) + QObject (0x7f96ddfff230) 0 + primary-for QGraphicsWidget (0x7f96ddff0b80) + QGraphicsItem (0x7f96ddfff2a0) 16 + vptr=((& QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget) + 480u) + QGraphicsLayoutItem (0x7f96ddfff310) 32 + vptr=((& QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget) + 792u) + +Vtable for QGraphicsSceneEvent +QGraphicsSceneEvent::_ZTV19QGraphicsSceneEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QGraphicsSceneEvent) +16 QGraphicsSceneEvent::~QGraphicsSceneEvent +24 QGraphicsSceneEvent::~QGraphicsSceneEvent + +Class QGraphicsSceneEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneEvent (0x7f96dde29230) 0 + vptr=((& QGraphicsSceneEvent::_ZTV19QGraphicsSceneEvent) + 16u) + QEvent (0x7f96dde292a0) 0 + primary-for QGraphicsSceneEvent (0x7f96dde29230) + +Vtable for QGraphicsSceneMouseEvent +QGraphicsSceneMouseEvent::_ZTV24QGraphicsSceneMouseEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QGraphicsSceneMouseEvent) +16 QGraphicsSceneMouseEvent::~QGraphicsSceneMouseEvent +24 QGraphicsSceneMouseEvent::~QGraphicsSceneMouseEvent + +Class QGraphicsSceneMouseEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneMouseEvent (0x7f96dde29b60) 0 + vptr=((& QGraphicsSceneMouseEvent::_ZTV24QGraphicsSceneMouseEvent) + 16u) + QGraphicsSceneEvent (0x7f96dde29bd0) 0 + primary-for QGraphicsSceneMouseEvent (0x7f96dde29b60) + QEvent (0x7f96dde29c40) 0 + primary-for QGraphicsSceneEvent (0x7f96dde29bd0) + +Vtable for QGraphicsSceneWheelEvent +QGraphicsSceneWheelEvent::_ZTV24QGraphicsSceneWheelEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QGraphicsSceneWheelEvent) +16 QGraphicsSceneWheelEvent::~QGraphicsSceneWheelEvent +24 QGraphicsSceneWheelEvent::~QGraphicsSceneWheelEvent + +Class QGraphicsSceneWheelEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneWheelEvent (0x7f96dde3a460) 0 + vptr=((& QGraphicsSceneWheelEvent::_ZTV24QGraphicsSceneWheelEvent) + 16u) + QGraphicsSceneEvent (0x7f96dde3a4d0) 0 + primary-for QGraphicsSceneWheelEvent (0x7f96dde3a460) + QEvent (0x7f96dde3a540) 0 + primary-for QGraphicsSceneEvent (0x7f96dde3a4d0) + +Vtable for QGraphicsSceneContextMenuEvent +QGraphicsSceneContextMenuEvent::_ZTV30QGraphicsSceneContextMenuEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI30QGraphicsSceneContextMenuEvent) +16 QGraphicsSceneContextMenuEvent::~QGraphicsSceneContextMenuEvent +24 QGraphicsSceneContextMenuEvent::~QGraphicsSceneContextMenuEvent + +Class QGraphicsSceneContextMenuEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneContextMenuEvent (0x7f96dde3ae00) 0 + vptr=((& QGraphicsSceneContextMenuEvent::_ZTV30QGraphicsSceneContextMenuEvent) + 16u) + QGraphicsSceneEvent (0x7f96dde3ae70) 0 + primary-for QGraphicsSceneContextMenuEvent (0x7f96dde3ae00) + QEvent (0x7f96dde3aee0) 0 + primary-for QGraphicsSceneEvent (0x7f96dde3ae70) + +Vtable for QGraphicsSceneHoverEvent +QGraphicsSceneHoverEvent::_ZTV24QGraphicsSceneHoverEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QGraphicsSceneHoverEvent) +16 QGraphicsSceneHoverEvent::~QGraphicsSceneHoverEvent +24 QGraphicsSceneHoverEvent::~QGraphicsSceneHoverEvent + +Class QGraphicsSceneHoverEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneHoverEvent (0x7f96dde48930) 0 + vptr=((& QGraphicsSceneHoverEvent::_ZTV24QGraphicsSceneHoverEvent) + 16u) + QGraphicsSceneEvent (0x7f96dde489a0) 0 + primary-for QGraphicsSceneHoverEvent (0x7f96dde48930) + QEvent (0x7f96dde48a10) 0 + primary-for QGraphicsSceneEvent (0x7f96dde489a0) + +Vtable for QGraphicsSceneHelpEvent +QGraphicsSceneHelpEvent::_ZTV23QGraphicsSceneHelpEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QGraphicsSceneHelpEvent) +16 QGraphicsSceneHelpEvent::~QGraphicsSceneHelpEvent +24 QGraphicsSceneHelpEvent::~QGraphicsSceneHelpEvent + +Class QGraphicsSceneHelpEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneHelpEvent (0x7f96dde59230) 0 + vptr=((& QGraphicsSceneHelpEvent::_ZTV23QGraphicsSceneHelpEvent) + 16u) + QGraphicsSceneEvent (0x7f96dde592a0) 0 + primary-for QGraphicsSceneHelpEvent (0x7f96dde59230) + QEvent (0x7f96dde59310) 0 + primary-for QGraphicsSceneEvent (0x7f96dde592a0) + +Vtable for QGraphicsSceneDragDropEvent +QGraphicsSceneDragDropEvent::_ZTV27QGraphicsSceneDragDropEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QGraphicsSceneDragDropEvent) +16 QGraphicsSceneDragDropEvent::~QGraphicsSceneDragDropEvent +24 QGraphicsSceneDragDropEvent::~QGraphicsSceneDragDropEvent + +Class QGraphicsSceneDragDropEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneDragDropEvent (0x7f96dde59bd0) 0 + vptr=((& QGraphicsSceneDragDropEvent::_ZTV27QGraphicsSceneDragDropEvent) + 16u) + QGraphicsSceneEvent (0x7f96dde59c40) 0 + primary-for QGraphicsSceneDragDropEvent (0x7f96dde59bd0) + QEvent (0x7f96dde59cb0) 0 + primary-for QGraphicsSceneEvent (0x7f96dde59c40) + +Vtable for QGraphicsSceneResizeEvent +QGraphicsSceneResizeEvent::_ZTV25QGraphicsSceneResizeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QGraphicsSceneResizeEvent) +16 QGraphicsSceneResizeEvent::~QGraphicsSceneResizeEvent +24 QGraphicsSceneResizeEvent::~QGraphicsSceneResizeEvent + +Class QGraphicsSceneResizeEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneResizeEvent (0x7f96dde6c4d0) 0 + vptr=((& QGraphicsSceneResizeEvent::_ZTV25QGraphicsSceneResizeEvent) + 16u) + QGraphicsSceneEvent (0x7f96dde6c540) 0 + primary-for QGraphicsSceneResizeEvent (0x7f96dde6c4d0) + QEvent (0x7f96dde6c5b0) 0 + primary-for QGraphicsSceneEvent (0x7f96dde6c540) + +Vtable for QGraphicsSceneMoveEvent +QGraphicsSceneMoveEvent::_ZTV23QGraphicsSceneMoveEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QGraphicsSceneMoveEvent) +16 QGraphicsSceneMoveEvent::~QGraphicsSceneMoveEvent +24 QGraphicsSceneMoveEvent::~QGraphicsSceneMoveEvent + +Class QGraphicsSceneMoveEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneMoveEvent (0x7f96dde6ccb0) 0 + vptr=((& QGraphicsSceneMoveEvent::_ZTV23QGraphicsSceneMoveEvent) + 16u) + QGraphicsSceneEvent (0x7f96dde6cd20) 0 + primary-for QGraphicsSceneMoveEvent (0x7f96dde6ccb0) + QEvent (0x7f96dde6cd90) 0 + primary-for QGraphicsSceneEvent (0x7f96dde6cd20) + +Vtable for QGraphicsItemAnimation +QGraphicsItemAnimation::_ZTV22QGraphicsItemAnimation: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QGraphicsItemAnimation) +16 QGraphicsItemAnimation::metaObject +24 QGraphicsItemAnimation::qt_metacast +32 QGraphicsItemAnimation::qt_metacall +40 QGraphicsItemAnimation::~QGraphicsItemAnimation +48 QGraphicsItemAnimation::~QGraphicsItemAnimation +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsItemAnimation::beforeAnimationStep +120 QGraphicsItemAnimation::afterAnimationStep + +Class QGraphicsItemAnimation + size=24 align=8 + base size=24 base align=8 +QGraphicsItemAnimation (0x7f96dde7b3f0) 0 + vptr=((& QGraphicsItemAnimation::_ZTV22QGraphicsItemAnimation) + 16u) + QObject (0x7f96dde7b460) 0 + primary-for QGraphicsItemAnimation (0x7f96dde7b3f0) + +Vtable for QGraphicsGridLayout +QGraphicsGridLayout::_ZTV19QGraphicsGridLayout: 13u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QGraphicsGridLayout) +16 QGraphicsGridLayout::~QGraphicsGridLayout +24 QGraphicsGridLayout::~QGraphicsGridLayout +32 QGraphicsGridLayout::setGeometry +40 QGraphicsLayout::getContentsMargins +48 QGraphicsLayout::updateGeometry +56 QGraphicsGridLayout::sizeHint +64 QGraphicsGridLayout::invalidate +72 QGraphicsLayout::widgetEvent +80 QGraphicsGridLayout::count +88 QGraphicsGridLayout::itemAt +96 QGraphicsGridLayout::removeAt + +Class QGraphicsGridLayout + size=16 align=8 + base size=16 base align=8 +QGraphicsGridLayout (0x7f96dde95770) 0 + vptr=((& QGraphicsGridLayout::_ZTV19QGraphicsGridLayout) + 16u) + QGraphicsLayout (0x7f96dde957e0) 0 + primary-for QGraphicsGridLayout (0x7f96dde95770) + QGraphicsLayoutItem (0x7f96dde95850) 0 + primary-for QGraphicsLayout (0x7f96dde957e0) + +Vtable for QAbstractButton +QAbstractButton::_ZTV15QAbstractButton: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QAbstractButton) +16 QAbstractButton::metaObject +24 QAbstractButton::qt_metacast +32 QAbstractButton::qt_metacall +40 QAbstractButton::~QAbstractButton +48 QAbstractButton::~QAbstractButton +56 QAbstractButton::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QAbstractButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QAbstractButton::focusInEvent +224 QAbstractButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 __cxa_pure_virtual +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractButton::hitButton +456 QAbstractButton::checkStateSet +464 QAbstractButton::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI15QAbstractButton) +488 QAbstractButton::_ZThn16_N15QAbstractButtonD1Ev +496 QAbstractButton::_ZThn16_N15QAbstractButtonD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractButton + size=40 align=8 + base size=40 base align=8 +QAbstractButton (0x7f96ddeaebd0) 0 + vptr=((& QAbstractButton::_ZTV15QAbstractButton) + 16u) + QWidget (0x7f96dde91800) 0 + primary-for QAbstractButton (0x7f96ddeaebd0) + QObject (0x7f96ddeaec40) 0 + primary-for QWidget (0x7f96dde91800) + QPaintDevice (0x7f96ddeaecb0) 16 + vptr=((& QAbstractButton::_ZTV15QAbstractButton) + 488u) + +Vtable for QCheckBox +QCheckBox::_ZTV9QCheckBox: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QCheckBox) +16 QCheckBox::metaObject +24 QCheckBox::qt_metacast +32 QCheckBox::qt_metacall +40 QCheckBox::~QCheckBox +48 QCheckBox::~QCheckBox +56 QCheckBox::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QCheckBox::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QCheckBox::mouseMoveEvent +192 QWidget::wheelEvent +200 QAbstractButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QAbstractButton::focusInEvent +224 QAbstractButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QCheckBox::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QCheckBox::hitButton +456 QCheckBox::checkStateSet +464 QCheckBox::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI9QCheckBox) +488 QCheckBox::_ZThn16_N9QCheckBoxD1Ev +496 QCheckBox::_ZThn16_N9QCheckBoxD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QCheckBox + size=40 align=8 + base size=40 base align=8 +QCheckBox (0x7f96ddee2f50) 0 + vptr=((& QCheckBox::_ZTV9QCheckBox) + 16u) + QAbstractButton (0x7f96ddee9000) 0 + primary-for QCheckBox (0x7f96ddee2f50) + QWidget (0x7f96ddeea000) 0 + primary-for QAbstractButton (0x7f96ddee9000) + QObject (0x7f96ddee9070) 0 + primary-for QWidget (0x7f96ddeea000) + QPaintDevice (0x7f96ddee90e0) 16 + vptr=((& QCheckBox::_ZTV9QCheckBox) + 488u) + +Vtable for QMenu +QMenu::_ZTV5QMenu: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QMenu) +16 QMenu::metaObject +24 QMenu::qt_metacast +32 QMenu::qt_metacall +40 QMenu::~QMenu +48 QMenu::~QMenu +56 QMenu::event +64 QObject::eventFilter +72 QMenu::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QMenu::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QMenu::mousePressEvent +168 QMenu::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QMenu::mouseMoveEvent +192 QMenu::wheelEvent +200 QMenu::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QMenu::enterEvent +240 QMenu::leaveEvent +248 QMenu::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QMenu::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QMenu::hideEvent +352 QWidget::x11Event +360 QMenu::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QMenu::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI5QMenu) +464 QMenu::_ZThn16_N5QMenuD1Ev +472 QMenu::_ZThn16_N5QMenuD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMenu + size=40 align=8 + base size=40 base align=8 +QMenu (0x7f96ddd0a770) 0 + vptr=((& QMenu::_ZTV5QMenu) + 16u) + QWidget (0x7f96ddeeaf00) 0 + primary-for QMenu (0x7f96ddd0a770) + QObject (0x7f96ddd0a7e0) 0 + primary-for QWidget (0x7f96ddeeaf00) + QPaintDevice (0x7f96ddd0a850) 16 + vptr=((& QMenu::_ZTV5QMenu) + 464u) + +Vtable for QPrintPreviewWidget +QPrintPreviewWidget::_ZTV19QPrintPreviewWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QPrintPreviewWidget) +16 QPrintPreviewWidget::metaObject +24 QPrintPreviewWidget::qt_metacast +32 QPrintPreviewWidget::qt_metacall +40 QPrintPreviewWidget::~QPrintPreviewWidget +48 QPrintPreviewWidget::~QPrintPreviewWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QPrintPreviewWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI19QPrintPreviewWidget) +464 QPrintPreviewWidget::_ZThn16_N19QPrintPreviewWidgetD1Ev +472 QPrintPreviewWidget::_ZThn16_N19QPrintPreviewWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPrintPreviewWidget + size=48 align=8 + base size=48 base align=8 +QPrintPreviewWidget (0x7f96dddb25b0) 0 + vptr=((& QPrintPreviewWidget::_ZTV19QPrintPreviewWidget) + 16u) + QWidget (0x7f96dddb0680) 0 + primary-for QPrintPreviewWidget (0x7f96dddb25b0) + QObject (0x7f96dddb2620) 0 + primary-for QWidget (0x7f96dddb0680) + QPaintDevice (0x7f96dddb2690) 16 + vptr=((& QPrintPreviewWidget::_ZTV19QPrintPreviewWidget) + 464u) + +Vtable for QWorkspace +QWorkspace::_ZTV10QWorkspace: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QWorkspace) +16 QWorkspace::metaObject +24 QWorkspace::qt_metacast +32 QWorkspace::qt_metacall +40 QWorkspace::~QWorkspace +48 QWorkspace::~QWorkspace +56 QWorkspace::event +64 QWorkspace::eventFilter +72 QObject::timerEvent +80 QWorkspace::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWorkspace::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWorkspace::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWorkspace::paintEvent +256 QWidget::moveEvent +264 QWorkspace::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWorkspace::showEvent +344 QWorkspace::hideEvent +352 QWidget::x11Event +360 QWorkspace::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI10QWorkspace) +464 QWorkspace::_ZThn16_N10QWorkspaceD1Ev +472 QWorkspace::_ZThn16_N10QWorkspaceD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWorkspace + size=40 align=8 + base size=40 base align=8 +QWorkspace (0x7f96dddd6070) 0 + vptr=((& QWorkspace::_ZTV10QWorkspace) + 16u) + QWidget (0x7f96dddd2280) 0 + primary-for QWorkspace (0x7f96dddd6070) + QObject (0x7f96dddd60e0) 0 + primary-for QWidget (0x7f96dddd2280) + QPaintDevice (0x7f96dddd6150) 16 + vptr=((& QWorkspace::_ZTV10QWorkspace) + 464u) + +Vtable for QButtonGroup +QButtonGroup::_ZTV12QButtonGroup: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QButtonGroup) +16 QButtonGroup::metaObject +24 QButtonGroup::qt_metacast +32 QButtonGroup::qt_metacall +40 QButtonGroup::~QButtonGroup +48 QButtonGroup::~QButtonGroup +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QButtonGroup + size=16 align=8 + base size=16 base align=8 +QButtonGroup (0x7f96dddf8150) 0 + vptr=((& QButtonGroup::_ZTV12QButtonGroup) + 16u) + QObject (0x7f96dddf81c0) 0 + primary-for QButtonGroup (0x7f96dddf8150) + +Vtable for QSpinBox +QSpinBox::_ZTV8QSpinBox: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QSpinBox) +16 QSpinBox::metaObject +24 QSpinBox::qt_metacast +32 QSpinBox::qt_metacall +40 QSpinBox::~QSpinBox +48 QSpinBox::~QSpinBox +56 QSpinBox::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractSpinBox::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractSpinBox::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QAbstractSpinBox::wheelEvent +200 QAbstractSpinBox::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QAbstractSpinBox::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractSpinBox::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QSpinBox::validate +456 QSpinBox::fixup +464 QAbstractSpinBox::stepBy +472 QAbstractSpinBox::clear +480 QAbstractSpinBox::stepEnabled +488 QSpinBox::valueFromText +496 QSpinBox::textFromValue +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI8QSpinBox) +520 QSpinBox::_ZThn16_N8QSpinBoxD1Ev +528 QSpinBox::_ZThn16_N8QSpinBoxD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSpinBox + size=40 align=8 + base size=40 base align=8 +QSpinBox (0x7f96ddc0ed90) 0 + vptr=((& QSpinBox::_ZTV8QSpinBox) + 16u) + QAbstractSpinBox (0x7f96ddc0ee00) 0 + primary-for QSpinBox (0x7f96ddc0ed90) + QWidget (0x7f96ddc0a800) 0 + primary-for QAbstractSpinBox (0x7f96ddc0ee00) + QObject (0x7f96ddc0ee70) 0 + primary-for QWidget (0x7f96ddc0a800) + QPaintDevice (0x7f96ddc0eee0) 16 + vptr=((& QSpinBox::_ZTV8QSpinBox) + 520u) + +Vtable for QDoubleSpinBox +QDoubleSpinBox::_ZTV14QDoubleSpinBox: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QDoubleSpinBox) +16 QDoubleSpinBox::metaObject +24 QDoubleSpinBox::qt_metacast +32 QDoubleSpinBox::qt_metacall +40 QDoubleSpinBox::~QDoubleSpinBox +48 QDoubleSpinBox::~QDoubleSpinBox +56 QAbstractSpinBox::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractSpinBox::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractSpinBox::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QAbstractSpinBox::wheelEvent +200 QAbstractSpinBox::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QAbstractSpinBox::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractSpinBox::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDoubleSpinBox::validate +456 QDoubleSpinBox::fixup +464 QAbstractSpinBox::stepBy +472 QAbstractSpinBox::clear +480 QAbstractSpinBox::stepEnabled +488 QDoubleSpinBox::valueFromText +496 QDoubleSpinBox::textFromValue +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI14QDoubleSpinBox) +520 QDoubleSpinBox::_ZThn16_N14QDoubleSpinBoxD1Ev +528 QDoubleSpinBox::_ZThn16_N14QDoubleSpinBoxD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDoubleSpinBox + size=40 align=8 + base size=40 base align=8 +QDoubleSpinBox (0x7f96ddc37700) 0 + vptr=((& QDoubleSpinBox::_ZTV14QDoubleSpinBox) + 16u) + QAbstractSpinBox (0x7f96ddc37770) 0 + primary-for QDoubleSpinBox (0x7f96ddc37700) + QWidget (0x7f96ddc34880) 0 + primary-for QAbstractSpinBox (0x7f96ddc37770) + QObject (0x7f96ddc377e0) 0 + primary-for QWidget (0x7f96ddc34880) + QPaintDevice (0x7f96ddc37850) 16 + vptr=((& QDoubleSpinBox::_ZTV14QDoubleSpinBox) + 520u) + +Vtable for QLCDNumber +QLCDNumber::_ZTV10QLCDNumber: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QLCDNumber) +16 QLCDNumber::metaObject +24 QLCDNumber::qt_metacast +32 QLCDNumber::qt_metacall +40 QLCDNumber::~QLCDNumber +48 QLCDNumber::~QLCDNumber +56 QLCDNumber::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QLCDNumber::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QLCDNumber::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI10QLCDNumber) +464 QLCDNumber::_ZThn16_N10QLCDNumberD1Ev +472 QLCDNumber::_ZThn16_N10QLCDNumberD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QLCDNumber + size=40 align=8 + base size=40 base align=8 +QLCDNumber (0x7f96ddc581c0) 0 + vptr=((& QLCDNumber::_ZTV10QLCDNumber) + 16u) + QFrame (0x7f96ddc58230) 0 + primary-for QLCDNumber (0x7f96ddc581c0) + QWidget (0x7f96ddc57180) 0 + primary-for QFrame (0x7f96ddc58230) + QObject (0x7f96ddc582a0) 0 + primary-for QWidget (0x7f96ddc57180) + QPaintDevice (0x7f96ddc58310) 16 + vptr=((& QLCDNumber::_ZTV10QLCDNumber) + 464u) + +Vtable for QStackedWidget +QStackedWidget::_ZTV14QStackedWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QStackedWidget) +16 QStackedWidget::metaObject +24 QStackedWidget::qt_metacast +32 QStackedWidget::qt_metacall +40 QStackedWidget::~QStackedWidget +48 QStackedWidget::~QStackedWidget +56 QStackedWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QFrame::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFrame::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI14QStackedWidget) +464 QStackedWidget::_ZThn16_N14QStackedWidgetD1Ev +472 QStackedWidget::_ZThn16_N14QStackedWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QStackedWidget + size=40 align=8 + base size=40 base align=8 +QStackedWidget (0x7f96ddc7ad20) 0 + vptr=((& QStackedWidget::_ZTV14QStackedWidget) + 16u) + QFrame (0x7f96ddc7ad90) 0 + primary-for QStackedWidget (0x7f96ddc7ad20) + QWidget (0x7f96ddc7e200) 0 + primary-for QFrame (0x7f96ddc7ad90) + QObject (0x7f96ddc7ae00) 0 + primary-for QWidget (0x7f96ddc7e200) + QPaintDevice (0x7f96ddc7ae70) 16 + vptr=((& QStackedWidget::_ZTV14QStackedWidget) + 464u) + +Vtable for QMdiArea +QMdiArea::_ZTV8QMdiArea: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QMdiArea) +16 QMdiArea::metaObject +24 QMdiArea::qt_metacast +32 QMdiArea::qt_metacall +40 QMdiArea::~QMdiArea +48 QMdiArea::~QMdiArea +56 QMdiArea::event +64 QMdiArea::eventFilter +72 QMdiArea::timerEvent +80 QMdiArea::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QMdiArea::sizeHint +136 QMdiArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractScrollArea::mousePressEvent +168 QAbstractScrollArea::mouseReleaseEvent +176 QAbstractScrollArea::mouseDoubleClickEvent +184 QAbstractScrollArea::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractScrollArea::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QMdiArea::paintEvent +256 QWidget::moveEvent +264 QMdiArea::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractScrollArea::dragEnterEvent +312 QAbstractScrollArea::dragMoveEvent +320 QAbstractScrollArea::dragLeaveEvent +328 QAbstractScrollArea::dropEvent +336 QMdiArea::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QMdiArea::viewportEvent +456 QMdiArea::scrollContentsBy +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI8QMdiArea) +480 QMdiArea::_ZThn16_N8QMdiAreaD1Ev +488 QMdiArea::_ZThn16_N8QMdiAreaD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMdiArea + size=40 align=8 + base size=40 base align=8 +QMdiArea (0x7f96ddc95bd0) 0 + vptr=((& QMdiArea::_ZTV8QMdiArea) + 16u) + QAbstractScrollArea (0x7f96ddc95c40) 0 + primary-for QMdiArea (0x7f96ddc95bd0) + QFrame (0x7f96ddc95cb0) 0 + primary-for QAbstractScrollArea (0x7f96ddc95c40) + QWidget (0x7f96ddc7eb00) 0 + primary-for QFrame (0x7f96ddc95cb0) + QObject (0x7f96ddc95d20) 0 + primary-for QWidget (0x7f96ddc7eb00) + QPaintDevice (0x7f96ddc95d90) 16 + vptr=((& QMdiArea::_ZTV8QMdiArea) + 480u) + +Vtable for QPushButton +QPushButton::_ZTV11QPushButton: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QPushButton) +16 QPushButton::metaObject +24 QPushButton::qt_metacast +32 QPushButton::qt_metacall +40 QPushButton::~QPushButton +48 QPushButton::~QPushButton +56 QPushButton::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QPushButton::sizeHint +136 QPushButton::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QPushButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QPushButton::focusInEvent +224 QPushButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QPushButton::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractButton::hitButton +456 QAbstractButton::checkStateSet +464 QAbstractButton::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11QPushButton) +488 QPushButton::_ZThn16_N11QPushButtonD1Ev +496 QPushButton::_ZThn16_N11QPushButtonD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPushButton + size=40 align=8 + base size=40 base align=8 +QPushButton (0x7f96ddb0b150) 0 + vptr=((& QPushButton::_ZTV11QPushButton) + 16u) + QAbstractButton (0x7f96ddb0b1c0) 0 + primary-for QPushButton (0x7f96ddb0b150) + QWidget (0x7f96ddcbad00) 0 + primary-for QAbstractButton (0x7f96ddb0b1c0) + QObject (0x7f96ddb0b230) 0 + primary-for QWidget (0x7f96ddcbad00) + QPaintDevice (0x7f96ddb0b2a0) 16 + vptr=((& QPushButton::_ZTV11QPushButton) + 488u) + +Vtable for QMdiSubWindow +QMdiSubWindow::_ZTV13QMdiSubWindow: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QMdiSubWindow) +16 QMdiSubWindow::metaObject +24 QMdiSubWindow::qt_metacast +32 QMdiSubWindow::qt_metacall +40 QMdiSubWindow::~QMdiSubWindow +48 QMdiSubWindow::~QMdiSubWindow +56 QMdiSubWindow::event +64 QMdiSubWindow::eventFilter +72 QMdiSubWindow::timerEvent +80 QMdiSubWindow::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QMdiSubWindow::sizeHint +136 QMdiSubWindow::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QMdiSubWindow::mousePressEvent +168 QMdiSubWindow::mouseReleaseEvent +176 QMdiSubWindow::mouseDoubleClickEvent +184 QMdiSubWindow::mouseMoveEvent +192 QWidget::wheelEvent +200 QMdiSubWindow::keyPressEvent +208 QWidget::keyReleaseEvent +216 QMdiSubWindow::focusInEvent +224 QMdiSubWindow::focusOutEvent +232 QWidget::enterEvent +240 QMdiSubWindow::leaveEvent +248 QMdiSubWindow::paintEvent +256 QMdiSubWindow::moveEvent +264 QMdiSubWindow::resizeEvent +272 QMdiSubWindow::closeEvent +280 QMdiSubWindow::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QMdiSubWindow::showEvent +344 QMdiSubWindow::hideEvent +352 QWidget::x11Event +360 QMdiSubWindow::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI13QMdiSubWindow) +464 QMdiSubWindow::_ZThn16_N13QMdiSubWindowD1Ev +472 QMdiSubWindow::_ZThn16_N13QMdiSubWindowD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMdiSubWindow + size=40 align=8 + base size=40 base align=8 +QMdiSubWindow (0x7f96ddb2ea80) 0 + vptr=((& QMdiSubWindow::_ZTV13QMdiSubWindow) + 16u) + QWidget (0x7f96ddb25c00) 0 + primary-for QMdiSubWindow (0x7f96ddb2ea80) + QObject (0x7f96ddb2eaf0) 0 + primary-for QWidget (0x7f96ddb25c00) + QPaintDevice (0x7f96ddb2eb60) 16 + vptr=((& QMdiSubWindow::_ZTV13QMdiSubWindow) + 464u) + +Vtable for QSplashScreen +QSplashScreen::_ZTV13QSplashScreen: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSplashScreen) +16 QSplashScreen::metaObject +24 QSplashScreen::qt_metacast +32 QSplashScreen::qt_metacall +40 QSplashScreen::~QSplashScreen +48 QSplashScreen::~QSplashScreen +56 QSplashScreen::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QSplashScreen::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QSplashScreen::drawContents +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI13QSplashScreen) +472 QSplashScreen::_ZThn16_N13QSplashScreenD1Ev +480 QSplashScreen::_ZThn16_N13QSplashScreenD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSplashScreen + size=40 align=8 + base size=40 base align=8 +QSplashScreen (0x7f96ddb81930) 0 + vptr=((& QSplashScreen::_ZTV13QSplashScreen) + 16u) + QWidget (0x7f96ddb4fd00) 0 + primary-for QSplashScreen (0x7f96ddb81930) + QObject (0x7f96ddb819a0) 0 + primary-for QWidget (0x7f96ddb4fd00) + QPaintDevice (0x7f96ddb81a10) 16 + vptr=((& QSplashScreen::_ZTV13QSplashScreen) + 472u) + +Vtable for QDateTimeEdit +QDateTimeEdit::_ZTV13QDateTimeEdit: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QDateTimeEdit) +16 QDateTimeEdit::metaObject +24 QDateTimeEdit::qt_metacast +32 QDateTimeEdit::qt_metacall +40 QDateTimeEdit::~QDateTimeEdit +48 QDateTimeEdit::~QDateTimeEdit +56 QDateTimeEdit::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QDateTimeEdit::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QDateTimeEdit::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QDateTimeEdit::wheelEvent +200 QDateTimeEdit::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QDateTimeEdit::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QDateTimeEdit::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QDateTimeEdit::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDateTimeEdit::validate +456 QDateTimeEdit::fixup +464 QDateTimeEdit::stepBy +472 QDateTimeEdit::clear +480 QDateTimeEdit::stepEnabled +488 QDateTimeEdit::dateTimeFromText +496 QDateTimeEdit::textFromDateTime +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI13QDateTimeEdit) +520 QDateTimeEdit::_ZThn16_N13QDateTimeEditD1Ev +528 QDateTimeEdit::_ZThn16_N13QDateTimeEditD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDateTimeEdit + size=40 align=8 + base size=40 base align=8 +QDateTimeEdit (0x7f96ddbbca10) 0 + vptr=((& QDateTimeEdit::_ZTV13QDateTimeEdit) + 16u) + QAbstractSpinBox (0x7f96ddbbca80) 0 + primary-for QDateTimeEdit (0x7f96ddbbca10) + QWidget (0x7f96ddbb5880) 0 + primary-for QAbstractSpinBox (0x7f96ddbbca80) + QObject (0x7f96ddbbcaf0) 0 + primary-for QWidget (0x7f96ddbb5880) + QPaintDevice (0x7f96ddbbcb60) 16 + vptr=((& QDateTimeEdit::_ZTV13QDateTimeEdit) + 520u) + +Vtable for QTimeEdit +QTimeEdit::_ZTV9QTimeEdit: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTimeEdit) +16 QTimeEdit::metaObject +24 QTimeEdit::qt_metacast +32 QTimeEdit::qt_metacall +40 QTimeEdit::~QTimeEdit +48 QTimeEdit::~QTimeEdit +56 QDateTimeEdit::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QDateTimeEdit::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QDateTimeEdit::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QDateTimeEdit::wheelEvent +200 QDateTimeEdit::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QDateTimeEdit::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QDateTimeEdit::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QDateTimeEdit::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDateTimeEdit::validate +456 QDateTimeEdit::fixup +464 QDateTimeEdit::stepBy +472 QDateTimeEdit::clear +480 QDateTimeEdit::stepEnabled +488 QDateTimeEdit::dateTimeFromText +496 QDateTimeEdit::textFromDateTime +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI9QTimeEdit) +520 QTimeEdit::_ZThn16_N9QTimeEditD1Ev +528 QTimeEdit::_ZThn16_N9QTimeEditD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTimeEdit + size=40 align=8 + base size=40 base align=8 +QTimeEdit (0x7f96ddbec930) 0 + vptr=((& QTimeEdit::_ZTV9QTimeEdit) + 16u) + QDateTimeEdit (0x7f96ddbec9a0) 0 + primary-for QTimeEdit (0x7f96ddbec930) + QAbstractSpinBox (0x7f96ddbeca10) 0 + primary-for QDateTimeEdit (0x7f96ddbec9a0) + QWidget (0x7f96ddbe4700) 0 + primary-for QAbstractSpinBox (0x7f96ddbeca10) + QObject (0x7f96ddbeca80) 0 + primary-for QWidget (0x7f96ddbe4700) + QPaintDevice (0x7f96ddbecaf0) 16 + vptr=((& QTimeEdit::_ZTV9QTimeEdit) + 520u) + +Vtable for QDateEdit +QDateEdit::_ZTV9QDateEdit: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QDateEdit) +16 QDateEdit::metaObject +24 QDateEdit::qt_metacast +32 QDateEdit::qt_metacall +40 QDateEdit::~QDateEdit +48 QDateEdit::~QDateEdit +56 QDateTimeEdit::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QDateTimeEdit::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QDateTimeEdit::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QDateTimeEdit::wheelEvent +200 QDateTimeEdit::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QDateTimeEdit::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QDateTimeEdit::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QDateTimeEdit::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDateTimeEdit::validate +456 QDateTimeEdit::fixup +464 QDateTimeEdit::stepBy +472 QDateTimeEdit::clear +480 QDateTimeEdit::stepEnabled +488 QDateTimeEdit::dateTimeFromText +496 QDateTimeEdit::textFromDateTime +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI9QDateEdit) +520 QDateEdit::_ZThn16_N9QDateEditD1Ev +528 QDateEdit::_ZThn16_N9QDateEditD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDateEdit + size=40 align=8 + base size=40 base align=8 +QDateEdit (0x7f96ddbfea10) 0 + vptr=((& QDateEdit::_ZTV9QDateEdit) + 16u) + QDateTimeEdit (0x7f96ddbfea80) 0 + primary-for QDateEdit (0x7f96ddbfea10) + QAbstractSpinBox (0x7f96ddbfeaf0) 0 + primary-for QDateTimeEdit (0x7f96ddbfea80) + QWidget (0x7f96ddbe4e00) 0 + primary-for QAbstractSpinBox (0x7f96ddbfeaf0) + QObject (0x7f96ddbfeb60) 0 + primary-for QWidget (0x7f96ddbe4e00) + QPaintDevice (0x7f96ddbfebd0) 16 + vptr=((& QDateEdit::_ZTV9QDateEdit) + 520u) + +Vtable for QLabel +QLabel::_ZTV6QLabel: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QLabel) +16 QLabel::metaObject +24 QLabel::qt_metacast +32 QLabel::qt_metacall +40 QLabel::~QLabel +48 QLabel::~QLabel +56 QLabel::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QLabel::sizeHint +136 QLabel::minimumSizeHint +144 QLabel::heightForWidth +152 QWidget::paintEngine +160 QLabel::mousePressEvent +168 QLabel::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QLabel::mouseMoveEvent +192 QWidget::wheelEvent +200 QLabel::keyPressEvent +208 QWidget::keyReleaseEvent +216 QLabel::focusInEvent +224 QLabel::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QLabel::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QLabel::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QLabel::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QLabel::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI6QLabel) +464 QLabel::_ZThn16_N6QLabelD1Ev +472 QLabel::_ZThn16_N6QLabelD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QLabel + size=40 align=8 + base size=40 base align=8 +QLabel (0x7f96dda447e0) 0 + vptr=((& QLabel::_ZTV6QLabel) + 16u) + QFrame (0x7f96dda44850) 0 + primary-for QLabel (0x7f96dda447e0) + QWidget (0x7f96dda13a80) 0 + primary-for QFrame (0x7f96dda44850) + QObject (0x7f96dda448c0) 0 + primary-for QWidget (0x7f96dda13a80) + QPaintDevice (0x7f96dda44930) 16 + vptr=((& QLabel::_ZTV6QLabel) + 464u) + +Vtable for QDockWidget +QDockWidget::_ZTV11QDockWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QDockWidget) +16 QDockWidget::metaObject +24 QDockWidget::qt_metacast +32 QDockWidget::qt_metacall +40 QDockWidget::~QDockWidget +48 QDockWidget::~QDockWidget +56 QDockWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QDockWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QDockWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QDockWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI11QDockWidget) +464 QDockWidget::_ZThn16_N11QDockWidgetD1Ev +472 QDockWidget::_ZThn16_N11QDockWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDockWidget + size=40 align=8 + base size=40 base align=8 +QDockWidget (0x7f96dda8e930) 0 + vptr=((& QDockWidget::_ZTV11QDockWidget) + 16u) + QWidget (0x7f96dda8a580) 0 + primary-for QDockWidget (0x7f96dda8e930) + QObject (0x7f96dda8e9a0) 0 + primary-for QWidget (0x7f96dda8a580) + QPaintDevice (0x7f96dda8ea10) 16 + vptr=((& QDockWidget::_ZTV11QDockWidget) + 464u) + +Vtable for QGroupBox +QGroupBox::_ZTV9QGroupBox: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QGroupBox) +16 QGroupBox::metaObject +24 QGroupBox::qt_metacast +32 QGroupBox::qt_metacall +40 QGroupBox::~QGroupBox +48 QGroupBox::~QGroupBox +56 QGroupBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QGroupBox::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QGroupBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QGroupBox::mousePressEvent +168 QGroupBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QGroupBox::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QGroupBox::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QGroupBox::paintEvent +256 QWidget::moveEvent +264 QGroupBox::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QGroupBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI9QGroupBox) +464 QGroupBox::_ZThn16_N9QGroupBoxD1Ev +472 QGroupBox::_ZThn16_N9QGroupBoxD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QGroupBox + size=40 align=8 + base size=40 base align=8 +QGroupBox (0x7f96dd909380) 0 + vptr=((& QGroupBox::_ZTV9QGroupBox) + 16u) + QWidget (0x7f96ddab1c80) 0 + primary-for QGroupBox (0x7f96dd909380) + QObject (0x7f96dd9093f0) 0 + primary-for QWidget (0x7f96ddab1c80) + QPaintDevice (0x7f96dd909460) 16 + vptr=((& QGroupBox::_ZTV9QGroupBox) + 464u) + +Vtable for QDialogButtonBox +QDialogButtonBox::_ZTV16QDialogButtonBox: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QDialogButtonBox) +16 QDialogButtonBox::metaObject +24 QDialogButtonBox::qt_metacast +32 QDialogButtonBox::qt_metacall +40 QDialogButtonBox::~QDialogButtonBox +48 QDialogButtonBox::~QDialogButtonBox +56 QDialogButtonBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QDialogButtonBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI16QDialogButtonBox) +464 QDialogButtonBox::_ZThn16_N16QDialogButtonBoxD1Ev +472 QDialogButtonBox::_ZThn16_N16QDialogButtonBoxD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDialogButtonBox + size=40 align=8 + base size=40 base align=8 +QDialogButtonBox (0x7f96dd92b000) 0 + vptr=((& QDialogButtonBox::_ZTV16QDialogButtonBox) + 16u) + QWidget (0x7f96dd922580) 0 + primary-for QDialogButtonBox (0x7f96dd92b000) + QObject (0x7f96dd92b070) 0 + primary-for QWidget (0x7f96dd922580) + QPaintDevice (0x7f96dd92b0e0) 16 + vptr=((& QDialogButtonBox::_ZTV16QDialogButtonBox) + 464u) + +Vtable for QMainWindow +QMainWindow::_ZTV11QMainWindow: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMainWindow) +16 QMainWindow::metaObject +24 QMainWindow::qt_metacast +32 QMainWindow::qt_metacall +40 QMainWindow::~QMainWindow +48 QMainWindow::~QMainWindow +56 QMainWindow::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QMainWindow::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QMainWindow::createPopupMenu +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI11QMainWindow) +472 QMainWindow::_ZThn16_N11QMainWindowD1Ev +480 QMainWindow::_ZThn16_N11QMainWindowD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMainWindow + size=40 align=8 + base size=40 base align=8 +QMainWindow (0x7f96dd99b4d0) 0 + vptr=((& QMainWindow::_ZTV11QMainWindow) + 16u) + QWidget (0x7f96dd952600) 0 + primary-for QMainWindow (0x7f96dd99b4d0) + QObject (0x7f96dd99b540) 0 + primary-for QWidget (0x7f96dd952600) + QPaintDevice (0x7f96dd99b5b0) 16 + vptr=((& QMainWindow::_ZTV11QMainWindow) + 472u) + +Class QTextEdit::ExtraSelection + size=24 align=8 + base size=24 base align=8 +QTextEdit::ExtraSelection (0x7f96dd81e770) 0 + +Vtable for QTextEdit +QTextEdit::_ZTV9QTextEdit: 69u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTextEdit) +16 QTextEdit::metaObject +24 QTextEdit::qt_metacast +32 QTextEdit::qt_metacall +40 QTextEdit::~QTextEdit +48 QTextEdit::~QTextEdit +56 QTextEdit::event +64 QObject::eventFilter +72 QTextEdit::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTextEdit::mousePressEvent +168 QTextEdit::mouseReleaseEvent +176 QTextEdit::mouseDoubleClickEvent +184 QTextEdit::mouseMoveEvent +192 QTextEdit::wheelEvent +200 QTextEdit::keyPressEvent +208 QTextEdit::keyReleaseEvent +216 QTextEdit::focusInEvent +224 QTextEdit::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTextEdit::paintEvent +256 QWidget::moveEvent +264 QTextEdit::resizeEvent +272 QWidget::closeEvent +280 QTextEdit::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QTextEdit::dragEnterEvent +312 QTextEdit::dragMoveEvent +320 QTextEdit::dragLeaveEvent +328 QTextEdit::dropEvent +336 QTextEdit::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QTextEdit::changeEvent +368 QWidget::metric +376 QTextEdit::inputMethodEvent +384 QTextEdit::inputMethodQuery +392 QTextEdit::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QTextEdit::scrollContentsBy +464 QTextEdit::loadResource +472 QTextEdit::createMimeDataFromSelection +480 QTextEdit::canInsertFromMimeData +488 QTextEdit::insertFromMimeData +496 (int (*)(...))-0x00000000000000010 +504 (int (*)(...))(& _ZTI9QTextEdit) +512 QTextEdit::_ZThn16_N9QTextEditD1Ev +520 QTextEdit::_ZThn16_N9QTextEditD0Ev +528 QWidget::_ZThn16_NK7QWidget7devTypeEv +536 QWidget::_ZThn16_NK7QWidget11paintEngineEv +544 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTextEdit + size=40 align=8 + base size=40 base align=8 +QTextEdit (0x7f96dd9f57e0) 0 + vptr=((& QTextEdit::_ZTV9QTextEdit) + 16u) + QAbstractScrollArea (0x7f96dd9f5850) 0 + primary-for QTextEdit (0x7f96dd9f57e0) + QFrame (0x7f96dd9f58c0) 0 + primary-for QAbstractScrollArea (0x7f96dd9f5850) + QWidget (0x7f96dd9c9700) 0 + primary-for QFrame (0x7f96dd9f58c0) + QObject (0x7f96dd9f5930) 0 + primary-for QWidget (0x7f96dd9c9700) + QPaintDevice (0x7f96dd9f59a0) 16 + vptr=((& QTextEdit::_ZTV9QTextEdit) + 512u) + +Vtable for QPlainTextEdit +QPlainTextEdit::_ZTV14QPlainTextEdit: 69u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QPlainTextEdit) +16 QPlainTextEdit::metaObject +24 QPlainTextEdit::qt_metacast +32 QPlainTextEdit::qt_metacall +40 QPlainTextEdit::~QPlainTextEdit +48 QPlainTextEdit::~QPlainTextEdit +56 QPlainTextEdit::event +64 QObject::eventFilter +72 QPlainTextEdit::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QPlainTextEdit::mousePressEvent +168 QPlainTextEdit::mouseReleaseEvent +176 QPlainTextEdit::mouseDoubleClickEvent +184 QPlainTextEdit::mouseMoveEvent +192 QPlainTextEdit::wheelEvent +200 QPlainTextEdit::keyPressEvent +208 QPlainTextEdit::keyReleaseEvent +216 QPlainTextEdit::focusInEvent +224 QPlainTextEdit::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QPlainTextEdit::paintEvent +256 QWidget::moveEvent +264 QPlainTextEdit::resizeEvent +272 QWidget::closeEvent +280 QPlainTextEdit::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QPlainTextEdit::dragEnterEvent +312 QPlainTextEdit::dragMoveEvent +320 QPlainTextEdit::dragLeaveEvent +328 QPlainTextEdit::dropEvent +336 QPlainTextEdit::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QPlainTextEdit::changeEvent +368 QWidget::metric +376 QPlainTextEdit::inputMethodEvent +384 QPlainTextEdit::inputMethodQuery +392 QPlainTextEdit::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QPlainTextEdit::scrollContentsBy +464 QPlainTextEdit::loadResource +472 QPlainTextEdit::createMimeDataFromSelection +480 QPlainTextEdit::canInsertFromMimeData +488 QPlainTextEdit::insertFromMimeData +496 (int (*)(...))-0x00000000000000010 +504 (int (*)(...))(& _ZTI14QPlainTextEdit) +512 QPlainTextEdit::_ZThn16_N14QPlainTextEditD1Ev +520 QPlainTextEdit::_ZThn16_N14QPlainTextEditD0Ev +528 QWidget::_ZThn16_NK7QWidget7devTypeEv +536 QWidget::_ZThn16_NK7QWidget11paintEngineEv +544 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPlainTextEdit + size=40 align=8 + base size=40 base align=8 +QPlainTextEdit (0x7f96dd8b5930) 0 + vptr=((& QPlainTextEdit::_ZTV14QPlainTextEdit) + 16u) + QAbstractScrollArea (0x7f96dd8b59a0) 0 + primary-for QPlainTextEdit (0x7f96dd8b5930) + QFrame (0x7f96dd8b5a10) 0 + primary-for QAbstractScrollArea (0x7f96dd8b59a0) + QWidget (0x7f96dd887f00) 0 + primary-for QFrame (0x7f96dd8b5a10) + QObject (0x7f96dd8b5a80) 0 + primary-for QWidget (0x7f96dd887f00) + QPaintDevice (0x7f96dd8b5af0) 16 + vptr=((& QPlainTextEdit::_ZTV14QPlainTextEdit) + 512u) + +Vtable for QPlainTextDocumentLayout +QPlainTextDocumentLayout::_ZTV24QPlainTextDocumentLayout: 24u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QPlainTextDocumentLayout) +16 QPlainTextDocumentLayout::metaObject +24 QPlainTextDocumentLayout::qt_metacast +32 QPlainTextDocumentLayout::qt_metacall +40 QPlainTextDocumentLayout::~QPlainTextDocumentLayout +48 QPlainTextDocumentLayout::~QPlainTextDocumentLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QPlainTextDocumentLayout::draw +120 QPlainTextDocumentLayout::hitTest +128 QPlainTextDocumentLayout::pageCount +136 QPlainTextDocumentLayout::documentSize +144 QPlainTextDocumentLayout::frameBoundingRect +152 QPlainTextDocumentLayout::blockBoundingRect +160 QPlainTextDocumentLayout::documentChanged +168 QAbstractTextDocumentLayout::resizeInlineObject +176 QAbstractTextDocumentLayout::positionInlineObject +184 QAbstractTextDocumentLayout::drawInlineObject + +Class QPlainTextDocumentLayout + size=16 align=8 + base size=16 base align=8 +QPlainTextDocumentLayout (0x7f96dd715700) 0 + vptr=((& QPlainTextDocumentLayout::_ZTV24QPlainTextDocumentLayout) + 16u) + QAbstractTextDocumentLayout (0x7f96dd715770) 0 + primary-for QPlainTextDocumentLayout (0x7f96dd715700) + QObject (0x7f96dd7157e0) 0 + primary-for QAbstractTextDocumentLayout (0x7f96dd715770) + +Vtable for QProgressBar +QProgressBar::_ZTV12QProgressBar: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QProgressBar) +16 QProgressBar::metaObject +24 QProgressBar::qt_metacast +32 QProgressBar::qt_metacall +40 QProgressBar::~QProgressBar +48 QProgressBar::~QProgressBar +56 QProgressBar::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QProgressBar::sizeHint +136 QProgressBar::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QProgressBar::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QProgressBar::text +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI12QProgressBar) +472 QProgressBar::_ZThn16_N12QProgressBarD1Ev +480 QProgressBar::_ZThn16_N12QProgressBarD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QProgressBar + size=40 align=8 + base size=40 base align=8 +QProgressBar (0x7f96dd728bd0) 0 + vptr=((& QProgressBar::_ZTV12QProgressBar) + 16u) + QWidget (0x7f96dd714f00) 0 + primary-for QProgressBar (0x7f96dd728bd0) + QObject (0x7f96dd728c40) 0 + primary-for QWidget (0x7f96dd714f00) + QPaintDevice (0x7f96dd728cb0) 16 + vptr=((& QProgressBar::_ZTV12QProgressBar) + 472u) + +Vtable for QScrollBar +QScrollBar::_ZTV10QScrollBar: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QScrollBar) +16 QScrollBar::metaObject +24 QScrollBar::qt_metacast +32 QScrollBar::qt_metacall +40 QScrollBar::~QScrollBar +48 QScrollBar::~QScrollBar +56 QScrollBar::event +64 QObject::eventFilter +72 QAbstractSlider::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QScrollBar::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QScrollBar::mousePressEvent +168 QScrollBar::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QScrollBar::mouseMoveEvent +192 QAbstractSlider::wheelEvent +200 QAbstractSlider::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QScrollBar::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QScrollBar::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QScrollBar::hideEvent +352 QWidget::x11Event +360 QAbstractSlider::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QScrollBar::sliderChange +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI10QScrollBar) +472 QScrollBar::_ZThn16_N10QScrollBarD1Ev +480 QScrollBar::_ZThn16_N10QScrollBarD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QScrollBar + size=40 align=8 + base size=40 base align=8 +QScrollBar (0x7f96dd74da10) 0 + vptr=((& QScrollBar::_ZTV10QScrollBar) + 16u) + QAbstractSlider (0x7f96dd74da80) 0 + primary-for QScrollBar (0x7f96dd74da10) + QWidget (0x7f96dd730900) 0 + primary-for QAbstractSlider (0x7f96dd74da80) + QObject (0x7f96dd74daf0) 0 + primary-for QWidget (0x7f96dd730900) + QPaintDevice (0x7f96dd74db60) 16 + vptr=((& QScrollBar::_ZTV10QScrollBar) + 472u) + +Vtable for QSizeGrip +QSizeGrip::_ZTV9QSizeGrip: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QSizeGrip) +16 QSizeGrip::metaObject +24 QSizeGrip::qt_metacast +32 QSizeGrip::qt_metacall +40 QSizeGrip::~QSizeGrip +48 QSizeGrip::~QSizeGrip +56 QSizeGrip::event +64 QSizeGrip::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QSizeGrip::setVisible +128 QSizeGrip::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QSizeGrip::mousePressEvent +168 QSizeGrip::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QSizeGrip::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QSizeGrip::paintEvent +256 QSizeGrip::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QSizeGrip::showEvent +344 QSizeGrip::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI9QSizeGrip) +464 QSizeGrip::_ZThn16_N9QSizeGripD1Ev +472 QSizeGrip::_ZThn16_N9QSizeGripD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSizeGrip + size=40 align=8 + base size=40 base align=8 +QSizeGrip (0x7f96dd76db60) 0 + vptr=((& QSizeGrip::_ZTV9QSizeGrip) + 16u) + QWidget (0x7f96dd771380) 0 + primary-for QSizeGrip (0x7f96dd76db60) + QObject (0x7f96dd76dbd0) 0 + primary-for QWidget (0x7f96dd771380) + QPaintDevice (0x7f96dd76dc40) 16 + vptr=((& QSizeGrip::_ZTV9QSizeGrip) + 464u) + +Vtable for QTextBrowser +QTextBrowser::_ZTV12QTextBrowser: 74u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextBrowser) +16 QTextBrowser::metaObject +24 QTextBrowser::qt_metacast +32 QTextBrowser::qt_metacall +40 QTextBrowser::~QTextBrowser +48 QTextBrowser::~QTextBrowser +56 QTextBrowser::event +64 QObject::eventFilter +72 QTextEdit::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTextBrowser::mousePressEvent +168 QTextBrowser::mouseReleaseEvent +176 QTextEdit::mouseDoubleClickEvent +184 QTextBrowser::mouseMoveEvent +192 QTextEdit::wheelEvent +200 QTextBrowser::keyPressEvent +208 QTextEdit::keyReleaseEvent +216 QTextEdit::focusInEvent +224 QTextBrowser::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTextBrowser::paintEvent +256 QWidget::moveEvent +264 QTextEdit::resizeEvent +272 QWidget::closeEvent +280 QTextEdit::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QTextEdit::dragEnterEvent +312 QTextEdit::dragMoveEvent +320 QTextEdit::dragLeaveEvent +328 QTextEdit::dropEvent +336 QTextEdit::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QTextEdit::changeEvent +368 QWidget::metric +376 QTextEdit::inputMethodEvent +384 QTextEdit::inputMethodQuery +392 QTextBrowser::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QTextEdit::scrollContentsBy +464 QTextBrowser::loadResource +472 QTextEdit::createMimeDataFromSelection +480 QTextEdit::canInsertFromMimeData +488 QTextEdit::insertFromMimeData +496 QTextBrowser::setSource +504 QTextBrowser::backward +512 QTextBrowser::forward +520 QTextBrowser::home +528 QTextBrowser::reload +536 (int (*)(...))-0x00000000000000010 +544 (int (*)(...))(& _ZTI12QTextBrowser) +552 QTextBrowser::_ZThn16_N12QTextBrowserD1Ev +560 QTextBrowser::_ZThn16_N12QTextBrowserD0Ev +568 QWidget::_ZThn16_NK7QWidget7devTypeEv +576 QWidget::_ZThn16_NK7QWidget11paintEngineEv +584 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTextBrowser + size=40 align=8 + base size=40 base align=8 +QTextBrowser (0x7f96dd78b690) 0 + vptr=((& QTextBrowser::_ZTV12QTextBrowser) + 16u) + QTextEdit (0x7f96dd78b700) 0 + primary-for QTextBrowser (0x7f96dd78b690) + QAbstractScrollArea (0x7f96dd78b770) 0 + primary-for QTextEdit (0x7f96dd78b700) + QFrame (0x7f96dd78b7e0) 0 + primary-for QAbstractScrollArea (0x7f96dd78b770) + QWidget (0x7f96dd771c80) 0 + primary-for QFrame (0x7f96dd78b7e0) + QObject (0x7f96dd78b850) 0 + primary-for QWidget (0x7f96dd771c80) + QPaintDevice (0x7f96dd78b8c0) 16 + vptr=((& QTextBrowser::_ZTV12QTextBrowser) + 552u) + +Vtable for QStatusBar +QStatusBar::_ZTV10QStatusBar: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QStatusBar) +16 QStatusBar::metaObject +24 QStatusBar::qt_metacast +32 QStatusBar::qt_metacall +40 QStatusBar::~QStatusBar +48 QStatusBar::~QStatusBar +56 QStatusBar::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QStatusBar::paintEvent +256 QWidget::moveEvent +264 QStatusBar::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QStatusBar::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI10QStatusBar) +464 QStatusBar::_ZThn16_N10QStatusBarD1Ev +472 QStatusBar::_ZThn16_N10QStatusBarD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QStatusBar + size=40 align=8 + base size=40 base align=8 +QStatusBar (0x7f96dd7b12a0) 0 + vptr=((& QStatusBar::_ZTV10QStatusBar) + 16u) + QWidget (0x7f96dd7a8580) 0 + primary-for QStatusBar (0x7f96dd7b12a0) + QObject (0x7f96dd7b1310) 0 + primary-for QWidget (0x7f96dd7a8580) + QPaintDevice (0x7f96dd7b1380) 16 + vptr=((& QStatusBar::_ZTV10QStatusBar) + 464u) + +Vtable for QToolButton +QToolButton::_ZTV11QToolButton: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QToolButton) +16 QToolButton::metaObject +24 QToolButton::qt_metacast +32 QToolButton::qt_metacall +40 QToolButton::~QToolButton +48 QToolButton::~QToolButton +56 QToolButton::event +64 QObject::eventFilter +72 QToolButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QToolButton::sizeHint +136 QToolButton::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QToolButton::mousePressEvent +168 QToolButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QAbstractButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QAbstractButton::focusInEvent +224 QAbstractButton::focusOutEvent +232 QToolButton::enterEvent +240 QToolButton::leaveEvent +248 QToolButton::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QToolButton::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QToolButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QToolButton::hitButton +456 QAbstractButton::checkStateSet +464 QToolButton::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11QToolButton) +488 QToolButton::_ZThn16_N11QToolButtonD1Ev +496 QToolButton::_ZThn16_N11QToolButtonD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QToolButton + size=40 align=8 + base size=40 base align=8 +QToolButton (0x7f96dd7d27e0) 0 + vptr=((& QToolButton::_ZTV11QToolButton) + 16u) + QAbstractButton (0x7f96dd7d2850) 0 + primary-for QToolButton (0x7f96dd7d27e0) + QWidget (0x7f96dd7d0480) 0 + primary-for QAbstractButton (0x7f96dd7d2850) + QObject (0x7f96dd7d28c0) 0 + primary-for QWidget (0x7f96dd7d0480) + QPaintDevice (0x7f96dd7d2930) 16 + vptr=((& QToolButton::_ZTV11QToolButton) + 488u) + +Vtable for QComboBox +QComboBox::_ZTV9QComboBox: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QComboBox) +16 QComboBox::metaObject +24 QComboBox::qt_metacast +32 QComboBox::qt_metacall +40 QComboBox::~QComboBox +48 QComboBox::~QComboBox +56 QComboBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QComboBox::sizeHint +136 QComboBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QComboBox::mousePressEvent +168 QComboBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QComboBox::wheelEvent +200 QComboBox::keyPressEvent +208 QComboBox::keyReleaseEvent +216 QComboBox::focusInEvent +224 QComboBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QComboBox::paintEvent +256 QWidget::moveEvent +264 QComboBox::resizeEvent +272 QWidget::closeEvent +280 QComboBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QComboBox::showEvent +344 QComboBox::hideEvent +352 QWidget::x11Event +360 QComboBox::changeEvent +368 QWidget::metric +376 QComboBox::inputMethodEvent +384 QComboBox::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QComboBox::showPopup +456 QComboBox::hidePopup +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI9QComboBox) +480 QComboBox::_ZThn16_N9QComboBoxD1Ev +488 QComboBox::_ZThn16_N9QComboBoxD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QComboBox + size=40 align=8 + base size=40 base align=8 +QComboBox (0x7f96dd613af0) 0 + vptr=((& QComboBox::_ZTV9QComboBox) + 16u) + QWidget (0x7f96dd61a080) 0 + primary-for QComboBox (0x7f96dd613af0) + QObject (0x7f96dd613b60) 0 + primary-for QWidget (0x7f96dd61a080) + QPaintDevice (0x7f96dd613bd0) 16 + vptr=((& QComboBox::_ZTV9QComboBox) + 480u) + +Vtable for QCommandLinkButton +QCommandLinkButton::_ZTV18QCommandLinkButton: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QCommandLinkButton) +16 QCommandLinkButton::metaObject +24 QCommandLinkButton::qt_metacast +32 QCommandLinkButton::qt_metacall +40 QCommandLinkButton::~QCommandLinkButton +48 QCommandLinkButton::~QCommandLinkButton +56 QCommandLinkButton::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QCommandLinkButton::sizeHint +136 QCommandLinkButton::minimumSizeHint +144 QCommandLinkButton::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QPushButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QPushButton::focusInEvent +224 QPushButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QCommandLinkButton::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractButton::hitButton +456 QAbstractButton::checkStateSet +464 QAbstractButton::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI18QCommandLinkButton) +488 QCommandLinkButton::_ZThn16_N18QCommandLinkButtonD1Ev +496 QCommandLinkButton::_ZThn16_N18QCommandLinkButtonD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QCommandLinkButton + size=40 align=8 + base size=40 base align=8 +QCommandLinkButton (0x7f96dd683620) 0 + vptr=((& QCommandLinkButton::_ZTV18QCommandLinkButton) + 16u) + QPushButton (0x7f96dd683690) 0 + primary-for QCommandLinkButton (0x7f96dd683620) + QAbstractButton (0x7f96dd683700) 0 + primary-for QPushButton (0x7f96dd683690) + QWidget (0x7f96dd67ec80) 0 + primary-for QAbstractButton (0x7f96dd683700) + QObject (0x7f96dd683770) 0 + primary-for QWidget (0x7f96dd67ec80) + QPaintDevice (0x7f96dd6837e0) 16 + vptr=((& QCommandLinkButton::_ZTV18QCommandLinkButton) + 488u) + +Vtable for QMenuItem +QMenuItem::_ZTV9QMenuItem: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QMenuItem) +16 QMenuItem::metaObject +24 QMenuItem::qt_metacast +32 QMenuItem::qt_metacall +40 QMenuItem::~QMenuItem +48 QMenuItem::~QMenuItem +56 QAction::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QMenuItem + size=16 align=8 + base size=16 base align=8 +QMenuItem (0x7f96dd6a31c0) 0 + vptr=((& QMenuItem::_ZTV9QMenuItem) + 16u) + QAction (0x7f96dd6a3230) 0 + primary-for QMenuItem (0x7f96dd6a31c0) + QObject (0x7f96dd6a32a0) 0 + primary-for QAction (0x7f96dd6a3230) + +Vtable for QCalendarWidget +QCalendarWidget::_ZTV15QCalendarWidget: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QCalendarWidget) +16 QCalendarWidget::metaObject +24 QCalendarWidget::qt_metacast +32 QCalendarWidget::qt_metacall +40 QCalendarWidget::~QCalendarWidget +48 QCalendarWidget::~QCalendarWidget +56 QCalendarWidget::event +64 QCalendarWidget::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QCalendarWidget::sizeHint +136 QCalendarWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QCalendarWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QCalendarWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QCalendarWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QCalendarWidget::paintCell +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI15QCalendarWidget) +472 QCalendarWidget::_ZThn16_N15QCalendarWidgetD1Ev +480 QCalendarWidget::_ZThn16_N15QCalendarWidgetD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QCalendarWidget + size=40 align=8 + base size=40 base align=8 +QCalendarWidget (0x7f96dd6b2000) 0 + vptr=((& QCalendarWidget::_ZTV15QCalendarWidget) + 16u) + QWidget (0x7f96dd69bc00) 0 + primary-for QCalendarWidget (0x7f96dd6b2000) + QObject (0x7f96dd6b2070) 0 + primary-for QWidget (0x7f96dd69bc00) + QPaintDevice (0x7f96dd6b20e0) 16 + vptr=((& QCalendarWidget::_ZTV15QCalendarWidget) + 472u) + +Vtable for QRadioButton +QRadioButton::_ZTV12QRadioButton: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QRadioButton) +16 QRadioButton::metaObject +24 QRadioButton::qt_metacast +32 QRadioButton::qt_metacall +40 QRadioButton::~QRadioButton +48 QRadioButton::~QRadioButton +56 QRadioButton::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QRadioButton::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QRadioButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QAbstractButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QAbstractButton::focusInEvent +224 QAbstractButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QRadioButton::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QRadioButton::hitButton +456 QAbstractButton::checkStateSet +464 QAbstractButton::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI12QRadioButton) +488 QRadioButton::_ZThn16_N12QRadioButtonD1Ev +496 QRadioButton::_ZThn16_N12QRadioButtonD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QRadioButton + size=40 align=8 + base size=40 base align=8 +QRadioButton (0x7f96dd6de150) 0 + vptr=((& QRadioButton::_ZTV12QRadioButton) + 16u) + QAbstractButton (0x7f96dd6de1c0) 0 + primary-for QRadioButton (0x7f96dd6de150) + QWidget (0x7f96dd6b8b00) 0 + primary-for QAbstractButton (0x7f96dd6de1c0) + QObject (0x7f96dd6de230) 0 + primary-for QWidget (0x7f96dd6b8b00) + QPaintDevice (0x7f96dd6de2a0) 16 + vptr=((& QRadioButton::_ZTV12QRadioButton) + 488u) + +Vtable for QMenuBar +QMenuBar::_ZTV8QMenuBar: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QMenuBar) +16 QMenuBar::metaObject +24 QMenuBar::qt_metacast +32 QMenuBar::qt_metacall +40 QMenuBar::~QMenuBar +48 QMenuBar::~QMenuBar +56 QMenuBar::event +64 QMenuBar::eventFilter +72 QMenuBar::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QMenuBar::setVisible +128 QMenuBar::sizeHint +136 QMenuBar::minimumSizeHint +144 QMenuBar::heightForWidth +152 QWidget::paintEngine +160 QMenuBar::mousePressEvent +168 QMenuBar::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QMenuBar::mouseMoveEvent +192 QWidget::wheelEvent +200 QMenuBar::keyPressEvent +208 QWidget::keyReleaseEvent +216 QMenuBar::focusInEvent +224 QMenuBar::focusOutEvent +232 QWidget::enterEvent +240 QMenuBar::leaveEvent +248 QMenuBar::paintEvent +256 QWidget::moveEvent +264 QMenuBar::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QMenuBar::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QMenuBar::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI8QMenuBar) +464 QMenuBar::_ZThn16_N8QMenuBarD1Ev +472 QMenuBar::_ZThn16_N8QMenuBarD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMenuBar + size=40 align=8 + base size=40 base align=8 +QMenuBar (0x7f96dd6f4d90) 0 + vptr=((& QMenuBar::_ZTV8QMenuBar) + 16u) + QWidget (0x7f96dd6f7400) 0 + primary-for QMenuBar (0x7f96dd6f4d90) + QObject (0x7f96dd6f4e00) 0 + primary-for QWidget (0x7f96dd6f7400) + QPaintDevice (0x7f96dd6f4e70) 16 + vptr=((& QMenuBar::_ZTV8QMenuBar) + 464u) + +Vtable for QFocusFrame +QFocusFrame::_ZTV11QFocusFrame: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFocusFrame) +16 QFocusFrame::metaObject +24 QFocusFrame::qt_metacast +32 QFocusFrame::qt_metacall +40 QFocusFrame::~QFocusFrame +48 QFocusFrame::~QFocusFrame +56 QFocusFrame::event +64 QFocusFrame::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFocusFrame::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI11QFocusFrame) +464 QFocusFrame::_ZThn16_N11QFocusFrameD1Ev +472 QFocusFrame::_ZThn16_N11QFocusFrameD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFocusFrame + size=40 align=8 + base size=40 base align=8 +QFocusFrame (0x7f96dd58ecb0) 0 + vptr=((& QFocusFrame::_ZTV11QFocusFrame) + 16u) + QWidget (0x7f96dd58de00) 0 + primary-for QFocusFrame (0x7f96dd58ecb0) + QObject (0x7f96dd58ed20) 0 + primary-for QWidget (0x7f96dd58de00) + QPaintDevice (0x7f96dd58ed90) 16 + vptr=((& QFocusFrame::_ZTV11QFocusFrame) + 464u) + +Vtable for QFontComboBox +QFontComboBox::_ZTV13QFontComboBox: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QFontComboBox) +16 QFontComboBox::metaObject +24 QFontComboBox::qt_metacast +32 QFontComboBox::qt_metacall +40 QFontComboBox::~QFontComboBox +48 QFontComboBox::~QFontComboBox +56 QFontComboBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QFontComboBox::sizeHint +136 QComboBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QComboBox::mousePressEvent +168 QComboBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QComboBox::wheelEvent +200 QComboBox::keyPressEvent +208 QComboBox::keyReleaseEvent +216 QComboBox::focusInEvent +224 QComboBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QComboBox::paintEvent +256 QWidget::moveEvent +264 QComboBox::resizeEvent +272 QWidget::closeEvent +280 QComboBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QComboBox::showEvent +344 QComboBox::hideEvent +352 QWidget::x11Event +360 QComboBox::changeEvent +368 QWidget::metric +376 QComboBox::inputMethodEvent +384 QComboBox::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QComboBox::showPopup +456 QComboBox::hidePopup +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI13QFontComboBox) +480 QFontComboBox::_ZThn16_N13QFontComboBoxD1Ev +488 QFontComboBox::_ZThn16_N13QFontComboBoxD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFontComboBox + size=40 align=8 + base size=40 base align=8 +QFontComboBox (0x7f96dd5aa850) 0 + vptr=((& QFontComboBox::_ZTV13QFontComboBox) + 16u) + QComboBox (0x7f96dd5aa8c0) 0 + primary-for QFontComboBox (0x7f96dd5aa850) + QWidget (0x7f96dd5a3700) 0 + primary-for QComboBox (0x7f96dd5aa8c0) + QObject (0x7f96dd5aa930) 0 + primary-for QWidget (0x7f96dd5a3700) + QPaintDevice (0x7f96dd5aa9a0) 16 + vptr=((& QFontComboBox::_ZTV13QFontComboBox) + 480u) + +Vtable for QToolBar +QToolBar::_ZTV8QToolBar: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QToolBar) +16 QToolBar::metaObject +24 QToolBar::qt_metacast +32 QToolBar::qt_metacall +40 QToolBar::~QToolBar +48 QToolBar::~QToolBar +56 QToolBar::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QToolBar::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QToolBar::paintEvent +256 QWidget::moveEvent +264 QToolBar::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QToolBar::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QToolBar::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI8QToolBar) +464 QToolBar::_ZThn16_N8QToolBarD1Ev +472 QToolBar::_ZThn16_N8QToolBarD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QToolBar + size=40 align=8 + base size=40 base align=8 +QToolBar (0x7f96dd417540) 0 + vptr=((& QToolBar::_ZTV8QToolBar) + 16u) + QWidget (0x7f96dd5c5800) 0 + primary-for QToolBar (0x7f96dd417540) + QObject (0x7f96dd4175b0) 0 + primary-for QWidget (0x7f96dd5c5800) + QPaintDevice (0x7f96dd417620) 16 + vptr=((& QToolBar::_ZTV8QToolBar) + 464u) + +Vtable for QToolBox +QToolBox::_ZTV8QToolBox: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QToolBox) +16 QToolBox::metaObject +24 QToolBox::qt_metacast +32 QToolBox::qt_metacall +40 QToolBox::~QToolBox +48 QToolBox::~QToolBox +56 QToolBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QFrame::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFrame::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QToolBox::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QToolBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QToolBox::itemInserted +456 QToolBox::itemRemoved +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI8QToolBox) +480 QToolBox::_ZThn16_N8QToolBoxD1Ev +488 QToolBox::_ZThn16_N8QToolBoxD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QToolBox + size=40 align=8 + base size=40 base align=8 +QToolBox (0x7f96dd44d380) 0 + vptr=((& QToolBox::_ZTV8QToolBox) + 16u) + QFrame (0x7f96dd44d3f0) 0 + primary-for QToolBox (0x7f96dd44d380) + QWidget (0x7f96dd449800) 0 + primary-for QFrame (0x7f96dd44d3f0) + QObject (0x7f96dd44d460) 0 + primary-for QWidget (0x7f96dd449800) + QPaintDevice (0x7f96dd44d4d0) 16 + vptr=((& QToolBox::_ZTV8QToolBox) + 480u) + +Vtable for QSplitter +QSplitter::_ZTV9QSplitter: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QSplitter) +16 QSplitter::metaObject +24 QSplitter::qt_metacast +32 QSplitter::qt_metacall +40 QSplitter::~QSplitter +48 QSplitter::~QSplitter +56 QSplitter::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QSplitter::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QSplitter::sizeHint +136 QSplitter::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFrame::paintEvent +256 QWidget::moveEvent +264 QSplitter::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QSplitter::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QSplitter::createHandle +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI9QSplitter) +472 QSplitter::_ZThn16_N9QSplitterD1Ev +480 QSplitter::_ZThn16_N9QSplitterD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSplitter + size=40 align=8 + base size=40 base align=8 +QSplitter (0x7f96dd485000) 0 + vptr=((& QSplitter::_ZTV9QSplitter) + 16u) + QFrame (0x7f96dd485070) 0 + primary-for QSplitter (0x7f96dd485000) + QWidget (0x7f96dd481480) 0 + primary-for QFrame (0x7f96dd485070) + QObject (0x7f96dd4850e0) 0 + primary-for QWidget (0x7f96dd481480) + QPaintDevice (0x7f96dd485150) 16 + vptr=((& QSplitter::_ZTV9QSplitter) + 472u) + +Vtable for QSplitterHandle +QSplitterHandle::_ZTV15QSplitterHandle: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSplitterHandle) +16 QSplitterHandle::metaObject +24 QSplitterHandle::qt_metacast +32 QSplitterHandle::qt_metacall +40 QSplitterHandle::~QSplitterHandle +48 QSplitterHandle::~QSplitterHandle +56 QSplitterHandle::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QSplitterHandle::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QSplitterHandle::mousePressEvent +168 QSplitterHandle::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QSplitterHandle::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QSplitterHandle::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI15QSplitterHandle) +464 QSplitterHandle::_ZThn16_N15QSplitterHandleD1Ev +472 QSplitterHandle::_ZThn16_N15QSplitterHandleD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSplitterHandle + size=40 align=8 + base size=40 base align=8 +QSplitterHandle (0x7f96dd4b30e0) 0 + vptr=((& QSplitterHandle::_ZTV15QSplitterHandle) + 16u) + QWidget (0x7f96dd4ad580) 0 + primary-for QSplitterHandle (0x7f96dd4b30e0) + QObject (0x7f96dd4b3150) 0 + primary-for QWidget (0x7f96dd4ad580) + QPaintDevice (0x7f96dd4b31c0) 16 + vptr=((& QSplitterHandle::_ZTV15QSplitterHandle) + 464u) + +Vtable for QDial +QDial::_ZTV5QDial: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QDial) +16 QDial::metaObject +24 QDial::qt_metacast +32 QDial::qt_metacall +40 QDial::~QDial +48 QDial::~QDial +56 QDial::event +64 QObject::eventFilter +72 QAbstractSlider::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QDial::sizeHint +136 QDial::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QDial::mousePressEvent +168 QDial::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QDial::mouseMoveEvent +192 QAbstractSlider::wheelEvent +200 QAbstractSlider::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QDial::paintEvent +256 QWidget::moveEvent +264 QDial::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractSlider::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDial::sliderChange +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI5QDial) +472 QDial::_ZThn16_N5QDialD1Ev +480 QDial::_ZThn16_N5QDialD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDial + size=40 align=8 + base size=40 base align=8 +QDial (0x7f96dd4cb8c0) 0 + vptr=((& QDial::_ZTV5QDial) + 16u) + QAbstractSlider (0x7f96dd4cb930) 0 + primary-for QDial (0x7f96dd4cb8c0) + QWidget (0x7f96dd4ade80) 0 + primary-for QAbstractSlider (0x7f96dd4cb930) + QObject (0x7f96dd4cb9a0) 0 + primary-for QWidget (0x7f96dd4ade80) + QPaintDevice (0x7f96dd4cba10) 16 + vptr=((& QDial::_ZTV5QDial) + 472u) + +Vtable for QSvgGenerator +QSvgGenerator::_ZTV13QSvgGenerator: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSvgGenerator) +16 QSvgGenerator::~QSvgGenerator +24 QSvgGenerator::~QSvgGenerator +32 QPaintDevice::devType +40 QSvgGenerator::paintEngine +48 QSvgGenerator::metric + +Class QSvgGenerator + size=24 align=8 + base size=24 base align=8 +QSvgGenerator (0x7f96dd4eb540) 0 + vptr=((& QSvgGenerator::_ZTV13QSvgGenerator) + 16u) + QPaintDevice (0x7f96dd4eb5b0) 0 + primary-for QSvgGenerator (0x7f96dd4eb540) + +Vtable for QSvgRenderer +QSvgRenderer::_ZTV12QSvgRenderer: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QSvgRenderer) +16 QSvgRenderer::metaObject +24 QSvgRenderer::qt_metacast +32 QSvgRenderer::qt_metacall +40 QSvgRenderer::~QSvgRenderer +48 QSvgRenderer::~QSvgRenderer +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSvgRenderer + size=16 align=8 + base size=16 base align=8 +QSvgRenderer (0x7f96dd4ebd20) 0 + vptr=((& QSvgRenderer::_ZTV12QSvgRenderer) + 16u) + QObject (0x7f96dd4ebd90) 0 + primary-for QSvgRenderer (0x7f96dd4ebd20) + +Vtable for QSvgWidget +QSvgWidget::_ZTV10QSvgWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QSvgWidget) +16 QSvgWidget::metaObject +24 QSvgWidget::qt_metacast +32 QSvgWidget::qt_metacall +40 QSvgWidget::~QSvgWidget +48 QSvgWidget::~QSvgWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QSvgWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QSvgWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI10QSvgWidget) +464 QSvgWidget::_ZThn16_N10QSvgWidgetD1Ev +472 QSvgWidget::_ZThn16_N10QSvgWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSvgWidget + size=40 align=8 + base size=40 base align=8 +QSvgWidget (0x7f96dd314460) 0 + vptr=((& QSvgWidget::_ZTV10QSvgWidget) + 16u) + QWidget (0x7f96dd311300) 0 + primary-for QSvgWidget (0x7f96dd314460) + QObject (0x7f96dd3144d0) 0 + primary-for QWidget (0x7f96dd311300) + QPaintDevice (0x7f96dd314540) 16 + vptr=((& QSvgWidget::_ZTV10QSvgWidget) + 464u) + +Vtable for QGraphicsSvgItem +QGraphicsSvgItem::_ZTV16QGraphicsSvgItem: 56u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QGraphicsSvgItem) +16 QGraphicsSvgItem::metaObject +24 QGraphicsSvgItem::qt_metacast +32 QGraphicsSvgItem::qt_metacall +40 QGraphicsSvgItem::~QGraphicsSvgItem +48 QGraphicsSvgItem::~QGraphicsSvgItem +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsSvgItem::boundingRect +120 QGraphicsSvgItem::paint +128 QGraphicsSvgItem::type +136 (int (*)(...))-0x00000000000000010 +144 (int (*)(...))(& _ZTI16QGraphicsSvgItem) +152 QGraphicsSvgItem::_ZThn16_N16QGraphicsSvgItemD1Ev +160 QGraphicsSvgItem::_ZThn16_N16QGraphicsSvgItemD0Ev +168 QGraphicsItem::advance +176 QGraphicsSvgItem::_ZThn16_NK16QGraphicsSvgItem12boundingRectEv +184 QGraphicsItem::shape +192 QGraphicsItem::contains +200 QGraphicsItem::collidesWithItem +208 QGraphicsItem::collidesWithPath +216 QGraphicsItem::isObscuredBy +224 QGraphicsItem::opaqueArea +232 QGraphicsSvgItem::_ZThn16_N16QGraphicsSvgItem5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget +240 QGraphicsSvgItem::_ZThn16_NK16QGraphicsSvgItem4typeEv +248 QGraphicsItem::sceneEventFilter +256 QGraphicsItem::sceneEvent +264 QGraphicsItem::contextMenuEvent +272 QGraphicsItem::dragEnterEvent +280 QGraphicsItem::dragLeaveEvent +288 QGraphicsItem::dragMoveEvent +296 QGraphicsItem::dropEvent +304 QGraphicsItem::focusInEvent +312 QGraphicsItem::focusOutEvent +320 QGraphicsItem::hoverEnterEvent +328 QGraphicsItem::hoverMoveEvent +336 QGraphicsItem::hoverLeaveEvent +344 QGraphicsItem::keyPressEvent +352 QGraphicsItem::keyReleaseEvent +360 QGraphicsItem::mousePressEvent +368 QGraphicsItem::mouseMoveEvent +376 QGraphicsItem::mouseReleaseEvent +384 QGraphicsItem::mouseDoubleClickEvent +392 QGraphicsItem::wheelEvent +400 QGraphicsItem::inputMethodEvent +408 QGraphicsItem::inputMethodQuery +416 QGraphicsItem::itemChange +424 QGraphicsItem::supportsExtension +432 QGraphicsItem::setExtension +440 QGraphicsItem::extension + +Class QGraphicsSvgItem + size=32 align=8 + base size=32 base align=8 +QGraphicsSvgItem (0x7f96dd311c00) 0 + vptr=((& QGraphicsSvgItem::_ZTV16QGraphicsSvgItem) + 16u) + QObject (0x7f96dd326e70) 0 + primary-for QGraphicsSvgItem (0x7f96dd311c00) + QGraphicsItem (0x7f96dd326ee0) 16 + vptr=((& QGraphicsSvgItem::_ZTV16QGraphicsSvgItem) + 152u) + diff --git a/tests/auto/bic/data/QtSvg.4.6.0.linux-gcc-amd64.txt b/tests/auto/bic/data/QtSvg.4.6.0.linux-gcc-amd64.txt new file mode 100644 index 0000000..11bb2fd --- /dev/null +++ b/tests/auto/bic/data/QtSvg.4.6.0.linux-gcc-amd64.txt @@ -0,0 +1,16905 @@ +Class QSysInfo + size=1 align=1 + base size=0 base align=1 +QSysInfo (0x7fb2a4362230) 0 empty + +Class QBool + size=1 align=1 + base size=1 base align=1 +QBool (0x7fb2a4362e70) 0 + +Class qIsNull(double)::U + size=8 align=8 + base size=8 base align=8 +qIsNull(double)::U (0x7fb2a3968540) 0 + +Class qIsNull(float)::U + size=4 align=4 + base size=4 base align=4 +qIsNull(float)::U (0x7fb2a39687e0) 0 + +Class QFlag + size=4 align=4 + base size=4 base align=4 +QFlag (0x7fb2a39a4690) 0 + +Class QIncompatibleFlag + size=4 align=4 + base size=4 base align=4 +QIncompatibleFlag (0x7fb2a39a4e70) 0 + +Class QLatin1Char + size=1 align=1 + base size=1 base align=1 +QLatin1Char (0x7fb2a39d25b0) 0 + +Class QChar + size=2 align=2 + base size=2 base align=2 +QChar (0x7fb2a39f7150) 0 + +Class QBasicAtomicInt + size=4 align=4 + base size=4 base align=4 +QBasicAtomicInt (0x7fb2a385f310) 0 + +Class QAtomicInt + size=4 align=4 + base size=4 base align=4 +QAtomicInt (0x7fb2a389ccb0) 0 + QBasicAtomicInt (0x7fb2a389cd20) 0 + +Class QInternal + size=1 align=1 + base size=0 base align=1 +QInternal (0x7fb2a36f54d0) 0 empty + +Class __locale_struct + size=232 align=8 + base size=232 base align=8 +__locale_struct (0x7fb2a36f5700) 0 + +Class QByteArray::Data + size=32 align=8 + base size=32 base align=8 +QByteArray::Data (0x7fb2a372eaf0) 0 + +Class QByteArray + size=8 align=8 + base size=8 base align=8 +QByteArray (0x7fb2a372ea80) 0 + +Class QByteRef + size=16 align=8 + base size=12 base align=8 +QByteRef (0x7fb2a35d0380) 0 + +Class QString::Null + size=1 align=1 + base size=0 base align=1 +QString::Null (0x7fb2a34d1d20) 0 empty + +Class QString::Data + size=32 align=8 + base size=32 base align=8 +QString::Data (0x7fb2a34e95b0) 0 + +Class QString + size=8 align=8 + base size=8 base align=8 +QString (0x7fb2a364cbd0) 0 + +Class QLatin1String + size=8 align=8 + base size=8 base align=8 +QLatin1String (0x7fb2a33be9a0) 0 + +Class QCharRef + size=16 align=8 + base size=12 base align=8 +QCharRef (0x7fb2a3260000) 0 + +Class QConstString + size=8 align=8 + base size=8 base align=8 +QConstString (0x7fb2a31a88c0) 0 + QString (0x7fb2a31a8930) 0 + +Class QStringRef + size=16 align=8 + base size=16 base align=8 +QStringRef (0x7fb2a31cc310) 0 + +Class QGenericArgument + size=16 align=8 + base size=16 base align=8 +QGenericArgument (0x7fb2a3247700) 0 + +Class QGenericReturnArgument + size=16 align=8 + base size=16 base align=8 +QGenericReturnArgument (0x7fb2a30522a0) 0 + QGenericArgument (0x7fb2a3052310) 0 + +Class QMetaObject + size=32 align=8 + base size=32 base align=8 +QMetaObject (0x7fb2a3052b60) 0 + +Class QMetaObjectExtraData + size=16 align=8 + base size=16 base align=8 +QMetaObjectExtraData (0x7fb2a3078bd0) 0 + +Vtable for std::exception +std::exception::_ZTVSt9exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9exception) +16 std::exception::~exception +24 std::exception::~exception +32 std::exception::what + +Class std::exception + size=8 align=8 + base size=8 base align=8 +std::exception (0x7fb2a30cc1c0) 0 nearly-empty + vptr=((& std::exception::_ZTVSt9exception) + 16u) + +Vtable for std::bad_exception +std::bad_exception::_ZTVSt13bad_exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13bad_exception) +16 std::bad_exception::~bad_exception +24 std::bad_exception::~bad_exception +32 std::bad_exception::what + +Class std::bad_exception + size=8 align=8 + base size=8 base align=8 +std::bad_exception (0x7fb2a30cc770) 0 nearly-empty + vptr=((& std::bad_exception::_ZTVSt13bad_exception) + 16u) + std::exception (0x7fb2a30cc7e0) 0 nearly-empty + primary-for std::bad_exception (0x7fb2a30cc770) + +Vtable for std::bad_alloc +std::bad_alloc::_ZTVSt9bad_alloc: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9bad_alloc) +16 std::bad_alloc::~bad_alloc +24 std::bad_alloc::~bad_alloc +32 std::bad_alloc::what + +Class std::bad_alloc + size=8 align=8 + base size=8 base align=8 +std::bad_alloc (0x7fb2a30cc930) 0 nearly-empty + vptr=((& std::bad_alloc::_ZTVSt9bad_alloc) + 16u) + std::exception (0x7fb2a30e3000) 0 nearly-empty + primary-for std::bad_alloc (0x7fb2a30cc930) + +Class std::nothrow_t + size=1 align=1 + base size=0 base align=1 +std::nothrow_t (0x7fb2a30e3850) 0 empty + +Class QListData::Data + size=32 align=8 + base size=32 base align=8 +QListData::Data (0x7fb2a30e3d90) 0 + +Class QListData + size=8 align=8 + base size=8 base align=8 +QListData (0x7fb2a30e3d20) 0 + +Class QScopedPointerPodDeleter + size=1 align=1 + base size=0 base align=1 +QScopedPointerPodDeleter (0x7fb2a300e850) 0 empty + +Vtable for QObjectData +QObjectData::_ZTV11QObjectData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QObjectData) +16 __cxa_pure_virtual +24 __cxa_pure_virtual + +Class QObjectData + size=48 align=8 + base size=48 base align=8 +QObjectData (0x7fb2a302f2a0) 0 + vptr=((& QObjectData::_ZTV11QObjectData) + 16u) + +Vtable for QObject +QObject::_ZTV7QObject: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QObject) +16 QObject::metaObject +24 QObject::qt_metacast +32 QObject::qt_metacall +40 QObject::~QObject +48 QObject::~QObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObject + size=16 align=8 + base size=16 base align=8 +QObject (0x7fb2a302f5b0) 0 + vptr=((& QObject::_ZTV7QObject) + 16u) + +Vtable for QObjectUserData +QObjectUserData::_ZTV15QObjectUserData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QObjectUserData) +16 QObjectUserData::~QObjectUserData +24 QObjectUserData::~QObjectUserData + +Class QObjectUserData + size=8 align=8 + base size=8 base align=8 +QObjectUserData (0x7fb2a2eb3b60) 0 nearly-empty + vptr=((& QObjectUserData::_ZTV15QObjectUserData) + 16u) + +Vtable for QIODevice +QIODevice::_ZTV9QIODevice: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QIODevice) +16 QIODevice::metaObject +24 QIODevice::qt_metacast +32 QIODevice::qt_metacall +40 QIODevice::~QIODevice +48 QIODevice::~QIODevice +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QIODevice::isSequential +120 QIODevice::open +128 QIODevice::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QIODevice::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 __cxa_pure_virtual +224 QIODevice::readLineData +232 __cxa_pure_virtual + +Class QIODevice + size=16 align=8 + base size=16 base align=8 +QIODevice (0x7fb2a2ec2150) 0 + vptr=((& QIODevice::_ZTV9QIODevice) + 16u) + QObject (0x7fb2a2ec21c0) 0 + primary-for QIODevice (0x7fb2a2ec2150) + +Class _IO_marker + size=24 align=8 + base size=24 base align=8 +_IO_marker (0x7fb2a2f25cb0) 0 + +Class _IO_FILE + size=216 align=8 + base size=216 base align=8 +_IO_FILE (0x7fb2a2f25d20) 0 + +Vtable for QFile +QFile::_ZTV5QFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QFile) +16 QFile::metaObject +24 QFile::qt_metacast +32 QFile::qt_metacall +40 QFile::~QFile +48 QFile::~QFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QFile::fileEngine + +Class QFile + size=16 align=8 + base size=16 base align=8 +QFile (0x7fb2a2f25e00) 0 + vptr=((& QFile::_ZTV5QFile) + 16u) + QIODevice (0x7fb2a2f25e70) 0 + primary-for QFile (0x7fb2a2f25e00) + QObject (0x7fb2a2f25ee0) 0 + primary-for QIODevice (0x7fb2a2f25e70) + +Class QFileInfo + size=8 align=8 + base size=8 base align=8 +QFileInfo (0x7fb2a2dc8070) 0 + +Vtable for QDataStream +QDataStream::_ZTV11QDataStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QDataStream) +16 QDataStream::~QDataStream +24 QDataStream::~QDataStream + +Class QDataStream + size=40 align=8 + base size=40 base align=8 +QDataStream (0x7fb2a2e18a10) 0 + vptr=((& QDataStream::_ZTV11QDataStream) + 16u) + +Class QRegExp + size=8 align=8 + base size=8 base align=8 +QRegExp (0x7fb2a2c85e70) 0 + +Class QStringMatcher::Data + size=272 align=8 + base size=272 base align=8 +QStringMatcher::Data (0x7fb2a2cec2a0) 0 + +Class QStringMatcher + size=1048 align=8 + base size=1048 base align=8 +QStringMatcher (0x7fb2a2cdfc40) 0 + +Class QStringList + size=8 align=8 + base size=8 base align=8 +QStringList (0x7fb2a2cec850) 0 + QList (0x7fb2a2cec8c0) 0 + +Class QDir + size=8 align=8 + base size=8 base align=8 +QDir (0x7fb2a2b8b4d0) 0 + +Class QAbstractFileEngine::ExtensionOption + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionOption (0x7fb2a2c338c0) 0 empty + +Class QAbstractFileEngine::ExtensionReturn + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionReturn (0x7fb2a2c33930) 0 empty + +Class QAbstractFileEngine::MapExtensionOption + size=24 align=8 + base size=20 base align=8 +QAbstractFileEngine::MapExtensionOption (0x7fb2a2c339a0) 0 + QAbstractFileEngine::ExtensionOption (0x7fb2a2c33a10) 0 empty + +Class QAbstractFileEngine::MapExtensionReturn + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::MapExtensionReturn (0x7fb2a2c33bd0) 0 + QAbstractFileEngine::ExtensionReturn (0x7fb2a2c33c40) 0 empty + +Class QAbstractFileEngine::UnMapExtensionOption + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::UnMapExtensionOption (0x7fb2a2c33cb0) 0 + QAbstractFileEngine::ExtensionOption (0x7fb2a2c33d20) 0 empty + +Vtable for QAbstractFileEngine +QAbstractFileEngine::_ZTV19QAbstractFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractFileEngine) +16 QAbstractFileEngine::~QAbstractFileEngine +24 QAbstractFileEngine::~QAbstractFileEngine +32 QAbstractFileEngine::open +40 QAbstractFileEngine::close +48 QAbstractFileEngine::flush +56 QAbstractFileEngine::size +64 QAbstractFileEngine::pos +72 QAbstractFileEngine::seek +80 QAbstractFileEngine::isSequential +88 QAbstractFileEngine::remove +96 QAbstractFileEngine::copy +104 QAbstractFileEngine::rename +112 QAbstractFileEngine::link +120 QAbstractFileEngine::mkdir +128 QAbstractFileEngine::rmdir +136 QAbstractFileEngine::setSize +144 QAbstractFileEngine::caseSensitive +152 QAbstractFileEngine::isRelativePath +160 QAbstractFileEngine::entryList +168 QAbstractFileEngine::fileFlags +176 QAbstractFileEngine::setPermissions +184 QAbstractFileEngine::fileName +192 QAbstractFileEngine::ownerId +200 QAbstractFileEngine::owner +208 QAbstractFileEngine::fileTime +216 QAbstractFileEngine::setFileName +224 QAbstractFileEngine::handle +232 QAbstractFileEngine::beginEntryList +240 QAbstractFileEngine::endEntryList +248 QAbstractFileEngine::read +256 QAbstractFileEngine::readLine +264 QAbstractFileEngine::write +272 QAbstractFileEngine::extension +280 QAbstractFileEngine::supportsExtension + +Class QAbstractFileEngine + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngine (0x7fb2a2c16850) 0 + vptr=((& QAbstractFileEngine::_ZTV19QAbstractFileEngine) + 16u) + +Vtable for QAbstractFileEngineHandler +QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QAbstractFileEngineHandler) +16 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +24 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +32 __cxa_pure_virtual + +Class QAbstractFileEngineHandler + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngineHandler (0x7fb2a2a67bd0) 0 nearly-empty + vptr=((& QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler) + 16u) + +Vtable for QAbstractFileEngineIterator +QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QAbstractFileEngineIterator) +16 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +24 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QAbstractFileEngineIterator::currentFileInfo +64 QAbstractFileEngineIterator::entryInfo + +Class QAbstractFileEngineIterator + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngineIterator (0x7fb2a2a67d90) 0 + vptr=((& QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator) + 16u) + +Vtable for QBuffer +QBuffer::_ZTV7QBuffer: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QBuffer) +16 QBuffer::metaObject +24 QBuffer::qt_metacast +32 QBuffer::qt_metacall +40 QBuffer::~QBuffer +48 QBuffer::~QBuffer +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QBuffer::connectNotify +104 QBuffer::disconnectNotify +112 QIODevice::isSequential +120 QBuffer::open +128 QBuffer::close +136 QBuffer::pos +144 QBuffer::size +152 QBuffer::seek +160 QBuffer::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QBuffer::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QBuffer::readData +224 QIODevice::readLineData +232 QBuffer::writeData + +Class QBuffer + size=16 align=8 + base size=16 base align=8 +QBuffer (0x7fb2a2a7b690) 0 + vptr=((& QBuffer::_ZTV7QBuffer) + 16u) + QIODevice (0x7fb2a2a7b700) 0 + primary-for QBuffer (0x7fb2a2a7b690) + QObject (0x7fb2a2a7b770) 0 + primary-for QIODevice (0x7fb2a2a7b700) + +Class QHashData::Node + size=16 align=8 + base size=16 base align=8 +QHashData::Node (0x7fb2a2abee00) 0 + +Class QHashData + size=40 align=8 + base size=40 base align=8 +QHashData (0x7fb2a2abed90) 0 + +Class QHashDummyValue + size=1 align=1 + base size=0 base align=1 +QHashDummyValue (0x7fb2a2ae1150) 0 empty + +Class QMapData::Node + size=16 align=8 + base size=16 base align=8 +QMapData::Node (0x7fb2a29e3a80) 0 + +Class QMapData + size=128 align=8 + base size=128 base align=8 +QMapData (0x7fb2a29e3a10) 0 + +Vtable for QSystemLocale +QSystemLocale::_ZTV13QSystemLocale: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSystemLocale) +16 QSystemLocale::~QSystemLocale +24 QSystemLocale::~QSystemLocale +32 QSystemLocale::query +40 QSystemLocale::fallbackLocale + +Class QSystemLocale + size=8 align=8 + base size=8 base align=8 +QSystemLocale (0x7fb2a291e690) 0 nearly-empty + vptr=((& QSystemLocale::_ZTV13QSystemLocale) + 16u) + +Class QLocale::Data + size=4 align=2 + base size=4 base align=2 +QLocale::Data (0x7fb2a2767d90) 0 + +Class QLocale + size=8 align=8 + base size=8 base align=8 +QLocale (0x7fb2a291eaf0) 0 + +Class QTextCodec::ConverterState + size=32 align=8 + base size=32 base align=8 +QTextCodec::ConverterState (0x7fb2a27bdbd0) 0 + +Vtable for QTextCodec +QTextCodec::_ZTV10QTextCodec: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextCodec) +16 __cxa_pure_virtual +24 QTextCodec::aliases +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QTextCodec::~QTextCodec +64 QTextCodec::~QTextCodec + +Class QTextCodec + size=8 align=8 + base size=8 base align=8 +QTextCodec (0x7fb2a27b0460) 0 nearly-empty + vptr=((& QTextCodec::_ZTV10QTextCodec) + 16u) + +Class QTextEncoder + size=40 align=8 + base size=40 base align=8 +QTextEncoder (0x7fb2a2830150) 0 + +Class QTextDecoder + size=40 align=8 + base size=40 base align=8 +QTextDecoder (0x7fb2a2830f50) 0 + +Vtable for QTextStream +QTextStream::_ZTV11QTextStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTextStream) +16 QTextStream::~QTextStream +24 QTextStream::~QTextStream + +Class QTextStream + size=16 align=8 + base size=16 base align=8 +QTextStream (0x7fb2a2838d90) 0 + vptr=((& QTextStream::_ZTV11QTextStream) + 16u) + +Class QTextStreamManipulator + size=40 align=8 + base size=38 base align=8 +QTextStreamManipulator (0x7fb2a26b2a80) 0 + +Vtable for QTextIStream +QTextIStream::_ZTV12QTextIStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextIStream) +16 QTextIStream::~QTextIStream +24 QTextIStream::~QTextIStream + +Class QTextIStream + size=16 align=8 + base size=16 base align=8 +QTextIStream (0x7fb2a26e4070) 0 + vptr=((& QTextIStream::_ZTV12QTextIStream) + 16u) + QTextStream (0x7fb2a26e40e0) 0 + primary-for QTextIStream (0x7fb2a26e4070) + +Vtable for QTextOStream +QTextOStream::_ZTV12QTextOStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextOStream) +16 QTextOStream::~QTextOStream +24 QTextOStream::~QTextOStream + +Class QTextOStream + size=16 align=8 + base size=16 base align=8 +QTextOStream (0x7fb2a26f0ee0) 0 + vptr=((& QTextOStream::_ZTV12QTextOStream) + 16u) + QTextStream (0x7fb2a26f0f50) 0 + primary-for QTextOStream (0x7fb2a26f0ee0) + +Class wait + size=4 align=4 + base size=4 base align=4 +wait (0x7fb2a2704d90) 0 + +Class timespec + size=16 align=8 + base size=16 base align=8 +timespec (0x7fb2a27100e0) 0 + +Class timeval + size=16 align=8 + base size=16 base align=8 +timeval (0x7fb2a2710150) 0 + +Class __pthread_internal_list + size=16 align=8 + base size=16 base align=8 +__pthread_internal_list (0x7fb2a27102a0) 0 + +Class random_data + size=48 align=8 + base size=48 base align=8 +random_data (0x7fb2a2710850) 0 + +Class drand48_data + size=24 align=8 + base size=24 base align=8 +drand48_data (0x7fb2a27108c0) 0 + +Class QVectorData + size=16 align=4 + base size=16 base align=4 +QVectorData (0x7fb2a2710930) 0 + +Class QContiguousCacheData + size=24 align=4 + base size=24 base align=4 +QContiguousCacheData (0x7fb2a24ce620) 0 + +Class QDebug::Stream + size=40 align=8 + base size=34 base align=8 +QDebug::Stream (0x7fb2a232e150) 0 + +Class QDebug + size=8 align=8 + base size=8 base align=8 +QDebug (0x7fb2a232e0e0) 0 + +Class QNoDebug + size=1 align=1 + base size=0 base align=1 +QNoDebug (0x7fb2a23dd0e0) 0 empty + +Vtable for QDirIterator +QDirIterator::_ZTV12QDirIterator: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QDirIterator) +16 QDirIterator::~QDirIterator +24 QDirIterator::~QDirIterator + +Class QDirIterator + size=16 align=8 + base size=16 base align=8 +QDirIterator (0x7fb2a23ec700) 0 + vptr=((& QDirIterator::_ZTV12QDirIterator) + 16u) + +Vtable for QFileSystemWatcher +QFileSystemWatcher::_ZTV18QFileSystemWatcher: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFileSystemWatcher) +16 QFileSystemWatcher::metaObject +24 QFileSystemWatcher::qt_metacast +32 QFileSystemWatcher::qt_metacall +40 QFileSystemWatcher::~QFileSystemWatcher +48 QFileSystemWatcher::~QFileSystemWatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QFileSystemWatcher + size=16 align=8 + base size=16 base align=8 +QFileSystemWatcher (0x7fb2a2249540) 0 + vptr=((& QFileSystemWatcher::_ZTV18QFileSystemWatcher) + 16u) + QObject (0x7fb2a22495b0) 0 + primary-for QFileSystemWatcher (0x7fb2a2249540) + +Vtable for QFSFileEngine +QFSFileEngine::_ZTV13QFSFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QFSFileEngine) +16 QFSFileEngine::~QFSFileEngine +24 QFSFileEngine::~QFSFileEngine +32 QFSFileEngine::open +40 QFSFileEngine::close +48 QFSFileEngine::flush +56 QFSFileEngine::size +64 QFSFileEngine::pos +72 QFSFileEngine::seek +80 QFSFileEngine::isSequential +88 QFSFileEngine::remove +96 QFSFileEngine::copy +104 QFSFileEngine::rename +112 QFSFileEngine::link +120 QFSFileEngine::mkdir +128 QFSFileEngine::rmdir +136 QFSFileEngine::setSize +144 QFSFileEngine::caseSensitive +152 QFSFileEngine::isRelativePath +160 QFSFileEngine::entryList +168 QFSFileEngine::fileFlags +176 QFSFileEngine::setPermissions +184 QFSFileEngine::fileName +192 QFSFileEngine::ownerId +200 QFSFileEngine::owner +208 QFSFileEngine::fileTime +216 QFSFileEngine::setFileName +224 QFSFileEngine::handle +232 QFSFileEngine::beginEntryList +240 QFSFileEngine::endEntryList +248 QFSFileEngine::read +256 QFSFileEngine::readLine +264 QFSFileEngine::write +272 QFSFileEngine::extension +280 QFSFileEngine::supportsExtension + +Class QFSFileEngine + size=16 align=8 + base size=16 base align=8 +QFSFileEngine (0x7fb2a225ba80) 0 + vptr=((& QFSFileEngine::_ZTV13QFSFileEngine) + 16u) + QAbstractFileEngine (0x7fb2a225baf0) 0 + primary-for QFSFileEngine (0x7fb2a225ba80) + +Class QSharedData + size=4 align=4 + base size=4 base align=4 +QSharedData (0x7fb2a226ce70) 0 + +Class QProcessEnvironment + size=8 align=8 + base size=8 base align=8 +QProcessEnvironment (0x7fb2a22b31c0) 0 + +Vtable for QProcess +QProcess::_ZTV8QProcess: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QProcess) +16 QProcess::metaObject +24 QProcess::qt_metacast +32 QProcess::qt_metacall +40 QProcess::~QProcess +48 QProcess::~QProcess +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QProcess::isSequential +120 QIODevice::open +128 QProcess::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QProcess::atEnd +168 QIODevice::reset +176 QProcess::bytesAvailable +184 QProcess::bytesToWrite +192 QProcess::canReadLine +200 QProcess::waitForReadyRead +208 QProcess::waitForBytesWritten +216 QProcess::readData +224 QIODevice::readLineData +232 QProcess::writeData +240 QProcess::setupChildProcess + +Class QProcess + size=16 align=8 + base size=16 base align=8 +QProcess (0x7fb2a22b3cb0) 0 + vptr=((& QProcess::_ZTV8QProcess) + 16u) + QIODevice (0x7fb2a22b3d20) 0 + primary-for QProcess (0x7fb2a22b3cb0) + QObject (0x7fb2a22b3d90) 0 + primary-for QIODevice (0x7fb2a22b3d20) + +Class QResource + size=8 align=8 + base size=8 base align=8 +QResource (0x7fb2a22fc1c0) 0 + +Class QMetaType + size=1 align=1 + base size=0 base align=1 +QMetaType (0x7fb2a22fce70) 0 empty + +Class QVariant::PrivateShared + size=16 align=8 + base size=12 base align=8 +QVariant::PrivateShared (0x7fb2a21fa700) 0 + +Class QVariant::Private::Data + size=8 align=8 + base size=8 base align=8 +QVariant::Private::Data (0x7fb2a21faa10) 0 + +Class QVariant::Private + size=16 align=8 + base size=12 base align=8 +QVariant::Private (0x7fb2a21fa7e0) 0 + +Class QVariant::Handler + size=72 align=8 + base size=72 base align=8 +QVariant::Handler (0x7fb2a2208700) 0 + +Class QVariant + size=16 align=8 + base size=16 base align=8 +QVariant (0x7fb2a21c97e0) 0 + +Class QVariantComparisonHelper + size=8 align=8 + base size=8 base align=8 +QVariantComparisonHelper (0x7fb2a20ba9a0) 0 + +Vtable for QSettings +QSettings::_ZTV9QSettings: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QSettings) +16 QSettings::metaObject +24 QSettings::qt_metacast +32 QSettings::qt_metacall +40 QSettings::~QSettings +48 QSettings::~QSettings +56 QSettings::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSettings + size=16 align=8 + base size=16 base align=8 +QSettings (0x7fb2a20e0ee0) 0 + vptr=((& QSettings::_ZTV9QSettings) + 16u) + QObject (0x7fb2a20e0f50) 0 + primary-for QSettings (0x7fb2a20e0ee0) + +Vtable for QTemporaryFile +QTemporaryFile::_ZTV14QTemporaryFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QTemporaryFile) +16 QTemporaryFile::metaObject +24 QTemporaryFile::qt_metacast +32 QTemporaryFile::qt_metacall +40 QTemporaryFile::~QTemporaryFile +48 QTemporaryFile::~QTemporaryFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QTemporaryFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QTemporaryFile::fileEngine + +Class QTemporaryFile + size=16 align=8 + base size=16 base align=8 +QTemporaryFile (0x7fb2a1f622a0) 0 + vptr=((& QTemporaryFile::_ZTV14QTemporaryFile) + 16u) + QFile (0x7fb2a1f62310) 0 + primary-for QTemporaryFile (0x7fb2a1f622a0) + QIODevice (0x7fb2a1f62380) 0 + primary-for QFile (0x7fb2a1f62310) + QObject (0x7fb2a1f623f0) 0 + primary-for QIODevice (0x7fb2a1f62380) + +Class QUrl + size=8 align=8 + base size=8 base align=8 +QUrl (0x7fb2a1f7f9a0) 0 + +Class QXmlStreamStringRef + size=16 align=8 + base size=16 base align=8 +QXmlStreamStringRef (0x7fb2a200c070) 0 + +Class QXmlStreamAttribute + size=80 align=8 + base size=73 base align=8 +QXmlStreamAttribute (0x7fb2a1e25850) 0 + +Class QXmlStreamAttributes + size=8 align=8 + base size=8 base align=8 +QXmlStreamAttributes (0x7fb2a1e4d310) 0 + QVector (0x7fb2a1e4d380) 0 + +Class QXmlStreamNamespaceDeclaration + size=40 align=8 + base size=40 base align=8 +QXmlStreamNamespaceDeclaration (0x7fb2a1e4d7e0) 0 + +Class QXmlStreamNotationDeclaration + size=56 align=8 + base size=56 base align=8 +QXmlStreamNotationDeclaration (0x7fb2a1e8f1c0) 0 + +Class QXmlStreamEntityDeclaration + size=88 align=8 + base size=88 base align=8 +QXmlStreamEntityDeclaration (0x7fb2a1eb2070) 0 + +Vtable for QXmlStreamEntityResolver +QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QXmlStreamEntityResolver) +16 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +24 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +32 QXmlStreamEntityResolver::resolveEntity +40 QXmlStreamEntityResolver::resolveUndeclaredEntity + +Class QXmlStreamEntityResolver + size=8 align=8 + base size=8 base align=8 +QXmlStreamEntityResolver (0x7fb2a1eca9a0) 0 nearly-empty + vptr=((& QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver) + 16u) + +Class QXmlStreamReader + size=8 align=8 + base size=8 base align=8 +QXmlStreamReader (0x7fb2a1ecab60) 0 + +Class QXmlStreamWriter + size=8 align=8 + base size=8 base align=8 +QXmlStreamWriter (0x7fb2a1f13c40) 0 + +Vtable for QAbstractState +QAbstractState::_ZTV14QAbstractState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QAbstractState) +16 QAbstractState::metaObject +24 QAbstractState::qt_metacast +32 QAbstractState::qt_metacall +40 QAbstractState::~QAbstractState +48 QAbstractState::~QAbstractState +56 QAbstractState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QAbstractState + size=16 align=8 + base size=16 base align=8 +QAbstractState (0x7fb2a1d20a80) 0 + vptr=((& QAbstractState::_ZTV14QAbstractState) + 16u) + QObject (0x7fb2a1d20af0) 0 + primary-for QAbstractState (0x7fb2a1d20a80) + +Vtable for QAbstractTransition +QAbstractTransition::_ZTV19QAbstractTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractTransition) +16 QAbstractTransition::metaObject +24 QAbstractTransition::qt_metacast +32 QAbstractTransition::qt_metacall +40 QAbstractTransition::~QAbstractTransition +48 QAbstractTransition::~QAbstractTransition +56 QAbstractTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QAbstractTransition + size=16 align=8 + base size=16 base align=8 +QAbstractTransition (0x7fb2a1d462a0) 0 + vptr=((& QAbstractTransition::_ZTV19QAbstractTransition) + 16u) + QObject (0x7fb2a1d46310) 0 + primary-for QAbstractTransition (0x7fb2a1d462a0) + +Vtable for QEvent +QEvent::_ZTV6QEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QEvent) +16 QEvent::~QEvent +24 QEvent::~QEvent + +Class QEvent + size=24 align=8 + base size=20 base align=8 +QEvent (0x7fb2a1d5aaf0) 0 + vptr=((& QEvent::_ZTV6QEvent) + 16u) + +Vtable for QTimerEvent +QTimerEvent::_ZTV11QTimerEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTimerEvent) +16 QTimerEvent::~QTimerEvent +24 QTimerEvent::~QTimerEvent + +Class QTimerEvent + size=24 align=8 + base size=24 base align=8 +QTimerEvent (0x7fb2a1d7b700) 0 + vptr=((& QTimerEvent::_ZTV11QTimerEvent) + 16u) + QEvent (0x7fb2a1d7b770) 0 + primary-for QTimerEvent (0x7fb2a1d7b700) + +Vtable for QChildEvent +QChildEvent::_ZTV11QChildEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QChildEvent) +16 QChildEvent::~QChildEvent +24 QChildEvent::~QChildEvent + +Class QChildEvent + size=32 align=8 + base size=32 base align=8 +QChildEvent (0x7fb2a1d7bb60) 0 + vptr=((& QChildEvent::_ZTV11QChildEvent) + 16u) + QEvent (0x7fb2a1d7bbd0) 0 + primary-for QChildEvent (0x7fb2a1d7bb60) + +Vtable for QCustomEvent +QCustomEvent::_ZTV12QCustomEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QCustomEvent) +16 QCustomEvent::~QCustomEvent +24 QCustomEvent::~QCustomEvent + +Class QCustomEvent + size=24 align=8 + base size=20 base align=8 +QCustomEvent (0x7fb2a1d85e00) 0 + vptr=((& QCustomEvent::_ZTV12QCustomEvent) + 16u) + QEvent (0x7fb2a1d85e70) 0 + primary-for QCustomEvent (0x7fb2a1d85e00) + +Vtable for QDynamicPropertyChangeEvent +QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QDynamicPropertyChangeEvent) +16 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent +24 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent + +Class QDynamicPropertyChangeEvent + size=32 align=8 + base size=32 base align=8 +QDynamicPropertyChangeEvent (0x7fb2a1d97620) 0 + vptr=((& QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent) + 16u) + QEvent (0x7fb2a1d97690) 0 + primary-for QDynamicPropertyChangeEvent (0x7fb2a1d97620) + +Vtable for QEventTransition +QEventTransition::_ZTV16QEventTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QEventTransition) +16 QEventTransition::metaObject +24 QEventTransition::qt_metacast +32 QEventTransition::qt_metacall +40 QEventTransition::~QEventTransition +48 QEventTransition::~QEventTransition +56 QEventTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QEventTransition::eventTest +120 QEventTransition::onTransition + +Class QEventTransition + size=16 align=8 + base size=16 base align=8 +QEventTransition (0x7fb2a1d97af0) 0 + vptr=((& QEventTransition::_ZTV16QEventTransition) + 16u) + QAbstractTransition (0x7fb2a1d97b60) 0 + primary-for QEventTransition (0x7fb2a1d97af0) + QObject (0x7fb2a1d97bd0) 0 + primary-for QAbstractTransition (0x7fb2a1d97b60) + +Vtable for QFinalState +QFinalState::_ZTV11QFinalState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFinalState) +16 QFinalState::metaObject +24 QFinalState::qt_metacast +32 QFinalState::qt_metacall +40 QFinalState::~QFinalState +48 QFinalState::~QFinalState +56 QFinalState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFinalState::onEntry +120 QFinalState::onExit + +Class QFinalState + size=16 align=8 + base size=16 base align=8 +QFinalState (0x7fb2a1db29a0) 0 + vptr=((& QFinalState::_ZTV11QFinalState) + 16u) + QAbstractState (0x7fb2a1db2a10) 0 + primary-for QFinalState (0x7fb2a1db29a0) + QObject (0x7fb2a1db2a80) 0 + primary-for QAbstractState (0x7fb2a1db2a10) + +Vtable for QHistoryState +QHistoryState::_ZTV13QHistoryState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QHistoryState) +16 QHistoryState::metaObject +24 QHistoryState::qt_metacast +32 QHistoryState::qt_metacall +40 QHistoryState::~QHistoryState +48 QHistoryState::~QHistoryState +56 QHistoryState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QHistoryState::onEntry +120 QHistoryState::onExit + +Class QHistoryState + size=16 align=8 + base size=16 base align=8 +QHistoryState (0x7fb2a1dcb230) 0 + vptr=((& QHistoryState::_ZTV13QHistoryState) + 16u) + QAbstractState (0x7fb2a1dcb2a0) 0 + primary-for QHistoryState (0x7fb2a1dcb230) + QObject (0x7fb2a1dcb310) 0 + primary-for QAbstractState (0x7fb2a1dcb2a0) + +Vtable for QSignalTransition +QSignalTransition::_ZTV17QSignalTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QSignalTransition) +16 QSignalTransition::metaObject +24 QSignalTransition::qt_metacast +32 QSignalTransition::qt_metacall +40 QSignalTransition::~QSignalTransition +48 QSignalTransition::~QSignalTransition +56 QSignalTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QSignalTransition::eventTest +120 QSignalTransition::onTransition + +Class QSignalTransition + size=16 align=8 + base size=16 base align=8 +QSignalTransition (0x7fb2a1dddf50) 0 + vptr=((& QSignalTransition::_ZTV17QSignalTransition) + 16u) + QAbstractTransition (0x7fb2a1de6000) 0 + primary-for QSignalTransition (0x7fb2a1dddf50) + QObject (0x7fb2a1de6070) 0 + primary-for QAbstractTransition (0x7fb2a1de6000) + +Vtable for QState +QState::_ZTV6QState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QState) +16 QState::metaObject +24 QState::qt_metacast +32 QState::qt_metacall +40 QState::~QState +48 QState::~QState +56 QState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QState::onEntry +120 QState::onExit + +Class QState + size=16 align=8 + base size=16 base align=8 +QState (0x7fb2a1df6af0) 0 + vptr=((& QState::_ZTV6QState) + 16u) + QAbstractState (0x7fb2a1df6b60) 0 + primary-for QState (0x7fb2a1df6af0) + QObject (0x7fb2a1df6bd0) 0 + primary-for QAbstractState (0x7fb2a1df6b60) + +Vtable for QStateMachine::SignalEvent +QStateMachine::SignalEvent::_ZTVN13QStateMachine11SignalEventE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN13QStateMachine11SignalEventE) +16 QStateMachine::SignalEvent::~SignalEvent +24 QStateMachine::SignalEvent::~SignalEvent + +Class QStateMachine::SignalEvent + size=48 align=8 + base size=48 base align=8 +QStateMachine::SignalEvent (0x7fb2a1c1d150) 0 + vptr=((& QStateMachine::SignalEvent::_ZTVN13QStateMachine11SignalEventE) + 16u) + QEvent (0x7fb2a1c1d1c0) 0 + primary-for QStateMachine::SignalEvent (0x7fb2a1c1d150) + +Vtable for QStateMachine::WrappedEvent +QStateMachine::WrappedEvent::_ZTVN13QStateMachine12WrappedEventE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN13QStateMachine12WrappedEventE) +16 QStateMachine::WrappedEvent::~WrappedEvent +24 QStateMachine::WrappedEvent::~WrappedEvent + +Class QStateMachine::WrappedEvent + size=40 align=8 + base size=40 base align=8 +QStateMachine::WrappedEvent (0x7fb2a1c1d700) 0 + vptr=((& QStateMachine::WrappedEvent::_ZTVN13QStateMachine12WrappedEventE) + 16u) + QEvent (0x7fb2a1c1d770) 0 + primary-for QStateMachine::WrappedEvent (0x7fb2a1c1d700) + +Vtable for QStateMachine +QStateMachine::_ZTV13QStateMachine: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QStateMachine) +16 QStateMachine::metaObject +24 QStateMachine::qt_metacast +32 QStateMachine::qt_metacall +40 QStateMachine::~QStateMachine +48 QStateMachine::~QStateMachine +56 QStateMachine::event +64 QStateMachine::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QStateMachine::onEntry +120 QStateMachine::onExit +128 QStateMachine::beginSelectTransitions +136 QStateMachine::endSelectTransitions +144 QStateMachine::beginMicrostep +152 QStateMachine::endMicrostep + +Class QStateMachine + size=16 align=8 + base size=16 base align=8 +QStateMachine (0x7fb2a1e13ee0) 0 + vptr=((& QStateMachine::_ZTV13QStateMachine) + 16u) + QState (0x7fb2a1e13f50) 0 + primary-for QStateMachine (0x7fb2a1e13ee0) + QAbstractState (0x7fb2a1c1d000) 0 + primary-for QState (0x7fb2a1e13f50) + QObject (0x7fb2a1c1d070) 0 + primary-for QAbstractState (0x7fb2a1c1d000) + +Class QBitArray + size=8 align=8 + base size=8 base align=8 +QBitArray (0x7fb2a1c4d150) 0 + +Class QBitRef + size=16 align=8 + base size=12 base align=8 +QBitRef (0x7fb2a1ca1e00) 0 + +Class QByteArrayMatcher::Data + size=272 align=8 + base size=272 base align=8 +QByteArrayMatcher::Data (0x7fb2a1cb4af0) 0 + +Class QByteArrayMatcher + size=1040 align=8 + base size=1040 base align=8 +QByteArrayMatcher (0x7fb2a1cb44d0) 0 + +Class QCryptographicHash + size=8 align=8 + base size=8 base align=8 +QCryptographicHash (0x7fb2a1cee150) 0 + +Vtable for QtSharedPointer::ExternalRefCountData +QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN15QtSharedPointer20ExternalRefCountDataE) +16 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +24 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +32 QtSharedPointer::ExternalRefCountData::destroy + +Class QtSharedPointer::ExternalRefCountData + size=16 align=8 + base size=16 base align=8 +QtSharedPointer::ExternalRefCountData (0x7fb2a1b17070) 0 + vptr=((& QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE) + 16u) + +Vtable for QtSharedPointer::ExternalRefCountWithDestroyFn +QtSharedPointer::ExternalRefCountWithDestroyFn::_ZTVN15QtSharedPointer29ExternalRefCountWithDestroyFnE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN15QtSharedPointer29ExternalRefCountWithDestroyFnE) +16 QtSharedPointer::ExternalRefCountWithDestroyFn::~ExternalRefCountWithDestroyFn +24 QtSharedPointer::ExternalRefCountWithDestroyFn::~ExternalRefCountWithDestroyFn +32 QtSharedPointer::ExternalRefCountWithDestroyFn::destroy + +Class QtSharedPointer::ExternalRefCountWithDestroyFn + size=24 align=8 + base size=24 base align=8 +QtSharedPointer::ExternalRefCountWithDestroyFn (0x7fb2a1b30930) 0 + vptr=((& QtSharedPointer::ExternalRefCountWithDestroyFn::_ZTVN15QtSharedPointer29ExternalRefCountWithDestroyFnE) + 16u) + QtSharedPointer::ExternalRefCountData (0x7fb2a1b309a0) 0 + primary-for QtSharedPointer::ExternalRefCountWithDestroyFn (0x7fb2a1b30930) + +Class QDate + size=4 align=4 + base size=4 base align=4 +QDate (0x7fb2a1bb75b0) 0 + +Class QTime + size=4 align=4 + base size=4 base align=4 +QTime (0x7fb2a1be7540) 0 + +Class QDateTime + size=8 align=8 + base size=8 base align=8 +QDateTime (0x7fb2a1c04af0) 0 + +Class QEasingCurve + size=8 align=8 + base size=8 base align=8 +QEasingCurve (0x7fb2a1a4a000) 0 + +Class QPoint + size=8 align=4 + base size=8 base align=4 +QPoint (0x7fb2a1a4aee0) 0 + +Class QPointF + size=16 align=8 + base size=16 base align=8 +QPointF (0x7fb2a1a8aaf0) 0 + +Class QLine + size=16 align=4 + base size=16 base align=4 +QLine (0x7fb2a1acaaf0) 0 + +Class QLineF + size=32 align=8 + base size=32 base align=8 +QLineF (0x7fb2a1b059a0) 0 + +Class QLinkedListData + size=32 align=8 + base size=32 base align=8 +QLinkedListData (0x7fb2a195b460) 0 + +Class QMargins + size=16 align=4 + base size=16 base align=4 +QMargins (0x7fb2a1819380) 0 + +Class QSize + size=8 align=4 + base size=8 base align=4 +QSize (0x7fb2a1847150) 0 + +Class QSizeF + size=16 align=8 + base size=16 base align=8 +QSizeF (0x7fb2a1888e00) 0 + +Class QRect + size=16 align=4 + base size=16 base align=4 +QRect (0x7fb2a18da380) 0 + +Class QRectF + size=32 align=8 + base size=32 base align=8 +QRectF (0x7fb2a1787d20) 0 + +Class QLatin1Literal + size=16 align=8 + base size=16 base align=8 +QLatin1Literal (0x7fb2a1636ee0) 0 + +Class QAbstractConcatenable + size=1 align=1 + base size=0 base align=1 +QAbstractConcatenable (0x7fb2a16483f0) 0 empty + +Class QTextBoundaryFinder + size=48 align=8 + base size=48 base align=8 +QTextBoundaryFinder (0x7fb2a167f380) 0 + +Vtable for QTimeLine +QTimeLine::_ZTV9QTimeLine: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTimeLine) +16 QTimeLine::metaObject +24 QTimeLine::qt_metacast +32 QTimeLine::qt_metacall +40 QTimeLine::~QTimeLine +48 QTimeLine::~QTimeLine +56 QObject::event +64 QObject::eventFilter +72 QTimeLine::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTimeLine::valueForTime + +Class QTimeLine + size=16 align=8 + base size=16 base align=8 +QTimeLine (0x7fb2a168e700) 0 + vptr=((& QTimeLine::_ZTV9QTimeLine) + 16u) + QObject (0x7fb2a168e770) 0 + primary-for QTimeLine (0x7fb2a168e700) + +Vtable for QRunnable +QRunnable::_ZTV9QRunnable: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QRunnable) +16 __cxa_pure_virtual +24 QRunnable::~QRunnable +32 QRunnable::~QRunnable + +Class QRunnable + size=16 align=8 + base size=12 base align=8 +QRunnable (0x7fb2a16b7f50) 0 + vptr=((& QRunnable::_ZTV9QRunnable) + 16u) + +Class QMutex + size=8 align=8 + base size=8 base align=8 +QMutex (0x7fb2a16ef620) 0 + +Class QMutexLocker + size=8 align=8 + base size=8 base align=8 +QMutexLocker (0x7fb2a16fe1c0) 0 + +Vtable for QtConcurrent::Exception +QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent9ExceptionE) +16 QtConcurrent::Exception::~Exception +24 QtConcurrent::Exception::~Exception +32 std::exception::what +40 QtConcurrent::Exception::raise +48 QtConcurrent::Exception::clone + +Class QtConcurrent::Exception + size=8 align=8 + base size=8 base align=8 +QtConcurrent::Exception (0x7fb2a15134d0) 0 nearly-empty + vptr=((& QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE) + 16u) + std::exception (0x7fb2a1513540) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7fb2a15134d0) + +Vtable for QtConcurrent::UnhandledException +QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent18UnhandledExceptionE) +16 QtConcurrent::UnhandledException::~UnhandledException +24 QtConcurrent::UnhandledException::~UnhandledException +32 std::exception::what +40 QtConcurrent::UnhandledException::raise +48 QtConcurrent::UnhandledException::clone + +Class QtConcurrent::UnhandledException + size=8 align=8 + base size=8 base align=8 +QtConcurrent::UnhandledException (0x7fb2a1513770) 0 nearly-empty + vptr=((& QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE) + 16u) + QtConcurrent::Exception (0x7fb2a15137e0) 0 nearly-empty + primary-for QtConcurrent::UnhandledException (0x7fb2a1513770) + std::exception (0x7fb2a1513850) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7fb2a15137e0) + +Class QtConcurrent::internal::ExceptionHolder + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionHolder (0x7fb2a1513a80) 0 + +Class QtConcurrent::internal::ExceptionStore + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionStore (0x7fb2a1513e00) 0 + +Class QtConcurrent::ResultItem + size=16 align=8 + base size=16 base align=8 +QtConcurrent::ResultItem (0x7fb2a1513e70) 0 + +Class QtConcurrent::ResultIteratorBase + size=16 align=8 + base size=12 base align=8 +QtConcurrent::ResultIteratorBase (0x7fb2a152bd90) 0 + +Vtable for QtConcurrent::ResultStoreBase +QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent15ResultStoreBaseE) +16 QtConcurrent::ResultStoreBase::~ResultStoreBase +24 QtConcurrent::ResultStoreBase::~ResultStoreBase + +Class QtConcurrent::ResultStoreBase + size=48 align=8 + base size=44 base align=8 +QtConcurrent::ResultStoreBase (0x7fb2a1530930) 0 + vptr=((& QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE) + 16u) + +Vtable for QFutureInterfaceBase +QFutureInterfaceBase::_ZTV20QFutureInterfaceBase: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QFutureInterfaceBase) +16 QFutureInterfaceBase::~QFutureInterfaceBase +24 QFutureInterfaceBase::~QFutureInterfaceBase + +Class QFutureInterfaceBase + size=16 align=8 + base size=16 base align=8 +QFutureInterfaceBase (0x7fb2a156ed90) 0 + vptr=((& QFutureInterfaceBase::_ZTV20QFutureInterfaceBase) + 16u) + +Vtable for QFutureWatcherBase +QFutureWatcherBase::_ZTV18QFutureWatcherBase: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFutureWatcherBase) +16 QFutureWatcherBase::metaObject +24 QFutureWatcherBase::qt_metacast +32 QFutureWatcherBase::qt_metacall +40 QFutureWatcherBase::~QFutureWatcherBase +48 QFutureWatcherBase::~QFutureWatcherBase +56 QFutureWatcherBase::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QFutureWatcherBase::connectNotify +104 QFutureWatcherBase::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QFutureWatcherBase + size=16 align=8 + base size=16 base align=8 +QFutureWatcherBase (0x7fb2a1454690) 0 + vptr=((& QFutureWatcherBase::_ZTV18QFutureWatcherBase) + 16u) + QObject (0x7fb2a1454700) 0 + primary-for QFutureWatcherBase (0x7fb2a1454690) + +Vtable for QThread +QThread::_ZTV7QThread: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QThread) +16 QThread::metaObject +24 QThread::qt_metacast +32 QThread::qt_metacall +40 QThread::~QThread +48 QThread::~QThread +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QThread::run + +Class QThread + size=16 align=8 + base size=16 base align=8 +QThread (0x7fb2a14a6a80) 0 + vptr=((& QThread::_ZTV7QThread) + 16u) + QObject (0x7fb2a14a6af0) 0 + primary-for QThread (0x7fb2a14a6a80) + +Vtable for QThreadPool +QThreadPool::_ZTV11QThreadPool: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QThreadPool) +16 QThreadPool::metaObject +24 QThreadPool::qt_metacast +32 QThreadPool::qt_metacall +40 QThreadPool::~QThreadPool +48 QThreadPool::~QThreadPool +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QThreadPool + size=16 align=8 + base size=16 base align=8 +QThreadPool (0x7fb2a14cc930) 0 + vptr=((& QThreadPool::_ZTV11QThreadPool) + 16u) + QObject (0x7fb2a14cc9a0) 0 + primary-for QThreadPool (0x7fb2a14cc930) + +Class QWaitCondition + size=8 align=8 + base size=8 base align=8 +QWaitCondition (0x7fb2a14ddee0) 0 + +Class QSemaphore + size=8 align=8 + base size=8 base align=8 +QSemaphore (0x7fb2a14e8460) 0 + +Class QtConcurrent::ThreadEngineBarrier + size=24 align=8 + base size=24 base align=8 +QtConcurrent::ThreadEngineBarrier (0x7fb2a14e89a0) 0 + +Vtable for QtConcurrent::ThreadEngineBase +QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent16ThreadEngineBaseE) +16 QtConcurrent::ThreadEngineBase::run +24 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +32 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +40 QtConcurrent::ThreadEngineBase::start +48 QtConcurrent::ThreadEngineBase::finish +56 QtConcurrent::ThreadEngineBase::threadFunction +64 QtConcurrent::ThreadEngineBase::shouldStartThread +72 QtConcurrent::ThreadEngineBase::shouldThrottleThread +80 __cxa_pure_virtual + +Class QtConcurrent::ThreadEngineBase + size=64 align=8 + base size=64 base align=8 +QtConcurrent::ThreadEngineBase (0x7fb2a14e8a80) 0 + vptr=((& QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE) + 16u) + QRunnable (0x7fb2a14e8af0) 0 + primary-for QtConcurrent::ThreadEngineBase (0x7fb2a14e8a80) + +VTT for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTTN12QtConcurrent12ThreadEngineIvEE: 2u entries +0 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 24u) +8 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 136u) + +Class QtConcurrent::BlockSizeManager + size=96 align=8 + base size=92 base align=8 +QtConcurrent::BlockSizeManager (0x7fb2a1333ee0) 0 + +Vtable for QFactoryInterface +QFactoryInterface::_ZTV17QFactoryInterface: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QFactoryInterface) +16 QFactoryInterface::~QFactoryInterface +24 QFactoryInterface::~QFactoryInterface +32 __cxa_pure_virtual + +Class QFactoryInterface + size=8 align=8 + base size=8 base align=8 +QFactoryInterface (0x7fb2a0fddd20) 0 nearly-empty + vptr=((& QFactoryInterface::_ZTV17QFactoryInterface) + 16u) + +Vtable for QTextCodecFactoryInterface +QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QTextCodecFactoryInterface) +16 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +24 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QTextCodecFactoryInterface + size=8 align=8 + base size=8 base align=8 +QTextCodecFactoryInterface (0x7fb2a0e10000) 0 nearly-empty + vptr=((& QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface) + 16u) + QFactoryInterface (0x7fb2a0e10070) 0 nearly-empty + primary-for QTextCodecFactoryInterface (0x7fb2a0e10000) + +Vtable for QTextCodecPlugin +QTextCodecPlugin::_ZTV16QTextCodecPlugin: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QTextCodecPlugin) +16 QTextCodecPlugin::metaObject +24 QTextCodecPlugin::qt_metacast +32 QTextCodecPlugin::qt_metacall +40 QTextCodecPlugin::~QTextCodecPlugin +48 QTextCodecPlugin::~QTextCodecPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 QTextCodecPlugin::keys +160 QTextCodecPlugin::create +168 (int (*)(...))-0x00000000000000010 +176 (int (*)(...))(& _ZTI16QTextCodecPlugin) +184 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD1Ev +192 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD0Ev +200 QTextCodecPlugin::_ZThn16_NK16QTextCodecPlugin4keysEv +208 QTextCodecPlugin::_ZThn16_N16QTextCodecPlugin6createERK7QString + +Class QTextCodecPlugin + size=24 align=8 + base size=24 base align=8 +QTextCodecPlugin (0x7fb2a0e19580) 0 + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 16u) + QObject (0x7fb2a0e10a80) 0 + primary-for QTextCodecPlugin (0x7fb2a0e19580) + QTextCodecFactoryInterface (0x7fb2a0e10af0) 16 nearly-empty + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 184u) + QFactoryInterface (0x7fb2a0e10b60) 16 nearly-empty + primary-for QTextCodecFactoryInterface (0x7fb2a0e10af0) + +Class QLibraryInfo + size=1 align=1 + base size=0 base align=1 +QLibraryInfo (0x7fb2a0e67150) 0 empty + +Vtable for QEventLoop +QEventLoop::_ZTV10QEventLoop: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QEventLoop) +16 QEventLoop::metaObject +24 QEventLoop::qt_metacast +32 QEventLoop::qt_metacall +40 QEventLoop::~QEventLoop +48 QEventLoop::~QEventLoop +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QEventLoop + size=16 align=8 + base size=16 base align=8 +QEventLoop (0x7fb2a0e672a0) 0 + vptr=((& QEventLoop::_ZTV10QEventLoop) + 16u) + QObject (0x7fb2a0e67310) 0 + primary-for QEventLoop (0x7fb2a0e672a0) + +Vtable for QAbstractEventDispatcher +QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QAbstractEventDispatcher) +16 QAbstractEventDispatcher::metaObject +24 QAbstractEventDispatcher::qt_metacast +32 QAbstractEventDispatcher::qt_metacall +40 QAbstractEventDispatcher::~QAbstractEventDispatcher +48 QAbstractEventDispatcher::~QAbstractEventDispatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 QAbstractEventDispatcher::startingUp +208 QAbstractEventDispatcher::closingDown + +Class QAbstractEventDispatcher + size=16 align=8 + base size=16 base align=8 +QAbstractEventDispatcher (0x7fb2a0e9fbd0) 0 + vptr=((& QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher) + 16u) + QObject (0x7fb2a0e9fc40) 0 + primary-for QAbstractEventDispatcher (0x7fb2a0e9fbd0) + +Class QModelIndex + size=24 align=8 + base size=24 base align=8 +QModelIndex (0x7fb2a0ec9a80) 0 + +Class QPersistentModelIndex + size=8 align=8 + base size=8 base align=8 +QPersistentModelIndex (0x7fb2a0ef4540) 0 + +Vtable for QAbstractItemModel +QAbstractItemModel::_ZTV18QAbstractItemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractItemModel) +16 QAbstractItemModel::metaObject +24 QAbstractItemModel::qt_metacast +32 QAbstractItemModel::qt_metacall +40 QAbstractItemModel::~QAbstractItemModel +48 QAbstractItemModel::~QAbstractItemModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractItemModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractItemModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractItemModel + size=16 align=8 + base size=16 base align=8 +QAbstractItemModel (0x7fb2a0efd850) 0 + vptr=((& QAbstractItemModel::_ZTV18QAbstractItemModel) + 16u) + QObject (0x7fb2a0efd8c0) 0 + primary-for QAbstractItemModel (0x7fb2a0efd850) + +Vtable for QAbstractTableModel +QAbstractTableModel::_ZTV19QAbstractTableModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractTableModel) +16 QAbstractTableModel::metaObject +24 QAbstractTableModel::qt_metacast +32 QAbstractTableModel::qt_metacall +40 QAbstractTableModel::~QAbstractTableModel +48 QAbstractTableModel::~QAbstractTableModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractTableModel::index +120 QAbstractTableModel::parent +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractTableModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractTableModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractTableModel + size=16 align=8 + base size=16 base align=8 +QAbstractTableModel (0x7fb2a0d5ab60) 0 + vptr=((& QAbstractTableModel::_ZTV19QAbstractTableModel) + 16u) + QAbstractItemModel (0x7fb2a0d5abd0) 0 + primary-for QAbstractTableModel (0x7fb2a0d5ab60) + QObject (0x7fb2a0d5ac40) 0 + primary-for QAbstractItemModel (0x7fb2a0d5abd0) + +Vtable for QAbstractListModel +QAbstractListModel::_ZTV18QAbstractListModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractListModel) +16 QAbstractListModel::metaObject +24 QAbstractListModel::qt_metacast +32 QAbstractListModel::qt_metacall +40 QAbstractListModel::~QAbstractListModel +48 QAbstractListModel::~QAbstractListModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractListModel::index +120 QAbstractListModel::parent +128 __cxa_pure_virtual +136 QAbstractListModel::columnCount +144 QAbstractListModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractListModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractListModel + size=16 align=8 + base size=16 base align=8 +QAbstractListModel (0x7fb2a0d740e0) 0 + vptr=((& QAbstractListModel::_ZTV18QAbstractListModel) + 16u) + QAbstractItemModel (0x7fb2a0d74150) 0 + primary-for QAbstractListModel (0x7fb2a0d740e0) + QObject (0x7fb2a0d741c0) 0 + primary-for QAbstractItemModel (0x7fb2a0d74150) + +Class QBasicTimer + size=4 align=4 + base size=4 base align=4 +QBasicTimer (0x7fb2a0da6230) 0 + +Vtable for QCoreApplication +QCoreApplication::_ZTV16QCoreApplication: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QCoreApplication) +16 QCoreApplication::metaObject +24 QCoreApplication::qt_metacast +32 QCoreApplication::qt_metacall +40 QCoreApplication::~QCoreApplication +48 QCoreApplication::~QCoreApplication +56 QCoreApplication::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCoreApplication::notify +120 QCoreApplication::compressEvent + +Class QCoreApplication + size=16 align=8 + base size=16 base align=8 +QCoreApplication (0x7fb2a0db0620) 0 + vptr=((& QCoreApplication::_ZTV16QCoreApplication) + 16u) + QObject (0x7fb2a0db0690) 0 + primary-for QCoreApplication (0x7fb2a0db0620) + +Class __exception + size=40 align=8 + base size=40 base align=8 +__exception (0x7fb2a0de5310) 0 + +Class QMetaMethod + size=16 align=8 + base size=12 base align=8 +QMetaMethod (0x7fb2a0c52770) 0 + +Class QMetaEnum + size=16 align=8 + base size=12 base align=8 +QMetaEnum (0x7fb2a0c6bbd0) 0 + +Class QMetaProperty + size=32 align=8 + base size=32 base align=8 +QMetaProperty (0x7fb2a0c7b930) 0 + +Class QMetaClassInfo + size=16 align=8 + base size=12 base align=8 +QMetaClassInfo (0x7fb2a0c8b000) 0 + +Vtable for QMimeData +QMimeData::_ZTV9QMimeData: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QMimeData) +16 QMimeData::metaObject +24 QMimeData::qt_metacast +32 QMimeData::qt_metacall +40 QMimeData::~QMimeData +48 QMimeData::~QMimeData +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMimeData::hasFormat +120 QMimeData::formats +128 QMimeData::retrieveData + +Class QMimeData + size=16 align=8 + base size=16 base align=8 +QMimeData (0x7fb2a0c8baf0) 0 + vptr=((& QMimeData::_ZTV9QMimeData) + 16u) + QObject (0x7fb2a0c8bb60) 0 + primary-for QMimeData (0x7fb2a0c8baf0) + +Vtable for QObjectCleanupHandler +QObjectCleanupHandler::_ZTV21QObjectCleanupHandler: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QObjectCleanupHandler) +16 QObjectCleanupHandler::metaObject +24 QObjectCleanupHandler::qt_metacast +32 QObjectCleanupHandler::qt_metacall +40 QObjectCleanupHandler::~QObjectCleanupHandler +48 QObjectCleanupHandler::~QObjectCleanupHandler +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObjectCleanupHandler + size=24 align=8 + base size=24 base align=8 +QObjectCleanupHandler (0x7fb2a0cae380) 0 + vptr=((& QObjectCleanupHandler::_ZTV21QObjectCleanupHandler) + 16u) + QObject (0x7fb2a0cae3f0) 0 + primary-for QObjectCleanupHandler (0x7fb2a0cae380) + +Vtable for QSharedMemory +QSharedMemory::_ZTV13QSharedMemory: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSharedMemory) +16 QSharedMemory::metaObject +24 QSharedMemory::qt_metacast +32 QSharedMemory::qt_metacall +40 QSharedMemory::~QSharedMemory +48 QSharedMemory::~QSharedMemory +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSharedMemory + size=16 align=8 + base size=16 base align=8 +QSharedMemory (0x7fb2a0cc14d0) 0 + vptr=((& QSharedMemory::_ZTV13QSharedMemory) + 16u) + QObject (0x7fb2a0cc1540) 0 + primary-for QSharedMemory (0x7fb2a0cc14d0) + +Vtable for QSignalMapper +QSignalMapper::_ZTV13QSignalMapper: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSignalMapper) +16 QSignalMapper::metaObject +24 QSignalMapper::qt_metacast +32 QSignalMapper::qt_metacall +40 QSignalMapper::~QSignalMapper +48 QSignalMapper::~QSignalMapper +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSignalMapper + size=16 align=8 + base size=16 base align=8 +QSignalMapper (0x7fb2a0cde2a0) 0 + vptr=((& QSignalMapper::_ZTV13QSignalMapper) + 16u) + QObject (0x7fb2a0cde310) 0 + primary-for QSignalMapper (0x7fb2a0cde2a0) + +Vtable for QSocketNotifier +QSocketNotifier::_ZTV15QSocketNotifier: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSocketNotifier) +16 QSocketNotifier::metaObject +24 QSocketNotifier::qt_metacast +32 QSocketNotifier::qt_metacall +40 QSocketNotifier::~QSocketNotifier +48 QSocketNotifier::~QSocketNotifier +56 QSocketNotifier::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSocketNotifier + size=32 align=8 + base size=25 base align=8 +QSocketNotifier (0x7fb2a0cf7690) 0 + vptr=((& QSocketNotifier::_ZTV15QSocketNotifier) + 16u) + QObject (0x7fb2a0cf7700) 0 + primary-for QSocketNotifier (0x7fb2a0cf7690) + +Class QSystemSemaphore + size=8 align=8 + base size=8 base align=8 +QSystemSemaphore (0x7fb2a0b10a10) 0 + +Vtable for QTimer +QTimer::_ZTV6QTimer: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QTimer) +16 QTimer::metaObject +24 QTimer::qt_metacast +32 QTimer::qt_metacall +40 QTimer::~QTimer +48 QTimer::~QTimer +56 QObject::event +64 QObject::eventFilter +72 QTimer::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTimer + size=32 align=8 + base size=29 base align=8 +QTimer (0x7fb2a0b1b460) 0 + vptr=((& QTimer::_ZTV6QTimer) + 16u) + QObject (0x7fb2a0b1b4d0) 0 + primary-for QTimer (0x7fb2a0b1b460) + +Vtable for QTranslator +QTranslator::_ZTV11QTranslator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTranslator) +16 QTranslator::metaObject +24 QTranslator::qt_metacast +32 QTranslator::qt_metacall +40 QTranslator::~QTranslator +48 QTranslator::~QTranslator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTranslator::translate +120 QTranslator::isEmpty + +Class QTranslator + size=16 align=8 + base size=16 base align=8 +QTranslator (0x7fb2a0b409a0) 0 + vptr=((& QTranslator::_ZTV11QTranslator) + 16u) + QObject (0x7fb2a0b40a10) 0 + primary-for QTranslator (0x7fb2a0b409a0) + +Vtable for QLibrary +QLibrary::_ZTV8QLibrary: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QLibrary) +16 QLibrary::metaObject +24 QLibrary::qt_metacast +32 QLibrary::qt_metacall +40 QLibrary::~QLibrary +48 QLibrary::~QLibrary +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QLibrary + size=32 align=8 + base size=25 base align=8 +QLibrary (0x7fb2a0b5a930) 0 + vptr=((& QLibrary::_ZTV8QLibrary) + 16u) + QObject (0x7fb2a0b5a9a0) 0 + primary-for QLibrary (0x7fb2a0b5a930) + +Vtable for QPluginLoader +QPluginLoader::_ZTV13QPluginLoader: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QPluginLoader) +16 QPluginLoader::metaObject +24 QPluginLoader::qt_metacast +32 QPluginLoader::qt_metacall +40 QPluginLoader::~QPluginLoader +48 QPluginLoader::~QPluginLoader +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QPluginLoader + size=32 align=8 + base size=25 base align=8 +QPluginLoader (0x7fb2a0ba73f0) 0 + vptr=((& QPluginLoader::_ZTV13QPluginLoader) + 16u) + QObject (0x7fb2a0ba7460) 0 + primary-for QPluginLoader (0x7fb2a0ba73f0) + +Class QUuid + size=16 align=4 + base size=16 base align=4 +QUuid (0x7fb2a0bb7b60) 0 + +Class QReadWriteLock + size=8 align=8 + base size=8 base align=8 +QReadWriteLock (0x7fb2a0bdf4d0) 0 + +Class QReadLocker + size=8 align=8 + base size=8 base align=8 +QReadLocker (0x7fb2a0bdfb60) 0 + +Class QWriteLocker + size=8 align=8 + base size=8 base align=8 +QWriteLocker (0x7fb2a0bfdee0) 0 + +Class QThreadStorageData + size=4 align=4 + base size=4 base align=4 +QThreadStorageData (0x7fb2a0a172a0) 0 + +Vtable for QAbstractAnimation +QAbstractAnimation::_ZTV18QAbstractAnimation: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractAnimation) +16 QAbstractAnimation::metaObject +24 QAbstractAnimation::qt_metacast +32 QAbstractAnimation::qt_metacall +40 QAbstractAnimation::~QAbstractAnimation +48 QAbstractAnimation::~QAbstractAnimation +56 QAbstractAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAbstractAnimation::updateState +136 QAbstractAnimation::updateDirection + +Class QAbstractAnimation + size=16 align=8 + base size=16 base align=8 +QAbstractAnimation (0x7fb2a0a17a10) 0 + vptr=((& QAbstractAnimation::_ZTV18QAbstractAnimation) + 16u) + QObject (0x7fb2a0a17a80) 0 + primary-for QAbstractAnimation (0x7fb2a0a17a10) + +Vtable for QAnimationGroup +QAnimationGroup::_ZTV15QAnimationGroup: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QAnimationGroup) +16 QAnimationGroup::metaObject +24 QAnimationGroup::qt_metacast +32 QAnimationGroup::qt_metacall +40 QAnimationGroup::~QAnimationGroup +48 QAnimationGroup::~QAnimationGroup +56 QAnimationGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAbstractAnimation::updateState +136 QAbstractAnimation::updateDirection + +Class QAnimationGroup + size=16 align=8 + base size=16 base align=8 +QAnimationGroup (0x7fb2a0a4f150) 0 + vptr=((& QAnimationGroup::_ZTV15QAnimationGroup) + 16u) + QAbstractAnimation (0x7fb2a0a4f1c0) 0 + primary-for QAnimationGroup (0x7fb2a0a4f150) + QObject (0x7fb2a0a4f230) 0 + primary-for QAbstractAnimation (0x7fb2a0a4f1c0) + +Vtable for QParallelAnimationGroup +QParallelAnimationGroup::_ZTV23QParallelAnimationGroup: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QParallelAnimationGroup) +16 QParallelAnimationGroup::metaObject +24 QParallelAnimationGroup::qt_metacast +32 QParallelAnimationGroup::qt_metacall +40 QParallelAnimationGroup::~QParallelAnimationGroup +48 QParallelAnimationGroup::~QParallelAnimationGroup +56 QParallelAnimationGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QParallelAnimationGroup::duration +120 QParallelAnimationGroup::updateCurrentTime +128 QParallelAnimationGroup::updateState +136 QParallelAnimationGroup::updateDirection + +Class QParallelAnimationGroup + size=16 align=8 + base size=16 base align=8 +QParallelAnimationGroup (0x7fb2a0a68000) 0 + vptr=((& QParallelAnimationGroup::_ZTV23QParallelAnimationGroup) + 16u) + QAnimationGroup (0x7fb2a0a68070) 0 + primary-for QParallelAnimationGroup (0x7fb2a0a68000) + QAbstractAnimation (0x7fb2a0a680e0) 0 + primary-for QAnimationGroup (0x7fb2a0a68070) + QObject (0x7fb2a0a68150) 0 + primary-for QAbstractAnimation (0x7fb2a0a680e0) + +Vtable for QPauseAnimation +QPauseAnimation::_ZTV15QPauseAnimation: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QPauseAnimation) +16 QPauseAnimation::metaObject +24 QPauseAnimation::qt_metacast +32 QPauseAnimation::qt_metacall +40 QPauseAnimation::~QPauseAnimation +48 QPauseAnimation::~QPauseAnimation +56 QPauseAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QPauseAnimation::duration +120 QPauseAnimation::updateCurrentTime +128 QAbstractAnimation::updateState +136 QAbstractAnimation::updateDirection + +Class QPauseAnimation + size=16 align=8 + base size=16 base align=8 +QPauseAnimation (0x7fb2a0a76e70) 0 + vptr=((& QPauseAnimation::_ZTV15QPauseAnimation) + 16u) + QAbstractAnimation (0x7fb2a0a76ee0) 0 + primary-for QPauseAnimation (0x7fb2a0a76e70) + QObject (0x7fb2a0a76f50) 0 + primary-for QAbstractAnimation (0x7fb2a0a76ee0) + +Vtable for QVariantAnimation +QVariantAnimation::_ZTV17QVariantAnimation: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QVariantAnimation) +16 QVariantAnimation::metaObject +24 QVariantAnimation::qt_metacast +32 QVariantAnimation::qt_metacall +40 QVariantAnimation::~QVariantAnimation +48 QVariantAnimation::~QVariantAnimation +56 QVariantAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QVariantAnimation::duration +120 QVariantAnimation::updateCurrentTime +128 QVariantAnimation::updateState +136 QAbstractAnimation::updateDirection +144 __cxa_pure_virtual +152 QVariantAnimation::interpolated + +Class QVariantAnimation + size=16 align=8 + base size=16 base align=8 +QVariantAnimation (0x7fb2a0a938c0) 0 + vptr=((& QVariantAnimation::_ZTV17QVariantAnimation) + 16u) + QAbstractAnimation (0x7fb2a0a93930) 0 + primary-for QVariantAnimation (0x7fb2a0a938c0) + QObject (0x7fb2a0a939a0) 0 + primary-for QAbstractAnimation (0x7fb2a0a93930) + +Vtable for QPropertyAnimation +QPropertyAnimation::_ZTV18QPropertyAnimation: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QPropertyAnimation) +16 QPropertyAnimation::metaObject +24 QPropertyAnimation::qt_metacast +32 QPropertyAnimation::qt_metacall +40 QPropertyAnimation::~QPropertyAnimation +48 QPropertyAnimation::~QPropertyAnimation +56 QPropertyAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QVariantAnimation::duration +120 QVariantAnimation::updateCurrentTime +128 QPropertyAnimation::updateState +136 QAbstractAnimation::updateDirection +144 QPropertyAnimation::updateCurrentValue +152 QVariantAnimation::interpolated + +Class QPropertyAnimation + size=16 align=8 + base size=16 base align=8 +QPropertyAnimation (0x7fb2a0ab1b60) 0 + vptr=((& QPropertyAnimation::_ZTV18QPropertyAnimation) + 16u) + QVariantAnimation (0x7fb2a0ab1bd0) 0 + primary-for QPropertyAnimation (0x7fb2a0ab1b60) + QAbstractAnimation (0x7fb2a0ab1c40) 0 + primary-for QVariantAnimation (0x7fb2a0ab1bd0) + QObject (0x7fb2a0ab1cb0) 0 + primary-for QAbstractAnimation (0x7fb2a0ab1c40) + +Vtable for QSequentialAnimationGroup +QSequentialAnimationGroup::_ZTV25QSequentialAnimationGroup: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QSequentialAnimationGroup) +16 QSequentialAnimationGroup::metaObject +24 QSequentialAnimationGroup::qt_metacast +32 QSequentialAnimationGroup::qt_metacall +40 QSequentialAnimationGroup::~QSequentialAnimationGroup +48 QSequentialAnimationGroup::~QSequentialAnimationGroup +56 QSequentialAnimationGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QSequentialAnimationGroup::duration +120 QSequentialAnimationGroup::updateCurrentTime +128 QSequentialAnimationGroup::updateState +136 QSequentialAnimationGroup::updateDirection + +Class QSequentialAnimationGroup + size=16 align=8 + base size=16 base align=8 +QSequentialAnimationGroup (0x7fb2a0acab60) 0 + vptr=((& QSequentialAnimationGroup::_ZTV25QSequentialAnimationGroup) + 16u) + QAnimationGroup (0x7fb2a0acabd0) 0 + primary-for QSequentialAnimationGroup (0x7fb2a0acab60) + QAbstractAnimation (0x7fb2a0acac40) 0 + primary-for QAnimationGroup (0x7fb2a0acabd0) + QObject (0x7fb2a0acacb0) 0 + primary-for QAbstractAnimation (0x7fb2a0acac40) + +Class QColor + size=16 align=4 + base size=14 base align=4 +QColor (0x7fb2a0af4620) 0 + +Class QRegion::QRegionData + size=32 align=8 + base size=32 base align=8 +QRegion::QRegionData (0x7fb2a096c5b0) 0 + +Class QRegion + size=8 align=8 + base size=8 base align=8 +QRegion (0x7fb2a0947cb0) 0 + +Class QKeySequence + size=8 align=8 + base size=8 base align=8 +QKeySequence (0x7fb2a0981e00) 0 + +Vtable for QMimeSource +QMimeSource::_ZTV11QMimeSource: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMimeSource) +16 QMimeSource::~QMimeSource +24 QMimeSource::~QMimeSource +32 __cxa_pure_virtual +40 QMimeSource::provides +48 __cxa_pure_virtual + +Class QMimeSource + size=8 align=8 + base size=8 base align=8 +QMimeSource (0x7fb2a09c0770) 0 nearly-empty + vptr=((& QMimeSource::_ZTV11QMimeSource) + 16u) + +Vtable for QDrag +QDrag::_ZTV5QDrag: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QDrag) +16 QDrag::metaObject +24 QDrag::qt_metacast +32 QDrag::qt_metacall +40 QDrag::~QDrag +48 QDrag::~QDrag +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QDrag + size=16 align=8 + base size=16 base align=8 +QDrag (0x7fb2a09c08c0) 0 + vptr=((& QDrag::_ZTV5QDrag) + 16u) + QObject (0x7fb2a09c0930) 0 + primary-for QDrag (0x7fb2a09c08c0) + +Vtable for QInputEvent +QInputEvent::_ZTV11QInputEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QInputEvent) +16 QInputEvent::~QInputEvent +24 QInputEvent::~QInputEvent + +Class QInputEvent + size=24 align=8 + base size=24 base align=8 +QInputEvent (0x7fb2a09e6070) 0 + vptr=((& QInputEvent::_ZTV11QInputEvent) + 16u) + QEvent (0x7fb2a09e60e0) 0 + primary-for QInputEvent (0x7fb2a09e6070) + +Vtable for QMouseEvent +QMouseEvent::_ZTV11QMouseEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMouseEvent) +16 QMouseEvent::~QMouseEvent +24 QMouseEvent::~QMouseEvent + +Class QMouseEvent + size=48 align=8 + base size=48 base align=8 +QMouseEvent (0x7fb2a09e6930) 0 + vptr=((& QMouseEvent::_ZTV11QMouseEvent) + 16u) + QInputEvent (0x7fb2a09e69a0) 0 + primary-for QMouseEvent (0x7fb2a09e6930) + QEvent (0x7fb2a09e6a10) 0 + primary-for QInputEvent (0x7fb2a09e69a0) + +Vtable for QHoverEvent +QHoverEvent::_ZTV11QHoverEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QHoverEvent) +16 QHoverEvent::~QHoverEvent +24 QHoverEvent::~QHoverEvent + +Class QHoverEvent + size=40 align=8 + base size=36 base align=8 +QHoverEvent (0x7fb2a0813700) 0 + vptr=((& QHoverEvent::_ZTV11QHoverEvent) + 16u) + QEvent (0x7fb2a0813770) 0 + primary-for QHoverEvent (0x7fb2a0813700) + +Vtable for QWheelEvent +QWheelEvent::_ZTV11QWheelEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QWheelEvent) +16 QWheelEvent::~QWheelEvent +24 QWheelEvent::~QWheelEvent + +Class QWheelEvent + size=56 align=8 + base size=52 base align=8 +QWheelEvent (0x7fb2a0813e70) 0 + vptr=((& QWheelEvent::_ZTV11QWheelEvent) + 16u) + QInputEvent (0x7fb2a0813ee0) 0 + primary-for QWheelEvent (0x7fb2a0813e70) + QEvent (0x7fb2a0813f50) 0 + primary-for QInputEvent (0x7fb2a0813ee0) + +Vtable for QTabletEvent +QTabletEvent::_ZTV12QTabletEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTabletEvent) +16 QTabletEvent::~QTabletEvent +24 QTabletEvent::~QTabletEvent + +Class QTabletEvent + size=120 align=8 + base size=120 base align=8 +QTabletEvent (0x7fb2a082ec40) 0 + vptr=((& QTabletEvent::_ZTV12QTabletEvent) + 16u) + QInputEvent (0x7fb2a082ecb0) 0 + primary-for QTabletEvent (0x7fb2a082ec40) + QEvent (0x7fb2a082ed20) 0 + primary-for QInputEvent (0x7fb2a082ecb0) + +Vtable for QKeyEvent +QKeyEvent::_ZTV9QKeyEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QKeyEvent) +16 QKeyEvent::~QKeyEvent +24 QKeyEvent::~QKeyEvent + +Class QKeyEvent + size=40 align=8 + base size=39 base align=8 +QKeyEvent (0x7fb2a084cf50) 0 + vptr=((& QKeyEvent::_ZTV9QKeyEvent) + 16u) + QInputEvent (0x7fb2a0852000) 0 + primary-for QKeyEvent (0x7fb2a084cf50) + QEvent (0x7fb2a0852070) 0 + primary-for QInputEvent (0x7fb2a0852000) + +Vtable for QFocusEvent +QFocusEvent::_ZTV11QFocusEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFocusEvent) +16 QFocusEvent::~QFocusEvent +24 QFocusEvent::~QFocusEvent + +Class QFocusEvent + size=24 align=8 + base size=24 base align=8 +QFocusEvent (0x7fb2a0875930) 0 + vptr=((& QFocusEvent::_ZTV11QFocusEvent) + 16u) + QEvent (0x7fb2a08759a0) 0 + primary-for QFocusEvent (0x7fb2a0875930) + +Vtable for QPaintEvent +QPaintEvent::_ZTV11QPaintEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QPaintEvent) +16 QPaintEvent::~QPaintEvent +24 QPaintEvent::~QPaintEvent + +Class QPaintEvent + size=56 align=8 + base size=49 base align=8 +QPaintEvent (0x7fb2a0883380) 0 + vptr=((& QPaintEvent::_ZTV11QPaintEvent) + 16u) + QEvent (0x7fb2a08833f0) 0 + primary-for QPaintEvent (0x7fb2a0883380) + +Vtable for QUpdateLaterEvent +QUpdateLaterEvent::_ZTV17QUpdateLaterEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QUpdateLaterEvent) +16 QUpdateLaterEvent::~QUpdateLaterEvent +24 QUpdateLaterEvent::~QUpdateLaterEvent + +Class QUpdateLaterEvent + size=32 align=8 + base size=32 base align=8 +QUpdateLaterEvent (0x7fb2a088e000) 0 + vptr=((& QUpdateLaterEvent::_ZTV17QUpdateLaterEvent) + 16u) + QEvent (0x7fb2a088e070) 0 + primary-for QUpdateLaterEvent (0x7fb2a088e000) + +Vtable for QMoveEvent +QMoveEvent::_ZTV10QMoveEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QMoveEvent) +16 QMoveEvent::~QMoveEvent +24 QMoveEvent::~QMoveEvent + +Class QMoveEvent + size=40 align=8 + base size=36 base align=8 +QMoveEvent (0x7fb2a088e460) 0 + vptr=((& QMoveEvent::_ZTV10QMoveEvent) + 16u) + QEvent (0x7fb2a088e4d0) 0 + primary-for QMoveEvent (0x7fb2a088e460) + +Vtable for QResizeEvent +QResizeEvent::_ZTV12QResizeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QResizeEvent) +16 QResizeEvent::~QResizeEvent +24 QResizeEvent::~QResizeEvent + +Class QResizeEvent + size=40 align=8 + base size=36 base align=8 +QResizeEvent (0x7fb2a088eaf0) 0 + vptr=((& QResizeEvent::_ZTV12QResizeEvent) + 16u) + QEvent (0x7fb2a088eb60) 0 + primary-for QResizeEvent (0x7fb2a088eaf0) + +Vtable for QCloseEvent +QCloseEvent::_ZTV11QCloseEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QCloseEvent) +16 QCloseEvent::~QCloseEvent +24 QCloseEvent::~QCloseEvent + +Class QCloseEvent + size=24 align=8 + base size=20 base align=8 +QCloseEvent (0x7fb2a089f070) 0 + vptr=((& QCloseEvent::_ZTV11QCloseEvent) + 16u) + QEvent (0x7fb2a089f0e0) 0 + primary-for QCloseEvent (0x7fb2a089f070) + +Vtable for QIconDragEvent +QIconDragEvent::_ZTV14QIconDragEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QIconDragEvent) +16 QIconDragEvent::~QIconDragEvent +24 QIconDragEvent::~QIconDragEvent + +Class QIconDragEvent + size=24 align=8 + base size=20 base align=8 +QIconDragEvent (0x7fb2a089f2a0) 0 + vptr=((& QIconDragEvent::_ZTV14QIconDragEvent) + 16u) + QEvent (0x7fb2a089f310) 0 + primary-for QIconDragEvent (0x7fb2a089f2a0) + +Vtable for QShowEvent +QShowEvent::_ZTV10QShowEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QShowEvent) +16 QShowEvent::~QShowEvent +24 QShowEvent::~QShowEvent + +Class QShowEvent + size=24 align=8 + base size=20 base align=8 +QShowEvent (0x7fb2a089f4d0) 0 + vptr=((& QShowEvent::_ZTV10QShowEvent) + 16u) + QEvent (0x7fb2a089f540) 0 + primary-for QShowEvent (0x7fb2a089f4d0) + +Vtable for QHideEvent +QHideEvent::_ZTV10QHideEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QHideEvent) +16 QHideEvent::~QHideEvent +24 QHideEvent::~QHideEvent + +Class QHideEvent + size=24 align=8 + base size=20 base align=8 +QHideEvent (0x7fb2a089f700) 0 + vptr=((& QHideEvent::_ZTV10QHideEvent) + 16u) + QEvent (0x7fb2a089f770) 0 + primary-for QHideEvent (0x7fb2a089f700) + +Vtable for QContextMenuEvent +QContextMenuEvent::_ZTV17QContextMenuEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QContextMenuEvent) +16 QContextMenuEvent::~QContextMenuEvent +24 QContextMenuEvent::~QContextMenuEvent + +Class QContextMenuEvent + size=48 align=8 + base size=41 base align=8 +QContextMenuEvent (0x7fb2a089f930) 0 + vptr=((& QContextMenuEvent::_ZTV17QContextMenuEvent) + 16u) + QInputEvent (0x7fb2a089f9a0) 0 + primary-for QContextMenuEvent (0x7fb2a089f930) + QEvent (0x7fb2a089fa10) 0 + primary-for QInputEvent (0x7fb2a089f9a0) + +Class QInputMethodEvent::Attribute + size=32 align=8 + base size=32 base align=8 +QInputMethodEvent::Attribute (0x7fb2a08b94d0) 0 + +Vtable for QInputMethodEvent +QInputMethodEvent::_ZTV17QInputMethodEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QInputMethodEvent) +16 QInputMethodEvent::~QInputMethodEvent +24 QInputMethodEvent::~QInputMethodEvent + +Class QInputMethodEvent + size=56 align=8 + base size=56 base align=8 +QInputMethodEvent (0x7fb2a08b93f0) 0 + vptr=((& QInputMethodEvent::_ZTV17QInputMethodEvent) + 16u) + QEvent (0x7fb2a08b9460) 0 + primary-for QInputMethodEvent (0x7fb2a08b93f0) + +Vtable for QDropEvent +QDropEvent::_ZTV10QDropEvent: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QDropEvent) +16 QDropEvent::~QDropEvent +24 QDropEvent::~QDropEvent +32 QDropEvent::format +40 QDropEvent::encodedData +48 QDropEvent::provides +56 (int (*)(...))-0x00000000000000018 +64 (int (*)(...))(& _ZTI10QDropEvent) +72 QDropEvent::_ZThn24_N10QDropEventD1Ev +80 QDropEvent::_ZThn24_N10QDropEventD0Ev +88 QDropEvent::_ZThn24_NK10QDropEvent6formatEi +96 QDropEvent::_ZThn24_NK10QDropEvent8providesEPKc +104 QDropEvent::_ZThn24_NK10QDropEvent11encodedDataEPKc + +Class QDropEvent + size=80 align=8 + base size=80 base align=8 +QDropEvent (0x7fb2a08f3200) 0 + vptr=((& QDropEvent::_ZTV10QDropEvent) + 16u) + QEvent (0x7fb2a08f2bd0) 0 + primary-for QDropEvent (0x7fb2a08f3200) + QMimeSource (0x7fb2a08f2c40) 24 nearly-empty + vptr=((& QDropEvent::_ZTV10QDropEvent) + 72u) + +Vtable for QDragMoveEvent +QDragMoveEvent::_ZTV14QDragMoveEvent: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QDragMoveEvent) +16 QDragMoveEvent::~QDragMoveEvent +24 QDragMoveEvent::~QDragMoveEvent +32 QDropEvent::format +40 QDropEvent::encodedData +48 QDropEvent::provides +56 (int (*)(...))-0x00000000000000018 +64 (int (*)(...))(& _ZTI14QDragMoveEvent) +72 QDragMoveEvent::_ZThn24_N14QDragMoveEventD1Ev +80 QDragMoveEvent::_ZThn24_N14QDragMoveEventD0Ev +88 QDropEvent::_ZThn24_NK10QDropEvent6formatEi +96 QDropEvent::_ZThn24_NK10QDropEvent8providesEPKc +104 QDropEvent::_ZThn24_NK10QDropEvent11encodedDataEPKc + +Class QDragMoveEvent + size=96 align=8 + base size=96 base align=8 +QDragMoveEvent (0x7fb2a070e930) 0 + vptr=((& QDragMoveEvent::_ZTV14QDragMoveEvent) + 16u) + QDropEvent (0x7fb2a090a900) 0 + primary-for QDragMoveEvent (0x7fb2a070e930) + QEvent (0x7fb2a070e9a0) 0 + primary-for QDropEvent (0x7fb2a090a900) + QMimeSource (0x7fb2a070ea10) 24 nearly-empty + vptr=((& QDragMoveEvent::_ZTV14QDragMoveEvent) + 72u) + +Vtable for QDragEnterEvent +QDragEnterEvent::_ZTV15QDragEnterEvent: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QDragEnterEvent) +16 QDragEnterEvent::~QDragEnterEvent +24 QDragEnterEvent::~QDragEnterEvent +32 QDropEvent::format +40 QDropEvent::encodedData +48 QDropEvent::provides +56 (int (*)(...))-0x00000000000000018 +64 (int (*)(...))(& _ZTI15QDragEnterEvent) +72 QDragEnterEvent::_ZThn24_N15QDragEnterEventD1Ev +80 QDragEnterEvent::_ZThn24_N15QDragEnterEventD0Ev +88 QDropEvent::_ZThn24_NK10QDropEvent6formatEi +96 QDropEvent::_ZThn24_NK10QDropEvent8providesEPKc +104 QDropEvent::_ZThn24_NK10QDropEvent11encodedDataEPKc + +Class QDragEnterEvent + size=96 align=8 + base size=96 base align=8 +QDragEnterEvent (0x7fb2a071d0e0) 0 + vptr=((& QDragEnterEvent::_ZTV15QDragEnterEvent) + 16u) + QDragMoveEvent (0x7fb2a071d150) 0 + primary-for QDragEnterEvent (0x7fb2a071d0e0) + QDropEvent (0x7fb2a071b280) 0 + primary-for QDragMoveEvent (0x7fb2a071d150) + QEvent (0x7fb2a071d1c0) 0 + primary-for QDropEvent (0x7fb2a071b280) + QMimeSource (0x7fb2a071d230) 24 nearly-empty + vptr=((& QDragEnterEvent::_ZTV15QDragEnterEvent) + 72u) + +Vtable for QDragResponseEvent +QDragResponseEvent::_ZTV18QDragResponseEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QDragResponseEvent) +16 QDragResponseEvent::~QDragResponseEvent +24 QDragResponseEvent::~QDragResponseEvent + +Class QDragResponseEvent + size=24 align=8 + base size=21 base align=8 +QDragResponseEvent (0x7fb2a071d3f0) 0 + vptr=((& QDragResponseEvent::_ZTV18QDragResponseEvent) + 16u) + QEvent (0x7fb2a071d460) 0 + primary-for QDragResponseEvent (0x7fb2a071d3f0) + +Vtable for QDragLeaveEvent +QDragLeaveEvent::_ZTV15QDragLeaveEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QDragLeaveEvent) +16 QDragLeaveEvent::~QDragLeaveEvent +24 QDragLeaveEvent::~QDragLeaveEvent + +Class QDragLeaveEvent + size=24 align=8 + base size=20 base align=8 +QDragLeaveEvent (0x7fb2a071d850) 0 + vptr=((& QDragLeaveEvent::_ZTV15QDragLeaveEvent) + 16u) + QEvent (0x7fb2a071d8c0) 0 + primary-for QDragLeaveEvent (0x7fb2a071d850) + +Vtable for QHelpEvent +QHelpEvent::_ZTV10QHelpEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QHelpEvent) +16 QHelpEvent::~QHelpEvent +24 QHelpEvent::~QHelpEvent + +Class QHelpEvent + size=40 align=8 + base size=36 base align=8 +QHelpEvent (0x7fb2a071da80) 0 + vptr=((& QHelpEvent::_ZTV10QHelpEvent) + 16u) + QEvent (0x7fb2a071daf0) 0 + primary-for QHelpEvent (0x7fb2a071da80) + +Vtable for QStatusTipEvent +QStatusTipEvent::_ZTV15QStatusTipEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QStatusTipEvent) +16 QStatusTipEvent::~QStatusTipEvent +24 QStatusTipEvent::~QStatusTipEvent + +Class QStatusTipEvent + size=32 align=8 + base size=32 base align=8 +QStatusTipEvent (0x7fb2a072faf0) 0 + vptr=((& QStatusTipEvent::_ZTV15QStatusTipEvent) + 16u) + QEvent (0x7fb2a072fb60) 0 + primary-for QStatusTipEvent (0x7fb2a072faf0) + +Vtable for QWhatsThisClickedEvent +QWhatsThisClickedEvent::_ZTV22QWhatsThisClickedEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QWhatsThisClickedEvent) +16 QWhatsThisClickedEvent::~QWhatsThisClickedEvent +24 QWhatsThisClickedEvent::~QWhatsThisClickedEvent + +Class QWhatsThisClickedEvent + size=32 align=8 + base size=32 base align=8 +QWhatsThisClickedEvent (0x7fb2a072fcb0) 0 + vptr=((& QWhatsThisClickedEvent::_ZTV22QWhatsThisClickedEvent) + 16u) + QEvent (0x7fb2a0738000) 0 + primary-for QWhatsThisClickedEvent (0x7fb2a072fcb0) + +Vtable for QActionEvent +QActionEvent::_ZTV12QActionEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QActionEvent) +16 QActionEvent::~QActionEvent +24 QActionEvent::~QActionEvent + +Class QActionEvent + size=40 align=8 + base size=40 base align=8 +QActionEvent (0x7fb2a0738460) 0 + vptr=((& QActionEvent::_ZTV12QActionEvent) + 16u) + QEvent (0x7fb2a07384d0) 0 + primary-for QActionEvent (0x7fb2a0738460) + +Vtable for QFileOpenEvent +QFileOpenEvent::_ZTV14QFileOpenEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QFileOpenEvent) +16 QFileOpenEvent::~QFileOpenEvent +24 QFileOpenEvent::~QFileOpenEvent + +Class QFileOpenEvent + size=32 align=8 + base size=32 base align=8 +QFileOpenEvent (0x7fb2a0738af0) 0 + vptr=((& QFileOpenEvent::_ZTV14QFileOpenEvent) + 16u) + QEvent (0x7fb2a0738b60) 0 + primary-for QFileOpenEvent (0x7fb2a0738af0) + +Vtable for QToolBarChangeEvent +QToolBarChangeEvent::_ZTV19QToolBarChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QToolBarChangeEvent) +16 QToolBarChangeEvent::~QToolBarChangeEvent +24 QToolBarChangeEvent::~QToolBarChangeEvent + +Class QToolBarChangeEvent + size=24 align=8 + base size=21 base align=8 +QToolBarChangeEvent (0x7fb2a0738620) 0 + vptr=((& QToolBarChangeEvent::_ZTV19QToolBarChangeEvent) + 16u) + QEvent (0x7fb2a0738d20) 0 + primary-for QToolBarChangeEvent (0x7fb2a0738620) + +Vtable for QShortcutEvent +QShortcutEvent::_ZTV14QShortcutEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QShortcutEvent) +16 QShortcutEvent::~QShortcutEvent +24 QShortcutEvent::~QShortcutEvent + +Class QShortcutEvent + size=40 align=8 + base size=40 base align=8 +QShortcutEvent (0x7fb2a074b460) 0 + vptr=((& QShortcutEvent::_ZTV14QShortcutEvent) + 16u) + QEvent (0x7fb2a074b4d0) 0 + primary-for QShortcutEvent (0x7fb2a074b460) + +Vtable for QClipboardEvent +QClipboardEvent::_ZTV15QClipboardEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QClipboardEvent) +16 QClipboardEvent::~QClipboardEvent +24 QClipboardEvent::~QClipboardEvent + +Class QClipboardEvent + size=24 align=8 + base size=20 base align=8 +QClipboardEvent (0x7fb2a0756310) 0 + vptr=((& QClipboardEvent::_ZTV15QClipboardEvent) + 16u) + QEvent (0x7fb2a0756380) 0 + primary-for QClipboardEvent (0x7fb2a0756310) + +Vtable for QWindowStateChangeEvent +QWindowStateChangeEvent::_ZTV23QWindowStateChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QWindowStateChangeEvent) +16 QWindowStateChangeEvent::~QWindowStateChangeEvent +24 QWindowStateChangeEvent::~QWindowStateChangeEvent + +Class QWindowStateChangeEvent + size=24 align=8 + base size=24 base align=8 +QWindowStateChangeEvent (0x7fb2a0756770) 0 + vptr=((& QWindowStateChangeEvent::_ZTV23QWindowStateChangeEvent) + 16u) + QEvent (0x7fb2a07567e0) 0 + primary-for QWindowStateChangeEvent (0x7fb2a0756770) + +Vtable for QMenubarUpdatedEvent +QMenubarUpdatedEvent::_ZTV20QMenubarUpdatedEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QMenubarUpdatedEvent) +16 QMenubarUpdatedEvent::~QMenubarUpdatedEvent +24 QMenubarUpdatedEvent::~QMenubarUpdatedEvent + +Class QMenubarUpdatedEvent + size=32 align=8 + base size=32 base align=8 +QMenubarUpdatedEvent (0x7fb2a0756cb0) 0 + vptr=((& QMenubarUpdatedEvent::_ZTV20QMenubarUpdatedEvent) + 16u) + QEvent (0x7fb2a0756d20) 0 + primary-for QMenubarUpdatedEvent (0x7fb2a0756cb0) + +Class QTouchEvent::TouchPoint + size=8 align=8 + base size=8 base align=8 +QTouchEvent::TouchPoint (0x7fb2a07677e0) 0 + +Vtable for QTouchEvent +QTouchEvent::_ZTV11QTouchEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTouchEvent) +16 QTouchEvent::~QTouchEvent +24 QTouchEvent::~QTouchEvent + +Class QTouchEvent + size=48 align=8 + base size=48 base align=8 +QTouchEvent (0x7fb2a0767690) 0 + vptr=((& QTouchEvent::_ZTV11QTouchEvent) + 16u) + QInputEvent (0x7fb2a0767700) 0 + primary-for QTouchEvent (0x7fb2a0767690) + QEvent (0x7fb2a0767770) 0 + primary-for QInputEvent (0x7fb2a0767700) + +Vtable for QGestureEvent +QGestureEvent::_ZTV13QGestureEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QGestureEvent) +16 QGestureEvent::~QGestureEvent +24 QGestureEvent::~QGestureEvent + +Class QGestureEvent + size=24 align=8 + base size=20 base align=8 +QGestureEvent (0x7fb2a07aed20) 0 + vptr=((& QGestureEvent::_ZTV13QGestureEvent) + 16u) + QEvent (0x7fb2a07aed90) 0 + primary-for QGestureEvent (0x7fb2a07aed20) + +Class QFont + size=16 align=8 + base size=12 base align=8 +QFont (0x7fb2a07b3310) 0 + +Class QPolygon + size=8 align=8 + base size=8 base align=8 +QPolygon (0x7fb2a08040e0) 0 + QVector (0x7fb2a0804150) 0 + +Class QPolygonF + size=8 align=8 + base size=8 base align=8 +QPolygonF (0x7fb2a0642620) 0 + QVector (0x7fb2a0642690) 0 + +Class QMatrix + size=48 align=8 + base size=48 base align=8 +QMatrix (0x7fb2a0684770) 0 + +Class QPainterPath::Element + size=24 align=8 + base size=24 base align=8 +QPainterPath::Element (0x7fb2a06c88c0) 0 + +Class QPainterPath + size=8 align=8 + base size=8 base align=8 +QPainterPath (0x7fb2a06c8850) 0 + +Class QPainterPathPrivate + size=16 align=8 + base size=16 base align=8 +QPainterPathPrivate (0x7fb2a0523000) 0 + +Class QPainterPathStroker + size=8 align=8 + base size=8 base align=8 +QPainterPathStroker (0x7fb2a0523af0) 0 + +Class QTransform + size=88 align=8 + base size=88 base align=8 +QTransform (0x7fb2a058eaf0) 0 + +Vtable for QPaintDevice +QPaintDevice::_ZTV12QPaintDevice: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QPaintDevice) +16 QPaintDevice::~QPaintDevice +24 QPaintDevice::~QPaintDevice +32 QPaintDevice::devType +40 __cxa_pure_virtual +48 QPaintDevice::metric + +Class QPaintDevice + size=16 align=8 + base size=10 base align=8 +QPaintDevice (0x7fb2a043b150) 0 + vptr=((& QPaintDevice::_ZTV12QPaintDevice) + 16u) + +Class QImageTextKeyLang + size=16 align=8 + base size=16 base align=8 +QImageTextKeyLang (0x7fb2a0460070) 0 + +Vtable for QImage +QImage::_ZTV6QImage: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QImage) +16 QImage::~QImage +24 QImage::~QImage +32 QImage::devType +40 QImage::paintEngine +48 QImage::metric + +Class QImage + size=24 align=8 + base size=24 base align=8 +QImage (0x7fb2a048a8c0) 0 + vptr=((& QImage::_ZTV6QImage) + 16u) + QPaintDevice (0x7fb2a048a930) 0 + primary-for QImage (0x7fb2a048a8c0) + +Vtable for QPixmap +QPixmap::_ZTV7QPixmap: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QPixmap) +16 QPixmap::~QPixmap +24 QPixmap::~QPixmap +32 QPixmap::devType +40 QPixmap::paintEngine +48 QPixmap::metric + +Class QPixmap + size=24 align=8 + base size=24 base align=8 +QPixmap (0x7fb2a032d070) 0 + vptr=((& QPixmap::_ZTV7QPixmap) + 16u) + QPaintDevice (0x7fb2a032d0e0) 0 + primary-for QPixmap (0x7fb2a032d070) + +Class QBrush + size=8 align=8 + base size=8 base align=8 +QBrush (0x7fb2a038b380) 0 + +Class QBrushData + size=112 align=8 + base size=112 base align=8 +QBrushData (0x7fb2a03a6d90) 0 + +Class QGradient + size=64 align=8 + base size=64 base align=8 +QGradient (0x7fb2a03bbf50) 0 + +Class QLinearGradient + size=64 align=8 + base size=64 base align=8 +QLinearGradient (0x7fb2a03fda10) 0 + QGradient (0x7fb2a03fda80) 0 + +Class QRadialGradient + size=64 align=8 + base size=64 base align=8 +QRadialGradient (0x7fb2a03fdee0) 0 + QGradient (0x7fb2a03fdf50) 0 + +Class QConicalGradient + size=64 align=8 + base size=64 base align=8 +QConicalGradient (0x7fb2a02084d0) 0 + QGradient (0x7fb2a0208540) 0 + +Class QPen + size=8 align=8 + base size=8 base align=8 +QPen (0x7fb2a0208850) 0 + +Class QTextOption::Tab + size=16 align=8 + base size=14 base align=8 +QTextOption::Tab (0x7fb2a0223e00) 0 + +Class QTextOption + size=32 align=8 + base size=32 base align=8 +QTextOption (0x7fb2a0223d90) 0 + +Class QTextLength + size=16 align=8 + base size=16 base align=8 +QTextLength (0x7fb2a0295150) 0 + +Class QTextFormat + size=16 align=8 + base size=12 base align=8 +QTextFormat (0x7fb2a02b04d0) 0 + +Class QTextCharFormat + size=16 align=8 + base size=12 base align=8 +QTextCharFormat (0x7fb2a0166540) 0 + QTextFormat (0x7fb2a01665b0) 0 + +Class QTextBlockFormat + size=16 align=8 + base size=12 base align=8 +QTextBlockFormat (0x7fb2a01c91c0) 0 + QTextFormat (0x7fb2a01c9230) 0 + +Class QTextListFormat + size=16 align=8 + base size=12 base align=8 +QTextListFormat (0x7fb2a01e87e0) 0 + QTextFormat (0x7fb2a01e8850) 0 + +Class QTextImageFormat + size=16 align=8 + base size=12 base align=8 +QTextImageFormat (0x7fb2a01f4d20) 0 + QTextCharFormat (0x7fb2a01f4d90) 0 + QTextFormat (0x7fb2a01f4e00) 0 + +Class QTextFrameFormat + size=16 align=8 + base size=12 base align=8 +QTextFrameFormat (0x7fb2a0005460) 0 + QTextFormat (0x7fb2a00054d0) 0 + +Class QTextTableFormat + size=16 align=8 + base size=12 base align=8 +QTextTableFormat (0x7fb2a003b380) 0 + QTextFrameFormat (0x7fb2a003b3f0) 0 + QTextFormat (0x7fb2a003b460) 0 + +Class QTextTableCellFormat + size=16 align=8 + base size=12 base align=8 +QTextTableCellFormat (0x7fb2a0056230) 0 + QTextCharFormat (0x7fb2a00562a0) 0 + QTextFormat (0x7fb2a0056310) 0 + +Class QTextInlineObject + size=16 align=8 + base size=16 base align=8 +QTextInlineObject (0x7fb2a006a700) 0 + +Class QTextLayout::FormatRange + size=24 align=8 + base size=24 base align=8 +QTextLayout::FormatRange (0x7fb2a0076a10) 0 + +Class QTextLayout + size=8 align=8 + base size=8 base align=8 +QTextLayout (0x7fb2a0076770) 0 + +Class QTextLine + size=16 align=8 + base size=16 base align=8 +QTextLine (0x7fb2a0090770) 0 + +Vtable for QAbstractUndoItem +QAbstractUndoItem::_ZTV17QAbstractUndoItem: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAbstractUndoItem) +16 __cxa_pure_virtual +24 __cxa_pure_virtual +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QAbstractUndoItem + size=8 align=8 + base size=8 base align=8 +QAbstractUndoItem (0x7fb2a00c5070) 0 nearly-empty + vptr=((& QAbstractUndoItem::_ZTV17QAbstractUndoItem) + 16u) + +Vtable for QTextDocument +QTextDocument::_ZTV13QTextDocument: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QTextDocument) +16 QTextDocument::metaObject +24 QTextDocument::qt_metacast +32 QTextDocument::qt_metacall +40 QTextDocument::~QTextDocument +48 QTextDocument::~QTextDocument +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTextDocument::clear +120 QTextDocument::createObject +128 QTextDocument::loadResource + +Class QTextDocument + size=16 align=8 + base size=16 base align=8 +QTextDocument (0x7fb2a00c5af0) 0 + vptr=((& QTextDocument::_ZTV13QTextDocument) + 16u) + QObject (0x7fb2a00c5b60) 0 + primary-for QTextDocument (0x7fb2a00c5af0) + +Class QTextCursor + size=8 align=8 + base size=8 base align=8 +QTextCursor (0x7fb29ff22a80) 0 + +Class QPalette + size=16 align=8 + base size=12 base align=8 +QPalette (0x7fb29ff36f50) 0 + +Class QColorGroup + size=16 align=8 + base size=12 base align=8 +QColorGroup (0x7fb29ffa7850) 0 + QPalette (0x7fb29ffa78c0) 0 + +Class QAbstractTextDocumentLayout::Selection + size=24 align=8 + base size=24 base align=8 +QAbstractTextDocumentLayout::Selection (0x7fb29ffdfd90) 0 + +Class QAbstractTextDocumentLayout::PaintContext + size=64 align=8 + base size=64 base align=8 +QAbstractTextDocumentLayout::PaintContext (0x7fb29ffdfe00) 0 + +Vtable for QAbstractTextDocumentLayout +QAbstractTextDocumentLayout::_ZTV27QAbstractTextDocumentLayout: 24u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QAbstractTextDocumentLayout) +16 QAbstractTextDocumentLayout::metaObject +24 QAbstractTextDocumentLayout::qt_metacast +32 QAbstractTextDocumentLayout::qt_metacall +40 QAbstractTextDocumentLayout::~QAbstractTextDocumentLayout +48 QAbstractTextDocumentLayout::~QAbstractTextDocumentLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 QAbstractTextDocumentLayout::resizeInlineObject +176 QAbstractTextDocumentLayout::positionInlineObject +184 QAbstractTextDocumentLayout::drawInlineObject + +Class QAbstractTextDocumentLayout + size=16 align=8 + base size=16 base align=8 +QAbstractTextDocumentLayout (0x7fb29ffdfb60) 0 + vptr=((& QAbstractTextDocumentLayout::_ZTV27QAbstractTextDocumentLayout) + 16u) + QObject (0x7fb29ffdfbd0) 0 + primary-for QAbstractTextDocumentLayout (0x7fb29ffdfb60) + +Vtable for QTextObjectInterface +QTextObjectInterface::_ZTV20QTextObjectInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QTextObjectInterface) +16 QTextObjectInterface::~QTextObjectInterface +24 QTextObjectInterface::~QTextObjectInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QTextObjectInterface + size=8 align=8 + base size=8 base align=8 +QTextObjectInterface (0x7fb29fe184d0) 0 nearly-empty + vptr=((& QTextObjectInterface::_ZTV20QTextObjectInterface) + 16u) + +Class QFontDatabase + size=8 align=8 + base size=8 base align=8 +QFontDatabase (0x7fb29fe237e0) 0 + +Class QFontInfo + size=8 align=8 + base size=8 base align=8 +QFontInfo (0x7fb29fe337e0) 0 + +Class QFontMetrics + size=8 align=8 + base size=8 base align=8 +QFontMetrics (0x7fb29fe45310) 0 + +Class QFontMetricsF + size=8 align=8 + base size=8 base align=8 +QFontMetricsF (0x7fb29fe59770) 0 + +Vtable for QTextObject +QTextObject::_ZTV11QTextObject: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTextObject) +16 QTextObject::metaObject +24 QTextObject::qt_metacast +32 QTextObject::qt_metacall +40 QTextObject::~QTextObject +48 QTextObject::~QTextObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTextObject + size=16 align=8 + base size=16 base align=8 +QTextObject (0x7fb29fe70690) 0 + vptr=((& QTextObject::_ZTV11QTextObject) + 16u) + QObject (0x7fb29fe70700) 0 + primary-for QTextObject (0x7fb29fe70690) + +Vtable for QTextBlockGroup +QTextBlockGroup::_ZTV15QTextBlockGroup: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QTextBlockGroup) +16 QTextBlockGroup::metaObject +24 QTextBlockGroup::qt_metacast +32 QTextBlockGroup::qt_metacall +40 QTextBlockGroup::~QTextBlockGroup +48 QTextBlockGroup::~QTextBlockGroup +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTextBlockGroup::blockInserted +120 QTextBlockGroup::blockRemoved +128 QTextBlockGroup::blockFormatChanged + +Class QTextBlockGroup + size=16 align=8 + base size=16 base align=8 +QTextBlockGroup (0x7fb29fe81ee0) 0 + vptr=((& QTextBlockGroup::_ZTV15QTextBlockGroup) + 16u) + QTextObject (0x7fb29fe81f50) 0 + primary-for QTextBlockGroup (0x7fb29fe81ee0) + QObject (0x7fb29fe89000) 0 + primary-for QTextObject (0x7fb29fe81f50) + +Vtable for QTextFrameLayoutData +QTextFrameLayoutData::_ZTV20QTextFrameLayoutData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QTextFrameLayoutData) +16 QTextFrameLayoutData::~QTextFrameLayoutData +24 QTextFrameLayoutData::~QTextFrameLayoutData + +Class QTextFrameLayoutData + size=8 align=8 + base size=8 base align=8 +QTextFrameLayoutData (0x7fb29fe9e7e0) 0 nearly-empty + vptr=((& QTextFrameLayoutData::_ZTV20QTextFrameLayoutData) + 16u) + +Class QTextFrame::iterator + size=32 align=8 + base size=28 base align=8 +QTextFrame::iterator (0x7fb29fea8230) 0 + +Vtable for QTextFrame +QTextFrame::_ZTV10QTextFrame: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextFrame) +16 QTextFrame::metaObject +24 QTextFrame::qt_metacast +32 QTextFrame::qt_metacall +40 QTextFrame::~QTextFrame +48 QTextFrame::~QTextFrame +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTextFrame + size=16 align=8 + base size=16 base align=8 +QTextFrame (0x7fb29fe9e930) 0 + vptr=((& QTextFrame::_ZTV10QTextFrame) + 16u) + QTextObject (0x7fb29fe9e9a0) 0 + primary-for QTextFrame (0x7fb29fe9e930) + QObject (0x7fb29fe9ea10) 0 + primary-for QTextObject (0x7fb29fe9e9a0) + +Vtable for QTextBlockUserData +QTextBlockUserData::_ZTV18QTextBlockUserData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QTextBlockUserData) +16 QTextBlockUserData::~QTextBlockUserData +24 QTextBlockUserData::~QTextBlockUserData + +Class QTextBlockUserData + size=8 align=8 + base size=8 base align=8 +QTextBlockUserData (0x7fb29fedc380) 0 nearly-empty + vptr=((& QTextBlockUserData::_ZTV18QTextBlockUserData) + 16u) + +Class QTextBlock::iterator + size=24 align=8 + base size=20 base align=8 +QTextBlock::iterator (0x7fb29fedccb0) 0 + +Class QTextBlock + size=16 align=8 + base size=12 base align=8 +QTextBlock (0x7fb29fedc4d0) 0 + +Class QTextFragment + size=16 align=8 + base size=16 base align=8 +QTextFragment (0x7fb29fc93e00) 0 + +Vtable for QSyntaxHighlighter +QSyntaxHighlighter::_ZTV18QSyntaxHighlighter: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QSyntaxHighlighter) +16 QSyntaxHighlighter::metaObject +24 QSyntaxHighlighter::qt_metacast +32 QSyntaxHighlighter::qt_metacall +40 QSyntaxHighlighter::~QSyntaxHighlighter +48 QSyntaxHighlighter::~QSyntaxHighlighter +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual + +Class QSyntaxHighlighter + size=16 align=8 + base size=16 base align=8 +QSyntaxHighlighter (0x7fb29fcbe000) 0 + vptr=((& QSyntaxHighlighter::_ZTV18QSyntaxHighlighter) + 16u) + QObject (0x7fb29fcbe070) 0 + primary-for QSyntaxHighlighter (0x7fb29fcbe000) + +Class QTextDocumentFragment + size=8 align=8 + base size=8 base align=8 +QTextDocumentFragment (0x7fb29fcd59a0) 0 + +Class QTextDocumentWriter + size=8 align=8 + base size=8 base align=8 +QTextDocumentWriter (0x7fb29fcdc3f0) 0 + +Vtable for QTextList +QTextList::_ZTV9QTextList: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTextList) +16 QTextList::metaObject +24 QTextList::qt_metacast +32 QTextList::qt_metacall +40 QTextList::~QTextList +48 QTextList::~QTextList +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTextBlockGroup::blockInserted +120 QTextBlockGroup::blockRemoved +128 QTextBlockGroup::blockFormatChanged + +Class QTextList + size=16 align=8 + base size=16 base align=8 +QTextList (0x7fb29fcdca80) 0 + vptr=((& QTextList::_ZTV9QTextList) + 16u) + QTextBlockGroup (0x7fb29fcdcaf0) 0 + primary-for QTextList (0x7fb29fcdca80) + QTextObject (0x7fb29fcdcb60) 0 + primary-for QTextBlockGroup (0x7fb29fcdcaf0) + QObject (0x7fb29fcdcbd0) 0 + primary-for QTextObject (0x7fb29fcdcb60) + +Class QTextTableCell + size=16 align=8 + base size=12 base align=8 +QTextTableCell (0x7fb29fd06930) 0 + +Vtable for QTextTable +QTextTable::_ZTV10QTextTable: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextTable) +16 QTextTable::metaObject +24 QTextTable::qt_metacast +32 QTextTable::qt_metacall +40 QTextTable::~QTextTable +48 QTextTable::~QTextTable +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTextTable + size=16 align=8 + base size=16 base align=8 +QTextTable (0x7fb29fd1ca80) 0 + vptr=((& QTextTable::_ZTV10QTextTable) + 16u) + QTextFrame (0x7fb29fd1caf0) 0 + primary-for QTextTable (0x7fb29fd1ca80) + QTextObject (0x7fb29fd1cb60) 0 + primary-for QTextFrame (0x7fb29fd1caf0) + QObject (0x7fb29fd1cbd0) 0 + primary-for QTextObject (0x7fb29fd1cb60) + +Vtable for QCompleter +QCompleter::_ZTV10QCompleter: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QCompleter) +16 QCompleter::metaObject +24 QCompleter::qt_metacast +32 QCompleter::qt_metacall +40 QCompleter::~QCompleter +48 QCompleter::~QCompleter +56 QCompleter::event +64 QCompleter::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCompleter::pathFromIndex +120 QCompleter::splitPath + +Class QCompleter + size=16 align=8 + base size=16 base align=8 +QCompleter (0x7fb29fd432a0) 0 + vptr=((& QCompleter::_ZTV10QCompleter) + 16u) + QObject (0x7fb29fd43310) 0 + primary-for QCompleter (0x7fb29fd432a0) + +Class QDesktopServices + size=1 align=1 + base size=0 base align=1 +QDesktopServices (0x7fb29fd67230) 0 empty + +Class QIcon + size=8 align=8 + base size=8 base align=8 +QIcon (0x7fb29fd67380) 0 + +Vtable for QSystemTrayIcon +QSystemTrayIcon::_ZTV15QSystemTrayIcon: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSystemTrayIcon) +16 QSystemTrayIcon::metaObject +24 QSystemTrayIcon::qt_metacast +32 QSystemTrayIcon::qt_metacall +40 QSystemTrayIcon::~QSystemTrayIcon +48 QSystemTrayIcon::~QSystemTrayIcon +56 QSystemTrayIcon::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSystemTrayIcon + size=16 align=8 + base size=16 base align=8 +QSystemTrayIcon (0x7fb29fb8ff50) 0 + vptr=((& QSystemTrayIcon::_ZTV15QSystemTrayIcon) + 16u) + QObject (0x7fb29fba0000) 0 + primary-for QSystemTrayIcon (0x7fb29fb8ff50) + +Vtable for QUndoGroup +QUndoGroup::_ZTV10QUndoGroup: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QUndoGroup) +16 QUndoGroup::metaObject +24 QUndoGroup::qt_metacast +32 QUndoGroup::qt_metacall +40 QUndoGroup::~QUndoGroup +48 QUndoGroup::~QUndoGroup +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QUndoGroup + size=16 align=8 + base size=16 base align=8 +QUndoGroup (0x7fb29fbbe1c0) 0 + vptr=((& QUndoGroup::_ZTV10QUndoGroup) + 16u) + QObject (0x7fb29fbbe230) 0 + primary-for QUndoGroup (0x7fb29fbbe1c0) + +Vtable for QUndoCommand +QUndoCommand::_ZTV12QUndoCommand: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QUndoCommand) +16 QUndoCommand::~QUndoCommand +24 QUndoCommand::~QUndoCommand +32 QUndoCommand::undo +40 QUndoCommand::redo +48 QUndoCommand::id +56 QUndoCommand::mergeWith + +Class QUndoCommand + size=16 align=8 + base size=16 base align=8 +QUndoCommand (0x7fb29fbd4d20) 0 + vptr=((& QUndoCommand::_ZTV12QUndoCommand) + 16u) + +Vtable for QUndoStack +QUndoStack::_ZTV10QUndoStack: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QUndoStack) +16 QUndoStack::metaObject +24 QUndoStack::qt_metacast +32 QUndoStack::qt_metacall +40 QUndoStack::~QUndoStack +48 QUndoStack::~QUndoStack +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QUndoStack + size=16 align=8 + base size=16 base align=8 +QUndoStack (0x7fb29fbdd690) 0 + vptr=((& QUndoStack::_ZTV10QUndoStack) + 16u) + QObject (0x7fb29fbdd700) 0 + primary-for QUndoStack (0x7fb29fbdd690) + +Class QSizePolicy + size=4 align=4 + base size=4 base align=4 +QSizePolicy (0x7fb29fc021c0) 0 + +Class QCursor + size=8 align=8 + base size=8 base align=8 +QCursor (0x7fb29fad01c0) 0 + +Class QWidgetData + size=88 align=8 + base size=88 base align=8 +QWidgetData (0x7fb29fad09a0) 0 + +Vtable for QWidget +QWidget::_ZTV7QWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QWidget) +16 QWidget::metaObject +24 QWidget::qt_metacast +32 QWidget::qt_metacall +40 QWidget::~QWidget +48 QWidget::~QWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI7QWidget) +464 QWidget::_ZThn16_N7QWidgetD1Ev +472 QWidget::_ZThn16_N7QWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWidget + size=40 align=8 + base size=40 base align=8 +QWidget (0x7fb29fac9a00) 0 + vptr=((& QWidget::_ZTV7QWidget) + 16u) + QObject (0x7fb29fad0a10) 0 + primary-for QWidget (0x7fb29fac9a00) + QPaintDevice (0x7fb29fad0a80) 16 + vptr=((& QWidget::_ZTV7QWidget) + 464u) + +Vtable for QFrame +QFrame::_ZTV6QFrame: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QFrame) +16 QFrame::metaObject +24 QFrame::qt_metacast +32 QFrame::qt_metacall +40 QFrame::~QFrame +48 QFrame::~QFrame +56 QFrame::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QFrame::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFrame::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI6QFrame) +464 QFrame::_ZThn16_N6QFrameD1Ev +472 QFrame::_ZThn16_N6QFrameD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFrame + size=40 align=8 + base size=40 base align=8 +QFrame (0x7fb29fa58a80) 0 + vptr=((& QFrame::_ZTV6QFrame) + 16u) + QWidget (0x7fb29fa5b680) 0 + primary-for QFrame (0x7fb29fa58a80) + QObject (0x7fb29fa58af0) 0 + primary-for QWidget (0x7fb29fa5b680) + QPaintDevice (0x7fb29fa58b60) 16 + vptr=((& QFrame::_ZTV6QFrame) + 464u) + +Vtable for QAbstractScrollArea +QAbstractScrollArea::_ZTV19QAbstractScrollArea: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractScrollArea) +16 QAbstractScrollArea::metaObject +24 QAbstractScrollArea::qt_metacast +32 QAbstractScrollArea::qt_metacall +40 QAbstractScrollArea::~QAbstractScrollArea +48 QAbstractScrollArea::~QAbstractScrollArea +56 QAbstractScrollArea::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractScrollArea::mousePressEvent +168 QAbstractScrollArea::mouseReleaseEvent +176 QAbstractScrollArea::mouseDoubleClickEvent +184 QAbstractScrollArea::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractScrollArea::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractScrollArea::paintEvent +256 QWidget::moveEvent +264 QAbstractScrollArea::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractScrollArea::dragEnterEvent +312 QAbstractScrollArea::dragMoveEvent +320 QAbstractScrollArea::dragLeaveEvent +328 QAbstractScrollArea::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QAbstractScrollArea::scrollContentsBy +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI19QAbstractScrollArea) +480 QAbstractScrollArea::_ZThn16_N19QAbstractScrollAreaD1Ev +488 QAbstractScrollArea::_ZThn16_N19QAbstractScrollAreaD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractScrollArea + size=40 align=8 + base size=40 base align=8 +QAbstractScrollArea (0x7fb29f8840e0) 0 + vptr=((& QAbstractScrollArea::_ZTV19QAbstractScrollArea) + 16u) + QFrame (0x7fb29f884150) 0 + primary-for QAbstractScrollArea (0x7fb29f8840e0) + QWidget (0x7fb29fa69a80) 0 + primary-for QFrame (0x7fb29f884150) + QObject (0x7fb29f8841c0) 0 + primary-for QWidget (0x7fb29fa69a80) + QPaintDevice (0x7fb29f884230) 16 + vptr=((& QAbstractScrollArea::_ZTV19QAbstractScrollArea) + 480u) + +Class QItemSelectionRange + size=16 align=8 + base size=16 base align=8 +QItemSelectionRange (0x7fb29f8ac000) 0 + +Vtable for QItemSelectionModel +QItemSelectionModel::_ZTV19QItemSelectionModel: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QItemSelectionModel) +16 QItemSelectionModel::metaObject +24 QItemSelectionModel::qt_metacast +32 QItemSelectionModel::qt_metacall +40 QItemSelectionModel::~QItemSelectionModel +48 QItemSelectionModel::~QItemSelectionModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QItemSelectionModel::select +120 QItemSelectionModel::select +128 QItemSelectionModel::clear +136 QItemSelectionModel::reset + +Class QItemSelectionModel + size=16 align=8 + base size=16 base align=8 +QItemSelectionModel (0x7fb29f9134d0) 0 + vptr=((& QItemSelectionModel::_ZTV19QItemSelectionModel) + 16u) + QObject (0x7fb29f913540) 0 + primary-for QItemSelectionModel (0x7fb29f9134d0) + +Class QItemSelection + size=8 align=8 + base size=8 base align=8 +QItemSelection (0x7fb29f9549a0) 0 + QList (0x7fb29f954a10) 0 + +Vtable for QValidator +QValidator::_ZTV10QValidator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QValidator) +16 QValidator::metaObject +24 QValidator::qt_metacast +32 QValidator::qt_metacall +40 QValidator::~QValidator +48 QValidator::~QValidator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 QValidator::fixup + +Class QValidator + size=16 align=8 + base size=16 base align=8 +QValidator (0x7fb29f7942a0) 0 + vptr=((& QValidator::_ZTV10QValidator) + 16u) + QObject (0x7fb29f794310) 0 + primary-for QValidator (0x7fb29f7942a0) + +Vtable for QIntValidator +QIntValidator::_ZTV13QIntValidator: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QIntValidator) +16 QIntValidator::metaObject +24 QIntValidator::qt_metacast +32 QIntValidator::qt_metacall +40 QIntValidator::~QIntValidator +48 QIntValidator::~QIntValidator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QIntValidator::validate +120 QValidator::fixup +128 QIntValidator::setRange + +Class QIntValidator + size=24 align=8 + base size=24 base align=8 +QIntValidator (0x7fb29f7b00e0) 0 + vptr=((& QIntValidator::_ZTV13QIntValidator) + 16u) + QValidator (0x7fb29f7b0150) 0 + primary-for QIntValidator (0x7fb29f7b00e0) + QObject (0x7fb29f7b01c0) 0 + primary-for QValidator (0x7fb29f7b0150) + +Vtable for QDoubleValidator +QDoubleValidator::_ZTV16QDoubleValidator: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QDoubleValidator) +16 QDoubleValidator::metaObject +24 QDoubleValidator::qt_metacast +32 QDoubleValidator::qt_metacall +40 QDoubleValidator::~QDoubleValidator +48 QDoubleValidator::~QDoubleValidator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QDoubleValidator::validate +120 QValidator::fixup +128 QDoubleValidator::setRange + +Class QDoubleValidator + size=40 align=8 + base size=36 base align=8 +QDoubleValidator (0x7fb29f7c4070) 0 + vptr=((& QDoubleValidator::_ZTV16QDoubleValidator) + 16u) + QValidator (0x7fb29f7c40e0) 0 + primary-for QDoubleValidator (0x7fb29f7c4070) + QObject (0x7fb29f7c4150) 0 + primary-for QValidator (0x7fb29f7c40e0) + +Vtable for QRegExpValidator +QRegExpValidator::_ZTV16QRegExpValidator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QRegExpValidator) +16 QRegExpValidator::metaObject +24 QRegExpValidator::qt_metacast +32 QRegExpValidator::qt_metacall +40 QRegExpValidator::~QRegExpValidator +48 QRegExpValidator::~QRegExpValidator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QRegExpValidator::validate +120 QValidator::fixup + +Class QRegExpValidator + size=24 align=8 + base size=24 base align=8 +QRegExpValidator (0x7fb29f7e0930) 0 + vptr=((& QRegExpValidator::_ZTV16QRegExpValidator) + 16u) + QValidator (0x7fb29f7e09a0) 0 + primary-for QRegExpValidator (0x7fb29f7e0930) + QObject (0x7fb29f7e0a10) 0 + primary-for QValidator (0x7fb29f7e09a0) + +Vtable for QAbstractSpinBox +QAbstractSpinBox::_ZTV16QAbstractSpinBox: 68u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QAbstractSpinBox) +16 QAbstractSpinBox::metaObject +24 QAbstractSpinBox::qt_metacast +32 QAbstractSpinBox::qt_metacall +40 QAbstractSpinBox::~QAbstractSpinBox +48 QAbstractSpinBox::~QAbstractSpinBox +56 QAbstractSpinBox::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractSpinBox::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractSpinBox::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QAbstractSpinBox::wheelEvent +200 QAbstractSpinBox::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QAbstractSpinBox::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractSpinBox::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QAbstractSpinBox::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractSpinBox::validate +456 QAbstractSpinBox::fixup +464 QAbstractSpinBox::stepBy +472 QAbstractSpinBox::clear +480 QAbstractSpinBox::stepEnabled +488 (int (*)(...))-0x00000000000000010 +496 (int (*)(...))(& _ZTI16QAbstractSpinBox) +504 QAbstractSpinBox::_ZThn16_N16QAbstractSpinBoxD1Ev +512 QAbstractSpinBox::_ZThn16_N16QAbstractSpinBoxD0Ev +520 QWidget::_ZThn16_NK7QWidget7devTypeEv +528 QWidget::_ZThn16_NK7QWidget11paintEngineEv +536 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractSpinBox + size=40 align=8 + base size=40 base align=8 +QAbstractSpinBox (0x7fb29f7f75b0) 0 + vptr=((& QAbstractSpinBox::_ZTV16QAbstractSpinBox) + 16u) + QWidget (0x7fb29f7dee80) 0 + primary-for QAbstractSpinBox (0x7fb29f7f75b0) + QObject (0x7fb29f7f7620) 0 + primary-for QWidget (0x7fb29f7dee80) + QPaintDevice (0x7fb29f7f7690) 16 + vptr=((& QAbstractSpinBox::_ZTV16QAbstractSpinBox) + 504u) + +Vtable for QAbstractSlider +QAbstractSlider::_ZTV15QAbstractSlider: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QAbstractSlider) +16 QAbstractSlider::metaObject +24 QAbstractSlider::qt_metacast +32 QAbstractSlider::qt_metacall +40 QAbstractSlider::~QAbstractSlider +48 QAbstractSlider::~QAbstractSlider +56 QAbstractSlider::event +64 QObject::eventFilter +72 QAbstractSlider::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QAbstractSlider::wheelEvent +200 QAbstractSlider::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractSlider::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractSlider::sliderChange +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI15QAbstractSlider) +472 QAbstractSlider::_ZThn16_N15QAbstractSliderD1Ev +480 QAbstractSlider::_ZThn16_N15QAbstractSliderD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractSlider + size=40 align=8 + base size=40 base align=8 +QAbstractSlider (0x7fb29f8555b0) 0 + vptr=((& QAbstractSlider::_ZTV15QAbstractSlider) + 16u) + QWidget (0x7fb29f856200) 0 + primary-for QAbstractSlider (0x7fb29f8555b0) + QObject (0x7fb29f855620) 0 + primary-for QWidget (0x7fb29f856200) + QPaintDevice (0x7fb29f855690) 16 + vptr=((& QAbstractSlider::_ZTV15QAbstractSlider) + 472u) + +Vtable for QSlider +QSlider::_ZTV7QSlider: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QSlider) +16 QSlider::metaObject +24 QSlider::qt_metacast +32 QSlider::qt_metacall +40 QSlider::~QSlider +48 QSlider::~QSlider +56 QSlider::event +64 QObject::eventFilter +72 QAbstractSlider::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QSlider::sizeHint +136 QSlider::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QSlider::mousePressEvent +168 QSlider::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QSlider::mouseMoveEvent +192 QAbstractSlider::wheelEvent +200 QAbstractSlider::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QSlider::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractSlider::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractSlider::sliderChange +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI7QSlider) +472 QSlider::_ZThn16_N7QSliderD1Ev +480 QSlider::_ZThn16_N7QSliderD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSlider + size=40 align=8 + base size=40 base align=8 +QSlider (0x7fb29f68d3f0) 0 + vptr=((& QSlider::_ZTV7QSlider) + 16u) + QAbstractSlider (0x7fb29f68d460) 0 + primary-for QSlider (0x7fb29f68d3f0) + QWidget (0x7fb29f68b300) 0 + primary-for QAbstractSlider (0x7fb29f68d460) + QObject (0x7fb29f68d4d0) 0 + primary-for QWidget (0x7fb29f68b300) + QPaintDevice (0x7fb29f68d540) 16 + vptr=((& QSlider::_ZTV7QSlider) + 472u) + +Vtable for QStyle +QStyle::_ZTV6QStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QStyle) +16 QStyle::metaObject +24 QStyle::qt_metacast +32 QStyle::qt_metacall +40 QStyle::~QStyle +48 QStyle::~QStyle +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QStyle::polish +120 QStyle::unpolish +128 QStyle::polish +136 QStyle::unpolish +144 QStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QStyle::standardPalette +192 __cxa_pure_virtual +200 __cxa_pure_virtual +208 __cxa_pure_virtual +216 __cxa_pure_virtual +224 __cxa_pure_virtual +232 __cxa_pure_virtual +240 __cxa_pure_virtual +248 __cxa_pure_virtual +256 __cxa_pure_virtual +264 __cxa_pure_virtual +272 __cxa_pure_virtual + +Class QStyle + size=16 align=8 + base size=16 base align=8 +QStyle (0x7fb29f6b29a0) 0 + vptr=((& QStyle::_ZTV6QStyle) + 16u) + QObject (0x7fb29f6b2a10) 0 + primary-for QStyle (0x7fb29f6b29a0) + +Vtable for QTabBar +QTabBar::_ZTV7QTabBar: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QTabBar) +16 QTabBar::metaObject +24 QTabBar::qt_metacast +32 QTabBar::qt_metacall +40 QTabBar::~QTabBar +48 QTabBar::~QTabBar +56 QTabBar::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QTabBar::sizeHint +136 QTabBar::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTabBar::mousePressEvent +168 QTabBar::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QTabBar::mouseMoveEvent +192 QTabBar::wheelEvent +200 QTabBar::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTabBar::paintEvent +256 QWidget::moveEvent +264 QTabBar::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QTabBar::showEvent +344 QTabBar::hideEvent +352 QWidget::x11Event +360 QTabBar::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QTabBar::tabSizeHint +456 QTabBar::tabInserted +464 QTabBar::tabRemoved +472 QTabBar::tabLayoutChange +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI7QTabBar) +496 QTabBar::_ZThn16_N7QTabBarD1Ev +504 QTabBar::_ZThn16_N7QTabBarD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTabBar + size=40 align=8 + base size=40 base align=8 +QTabBar (0x7fb29f763850) 0 + vptr=((& QTabBar::_ZTV7QTabBar) + 16u) + QWidget (0x7fb29f764300) 0 + primary-for QTabBar (0x7fb29f763850) + QObject (0x7fb29f7638c0) 0 + primary-for QWidget (0x7fb29f764300) + QPaintDevice (0x7fb29f763930) 16 + vptr=((& QTabBar::_ZTV7QTabBar) + 496u) + +Vtable for QTabWidget +QTabWidget::_ZTV10QTabWidget: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTabWidget) +16 QTabWidget::metaObject +24 QTabWidget::qt_metacast +32 QTabWidget::qt_metacall +40 QTabWidget::~QTabWidget +48 QTabWidget::~QTabWidget +56 QTabWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QTabWidget::sizeHint +136 QTabWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QTabWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTabWidget::paintEvent +256 QWidget::moveEvent +264 QTabWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QTabWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QTabWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QTabWidget::tabInserted +456 QTabWidget::tabRemoved +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI10QTabWidget) +480 QTabWidget::_ZThn16_N10QTabWidgetD1Ev +488 QTabWidget::_ZThn16_N10QTabWidgetD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTabWidget + size=40 align=8 + base size=40 base align=8 +QTabWidget (0x7fb29f58ee70) 0 + vptr=((& QTabWidget::_ZTV10QTabWidget) + 16u) + QWidget (0x7fb29f58b700) 0 + primary-for QTabWidget (0x7fb29f58ee70) + QObject (0x7fb29f58eee0) 0 + primary-for QWidget (0x7fb29f58b700) + QPaintDevice (0x7fb29f58ef50) 16 + vptr=((& QTabWidget::_ZTV10QTabWidget) + 480u) + +Vtable for QRubberBand +QRubberBand::_ZTV11QRubberBand: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QRubberBand) +16 QRubberBand::metaObject +24 QRubberBand::qt_metacast +32 QRubberBand::qt_metacall +40 QRubberBand::~QRubberBand +48 QRubberBand::~QRubberBand +56 QRubberBand::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QRubberBand::paintEvent +256 QRubberBand::moveEvent +264 QRubberBand::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QRubberBand::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QRubberBand::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI11QRubberBand) +464 QRubberBand::_ZThn16_N11QRubberBandD1Ev +472 QRubberBand::_ZThn16_N11QRubberBandD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QRubberBand + size=40 align=8 + base size=40 base align=8 +QRubberBand (0x7fb29f5e3850) 0 + vptr=((& QRubberBand::_ZTV11QRubberBand) + 16u) + QWidget (0x7fb29f5e2880) 0 + primary-for QRubberBand (0x7fb29f5e3850) + QObject (0x7fb29f5e38c0) 0 + primary-for QWidget (0x7fb29f5e2880) + QPaintDevice (0x7fb29f5e3930) 16 + vptr=((& QRubberBand::_ZTV11QRubberBand) + 464u) + +Class QStyleOption + size=56 align=8 + base size=56 base align=8 +QStyleOption (0x7fb29f607b60) 0 + +Class QStyleOptionFocusRect + size=72 align=8 + base size=72 base align=8 +QStyleOptionFocusRect (0x7fb29f6148c0) 0 + QStyleOption (0x7fb29f614930) 0 + +Class QStyleOptionFrame + size=64 align=8 + base size=64 base align=8 +QStyleOptionFrame (0x7fb29f61f8c0) 0 + QStyleOption (0x7fb29f61f930) 0 + +Class QStyleOptionFrameV2 + size=72 align=8 + base size=68 base align=8 +QStyleOptionFrameV2 (0x7fb29f62d850) 0 + QStyleOptionFrame (0x7fb29f62d8c0) 0 + QStyleOption (0x7fb29f62d930) 0 + +Class QStyleOptionFrameV3 + size=72 align=8 + base size=72 base align=8 +QStyleOptionFrameV3 (0x7fb29f474150) 0 + QStyleOptionFrameV2 (0x7fb29f4741c0) 0 + QStyleOptionFrame (0x7fb29f474230) 0 + QStyleOption (0x7fb29f4742a0) 0 + +Class QStyleOptionTabWidgetFrame + size=96 align=8 + base size=92 base align=8 +QStyleOptionTabWidgetFrame (0x7fb29f480a10) 0 + QStyleOption (0x7fb29f480a80) 0 + +Class QStyleOptionTabWidgetFrameV2 + size=128 align=8 + base size=124 base align=8 +QStyleOptionTabWidgetFrameV2 (0x7fb29f4961c0) 0 + QStyleOptionTabWidgetFrame (0x7fb29f496230) 0 + QStyleOption (0x7fb29f4962a0) 0 + +Class QStyleOptionTabBarBase + size=96 align=8 + base size=92 base align=8 +QStyleOptionTabBarBase (0x7fb29f49faf0) 0 + QStyleOption (0x7fb29f49fb60) 0 + +Class QStyleOptionTabBarBaseV2 + size=96 align=8 + base size=93 base align=8 +QStyleOptionTabBarBaseV2 (0x7fb29f4aaee0) 0 + QStyleOptionTabBarBase (0x7fb29f4aaf50) 0 + QStyleOption (0x7fb29f4aa310) 0 + +Class QStyleOptionHeader + size=112 align=8 + base size=108 base align=8 +QStyleOptionHeader (0x7fb29f4c0540) 0 + QStyleOption (0x7fb29f4c05b0) 0 + +Class QStyleOptionButton + size=88 align=8 + base size=88 base align=8 +QStyleOptionButton (0x7fb29f4d9700) 0 + QStyleOption (0x7fb29f4d9770) 0 + +Class QStyleOptionTab + size=96 align=8 + base size=96 base align=8 +QStyleOptionTab (0x7fb29f5280e0) 0 + QStyleOption (0x7fb29f528150) 0 + +Class QStyleOptionTabV2 + size=104 align=8 + base size=104 base align=8 +QStyleOptionTabV2 (0x7fb29f375070) 0 + QStyleOptionTab (0x7fb29f3750e0) 0 + QStyleOption (0x7fb29f375150) 0 + +Class QStyleOptionTabV3 + size=128 align=8 + base size=124 base align=8 +QStyleOptionTabV3 (0x7fb29f37fa80) 0 + QStyleOptionTabV2 (0x7fb29f37faf0) 0 + QStyleOptionTab (0x7fb29f37fb60) 0 + QStyleOption (0x7fb29f37fbd0) 0 + +Class QStyleOptionToolBar + size=80 align=8 + base size=80 base align=8 +QStyleOptionToolBar (0x7fb29f39e0e0) 0 + QStyleOption (0x7fb29f39e150) 0 + +Class QStyleOptionProgressBar + size=88 align=8 + base size=85 base align=8 +QStyleOptionProgressBar (0x7fb29f3d28c0) 0 + QStyleOption (0x7fb29f3d2930) 0 + +Class QStyleOptionProgressBarV2 + size=96 align=8 + base size=94 base align=8 +QStyleOptionProgressBarV2 (0x7fb29f3f9070) 0 + QStyleOptionProgressBar (0x7fb29f3f90e0) 0 + QStyleOption (0x7fb29f3f9150) 0 + +Class QStyleOptionMenuItem + size=128 align=8 + base size=128 base align=8 +QStyleOptionMenuItem (0x7fb29f3f9930) 0 + QStyleOption (0x7fb29f3f99a0) 0 + +Class QStyleOptionQ3ListViewItem + size=80 align=8 + base size=76 base align=8 +QStyleOptionQ3ListViewItem (0x7fb29f413b60) 0 + QStyleOption (0x7fb29f413bd0) 0 + +Class QStyleOptionQ3DockWindow + size=64 align=8 + base size=58 base align=8 +QStyleOptionQ3DockWindow (0x7fb29f262000) 0 + QStyleOption (0x7fb29f262070) 0 + +Class QStyleOptionDockWidget + size=72 align=8 + base size=67 base align=8 +QStyleOptionDockWidget (0x7fb29f262690) 0 + QStyleOption (0x7fb29f26e000) 0 + +Class QStyleOptionDockWidgetV2 + size=72 align=8 + base size=68 base align=8 +QStyleOptionDockWidgetV2 (0x7fb29f27c380) 0 + QStyleOptionDockWidget (0x7fb29f27c3f0) 0 + QStyleOption (0x7fb29f27c460) 0 + +Class QStyleOptionViewItem + size=104 align=8 + base size=97 base align=8 +QStyleOptionViewItem (0x7fb29f284b60) 0 + QStyleOption (0x7fb29f284bd0) 0 + +Class QStyleOptionViewItemV2 + size=104 align=8 + base size=104 base align=8 +QStyleOptionViewItemV2 (0x7fb29f29d700) 0 + QStyleOptionViewItem (0x7fb29f29d770) 0 + QStyleOption (0x7fb29f29d7e0) 0 + +Class QStyleOptionViewItemV3 + size=120 align=8 + base size=120 base align=8 +QStyleOptionViewItemV3 (0x7fb29f2eb150) 0 + QStyleOptionViewItemV2 (0x7fb29f2eb1c0) 0 + QStyleOptionViewItem (0x7fb29f2eb230) 0 + QStyleOption (0x7fb29f2eb2a0) 0 + +Class QStyleOptionViewItemV4 + size=184 align=8 + base size=184 base align=8 +QStyleOptionViewItemV4 (0x7fb29f2f5a10) 0 + QStyleOptionViewItemV3 (0x7fb29f2f5a80) 0 + QStyleOptionViewItemV2 (0x7fb29f2f5af0) 0 + QStyleOptionViewItem (0x7fb29f2f5b60) 0 + QStyleOption (0x7fb29f2f5bd0) 0 + +Class QStyleOptionToolBox + size=72 align=8 + base size=72 base align=8 +QStyleOptionToolBox (0x7fb29f317150) 0 + QStyleOption (0x7fb29f3171c0) 0 + +Class QStyleOptionToolBoxV2 + size=80 align=8 + base size=80 base align=8 +QStyleOptionToolBoxV2 (0x7fb29f323620) 0 + QStyleOptionToolBox (0x7fb29f323690) 0 + QStyleOption (0x7fb29f323700) 0 + +Class QStyleOptionRubberBand + size=64 align=8 + base size=61 base align=8 +QStyleOptionRubberBand (0x7fb29f33b310) 0 + QStyleOption (0x7fb29f33b380) 0 + +Class QStyleOptionComplex + size=64 align=8 + base size=64 base align=8 +QStyleOptionComplex (0x7fb29f3443f0) 0 + QStyleOption (0x7fb29f344460) 0 + +Class QStyleOptionSlider + size=120 align=8 + base size=113 base align=8 +QStyleOptionSlider (0x7fb29f34fbd0) 0 + QStyleOptionComplex (0x7fb29f34fc40) 0 + QStyleOption (0x7fb29f34fcb0) 0 + +Class QStyleOptionSpinBox + size=80 align=8 + base size=73 base align=8 +QStyleOptionSpinBox (0x7fb29f1649a0) 0 + QStyleOptionComplex (0x7fb29f164a10) 0 + QStyleOption (0x7fb29f164a80) 0 + +Class QStyleOptionQ3ListView + size=112 align=8 + base size=105 base align=8 +QStyleOptionQ3ListView (0x7fb29f16dee0) 0 + QStyleOptionComplex (0x7fb29f16df50) 0 + QStyleOption (0x7fb29f16d380) 0 + +Class QStyleOptionToolButton + size=128 align=8 + base size=128 base align=8 +QStyleOptionToolButton (0x7fb29f1a6af0) 0 + QStyleOptionComplex (0x7fb29f1a6b60) 0 + QStyleOption (0x7fb29f1a6bd0) 0 + +Class QStyleOptionComboBox + size=112 align=8 + base size=112 base align=8 +QStyleOptionComboBox (0x7fb29f1e6d20) 0 + QStyleOptionComplex (0x7fb29f1e6d90) 0 + QStyleOption (0x7fb29f1e6e00) 0 + +Class QStyleOptionTitleBar + size=88 align=8 + base size=88 base align=8 +QStyleOptionTitleBar (0x7fb29f20d850) 0 + QStyleOptionComplex (0x7fb29f20d8c0) 0 + QStyleOption (0x7fb29f20d930) 0 + +Class QStyleOptionGroupBox + size=112 align=8 + base size=108 base align=8 +QStyleOptionGroupBox (0x7fb29f2260e0) 0 + QStyleOptionComplex (0x7fb29f226150) 0 + QStyleOption (0x7fb29f2261c0) 0 + +Class QStyleOptionSizeGrip + size=72 align=8 + base size=68 base align=8 +QStyleOptionSizeGrip (0x7fb29f234cb0) 0 + QStyleOptionComplex (0x7fb29f234d20) 0 + QStyleOption (0x7fb29f234d90) 0 + +Class QStyleOptionGraphicsItem + size=144 align=8 + base size=144 base align=8 +QStyleOptionGraphicsItem (0x7fb29f23ec40) 0 + QStyleOption (0x7fb29f23ecb0) 0 + +Class QStyleHintReturn + size=8 align=4 + base size=8 base align=4 +QStyleHintReturn (0x7fb29f24b2a0) 0 + +Class QStyleHintReturnMask + size=16 align=8 + base size=16 base align=8 +QStyleHintReturnMask (0x7fb29f06a3f0) 0 + QStyleHintReturn (0x7fb29f06a460) 0 + +Class QStyleHintReturnVariant + size=24 align=8 + base size=24 base align=8 +QStyleHintReturnVariant (0x7fb29f06a620) 0 + QStyleHintReturn (0x7fb29f06a690) 0 + +Vtable for QAbstractItemDelegate +QAbstractItemDelegate::_ZTV21QAbstractItemDelegate: 21u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QAbstractItemDelegate) +16 QAbstractItemDelegate::metaObject +24 QAbstractItemDelegate::qt_metacast +32 QAbstractItemDelegate::qt_metacall +40 QAbstractItemDelegate::~QAbstractItemDelegate +48 QAbstractItemDelegate::~QAbstractItemDelegate +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAbstractItemDelegate::createEditor +136 QAbstractItemDelegate::setEditorData +144 QAbstractItemDelegate::setModelData +152 QAbstractItemDelegate::updateEditorGeometry +160 QAbstractItemDelegate::editorEvent + +Class QAbstractItemDelegate + size=16 align=8 + base size=16 base align=8 +QAbstractItemDelegate (0x7fb29f06aaf0) 0 + vptr=((& QAbstractItemDelegate::_ZTV21QAbstractItemDelegate) + 16u) + QObject (0x7fb29f06ab60) 0 + primary-for QAbstractItemDelegate (0x7fb29f06aaf0) + +Vtable for QAbstractItemView +QAbstractItemView::_ZTV17QAbstractItemView: 103u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAbstractItemView) +16 QAbstractItemView::metaObject +24 QAbstractItemView::qt_metacast +32 QAbstractItemView::qt_metacall +40 QAbstractItemView::~QAbstractItemView +48 QAbstractItemView::~QAbstractItemView +56 QAbstractItemView::event +64 QObject::eventFilter +72 QAbstractItemView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QAbstractItemView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QAbstractItemView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractScrollArea::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QAbstractScrollArea::scrollContentsBy +464 QAbstractItemView::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 __cxa_pure_virtual +496 __cxa_pure_virtual +504 __cxa_pure_virtual +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QAbstractItemView::reset +536 QAbstractItemView::setRootIndex +544 QAbstractItemView::doItemsLayout +552 QAbstractItemView::selectAll +560 QAbstractItemView::dataChanged +568 QAbstractItemView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QAbstractItemView::selectionChanged +592 QAbstractItemView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QAbstractItemView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 __cxa_pure_virtual +688 __cxa_pure_virtual +696 __cxa_pure_virtual +704 __cxa_pure_virtual +712 __cxa_pure_virtual +720 __cxa_pure_virtual +728 QAbstractItemView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 (int (*)(...))-0x00000000000000010 +776 (int (*)(...))(& _ZTI17QAbstractItemView) +784 QAbstractItemView::_ZThn16_N17QAbstractItemViewD1Ev +792 QAbstractItemView::_ZThn16_N17QAbstractItemViewD0Ev +800 QWidget::_ZThn16_NK7QWidget7devTypeEv +808 QWidget::_ZThn16_NK7QWidget11paintEngineEv +816 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractItemView + size=40 align=8 + base size=40 base align=8 +QAbstractItemView (0x7fb29f09a1c0) 0 + vptr=((& QAbstractItemView::_ZTV17QAbstractItemView) + 16u) + QAbstractScrollArea (0x7fb29f09a230) 0 + primary-for QAbstractItemView (0x7fb29f09a1c0) + QFrame (0x7fb29f09a2a0) 0 + primary-for QAbstractScrollArea (0x7fb29f09a230) + QWidget (0x7fb29f078d80) 0 + primary-for QFrame (0x7fb29f09a2a0) + QObject (0x7fb29f09a310) 0 + primary-for QWidget (0x7fb29f078d80) + QPaintDevice (0x7fb29f09a380) 16 + vptr=((& QAbstractItemView::_ZTV17QAbstractItemView) + 784u) + +Vtable for QListView +QListView::_ZTV9QListView: 103u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QListView) +16 QListView::metaObject +24 QListView::qt_metacast +32 QListView::qt_metacall +40 QListView::~QListView +48 QListView::~QListView +56 QListView::event +64 QObject::eventFilter +72 QListView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QListView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QListView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QListView::paintEvent +256 QWidget::moveEvent +264 QListView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QListView::dragMoveEvent +320 QListView::dragLeaveEvent +328 QListView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QListView::scrollContentsBy +464 QAbstractItemView::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QListView::visualRect +496 QListView::scrollTo +504 QListView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QListView::reset +536 QListView::setRootIndex +544 QListView::doItemsLayout +552 QAbstractItemView::selectAll +560 QListView::dataChanged +568 QListView::rowsInserted +576 QListView::rowsAboutToBeRemoved +584 QListView::selectionChanged +592 QListView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QListView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QListView::moveCursor +688 QListView::horizontalOffset +696 QListView::verticalOffset +704 QListView::isIndexHidden +712 QListView::setSelection +720 QListView::visualRegionForSelection +728 QListView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QListView::startDrag +760 QListView::viewOptions +768 (int (*)(...))-0x00000000000000010 +776 (int (*)(...))(& _ZTI9QListView) +784 QListView::_ZThn16_N9QListViewD1Ev +792 QListView::_ZThn16_N9QListViewD0Ev +800 QWidget::_ZThn16_NK7QWidget7devTypeEv +808 QWidget::_ZThn16_NK7QWidget11paintEngineEv +816 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QListView + size=40 align=8 + base size=40 base align=8 +QListView (0x7fb29f10f9a0) 0 + vptr=((& QListView::_ZTV9QListView) + 16u) + QAbstractItemView (0x7fb29f10fa10) 0 + primary-for QListView (0x7fb29f10f9a0) + QAbstractScrollArea (0x7fb29f10fa80) 0 + primary-for QAbstractItemView (0x7fb29f10fa10) + QFrame (0x7fb29f10faf0) 0 + primary-for QAbstractScrollArea (0x7fb29f10fa80) + QWidget (0x7fb29f0fa500) 0 + primary-for QFrame (0x7fb29f10faf0) + QObject (0x7fb29f10fb60) 0 + primary-for QWidget (0x7fb29f0fa500) + QPaintDevice (0x7fb29f10fbd0) 16 + vptr=((& QListView::_ZTV9QListView) + 784u) + +Vtable for QUndoView +QUndoView::_ZTV9QUndoView: 103u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QUndoView) +16 QUndoView::metaObject +24 QUndoView::qt_metacast +32 QUndoView::qt_metacall +40 QUndoView::~QUndoView +48 QUndoView::~QUndoView +56 QListView::event +64 QObject::eventFilter +72 QListView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QListView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QListView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QListView::paintEvent +256 QWidget::moveEvent +264 QListView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QListView::dragMoveEvent +320 QListView::dragLeaveEvent +328 QListView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QListView::scrollContentsBy +464 QAbstractItemView::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QListView::visualRect +496 QListView::scrollTo +504 QListView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QListView::reset +536 QListView::setRootIndex +544 QListView::doItemsLayout +552 QAbstractItemView::selectAll +560 QListView::dataChanged +568 QListView::rowsInserted +576 QListView::rowsAboutToBeRemoved +584 QListView::selectionChanged +592 QListView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QListView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QListView::moveCursor +688 QListView::horizontalOffset +696 QListView::verticalOffset +704 QListView::isIndexHidden +712 QListView::setSelection +720 QListView::visualRegionForSelection +728 QListView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QListView::startDrag +760 QListView::viewOptions +768 (int (*)(...))-0x00000000000000010 +776 (int (*)(...))(& _ZTI9QUndoView) +784 QUndoView::_ZThn16_N9QUndoViewD1Ev +792 QUndoView::_ZThn16_N9QUndoViewD0Ev +800 QWidget::_ZThn16_NK7QWidget7devTypeEv +808 QWidget::_ZThn16_NK7QWidget11paintEngineEv +816 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QUndoView + size=40 align=8 + base size=40 base align=8 +QUndoView (0x7fb29ef5e070) 0 + vptr=((& QUndoView::_ZTV9QUndoView) + 16u) + QListView (0x7fb29ef5e0e0) 0 + primary-for QUndoView (0x7fb29ef5e070) + QAbstractItemView (0x7fb29ef5e150) 0 + primary-for QListView (0x7fb29ef5e0e0) + QAbstractScrollArea (0x7fb29ef5e1c0) 0 + primary-for QAbstractItemView (0x7fb29ef5e150) + QFrame (0x7fb29ef5e230) 0 + primary-for QAbstractScrollArea (0x7fb29ef5e1c0) + QWidget (0x7fb29ef57500) 0 + primary-for QFrame (0x7fb29ef5e230) + QObject (0x7fb29ef5e2a0) 0 + primary-for QWidget (0x7fb29ef57500) + QPaintDevice (0x7fb29ef5e310) 16 + vptr=((& QUndoView::_ZTV9QUndoView) + 784u) + +Vtable for QDialog +QDialog::_ZTV7QDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QDialog) +16 QDialog::metaObject +24 QDialog::qt_metacast +32 QDialog::qt_metacall +40 QDialog::~QDialog +48 QDialog::~QDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI7QDialog) +488 QDialog::_ZThn16_N7QDialogD1Ev +496 QDialog::_ZThn16_N7QDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDialog + size=40 align=8 + base size=40 base align=8 +QDialog (0x7fb29ef76d20) 0 + vptr=((& QDialog::_ZTV7QDialog) + 16u) + QWidget (0x7fb29ef57f00) 0 + primary-for QDialog (0x7fb29ef76d20) + QObject (0x7fb29ef76d90) 0 + primary-for QWidget (0x7fb29ef57f00) + QPaintDevice (0x7fb29ef76e00) 16 + vptr=((& QDialog::_ZTV7QDialog) + 488u) + +Vtable for QAbstractPageSetupDialog +QAbstractPageSetupDialog::_ZTV24QAbstractPageSetupDialog: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QAbstractPageSetupDialog) +16 QAbstractPageSetupDialog::metaObject +24 QAbstractPageSetupDialog::qt_metacast +32 QAbstractPageSetupDialog::qt_metacall +40 QAbstractPageSetupDialog::~QAbstractPageSetupDialog +48 QAbstractPageSetupDialog::~QAbstractPageSetupDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractPageSetupDialog::done +456 QDialog::accept +464 QDialog::reject +472 __cxa_pure_virtual +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI24QAbstractPageSetupDialog) +496 QAbstractPageSetupDialog::_ZThn16_N24QAbstractPageSetupDialogD1Ev +504 QAbstractPageSetupDialog::_ZThn16_N24QAbstractPageSetupDialogD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractPageSetupDialog + size=40 align=8 + base size=40 base align=8 +QAbstractPageSetupDialog (0x7fb29ef9db60) 0 + vptr=((& QAbstractPageSetupDialog::_ZTV24QAbstractPageSetupDialog) + 16u) + QDialog (0x7fb29ef9dbd0) 0 + primary-for QAbstractPageSetupDialog (0x7fb29ef9db60) + QWidget (0x7fb29ef7ea00) 0 + primary-for QDialog (0x7fb29ef9dbd0) + QObject (0x7fb29ef9dc40) 0 + primary-for QWidget (0x7fb29ef7ea00) + QPaintDevice (0x7fb29ef9dcb0) 16 + vptr=((& QAbstractPageSetupDialog::_ZTV24QAbstractPageSetupDialog) + 496u) + +Vtable for QAbstractPrintDialog +QAbstractPrintDialog::_ZTV20QAbstractPrintDialog: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QAbstractPrintDialog) +16 QAbstractPrintDialog::metaObject +24 QAbstractPrintDialog::qt_metacast +32 QAbstractPrintDialog::qt_metacall +40 QAbstractPrintDialog::~QAbstractPrintDialog +48 QAbstractPrintDialog::~QAbstractPrintDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDialog::done +456 QDialog::accept +464 QDialog::reject +472 __cxa_pure_virtual +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI20QAbstractPrintDialog) +496 QAbstractPrintDialog::_ZThn16_N20QAbstractPrintDialogD1Ev +504 QAbstractPrintDialog::_ZThn16_N20QAbstractPrintDialogD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractPrintDialog + size=40 align=8 + base size=40 base align=8 +QAbstractPrintDialog (0x7fb29efbc150) 0 + vptr=((& QAbstractPrintDialog::_ZTV20QAbstractPrintDialog) + 16u) + QDialog (0x7fb29efbc1c0) 0 + primary-for QAbstractPrintDialog (0x7fb29efbc150) + QWidget (0x7fb29efb4400) 0 + primary-for QDialog (0x7fb29efbc1c0) + QObject (0x7fb29efbc230) 0 + primary-for QWidget (0x7fb29efb4400) + QPaintDevice (0x7fb29efbc2a0) 16 + vptr=((& QAbstractPrintDialog::_ZTV20QAbstractPrintDialog) + 496u) + +Vtable for QColorDialog +QColorDialog::_ZTV12QColorDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QColorDialog) +16 QColorDialog::metaObject +24 QColorDialog::qt_metacast +32 QColorDialog::qt_metacall +40 QColorDialog::~QColorDialog +48 QColorDialog::~QColorDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QColorDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QColorDialog::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QColorDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI12QColorDialog) +488 QColorDialog::_ZThn16_N12QColorDialogD1Ev +496 QColorDialog::_ZThn16_N12QColorDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QColorDialog + size=40 align=8 + base size=40 base align=8 +QColorDialog (0x7fb29f017230) 0 + vptr=((& QColorDialog::_ZTV12QColorDialog) + 16u) + QDialog (0x7fb29f0172a0) 0 + primary-for QColorDialog (0x7fb29f017230) + QWidget (0x7fb29efd8880) 0 + primary-for QDialog (0x7fb29f0172a0) + QObject (0x7fb29f017310) 0 + primary-for QWidget (0x7fb29efd8880) + QPaintDevice (0x7fb29f017380) 16 + vptr=((& QColorDialog::_ZTV12QColorDialog) + 488u) + +Vtable for QErrorMessage +QErrorMessage::_ZTV13QErrorMessage: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QErrorMessage) +16 QErrorMessage::metaObject +24 QErrorMessage::qt_metacast +32 QErrorMessage::qt_metacall +40 QErrorMessage::~QErrorMessage +48 QErrorMessage::~QErrorMessage +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QErrorMessage::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QErrorMessage::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI13QErrorMessage) +488 QErrorMessage::_ZThn16_N13QErrorMessageD1Ev +496 QErrorMessage::_ZThn16_N13QErrorMessageD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QErrorMessage + size=40 align=8 + base size=40 base align=8 +QErrorMessage (0x7fb29ee795b0) 0 + vptr=((& QErrorMessage::_ZTV13QErrorMessage) + 16u) + QDialog (0x7fb29ee79620) 0 + primary-for QErrorMessage (0x7fb29ee795b0) + QWidget (0x7fb29f041c00) 0 + primary-for QDialog (0x7fb29ee79620) + QObject (0x7fb29ee79690) 0 + primary-for QWidget (0x7fb29f041c00) + QPaintDevice (0x7fb29ee79700) 16 + vptr=((& QErrorMessage::_ZTV13QErrorMessage) + 488u) + +Vtable for QFileDialog +QFileDialog::_ZTV11QFileDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFileDialog) +16 QFileDialog::metaObject +24 QFileDialog::qt_metacast +32 QFileDialog::qt_metacall +40 QFileDialog::~QFileDialog +48 QFileDialog::~QFileDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QFileDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFileDialog::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QFileDialog::done +456 QFileDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11QFileDialog) +488 QFileDialog::_ZThn16_N11QFileDialogD1Ev +496 QFileDialog::_ZThn16_N11QFileDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFileDialog + size=40 align=8 + base size=40 base align=8 +QFileDialog (0x7fb29ee951c0) 0 + vptr=((& QFileDialog::_ZTV11QFileDialog) + 16u) + QDialog (0x7fb29ee95230) 0 + primary-for QFileDialog (0x7fb29ee951c0) + QWidget (0x7fb29ee8d780) 0 + primary-for QDialog (0x7fb29ee95230) + QObject (0x7fb29ee952a0) 0 + primary-for QWidget (0x7fb29ee8d780) + QPaintDevice (0x7fb29ee95310) 16 + vptr=((& QFileDialog::_ZTV11QFileDialog) + 488u) + +Vtable for QFileSystemModel +QFileSystemModel::_ZTV16QFileSystemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QFileSystemModel) +16 QFileSystemModel::metaObject +24 QFileSystemModel::qt_metacast +32 QFileSystemModel::qt_metacall +40 QFileSystemModel::~QFileSystemModel +48 QFileSystemModel::~QFileSystemModel +56 QFileSystemModel::event +64 QObject::eventFilter +72 QFileSystemModel::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFileSystemModel::index +120 QFileSystemModel::parent +128 QFileSystemModel::rowCount +136 QFileSystemModel::columnCount +144 QFileSystemModel::hasChildren +152 QFileSystemModel::data +160 QFileSystemModel::setData +168 QFileSystemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QFileSystemModel::mimeTypes +208 QFileSystemModel::mimeData +216 QFileSystemModel::dropMimeData +224 QFileSystemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QFileSystemModel::fetchMore +272 QFileSystemModel::canFetchMore +280 QFileSystemModel::flags +288 QFileSystemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QFileSystemModel + size=16 align=8 + base size=16 base align=8 +QFileSystemModel (0x7fb29ef12770) 0 + vptr=((& QFileSystemModel::_ZTV16QFileSystemModel) + 16u) + QAbstractItemModel (0x7fb29ef127e0) 0 + primary-for QFileSystemModel (0x7fb29ef12770) + QObject (0x7fb29ef12850) 0 + primary-for QAbstractItemModel (0x7fb29ef127e0) + +Vtable for QFontDialog +QFontDialog::_ZTV11QFontDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFontDialog) +16 QFontDialog::metaObject +24 QFontDialog::qt_metacast +32 QFontDialog::qt_metacall +40 QFontDialog::~QFontDialog +48 QFontDialog::~QFontDialog +56 QWidget::event +64 QFontDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QFontDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFontDialog::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QFontDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11QFontDialog) +488 QFontDialog::_ZThn16_N11QFontDialogD1Ev +496 QFontDialog::_ZThn16_N11QFontDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFontDialog + size=40 align=8 + base size=40 base align=8 +QFontDialog (0x7fb29ef55e70) 0 + vptr=((& QFontDialog::_ZTV11QFontDialog) + 16u) + QDialog (0x7fb29ef55ee0) 0 + primary-for QFontDialog (0x7fb29ef55e70) + QWidget (0x7fb29ed5f500) 0 + primary-for QDialog (0x7fb29ef55ee0) + QObject (0x7fb29ef55f50) 0 + primary-for QWidget (0x7fb29ed5f500) + QPaintDevice (0x7fb29ed64000) 16 + vptr=((& QFontDialog::_ZTV11QFontDialog) + 488u) + +Vtable for QLineEdit +QLineEdit::_ZTV9QLineEdit: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QLineEdit) +16 QLineEdit::metaObject +24 QLineEdit::qt_metacast +32 QLineEdit::qt_metacall +40 QLineEdit::~QLineEdit +48 QLineEdit::~QLineEdit +56 QLineEdit::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QLineEdit::sizeHint +136 QLineEdit::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QLineEdit::mousePressEvent +168 QLineEdit::mouseReleaseEvent +176 QLineEdit::mouseDoubleClickEvent +184 QLineEdit::mouseMoveEvent +192 QWidget::wheelEvent +200 QLineEdit::keyPressEvent +208 QWidget::keyReleaseEvent +216 QLineEdit::focusInEvent +224 QLineEdit::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QLineEdit::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QLineEdit::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QLineEdit::dragEnterEvent +312 QLineEdit::dragMoveEvent +320 QLineEdit::dragLeaveEvent +328 QLineEdit::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QLineEdit::changeEvent +368 QWidget::metric +376 QLineEdit::inputMethodEvent +384 QLineEdit::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI9QLineEdit) +464 QLineEdit::_ZThn16_N9QLineEditD1Ev +472 QLineEdit::_ZThn16_N9QLineEditD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QLineEdit + size=40 align=8 + base size=40 base align=8 +QLineEdit (0x7fb29edc6310) 0 + vptr=((& QLineEdit::_ZTV9QLineEdit) + 16u) + QWidget (0x7fb29ed87800) 0 + primary-for QLineEdit (0x7fb29edc6310) + QObject (0x7fb29edc6380) 0 + primary-for QWidget (0x7fb29ed87800) + QPaintDevice (0x7fb29edc63f0) 16 + vptr=((& QLineEdit::_ZTV9QLineEdit) + 464u) + +Vtable for QInputDialog +QInputDialog::_ZTV12QInputDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QInputDialog) +16 QInputDialog::metaObject +24 QInputDialog::qt_metacast +32 QInputDialog::qt_metacall +40 QInputDialog::~QInputDialog +48 QInputDialog::~QInputDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QInputDialog::setVisible +128 QInputDialog::sizeHint +136 QInputDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QInputDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI12QInputDialog) +488 QInputDialog::_ZThn16_N12QInputDialogD1Ev +496 QInputDialog::_ZThn16_N12QInputDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QInputDialog + size=40 align=8 + base size=40 base align=8 +QInputDialog (0x7fb29ee17070) 0 + vptr=((& QInputDialog::_ZTV12QInputDialog) + 16u) + QDialog (0x7fb29ee170e0) 0 + primary-for QInputDialog (0x7fb29ee17070) + QWidget (0x7fb29ee11780) 0 + primary-for QDialog (0x7fb29ee170e0) + QObject (0x7fb29ee17150) 0 + primary-for QWidget (0x7fb29ee11780) + QPaintDevice (0x7fb29ee171c0) 16 + vptr=((& QInputDialog::_ZTV12QInputDialog) + 488u) + +Vtable for QMessageBox +QMessageBox::_ZTV11QMessageBox: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMessageBox) +16 QMessageBox::metaObject +24 QMessageBox::qt_metacast +32 QMessageBox::qt_metacall +40 QMessageBox::~QMessageBox +48 QMessageBox::~QMessageBox +56 QMessageBox::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QMessageBox::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QMessageBox::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QMessageBox::resizeEvent +272 QMessageBox::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QMessageBox::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QMessageBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11QMessageBox) +488 QMessageBox::_ZThn16_N11QMessageBoxD1Ev +496 QMessageBox::_ZThn16_N11QMessageBoxD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMessageBox + size=40 align=8 + base size=40 base align=8 +QMessageBox (0x7fb29ec75ee0) 0 + vptr=((& QMessageBox::_ZTV11QMessageBox) + 16u) + QDialog (0x7fb29ec75f50) 0 + primary-for QMessageBox (0x7fb29ec75ee0) + QWidget (0x7fb29ec8e100) 0 + primary-for QDialog (0x7fb29ec75f50) + QObject (0x7fb29ec8f000) 0 + primary-for QWidget (0x7fb29ec8e100) + QPaintDevice (0x7fb29ec8f070) 16 + vptr=((& QMessageBox::_ZTV11QMessageBox) + 488u) + +Vtable for QPageSetupDialog +QPageSetupDialog::_ZTV16QPageSetupDialog: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QPageSetupDialog) +16 QPageSetupDialog::metaObject +24 QPageSetupDialog::qt_metacast +32 QPageSetupDialog::qt_metacall +40 QPageSetupDialog::~QPageSetupDialog +48 QPageSetupDialog::~QPageSetupDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractPageSetupDialog::done +456 QDialog::accept +464 QDialog::reject +472 QPageSetupDialog::exec +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI16QPageSetupDialog) +496 QPageSetupDialog::_ZThn16_N16QPageSetupDialogD1Ev +504 QPageSetupDialog::_ZThn16_N16QPageSetupDialogD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPageSetupDialog + size=40 align=8 + base size=40 base align=8 +QPageSetupDialog (0x7fb29ed0e850) 0 + vptr=((& QPageSetupDialog::_ZTV16QPageSetupDialog) + 16u) + QAbstractPageSetupDialog (0x7fb29ed0e8c0) 0 + primary-for QPageSetupDialog (0x7fb29ed0e850) + QDialog (0x7fb29ed0e930) 0 + primary-for QAbstractPageSetupDialog (0x7fb29ed0e8c0) + QWidget (0x7fb29ecf3800) 0 + primary-for QDialog (0x7fb29ed0e930) + QObject (0x7fb29ed0e9a0) 0 + primary-for QWidget (0x7fb29ecf3800) + QPaintDevice (0x7fb29ed0ea10) 16 + vptr=((& QPageSetupDialog::_ZTV16QPageSetupDialog) + 496u) + +Vtable for QUnixPrintWidget +QUnixPrintWidget::_ZTV16QUnixPrintWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QUnixPrintWidget) +16 QUnixPrintWidget::metaObject +24 QUnixPrintWidget::qt_metacast +32 QUnixPrintWidget::qt_metacall +40 QUnixPrintWidget::~QUnixPrintWidget +48 QUnixPrintWidget::~QUnixPrintWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI16QUnixPrintWidget) +464 QUnixPrintWidget::_ZThn16_N16QUnixPrintWidgetD1Ev +472 QUnixPrintWidget::_ZThn16_N16QUnixPrintWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QUnixPrintWidget + size=48 align=8 + base size=48 base align=8 +QUnixPrintWidget (0x7fb29ed447e0) 0 + vptr=((& QUnixPrintWidget::_ZTV16QUnixPrintWidget) + 16u) + QWidget (0x7fb29ed43380) 0 + primary-for QUnixPrintWidget (0x7fb29ed447e0) + QObject (0x7fb29ed44850) 0 + primary-for QWidget (0x7fb29ed43380) + QPaintDevice (0x7fb29ed448c0) 16 + vptr=((& QUnixPrintWidget::_ZTV16QUnixPrintWidget) + 464u) + +Vtable for QPrintDialog +QPrintDialog::_ZTV12QPrintDialog: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QPrintDialog) +16 QPrintDialog::metaObject +24 QPrintDialog::qt_metacast +32 QPrintDialog::qt_metacall +40 QPrintDialog::~QPrintDialog +48 QPrintDialog::~QPrintDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QPrintDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QPrintDialog::done +456 QPrintDialog::accept +464 QDialog::reject +472 QPrintDialog::exec +480 (int (*)(...))-0x00000000000000010 +488 (int (*)(...))(& _ZTI12QPrintDialog) +496 QPrintDialog::_ZThn16_N12QPrintDialogD1Ev +504 QPrintDialog::_ZThn16_N12QPrintDialogD0Ev +512 QWidget::_ZThn16_NK7QWidget7devTypeEv +520 QWidget::_ZThn16_NK7QWidget11paintEngineEv +528 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPrintDialog + size=40 align=8 + base size=40 base align=8 +QPrintDialog (0x7fb29eb5b700) 0 + vptr=((& QPrintDialog::_ZTV12QPrintDialog) + 16u) + QAbstractPrintDialog (0x7fb29eb5b770) 0 + primary-for QPrintDialog (0x7fb29eb5b700) + QDialog (0x7fb29eb5b7e0) 0 + primary-for QAbstractPrintDialog (0x7fb29eb5b770) + QWidget (0x7fb29ed43a80) 0 + primary-for QDialog (0x7fb29eb5b7e0) + QObject (0x7fb29eb5b850) 0 + primary-for QWidget (0x7fb29ed43a80) + QPaintDevice (0x7fb29eb5b8c0) 16 + vptr=((& QPrintDialog::_ZTV12QPrintDialog) + 496u) + +Vtable for QPrintPreviewDialog +QPrintPreviewDialog::_ZTV19QPrintPreviewDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QPrintPreviewDialog) +16 QPrintPreviewDialog::metaObject +24 QPrintPreviewDialog::qt_metacast +32 QPrintPreviewDialog::qt_metacall +40 QPrintPreviewDialog::~QPrintPreviewDialog +48 QPrintPreviewDialog::~QPrintPreviewDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QPrintPreviewDialog::setVisible +128 QDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDialog::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QPrintPreviewDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI19QPrintPreviewDialog) +488 QPrintPreviewDialog::_ZThn16_N19QPrintPreviewDialogD1Ev +496 QPrintPreviewDialog::_ZThn16_N19QPrintPreviewDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPrintPreviewDialog + size=48 align=8 + base size=48 base align=8 +QPrintPreviewDialog (0x7fb29eb772a0) 0 + vptr=((& QPrintPreviewDialog::_ZTV19QPrintPreviewDialog) + 16u) + QDialog (0x7fb29eb77310) 0 + primary-for QPrintPreviewDialog (0x7fb29eb772a0) + QWidget (0x7fb29eb72480) 0 + primary-for QDialog (0x7fb29eb77310) + QObject (0x7fb29eb77380) 0 + primary-for QWidget (0x7fb29eb72480) + QPaintDevice (0x7fb29eb773f0) 16 + vptr=((& QPrintPreviewDialog::_ZTV19QPrintPreviewDialog) + 488u) + +Vtable for QProgressDialog +QProgressDialog::_ZTV15QProgressDialog: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QProgressDialog) +16 QProgressDialog::metaObject +24 QProgressDialog::qt_metacast +32 QProgressDialog::qt_metacall +40 QProgressDialog::~QProgressDialog +48 QProgressDialog::~QProgressDialog +56 QWidget::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QDialog::setVisible +128 QProgressDialog::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QProgressDialog::resizeEvent +272 QProgressDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QProgressDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QProgressDialog::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDialog::done +456 QDialog::accept +464 QDialog::reject +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI15QProgressDialog) +488 QProgressDialog::_ZThn16_N15QProgressDialogD1Ev +496 QProgressDialog::_ZThn16_N15QProgressDialogD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QProgressDialog + size=40 align=8 + base size=40 base align=8 +QProgressDialog (0x7fb29eb8fa10) 0 + vptr=((& QProgressDialog::_ZTV15QProgressDialog) + 16u) + QDialog (0x7fb29eb8fa80) 0 + primary-for QProgressDialog (0x7fb29eb8fa10) + QWidget (0x7fb29eb72e80) 0 + primary-for QDialog (0x7fb29eb8fa80) + QObject (0x7fb29eb8faf0) 0 + primary-for QWidget (0x7fb29eb72e80) + QPaintDevice (0x7fb29eb8fb60) 16 + vptr=((& QProgressDialog::_ZTV15QProgressDialog) + 488u) + +Vtable for QWizard +QWizard::_ZTV7QWizard: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QWizard) +16 QWizard::metaObject +24 QWizard::qt_metacast +32 QWizard::qt_metacall +40 QWizard::~QWizard +48 QWizard::~QWizard +56 QWizard::event +64 QDialog::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWizard::setVisible +128 QWizard::sizeHint +136 QDialog::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QDialog::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWizard::paintEvent +256 QWidget::moveEvent +264 QWizard::resizeEvent +272 QDialog::closeEvent +280 QDialog::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QDialog::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QWizard::done +456 QDialog::accept +464 QDialog::reject +472 QWizard::validateCurrentPage +480 QWizard::nextId +488 QWizard::initializePage +496 QWizard::cleanupPage +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI7QWizard) +520 QWizard::_ZThn16_N7QWizardD1Ev +528 QWizard::_ZThn16_N7QWizardD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWizard + size=40 align=8 + base size=40 base align=8 +QWizard (0x7fb29ebb4620) 0 + vptr=((& QWizard::_ZTV7QWizard) + 16u) + QDialog (0x7fb29ebb4690) 0 + primary-for QWizard (0x7fb29ebb4620) + QWidget (0x7fb29ebae880) 0 + primary-for QDialog (0x7fb29ebb4690) + QObject (0x7fb29ebb4700) 0 + primary-for QWidget (0x7fb29ebae880) + QPaintDevice (0x7fb29ebb4770) 16 + vptr=((& QWizard::_ZTV7QWizard) + 520u) + +Vtable for QWizardPage +QWizardPage::_ZTV11QWizardPage: 68u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QWizardPage) +16 QWizardPage::metaObject +24 QWizardPage::qt_metacast +32 QWizardPage::qt_metacall +40 QWizardPage::~QWizardPage +48 QWizardPage::~QWizardPage +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QWizardPage::initializePage +456 QWizardPage::cleanupPage +464 QWizardPage::validatePage +472 QWizardPage::isComplete +480 QWizardPage::nextId +488 (int (*)(...))-0x00000000000000010 +496 (int (*)(...))(& _ZTI11QWizardPage) +504 QWizardPage::_ZThn16_N11QWizardPageD1Ev +512 QWizardPage::_ZThn16_N11QWizardPageD0Ev +520 QWidget::_ZThn16_NK7QWidget7devTypeEv +528 QWidget::_ZThn16_NK7QWidget11paintEngineEv +536 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWizardPage + size=40 align=8 + base size=40 base align=8 +QWizardPage (0x7fb29ec0d9a0) 0 + vptr=((& QWizardPage::_ZTV11QWizardPage) + 16u) + QWidget (0x7fb29ebe2b80) 0 + primary-for QWizardPage (0x7fb29ec0d9a0) + QObject (0x7fb29ec0da10) 0 + primary-for QWidget (0x7fb29ebe2b80) + QPaintDevice (0x7fb29ec0da80) 16 + vptr=((& QWizardPage::_ZTV11QWizardPage) + 504u) + +Vtable for QKeyEventTransition +QKeyEventTransition::_ZTV19QKeyEventTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QKeyEventTransition) +16 QKeyEventTransition::metaObject +24 QKeyEventTransition::qt_metacast +32 QKeyEventTransition::qt_metacall +40 QKeyEventTransition::~QKeyEventTransition +48 QKeyEventTransition::~QKeyEventTransition +56 QEventTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QKeyEventTransition::eventTest +120 QKeyEventTransition::onTransition + +Class QKeyEventTransition + size=16 align=8 + base size=16 base align=8 +QKeyEventTransition (0x7fb29ec454d0) 0 + vptr=((& QKeyEventTransition::_ZTV19QKeyEventTransition) + 16u) + QEventTransition (0x7fb29ec45540) 0 + primary-for QKeyEventTransition (0x7fb29ec454d0) + QAbstractTransition (0x7fb29ec455b0) 0 + primary-for QEventTransition (0x7fb29ec45540) + QObject (0x7fb29ec45620) 0 + primary-for QAbstractTransition (0x7fb29ec455b0) + +Vtable for QMouseEventTransition +QMouseEventTransition::_ZTV21QMouseEventTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QMouseEventTransition) +16 QMouseEventTransition::metaObject +24 QMouseEventTransition::qt_metacast +32 QMouseEventTransition::qt_metacall +40 QMouseEventTransition::~QMouseEventTransition +48 QMouseEventTransition::~QMouseEventTransition +56 QEventTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMouseEventTransition::eventTest +120 QMouseEventTransition::onTransition + +Class QMouseEventTransition + size=16 align=8 + base size=16 base align=8 +QMouseEventTransition (0x7fb29ea57f50) 0 + vptr=((& QMouseEventTransition::_ZTV21QMouseEventTransition) + 16u) + QEventTransition (0x7fb29ea60000) 0 + primary-for QMouseEventTransition (0x7fb29ea57f50) + QAbstractTransition (0x7fb29ea60070) 0 + primary-for QEventTransition (0x7fb29ea60000) + QObject (0x7fb29ea600e0) 0 + primary-for QAbstractTransition (0x7fb29ea60070) + +Vtable for QBitmap +QBitmap::_ZTV7QBitmap: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QBitmap) +16 QBitmap::~QBitmap +24 QBitmap::~QBitmap +32 QPixmap::devType +40 QPixmap::paintEngine +48 QPixmap::metric + +Class QBitmap + size=24 align=8 + base size=24 base align=8 +QBitmap (0x7fb29ea74a10) 0 + vptr=((& QBitmap::_ZTV7QBitmap) + 16u) + QPixmap (0x7fb29ea74a80) 0 + primary-for QBitmap (0x7fb29ea74a10) + QPaintDevice (0x7fb29ea74af0) 0 + primary-for QPixmap (0x7fb29ea74a80) + +Vtable for QIconEngine +QIconEngine::_ZTV11QIconEngine: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QIconEngine) +16 QIconEngine::~QIconEngine +24 QIconEngine::~QIconEngine +32 __cxa_pure_virtual +40 QIconEngine::actualSize +48 QIconEngine::pixmap +56 QIconEngine::addPixmap +64 QIconEngine::addFile + +Class QIconEngine + size=8 align=8 + base size=8 base align=8 +QIconEngine (0x7fb29eaa68c0) 0 nearly-empty + vptr=((& QIconEngine::_ZTV11QIconEngine) + 16u) + +Class QIconEngineV2::AvailableSizesArgument + size=16 align=8 + base size=16 base align=8 +QIconEngineV2::AvailableSizesArgument (0x7fb29eab2070) 0 + +Vtable for QIconEngineV2 +QIconEngineV2::_ZTV13QIconEngineV2: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QIconEngineV2) +16 QIconEngineV2::~QIconEngineV2 +24 QIconEngineV2::~QIconEngineV2 +32 __cxa_pure_virtual +40 QIconEngine::actualSize +48 QIconEngine::pixmap +56 QIconEngine::addPixmap +64 QIconEngine::addFile +72 QIconEngineV2::key +80 QIconEngineV2::clone +88 QIconEngineV2::read +96 QIconEngineV2::write +104 QIconEngineV2::virtual_hook + +Class QIconEngineV2 + size=8 align=8 + base size=8 base align=8 +QIconEngineV2 (0x7fb29eaa6e70) 0 nearly-empty + vptr=((& QIconEngineV2::_ZTV13QIconEngineV2) + 16u) + QIconEngine (0x7fb29eaa6ee0) 0 nearly-empty + primary-for QIconEngineV2 (0x7fb29eaa6e70) + +Vtable for QIconEngineFactoryInterface +QIconEngineFactoryInterface::_ZTV27QIconEngineFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QIconEngineFactoryInterface) +16 QIconEngineFactoryInterface::~QIconEngineFactoryInterface +24 QIconEngineFactoryInterface::~QIconEngineFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QIconEngineFactoryInterface + size=8 align=8 + base size=8 base align=8 +QIconEngineFactoryInterface (0x7fb29eab2850) 0 nearly-empty + vptr=((& QIconEngineFactoryInterface::_ZTV27QIconEngineFactoryInterface) + 16u) + QFactoryInterface (0x7fb29eab28c0) 0 nearly-empty + primary-for QIconEngineFactoryInterface (0x7fb29eab2850) + +Vtable for QIconEnginePlugin +QIconEnginePlugin::_ZTV17QIconEnginePlugin: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QIconEnginePlugin) +16 QIconEnginePlugin::metaObject +24 QIconEnginePlugin::qt_metacast +32 QIconEnginePlugin::qt_metacall +40 QIconEnginePlugin::~QIconEnginePlugin +48 QIconEnginePlugin::~QIconEnginePlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI17QIconEnginePlugin) +144 QIconEnginePlugin::_ZThn16_N17QIconEnginePluginD1Ev +152 QIconEnginePlugin::_ZThn16_N17QIconEnginePluginD0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QIconEnginePlugin + size=24 align=8 + base size=24 base align=8 +QIconEnginePlugin (0x7fb29eaacf80) 0 + vptr=((& QIconEnginePlugin::_ZTV17QIconEnginePlugin) + 16u) + QObject (0x7fb29eae81c0) 0 + primary-for QIconEnginePlugin (0x7fb29eaacf80) + QIconEngineFactoryInterface (0x7fb29eae8230) 16 nearly-empty + vptr=((& QIconEnginePlugin::_ZTV17QIconEnginePlugin) + 144u) + QFactoryInterface (0x7fb29eae82a0) 16 nearly-empty + primary-for QIconEngineFactoryInterface (0x7fb29eae8230) + +Vtable for QIconEngineFactoryInterfaceV2 +QIconEngineFactoryInterfaceV2::_ZTV29QIconEngineFactoryInterfaceV2: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI29QIconEngineFactoryInterfaceV2) +16 QIconEngineFactoryInterfaceV2::~QIconEngineFactoryInterfaceV2 +24 QIconEngineFactoryInterfaceV2::~QIconEngineFactoryInterfaceV2 +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QIconEngineFactoryInterfaceV2 + size=8 align=8 + base size=8 base align=8 +QIconEngineFactoryInterfaceV2 (0x7fb29eafa150) 0 nearly-empty + vptr=((& QIconEngineFactoryInterfaceV2::_ZTV29QIconEngineFactoryInterfaceV2) + 16u) + QFactoryInterface (0x7fb29eafa1c0) 0 nearly-empty + primary-for QIconEngineFactoryInterfaceV2 (0x7fb29eafa150) + +Vtable for QIconEnginePluginV2 +QIconEnginePluginV2::_ZTV19QIconEnginePluginV2: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QIconEnginePluginV2) +16 QIconEnginePluginV2::metaObject +24 QIconEnginePluginV2::qt_metacast +32 QIconEnginePluginV2::qt_metacall +40 QIconEnginePluginV2::~QIconEnginePluginV2 +48 QIconEnginePluginV2::~QIconEnginePluginV2 +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI19QIconEnginePluginV2) +144 QIconEnginePluginV2::_ZThn16_N19QIconEnginePluginV2D1Ev +152 QIconEnginePluginV2::_ZThn16_N19QIconEnginePluginV2D0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QIconEnginePluginV2 + size=24 align=8 + base size=24 base align=8 +QIconEnginePluginV2 (0x7fb29eb06000) 0 + vptr=((& QIconEnginePluginV2::_ZTV19QIconEnginePluginV2) + 16u) + QObject (0x7fb29eafac40) 0 + primary-for QIconEnginePluginV2 (0x7fb29eb06000) + QIconEngineFactoryInterfaceV2 (0x7fb29eafacb0) 16 nearly-empty + vptr=((& QIconEnginePluginV2::_ZTV19QIconEnginePluginV2) + 144u) + QFactoryInterface (0x7fb29eafad20) 16 nearly-empty + primary-for QIconEngineFactoryInterfaceV2 (0x7fb29eafacb0) + +Vtable for QImageIOHandler +QImageIOHandler::_ZTV15QImageIOHandler: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QImageIOHandler) +16 QImageIOHandler::~QImageIOHandler +24 QImageIOHandler::~QImageIOHandler +32 QImageIOHandler::name +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QImageIOHandler::write +64 QImageIOHandler::option +72 QImageIOHandler::setOption +80 QImageIOHandler::supportsOption +88 QImageIOHandler::jumpToNextImage +96 QImageIOHandler::jumpToImage +104 QImageIOHandler::loopCount +112 QImageIOHandler::imageCount +120 QImageIOHandler::nextImageDelay +128 QImageIOHandler::currentImageNumber +136 QImageIOHandler::currentImageRect + +Class QImageIOHandler + size=16 align=8 + base size=16 base align=8 +QImageIOHandler (0x7fb29eb0ebd0) 0 + vptr=((& QImageIOHandler::_ZTV15QImageIOHandler) + 16u) + +Vtable for QImageIOHandlerFactoryInterface +QImageIOHandlerFactoryInterface::_ZTV31QImageIOHandlerFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI31QImageIOHandlerFactoryInterface) +16 QImageIOHandlerFactoryInterface::~QImageIOHandlerFactoryInterface +24 QImageIOHandlerFactoryInterface::~QImageIOHandlerFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QImageIOHandlerFactoryInterface + size=8 align=8 + base size=8 base align=8 +QImageIOHandlerFactoryInterface (0x7fb29eb2a9a0) 0 nearly-empty + vptr=((& QImageIOHandlerFactoryInterface::_ZTV31QImageIOHandlerFactoryInterface) + 16u) + QFactoryInterface (0x7fb29eb2aa10) 0 nearly-empty + primary-for QImageIOHandlerFactoryInterface (0x7fb29eb2a9a0) + +Vtable for QImageIOPlugin +QImageIOPlugin::_ZTV14QImageIOPlugin: 23u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QImageIOPlugin) +16 QImageIOPlugin::metaObject +24 QImageIOPlugin::qt_metacast +32 QImageIOPlugin::qt_metacall +40 QImageIOPlugin::~QImageIOPlugin +48 QImageIOPlugin::~QImageIOPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 (int (*)(...))-0x00000000000000010 +144 (int (*)(...))(& _ZTI14QImageIOPlugin) +152 QImageIOPlugin::_ZThn16_N14QImageIOPluginD1Ev +160 QImageIOPlugin::_ZThn16_N14QImageIOPluginD0Ev +168 __cxa_pure_virtual +176 __cxa_pure_virtual + +Class QImageIOPlugin + size=24 align=8 + base size=24 base align=8 +QImageIOPlugin (0x7fb29eb30c00) 0 + vptr=((& QImageIOPlugin::_ZTV14QImageIOPlugin) + 16u) + QObject (0x7fb29eb3a3f0) 0 + primary-for QImageIOPlugin (0x7fb29eb30c00) + QImageIOHandlerFactoryInterface (0x7fb29eb3a460) 16 nearly-empty + vptr=((& QImageIOPlugin::_ZTV14QImageIOPlugin) + 152u) + QFactoryInterface (0x7fb29eb3a4d0) 16 nearly-empty + primary-for QImageIOHandlerFactoryInterface (0x7fb29eb3a460) + +Class QImageReader + size=8 align=8 + base size=8 base align=8 +QImageReader (0x7fb29e98f4d0) 0 + +Class QImageWriter + size=8 align=8 + base size=8 base align=8 +QImageWriter (0x7fb29e98fee0) 0 + +Vtable for QMovie +QMovie::_ZTV6QMovie: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QMovie) +16 QMovie::metaObject +24 QMovie::qt_metacast +32 QMovie::qt_metacall +40 QMovie::~QMovie +48 QMovie::~QMovie +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QMovie + size=16 align=8 + base size=16 base align=8 +QMovie (0x7fb29e9a5770) 0 + vptr=((& QMovie::_ZTV6QMovie) + 16u) + QObject (0x7fb29e9a57e0) 0 + primary-for QMovie (0x7fb29e9a5770) + +Vtable for QPicture +QPicture::_ZTV8QPicture: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QPicture) +16 QPicture::~QPicture +24 QPicture::~QPicture +32 QPicture::devType +40 QPicture::paintEngine +48 QPicture::metric +56 QPicture::setData + +Class QPicture + size=24 align=8 + base size=24 base align=8 +QPicture (0x7fb29e9ea7e0) 0 + vptr=((& QPicture::_ZTV8QPicture) + 16u) + QPaintDevice (0x7fb29e9ea850) 0 + primary-for QPicture (0x7fb29e9ea7e0) + +Class QPictureIO + size=8 align=8 + base size=8 base align=8 +QPictureIO (0x7fb29ea0c310) 0 + +Vtable for QPictureFormatInterface +QPictureFormatInterface::_ZTV23QPictureFormatInterface: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QPictureFormatInterface) +16 QPictureFormatInterface::~QPictureFormatInterface +24 QPictureFormatInterface::~QPictureFormatInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual + +Class QPictureFormatInterface + size=8 align=8 + base size=8 base align=8 +QPictureFormatInterface (0x7fb29ea0c930) 0 nearly-empty + vptr=((& QPictureFormatInterface::_ZTV23QPictureFormatInterface) + 16u) + QFactoryInterface (0x7fb29ea0c9a0) 0 nearly-empty + primary-for QPictureFormatInterface (0x7fb29ea0c930) + +Vtable for QPictureFormatPlugin +QPictureFormatPlugin::_ZTV20QPictureFormatPlugin: 26u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QPictureFormatPlugin) +16 QPictureFormatPlugin::metaObject +24 QPictureFormatPlugin::qt_metacast +32 QPictureFormatPlugin::qt_metacall +40 QPictureFormatPlugin::~QPictureFormatPlugin +48 QPictureFormatPlugin::~QPictureFormatPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 QPictureFormatPlugin::loadPicture +128 QPictureFormatPlugin::savePicture +136 __cxa_pure_virtual +144 (int (*)(...))-0x00000000000000010 +152 (int (*)(...))(& _ZTI20QPictureFormatPlugin) +160 QPictureFormatPlugin::_ZThn16_N20QPictureFormatPluginD1Ev +168 QPictureFormatPlugin::_ZThn16_N20QPictureFormatPluginD0Ev +176 __cxa_pure_virtual +184 QPictureFormatPlugin::_ZThn16_N20QPictureFormatPlugin11loadPictureERK7QStringS2_P8QPicture +192 QPictureFormatPlugin::_ZThn16_N20QPictureFormatPlugin11savePictureERK7QStringS2_RK8QPicture +200 __cxa_pure_virtual + +Class QPictureFormatPlugin + size=24 align=8 + base size=24 base align=8 +QPictureFormatPlugin (0x7fb29ea29300) 0 + vptr=((& QPictureFormatPlugin::_ZTV20QPictureFormatPlugin) + 16u) + QObject (0x7fb29ea2a310) 0 + primary-for QPictureFormatPlugin (0x7fb29ea29300) + QPictureFormatInterface (0x7fb29ea2a380) 16 nearly-empty + vptr=((& QPictureFormatPlugin::_ZTV20QPictureFormatPlugin) + 160u) + QFactoryInterface (0x7fb29ea2a3f0) 16 nearly-empty + primary-for QPictureFormatInterface (0x7fb29ea2a380) + +Class QPixmapCache::Key + size=8 align=8 + base size=8 base align=8 +QPixmapCache::Key (0x7fb29ea3b310) 0 + +Class QPixmapCache + size=1 align=1 + base size=0 base align=1 +QPixmapCache (0x7fb29ea3b2a0) 0 empty + +Vtable for QGraphicsEffect +QGraphicsEffect::_ZTV15QGraphicsEffect: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QGraphicsEffect) +16 QGraphicsEffect::metaObject +24 QGraphicsEffect::qt_metacast +32 QGraphicsEffect::qt_metacall +40 QGraphicsEffect::~QGraphicsEffect +48 QGraphicsEffect::~QGraphicsEffect +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsEffect::boundingRectFor +120 __cxa_pure_virtual +128 QGraphicsEffect::sourceChanged + +Class QGraphicsEffect + size=16 align=8 + base size=16 base align=8 +QGraphicsEffect (0x7fb29ea43150) 0 + vptr=((& QGraphicsEffect::_ZTV15QGraphicsEffect) + 16u) + QObject (0x7fb29ea431c0) 0 + primary-for QGraphicsEffect (0x7fb29ea43150) + +Vtable for QGraphicsColorizeEffect +QGraphicsColorizeEffect::_ZTV23QGraphicsColorizeEffect: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QGraphicsColorizeEffect) +16 QGraphicsColorizeEffect::metaObject +24 QGraphicsColorizeEffect::qt_metacast +32 QGraphicsColorizeEffect::qt_metacall +40 QGraphicsColorizeEffect::~QGraphicsColorizeEffect +48 QGraphicsColorizeEffect::~QGraphicsColorizeEffect +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsEffect::boundingRectFor +120 QGraphicsColorizeEffect::draw +128 QGraphicsEffect::sourceChanged + +Class QGraphicsColorizeEffect + size=16 align=8 + base size=16 base align=8 +QGraphicsColorizeEffect (0x7fb29e88ac40) 0 + vptr=((& QGraphicsColorizeEffect::_ZTV23QGraphicsColorizeEffect) + 16u) + QGraphicsEffect (0x7fb29e88acb0) 0 + primary-for QGraphicsColorizeEffect (0x7fb29e88ac40) + QObject (0x7fb29e88ad20) 0 + primary-for QGraphicsEffect (0x7fb29e88acb0) + +Vtable for QGraphicsBlurEffect +QGraphicsBlurEffect::_ZTV19QGraphicsBlurEffect: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QGraphicsBlurEffect) +16 QGraphicsBlurEffect::metaObject +24 QGraphicsBlurEffect::qt_metacast +32 QGraphicsBlurEffect::qt_metacall +40 QGraphicsBlurEffect::~QGraphicsBlurEffect +48 QGraphicsBlurEffect::~QGraphicsBlurEffect +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsBlurEffect::boundingRectFor +120 QGraphicsBlurEffect::draw +128 QGraphicsEffect::sourceChanged + +Class QGraphicsBlurEffect + size=16 align=8 + base size=16 base align=8 +QGraphicsBlurEffect (0x7fb29e8b85b0) 0 + vptr=((& QGraphicsBlurEffect::_ZTV19QGraphicsBlurEffect) + 16u) + QGraphicsEffect (0x7fb29e8b8620) 0 + primary-for QGraphicsBlurEffect (0x7fb29e8b85b0) + QObject (0x7fb29e8b8690) 0 + primary-for QGraphicsEffect (0x7fb29e8b8620) + +Vtable for QGraphicsDropShadowEffect +QGraphicsDropShadowEffect::_ZTV25QGraphicsDropShadowEffect: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QGraphicsDropShadowEffect) +16 QGraphicsDropShadowEffect::metaObject +24 QGraphicsDropShadowEffect::qt_metacast +32 QGraphicsDropShadowEffect::qt_metacall +40 QGraphicsDropShadowEffect::~QGraphicsDropShadowEffect +48 QGraphicsDropShadowEffect::~QGraphicsDropShadowEffect +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsDropShadowEffect::boundingRectFor +120 QGraphicsDropShadowEffect::draw +128 QGraphicsEffect::sourceChanged + +Class QGraphicsDropShadowEffect + size=16 align=8 + base size=16 base align=8 +QGraphicsDropShadowEffect (0x7fb29e9170e0) 0 + vptr=((& QGraphicsDropShadowEffect::_ZTV25QGraphicsDropShadowEffect) + 16u) + QGraphicsEffect (0x7fb29e917150) 0 + primary-for QGraphicsDropShadowEffect (0x7fb29e9170e0) + QObject (0x7fb29e9171c0) 0 + primary-for QGraphicsEffect (0x7fb29e917150) + +Vtable for QGraphicsOpacityEffect +QGraphicsOpacityEffect::_ZTV22QGraphicsOpacityEffect: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QGraphicsOpacityEffect) +16 QGraphicsOpacityEffect::metaObject +24 QGraphicsOpacityEffect::qt_metacast +32 QGraphicsOpacityEffect::qt_metacall +40 QGraphicsOpacityEffect::~QGraphicsOpacityEffect +48 QGraphicsOpacityEffect::~QGraphicsOpacityEffect +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsEffect::boundingRectFor +120 QGraphicsOpacityEffect::draw +128 QGraphicsEffect::sourceChanged + +Class QGraphicsOpacityEffect + size=16 align=8 + base size=16 base align=8 +QGraphicsOpacityEffect (0x7fb29e9365b0) 0 + vptr=((& QGraphicsOpacityEffect::_ZTV22QGraphicsOpacityEffect) + 16u) + QGraphicsEffect (0x7fb29e936620) 0 + primary-for QGraphicsOpacityEffect (0x7fb29e9365b0) + QObject (0x7fb29e936690) 0 + primary-for QGraphicsEffect (0x7fb29e936620) + +Class QVFbHeader + size=1088 align=8 + base size=1088 base align=8 +QVFbHeader (0x7fb29e947ee0) 0 + +Class QVFbKeyData + size=12 align=4 + base size=12 base align=4 +QVFbKeyData (0x7fb29e947f50) 0 + +Vtable for QWSEmbedWidget +QWSEmbedWidget::_ZTV14QWSEmbedWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QWSEmbedWidget) +16 QWSEmbedWidget::metaObject +24 QWSEmbedWidget::qt_metacast +32 QWSEmbedWidget::qt_metacall +40 QWSEmbedWidget::~QWSEmbedWidget +48 QWSEmbedWidget::~QWSEmbedWidget +56 QWidget::event +64 QWSEmbedWidget::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWSEmbedWidget::moveEvent +264 QWSEmbedWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWSEmbedWidget::showEvent +344 QWSEmbedWidget::hideEvent +352 QWidget::x11Event +360 QWSEmbedWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI14QWSEmbedWidget) +464 QWSEmbedWidget::_ZThn16_N14QWSEmbedWidgetD1Ev +472 QWSEmbedWidget::_ZThn16_N14QWSEmbedWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWSEmbedWidget + size=40 align=8 + base size=40 base align=8 +QWSEmbedWidget (0x7fb29e951000) 0 + vptr=((& QWSEmbedWidget::_ZTV14QWSEmbedWidget) + 16u) + QWidget (0x7fb29e944900) 0 + primary-for QWSEmbedWidget (0x7fb29e951000) + QObject (0x7fb29e951070) 0 + primary-for QWidget (0x7fb29e944900) + QPaintDevice (0x7fb29e9510e0) 16 + vptr=((& QWSEmbedWidget::_ZTV14QWSEmbedWidget) + 464u) + +Class QColormap + size=8 align=8 + base size=8 base align=8 +QColormap (0x7fb29e7694d0) 0 + +Class QTileRules + size=8 align=4 + base size=8 base align=4 +QTileRules (0x7fb29e769cb0) 0 + +Class QDrawPixmaps::Data + size=80 align=8 + base size=80 base align=8 +QDrawPixmaps::Data (0x7fb29e780d20) 0 + +Class QPainter + size=8 align=8 + base size=8 base align=8 +QPainter (0x7fb29e780e00) 0 + +Class QTextItem + size=1 align=1 + base size=0 base align=1 +QTextItem (0x7fb29e5ae8c0) 0 empty + +Vtable for QPaintEngine +QPaintEngine::_ZTV12QPaintEngine: 24u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QPaintEngine) +16 QPaintEngine::~QPaintEngine +24 QPaintEngine::~QPaintEngine +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QPaintEngine::drawRects +64 QPaintEngine::drawRects +72 QPaintEngine::drawLines +80 QPaintEngine::drawLines +88 QPaintEngine::drawEllipse +96 QPaintEngine::drawEllipse +104 QPaintEngine::drawPath +112 QPaintEngine::drawPoints +120 QPaintEngine::drawPoints +128 QPaintEngine::drawPolygon +136 QPaintEngine::drawPolygon +144 __cxa_pure_virtual +152 QPaintEngine::drawTextItem +160 QPaintEngine::drawTiledPixmap +168 QPaintEngine::drawImage +176 QPaintEngine::coordinateOffset +184 __cxa_pure_virtual + +Class QPaintEngine + size=32 align=8 + base size=32 base align=8 +QPaintEngine (0x7fb29e5aeee0) 0 + vptr=((& QPaintEngine::_ZTV12QPaintEngine) + 16u) + +Class QPaintEngineState + size=4 align=4 + base size=4 base align=4 +QPaintEngineState (0x7fb29e5fab60) 0 + +Vtable for QPrinter +QPrinter::_ZTV8QPrinter: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QPrinter) +16 QPrinter::~QPrinter +24 QPrinter::~QPrinter +32 QPrinter::devType +40 QPrinter::paintEngine +48 QPrinter::metric + +Class QPrinter + size=24 align=8 + base size=24 base align=8 +QPrinter (0x7fb29e4c7e70) 0 + vptr=((& QPrinter::_ZTV8QPrinter) + 16u) + QPaintDevice (0x7fb29e4c7ee0) 0 + primary-for QPrinter (0x7fb29e4c7e70) + +Vtable for QPrintEngine +QPrintEngine::_ZTV12QPrintEngine: 10u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QPrintEngine) +16 QPrintEngine::~QPrintEngine +24 QPrintEngine::~QPrintEngine +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual + +Class QPrintEngine + size=8 align=8 + base size=8 base align=8 +QPrintEngine (0x7fb29e52e540) 0 nearly-empty + vptr=((& QPrintEngine::_ZTV12QPrintEngine) + 16u) + +Class QPrinterInfo + size=8 align=8 + base size=8 base align=8 +QPrinterInfo (0x7fb29e53d2a0) 0 + +Class QStylePainter + size=24 align=8 + base size=24 base align=8 +QStylePainter (0x7fb29e5439a0) 0 + QPainter (0x7fb29e543a10) 0 + +Vtable for QAbstractProxyModel +QAbstractProxyModel::_ZTV19QAbstractProxyModel: 47u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractProxyModel) +16 QAbstractProxyModel::metaObject +24 QAbstractProxyModel::qt_metacast +32 QAbstractProxyModel::qt_metacall +40 QAbstractProxyModel::~QAbstractProxyModel +48 QAbstractProxyModel::~QAbstractProxyModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractItemModel::hasChildren +152 QAbstractProxyModel::data +160 QAbstractProxyModel::setData +168 QAbstractProxyModel::headerData +176 QAbstractProxyModel::setHeaderData +184 QAbstractProxyModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractItemModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractProxyModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractProxyModel::submit +328 QAbstractProxyModel::revert +336 QAbstractProxyModel::setSourceModel +344 __cxa_pure_virtual +352 __cxa_pure_virtual +360 QAbstractProxyModel::mapSelectionToSource +368 QAbstractProxyModel::mapSelectionFromSource + +Class QAbstractProxyModel + size=16 align=8 + base size=16 base align=8 +QAbstractProxyModel (0x7fb29e371ee0) 0 + vptr=((& QAbstractProxyModel::_ZTV19QAbstractProxyModel) + 16u) + QAbstractItemModel (0x7fb29e371f50) 0 + primary-for QAbstractProxyModel (0x7fb29e371ee0) + QObject (0x7fb29e377000) 0 + primary-for QAbstractItemModel (0x7fb29e371f50) + +Vtable for QColumnView +QColumnView::_ZTV11QColumnView: 104u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QColumnView) +16 QColumnView::metaObject +24 QColumnView::qt_metacast +32 QColumnView::qt_metacall +40 QColumnView::~QColumnView +48 QColumnView::~QColumnView +56 QAbstractItemView::event +64 QObject::eventFilter +72 QAbstractItemView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QColumnView::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QAbstractItemView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QAbstractItemView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractScrollArea::paintEvent +256 QWidget::moveEvent +264 QColumnView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QColumnView::scrollContentsBy +464 QColumnView::setModel +472 QColumnView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QColumnView::visualRect +496 QColumnView::scrollTo +504 QColumnView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QAbstractItemView::reset +536 QColumnView::setRootIndex +544 QAbstractItemView::doItemsLayout +552 QColumnView::selectAll +560 QAbstractItemView::dataChanged +568 QColumnView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QAbstractItemView::selectionChanged +592 QColumnView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QAbstractItemView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QColumnView::moveCursor +688 QColumnView::horizontalOffset +696 QColumnView::verticalOffset +704 QColumnView::isIndexHidden +712 QColumnView::setSelection +720 QColumnView::visualRegionForSelection +728 QAbstractItemView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 QColumnView::createColumn +776 (int (*)(...))-0x00000000000000010 +784 (int (*)(...))(& _ZTI11QColumnView) +792 QColumnView::_ZThn16_N11QColumnViewD1Ev +800 QColumnView::_ZThn16_N11QColumnViewD0Ev +808 QWidget::_ZThn16_NK7QWidget7devTypeEv +816 QWidget::_ZThn16_NK7QWidget11paintEngineEv +824 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QColumnView + size=40 align=8 + base size=40 base align=8 +QColumnView (0x7fb29e38daf0) 0 + vptr=((& QColumnView::_ZTV11QColumnView) + 16u) + QAbstractItemView (0x7fb29e38db60) 0 + primary-for QColumnView (0x7fb29e38daf0) + QAbstractScrollArea (0x7fb29e38dbd0) 0 + primary-for QAbstractItemView (0x7fb29e38db60) + QFrame (0x7fb29e38dc40) 0 + primary-for QAbstractScrollArea (0x7fb29e38dbd0) + QWidget (0x7fb29e393200) 0 + primary-for QFrame (0x7fb29e38dc40) + QObject (0x7fb29e38dcb0) 0 + primary-for QWidget (0x7fb29e393200) + QPaintDevice (0x7fb29e38dd20) 16 + vptr=((& QColumnView::_ZTV11QColumnView) + 792u) + +Vtable for QDataWidgetMapper +QDataWidgetMapper::_ZTV17QDataWidgetMapper: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QDataWidgetMapper) +16 QDataWidgetMapper::metaObject +24 QDataWidgetMapper::qt_metacast +32 QDataWidgetMapper::qt_metacall +40 QDataWidgetMapper::~QDataWidgetMapper +48 QDataWidgetMapper::~QDataWidgetMapper +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QDataWidgetMapper::setCurrentIndex + +Class QDataWidgetMapper + size=16 align=8 + base size=16 base align=8 +QDataWidgetMapper (0x7fb29e3b2c40) 0 + vptr=((& QDataWidgetMapper::_ZTV17QDataWidgetMapper) + 16u) + QObject (0x7fb29e3b2cb0) 0 + primary-for QDataWidgetMapper (0x7fb29e3b2c40) + +Vtable for QFileIconProvider +QFileIconProvider::_ZTV17QFileIconProvider: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QFileIconProvider) +16 QFileIconProvider::~QFileIconProvider +24 QFileIconProvider::~QFileIconProvider +32 QFileIconProvider::icon +40 QFileIconProvider::icon +48 QFileIconProvider::type + +Class QFileIconProvider + size=16 align=8 + base size=16 base align=8 +QFileIconProvider (0x7fb29e3d2700) 0 + vptr=((& QFileIconProvider::_ZTV17QFileIconProvider) + 16u) + +Vtable for QDirModel +QDirModel::_ZTV9QDirModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QDirModel) +16 QDirModel::metaObject +24 QDirModel::qt_metacast +32 QDirModel::qt_metacall +40 QDirModel::~QDirModel +48 QDirModel::~QDirModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QDirModel::index +120 QDirModel::parent +128 QDirModel::rowCount +136 QDirModel::columnCount +144 QDirModel::hasChildren +152 QDirModel::data +160 QDirModel::setData +168 QDirModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QDirModel::mimeTypes +208 QDirModel::mimeData +216 QDirModel::dropMimeData +224 QDirModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QDirModel::flags +288 QDirModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QDirModel + size=16 align=8 + base size=16 base align=8 +QDirModel (0x7fb29e3e7380) 0 + vptr=((& QDirModel::_ZTV9QDirModel) + 16u) + QAbstractItemModel (0x7fb29e3e73f0) 0 + primary-for QDirModel (0x7fb29e3e7380) + QObject (0x7fb29e3e7460) 0 + primary-for QAbstractItemModel (0x7fb29e3e73f0) + +Vtable for QHeaderView +QHeaderView::_ZTV11QHeaderView: 105u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QHeaderView) +16 QHeaderView::metaObject +24 QHeaderView::qt_metacast +32 QHeaderView::qt_metacall +40 QHeaderView::~QHeaderView +48 QHeaderView::~QHeaderView +56 QHeaderView::event +64 QObject::eventFilter +72 QAbstractItemView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QHeaderView::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QHeaderView::mousePressEvent +168 QHeaderView::mouseReleaseEvent +176 QHeaderView::mouseDoubleClickEvent +184 QHeaderView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QHeaderView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QHeaderView::viewportEvent +456 QHeaderView::scrollContentsBy +464 QHeaderView::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QHeaderView::visualRect +496 QHeaderView::scrollTo +504 QHeaderView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QHeaderView::reset +536 QAbstractItemView::setRootIndex +544 QHeaderView::doItemsLayout +552 QAbstractItemView::selectAll +560 QHeaderView::dataChanged +568 QHeaderView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QAbstractItemView::selectionChanged +592 QHeaderView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QHeaderView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QHeaderView::moveCursor +688 QHeaderView::horizontalOffset +696 QHeaderView::verticalOffset +704 QHeaderView::isIndexHidden +712 QHeaderView::setSelection +720 QHeaderView::visualRegionForSelection +728 QAbstractItemView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 QHeaderView::paintSection +776 QHeaderView::sectionSizeFromContents +784 (int (*)(...))-0x00000000000000010 +792 (int (*)(...))(& _ZTI11QHeaderView) +800 QHeaderView::_ZThn16_N11QHeaderViewD1Ev +808 QHeaderView::_ZThn16_N11QHeaderViewD0Ev +816 QWidget::_ZThn16_NK7QWidget7devTypeEv +824 QWidget::_ZThn16_NK7QWidget11paintEngineEv +832 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QHeaderView + size=40 align=8 + base size=40 base align=8 +QHeaderView (0x7fb29e412620) 0 + vptr=((& QHeaderView::_ZTV11QHeaderView) + 16u) + QAbstractItemView (0x7fb29e412690) 0 + primary-for QHeaderView (0x7fb29e412620) + QAbstractScrollArea (0x7fb29e412700) 0 + primary-for QAbstractItemView (0x7fb29e412690) + QFrame (0x7fb29e412770) 0 + primary-for QAbstractScrollArea (0x7fb29e412700) + QWidget (0x7fb29e3ef980) 0 + primary-for QFrame (0x7fb29e412770) + QObject (0x7fb29e4127e0) 0 + primary-for QWidget (0x7fb29e3ef980) + QPaintDevice (0x7fb29e412850) 16 + vptr=((& QHeaderView::_ZTV11QHeaderView) + 800u) + +Vtable for QItemDelegate +QItemDelegate::_ZTV13QItemDelegate: 25u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QItemDelegate) +16 QItemDelegate::metaObject +24 QItemDelegate::qt_metacast +32 QItemDelegate::qt_metacall +40 QItemDelegate::~QItemDelegate +48 QItemDelegate::~QItemDelegate +56 QObject::event +64 QItemDelegate::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QItemDelegate::paint +120 QItemDelegate::sizeHint +128 QItemDelegate::createEditor +136 QItemDelegate::setEditorData +144 QItemDelegate::setModelData +152 QItemDelegate::updateEditorGeometry +160 QItemDelegate::editorEvent +168 QItemDelegate::drawDisplay +176 QItemDelegate::drawDecoration +184 QItemDelegate::drawFocus +192 QItemDelegate::drawCheck + +Class QItemDelegate + size=16 align=8 + base size=16 base align=8 +QItemDelegate (0x7fb29e257230) 0 + vptr=((& QItemDelegate::_ZTV13QItemDelegate) + 16u) + QAbstractItemDelegate (0x7fb29e2572a0) 0 + primary-for QItemDelegate (0x7fb29e257230) + QObject (0x7fb29e257310) 0 + primary-for QAbstractItemDelegate (0x7fb29e2572a0) + +Vtable for QItemEditorCreatorBase +QItemEditorCreatorBase::_ZTV22QItemEditorCreatorBase: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QItemEditorCreatorBase) +16 QItemEditorCreatorBase::~QItemEditorCreatorBase +24 QItemEditorCreatorBase::~QItemEditorCreatorBase +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QItemEditorCreatorBase + size=8 align=8 + base size=8 base align=8 +QItemEditorCreatorBase (0x7fb29e273bd0) 0 nearly-empty + vptr=((& QItemEditorCreatorBase::_ZTV22QItemEditorCreatorBase) + 16u) + +Vtable for QItemEditorFactory +QItemEditorFactory::_ZTV18QItemEditorFactory: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QItemEditorFactory) +16 QItemEditorFactory::~QItemEditorFactory +24 QItemEditorFactory::~QItemEditorFactory +32 QItemEditorFactory::createEditor +40 QItemEditorFactory::valuePropertyName + +Class QItemEditorFactory + size=16 align=8 + base size=16 base align=8 +QItemEditorFactory (0x7fb29e27ea80) 0 + vptr=((& QItemEditorFactory::_ZTV18QItemEditorFactory) + 16u) + +Vtable for QListWidgetItem +QListWidgetItem::_ZTV15QListWidgetItem: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QListWidgetItem) +16 QListWidgetItem::~QListWidgetItem +24 QListWidgetItem::~QListWidgetItem +32 QListWidgetItem::clone +40 QListWidgetItem::setBackgroundColor +48 QListWidgetItem::data +56 QListWidgetItem::setData +64 QListWidgetItem::operator< +72 QListWidgetItem::read +80 QListWidgetItem::write + +Class QListWidgetItem + size=48 align=8 + base size=44 base align=8 +QListWidgetItem (0x7fb29e28bd20) 0 + vptr=((& QListWidgetItem::_ZTV15QListWidgetItem) + 16u) + +Vtable for QListWidget +QListWidget::_ZTV11QListWidget: 107u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QListWidget) +16 QListWidget::metaObject +24 QListWidget::qt_metacast +32 QListWidget::qt_metacall +40 QListWidget::~QListWidget +48 QListWidget::~QListWidget +56 QListWidget::event +64 QObject::eventFilter +72 QListView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QListView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QListView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QListView::paintEvent +256 QWidget::moveEvent +264 QListView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QListView::dragMoveEvent +320 QListView::dragLeaveEvent +328 QListWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QListView::scrollContentsBy +464 QListWidget::setModel +472 QAbstractItemView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QListView::visualRect +496 QListView::scrollTo +504 QListView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QAbstractItemView::sizeHintForColumn +528 QListView::reset +536 QListView::setRootIndex +544 QListView::doItemsLayout +552 QAbstractItemView::selectAll +560 QListView::dataChanged +568 QListView::rowsInserted +576 QListView::rowsAboutToBeRemoved +584 QListView::selectionChanged +592 QListView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QListView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QAbstractItemView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QListView::moveCursor +688 QListView::horizontalOffset +696 QListView::verticalOffset +704 QListView::isIndexHidden +712 QListView::setSelection +720 QListView::visualRegionForSelection +728 QListView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QListView::startDrag +760 QListView::viewOptions +768 QListWidget::mimeTypes +776 QListWidget::mimeData +784 QListWidget::dropMimeData +792 QListWidget::supportedDropActions +800 (int (*)(...))-0x00000000000000010 +808 (int (*)(...))(& _ZTI11QListWidget) +816 QListWidget::_ZThn16_N11QListWidgetD1Ev +824 QListWidget::_ZThn16_N11QListWidgetD0Ev +832 QWidget::_ZThn16_NK7QWidget7devTypeEv +840 QWidget::_ZThn16_NK7QWidget11paintEngineEv +848 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QListWidget + size=40 align=8 + base size=40 base align=8 +QListWidget (0x7fb29e31d3f0) 0 + vptr=((& QListWidget::_ZTV11QListWidget) + 16u) + QListView (0x7fb29e31d460) 0 + primary-for QListWidget (0x7fb29e31d3f0) + QAbstractItemView (0x7fb29e31d4d0) 0 + primary-for QListView (0x7fb29e31d460) + QAbstractScrollArea (0x7fb29e31d540) 0 + primary-for QAbstractItemView (0x7fb29e31d4d0) + QFrame (0x7fb29e31d5b0) 0 + primary-for QAbstractScrollArea (0x7fb29e31d540) + QWidget (0x7fb29e315a00) 0 + primary-for QFrame (0x7fb29e31d5b0) + QObject (0x7fb29e31d620) 0 + primary-for QWidget (0x7fb29e315a00) + QPaintDevice (0x7fb29e31d690) 16 + vptr=((& QListWidget::_ZTV11QListWidget) + 816u) + +Vtable for QProxyModel +QProxyModel::_ZTV11QProxyModel: 43u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QProxyModel) +16 QProxyModel::metaObject +24 QProxyModel::qt_metacast +32 QProxyModel::qt_metacall +40 QProxyModel::~QProxyModel +48 QProxyModel::~QProxyModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QProxyModel::index +120 QProxyModel::parent +128 QProxyModel::rowCount +136 QProxyModel::columnCount +144 QProxyModel::hasChildren +152 QProxyModel::data +160 QProxyModel::setData +168 QProxyModel::headerData +176 QProxyModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QProxyModel::mimeTypes +208 QProxyModel::mimeData +216 QProxyModel::dropMimeData +224 QProxyModel::supportedDropActions +232 QProxyModel::insertRows +240 QProxyModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QProxyModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QProxyModel::flags +288 QProxyModel::sort +296 QAbstractItemModel::buddy +304 QProxyModel::match +312 QProxyModel::span +320 QProxyModel::submit +328 QProxyModel::revert +336 QProxyModel::setModel + +Class QProxyModel + size=16 align=8 + base size=16 base align=8 +QProxyModel (0x7fb29e157850) 0 + vptr=((& QProxyModel::_ZTV11QProxyModel) + 16u) + QAbstractItemModel (0x7fb29e1578c0) 0 + primary-for QProxyModel (0x7fb29e157850) + QObject (0x7fb29e157930) 0 + primary-for QAbstractItemModel (0x7fb29e1578c0) + +Vtable for QSortFilterProxyModel +QSortFilterProxyModel::_ZTV21QSortFilterProxyModel: 50u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QSortFilterProxyModel) +16 QSortFilterProxyModel::metaObject +24 QSortFilterProxyModel::qt_metacast +32 QSortFilterProxyModel::qt_metacall +40 QSortFilterProxyModel::~QSortFilterProxyModel +48 QSortFilterProxyModel::~QSortFilterProxyModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QSortFilterProxyModel::index +120 QSortFilterProxyModel::parent +128 QSortFilterProxyModel::rowCount +136 QSortFilterProxyModel::columnCount +144 QSortFilterProxyModel::hasChildren +152 QSortFilterProxyModel::data +160 QSortFilterProxyModel::setData +168 QSortFilterProxyModel::headerData +176 QSortFilterProxyModel::setHeaderData +184 QAbstractProxyModel::itemData +192 QAbstractItemModel::setItemData +200 QSortFilterProxyModel::mimeTypes +208 QSortFilterProxyModel::mimeData +216 QSortFilterProxyModel::dropMimeData +224 QSortFilterProxyModel::supportedDropActions +232 QSortFilterProxyModel::insertRows +240 QSortFilterProxyModel::insertColumns +248 QSortFilterProxyModel::removeRows +256 QSortFilterProxyModel::removeColumns +264 QSortFilterProxyModel::fetchMore +272 QSortFilterProxyModel::canFetchMore +280 QSortFilterProxyModel::flags +288 QSortFilterProxyModel::sort +296 QSortFilterProxyModel::buddy +304 QSortFilterProxyModel::match +312 QSortFilterProxyModel::span +320 QAbstractProxyModel::submit +328 QAbstractProxyModel::revert +336 QSortFilterProxyModel::setSourceModel +344 QSortFilterProxyModel::mapToSource +352 QSortFilterProxyModel::mapFromSource +360 QSortFilterProxyModel::mapSelectionToSource +368 QSortFilterProxyModel::mapSelectionFromSource +376 QSortFilterProxyModel::filterAcceptsRow +384 QSortFilterProxyModel::filterAcceptsColumn +392 QSortFilterProxyModel::lessThan + +Class QSortFilterProxyModel + size=16 align=8 + base size=16 base align=8 +QSortFilterProxyModel (0x7fb29e17a700) 0 + vptr=((& QSortFilterProxyModel::_ZTV21QSortFilterProxyModel) + 16u) + QAbstractProxyModel (0x7fb29e17a770) 0 + primary-for QSortFilterProxyModel (0x7fb29e17a700) + QAbstractItemModel (0x7fb29e17a7e0) 0 + primary-for QAbstractProxyModel (0x7fb29e17a770) + QObject (0x7fb29e17a850) 0 + primary-for QAbstractItemModel (0x7fb29e17a7e0) + +Vtable for QStandardItem +QStandardItem::_ZTV13QStandardItem: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QStandardItem) +16 QStandardItem::~QStandardItem +24 QStandardItem::~QStandardItem +32 QStandardItem::data +40 QStandardItem::setData +48 QStandardItem::clone +56 QStandardItem::type +64 QStandardItem::read +72 QStandardItem::write +80 QStandardItem::operator< + +Class QStandardItem + size=16 align=8 + base size=16 base align=8 +QStandardItem (0x7fb29e1ab620) 0 + vptr=((& QStandardItem::_ZTV13QStandardItem) + 16u) + +Vtable for QStandardItemModel +QStandardItemModel::_ZTV18QStandardItemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QStandardItemModel) +16 QStandardItemModel::metaObject +24 QStandardItemModel::qt_metacast +32 QStandardItemModel::qt_metacall +40 QStandardItemModel::~QStandardItemModel +48 QStandardItemModel::~QStandardItemModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QStandardItemModel::index +120 QStandardItemModel::parent +128 QStandardItemModel::rowCount +136 QStandardItemModel::columnCount +144 QStandardItemModel::hasChildren +152 QStandardItemModel::data +160 QStandardItemModel::setData +168 QStandardItemModel::headerData +176 QStandardItemModel::setHeaderData +184 QStandardItemModel::itemData +192 QStandardItemModel::setItemData +200 QStandardItemModel::mimeTypes +208 QStandardItemModel::mimeData +216 QStandardItemModel::dropMimeData +224 QStandardItemModel::supportedDropActions +232 QStandardItemModel::insertRows +240 QStandardItemModel::insertColumns +248 QStandardItemModel::removeRows +256 QStandardItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QStandardItemModel::flags +288 QStandardItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QStandardItemModel + size=16 align=8 + base size=16 base align=8 +QStandardItemModel (0x7fb29e0953f0) 0 + vptr=((& QStandardItemModel::_ZTV18QStandardItemModel) + 16u) + QAbstractItemModel (0x7fb29e095460) 0 + primary-for QStandardItemModel (0x7fb29e0953f0) + QObject (0x7fb29e0954d0) 0 + primary-for QAbstractItemModel (0x7fb29e095460) + +Vtable for QStringListModel +QStringListModel::_ZTV16QStringListModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QStringListModel) +16 QStringListModel::metaObject +24 QStringListModel::qt_metacast +32 QStringListModel::qt_metacall +40 QStringListModel::~QStringListModel +48 QStringListModel::~QStringListModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractListModel::index +120 QAbstractListModel::parent +128 QStringListModel::rowCount +136 QAbstractListModel::columnCount +144 QAbstractListModel::hasChildren +152 QStringListModel::data +160 QStringListModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractListModel::dropMimeData +224 QStringListModel::supportedDropActions +232 QStringListModel::insertRows +240 QAbstractItemModel::insertColumns +248 QStringListModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QStringListModel::flags +288 QStringListModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QStringListModel + size=24 align=8 + base size=24 base align=8 +QStringListModel (0x7fb29e0cff50) 0 + vptr=((& QStringListModel::_ZTV16QStringListModel) + 16u) + QAbstractListModel (0x7fb29e0e3000) 0 + primary-for QStringListModel (0x7fb29e0cff50) + QAbstractItemModel (0x7fb29e0e3070) 0 + primary-for QAbstractListModel (0x7fb29e0e3000) + QObject (0x7fb29e0e30e0) 0 + primary-for QAbstractItemModel (0x7fb29e0e3070) + +Vtable for QStyledItemDelegate +QStyledItemDelegate::_ZTV19QStyledItemDelegate: 23u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QStyledItemDelegate) +16 QStyledItemDelegate::metaObject +24 QStyledItemDelegate::qt_metacast +32 QStyledItemDelegate::qt_metacall +40 QStyledItemDelegate::~QStyledItemDelegate +48 QStyledItemDelegate::~QStyledItemDelegate +56 QObject::event +64 QStyledItemDelegate::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QStyledItemDelegate::paint +120 QStyledItemDelegate::sizeHint +128 QStyledItemDelegate::createEditor +136 QStyledItemDelegate::setEditorData +144 QStyledItemDelegate::setModelData +152 QStyledItemDelegate::updateEditorGeometry +160 QStyledItemDelegate::editorEvent +168 QStyledItemDelegate::displayText +176 QStyledItemDelegate::initStyleOption + +Class QStyledItemDelegate + size=16 align=8 + base size=16 base align=8 +QStyledItemDelegate (0x7fb29e0fa5b0) 0 + vptr=((& QStyledItemDelegate::_ZTV19QStyledItemDelegate) + 16u) + QAbstractItemDelegate (0x7fb29e0fa620) 0 + primary-for QStyledItemDelegate (0x7fb29e0fa5b0) + QObject (0x7fb29e0fa690) 0 + primary-for QAbstractItemDelegate (0x7fb29e0fa620) + +Vtable for QTableView +QTableView::_ZTV10QTableView: 103u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTableView) +16 QTableView::metaObject +24 QTableView::qt_metacast +32 QTableView::qt_metacall +40 QTableView::~QTableView +48 QTableView::~QTableView +56 QAbstractItemView::event +64 QObject::eventFilter +72 QTableView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QAbstractItemView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QAbstractItemView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTableView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QTableView::scrollContentsBy +464 QTableView::setModel +472 QTableView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QTableView::visualRect +496 QTableView::scrollTo +504 QTableView::indexAt +512 QTableView::sizeHintForRow +520 QTableView::sizeHintForColumn +528 QAbstractItemView::reset +536 QTableView::setRootIndex +544 QAbstractItemView::doItemsLayout +552 QAbstractItemView::selectAll +560 QAbstractItemView::dataChanged +568 QAbstractItemView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QTableView::selectionChanged +592 QTableView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QTableView::updateGeometries +624 QTableView::verticalScrollbarAction +632 QTableView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QTableView::moveCursor +688 QTableView::horizontalOffset +696 QTableView::verticalOffset +704 QTableView::isIndexHidden +712 QTableView::setSelection +720 QTableView::visualRegionForSelection +728 QTableView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QTableView::viewOptions +768 (int (*)(...))-0x00000000000000010 +776 (int (*)(...))(& _ZTI10QTableView) +784 QTableView::_ZThn16_N10QTableViewD1Ev +792 QTableView::_ZThn16_N10QTableViewD0Ev +800 QWidget::_ZThn16_NK7QWidget7devTypeEv +808 QWidget::_ZThn16_NK7QWidget11paintEngineEv +816 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTableView + size=40 align=8 + base size=40 base align=8 +QTableView (0x7fb29e111f50) 0 + vptr=((& QTableView::_ZTV10QTableView) + 16u) + QAbstractItemView (0x7fb29e118000) 0 + primary-for QTableView (0x7fb29e111f50) + QAbstractScrollArea (0x7fb29e118070) 0 + primary-for QAbstractItemView (0x7fb29e118000) + QFrame (0x7fb29e1180e0) 0 + primary-for QAbstractScrollArea (0x7fb29e118070) + QWidget (0x7fb29e0f9b00) 0 + primary-for QFrame (0x7fb29e1180e0) + QObject (0x7fb29e118150) 0 + primary-for QWidget (0x7fb29e0f9b00) + QPaintDevice (0x7fb29e1181c0) 16 + vptr=((& QTableView::_ZTV10QTableView) + 784u) + +Class QTableWidgetSelectionRange + size=16 align=4 + base size=16 base align=4 +QTableWidgetSelectionRange (0x7fb29e143d20) 0 + +Vtable for QTableWidgetItem +QTableWidgetItem::_ZTV16QTableWidgetItem: 10u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QTableWidgetItem) +16 QTableWidgetItem::~QTableWidgetItem +24 QTableWidgetItem::~QTableWidgetItem +32 QTableWidgetItem::clone +40 QTableWidgetItem::data +48 QTableWidgetItem::setData +56 QTableWidgetItem::operator< +64 QTableWidgetItem::read +72 QTableWidgetItem::write + +Class QTableWidgetItem + size=48 align=8 + base size=44 base align=8 +QTableWidgetItem (0x7fb29df54230) 0 + vptr=((& QTableWidgetItem::_ZTV16QTableWidgetItem) + 16u) + +Vtable for QTableWidget +QTableWidget::_ZTV12QTableWidget: 107u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTableWidget) +16 QTableWidget::metaObject +24 QTableWidget::qt_metacast +32 QTableWidget::qt_metacall +40 QTableWidget::~QTableWidget +48 QTableWidget::~QTableWidget +56 QTableWidget::event +64 QObject::eventFilter +72 QTableView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractItemView::mousePressEvent +168 QAbstractItemView::mouseReleaseEvent +176 QAbstractItemView::mouseDoubleClickEvent +184 QAbstractItemView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractItemView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTableView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QAbstractItemView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QTableWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractItemView::viewportEvent +456 QTableView::scrollContentsBy +464 QTableWidget::setModel +472 QTableView::setSelectionModel +480 QAbstractItemView::keyboardSearch +488 QTableView::visualRect +496 QTableView::scrollTo +504 QTableView::indexAt +512 QTableView::sizeHintForRow +520 QTableView::sizeHintForColumn +528 QAbstractItemView::reset +536 QTableView::setRootIndex +544 QAbstractItemView::doItemsLayout +552 QAbstractItemView::selectAll +560 QAbstractItemView::dataChanged +568 QAbstractItemView::rowsInserted +576 QAbstractItemView::rowsAboutToBeRemoved +584 QTableView::selectionChanged +592 QTableView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QTableView::updateGeometries +624 QTableView::verticalScrollbarAction +632 QTableView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QTableView::moveCursor +688 QTableView::horizontalOffset +696 QTableView::verticalOffset +704 QTableView::isIndexHidden +712 QTableView::setSelection +720 QTableView::visualRegionForSelection +728 QTableView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QTableView::viewOptions +768 QTableWidget::mimeTypes +776 QTableWidget::mimeData +784 QTableWidget::dropMimeData +792 QTableWidget::supportedDropActions +800 (int (*)(...))-0x00000000000000010 +808 (int (*)(...))(& _ZTI12QTableWidget) +816 QTableWidget::_ZThn16_N12QTableWidgetD1Ev +824 QTableWidget::_ZThn16_N12QTableWidgetD0Ev +832 QWidget::_ZThn16_NK7QWidget7devTypeEv +840 QWidget::_ZThn16_NK7QWidget11paintEngineEv +848 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTableWidget + size=40 align=8 + base size=40 base align=8 +QTableWidget (0x7fb29dfc77e0) 0 + vptr=((& QTableWidget::_ZTV12QTableWidget) + 16u) + QTableView (0x7fb29dfc7850) 0 + primary-for QTableWidget (0x7fb29dfc77e0) + QAbstractItemView (0x7fb29dfc78c0) 0 + primary-for QTableView (0x7fb29dfc7850) + QAbstractScrollArea (0x7fb29dfc7930) 0 + primary-for QAbstractItemView (0x7fb29dfc78c0) + QFrame (0x7fb29dfc79a0) 0 + primary-for QAbstractScrollArea (0x7fb29dfc7930) + QWidget (0x7fb29dfbdc80) 0 + primary-for QFrame (0x7fb29dfc79a0) + QObject (0x7fb29dfc7a10) 0 + primary-for QWidget (0x7fb29dfbdc80) + QPaintDevice (0x7fb29dfc7a80) 16 + vptr=((& QTableWidget::_ZTV12QTableWidget) + 816u) + +Vtable for QTreeView +QTreeView::_ZTV9QTreeView: 105u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTreeView) +16 QTreeView::metaObject +24 QTreeView::qt_metacast +32 QTreeView::qt_metacall +40 QTreeView::~QTreeView +48 QTreeView::~QTreeView +56 QAbstractItemView::event +64 QObject::eventFilter +72 QTreeView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTreeView::mousePressEvent +168 QTreeView::mouseReleaseEvent +176 QTreeView::mouseDoubleClickEvent +184 QTreeView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QTreeView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTreeView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QTreeView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QAbstractItemView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QTreeView::viewportEvent +456 QTreeView::scrollContentsBy +464 QTreeView::setModel +472 QTreeView::setSelectionModel +480 QTreeView::keyboardSearch +488 QTreeView::visualRect +496 QTreeView::scrollTo +504 QTreeView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QTreeView::sizeHintForColumn +528 QTreeView::reset +536 QTreeView::setRootIndex +544 QTreeView::doItemsLayout +552 QTreeView::selectAll +560 QTreeView::dataChanged +568 QTreeView::rowsInserted +576 QTreeView::rowsAboutToBeRemoved +584 QTreeView::selectionChanged +592 QTreeView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QTreeView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QTreeView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QTreeView::moveCursor +688 QTreeView::horizontalOffset +696 QTreeView::verticalOffset +704 QTreeView::isIndexHidden +712 QTreeView::setSelection +720 QTreeView::visualRegionForSelection +728 QTreeView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 QTreeView::drawRow +776 QTreeView::drawBranches +784 (int (*)(...))-0x00000000000000010 +792 (int (*)(...))(& _ZTI9QTreeView) +800 QTreeView::_ZThn16_N9QTreeViewD1Ev +808 QTreeView::_ZThn16_N9QTreeViewD0Ev +816 QWidget::_ZThn16_NK7QWidget7devTypeEv +824 QWidget::_ZThn16_NK7QWidget11paintEngineEv +832 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTreeView + size=40 align=8 + base size=40 base align=8 +QTreeView (0x7fb29e005770) 0 + vptr=((& QTreeView::_ZTV9QTreeView) + 16u) + QAbstractItemView (0x7fb29e0057e0) 0 + primary-for QTreeView (0x7fb29e005770) + QAbstractScrollArea (0x7fb29e005850) 0 + primary-for QAbstractItemView (0x7fb29e0057e0) + QFrame (0x7fb29e0058c0) 0 + primary-for QAbstractScrollArea (0x7fb29e005850) + QWidget (0x7fb29e004600) 0 + primary-for QFrame (0x7fb29e0058c0) + QObject (0x7fb29e005930) 0 + primary-for QWidget (0x7fb29e004600) + QPaintDevice (0x7fb29e0059a0) 16 + vptr=((& QTreeView::_ZTV9QTreeView) + 800u) + +Class QTreeWidgetItemIterator + size=24 align=8 + base size=20 base align=8 +QTreeWidgetItemIterator (0x7fb29e040540) 0 + +Vtable for QTreeWidgetItem +QTreeWidgetItem::_ZTV15QTreeWidgetItem: 10u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QTreeWidgetItem) +16 QTreeWidgetItem::~QTreeWidgetItem +24 QTreeWidgetItem::~QTreeWidgetItem +32 QTreeWidgetItem::clone +40 QTreeWidgetItem::data +48 QTreeWidgetItem::setData +56 QTreeWidgetItem::operator< +64 QTreeWidgetItem::read +72 QTreeWidgetItem::write + +Class QTreeWidgetItem + size=64 align=8 + base size=60 base align=8 +QTreeWidgetItem (0x7fb29deac2a0) 0 + vptr=((& QTreeWidgetItem::_ZTV15QTreeWidgetItem) + 16u) + +Vtable for QTreeWidget +QTreeWidget::_ZTV11QTreeWidget: 109u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTreeWidget) +16 QTreeWidget::metaObject +24 QTreeWidget::qt_metacast +32 QTreeWidget::qt_metacall +40 QTreeWidget::~QTreeWidget +48 QTreeWidget::~QTreeWidget +56 QTreeWidget::event +64 QObject::eventFilter +72 QTreeView::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTreeView::mousePressEvent +168 QTreeView::mouseReleaseEvent +176 QTreeView::mouseDoubleClickEvent +184 QTreeView::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QTreeView::keyPressEvent +208 QWidget::keyReleaseEvent +216 QAbstractItemView::focusInEvent +224 QAbstractItemView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTreeView::paintEvent +256 QWidget::moveEvent +264 QAbstractItemView::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractItemView::dragEnterEvent +312 QTreeView::dragMoveEvent +320 QAbstractItemView::dragLeaveEvent +328 QTreeWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QAbstractItemView::inputMethodEvent +384 QAbstractItemView::inputMethodQuery +392 QAbstractItemView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QTreeView::viewportEvent +456 QTreeView::scrollContentsBy +464 QTreeWidget::setModel +472 QTreeWidget::setSelectionModel +480 QTreeView::keyboardSearch +488 QTreeView::visualRect +496 QTreeView::scrollTo +504 QTreeView::indexAt +512 QAbstractItemView::sizeHintForRow +520 QTreeView::sizeHintForColumn +528 QTreeView::reset +536 QTreeView::setRootIndex +544 QTreeView::doItemsLayout +552 QTreeView::selectAll +560 QTreeView::dataChanged +568 QTreeView::rowsInserted +576 QTreeView::rowsAboutToBeRemoved +584 QTreeView::selectionChanged +592 QTreeView::currentChanged +600 QAbstractItemView::updateEditorData +608 QAbstractItemView::updateEditorGeometries +616 QTreeView::updateGeometries +624 QAbstractItemView::verticalScrollbarAction +632 QTreeView::horizontalScrollbarAction +640 QAbstractItemView::verticalScrollbarValueChanged +648 QAbstractItemView::horizontalScrollbarValueChanged +656 QAbstractItemView::closeEditor +664 QAbstractItemView::commitData +672 QAbstractItemView::editorDestroyed +680 QTreeView::moveCursor +688 QTreeView::horizontalOffset +696 QTreeView::verticalOffset +704 QTreeView::isIndexHidden +712 QTreeView::setSelection +720 QTreeView::visualRegionForSelection +728 QTreeView::selectedIndexes +736 QAbstractItemView::edit +744 QAbstractItemView::selectionCommand +752 QAbstractItemView::startDrag +760 QAbstractItemView::viewOptions +768 QTreeView::drawRow +776 QTreeView::drawBranches +784 QTreeWidget::mimeTypes +792 QTreeWidget::mimeData +800 QTreeWidget::dropMimeData +808 QTreeWidget::supportedDropActions +816 (int (*)(...))-0x00000000000000010 +824 (int (*)(...))(& _ZTI11QTreeWidget) +832 QTreeWidget::_ZThn16_N11QTreeWidgetD1Ev +840 QTreeWidget::_ZThn16_N11QTreeWidgetD0Ev +848 QWidget::_ZThn16_NK7QWidget7devTypeEv +856 QWidget::_ZThn16_NK7QWidget11paintEngineEv +864 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTreeWidget + size=40 align=8 + base size=40 base align=8 +QTreeWidget (0x7fb29dd5a8c0) 0 + vptr=((& QTreeWidget::_ZTV11QTreeWidget) + 16u) + QTreeView (0x7fb29dd5a930) 0 + primary-for QTreeWidget (0x7fb29dd5a8c0) + QAbstractItemView (0x7fb29dd5a9a0) 0 + primary-for QTreeView (0x7fb29dd5a930) + QAbstractScrollArea (0x7fb29dd5aa10) 0 + primary-for QAbstractItemView (0x7fb29dd5a9a0) + QFrame (0x7fb29dd5aa80) 0 + primary-for QAbstractScrollArea (0x7fb29dd5aa10) + QWidget (0x7fb29dd5b200) 0 + primary-for QFrame (0x7fb29dd5aa80) + QObject (0x7fb29dd5aaf0) 0 + primary-for QWidget (0x7fb29dd5b200) + QPaintDevice (0x7fb29dd5ab60) 16 + vptr=((& QTreeWidget::_ZTV11QTreeWidget) + 832u) + +Class QAccessible + size=1 align=1 + base size=0 base align=1 +QAccessible (0x7fb29dda1c40) 0 empty + +Vtable for QAccessibleInterface +QAccessibleInterface::_ZTV20QAccessibleInterface: 19u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QAccessibleInterface) +16 QAccessibleInterface::~QAccessibleInterface +24 QAccessibleInterface::~QAccessibleInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual + +Class QAccessibleInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleInterface (0x7fb29dc4ce00) 0 nearly-empty + vptr=((& QAccessibleInterface::_ZTV20QAccessibleInterface) + 16u) + QAccessible (0x7fb29dc4ce70) 0 empty + +Vtable for QAccessibleInterfaceEx +QAccessibleInterfaceEx::_ZTV22QAccessibleInterfaceEx: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QAccessibleInterfaceEx) +16 QAccessibleInterfaceEx::~QAccessibleInterfaceEx +24 QAccessibleInterfaceEx::~QAccessibleInterfaceEx +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 QAccessibleInterfaceEx::virtual_hook +168 QAccessibleInterfaceEx::interface_cast + +Class QAccessibleInterfaceEx + size=8 align=8 + base size=8 base align=8 +QAccessibleInterfaceEx (0x7fb29dcc8b60) 0 nearly-empty + vptr=((& QAccessibleInterfaceEx::_ZTV22QAccessibleInterfaceEx) + 16u) + QAccessibleInterface (0x7fb29dcc8bd0) 0 nearly-empty + primary-for QAccessibleInterfaceEx (0x7fb29dcc8b60) + QAccessible (0x7fb29dcc8c40) 0 empty + +Vtable for QAccessibleEvent +QAccessibleEvent::_ZTV16QAccessibleEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QAccessibleEvent) +16 QAccessibleEvent::~QAccessibleEvent +24 QAccessibleEvent::~QAccessibleEvent + +Class QAccessibleEvent + size=32 align=8 + base size=32 base align=8 +QAccessibleEvent (0x7fb29dcc8ee0) 0 + vptr=((& QAccessibleEvent::_ZTV16QAccessibleEvent) + 16u) + QEvent (0x7fb29dcc8f50) 0 + primary-for QAccessibleEvent (0x7fb29dcc8ee0) + +Vtable for QAccessible2Interface +QAccessible2Interface::_ZTV21QAccessible2Interface: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QAccessible2Interface) +16 QAccessible2Interface::~QAccessible2Interface +24 QAccessible2Interface::~QAccessible2Interface + +Class QAccessible2Interface + size=8 align=8 + base size=8 base align=8 +QAccessible2Interface (0x7fb29dcddf50) 0 nearly-empty + vptr=((& QAccessible2Interface::_ZTV21QAccessible2Interface) + 16u) + +Vtable for QAccessibleTextInterface +QAccessibleTextInterface::_ZTV24QAccessibleTextInterface: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QAccessibleTextInterface) +16 QAccessibleTextInterface::~QAccessibleTextInterface +24 QAccessibleTextInterface::~QAccessibleTextInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual + +Class QAccessibleTextInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleTextInterface (0x7fb29dcf41c0) 0 nearly-empty + vptr=((& QAccessibleTextInterface::_ZTV24QAccessibleTextInterface) + 16u) + QAccessible2Interface (0x7fb29dcf4230) 0 nearly-empty + primary-for QAccessibleTextInterface (0x7fb29dcf41c0) + +Vtable for QAccessibleEditableTextInterface +QAccessibleEditableTextInterface::_ZTV32QAccessibleEditableTextInterface: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI32QAccessibleEditableTextInterface) +16 QAccessibleEditableTextInterface::~QAccessibleEditableTextInterface +24 QAccessibleEditableTextInterface::~QAccessibleEditableTextInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual + +Class QAccessibleEditableTextInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleEditableTextInterface (0x7fb29dd06070) 0 nearly-empty + vptr=((& QAccessibleEditableTextInterface::_ZTV32QAccessibleEditableTextInterface) + 16u) + QAccessible2Interface (0x7fb29dd060e0) 0 nearly-empty + primary-for QAccessibleEditableTextInterface (0x7fb29dd06070) + +Vtable for QAccessibleSimpleEditableTextInterface +QAccessibleSimpleEditableTextInterface::_ZTV38QAccessibleSimpleEditableTextInterface: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI38QAccessibleSimpleEditableTextInterface) +16 QAccessibleSimpleEditableTextInterface::~QAccessibleSimpleEditableTextInterface +24 QAccessibleSimpleEditableTextInterface::~QAccessibleSimpleEditableTextInterface +32 QAccessibleSimpleEditableTextInterface::copyText +40 QAccessibleSimpleEditableTextInterface::deleteText +48 QAccessibleSimpleEditableTextInterface::insertText +56 QAccessibleSimpleEditableTextInterface::cutText +64 QAccessibleSimpleEditableTextInterface::pasteText +72 QAccessibleSimpleEditableTextInterface::replaceText +80 QAccessibleSimpleEditableTextInterface::setAttributes + +Class QAccessibleSimpleEditableTextInterface + size=16 align=8 + base size=16 base align=8 +QAccessibleSimpleEditableTextInterface (0x7fb29dd06f50) 0 + vptr=((& QAccessibleSimpleEditableTextInterface::_ZTV38QAccessibleSimpleEditableTextInterface) + 16u) + QAccessibleEditableTextInterface (0x7fb29dd06310) 0 nearly-empty + primary-for QAccessibleSimpleEditableTextInterface (0x7fb29dd06f50) + QAccessible2Interface (0x7fb29dd11000) 0 nearly-empty + primary-for QAccessibleEditableTextInterface (0x7fb29dd06310) + +Vtable for QAccessibleValueInterface +QAccessibleValueInterface::_ZTV25QAccessibleValueInterface: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QAccessibleValueInterface) +16 QAccessibleValueInterface::~QAccessibleValueInterface +24 QAccessibleValueInterface::~QAccessibleValueInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual + +Class QAccessibleValueInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleValueInterface (0x7fb29dd11230) 0 nearly-empty + vptr=((& QAccessibleValueInterface::_ZTV25QAccessibleValueInterface) + 16u) + QAccessible2Interface (0x7fb29dd112a0) 0 nearly-empty + primary-for QAccessibleValueInterface (0x7fb29dd11230) + +Vtable for QAccessibleTableInterface +QAccessibleTableInterface::_ZTV25QAccessibleTableInterface: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QAccessibleTableInterface) +16 QAccessibleTableInterface::~QAccessibleTableInterface +24 QAccessibleTableInterface::~QAccessibleTableInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 __cxa_pure_virtual +208 __cxa_pure_virtual +216 __cxa_pure_virtual +224 __cxa_pure_virtual +232 __cxa_pure_virtual + +Class QAccessibleTableInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleTableInterface (0x7fb29dd22070) 0 nearly-empty + vptr=((& QAccessibleTableInterface::_ZTV25QAccessibleTableInterface) + 16u) + QAccessible2Interface (0x7fb29dd220e0) 0 nearly-empty + primary-for QAccessibleTableInterface (0x7fb29dd22070) + +Vtable for QAccessibleActionInterface +QAccessibleActionInterface::_ZTV26QAccessibleActionInterface: 10u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QAccessibleActionInterface) +16 QAccessibleActionInterface::~QAccessibleActionInterface +24 QAccessibleActionInterface::~QAccessibleActionInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual + +Class QAccessibleActionInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleActionInterface (0x7fb29dd22460) 0 nearly-empty + vptr=((& QAccessibleActionInterface::_ZTV26QAccessibleActionInterface) + 16u) + QAccessible2Interface (0x7fb29dd224d0) 0 nearly-empty + primary-for QAccessibleActionInterface (0x7fb29dd22460) + +Vtable for QAccessibleImageInterface +QAccessibleImageInterface::_ZTV25QAccessibleImageInterface: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QAccessibleImageInterface) +16 QAccessibleImageInterface::~QAccessibleImageInterface +24 QAccessibleImageInterface::~QAccessibleImageInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual + +Class QAccessibleImageInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleImageInterface (0x7fb29dd22850) 0 nearly-empty + vptr=((& QAccessibleImageInterface::_ZTV25QAccessibleImageInterface) + 16u) + QAccessible2Interface (0x7fb29dd228c0) 0 nearly-empty + primary-for QAccessibleImageInterface (0x7fb29dd22850) + +Vtable for QAccessibleBridge +QAccessibleBridge::_ZTV17QAccessibleBridge: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAccessibleBridge) +16 QAccessibleBridge::~QAccessibleBridge +24 QAccessibleBridge::~QAccessibleBridge +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QAccessibleBridge + size=8 align=8 + base size=8 base align=8 +QAccessibleBridge (0x7fb29dd22c40) 0 nearly-empty + vptr=((& QAccessibleBridge::_ZTV17QAccessibleBridge) + 16u) + +Vtable for QAccessibleBridgeFactoryInterface +QAccessibleBridgeFactoryInterface::_ZTV33QAccessibleBridgeFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI33QAccessibleBridgeFactoryInterface) +16 QAccessibleBridgeFactoryInterface::~QAccessibleBridgeFactoryInterface +24 QAccessibleBridgeFactoryInterface::~QAccessibleBridgeFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QAccessibleBridgeFactoryInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleBridgeFactoryInterface (0x7fb29dd3b540) 0 nearly-empty + vptr=((& QAccessibleBridgeFactoryInterface::_ZTV33QAccessibleBridgeFactoryInterface) + 16u) + QFactoryInterface (0x7fb29dd3b5b0) 0 nearly-empty + primary-for QAccessibleBridgeFactoryInterface (0x7fb29dd3b540) + +Vtable for QAccessibleBridgePlugin +QAccessibleBridgePlugin::_ZTV23QAccessibleBridgePlugin: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QAccessibleBridgePlugin) +16 QAccessibleBridgePlugin::metaObject +24 QAccessibleBridgePlugin::qt_metacast +32 QAccessibleBridgePlugin::qt_metacall +40 QAccessibleBridgePlugin::~QAccessibleBridgePlugin +48 QAccessibleBridgePlugin::~QAccessibleBridgePlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI23QAccessibleBridgePlugin) +144 QAccessibleBridgePlugin::_ZThn16_N23QAccessibleBridgePluginD1Ev +152 QAccessibleBridgePlugin::_ZThn16_N23QAccessibleBridgePluginD0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QAccessibleBridgePlugin + size=24 align=8 + base size=24 base align=8 +QAccessibleBridgePlugin (0x7fb29dd47580) 0 + vptr=((& QAccessibleBridgePlugin::_ZTV23QAccessibleBridgePlugin) + 16u) + QObject (0x7fb29dd3b620) 0 + primary-for QAccessibleBridgePlugin (0x7fb29dd47580) + QAccessibleBridgeFactoryInterface (0x7fb29db4b000) 16 nearly-empty + vptr=((& QAccessibleBridgePlugin::_ZTV23QAccessibleBridgePlugin) + 144u) + QFactoryInterface (0x7fb29db4b070) 16 nearly-empty + primary-for QAccessibleBridgeFactoryInterface (0x7fb29db4b000) + +Vtable for QAccessibleObject +QAccessibleObject::_ZTV17QAccessibleObject: 19u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAccessibleObject) +16 QAccessibleObject::~QAccessibleObject +24 QAccessibleObject::~QAccessibleObject +32 QAccessibleObject::isValid +40 QAccessibleObject::object +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 QAccessibleObject::setText +104 QAccessibleObject::rect +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAccessibleObject::userActionCount +136 QAccessibleObject::actionText +144 QAccessibleObject::doAction + +Class QAccessibleObject + size=16 align=8 + base size=16 base align=8 +QAccessibleObject (0x7fb29db4bf50) 0 + vptr=((& QAccessibleObject::_ZTV17QAccessibleObject) + 16u) + QAccessibleInterface (0x7fb29db4b310) 0 nearly-empty + primary-for QAccessibleObject (0x7fb29db4bf50) + QAccessible (0x7fb29db5c000) 0 empty + +Vtable for QAccessibleObjectEx +QAccessibleObjectEx::_ZTV19QAccessibleObjectEx: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAccessibleObjectEx) +16 QAccessibleObjectEx::~QAccessibleObjectEx +24 QAccessibleObjectEx::~QAccessibleObjectEx +32 QAccessibleObjectEx::isValid +40 QAccessibleObjectEx::object +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 QAccessibleObjectEx::setText +104 QAccessibleObjectEx::rect +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAccessibleObjectEx::userActionCount +136 QAccessibleObjectEx::actionText +144 QAccessibleObjectEx::doAction +152 __cxa_pure_virtual +160 QAccessibleInterfaceEx::virtual_hook +168 QAccessibleInterfaceEx::interface_cast + +Class QAccessibleObjectEx + size=16 align=8 + base size=16 base align=8 +QAccessibleObjectEx (0x7fb29db5c700) 0 + vptr=((& QAccessibleObjectEx::_ZTV19QAccessibleObjectEx) + 16u) + QAccessibleInterfaceEx (0x7fb29db5c770) 0 nearly-empty + primary-for QAccessibleObjectEx (0x7fb29db5c700) + QAccessibleInterface (0x7fb29db5c7e0) 0 nearly-empty + primary-for QAccessibleInterfaceEx (0x7fb29db5c770) + QAccessible (0x7fb29db5c850) 0 empty + +Vtable for QAccessibleApplication +QAccessibleApplication::_ZTV22QAccessibleApplication: 19u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QAccessibleApplication) +16 QAccessibleApplication::~QAccessibleApplication +24 QAccessibleApplication::~QAccessibleApplication +32 QAccessibleObject::isValid +40 QAccessibleObject::object +48 QAccessibleApplication::childCount +56 QAccessibleApplication::indexOfChild +64 QAccessibleApplication::relationTo +72 QAccessibleApplication::childAt +80 QAccessibleApplication::navigate +88 QAccessibleApplication::text +96 QAccessibleObject::setText +104 QAccessibleObject::rect +112 QAccessibleApplication::role +120 QAccessibleApplication::state +128 QAccessibleApplication::userActionCount +136 QAccessibleApplication::actionText +144 QAccessibleApplication::doAction + +Class QAccessibleApplication + size=16 align=8 + base size=16 base align=8 +QAccessibleApplication (0x7fb29db5cf50) 0 + vptr=((& QAccessibleApplication::_ZTV22QAccessibleApplication) + 16u) + QAccessibleObject (0x7fb29db5c690) 0 + primary-for QAccessibleApplication (0x7fb29db5cf50) + QAccessibleInterface (0x7fb29db5cee0) 0 nearly-empty + primary-for QAccessibleObject (0x7fb29db5c690) + QAccessible (0x7fb29db6e000) 0 empty + +Vtable for QAccessibleFactoryInterface +QAccessibleFactoryInterface::_ZTV27QAccessibleFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QAccessibleFactoryInterface) +16 QAccessibleFactoryInterface::~QAccessibleFactoryInterface +24 QAccessibleFactoryInterface::~QAccessibleFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QAccessibleFactoryInterface + size=8 align=8 + base size=8 base align=8 +QAccessibleFactoryInterface (0x7fb29dd47e00) 0 nearly-empty + vptr=((& QAccessibleFactoryInterface::_ZTV27QAccessibleFactoryInterface) + 16u) + QAccessible (0x7fb29db6e8c0) 0 empty + QFactoryInterface (0x7fb29db6e930) 0 nearly-empty + primary-for QAccessibleFactoryInterface (0x7fb29dd47e00) + +Vtable for QAccessiblePlugin +QAccessiblePlugin::_ZTV17QAccessiblePlugin: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAccessiblePlugin) +16 QAccessiblePlugin::metaObject +24 QAccessiblePlugin::qt_metacast +32 QAccessiblePlugin::qt_metacall +40 QAccessiblePlugin::~QAccessiblePlugin +48 QAccessiblePlugin::~QAccessiblePlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI17QAccessiblePlugin) +144 QAccessiblePlugin::_ZThn16_N17QAccessiblePluginD1Ev +152 QAccessiblePlugin::_ZThn16_N17QAccessiblePluginD0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QAccessiblePlugin + size=24 align=8 + base size=24 base align=8 +QAccessiblePlugin (0x7fb29db79800) 0 + vptr=((& QAccessiblePlugin::_ZTV17QAccessiblePlugin) + 16u) + QObject (0x7fb29db802a0) 0 + primary-for QAccessiblePlugin (0x7fb29db79800) + QAccessibleFactoryInterface (0x7fb29db79880) 16 nearly-empty + vptr=((& QAccessiblePlugin::_ZTV17QAccessiblePlugin) + 144u) + QAccessible (0x7fb29db80310) 16 empty + QFactoryInterface (0x7fb29db80380) 16 nearly-empty + primary-for QAccessibleFactoryInterface (0x7fb29db79880) + +Vtable for QAccessibleWidget +QAccessibleWidget::_ZTV17QAccessibleWidget: 19u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QAccessibleWidget) +16 QAccessibleWidget::~QAccessibleWidget +24 QAccessibleWidget::~QAccessibleWidget +32 QAccessibleObject::isValid +40 QAccessibleObject::object +48 QAccessibleWidget::childCount +56 QAccessibleWidget::indexOfChild +64 QAccessibleWidget::relationTo +72 QAccessibleWidget::childAt +80 QAccessibleWidget::navigate +88 QAccessibleWidget::text +96 QAccessibleObject::setText +104 QAccessibleWidget::rect +112 QAccessibleWidget::role +120 QAccessibleWidget::state +128 QAccessibleWidget::userActionCount +136 QAccessibleWidget::actionText +144 QAccessibleWidget::doAction + +Class QAccessibleWidget + size=24 align=8 + base size=24 base align=8 +QAccessibleWidget (0x7fb29db90310) 0 + vptr=((& QAccessibleWidget::_ZTV17QAccessibleWidget) + 16u) + QAccessibleObject (0x7fb29db90380) 0 + primary-for QAccessibleWidget (0x7fb29db90310) + QAccessibleInterface (0x7fb29db903f0) 0 nearly-empty + primary-for QAccessibleObject (0x7fb29db90380) + QAccessible (0x7fb29db90460) 0 empty + +Vtable for QAccessibleWidgetEx +QAccessibleWidgetEx::_ZTV19QAccessibleWidgetEx: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAccessibleWidgetEx) +16 QAccessibleWidgetEx::~QAccessibleWidgetEx +24 QAccessibleWidgetEx::~QAccessibleWidgetEx +32 QAccessibleObjectEx::isValid +40 QAccessibleObjectEx::object +48 QAccessibleWidgetEx::childCount +56 QAccessibleWidgetEx::indexOfChild +64 QAccessibleWidgetEx::relationTo +72 QAccessibleWidgetEx::childAt +80 QAccessibleWidgetEx::navigate +88 QAccessibleWidgetEx::text +96 QAccessibleObjectEx::setText +104 QAccessibleWidgetEx::rect +112 QAccessibleWidgetEx::role +120 QAccessibleWidgetEx::state +128 QAccessibleObjectEx::userActionCount +136 QAccessibleWidgetEx::actionText +144 QAccessibleWidgetEx::doAction +152 QAccessibleWidgetEx::invokeMethodEx +160 QAccessibleInterfaceEx::virtual_hook +168 QAccessibleInterfaceEx::interface_cast + +Class QAccessibleWidgetEx + size=24 align=8 + base size=24 base align=8 +QAccessibleWidgetEx (0x7fb29db9c3f0) 0 + vptr=((& QAccessibleWidgetEx::_ZTV19QAccessibleWidgetEx) + 16u) + QAccessibleObjectEx (0x7fb29db9c460) 0 + primary-for QAccessibleWidgetEx (0x7fb29db9c3f0) + QAccessibleInterfaceEx (0x7fb29db9c4d0) 0 nearly-empty + primary-for QAccessibleObjectEx (0x7fb29db9c460) + QAccessibleInterface (0x7fb29db9c540) 0 nearly-empty + primary-for QAccessibleInterfaceEx (0x7fb29db9c4d0) + QAccessible (0x7fb29db9c5b0) 0 empty + +Vtable for QAction +QAction::_ZTV7QAction: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QAction) +16 QAction::metaObject +24 QAction::qt_metacast +32 QAction::qt_metacall +40 QAction::~QAction +48 QAction::~QAction +56 QAction::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QAction + size=16 align=8 + base size=16 base align=8 +QAction (0x7fb29dbaa540) 0 + vptr=((& QAction::_ZTV7QAction) + 16u) + QObject (0x7fb29dbaa5b0) 0 + primary-for QAction (0x7fb29dbaa540) + +Vtable for QActionGroup +QActionGroup::_ZTV12QActionGroup: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QActionGroup) +16 QActionGroup::metaObject +24 QActionGroup::qt_metacast +32 QActionGroup::qt_metacall +40 QActionGroup::~QActionGroup +48 QActionGroup::~QActionGroup +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QActionGroup + size=16 align=8 + base size=16 base align=8 +QActionGroup (0x7fb29dbf3070) 0 + vptr=((& QActionGroup::_ZTV12QActionGroup) + 16u) + QObject (0x7fb29dbf30e0) 0 + primary-for QActionGroup (0x7fb29dbf3070) + +Vtable for QApplication +QApplication::_ZTV12QApplication: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QApplication) +16 QApplication::metaObject +24 QApplication::qt_metacast +32 QApplication::qt_metacall +40 QApplication::~QApplication +48 QApplication::~QApplication +56 QApplication::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QApplication::notify +120 QApplication::compressEvent +128 QApplication::x11EventFilter +136 QApplication::x11ClientMessage +144 QApplication::commitData +152 QApplication::saveState + +Class QApplication + size=16 align=8 + base size=16 base align=8 +QApplication (0x7fb29dc36460) 0 + vptr=((& QApplication::_ZTV12QApplication) + 16u) + QCoreApplication (0x7fb29dc364d0) 0 + primary-for QApplication (0x7fb29dc36460) + QObject (0x7fb29dc36540) 0 + primary-for QCoreApplication (0x7fb29dc364d0) + +Vtable for QLayoutItem +QLayoutItem::_ZTV11QLayoutItem: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QLayoutItem) +16 QLayoutItem::~QLayoutItem +24 QLayoutItem::~QLayoutItem +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 QLayoutItem::hasHeightForWidth +96 QLayoutItem::heightForWidth +104 QLayoutItem::minimumHeightForWidth +112 QLayoutItem::invalidate +120 QLayoutItem::widget +128 QLayoutItem::layout +136 QLayoutItem::spacerItem + +Class QLayoutItem + size=16 align=8 + base size=12 base align=8 +QLayoutItem (0x7fb29da880e0) 0 + vptr=((& QLayoutItem::_ZTV11QLayoutItem) + 16u) + +Vtable for QSpacerItem +QSpacerItem::_ZTV11QSpacerItem: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QSpacerItem) +16 QSpacerItem::~QSpacerItem +24 QSpacerItem::~QSpacerItem +32 QSpacerItem::sizeHint +40 QSpacerItem::minimumSize +48 QSpacerItem::maximumSize +56 QSpacerItem::expandingDirections +64 QSpacerItem::setGeometry +72 QSpacerItem::geometry +80 QSpacerItem::isEmpty +88 QLayoutItem::hasHeightForWidth +96 QLayoutItem::heightForWidth +104 QLayoutItem::minimumHeightForWidth +112 QLayoutItem::invalidate +120 QLayoutItem::widget +128 QLayoutItem::layout +136 QSpacerItem::spacerItem + +Class QSpacerItem + size=40 align=8 + base size=40 base align=8 +QSpacerItem (0x7fb29da88cb0) 0 + vptr=((& QSpacerItem::_ZTV11QSpacerItem) + 16u) + QLayoutItem (0x7fb29da88d20) 0 + primary-for QSpacerItem (0x7fb29da88cb0) + +Vtable for QWidgetItem +QWidgetItem::_ZTV11QWidgetItem: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QWidgetItem) +16 QWidgetItem::~QWidgetItem +24 QWidgetItem::~QWidgetItem +32 QWidgetItem::sizeHint +40 QWidgetItem::minimumSize +48 QWidgetItem::maximumSize +56 QWidgetItem::expandingDirections +64 QWidgetItem::setGeometry +72 QWidgetItem::geometry +80 QWidgetItem::isEmpty +88 QWidgetItem::hasHeightForWidth +96 QWidgetItem::heightForWidth +104 QLayoutItem::minimumHeightForWidth +112 QLayoutItem::invalidate +120 QWidgetItem::widget +128 QLayoutItem::layout +136 QLayoutItem::spacerItem + +Class QWidgetItem + size=24 align=8 + base size=24 base align=8 +QWidgetItem (0x7fb29daa41c0) 0 + vptr=((& QWidgetItem::_ZTV11QWidgetItem) + 16u) + QLayoutItem (0x7fb29daa4230) 0 + primary-for QWidgetItem (0x7fb29daa41c0) + +Vtable for QWidgetItemV2 +QWidgetItemV2::_ZTV13QWidgetItemV2: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QWidgetItemV2) +16 QWidgetItemV2::~QWidgetItemV2 +24 QWidgetItemV2::~QWidgetItemV2 +32 QWidgetItemV2::sizeHint +40 QWidgetItemV2::minimumSize +48 QWidgetItemV2::maximumSize +56 QWidgetItem::expandingDirections +64 QWidgetItem::setGeometry +72 QWidgetItem::geometry +80 QWidgetItem::isEmpty +88 QWidgetItem::hasHeightForWidth +96 QWidgetItemV2::heightForWidth +104 QLayoutItem::minimumHeightForWidth +112 QLayoutItem::invalidate +120 QWidgetItem::widget +128 QLayoutItem::layout +136 QLayoutItem::spacerItem + +Class QWidgetItemV2 + size=88 align=8 + base size=88 base align=8 +QWidgetItemV2 (0x7fb29dab6000) 0 + vptr=((& QWidgetItemV2::_ZTV13QWidgetItemV2) + 16u) + QWidgetItem (0x7fb29dab6070) 0 + primary-for QWidgetItemV2 (0x7fb29dab6000) + QLayoutItem (0x7fb29dab60e0) 0 + primary-for QWidgetItem (0x7fb29dab6070) + +Class QLayoutIterator + size=16 align=8 + base size=12 base align=8 +QLayoutIterator (0x7fb29dab6e70) 0 + +Vtable for QLayout +QLayout::_ZTV7QLayout: 45u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QLayout) +16 QLayout::metaObject +24 QLayout::qt_metacast +32 QLayout::qt_metacall +40 QLayout::~QLayout +48 QLayout::~QLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QLayout::invalidate +120 QLayout::geometry +128 __cxa_pure_virtual +136 QLayout::expandingDirections +144 QLayout::minimumSize +152 QLayout::maximumSize +160 QLayout::setGeometry +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 QLayout::indexOf +192 __cxa_pure_virtual +200 QLayout::isEmpty +208 QLayout::layout +216 (int (*)(...))-0x00000000000000010 +224 (int (*)(...))(& _ZTI7QLayout) +232 QLayout::_ZThn16_N7QLayoutD1Ev +240 QLayout::_ZThn16_N7QLayoutD0Ev +248 __cxa_pure_virtual +256 QLayout::_ZThn16_NK7QLayout11minimumSizeEv +264 QLayout::_ZThn16_NK7QLayout11maximumSizeEv +272 QLayout::_ZThn16_NK7QLayout19expandingDirectionsEv +280 QLayout::_ZThn16_N7QLayout11setGeometryERK5QRect +288 QLayout::_ZThn16_NK7QLayout8geometryEv +296 QLayout::_ZThn16_NK7QLayout7isEmptyEv +304 QLayoutItem::hasHeightForWidth +312 QLayoutItem::heightForWidth +320 QLayoutItem::minimumHeightForWidth +328 QLayout::_ZThn16_N7QLayout10invalidateEv +336 QLayoutItem::widget +344 QLayout::_ZThn16_N7QLayout6layoutEv +352 QLayoutItem::spacerItem + +Class QLayout + size=32 align=8 + base size=28 base align=8 +QLayout (0x7fb29daca380) 0 + vptr=((& QLayout::_ZTV7QLayout) + 16u) + QObject (0x7fb29dac8f50) 0 + primary-for QLayout (0x7fb29daca380) + QLayoutItem (0x7fb29dacc000) 16 + vptr=((& QLayout::_ZTV7QLayout) + 232u) + +Vtable for QGridLayout +QGridLayout::_ZTV11QGridLayout: 49u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QGridLayout) +16 QGridLayout::metaObject +24 QGridLayout::qt_metacast +32 QGridLayout::qt_metacall +40 QGridLayout::~QGridLayout +48 QGridLayout::~QGridLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGridLayout::invalidate +120 QLayout::geometry +128 QGridLayout::addItem +136 QGridLayout::expandingDirections +144 QGridLayout::minimumSize +152 QGridLayout::maximumSize +160 QGridLayout::setGeometry +168 QGridLayout::itemAt +176 QGridLayout::takeAt +184 QLayout::indexOf +192 QGridLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QGridLayout::sizeHint +224 QGridLayout::hasHeightForWidth +232 QGridLayout::heightForWidth +240 QGridLayout::minimumHeightForWidth +248 (int (*)(...))-0x00000000000000010 +256 (int (*)(...))(& _ZTI11QGridLayout) +264 QGridLayout::_ZThn16_N11QGridLayoutD1Ev +272 QGridLayout::_ZThn16_N11QGridLayoutD0Ev +280 QGridLayout::_ZThn16_NK11QGridLayout8sizeHintEv +288 QGridLayout::_ZThn16_NK11QGridLayout11minimumSizeEv +296 QGridLayout::_ZThn16_NK11QGridLayout11maximumSizeEv +304 QGridLayout::_ZThn16_NK11QGridLayout19expandingDirectionsEv +312 QGridLayout::_ZThn16_N11QGridLayout11setGeometryERK5QRect +320 QLayout::_ZThn16_NK7QLayout8geometryEv +328 QLayout::_ZThn16_NK7QLayout7isEmptyEv +336 QGridLayout::_ZThn16_NK11QGridLayout17hasHeightForWidthEv +344 QGridLayout::_ZThn16_NK11QGridLayout14heightForWidthEi +352 QGridLayout::_ZThn16_NK11QGridLayout21minimumHeightForWidthEi +360 QGridLayout::_ZThn16_N11QGridLayout10invalidateEv +368 QLayoutItem::widget +376 QLayout::_ZThn16_N7QLayout6layoutEv +384 QLayoutItem::spacerItem + +Class QGridLayout + size=32 align=8 + base size=28 base align=8 +QGridLayout (0x7fb29db0b4d0) 0 + vptr=((& QGridLayout::_ZTV11QGridLayout) + 16u) + QLayout (0x7fb29db08500) 0 + primary-for QGridLayout (0x7fb29db0b4d0) + QObject (0x7fb29db0b540) 0 + primary-for QLayout (0x7fb29db08500) + QLayoutItem (0x7fb29db0b5b0) 16 + vptr=((& QGridLayout::_ZTV11QGridLayout) + 264u) + +Vtable for QBoxLayout +QBoxLayout::_ZTV10QBoxLayout: 49u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QBoxLayout) +16 QBoxLayout::metaObject +24 QBoxLayout::qt_metacast +32 QBoxLayout::qt_metacall +40 QBoxLayout::~QBoxLayout +48 QBoxLayout::~QBoxLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QBoxLayout::invalidate +120 QLayout::geometry +128 QBoxLayout::addItem +136 QBoxLayout::expandingDirections +144 QBoxLayout::minimumSize +152 QBoxLayout::maximumSize +160 QBoxLayout::setGeometry +168 QBoxLayout::itemAt +176 QBoxLayout::takeAt +184 QLayout::indexOf +192 QBoxLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QBoxLayout::sizeHint +224 QBoxLayout::hasHeightForWidth +232 QBoxLayout::heightForWidth +240 QBoxLayout::minimumHeightForWidth +248 (int (*)(...))-0x00000000000000010 +256 (int (*)(...))(& _ZTI10QBoxLayout) +264 QBoxLayout::_ZThn16_N10QBoxLayoutD1Ev +272 QBoxLayout::_ZThn16_N10QBoxLayoutD0Ev +280 QBoxLayout::_ZThn16_NK10QBoxLayout8sizeHintEv +288 QBoxLayout::_ZThn16_NK10QBoxLayout11minimumSizeEv +296 QBoxLayout::_ZThn16_NK10QBoxLayout11maximumSizeEv +304 QBoxLayout::_ZThn16_NK10QBoxLayout19expandingDirectionsEv +312 QBoxLayout::_ZThn16_N10QBoxLayout11setGeometryERK5QRect +320 QLayout::_ZThn16_NK7QLayout8geometryEv +328 QLayout::_ZThn16_NK7QLayout7isEmptyEv +336 QBoxLayout::_ZThn16_NK10QBoxLayout17hasHeightForWidthEv +344 QBoxLayout::_ZThn16_NK10QBoxLayout14heightForWidthEi +352 QBoxLayout::_ZThn16_NK10QBoxLayout21minimumHeightForWidthEi +360 QBoxLayout::_ZThn16_N10QBoxLayout10invalidateEv +368 QLayoutItem::widget +376 QLayout::_ZThn16_N7QLayout6layoutEv +384 QLayoutItem::spacerItem + +Class QBoxLayout + size=32 align=8 + base size=28 base align=8 +QBoxLayout (0x7fb29d957540) 0 + vptr=((& QBoxLayout::_ZTV10QBoxLayout) + 16u) + QLayout (0x7fb29d955400) 0 + primary-for QBoxLayout (0x7fb29d957540) + QObject (0x7fb29d9575b0) 0 + primary-for QLayout (0x7fb29d955400) + QLayoutItem (0x7fb29d957620) 16 + vptr=((& QBoxLayout::_ZTV10QBoxLayout) + 264u) + +Vtable for QHBoxLayout +QHBoxLayout::_ZTV11QHBoxLayout: 49u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QHBoxLayout) +16 QHBoxLayout::metaObject +24 QHBoxLayout::qt_metacast +32 QHBoxLayout::qt_metacall +40 QHBoxLayout::~QHBoxLayout +48 QHBoxLayout::~QHBoxLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QBoxLayout::invalidate +120 QLayout::geometry +128 QBoxLayout::addItem +136 QBoxLayout::expandingDirections +144 QBoxLayout::minimumSize +152 QBoxLayout::maximumSize +160 QBoxLayout::setGeometry +168 QBoxLayout::itemAt +176 QBoxLayout::takeAt +184 QLayout::indexOf +192 QBoxLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QBoxLayout::sizeHint +224 QBoxLayout::hasHeightForWidth +232 QBoxLayout::heightForWidth +240 QBoxLayout::minimumHeightForWidth +248 (int (*)(...))-0x00000000000000010 +256 (int (*)(...))(& _ZTI11QHBoxLayout) +264 QHBoxLayout::_ZThn16_N11QHBoxLayoutD1Ev +272 QHBoxLayout::_ZThn16_N11QHBoxLayoutD0Ev +280 QBoxLayout::_ZThn16_NK10QBoxLayout8sizeHintEv +288 QBoxLayout::_ZThn16_NK10QBoxLayout11minimumSizeEv +296 QBoxLayout::_ZThn16_NK10QBoxLayout11maximumSizeEv +304 QBoxLayout::_ZThn16_NK10QBoxLayout19expandingDirectionsEv +312 QBoxLayout::_ZThn16_N10QBoxLayout11setGeometryERK5QRect +320 QLayout::_ZThn16_NK7QLayout8geometryEv +328 QLayout::_ZThn16_NK7QLayout7isEmptyEv +336 QBoxLayout::_ZThn16_NK10QBoxLayout17hasHeightForWidthEv +344 QBoxLayout::_ZThn16_NK10QBoxLayout14heightForWidthEi +352 QBoxLayout::_ZThn16_NK10QBoxLayout21minimumHeightForWidthEi +360 QBoxLayout::_ZThn16_N10QBoxLayout10invalidateEv +368 QLayoutItem::widget +376 QLayout::_ZThn16_N7QLayout6layoutEv +384 QLayoutItem::spacerItem + +Class QHBoxLayout + size=32 align=8 + base size=28 base align=8 +QHBoxLayout (0x7fb29d97af50) 0 + vptr=((& QHBoxLayout::_ZTV11QHBoxLayout) + 16u) + QBoxLayout (0x7fb29d985000) 0 + primary-for QHBoxLayout (0x7fb29d97af50) + QLayout (0x7fb29d982280) 0 + primary-for QBoxLayout (0x7fb29d985000) + QObject (0x7fb29d985070) 0 + primary-for QLayout (0x7fb29d982280) + QLayoutItem (0x7fb29d9850e0) 16 + vptr=((& QHBoxLayout::_ZTV11QHBoxLayout) + 264u) + +Vtable for QVBoxLayout +QVBoxLayout::_ZTV11QVBoxLayout: 49u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QVBoxLayout) +16 QVBoxLayout::metaObject +24 QVBoxLayout::qt_metacast +32 QVBoxLayout::qt_metacall +40 QVBoxLayout::~QVBoxLayout +48 QVBoxLayout::~QVBoxLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QBoxLayout::invalidate +120 QLayout::geometry +128 QBoxLayout::addItem +136 QBoxLayout::expandingDirections +144 QBoxLayout::minimumSize +152 QBoxLayout::maximumSize +160 QBoxLayout::setGeometry +168 QBoxLayout::itemAt +176 QBoxLayout::takeAt +184 QLayout::indexOf +192 QBoxLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QBoxLayout::sizeHint +224 QBoxLayout::hasHeightForWidth +232 QBoxLayout::heightForWidth +240 QBoxLayout::minimumHeightForWidth +248 (int (*)(...))-0x00000000000000010 +256 (int (*)(...))(& _ZTI11QVBoxLayout) +264 QVBoxLayout::_ZThn16_N11QVBoxLayoutD1Ev +272 QVBoxLayout::_ZThn16_N11QVBoxLayoutD0Ev +280 QBoxLayout::_ZThn16_NK10QBoxLayout8sizeHintEv +288 QBoxLayout::_ZThn16_NK10QBoxLayout11minimumSizeEv +296 QBoxLayout::_ZThn16_NK10QBoxLayout11maximumSizeEv +304 QBoxLayout::_ZThn16_NK10QBoxLayout19expandingDirectionsEv +312 QBoxLayout::_ZThn16_N10QBoxLayout11setGeometryERK5QRect +320 QLayout::_ZThn16_NK7QLayout8geometryEv +328 QLayout::_ZThn16_NK7QLayout7isEmptyEv +336 QBoxLayout::_ZThn16_NK10QBoxLayout17hasHeightForWidthEv +344 QBoxLayout::_ZThn16_NK10QBoxLayout14heightForWidthEi +352 QBoxLayout::_ZThn16_NK10QBoxLayout21minimumHeightForWidthEi +360 QBoxLayout::_ZThn16_N10QBoxLayout10invalidateEv +368 QLayoutItem::widget +376 QLayout::_ZThn16_N7QLayout6layoutEv +384 QLayoutItem::spacerItem + +Class QVBoxLayout + size=32 align=8 + base size=28 base align=8 +QVBoxLayout (0x7fb29d9995b0) 0 + vptr=((& QVBoxLayout::_ZTV11QVBoxLayout) + 16u) + QBoxLayout (0x7fb29d999620) 0 + primary-for QVBoxLayout (0x7fb29d9995b0) + QLayout (0x7fb29d982980) 0 + primary-for QBoxLayout (0x7fb29d999620) + QObject (0x7fb29d999690) 0 + primary-for QLayout (0x7fb29d982980) + QLayoutItem (0x7fb29d999700) 16 + vptr=((& QVBoxLayout::_ZTV11QVBoxLayout) + 264u) + +Vtable for QClipboard +QClipboard::_ZTV10QClipboard: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QClipboard) +16 QClipboard::metaObject +24 QClipboard::qt_metacast +32 QClipboard::qt_metacall +40 QClipboard::~QClipboard +48 QClipboard::~QClipboard +56 QClipboard::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QClipboard::connectNotify +104 QObject::disconnectNotify + +Class QClipboard + size=16 align=8 + base size=16 base align=8 +QClipboard (0x7fb29d9a9c40) 0 + vptr=((& QClipboard::_ZTV10QClipboard) + 16u) + QObject (0x7fb29d9a9cb0) 0 + primary-for QClipboard (0x7fb29d9a9c40) + +Vtable for QDesktopWidget +QDesktopWidget::_ZTV14QDesktopWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QDesktopWidget) +16 QDesktopWidget::metaObject +24 QDesktopWidget::qt_metacast +32 QDesktopWidget::qt_metacall +40 QDesktopWidget::~QDesktopWidget +48 QDesktopWidget::~QDesktopWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QDesktopWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI14QDesktopWidget) +464 QDesktopWidget::_ZThn16_N14QDesktopWidgetD1Ev +472 QDesktopWidget::_ZThn16_N14QDesktopWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDesktopWidget + size=40 align=8 + base size=40 base align=8 +QDesktopWidget (0x7fb29d9d2930) 0 + vptr=((& QDesktopWidget::_ZTV14QDesktopWidget) + 16u) + QWidget (0x7fb29d9b2c00) 0 + primary-for QDesktopWidget (0x7fb29d9d2930) + QObject (0x7fb29d9d29a0) 0 + primary-for QWidget (0x7fb29d9b2c00) + QPaintDevice (0x7fb29d9d2a10) 16 + vptr=((& QDesktopWidget::_ZTV14QDesktopWidget) + 464u) + +Vtable for QFormLayout +QFormLayout::_ZTV11QFormLayout: 48u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFormLayout) +16 QFormLayout::metaObject +24 QFormLayout::qt_metacast +32 QFormLayout::qt_metacall +40 QFormLayout::~QFormLayout +48 QFormLayout::~QFormLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFormLayout::invalidate +120 QLayout::geometry +128 QFormLayout::addItem +136 QFormLayout::expandingDirections +144 QFormLayout::minimumSize +152 QLayout::maximumSize +160 QFormLayout::setGeometry +168 QFormLayout::itemAt +176 QFormLayout::takeAt +184 QLayout::indexOf +192 QFormLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QFormLayout::sizeHint +224 QFormLayout::hasHeightForWidth +232 QFormLayout::heightForWidth +240 (int (*)(...))-0x00000000000000010 +248 (int (*)(...))(& _ZTI11QFormLayout) +256 QFormLayout::_ZThn16_N11QFormLayoutD1Ev +264 QFormLayout::_ZThn16_N11QFormLayoutD0Ev +272 QFormLayout::_ZThn16_NK11QFormLayout8sizeHintEv +280 QFormLayout::_ZThn16_NK11QFormLayout11minimumSizeEv +288 QLayout::_ZThn16_NK7QLayout11maximumSizeEv +296 QFormLayout::_ZThn16_NK11QFormLayout19expandingDirectionsEv +304 QFormLayout::_ZThn16_N11QFormLayout11setGeometryERK5QRect +312 QLayout::_ZThn16_NK7QLayout8geometryEv +320 QLayout::_ZThn16_NK7QLayout7isEmptyEv +328 QFormLayout::_ZThn16_NK11QFormLayout17hasHeightForWidthEv +336 QFormLayout::_ZThn16_NK11QFormLayout14heightForWidthEi +344 QLayoutItem::minimumHeightForWidth +352 QFormLayout::_ZThn16_N11QFormLayout10invalidateEv +360 QLayoutItem::widget +368 QLayout::_ZThn16_N7QLayout6layoutEv +376 QLayoutItem::spacerItem + +Class QFormLayout + size=32 align=8 + base size=28 base align=8 +QFormLayout (0x7fb29d9f09a0) 0 + vptr=((& QFormLayout::_ZTV11QFormLayout) + 16u) + QLayout (0x7fb29d9ebb80) 0 + primary-for QFormLayout (0x7fb29d9f09a0) + QObject (0x7fb29d9f0a10) 0 + primary-for QLayout (0x7fb29d9ebb80) + QLayoutItem (0x7fb29d9f0a80) 16 + vptr=((& QFormLayout::_ZTV11QFormLayout) + 256u) + +Vtable for QGesture +QGesture::_ZTV8QGesture: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QGesture) +16 QGesture::metaObject +24 QGesture::qt_metacast +32 QGesture::qt_metacall +40 QGesture::~QGesture +48 QGesture::~QGesture +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QGesture + size=16 align=8 + base size=16 base align=8 +QGesture (0x7fb29da26150) 0 + vptr=((& QGesture::_ZTV8QGesture) + 16u) + QObject (0x7fb29da261c0) 0 + primary-for QGesture (0x7fb29da26150) + +Vtable for QPanGesture +QPanGesture::_ZTV11QPanGesture: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QPanGesture) +16 QPanGesture::metaObject +24 QPanGesture::qt_metacast +32 QPanGesture::qt_metacall +40 QPanGesture::~QPanGesture +48 QPanGesture::~QPanGesture +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QPanGesture + size=16 align=8 + base size=16 base align=8 +QPanGesture (0x7fb29da3f850) 0 + vptr=((& QPanGesture::_ZTV11QPanGesture) + 16u) + QGesture (0x7fb29da3f8c0) 0 + primary-for QPanGesture (0x7fb29da3f850) + QObject (0x7fb29da3f930) 0 + primary-for QGesture (0x7fb29da3f8c0) + +Vtable for QPinchGesture +QPinchGesture::_ZTV13QPinchGesture: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QPinchGesture) +16 QPinchGesture::metaObject +24 QPinchGesture::qt_metacast +32 QPinchGesture::qt_metacall +40 QPinchGesture::~QPinchGesture +48 QPinchGesture::~QPinchGesture +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QPinchGesture + size=16 align=8 + base size=16 base align=8 +QPinchGesture (0x7fb29d850cb0) 0 + vptr=((& QPinchGesture::_ZTV13QPinchGesture) + 16u) + QGesture (0x7fb29d850d20) 0 + primary-for QPinchGesture (0x7fb29d850cb0) + QObject (0x7fb29d850d90) 0 + primary-for QGesture (0x7fb29d850d20) + +Vtable for QSwipeGesture +QSwipeGesture::_ZTV13QSwipeGesture: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSwipeGesture) +16 QSwipeGesture::metaObject +24 QSwipeGesture::qt_metacast +32 QSwipeGesture::qt_metacall +40 QSwipeGesture::~QSwipeGesture +48 QSwipeGesture::~QSwipeGesture +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSwipeGesture + size=16 align=8 + base size=16 base align=8 +QSwipeGesture (0x7fb29d871d20) 0 + vptr=((& QSwipeGesture::_ZTV13QSwipeGesture) + 16u) + QGesture (0x7fb29d871d90) 0 + primary-for QSwipeGesture (0x7fb29d871d20) + QObject (0x7fb29d871e00) 0 + primary-for QGesture (0x7fb29d871d90) + +Vtable for QTapGesture +QTapGesture::_ZTV11QTapGesture: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTapGesture) +16 QTapGesture::metaObject +24 QTapGesture::qt_metacast +32 QTapGesture::qt_metacall +40 QTapGesture::~QTapGesture +48 QTapGesture::~QTapGesture +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTapGesture + size=16 align=8 + base size=16 base align=8 +QTapGesture (0x7fb29d890460) 0 + vptr=((& QTapGesture::_ZTV11QTapGesture) + 16u) + QGesture (0x7fb29d8904d0) 0 + primary-for QTapGesture (0x7fb29d890460) + QObject (0x7fb29d890540) 0 + primary-for QGesture (0x7fb29d8904d0) + +Vtable for QTapAndHoldGesture +QTapAndHoldGesture::_ZTV18QTapAndHoldGesture: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QTapAndHoldGesture) +16 QTapAndHoldGesture::metaObject +24 QTapAndHoldGesture::qt_metacast +32 QTapAndHoldGesture::qt_metacall +40 QTapAndHoldGesture::~QTapAndHoldGesture +48 QTapAndHoldGesture::~QTapAndHoldGesture +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTapAndHoldGesture + size=16 align=8 + base size=16 base align=8 +QTapAndHoldGesture (0x7fb29d8a08c0) 0 + vptr=((& QTapAndHoldGesture::_ZTV18QTapAndHoldGesture) + 16u) + QGesture (0x7fb29d8a0930) 0 + primary-for QTapAndHoldGesture (0x7fb29d8a08c0) + QObject (0x7fb29d8a09a0) 0 + primary-for QGesture (0x7fb29d8a0930) + +Vtable for QGestureRecognizer +QGestureRecognizer::_ZTV18QGestureRecognizer: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QGestureRecognizer) +16 QGestureRecognizer::~QGestureRecognizer +24 QGestureRecognizer::~QGestureRecognizer +32 QGestureRecognizer::create +40 __cxa_pure_virtual +48 QGestureRecognizer::reset + +Class QGestureRecognizer + size=8 align=8 + base size=8 base align=8 +QGestureRecognizer (0x7fb29d8bd310) 0 nearly-empty + vptr=((& QGestureRecognizer::_ZTV18QGestureRecognizer) + 16u) + +Vtable for QSessionManager +QSessionManager::_ZTV15QSessionManager: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSessionManager) +16 QSessionManager::metaObject +24 QSessionManager::qt_metacast +32 QSessionManager::qt_metacall +40 QSessionManager::~QSessionManager +48 QSessionManager::~QSessionManager +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSessionManager + size=16 align=8 + base size=16 base align=8 +QSessionManager (0x7fb29d8f2620) 0 + vptr=((& QSessionManager::_ZTV15QSessionManager) + 16u) + QObject (0x7fb29d8f2690) 0 + primary-for QSessionManager (0x7fb29d8f2620) + +Vtable for QShortcut +QShortcut::_ZTV9QShortcut: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QShortcut) +16 QShortcut::metaObject +24 QShortcut::qt_metacast +32 QShortcut::qt_metacall +40 QShortcut::~QShortcut +48 QShortcut::~QShortcut +56 QShortcut::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QShortcut + size=16 align=8 + base size=16 base align=8 +QShortcut (0x7fb29d923b60) 0 + vptr=((& QShortcut::_ZTV9QShortcut) + 16u) + QObject (0x7fb29d923bd0) 0 + primary-for QShortcut (0x7fb29d923b60) + +Vtable for QSound +QSound::_ZTV6QSound: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QSound) +16 QSound::metaObject +24 QSound::qt_metacast +32 QSound::qt_metacall +40 QSound::~QSound +48 QSound::~QSound +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSound + size=16 align=8 + base size=16 base align=8 +QSound (0x7fb29d93f310) 0 + vptr=((& QSound::_ZTV6QSound) + 16u) + QObject (0x7fb29d93f380) 0 + primary-for QSound (0x7fb29d93f310) + +Vtable for QStackedLayout +QStackedLayout::_ZTV14QStackedLayout: 46u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QStackedLayout) +16 QStackedLayout::metaObject +24 QStackedLayout::qt_metacast +32 QStackedLayout::qt_metacall +40 QStackedLayout::~QStackedLayout +48 QStackedLayout::~QStackedLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QLayout::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QLayout::invalidate +120 QLayout::geometry +128 QStackedLayout::addItem +136 QLayout::expandingDirections +144 QStackedLayout::minimumSize +152 QLayout::maximumSize +160 QStackedLayout::setGeometry +168 QStackedLayout::itemAt +176 QStackedLayout::takeAt +184 QLayout::indexOf +192 QStackedLayout::count +200 QLayout::isEmpty +208 QLayout::layout +216 QStackedLayout::sizeHint +224 (int (*)(...))-0x00000000000000010 +232 (int (*)(...))(& _ZTI14QStackedLayout) +240 QStackedLayout::_ZThn16_N14QStackedLayoutD1Ev +248 QStackedLayout::_ZThn16_N14QStackedLayoutD0Ev +256 QStackedLayout::_ZThn16_NK14QStackedLayout8sizeHintEv +264 QStackedLayout::_ZThn16_NK14QStackedLayout11minimumSizeEv +272 QLayout::_ZThn16_NK7QLayout11maximumSizeEv +280 QLayout::_ZThn16_NK7QLayout19expandingDirectionsEv +288 QStackedLayout::_ZThn16_N14QStackedLayout11setGeometryERK5QRect +296 QLayout::_ZThn16_NK7QLayout8geometryEv +304 QLayout::_ZThn16_NK7QLayout7isEmptyEv +312 QLayoutItem::hasHeightForWidth +320 QLayoutItem::heightForWidth +328 QLayoutItem::minimumHeightForWidth +336 QLayout::_ZThn16_N7QLayout10invalidateEv +344 QLayoutItem::widget +352 QLayout::_ZThn16_N7QLayout6layoutEv +360 QLayoutItem::spacerItem + +Class QStackedLayout + size=32 align=8 + base size=28 base align=8 +QStackedLayout (0x7fb29d753a80) 0 + vptr=((& QStackedLayout::_ZTV14QStackedLayout) + 16u) + QLayout (0x7fb29d74b880) 0 + primary-for QStackedLayout (0x7fb29d753a80) + QObject (0x7fb29d753af0) 0 + primary-for QLayout (0x7fb29d74b880) + QLayoutItem (0x7fb29d753b60) 16 + vptr=((& QStackedLayout::_ZTV14QStackedLayout) + 240u) + +Class QToolTip + size=1 align=1 + base size=0 base align=1 +QToolTip (0x7fb29d773a80) 0 empty + +Class QWhatsThis + size=1 align=1 + base size=0 base align=1 +QWhatsThis (0x7fb29d780070) 0 empty + +Vtable for QWidgetAction +QWidgetAction::_ZTV13QWidgetAction: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QWidgetAction) +16 QWidgetAction::metaObject +24 QWidgetAction::qt_metacast +32 QWidgetAction::qt_metacall +40 QWidgetAction::~QWidgetAction +48 QWidgetAction::~QWidgetAction +56 QWidgetAction::event +64 QWidgetAction::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidgetAction::createWidget +120 QWidgetAction::deleteWidget + +Class QWidgetAction + size=16 align=8 + base size=16 base align=8 +QWidgetAction (0x7fb29d780150) 0 + vptr=((& QWidgetAction::_ZTV13QWidgetAction) + 16u) + QAction (0x7fb29d7801c0) 0 + primary-for QWidgetAction (0x7fb29d780150) + QObject (0x7fb29d780230) 0 + primary-for QAction (0x7fb29d7801c0) + +Class QVector3D + size=12 align=4 + base size=12 base align=4 +QVector3D (0x7fb29d64f1c0) 0 + +Class QVector4D + size=16 align=4 + base size=16 base align=4 +QVector4D (0x7fb29d6b2cb0) 0 + +Class QQuaternion + size=32 align=8 + base size=32 base align=8 +QQuaternion (0x7fb29d728d20) 0 + +Class QMatrix4x4 + size=136 align=8 + base size=132 base align=8 +QMatrix4x4 (0x7fb29d5a7b60) 0 + +Class QVector2D + size=8 align=4 + base size=8 base align=4 +QVector2D (0x7fb29d3f3d90) 0 + +Vtable for QCommonStyle +QCommonStyle::_ZTV12QCommonStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QCommonStyle) +16 QCommonStyle::metaObject +24 QCommonStyle::qt_metacast +32 QCommonStyle::qt_metacall +40 QCommonStyle::~QCommonStyle +48 QCommonStyle::~QCommonStyle +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCommonStyle::polish +120 QCommonStyle::unpolish +128 QCommonStyle::polish +136 QCommonStyle::unpolish +144 QCommonStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QStyle::standardPalette +192 QCommonStyle::drawPrimitive +200 QCommonStyle::drawControl +208 QCommonStyle::subElementRect +216 QCommonStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QCommonStyle::subControlRect +240 QCommonStyle::pixelMetric +248 QCommonStyle::sizeFromContents +256 QCommonStyle::styleHint +264 QCommonStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QCommonStyle + size=16 align=8 + base size=16 base align=8 +QCommonStyle (0x7fb29d2562a0) 0 + vptr=((& QCommonStyle::_ZTV12QCommonStyle) + 16u) + QStyle (0x7fb29d256310) 0 + primary-for QCommonStyle (0x7fb29d2562a0) + QObject (0x7fb29d256380) 0 + primary-for QStyle (0x7fb29d256310) + +Vtable for QMotifStyle +QMotifStyle::_ZTV11QMotifStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMotifStyle) +16 QMotifStyle::metaObject +24 QMotifStyle::qt_metacast +32 QMotifStyle::qt_metacall +40 QMotifStyle::~QMotifStyle +48 QMotifStyle::~QMotifStyle +56 QMotifStyle::event +64 QMotifStyle::eventFilter +72 QMotifStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMotifStyle::polish +120 QMotifStyle::unpolish +128 QMotifStyle::polish +136 QMotifStyle::unpolish +144 QMotifStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QMotifStyle::standardPalette +192 QMotifStyle::drawPrimitive +200 QMotifStyle::drawControl +208 QMotifStyle::subElementRect +216 QMotifStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QMotifStyle::subControlRect +240 QMotifStyle::pixelMetric +248 QMotifStyle::sizeFromContents +256 QMotifStyle::styleHint +264 QMotifStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QMotifStyle + size=32 align=8 + base size=25 base align=8 +QMotifStyle (0x7fb29d2792a0) 0 + vptr=((& QMotifStyle::_ZTV11QMotifStyle) + 16u) + QCommonStyle (0x7fb29d279310) 0 + primary-for QMotifStyle (0x7fb29d2792a0) + QStyle (0x7fb29d279380) 0 + primary-for QCommonStyle (0x7fb29d279310) + QObject (0x7fb29d2793f0) 0 + primary-for QStyle (0x7fb29d279380) + +Vtable for QCDEStyle +QCDEStyle::_ZTV9QCDEStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QCDEStyle) +16 QCDEStyle::metaObject +24 QCDEStyle::qt_metacast +32 QCDEStyle::qt_metacall +40 QCDEStyle::~QCDEStyle +48 QCDEStyle::~QCDEStyle +56 QMotifStyle::event +64 QMotifStyle::eventFilter +72 QMotifStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMotifStyle::polish +120 QMotifStyle::unpolish +128 QMotifStyle::polish +136 QMotifStyle::unpolish +144 QMotifStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QCDEStyle::standardPalette +192 QCDEStyle::drawPrimitive +200 QCDEStyle::drawControl +208 QMotifStyle::subElementRect +216 QMotifStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QMotifStyle::subControlRect +240 QCDEStyle::pixelMetric +248 QMotifStyle::sizeFromContents +256 QMotifStyle::styleHint +264 QMotifStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QCDEStyle + size=32 align=8 + base size=25 base align=8 +QCDEStyle (0x7fb29d2a21c0) 0 + vptr=((& QCDEStyle::_ZTV9QCDEStyle) + 16u) + QMotifStyle (0x7fb29d2a2230) 0 + primary-for QCDEStyle (0x7fb29d2a21c0) + QCommonStyle (0x7fb29d2a22a0) 0 + primary-for QMotifStyle (0x7fb29d2a2230) + QStyle (0x7fb29d2a2310) 0 + primary-for QCommonStyle (0x7fb29d2a22a0) + QObject (0x7fb29d2a2380) 0 + primary-for QStyle (0x7fb29d2a2310) + +Vtable for QWindowsStyle +QWindowsStyle::_ZTV13QWindowsStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QWindowsStyle) +16 QWindowsStyle::metaObject +24 QWindowsStyle::qt_metacast +32 QWindowsStyle::qt_metacall +40 QWindowsStyle::~QWindowsStyle +48 QWindowsStyle::~QWindowsStyle +56 QObject::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWindowsStyle::polish +120 QWindowsStyle::unpolish +128 QWindowsStyle::polish +136 QWindowsStyle::unpolish +144 QWindowsStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QStyle::standardPalette +192 QWindowsStyle::drawPrimitive +200 QWindowsStyle::drawControl +208 QWindowsStyle::subElementRect +216 QWindowsStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QCommonStyle::subControlRect +240 QWindowsStyle::pixelMetric +248 QWindowsStyle::sizeFromContents +256 QWindowsStyle::styleHint +264 QWindowsStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QWindowsStyle + size=24 align=8 + base size=24 base align=8 +QWindowsStyle (0x7fb29d2b5310) 0 + vptr=((& QWindowsStyle::_ZTV13QWindowsStyle) + 16u) + QCommonStyle (0x7fb29d2b5380) 0 + primary-for QWindowsStyle (0x7fb29d2b5310) + QStyle (0x7fb29d2b53f0) 0 + primary-for QCommonStyle (0x7fb29d2b5380) + QObject (0x7fb29d2b5460) 0 + primary-for QStyle (0x7fb29d2b53f0) + +Vtable for QCleanlooksStyle +QCleanlooksStyle::_ZTV16QCleanlooksStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QCleanlooksStyle) +16 QCleanlooksStyle::metaObject +24 QCleanlooksStyle::qt_metacast +32 QCleanlooksStyle::qt_metacall +40 QCleanlooksStyle::~QCleanlooksStyle +48 QCleanlooksStyle::~QCleanlooksStyle +56 QObject::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCleanlooksStyle::polish +120 QCleanlooksStyle::unpolish +128 QCleanlooksStyle::polish +136 QCleanlooksStyle::unpolish +144 QCleanlooksStyle::polish +152 QStyle::itemTextRect +160 QCleanlooksStyle::itemPixmapRect +168 QCleanlooksStyle::drawItemText +176 QCleanlooksStyle::drawItemPixmap +184 QCleanlooksStyle::standardPalette +192 QCleanlooksStyle::drawPrimitive +200 QCleanlooksStyle::drawControl +208 QCleanlooksStyle::subElementRect +216 QCleanlooksStyle::drawComplexControl +224 QCleanlooksStyle::hitTestComplexControl +232 QCleanlooksStyle::subControlRect +240 QCleanlooksStyle::pixelMetric +248 QCleanlooksStyle::sizeFromContents +256 QCleanlooksStyle::styleHint +264 QCleanlooksStyle::standardPixmap +272 QCleanlooksStyle::generatedIconPixmap + +Class QCleanlooksStyle + size=24 align=8 + base size=24 base align=8 +QCleanlooksStyle (0x7fb29d2d60e0) 0 + vptr=((& QCleanlooksStyle::_ZTV16QCleanlooksStyle) + 16u) + QWindowsStyle (0x7fb29d2d6150) 0 + primary-for QCleanlooksStyle (0x7fb29d2d60e0) + QCommonStyle (0x7fb29d2d61c0) 0 + primary-for QWindowsStyle (0x7fb29d2d6150) + QStyle (0x7fb29d2d6230) 0 + primary-for QCommonStyle (0x7fb29d2d61c0) + QObject (0x7fb29d2d62a0) 0 + primary-for QStyle (0x7fb29d2d6230) + +Vtable for QPlastiqueStyle +QPlastiqueStyle::_ZTV15QPlastiqueStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QPlastiqueStyle) +16 QPlastiqueStyle::metaObject +24 QPlastiqueStyle::qt_metacast +32 QPlastiqueStyle::qt_metacall +40 QPlastiqueStyle::~QPlastiqueStyle +48 QPlastiqueStyle::~QPlastiqueStyle +56 QObject::event +64 QPlastiqueStyle::eventFilter +72 QPlastiqueStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QPlastiqueStyle::polish +120 QPlastiqueStyle::unpolish +128 QPlastiqueStyle::polish +136 QPlastiqueStyle::unpolish +144 QPlastiqueStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QPlastiqueStyle::standardPalette +192 QPlastiqueStyle::drawPrimitive +200 QPlastiqueStyle::drawControl +208 QPlastiqueStyle::subElementRect +216 QPlastiqueStyle::drawComplexControl +224 QPlastiqueStyle::hitTestComplexControl +232 QPlastiqueStyle::subControlRect +240 QPlastiqueStyle::pixelMetric +248 QPlastiqueStyle::sizeFromContents +256 QPlastiqueStyle::styleHint +264 QPlastiqueStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QPlastiqueStyle + size=32 align=8 + base size=32 base align=8 +QPlastiqueStyle (0x7fb29d2f1e70) 0 + vptr=((& QPlastiqueStyle::_ZTV15QPlastiqueStyle) + 16u) + QWindowsStyle (0x7fb29d2f1ee0) 0 + primary-for QPlastiqueStyle (0x7fb29d2f1e70) + QCommonStyle (0x7fb29d2f1f50) 0 + primary-for QWindowsStyle (0x7fb29d2f1ee0) + QStyle (0x7fb29d2f7000) 0 + primary-for QCommonStyle (0x7fb29d2f1f50) + QObject (0x7fb29d2f7070) 0 + primary-for QStyle (0x7fb29d2f7000) + +Vtable for QProxyStyle +QProxyStyle::_ZTV11QProxyStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QProxyStyle) +16 QProxyStyle::metaObject +24 QProxyStyle::qt_metacast +32 QProxyStyle::qt_metacall +40 QProxyStyle::~QProxyStyle +48 QProxyStyle::~QProxyStyle +56 QProxyStyle::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QProxyStyle::polish +120 QProxyStyle::unpolish +128 QProxyStyle::polish +136 QProxyStyle::unpolish +144 QProxyStyle::polish +152 QProxyStyle::itemTextRect +160 QProxyStyle::itemPixmapRect +168 QProxyStyle::drawItemText +176 QProxyStyle::drawItemPixmap +184 QProxyStyle::standardPalette +192 QProxyStyle::drawPrimitive +200 QProxyStyle::drawControl +208 QProxyStyle::subElementRect +216 QProxyStyle::drawComplexControl +224 QProxyStyle::hitTestComplexControl +232 QProxyStyle::subControlRect +240 QProxyStyle::pixelMetric +248 QProxyStyle::sizeFromContents +256 QProxyStyle::styleHint +264 QProxyStyle::standardPixmap +272 QProxyStyle::generatedIconPixmap + +Class QProxyStyle + size=16 align=8 + base size=16 base align=8 +QProxyStyle (0x7fb29d31c000) 0 + vptr=((& QProxyStyle::_ZTV11QProxyStyle) + 16u) + QCommonStyle (0x7fb29d31c070) 0 + primary-for QProxyStyle (0x7fb29d31c000) + QStyle (0x7fb29d31c0e0) 0 + primary-for QCommonStyle (0x7fb29d31c070) + QObject (0x7fb29d31c150) 0 + primary-for QStyle (0x7fb29d31c0e0) + +Vtable for QS60Style +QS60Style::_ZTV9QS60Style: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QS60Style) +16 QS60Style::metaObject +24 QS60Style::qt_metacast +32 QS60Style::qt_metacall +40 QS60Style::~QS60Style +48 QS60Style::~QS60Style +56 QS60Style::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QS60Style::polish +120 QS60Style::unpolish +128 QS60Style::polish +136 QS60Style::unpolish +144 QCommonStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QStyle::standardPalette +192 QS60Style::drawPrimitive +200 QS60Style::drawControl +208 QS60Style::subElementRect +216 QS60Style::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QS60Style::subControlRect +240 QS60Style::pixelMetric +248 QS60Style::sizeFromContents +256 QS60Style::styleHint +264 QCommonStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QS60Style + size=16 align=8 + base size=16 base align=8 +QS60Style (0x7fb29d33a4d0) 0 + vptr=((& QS60Style::_ZTV9QS60Style) + 16u) + QCommonStyle (0x7fb29d33a540) 0 + primary-for QS60Style (0x7fb29d33a4d0) + QStyle (0x7fb29d33a5b0) 0 + primary-for QCommonStyle (0x7fb29d33a540) + QObject (0x7fb29d33a620) 0 + primary-for QStyle (0x7fb29d33a5b0) + +Class QStyleFactory + size=1 align=1 + base size=0 base align=1 +QStyleFactory (0x7fb29d160310) 0 empty + +Vtable for QStyleFactoryInterface +QStyleFactoryInterface::_ZTV22QStyleFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QStyleFactoryInterface) +16 QStyleFactoryInterface::~QStyleFactoryInterface +24 QStyleFactoryInterface::~QStyleFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QStyleFactoryInterface + size=8 align=8 + base size=8 base align=8 +QStyleFactoryInterface (0x7fb29d160380) 0 nearly-empty + vptr=((& QStyleFactoryInterface::_ZTV22QStyleFactoryInterface) + 16u) + QFactoryInterface (0x7fb29d1603f0) 0 nearly-empty + primary-for QStyleFactoryInterface (0x7fb29d160380) + +Vtable for QStylePlugin +QStylePlugin::_ZTV12QStylePlugin: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QStylePlugin) +16 QStylePlugin::metaObject +24 QStylePlugin::qt_metacast +32 QStylePlugin::qt_metacall +40 QStylePlugin::~QStylePlugin +48 QStylePlugin::~QStylePlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 (int (*)(...))-0x00000000000000010 +136 (int (*)(...))(& _ZTI12QStylePlugin) +144 QStylePlugin::_ZThn16_N12QStylePluginD1Ev +152 QStylePlugin::_ZThn16_N12QStylePluginD0Ev +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QStylePlugin + size=24 align=8 + base size=24 base align=8 +QStylePlugin (0x7fb29d16a000) 0 + vptr=((& QStylePlugin::_ZTV12QStylePlugin) + 16u) + QObject (0x7fb29d160e00) 0 + primary-for QStylePlugin (0x7fb29d16a000) + QStyleFactoryInterface (0x7fb29d160e70) 16 nearly-empty + vptr=((& QStylePlugin::_ZTV12QStylePlugin) + 144u) + QFactoryInterface (0x7fb29d160ee0) 16 nearly-empty + primary-for QStyleFactoryInterface (0x7fb29d160e70) + +Vtable for QWindowsCEStyle +QWindowsCEStyle::_ZTV15QWindowsCEStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QWindowsCEStyle) +16 QWindowsCEStyle::metaObject +24 QWindowsCEStyle::qt_metacast +32 QWindowsCEStyle::qt_metacall +40 QWindowsCEStyle::~QWindowsCEStyle +48 QWindowsCEStyle::~QWindowsCEStyle +56 QObject::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWindowsCEStyle::polish +120 QWindowsStyle::unpolish +128 QWindowsCEStyle::polish +136 QWindowsStyle::unpolish +144 QWindowsCEStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QWindowsCEStyle::drawItemText +176 QStyle::drawItemPixmap +184 QWindowsCEStyle::standardPalette +192 QWindowsCEStyle::drawPrimitive +200 QWindowsCEStyle::drawControl +208 QWindowsCEStyle::subElementRect +216 QWindowsCEStyle::drawComplexControl +224 QWindowsCEStyle::hitTestComplexControl +232 QWindowsCEStyle::subControlRect +240 QWindowsCEStyle::pixelMetric +248 QWindowsCEStyle::sizeFromContents +256 QWindowsCEStyle::styleHint +264 QWindowsCEStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QWindowsCEStyle + size=24 align=8 + base size=24 base align=8 +QWindowsCEStyle (0x7fb29d16dd90) 0 + vptr=((& QWindowsCEStyle::_ZTV15QWindowsCEStyle) + 16u) + QWindowsStyle (0x7fb29d16de00) 0 + primary-for QWindowsCEStyle (0x7fb29d16dd90) + QCommonStyle (0x7fb29d16de70) 0 + primary-for QWindowsStyle (0x7fb29d16de00) + QStyle (0x7fb29d16dee0) 0 + primary-for QCommonStyle (0x7fb29d16de70) + QObject (0x7fb29d16df50) 0 + primary-for QStyle (0x7fb29d16dee0) + +Vtable for QWindowsMobileStyle +QWindowsMobileStyle::_ZTV19QWindowsMobileStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QWindowsMobileStyle) +16 QWindowsMobileStyle::metaObject +24 QWindowsMobileStyle::qt_metacast +32 QWindowsMobileStyle::qt_metacall +40 QWindowsMobileStyle::~QWindowsMobileStyle +48 QWindowsMobileStyle::~QWindowsMobileStyle +56 QObject::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWindowsMobileStyle::polish +120 QWindowsMobileStyle::unpolish +128 QWindowsMobileStyle::polish +136 QWindowsMobileStyle::unpolish +144 QWindowsMobileStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QWindowsMobileStyle::standardPalette +192 QWindowsMobileStyle::drawPrimitive +200 QWindowsMobileStyle::drawControl +208 QWindowsMobileStyle::subElementRect +216 QWindowsMobileStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QWindowsMobileStyle::subControlRect +240 QWindowsMobileStyle::pixelMetric +248 QWindowsMobileStyle::sizeFromContents +256 QWindowsMobileStyle::styleHint +264 QWindowsMobileStyle::standardPixmap +272 QWindowsMobileStyle::generatedIconPixmap + +Class QWindowsMobileStyle + size=24 align=8 + base size=24 base align=8 +QWindowsMobileStyle (0x7fb29d1943f0) 0 + vptr=((& QWindowsMobileStyle::_ZTV19QWindowsMobileStyle) + 16u) + QWindowsStyle (0x7fb29d194460) 0 + primary-for QWindowsMobileStyle (0x7fb29d1943f0) + QCommonStyle (0x7fb29d1944d0) 0 + primary-for QWindowsStyle (0x7fb29d194460) + QStyle (0x7fb29d194540) 0 + primary-for QCommonStyle (0x7fb29d1944d0) + QObject (0x7fb29d1945b0) 0 + primary-for QStyle (0x7fb29d194540) + +Vtable for QWindowsXPStyle +QWindowsXPStyle::_ZTV15QWindowsXPStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QWindowsXPStyle) +16 QWindowsXPStyle::metaObject +24 QWindowsXPStyle::qt_metacast +32 QWindowsXPStyle::qt_metacall +40 QWindowsXPStyle::~QWindowsXPStyle +48 QWindowsXPStyle::~QWindowsXPStyle +56 QObject::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWindowsXPStyle::polish +120 QWindowsXPStyle::unpolish +128 QWindowsXPStyle::polish +136 QWindowsXPStyle::unpolish +144 QWindowsXPStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QWindowsXPStyle::standardPalette +192 QWindowsXPStyle::drawPrimitive +200 QWindowsXPStyle::drawControl +208 QWindowsXPStyle::subElementRect +216 QWindowsXPStyle::drawComplexControl +224 QCommonStyle::hitTestComplexControl +232 QWindowsXPStyle::subControlRect +240 QWindowsXPStyle::pixelMetric +248 QWindowsXPStyle::sizeFromContents +256 QWindowsXPStyle::styleHint +264 QWindowsXPStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QWindowsXPStyle + size=32 align=8 + base size=32 base align=8 +QWindowsXPStyle (0x7fb29d1add90) 0 + vptr=((& QWindowsXPStyle::_ZTV15QWindowsXPStyle) + 16u) + QWindowsStyle (0x7fb29d1ade00) 0 + primary-for QWindowsXPStyle (0x7fb29d1add90) + QCommonStyle (0x7fb29d1ade70) 0 + primary-for QWindowsStyle (0x7fb29d1ade00) + QStyle (0x7fb29d1adee0) 0 + primary-for QCommonStyle (0x7fb29d1ade70) + QObject (0x7fb29d1adf50) 0 + primary-for QStyle (0x7fb29d1adee0) + +Vtable for QWindowsVistaStyle +QWindowsVistaStyle::_ZTV18QWindowsVistaStyle: 35u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QWindowsVistaStyle) +16 QWindowsVistaStyle::metaObject +24 QWindowsVistaStyle::qt_metacast +32 QWindowsVistaStyle::qt_metacall +40 QWindowsVistaStyle::~QWindowsVistaStyle +48 QWindowsVistaStyle::~QWindowsVistaStyle +56 QWindowsVistaStyle::event +64 QWindowsStyle::eventFilter +72 QWindowsStyle::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWindowsVistaStyle::polish +120 QWindowsVistaStyle::unpolish +128 QWindowsVistaStyle::polish +136 QWindowsVistaStyle::unpolish +144 QWindowsVistaStyle::polish +152 QStyle::itemTextRect +160 QStyle::itemPixmapRect +168 QStyle::drawItemText +176 QStyle::drawItemPixmap +184 QWindowsVistaStyle::standardPalette +192 QWindowsVistaStyle::drawPrimitive +200 QWindowsVistaStyle::drawControl +208 QWindowsVistaStyle::subElementRect +216 QWindowsVistaStyle::drawComplexControl +224 QWindowsVistaStyle::hitTestComplexControl +232 QWindowsVistaStyle::subControlRect +240 QWindowsVistaStyle::pixelMetric +248 QWindowsVistaStyle::sizeFromContents +256 QWindowsVistaStyle::styleHint +264 QWindowsVistaStyle::standardPixmap +272 QCommonStyle::generatedIconPixmap + +Class QWindowsVistaStyle + size=32 align=8 + base size=32 base align=8 +QWindowsVistaStyle (0x7fb29d1cdc40) 0 + vptr=((& QWindowsVistaStyle::_ZTV18QWindowsVistaStyle) + 16u) + QWindowsXPStyle (0x7fb29d1cdcb0) 0 + primary-for QWindowsVistaStyle (0x7fb29d1cdc40) + QWindowsStyle (0x7fb29d1cdd20) 0 + primary-for QWindowsXPStyle (0x7fb29d1cdcb0) + QCommonStyle (0x7fb29d1cdd90) 0 + primary-for QWindowsStyle (0x7fb29d1cdd20) + QStyle (0x7fb29d1cde00) 0 + primary-for QCommonStyle (0x7fb29d1cdd90) + QObject (0x7fb29d1cde70) 0 + primary-for QStyle (0x7fb29d1cde00) + +Vtable for QInputContext +QInputContext::_ZTV13QInputContext: 26u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QInputContext) +16 QInputContext::metaObject +24 QInputContext::qt_metacast +32 QInputContext::qt_metacall +40 QInputContext::~QInputContext +48 QInputContext::~QInputContext +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 QInputContext::update +144 QInputContext::mouseHandler +152 QInputContext::font +160 __cxa_pure_virtual +168 QInputContext::setFocusWidget +176 QInputContext::widgetDestroyed +184 QInputContext::actions +192 QInputContext::x11FilterEvent +200 QInputContext::filterEvent + +Class QInputContext + size=16 align=8 + base size=16 base align=8 +QInputContext (0x7fb29d1edc40) 0 + vptr=((& QInputContext::_ZTV13QInputContext) + 16u) + QObject (0x7fb29d1edcb0) 0 + primary-for QInputContext (0x7fb29d1edc40) + +Class QInputContextFactory + size=1 align=1 + base size=0 base align=1 +QInputContextFactory (0x7fb29d20f5b0) 0 empty + +Vtable for QInputContextFactoryInterface +QInputContextFactoryInterface::_ZTV29QInputContextFactoryInterface: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI29QInputContextFactoryInterface) +16 QInputContextFactoryInterface::~QInputContextFactoryInterface +24 QInputContextFactoryInterface::~QInputContextFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual + +Class QInputContextFactoryInterface + size=8 align=8 + base size=8 base align=8 +QInputContextFactoryInterface (0x7fb29d20f620) 0 nearly-empty + vptr=((& QInputContextFactoryInterface::_ZTV29QInputContextFactoryInterface) + 16u) + QFactoryInterface (0x7fb29d20f690) 0 nearly-empty + primary-for QInputContextFactoryInterface (0x7fb29d20f620) + +Vtable for QInputContextPlugin +QInputContextPlugin::_ZTV19QInputContextPlugin: 28u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QInputContextPlugin) +16 QInputContextPlugin::metaObject +24 QInputContextPlugin::qt_metacast +32 QInputContextPlugin::qt_metacall +40 QInputContextPlugin::~QInputContextPlugin +48 QInputContextPlugin::~QInputContextPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 (int (*)(...))-0x00000000000000010 +160 (int (*)(...))(& _ZTI19QInputContextPlugin) +168 QInputContextPlugin::_ZThn16_N19QInputContextPluginD1Ev +176 QInputContextPlugin::_ZThn16_N19QInputContextPluginD0Ev +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 __cxa_pure_virtual +208 __cxa_pure_virtual +216 __cxa_pure_virtual + +Class QInputContextPlugin + size=24 align=8 + base size=24 base align=8 +QInputContextPlugin (0x7fb29d20ae80) 0 + vptr=((& QInputContextPlugin::_ZTV19QInputContextPlugin) + 16u) + QObject (0x7fb29d21d000) 0 + primary-for QInputContextPlugin (0x7fb29d20ae80) + QInputContextFactoryInterface (0x7fb29d21d070) 16 nearly-empty + vptr=((& QInputContextPlugin::_ZTV19QInputContextPlugin) + 168u) + QFactoryInterface (0x7fb29d21d0e0) 16 nearly-empty + primary-for QInputContextFactoryInterface (0x7fb29d21d070) + +Vtable for QGraphicsItem +QGraphicsItem::_ZTV13QGraphicsItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QGraphicsItem) +16 QGraphicsItem::~QGraphicsItem +24 QGraphicsItem::~QGraphicsItem +32 QGraphicsItem::advance +40 __cxa_pure_virtual +48 QGraphicsItem::shape +56 QGraphicsItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsItem::isObscuredBy +88 QGraphicsItem::opaqueArea +96 __cxa_pure_virtual +104 QGraphicsItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsItem::supportsExtension +296 QGraphicsItem::setExtension +304 QGraphicsItem::extension + +Class QGraphicsItem + size=16 align=8 + base size=16 base align=8 +QGraphicsItem (0x7fb29d21d380) 0 + vptr=((& QGraphicsItem::_ZTV13QGraphicsItem) + 16u) + +Vtable for QGraphicsObject +QGraphicsObject::_ZTV15QGraphicsObject: 53u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QGraphicsObject) +16 QGraphicsObject::metaObject +24 QGraphicsObject::qt_metacast +32 QGraphicsObject::qt_metacall +40 QGraphicsObject::~QGraphicsObject +48 QGraphicsObject::~QGraphicsObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 (int (*)(...))-0x00000000000000010 +120 (int (*)(...))(& _ZTI15QGraphicsObject) +128 QGraphicsObject::_ZThn16_N15QGraphicsObjectD1Ev +136 QGraphicsObject::_ZThn16_N15QGraphicsObjectD0Ev +144 QGraphicsItem::advance +152 __cxa_pure_virtual +160 QGraphicsItem::shape +168 QGraphicsItem::contains +176 QGraphicsItem::collidesWithItem +184 QGraphicsItem::collidesWithPath +192 QGraphicsItem::isObscuredBy +200 QGraphicsItem::opaqueArea +208 __cxa_pure_virtual +216 QGraphicsItem::type +224 QGraphicsItem::sceneEventFilter +232 QGraphicsItem::sceneEvent +240 QGraphicsItem::contextMenuEvent +248 QGraphicsItem::dragEnterEvent +256 QGraphicsItem::dragLeaveEvent +264 QGraphicsItem::dragMoveEvent +272 QGraphicsItem::dropEvent +280 QGraphicsItem::focusInEvent +288 QGraphicsItem::focusOutEvent +296 QGraphicsItem::hoverEnterEvent +304 QGraphicsItem::hoverMoveEvent +312 QGraphicsItem::hoverLeaveEvent +320 QGraphicsItem::keyPressEvent +328 QGraphicsItem::keyReleaseEvent +336 QGraphicsItem::mousePressEvent +344 QGraphicsItem::mouseMoveEvent +352 QGraphicsItem::mouseReleaseEvent +360 QGraphicsItem::mouseDoubleClickEvent +368 QGraphicsItem::wheelEvent +376 QGraphicsItem::inputMethodEvent +384 QGraphicsItem::inputMethodQuery +392 QGraphicsItem::itemChange +400 QGraphicsItem::supportsExtension +408 QGraphicsItem::setExtension +416 QGraphicsItem::extension + +Class QGraphicsObject + size=32 align=8 + base size=32 base align=8 +QGraphicsObject (0x7fb29d117c80) 0 + vptr=((& QGraphicsObject::_ZTV15QGraphicsObject) + 16u) + QObject (0x7fb29d11ef50) 0 + primary-for QGraphicsObject (0x7fb29d117c80) + QGraphicsItem (0x7fb29d128000) 16 + vptr=((& QGraphicsObject::_ZTV15QGraphicsObject) + 128u) + +Vtable for QAbstractGraphicsShapeItem +QAbstractGraphicsShapeItem::_ZTV26QAbstractGraphicsShapeItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QAbstractGraphicsShapeItem) +16 QAbstractGraphicsShapeItem::~QAbstractGraphicsShapeItem +24 QAbstractGraphicsShapeItem::~QAbstractGraphicsShapeItem +32 QGraphicsItem::advance +40 __cxa_pure_virtual +48 QGraphicsItem::shape +56 QGraphicsItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QAbstractGraphicsShapeItem::isObscuredBy +88 QAbstractGraphicsShapeItem::opaqueArea +96 __cxa_pure_virtual +104 QGraphicsItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsItem::supportsExtension +296 QGraphicsItem::setExtension +304 QGraphicsItem::extension + +Class QAbstractGraphicsShapeItem + size=16 align=8 + base size=16 base align=8 +QAbstractGraphicsShapeItem (0x7fb29d13e070) 0 + vptr=((& QAbstractGraphicsShapeItem::_ZTV26QAbstractGraphicsShapeItem) + 16u) + QGraphicsItem (0x7fb29d13e0e0) 0 + primary-for QAbstractGraphicsShapeItem (0x7fb29d13e070) + +Vtable for QGraphicsPathItem +QGraphicsPathItem::_ZTV17QGraphicsPathItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QGraphicsPathItem) +16 QGraphicsPathItem::~QGraphicsPathItem +24 QGraphicsPathItem::~QGraphicsPathItem +32 QGraphicsItem::advance +40 QGraphicsPathItem::boundingRect +48 QGraphicsPathItem::shape +56 QGraphicsPathItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsPathItem::isObscuredBy +88 QGraphicsPathItem::opaqueArea +96 QGraphicsPathItem::paint +104 QGraphicsPathItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsPathItem::supportsExtension +296 QGraphicsPathItem::setExtension +304 QGraphicsPathItem::extension + +Class QGraphicsPathItem + size=16 align=8 + base size=16 base align=8 +QGraphicsPathItem (0x7fb29d13eee0) 0 + vptr=((& QGraphicsPathItem::_ZTV17QGraphicsPathItem) + 16u) + QAbstractGraphicsShapeItem (0x7fb29d13ef50) 0 + primary-for QGraphicsPathItem (0x7fb29d13eee0) + QGraphicsItem (0x7fb29d13e930) 0 + primary-for QAbstractGraphicsShapeItem (0x7fb29d13ef50) + +Vtable for QGraphicsRectItem +QGraphicsRectItem::_ZTV17QGraphicsRectItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QGraphicsRectItem) +16 QGraphicsRectItem::~QGraphicsRectItem +24 QGraphicsRectItem::~QGraphicsRectItem +32 QGraphicsItem::advance +40 QGraphicsRectItem::boundingRect +48 QGraphicsRectItem::shape +56 QGraphicsRectItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsRectItem::isObscuredBy +88 QGraphicsRectItem::opaqueArea +96 QGraphicsRectItem::paint +104 QGraphicsRectItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsRectItem::supportsExtension +296 QGraphicsRectItem::setExtension +304 QGraphicsRectItem::extension + +Class QGraphicsRectItem + size=16 align=8 + base size=16 base align=8 +QGraphicsRectItem (0x7fb29cf45e70) 0 + vptr=((& QGraphicsRectItem::_ZTV17QGraphicsRectItem) + 16u) + QAbstractGraphicsShapeItem (0x7fb29cf45ee0) 0 + primary-for QGraphicsRectItem (0x7fb29cf45e70) + QGraphicsItem (0x7fb29cf45f50) 0 + primary-for QAbstractGraphicsShapeItem (0x7fb29cf45ee0) + +Vtable for QGraphicsEllipseItem +QGraphicsEllipseItem::_ZTV20QGraphicsEllipseItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QGraphicsEllipseItem) +16 QGraphicsEllipseItem::~QGraphicsEllipseItem +24 QGraphicsEllipseItem::~QGraphicsEllipseItem +32 QGraphicsItem::advance +40 QGraphicsEllipseItem::boundingRect +48 QGraphicsEllipseItem::shape +56 QGraphicsEllipseItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsEllipseItem::isObscuredBy +88 QGraphicsEllipseItem::opaqueArea +96 QGraphicsEllipseItem::paint +104 QGraphicsEllipseItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsEllipseItem::supportsExtension +296 QGraphicsEllipseItem::setExtension +304 QGraphicsEllipseItem::extension + +Class QGraphicsEllipseItem + size=16 align=8 + base size=16 base align=8 +QGraphicsEllipseItem (0x7fb29cf6a150) 0 + vptr=((& QGraphicsEllipseItem::_ZTV20QGraphicsEllipseItem) + 16u) + QAbstractGraphicsShapeItem (0x7fb29cf6a1c0) 0 + primary-for QGraphicsEllipseItem (0x7fb29cf6a150) + QGraphicsItem (0x7fb29cf6a230) 0 + primary-for QAbstractGraphicsShapeItem (0x7fb29cf6a1c0) + +Vtable for QGraphicsPolygonItem +QGraphicsPolygonItem::_ZTV20QGraphicsPolygonItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QGraphicsPolygonItem) +16 QGraphicsPolygonItem::~QGraphicsPolygonItem +24 QGraphicsPolygonItem::~QGraphicsPolygonItem +32 QGraphicsItem::advance +40 QGraphicsPolygonItem::boundingRect +48 QGraphicsPolygonItem::shape +56 QGraphicsPolygonItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsPolygonItem::isObscuredBy +88 QGraphicsPolygonItem::opaqueArea +96 QGraphicsPolygonItem::paint +104 QGraphicsPolygonItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsPolygonItem::supportsExtension +296 QGraphicsPolygonItem::setExtension +304 QGraphicsPolygonItem::extension + +Class QGraphicsPolygonItem + size=16 align=8 + base size=16 base align=8 +QGraphicsPolygonItem (0x7fb29cf7d460) 0 + vptr=((& QGraphicsPolygonItem::_ZTV20QGraphicsPolygonItem) + 16u) + QAbstractGraphicsShapeItem (0x7fb29cf7d4d0) 0 + primary-for QGraphicsPolygonItem (0x7fb29cf7d460) + QGraphicsItem (0x7fb29cf7d540) 0 + primary-for QAbstractGraphicsShapeItem (0x7fb29cf7d4d0) + +Vtable for QGraphicsLineItem +QGraphicsLineItem::_ZTV17QGraphicsLineItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QGraphicsLineItem) +16 QGraphicsLineItem::~QGraphicsLineItem +24 QGraphicsLineItem::~QGraphicsLineItem +32 QGraphicsItem::advance +40 QGraphicsLineItem::boundingRect +48 QGraphicsLineItem::shape +56 QGraphicsLineItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsLineItem::isObscuredBy +88 QGraphicsLineItem::opaqueArea +96 QGraphicsLineItem::paint +104 QGraphicsLineItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsLineItem::supportsExtension +296 QGraphicsLineItem::setExtension +304 QGraphicsLineItem::extension + +Class QGraphicsLineItem + size=16 align=8 + base size=16 base align=8 +QGraphicsLineItem (0x7fb29cf903f0) 0 + vptr=((& QGraphicsLineItem::_ZTV17QGraphicsLineItem) + 16u) + QGraphicsItem (0x7fb29cf90460) 0 + primary-for QGraphicsLineItem (0x7fb29cf903f0) + +Vtable for QGraphicsPixmapItem +QGraphicsPixmapItem::_ZTV19QGraphicsPixmapItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QGraphicsPixmapItem) +16 QGraphicsPixmapItem::~QGraphicsPixmapItem +24 QGraphicsPixmapItem::~QGraphicsPixmapItem +32 QGraphicsItem::advance +40 QGraphicsPixmapItem::boundingRect +48 QGraphicsPixmapItem::shape +56 QGraphicsPixmapItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsPixmapItem::isObscuredBy +88 QGraphicsPixmapItem::opaqueArea +96 QGraphicsPixmapItem::paint +104 QGraphicsPixmapItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsPixmapItem::supportsExtension +296 QGraphicsPixmapItem::setExtension +304 QGraphicsPixmapItem::extension + +Class QGraphicsPixmapItem + size=16 align=8 + base size=16 base align=8 +QGraphicsPixmapItem (0x7fb29cfa4690) 0 + vptr=((& QGraphicsPixmapItem::_ZTV19QGraphicsPixmapItem) + 16u) + QGraphicsItem (0x7fb29cfa4700) 0 + primary-for QGraphicsPixmapItem (0x7fb29cfa4690) + +Vtable for QGraphicsTextItem +QGraphicsTextItem::_ZTV17QGraphicsTextItem: 82u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QGraphicsTextItem) +16 QGraphicsTextItem::metaObject +24 QGraphicsTextItem::qt_metacast +32 QGraphicsTextItem::qt_metacall +40 QGraphicsTextItem::~QGraphicsTextItem +48 QGraphicsTextItem::~QGraphicsTextItem +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsTextItem::boundingRect +120 QGraphicsTextItem::shape +128 QGraphicsTextItem::contains +136 QGraphicsTextItem::paint +144 QGraphicsTextItem::isObscuredBy +152 QGraphicsTextItem::opaqueArea +160 QGraphicsTextItem::type +168 QGraphicsTextItem::sceneEvent +176 QGraphicsTextItem::mousePressEvent +184 QGraphicsTextItem::mouseMoveEvent +192 QGraphicsTextItem::mouseReleaseEvent +200 QGraphicsTextItem::mouseDoubleClickEvent +208 QGraphicsTextItem::contextMenuEvent +216 QGraphicsTextItem::keyPressEvent +224 QGraphicsTextItem::keyReleaseEvent +232 QGraphicsTextItem::focusInEvent +240 QGraphicsTextItem::focusOutEvent +248 QGraphicsTextItem::dragEnterEvent +256 QGraphicsTextItem::dragLeaveEvent +264 QGraphicsTextItem::dragMoveEvent +272 QGraphicsTextItem::dropEvent +280 QGraphicsTextItem::inputMethodEvent +288 QGraphicsTextItem::hoverEnterEvent +296 QGraphicsTextItem::hoverMoveEvent +304 QGraphicsTextItem::hoverLeaveEvent +312 QGraphicsTextItem::inputMethodQuery +320 QGraphicsTextItem::supportsExtension +328 QGraphicsTextItem::setExtension +336 QGraphicsTextItem::extension +344 (int (*)(...))-0x00000000000000010 +352 (int (*)(...))(& _ZTI17QGraphicsTextItem) +360 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItemD1Ev +368 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItemD0Ev +376 QGraphicsItem::advance +384 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem12boundingRectEv +392 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem5shapeEv +400 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem8containsERK7QPointF +408 QGraphicsItem::collidesWithItem +416 QGraphicsItem::collidesWithPath +424 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem12isObscuredByEPK13QGraphicsItem +432 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem10opaqueAreaEv +440 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget +448 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem4typeEv +456 QGraphicsItem::sceneEventFilter +464 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem10sceneEventEP6QEvent +472 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem16contextMenuEventEP30QGraphicsSceneContextMenuEvent +480 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem14dragEnterEventEP27QGraphicsSceneDragDropEvent +488 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem14dragLeaveEventEP27QGraphicsSceneDragDropEvent +496 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem13dragMoveEventEP27QGraphicsSceneDragDropEvent +504 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem9dropEventEP27QGraphicsSceneDragDropEvent +512 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem12focusInEventEP11QFocusEvent +520 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem13focusOutEventEP11QFocusEvent +528 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem15hoverEnterEventEP24QGraphicsSceneHoverEvent +536 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem14hoverMoveEventEP24QGraphicsSceneHoverEvent +544 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem15hoverLeaveEventEP24QGraphicsSceneHoverEvent +552 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem13keyPressEventEP9QKeyEvent +560 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem15keyReleaseEventEP9QKeyEvent +568 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem15mousePressEventEP24QGraphicsSceneMouseEvent +576 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem14mouseMoveEventEP24QGraphicsSceneMouseEvent +584 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem17mouseReleaseEventEP24QGraphicsSceneMouseEvent +592 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem21mouseDoubleClickEventEP24QGraphicsSceneMouseEvent +600 QGraphicsItem::wheelEvent +608 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem16inputMethodEventEP17QInputMethodEvent +616 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem16inputMethodQueryEN2Qt16InputMethodQueryE +624 QGraphicsItem::itemChange +632 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem17supportsExtensionEN13QGraphicsItem9ExtensionE +640 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem12setExtensionEN13QGraphicsItem9ExtensionERK8QVariant +648 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem9extensionERK8QVariant + +Class QGraphicsTextItem + size=40 align=8 + base size=40 base align=8 +QGraphicsTextItem (0x7fb29cfb3930) 0 + vptr=((& QGraphicsTextItem::_ZTV17QGraphicsTextItem) + 16u) + QGraphicsObject (0x7fb29cfa8700) 0 + primary-for QGraphicsTextItem (0x7fb29cfb3930) + QObject (0x7fb29cfb39a0) 0 + primary-for QGraphicsObject (0x7fb29cfa8700) + QGraphicsItem (0x7fb29cfb3a10) 16 + vptr=((& QGraphicsTextItem::_ZTV17QGraphicsTextItem) + 360u) + +Vtable for QGraphicsSimpleTextItem +QGraphicsSimpleTextItem::_ZTV23QGraphicsSimpleTextItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QGraphicsSimpleTextItem) +16 QGraphicsSimpleTextItem::~QGraphicsSimpleTextItem +24 QGraphicsSimpleTextItem::~QGraphicsSimpleTextItem +32 QGraphicsItem::advance +40 QGraphicsSimpleTextItem::boundingRect +48 QGraphicsSimpleTextItem::shape +56 QGraphicsSimpleTextItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsSimpleTextItem::isObscuredBy +88 QGraphicsSimpleTextItem::opaqueArea +96 QGraphicsSimpleTextItem::paint +104 QGraphicsSimpleTextItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsSimpleTextItem::supportsExtension +296 QGraphicsSimpleTextItem::setExtension +304 QGraphicsSimpleTextItem::extension + +Class QGraphicsSimpleTextItem + size=16 align=8 + base size=16 base align=8 +QGraphicsSimpleTextItem (0x7fb29cfd5380) 0 + vptr=((& QGraphicsSimpleTextItem::_ZTV23QGraphicsSimpleTextItem) + 16u) + QAbstractGraphicsShapeItem (0x7fb29cfea000) 0 + primary-for QGraphicsSimpleTextItem (0x7fb29cfd5380) + QGraphicsItem (0x7fb29cfea070) 0 + primary-for QAbstractGraphicsShapeItem (0x7fb29cfea000) + +Vtable for QGraphicsItemGroup +QGraphicsItemGroup::_ZTV18QGraphicsItemGroup: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QGraphicsItemGroup) +16 QGraphicsItemGroup::~QGraphicsItemGroup +24 QGraphicsItemGroup::~QGraphicsItemGroup +32 QGraphicsItem::advance +40 QGraphicsItemGroup::boundingRect +48 QGraphicsItem::shape +56 QGraphicsItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsItemGroup::isObscuredBy +88 QGraphicsItemGroup::opaqueArea +96 QGraphicsItemGroup::paint +104 QGraphicsItemGroup::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsItem::supportsExtension +296 QGraphicsItem::setExtension +304 QGraphicsItem::extension + +Class QGraphicsItemGroup + size=16 align=8 + base size=16 base align=8 +QGraphicsItemGroup (0x7fb29cfeaf50) 0 + vptr=((& QGraphicsItemGroup::_ZTV18QGraphicsItemGroup) + 16u) + QGraphicsItem (0x7fb29cfea9a0) 0 + primary-for QGraphicsItemGroup (0x7fb29cfeaf50) + +Vtable for QGraphicsLayoutItem +QGraphicsLayoutItem::_ZTV19QGraphicsLayoutItem: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QGraphicsLayoutItem) +16 QGraphicsLayoutItem::~QGraphicsLayoutItem +24 QGraphicsLayoutItem::~QGraphicsLayoutItem +32 QGraphicsLayoutItem::setGeometry +40 QGraphicsLayoutItem::getContentsMargins +48 QGraphicsLayoutItem::updateGeometry +56 __cxa_pure_virtual + +Class QGraphicsLayoutItem + size=16 align=8 + base size=16 base align=8 +QGraphicsLayoutItem (0x7fb29d00d850) 0 + vptr=((& QGraphicsLayoutItem::_ZTV19QGraphicsLayoutItem) + 16u) + +Vtable for QGraphicsLayout +QGraphicsLayout::_ZTV15QGraphicsLayout: 13u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QGraphicsLayout) +16 QGraphicsLayout::~QGraphicsLayout +24 QGraphicsLayout::~QGraphicsLayout +32 QGraphicsLayoutItem::setGeometry +40 QGraphicsLayout::getContentsMargins +48 QGraphicsLayout::updateGeometry +56 __cxa_pure_virtual +64 QGraphicsLayout::invalidate +72 QGraphicsLayout::widgetEvent +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual + +Class QGraphicsLayout + size=16 align=8 + base size=16 base align=8 +QGraphicsLayout (0x7fb29ce50070) 0 + vptr=((& QGraphicsLayout::_ZTV15QGraphicsLayout) + 16u) + QGraphicsLayoutItem (0x7fb29ce500e0) 0 + primary-for QGraphicsLayout (0x7fb29ce50070) + +Vtable for QGraphicsAnchor +QGraphicsAnchor::_ZTV15QGraphicsAnchor: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QGraphicsAnchor) +16 QGraphicsAnchor::metaObject +24 QGraphicsAnchor::qt_metacast +32 QGraphicsAnchor::qt_metacall +40 QGraphicsAnchor::~QGraphicsAnchor +48 QGraphicsAnchor::~QGraphicsAnchor +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QGraphicsAnchor + size=16 align=8 + base size=16 base align=8 +QGraphicsAnchor (0x7fb29ce5e850) 0 + vptr=((& QGraphicsAnchor::_ZTV15QGraphicsAnchor) + 16u) + QObject (0x7fb29ce5e8c0) 0 + primary-for QGraphicsAnchor (0x7fb29ce5e850) + +Vtable for QGraphicsAnchorLayout +QGraphicsAnchorLayout::_ZTV21QGraphicsAnchorLayout: 13u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QGraphicsAnchorLayout) +16 QGraphicsAnchorLayout::~QGraphicsAnchorLayout +24 QGraphicsAnchorLayout::~QGraphicsAnchorLayout +32 QGraphicsAnchorLayout::setGeometry +40 QGraphicsLayout::getContentsMargins +48 QGraphicsLayout::updateGeometry +56 QGraphicsAnchorLayout::sizeHint +64 QGraphicsAnchorLayout::invalidate +72 QGraphicsLayout::widgetEvent +80 QGraphicsAnchorLayout::count +88 QGraphicsAnchorLayout::itemAt +96 QGraphicsAnchorLayout::removeAt + +Class QGraphicsAnchorLayout + size=16 align=8 + base size=16 base align=8 +QGraphicsAnchorLayout (0x7fb29ce72d90) 0 + vptr=((& QGraphicsAnchorLayout::_ZTV21QGraphicsAnchorLayout) + 16u) + QGraphicsLayout (0x7fb29ce72e00) 0 + primary-for QGraphicsAnchorLayout (0x7fb29ce72d90) + QGraphicsLayoutItem (0x7fb29ce72e70) 0 + primary-for QGraphicsLayout (0x7fb29ce72e00) + +Vtable for QGraphicsGridLayout +QGraphicsGridLayout::_ZTV19QGraphicsGridLayout: 13u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QGraphicsGridLayout) +16 QGraphicsGridLayout::~QGraphicsGridLayout +24 QGraphicsGridLayout::~QGraphicsGridLayout +32 QGraphicsGridLayout::setGeometry +40 QGraphicsLayout::getContentsMargins +48 QGraphicsLayout::updateGeometry +56 QGraphicsGridLayout::sizeHint +64 QGraphicsGridLayout::invalidate +72 QGraphicsLayout::widgetEvent +80 QGraphicsGridLayout::count +88 QGraphicsGridLayout::itemAt +96 QGraphicsGridLayout::removeAt + +Class QGraphicsGridLayout + size=16 align=8 + base size=16 base align=8 +QGraphicsGridLayout (0x7fb29ce8a0e0) 0 + vptr=((& QGraphicsGridLayout::_ZTV19QGraphicsGridLayout) + 16u) + QGraphicsLayout (0x7fb29ce8a150) 0 + primary-for QGraphicsGridLayout (0x7fb29ce8a0e0) + QGraphicsLayoutItem (0x7fb29ce8a1c0) 0 + primary-for QGraphicsLayout (0x7fb29ce8a150) + +Vtable for QGraphicsItemAnimation +QGraphicsItemAnimation::_ZTV22QGraphicsItemAnimation: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QGraphicsItemAnimation) +16 QGraphicsItemAnimation::metaObject +24 QGraphicsItemAnimation::qt_metacast +32 QGraphicsItemAnimation::qt_metacall +40 QGraphicsItemAnimation::~QGraphicsItemAnimation +48 QGraphicsItemAnimation::~QGraphicsItemAnimation +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsItemAnimation::beforeAnimationStep +120 QGraphicsItemAnimation::afterAnimationStep + +Class QGraphicsItemAnimation + size=24 align=8 + base size=24 base align=8 +QGraphicsItemAnimation (0x7fb29cea74d0) 0 + vptr=((& QGraphicsItemAnimation::_ZTV22QGraphicsItemAnimation) + 16u) + QObject (0x7fb29cea7540) 0 + primary-for QGraphicsItemAnimation (0x7fb29cea74d0) + +Vtable for QGraphicsLinearLayout +QGraphicsLinearLayout::_ZTV21QGraphicsLinearLayout: 13u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QGraphicsLinearLayout) +16 QGraphicsLinearLayout::~QGraphicsLinearLayout +24 QGraphicsLinearLayout::~QGraphicsLinearLayout +32 QGraphicsLinearLayout::setGeometry +40 QGraphicsLayout::getContentsMargins +48 QGraphicsLayout::updateGeometry +56 QGraphicsLinearLayout::sizeHint +64 QGraphicsLinearLayout::invalidate +72 QGraphicsLayout::widgetEvent +80 QGraphicsLinearLayout::count +88 QGraphicsLinearLayout::itemAt +96 QGraphicsLinearLayout::removeAt + +Class QGraphicsLinearLayout + size=16 align=8 + base size=16 base align=8 +QGraphicsLinearLayout (0x7fb29cec0850) 0 + vptr=((& QGraphicsLinearLayout::_ZTV21QGraphicsLinearLayout) + 16u) + QGraphicsLayout (0x7fb29cec08c0) 0 + primary-for QGraphicsLinearLayout (0x7fb29cec0850) + QGraphicsLayoutItem (0x7fb29cec0930) 0 + primary-for QGraphicsLayout (0x7fb29cec08c0) + +Vtable for QGraphicsWidget +QGraphicsWidget::_ZTV15QGraphicsWidget: 92u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QGraphicsWidget) +16 QGraphicsWidget::metaObject +24 QGraphicsWidget::qt_metacast +32 QGraphicsWidget::qt_metacall +40 QGraphicsWidget::~QGraphicsWidget +48 QGraphicsWidget::~QGraphicsWidget +56 QGraphicsWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsWidget::setGeometry +120 QGraphicsWidget::getContentsMargins +128 QGraphicsWidget::type +136 QGraphicsWidget::paint +144 QGraphicsWidget::paintWindowFrame +152 QGraphicsWidget::boundingRect +160 QGraphicsWidget::shape +168 QGraphicsWidget::initStyleOption +176 QGraphicsWidget::sizeHint +184 QGraphicsWidget::updateGeometry +192 QGraphicsWidget::itemChange +200 QGraphicsWidget::propertyChange +208 QGraphicsWidget::sceneEvent +216 QGraphicsWidget::windowFrameEvent +224 QGraphicsWidget::windowFrameSectionAt +232 QGraphicsWidget::changeEvent +240 QGraphicsWidget::closeEvent +248 QGraphicsWidget::focusInEvent +256 QGraphicsWidget::focusNextPrevChild +264 QGraphicsWidget::focusOutEvent +272 QGraphicsWidget::hideEvent +280 QGraphicsWidget::moveEvent +288 QGraphicsWidget::polishEvent +296 QGraphicsWidget::resizeEvent +304 QGraphicsWidget::showEvent +312 QGraphicsWidget::hoverMoveEvent +320 QGraphicsWidget::hoverLeaveEvent +328 QGraphicsWidget::grabMouseEvent +336 QGraphicsWidget::ungrabMouseEvent +344 QGraphicsWidget::grabKeyboardEvent +352 QGraphicsWidget::ungrabKeyboardEvent +360 (int (*)(...))-0x00000000000000010 +368 (int (*)(...))(& _ZTI15QGraphicsWidget) +376 QGraphicsWidget::_ZThn16_N15QGraphicsWidgetD1Ev +384 QGraphicsWidget::_ZThn16_N15QGraphicsWidgetD0Ev +392 QGraphicsItem::advance +400 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget12boundingRectEv +408 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget5shapeEv +416 QGraphicsItem::contains +424 QGraphicsItem::collidesWithItem +432 QGraphicsItem::collidesWithPath +440 QGraphicsItem::isObscuredBy +448 QGraphicsItem::opaqueArea +456 QGraphicsWidget::_ZThn16_N15QGraphicsWidget5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget +464 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget4typeEv +472 QGraphicsItem::sceneEventFilter +480 QGraphicsWidget::_ZThn16_N15QGraphicsWidget10sceneEventEP6QEvent +488 QGraphicsItem::contextMenuEvent +496 QGraphicsItem::dragEnterEvent +504 QGraphicsItem::dragLeaveEvent +512 QGraphicsItem::dragMoveEvent +520 QGraphicsItem::dropEvent +528 QGraphicsWidget::_ZThn16_N15QGraphicsWidget12focusInEventEP11QFocusEvent +536 QGraphicsWidget::_ZThn16_N15QGraphicsWidget13focusOutEventEP11QFocusEvent +544 QGraphicsItem::hoverEnterEvent +552 QGraphicsWidget::_ZThn16_N15QGraphicsWidget14hoverMoveEventEP24QGraphicsSceneHoverEvent +560 QGraphicsWidget::_ZThn16_N15QGraphicsWidget15hoverLeaveEventEP24QGraphicsSceneHoverEvent +568 QGraphicsItem::keyPressEvent +576 QGraphicsItem::keyReleaseEvent +584 QGraphicsItem::mousePressEvent +592 QGraphicsItem::mouseMoveEvent +600 QGraphicsItem::mouseReleaseEvent +608 QGraphicsItem::mouseDoubleClickEvent +616 QGraphicsItem::wheelEvent +624 QGraphicsItem::inputMethodEvent +632 QGraphicsItem::inputMethodQuery +640 QGraphicsWidget::_ZThn16_N15QGraphicsWidget10itemChangeEN13QGraphicsItem18GraphicsItemChangeERK8QVariant +648 QGraphicsItem::supportsExtension +656 QGraphicsItem::setExtension +664 QGraphicsItem::extension +672 (int (*)(...))-0x00000000000000020 +680 (int (*)(...))(& _ZTI15QGraphicsWidget) +688 QGraphicsWidget::_ZThn32_N15QGraphicsWidgetD1Ev +696 QGraphicsWidget::_ZThn32_N15QGraphicsWidgetD0Ev +704 QGraphicsWidget::_ZThn32_N15QGraphicsWidget11setGeometryERK6QRectF +712 QGraphicsWidget::_ZThn32_NK15QGraphicsWidget18getContentsMarginsEPdS0_S0_S0_ +720 QGraphicsWidget::_ZThn32_N15QGraphicsWidget14updateGeometryEv +728 QGraphicsWidget::_ZThn32_NK15QGraphicsWidget8sizeHintEN2Qt8SizeHintERK6QSizeF + +Class QGraphicsWidget + size=48 align=8 + base size=48 base align=8 +QGraphicsWidget (0x7fb29cedd000) 0 + vptr=((& QGraphicsWidget::_ZTV15QGraphicsWidget) + 16u) + QGraphicsObject (0x7fb29cedd080) 0 + primary-for QGraphicsWidget (0x7fb29cedd000) + QObject (0x7fb29cedc070) 0 + primary-for QGraphicsObject (0x7fb29cedd080) + QGraphicsItem (0x7fb29cedc0e0) 16 + vptr=((& QGraphicsWidget::_ZTV15QGraphicsWidget) + 376u) + QGraphicsLayoutItem (0x7fb29cedc150) 32 + vptr=((& QGraphicsWidget::_ZTV15QGraphicsWidget) + 688u) + +Vtable for QGraphicsProxyWidget +QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget: 105u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QGraphicsProxyWidget) +16 QGraphicsProxyWidget::metaObject +24 QGraphicsProxyWidget::qt_metacast +32 QGraphicsProxyWidget::qt_metacall +40 QGraphicsProxyWidget::~QGraphicsProxyWidget +48 QGraphicsProxyWidget::~QGraphicsProxyWidget +56 QGraphicsProxyWidget::event +64 QGraphicsProxyWidget::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsProxyWidget::setGeometry +120 QGraphicsWidget::getContentsMargins +128 QGraphicsProxyWidget::type +136 QGraphicsProxyWidget::paint +144 QGraphicsWidget::paintWindowFrame +152 QGraphicsWidget::boundingRect +160 QGraphicsWidget::shape +168 QGraphicsWidget::initStyleOption +176 QGraphicsProxyWidget::sizeHint +184 QGraphicsWidget::updateGeometry +192 QGraphicsProxyWidget::itemChange +200 QGraphicsWidget::propertyChange +208 QGraphicsWidget::sceneEvent +216 QGraphicsWidget::windowFrameEvent +224 QGraphicsWidget::windowFrameSectionAt +232 QGraphicsWidget::changeEvent +240 QGraphicsWidget::closeEvent +248 QGraphicsProxyWidget::focusInEvent +256 QGraphicsProxyWidget::focusNextPrevChild +264 QGraphicsProxyWidget::focusOutEvent +272 QGraphicsProxyWidget::hideEvent +280 QGraphicsWidget::moveEvent +288 QGraphicsWidget::polishEvent +296 QGraphicsProxyWidget::resizeEvent +304 QGraphicsProxyWidget::showEvent +312 QGraphicsProxyWidget::hoverMoveEvent +320 QGraphicsProxyWidget::hoverLeaveEvent +328 QGraphicsProxyWidget::grabMouseEvent +336 QGraphicsProxyWidget::ungrabMouseEvent +344 QGraphicsWidget::grabKeyboardEvent +352 QGraphicsWidget::ungrabKeyboardEvent +360 QGraphicsProxyWidget::contextMenuEvent +368 QGraphicsProxyWidget::dragEnterEvent +376 QGraphicsProxyWidget::dragLeaveEvent +384 QGraphicsProxyWidget::dragMoveEvent +392 QGraphicsProxyWidget::dropEvent +400 QGraphicsProxyWidget::hoverEnterEvent +408 QGraphicsProxyWidget::mouseMoveEvent +416 QGraphicsProxyWidget::mousePressEvent +424 QGraphicsProxyWidget::mouseReleaseEvent +432 QGraphicsProxyWidget::mouseDoubleClickEvent +440 QGraphicsProxyWidget::wheelEvent +448 QGraphicsProxyWidget::keyPressEvent +456 QGraphicsProxyWidget::keyReleaseEvent +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI20QGraphicsProxyWidget) +480 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidgetD1Ev +488 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidgetD0Ev +496 QGraphicsItem::advance +504 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget12boundingRectEv +512 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget5shapeEv +520 QGraphicsItem::contains +528 QGraphicsItem::collidesWithItem +536 QGraphicsItem::collidesWithPath +544 QGraphicsItem::isObscuredBy +552 QGraphicsItem::opaqueArea +560 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget +568 QGraphicsProxyWidget::_ZThn16_NK20QGraphicsProxyWidget4typeEv +576 QGraphicsItem::sceneEventFilter +584 QGraphicsWidget::_ZThn16_N15QGraphicsWidget10sceneEventEP6QEvent +592 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget16contextMenuEventEP30QGraphicsSceneContextMenuEvent +600 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget14dragEnterEventEP27QGraphicsSceneDragDropEvent +608 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget14dragLeaveEventEP27QGraphicsSceneDragDropEvent +616 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget13dragMoveEventEP27QGraphicsSceneDragDropEvent +624 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget9dropEventEP27QGraphicsSceneDragDropEvent +632 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget12focusInEventEP11QFocusEvent +640 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget13focusOutEventEP11QFocusEvent +648 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget15hoverEnterEventEP24QGraphicsSceneHoverEvent +656 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget14hoverMoveEventEP24QGraphicsSceneHoverEvent +664 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget15hoverLeaveEventEP24QGraphicsSceneHoverEvent +672 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget13keyPressEventEP9QKeyEvent +680 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget15keyReleaseEventEP9QKeyEvent +688 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget15mousePressEventEP24QGraphicsSceneMouseEvent +696 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget14mouseMoveEventEP24QGraphicsSceneMouseEvent +704 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget17mouseReleaseEventEP24QGraphicsSceneMouseEvent +712 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget21mouseDoubleClickEventEP24QGraphicsSceneMouseEvent +720 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget10wheelEventEP24QGraphicsSceneWheelEvent +728 QGraphicsItem::inputMethodEvent +736 QGraphicsItem::inputMethodQuery +744 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget10itemChangeEN13QGraphicsItem18GraphicsItemChangeERK8QVariant +752 QGraphicsItem::supportsExtension +760 QGraphicsItem::setExtension +768 QGraphicsItem::extension +776 (int (*)(...))-0x00000000000000020 +784 (int (*)(...))(& _ZTI20QGraphicsProxyWidget) +792 QGraphicsProxyWidget::_ZThn32_N20QGraphicsProxyWidgetD1Ev +800 QGraphicsProxyWidget::_ZThn32_N20QGraphicsProxyWidgetD0Ev +808 QGraphicsProxyWidget::_ZThn32_N20QGraphicsProxyWidget11setGeometryERK6QRectF +816 QGraphicsWidget::_ZThn32_NK15QGraphicsWidget18getContentsMarginsEPdS0_S0_S0_ +824 QGraphicsWidget::_ZThn32_N15QGraphicsWidget14updateGeometryEv +832 QGraphicsProxyWidget::_ZThn32_NK20QGraphicsProxyWidget8sizeHintEN2Qt8SizeHintERK6QSizeF + +Class QGraphicsProxyWidget + size=48 align=8 + base size=48 base align=8 +QGraphicsProxyWidget (0x7fb29cf168c0) 0 + vptr=((& QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget) + 16u) + QGraphicsWidget (0x7fb29cf1a000) 0 + primary-for QGraphicsProxyWidget (0x7fb29cf168c0) + QGraphicsObject (0x7fb29cf1a080) 0 + primary-for QGraphicsWidget (0x7fb29cf1a000) + QObject (0x7fb29cf16930) 0 + primary-for QGraphicsObject (0x7fb29cf1a080) + QGraphicsItem (0x7fb29cf169a0) 16 + vptr=((& QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget) + 480u) + QGraphicsLayoutItem (0x7fb29cf16a10) 32 + vptr=((& QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget) + 792u) + +Vtable for QGraphicsScene +QGraphicsScene::_ZTV14QGraphicsScene: 34u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QGraphicsScene) +16 QGraphicsScene::metaObject +24 QGraphicsScene::qt_metacast +32 QGraphicsScene::qt_metacall +40 QGraphicsScene::~QGraphicsScene +48 QGraphicsScene::~QGraphicsScene +56 QGraphicsScene::event +64 QGraphicsScene::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsScene::inputMethodQuery +120 QGraphicsScene::contextMenuEvent +128 QGraphicsScene::dragEnterEvent +136 QGraphicsScene::dragMoveEvent +144 QGraphicsScene::dragLeaveEvent +152 QGraphicsScene::dropEvent +160 QGraphicsScene::focusInEvent +168 QGraphicsScene::focusOutEvent +176 QGraphicsScene::helpEvent +184 QGraphicsScene::keyPressEvent +192 QGraphicsScene::keyReleaseEvent +200 QGraphicsScene::mousePressEvent +208 QGraphicsScene::mouseMoveEvent +216 QGraphicsScene::mouseReleaseEvent +224 QGraphicsScene::mouseDoubleClickEvent +232 QGraphicsScene::wheelEvent +240 QGraphicsScene::inputMethodEvent +248 QGraphicsScene::drawBackground +256 QGraphicsScene::drawForeground +264 QGraphicsScene::drawItems + +Class QGraphicsScene + size=16 align=8 + base size=16 base align=8 +QGraphicsScene (0x7fb29cd40930) 0 + vptr=((& QGraphicsScene::_ZTV14QGraphicsScene) + 16u) + QObject (0x7fb29cd409a0) 0 + primary-for QGraphicsScene (0x7fb29cd40930) + +Vtable for QGraphicsSceneEvent +QGraphicsSceneEvent::_ZTV19QGraphicsSceneEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QGraphicsSceneEvent) +16 QGraphicsSceneEvent::~QGraphicsSceneEvent +24 QGraphicsSceneEvent::~QGraphicsSceneEvent + +Class QGraphicsSceneEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneEvent (0x7fb29cdf5850) 0 + vptr=((& QGraphicsSceneEvent::_ZTV19QGraphicsSceneEvent) + 16u) + QEvent (0x7fb29cdf58c0) 0 + primary-for QGraphicsSceneEvent (0x7fb29cdf5850) + +Vtable for QGraphicsSceneMouseEvent +QGraphicsSceneMouseEvent::_ZTV24QGraphicsSceneMouseEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QGraphicsSceneMouseEvent) +16 QGraphicsSceneMouseEvent::~QGraphicsSceneMouseEvent +24 QGraphicsSceneMouseEvent::~QGraphicsSceneMouseEvent + +Class QGraphicsSceneMouseEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneMouseEvent (0x7fb29ce23310) 0 + vptr=((& QGraphicsSceneMouseEvent::_ZTV24QGraphicsSceneMouseEvent) + 16u) + QGraphicsSceneEvent (0x7fb29ce23380) 0 + primary-for QGraphicsSceneMouseEvent (0x7fb29ce23310) + QEvent (0x7fb29ce233f0) 0 + primary-for QGraphicsSceneEvent (0x7fb29ce23380) + +Vtable for QGraphicsSceneWheelEvent +QGraphicsSceneWheelEvent::_ZTV24QGraphicsSceneWheelEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QGraphicsSceneWheelEvent) +16 QGraphicsSceneWheelEvent::~QGraphicsSceneWheelEvent +24 QGraphicsSceneWheelEvent::~QGraphicsSceneWheelEvent + +Class QGraphicsSceneWheelEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneWheelEvent (0x7fb29ce23cb0) 0 + vptr=((& QGraphicsSceneWheelEvent::_ZTV24QGraphicsSceneWheelEvent) + 16u) + QGraphicsSceneEvent (0x7fb29ce23d20) 0 + primary-for QGraphicsSceneWheelEvent (0x7fb29ce23cb0) + QEvent (0x7fb29ce23d90) 0 + primary-for QGraphicsSceneEvent (0x7fb29ce23d20) + +Vtable for QGraphicsSceneContextMenuEvent +QGraphicsSceneContextMenuEvent::_ZTV30QGraphicsSceneContextMenuEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI30QGraphicsSceneContextMenuEvent) +16 QGraphicsSceneContextMenuEvent::~QGraphicsSceneContextMenuEvent +24 QGraphicsSceneContextMenuEvent::~QGraphicsSceneContextMenuEvent + +Class QGraphicsSceneContextMenuEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneContextMenuEvent (0x7fb29ce395b0) 0 + vptr=((& QGraphicsSceneContextMenuEvent::_ZTV30QGraphicsSceneContextMenuEvent) + 16u) + QGraphicsSceneEvent (0x7fb29ce39620) 0 + primary-for QGraphicsSceneContextMenuEvent (0x7fb29ce395b0) + QEvent (0x7fb29ce39690) 0 + primary-for QGraphicsSceneEvent (0x7fb29ce39620) + +Vtable for QGraphicsSceneHoverEvent +QGraphicsSceneHoverEvent::_ZTV24QGraphicsSceneHoverEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QGraphicsSceneHoverEvent) +16 QGraphicsSceneHoverEvent::~QGraphicsSceneHoverEvent +24 QGraphicsSceneHoverEvent::~QGraphicsSceneHoverEvent + +Class QGraphicsSceneHoverEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneHoverEvent (0x7fb29cc450e0) 0 + vptr=((& QGraphicsSceneHoverEvent::_ZTV24QGraphicsSceneHoverEvent) + 16u) + QGraphicsSceneEvent (0x7fb29cc45150) 0 + primary-for QGraphicsSceneHoverEvent (0x7fb29cc450e0) + QEvent (0x7fb29cc451c0) 0 + primary-for QGraphicsSceneEvent (0x7fb29cc45150) + +Vtable for QGraphicsSceneHelpEvent +QGraphicsSceneHelpEvent::_ZTV23QGraphicsSceneHelpEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QGraphicsSceneHelpEvent) +16 QGraphicsSceneHelpEvent::~QGraphicsSceneHelpEvent +24 QGraphicsSceneHelpEvent::~QGraphicsSceneHelpEvent + +Class QGraphicsSceneHelpEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneHelpEvent (0x7fb29cc45a80) 0 + vptr=((& QGraphicsSceneHelpEvent::_ZTV23QGraphicsSceneHelpEvent) + 16u) + QGraphicsSceneEvent (0x7fb29cc45af0) 0 + primary-for QGraphicsSceneHelpEvent (0x7fb29cc45a80) + QEvent (0x7fb29cc45b60) 0 + primary-for QGraphicsSceneEvent (0x7fb29cc45af0) + +Vtable for QGraphicsSceneDragDropEvent +QGraphicsSceneDragDropEvent::_ZTV27QGraphicsSceneDragDropEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QGraphicsSceneDragDropEvent) +16 QGraphicsSceneDragDropEvent::~QGraphicsSceneDragDropEvent +24 QGraphicsSceneDragDropEvent::~QGraphicsSceneDragDropEvent + +Class QGraphicsSceneDragDropEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneDragDropEvent (0x7fb29cc57380) 0 + vptr=((& QGraphicsSceneDragDropEvent::_ZTV27QGraphicsSceneDragDropEvent) + 16u) + QGraphicsSceneEvent (0x7fb29cc573f0) 0 + primary-for QGraphicsSceneDragDropEvent (0x7fb29cc57380) + QEvent (0x7fb29cc57460) 0 + primary-for QGraphicsSceneEvent (0x7fb29cc573f0) + +Vtable for QGraphicsSceneResizeEvent +QGraphicsSceneResizeEvent::_ZTV25QGraphicsSceneResizeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QGraphicsSceneResizeEvent) +16 QGraphicsSceneResizeEvent::~QGraphicsSceneResizeEvent +24 QGraphicsSceneResizeEvent::~QGraphicsSceneResizeEvent + +Class QGraphicsSceneResizeEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneResizeEvent (0x7fb29cc57d20) 0 + vptr=((& QGraphicsSceneResizeEvent::_ZTV25QGraphicsSceneResizeEvent) + 16u) + QGraphicsSceneEvent (0x7fb29cc57d90) 0 + primary-for QGraphicsSceneResizeEvent (0x7fb29cc57d20) + QEvent (0x7fb29cc57e00) 0 + primary-for QGraphicsSceneEvent (0x7fb29cc57d90) + +Vtable for QGraphicsSceneMoveEvent +QGraphicsSceneMoveEvent::_ZTV23QGraphicsSceneMoveEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QGraphicsSceneMoveEvent) +16 QGraphicsSceneMoveEvent::~QGraphicsSceneMoveEvent +24 QGraphicsSceneMoveEvent::~QGraphicsSceneMoveEvent + +Class QGraphicsSceneMoveEvent + size=32 align=8 + base size=32 base align=8 +QGraphicsSceneMoveEvent (0x7fb29cc6c460) 0 + vptr=((& QGraphicsSceneMoveEvent::_ZTV23QGraphicsSceneMoveEvent) + 16u) + QGraphicsSceneEvent (0x7fb29cc6c4d0) 0 + primary-for QGraphicsSceneMoveEvent (0x7fb29cc6c460) + QEvent (0x7fb29cc6c540) 0 + primary-for QGraphicsSceneEvent (0x7fb29cc6c4d0) + +Vtable for QGraphicsTransform +QGraphicsTransform::_ZTV18QGraphicsTransform: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QGraphicsTransform) +16 QGraphicsTransform::metaObject +24 QGraphicsTransform::qt_metacast +32 QGraphicsTransform::qt_metacall +40 QGraphicsTransform::~QGraphicsTransform +48 QGraphicsTransform::~QGraphicsTransform +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual + +Class QGraphicsTransform + size=16 align=8 + base size=16 base align=8 +QGraphicsTransform (0x7fb29cc6cc40) 0 + vptr=((& QGraphicsTransform::_ZTV18QGraphicsTransform) + 16u) + QObject (0x7fb29cc6ccb0) 0 + primary-for QGraphicsTransform (0x7fb29cc6cc40) + +Vtable for QGraphicsScale +QGraphicsScale::_ZTV14QGraphicsScale: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QGraphicsScale) +16 QGraphicsScale::metaObject +24 QGraphicsScale::qt_metacast +32 QGraphicsScale::qt_metacall +40 QGraphicsScale::~QGraphicsScale +48 QGraphicsScale::~QGraphicsScale +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsScale::applyTo + +Class QGraphicsScale + size=16 align=8 + base size=16 base align=8 +QGraphicsScale (0x7fb29cc8b150) 0 + vptr=((& QGraphicsScale::_ZTV14QGraphicsScale) + 16u) + QGraphicsTransform (0x7fb29cc8b1c0) 0 + primary-for QGraphicsScale (0x7fb29cc8b150) + QObject (0x7fb29cc8b230) 0 + primary-for QGraphicsTransform (0x7fb29cc8b1c0) + +Vtable for QGraphicsRotation +QGraphicsRotation::_ZTV17QGraphicsRotation: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QGraphicsRotation) +16 QGraphicsRotation::metaObject +24 QGraphicsRotation::qt_metacast +32 QGraphicsRotation::qt_metacall +40 QGraphicsRotation::~QGraphicsRotation +48 QGraphicsRotation::~QGraphicsRotation +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsRotation::applyTo + +Class QGraphicsRotation + size=16 align=8 + base size=16 base align=8 +QGraphicsRotation (0x7fb29cc9f620) 0 + vptr=((& QGraphicsRotation::_ZTV17QGraphicsRotation) + 16u) + QGraphicsTransform (0x7fb29cc9f690) 0 + primary-for QGraphicsRotation (0x7fb29cc9f620) + QObject (0x7fb29cc9f700) 0 + primary-for QGraphicsTransform (0x7fb29cc9f690) + +Vtable for QScrollArea +QScrollArea::_ZTV11QScrollArea: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QScrollArea) +16 QScrollArea::metaObject +24 QScrollArea::qt_metacast +32 QScrollArea::qt_metacall +40 QScrollArea::~QScrollArea +48 QScrollArea::~QScrollArea +56 QScrollArea::event +64 QScrollArea::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractScrollArea::mousePressEvent +168 QAbstractScrollArea::mouseReleaseEvent +176 QAbstractScrollArea::mouseDoubleClickEvent +184 QAbstractScrollArea::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractScrollArea::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractScrollArea::paintEvent +256 QWidget::moveEvent +264 QScrollArea::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractScrollArea::dragEnterEvent +312 QAbstractScrollArea::dragMoveEvent +320 QAbstractScrollArea::dragLeaveEvent +328 QAbstractScrollArea::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QScrollArea::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QScrollArea::scrollContentsBy +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI11QScrollArea) +480 QScrollArea::_ZThn16_N11QScrollAreaD1Ev +488 QScrollArea::_ZThn16_N11QScrollAreaD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QScrollArea + size=40 align=8 + base size=40 base align=8 +QScrollArea (0x7fb29ccb0af0) 0 + vptr=((& QScrollArea::_ZTV11QScrollArea) + 16u) + QAbstractScrollArea (0x7fb29ccb0b60) 0 + primary-for QScrollArea (0x7fb29ccb0af0) + QFrame (0x7fb29ccb0bd0) 0 + primary-for QAbstractScrollArea (0x7fb29ccb0b60) + QWidget (0x7fb29cca0c80) 0 + primary-for QFrame (0x7fb29ccb0bd0) + QObject (0x7fb29ccb0c40) 0 + primary-for QWidget (0x7fb29cca0c80) + QPaintDevice (0x7fb29ccb0cb0) 16 + vptr=((& QScrollArea::_ZTV11QScrollArea) + 480u) + +Vtable for QGraphicsView +QGraphicsView::_ZTV13QGraphicsView: 68u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QGraphicsView) +16 QGraphicsView::metaObject +24 QGraphicsView::qt_metacast +32 QGraphicsView::qt_metacall +40 QGraphicsView::~QGraphicsView +48 QGraphicsView::~QGraphicsView +56 QGraphicsView::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QGraphicsView::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QGraphicsView::mousePressEvent +168 QGraphicsView::mouseReleaseEvent +176 QGraphicsView::mouseDoubleClickEvent +184 QGraphicsView::mouseMoveEvent +192 QGraphicsView::wheelEvent +200 QGraphicsView::keyPressEvent +208 QGraphicsView::keyReleaseEvent +216 QGraphicsView::focusInEvent +224 QGraphicsView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QGraphicsView::paintEvent +256 QWidget::moveEvent +264 QGraphicsView::resizeEvent +272 QWidget::closeEvent +280 QGraphicsView::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QGraphicsView::dragEnterEvent +312 QGraphicsView::dragMoveEvent +320 QGraphicsView::dragLeaveEvent +328 QGraphicsView::dropEvent +336 QGraphicsView::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QGraphicsView::inputMethodEvent +384 QGraphicsView::inputMethodQuery +392 QGraphicsView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QGraphicsView::viewportEvent +456 QGraphicsView::scrollContentsBy +464 QGraphicsView::drawBackground +472 QGraphicsView::drawForeground +480 QGraphicsView::drawItems +488 (int (*)(...))-0x00000000000000010 +496 (int (*)(...))(& _ZTI13QGraphicsView) +504 QGraphicsView::_ZThn16_N13QGraphicsViewD1Ev +512 QGraphicsView::_ZThn16_N13QGraphicsViewD0Ev +520 QWidget::_ZThn16_NK7QWidget7devTypeEv +528 QWidget::_ZThn16_NK7QWidget11paintEngineEv +536 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QGraphicsView + size=40 align=8 + base size=40 base align=8 +QGraphicsView (0x7fb29ccd2a10) 0 + vptr=((& QGraphicsView::_ZTV13QGraphicsView) + 16u) + QAbstractScrollArea (0x7fb29ccd2a80) 0 + primary-for QGraphicsView (0x7fb29ccd2a10) + QFrame (0x7fb29ccd2af0) 0 + primary-for QAbstractScrollArea (0x7fb29ccd2a80) + QWidget (0x7fb29cccd680) 0 + primary-for QFrame (0x7fb29ccd2af0) + QObject (0x7fb29ccd2b60) 0 + primary-for QWidget (0x7fb29cccd680) + QPaintDevice (0x7fb29ccd2bd0) 16 + vptr=((& QGraphicsView::_ZTV13QGraphicsView) + 504u) + +Vtable for QAbstractButton +QAbstractButton::_ZTV15QAbstractButton: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QAbstractButton) +16 QAbstractButton::metaObject +24 QAbstractButton::qt_metacast +32 QAbstractButton::qt_metacall +40 QAbstractButton::~QAbstractButton +48 QAbstractButton::~QAbstractButton +56 QAbstractButton::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QAbstractButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QAbstractButton::focusInEvent +224 QAbstractButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 __cxa_pure_virtual +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractButton::hitButton +456 QAbstractButton::checkStateSet +464 QAbstractButton::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI15QAbstractButton) +488 QAbstractButton::_ZThn16_N15QAbstractButtonD1Ev +496 QAbstractButton::_ZThn16_N15QAbstractButtonD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractButton + size=40 align=8 + base size=40 base align=8 +QAbstractButton (0x7fb29cbc1ee0) 0 + vptr=((& QAbstractButton::_ZTV15QAbstractButton) + 16u) + QWidget (0x7fb29cbcb380) 0 + primary-for QAbstractButton (0x7fb29cbc1ee0) + QObject (0x7fb29cbc1f50) 0 + primary-for QWidget (0x7fb29cbcb380) + QPaintDevice (0x7fb29cbd0000) 16 + vptr=((& QAbstractButton::_ZTV15QAbstractButton) + 488u) + +Vtable for QButtonGroup +QButtonGroup::_ZTV12QButtonGroup: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QButtonGroup) +16 QButtonGroup::metaObject +24 QButtonGroup::qt_metacast +32 QButtonGroup::qt_metacall +40 QButtonGroup::~QButtonGroup +48 QButtonGroup::~QButtonGroup +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QButtonGroup + size=16 align=8 + base size=16 base align=8 +QButtonGroup (0x7fb29cc01310) 0 + vptr=((& QButtonGroup::_ZTV12QButtonGroup) + 16u) + QObject (0x7fb29cc01380) 0 + primary-for QButtonGroup (0x7fb29cc01310) + +Vtable for QCalendarWidget +QCalendarWidget::_ZTV15QCalendarWidget: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QCalendarWidget) +16 QCalendarWidget::metaObject +24 QCalendarWidget::qt_metacast +32 QCalendarWidget::qt_metacall +40 QCalendarWidget::~QCalendarWidget +48 QCalendarWidget::~QCalendarWidget +56 QCalendarWidget::event +64 QCalendarWidget::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QCalendarWidget::sizeHint +136 QCalendarWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QCalendarWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QCalendarWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QCalendarWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QCalendarWidget::paintCell +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI15QCalendarWidget) +472 QCalendarWidget::_ZThn16_N15QCalendarWidgetD1Ev +480 QCalendarWidget::_ZThn16_N15QCalendarWidgetD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QCalendarWidget + size=40 align=8 + base size=40 base align=8 +QCalendarWidget (0x7fb29cc1af50) 0 + vptr=((& QCalendarWidget::_ZTV15QCalendarWidget) + 16u) + QWidget (0x7fb29cc17900) 0 + primary-for QCalendarWidget (0x7fb29cc1af50) + QObject (0x7fb29cc21000) 0 + primary-for QWidget (0x7fb29cc17900) + QPaintDevice (0x7fb29cc21070) 16 + vptr=((& QCalendarWidget::_ZTV15QCalendarWidget) + 472u) + +Vtable for QCheckBox +QCheckBox::_ZTV9QCheckBox: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QCheckBox) +16 QCheckBox::metaObject +24 QCheckBox::qt_metacast +32 QCheckBox::qt_metacall +40 QCheckBox::~QCheckBox +48 QCheckBox::~QCheckBox +56 QCheckBox::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QCheckBox::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QCheckBox::mouseMoveEvent +192 QWidget::wheelEvent +200 QAbstractButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QAbstractButton::focusInEvent +224 QAbstractButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QCheckBox::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QCheckBox::hitButton +456 QCheckBox::checkStateSet +464 QCheckBox::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI9QCheckBox) +488 QCheckBox::_ZThn16_N9QCheckBoxD1Ev +496 QCheckBox::_ZThn16_N9QCheckBoxD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QCheckBox + size=40 align=8 + base size=40 base align=8 +QCheckBox (0x7fb29ca4b0e0) 0 + vptr=((& QCheckBox::_ZTV9QCheckBox) + 16u) + QAbstractButton (0x7fb29ca4b150) 0 + primary-for QCheckBox (0x7fb29ca4b0e0) + QWidget (0x7fb29cc3f900) 0 + primary-for QAbstractButton (0x7fb29ca4b150) + QObject (0x7fb29ca4b1c0) 0 + primary-for QWidget (0x7fb29cc3f900) + QPaintDevice (0x7fb29ca4b230) 16 + vptr=((& QCheckBox::_ZTV9QCheckBox) + 488u) + +Vtable for QComboBox +QComboBox::_ZTV9QComboBox: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QComboBox) +16 QComboBox::metaObject +24 QComboBox::qt_metacast +32 QComboBox::qt_metacall +40 QComboBox::~QComboBox +48 QComboBox::~QComboBox +56 QComboBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QComboBox::sizeHint +136 QComboBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QComboBox::mousePressEvent +168 QComboBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QComboBox::wheelEvent +200 QComboBox::keyPressEvent +208 QComboBox::keyReleaseEvent +216 QComboBox::focusInEvent +224 QComboBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QComboBox::paintEvent +256 QWidget::moveEvent +264 QComboBox::resizeEvent +272 QWidget::closeEvent +280 QComboBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QComboBox::showEvent +344 QComboBox::hideEvent +352 QWidget::x11Event +360 QComboBox::changeEvent +368 QWidget::metric +376 QComboBox::inputMethodEvent +384 QComboBox::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QComboBox::showPopup +456 QComboBox::hidePopup +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI9QComboBox) +480 QComboBox::_ZThn16_N9QComboBoxD1Ev +488 QComboBox::_ZThn16_N9QComboBoxD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QComboBox + size=40 align=8 + base size=40 base align=8 +QComboBox (0x7fb29ca6d8c0) 0 + vptr=((& QComboBox::_ZTV9QComboBox) + 16u) + QWidget (0x7fb29ca67900) 0 + primary-for QComboBox (0x7fb29ca6d8c0) + QObject (0x7fb29ca6d930) 0 + primary-for QWidget (0x7fb29ca67900) + QPaintDevice (0x7fb29ca6d9a0) 16 + vptr=((& QComboBox::_ZTV9QComboBox) + 480u) + +Vtable for QPushButton +QPushButton::_ZTV11QPushButton: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QPushButton) +16 QPushButton::metaObject +24 QPushButton::qt_metacast +32 QPushButton::qt_metacall +40 QPushButton::~QPushButton +48 QPushButton::~QPushButton +56 QPushButton::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QPushButton::sizeHint +136 QPushButton::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QPushButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QPushButton::focusInEvent +224 QPushButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QPushButton::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractButton::hitButton +456 QAbstractButton::checkStateSet +464 QAbstractButton::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11QPushButton) +488 QPushButton::_ZThn16_N11QPushButtonD1Ev +496 QPushButton::_ZThn16_N11QPushButtonD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPushButton + size=40 align=8 + base size=40 base align=8 +QPushButton (0x7fb29cadd3f0) 0 + vptr=((& QPushButton::_ZTV11QPushButton) + 16u) + QAbstractButton (0x7fb29cadd460) 0 + primary-for QPushButton (0x7fb29cadd3f0) + QWidget (0x7fb29cad8600) 0 + primary-for QAbstractButton (0x7fb29cadd460) + QObject (0x7fb29cadd4d0) 0 + primary-for QWidget (0x7fb29cad8600) + QPaintDevice (0x7fb29cadd540) 16 + vptr=((& QPushButton::_ZTV11QPushButton) + 488u) + +Vtable for QCommandLinkButton +QCommandLinkButton::_ZTV18QCommandLinkButton: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QCommandLinkButton) +16 QCommandLinkButton::metaObject +24 QCommandLinkButton::qt_metacast +32 QCommandLinkButton::qt_metacall +40 QCommandLinkButton::~QCommandLinkButton +48 QCommandLinkButton::~QCommandLinkButton +56 QCommandLinkButton::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QCommandLinkButton::sizeHint +136 QCommandLinkButton::minimumSizeHint +144 QCommandLinkButton::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QPushButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QPushButton::focusInEvent +224 QPushButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QCommandLinkButton::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractButton::hitButton +456 QAbstractButton::checkStateSet +464 QAbstractButton::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI18QCommandLinkButton) +488 QCommandLinkButton::_ZThn16_N18QCommandLinkButtonD1Ev +496 QCommandLinkButton::_ZThn16_N18QCommandLinkButtonD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QCommandLinkButton + size=40 align=8 + base size=40 base align=8 +QCommandLinkButton (0x7fb29cb00d20) 0 + vptr=((& QCommandLinkButton::_ZTV18QCommandLinkButton) + 16u) + QPushButton (0x7fb29cb00d90) 0 + primary-for QCommandLinkButton (0x7fb29cb00d20) + QAbstractButton (0x7fb29cb00e00) 0 + primary-for QPushButton (0x7fb29cb00d90) + QWidget (0x7fb29cb02600) 0 + primary-for QAbstractButton (0x7fb29cb00e00) + QObject (0x7fb29cb00e70) 0 + primary-for QWidget (0x7fb29cb02600) + QPaintDevice (0x7fb29cb00ee0) 16 + vptr=((& QCommandLinkButton::_ZTV18QCommandLinkButton) + 488u) + +Vtable for QDateTimeEdit +QDateTimeEdit::_ZTV13QDateTimeEdit: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QDateTimeEdit) +16 QDateTimeEdit::metaObject +24 QDateTimeEdit::qt_metacast +32 QDateTimeEdit::qt_metacall +40 QDateTimeEdit::~QDateTimeEdit +48 QDateTimeEdit::~QDateTimeEdit +56 QDateTimeEdit::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QDateTimeEdit::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QDateTimeEdit::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QDateTimeEdit::wheelEvent +200 QDateTimeEdit::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QDateTimeEdit::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QDateTimeEdit::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QAbstractSpinBox::inputMethodQuery +392 QDateTimeEdit::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDateTimeEdit::validate +456 QDateTimeEdit::fixup +464 QDateTimeEdit::stepBy +472 QDateTimeEdit::clear +480 QDateTimeEdit::stepEnabled +488 QDateTimeEdit::dateTimeFromText +496 QDateTimeEdit::textFromDateTime +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI13QDateTimeEdit) +520 QDateTimeEdit::_ZThn16_N13QDateTimeEditD1Ev +528 QDateTimeEdit::_ZThn16_N13QDateTimeEditD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDateTimeEdit + size=40 align=8 + base size=40 base align=8 +QDateTimeEdit (0x7fb29cb1c8c0) 0 + vptr=((& QDateTimeEdit::_ZTV13QDateTimeEdit) + 16u) + QAbstractSpinBox (0x7fb29cb1c930) 0 + primary-for QDateTimeEdit (0x7fb29cb1c8c0) + QWidget (0x7fb29cb22000) 0 + primary-for QAbstractSpinBox (0x7fb29cb1c930) + QObject (0x7fb29cb1c9a0) 0 + primary-for QWidget (0x7fb29cb22000) + QPaintDevice (0x7fb29cb1ca10) 16 + vptr=((& QDateTimeEdit::_ZTV13QDateTimeEdit) + 520u) + +Vtable for QTimeEdit +QTimeEdit::_ZTV9QTimeEdit: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTimeEdit) +16 QTimeEdit::metaObject +24 QTimeEdit::qt_metacast +32 QTimeEdit::qt_metacall +40 QTimeEdit::~QTimeEdit +48 QTimeEdit::~QTimeEdit +56 QDateTimeEdit::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QDateTimeEdit::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QDateTimeEdit::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QDateTimeEdit::wheelEvent +200 QDateTimeEdit::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QDateTimeEdit::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QDateTimeEdit::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QAbstractSpinBox::inputMethodQuery +392 QDateTimeEdit::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDateTimeEdit::validate +456 QDateTimeEdit::fixup +464 QDateTimeEdit::stepBy +472 QDateTimeEdit::clear +480 QDateTimeEdit::stepEnabled +488 QDateTimeEdit::dateTimeFromText +496 QDateTimeEdit::textFromDateTime +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI9QTimeEdit) +520 QTimeEdit::_ZThn16_N9QTimeEditD1Ev +528 QTimeEdit::_ZThn16_N9QTimeEditD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTimeEdit + size=40 align=8 + base size=40 base align=8 +QTimeEdit (0x7fb29c94e7e0) 0 + vptr=((& QTimeEdit::_ZTV9QTimeEdit) + 16u) + QDateTimeEdit (0x7fb29c94e850) 0 + primary-for QTimeEdit (0x7fb29c94e7e0) + QAbstractSpinBox (0x7fb29c94e8c0) 0 + primary-for QDateTimeEdit (0x7fb29c94e850) + QWidget (0x7fb29cb22f80) 0 + primary-for QAbstractSpinBox (0x7fb29c94e8c0) + QObject (0x7fb29c94e930) 0 + primary-for QWidget (0x7fb29cb22f80) + QPaintDevice (0x7fb29c94e9a0) 16 + vptr=((& QTimeEdit::_ZTV9QTimeEdit) + 520u) + +Vtable for QDateEdit +QDateEdit::_ZTV9QDateEdit: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QDateEdit) +16 QDateEdit::metaObject +24 QDateEdit::qt_metacast +32 QDateEdit::qt_metacall +40 QDateEdit::~QDateEdit +48 QDateEdit::~QDateEdit +56 QDateTimeEdit::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QDateTimeEdit::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QDateTimeEdit::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QDateTimeEdit::wheelEvent +200 QDateTimeEdit::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QDateTimeEdit::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QDateTimeEdit::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QAbstractSpinBox::inputMethodQuery +392 QDateTimeEdit::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDateTimeEdit::validate +456 QDateTimeEdit::fixup +464 QDateTimeEdit::stepBy +472 QDateTimeEdit::clear +480 QDateTimeEdit::stepEnabled +488 QDateTimeEdit::dateTimeFromText +496 QDateTimeEdit::textFromDateTime +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI9QDateEdit) +520 QDateEdit::_ZThn16_N9QDateEditD1Ev +528 QDateEdit::_ZThn16_N9QDateEditD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDateEdit + size=40 align=8 + base size=40 base align=8 +QDateEdit (0x7fb29c9638c0) 0 + vptr=((& QDateEdit::_ZTV9QDateEdit) + 16u) + QDateTimeEdit (0x7fb29c963930) 0 + primary-for QDateEdit (0x7fb29c9638c0) + QAbstractSpinBox (0x7fb29c9639a0) 0 + primary-for QDateTimeEdit (0x7fb29c963930) + QWidget (0x7fb29c954680) 0 + primary-for QAbstractSpinBox (0x7fb29c9639a0) + QObject (0x7fb29c963a10) 0 + primary-for QWidget (0x7fb29c954680) + QPaintDevice (0x7fb29c963a80) 16 + vptr=((& QDateEdit::_ZTV9QDateEdit) + 520u) + +Vtable for QDial +QDial::_ZTV5QDial: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QDial) +16 QDial::metaObject +24 QDial::qt_metacast +32 QDial::qt_metacall +40 QDial::~QDial +48 QDial::~QDial +56 QDial::event +64 QObject::eventFilter +72 QAbstractSlider::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QDial::sizeHint +136 QDial::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QDial::mousePressEvent +168 QDial::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QDial::mouseMoveEvent +192 QAbstractSlider::wheelEvent +200 QAbstractSlider::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QDial::paintEvent +256 QWidget::moveEvent +264 QDial::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractSlider::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDial::sliderChange +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI5QDial) +472 QDial::_ZThn16_N5QDialD1Ev +480 QDial::_ZThn16_N5QDialD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDial + size=40 align=8 + base size=40 base align=8 +QDial (0x7fb29c9a9690) 0 + vptr=((& QDial::_ZTV5QDial) + 16u) + QAbstractSlider (0x7fb29c9a9700) 0 + primary-for QDial (0x7fb29c9a9690) + QWidget (0x7fb29c9aa300) 0 + primary-for QAbstractSlider (0x7fb29c9a9700) + QObject (0x7fb29c9a9770) 0 + primary-for QWidget (0x7fb29c9aa300) + QPaintDevice (0x7fb29c9a97e0) 16 + vptr=((& QDial::_ZTV5QDial) + 472u) + +Vtable for QDialogButtonBox +QDialogButtonBox::_ZTV16QDialogButtonBox: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QDialogButtonBox) +16 QDialogButtonBox::metaObject +24 QDialogButtonBox::qt_metacast +32 QDialogButtonBox::qt_metacall +40 QDialogButtonBox::~QDialogButtonBox +48 QDialogButtonBox::~QDialogButtonBox +56 QDialogButtonBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QDialogButtonBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI16QDialogButtonBox) +464 QDialogButtonBox::_ZThn16_N16QDialogButtonBoxD1Ev +472 QDialogButtonBox::_ZThn16_N16QDialogButtonBoxD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDialogButtonBox + size=40 align=8 + base size=40 base align=8 +QDialogButtonBox (0x7fb29c9e9310) 0 + vptr=((& QDialogButtonBox::_ZTV16QDialogButtonBox) + 16u) + QWidget (0x7fb29c9aad00) 0 + primary-for QDialogButtonBox (0x7fb29c9e9310) + QObject (0x7fb29c9e9380) 0 + primary-for QWidget (0x7fb29c9aad00) + QPaintDevice (0x7fb29c9e93f0) 16 + vptr=((& QDialogButtonBox::_ZTV16QDialogButtonBox) + 464u) + +Vtable for QDockWidget +QDockWidget::_ZTV11QDockWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QDockWidget) +16 QDockWidget::metaObject +24 QDockWidget::qt_metacast +32 QDockWidget::qt_metacall +40 QDockWidget::~QDockWidget +48 QDockWidget::~QDockWidget +56 QDockWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QDockWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QDockWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QDockWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI11QDockWidget) +464 QDockWidget::_ZThn16_N11QDockWidgetD1Ev +472 QDockWidget::_ZThn16_N11QDockWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDockWidget + size=40 align=8 + base size=40 base align=8 +QDockWidget (0x7fb29c83e7e0) 0 + vptr=((& QDockWidget::_ZTV11QDockWidget) + 16u) + QWidget (0x7fb29c9f5e80) 0 + primary-for QDockWidget (0x7fb29c83e7e0) + QObject (0x7fb29c83e850) 0 + primary-for QWidget (0x7fb29c9f5e80) + QPaintDevice (0x7fb29c83e8c0) 16 + vptr=((& QDockWidget::_ZTV11QDockWidget) + 464u) + +Vtable for QFocusFrame +QFocusFrame::_ZTV11QFocusFrame: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFocusFrame) +16 QFocusFrame::metaObject +24 QFocusFrame::qt_metacast +32 QFocusFrame::qt_metacall +40 QFocusFrame::~QFocusFrame +48 QFocusFrame::~QFocusFrame +56 QFocusFrame::event +64 QFocusFrame::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFocusFrame::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI11QFocusFrame) +464 QFocusFrame::_ZThn16_N11QFocusFrameD1Ev +472 QFocusFrame::_ZThn16_N11QFocusFrameD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFocusFrame + size=40 align=8 + base size=40 base align=8 +QFocusFrame (0x7fb29c8df230) 0 + vptr=((& QFocusFrame::_ZTV11QFocusFrame) + 16u) + QWidget (0x7fb29c892680) 0 + primary-for QFocusFrame (0x7fb29c8df230) + QObject (0x7fb29c8df2a0) 0 + primary-for QWidget (0x7fb29c892680) + QPaintDevice (0x7fb29c8df310) 16 + vptr=((& QFocusFrame::_ZTV11QFocusFrame) + 464u) + +Vtable for QFontComboBox +QFontComboBox::_ZTV13QFontComboBox: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QFontComboBox) +16 QFontComboBox::metaObject +24 QFontComboBox::qt_metacast +32 QFontComboBox::qt_metacall +40 QFontComboBox::~QFontComboBox +48 QFontComboBox::~QFontComboBox +56 QFontComboBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QFontComboBox::sizeHint +136 QComboBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QComboBox::mousePressEvent +168 QComboBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QComboBox::wheelEvent +200 QComboBox::keyPressEvent +208 QComboBox::keyReleaseEvent +216 QComboBox::focusInEvent +224 QComboBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QComboBox::paintEvent +256 QWidget::moveEvent +264 QComboBox::resizeEvent +272 QWidget::closeEvent +280 QComboBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QComboBox::showEvent +344 QComboBox::hideEvent +352 QWidget::x11Event +360 QComboBox::changeEvent +368 QWidget::metric +376 QComboBox::inputMethodEvent +384 QComboBox::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QComboBox::showPopup +456 QComboBox::hidePopup +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI13QFontComboBox) +480 QFontComboBox::_ZThn16_N13QFontComboBoxD1Ev +488 QFontComboBox::_ZThn16_N13QFontComboBoxD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFontComboBox + size=40 align=8 + base size=40 base align=8 +QFontComboBox (0x7fb29c8f3d90) 0 + vptr=((& QFontComboBox::_ZTV13QFontComboBox) + 16u) + QComboBox (0x7fb29c8f3e00) 0 + primary-for QFontComboBox (0x7fb29c8f3d90) + QWidget (0x7fb29c8fa080) 0 + primary-for QComboBox (0x7fb29c8f3e00) + QObject (0x7fb29c8f3e70) 0 + primary-for QWidget (0x7fb29c8fa080) + QPaintDevice (0x7fb29c8f3ee0) 16 + vptr=((& QFontComboBox::_ZTV13QFontComboBox) + 480u) + +Vtable for QGroupBox +QGroupBox::_ZTV9QGroupBox: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QGroupBox) +16 QGroupBox::metaObject +24 QGroupBox::qt_metacast +32 QGroupBox::qt_metacall +40 QGroupBox::~QGroupBox +48 QGroupBox::~QGroupBox +56 QGroupBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QGroupBox::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QGroupBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QGroupBox::mousePressEvent +168 QGroupBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QGroupBox::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QGroupBox::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QGroupBox::paintEvent +256 QWidget::moveEvent +264 QGroupBox::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QGroupBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI9QGroupBox) +464 QGroupBox::_ZThn16_N9QGroupBoxD1Ev +472 QGroupBox::_ZThn16_N9QGroupBoxD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QGroupBox + size=40 align=8 + base size=40 base align=8 +QGroupBox (0x7fb29c742a80) 0 + vptr=((& QGroupBox::_ZTV9QGroupBox) + 16u) + QWidget (0x7fb29c744280) 0 + primary-for QGroupBox (0x7fb29c742a80) + QObject (0x7fb29c742af0) 0 + primary-for QWidget (0x7fb29c744280) + QPaintDevice (0x7fb29c742b60) 16 + vptr=((& QGroupBox::_ZTV9QGroupBox) + 464u) + +Vtable for QLabel +QLabel::_ZTV6QLabel: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QLabel) +16 QLabel::metaObject +24 QLabel::qt_metacast +32 QLabel::qt_metacall +40 QLabel::~QLabel +48 QLabel::~QLabel +56 QLabel::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QLabel::sizeHint +136 QLabel::minimumSizeHint +144 QLabel::heightForWidth +152 QWidget::paintEngine +160 QLabel::mousePressEvent +168 QLabel::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QLabel::mouseMoveEvent +192 QWidget::wheelEvent +200 QLabel::keyPressEvent +208 QWidget::keyReleaseEvent +216 QLabel::focusInEvent +224 QLabel::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QLabel::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QLabel::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QLabel::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QLabel::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI6QLabel) +464 QLabel::_ZThn16_N6QLabelD1Ev +472 QLabel::_ZThn16_N6QLabelD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QLabel + size=40 align=8 + base size=40 base align=8 +QLabel (0x7fb29c782700) 0 + vptr=((& QLabel::_ZTV6QLabel) + 16u) + QFrame (0x7fb29c782770) 0 + primary-for QLabel (0x7fb29c782700) + QWidget (0x7fb29c744c80) 0 + primary-for QFrame (0x7fb29c782770) + QObject (0x7fb29c7827e0) 0 + primary-for QWidget (0x7fb29c744c80) + QPaintDevice (0x7fb29c782850) 16 + vptr=((& QLabel::_ZTV6QLabel) + 464u) + +Vtable for QLCDNumber +QLCDNumber::_ZTV10QLCDNumber: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QLCDNumber) +16 QLCDNumber::metaObject +24 QLCDNumber::qt_metacast +32 QLCDNumber::qt_metacall +40 QLCDNumber::~QLCDNumber +48 QLCDNumber::~QLCDNumber +56 QLCDNumber::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QLCDNumber::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QLCDNumber::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI10QLCDNumber) +464 QLCDNumber::_ZThn16_N10QLCDNumberD1Ev +472 QLCDNumber::_ZThn16_N10QLCDNumberD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QLCDNumber + size=40 align=8 + base size=40 base align=8 +QLCDNumber (0x7fb29c7b0850) 0 + vptr=((& QLCDNumber::_ZTV10QLCDNumber) + 16u) + QFrame (0x7fb29c7b08c0) 0 + primary-for QLCDNumber (0x7fb29c7b0850) + QWidget (0x7fb29c7aa880) 0 + primary-for QFrame (0x7fb29c7b08c0) + QObject (0x7fb29c7b0930) 0 + primary-for QWidget (0x7fb29c7aa880) + QPaintDevice (0x7fb29c7b09a0) 16 + vptr=((& QLCDNumber::_ZTV10QLCDNumber) + 464u) + +Vtable for QMainWindow +QMainWindow::_ZTV11QMainWindow: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMainWindow) +16 QMainWindow::metaObject +24 QMainWindow::qt_metacast +32 QMainWindow::qt_metacall +40 QMainWindow::~QMainWindow +48 QMainWindow::~QMainWindow +56 QMainWindow::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QMainWindow::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QMainWindow::createPopupMenu +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI11QMainWindow) +472 QMainWindow::_ZThn16_N11QMainWindowD1Ev +480 QMainWindow::_ZThn16_N11QMainWindowD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMainWindow + size=40 align=8 + base size=40 base align=8 +QMainWindow (0x7fb29c7da230) 0 + vptr=((& QMainWindow::_ZTV11QMainWindow) + 16u) + QWidget (0x7fb29c7d1a00) 0 + primary-for QMainWindow (0x7fb29c7da230) + QObject (0x7fb29c7da2a0) 0 + primary-for QWidget (0x7fb29c7d1a00) + QPaintDevice (0x7fb29c7da310) 16 + vptr=((& QMainWindow::_ZTV11QMainWindow) + 472u) + +Vtable for QMdiArea +QMdiArea::_ZTV8QMdiArea: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QMdiArea) +16 QMdiArea::metaObject +24 QMdiArea::qt_metacast +32 QMdiArea::qt_metacall +40 QMdiArea::~QMdiArea +48 QMdiArea::~QMdiArea +56 QMdiArea::event +64 QMdiArea::eventFilter +72 QMdiArea::timerEvent +80 QMdiArea::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QMdiArea::sizeHint +136 QMdiArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractScrollArea::mousePressEvent +168 QAbstractScrollArea::mouseReleaseEvent +176 QAbstractScrollArea::mouseDoubleClickEvent +184 QAbstractScrollArea::mouseMoveEvent +192 QAbstractScrollArea::wheelEvent +200 QAbstractScrollArea::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QMdiArea::paintEvent +256 QWidget::moveEvent +264 QMdiArea::resizeEvent +272 QWidget::closeEvent +280 QAbstractScrollArea::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QAbstractScrollArea::dragEnterEvent +312 QAbstractScrollArea::dragMoveEvent +320 QAbstractScrollArea::dragLeaveEvent +328 QAbstractScrollArea::dropEvent +336 QMdiArea::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QMdiArea::viewportEvent +456 QMdiArea::scrollContentsBy +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI8QMdiArea) +480 QMdiArea::_ZThn16_N8QMdiAreaD1Ev +488 QMdiArea::_ZThn16_N8QMdiAreaD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMdiArea + size=40 align=8 + base size=40 base align=8 +QMdiArea (0x7fb29c658540) 0 + vptr=((& QMdiArea::_ZTV8QMdiArea) + 16u) + QAbstractScrollArea (0x7fb29c6585b0) 0 + primary-for QMdiArea (0x7fb29c658540) + QFrame (0x7fb29c658620) 0 + primary-for QAbstractScrollArea (0x7fb29c6585b0) + QWidget (0x7fb29c803c00) 0 + primary-for QFrame (0x7fb29c658620) + QObject (0x7fb29c658690) 0 + primary-for QWidget (0x7fb29c803c00) + QPaintDevice (0x7fb29c658700) 16 + vptr=((& QMdiArea::_ZTV8QMdiArea) + 480u) + +Vtable for QMdiSubWindow +QMdiSubWindow::_ZTV13QMdiSubWindow: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QMdiSubWindow) +16 QMdiSubWindow::metaObject +24 QMdiSubWindow::qt_metacast +32 QMdiSubWindow::qt_metacall +40 QMdiSubWindow::~QMdiSubWindow +48 QMdiSubWindow::~QMdiSubWindow +56 QMdiSubWindow::event +64 QMdiSubWindow::eventFilter +72 QMdiSubWindow::timerEvent +80 QMdiSubWindow::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QMdiSubWindow::sizeHint +136 QMdiSubWindow::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QMdiSubWindow::mousePressEvent +168 QMdiSubWindow::mouseReleaseEvent +176 QMdiSubWindow::mouseDoubleClickEvent +184 QMdiSubWindow::mouseMoveEvent +192 QWidget::wheelEvent +200 QMdiSubWindow::keyPressEvent +208 QWidget::keyReleaseEvent +216 QMdiSubWindow::focusInEvent +224 QMdiSubWindow::focusOutEvent +232 QWidget::enterEvent +240 QMdiSubWindow::leaveEvent +248 QMdiSubWindow::paintEvent +256 QMdiSubWindow::moveEvent +264 QMdiSubWindow::resizeEvent +272 QMdiSubWindow::closeEvent +280 QMdiSubWindow::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QMdiSubWindow::showEvent +344 QMdiSubWindow::hideEvent +352 QWidget::x11Event +360 QMdiSubWindow::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI13QMdiSubWindow) +464 QMdiSubWindow::_ZThn16_N13QMdiSubWindowD1Ev +472 QMdiSubWindow::_ZThn16_N13QMdiSubWindowD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMdiSubWindow + size=40 align=8 + base size=40 base align=8 +QMdiSubWindow (0x7fb29c6b3a80) 0 + vptr=((& QMdiSubWindow::_ZTV13QMdiSubWindow) + 16u) + QWidget (0x7fb29c664f00) 0 + primary-for QMdiSubWindow (0x7fb29c6b3a80) + QObject (0x7fb29c6b3af0) 0 + primary-for QWidget (0x7fb29c664f00) + QPaintDevice (0x7fb29c6b3b60) 16 + vptr=((& QMdiSubWindow::_ZTV13QMdiSubWindow) + 464u) + +Vtable for QMenu +QMenu::_ZTV5QMenu: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QMenu) +16 QMenu::metaObject +24 QMenu::qt_metacast +32 QMenu::qt_metacall +40 QMenu::~QMenu +48 QMenu::~QMenu +56 QMenu::event +64 QObject::eventFilter +72 QMenu::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QMenu::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QMenu::mousePressEvent +168 QMenu::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QMenu::mouseMoveEvent +192 QMenu::wheelEvent +200 QMenu::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QMenu::enterEvent +240 QMenu::leaveEvent +248 QMenu::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QMenu::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QMenu::hideEvent +352 QWidget::x11Event +360 QMenu::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QMenu::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI5QMenu) +464 QMenu::_ZThn16_N5QMenuD1Ev +472 QMenu::_ZThn16_N5QMenuD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMenu + size=40 align=8 + base size=40 base align=8 +QMenu (0x7fb29c72d930) 0 + vptr=((& QMenu::_ZTV5QMenu) + 16u) + QWidget (0x7fb29c54f100) 0 + primary-for QMenu (0x7fb29c72d930) + QObject (0x7fb29c72d9a0) 0 + primary-for QWidget (0x7fb29c54f100) + QPaintDevice (0x7fb29c72da10) 16 + vptr=((& QMenu::_ZTV5QMenu) + 464u) + +Vtable for QMenuBar +QMenuBar::_ZTV8QMenuBar: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QMenuBar) +16 QMenuBar::metaObject +24 QMenuBar::qt_metacast +32 QMenuBar::qt_metacall +40 QMenuBar::~QMenuBar +48 QMenuBar::~QMenuBar +56 QMenuBar::event +64 QMenuBar::eventFilter +72 QMenuBar::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QMenuBar::setVisible +128 QMenuBar::sizeHint +136 QMenuBar::minimumSizeHint +144 QMenuBar::heightForWidth +152 QWidget::paintEngine +160 QMenuBar::mousePressEvent +168 QMenuBar::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QMenuBar::mouseMoveEvent +192 QWidget::wheelEvent +200 QMenuBar::keyPressEvent +208 QWidget::keyReleaseEvent +216 QMenuBar::focusInEvent +224 QMenuBar::focusOutEvent +232 QWidget::enterEvent +240 QMenuBar::leaveEvent +248 QMenuBar::paintEvent +256 QWidget::moveEvent +264 QMenuBar::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QMenuBar::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QMenuBar::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI8QMenuBar) +464 QMenuBar::_ZThn16_N8QMenuBarD1Ev +472 QMenuBar::_ZThn16_N8QMenuBarD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMenuBar + size=40 align=8 + base size=40 base align=8 +QMenuBar (0x7fb29c5f3770) 0 + vptr=((& QMenuBar::_ZTV8QMenuBar) + 16u) + QWidget (0x7fb29c5f2980) 0 + primary-for QMenuBar (0x7fb29c5f3770) + QObject (0x7fb29c5f37e0) 0 + primary-for QWidget (0x7fb29c5f2980) + QPaintDevice (0x7fb29c5f3850) 16 + vptr=((& QMenuBar::_ZTV8QMenuBar) + 464u) + +Vtable for QMenuItem +QMenuItem::_ZTV9QMenuItem: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QMenuItem) +16 QMenuItem::metaObject +24 QMenuItem::qt_metacast +32 QMenuItem::qt_metacall +40 QMenuItem::~QMenuItem +48 QMenuItem::~QMenuItem +56 QAction::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QMenuItem + size=16 align=8 + base size=16 base align=8 +QMenuItem (0x7fb29c4964d0) 0 + vptr=((& QMenuItem::_ZTV9QMenuItem) + 16u) + QAction (0x7fb29c496540) 0 + primary-for QMenuItem (0x7fb29c4964d0) + QObject (0x7fb29c4965b0) 0 + primary-for QAction (0x7fb29c496540) + +Class QTextEdit::ExtraSelection + size=24 align=8 + base size=24 base align=8 +QTextEdit::ExtraSelection (0x7fb29c4b5700) 0 + +Vtable for QTextEdit +QTextEdit::_ZTV9QTextEdit: 69u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTextEdit) +16 QTextEdit::metaObject +24 QTextEdit::qt_metacast +32 QTextEdit::qt_metacall +40 QTextEdit::~QTextEdit +48 QTextEdit::~QTextEdit +56 QTextEdit::event +64 QObject::eventFilter +72 QTextEdit::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTextEdit::mousePressEvent +168 QTextEdit::mouseReleaseEvent +176 QTextEdit::mouseDoubleClickEvent +184 QTextEdit::mouseMoveEvent +192 QTextEdit::wheelEvent +200 QTextEdit::keyPressEvent +208 QTextEdit::keyReleaseEvent +216 QTextEdit::focusInEvent +224 QTextEdit::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTextEdit::paintEvent +256 QWidget::moveEvent +264 QTextEdit::resizeEvent +272 QWidget::closeEvent +280 QTextEdit::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QTextEdit::dragEnterEvent +312 QTextEdit::dragMoveEvent +320 QTextEdit::dragLeaveEvent +328 QTextEdit::dropEvent +336 QTextEdit::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QTextEdit::changeEvent +368 QWidget::metric +376 QTextEdit::inputMethodEvent +384 QTextEdit::inputMethodQuery +392 QTextEdit::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QTextEdit::scrollContentsBy +464 QTextEdit::loadResource +472 QTextEdit::createMimeDataFromSelection +480 QTextEdit::canInsertFromMimeData +488 QTextEdit::insertFromMimeData +496 (int (*)(...))-0x00000000000000010 +504 (int (*)(...))(& _ZTI9QTextEdit) +512 QTextEdit::_ZThn16_N9QTextEditD1Ev +520 QTextEdit::_ZThn16_N9QTextEditD0Ev +528 QWidget::_ZThn16_NK7QWidget7devTypeEv +536 QWidget::_ZThn16_NK7QWidget11paintEngineEv +544 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTextEdit + size=40 align=8 + base size=40 base align=8 +QTextEdit (0x7fb29c4a5770) 0 + vptr=((& QTextEdit::_ZTV9QTextEdit) + 16u) + QAbstractScrollArea (0x7fb29c4a57e0) 0 + primary-for QTextEdit (0x7fb29c4a5770) + QFrame (0x7fb29c4a5850) 0 + primary-for QAbstractScrollArea (0x7fb29c4a57e0) + QWidget (0x7fb29c492b00) 0 + primary-for QFrame (0x7fb29c4a5850) + QObject (0x7fb29c4a58c0) 0 + primary-for QWidget (0x7fb29c492b00) + QPaintDevice (0x7fb29c4a5930) 16 + vptr=((& QTextEdit::_ZTV9QTextEdit) + 512u) + +Vtable for QPlainTextEdit +QPlainTextEdit::_ZTV14QPlainTextEdit: 69u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QPlainTextEdit) +16 QPlainTextEdit::metaObject +24 QPlainTextEdit::qt_metacast +32 QPlainTextEdit::qt_metacall +40 QPlainTextEdit::~QPlainTextEdit +48 QPlainTextEdit::~QPlainTextEdit +56 QPlainTextEdit::event +64 QObject::eventFilter +72 QPlainTextEdit::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QPlainTextEdit::mousePressEvent +168 QPlainTextEdit::mouseReleaseEvent +176 QPlainTextEdit::mouseDoubleClickEvent +184 QPlainTextEdit::mouseMoveEvent +192 QPlainTextEdit::wheelEvent +200 QPlainTextEdit::keyPressEvent +208 QPlainTextEdit::keyReleaseEvent +216 QPlainTextEdit::focusInEvent +224 QPlainTextEdit::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QPlainTextEdit::paintEvent +256 QWidget::moveEvent +264 QPlainTextEdit::resizeEvent +272 QWidget::closeEvent +280 QPlainTextEdit::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QPlainTextEdit::dragEnterEvent +312 QPlainTextEdit::dragMoveEvent +320 QPlainTextEdit::dragLeaveEvent +328 QPlainTextEdit::dropEvent +336 QPlainTextEdit::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QPlainTextEdit::changeEvent +368 QWidget::metric +376 QPlainTextEdit::inputMethodEvent +384 QPlainTextEdit::inputMethodQuery +392 QPlainTextEdit::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QPlainTextEdit::scrollContentsBy +464 QPlainTextEdit::loadResource +472 QPlainTextEdit::createMimeDataFromSelection +480 QPlainTextEdit::canInsertFromMimeData +488 QPlainTextEdit::insertFromMimeData +496 (int (*)(...))-0x00000000000000010 +504 (int (*)(...))(& _ZTI14QPlainTextEdit) +512 QPlainTextEdit::_ZThn16_N14QPlainTextEditD1Ev +520 QPlainTextEdit::_ZThn16_N14QPlainTextEditD0Ev +528 QWidget::_ZThn16_NK7QWidget7devTypeEv +536 QWidget::_ZThn16_NK7QWidget11paintEngineEv +544 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPlainTextEdit + size=40 align=8 + base size=40 base align=8 +QPlainTextEdit (0x7fb29c34b8c0) 0 + vptr=((& QPlainTextEdit::_ZTV14QPlainTextEdit) + 16u) + QAbstractScrollArea (0x7fb29c34b930) 0 + primary-for QPlainTextEdit (0x7fb29c34b8c0) + QFrame (0x7fb29c34b9a0) 0 + primary-for QAbstractScrollArea (0x7fb29c34b930) + QWidget (0x7fb29c34a400) 0 + primary-for QFrame (0x7fb29c34b9a0) + QObject (0x7fb29c34ba10) 0 + primary-for QWidget (0x7fb29c34a400) + QPaintDevice (0x7fb29c34ba80) 16 + vptr=((& QPlainTextEdit::_ZTV14QPlainTextEdit) + 512u) + +Vtable for QPlainTextDocumentLayout +QPlainTextDocumentLayout::_ZTV24QPlainTextDocumentLayout: 24u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QPlainTextDocumentLayout) +16 QPlainTextDocumentLayout::metaObject +24 QPlainTextDocumentLayout::qt_metacast +32 QPlainTextDocumentLayout::qt_metacall +40 QPlainTextDocumentLayout::~QPlainTextDocumentLayout +48 QPlainTextDocumentLayout::~QPlainTextDocumentLayout +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QPlainTextDocumentLayout::draw +120 QPlainTextDocumentLayout::hitTest +128 QPlainTextDocumentLayout::pageCount +136 QPlainTextDocumentLayout::documentSize +144 QPlainTextDocumentLayout::frameBoundingRect +152 QPlainTextDocumentLayout::blockBoundingRect +160 QPlainTextDocumentLayout::documentChanged +168 QAbstractTextDocumentLayout::resizeInlineObject +176 QAbstractTextDocumentLayout::positionInlineObject +184 QAbstractTextDocumentLayout::drawInlineObject + +Class QPlainTextDocumentLayout + size=16 align=8 + base size=16 base align=8 +QPlainTextDocumentLayout (0x7fb29c3ae690) 0 + vptr=((& QPlainTextDocumentLayout::_ZTV24QPlainTextDocumentLayout) + 16u) + QAbstractTextDocumentLayout (0x7fb29c3ae700) 0 + primary-for QPlainTextDocumentLayout (0x7fb29c3ae690) + QObject (0x7fb29c3ae770) 0 + primary-for QAbstractTextDocumentLayout (0x7fb29c3ae700) + +Vtable for QPrintPreviewWidget +QPrintPreviewWidget::_ZTV19QPrintPreviewWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QPrintPreviewWidget) +16 QPrintPreviewWidget::metaObject +24 QPrintPreviewWidget::qt_metacast +32 QPrintPreviewWidget::qt_metacall +40 QPrintPreviewWidget::~QPrintPreviewWidget +48 QPrintPreviewWidget::~QPrintPreviewWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QPrintPreviewWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI19QPrintPreviewWidget) +464 QPrintPreviewWidget::_ZThn16_N19QPrintPreviewWidgetD1Ev +472 QPrintPreviewWidget::_ZThn16_N19QPrintPreviewWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPrintPreviewWidget + size=48 align=8 + base size=48 base align=8 +QPrintPreviewWidget (0x7fb29c3c5b60) 0 + vptr=((& QPrintPreviewWidget::_ZTV19QPrintPreviewWidget) + 16u) + QWidget (0x7fb29c3c0600) 0 + primary-for QPrintPreviewWidget (0x7fb29c3c5b60) + QObject (0x7fb29c3c5bd0) 0 + primary-for QWidget (0x7fb29c3c0600) + QPaintDevice (0x7fb29c3c5c40) 16 + vptr=((& QPrintPreviewWidget::_ZTV19QPrintPreviewWidget) + 464u) + +Vtable for QProgressBar +QProgressBar::_ZTV12QProgressBar: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QProgressBar) +16 QProgressBar::metaObject +24 QProgressBar::qt_metacast +32 QProgressBar::qt_metacall +40 QProgressBar::~QProgressBar +48 QProgressBar::~QProgressBar +56 QProgressBar::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QProgressBar::sizeHint +136 QProgressBar::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QProgressBar::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QProgressBar::text +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI12QProgressBar) +472 QProgressBar::_ZThn16_N12QProgressBarD1Ev +480 QProgressBar::_ZThn16_N12QProgressBarD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QProgressBar + size=40 align=8 + base size=40 base align=8 +QProgressBar (0x7fb29c3e8700) 0 + vptr=((& QProgressBar::_ZTV12QProgressBar) + 16u) + QWidget (0x7fb29c3ea300) 0 + primary-for QProgressBar (0x7fb29c3e8700) + QObject (0x7fb29c3e8770) 0 + primary-for QWidget (0x7fb29c3ea300) + QPaintDevice (0x7fb29c3e87e0) 16 + vptr=((& QProgressBar::_ZTV12QProgressBar) + 472u) + +Vtable for QRadioButton +QRadioButton::_ZTV12QRadioButton: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QRadioButton) +16 QRadioButton::metaObject +24 QRadioButton::qt_metacast +32 QRadioButton::qt_metacall +40 QRadioButton::~QRadioButton +48 QRadioButton::~QRadioButton +56 QRadioButton::event +64 QObject::eventFilter +72 QAbstractButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QRadioButton::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractButton::mousePressEvent +168 QAbstractButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QRadioButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QAbstractButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QAbstractButton::focusInEvent +224 QAbstractButton::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QRadioButton::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QAbstractButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QRadioButton::hitButton +456 QAbstractButton::checkStateSet +464 QAbstractButton::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI12QRadioButton) +488 QRadioButton::_ZThn16_N12QRadioButtonD1Ev +496 QRadioButton::_ZThn16_N12QRadioButtonD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QRadioButton + size=40 align=8 + base size=40 base align=8 +QRadioButton (0x7fb29c40c540) 0 + vptr=((& QRadioButton::_ZTV12QRadioButton) + 16u) + QAbstractButton (0x7fb29c40c5b0) 0 + primary-for QRadioButton (0x7fb29c40c540) + QWidget (0x7fb29c3eae00) 0 + primary-for QAbstractButton (0x7fb29c40c5b0) + QObject (0x7fb29c40c620) 0 + primary-for QWidget (0x7fb29c3eae00) + QPaintDevice (0x7fb29c40c690) 16 + vptr=((& QRadioButton::_ZTV12QRadioButton) + 488u) + +Vtable for QScrollBar +QScrollBar::_ZTV10QScrollBar: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QScrollBar) +16 QScrollBar::metaObject +24 QScrollBar::qt_metacast +32 QScrollBar::qt_metacall +40 QScrollBar::~QScrollBar +48 QScrollBar::~QScrollBar +56 QScrollBar::event +64 QObject::eventFilter +72 QAbstractSlider::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QScrollBar::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QScrollBar::mousePressEvent +168 QScrollBar::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QScrollBar::mouseMoveEvent +192 QAbstractSlider::wheelEvent +200 QAbstractSlider::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QScrollBar::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QScrollBar::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QScrollBar::hideEvent +352 QWidget::x11Event +360 QAbstractSlider::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QScrollBar::sliderChange +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI10QScrollBar) +472 QScrollBar::_ZThn16_N10QScrollBarD1Ev +480 QScrollBar::_ZThn16_N10QScrollBarD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QScrollBar + size=40 align=8 + base size=40 base align=8 +QScrollBar (0x7fb29c42f1c0) 0 + vptr=((& QScrollBar::_ZTV10QScrollBar) + 16u) + QAbstractSlider (0x7fb29c42f230) 0 + primary-for QScrollBar (0x7fb29c42f1c0) + QWidget (0x7fb29c423800) 0 + primary-for QAbstractSlider (0x7fb29c42f230) + QObject (0x7fb29c42f2a0) 0 + primary-for QWidget (0x7fb29c423800) + QPaintDevice (0x7fb29c42f310) 16 + vptr=((& QScrollBar::_ZTV10QScrollBar) + 472u) + +Vtable for QSizeGrip +QSizeGrip::_ZTV9QSizeGrip: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QSizeGrip) +16 QSizeGrip::metaObject +24 QSizeGrip::qt_metacast +32 QSizeGrip::qt_metacall +40 QSizeGrip::~QSizeGrip +48 QSizeGrip::~QSizeGrip +56 QSizeGrip::event +64 QSizeGrip::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QSizeGrip::setVisible +128 QSizeGrip::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QSizeGrip::mousePressEvent +168 QSizeGrip::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QSizeGrip::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QSizeGrip::paintEvent +256 QSizeGrip::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QSizeGrip::showEvent +344 QSizeGrip::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI9QSizeGrip) +464 QSizeGrip::_ZThn16_N9QSizeGripD1Ev +472 QSizeGrip::_ZThn16_N9QSizeGripD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSizeGrip + size=40 align=8 + base size=40 base align=8 +QSizeGrip (0x7fb29c24c310) 0 + vptr=((& QSizeGrip::_ZTV9QSizeGrip) + 16u) + QWidget (0x7fb29c24a380) 0 + primary-for QSizeGrip (0x7fb29c24c310) + QObject (0x7fb29c24c380) 0 + primary-for QWidget (0x7fb29c24a380) + QPaintDevice (0x7fb29c24c3f0) 16 + vptr=((& QSizeGrip::_ZTV9QSizeGrip) + 464u) + +Vtable for QSpinBox +QSpinBox::_ZTV8QSpinBox: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QSpinBox) +16 QSpinBox::metaObject +24 QSpinBox::qt_metacast +32 QSpinBox::qt_metacall +40 QSpinBox::~QSpinBox +48 QSpinBox::~QSpinBox +56 QSpinBox::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractSpinBox::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractSpinBox::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QAbstractSpinBox::wheelEvent +200 QAbstractSpinBox::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QAbstractSpinBox::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractSpinBox::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QAbstractSpinBox::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QSpinBox::validate +456 QSpinBox::fixup +464 QAbstractSpinBox::stepBy +472 QAbstractSpinBox::clear +480 QAbstractSpinBox::stepEnabled +488 QSpinBox::valueFromText +496 QSpinBox::textFromValue +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI8QSpinBox) +520 QSpinBox::_ZThn16_N8QSpinBoxD1Ev +528 QSpinBox::_ZThn16_N8QSpinBoxD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSpinBox + size=40 align=8 + base size=40 base align=8 +QSpinBox (0x7fb29c263e00) 0 + vptr=((& QSpinBox::_ZTV8QSpinBox) + 16u) + QAbstractSpinBox (0x7fb29c263e70) 0 + primary-for QSpinBox (0x7fb29c263e00) + QWidget (0x7fb29c24ad80) 0 + primary-for QAbstractSpinBox (0x7fb29c263e70) + QObject (0x7fb29c263ee0) 0 + primary-for QWidget (0x7fb29c24ad80) + QPaintDevice (0x7fb29c263f50) 16 + vptr=((& QSpinBox::_ZTV8QSpinBox) + 520u) + +Vtable for QDoubleSpinBox +QDoubleSpinBox::_ZTV14QDoubleSpinBox: 70u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QDoubleSpinBox) +16 QDoubleSpinBox::metaObject +24 QDoubleSpinBox::qt_metacast +32 QDoubleSpinBox::qt_metacall +40 QDoubleSpinBox::~QDoubleSpinBox +48 QDoubleSpinBox::~QDoubleSpinBox +56 QAbstractSpinBox::event +64 QObject::eventFilter +72 QAbstractSpinBox::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractSpinBox::sizeHint +136 QAbstractSpinBox::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QAbstractSpinBox::mousePressEvent +168 QAbstractSpinBox::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractSpinBox::mouseMoveEvent +192 QAbstractSpinBox::wheelEvent +200 QAbstractSpinBox::keyPressEvent +208 QAbstractSpinBox::keyReleaseEvent +216 QAbstractSpinBox::focusInEvent +224 QAbstractSpinBox::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QAbstractSpinBox::paintEvent +256 QWidget::moveEvent +264 QAbstractSpinBox::resizeEvent +272 QAbstractSpinBox::closeEvent +280 QAbstractSpinBox::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QAbstractSpinBox::showEvent +344 QAbstractSpinBox::hideEvent +352 QWidget::x11Event +360 QAbstractSpinBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QAbstractSpinBox::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QDoubleSpinBox::validate +456 QDoubleSpinBox::fixup +464 QAbstractSpinBox::stepBy +472 QAbstractSpinBox::clear +480 QAbstractSpinBox::stepEnabled +488 QDoubleSpinBox::valueFromText +496 QDoubleSpinBox::textFromValue +504 (int (*)(...))-0x00000000000000010 +512 (int (*)(...))(& _ZTI14QDoubleSpinBox) +520 QDoubleSpinBox::_ZThn16_N14QDoubleSpinBoxD1Ev +528 QDoubleSpinBox::_ZThn16_N14QDoubleSpinBoxD0Ev +536 QWidget::_ZThn16_NK7QWidget7devTypeEv +544 QWidget::_ZThn16_NK7QWidget11paintEngineEv +552 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDoubleSpinBox + size=40 align=8 + base size=40 base align=8 +QDoubleSpinBox (0x7fb29c28f770) 0 + vptr=((& QDoubleSpinBox::_ZTV14QDoubleSpinBox) + 16u) + QAbstractSpinBox (0x7fb29c28f7e0) 0 + primary-for QDoubleSpinBox (0x7fb29c28f770) + QWidget (0x7fb29c282f00) 0 + primary-for QAbstractSpinBox (0x7fb29c28f7e0) + QObject (0x7fb29c28f850) 0 + primary-for QWidget (0x7fb29c282f00) + QPaintDevice (0x7fb29c28f8c0) 16 + vptr=((& QDoubleSpinBox::_ZTV14QDoubleSpinBox) + 520u) + +Vtable for QSplashScreen +QSplashScreen::_ZTV13QSplashScreen: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSplashScreen) +16 QSplashScreen::metaObject +24 QSplashScreen::qt_metacast +32 QSplashScreen::qt_metacall +40 QSplashScreen::~QSplashScreen +48 QSplashScreen::~QSplashScreen +56 QSplashScreen::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QSplashScreen::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QSplashScreen::drawContents +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI13QSplashScreen) +472 QSplashScreen::_ZThn16_N13QSplashScreenD1Ev +480 QSplashScreen::_ZThn16_N13QSplashScreenD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSplashScreen + size=40 align=8 + base size=40 base align=8 +QSplashScreen (0x7fb29c2ad230) 0 + vptr=((& QSplashScreen::_ZTV13QSplashScreen) + 16u) + QWidget (0x7fb29c291900) 0 + primary-for QSplashScreen (0x7fb29c2ad230) + QObject (0x7fb29c2ad2a0) 0 + primary-for QWidget (0x7fb29c291900) + QPaintDevice (0x7fb29c2ad310) 16 + vptr=((& QSplashScreen::_ZTV13QSplashScreen) + 472u) + +Vtable for QSplitter +QSplitter::_ZTV9QSplitter: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QSplitter) +16 QSplitter::metaObject +24 QSplitter::qt_metacast +32 QSplitter::qt_metacall +40 QSplitter::~QSplitter +48 QSplitter::~QSplitter +56 QSplitter::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QSplitter::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QSplitter::sizeHint +136 QSplitter::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFrame::paintEvent +256 QWidget::moveEvent +264 QSplitter::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QSplitter::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QSplitter::createHandle +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI9QSplitter) +472 QSplitter::_ZThn16_N9QSplitterD1Ev +480 QSplitter::_ZThn16_N9QSplitterD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSplitter + size=40 align=8 + base size=40 base align=8 +QSplitter (0x7fb29c2d1310) 0 + vptr=((& QSplitter::_ZTV9QSplitter) + 16u) + QFrame (0x7fb29c2d1380) 0 + primary-for QSplitter (0x7fb29c2d1310) + QWidget (0x7fb29c2cc580) 0 + primary-for QFrame (0x7fb29c2d1380) + QObject (0x7fb29c2d13f0) 0 + primary-for QWidget (0x7fb29c2cc580) + QPaintDevice (0x7fb29c2d1460) 16 + vptr=((& QSplitter::_ZTV9QSplitter) + 472u) + +Vtable for QSplitterHandle +QSplitterHandle::_ZTV15QSplitterHandle: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSplitterHandle) +16 QSplitterHandle::metaObject +24 QSplitterHandle::qt_metacast +32 QSplitterHandle::qt_metacall +40 QSplitterHandle::~QSplitterHandle +48 QSplitterHandle::~QSplitterHandle +56 QSplitterHandle::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QSplitterHandle::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QSplitterHandle::mousePressEvent +168 QSplitterHandle::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QSplitterHandle::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QSplitterHandle::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI15QSplitterHandle) +464 QSplitterHandle::_ZThn16_N15QSplitterHandleD1Ev +472 QSplitterHandle::_ZThn16_N15QSplitterHandleD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSplitterHandle + size=40 align=8 + base size=40 base align=8 +QSplitterHandle (0x7fb29c2fd230) 0 + vptr=((& QSplitterHandle::_ZTV15QSplitterHandle) + 16u) + QWidget (0x7fb29c2fa780) 0 + primary-for QSplitterHandle (0x7fb29c2fd230) + QObject (0x7fb29c2fd2a0) 0 + primary-for QWidget (0x7fb29c2fa780) + QPaintDevice (0x7fb29c2fd310) 16 + vptr=((& QSplitterHandle::_ZTV15QSplitterHandle) + 464u) + +Vtable for QStackedWidget +QStackedWidget::_ZTV14QStackedWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QStackedWidget) +16 QStackedWidget::metaObject +24 QStackedWidget::qt_metacast +32 QStackedWidget::qt_metacall +40 QStackedWidget::~QStackedWidget +48 QStackedWidget::~QStackedWidget +56 QStackedWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QFrame::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFrame::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QFrame::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI14QStackedWidget) +464 QStackedWidget::_ZThn16_N14QStackedWidgetD1Ev +472 QStackedWidget::_ZThn16_N14QStackedWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QStackedWidget + size=40 align=8 + base size=40 base align=8 +QStackedWidget (0x7fb29c317a10) 0 + vptr=((& QStackedWidget::_ZTV14QStackedWidget) + 16u) + QFrame (0x7fb29c317a80) 0 + primary-for QStackedWidget (0x7fb29c317a10) + QWidget (0x7fb29c31a180) 0 + primary-for QFrame (0x7fb29c317a80) + QObject (0x7fb29c317af0) 0 + primary-for QWidget (0x7fb29c31a180) + QPaintDevice (0x7fb29c317b60) 16 + vptr=((& QStackedWidget::_ZTV14QStackedWidget) + 464u) + +Vtable for QStatusBar +QStatusBar::_ZTV10QStatusBar: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QStatusBar) +16 QStatusBar::metaObject +24 QStatusBar::qt_metacast +32 QStatusBar::qt_metacall +40 QStatusBar::~QStatusBar +48 QStatusBar::~QStatusBar +56 QStatusBar::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QStatusBar::paintEvent +256 QWidget::moveEvent +264 QStatusBar::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QStatusBar::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI10QStatusBar) +464 QStatusBar::_ZThn16_N10QStatusBarD1Ev +472 QStatusBar::_ZThn16_N10QStatusBarD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QStatusBar + size=40 align=8 + base size=40 base align=8 +QStatusBar (0x7fb29c3338c0) 0 + vptr=((& QStatusBar::_ZTV10QStatusBar) + 16u) + QWidget (0x7fb29c31ab80) 0 + primary-for QStatusBar (0x7fb29c3338c0) + QObject (0x7fb29c333930) 0 + primary-for QWidget (0x7fb29c31ab80) + QPaintDevice (0x7fb29c3339a0) 16 + vptr=((& QStatusBar::_ZTV10QStatusBar) + 464u) + +Vtable for QTextBrowser +QTextBrowser::_ZTV12QTextBrowser: 74u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextBrowser) +16 QTextBrowser::metaObject +24 QTextBrowser::qt_metacast +32 QTextBrowser::qt_metacall +40 QTextBrowser::~QTextBrowser +48 QTextBrowser::~QTextBrowser +56 QTextBrowser::event +64 QObject::eventFilter +72 QTextEdit::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QAbstractScrollArea::sizeHint +136 QAbstractScrollArea::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QTextBrowser::mousePressEvent +168 QTextBrowser::mouseReleaseEvent +176 QTextEdit::mouseDoubleClickEvent +184 QTextBrowser::mouseMoveEvent +192 QTextEdit::wheelEvent +200 QTextBrowser::keyPressEvent +208 QTextEdit::keyReleaseEvent +216 QTextEdit::focusInEvent +224 QTextBrowser::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QTextBrowser::paintEvent +256 QWidget::moveEvent +264 QTextEdit::resizeEvent +272 QWidget::closeEvent +280 QTextEdit::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QTextEdit::dragEnterEvent +312 QTextEdit::dragMoveEvent +320 QTextEdit::dragLeaveEvent +328 QTextEdit::dropEvent +336 QTextEdit::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QTextEdit::changeEvent +368 QWidget::metric +376 QTextEdit::inputMethodEvent +384 QTextEdit::inputMethodQuery +392 QTextBrowser::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QAbstractScrollArea::viewportEvent +456 QTextEdit::scrollContentsBy +464 QTextBrowser::loadResource +472 QTextEdit::createMimeDataFromSelection +480 QTextEdit::canInsertFromMimeData +488 QTextEdit::insertFromMimeData +496 QTextBrowser::setSource +504 QTextBrowser::backward +512 QTextBrowser::forward +520 QTextBrowser::home +528 QTextBrowser::reload +536 (int (*)(...))-0x00000000000000010 +544 (int (*)(...))(& _ZTI12QTextBrowser) +552 QTextBrowser::_ZThn16_N12QTextBrowserD1Ev +560 QTextBrowser::_ZThn16_N12QTextBrowserD0Ev +568 QWidget::_ZThn16_NK7QWidget7devTypeEv +576 QWidget::_ZThn16_NK7QWidget11paintEngineEv +584 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTextBrowser + size=40 align=8 + base size=40 base align=8 +QTextBrowser (0x7fb29c155e00) 0 + vptr=((& QTextBrowser::_ZTV12QTextBrowser) + 16u) + QTextEdit (0x7fb29c155e70) 0 + primary-for QTextBrowser (0x7fb29c155e00) + QAbstractScrollArea (0x7fb29c155ee0) 0 + primary-for QTextEdit (0x7fb29c155e70) + QFrame (0x7fb29c155f50) 0 + primary-for QAbstractScrollArea (0x7fb29c155ee0) + QWidget (0x7fb29c150b80) 0 + primary-for QFrame (0x7fb29c155f50) + QObject (0x7fb29c15b000) 0 + primary-for QWidget (0x7fb29c150b80) + QPaintDevice (0x7fb29c15b070) 16 + vptr=((& QTextBrowser::_ZTV12QTextBrowser) + 552u) + +Vtable for QToolBar +QToolBar::_ZTV8QToolBar: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QToolBar) +16 QToolBar::metaObject +24 QToolBar::qt_metacast +32 QToolBar::qt_metacall +40 QToolBar::~QToolBar +48 QToolBar::~QToolBar +56 QToolBar::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QToolBar::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QToolBar::paintEvent +256 QWidget::moveEvent +264 QToolBar::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QToolBar::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QToolBar::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI8QToolBar) +464 QToolBar::_ZThn16_N8QToolBarD1Ev +472 QToolBar::_ZThn16_N8QToolBarD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QToolBar + size=40 align=8 + base size=40 base align=8 +QToolBar (0x7fb29c17aa10) 0 + vptr=((& QToolBar::_ZTV8QToolBar) + 16u) + QWidget (0x7fb29c177580) 0 + primary-for QToolBar (0x7fb29c17aa10) + QObject (0x7fb29c17aa80) 0 + primary-for QWidget (0x7fb29c177580) + QPaintDevice (0x7fb29c17aaf0) 16 + vptr=((& QToolBar::_ZTV8QToolBar) + 464u) + +Vtable for QToolBox +QToolBox::_ZTV8QToolBox: 65u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QToolBox) +16 QToolBox::metaObject +24 QToolBox::qt_metacast +32 QToolBox::qt_metacall +40 QToolBox::~QToolBox +48 QToolBox::~QToolBox +56 QToolBox::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QFrame::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QFrame::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QToolBox::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QToolBox::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QToolBox::itemInserted +456 QToolBox::itemRemoved +464 (int (*)(...))-0x00000000000000010 +472 (int (*)(...))(& _ZTI8QToolBox) +480 QToolBox::_ZThn16_N8QToolBoxD1Ev +488 QToolBox::_ZThn16_N8QToolBoxD0Ev +496 QWidget::_ZThn16_NK7QWidget7devTypeEv +504 QWidget::_ZThn16_NK7QWidget11paintEngineEv +512 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QToolBox + size=40 align=8 + base size=40 base align=8 +QToolBox (0x7fb29c1b5850) 0 + vptr=((& QToolBox::_ZTV8QToolBox) + 16u) + QFrame (0x7fb29c1b58c0) 0 + primary-for QToolBox (0x7fb29c1b5850) + QWidget (0x7fb29c1b3680) 0 + primary-for QFrame (0x7fb29c1b58c0) + QObject (0x7fb29c1b5930) 0 + primary-for QWidget (0x7fb29c1b3680) + QPaintDevice (0x7fb29c1b59a0) 16 + vptr=((& QToolBox::_ZTV8QToolBox) + 480u) + +Vtable for QToolButton +QToolButton::_ZTV11QToolButton: 66u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QToolButton) +16 QToolButton::metaObject +24 QToolButton::qt_metacast +32 QToolButton::qt_metacall +40 QToolButton::~QToolButton +48 QToolButton::~QToolButton +56 QToolButton::event +64 QObject::eventFilter +72 QToolButton::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QToolButton::sizeHint +136 QToolButton::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QToolButton::mousePressEvent +168 QToolButton::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QAbstractButton::mouseMoveEvent +192 QWidget::wheelEvent +200 QAbstractButton::keyPressEvent +208 QAbstractButton::keyReleaseEvent +216 QAbstractButton::focusInEvent +224 QAbstractButton::focusOutEvent +232 QToolButton::enterEvent +240 QToolButton::leaveEvent +248 QToolButton::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QToolButton::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QToolButton::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QToolButton::hitButton +456 QAbstractButton::checkStateSet +464 QToolButton::nextCheckState +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI11QToolButton) +488 QToolButton::_ZThn16_N11QToolButtonD1Ev +496 QToolButton::_ZThn16_N11QToolButtonD0Ev +504 QWidget::_ZThn16_NK7QWidget7devTypeEv +512 QWidget::_ZThn16_NK7QWidget11paintEngineEv +520 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QToolButton + size=40 align=8 + base size=40 base align=8 +QToolButton (0x7fb29c1ee310) 0 + vptr=((& QToolButton::_ZTV11QToolButton) + 16u) + QAbstractButton (0x7fb29c1ee380) 0 + primary-for QToolButton (0x7fb29c1ee310) + QWidget (0x7fb29c1eb400) 0 + primary-for QAbstractButton (0x7fb29c1ee380) + QObject (0x7fb29c1ee3f0) 0 + primary-for QWidget (0x7fb29c1eb400) + QPaintDevice (0x7fb29c1ee460) 16 + vptr=((& QToolButton::_ZTV11QToolButton) + 488u) + +Vtable for QWorkspace +QWorkspace::_ZTV10QWorkspace: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QWorkspace) +16 QWorkspace::metaObject +24 QWorkspace::qt_metacast +32 QWorkspace::qt_metacall +40 QWorkspace::~QWorkspace +48 QWorkspace::~QWorkspace +56 QWorkspace::event +64 QWorkspace::eventFilter +72 QObject::timerEvent +80 QWorkspace::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWorkspace::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWorkspace::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWorkspace::paintEvent +256 QWidget::moveEvent +264 QWorkspace::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWorkspace::showEvent +344 QWorkspace::hideEvent +352 QWidget::x11Event +360 QWorkspace::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI10QWorkspace) +464 QWorkspace::_ZThn16_N10QWorkspaceD1Ev +472 QWorkspace::_ZThn16_N10QWorkspaceD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWorkspace + size=40 align=8 + base size=40 base align=8 +QWorkspace (0x7fb29c234620) 0 + vptr=((& QWorkspace::_ZTV10QWorkspace) + 16u) + QWidget (0x7fb29c038100) 0 + primary-for QWorkspace (0x7fb29c234620) + QObject (0x7fb29c234690) 0 + primary-for QWidget (0x7fb29c038100) + QPaintDevice (0x7fb29c234700) 16 + vptr=((& QWorkspace::_ZTV10QWorkspace) + 464u) + +Vtable for QGraphicsSvgItem +QGraphicsSvgItem::_ZTV16QGraphicsSvgItem: 56u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QGraphicsSvgItem) +16 QGraphicsSvgItem::metaObject +24 QGraphicsSvgItem::qt_metacast +32 QGraphicsSvgItem::qt_metacall +40 QGraphicsSvgItem::~QGraphicsSvgItem +48 QGraphicsSvgItem::~QGraphicsSvgItem +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsSvgItem::boundingRect +120 QGraphicsSvgItem::paint +128 QGraphicsSvgItem::type +136 (int (*)(...))-0x00000000000000010 +144 (int (*)(...))(& _ZTI16QGraphicsSvgItem) +152 QGraphicsSvgItem::_ZThn16_N16QGraphicsSvgItemD1Ev +160 QGraphicsSvgItem::_ZThn16_N16QGraphicsSvgItemD0Ev +168 QGraphicsItem::advance +176 QGraphicsSvgItem::_ZThn16_NK16QGraphicsSvgItem12boundingRectEv +184 QGraphicsItem::shape +192 QGraphicsItem::contains +200 QGraphicsItem::collidesWithItem +208 QGraphicsItem::collidesWithPath +216 QGraphicsItem::isObscuredBy +224 QGraphicsItem::opaqueArea +232 QGraphicsSvgItem::_ZThn16_N16QGraphicsSvgItem5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget +240 QGraphicsSvgItem::_ZThn16_NK16QGraphicsSvgItem4typeEv +248 QGraphicsItem::sceneEventFilter +256 QGraphicsItem::sceneEvent +264 QGraphicsItem::contextMenuEvent +272 QGraphicsItem::dragEnterEvent +280 QGraphicsItem::dragLeaveEvent +288 QGraphicsItem::dragMoveEvent +296 QGraphicsItem::dropEvent +304 QGraphicsItem::focusInEvent +312 QGraphicsItem::focusOutEvent +320 QGraphicsItem::hoverEnterEvent +328 QGraphicsItem::hoverMoveEvent +336 QGraphicsItem::hoverLeaveEvent +344 QGraphicsItem::keyPressEvent +352 QGraphicsItem::keyReleaseEvent +360 QGraphicsItem::mousePressEvent +368 QGraphicsItem::mouseMoveEvent +376 QGraphicsItem::mouseReleaseEvent +384 QGraphicsItem::mouseDoubleClickEvent +392 QGraphicsItem::wheelEvent +400 QGraphicsItem::inputMethodEvent +408 QGraphicsItem::inputMethodQuery +416 QGraphicsItem::itemChange +424 QGraphicsItem::supportsExtension +432 QGraphicsItem::setExtension +440 QGraphicsItem::extension + +Class QGraphicsSvgItem + size=32 align=8 + base size=32 base align=8 +QGraphicsSvgItem (0x7fb29c056700) 0 + vptr=((& QGraphicsSvgItem::_ZTV16QGraphicsSvgItem) + 16u) + QGraphicsObject (0x7fb29c038c00) 0 + primary-for QGraphicsSvgItem (0x7fb29c056700) + QObject (0x7fb29c056770) 0 + primary-for QGraphicsObject (0x7fb29c038c00) + QGraphicsItem (0x7fb29c0567e0) 16 + vptr=((& QGraphicsSvgItem::_ZTV16QGraphicsSvgItem) + 152u) + +Vtable for QSvgGenerator +QSvgGenerator::_ZTV13QSvgGenerator: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSvgGenerator) +16 QSvgGenerator::~QSvgGenerator +24 QSvgGenerator::~QSvgGenerator +32 QPaintDevice::devType +40 QSvgGenerator::paintEngine +48 QSvgGenerator::metric + +Class QSvgGenerator + size=24 align=8 + base size=24 base align=8 +QSvgGenerator (0x7fb29c079380) 0 + vptr=((& QSvgGenerator::_ZTV13QSvgGenerator) + 16u) + QPaintDevice (0x7fb29c0793f0) 0 + primary-for QSvgGenerator (0x7fb29c079380) + +Vtable for QSvgRenderer +QSvgRenderer::_ZTV12QSvgRenderer: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QSvgRenderer) +16 QSvgRenderer::metaObject +24 QSvgRenderer::qt_metacast +32 QSvgRenderer::qt_metacall +40 QSvgRenderer::~QSvgRenderer +48 QSvgRenderer::~QSvgRenderer +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSvgRenderer + size=16 align=8 + base size=16 base align=8 +QSvgRenderer (0x7fb29c079d90) 0 + vptr=((& QSvgRenderer::_ZTV12QSvgRenderer) + 16u) + QObject (0x7fb29c079e00) 0 + primary-for QSvgRenderer (0x7fb29c079d90) + +Vtable for QSvgWidget +QSvgWidget::_ZTV10QSvgWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QSvgWidget) +16 QSvgWidget::metaObject +24 QSvgWidget::qt_metacast +32 QSvgWidget::qt_metacall +40 QSvgWidget::~QSvgWidget +48 QSvgWidget::~QSvgWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QSvgWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QSvgWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI10QSvgWidget) +464 QSvgWidget::_ZThn16_N10QSvgWidgetD1Ev +472 QSvgWidget::_ZThn16_N10QSvgWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSvgWidget + size=40 align=8 + base size=40 base align=8 +QSvgWidget (0x7fb29c0a9460) 0 + vptr=((& QSvgWidget::_ZTV10QSvgWidget) + 16u) + QWidget (0x7fb29c0a4480) 0 + primary-for QSvgWidget (0x7fb29c0a9460) + QObject (0x7fb29c0a94d0) 0 + primary-for QWidget (0x7fb29c0a4480) + QPaintDevice (0x7fb29c0a9540) 16 + vptr=((& QSvgWidget::_ZTV10QSvgWidget) + 464u) + diff --git a/tests/auto/bic/data/QtTest.4.5.0.linux-gcc-amd64.txt b/tests/auto/bic/data/QtTest.4.5.0.linux-gcc-amd64.txt new file mode 100644 index 0000000..43c6519 --- /dev/null +++ b/tests/auto/bic/data/QtTest.4.5.0.linux-gcc-amd64.txt @@ -0,0 +1,2404 @@ +Class QSysInfo + size=1 align=1 + base size=0 base align=1 +QSysInfo (0x7fa41aaa6540) 0 empty + +Class QBool + size=1 align=1 + base size=1 base align=1 +QBool (0x7fa41aabb230) 0 + +Class qIsNull(double)::U + size=8 align=8 + base size=8 base align=8 +qIsNull(double)::U (0x7fa41aad0620) 0 + +Class qIsNull(float)::U + size=4 align=4 + base size=4 base align=4 +qIsNull(float)::U (0x7fa41aad08c0) 0 + +Class QFlag + size=4 align=4 + base size=4 base align=4 +QFlag (0x7fa41ab07700) 0 + +Class QIncompatibleFlag + size=4 align=4 + base size=4 base align=4 +QIncompatibleFlag (0x7fa41ab07ee0) 0 + +Class QInternal + size=1 align=1 + base size=0 base align=1 +QInternal (0x7fa41a105620) 0 empty + +Class QGenericArgument + size=16 align=8 + base size=16 base align=8 +QGenericArgument (0x7fa41a105930) 0 + +Class QGenericReturnArgument + size=16 align=8 + base size=16 base align=8 +QGenericReturnArgument (0x7fa41a1214d0) 0 + QGenericArgument (0x7fa41a121540) 0 + +Class QMetaObject + size=32 align=8 + base size=32 base align=8 +QMetaObject (0x7fa41a121d90) 0 + +Class QMetaObjectExtraData + size=16 align=8 + base size=16 base align=8 +QMetaObjectExtraData (0x7fa41a147d90) 0 + +Class QLatin1Char + size=1 align=1 + base size=1 base align=1 +QLatin1Char (0x7fa41a1527e0) 0 + +Class QChar + size=2 align=2 + base size=2 base align=2 +QChar (0x7fa41a157380) 0 + +Class QBasicAtomicInt + size=4 align=4 + base size=4 base align=4 +QBasicAtomicInt (0x7fa419fc1460) 0 + +Class QAtomicInt + size=4 align=4 + base size=4 base align=4 +QAtomicInt (0x7fa419ffae00) 0 + QBasicAtomicInt (0x7fa419ffae70) 0 + +Class __locale_struct + size=232 align=8 + base size=232 base align=8 +__locale_struct (0x7fa41a0212a0) 0 + +Class QByteArray::Data + size=32 align=8 + base size=32 base align=8 +QByteArray::Data (0x7fa419e9d8c0) 0 + +Class QByteArray + size=8 align=8 + base size=8 base align=8 +QByteArray (0x7fa41a059620) 0 + +Class QByteRef + size=16 align=8 + base size=12 base align=8 +QByteRef (0x7fa419ef2b60) 0 + +Class QString::Null + size=1 align=1 + base size=0 base align=1 +QString::Null (0x7fa419dfb7e0) 0 empty + +Class QString::Data + size=32 align=8 + base size=32 base align=8 +QString::Data (0x7fa419e14000) 0 + +Class QString + size=8 align=8 + base size=8 base align=8 +QString (0x7fa419d78690) 0 + +Class QLatin1String + size=8 align=8 + base size=8 base align=8 +QLatin1String (0x7fa419ce50e0) 0 + +Class QCharRef + size=16 align=8 + base size=12 base align=8 +QCharRef (0x7fa419b7a700) 0 + +Class QConstString + size=8 align=8 + base size=8 base align=8 +QConstString (0x7fa419acf000) 0 + QString (0x7fa419acf070) 0 + +Class QStringRef + size=16 align=8 + base size=16 base align=8 +QStringRef (0x7fa419ae5cb0) 0 + +Vtable for std::exception +std::exception::_ZTVSt9exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9exception) +16 std::exception::~exception +24 std::exception::~exception +32 std::exception::what + +Class std::exception + size=8 align=8 + base size=8 base align=8 +std::exception (0x7fa41999f7e0) 0 nearly-empty + vptr=((& std::exception::_ZTVSt9exception) + 16u) + +Vtable for std::bad_exception +std::bad_exception::_ZTVSt13bad_exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13bad_exception) +16 std::bad_exception::~bad_exception +24 std::bad_exception::~bad_exception +32 std::bad_exception::what + +Class std::bad_exception + size=8 align=8 + base size=8 base align=8 +std::bad_exception (0x7fa4199c20e0) 0 nearly-empty + vptr=((& std::bad_exception::_ZTVSt13bad_exception) + 16u) + std::exception (0x7fa4199c2150) 0 nearly-empty + primary-for std::bad_exception (0x7fa4199c20e0) + +Vtable for std::bad_alloc +std::bad_alloc::_ZTVSt9bad_alloc: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9bad_alloc) +16 std::bad_alloc::~bad_alloc +24 std::bad_alloc::~bad_alloc +32 std::bad_alloc::what + +Class std::bad_alloc + size=8 align=8 + base size=8 base align=8 +std::bad_alloc (0x7fa4199c29a0) 0 nearly-empty + vptr=((& std::bad_alloc::_ZTVSt9bad_alloc) + 16u) + std::exception (0x7fa4199c2a10) 0 nearly-empty + primary-for std::bad_alloc (0x7fa4199c29a0) + +Class std::nothrow_t + size=1 align=1 + base size=0 base align=1 +std::nothrow_t (0x7fa4199d51c0) 0 empty + +Class QListData::Data + size=32 align=8 + base size=32 base align=8 +QListData::Data (0x7fa4199d5700) 0 + +Class QListData + size=8 align=8 + base size=8 base align=8 +QListData (0x7fa4199d5690) 0 + +Vtable for QObjectData +QObjectData::_ZTV11QObjectData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QObjectData) +16 __cxa_pure_virtual +24 __cxa_pure_virtual + +Class QObjectData + size=40 align=8 + base size=40 base align=8 +QObjectData (0x7fa4198d7cb0) 0 + vptr=((& QObjectData::_ZTV11QObjectData) + 16u) + +Vtable for QObject +QObject::_ZTV7QObject: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QObject) +16 QObject::metaObject +24 QObject::qt_metacast +32 QObject::qt_metacall +40 QObject::~QObject +48 QObject::~QObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObject + size=16 align=8 + base size=16 base align=8 +QObject (0x7fa4198d7f50) 0 + vptr=((& QObject::_ZTV7QObject) + 16u) + +Vtable for QObjectUserData +QObjectUserData::_ZTV15QObjectUserData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QObjectUserData) +16 QObjectUserData::~QObjectUserData +24 QObjectUserData::~QObjectUserData + +Class QObjectUserData + size=8 align=8 + base size=8 base align=8 +QObjectUserData (0x7fa4197594d0) 0 nearly-empty + vptr=((& QObjectUserData::_ZTV15QObjectUserData) + 16u) + +Vtable for QIODevice +QIODevice::_ZTV9QIODevice: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QIODevice) +16 QIODevice::metaObject +24 QIODevice::qt_metacast +32 QIODevice::qt_metacall +40 QIODevice::~QIODevice +48 QIODevice::~QIODevice +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QIODevice::isSequential +120 QIODevice::open +128 QIODevice::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QIODevice::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 __cxa_pure_virtual +224 QIODevice::readLineData +232 __cxa_pure_virtual + +Class QIODevice + size=16 align=8 + base size=16 base align=8 +QIODevice (0x7fa419759a10) 0 + vptr=((& QIODevice::_ZTV9QIODevice) + 16u) + QObject (0x7fa419759a80) 0 + primary-for QIODevice (0x7fa419759a10) + +Vtable for QDataStream +QDataStream::_ZTV11QDataStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QDataStream) +16 QDataStream::~QDataStream +24 QDataStream::~QDataStream + +Class QDataStream + size=40 align=8 + base size=40 base align=8 +QDataStream (0x7fa4197cc380) 0 + vptr=((& QDataStream::_ZTV11QDataStream) + 16u) + +Class QHashData::Node + size=16 align=8 + base size=16 base align=8 +QHashData::Node (0x7fa419655230) 0 + +Class QHashData + size=40 align=8 + base size=40 base align=8 +QHashData (0x7fa4196551c0) 0 + +Class QHashDummyValue + size=1 align=1 + base size=0 base align=1 +QHashDummyValue (0x7fa419669000) 0 empty + +Class QMapData::Node + size=16 align=8 + base size=16 base align=8 +QMapData::Node (0x7fa419577770) 0 + +Class QMapData + size=128 align=8 + base size=128 base align=8 +QMapData (0x7fa419577700) 0 + +Vtable for QSystemLocale +QSystemLocale::_ZTV13QSystemLocale: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSystemLocale) +16 QSystemLocale::~QSystemLocale +24 QSystemLocale::~QSystemLocale +32 QSystemLocale::query +40 QSystemLocale::fallbackLocale + +Class QSystemLocale + size=8 align=8 + base size=8 base align=8 +QSystemLocale (0x7fa41948aee0) 0 nearly-empty + vptr=((& QSystemLocale::_ZTV13QSystemLocale) + 16u) + +Class QLocale::Data + size=4 align=2 + base size=4 base align=2 +QLocale::Data (0x7fa4194eb4d0) 0 + +Class QLocale + size=8 align=8 + base size=8 base align=8 +QLocale (0x7fa4194a91c0) 0 + +Class QTextCodec::ConverterState + size=32 align=8 + base size=32 base align=8 +QTextCodec::ConverterState (0x7fa419539f50) 0 + +Vtable for QTextCodec +QTextCodec::_ZTV10QTextCodec: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextCodec) +16 __cxa_pure_virtual +24 QTextCodec::aliases +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QTextCodec::~QTextCodec +64 QTextCodec::~QTextCodec + +Class QTextCodec + size=8 align=8 + base size=8 base align=8 +QTextCodec (0x7fa419521b60) 0 nearly-empty + vptr=((& QTextCodec::_ZTV10QTextCodec) + 16u) + +Class QTextEncoder + size=40 align=8 + base size=40 base align=8 +QTextEncoder (0x7fa4193a54d0) 0 + +Class QTextDecoder + size=40 align=8 + base size=40 base align=8 +QTextDecoder (0x7fa4193ad310) 0 + +Class _IO_marker + size=24 align=8 + base size=24 base align=8 +_IO_marker (0x7fa4193b5380) 0 + +Class _IO_FILE + size=216 align=8 + base size=216 base align=8 +_IO_FILE (0x7fa4193b53f0) 0 + +Vtable for QTextStream +QTextStream::_ZTV11QTextStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTextStream) +16 QTextStream::~QTextStream +24 QTextStream::~QTextStream + +Class QTextStream + size=16 align=8 + base size=16 base align=8 +QTextStream (0x7fa4193b54d0) 0 + vptr=((& QTextStream::_ZTV11QTextStream) + 16u) + +Class QTextStreamManipulator + size=40 align=8 + base size=38 base align=8 +QTextStreamManipulator (0x7fa41925a000) 0 + +Vtable for QTextIStream +QTextIStream::_ZTV12QTextIStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextIStream) +16 QTextIStream::~QTextIStream +24 QTextIStream::~QTextIStream + +Class QTextIStream + size=16 align=8 + base size=16 base align=8 +QTextIStream (0x7fa41927b2a0) 0 + vptr=((& QTextIStream::_ZTV12QTextIStream) + 16u) + QTextStream (0x7fa41927b310) 0 + primary-for QTextIStream (0x7fa41927b2a0) + +Vtable for QTextOStream +QTextOStream::_ZTV12QTextOStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextOStream) +16 QTextOStream::~QTextOStream +24 QTextOStream::~QTextOStream + +Class QTextOStream + size=16 align=8 + base size=16 base align=8 +QTextOStream (0x7fa41928e150) 0 + vptr=((& QTextOStream::_ZTV12QTextOStream) + 16u) + QTextStream (0x7fa41928e1c0) 0 + primary-for QTextOStream (0x7fa41928e150) + +Class wait + size=4 align=4 + base size=4 base align=4 +wait (0x7fa4192a5000) 0 + +Class timespec + size=16 align=8 + base size=16 base align=8 +timespec (0x7fa4192a5310) 0 + +Class timeval + size=16 align=8 + base size=16 base align=8 +timeval (0x7fa4192a5380) 0 + +Class __pthread_internal_list + size=16 align=8 + base size=16 base align=8 +__pthread_internal_list (0x7fa4192a54d0) 0 + +Class random_data + size=48 align=8 + base size=48 base align=8 +random_data (0x7fa4192a5a80) 0 + +Class drand48_data + size=24 align=8 + base size=24 base align=8 +drand48_data (0x7fa4192a5af0) 0 + +Class QVectorData + size=16 align=4 + base size=16 base align=4 +QVectorData (0x7fa4192a5b60) 0 + +Class QDebug::Stream + size=40 align=8 + base size=34 base align=8 +QDebug::Stream (0x7fa419223310) 0 + +Class QDebug + size=8 align=8 + base size=8 base align=8 +QDebug (0x7fa4192232a0) 0 + +Class QNoDebug + size=1 align=1 + base size=0 base align=1 +QNoDebug (0x7fa4190c2150) 0 empty + +Vtable for QFile +QFile::_ZTV5QFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QFile) +16 QFile::metaObject +24 QFile::qt_metacast +32 QFile::qt_metacall +40 QFile::~QFile +48 QFile::~QFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QFile::fileEngine + +Class QFile + size=16 align=8 + base size=16 base align=8 +QFile (0x7fa4190d3700) 0 + vptr=((& QFile::_ZTV5QFile) + 16u) + QIODevice (0x7fa4190d3770) 0 + primary-for QFile (0x7fa4190d3700) + QObject (0x7fa4190d37e0) 0 + primary-for QIODevice (0x7fa4190d3770) + +Vtable for QTemporaryFile +QTemporaryFile::_ZTV14QTemporaryFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QTemporaryFile) +16 QTemporaryFile::metaObject +24 QTemporaryFile::qt_metacast +32 QTemporaryFile::qt_metacall +40 QTemporaryFile::~QTemporaryFile +48 QTemporaryFile::~QTemporaryFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QTemporaryFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QTemporaryFile::fileEngine + +Class QTemporaryFile + size=16 align=8 + base size=16 base align=8 +QTemporaryFile (0x7fa41913d930) 0 + vptr=((& QTemporaryFile::_ZTV14QTemporaryFile) + 16u) + QFile (0x7fa41913d9a0) 0 + primary-for QTemporaryFile (0x7fa41913d930) + QIODevice (0x7fa41913da10) 0 + primary-for QFile (0x7fa41913d9a0) + QObject (0x7fa41913da80) 0 + primary-for QIODevice (0x7fa41913da10) + +Class QFileInfo + size=8 align=8 + base size=8 base align=8 +QFileInfo (0x7fa418f68070) 0 + +Class QRegExp + size=8 align=8 + base size=8 base align=8 +QRegExp (0x7fa418fbc850) 0 + +Class QStringMatcher + size=1048 align=8 + base size=1048 base align=8 +QStringMatcher (0x7fa419008690) 0 + +Class QStringList + size=8 align=8 + base size=8 base align=8 +QStringList (0x7fa419019150) 0 + QList (0x7fa4190191c0) 0 + +Class QDir + size=8 align=8 + base size=8 base align=8 +QDir (0x7fa418ea9d90) 0 + +Class QAbstractFileEngine::ExtensionOption + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionOption (0x7fa418f43f50) 0 empty + +Class QAbstractFileEngine::ExtensionReturn + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionReturn (0x7fa418d58000) 0 empty + +Class QAbstractFileEngine::MapExtensionOption + size=24 align=8 + base size=20 base align=8 +QAbstractFileEngine::MapExtensionOption (0x7fa418d58070) 0 + QAbstractFileEngine::ExtensionOption (0x7fa418d580e0) 0 empty + +Class QAbstractFileEngine::MapExtensionReturn + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::MapExtensionReturn (0x7fa418d582a0) 0 + QAbstractFileEngine::ExtensionReturn (0x7fa418d58310) 0 empty + +Class QAbstractFileEngine::UnMapExtensionOption + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::UnMapExtensionOption (0x7fa418d58380) 0 + QAbstractFileEngine::ExtensionOption (0x7fa418d583f0) 0 empty + +Vtable for QAbstractFileEngine +QAbstractFileEngine::_ZTV19QAbstractFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractFileEngine) +16 QAbstractFileEngine::~QAbstractFileEngine +24 QAbstractFileEngine::~QAbstractFileEngine +32 QAbstractFileEngine::open +40 QAbstractFileEngine::close +48 QAbstractFileEngine::flush +56 QAbstractFileEngine::size +64 QAbstractFileEngine::pos +72 QAbstractFileEngine::seek +80 QAbstractFileEngine::isSequential +88 QAbstractFileEngine::remove +96 QAbstractFileEngine::copy +104 QAbstractFileEngine::rename +112 QAbstractFileEngine::link +120 QAbstractFileEngine::mkdir +128 QAbstractFileEngine::rmdir +136 QAbstractFileEngine::setSize +144 QAbstractFileEngine::caseSensitive +152 QAbstractFileEngine::isRelativePath +160 QAbstractFileEngine::entryList +168 QAbstractFileEngine::fileFlags +176 QAbstractFileEngine::setPermissions +184 QAbstractFileEngine::fileName +192 QAbstractFileEngine::ownerId +200 QAbstractFileEngine::owner +208 QAbstractFileEngine::fileTime +216 QAbstractFileEngine::setFileName +224 QAbstractFileEngine::handle +232 QAbstractFileEngine::beginEntryList +240 QAbstractFileEngine::endEntryList +248 QAbstractFileEngine::read +256 QAbstractFileEngine::readLine +264 QAbstractFileEngine::write +272 QAbstractFileEngine::extension +280 QAbstractFileEngine::supportsExtension + +Class QAbstractFileEngine + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngine (0x7fa418f33ee0) 0 + vptr=((& QAbstractFileEngine::_ZTV19QAbstractFileEngine) + 16u) + +Vtable for QAbstractFileEngineHandler +QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QAbstractFileEngineHandler) +16 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +24 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +32 __cxa_pure_virtual + +Class QAbstractFileEngineHandler + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngineHandler (0x7fa418d880e0) 0 nearly-empty + vptr=((& QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler) + 16u) + +Vtable for QAbstractFileEngineIterator +QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QAbstractFileEngineIterator) +16 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +24 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QAbstractFileEngineIterator::currentFileInfo +64 QAbstractFileEngineIterator::entryInfo + +Class QAbstractFileEngineIterator + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngineIterator (0x7fa418d882a0) 0 + vptr=((& QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator) + 16u) + +Vtable for QFSFileEngine +QFSFileEngine::_ZTV13QFSFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QFSFileEngine) +16 QFSFileEngine::~QFSFileEngine +24 QFSFileEngine::~QFSFileEngine +32 QFSFileEngine::open +40 QFSFileEngine::close +48 QFSFileEngine::flush +56 QFSFileEngine::size +64 QFSFileEngine::pos +72 QFSFileEngine::seek +80 QFSFileEngine::isSequential +88 QFSFileEngine::remove +96 QFSFileEngine::copy +104 QFSFileEngine::rename +112 QFSFileEngine::link +120 QFSFileEngine::mkdir +128 QFSFileEngine::rmdir +136 QFSFileEngine::setSize +144 QFSFileEngine::caseSensitive +152 QFSFileEngine::isRelativePath +160 QFSFileEngine::entryList +168 QFSFileEngine::fileFlags +176 QFSFileEngine::setPermissions +184 QFSFileEngine::fileName +192 QFSFileEngine::ownerId +200 QFSFileEngine::owner +208 QFSFileEngine::fileTime +216 QFSFileEngine::setFileName +224 QFSFileEngine::handle +232 QFSFileEngine::beginEntryList +240 QFSFileEngine::endEntryList +248 QFSFileEngine::read +256 QFSFileEngine::readLine +264 QFSFileEngine::write +272 QFSFileEngine::extension +280 QFSFileEngine::supportsExtension + +Class QFSFileEngine + size=16 align=8 + base size=16 base align=8 +QFSFileEngine (0x7fa418d88af0) 0 + vptr=((& QFSFileEngine::_ZTV13QFSFileEngine) + 16u) + QAbstractFileEngine (0x7fa418d88b60) 0 + primary-for QFSFileEngine (0x7fa418d88af0) + +Vtable for QProcess +QProcess::_ZTV8QProcess: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QProcess) +16 QProcess::metaObject +24 QProcess::qt_metacast +32 QProcess::qt_metacall +40 QProcess::~QProcess +48 QProcess::~QProcess +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QProcess::isSequential +120 QIODevice::open +128 QProcess::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QProcess::atEnd +168 QIODevice::reset +176 QProcess::bytesAvailable +184 QProcess::bytesToWrite +192 QProcess::canReadLine +200 QProcess::waitForReadyRead +208 QProcess::waitForBytesWritten +216 QProcess::readData +224 QIODevice::readLineData +232 QProcess::writeData +240 QProcess::setupChildProcess + +Class QProcess + size=16 align=8 + base size=16 base align=8 +QProcess (0x7fa418d9de00) 0 + vptr=((& QProcess::_ZTV8QProcess) + 16u) + QIODevice (0x7fa418d9de70) 0 + primary-for QProcess (0x7fa418d9de00) + QObject (0x7fa418d9dee0) 0 + primary-for QIODevice (0x7fa418d9de70) + +Class QResource + size=8 align=8 + base size=8 base align=8 +QResource (0x7fa418ddb310) 0 + +Vtable for QDirIterator +QDirIterator::_ZTV12QDirIterator: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QDirIterator) +16 QDirIterator::~QDirIterator +24 QDirIterator::~QDirIterator + +Class QDirIterator + size=16 align=8 + base size=16 base align=8 +QDirIterator (0x7fa418ddbd90) 0 + vptr=((& QDirIterator::_ZTV12QDirIterator) + 16u) + +Vtable for QBuffer +QBuffer::_ZTV7QBuffer: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QBuffer) +16 QBuffer::metaObject +24 QBuffer::qt_metacast +32 QBuffer::qt_metacall +40 QBuffer::~QBuffer +48 QBuffer::~QBuffer +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QBuffer::connectNotify +104 QBuffer::disconnectNotify +112 QIODevice::isSequential +120 QBuffer::open +128 QBuffer::close +136 QBuffer::pos +144 QBuffer::size +152 QBuffer::seek +160 QBuffer::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QBuffer::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QBuffer::readData +224 QIODevice::readLineData +232 QBuffer::writeData + +Class QBuffer + size=16 align=8 + base size=16 base align=8 +QBuffer (0x7fa418e0db60) 0 + vptr=((& QBuffer::_ZTV7QBuffer) + 16u) + QIODevice (0x7fa418e0dbd0) 0 + primary-for QBuffer (0x7fa418e0db60) + QObject (0x7fa418e0dc40) 0 + primary-for QIODevice (0x7fa418e0dbd0) + +Vtable for QFileSystemWatcher +QFileSystemWatcher::_ZTV18QFileSystemWatcher: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFileSystemWatcher) +16 QFileSystemWatcher::metaObject +24 QFileSystemWatcher::qt_metacast +32 QFileSystemWatcher::qt_metacall +40 QFileSystemWatcher::~QFileSystemWatcher +48 QFileSystemWatcher::~QFileSystemWatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QFileSystemWatcher + size=16 align=8 + base size=16 base align=8 +QFileSystemWatcher (0x7fa418e33770) 0 + vptr=((& QFileSystemWatcher::_ZTV18QFileSystemWatcher) + 16u) + QObject (0x7fa418e337e0) 0 + primary-for QFileSystemWatcher (0x7fa418e33770) + +Class QUrl + size=8 align=8 + base size=8 base align=8 +QUrl (0x7fa418e44cb0) 0 + +Class QMetaType + size=1 align=1 + base size=0 base align=1 +QMetaType (0x7fa418cb14d0) 0 empty + +Class QVariant::PrivateShared + size=16 align=8 + base size=12 base align=8 +QVariant::PrivateShared (0x7fa418b84a10) 0 + +Class QVariant::Private::Data + size=8 align=8 + base size=8 base align=8 +QVariant::Private::Data (0x7fa418b84d20) 0 + +Class QVariant::Private + size=16 align=8 + base size=12 base align=8 +QVariant::Private (0x7fa418b84af0) 0 + +Class QVariant::Handler + size=72 align=8 + base size=72 base align=8 +QVariant::Handler (0x7fa418b91a10) 0 + +Class QVariant + size=16 align=8 + base size=16 base align=8 +QVariant (0x7fa418b53bd0) 0 + +Class QVariantComparisonHelper + size=8 align=8 + base size=8 base align=8 +QVariantComparisonHelper (0x7fa418a37d90) 0 + +Vtable for QSettings +QSettings::_ZTV9QSettings: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QSettings) +16 QSettings::metaObject +24 QSettings::qt_metacast +32 QSettings::qt_metacall +40 QSettings::~QSettings +48 QSettings::~QSettings +56 QSettings::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSettings + size=16 align=8 + base size=16 base align=8 +QSettings (0x7fa418a5dd90) 0 + vptr=((& QSettings::_ZTV9QSettings) + 16u) + QObject (0x7fa418a5de00) 0 + primary-for QSettings (0x7fa418a5dd90) + +Class QXmlStreamStringRef + size=16 align=8 + base size=16 base align=8 +QXmlStreamStringRef (0x7fa418add150) 0 + +Class QXmlStreamAttribute + size=80 align=8 + base size=73 base align=8 +QXmlStreamAttribute (0x7fa418afa9a0) 0 + +Class QXmlStreamAttributes + size=8 align=8 + base size=8 base align=8 +QXmlStreamAttributes (0x7fa418b24460) 0 + QVector (0x7fa418b244d0) 0 + +Class QXmlStreamNamespaceDeclaration + size=40 align=8 + base size=40 base align=8 +QXmlStreamNamespaceDeclaration (0x7fa418b24930) 0 + +Class QXmlStreamNotationDeclaration + size=56 align=8 + base size=56 base align=8 +QXmlStreamNotationDeclaration (0x7fa4189642a0) 0 + +Class QXmlStreamEntityDeclaration + size=88 align=8 + base size=88 base align=8 +QXmlStreamEntityDeclaration (0x7fa418982150) 0 + +Vtable for QXmlStreamEntityResolver +QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QXmlStreamEntityResolver) +16 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +24 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +32 QXmlStreamEntityResolver::resolveEntity +40 QXmlStreamEntityResolver::resolveUndeclaredEntity + +Class QXmlStreamEntityResolver + size=8 align=8 + base size=8 base align=8 +QXmlStreamEntityResolver (0x7fa41899fa80) 0 nearly-empty + vptr=((& QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver) + 16u) + +Class QXmlStreamReader + size=8 align=8 + base size=8 base align=8 +QXmlStreamReader (0x7fa41899fc40) 0 + +Class QXmlStreamWriter + size=8 align=8 + base size=8 base align=8 +QXmlStreamWriter (0x7fa4189dcaf0) 0 + +Class QPoint + size=8 align=4 + base size=8 base align=4 +QPoint (0x7fa418a14230) 0 + +Class QPointF + size=16 align=8 + base size=16 base align=8 +QPointF (0x7fa418851e70) 0 + +Class QLine + size=16 align=4 + base size=16 base align=4 +QLine (0x7fa41888ecb0) 0 + +Class QLineF + size=32 align=8 + base size=32 base align=8 +QLineF (0x7fa4188c8b60) 0 + +Class QSize + size=8 align=4 + base size=8 base align=4 +QSize (0x7fa418924620) 0 + +Class QSizeF + size=16 align=8 + base size=16 base align=8 +QSizeF (0x7fa418770460) 0 + +Class QRect + size=16 align=4 + base size=16 base align=4 +QRect (0x7fa4187bda80) 0 + +Class QRectF + size=32 align=8 + base size=32 base align=8 +QRectF (0x7fa41866c460) 0 + +Class QSharedData + size=4 align=4 + base size=4 base align=4 +QSharedData (0x7fa418718230) 0 + +Vtable for QtSharedPointer::ExternalRefCountData +QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN15QtSharedPointer20ExternalRefCountDataE) +16 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +24 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +32 QtSharedPointer::ExternalRefCountData::destroy + +Class QtSharedPointer::ExternalRefCountData + size=16 align=8 + base size=16 base align=8 +QtSharedPointer::ExternalRefCountData (0x7fa418546bd0) 0 + vptr=((& QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE) + 16u) + +Class QLinkedListData + size=32 align=8 + base size=32 base align=8 +QLinkedListData (0x7fa4185ced20) 0 + +Class QBitArray + size=8 align=8 + base size=8 base align=8 +QBitArray (0x7fa41849bc40) 0 + +Class QBitRef + size=16 align=8 + base size=12 base align=8 +QBitRef (0x7fa418510a10) 0 + +Class QByteArrayMatcher + size=1040 align=8 + base size=1040 base align=8 +QByteArrayMatcher (0x7fa41832a3f0) 0 + +Class QCryptographicHash + size=8 align=8 + base size=8 base align=8 +QCryptographicHash (0x7fa41833aaf0) 0 + +Class QTextBoundaryFinder + size=48 align=8 + base size=48 base align=8 +QTextBoundaryFinder (0x7fa418369540) 0 + +Class QDate + size=4 align=4 + base size=4 base align=4 +QDate (0x7fa41837f8c0) 0 + +Class QTime + size=4 align=4 + base size=4 base align=4 +QTime (0x7fa4183a7850) 0 + +Class QDateTime + size=8 align=8 + base size=8 base align=8 +QDateTime (0x7fa4183c5e00) 0 + +Vtable for QTimeLine +QTimeLine::_ZTV9QTimeLine: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTimeLine) +16 QTimeLine::metaObject +24 QTimeLine::qt_metacast +32 QTimeLine::qt_metacall +40 QTimeLine::~QTimeLine +48 QTimeLine::~QTimeLine +56 QObject::event +64 QObject::eventFilter +72 QTimeLine::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTimeLine::valueForTime + +Class QTimeLine + size=16 align=8 + base size=16 base align=8 +QTimeLine (0x7fa4183f92a0) 0 + vptr=((& QTimeLine::_ZTV9QTimeLine) + 16u) + QObject (0x7fa4183f9310) 0 + primary-for QTimeLine (0x7fa4183f92a0) + +Vtable for QRunnable +QRunnable::_ZTV9QRunnable: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QRunnable) +16 __cxa_pure_virtual +24 QRunnable::~QRunnable +32 QRunnable::~QRunnable + +Class QRunnable + size=16 align=8 + base size=12 base align=8 +QRunnable (0x7fa418220150) 0 + vptr=((& QRunnable::_ZTV9QRunnable) + 16u) + +Class QMutex + size=8 align=8 + base size=8 base align=8 +QMutex (0x7fa41822f7e0) 0 + +Class QMutexLocker + size=8 align=8 + base size=8 base align=8 +QMutexLocker (0x7fa41823c380) 0 + +Vtable for QtConcurrent::Exception +QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent9ExceptionE) +16 QtConcurrent::Exception::~Exception +24 QtConcurrent::Exception::~Exception +32 std::exception::what +40 QtConcurrent::Exception::raise +48 QtConcurrent::Exception::clone + +Class QtConcurrent::Exception + size=8 align=8 + base size=8 base align=8 +QtConcurrent::Exception (0x7fa418253690) 0 nearly-empty + vptr=((& QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE) + 16u) + std::exception (0x7fa418253700) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7fa418253690) + +Vtable for QtConcurrent::UnhandledException +QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent18UnhandledExceptionE) +16 QtConcurrent::UnhandledException::~UnhandledException +24 QtConcurrent::UnhandledException::~UnhandledException +32 std::exception::what +40 QtConcurrent::UnhandledException::raise +48 QtConcurrent::UnhandledException::clone + +Class QtConcurrent::UnhandledException + size=8 align=8 + base size=8 base align=8 +QtConcurrent::UnhandledException (0x7fa418253930) 0 nearly-empty + vptr=((& QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE) + 16u) + QtConcurrent::Exception (0x7fa4182539a0) 0 nearly-empty + primary-for QtConcurrent::UnhandledException (0x7fa418253930) + std::exception (0x7fa418253a10) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7fa4182539a0) + +Class QtConcurrent::internal::ExceptionHolder + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionHolder (0x7fa418253c40) 0 + +Class QtConcurrent::internal::ExceptionStore + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionStore (0x7fa4182538c0) 0 + +Class QtConcurrent::ResultItem + size=16 align=8 + base size=16 base align=8 +QtConcurrent::ResultItem (0x7fa418253bd0) 0 + +Class QtConcurrent::ResultIteratorBase + size=16 align=8 + base size=12 base align=8 +QtConcurrent::ResultIteratorBase (0x7fa418269f50) 0 + +Vtable for QtConcurrent::ResultStoreBase +QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent15ResultStoreBaseE) +16 QtConcurrent::ResultStoreBase::~ResultStoreBase +24 QtConcurrent::ResultStoreBase::~ResultStoreBase + +Class QtConcurrent::ResultStoreBase + size=48 align=8 + base size=44 base align=8 +QtConcurrent::ResultStoreBase (0x7fa41826daf0) 0 + vptr=((& QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE) + 16u) + +Vtable for QFutureInterfaceBase +QFutureInterfaceBase::_ZTV20QFutureInterfaceBase: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QFutureInterfaceBase) +16 QFutureInterfaceBase::~QFutureInterfaceBase +24 QFutureInterfaceBase::~QFutureInterfaceBase + +Class QFutureInterfaceBase + size=16 align=8 + base size=16 base align=8 +QFutureInterfaceBase (0x7fa4182aef50) 0 + vptr=((& QFutureInterfaceBase::_ZTV20QFutureInterfaceBase) + 16u) + +Vtable for QThread +QThread::_ZTV7QThread: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QThread) +16 QThread::metaObject +24 QThread::qt_metacast +32 QThread::qt_metacall +40 QThread::~QThread +48 QThread::~QThread +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QThread::run + +Class QThread + size=16 align=8 + base size=16 base align=8 +QThread (0x7fa418190ee0) 0 + vptr=((& QThread::_ZTV7QThread) + 16u) + QObject (0x7fa418190f50) 0 + primary-for QThread (0x7fa418190ee0) + +Vtable for QThreadPool +QThreadPool::_ZTV11QThreadPool: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QThreadPool) +16 QThreadPool::metaObject +24 QThreadPool::qt_metacast +32 QThreadPool::qt_metacall +40 QThreadPool::~QThreadPool +48 QThreadPool::~QThreadPool +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QThreadPool + size=16 align=8 + base size=16 base align=8 +QThreadPool (0x7fa4181c3d90) 0 + vptr=((& QThreadPool::_ZTV11QThreadPool) + 16u) + QObject (0x7fa4181c3e00) 0 + primary-for QThreadPool (0x7fa4181c3d90) + +Class QWaitCondition + size=8 align=8 + base size=8 base align=8 +QWaitCondition (0x7fa4181de620) 0 + +Class QtConcurrent::ThreadEngineSemaphore + size=24 align=8 + base size=24 base align=8 +QtConcurrent::ThreadEngineSemaphore (0x7fa4181deb60) 0 + +Vtable for QtConcurrent::ThreadEngineBase +QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent16ThreadEngineBaseE) +16 QtConcurrent::ThreadEngineBase::run +24 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +32 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +40 QtConcurrent::ThreadEngineBase::start +48 QtConcurrent::ThreadEngineBase::finish +56 QtConcurrent::ThreadEngineBase::threadFunction +64 QtConcurrent::ThreadEngineBase::shouldStartThread +72 QtConcurrent::ThreadEngineBase::shouldThrottleThread +80 __cxa_pure_virtual + +Class QtConcurrent::ThreadEngineBase + size=64 align=8 + base size=64 base align=8 +QtConcurrent::ThreadEngineBase (0x7fa4181fd540) 0 + vptr=((& QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE) + 16u) + QRunnable (0x7fa4181fd5b0) 0 + primary-for QtConcurrent::ThreadEngineBase (0x7fa4181fd540) + +VTT for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTTN12QtConcurrent12ThreadEngineIvEE: 2u entries +0 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 24u) +8 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 136u) + +Class std::input_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::input_iterator_tag (0x7fa41803e930) 0 empty + +Class std::output_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::output_iterator_tag (0x7fa41803e9a0) 0 empty + +Class std::forward_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::forward_iterator_tag (0x7fa41803ea10) 0 empty + std::input_iterator_tag (0x7fa41803ea80) 0 empty + +Class std::bidirectional_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::bidirectional_iterator_tag (0x7fa41803eaf0) 0 empty + std::forward_iterator_tag (0x7fa41803eb60) 0 empty + std::input_iterator_tag (0x7fa41803ebd0) 0 empty + +Class std::random_access_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::random_access_iterator_tag (0x7fa41803ec40) 0 empty + std::bidirectional_iterator_tag (0x7fa41803ecb0) 0 empty + std::forward_iterator_tag (0x7fa41803ed20) 0 empty + std::input_iterator_tag (0x7fa41803ed90) 0 empty + +Class std::__true_type + size=1 align=1 + base size=0 base align=1 +std::__true_type (0x7fa41804c380) 0 empty + +Class std::__false_type + size=1 align=1 + base size=0 base align=1 +std::__false_type (0x7fa41804c3f0) 0 empty + +Class lconv + size=96 align=8 + base size=96 base align=8 +lconv (0x7fa417e2d700) 0 + +Class sched_param + size=4 align=4 + base size=4 base align=4 +sched_param (0x7fa417e2db60) 0 + +Class __sched_param + size=4 align=4 + base size=4 base align=4 +__sched_param (0x7fa417e2dbd0) 0 + +Class tm + size=56 align=8 + base size=56 base align=8 +tm (0x7fa417e2dcb0) 0 + +Class itimerspec + size=32 align=8 + base size=32 base align=8 +itimerspec (0x7fa417e2dd90) 0 + +Class _pthread_cleanup_buffer + size=32 align=8 + base size=32 base align=8 +_pthread_cleanup_buffer (0x7fa417e2de00) 0 + +Class __pthread_cleanup_frame + size=24 align=8 + base size=24 base align=8 +__pthread_cleanup_frame (0x7fa417e2df50) 0 + +Class __pthread_cleanup_class + size=24 align=8 + base size=24 base align=8 +__pthread_cleanup_class (0x7fa417e8a000) 0 + +Vtable for __cxxabiv1::__forced_unwind +__cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN10__cxxabiv115__forced_unwindE) +16 __cxxabiv1::__forced_unwind::~__forced_unwind +24 __cxxabiv1::__forced_unwind::~__forced_unwind +32 __cxa_pure_virtual + +Class __cxxabiv1::__forced_unwind + size=8 align=8 + base size=8 base align=8 +__cxxabiv1::__forced_unwind (0x7fa417d41b60) 0 nearly-empty + vptr=((& __cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE) + 16u) + +Class std::locale + size=8 align=8 + base size=8 base align=8 +std::locale (0x7fa417bf1690) 0 + +Vtable for std::locale::facet +std::locale::facet::_ZTVNSt6locale5facetE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTINSt6locale5facetE) +16 std::locale::facet::~facet +24 std::locale::facet::~facet + +Class std::locale::facet + size=16 align=8 + base size=12 base align=8 +std::locale::facet (0x7fa417a96d90) 0 + vptr=((& std::locale::facet::_ZTVNSt6locale5facetE) + 16u) + +Class std::locale::id + size=8 align=8 + base size=8 base align=8 +std::locale::id (0x7fa417aaa380) 0 + +Class std::locale::_Impl + size=40 align=8 + base size=40 base align=8 +std::locale::_Impl (0x7fa417aaa9a0) 0 + +Vtable for std::ios_base::failure +std::ios_base::failure::_ZTVNSt8ios_base7failureE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTINSt8ios_base7failureE) +16 std::ios_base::failure::~failure +24 std::ios_base::failure::~failure +32 std::ios_base::failure::what + +Class std::ios_base::failure + size=16 align=8 + base size=16 base align=8 +std::ios_base::failure (0x7fa417938150) 0 + vptr=((& std::ios_base::failure::_ZTVNSt8ios_base7failureE) + 16u) + std::exception (0x7fa4179381c0) 0 nearly-empty + primary-for std::ios_base::failure (0x7fa417938150) + +Class std::ios_base::_Callback_list + size=24 align=8 + base size=24 base align=8 +std::ios_base::_Callback_list (0x7fa4179453f0) 0 + +Class std::ios_base::_Words + size=16 align=8 + base size=16 base align=8 +std::ios_base::_Words (0x7fa417945e70) 0 + +Class std::ios_base::Init + size=1 align=1 + base size=0 base align=1 +std::ios_base::Init (0x7fa41794c5b0) 0 empty + +Vtable for std::ios_base +std::ios_base::_ZTVSt8ios_base: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt8ios_base) +16 std::ios_base::~ios_base +24 std::ios_base::~ios_base + +Class std::ios_base + size=216 align=8 + base size=216 base align=8 +std::ios_base (0x7fa4179380e0) 0 + vptr=((& std::ios_base::_ZTVSt8ios_base) + 16u) + +Class std::ctype_base + size=1 align=1 + base size=0 base align=1 +std::ctype_base (0x7fa4179c2a10) 0 empty + +Class std::__num_base + size=1 align=1 + base size=0 base align=1 +std::__num_base (0x7fa4178e92a0) 0 empty + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSo: 2u entries +0 ((& std::basic_ostream >::_ZTVSo) + 24u) +8 ((& std::basic_ostream >::_ZTVSo) + 64u) + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSt13basic_ostreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 24u) +8 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 64u) + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSi: 2u entries +0 ((& std::basic_istream >::_ZTVSi) + 24u) +8 ((& std::basic_istream >::_ZTVSi) + 64u) + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSt13basic_istreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 24u) +8 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 64u) + +Construction vtable for std::basic_istream > (0x7fa41740e3f0 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd0_Si: 10u entries +0 24u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISi) +24 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +32 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +40 -24u +48 (int (*)(...))-0x00000000000000018 +56 (int (*)(...))(& _ZTISi) +64 std::basic_istream >::_ZTv0_n24_NSiD1Ev +72 std::basic_istream >::_ZTv0_n24_NSiD0Ev + +Construction vtable for std::basic_ostream > (0x7fa41740e540 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd16_So: 10u entries +0 8u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISo) +24 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +32 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +40 -8u +48 (int (*)(...))-0x00000000000000008 +56 (int (*)(...))(& _ZTISo) +64 std::basic_ostream >::_ZTv0_n24_NSoD1Ev +72 std::basic_ostream >::_ZTv0_n24_NSoD0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSd: 7u entries +0 ((& std::basic_iostream >::_ZTVSd) + 24u) +8 ((& std::basic_iostream >::_ZTCSd0_Si) + 24u) +16 ((& std::basic_iostream >::_ZTCSd0_Si) + 64u) +24 ((& std::basic_iostream >::_ZTCSd16_So) + 24u) +32 ((& std::basic_iostream >::_ZTCSd16_So) + 64u) +40 ((& std::basic_iostream >::_ZTVSd) + 104u) +48 ((& std::basic_iostream >::_ZTVSd) + 64u) + +Construction vtable for std::basic_istream > (0x7fa41740e700 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E: 10u entries +0 24u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +24 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +32 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +40 -24u +48 (int (*)(...))-0x00000000000000018 +56 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +64 std::basic_istream >::_ZTv0_n24_NSt13basic_istreamIwSt11char_traitsIwEED1Ev +72 std::basic_istream >::_ZTv0_n24_NSt13basic_istreamIwSt11char_traitsIwEED0Ev + +Construction vtable for std::basic_ostream > (0x7fa41740e850 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE16_St13basic_ostreamIwS1_E: 10u entries +0 8u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +24 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +32 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +40 -8u +48 (int (*)(...))-0x00000000000000008 +56 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +64 std::basic_ostream >::_ZTv0_n24_NSt13basic_ostreamIwSt11char_traitsIwEED1Ev +72 std::basic_ostream >::_ZTv0_n24_NSt13basic_ostreamIwSt11char_traitsIwEED0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSt14basic_iostreamIwSt11char_traitsIwEE: 7u entries +0 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 24u) +8 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 24u) +16 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 64u) +24 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE16_St13basic_ostreamIwS1_E) + 24u) +32 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE16_St13basic_ostreamIwS1_E) + 64u) +40 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 104u) +48 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 64u) + +Class QtConcurrent::BlockSizeManager + size=96 align=8 + base size=92 base align=8 +QtConcurrent::BlockSizeManager (0x7fa417480310) 0 + +Vtable for QFutureWatcherBase +QFutureWatcherBase::_ZTV18QFutureWatcherBase: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFutureWatcherBase) +16 QFutureWatcherBase::metaObject +24 QFutureWatcherBase::qt_metacast +32 QFutureWatcherBase::qt_metacall +40 QFutureWatcherBase::~QFutureWatcherBase +48 QFutureWatcherBase::~QFutureWatcherBase +56 QFutureWatcherBase::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QFutureWatcherBase::connectNotify +104 QFutureWatcherBase::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QFutureWatcherBase + size=16 align=8 + base size=16 base align=8 +QFutureWatcherBase (0x7fa417046cb0) 0 + vptr=((& QFutureWatcherBase::_ZTV18QFutureWatcherBase) + 16u) + QObject (0x7fa417046d20) 0 + primary-for QFutureWatcherBase (0x7fa417046cb0) + +Vtable for QFactoryInterface +QFactoryInterface::_ZTV17QFactoryInterface: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QFactoryInterface) +16 QFactoryInterface::~QFactoryInterface +24 QFactoryInterface::~QFactoryInterface +32 __cxa_pure_virtual + +Class QFactoryInterface + size=8 align=8 + base size=8 base align=8 +QFactoryInterface (0x7fa416f63ee0) 0 nearly-empty + vptr=((& QFactoryInterface::_ZTV17QFactoryInterface) + 16u) + +Vtable for QTextCodecFactoryInterface +QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QTextCodecFactoryInterface) +16 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +24 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QTextCodecFactoryInterface + size=8 align=8 + base size=8 base align=8 +QTextCodecFactoryInterface (0x7fa416f91000) 0 nearly-empty + vptr=((& QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface) + 16u) + QFactoryInterface (0x7fa416f91070) 0 nearly-empty + primary-for QTextCodecFactoryInterface (0x7fa416f91000) + +Vtable for QTextCodecPlugin +QTextCodecPlugin::_ZTV16QTextCodecPlugin: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QTextCodecPlugin) +16 QTextCodecPlugin::metaObject +24 QTextCodecPlugin::qt_metacast +32 QTextCodecPlugin::qt_metacall +40 QTextCodecPlugin::~QTextCodecPlugin +48 QTextCodecPlugin::~QTextCodecPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 QTextCodecPlugin::keys +160 QTextCodecPlugin::create +168 (int (*)(...))-0x00000000000000010 +176 (int (*)(...))(& _ZTI16QTextCodecPlugin) +184 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD1Ev +192 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD0Ev +200 QTextCodecPlugin::_ZThn16_NK16QTextCodecPlugin4keysEv +208 QTextCodecPlugin::_ZThn16_N16QTextCodecPlugin6createERK7QString + +Class QTextCodecPlugin + size=24 align=8 + base size=24 base align=8 +QTextCodecPlugin (0x7fa416f88e00) 0 + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 16u) + QObject (0x7fa416f918c0) 0 + primary-for QTextCodecPlugin (0x7fa416f88e00) + QTextCodecFactoryInterface (0x7fa416f91930) 16 nearly-empty + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 184u) + QFactoryInterface (0x7fa416f919a0) 16 nearly-empty + primary-for QTextCodecFactoryInterface (0x7fa416f91930) + +Class QLibraryInfo + size=1 align=1 + base size=0 base align=1 +QLibraryInfo (0x7fa416fa77e0) 0 empty + +Vtable for QTranslator +QTranslator::_ZTV11QTranslator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTranslator) +16 QTranslator::metaObject +24 QTranslator::qt_metacast +32 QTranslator::qt_metacall +40 QTranslator::~QTranslator +48 QTranslator::~QTranslator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTranslator::translate +120 QTranslator::isEmpty + +Class QTranslator + size=16 align=8 + base size=16 base align=8 +QTranslator (0x7fa416fe90e0) 0 + vptr=((& QTranslator::_ZTV11QTranslator) + 16u) + QObject (0x7fa416fe9150) 0 + primary-for QTranslator (0x7fa416fe90e0) + +Class __exception + size=40 align=8 + base size=40 base align=8 +__exception (0x7fa417006070) 0 + +Vtable for QMimeData +QMimeData::_ZTV9QMimeData: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QMimeData) +16 QMimeData::metaObject +24 QMimeData::qt_metacast +32 QMimeData::qt_metacall +40 QMimeData::~QMimeData +48 QMimeData::~QMimeData +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMimeData::hasFormat +120 QMimeData::formats +128 QMimeData::retrieveData + +Class QMimeData + size=16 align=8 + base size=16 base align=8 +QMimeData (0x7fa416e6b230) 0 + vptr=((& QMimeData::_ZTV9QMimeData) + 16u) + QObject (0x7fa416e6b2a0) 0 + primary-for QMimeData (0x7fa416e6b230) + +Vtable for QEventLoop +QEventLoop::_ZTV10QEventLoop: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QEventLoop) +16 QEventLoop::metaObject +24 QEventLoop::qt_metacast +32 QEventLoop::qt_metacall +40 QEventLoop::~QEventLoop +48 QEventLoop::~QEventLoop +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QEventLoop + size=16 align=8 + base size=16 base align=8 +QEventLoop (0x7fa416e82a80) 0 + vptr=((& QEventLoop::_ZTV10QEventLoop) + 16u) + QObject (0x7fa416e82af0) 0 + primary-for QEventLoop (0x7fa416e82a80) + +Vtable for QEvent +QEvent::_ZTV6QEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QEvent) +16 QEvent::~QEvent +24 QEvent::~QEvent + +Class QEvent + size=24 align=8 + base size=20 base align=8 +QEvent (0x7fa416ec33f0) 0 + vptr=((& QEvent::_ZTV6QEvent) + 16u) + +Vtable for QTimerEvent +QTimerEvent::_ZTV11QTimerEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTimerEvent) +16 QTimerEvent::~QTimerEvent +24 QTimerEvent::~QTimerEvent + +Class QTimerEvent + size=24 align=8 + base size=24 base align=8 +QTimerEvent (0x7fa416edf000) 0 + vptr=((& QTimerEvent::_ZTV11QTimerEvent) + 16u) + QEvent (0x7fa416edf070) 0 + primary-for QTimerEvent (0x7fa416edf000) + +Vtable for QChildEvent +QChildEvent::_ZTV11QChildEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QChildEvent) +16 QChildEvent::~QChildEvent +24 QChildEvent::~QChildEvent + +Class QChildEvent + size=32 align=8 + base size=32 base align=8 +QChildEvent (0x7fa416edf460) 0 + vptr=((& QChildEvent::_ZTV11QChildEvent) + 16u) + QEvent (0x7fa416edf4d0) 0 + primary-for QChildEvent (0x7fa416edf460) + +Vtable for QCustomEvent +QCustomEvent::_ZTV12QCustomEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QCustomEvent) +16 QCustomEvent::~QCustomEvent +24 QCustomEvent::~QCustomEvent + +Class QCustomEvent + size=24 align=8 + base size=20 base align=8 +QCustomEvent (0x7fa416ef0700) 0 + vptr=((& QCustomEvent::_ZTV12QCustomEvent) + 16u) + QEvent (0x7fa416ef0770) 0 + primary-for QCustomEvent (0x7fa416ef0700) + +Vtable for QDynamicPropertyChangeEvent +QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QDynamicPropertyChangeEvent) +16 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent +24 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent + +Class QDynamicPropertyChangeEvent + size=32 align=8 + base size=32 base align=8 +QDynamicPropertyChangeEvent (0x7fa416ef0ee0) 0 + vptr=((& QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent) + 16u) + QEvent (0x7fa416ef0f50) 0 + primary-for QDynamicPropertyChangeEvent (0x7fa416ef0ee0) + +Vtable for QCoreApplication +QCoreApplication::_ZTV16QCoreApplication: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QCoreApplication) +16 QCoreApplication::metaObject +24 QCoreApplication::qt_metacast +32 QCoreApplication::qt_metacall +40 QCoreApplication::~QCoreApplication +48 QCoreApplication::~QCoreApplication +56 QCoreApplication::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCoreApplication::notify +120 QCoreApplication::compressEvent + +Class QCoreApplication + size=16 align=8 + base size=16 base align=8 +QCoreApplication (0x7fa416eff380) 0 + vptr=((& QCoreApplication::_ZTV16QCoreApplication) + 16u) + QObject (0x7fa416eff3f0) 0 + primary-for QCoreApplication (0x7fa416eff380) + +Vtable for QSharedMemory +QSharedMemory::_ZTV13QSharedMemory: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSharedMemory) +16 QSharedMemory::metaObject +24 QSharedMemory::qt_metacast +32 QSharedMemory::qt_metacall +40 QSharedMemory::~QSharedMemory +48 QSharedMemory::~QSharedMemory +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSharedMemory + size=16 align=8 + base size=16 base align=8 +QSharedMemory (0x7fa416d2cb60) 0 + vptr=((& QSharedMemory::_ZTV13QSharedMemory) + 16u) + QObject (0x7fa416d2cbd0) 0 + primary-for QSharedMemory (0x7fa416d2cb60) + +Class QModelIndex + size=24 align=8 + base size=24 base align=8 +QModelIndex (0x7fa416d4a930) 0 + +Class QPersistentModelIndex + size=8 align=8 + base size=8 base align=8 +QPersistentModelIndex (0x7fa416d733f0) 0 + +Vtable for QAbstractItemModel +QAbstractItemModel::_ZTV18QAbstractItemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractItemModel) +16 QAbstractItemModel::metaObject +24 QAbstractItemModel::qt_metacast +32 QAbstractItemModel::qt_metacall +40 QAbstractItemModel::~QAbstractItemModel +48 QAbstractItemModel::~QAbstractItemModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractItemModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractItemModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractItemModel + size=16 align=8 + base size=16 base align=8 +QAbstractItemModel (0x7fa416d81700) 0 + vptr=((& QAbstractItemModel::_ZTV18QAbstractItemModel) + 16u) + QObject (0x7fa416d81770) 0 + primary-for QAbstractItemModel (0x7fa416d81700) + +Vtable for QAbstractTableModel +QAbstractTableModel::_ZTV19QAbstractTableModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractTableModel) +16 QAbstractTableModel::metaObject +24 QAbstractTableModel::qt_metacast +32 QAbstractTableModel::qt_metacall +40 QAbstractTableModel::~QAbstractTableModel +48 QAbstractTableModel::~QAbstractTableModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractTableModel::index +120 QAbstractTableModel::parent +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractTableModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractTableModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractTableModel + size=16 align=8 + base size=16 base align=8 +QAbstractTableModel (0x7fa416dd3a10) 0 + vptr=((& QAbstractTableModel::_ZTV19QAbstractTableModel) + 16u) + QAbstractItemModel (0x7fa416dd3a80) 0 + primary-for QAbstractTableModel (0x7fa416dd3a10) + QObject (0x7fa416dd3af0) 0 + primary-for QAbstractItemModel (0x7fa416dd3a80) + +Vtable for QAbstractListModel +QAbstractListModel::_ZTV18QAbstractListModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractListModel) +16 QAbstractListModel::metaObject +24 QAbstractListModel::qt_metacast +32 QAbstractListModel::qt_metacall +40 QAbstractListModel::~QAbstractListModel +48 QAbstractListModel::~QAbstractListModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractListModel::index +120 QAbstractListModel::parent +128 __cxa_pure_virtual +136 QAbstractListModel::columnCount +144 QAbstractListModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractListModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractListModel + size=16 align=8 + base size=16 base align=8 +QAbstractListModel (0x7fa416ddf310) 0 + vptr=((& QAbstractListModel::_ZTV18QAbstractListModel) + 16u) + QAbstractItemModel (0x7fa416ded000) 0 + primary-for QAbstractListModel (0x7fa416ddf310) + QObject (0x7fa416ded070) 0 + primary-for QAbstractItemModel (0x7fa416ded000) + +Vtable for QSignalMapper +QSignalMapper::_ZTV13QSignalMapper: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSignalMapper) +16 QSignalMapper::metaObject +24 QSignalMapper::qt_metacast +32 QSignalMapper::qt_metacall +40 QSignalMapper::~QSignalMapper +48 QSignalMapper::~QSignalMapper +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSignalMapper + size=16 align=8 + base size=16 base align=8 +QSignalMapper (0x7fa416c220e0) 0 + vptr=((& QSignalMapper::_ZTV13QSignalMapper) + 16u) + QObject (0x7fa416c22150) 0 + primary-for QSignalMapper (0x7fa416c220e0) + +Vtable for QObjectCleanupHandler +QObjectCleanupHandler::_ZTV21QObjectCleanupHandler: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QObjectCleanupHandler) +16 QObjectCleanupHandler::metaObject +24 QObjectCleanupHandler::qt_metacast +32 QObjectCleanupHandler::qt_metacall +40 QObjectCleanupHandler::~QObjectCleanupHandler +48 QObjectCleanupHandler::~QObjectCleanupHandler +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObjectCleanupHandler + size=24 align=8 + base size=24 base align=8 +QObjectCleanupHandler (0x7fa416c3a4d0) 0 + vptr=((& QObjectCleanupHandler::_ZTV21QObjectCleanupHandler) + 16u) + QObject (0x7fa416c3a540) 0 + primary-for QObjectCleanupHandler (0x7fa416c3a4d0) + +Class QBasicTimer + size=4 align=4 + base size=4 base align=4 +QBasicTimer (0x7fa416c47620) 0 + +Vtable for QSocketNotifier +QSocketNotifier::_ZTV15QSocketNotifier: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSocketNotifier) +16 QSocketNotifier::metaObject +24 QSocketNotifier::qt_metacast +32 QSocketNotifier::qt_metacall +40 QSocketNotifier::~QSocketNotifier +48 QSocketNotifier::~QSocketNotifier +56 QSocketNotifier::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSocketNotifier + size=32 align=8 + base size=25 base align=8 +QSocketNotifier (0x7fa416c53a10) 0 + vptr=((& QSocketNotifier::_ZTV15QSocketNotifier) + 16u) + QObject (0x7fa416c53a80) 0 + primary-for QSocketNotifier (0x7fa416c53a10) + +Vtable for QTimer +QTimer::_ZTV6QTimer: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QTimer) +16 QTimer::metaObject +24 QTimer::qt_metacast +32 QTimer::qt_metacall +40 QTimer::~QTimer +48 QTimer::~QTimer +56 QObject::event +64 QObject::eventFilter +72 QTimer::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTimer + size=32 align=8 + base size=29 base align=8 +QTimer (0x7fa416c71d90) 0 + vptr=((& QTimer::_ZTV6QTimer) + 16u) + QObject (0x7fa416c71e00) 0 + primary-for QTimer (0x7fa416c71d90) + +Vtable for QAbstractEventDispatcher +QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QAbstractEventDispatcher) +16 QAbstractEventDispatcher::metaObject +24 QAbstractEventDispatcher::qt_metacast +32 QAbstractEventDispatcher::qt_metacall +40 QAbstractEventDispatcher::~QAbstractEventDispatcher +48 QAbstractEventDispatcher::~QAbstractEventDispatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 QAbstractEventDispatcher::startingUp +208 QAbstractEventDispatcher::closingDown + +Class QAbstractEventDispatcher + size=16 align=8 + base size=16 base align=8 +QAbstractEventDispatcher (0x7fa416c93380) 0 + vptr=((& QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher) + 16u) + QObject (0x7fa416c933f0) 0 + primary-for QAbstractEventDispatcher (0x7fa416c93380) + +Class QMetaMethod + size=16 align=8 + base size=12 base align=8 +QMetaMethod (0x7fa416caf230) 0 + +Class QMetaEnum + size=16 align=8 + base size=12 base align=8 +QMetaEnum (0x7fa416cc7690) 0 + +Class QMetaProperty + size=32 align=8 + base size=32 base align=8 +QMetaProperty (0x7fa416cd53f0) 0 + +Class QMetaClassInfo + size=16 align=8 + base size=12 base align=8 +QMetaClassInfo (0x7fa416cd5a80) 0 + +Class QSystemSemaphore + size=8 align=8 + base size=8 base align=8 +QSystemSemaphore (0x7fa416ce85b0) 0 + +Vtable for QLibrary +QLibrary::_ZTV8QLibrary: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QLibrary) +16 QLibrary::metaObject +24 QLibrary::qt_metacast +32 QLibrary::qt_metacall +40 QLibrary::~QLibrary +48 QLibrary::~QLibrary +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QLibrary + size=32 align=8 + base size=25 base align=8 +QLibrary (0x7fa416ce8ee0) 0 + vptr=((& QLibrary::_ZTV8QLibrary) + 16u) + QObject (0x7fa416ce8f50) 0 + primary-for QLibrary (0x7fa416ce8ee0) + +Vtable for QPluginLoader +QPluginLoader::_ZTV13QPluginLoader: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QPluginLoader) +16 QPluginLoader::metaObject +24 QPluginLoader::qt_metacast +32 QPluginLoader::qt_metacall +40 QPluginLoader::~QPluginLoader +48 QPluginLoader::~QPluginLoader +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QPluginLoader + size=32 align=8 + base size=25 base align=8 +QPluginLoader (0x7fa416b309a0) 0 + vptr=((& QPluginLoader::_ZTV13QPluginLoader) + 16u) + QObject (0x7fa416b30a10) 0 + primary-for QPluginLoader (0x7fa416b309a0) + +Class QUuid + size=16 align=4 + base size=16 base align=4 +QUuid (0x7fa416b51150) 0 + +Class QSemaphore + size=8 align=8 + base size=8 base align=8 +QSemaphore (0x7fa416b71a80) 0 + +Class QThreadStorageData + size=4 align=4 + base size=4 base align=4 +QThreadStorageData (0x7fa416b81000) 0 + +Class QReadWriteLock + size=8 align=8 + base size=8 base align=8 +QReadWriteLock (0x7fa416b81770) 0 + +Class QReadLocker + size=8 align=8 + base size=8 base align=8 +QReadLocker (0x7fa416b81e00) 0 + +Class QWriteLocker + size=8 align=8 + base size=8 base align=8 +QWriteLocker (0x7fa416bb01c0) 0 + +Class QTestData + size=8 align=8 + base size=8 base align=8 +QTestData (0x7fa416bf0230) 0 + +Class QTest::QBenchmarkIterationController + size=4 align=4 + base size=4 base align=4 +QTest::QBenchmarkIterationController (0x7fa416bf0a10) 0 + +Vtable for QSignalSpy +QSignalSpy::_ZTV10QSignalSpy: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QSignalSpy) +16 QObject::metaObject +24 QObject::qt_metacast +32 QSignalSpy::qt_metacall +40 QSignalSpy::~QSignalSpy +48 QSignalSpy::~QSignalSpy +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSignalSpy + size=40 align=8 + base size=40 base align=8 +QSignalSpy (0x7fa416a87500) 0 + vptr=((& QSignalSpy::_ZTV10QSignalSpy) + 16u) + QObject (0x7fa416a85310) 0 + primary-for QSignalSpy (0x7fa416a87500) + QList > (0x7fa416a85380) 16 + +Vtable for QTestEventLoop +QTestEventLoop::_ZTV14QTestEventLoop: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QTestEventLoop) +16 QTestEventLoop::metaObject +24 QTestEventLoop::qt_metacast +32 QTestEventLoop::qt_metacall +40 QTestEventLoop::~QTestEventLoop +48 QTestEventLoop::~QTestEventLoop +56 QObject::event +64 QObject::eventFilter +72 QTestEventLoop::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTestEventLoop + size=32 align=8 + base size=32 base align=8 +QTestEventLoop (0x7fa4169138c0) 0 + vptr=((& QTestEventLoop::_ZTV14QTestEventLoop) + 16u) + QObject (0x7fa416913930) 0 + primary-for QTestEventLoop (0x7fa4169138c0) + diff --git a/tests/auto/bic/data/QtTest.4.6.0.linux-gcc-amd64.txt b/tests/auto/bic/data/QtTest.4.6.0.linux-gcc-amd64.txt new file mode 100644 index 0000000..124576f --- /dev/null +++ b/tests/auto/bic/data/QtTest.4.6.0.linux-gcc-amd64.txt @@ -0,0 +1,2812 @@ +Class QSysInfo + size=1 align=1 + base size=0 base align=1 +QSysInfo (0x7f4314296310) 0 empty + +Class QBool + size=1 align=1 + base size=1 base align=1 +QBool (0x7f4314296f50) 0 + +Class qIsNull(double)::U + size=8 align=8 + base size=8 base align=8 +qIsNull(double)::U (0x7f4313aa8620) 0 + +Class qIsNull(float)::U + size=4 align=4 + base size=4 base align=4 +qIsNull(float)::U (0x7f4313aa88c0) 0 + +Class QFlag + size=4 align=4 + base size=4 base align=4 +QFlag (0x7f4313adf770) 0 + +Class QIncompatibleFlag + size=4 align=4 + base size=4 base align=4 +QIncompatibleFlag (0x7f4313adff50) 0 + +Class QLatin1Char + size=1 align=1 + base size=1 base align=1 +QLatin1Char (0x7f4313b10690) 0 + +Class QChar + size=2 align=2 + base size=2 base align=2 +QChar (0x7f4313b37230) 0 + +Class QBasicAtomicInt + size=4 align=4 + base size=4 base align=4 +QBasicAtomicInt (0x7f431399f3f0) 0 + +Class QAtomicInt + size=4 align=4 + base size=4 base align=4 +QAtomicInt (0x7f43139dcd90) 0 + QBasicAtomicInt (0x7f43139dce00) 0 + +Class QInternal + size=1 align=1 + base size=0 base align=1 +QInternal (0x7f43138295b0) 0 empty + +Class __locale_struct + size=232 align=8 + base size=232 base align=8 +__locale_struct (0x7f43138297e0) 0 + +Class QByteArray::Data + size=32 align=8 + base size=32 base align=8 +QByteArray::Data (0x7f431386cbd0) 0 + +Class QByteArray + size=8 align=8 + base size=8 base align=8 +QByteArray (0x7f431386cb60) 0 + +Class QByteRef + size=16 align=8 + base size=12 base align=8 +QByteRef (0x7f4313710460) 0 + +Class QString::Null + size=1 align=1 + base size=0 base align=1 +QString::Null (0x7f4313611e00) 0 empty + +Class QString::Data + size=32 align=8 + base size=32 base align=8 +QString::Data (0x7f4313629690) 0 + +Class QString + size=8 align=8 + base size=8 base align=8 +QString (0x7f431358acb0) 0 + +Class QLatin1String + size=8 align=8 + base size=8 base align=8 +QLatin1String (0x7f4313500a80) 0 + +Class QCharRef + size=16 align=8 + base size=12 base align=8 +QCharRef (0x7f43133a00e0) 0 + +Class QConstString + size=8 align=8 + base size=8 base align=8 +QConstString (0x7f43132ea9a0) 0 + QString (0x7f43132eaa10) 0 + +Class QStringRef + size=16 align=8 + base size=16 base align=8 +QStringRef (0x7f431330e3f0) 0 + +Class QGenericArgument + size=16 align=8 + base size=16 base align=8 +QGenericArgument (0x7f43131867e0) 0 + +Class QGenericReturnArgument + size=16 align=8 + base size=16 base align=8 +QGenericReturnArgument (0x7f4313191380) 0 + QGenericArgument (0x7f43131913f0) 0 + +Class QMetaObject + size=32 align=8 + base size=32 base align=8 +QMetaObject (0x7f4313191c40) 0 + +Class QMetaObjectExtraData + size=16 align=8 + base size=16 base align=8 +QMetaObjectExtraData (0x7f43131bbcb0) 0 + +Vtable for std::exception +std::exception::_ZTVSt9exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9exception) +16 std::exception::~exception +24 std::exception::~exception +32 std::exception::what + +Class std::exception + size=8 align=8 + base size=8 base align=8 +std::exception (0x7f431320d2a0) 0 nearly-empty + vptr=((& std::exception::_ZTVSt9exception) + 16u) + +Vtable for std::bad_exception +std::bad_exception::_ZTVSt13bad_exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13bad_exception) +16 std::bad_exception::~bad_exception +24 std::bad_exception::~bad_exception +32 std::bad_exception::what + +Class std::bad_exception + size=8 align=8 + base size=8 base align=8 +std::bad_exception (0x7f431320d850) 0 nearly-empty + vptr=((& std::bad_exception::_ZTVSt13bad_exception) + 16u) + std::exception (0x7f431320d8c0) 0 nearly-empty + primary-for std::bad_exception (0x7f431320d850) + +Vtable for std::bad_alloc +std::bad_alloc::_ZTVSt9bad_alloc: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9bad_alloc) +16 std::bad_alloc::~bad_alloc +24 std::bad_alloc::~bad_alloc +32 std::bad_alloc::what + +Class std::bad_alloc + size=8 align=8 + base size=8 base align=8 +std::bad_alloc (0x7f4313222070) 0 nearly-empty + vptr=((& std::bad_alloc::_ZTVSt9bad_alloc) + 16u) + std::exception (0x7f43132220e0) 0 nearly-empty + primary-for std::bad_alloc (0x7f4313222070) + +Class std::nothrow_t + size=1 align=1 + base size=0 base align=1 +std::nothrow_t (0x7f4313222930) 0 empty + +Class QListData::Data + size=32 align=8 + base size=32 base align=8 +QListData::Data (0x7f4313222e70) 0 + +Class QListData + size=8 align=8 + base size=8 base align=8 +QListData (0x7f4313222e00) 0 + +Class QScopedPointerPodDeleter + size=1 align=1 + base size=0 base align=1 +QScopedPointerPodDeleter (0x7f4313150930) 0 empty + +Vtable for QObjectData +QObjectData::_ZTV11QObjectData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QObjectData) +16 __cxa_pure_virtual +24 __cxa_pure_virtual + +Class QObjectData + size=48 align=8 + base size=48 base align=8 +QObjectData (0x7f431316f380) 0 + vptr=((& QObjectData::_ZTV11QObjectData) + 16u) + +Vtable for QObject +QObject::_ZTV7QObject: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QObject) +16 QObject::metaObject +24 QObject::qt_metacast +32 QObject::qt_metacall +40 QObject::~QObject +48 QObject::~QObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObject + size=16 align=8 + base size=16 base align=8 +QObject (0x7f431316f690) 0 + vptr=((& QObject::_ZTV7QObject) + 16u) + +Vtable for QObjectUserData +QObjectUserData::_ZTV15QObjectUserData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QObjectUserData) +16 QObjectUserData::~QObjectUserData +24 QObjectUserData::~QObjectUserData + +Class QObjectUserData + size=8 align=8 + base size=8 base align=8 +QObjectUserData (0x7f4312fe4c40) 0 nearly-empty + vptr=((& QObjectUserData::_ZTV15QObjectUserData) + 16u) + +Vtable for QIODevice +QIODevice::_ZTV9QIODevice: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QIODevice) +16 QIODevice::metaObject +24 QIODevice::qt_metacast +32 QIODevice::qt_metacall +40 QIODevice::~QIODevice +48 QIODevice::~QIODevice +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QIODevice::isSequential +120 QIODevice::open +128 QIODevice::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QIODevice::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 __cxa_pure_virtual +224 QIODevice::readLineData +232 __cxa_pure_virtual + +Class QIODevice + size=16 align=8 + base size=16 base align=8 +QIODevice (0x7f4312ff4230) 0 + vptr=((& QIODevice::_ZTV9QIODevice) + 16u) + QObject (0x7f4312ff42a0) 0 + primary-for QIODevice (0x7f4312ff4230) + +Class _IO_marker + size=24 align=8 + base size=24 base align=8 +_IO_marker (0x7f4313055d90) 0 + +Class _IO_FILE + size=216 align=8 + base size=216 base align=8 +_IO_FILE (0x7f4313055e00) 0 + +Vtable for QFile +QFile::_ZTV5QFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QFile) +16 QFile::metaObject +24 QFile::qt_metacast +32 QFile::qt_metacall +40 QFile::~QFile +48 QFile::~QFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QFile::fileEngine + +Class QFile + size=16 align=8 + base size=16 base align=8 +QFile (0x7f4313055ee0) 0 + vptr=((& QFile::_ZTV5QFile) + 16u) + QIODevice (0x7f4313055f50) 0 + primary-for QFile (0x7f4313055ee0) + QObject (0x7f4312e5a000) 0 + primary-for QIODevice (0x7f4313055f50) + +Class QFileInfo + size=8 align=8 + base size=8 base align=8 +QFileInfo (0x7f4312eb7150) 0 + +Vtable for QDataStream +QDataStream::_ZTV11QDataStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QDataStream) +16 QDataStream::~QDataStream +24 QDataStream::~QDataStream + +Class QDataStream + size=40 align=8 + base size=40 base align=8 +QDataStream (0x7f4312f0baf0) 0 + vptr=((& QDataStream::_ZTV11QDataStream) + 16u) + +Class QRegExp + size=8 align=8 + base size=8 base align=8 +QRegExp (0x7f4312d74f50) 0 + +Class QStringMatcher::Data + size=272 align=8 + base size=272 base align=8 +QStringMatcher::Data (0x7f4312ddc380) 0 + +Class QStringMatcher + size=1048 align=8 + base size=1048 base align=8 +QStringMatcher (0x7f4312dd1d20) 0 + +Class QStringList + size=8 align=8 + base size=8 base align=8 +QStringList (0x7f4312ddc930) 0 + QList (0x7f4312ddc9a0) 0 + +Class QDir + size=8 align=8 + base size=8 base align=8 +QDir (0x7f4312c7a5b0) 0 + +Class QAbstractFileEngine::ExtensionOption + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionOption (0x7f4312d219a0) 0 empty + +Class QAbstractFileEngine::ExtensionReturn + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionReturn (0x7f4312d21a10) 0 empty + +Class QAbstractFileEngine::MapExtensionOption + size=24 align=8 + base size=20 base align=8 +QAbstractFileEngine::MapExtensionOption (0x7f4312d21a80) 0 + QAbstractFileEngine::ExtensionOption (0x7f4312d21af0) 0 empty + +Class QAbstractFileEngine::MapExtensionReturn + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::MapExtensionReturn (0x7f4312d21cb0) 0 + QAbstractFileEngine::ExtensionReturn (0x7f4312d21d20) 0 empty + +Class QAbstractFileEngine::UnMapExtensionOption + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::UnMapExtensionOption (0x7f4312d21d90) 0 + QAbstractFileEngine::ExtensionOption (0x7f4312d21e00) 0 empty + +Vtable for QAbstractFileEngine +QAbstractFileEngine::_ZTV19QAbstractFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractFileEngine) +16 QAbstractFileEngine::~QAbstractFileEngine +24 QAbstractFileEngine::~QAbstractFileEngine +32 QAbstractFileEngine::open +40 QAbstractFileEngine::close +48 QAbstractFileEngine::flush +56 QAbstractFileEngine::size +64 QAbstractFileEngine::pos +72 QAbstractFileEngine::seek +80 QAbstractFileEngine::isSequential +88 QAbstractFileEngine::remove +96 QAbstractFileEngine::copy +104 QAbstractFileEngine::rename +112 QAbstractFileEngine::link +120 QAbstractFileEngine::mkdir +128 QAbstractFileEngine::rmdir +136 QAbstractFileEngine::setSize +144 QAbstractFileEngine::caseSensitive +152 QAbstractFileEngine::isRelativePath +160 QAbstractFileEngine::entryList +168 QAbstractFileEngine::fileFlags +176 QAbstractFileEngine::setPermissions +184 QAbstractFileEngine::fileName +192 QAbstractFileEngine::ownerId +200 QAbstractFileEngine::owner +208 QAbstractFileEngine::fileTime +216 QAbstractFileEngine::setFileName +224 QAbstractFileEngine::handle +232 QAbstractFileEngine::beginEntryList +240 QAbstractFileEngine::endEntryList +248 QAbstractFileEngine::read +256 QAbstractFileEngine::readLine +264 QAbstractFileEngine::write +272 QAbstractFileEngine::extension +280 QAbstractFileEngine::supportsExtension + +Class QAbstractFileEngine + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngine (0x7f4312d09930) 0 + vptr=((& QAbstractFileEngine::_ZTV19QAbstractFileEngine) + 16u) + +Vtable for QAbstractFileEngineHandler +QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QAbstractFileEngineHandler) +16 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +24 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +32 __cxa_pure_virtual + +Class QAbstractFileEngineHandler + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngineHandler (0x7f4312b5bcb0) 0 nearly-empty + vptr=((& QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler) + 16u) + +Vtable for QAbstractFileEngineIterator +QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QAbstractFileEngineIterator) +16 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +24 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QAbstractFileEngineIterator::currentFileInfo +64 QAbstractFileEngineIterator::entryInfo + +Class QAbstractFileEngineIterator + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngineIterator (0x7f4312b5be70) 0 + vptr=((& QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator) + 16u) + +Vtable for QBuffer +QBuffer::_ZTV7QBuffer: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QBuffer) +16 QBuffer::metaObject +24 QBuffer::qt_metacast +32 QBuffer::qt_metacall +40 QBuffer::~QBuffer +48 QBuffer::~QBuffer +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QBuffer::connectNotify +104 QBuffer::disconnectNotify +112 QIODevice::isSequential +120 QBuffer::open +128 QBuffer::close +136 QBuffer::pos +144 QBuffer::size +152 QBuffer::seek +160 QBuffer::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QBuffer::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QBuffer::readData +224 QIODevice::readLineData +232 QBuffer::writeData + +Class QBuffer + size=16 align=8 + base size=16 base align=8 +QBuffer (0x7f4312b6c770) 0 + vptr=((& QBuffer::_ZTV7QBuffer) + 16u) + QIODevice (0x7f4312b6c7e0) 0 + primary-for QBuffer (0x7f4312b6c770) + QObject (0x7f4312b6c850) 0 + primary-for QIODevice (0x7f4312b6c7e0) + +Class QHashData::Node + size=16 align=8 + base size=16 base align=8 +QHashData::Node (0x7f4312bafee0) 0 + +Class QHashData + size=40 align=8 + base size=40 base align=8 +QHashData (0x7f4312bafe70) 0 + +Class QHashDummyValue + size=1 align=1 + base size=0 base align=1 +QHashDummyValue (0x7f4312bd2230) 0 empty + +Class QMapData::Node + size=16 align=8 + base size=16 base align=8 +QMapData::Node (0x7f4312ad0b60) 0 + +Class QMapData + size=128 align=8 + base size=128 base align=8 +QMapData (0x7f4312ad0af0) 0 + +Vtable for QSystemLocale +QSystemLocale::_ZTV13QSystemLocale: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSystemLocale) +16 QSystemLocale::~QSystemLocale +24 QSystemLocale::~QSystemLocale +32 QSystemLocale::query +40 QSystemLocale::fallbackLocale + +Class QSystemLocale + size=8 align=8 + base size=8 base align=8 +QSystemLocale (0x7f4312a0d770) 0 nearly-empty + vptr=((& QSystemLocale::_ZTV13QSystemLocale) + 16u) + +Class QLocale::Data + size=4 align=2 + base size=4 base align=2 +QLocale::Data (0x7f4312855e70) 0 + +Class QLocale + size=8 align=8 + base size=8 base align=8 +QLocale (0x7f4312a0dbd0) 0 + +Class QTextCodec::ConverterState + size=32 align=8 + base size=32 base align=8 +QTextCodec::ConverterState (0x7f43128afcb0) 0 + +Vtable for QTextCodec +QTextCodec::_ZTV10QTextCodec: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextCodec) +16 __cxa_pure_virtual +24 QTextCodec::aliases +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QTextCodec::~QTextCodec +64 QTextCodec::~QTextCodec + +Class QTextCodec + size=8 align=8 + base size=8 base align=8 +QTextCodec (0x7f431289f540) 0 nearly-empty + vptr=((& QTextCodec::_ZTV10QTextCodec) + 16u) + +Class QTextEncoder + size=40 align=8 + base size=40 base align=8 +QTextEncoder (0x7f4312922230) 0 + +Class QTextDecoder + size=40 align=8 + base size=40 base align=8 +QTextDecoder (0x7f431292a070) 0 + +Vtable for QTextStream +QTextStream::_ZTV11QTextStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTextStream) +16 QTextStream::~QTextStream +24 QTextStream::~QTextStream + +Class QTextStream + size=16 align=8 + base size=16 base align=8 +QTextStream (0x7f431292ae70) 0 + vptr=((& QTextStream::_ZTV11QTextStream) + 16u) + +Class QTextStreamManipulator + size=40 align=8 + base size=38 base align=8 +QTextStreamManipulator (0x7f43127a2b60) 0 + +Vtable for QTextIStream +QTextIStream::_ZTV12QTextIStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextIStream) +16 QTextIStream::~QTextIStream +24 QTextIStream::~QTextIStream + +Class QTextIStream + size=16 align=8 + base size=16 base align=8 +QTextIStream (0x7f43127d6150) 0 + vptr=((& QTextIStream::_ZTV12QTextIStream) + 16u) + QTextStream (0x7f43127d61c0) 0 + primary-for QTextIStream (0x7f43127d6150) + +Vtable for QTextOStream +QTextOStream::_ZTV12QTextOStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextOStream) +16 QTextOStream::~QTextOStream +24 QTextOStream::~QTextOStream + +Class QTextOStream + size=16 align=8 + base size=16 base align=8 +QTextOStream (0x7f43127ea000) 0 + vptr=((& QTextOStream::_ZTV12QTextOStream) + 16u) + QTextStream (0x7f43127ea070) 0 + primary-for QTextOStream (0x7f43127ea000) + +Class wait + size=4 align=4 + base size=4 base align=4 +wait (0x7f43127f5e70) 0 + +Class timespec + size=16 align=8 + base size=16 base align=8 +timespec (0x7f43128021c0) 0 + +Class timeval + size=16 align=8 + base size=16 base align=8 +timeval (0x7f4312802230) 0 + +Class __pthread_internal_list + size=16 align=8 + base size=16 base align=8 +__pthread_internal_list (0x7f4312802380) 0 + +Class random_data + size=48 align=8 + base size=48 base align=8 +random_data (0x7f4312802930) 0 + +Class drand48_data + size=24 align=8 + base size=24 base align=8 +drand48_data (0x7f43128029a0) 0 + +Class QVectorData + size=16 align=4 + base size=16 base align=4 +QVectorData (0x7f4312802a10) 0 + +Class QContiguousCacheData + size=24 align=4 + base size=24 base align=4 +QContiguousCacheData (0x7f43125ba700) 0 + +Class QDebug::Stream + size=40 align=8 + base size=34 base align=8 +QDebug::Stream (0x7f4312418230) 0 + +Class QDebug + size=8 align=8 + base size=8 base align=8 +QDebug (0x7f43124181c0) 0 + +Class QNoDebug + size=1 align=1 + base size=0 base align=1 +QNoDebug (0x7f43124cc1c0) 0 empty + +Vtable for QDirIterator +QDirIterator::_ZTV12QDirIterator: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QDirIterator) +16 QDirIterator::~QDirIterator +24 QDirIterator::~QDirIterator + +Class QDirIterator + size=16 align=8 + base size=16 base align=8 +QDirIterator (0x7f43124dc850) 0 + vptr=((& QDirIterator::_ZTV12QDirIterator) + 16u) + +Vtable for QFileSystemWatcher +QFileSystemWatcher::_ZTV18QFileSystemWatcher: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFileSystemWatcher) +16 QFileSystemWatcher::metaObject +24 QFileSystemWatcher::qt_metacast +32 QFileSystemWatcher::qt_metacall +40 QFileSystemWatcher::~QFileSystemWatcher +48 QFileSystemWatcher::~QFileSystemWatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QFileSystemWatcher + size=16 align=8 + base size=16 base align=8 +QFileSystemWatcher (0x7f431232e620) 0 + vptr=((& QFileSystemWatcher::_ZTV18QFileSystemWatcher) + 16u) + QObject (0x7f431232e690) 0 + primary-for QFileSystemWatcher (0x7f431232e620) + +Vtable for QFSFileEngine +QFSFileEngine::_ZTV13QFSFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QFSFileEngine) +16 QFSFileEngine::~QFSFileEngine +24 QFSFileEngine::~QFSFileEngine +32 QFSFileEngine::open +40 QFSFileEngine::close +48 QFSFileEngine::flush +56 QFSFileEngine::size +64 QFSFileEngine::pos +72 QFSFileEngine::seek +80 QFSFileEngine::isSequential +88 QFSFileEngine::remove +96 QFSFileEngine::copy +104 QFSFileEngine::rename +112 QFSFileEngine::link +120 QFSFileEngine::mkdir +128 QFSFileEngine::rmdir +136 QFSFileEngine::setSize +144 QFSFileEngine::caseSensitive +152 QFSFileEngine::isRelativePath +160 QFSFileEngine::entryList +168 QFSFileEngine::fileFlags +176 QFSFileEngine::setPermissions +184 QFSFileEngine::fileName +192 QFSFileEngine::ownerId +200 QFSFileEngine::owner +208 QFSFileEngine::fileTime +216 QFSFileEngine::setFileName +224 QFSFileEngine::handle +232 QFSFileEngine::beginEntryList +240 QFSFileEngine::endEntryList +248 QFSFileEngine::read +256 QFSFileEngine::readLine +264 QFSFileEngine::write +272 QFSFileEngine::extension +280 QFSFileEngine::supportsExtension + +Class QFSFileEngine + size=16 align=8 + base size=16 base align=8 +QFSFileEngine (0x7f431234cb60) 0 + vptr=((& QFSFileEngine::_ZTV13QFSFileEngine) + 16u) + QAbstractFileEngine (0x7f431234cbd0) 0 + primary-for QFSFileEngine (0x7f431234cb60) + +Class QSharedData + size=4 align=4 + base size=4 base align=4 +QSharedData (0x7f431235bf50) 0 + +Class QProcessEnvironment + size=8 align=8 + base size=8 base align=8 +QProcessEnvironment (0x7f43123a32a0) 0 + +Vtable for QProcess +QProcess::_ZTV8QProcess: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QProcess) +16 QProcess::metaObject +24 QProcess::qt_metacast +32 QProcess::qt_metacall +40 QProcess::~QProcess +48 QProcess::~QProcess +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QProcess::isSequential +120 QIODevice::open +128 QProcess::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QProcess::atEnd +168 QIODevice::reset +176 QProcess::bytesAvailable +184 QProcess::bytesToWrite +192 QProcess::canReadLine +200 QProcess::waitForReadyRead +208 QProcess::waitForBytesWritten +216 QProcess::readData +224 QIODevice::readLineData +232 QProcess::writeData +240 QProcess::setupChildProcess + +Class QProcess + size=16 align=8 + base size=16 base align=8 +QProcess (0x7f43123a3d90) 0 + vptr=((& QProcess::_ZTV8QProcess) + 16u) + QIODevice (0x7f43123a3e00) 0 + primary-for QProcess (0x7f43123a3d90) + QObject (0x7f43123a3e70) 0 + primary-for QIODevice (0x7f43123a3e00) + +Class QResource + size=8 align=8 + base size=8 base align=8 +QResource (0x7f43123ec2a0) 0 + +Class QMetaType + size=1 align=1 + base size=0 base align=1 +QMetaType (0x7f43123ecf50) 0 empty + +Class QVariant::PrivateShared + size=16 align=8 + base size=12 base align=8 +QVariant::PrivateShared (0x7f43122ea7e0) 0 + +Class QVariant::Private::Data + size=8 align=8 + base size=8 base align=8 +QVariant::Private::Data (0x7f43122eaaf0) 0 + +Class QVariant::Private + size=16 align=8 + base size=12 base align=8 +QVariant::Private (0x7f43122ea8c0) 0 + +Class QVariant::Handler + size=72 align=8 + base size=72 base align=8 +QVariant::Handler (0x7f43122f87e0) 0 + +Class QVariant + size=16 align=8 + base size=16 base align=8 +QVariant (0x7f43122ba8c0) 0 + +Class QVariantComparisonHelper + size=8 align=8 + base size=8 base align=8 +QVariantComparisonHelper (0x7f43121ada80) 0 + +Vtable for QSettings +QSettings::_ZTV9QSettings: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QSettings) +16 QSettings::metaObject +24 QSettings::qt_metacast +32 QSettings::qt_metacall +40 QSettings::~QSettings +48 QSettings::~QSettings +56 QSettings::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSettings + size=16 align=8 + base size=16 base align=8 +QSettings (0x7f43121eb000) 0 + vptr=((& QSettings::_ZTV9QSettings) + 16u) + QObject (0x7f43121eb070) 0 + primary-for QSettings (0x7f43121eb000) + +Vtable for QTemporaryFile +QTemporaryFile::_ZTV14QTemporaryFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QTemporaryFile) +16 QTemporaryFile::metaObject +24 QTemporaryFile::qt_metacast +32 QTemporaryFile::qt_metacall +40 QTemporaryFile::~QTemporaryFile +48 QTemporaryFile::~QTemporaryFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QTemporaryFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QTemporaryFile::fileEngine + +Class QTemporaryFile + size=16 align=8 + base size=16 base align=8 +QTemporaryFile (0x7f4312054380) 0 + vptr=((& QTemporaryFile::_ZTV14QTemporaryFile) + 16u) + QFile (0x7f43120543f0) 0 + primary-for QTemporaryFile (0x7f4312054380) + QIODevice (0x7f4312054460) 0 + primary-for QFile (0x7f43120543f0) + QObject (0x7f43120544d0) 0 + primary-for QIODevice (0x7f4312054460) + +Class QUrl + size=8 align=8 + base size=8 base align=8 +QUrl (0x7f431206ea80) 0 + +Class QXmlStreamStringRef + size=16 align=8 + base size=16 base align=8 +QXmlStreamStringRef (0x7f43120fc150) 0 + +Class QXmlStreamAttribute + size=80 align=8 + base size=73 base align=8 +QXmlStreamAttribute (0x7f4311f169a0) 0 + +Class QXmlStreamAttributes + size=8 align=8 + base size=8 base align=8 +QXmlStreamAttributes (0x7f4311f3f3f0) 0 + QVector (0x7f4311f3f460) 0 + +Class QXmlStreamNamespaceDeclaration + size=40 align=8 + base size=40 base align=8 +QXmlStreamNamespaceDeclaration (0x7f4311f3f8c0) 0 + +Class QXmlStreamNotationDeclaration + size=56 align=8 + base size=56 base align=8 +QXmlStreamNotationDeclaration (0x7f4311f812a0) 0 + +Class QXmlStreamEntityDeclaration + size=88 align=8 + base size=88 base align=8 +QXmlStreamEntityDeclaration (0x7f4311f9e150) 0 + +Vtable for QXmlStreamEntityResolver +QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QXmlStreamEntityResolver) +16 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +24 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +32 QXmlStreamEntityResolver::resolveEntity +40 QXmlStreamEntityResolver::resolveUndeclaredEntity + +Class QXmlStreamEntityResolver + size=8 align=8 + base size=8 base align=8 +QXmlStreamEntityResolver (0x7f4311fbba80) 0 nearly-empty + vptr=((& QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver) + 16u) + +Class QXmlStreamReader + size=8 align=8 + base size=8 base align=8 +QXmlStreamReader (0x7f4311fbbc40) 0 + +Class QXmlStreamWriter + size=8 align=8 + base size=8 base align=8 +QXmlStreamWriter (0x7f4311e01d20) 0 + +Vtable for QAbstractState +QAbstractState::_ZTV14QAbstractState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QAbstractState) +16 QAbstractState::metaObject +24 QAbstractState::qt_metacast +32 QAbstractState::qt_metacall +40 QAbstractState::~QAbstractState +48 QAbstractState::~QAbstractState +56 QAbstractState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QAbstractState + size=16 align=8 + base size=16 base align=8 +QAbstractState (0x7f4311e19b60) 0 + vptr=((& QAbstractState::_ZTV14QAbstractState) + 16u) + QObject (0x7f4311e19bd0) 0 + primary-for QAbstractState (0x7f4311e19b60) + +Vtable for QAbstractTransition +QAbstractTransition::_ZTV19QAbstractTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractTransition) +16 QAbstractTransition::metaObject +24 QAbstractTransition::qt_metacast +32 QAbstractTransition::qt_metacall +40 QAbstractTransition::~QAbstractTransition +48 QAbstractTransition::~QAbstractTransition +56 QAbstractTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QAbstractTransition + size=16 align=8 + base size=16 base align=8 +QAbstractTransition (0x7f4311e3e380) 0 + vptr=((& QAbstractTransition::_ZTV19QAbstractTransition) + 16u) + QObject (0x7f4311e3e3f0) 0 + primary-for QAbstractTransition (0x7f4311e3e380) + +Vtable for QEvent +QEvent::_ZTV6QEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QEvent) +16 QEvent::~QEvent +24 QEvent::~QEvent + +Class QEvent + size=24 align=8 + base size=20 base align=8 +QEvent (0x7f4311e52bd0) 0 + vptr=((& QEvent::_ZTV6QEvent) + 16u) + +Vtable for QTimerEvent +QTimerEvent::_ZTV11QTimerEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTimerEvent) +16 QTimerEvent::~QTimerEvent +24 QTimerEvent::~QTimerEvent + +Class QTimerEvent + size=24 align=8 + base size=24 base align=8 +QTimerEvent (0x7f4311e757e0) 0 + vptr=((& QTimerEvent::_ZTV11QTimerEvent) + 16u) + QEvent (0x7f4311e75850) 0 + primary-for QTimerEvent (0x7f4311e757e0) + +Vtable for QChildEvent +QChildEvent::_ZTV11QChildEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QChildEvent) +16 QChildEvent::~QChildEvent +24 QChildEvent::~QChildEvent + +Class QChildEvent + size=32 align=8 + base size=32 base align=8 +QChildEvent (0x7f4311e75c40) 0 + vptr=((& QChildEvent::_ZTV11QChildEvent) + 16u) + QEvent (0x7f4311e75cb0) 0 + primary-for QChildEvent (0x7f4311e75c40) + +Vtable for QCustomEvent +QCustomEvent::_ZTV12QCustomEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QCustomEvent) +16 QCustomEvent::~QCustomEvent +24 QCustomEvent::~QCustomEvent + +Class QCustomEvent + size=24 align=8 + base size=20 base align=8 +QCustomEvent (0x7f4311e7dee0) 0 + vptr=((& QCustomEvent::_ZTV12QCustomEvent) + 16u) + QEvent (0x7f4311e7df50) 0 + primary-for QCustomEvent (0x7f4311e7dee0) + +Vtable for QDynamicPropertyChangeEvent +QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QDynamicPropertyChangeEvent) +16 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent +24 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent + +Class QDynamicPropertyChangeEvent + size=32 align=8 + base size=32 base align=8 +QDynamicPropertyChangeEvent (0x7f4311e8b700) 0 + vptr=((& QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent) + 16u) + QEvent (0x7f4311e8b770) 0 + primary-for QDynamicPropertyChangeEvent (0x7f4311e8b700) + +Vtable for QEventTransition +QEventTransition::_ZTV16QEventTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QEventTransition) +16 QEventTransition::metaObject +24 QEventTransition::qt_metacast +32 QEventTransition::qt_metacall +40 QEventTransition::~QEventTransition +48 QEventTransition::~QEventTransition +56 QEventTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QEventTransition::eventTest +120 QEventTransition::onTransition + +Class QEventTransition + size=16 align=8 + base size=16 base align=8 +QEventTransition (0x7f4311e8bbd0) 0 + vptr=((& QEventTransition::_ZTV16QEventTransition) + 16u) + QAbstractTransition (0x7f4311e8bc40) 0 + primary-for QEventTransition (0x7f4311e8bbd0) + QObject (0x7f4311e8bcb0) 0 + primary-for QAbstractTransition (0x7f4311e8bc40) + +Vtable for QFinalState +QFinalState::_ZTV11QFinalState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFinalState) +16 QFinalState::metaObject +24 QFinalState::qt_metacast +32 QFinalState::qt_metacall +40 QFinalState::~QFinalState +48 QFinalState::~QFinalState +56 QFinalState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFinalState::onEntry +120 QFinalState::onExit + +Class QFinalState + size=16 align=8 + base size=16 base align=8 +QFinalState (0x7f4311eaaa80) 0 + vptr=((& QFinalState::_ZTV11QFinalState) + 16u) + QAbstractState (0x7f4311eaaaf0) 0 + primary-for QFinalState (0x7f4311eaaa80) + QObject (0x7f4311eaab60) 0 + primary-for QAbstractState (0x7f4311eaaaf0) + +Vtable for QHistoryState +QHistoryState::_ZTV13QHistoryState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QHistoryState) +16 QHistoryState::metaObject +24 QHistoryState::qt_metacast +32 QHistoryState::qt_metacall +40 QHistoryState::~QHistoryState +48 QHistoryState::~QHistoryState +56 QHistoryState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QHistoryState::onEntry +120 QHistoryState::onExit + +Class QHistoryState + size=16 align=8 + base size=16 base align=8 +QHistoryState (0x7f4311ec5310) 0 + vptr=((& QHistoryState::_ZTV13QHistoryState) + 16u) + QAbstractState (0x7f4311ec5380) 0 + primary-for QHistoryState (0x7f4311ec5310) + QObject (0x7f4311ec53f0) 0 + primary-for QAbstractState (0x7f4311ec5380) + +Vtable for QSignalTransition +QSignalTransition::_ZTV17QSignalTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QSignalTransition) +16 QSignalTransition::metaObject +24 QSignalTransition::qt_metacast +32 QSignalTransition::qt_metacall +40 QSignalTransition::~QSignalTransition +48 QSignalTransition::~QSignalTransition +56 QSignalTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QSignalTransition::eventTest +120 QSignalTransition::onTransition + +Class QSignalTransition + size=16 align=8 + base size=16 base align=8 +QSignalTransition (0x7f4311ede070) 0 + vptr=((& QSignalTransition::_ZTV17QSignalTransition) + 16u) + QAbstractTransition (0x7f4311ede0e0) 0 + primary-for QSignalTransition (0x7f4311ede070) + QObject (0x7f4311ede150) 0 + primary-for QAbstractTransition (0x7f4311ede0e0) + +Vtable for QState +QState::_ZTV6QState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QState) +16 QState::metaObject +24 QState::qt_metacast +32 QState::qt_metacall +40 QState::~QState +48 QState::~QState +56 QState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QState::onEntry +120 QState::onExit + +Class QState + size=16 align=8 + base size=16 base align=8 +QState (0x7f4311ef2bd0) 0 + vptr=((& QState::_ZTV6QState) + 16u) + QAbstractState (0x7f4311ef2c40) 0 + primary-for QState (0x7f4311ef2bd0) + QObject (0x7f4311ef2cb0) 0 + primary-for QAbstractState (0x7f4311ef2c40) + +Vtable for QStateMachine::SignalEvent +QStateMachine::SignalEvent::_ZTVN13QStateMachine11SignalEventE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN13QStateMachine11SignalEventE) +16 QStateMachine::SignalEvent::~SignalEvent +24 QStateMachine::SignalEvent::~SignalEvent + +Class QStateMachine::SignalEvent + size=48 align=8 + base size=48 base align=8 +QStateMachine::SignalEvent (0x7f4311d16230) 0 + vptr=((& QStateMachine::SignalEvent::_ZTVN13QStateMachine11SignalEventE) + 16u) + QEvent (0x7f4311d162a0) 0 + primary-for QStateMachine::SignalEvent (0x7f4311d16230) + +Vtable for QStateMachine::WrappedEvent +QStateMachine::WrappedEvent::_ZTVN13QStateMachine12WrappedEventE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN13QStateMachine12WrappedEventE) +16 QStateMachine::WrappedEvent::~WrappedEvent +24 QStateMachine::WrappedEvent::~WrappedEvent + +Class QStateMachine::WrappedEvent + size=40 align=8 + base size=40 base align=8 +QStateMachine::WrappedEvent (0x7f4311d167e0) 0 + vptr=((& QStateMachine::WrappedEvent::_ZTVN13QStateMachine12WrappedEventE) + 16u) + QEvent (0x7f4311d16850) 0 + primary-for QStateMachine::WrappedEvent (0x7f4311d167e0) + +Vtable for QStateMachine +QStateMachine::_ZTV13QStateMachine: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QStateMachine) +16 QStateMachine::metaObject +24 QStateMachine::qt_metacast +32 QStateMachine::qt_metacall +40 QStateMachine::~QStateMachine +48 QStateMachine::~QStateMachine +56 QStateMachine::event +64 QStateMachine::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QStateMachine::onEntry +120 QStateMachine::onExit +128 QStateMachine::beginSelectTransitions +136 QStateMachine::endSelectTransitions +144 QStateMachine::beginMicrostep +152 QStateMachine::endMicrostep + +Class QStateMachine + size=16 align=8 + base size=16 base align=8 +QStateMachine (0x7f4311d16000) 0 + vptr=((& QStateMachine::_ZTV13QStateMachine) + 16u) + QState (0x7f4311d16070) 0 + primary-for QStateMachine (0x7f4311d16000) + QAbstractState (0x7f4311d160e0) 0 + primary-for QState (0x7f4311d16070) + QObject (0x7f4311d16150) 0 + primary-for QAbstractState (0x7f4311d160e0) + +Class QBitArray + size=8 align=8 + base size=8 base align=8 +QBitArray (0x7f4311d46230) 0 + +Class QBitRef + size=16 align=8 + base size=12 base align=8 +QBitRef (0x7f4311d9bee0) 0 + +Class QByteArrayMatcher::Data + size=272 align=8 + base size=272 base align=8 +QByteArrayMatcher::Data (0x7f4311dafbd0) 0 + +Class QByteArrayMatcher + size=1040 align=8 + base size=1040 base align=8 +QByteArrayMatcher (0x7f4311daf5b0) 0 + +Class QCryptographicHash + size=8 align=8 + base size=8 base align=8 +QCryptographicHash (0x7f4311de1230) 0 + +Vtable for QtSharedPointer::ExternalRefCountData +QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN15QtSharedPointer20ExternalRefCountDataE) +16 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +24 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +32 QtSharedPointer::ExternalRefCountData::destroy + +Class QtSharedPointer::ExternalRefCountData + size=16 align=8 + base size=16 base align=8 +QtSharedPointer::ExternalRefCountData (0x7f4311c10150) 0 + vptr=((& QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE) + 16u) + +Vtable for QtSharedPointer::ExternalRefCountWithDestroyFn +QtSharedPointer::ExternalRefCountWithDestroyFn::_ZTVN15QtSharedPointer29ExternalRefCountWithDestroyFnE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN15QtSharedPointer29ExternalRefCountWithDestroyFnE) +16 QtSharedPointer::ExternalRefCountWithDestroyFn::~ExternalRefCountWithDestroyFn +24 QtSharedPointer::ExternalRefCountWithDestroyFn::~ExternalRefCountWithDestroyFn +32 QtSharedPointer::ExternalRefCountWithDestroyFn::destroy + +Class QtSharedPointer::ExternalRefCountWithDestroyFn + size=24 align=8 + base size=24 base align=8 +QtSharedPointer::ExternalRefCountWithDestroyFn (0x7f4311c28a10) 0 + vptr=((& QtSharedPointer::ExternalRefCountWithDestroyFn::_ZTVN15QtSharedPointer29ExternalRefCountWithDestroyFnE) + 16u) + QtSharedPointer::ExternalRefCountData (0x7f4311c28a80) 0 + primary-for QtSharedPointer::ExternalRefCountWithDestroyFn (0x7f4311c28a10) + +Class QDate + size=4 align=4 + base size=4 base align=4 +QDate (0x7f4311cac690) 0 + +Class QTime + size=4 align=4 + base size=4 base align=4 +QTime (0x7f4311ce1620) 0 + +Class QDateTime + size=8 align=8 + base size=8 base align=8 +QDateTime (0x7f4311cfdbd0) 0 + +Class QEasingCurve + size=8 align=8 + base size=8 base align=8 +QEasingCurve (0x7f4311b3f0e0) 0 + +Class QPoint + size=8 align=4 + base size=8 base align=4 +QPoint (0x7f4311b3fd20) 0 + +Class QPointF + size=16 align=8 + base size=16 base align=8 +QPointF (0x7f4311b85bd0) 0 + +Class QLine + size=16 align=4 + base size=16 base align=4 +QLine (0x7f4311bc2bd0) 0 + +Class QLineF + size=32 align=8 + base size=32 base align=8 +QLineF (0x7f4311bfea80) 0 + +Class QLinkedListData + size=32 align=8 + base size=32 base align=8 +QLinkedListData (0x7f4311a53540) 0 + +Class QMargins + size=16 align=4 + base size=16 base align=4 +QMargins (0x7f4311912460) 0 + +Class QSize + size=8 align=4 + base size=8 base align=4 +QSize (0x7f431193f230) 0 + +Class QSizeF + size=16 align=8 + base size=16 base align=8 +QSizeF (0x7f4311980ee0) 0 + +Class QRect + size=16 align=4 + base size=16 base align=4 +QRect (0x7f43119d3460) 0 + +Class QRectF + size=32 align=8 + base size=32 base align=8 +QRectF (0x7f4311880e00) 0 + +Class QLatin1Literal + size=16 align=8 + base size=16 base align=8 +QLatin1Literal (0x7f4311731540) 0 + +Class QAbstractConcatenable + size=1 align=1 + base size=0 base align=1 +QAbstractConcatenable (0x7f43117424d0) 0 empty + +Class QTextBoundaryFinder + size=48 align=8 + base size=48 base align=8 +QTextBoundaryFinder (0x7f431177b460) 0 + +Vtable for QTimeLine +QTimeLine::_ZTV9QTimeLine: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTimeLine) +16 QTimeLine::metaObject +24 QTimeLine::qt_metacast +32 QTimeLine::qt_metacall +40 QTimeLine::~QTimeLine +48 QTimeLine::~QTimeLine +56 QObject::event +64 QObject::eventFilter +72 QTimeLine::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTimeLine::valueForTime + +Class QTimeLine + size=16 align=8 + base size=16 base align=8 +QTimeLine (0x7f43117887e0) 0 + vptr=((& QTimeLine::_ZTV9QTimeLine) + 16u) + QObject (0x7f4311788850) 0 + primary-for QTimeLine (0x7f43117887e0) + +Vtable for QRunnable +QRunnable::_ZTV9QRunnable: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QRunnable) +16 __cxa_pure_virtual +24 QRunnable::~QRunnable +32 QRunnable::~QRunnable + +Class QRunnable + size=16 align=8 + base size=12 base align=8 +QRunnable (0x7f43117d5070) 0 + vptr=((& QRunnable::_ZTV9QRunnable) + 16u) + +Class QMutex + size=8 align=8 + base size=8 base align=8 +QMutex (0x7f43117e9700) 0 + +Class QMutexLocker + size=8 align=8 + base size=8 base align=8 +QMutexLocker (0x7f43115f82a0) 0 + +Vtable for QtConcurrent::Exception +QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent9ExceptionE) +16 QtConcurrent::Exception::~Exception +24 QtConcurrent::Exception::~Exception +32 std::exception::what +40 QtConcurrent::Exception::raise +48 QtConcurrent::Exception::clone + +Class QtConcurrent::Exception + size=8 align=8 + base size=8 base align=8 +QtConcurrent::Exception (0x7f431160e5b0) 0 nearly-empty + vptr=((& QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE) + 16u) + std::exception (0x7f431160e620) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7f431160e5b0) + +Vtable for QtConcurrent::UnhandledException +QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent18UnhandledExceptionE) +16 QtConcurrent::UnhandledException::~UnhandledException +24 QtConcurrent::UnhandledException::~UnhandledException +32 std::exception::what +40 QtConcurrent::UnhandledException::raise +48 QtConcurrent::UnhandledException::clone + +Class QtConcurrent::UnhandledException + size=8 align=8 + base size=8 base align=8 +QtConcurrent::UnhandledException (0x7f431160e850) 0 nearly-empty + vptr=((& QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE) + 16u) + QtConcurrent::Exception (0x7f431160e8c0) 0 nearly-empty + primary-for QtConcurrent::UnhandledException (0x7f431160e850) + std::exception (0x7f431160e930) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7f431160e8c0) + +Class QtConcurrent::internal::ExceptionHolder + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionHolder (0x7f431160eb60) 0 + +Class QtConcurrent::internal::ExceptionStore + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionStore (0x7f431160eee0) 0 + +Class QtConcurrent::ResultItem + size=16 align=8 + base size=16 base align=8 +QtConcurrent::ResultItem (0x7f431160ef50) 0 + +Class QtConcurrent::ResultIteratorBase + size=16 align=8 + base size=12 base align=8 +QtConcurrent::ResultIteratorBase (0x7f4311626e70) 0 + +Vtable for QtConcurrent::ResultStoreBase +QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent15ResultStoreBaseE) +16 QtConcurrent::ResultStoreBase::~ResultStoreBase +24 QtConcurrent::ResultStoreBase::~ResultStoreBase + +Class QtConcurrent::ResultStoreBase + size=48 align=8 + base size=44 base align=8 +QtConcurrent::ResultStoreBase (0x7f4311629a10) 0 + vptr=((& QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE) + 16u) + +Vtable for QFutureInterfaceBase +QFutureInterfaceBase::_ZTV20QFutureInterfaceBase: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QFutureInterfaceBase) +16 QFutureInterfaceBase::~QFutureInterfaceBase +24 QFutureInterfaceBase::~QFutureInterfaceBase + +Class QFutureInterfaceBase + size=16 align=8 + base size=16 base align=8 +QFutureInterfaceBase (0x7f4311669e70) 0 + vptr=((& QFutureInterfaceBase::_ZTV20QFutureInterfaceBase) + 16u) + +Vtable for QFutureWatcherBase +QFutureWatcherBase::_ZTV18QFutureWatcherBase: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFutureWatcherBase) +16 QFutureWatcherBase::metaObject +24 QFutureWatcherBase::qt_metacast +32 QFutureWatcherBase::qt_metacall +40 QFutureWatcherBase::~QFutureWatcherBase +48 QFutureWatcherBase::~QFutureWatcherBase +56 QFutureWatcherBase::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QFutureWatcherBase::connectNotify +104 QFutureWatcherBase::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QFutureWatcherBase + size=16 align=8 + base size=16 base align=8 +QFutureWatcherBase (0x7f431154d770) 0 + vptr=((& QFutureWatcherBase::_ZTV18QFutureWatcherBase) + 16u) + QObject (0x7f431154d7e0) 0 + primary-for QFutureWatcherBase (0x7f431154d770) + +Vtable for QThread +QThread::_ZTV7QThread: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QThread) +16 QThread::metaObject +24 QThread::qt_metacast +32 QThread::qt_metacall +40 QThread::~QThread +48 QThread::~QThread +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QThread::run + +Class QThread + size=16 align=8 + base size=16 base align=8 +QThread (0x7f431159db60) 0 + vptr=((& QThread::_ZTV7QThread) + 16u) + QObject (0x7f431159dbd0) 0 + primary-for QThread (0x7f431159db60) + +Vtable for QThreadPool +QThreadPool::_ZTV11QThreadPool: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QThreadPool) +16 QThreadPool::metaObject +24 QThreadPool::qt_metacast +32 QThreadPool::qt_metacall +40 QThreadPool::~QThreadPool +48 QThreadPool::~QThreadPool +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QThreadPool + size=16 align=8 + base size=16 base align=8 +QThreadPool (0x7f43115c6a10) 0 + vptr=((& QThreadPool::_ZTV11QThreadPool) + 16u) + QObject (0x7f43115c6a80) 0 + primary-for QThreadPool (0x7f43115c6a10) + +Class QWaitCondition + size=8 align=8 + base size=8 base align=8 +QWaitCondition (0x7f43115de000) 0 + +Class QSemaphore + size=8 align=8 + base size=8 base align=8 +QSemaphore (0x7f43115de540) 0 + +Class QtConcurrent::ThreadEngineBarrier + size=24 align=8 + base size=24 base align=8 +QtConcurrent::ThreadEngineBarrier (0x7f43115dea80) 0 + +Vtable for QtConcurrent::ThreadEngineBase +QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent16ThreadEngineBaseE) +16 QtConcurrent::ThreadEngineBase::run +24 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +32 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +40 QtConcurrent::ThreadEngineBase::start +48 QtConcurrent::ThreadEngineBase::finish +56 QtConcurrent::ThreadEngineBase::threadFunction +64 QtConcurrent::ThreadEngineBase::shouldStartThread +72 QtConcurrent::ThreadEngineBase::shouldThrottleThread +80 __cxa_pure_virtual + +Class QtConcurrent::ThreadEngineBase + size=64 align=8 + base size=64 base align=8 +QtConcurrent::ThreadEngineBase (0x7f43115deb60) 0 + vptr=((& QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE) + 16u) + QRunnable (0x7f43115debd0) 0 + primary-for QtConcurrent::ThreadEngineBase (0x7f43115deb60) + +VTT for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTTN12QtConcurrent12ThreadEngineIvEE: 2u entries +0 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 24u) +8 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 136u) + +Class QtConcurrent::BlockSizeManager + size=96 align=8 + base size=92 base align=8 +QtConcurrent::BlockSizeManager (0x7f4311434000) 0 + +Vtable for QFactoryInterface +QFactoryInterface::_ZTV17QFactoryInterface: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QFactoryInterface) +16 QFactoryInterface::~QFactoryInterface +24 QFactoryInterface::~QFactoryInterface +32 __cxa_pure_virtual + +Class QFactoryInterface + size=8 align=8 + base size=8 base align=8 +QFactoryInterface (0x7f43110cde00) 0 nearly-empty + vptr=((& QFactoryInterface::_ZTV17QFactoryInterface) + 16u) + +Vtable for QTextCodecFactoryInterface +QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QTextCodecFactoryInterface) +16 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +24 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QTextCodecFactoryInterface + size=8 align=8 + base size=8 base align=8 +QTextCodecFactoryInterface (0x7f4310f000e0) 0 nearly-empty + vptr=((& QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface) + 16u) + QFactoryInterface (0x7f4310f00150) 0 nearly-empty + primary-for QTextCodecFactoryInterface (0x7f4310f000e0) + +Vtable for QTextCodecPlugin +QTextCodecPlugin::_ZTV16QTextCodecPlugin: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QTextCodecPlugin) +16 QTextCodecPlugin::metaObject +24 QTextCodecPlugin::qt_metacast +32 QTextCodecPlugin::qt_metacall +40 QTextCodecPlugin::~QTextCodecPlugin +48 QTextCodecPlugin::~QTextCodecPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 QTextCodecPlugin::keys +160 QTextCodecPlugin::create +168 (int (*)(...))-0x00000000000000010 +176 (int (*)(...))(& _ZTI16QTextCodecPlugin) +184 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD1Ev +192 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD0Ev +200 QTextCodecPlugin::_ZThn16_NK16QTextCodecPlugin4keysEv +208 QTextCodecPlugin::_ZThn16_N16QTextCodecPlugin6createERK7QString + +Class QTextCodecPlugin + size=24 align=8 + base size=24 base align=8 +QTextCodecPlugin (0x7f4310f0b580) 0 + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 16u) + QObject (0x7f4310f00b60) 0 + primary-for QTextCodecPlugin (0x7f4310f0b580) + QTextCodecFactoryInterface (0x7f4310f00bd0) 16 nearly-empty + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 184u) + QFactoryInterface (0x7f4310f00c40) 16 nearly-empty + primary-for QTextCodecFactoryInterface (0x7f4310f00bd0) + +Class QLibraryInfo + size=1 align=1 + base size=0 base align=1 +QLibraryInfo (0x7f4310f57230) 0 empty + +Vtable for QEventLoop +QEventLoop::_ZTV10QEventLoop: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QEventLoop) +16 QEventLoop::metaObject +24 QEventLoop::qt_metacast +32 QEventLoop::qt_metacall +40 QEventLoop::~QEventLoop +48 QEventLoop::~QEventLoop +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QEventLoop + size=16 align=8 + base size=16 base align=8 +QEventLoop (0x7f4310f57380) 0 + vptr=((& QEventLoop::_ZTV10QEventLoop) + 16u) + QObject (0x7f4310f573f0) 0 + primary-for QEventLoop (0x7f4310f57380) + +Vtable for QAbstractEventDispatcher +QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QAbstractEventDispatcher) +16 QAbstractEventDispatcher::metaObject +24 QAbstractEventDispatcher::qt_metacast +32 QAbstractEventDispatcher::qt_metacall +40 QAbstractEventDispatcher::~QAbstractEventDispatcher +48 QAbstractEventDispatcher::~QAbstractEventDispatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 QAbstractEventDispatcher::startingUp +208 QAbstractEventDispatcher::closingDown + +Class QAbstractEventDispatcher + size=16 align=8 + base size=16 base align=8 +QAbstractEventDispatcher (0x7f4310f92cb0) 0 + vptr=((& QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher) + 16u) + QObject (0x7f4310f92d20) 0 + primary-for QAbstractEventDispatcher (0x7f4310f92cb0) + +Class QModelIndex + size=24 align=8 + base size=24 base align=8 +QModelIndex (0x7f4310fb8b60) 0 + +Class QPersistentModelIndex + size=8 align=8 + base size=8 base align=8 +QPersistentModelIndex (0x7f4310fe5620) 0 + +Vtable for QAbstractItemModel +QAbstractItemModel::_ZTV18QAbstractItemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractItemModel) +16 QAbstractItemModel::metaObject +24 QAbstractItemModel::qt_metacast +32 QAbstractItemModel::qt_metacall +40 QAbstractItemModel::~QAbstractItemModel +48 QAbstractItemModel::~QAbstractItemModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractItemModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractItemModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractItemModel + size=16 align=8 + base size=16 base align=8 +QAbstractItemModel (0x7f4310fef930) 0 + vptr=((& QAbstractItemModel::_ZTV18QAbstractItemModel) + 16u) + QObject (0x7f4310fef9a0) 0 + primary-for QAbstractItemModel (0x7f4310fef930) + +Vtable for QAbstractTableModel +QAbstractTableModel::_ZTV19QAbstractTableModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractTableModel) +16 QAbstractTableModel::metaObject +24 QAbstractTableModel::qt_metacast +32 QAbstractTableModel::qt_metacall +40 QAbstractTableModel::~QAbstractTableModel +48 QAbstractTableModel::~QAbstractTableModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractTableModel::index +120 QAbstractTableModel::parent +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractTableModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractTableModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractTableModel + size=16 align=8 + base size=16 base align=8 +QAbstractTableModel (0x7f4310e4ac40) 0 + vptr=((& QAbstractTableModel::_ZTV19QAbstractTableModel) + 16u) + QAbstractItemModel (0x7f4310e4acb0) 0 + primary-for QAbstractTableModel (0x7f4310e4ac40) + QObject (0x7f4310e4ad20) 0 + primary-for QAbstractItemModel (0x7f4310e4acb0) + +Vtable for QAbstractListModel +QAbstractListModel::_ZTV18QAbstractListModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractListModel) +16 QAbstractListModel::metaObject +24 QAbstractListModel::qt_metacast +32 QAbstractListModel::qt_metacall +40 QAbstractListModel::~QAbstractListModel +48 QAbstractListModel::~QAbstractListModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractListModel::index +120 QAbstractListModel::parent +128 __cxa_pure_virtual +136 QAbstractListModel::columnCount +144 QAbstractListModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractListModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractListModel + size=16 align=8 + base size=16 base align=8 +QAbstractListModel (0x7f4310e671c0) 0 + vptr=((& QAbstractListModel::_ZTV18QAbstractListModel) + 16u) + QAbstractItemModel (0x7f4310e67230) 0 + primary-for QAbstractListModel (0x7f4310e671c0) + QObject (0x7f4310e672a0) 0 + primary-for QAbstractItemModel (0x7f4310e67230) + +Class QBasicTimer + size=4 align=4 + base size=4 base align=4 +QBasicTimer (0x7f4310e97310) 0 + +Vtable for QCoreApplication +QCoreApplication::_ZTV16QCoreApplication: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QCoreApplication) +16 QCoreApplication::metaObject +24 QCoreApplication::qt_metacast +32 QCoreApplication::qt_metacall +40 QCoreApplication::~QCoreApplication +48 QCoreApplication::~QCoreApplication +56 QCoreApplication::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCoreApplication::notify +120 QCoreApplication::compressEvent + +Class QCoreApplication + size=16 align=8 + base size=16 base align=8 +QCoreApplication (0x7f4310ea2700) 0 + vptr=((& QCoreApplication::_ZTV16QCoreApplication) + 16u) + QObject (0x7f4310ea2770) 0 + primary-for QCoreApplication (0x7f4310ea2700) + +Class __exception + size=40 align=8 + base size=40 base align=8 +__exception (0x7f4310ed73f0) 0 + +Class QMetaMethod + size=16 align=8 + base size=12 base align=8 +QMetaMethod (0x7f4310d43850) 0 + +Class QMetaEnum + size=16 align=8 + base size=12 base align=8 +QMetaEnum (0x7f4310d5ccb0) 0 + +Class QMetaProperty + size=32 align=8 + base size=32 base align=8 +QMetaProperty (0x7f4310d6ca10) 0 + +Class QMetaClassInfo + size=16 align=8 + base size=12 base align=8 +QMetaClassInfo (0x7f4310d7e0e0) 0 + +Vtable for QMimeData +QMimeData::_ZTV9QMimeData: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QMimeData) +16 QMimeData::metaObject +24 QMimeData::qt_metacast +32 QMimeData::qt_metacall +40 QMimeData::~QMimeData +48 QMimeData::~QMimeData +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMimeData::hasFormat +120 QMimeData::formats +128 QMimeData::retrieveData + +Class QMimeData + size=16 align=8 + base size=16 base align=8 +QMimeData (0x7f4310d7ebd0) 0 + vptr=((& QMimeData::_ZTV9QMimeData) + 16u) + QObject (0x7f4310d7ec40) 0 + primary-for QMimeData (0x7f4310d7ebd0) + +Vtable for QObjectCleanupHandler +QObjectCleanupHandler::_ZTV21QObjectCleanupHandler: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QObjectCleanupHandler) +16 QObjectCleanupHandler::metaObject +24 QObjectCleanupHandler::qt_metacast +32 QObjectCleanupHandler::qt_metacall +40 QObjectCleanupHandler::~QObjectCleanupHandler +48 QObjectCleanupHandler::~QObjectCleanupHandler +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObjectCleanupHandler + size=24 align=8 + base size=24 base align=8 +QObjectCleanupHandler (0x7f4310da0460) 0 + vptr=((& QObjectCleanupHandler::_ZTV21QObjectCleanupHandler) + 16u) + QObject (0x7f4310da04d0) 0 + primary-for QObjectCleanupHandler (0x7f4310da0460) + +Vtable for QSharedMemory +QSharedMemory::_ZTV13QSharedMemory: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSharedMemory) +16 QSharedMemory::metaObject +24 QSharedMemory::qt_metacast +32 QSharedMemory::qt_metacall +40 QSharedMemory::~QSharedMemory +48 QSharedMemory::~QSharedMemory +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSharedMemory + size=16 align=8 + base size=16 base align=8 +QSharedMemory (0x7f4310db15b0) 0 + vptr=((& QSharedMemory::_ZTV13QSharedMemory) + 16u) + QObject (0x7f4310db1620) 0 + primary-for QSharedMemory (0x7f4310db15b0) + +Vtable for QSignalMapper +QSignalMapper::_ZTV13QSignalMapper: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSignalMapper) +16 QSignalMapper::metaObject +24 QSignalMapper::qt_metacast +32 QSignalMapper::qt_metacall +40 QSignalMapper::~QSignalMapper +48 QSignalMapper::~QSignalMapper +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSignalMapper + size=16 align=8 + base size=16 base align=8 +QSignalMapper (0x7f4310dcf380) 0 + vptr=((& QSignalMapper::_ZTV13QSignalMapper) + 16u) + QObject (0x7f4310dcf3f0) 0 + primary-for QSignalMapper (0x7f4310dcf380) + +Vtable for QSocketNotifier +QSocketNotifier::_ZTV15QSocketNotifier: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSocketNotifier) +16 QSocketNotifier::metaObject +24 QSocketNotifier::qt_metacast +32 QSocketNotifier::qt_metacall +40 QSocketNotifier::~QSocketNotifier +48 QSocketNotifier::~QSocketNotifier +56 QSocketNotifier::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSocketNotifier + size=32 align=8 + base size=25 base align=8 +QSocketNotifier (0x7f4310de7770) 0 + vptr=((& QSocketNotifier::_ZTV15QSocketNotifier) + 16u) + QObject (0x7f4310de77e0) 0 + primary-for QSocketNotifier (0x7f4310de7770) + +Class QSystemSemaphore + size=8 align=8 + base size=8 base align=8 +QSystemSemaphore (0x7f4310c02af0) 0 + +Vtable for QTimer +QTimer::_ZTV6QTimer: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QTimer) +16 QTimer::metaObject +24 QTimer::qt_metacast +32 QTimer::qt_metacall +40 QTimer::~QTimer +48 QTimer::~QTimer +56 QObject::event +64 QObject::eventFilter +72 QTimer::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTimer + size=32 align=8 + base size=29 base align=8 +QTimer (0x7f4310c0b540) 0 + vptr=((& QTimer::_ZTV6QTimer) + 16u) + QObject (0x7f4310c0b5b0) 0 + primary-for QTimer (0x7f4310c0b540) + +Vtable for QTranslator +QTranslator::_ZTV11QTranslator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTranslator) +16 QTranslator::metaObject +24 QTranslator::qt_metacast +32 QTranslator::qt_metacall +40 QTranslator::~QTranslator +48 QTranslator::~QTranslator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTranslator::translate +120 QTranslator::isEmpty + +Class QTranslator + size=16 align=8 + base size=16 base align=8 +QTranslator (0x7f4310c32a80) 0 + vptr=((& QTranslator::_ZTV11QTranslator) + 16u) + QObject (0x7f4310c32af0) 0 + primary-for QTranslator (0x7f4310c32a80) + +Vtable for QLibrary +QLibrary::_ZTV8QLibrary: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QLibrary) +16 QLibrary::metaObject +24 QLibrary::qt_metacast +32 QLibrary::qt_metacall +40 QLibrary::~QLibrary +48 QLibrary::~QLibrary +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QLibrary + size=32 align=8 + base size=25 base align=8 +QLibrary (0x7f4310c4ea10) 0 + vptr=((& QLibrary::_ZTV8QLibrary) + 16u) + QObject (0x7f4310c4ea80) 0 + primary-for QLibrary (0x7f4310c4ea10) + +Vtable for QPluginLoader +QPluginLoader::_ZTV13QPluginLoader: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QPluginLoader) +16 QPluginLoader::metaObject +24 QPluginLoader::qt_metacast +32 QPluginLoader::qt_metacall +40 QPluginLoader::~QPluginLoader +48 QPluginLoader::~QPluginLoader +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QPluginLoader + size=32 align=8 + base size=25 base align=8 +QPluginLoader (0x7f4310c9b4d0) 0 + vptr=((& QPluginLoader::_ZTV13QPluginLoader) + 16u) + QObject (0x7f4310c9b540) 0 + primary-for QPluginLoader (0x7f4310c9b4d0) + +Class QUuid + size=16 align=4 + base size=16 base align=4 +QUuid (0x7f4310ca3cb0) 0 + +Class QReadWriteLock + size=8 align=8 + base size=8 base align=8 +QReadWriteLock (0x7f4310ccf5b0) 0 + +Class QReadLocker + size=8 align=8 + base size=8 base align=8 +QReadLocker (0x7f4310ccfc40) 0 + +Class QWriteLocker + size=8 align=8 + base size=8 base align=8 +QWriteLocker (0x7f4310af6000) 0 + +Class QThreadStorageData + size=4 align=4 + base size=4 base align=4 +QThreadStorageData (0x7f4310b09380) 0 + +Vtable for QAbstractAnimation +QAbstractAnimation::_ZTV18QAbstractAnimation: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractAnimation) +16 QAbstractAnimation::metaObject +24 QAbstractAnimation::qt_metacast +32 QAbstractAnimation::qt_metacall +40 QAbstractAnimation::~QAbstractAnimation +48 QAbstractAnimation::~QAbstractAnimation +56 QAbstractAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAbstractAnimation::updateState +136 QAbstractAnimation::updateDirection + +Class QAbstractAnimation + size=16 align=8 + base size=16 base align=8 +QAbstractAnimation (0x7f4310b09af0) 0 + vptr=((& QAbstractAnimation::_ZTV18QAbstractAnimation) + 16u) + QObject (0x7f4310b09b60) 0 + primary-for QAbstractAnimation (0x7f4310b09af0) + +Vtable for QAnimationGroup +QAnimationGroup::_ZTV15QAnimationGroup: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QAnimationGroup) +16 QAnimationGroup::metaObject +24 QAnimationGroup::qt_metacast +32 QAnimationGroup::qt_metacall +40 QAnimationGroup::~QAnimationGroup +48 QAnimationGroup::~QAnimationGroup +56 QAnimationGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAbstractAnimation::updateState +136 QAbstractAnimation::updateDirection + +Class QAnimationGroup + size=16 align=8 + base size=16 base align=8 +QAnimationGroup (0x7f4310b40230) 0 + vptr=((& QAnimationGroup::_ZTV15QAnimationGroup) + 16u) + QAbstractAnimation (0x7f4310b402a0) 0 + primary-for QAnimationGroup (0x7f4310b40230) + QObject (0x7f4310b40310) 0 + primary-for QAbstractAnimation (0x7f4310b402a0) + +Vtable for QParallelAnimationGroup +QParallelAnimationGroup::_ZTV23QParallelAnimationGroup: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QParallelAnimationGroup) +16 QParallelAnimationGroup::metaObject +24 QParallelAnimationGroup::qt_metacast +32 QParallelAnimationGroup::qt_metacall +40 QParallelAnimationGroup::~QParallelAnimationGroup +48 QParallelAnimationGroup::~QParallelAnimationGroup +56 QParallelAnimationGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QParallelAnimationGroup::duration +120 QParallelAnimationGroup::updateCurrentTime +128 QParallelAnimationGroup::updateState +136 QParallelAnimationGroup::updateDirection + +Class QParallelAnimationGroup + size=16 align=8 + base size=16 base align=8 +QParallelAnimationGroup (0x7f4310b570e0) 0 + vptr=((& QParallelAnimationGroup::_ZTV23QParallelAnimationGroup) + 16u) + QAnimationGroup (0x7f4310b57150) 0 + primary-for QParallelAnimationGroup (0x7f4310b570e0) + QAbstractAnimation (0x7f4310b571c0) 0 + primary-for QAnimationGroup (0x7f4310b57150) + QObject (0x7f4310b57230) 0 + primary-for QAbstractAnimation (0x7f4310b571c0) + +Vtable for QPauseAnimation +QPauseAnimation::_ZTV15QPauseAnimation: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QPauseAnimation) +16 QPauseAnimation::metaObject +24 QPauseAnimation::qt_metacast +32 QPauseAnimation::qt_metacall +40 QPauseAnimation::~QPauseAnimation +48 QPauseAnimation::~QPauseAnimation +56 QPauseAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QPauseAnimation::duration +120 QPauseAnimation::updateCurrentTime +128 QAbstractAnimation::updateState +136 QAbstractAnimation::updateDirection + +Class QPauseAnimation + size=16 align=8 + base size=16 base align=8 +QPauseAnimation (0x7f4310b6af50) 0 + vptr=((& QPauseAnimation::_ZTV15QPauseAnimation) + 16u) + QAbstractAnimation (0x7f4310b72000) 0 + primary-for QPauseAnimation (0x7f4310b6af50) + QObject (0x7f4310b72070) 0 + primary-for QAbstractAnimation (0x7f4310b72000) + +Vtable for QVariantAnimation +QVariantAnimation::_ZTV17QVariantAnimation: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QVariantAnimation) +16 QVariantAnimation::metaObject +24 QVariantAnimation::qt_metacast +32 QVariantAnimation::qt_metacall +40 QVariantAnimation::~QVariantAnimation +48 QVariantAnimation::~QVariantAnimation +56 QVariantAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QVariantAnimation::duration +120 QVariantAnimation::updateCurrentTime +128 QVariantAnimation::updateState +136 QAbstractAnimation::updateDirection +144 __cxa_pure_virtual +152 QVariantAnimation::interpolated + +Class QVariantAnimation + size=16 align=8 + base size=16 base align=8 +QVariantAnimation (0x7f4310b839a0) 0 + vptr=((& QVariantAnimation::_ZTV17QVariantAnimation) + 16u) + QAbstractAnimation (0x7f4310b83a10) 0 + primary-for QVariantAnimation (0x7f4310b839a0) + QObject (0x7f4310b83a80) 0 + primary-for QAbstractAnimation (0x7f4310b83a10) + +Vtable for QPropertyAnimation +QPropertyAnimation::_ZTV18QPropertyAnimation: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QPropertyAnimation) +16 QPropertyAnimation::metaObject +24 QPropertyAnimation::qt_metacast +32 QPropertyAnimation::qt_metacall +40 QPropertyAnimation::~QPropertyAnimation +48 QPropertyAnimation::~QPropertyAnimation +56 QPropertyAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QVariantAnimation::duration +120 QVariantAnimation::updateCurrentTime +128 QPropertyAnimation::updateState +136 QAbstractAnimation::updateDirection +144 QPropertyAnimation::updateCurrentValue +152 QVariantAnimation::interpolated + +Class QPropertyAnimation + size=16 align=8 + base size=16 base align=8 +QPropertyAnimation (0x7f4310ba2c40) 0 + vptr=((& QPropertyAnimation::_ZTV18QPropertyAnimation) + 16u) + QVariantAnimation (0x7f4310ba2cb0) 0 + primary-for QPropertyAnimation (0x7f4310ba2c40) + QAbstractAnimation (0x7f4310ba2d20) 0 + primary-for QVariantAnimation (0x7f4310ba2cb0) + QObject (0x7f4310ba2d90) 0 + primary-for QAbstractAnimation (0x7f4310ba2d20) + +Vtable for QSequentialAnimationGroup +QSequentialAnimationGroup::_ZTV25QSequentialAnimationGroup: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QSequentialAnimationGroup) +16 QSequentialAnimationGroup::metaObject +24 QSequentialAnimationGroup::qt_metacast +32 QSequentialAnimationGroup::qt_metacall +40 QSequentialAnimationGroup::~QSequentialAnimationGroup +48 QSequentialAnimationGroup::~QSequentialAnimationGroup +56 QSequentialAnimationGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QSequentialAnimationGroup::duration +120 QSequentialAnimationGroup::updateCurrentTime +128 QSequentialAnimationGroup::updateState +136 QSequentialAnimationGroup::updateDirection + +Class QSequentialAnimationGroup + size=16 align=8 + base size=16 base align=8 +QSequentialAnimationGroup (0x7f4310bbcc40) 0 + vptr=((& QSequentialAnimationGroup::_ZTV25QSequentialAnimationGroup) + 16u) + QAnimationGroup (0x7f4310bbccb0) 0 + primary-for QSequentialAnimationGroup (0x7f4310bbcc40) + QAbstractAnimation (0x7f4310bbcd20) 0 + primary-for QAnimationGroup (0x7f4310bbccb0) + QObject (0x7f4310bbcd90) 0 + primary-for QAbstractAnimation (0x7f4310bbcd20) + +Class QTest::QBenchmarkIterationController + size=4 align=4 + base size=4 base align=4 +QTest::QBenchmarkIterationController (0x7f4310bd4cb0) 0 + +Vtable for QSignalSpy +QSignalSpy::_ZTV10QSignalSpy: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QSignalSpy) +16 QObject::metaObject +24 QObject::qt_metacast +32 QSignalSpy::qt_metacall +40 QSignalSpy::~QSignalSpy +48 QSignalSpy::~QSignalSpy +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSignalSpy + size=40 align=8 + base size=40 base align=8 +QSignalSpy (0x7f4310bc2e80) 0 + vptr=((& QSignalSpy::_ZTV10QSignalSpy) + 16u) + QObject (0x7f4310be20e0) 0 + primary-for QSignalSpy (0x7f4310bc2e80) + QList > (0x7f4310be2150) 16 + +Class QTestData + size=8 align=8 + base size=8 base align=8 +QTestData (0x7f4310aa0620) 0 + +Vtable for QTestBasicStreamer +QTestBasicStreamer::_ZTV18QTestBasicStreamer: 12u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QTestBasicStreamer) +16 QTestBasicStreamer::~QTestBasicStreamer +24 QTestBasicStreamer::~QTestBasicStreamer +32 QTestBasicStreamer::output +40 QTestBasicStreamer::formatStart +48 QTestBasicStreamer::formatEnd +56 QTestBasicStreamer::formatBeforeAttributes +64 QTestBasicStreamer::formatAfterAttributes +72 QTestBasicStreamer::formatAttributes +80 QTestBasicStreamer::outputElements +88 QTestBasicStreamer::outputElementAttributes + +Class QTestBasicStreamer + size=16 align=8 + base size=16 base align=8 +QTestBasicStreamer (0x7f4310938930) 0 + vptr=((& QTestBasicStreamer::_ZTV18QTestBasicStreamer) + 16u) + +Vtable for QTestElementAttribute +QTestElementAttribute::_ZTV21QTestElementAttribute: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QTestElementAttribute) +16 QTestElementAttribute::~QTestElementAttribute +24 QTestElementAttribute::~QTestElementAttribute + +Class QTestElementAttribute + size=40 align=8 + base size=36 base align=8 +QTestElementAttribute (0x7f4310938ee0) 0 + vptr=((& QTestElementAttribute::_ZTV21QTestElementAttribute) + 16u) + QTestCoreList (0x7f4310938f50) 0 + primary-for QTestElementAttribute (0x7f4310938ee0) + +Vtable for QTestElement +QTestElement::_ZTV12QTestElement: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTestElement) +16 QTestElement::~QTestElement +24 QTestElement::~QTestElement + +Class QTestElement + size=56 align=8 + base size=56 base align=8 +QTestElement (0x7f4310969770) 0 + vptr=((& QTestElement::_ZTV12QTestElement) + 16u) + QTestCoreElement (0x7f43109697e0) 0 + primary-for QTestElement (0x7f4310969770) + QTestCoreList (0x7f4310969850) 0 + primary-for QTestCoreElement (0x7f43109697e0) + +Vtable for QTestEventLoop +QTestEventLoop::_ZTV14QTestEventLoop: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QTestEventLoop) +16 QTestEventLoop::metaObject +24 QTestEventLoop::qt_metacast +32 QTestEventLoop::qt_metacall +40 QTestEventLoop::~QTestEventLoop +48 QTestEventLoop::~QTestEventLoop +56 QObject::event +64 QObject::eventFilter +72 QTestEventLoop::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTestEventLoop + size=32 align=8 + base size=32 base align=8 +QTestEventLoop (0x7f4310969000) 0 + vptr=((& QTestEventLoop::_ZTV14QTestEventLoop) + 16u) + QObject (0x7f43109695b0) 0 + primary-for QTestEventLoop (0x7f4310969000) + +Class QTestFileLogger + size=1 align=1 + base size=0 base align=1 +QTestFileLogger (0x7f43109c2a10) 0 empty + +Vtable for QTestLightXmlStreamer +QTestLightXmlStreamer::_ZTV21QTestLightXmlStreamer: 12u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QTestLightXmlStreamer) +16 QTestLightXmlStreamer::~QTestLightXmlStreamer +24 QTestLightXmlStreamer::~QTestLightXmlStreamer +32 QTestLightXmlStreamer::output +40 QTestLightXmlStreamer::formatStart +48 QTestLightXmlStreamer::formatEnd +56 QTestLightXmlStreamer::formatBeforeAttributes +64 QTestBasicStreamer::formatAfterAttributes +72 QTestBasicStreamer::formatAttributes +80 QTestBasicStreamer::outputElements +88 QTestBasicStreamer::outputElementAttributes + +Class QTestLightXmlStreamer + size=16 align=8 + base size=16 base align=8 +QTestLightXmlStreamer (0x7f43109c2b60) 0 + vptr=((& QTestLightXmlStreamer::_ZTV21QTestLightXmlStreamer) + 16u) + QTestBasicStreamer (0x7f43109c2bd0) 0 + primary-for QTestLightXmlStreamer (0x7f43109c2b60) + +Vtable for QTestXmlStreamer +QTestXmlStreamer::_ZTV16QTestXmlStreamer: 12u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QTestXmlStreamer) +16 QTestXmlStreamer::~QTestXmlStreamer +24 QTestXmlStreamer::~QTestXmlStreamer +32 QTestXmlStreamer::output +40 QTestXmlStreamer::formatStart +48 QTestXmlStreamer::formatEnd +56 QTestXmlStreamer::formatBeforeAttributes +64 QTestBasicStreamer::formatAfterAttributes +72 QTestBasicStreamer::formatAttributes +80 QTestBasicStreamer::outputElements +88 QTestBasicStreamer::outputElementAttributes + +Class QTestXmlStreamer + size=16 align=8 + base size=16 base align=8 +QTestXmlStreamer (0x7f43109c2d90) 0 + vptr=((& QTestXmlStreamer::_ZTV16QTestXmlStreamer) + 16u) + QTestBasicStreamer (0x7f43109c2e00) 0 + primary-for QTestXmlStreamer (0x7f43109c2d90) + +Vtable for QTestXunitStreamer +QTestXunitStreamer::_ZTV18QTestXunitStreamer: 12u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QTestXunitStreamer) +16 QTestXunitStreamer::~QTestXunitStreamer +24 QTestXunitStreamer::~QTestXunitStreamer +32 QTestXunitStreamer::output +40 QTestXunitStreamer::formatStart +48 QTestXunitStreamer::formatEnd +56 QTestBasicStreamer::formatBeforeAttributes +64 QTestXunitStreamer::formatAfterAttributes +72 QTestXunitStreamer::formatAttributes +80 QTestXunitStreamer::outputElements +88 QTestBasicStreamer::outputElementAttributes + +Class QTestXunitStreamer + size=16 align=8 + base size=16 base align=8 +QTestXunitStreamer (0x7f43109c2d20) 0 + vptr=((& QTestXunitStreamer::_ZTV18QTestXunitStreamer) + 16u) + QTestBasicStreamer (0x7f43109c2f50) 0 + primary-for QTestXunitStreamer (0x7f43109c2d20) + diff --git a/tests/auto/bic/data/QtWebKit.4.5.0.linux-gcc-amd64.txt b/tests/auto/bic/data/QtWebKit.4.5.0.linux-gcc-amd64.txt new file mode 100644 index 0000000..b516bf9 --- /dev/null +++ b/tests/auto/bic/data/QtWebKit.4.5.0.linux-gcc-amd64.txt @@ -0,0 +1,3607 @@ +Class QSysInfo + size=1 align=1 + base size=0 base align=1 +QSysInfo (0x7f81553d6460) 0 empty + +Class QBool + size=1 align=1 + base size=1 base align=1 +QBool (0x7f81553eb150) 0 + +Class qIsNull(double)::U + size=8 align=8 + base size=8 base align=8 +qIsNull(double)::U (0x7f8155403540) 0 + +Class qIsNull(float)::U + size=4 align=4 + base size=4 base align=4 +qIsNull(float)::U (0x7f81554037e0) 0 + +Class QFlag + size=4 align=4 + base size=4 base align=4 +QFlag (0x7f815543b620) 0 + +Class QIncompatibleFlag + size=4 align=4 + base size=4 base align=4 +QIncompatibleFlag (0x7f815543be00) 0 + +Class QInternal + size=1 align=1 + base size=0 base align=1 +QInternal (0x7f8154a13540) 0 empty + +Class QGenericArgument + size=16 align=8 + base size=16 base align=8 +QGenericArgument (0x7f8154a13850) 0 + +Class QGenericReturnArgument + size=16 align=8 + base size=16 base align=8 +QGenericReturnArgument (0x7f8154a2f3f0) 0 + QGenericArgument (0x7f8154a2f460) 0 + +Class QMetaObject + size=32 align=8 + base size=32 base align=8 +QMetaObject (0x7f8154a2fcb0) 0 + +Class QMetaObjectExtraData + size=16 align=8 + base size=16 base align=8 +QMetaObjectExtraData (0x7f8154856cb0) 0 + +Class QLatin1Char + size=1 align=1 + base size=1 base align=1 +QLatin1Char (0x7f8154861700) 0 + +Class QChar + size=2 align=2 + base size=2 base align=2 +QChar (0x7f81548662a0) 0 + +Class QBasicAtomicInt + size=4 align=4 + base size=4 base align=4 +QBasicAtomicInt (0x7f81548d2380) 0 + +Class QAtomicInt + size=4 align=4 + base size=4 base align=4 +QAtomicInt (0x7f815490dd20) 0 + QBasicAtomicInt (0x7f815490dd90) 0 + +Class __locale_struct + size=232 align=8 + base size=232 base align=8 +__locale_struct (0x7f81547301c0) 0 + +Class QByteArray::Data + size=32 align=8 + base size=32 base align=8 +QByteArray::Data (0x7f81547ab7e0) 0 + +Class QByteArray + size=8 align=8 + base size=8 base align=8 +QByteArray (0x7f8154768540) 0 + +Class QByteRef + size=16 align=8 + base size=12 base align=8 +QByteRef (0x7f8154802a80) 0 + +Class QString::Null + size=1 align=1 + base size=0 base align=1 +QString::Null (0x7f8154709700) 0 empty + +Class QString::Data + size=32 align=8 + base size=32 base align=8 +QString::Data (0x7f8154718ee0) 0 + +Class QString + size=8 align=8 + base size=8 base align=8 +QString (0x7f81546895b0) 0 + +Class QLatin1String + size=8 align=8 + base size=8 base align=8 +QLatin1String (0x7f81545f3000) 0 + +Class QCharRef + size=16 align=8 + base size=12 base align=8 +QCharRef (0x7f815448a620) 0 + +Class QConstString + size=8 align=8 + base size=8 base align=8 +QConstString (0x7f81543d3ee0) 0 + QString (0x7f81543d3f50) 0 + +Class QStringRef + size=16 align=8 + base size=16 base align=8 +QStringRef (0x7f81543f6bd0) 0 + +Vtable for std::exception +std::exception::_ZTVSt9exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9exception) +16 std::exception::~exception +24 std::exception::~exception +32 std::exception::what + +Class std::exception + size=8 align=8 + base size=8 base align=8 +std::exception (0x7f81542b0620) 0 nearly-empty + vptr=((& std::exception::_ZTVSt9exception) + 16u) + +Vtable for std::bad_exception +std::bad_exception::_ZTVSt13bad_exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13bad_exception) +16 std::bad_exception::~bad_exception +24 std::bad_exception::~bad_exception +32 std::bad_exception::what + +Class std::bad_exception + size=8 align=8 + base size=8 base align=8 +std::bad_exception (0x7f81542d2000) 0 nearly-empty + vptr=((& std::bad_exception::_ZTVSt13bad_exception) + 16u) + std::exception (0x7f81542d2070) 0 nearly-empty + primary-for std::bad_exception (0x7f81542d2000) + +Vtable for std::bad_alloc +std::bad_alloc::_ZTVSt9bad_alloc: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9bad_alloc) +16 std::bad_alloc::~bad_alloc +24 std::bad_alloc::~bad_alloc +32 std::bad_alloc::what + +Class std::bad_alloc + size=8 align=8 + base size=8 base align=8 +std::bad_alloc (0x7f81542d28c0) 0 nearly-empty + vptr=((& std::bad_alloc::_ZTVSt9bad_alloc) + 16u) + std::exception (0x7f81542d2930) 0 nearly-empty + primary-for std::bad_alloc (0x7f81542d28c0) + +Class std::nothrow_t + size=1 align=1 + base size=0 base align=1 +std::nothrow_t (0x7f81542e20e0) 0 empty + +Class QListData::Data + size=32 align=8 + base size=32 base align=8 +QListData::Data (0x7f81542e2620) 0 + +Class QListData + size=8 align=8 + base size=8 base align=8 +QListData (0x7f81542e25b0) 0 + +Vtable for QObjectData +QObjectData::_ZTV11QObjectData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QObjectData) +16 __cxa_pure_virtual +24 __cxa_pure_virtual + +Class QObjectData + size=40 align=8 + base size=40 base align=8 +QObjectData (0x7f81541e5bd0) 0 + vptr=((& QObjectData::_ZTV11QObjectData) + 16u) + +Vtable for QObject +QObject::_ZTV7QObject: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QObject) +16 QObject::metaObject +24 QObject::qt_metacast +32 QObject::qt_metacall +40 QObject::~QObject +48 QObject::~QObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObject + size=16 align=8 + base size=16 base align=8 +QObject (0x7f81541e5ee0) 0 + vptr=((& QObject::_ZTV7QObject) + 16u) + +Vtable for QObjectUserData +QObjectUserData::_ZTV15QObjectUserData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QObjectUserData) +16 QObjectUserData::~QObjectUserData +24 QObjectUserData::~QObjectUserData + +Class QObjectUserData + size=8 align=8 + base size=8 base align=8 +QObjectUserData (0x7f81540773f0) 0 nearly-empty + vptr=((& QObjectUserData::_ZTV15QObjectUserData) + 16u) + +Vtable for QIODevice +QIODevice::_ZTV9QIODevice: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QIODevice) +16 QIODevice::metaObject +24 QIODevice::qt_metacast +32 QIODevice::qt_metacall +40 QIODevice::~QIODevice +48 QIODevice::~QIODevice +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QIODevice::isSequential +120 QIODevice::open +128 QIODevice::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QIODevice::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 __cxa_pure_virtual +224 QIODevice::readLineData +232 __cxa_pure_virtual + +Class QIODevice + size=16 align=8 + base size=16 base align=8 +QIODevice (0x7f8154077930) 0 + vptr=((& QIODevice::_ZTV9QIODevice) + 16u) + QObject (0x7f81540779a0) 0 + primary-for QIODevice (0x7f8154077930) + +Vtable for QDataStream +QDataStream::_ZTV11QDataStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QDataStream) +16 QDataStream::~QDataStream +24 QDataStream::~QDataStream + +Class QDataStream + size=40 align=8 + base size=40 base align=8 +QDataStream (0x7f81540ed2a0) 0 + vptr=((& QDataStream::_ZTV11QDataStream) + 16u) + +Class QHashData::Node + size=16 align=8 + base size=16 base align=8 +QHashData::Node (0x7f8153f74150) 0 + +Class QHashData + size=40 align=8 + base size=40 base align=8 +QHashData (0x7f8153f740e0) 0 + +Class QHashDummyValue + size=1 align=1 + base size=0 base align=1 +QHashDummyValue (0x7f8153f84ee0) 0 empty + +Class QMapData::Node + size=16 align=8 + base size=16 base align=8 +QMapData::Node (0x7f8153e96690) 0 + +Class QMapData + size=128 align=8 + base size=128 base align=8 +QMapData (0x7f8153e96620) 0 + +Vtable for QSystemLocale +QSystemLocale::_ZTV13QSystemLocale: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSystemLocale) +16 QSystemLocale::~QSystemLocale +24 QSystemLocale::~QSystemLocale +32 QSystemLocale::query +40 QSystemLocale::fallbackLocale + +Class QSystemLocale + size=8 align=8 + base size=8 base align=8 +QSystemLocale (0x7f8153dabe00) 0 nearly-empty + vptr=((& QSystemLocale::_ZTV13QSystemLocale) + 16u) + +Class QLocale::Data + size=4 align=2 + base size=4 base align=2 +QLocale::Data (0x7f8153e093f0) 0 + +Class QLocale + size=8 align=8 + base size=8 base align=8 +QLocale (0x7f8153dcc0e0) 0 + +Class QTextCodec::ConverterState + size=32 align=8 + base size=32 base align=8 +QTextCodec::ConverterState (0x7f8153c57e70) 0 + +Vtable for QTextCodec +QTextCodec::_ZTV10QTextCodec: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextCodec) +16 __cxa_pure_virtual +24 QTextCodec::aliases +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QTextCodec::~QTextCodec +64 QTextCodec::~QTextCodec + +Class QTextCodec + size=8 align=8 + base size=8 base align=8 +QTextCodec (0x7f8153c3fa80) 0 nearly-empty + vptr=((& QTextCodec::_ZTV10QTextCodec) + 16u) + +Class QTextEncoder + size=40 align=8 + base size=40 base align=8 +QTextEncoder (0x7f8153cc33f0) 0 + +Class QTextDecoder + size=40 align=8 + base size=40 base align=8 +QTextDecoder (0x7f8153ccc230) 0 + +Class _IO_marker + size=24 align=8 + base size=24 base align=8 +_IO_marker (0x7f8153cd62a0) 0 + +Class _IO_FILE + size=216 align=8 + base size=216 base align=8 +_IO_FILE (0x7f8153cd6310) 0 + +Vtable for QTextStream +QTextStream::_ZTV11QTextStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTextStream) +16 QTextStream::~QTextStream +24 QTextStream::~QTextStream + +Class QTextStream + size=16 align=8 + base size=16 base align=8 +QTextStream (0x7f8153cd63f0) 0 + vptr=((& QTextStream::_ZTV11QTextStream) + 16u) + +Class QTextStreamManipulator + size=40 align=8 + base size=38 base align=8 +QTextStreamManipulator (0x7f8153b6eee0) 0 + +Vtable for QTextIStream +QTextIStream::_ZTV12QTextIStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextIStream) +16 QTextIStream::~QTextIStream +24 QTextIStream::~QTextIStream + +Class QTextIStream + size=16 align=8 + base size=16 base align=8 +QTextIStream (0x7f8153b991c0) 0 + vptr=((& QTextIStream::_ZTV12QTextIStream) + 16u) + QTextStream (0x7f8153b99230) 0 + primary-for QTextIStream (0x7f8153b991c0) + +Vtable for QTextOStream +QTextOStream::_ZTV12QTextOStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextOStream) +16 QTextOStream::~QTextOStream +24 QTextOStream::~QTextOStream + +Class QTextOStream + size=16 align=8 + base size=16 base align=8 +QTextOStream (0x7f8153bad070) 0 + vptr=((& QTextOStream::_ZTV12QTextOStream) + 16u) + QTextStream (0x7f8153bad0e0) 0 + primary-for QTextOStream (0x7f8153bad070) + +Class wait + size=4 align=4 + base size=4 base align=4 +wait (0x7f8153bbaee0) 0 + +Class timespec + size=16 align=8 + base size=16 base align=8 +timespec (0x7f8153bc6230) 0 + +Class timeval + size=16 align=8 + base size=16 base align=8 +timeval (0x7f8153bc62a0) 0 + +Class __pthread_internal_list + size=16 align=8 + base size=16 base align=8 +__pthread_internal_list (0x7f8153bc63f0) 0 + +Class random_data + size=48 align=8 + base size=48 base align=8 +random_data (0x7f8153bc69a0) 0 + +Class drand48_data + size=24 align=8 + base size=24 base align=8 +drand48_data (0x7f8153bc6a10) 0 + +Class QVectorData + size=16 align=4 + base size=16 base align=4 +QVectorData (0x7f8153bc6a80) 0 + +Class QDebug::Stream + size=40 align=8 + base size=34 base align=8 +QDebug::Stream (0x7f8153943230) 0 + +Class QDebug + size=8 align=8 + base size=8 base align=8 +QDebug (0x7f81539431c0) 0 + +Class QNoDebug + size=1 align=1 + base size=0 base align=1 +QNoDebug (0x7f81539e1070) 0 empty + +Vtable for QFile +QFile::_ZTV5QFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QFile) +16 QFile::metaObject +24 QFile::qt_metacast +32 QFile::qt_metacall +40 QFile::~QFile +48 QFile::~QFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QFile::fileEngine + +Class QFile + size=16 align=8 + base size=16 base align=8 +QFile (0x7f81539f2620) 0 + vptr=((& QFile::_ZTV5QFile) + 16u) + QIODevice (0x7f81539f2690) 0 + primary-for QFile (0x7f81539f2620) + QObject (0x7f81539f2700) 0 + primary-for QIODevice (0x7f81539f2690) + +Vtable for QTemporaryFile +QTemporaryFile::_ZTV14QTemporaryFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QTemporaryFile) +16 QTemporaryFile::metaObject +24 QTemporaryFile::qt_metacast +32 QTemporaryFile::qt_metacall +40 QTemporaryFile::~QTemporaryFile +48 QTemporaryFile::~QTemporaryFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QTemporaryFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QTemporaryFile::fileEngine + +Class QTemporaryFile + size=16 align=8 + base size=16 base align=8 +QTemporaryFile (0x7f815385d850) 0 + vptr=((& QTemporaryFile::_ZTV14QTemporaryFile) + 16u) + QFile (0x7f815385d8c0) 0 + primary-for QTemporaryFile (0x7f815385d850) + QIODevice (0x7f815385d930) 0 + primary-for QFile (0x7f815385d8c0) + QObject (0x7f815385d9a0) 0 + primary-for QIODevice (0x7f815385d930) + +Class QFileInfo + size=8 align=8 + base size=8 base align=8 +QFileInfo (0x7f815387df50) 0 + +Class QRegExp + size=8 align=8 + base size=8 base align=8 +QRegExp (0x7f81538d9770) 0 + +Class QStringMatcher + size=1048 align=8 + base size=1048 base align=8 +QStringMatcher (0x7f81539275b0) 0 + +Class QStringList + size=8 align=8 + base size=8 base align=8 +QStringList (0x7f815373b070) 0 + QList (0x7f815373b0e0) 0 + +Class QDir + size=8 align=8 + base size=8 base align=8 +QDir (0x7f81537c9cb0) 0 + +Class QAbstractFileEngine::ExtensionOption + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionOption (0x7f8153661e70) 0 empty + +Class QAbstractFileEngine::ExtensionReturn + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionReturn (0x7f8153661ee0) 0 empty + +Class QAbstractFileEngine::MapExtensionOption + size=24 align=8 + base size=20 base align=8 +QAbstractFileEngine::MapExtensionOption (0x7f8153661f50) 0 + QAbstractFileEngine::ExtensionOption (0x7f8153675000) 0 empty + +Class QAbstractFileEngine::MapExtensionReturn + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::MapExtensionReturn (0x7f81536751c0) 0 + QAbstractFileEngine::ExtensionReturn (0x7f8153675230) 0 empty + +Class QAbstractFileEngine::UnMapExtensionOption + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::UnMapExtensionOption (0x7f81536752a0) 0 + QAbstractFileEngine::ExtensionOption (0x7f8153675310) 0 empty + +Vtable for QAbstractFileEngine +QAbstractFileEngine::_ZTV19QAbstractFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractFileEngine) +16 QAbstractFileEngine::~QAbstractFileEngine +24 QAbstractFileEngine::~QAbstractFileEngine +32 QAbstractFileEngine::open +40 QAbstractFileEngine::close +48 QAbstractFileEngine::flush +56 QAbstractFileEngine::size +64 QAbstractFileEngine::pos +72 QAbstractFileEngine::seek +80 QAbstractFileEngine::isSequential +88 QAbstractFileEngine::remove +96 QAbstractFileEngine::copy +104 QAbstractFileEngine::rename +112 QAbstractFileEngine::link +120 QAbstractFileEngine::mkdir +128 QAbstractFileEngine::rmdir +136 QAbstractFileEngine::setSize +144 QAbstractFileEngine::caseSensitive +152 QAbstractFileEngine::isRelativePath +160 QAbstractFileEngine::entryList +168 QAbstractFileEngine::fileFlags +176 QAbstractFileEngine::setPermissions +184 QAbstractFileEngine::fileName +192 QAbstractFileEngine::ownerId +200 QAbstractFileEngine::owner +208 QAbstractFileEngine::fileTime +216 QAbstractFileEngine::setFileName +224 QAbstractFileEngine::handle +232 QAbstractFileEngine::beginEntryList +240 QAbstractFileEngine::endEntryList +248 QAbstractFileEngine::read +256 QAbstractFileEngine::readLine +264 QAbstractFileEngine::write +272 QAbstractFileEngine::extension +280 QAbstractFileEngine::supportsExtension + +Class QAbstractFileEngine + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngine (0x7f8153651e00) 0 + vptr=((& QAbstractFileEngine::_ZTV19QAbstractFileEngine) + 16u) + +Vtable for QAbstractFileEngineHandler +QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QAbstractFileEngineHandler) +16 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +24 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +32 __cxa_pure_virtual + +Class QAbstractFileEngineHandler + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngineHandler (0x7f81536a7000) 0 nearly-empty + vptr=((& QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler) + 16u) + +Vtable for QAbstractFileEngineIterator +QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QAbstractFileEngineIterator) +16 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +24 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QAbstractFileEngineIterator::currentFileInfo +64 QAbstractFileEngineIterator::entryInfo + +Class QAbstractFileEngineIterator + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngineIterator (0x7f81536a71c0) 0 + vptr=((& QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator) + 16u) + +Vtable for QFSFileEngine +QFSFileEngine::_ZTV13QFSFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QFSFileEngine) +16 QFSFileEngine::~QFSFileEngine +24 QFSFileEngine::~QFSFileEngine +32 QFSFileEngine::open +40 QFSFileEngine::close +48 QFSFileEngine::flush +56 QFSFileEngine::size +64 QFSFileEngine::pos +72 QFSFileEngine::seek +80 QFSFileEngine::isSequential +88 QFSFileEngine::remove +96 QFSFileEngine::copy +104 QFSFileEngine::rename +112 QFSFileEngine::link +120 QFSFileEngine::mkdir +128 QFSFileEngine::rmdir +136 QFSFileEngine::setSize +144 QFSFileEngine::caseSensitive +152 QFSFileEngine::isRelativePath +160 QFSFileEngine::entryList +168 QFSFileEngine::fileFlags +176 QFSFileEngine::setPermissions +184 QFSFileEngine::fileName +192 QFSFileEngine::ownerId +200 QFSFileEngine::owner +208 QFSFileEngine::fileTime +216 QFSFileEngine::setFileName +224 QFSFileEngine::handle +232 QFSFileEngine::beginEntryList +240 QFSFileEngine::endEntryList +248 QFSFileEngine::read +256 QFSFileEngine::readLine +264 QFSFileEngine::write +272 QFSFileEngine::extension +280 QFSFileEngine::supportsExtension + +Class QFSFileEngine + size=16 align=8 + base size=16 base align=8 +QFSFileEngine (0x7f81536a7a10) 0 + vptr=((& QFSFileEngine::_ZTV13QFSFileEngine) + 16u) + QAbstractFileEngine (0x7f81536a7a80) 0 + primary-for QFSFileEngine (0x7f81536a7a10) + +Vtable for QProcess +QProcess::_ZTV8QProcess: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QProcess) +16 QProcess::metaObject +24 QProcess::qt_metacast +32 QProcess::qt_metacall +40 QProcess::~QProcess +48 QProcess::~QProcess +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QProcess::isSequential +120 QIODevice::open +128 QProcess::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QProcess::atEnd +168 QIODevice::reset +176 QProcess::bytesAvailable +184 QProcess::bytesToWrite +192 QProcess::canReadLine +200 QProcess::waitForReadyRead +208 QProcess::waitForBytesWritten +216 QProcess::readData +224 QIODevice::readLineData +232 QProcess::writeData +240 QProcess::setupChildProcess + +Class QProcess + size=16 align=8 + base size=16 base align=8 +QProcess (0x7f81536bed20) 0 + vptr=((& QProcess::_ZTV8QProcess) + 16u) + QIODevice (0x7f81536bed90) 0 + primary-for QProcess (0x7f81536bed20) + QObject (0x7f81536bee00) 0 + primary-for QIODevice (0x7f81536bed90) + +Class QResource + size=8 align=8 + base size=8 base align=8 +QResource (0x7f81536fa230) 0 + +Vtable for QDirIterator +QDirIterator::_ZTV12QDirIterator: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QDirIterator) +16 QDirIterator::~QDirIterator +24 QDirIterator::~QDirIterator + +Class QDirIterator + size=16 align=8 + base size=16 base align=8 +QDirIterator (0x7f81536facb0) 0 + vptr=((& QDirIterator::_ZTV12QDirIterator) + 16u) + +Vtable for QBuffer +QBuffer::_ZTV7QBuffer: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QBuffer) +16 QBuffer::metaObject +24 QBuffer::qt_metacast +32 QBuffer::qt_metacall +40 QBuffer::~QBuffer +48 QBuffer::~QBuffer +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QBuffer::connectNotify +104 QBuffer::disconnectNotify +112 QIODevice::isSequential +120 QBuffer::open +128 QBuffer::close +136 QBuffer::pos +144 QBuffer::size +152 QBuffer::seek +160 QBuffer::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QBuffer::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QBuffer::readData +224 QIODevice::readLineData +232 QBuffer::writeData + +Class QBuffer + size=16 align=8 + base size=16 base align=8 +QBuffer (0x7f815350ba80) 0 + vptr=((& QBuffer::_ZTV7QBuffer) + 16u) + QIODevice (0x7f815350baf0) 0 + primary-for QBuffer (0x7f815350ba80) + QObject (0x7f815350bb60) 0 + primary-for QIODevice (0x7f815350baf0) + +Vtable for QFileSystemWatcher +QFileSystemWatcher::_ZTV18QFileSystemWatcher: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFileSystemWatcher) +16 QFileSystemWatcher::metaObject +24 QFileSystemWatcher::qt_metacast +32 QFileSystemWatcher::qt_metacall +40 QFileSystemWatcher::~QFileSystemWatcher +48 QFileSystemWatcher::~QFileSystemWatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QFileSystemWatcher + size=16 align=8 + base size=16 base align=8 +QFileSystemWatcher (0x7f8153532690) 0 + vptr=((& QFileSystemWatcher::_ZTV18QFileSystemWatcher) + 16u) + QObject (0x7f8153532700) 0 + primary-for QFileSystemWatcher (0x7f8153532690) + +Class QUrl + size=8 align=8 + base size=8 base align=8 +QUrl (0x7f8153545bd0) 0 + +Class QMetaType + size=1 align=1 + base size=0 base align=1 +QMetaType (0x7f81535cf3f0) 0 empty + +Class QVariant::PrivateShared + size=16 align=8 + base size=12 base align=8 +QVariant::PrivateShared (0x7f81534a3930) 0 + +Class QVariant::Private::Data + size=8 align=8 + base size=8 base align=8 +QVariant::Private::Data (0x7f81534a3c40) 0 + +Class QVariant::Private + size=16 align=8 + base size=12 base align=8 +QVariant::Private (0x7f81534a3a10) 0 + +Class QVariant::Handler + size=72 align=8 + base size=72 base align=8 +QVariant::Handler (0x7f81534b2930) 0 + +Class QVariant + size=16 align=8 + base size=16 base align=8 +QVariant (0x7f8153473af0) 0 + +Class QVariantComparisonHelper + size=8 align=8 + base size=8 base align=8 +QVariantComparisonHelper (0x7f8153358cb0) 0 + +Vtable for QSettings +QSettings::_ZTV9QSettings: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QSettings) +16 QSettings::metaObject +24 QSettings::qt_metacast +32 QSettings::qt_metacall +40 QSettings::~QSettings +48 QSettings::~QSettings +56 QSettings::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSettings + size=16 align=8 + base size=16 base align=8 +QSettings (0x7f815337ccb0) 0 + vptr=((& QSettings::_ZTV9QSettings) + 16u) + QObject (0x7f815337cd20) 0 + primary-for QSettings (0x7f815337ccb0) + +Class QXmlStreamStringRef + size=16 align=8 + base size=16 base align=8 +QXmlStreamStringRef (0x7f81531fe070) 0 + +Class QXmlStreamAttribute + size=80 align=8 + base size=73 base align=8 +QXmlStreamAttribute (0x7f815321c850) 0 + +Class QXmlStreamAttributes + size=8 align=8 + base size=8 base align=8 +QXmlStreamAttributes (0x7f8153243380) 0 + QVector (0x7f81532433f0) 0 + +Class QXmlStreamNamespaceDeclaration + size=40 align=8 + base size=40 base align=8 +QXmlStreamNamespaceDeclaration (0x7f8153243850) 0 + +Class QXmlStreamNotationDeclaration + size=56 align=8 + base size=56 base align=8 +QXmlStreamNotationDeclaration (0x7f81532851c0) 0 + +Class QXmlStreamEntityDeclaration + size=88 align=8 + base size=88 base align=8 +QXmlStreamEntityDeclaration (0x7f81532a4070) 0 + +Vtable for QXmlStreamEntityResolver +QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QXmlStreamEntityResolver) +16 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +24 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +32 QXmlStreamEntityResolver::resolveEntity +40 QXmlStreamEntityResolver::resolveUndeclaredEntity + +Class QXmlStreamEntityResolver + size=8 align=8 + base size=8 base align=8 +QXmlStreamEntityResolver (0x7f81532c19a0) 0 nearly-empty + vptr=((& QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver) + 16u) + +Class QXmlStreamReader + size=8 align=8 + base size=8 base align=8 +QXmlStreamReader (0x7f81532c1b60) 0 + +Class QXmlStreamWriter + size=8 align=8 + base size=8 base align=8 +QXmlStreamWriter (0x7f81530fda10) 0 + +Class QPoint + size=8 align=4 + base size=8 base align=4 +QPoint (0x7f815313b150) 0 + +Class QPointF + size=16 align=8 + base size=16 base align=8 +QPointF (0x7f8153172d90) 0 + +Class QLine + size=16 align=4 + base size=16 base align=4 +QLine (0x7f81531afbd0) 0 + +Class QLineF + size=32 align=8 + base size=32 base align=8 +QLineF (0x7f81531e9a80) 0 + +Class QSize + size=8 align=4 + base size=8 base align=4 +QSize (0x7f8153046540) 0 + +Class QSizeF + size=16 align=8 + base size=16 base align=8 +QSizeF (0x7f8153091380) 0 + +Class QRect + size=16 align=4 + base size=16 base align=4 +QRect (0x7f81530de9a0) 0 + +Class QRectF + size=32 align=8 + base size=32 base align=8 +QRectF (0x7f8152f95380) 0 + +Class QSharedData + size=4 align=4 + base size=4 base align=4 +QSharedData (0x7f8152e38150) 0 + +Vtable for QtSharedPointer::ExternalRefCountData +QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN15QtSharedPointer20ExternalRefCountDataE) +16 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +24 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +32 QtSharedPointer::ExternalRefCountData::destroy + +Class QtSharedPointer::ExternalRefCountData + size=16 align=8 + base size=16 base align=8 +QtSharedPointer::ExternalRefCountData (0x7f8152e67af0) 0 + vptr=((& QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE) + 16u) + +Class QLinkedListData + size=32 align=8 + base size=32 base align=8 +QLinkedListData (0x7f8152eefc40) 0 + +Class QBitArray + size=8 align=8 + base size=8 base align=8 +QBitArray (0x7f8152dbbb60) 0 + +Class QBitRef + size=16 align=8 + base size=12 base align=8 +QBitRef (0x7f8152c2e930) 0 + +Class QByteArrayMatcher + size=1040 align=8 + base size=1040 base align=8 +QByteArrayMatcher (0x7f8152c48310) 0 + +Class QCryptographicHash + size=8 align=8 + base size=8 base align=8 +QCryptographicHash (0x7f8152c5aa10) 0 + +Class QTextBoundaryFinder + size=48 align=8 + base size=48 base align=8 +QTextBoundaryFinder (0x7f8152c89460) 0 + +Class QDate + size=4 align=4 + base size=4 base align=4 +QDate (0x7f8152c9d7e0) 0 + +Class QTime + size=4 align=4 + base size=4 base align=4 +QTime (0x7f8152cc6770) 0 + +Class QDateTime + size=8 align=8 + base size=8 base align=8 +QDateTime (0x7f8152ce3d20) 0 + +Vtable for QTimeLine +QTimeLine::_ZTV9QTimeLine: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTimeLine) +16 QTimeLine::metaObject +24 QTimeLine::qt_metacast +32 QTimeLine::qt_metacall +40 QTimeLine::~QTimeLine +48 QTimeLine::~QTimeLine +56 QObject::event +64 QObject::eventFilter +72 QTimeLine::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTimeLine::valueForTime + +Class QTimeLine + size=16 align=8 + base size=16 base align=8 +QTimeLine (0x7f8152b181c0) 0 + vptr=((& QTimeLine::_ZTV9QTimeLine) + 16u) + QObject (0x7f8152b18230) 0 + primary-for QTimeLine (0x7f8152b181c0) + +Vtable for QRunnable +QRunnable::_ZTV9QRunnable: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QRunnable) +16 __cxa_pure_virtual +24 QRunnable::~QRunnable +32 QRunnable::~QRunnable + +Class QRunnable + size=16 align=8 + base size=12 base align=8 +QRunnable (0x7f8152b3f070) 0 + vptr=((& QRunnable::_ZTV9QRunnable) + 16u) + +Class QMutex + size=8 align=8 + base size=8 base align=8 +QMutex (0x7f8152b4c700) 0 + +Class QMutexLocker + size=8 align=8 + base size=8 base align=8 +QMutexLocker (0x7f8152b5b2a0) 0 + +Vtable for QtConcurrent::Exception +QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent9ExceptionE) +16 QtConcurrent::Exception::~Exception +24 QtConcurrent::Exception::~Exception +32 std::exception::what +40 QtConcurrent::Exception::raise +48 QtConcurrent::Exception::clone + +Class QtConcurrent::Exception + size=8 align=8 + base size=8 base align=8 +QtConcurrent::Exception (0x7f8152b715b0) 0 nearly-empty + vptr=((& QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE) + 16u) + std::exception (0x7f8152b71620) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7f8152b715b0) + +Vtable for QtConcurrent::UnhandledException +QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent18UnhandledExceptionE) +16 QtConcurrent::UnhandledException::~UnhandledException +24 QtConcurrent::UnhandledException::~UnhandledException +32 std::exception::what +40 QtConcurrent::UnhandledException::raise +48 QtConcurrent::UnhandledException::clone + +Class QtConcurrent::UnhandledException + size=8 align=8 + base size=8 base align=8 +QtConcurrent::UnhandledException (0x7f8152b71850) 0 nearly-empty + vptr=((& QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE) + 16u) + QtConcurrent::Exception (0x7f8152b718c0) 0 nearly-empty + primary-for QtConcurrent::UnhandledException (0x7f8152b71850) + std::exception (0x7f8152b71930) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7f8152b718c0) + +Class QtConcurrent::internal::ExceptionHolder + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionHolder (0x7f8152b71b60) 0 + +Class QtConcurrent::internal::ExceptionStore + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionStore (0x7f8152b71ee0) 0 + +Class QtConcurrent::ResultItem + size=16 align=8 + base size=16 base align=8 +QtConcurrent::ResultItem (0x7f8152b71f50) 0 + +Class QtConcurrent::ResultIteratorBase + size=16 align=8 + base size=12 base align=8 +QtConcurrent::ResultIteratorBase (0x7f8152b88e70) 0 + +Vtable for QtConcurrent::ResultStoreBase +QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent15ResultStoreBaseE) +16 QtConcurrent::ResultStoreBase::~ResultStoreBase +24 QtConcurrent::ResultStoreBase::~ResultStoreBase + +Class QtConcurrent::ResultStoreBase + size=48 align=8 + base size=44 base align=8 +QtConcurrent::ResultStoreBase (0x7f8152b8ca10) 0 + vptr=((& QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE) + 16u) + +Vtable for QFutureInterfaceBase +QFutureInterfaceBase::_ZTV20QFutureInterfaceBase: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QFutureInterfaceBase) +16 QFutureInterfaceBase::~QFutureInterfaceBase +24 QFutureInterfaceBase::~QFutureInterfaceBase + +Class QFutureInterfaceBase + size=16 align=8 + base size=16 base align=8 +QFutureInterfaceBase (0x7f8152bcde70) 0 + vptr=((& QFutureInterfaceBase::_ZTV20QFutureInterfaceBase) + 16u) + +Vtable for QThread +QThread::_ZTV7QThread: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QThread) +16 QThread::metaObject +24 QThread::qt_metacast +32 QThread::qt_metacall +40 QThread::~QThread +48 QThread::~QThread +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QThread::run + +Class QThread + size=16 align=8 + base size=16 base align=8 +QThread (0x7f8152ab1e00) 0 + vptr=((& QThread::_ZTV7QThread) + 16u) + QObject (0x7f8152ab1e70) 0 + primary-for QThread (0x7f8152ab1e00) + +Vtable for QThreadPool +QThreadPool::_ZTV11QThreadPool: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QThreadPool) +16 QThreadPool::metaObject +24 QThreadPool::qt_metacast +32 QThreadPool::qt_metacall +40 QThreadPool::~QThreadPool +48 QThreadPool::~QThreadPool +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QThreadPool + size=16 align=8 + base size=16 base align=8 +QThreadPool (0x7f8152ae3cb0) 0 + vptr=((& QThreadPool::_ZTV11QThreadPool) + 16u) + QObject (0x7f8152ae3d20) 0 + primary-for QThreadPool (0x7f8152ae3cb0) + +Class QWaitCondition + size=8 align=8 + base size=8 base align=8 +QWaitCondition (0x7f81528fd540) 0 + +Class QtConcurrent::ThreadEngineSemaphore + size=24 align=8 + base size=24 base align=8 +QtConcurrent::ThreadEngineSemaphore (0x7f81528fda80) 0 + +Vtable for QtConcurrent::ThreadEngineBase +QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent16ThreadEngineBaseE) +16 QtConcurrent::ThreadEngineBase::run +24 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +32 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +40 QtConcurrent::ThreadEngineBase::start +48 QtConcurrent::ThreadEngineBase::finish +56 QtConcurrent::ThreadEngineBase::threadFunction +64 QtConcurrent::ThreadEngineBase::shouldStartThread +72 QtConcurrent::ThreadEngineBase::shouldThrottleThread +80 __cxa_pure_virtual + +Class QtConcurrent::ThreadEngineBase + size=64 align=8 + base size=64 base align=8 +QtConcurrent::ThreadEngineBase (0x7f815291d460) 0 + vptr=((& QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE) + 16u) + QRunnable (0x7f815291d4d0) 0 + primary-for QtConcurrent::ThreadEngineBase (0x7f815291d460) + +VTT for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTTN12QtConcurrent12ThreadEngineIvEE: 2u entries +0 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 24u) +8 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 136u) + +Class std::input_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::input_iterator_tag (0x7f815295e850) 0 empty + +Class std::output_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::output_iterator_tag (0x7f815295e8c0) 0 empty + +Class std::forward_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::forward_iterator_tag (0x7f815295e930) 0 empty + std::input_iterator_tag (0x7f815295e9a0) 0 empty + +Class std::bidirectional_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::bidirectional_iterator_tag (0x7f815295ea10) 0 empty + std::forward_iterator_tag (0x7f815295ea80) 0 empty + std::input_iterator_tag (0x7f815295eaf0) 0 empty + +Class std::random_access_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::random_access_iterator_tag (0x7f815295eb60) 0 empty + std::bidirectional_iterator_tag (0x7f815295ebd0) 0 empty + std::forward_iterator_tag (0x7f815295ec40) 0 empty + std::input_iterator_tag (0x7f815295ecb0) 0 empty + +Class std::__true_type + size=1 align=1 + base size=0 base align=1 +std::__true_type (0x7f81529702a0) 0 empty + +Class std::__false_type + size=1 align=1 + base size=0 base align=1 +std::__false_type (0x7f8152970310) 0 empty + +Class lconv + size=96 align=8 + base size=96 base align=8 +lconv (0x7f815274b620) 0 + +Class sched_param + size=4 align=4 + base size=4 base align=4 +sched_param (0x7f815274ba80) 0 + +Class __sched_param + size=4 align=4 + base size=4 base align=4 +__sched_param (0x7f815274baf0) 0 + +Class tm + size=56 align=8 + base size=56 base align=8 +tm (0x7f815274bbd0) 0 + +Class itimerspec + size=32 align=8 + base size=32 base align=8 +itimerspec (0x7f815274bcb0) 0 + +Class _pthread_cleanup_buffer + size=32 align=8 + base size=32 base align=8 +_pthread_cleanup_buffer (0x7f815274bd20) 0 + +Class __pthread_cleanup_frame + size=24 align=8 + base size=24 base align=8 +__pthread_cleanup_frame (0x7f815274be70) 0 + +Class __pthread_cleanup_class + size=24 align=8 + base size=24 base align=8 +__pthread_cleanup_class (0x7f815274bee0) 0 + +Vtable for __cxxabiv1::__forced_unwind +__cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN10__cxxabiv115__forced_unwindE) +16 __cxxabiv1::__forced_unwind::~__forced_unwind +24 __cxxabiv1::__forced_unwind::~__forced_unwind +32 __cxa_pure_virtual + +Class __cxxabiv1::__forced_unwind + size=8 align=8 + base size=8 base align=8 +__cxxabiv1::__forced_unwind (0x7f8152661a80) 0 nearly-empty + vptr=((& __cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE) + 16u) + +Class std::locale + size=8 align=8 + base size=8 base align=8 +std::locale (0x7f81523145b0) 0 + +Vtable for std::locale::facet +std::locale::facet::_ZTVNSt6locale5facetE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTINSt6locale5facetE) +16 std::locale::facet::~facet +24 std::locale::facet::~facet + +Class std::locale::facet + size=16 align=8 + base size=12 base align=8 +std::locale::facet (0x7f81523b6cb0) 0 + vptr=((& std::locale::facet::_ZTVNSt6locale5facetE) + 16u) + +Class std::locale::id + size=8 align=8 + base size=8 base align=8 +std::locale::id (0x7f81523ca2a0) 0 + +Class std::locale::_Impl + size=40 align=8 + base size=40 base align=8 +std::locale::_Impl (0x7f81523ca8c0) 0 + +Vtable for std::ios_base::failure +std::ios_base::failure::_ZTVNSt8ios_base7failureE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTINSt8ios_base7failureE) +16 std::ios_base::failure::~failure +24 std::ios_base::failure::~failure +32 std::ios_base::failure::what + +Class std::ios_base::failure + size=16 align=8 + base size=16 base align=8 +std::ios_base::failure (0x7f8152257070) 0 + vptr=((& std::ios_base::failure::_ZTVNSt8ios_base7failureE) + 16u) + std::exception (0x7f81522570e0) 0 nearly-empty + primary-for std::ios_base::failure (0x7f8152257070) + +Class std::ios_base::_Callback_list + size=24 align=8 + base size=24 base align=8 +std::ios_base::_Callback_list (0x7f8152265310) 0 + +Class std::ios_base::_Words + size=16 align=8 + base size=16 base align=8 +std::ios_base::_Words (0x7f8152265d90) 0 + +Class std::ios_base::Init + size=1 align=1 + base size=0 base align=1 +std::ios_base::Init (0x7f815226d4d0) 0 empty + +Vtable for std::ios_base +std::ios_base::_ZTVSt8ios_base: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt8ios_base) +16 std::ios_base::~ios_base +24 std::ios_base::~ios_base + +Class std::ios_base + size=216 align=8 + base size=216 base align=8 +std::ios_base (0x7f8152257000) 0 + vptr=((& std::ios_base::_ZTVSt8ios_base) + 16u) + +Class std::ctype_base + size=1 align=1 + base size=0 base align=1 +std::ctype_base (0x7f81522e4930) 0 empty + +Class std::__num_base + size=1 align=1 + base size=0 base align=1 +std::__num_base (0x7f81520021c0) 0 empty + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSo: 2u entries +0 ((& std::basic_ostream >::_ZTVSo) + 24u) +8 ((& std::basic_ostream >::_ZTVSo) + 64u) + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSt13basic_ostreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 24u) +8 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 64u) + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSi: 2u entries +0 ((& std::basic_istream >::_ZTVSi) + 24u) +8 ((& std::basic_istream >::_ZTVSi) + 64u) + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSt13basic_istreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 24u) +8 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 64u) + +Construction vtable for std::basic_istream > (0x7f8151d36310 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd0_Si: 10u entries +0 24u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISi) +24 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +32 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +40 -24u +48 (int (*)(...))-0x00000000000000018 +56 (int (*)(...))(& _ZTISi) +64 std::basic_istream >::_ZTv0_n24_NSiD1Ev +72 std::basic_istream >::_ZTv0_n24_NSiD0Ev + +Construction vtable for std::basic_ostream > (0x7f8151d36460 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd16_So: 10u entries +0 8u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISo) +24 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +32 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +40 -8u +48 (int (*)(...))-0x00000000000000008 +56 (int (*)(...))(& _ZTISo) +64 std::basic_ostream >::_ZTv0_n24_NSoD1Ev +72 std::basic_ostream >::_ZTv0_n24_NSoD0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSd: 7u entries +0 ((& std::basic_iostream >::_ZTVSd) + 24u) +8 ((& std::basic_iostream >::_ZTCSd0_Si) + 24u) +16 ((& std::basic_iostream >::_ZTCSd0_Si) + 64u) +24 ((& std::basic_iostream >::_ZTCSd16_So) + 24u) +32 ((& std::basic_iostream >::_ZTCSd16_So) + 64u) +40 ((& std::basic_iostream >::_ZTVSd) + 104u) +48 ((& std::basic_iostream >::_ZTVSd) + 64u) + +Construction vtable for std::basic_istream > (0x7f8151d36620 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E: 10u entries +0 24u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +24 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +32 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +40 -24u +48 (int (*)(...))-0x00000000000000018 +56 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +64 std::basic_istream >::_ZTv0_n24_NSt13basic_istreamIwSt11char_traitsIwEED1Ev +72 std::basic_istream >::_ZTv0_n24_NSt13basic_istreamIwSt11char_traitsIwEED0Ev + +Construction vtable for std::basic_ostream > (0x7f8151d36770 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE16_St13basic_ostreamIwS1_E: 10u entries +0 8u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +24 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +32 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +40 -8u +48 (int (*)(...))-0x00000000000000008 +56 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +64 std::basic_ostream >::_ZTv0_n24_NSt13basic_ostreamIwSt11char_traitsIwEED1Ev +72 std::basic_ostream >::_ZTv0_n24_NSt13basic_ostreamIwSt11char_traitsIwEED0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSt14basic_iostreamIwSt11char_traitsIwEE: 7u entries +0 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 24u) +8 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 24u) +16 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 64u) +24 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE16_St13basic_ostreamIwS1_E) + 24u) +32 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE16_St13basic_ostreamIwS1_E) + 64u) +40 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 104u) +48 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 64u) + +Class QtConcurrent::BlockSizeManager + size=96 align=8 + base size=92 base align=8 +QtConcurrent::BlockSizeManager (0x7f8151da2230) 0 + +Vtable for QFutureWatcherBase +QFutureWatcherBase::_ZTV18QFutureWatcherBase: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFutureWatcherBase) +16 QFutureWatcherBase::metaObject +24 QFutureWatcherBase::qt_metacast +32 QFutureWatcherBase::qt_metacall +40 QFutureWatcherBase::~QFutureWatcherBase +48 QFutureWatcherBase::~QFutureWatcherBase +56 QFutureWatcherBase::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QFutureWatcherBase::connectNotify +104 QFutureWatcherBase::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QFutureWatcherBase + size=16 align=8 + base size=16 base align=8 +QFutureWatcherBase (0x7f815196abd0) 0 + vptr=((& QFutureWatcherBase::_ZTV18QFutureWatcherBase) + 16u) + QObject (0x7f815196ac40) 0 + primary-for QFutureWatcherBase (0x7f815196abd0) + +Vtable for QFactoryInterface +QFactoryInterface::_ZTV17QFactoryInterface: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QFactoryInterface) +16 QFactoryInterface::~QFactoryInterface +24 QFactoryInterface::~QFactoryInterface +32 __cxa_pure_virtual + +Class QFactoryInterface + size=8 align=8 + base size=8 base align=8 +QFactoryInterface (0x7f8151882e00) 0 nearly-empty + vptr=((& QFactoryInterface::_ZTV17QFactoryInterface) + 16u) + +Vtable for QTextCodecFactoryInterface +QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QTextCodecFactoryInterface) +16 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +24 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QTextCodecFactoryInterface + size=8 align=8 + base size=8 base align=8 +QTextCodecFactoryInterface (0x7f81518a6ee0) 0 nearly-empty + vptr=((& QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface) + 16u) + QFactoryInterface (0x7f81518a6f50) 0 nearly-empty + primary-for QTextCodecFactoryInterface (0x7f81518a6ee0) + +Vtable for QTextCodecPlugin +QTextCodecPlugin::_ZTV16QTextCodecPlugin: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QTextCodecPlugin) +16 QTextCodecPlugin::metaObject +24 QTextCodecPlugin::qt_metacast +32 QTextCodecPlugin::qt_metacall +40 QTextCodecPlugin::~QTextCodecPlugin +48 QTextCodecPlugin::~QTextCodecPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 QTextCodecPlugin::keys +160 QTextCodecPlugin::create +168 (int (*)(...))-0x00000000000000010 +176 (int (*)(...))(& _ZTI16QTextCodecPlugin) +184 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD1Ev +192 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD0Ev +200 QTextCodecPlugin::_ZThn16_NK16QTextCodecPlugin4keysEv +208 QTextCodecPlugin::_ZThn16_N16QTextCodecPlugin6createERK7QString + +Class QTextCodecPlugin + size=24 align=8 + base size=24 base align=8 +QTextCodecPlugin (0x7f81518a9e00) 0 + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 16u) + QObject (0x7f81518b07e0) 0 + primary-for QTextCodecPlugin (0x7f81518a9e00) + QTextCodecFactoryInterface (0x7f81518b0850) 16 nearly-empty + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 184u) + QFactoryInterface (0x7f81518b08c0) 16 nearly-empty + primary-for QTextCodecFactoryInterface (0x7f81518b0850) + +Class QLibraryInfo + size=1 align=1 + base size=0 base align=1 +QLibraryInfo (0x7f81518c7700) 0 empty + +Vtable for QTranslator +QTranslator::_ZTV11QTranslator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTranslator) +16 QTranslator::metaObject +24 QTranslator::qt_metacast +32 QTranslator::qt_metacall +40 QTranslator::~QTranslator +48 QTranslator::~QTranslator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTranslator::translate +120 QTranslator::isEmpty + +Class QTranslator + size=16 align=8 + base size=16 base align=8 +QTranslator (0x7f815170a000) 0 + vptr=((& QTranslator::_ZTV11QTranslator) + 16u) + QObject (0x7f815170a070) 0 + primary-for QTranslator (0x7f815170a000) + +Class __exception + size=40 align=8 + base size=40 base align=8 +__exception (0x7f815171cf50) 0 + +Vtable for QMimeData +QMimeData::_ZTV9QMimeData: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QMimeData) +16 QMimeData::metaObject +24 QMimeData::qt_metacast +32 QMimeData::qt_metacall +40 QMimeData::~QMimeData +48 QMimeData::~QMimeData +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMimeData::hasFormat +120 QMimeData::formats +128 QMimeData::retrieveData + +Class QMimeData + size=16 align=8 + base size=16 base align=8 +QMimeData (0x7f8151789150) 0 + vptr=((& QMimeData::_ZTV9QMimeData) + 16u) + QObject (0x7f81517891c0) 0 + primary-for QMimeData (0x7f8151789150) + +Vtable for QEventLoop +QEventLoop::_ZTV10QEventLoop: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QEventLoop) +16 QEventLoop::metaObject +24 QEventLoop::qt_metacast +32 QEventLoop::qt_metacall +40 QEventLoop::~QEventLoop +48 QEventLoop::~QEventLoop +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QEventLoop + size=16 align=8 + base size=16 base align=8 +QEventLoop (0x7f81517a19a0) 0 + vptr=((& QEventLoop::_ZTV10QEventLoop) + 16u) + QObject (0x7f81517a1a10) 0 + primary-for QEventLoop (0x7f81517a19a0) + +Vtable for QEvent +QEvent::_ZTV6QEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QEvent) +16 QEvent::~QEvent +24 QEvent::~QEvent + +Class QEvent + size=24 align=8 + base size=20 base align=8 +QEvent (0x7f81517e2310) 0 + vptr=((& QEvent::_ZTV6QEvent) + 16u) + +Vtable for QTimerEvent +QTimerEvent::_ZTV11QTimerEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTimerEvent) +16 QTimerEvent::~QTimerEvent +24 QTimerEvent::~QTimerEvent + +Class QTimerEvent + size=24 align=8 + base size=24 base align=8 +QTimerEvent (0x7f81515fbee0) 0 + vptr=((& QTimerEvent::_ZTV11QTimerEvent) + 16u) + QEvent (0x7f81515fbf50) 0 + primary-for QTimerEvent (0x7f81515fbee0) + +Vtable for QChildEvent +QChildEvent::_ZTV11QChildEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QChildEvent) +16 QChildEvent::~QChildEvent +24 QChildEvent::~QChildEvent + +Class QChildEvent + size=32 align=8 + base size=32 base align=8 +QChildEvent (0x7f81515fe380) 0 + vptr=((& QChildEvent::_ZTV11QChildEvent) + 16u) + QEvent (0x7f81515fe3f0) 0 + primary-for QChildEvent (0x7f81515fe380) + +Vtable for QCustomEvent +QCustomEvent::_ZTV12QCustomEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QCustomEvent) +16 QCustomEvent::~QCustomEvent +24 QCustomEvent::~QCustomEvent + +Class QCustomEvent + size=24 align=8 + base size=20 base align=8 +QCustomEvent (0x7f815160f620) 0 + vptr=((& QCustomEvent::_ZTV12QCustomEvent) + 16u) + QEvent (0x7f815160f690) 0 + primary-for QCustomEvent (0x7f815160f620) + +Vtable for QDynamicPropertyChangeEvent +QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QDynamicPropertyChangeEvent) +16 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent +24 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent + +Class QDynamicPropertyChangeEvent + size=32 align=8 + base size=32 base align=8 +QDynamicPropertyChangeEvent (0x7f815160fe00) 0 + vptr=((& QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent) + 16u) + QEvent (0x7f815160fe70) 0 + primary-for QDynamicPropertyChangeEvent (0x7f815160fe00) + +Vtable for QCoreApplication +QCoreApplication::_ZTV16QCoreApplication: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QCoreApplication) +16 QCoreApplication::metaObject +24 QCoreApplication::qt_metacast +32 QCoreApplication::qt_metacall +40 QCoreApplication::~QCoreApplication +48 QCoreApplication::~QCoreApplication +56 QCoreApplication::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCoreApplication::notify +120 QCoreApplication::compressEvent + +Class QCoreApplication + size=16 align=8 + base size=16 base align=8 +QCoreApplication (0x7f815161f230) 0 + vptr=((& QCoreApplication::_ZTV16QCoreApplication) + 16u) + QObject (0x7f815161f2a0) 0 + primary-for QCoreApplication (0x7f815161f230) + +Vtable for QSharedMemory +QSharedMemory::_ZTV13QSharedMemory: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSharedMemory) +16 QSharedMemory::metaObject +24 QSharedMemory::qt_metacast +32 QSharedMemory::qt_metacall +40 QSharedMemory::~QSharedMemory +48 QSharedMemory::~QSharedMemory +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSharedMemory + size=16 align=8 + base size=16 base align=8 +QSharedMemory (0x7f815164aa80) 0 + vptr=((& QSharedMemory::_ZTV13QSharedMemory) + 16u) + QObject (0x7f815164aaf0) 0 + primary-for QSharedMemory (0x7f815164aa80) + +Class QModelIndex + size=24 align=8 + base size=24 base align=8 +QModelIndex (0x7f8151669850) 0 + +Class QPersistentModelIndex + size=8 align=8 + base size=8 base align=8 +QPersistentModelIndex (0x7f8151692310) 0 + +Vtable for QAbstractItemModel +QAbstractItemModel::_ZTV18QAbstractItemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractItemModel) +16 QAbstractItemModel::metaObject +24 QAbstractItemModel::qt_metacast +32 QAbstractItemModel::qt_metacall +40 QAbstractItemModel::~QAbstractItemModel +48 QAbstractItemModel::~QAbstractItemModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractItemModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractItemModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractItemModel + size=16 align=8 + base size=16 base align=8 +QAbstractItemModel (0x7f81516a05b0) 0 + vptr=((& QAbstractItemModel::_ZTV18QAbstractItemModel) + 16u) + QObject (0x7f81516a0620) 0 + primary-for QAbstractItemModel (0x7f81516a05b0) + +Vtable for QAbstractTableModel +QAbstractTableModel::_ZTV19QAbstractTableModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractTableModel) +16 QAbstractTableModel::metaObject +24 QAbstractTableModel::qt_metacast +32 QAbstractTableModel::qt_metacall +40 QAbstractTableModel::~QAbstractTableModel +48 QAbstractTableModel::~QAbstractTableModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractTableModel::index +120 QAbstractTableModel::parent +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractTableModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractTableModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractTableModel + size=16 align=8 + base size=16 base align=8 +QAbstractTableModel (0x7f81514f1930) 0 + vptr=((& QAbstractTableModel::_ZTV19QAbstractTableModel) + 16u) + QAbstractItemModel (0x7f81514f19a0) 0 + primary-for QAbstractTableModel (0x7f81514f1930) + QObject (0x7f81514f1a10) 0 + primary-for QAbstractItemModel (0x7f81514f19a0) + +Vtable for QAbstractListModel +QAbstractListModel::_ZTV18QAbstractListModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractListModel) +16 QAbstractListModel::metaObject +24 QAbstractListModel::qt_metacast +32 QAbstractListModel::qt_metacall +40 QAbstractListModel::~QAbstractListModel +48 QAbstractListModel::~QAbstractListModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractListModel::index +120 QAbstractListModel::parent +128 __cxa_pure_virtual +136 QAbstractListModel::columnCount +144 QAbstractListModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractListModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractListModel + size=16 align=8 + base size=16 base align=8 +QAbstractListModel (0x7f81514feee0) 0 + vptr=((& QAbstractListModel::_ZTV18QAbstractListModel) + 16u) + QAbstractItemModel (0x7f81514fef50) 0 + primary-for QAbstractListModel (0x7f81514feee0) + QObject (0x7f81514fe230) 0 + primary-for QAbstractItemModel (0x7f81514fef50) + +Vtable for QSignalMapper +QSignalMapper::_ZTV13QSignalMapper: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSignalMapper) +16 QSignalMapper::metaObject +24 QSignalMapper::qt_metacast +32 QSignalMapper::qt_metacall +40 QSignalMapper::~QSignalMapper +48 QSignalMapper::~QSignalMapper +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSignalMapper + size=16 align=8 + base size=16 base align=8 +QSignalMapper (0x7f815153f000) 0 + vptr=((& QSignalMapper::_ZTV13QSignalMapper) + 16u) + QObject (0x7f815153f070) 0 + primary-for QSignalMapper (0x7f815153f000) + +Vtable for QObjectCleanupHandler +QObjectCleanupHandler::_ZTV21QObjectCleanupHandler: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QObjectCleanupHandler) +16 QObjectCleanupHandler::metaObject +24 QObjectCleanupHandler::qt_metacast +32 QObjectCleanupHandler::qt_metacall +40 QObjectCleanupHandler::~QObjectCleanupHandler +48 QObjectCleanupHandler::~QObjectCleanupHandler +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObjectCleanupHandler + size=24 align=8 + base size=24 base align=8 +QObjectCleanupHandler (0x7f81515593f0) 0 + vptr=((& QObjectCleanupHandler::_ZTV21QObjectCleanupHandler) + 16u) + QObject (0x7f8151559460) 0 + primary-for QObjectCleanupHandler (0x7f81515593f0) + +Class QBasicTimer + size=4 align=4 + base size=4 base align=4 +QBasicTimer (0x7f8151568540) 0 + +Vtable for QSocketNotifier +QSocketNotifier::_ZTV15QSocketNotifier: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSocketNotifier) +16 QSocketNotifier::metaObject +24 QSocketNotifier::qt_metacast +32 QSocketNotifier::qt_metacall +40 QSocketNotifier::~QSocketNotifier +48 QSocketNotifier::~QSocketNotifier +56 QSocketNotifier::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSocketNotifier + size=32 align=8 + base size=25 base align=8 +QSocketNotifier (0x7f8151574930) 0 + vptr=((& QSocketNotifier::_ZTV15QSocketNotifier) + 16u) + QObject (0x7f81515749a0) 0 + primary-for QSocketNotifier (0x7f8151574930) + +Vtable for QTimer +QTimer::_ZTV6QTimer: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QTimer) +16 QTimer::metaObject +24 QTimer::qt_metacast +32 QTimer::qt_metacall +40 QTimer::~QTimer +48 QTimer::~QTimer +56 QObject::event +64 QObject::eventFilter +72 QTimer::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTimer + size=32 align=8 + base size=29 base align=8 +QTimer (0x7f8151590cb0) 0 + vptr=((& QTimer::_ZTV6QTimer) + 16u) + QObject (0x7f8151590d20) 0 + primary-for QTimer (0x7f8151590cb0) + +Vtable for QAbstractEventDispatcher +QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QAbstractEventDispatcher) +16 QAbstractEventDispatcher::metaObject +24 QAbstractEventDispatcher::qt_metacast +32 QAbstractEventDispatcher::qt_metacall +40 QAbstractEventDispatcher::~QAbstractEventDispatcher +48 QAbstractEventDispatcher::~QAbstractEventDispatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 QAbstractEventDispatcher::startingUp +208 QAbstractEventDispatcher::closingDown + +Class QAbstractEventDispatcher + size=16 align=8 + base size=16 base align=8 +QAbstractEventDispatcher (0x7f81515b32a0) 0 + vptr=((& QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher) + 16u) + QObject (0x7f81515b3310) 0 + primary-for QAbstractEventDispatcher (0x7f81515b32a0) + +Class QMetaMethod + size=16 align=8 + base size=12 base align=8 +QMetaMethod (0x7f81515cc150) 0 + +Class QMetaEnum + size=16 align=8 + base size=12 base align=8 +QMetaEnum (0x7f81513e95b0) 0 + +Class QMetaProperty + size=32 align=8 + base size=32 base align=8 +QMetaProperty (0x7f81513f7310) 0 + +Class QMetaClassInfo + size=16 align=8 + base size=12 base align=8 +QMetaClassInfo (0x7f81513f79a0) 0 + +Class QSystemSemaphore + size=8 align=8 + base size=8 base align=8 +QSystemSemaphore (0x7f81514084d0) 0 + +Vtable for QLibrary +QLibrary::_ZTV8QLibrary: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QLibrary) +16 QLibrary::metaObject +24 QLibrary::qt_metacast +32 QLibrary::qt_metacall +40 QLibrary::~QLibrary +48 QLibrary::~QLibrary +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QLibrary + size=32 align=8 + base size=25 base align=8 +QLibrary (0x7f8151408e00) 0 + vptr=((& QLibrary::_ZTV8QLibrary) + 16u) + QObject (0x7f8151408e70) 0 + primary-for QLibrary (0x7f8151408e00) + +Vtable for QPluginLoader +QPluginLoader::_ZTV13QPluginLoader: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QPluginLoader) +16 QPluginLoader::metaObject +24 QPluginLoader::qt_metacast +32 QPluginLoader::qt_metacall +40 QPluginLoader::~QPluginLoader +48 QPluginLoader::~QPluginLoader +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QPluginLoader + size=32 align=8 + base size=25 base align=8 +QPluginLoader (0x7f815144d8c0) 0 + vptr=((& QPluginLoader::_ZTV13QPluginLoader) + 16u) + QObject (0x7f815144d930) 0 + primary-for QPluginLoader (0x7f815144d8c0) + +Class QUuid + size=16 align=4 + base size=16 base align=4 +QUuid (0x7f8151472070) 0 + +Class QSemaphore + size=8 align=8 + base size=8 base align=8 +QSemaphore (0x7f81514919a0) 0 + +Class QThreadStorageData + size=4 align=4 + base size=4 base align=4 +QThreadStorageData (0x7f8151491ee0) 0 + +Class QReadWriteLock + size=8 align=8 + base size=8 base align=8 +QReadWriteLock (0x7f81514a2690) 0 + +Class QReadLocker + size=8 align=8 + base size=8 base align=8 +QReadLocker (0x7f81514a2d20) 0 + +Class QWriteLocker + size=8 align=8 + base size=8 base align=8 +QWriteLocker (0x7f81514d00e0) 0 + +Class QSslCertificate + size=8 align=8 + base size=8 base align=8 +QSslCertificate (0x7f81514e3460) 0 + +Class QSslError + size=8 align=8 + base size=8 base align=8 +QSslError (0x7f81512f8ee0) 0 + +Class QSslCipher + size=8 align=8 + base size=8 base align=8 +QSslCipher (0x7f8151303cb0) 0 + +Vtable for QAbstractSocket +QAbstractSocket::_ZTV15QAbstractSocket: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QAbstractSocket) +16 QAbstractSocket::metaObject +24 QAbstractSocket::qt_metacast +32 QAbstractSocket::qt_metacall +40 QAbstractSocket::~QAbstractSocket +48 QAbstractSocket::~QAbstractSocket +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractSocket::isSequential +120 QIODevice::open +128 QAbstractSocket::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QAbstractSocket::atEnd +168 QIODevice::reset +176 QAbstractSocket::bytesAvailable +184 QAbstractSocket::bytesToWrite +192 QAbstractSocket::canReadLine +200 QAbstractSocket::waitForReadyRead +208 QAbstractSocket::waitForBytesWritten +216 QAbstractSocket::readData +224 QAbstractSocket::readLineData +232 QAbstractSocket::writeData + +Class QAbstractSocket + size=16 align=8 + base size=16 base align=8 +QAbstractSocket (0x7f815130e620) 0 + vptr=((& QAbstractSocket::_ZTV15QAbstractSocket) + 16u) + QIODevice (0x7f815130e690) 0 + primary-for QAbstractSocket (0x7f815130e620) + QObject (0x7f815130e700) 0 + primary-for QIODevice (0x7f815130e690) + +Vtable for QTcpSocket +QTcpSocket::_ZTV10QTcpSocket: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTcpSocket) +16 QTcpSocket::metaObject +24 QTcpSocket::qt_metacast +32 QTcpSocket::qt_metacall +40 QTcpSocket::~QTcpSocket +48 QTcpSocket::~QTcpSocket +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractSocket::isSequential +120 QIODevice::open +128 QAbstractSocket::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QAbstractSocket::atEnd +168 QIODevice::reset +176 QAbstractSocket::bytesAvailable +184 QAbstractSocket::bytesToWrite +192 QAbstractSocket::canReadLine +200 QAbstractSocket::waitForReadyRead +208 QAbstractSocket::waitForBytesWritten +216 QAbstractSocket::readData +224 QAbstractSocket::readLineData +232 QAbstractSocket::writeData + +Class QTcpSocket + size=16 align=8 + base size=16 base align=8 +QTcpSocket (0x7f8151349cb0) 0 + vptr=((& QTcpSocket::_ZTV10QTcpSocket) + 16u) + QAbstractSocket (0x7f8151349d20) 0 + primary-for QTcpSocket (0x7f8151349cb0) + QIODevice (0x7f8151349d90) 0 + primary-for QAbstractSocket (0x7f8151349d20) + QObject (0x7f8151349e00) 0 + primary-for QIODevice (0x7f8151349d90) + +Vtable for QSslSocket +QSslSocket::_ZTV10QSslSocket: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QSslSocket) +16 QSslSocket::metaObject +24 QSslSocket::qt_metacast +32 QSslSocket::qt_metacall +40 QSslSocket::~QSslSocket +48 QSslSocket::~QSslSocket +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractSocket::isSequential +120 QIODevice::open +128 QSslSocket::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QSslSocket::atEnd +168 QIODevice::reset +176 QSslSocket::bytesAvailable +184 QSslSocket::bytesToWrite +192 QSslSocket::canReadLine +200 QSslSocket::waitForReadyRead +208 QSslSocket::waitForBytesWritten +216 QSslSocket::readData +224 QAbstractSocket::readLineData +232 QSslSocket::writeData + +Class QSslSocket + size=16 align=8 + base size=16 base align=8 +QSslSocket (0x7f8151364770) 0 + vptr=((& QSslSocket::_ZTV10QSslSocket) + 16u) + QTcpSocket (0x7f81513647e0) 0 + primary-for QSslSocket (0x7f8151364770) + QAbstractSocket (0x7f8151364850) 0 + primary-for QTcpSocket (0x7f81513647e0) + QIODevice (0x7f81513648c0) 0 + primary-for QAbstractSocket (0x7f8151364850) + QObject (0x7f8151364930) 0 + primary-for QIODevice (0x7f81513648c0) + +Class QSslConfiguration + size=8 align=8 + base size=8 base align=8 +QSslConfiguration (0x7f81513994d0) 0 + +Class QSslKey + size=8 align=8 + base size=8 base align=8 +QSslKey (0x7f81513aa2a0) 0 + +Vtable for QHttpHeader +QHttpHeader::_ZTV11QHttpHeader: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QHttpHeader) +16 QHttpHeader::~QHttpHeader +24 QHttpHeader::~QHttpHeader +32 QHttpHeader::toString +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QHttpHeader::parseLine + +Class QHttpHeader + size=16 align=8 + base size=16 base align=8 +QHttpHeader (0x7f81513aae00) 0 + vptr=((& QHttpHeader::_ZTV11QHttpHeader) + 16u) + +Vtable for QHttpResponseHeader +QHttpResponseHeader::_ZTV19QHttpResponseHeader: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QHttpResponseHeader) +16 QHttpResponseHeader::~QHttpResponseHeader +24 QHttpResponseHeader::~QHttpResponseHeader +32 QHttpResponseHeader::toString +40 QHttpResponseHeader::majorVersion +48 QHttpResponseHeader::minorVersion +56 QHttpResponseHeader::parseLine + +Class QHttpResponseHeader + size=16 align=8 + base size=16 base align=8 +QHttpResponseHeader (0x7f81513c5a80) 0 + vptr=((& QHttpResponseHeader::_ZTV19QHttpResponseHeader) + 16u) + QHttpHeader (0x7f81513c5af0) 0 + primary-for QHttpResponseHeader (0x7f81513c5a80) + +Vtable for QHttpRequestHeader +QHttpRequestHeader::_ZTV18QHttpRequestHeader: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QHttpRequestHeader) +16 QHttpRequestHeader::~QHttpRequestHeader +24 QHttpRequestHeader::~QHttpRequestHeader +32 QHttpRequestHeader::toString +40 QHttpRequestHeader::majorVersion +48 QHttpRequestHeader::minorVersion +56 QHttpRequestHeader::parseLine + +Class QHttpRequestHeader + size=16 align=8 + base size=16 base align=8 +QHttpRequestHeader (0x7f81513d6770) 0 + vptr=((& QHttpRequestHeader::_ZTV18QHttpRequestHeader) + 16u) + QHttpHeader (0x7f81513d67e0) 0 + primary-for QHttpRequestHeader (0x7f81513d6770) + +Vtable for QHttp +QHttp::_ZTV5QHttp: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QHttp) +16 QHttp::metaObject +24 QHttp::qt_metacast +32 QHttp::qt_metacall +40 QHttp::~QHttp +48 QHttp::~QHttp +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QHttp + size=16 align=8 + base size=16 base align=8 +QHttp (0x7f81511e7310) 0 + vptr=((& QHttp::_ZTV5QHttp) + 16u) + QObject (0x7f81511e7380) 0 + primary-for QHttp (0x7f81511e7310) + +Class QNetworkRequest + size=8 align=8 + base size=8 base align=8 +QNetworkRequest (0x7f8151216540) 0 + +Vtable for QNetworkAccessManager +QNetworkAccessManager::_ZTV21QNetworkAccessManager: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QNetworkAccessManager) +16 QNetworkAccessManager::metaObject +24 QNetworkAccessManager::qt_metacast +32 QNetworkAccessManager::qt_metacall +40 QNetworkAccessManager::~QNetworkAccessManager +48 QNetworkAccessManager::~QNetworkAccessManager +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QNetworkAccessManager::createRequest + +Class QNetworkAccessManager + size=16 align=8 + base size=16 base align=8 +QNetworkAccessManager (0x7f8151230460) 0 + vptr=((& QNetworkAccessManager::_ZTV21QNetworkAccessManager) + 16u) + QObject (0x7f81512304d0) 0 + primary-for QNetworkAccessManager (0x7f8151230460) + +Class QNetworkCookie + size=8 align=8 + base size=8 base align=8 +QNetworkCookie (0x7f815124f9a0) 0 + +Vtable for QNetworkCookieJar +QNetworkCookieJar::_ZTV17QNetworkCookieJar: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QNetworkCookieJar) +16 QNetworkCookieJar::metaObject +24 QNetworkCookieJar::qt_metacast +32 QNetworkCookieJar::qt_metacall +40 QNetworkCookieJar::~QNetworkCookieJar +48 QNetworkCookieJar::~QNetworkCookieJar +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QNetworkCookieJar::cookiesForUrl +120 QNetworkCookieJar::setCookiesFromUrl + +Class QNetworkCookieJar + size=16 align=8 + base size=16 base align=8 +QNetworkCookieJar (0x7f8151254af0) 0 + vptr=((& QNetworkCookieJar::_ZTV17QNetworkCookieJar) + 16u) + QObject (0x7f8151254b60) 0 + primary-for QNetworkCookieJar (0x7f8151254af0) + +Vtable for QNetworkReply +QNetworkReply::_ZTV13QNetworkReply: 33u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QNetworkReply) +16 QNetworkReply::metaObject +24 QNetworkReply::qt_metacast +32 QNetworkReply::qt_metacall +40 QNetworkReply::~QNetworkReply +48 QNetworkReply::~QNetworkReply +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QNetworkReply::isSequential +120 QIODevice::open +128 QNetworkReply::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QIODevice::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 __cxa_pure_virtual +224 QIODevice::readLineData +232 QNetworkReply::writeData +240 __cxa_pure_virtual +248 QNetworkReply::setReadBufferSize +256 QNetworkReply::ignoreSslErrors + +Class QNetworkReply + size=16 align=8 + base size=16 base align=8 +QNetworkReply (0x7f81512849a0) 0 + vptr=((& QNetworkReply::_ZTV13QNetworkReply) + 16u) + QIODevice (0x7f8151284a10) 0 + primary-for QNetworkReply (0x7f81512849a0) + QObject (0x7f8151284a80) 0 + primary-for QIODevice (0x7f8151284a10) + +Vtable for QUrlInfo +QUrlInfo::_ZTV8QUrlInfo: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QUrlInfo) +16 QUrlInfo::~QUrlInfo +24 QUrlInfo::~QUrlInfo +32 QUrlInfo::setName +40 QUrlInfo::setDir +48 QUrlInfo::setFile +56 QUrlInfo::setSymLink +64 QUrlInfo::setOwner +72 QUrlInfo::setGroup +80 QUrlInfo::setSize +88 QUrlInfo::setWritable +96 QUrlInfo::setReadable +104 QUrlInfo::setPermissions +112 QUrlInfo::setLastModified + +Class QUrlInfo + size=16 align=8 + base size=16 base align=8 +QUrlInfo (0x7f81512b0620) 0 + vptr=((& QUrlInfo::_ZTV8QUrlInfo) + 16u) + +Vtable for QFtp +QFtp::_ZTV4QFtp: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI4QFtp) +16 QFtp::metaObject +24 QFtp::qt_metacast +32 QFtp::qt_metacall +40 QFtp::~QFtp +48 QFtp::~QFtp +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QFtp + size=16 align=8 + base size=16 base align=8 +QFtp (0x7f81512c25b0) 0 + vptr=((& QFtp::_ZTV4QFtp) + 16u) + QObject (0x7f81512c2620) 0 + primary-for QFtp (0x7f81512c25b0) + +Class QNetworkCacheMetaData + size=8 align=8 + base size=8 base align=8 +QNetworkCacheMetaData (0x7f81510eebd0) 0 + +Vtable for QAbstractNetworkCache +QAbstractNetworkCache::_ZTV21QAbstractNetworkCache: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QAbstractNetworkCache) +16 QAbstractNetworkCache::metaObject +24 QAbstractNetworkCache::qt_metacast +32 QAbstractNetworkCache::qt_metacall +40 QAbstractNetworkCache::~QAbstractNetworkCache +48 QAbstractNetworkCache::~QAbstractNetworkCache +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QAbstractNetworkCache + size=16 align=8 + base size=16 base align=8 +QAbstractNetworkCache (0x7f81510f4ee0) 0 + vptr=((& QAbstractNetworkCache::_ZTV21QAbstractNetworkCache) + 16u) + QObject (0x7f81510f4f50) 0 + primary-for QAbstractNetworkCache (0x7f81510f4ee0) + +Vtable for QNetworkDiskCache +QNetworkDiskCache::_ZTV17QNetworkDiskCache: 23u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QNetworkDiskCache) +16 QNetworkDiskCache::metaObject +24 QNetworkDiskCache::qt_metacast +32 QNetworkDiskCache::qt_metacall +40 QNetworkDiskCache::~QNetworkDiskCache +48 QNetworkDiskCache::~QNetworkDiskCache +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QNetworkDiskCache::metaData +120 QNetworkDiskCache::updateMetaData +128 QNetworkDiskCache::data +136 QNetworkDiskCache::remove +144 QNetworkDiskCache::cacheSize +152 QNetworkDiskCache::prepare +160 QNetworkDiskCache::insert +168 QNetworkDiskCache::clear +176 QNetworkDiskCache::expire + +Class QNetworkDiskCache + size=16 align=8 + base size=16 base align=8 +QNetworkDiskCache (0x7f815111e850) 0 + vptr=((& QNetworkDiskCache::_ZTV17QNetworkDiskCache) + 16u) + QAbstractNetworkCache (0x7f815111e8c0) 0 + primary-for QNetworkDiskCache (0x7f815111e850) + QObject (0x7f815111e930) 0 + primary-for QAbstractNetworkCache (0x7f815111e8c0) + +Class QIPv6Address + size=16 align=1 + base size=16 base align=1 +QIPv6Address (0x7f815113c1c0) 0 + +Class QHostAddress + size=8 align=8 + base size=8 base align=8 +QHostAddress (0x7f815113c7e0) 0 + +Class QNetworkAddressEntry + size=8 align=8 + base size=8 base align=8 +QNetworkAddressEntry (0x7f8151164770) 0 + +Class QNetworkInterface + size=8 align=8 + base size=8 base align=8 +QNetworkInterface (0x7f8151175000) 0 + +Class QAuthenticator + size=8 align=8 + base size=8 base align=8 +QAuthenticator (0x7f81511a2d20) 0 + +Class QHostInfo + size=8 align=8 + base size=8 base align=8 +QHostInfo (0x7f81511b2620) 0 + +Class QNetworkProxyQuery + size=8 align=8 + base size=8 base align=8 +QNetworkProxyQuery (0x7f81511b2e70) 0 + +Class QNetworkProxy + size=8 align=8 + base size=8 base align=8 +QNetworkProxy (0x7f81511df150) 0 + +Vtable for QNetworkProxyFactory +QNetworkProxyFactory::_ZTV20QNetworkProxyFactory: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QNetworkProxyFactory) +16 QNetworkProxyFactory::~QNetworkProxyFactory +24 QNetworkProxyFactory::~QNetworkProxyFactory +32 __cxa_pure_virtual + +Class QNetworkProxyFactory + size=8 align=8 + base size=8 base align=8 +QNetworkProxyFactory (0x7f81510245b0) 0 nearly-empty + vptr=((& QNetworkProxyFactory::_ZTV20QNetworkProxyFactory) + 16u) + +Vtable for QLocalServer +QLocalServer::_ZTV12QLocalServer: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QLocalServer) +16 QLocalServer::metaObject +24 QLocalServer::qt_metacast +32 QLocalServer::qt_metacall +40 QLocalServer::~QLocalServer +48 QLocalServer::~QLocalServer +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QLocalServer::hasPendingConnections +120 QLocalServer::nextPendingConnection +128 QLocalServer::incomingConnection + +Class QLocalServer + size=16 align=8 + base size=16 base align=8 +QLocalServer (0x7f81510248c0) 0 + vptr=((& QLocalServer::_ZTV12QLocalServer) + 16u) + QObject (0x7f8151024930) 0 + primary-for QLocalServer (0x7f81510248c0) + +Vtable for QLocalSocket +QLocalSocket::_ZTV12QLocalSocket: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QLocalSocket) +16 QLocalSocket::metaObject +24 QLocalSocket::qt_metacast +32 QLocalSocket::qt_metacall +40 QLocalSocket::~QLocalSocket +48 QLocalSocket::~QLocalSocket +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QLocalSocket::isSequential +120 QIODevice::open +128 QLocalSocket::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QIODevice::atEnd +168 QIODevice::reset +176 QLocalSocket::bytesAvailable +184 QLocalSocket::bytesToWrite +192 QLocalSocket::canReadLine +200 QLocalSocket::waitForReadyRead +208 QLocalSocket::waitForBytesWritten +216 QLocalSocket::readData +224 QIODevice::readLineData +232 QLocalSocket::writeData + +Class QLocalSocket + size=16 align=8 + base size=16 base align=8 +QLocalSocket (0x7f81510442a0) 0 + vptr=((& QLocalSocket::_ZTV12QLocalSocket) + 16u) + QIODevice (0x7f8151044310) 0 + primary-for QLocalSocket (0x7f81510442a0) + QObject (0x7f8151044380) 0 + primary-for QIODevice (0x7f8151044310) + +Vtable for QTcpServer +QTcpServer::_ZTV10QTcpServer: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTcpServer) +16 QTcpServer::metaObject +24 QTcpServer::qt_metacast +32 QTcpServer::qt_metacall +40 QTcpServer::~QTcpServer +48 QTcpServer::~QTcpServer +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTcpServer::hasPendingConnections +120 QTcpServer::nextPendingConnection +128 QTcpServer::incomingConnection + +Class QTcpServer + size=16 align=8 + base size=16 base align=8 +QTcpServer (0x7f8151066460) 0 + vptr=((& QTcpServer::_ZTV10QTcpServer) + 16u) + QObject (0x7f81510664d0) 0 + primary-for QTcpServer (0x7f8151066460) + +Vtable for QUdpSocket +QUdpSocket::_ZTV10QUdpSocket: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QUdpSocket) +16 QUdpSocket::metaObject +24 QUdpSocket::qt_metacast +32 QUdpSocket::qt_metacall +40 QUdpSocket::~QUdpSocket +48 QUdpSocket::~QUdpSocket +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractSocket::isSequential +120 QIODevice::open +128 QAbstractSocket::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QAbstractSocket::atEnd +168 QIODevice::reset +176 QAbstractSocket::bytesAvailable +184 QAbstractSocket::bytesToWrite +192 QAbstractSocket::canReadLine +200 QAbstractSocket::waitForReadyRead +208 QAbstractSocket::waitForBytesWritten +216 QAbstractSocket::readData +224 QAbstractSocket::readLineData +232 QAbstractSocket::writeData + +Class QUdpSocket + size=16 align=8 + base size=16 base align=8 +QUdpSocket (0x7f815107cf50) 0 + vptr=((& QUdpSocket::_ZTV10QUdpSocket) + 16u) + QAbstractSocket (0x7f8151082000) 0 + primary-for QUdpSocket (0x7f815107cf50) + QIODevice (0x7f8151082070) 0 + primary-for QAbstractSocket (0x7f8151082000) + QObject (0x7f81510820e0) 0 + primary-for QIODevice (0x7f8151082070) + +Vtable for QPaintDevice +QPaintDevice::_ZTV12QPaintDevice: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QPaintDevice) +16 QPaintDevice::~QPaintDevice +24 QPaintDevice::~QPaintDevice +32 QPaintDevice::devType +40 __cxa_pure_virtual +48 QPaintDevice::metric + +Class QPaintDevice + size=16 align=8 + base size=10 base align=8 +QPaintDevice (0x7f81510b6cb0) 0 + vptr=((& QPaintDevice::_ZTV12QPaintDevice) + 16u) + +Class QColor + size=16 align=4 + base size=14 base align=4 +QColor (0x7f8150efd070) 0 + +Class QPolygon + size=8 align=8 + base size=8 base align=8 +QPolygon (0x7f8150f4e460) 0 + QVector (0x7f8150f4e4d0) 0 + +Class QPolygonF + size=8 align=8 + base size=8 base align=8 +QPolygonF (0x7f8150f8f5b0) 0 + QVector (0x7f8150f8f620) 0 + +Class QRegion::QRegionData + size=32 align=8 + base size=32 base align=8 +QRegion::QRegionData (0x7f8150d67b60) 0 + +Class QRegion + size=8 align=8 + base size=8 base align=8 +QRegion (0x7f8150fd3230) 0 + +Class QMatrix + size=48 align=8 + base size=48 base align=8 +QMatrix (0x7f8150d83380) 0 + +Class QPainterPath::Element + size=24 align=8 + base size=24 base align=8 +QPainterPath::Element (0x7f8150db0d90) 0 + +Class QPainterPath + size=8 align=8 + base size=8 base align=8 +QPainterPath (0x7f8150db0d20) 0 + +Class QPainterPathPrivate + size=16 align=8 + base size=16 base align=8 +QPainterPathPrivate (0x7f8150dfc150) 0 + +Class QPainterPathStroker + size=8 align=8 + base size=8 base align=8 +QPainterPathStroker (0x7f8150dfccb0) 0 + +Class QTransform + size=88 align=8 + base size=88 base align=8 +QTransform (0x7f8150e5b850) 0 + +Class QImageTextKeyLang + size=16 align=8 + base size=16 base align=8 +QImageTextKeyLang (0x7f8150cdab60) 0 + +Vtable for QImage +QImage::_ZTV6QImage: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QImage) +16 QImage::~QImage +24 QImage::~QImage +32 QImage::devType +40 QImage::paintEngine +48 QImage::metric + +Class QImage + size=24 align=8 + base size=24 base align=8 +QImage (0x7f8150d2c3f0) 0 + vptr=((& QImage::_ZTV6QImage) + 16u) + QPaintDevice (0x7f8150d2c460) 0 + primary-for QImage (0x7f8150d2c3f0) + +Vtable for QPixmap +QPixmap::_ZTV7QPixmap: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QPixmap) +16 QPixmap::~QPixmap +24 QPixmap::~QPixmap +32 QPixmap::devType +40 QPixmap::paintEngine +48 QPixmap::metric + +Class QPixmap + size=24 align=8 + base size=24 base align=8 +QPixmap (0x7f8150ba1e00) 0 + vptr=((& QPixmap::_ZTV7QPixmap) + 16u) + QPaintDevice (0x7f8150ba1e70) 0 + primary-for QPixmap (0x7f8150ba1e00) + +Class QIcon + size=8 align=8 + base size=8 base align=8 +QIcon (0x7f8150c08000) 0 + +Class QScriptValue + size=8 align=8 + base size=8 base align=8 +QScriptValue (0x7f8150c29b60) 0 + +Class QScriptContext + size=8 align=8 + base size=8 base align=8 +QScriptContext (0x7f8150ad5a10) 0 + +Class QScriptString + size=8 align=8 + base size=8 base align=8 +QScriptString (0x7f8150aef770) 0 + +Class QScriptSyntaxCheckResult + size=8 align=8 + base size=8 base align=8 +QScriptSyntaxCheckResult (0x7f8150afa380) 0 + +Vtable for QScriptEngine +QScriptEngine::_ZTV13QScriptEngine: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QScriptEngine) +16 QScriptEngine::metaObject +24 QScriptEngine::qt_metacast +32 QScriptEngine::qt_metacall +40 QScriptEngine::~QScriptEngine +48 QScriptEngine::~QScriptEngine +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QScriptEngine + size=16 align=8 + base size=16 base align=8 +QScriptEngine (0x7f8150afaee0) 0 + vptr=((& QScriptEngine::_ZTV13QScriptEngine) + 16u) + QObject (0x7f8150afaf50) 0 + primary-for QScriptEngine (0x7f8150afaee0) + +Class QWebHitTestResult + size=8 align=8 + base size=8 base align=8 +QWebHitTestResult (0x7f8150971770) 0 + +Vtable for QWebFrame +QWebFrame::_ZTV9QWebFrame: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QWebFrame) +16 QWebFrame::metaObject +24 QWebFrame::qt_metacast +32 QWebFrame::qt_metacall +40 QWebFrame::~QWebFrame +48 QWebFrame::~QWebFrame +56 QWebFrame::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QWebFrame + size=24 align=8 + base size=24 base align=8 +QWebFrame (0x7f8150971d20) 0 + vptr=((& QWebFrame::_ZTV9QWebFrame) + 16u) + QObject (0x7f8150971d90) 0 + primary-for QWebFrame (0x7f8150971d20) + +Class QWebSettings + size=8 align=8 + base size=8 base align=8 +QWebSettings (0x7f81509ad770) 0 + +Class QWebDatabase + size=8 align=8 + base size=8 base align=8 +QWebDatabase (0x7f81509be5b0) 0 + +Vtable for QWebHistoryInterface +QWebHistoryInterface::_ZTV20QWebHistoryInterface: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QWebHistoryInterface) +16 QWebHistoryInterface::metaObject +24 QWebHistoryInterface::qt_metacast +32 QWebHistoryInterface::qt_metacall +40 QWebHistoryInterface::~QWebHistoryInterface +48 QWebHistoryInterface::~QWebHistoryInterface +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QWebHistoryInterface + size=16 align=8 + base size=16 base align=8 +QWebHistoryInterface (0x7f81509becb0) 0 + vptr=((& QWebHistoryInterface::_ZTV20QWebHistoryInterface) + 16u) + QObject (0x7f81509bed20) 0 + primary-for QWebHistoryInterface (0x7f81509becb0) + +Class QWebSecurityOrigin + size=8 align=8 + base size=8 base align=8 +QWebSecurityOrigin (0x7f81509dad90) 0 + +Class QBrush + size=8 align=8 + base size=8 base align=8 +QBrush (0x7f81509e7770) 0 + +Class QBrushData + size=112 align=8 + base size=112 base align=8 +QBrushData (0x7f8150a13310) 0 + +Class QGradient + size=64 align=8 + base size=64 base align=8 +QGradient (0x7f8150a1c4d0) 0 + +Class QLinearGradient + size=64 align=8 + base size=64 base align=8 +QLinearGradient (0x7f8150a323f0) 0 + QGradient (0x7f8150a5a000) 0 + +Class QRadialGradient + size=64 align=8 + base size=64 base align=8 +QRadialGradient (0x7f8150a5a460) 0 + QGradient (0x7f8150a5a4d0) 0 + +Class QConicalGradient + size=64 align=8 + base size=64 base align=8 +QConicalGradient (0x7f8150a5aa10) 0 + QGradient (0x7f8150a5aa80) 0 + +Class QPalette + size=16 align=8 + base size=12 base align=8 +QPalette (0x7f8150a5ad90) 0 + +Class QColorGroup + size=16 align=8 + base size=12 base align=8 +QColorGroup (0x7f81508bd700) 0 + QPalette (0x7f81508bd770) 0 + +Class QFont + size=16 align=8 + base size=12 base align=8 +QFont (0x7f81508f5a10) 0 + +Class QFontMetrics + size=8 align=8 + base size=8 base align=8 +QFontMetrics (0x7f815092f690) 0 + +Class QFontMetricsF + size=8 align=8 + base size=8 base align=8 +QFontMetricsF (0x7f8150942af0) 0 + +Class QFontInfo + size=8 align=8 + base size=8 base align=8 +QFontInfo (0x7f8150952a10) 0 + +Class QSizePolicy + size=4 align=4 + base size=4 base align=4 +QSizePolicy (0x7f8150763540) 0 + +Class QCursor + size=8 align=8 + base size=8 base align=8 +QCursor (0x7f81508392a0) 0 + +Class QKeySequence + size=8 align=8 + base size=8 base align=8 +QKeySequence (0x7f8150839a80) 0 + +Class QWidgetData + size=88 align=8 + base size=88 base align=8 +QWidgetData (0x7f815067e690) 0 + +Vtable for QWidget +QWidget::_ZTV7QWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QWidget) +16 QWidget::metaObject +24 QWidget::qt_metacast +32 QWidget::qt_metacall +40 QWidget::~QWidget +48 QWidget::~QWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI7QWidget) +464 QWidget::_ZThn16_N7QWidgetD1Ev +472 QWidget::_ZThn16_N7QWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWidget + size=40 align=8 + base size=40 base align=8 +QWidget (0x7f8150682500) 0 + vptr=((& QWidget::_ZTV7QWidget) + 16u) + QObject (0x7f815067e700) 0 + primary-for QWidget (0x7f8150682500) + QPaintDevice (0x7f815067e770) 16 + vptr=((& QWidget::_ZTV7QWidget) + 464u) + +Class QWebPage::ExtensionOption + size=1 align=1 + base size=0 base align=1 +QWebPage::ExtensionOption (0x7f81505f7e00) 0 empty + +Class QWebPage::ExtensionReturn + size=1 align=1 + base size=0 base align=1 +QWebPage::ExtensionReturn (0x7f81505f7e70) 0 empty + +Class QWebPage::ChooseMultipleFilesExtensionOption + size=16 align=8 + base size=16 base align=8 +QWebPage::ChooseMultipleFilesExtensionOption (0x7f81505f7ee0) 0 + QWebPage::ExtensionOption (0x7f81505f7f50) 0 empty + +Class QWebPage::ChooseMultipleFilesExtensionReturn + size=8 align=8 + base size=8 base align=8 +QWebPage::ChooseMultipleFilesExtensionReturn (0x7f8150616000) 0 + QWebPage::ExtensionReturn (0x7f8150616070) 0 empty + +Vtable for QWebPage +QWebPage::_ZTV8QWebPage: 26u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QWebPage) +16 QWebPage::metaObject +24 QWebPage::qt_metacast +32 QWebPage::qt_metacall +40 QWebPage::~QWebPage +48 QWebPage::~QWebPage +56 QWebPage::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWebPage::triggerAction +120 QWebPage::extension +128 QWebPage::supportsExtension +136 QWebPage::createWindow +144 QWebPage::createPlugin +152 QWebPage::acceptNavigationRequest +160 QWebPage::chooseFile +168 QWebPage::javaScriptAlert +176 QWebPage::javaScriptConfirm +184 QWebPage::javaScriptPrompt +192 QWebPage::javaScriptConsoleMessage +200 QWebPage::userAgentForUrl + +Class QWebPage + size=24 align=8 + base size=24 base align=8 +QWebPage (0x7f81505f74d0) 0 + vptr=((& QWebPage::_ZTV8QWebPage) + 16u) + QObject (0x7f81505f7540) 0 + primary-for QWebPage (0x7f81505f74d0) + +Vtable for QWebView +QWebView::_ZTV8QWebView: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QWebView) +16 QWebView::metaObject +24 QWebView::qt_metacast +32 QWebView::qt_metacall +40 QWebView::~QWebView +48 QWebView::~QWebView +56 QWebView::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWebView::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWebView::mousePressEvent +168 QWebView::mouseReleaseEvent +176 QWebView::mouseDoubleClickEvent +184 QWebView::mouseMoveEvent +192 QWebView::wheelEvent +200 QWebView::keyPressEvent +208 QWebView::keyReleaseEvent +216 QWebView::focusInEvent +224 QWebView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWebView::paintEvent +256 QWidget::moveEvent +264 QWebView::resizeEvent +272 QWidget::closeEvent +280 QWebView::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWebView::dragEnterEvent +312 QWebView::dragMoveEvent +320 QWebView::dragLeaveEvent +328 QWebView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWebView::changeEvent +368 QWidget::metric +376 QWebView::inputMethodEvent +384 QWebView::inputMethodQuery +392 QWebView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QWebView::createWindow +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI8QWebView) +472 QWebView::_ZThn16_N8QWebViewD1Ev +480 QWebView::_ZThn16_N8QWebViewD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWebView + size=48 align=8 + base size=48 base align=8 +QWebView (0x7f815045e230) 0 + vptr=((& QWebView::_ZTV8QWebView) + 16u) + QWidget (0x7f815045b180) 0 + primary-for QWebView (0x7f815045e230) + QObject (0x7f815045e2a0) 0 + primary-for QWidget (0x7f815045b180) + QPaintDevice (0x7f815045e310) 16 + vptr=((& QWebView::_ZTV8QWebView) + 472u) + +Class QWebPluginFactory::MimeType + size=24 align=8 + base size=24 base align=8 +QWebPluginFactory::MimeType (0x7f815047fa10) 0 + +Class QWebPluginFactory::Plugin + size=24 align=8 + base size=24 base align=8 +QWebPluginFactory::Plugin (0x7f815047fa80) 0 + +Class QWebPluginFactory::ExtensionOption + size=1 align=1 + base size=0 base align=1 +QWebPluginFactory::ExtensionOption (0x7f815048b8c0) 0 empty + +Class QWebPluginFactory::ExtensionReturn + size=1 align=1 + base size=0 base align=1 +QWebPluginFactory::ExtensionReturn (0x7f815048b930) 0 empty + +Vtable for QWebPluginFactory +QWebPluginFactory::_ZTV17QWebPluginFactory: 19u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QWebPluginFactory) +16 QWebPluginFactory::metaObject +24 QWebPluginFactory::qt_metacast +32 QWebPluginFactory::qt_metacall +40 QWebPluginFactory::~QWebPluginFactory +48 QWebPluginFactory::~QWebPluginFactory +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 QWebPluginFactory::refreshPlugins +128 __cxa_pure_virtual +136 QWebPluginFactory::extension +144 QWebPluginFactory::supportsExtension + +Class QWebPluginFactory + size=24 align=8 + base size=24 base align=8 +QWebPluginFactory (0x7f815047f8c0) 0 + vptr=((& QWebPluginFactory::_ZTV17QWebPluginFactory) + 16u) + QObject (0x7f815047f930) 0 + primary-for QWebPluginFactory (0x7f815047f8c0) + +Class QWebHistoryItem + size=8 align=8 + base size=8 base align=8 +QWebHistoryItem (0x7f81504bb770) 0 + +Class QWebHistory + size=8 align=8 + base size=8 base align=8 +QWebHistory (0x7f81504bbd90) 0 + diff --git a/tests/auto/bic/data/QtWebKit.4.6.0.linux-gcc-amd64.txt b/tests/auto/bic/data/QtWebKit.4.6.0.linux-gcc-amd64.txt new file mode 100644 index 0000000..96f0d81 --- /dev/null +++ b/tests/auto/bic/data/QtWebKit.4.6.0.linux-gcc-amd64.txt @@ -0,0 +1,5837 @@ +Class QSysInfo + size=1 align=1 + base size=0 base align=1 +QSysInfo (0x7f9ac59c7230) 0 empty + +Class QBool + size=1 align=1 + base size=1 base align=1 +QBool (0x7f9ac59c7e70) 0 + +Class qIsNull(double)::U + size=8 align=8 + base size=8 base align=8 +qIsNull(double)::U (0x7f9ac59f7540) 0 + +Class qIsNull(float)::U + size=4 align=4 + base size=4 base align=4 +qIsNull(float)::U (0x7f9ac59f77e0) 0 + +Class QFlag + size=4 align=4 + base size=4 base align=4 +QFlag (0x7f9ac5a2f690) 0 + +Class QIncompatibleFlag + size=4 align=4 + base size=4 base align=4 +QIncompatibleFlag (0x7f9ac5a2fe70) 0 + +Class QLatin1Char + size=1 align=1 + base size=1 base align=1 +QLatin1Char (0x7f9ac5a5d5b0) 0 + +Class QChar + size=2 align=2 + base size=2 base align=2 +QChar (0x7f9ac5080150) 0 + +Class QBasicAtomicInt + size=4 align=4 + base size=4 base align=4 +QBasicAtomicInt (0x7f9ac50eb310) 0 + +Class QAtomicInt + size=4 align=4 + base size=4 base align=4 +QAtomicInt (0x7f9ac5128cb0) 0 + QBasicAtomicInt (0x7f9ac5128d20) 0 + +Class QInternal + size=1 align=1 + base size=0 base align=1 +QInternal (0x7f9ac4d794d0) 0 empty + +Class __locale_struct + size=232 align=8 + base size=232 base align=8 +__locale_struct (0x7f9ac4d79700) 0 + +Class QByteArray::Data + size=32 align=8 + base size=32 base align=8 +QByteArray::Data (0x7f9ac4db5af0) 0 + +Class QByteArray + size=8 align=8 + base size=8 base align=8 +QByteArray (0x7f9ac4db5a80) 0 + +Class QByteRef + size=16 align=8 + base size=12 base align=8 +QByteRef (0x7f9ac4e58380) 0 + +Class QString::Null + size=1 align=1 + base size=0 base align=1 +QString::Null (0x7f9ac4d59d20) 0 empty + +Class QString::Data + size=32 align=8 + base size=32 base align=8 +QString::Data (0x7f9ac4b715b0) 0 + +Class QString + size=8 align=8 + base size=8 base align=8 +QString (0x7f9ac4cd2bd0) 0 + +Class QLatin1String + size=8 align=8 + base size=8 base align=8 +QLatin1String (0x7f9ac4c499a0) 0 + +Class QCharRef + size=16 align=8 + base size=12 base align=8 +QCharRef (0x7f9ac4ae8000) 0 + +Class QConstString + size=8 align=8 + base size=8 base align=8 +QConstString (0x7f9ac4a318c0) 0 + QString (0x7f9ac4a31930) 0 + +Class QStringRef + size=16 align=8 + base size=16 base align=8 +QStringRef (0x7f9ac4a57310) 0 + +Class QGenericArgument + size=16 align=8 + base size=16 base align=8 +QGenericArgument (0x7f9ac48d0700) 0 + +Class QGenericReturnArgument + size=16 align=8 + base size=16 base align=8 +QGenericReturnArgument (0x7f9ac48da2a0) 0 + QGenericArgument (0x7f9ac48da310) 0 + +Class QMetaObject + size=32 align=8 + base size=32 base align=8 +QMetaObject (0x7f9ac48dab60) 0 + +Class QMetaObjectExtraData + size=16 align=8 + base size=16 base align=8 +QMetaObjectExtraData (0x7f9ac4902bd0) 0 + +Vtable for std::exception +std::exception::_ZTVSt9exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9exception) +16 std::exception::~exception +24 std::exception::~exception +32 std::exception::what + +Class std::exception + size=8 align=8 + base size=8 base align=8 +std::exception (0x7f9ac49571c0) 0 nearly-empty + vptr=((& std::exception::_ZTVSt9exception) + 16u) + +Vtable for std::bad_exception +std::bad_exception::_ZTVSt13bad_exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13bad_exception) +16 std::bad_exception::~bad_exception +24 std::bad_exception::~bad_exception +32 std::bad_exception::what + +Class std::bad_exception + size=8 align=8 + base size=8 base align=8 +std::bad_exception (0x7f9ac4957770) 0 nearly-empty + vptr=((& std::bad_exception::_ZTVSt13bad_exception) + 16u) + std::exception (0x7f9ac49577e0) 0 nearly-empty + primary-for std::bad_exception (0x7f9ac4957770) + +Vtable for std::bad_alloc +std::bad_alloc::_ZTVSt9bad_alloc: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9bad_alloc) +16 std::bad_alloc::~bad_alloc +24 std::bad_alloc::~bad_alloc +32 std::bad_alloc::what + +Class std::bad_alloc + size=8 align=8 + base size=8 base align=8 +std::bad_alloc (0x7f9ac4957930) 0 nearly-empty + vptr=((& std::bad_alloc::_ZTVSt9bad_alloc) + 16u) + std::exception (0x7f9ac476e000) 0 nearly-empty + primary-for std::bad_alloc (0x7f9ac4957930) + +Class std::nothrow_t + size=1 align=1 + base size=0 base align=1 +std::nothrow_t (0x7f9ac476e850) 0 empty + +Class QListData::Data + size=32 align=8 + base size=32 base align=8 +QListData::Data (0x7f9ac476ed90) 0 + +Class QListData + size=8 align=8 + base size=8 base align=8 +QListData (0x7f9ac476ed20) 0 + +Class QScopedPointerPodDeleter + size=1 align=1 + base size=0 base align=1 +QScopedPointerPodDeleter (0x7f9ac4697850) 0 empty + +Vtable for QObjectData +QObjectData::_ZTV11QObjectData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QObjectData) +16 __cxa_pure_virtual +24 __cxa_pure_virtual + +Class QObjectData + size=48 align=8 + base size=48 base align=8 +QObjectData (0x7f9ac46b82a0) 0 + vptr=((& QObjectData::_ZTV11QObjectData) + 16u) + +Vtable for QObject +QObject::_ZTV7QObject: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QObject) +16 QObject::metaObject +24 QObject::qt_metacast +32 QObject::qt_metacall +40 QObject::~QObject +48 QObject::~QObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObject + size=16 align=8 + base size=16 base align=8 +QObject (0x7f9ac46b85b0) 0 + vptr=((& QObject::_ZTV7QObject) + 16u) + +Vtable for QObjectUserData +QObjectUserData::_ZTV15QObjectUserData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QObjectUserData) +16 QObjectUserData::~QObjectUserData +24 QObjectUserData::~QObjectUserData + +Class QObjectUserData + size=8 align=8 + base size=8 base align=8 +QObjectUserData (0x7f9ac473db60) 0 nearly-empty + vptr=((& QObjectUserData::_ZTV15QObjectUserData) + 16u) + +Vtable for QIODevice +QIODevice::_ZTV9QIODevice: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QIODevice) +16 QIODevice::metaObject +24 QIODevice::qt_metacast +32 QIODevice::qt_metacall +40 QIODevice::~QIODevice +48 QIODevice::~QIODevice +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QIODevice::isSequential +120 QIODevice::open +128 QIODevice::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QIODevice::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 __cxa_pure_virtual +224 QIODevice::readLineData +232 __cxa_pure_virtual + +Class QIODevice + size=16 align=8 + base size=16 base align=8 +QIODevice (0x7f9ac474e150) 0 + vptr=((& QIODevice::_ZTV9QIODevice) + 16u) + QObject (0x7f9ac474e1c0) 0 + primary-for QIODevice (0x7f9ac474e150) + +Class _IO_marker + size=24 align=8 + base size=24 base align=8 +_IO_marker (0x7f9ac45aecb0) 0 + +Class _IO_FILE + size=216 align=8 + base size=216 base align=8 +_IO_FILE (0x7f9ac45aed20) 0 + +Vtable for QFile +QFile::_ZTV5QFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QFile) +16 QFile::metaObject +24 QFile::qt_metacast +32 QFile::qt_metacall +40 QFile::~QFile +48 QFile::~QFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QFile::fileEngine + +Class QFile + size=16 align=8 + base size=16 base align=8 +QFile (0x7f9ac45aee00) 0 + vptr=((& QFile::_ZTV5QFile) + 16u) + QIODevice (0x7f9ac45aee70) 0 + primary-for QFile (0x7f9ac45aee00) + QObject (0x7f9ac45aeee0) 0 + primary-for QIODevice (0x7f9ac45aee70) + +Class QFileInfo + size=8 align=8 + base size=8 base align=8 +QFileInfo (0x7f9ac4651070) 0 + +Vtable for QDataStream +QDataStream::_ZTV11QDataStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QDataStream) +16 QDataStream::~QDataStream +24 QDataStream::~QDataStream + +Class QDataStream + size=40 align=8 + base size=40 base align=8 +QDataStream (0x7f9ac44a5a10) 0 + vptr=((& QDataStream::_ZTV11QDataStream) + 16u) + +Class QRegExp + size=8 align=8 + base size=8 base align=8 +QRegExp (0x7f9ac450ee70) 0 + +Class QStringMatcher::Data + size=272 align=8 + base size=272 base align=8 +QStringMatcher::Data (0x7f9ac43762a0) 0 + +Class QStringMatcher + size=1048 align=8 + base size=1048 base align=8 +QStringMatcher (0x7f9ac436ac40) 0 + +Class QStringList + size=8 align=8 + base size=8 base align=8 +QStringList (0x7f9ac4376850) 0 + QList (0x7f9ac43768c0) 0 + +Class QDir + size=8 align=8 + base size=8 base align=8 +QDir (0x7f9ac44154d0) 0 + +Class QAbstractFileEngine::ExtensionOption + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionOption (0x7f9ac42bd8c0) 0 empty + +Class QAbstractFileEngine::ExtensionReturn + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionReturn (0x7f9ac42bd930) 0 empty + +Class QAbstractFileEngine::MapExtensionOption + size=24 align=8 + base size=20 base align=8 +QAbstractFileEngine::MapExtensionOption (0x7f9ac42bd9a0) 0 + QAbstractFileEngine::ExtensionOption (0x7f9ac42bda10) 0 empty + +Class QAbstractFileEngine::MapExtensionReturn + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::MapExtensionReturn (0x7f9ac42bdbd0) 0 + QAbstractFileEngine::ExtensionReturn (0x7f9ac42bdc40) 0 empty + +Class QAbstractFileEngine::UnMapExtensionOption + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::UnMapExtensionOption (0x7f9ac42bdcb0) 0 + QAbstractFileEngine::ExtensionOption (0x7f9ac42bdd20) 0 empty + +Vtable for QAbstractFileEngine +QAbstractFileEngine::_ZTV19QAbstractFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractFileEngine) +16 QAbstractFileEngine::~QAbstractFileEngine +24 QAbstractFileEngine::~QAbstractFileEngine +32 QAbstractFileEngine::open +40 QAbstractFileEngine::close +48 QAbstractFileEngine::flush +56 QAbstractFileEngine::size +64 QAbstractFileEngine::pos +72 QAbstractFileEngine::seek +80 QAbstractFileEngine::isSequential +88 QAbstractFileEngine::remove +96 QAbstractFileEngine::copy +104 QAbstractFileEngine::rename +112 QAbstractFileEngine::link +120 QAbstractFileEngine::mkdir +128 QAbstractFileEngine::rmdir +136 QAbstractFileEngine::setSize +144 QAbstractFileEngine::caseSensitive +152 QAbstractFileEngine::isRelativePath +160 QAbstractFileEngine::entryList +168 QAbstractFileEngine::fileFlags +176 QAbstractFileEngine::setPermissions +184 QAbstractFileEngine::fileName +192 QAbstractFileEngine::ownerId +200 QAbstractFileEngine::owner +208 QAbstractFileEngine::fileTime +216 QAbstractFileEngine::setFileName +224 QAbstractFileEngine::handle +232 QAbstractFileEngine::beginEntryList +240 QAbstractFileEngine::endEntryList +248 QAbstractFileEngine::read +256 QAbstractFileEngine::readLine +264 QAbstractFileEngine::write +272 QAbstractFileEngine::extension +280 QAbstractFileEngine::supportsExtension + +Class QAbstractFileEngine + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngine (0x7f9ac42a1850) 0 + vptr=((& QAbstractFileEngine::_ZTV19QAbstractFileEngine) + 16u) + +Vtable for QAbstractFileEngineHandler +QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QAbstractFileEngineHandler) +16 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +24 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +32 __cxa_pure_virtual + +Class QAbstractFileEngineHandler + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngineHandler (0x7f9ac42f4bd0) 0 nearly-empty + vptr=((& QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler) + 16u) + +Vtable for QAbstractFileEngineIterator +QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QAbstractFileEngineIterator) +16 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +24 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QAbstractFileEngineIterator::currentFileInfo +64 QAbstractFileEngineIterator::entryInfo + +Class QAbstractFileEngineIterator + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngineIterator (0x7f9ac42f4d90) 0 + vptr=((& QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator) + 16u) + +Vtable for QBuffer +QBuffer::_ZTV7QBuffer: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QBuffer) +16 QBuffer::metaObject +24 QBuffer::qt_metacast +32 QBuffer::qt_metacall +40 QBuffer::~QBuffer +48 QBuffer::~QBuffer +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QBuffer::connectNotify +104 QBuffer::disconnectNotify +112 QIODevice::isSequential +120 QBuffer::open +128 QBuffer::close +136 QBuffer::pos +144 QBuffer::size +152 QBuffer::seek +160 QBuffer::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QBuffer::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QBuffer::readData +224 QIODevice::readLineData +232 QBuffer::writeData + +Class QBuffer + size=16 align=8 + base size=16 base align=8 +QBuffer (0x7f9ac4306690) 0 + vptr=((& QBuffer::_ZTV7QBuffer) + 16u) + QIODevice (0x7f9ac4306700) 0 + primary-for QBuffer (0x7f9ac4306690) + QObject (0x7f9ac4306770) 0 + primary-for QIODevice (0x7f9ac4306700) + +Class QHashData::Node + size=16 align=8 + base size=16 base align=8 +QHashData::Node (0x7f9ac4348e00) 0 + +Class QHashData + size=40 align=8 + base size=40 base align=8 +QHashData (0x7f9ac4348d90) 0 + +Class QHashDummyValue + size=1 align=1 + base size=0 base align=1 +QHashDummyValue (0x7f9ac416d150) 0 empty + +Class QMapData::Node + size=16 align=8 + base size=16 base align=8 +QMapData::Node (0x7f9ac406ba80) 0 + +Class QMapData + size=128 align=8 + base size=128 base align=8 +QMapData (0x7f9ac406ba10) 0 + +Vtable for QSystemLocale +QSystemLocale::_ZTV13QSystemLocale: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSystemLocale) +16 QSystemLocale::~QSystemLocale +24 QSystemLocale::~QSystemLocale +32 QSystemLocale::query +40 QSystemLocale::fallbackLocale + +Class QSystemLocale + size=8 align=8 + base size=8 base align=8 +QSystemLocale (0x7f9ac3fa8690) 0 nearly-empty + vptr=((& QSystemLocale::_ZTV13QSystemLocale) + 16u) + +Class QLocale::Data + size=4 align=2 + base size=4 base align=2 +QLocale::Data (0x7f9ac3ff4d90) 0 + +Class QLocale + size=8 align=8 + base size=8 base align=8 +QLocale (0x7f9ac3fa8af0) 0 + +Class QTextCodec::ConverterState + size=32 align=8 + base size=32 base align=8 +QTextCodec::ConverterState (0x7f9ac404dbd0) 0 + +Vtable for QTextCodec +QTextCodec::_ZTV10QTextCodec: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextCodec) +16 __cxa_pure_virtual +24 QTextCodec::aliases +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QTextCodec::~QTextCodec +64 QTextCodec::~QTextCodec + +Class QTextCodec + size=8 align=8 + base size=8 base align=8 +QTextCodec (0x7f9ac403c460) 0 nearly-empty + vptr=((& QTextCodec::_ZTV10QTextCodec) + 16u) + +Class QTextEncoder + size=40 align=8 + base size=40 base align=8 +QTextEncoder (0x7f9ac3eba150) 0 + +Class QTextDecoder + size=40 align=8 + base size=40 base align=8 +QTextDecoder (0x7f9ac3ebaf50) 0 + +Vtable for QTextStream +QTextStream::_ZTV11QTextStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTextStream) +16 QTextStream::~QTextStream +24 QTextStream::~QTextStream + +Class QTextStream + size=16 align=8 + base size=16 base align=8 +QTextStream (0x7f9ac3ec3d90) 0 + vptr=((& QTextStream::_ZTV11QTextStream) + 16u) + +Class QTextStreamManipulator + size=40 align=8 + base size=38 base align=8 +QTextStreamManipulator (0x7f9ac3f3aa80) 0 + +Vtable for QTextIStream +QTextIStream::_ZTV12QTextIStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextIStream) +16 QTextIStream::~QTextIStream +24 QTextIStream::~QTextIStream + +Class QTextIStream + size=16 align=8 + base size=16 base align=8 +QTextIStream (0x7f9ac3d6c070) 0 + vptr=((& QTextIStream::_ZTV12QTextIStream) + 16u) + QTextStream (0x7f9ac3d6c0e0) 0 + primary-for QTextIStream (0x7f9ac3d6c070) + +Vtable for QTextOStream +QTextOStream::_ZTV12QTextOStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextOStream) +16 QTextOStream::~QTextOStream +24 QTextOStream::~QTextOStream + +Class QTextOStream + size=16 align=8 + base size=16 base align=8 +QTextOStream (0x7f9ac3d79ee0) 0 + vptr=((& QTextOStream::_ZTV12QTextOStream) + 16u) + QTextStream (0x7f9ac3d79f50) 0 + primary-for QTextOStream (0x7f9ac3d79ee0) + +Class wait + size=4 align=4 + base size=4 base align=4 +wait (0x7f9ac3d8ed90) 0 + +Class timespec + size=16 align=8 + base size=16 base align=8 +timespec (0x7f9ac3d9b0e0) 0 + +Class timeval + size=16 align=8 + base size=16 base align=8 +timeval (0x7f9ac3d9b150) 0 + +Class __pthread_internal_list + size=16 align=8 + base size=16 base align=8 +__pthread_internal_list (0x7f9ac3d9b2a0) 0 + +Class random_data + size=48 align=8 + base size=48 base align=8 +random_data (0x7f9ac3d9b850) 0 + +Class drand48_data + size=24 align=8 + base size=24 base align=8 +drand48_data (0x7f9ac3d9b8c0) 0 + +Class QVectorData + size=16 align=4 + base size=16 base align=4 +QVectorData (0x7f9ac3d9b930) 0 + +Class QContiguousCacheData + size=24 align=4 + base size=24 base align=4 +QContiguousCacheData (0x7f9ac3d58620) 0 + +Class QDebug::Stream + size=40 align=8 + base size=34 base align=8 +QDebug::Stream (0x7f9ac3bb9150) 0 + +Class QDebug + size=8 align=8 + base size=8 base align=8 +QDebug (0x7f9ac3bb90e0) 0 + +Class QNoDebug + size=1 align=1 + base size=0 base align=1 +QNoDebug (0x7f9ac3a670e0) 0 empty + +Vtable for QDirIterator +QDirIterator::_ZTV12QDirIterator: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QDirIterator) +16 QDirIterator::~QDirIterator +24 QDirIterator::~QDirIterator + +Class QDirIterator + size=16 align=8 + base size=16 base align=8 +QDirIterator (0x7f9ac3a79700) 0 + vptr=((& QDirIterator::_ZTV12QDirIterator) + 16u) + +Vtable for QFileSystemWatcher +QFileSystemWatcher::_ZTV18QFileSystemWatcher: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFileSystemWatcher) +16 QFileSystemWatcher::metaObject +24 QFileSystemWatcher::qt_metacast +32 QFileSystemWatcher::qt_metacall +40 QFileSystemWatcher::~QFileSystemWatcher +48 QFileSystemWatcher::~QFileSystemWatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QFileSystemWatcher + size=16 align=8 + base size=16 base align=8 +QFileSystemWatcher (0x7f9ac3ad4540) 0 + vptr=((& QFileSystemWatcher::_ZTV18QFileSystemWatcher) + 16u) + QObject (0x7f9ac3ad45b0) 0 + primary-for QFileSystemWatcher (0x7f9ac3ad4540) + +Vtable for QFSFileEngine +QFSFileEngine::_ZTV13QFSFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QFSFileEngine) +16 QFSFileEngine::~QFSFileEngine +24 QFSFileEngine::~QFSFileEngine +32 QFSFileEngine::open +40 QFSFileEngine::close +48 QFSFileEngine::flush +56 QFSFileEngine::size +64 QFSFileEngine::pos +72 QFSFileEngine::seek +80 QFSFileEngine::isSequential +88 QFSFileEngine::remove +96 QFSFileEngine::copy +104 QFSFileEngine::rename +112 QFSFileEngine::link +120 QFSFileEngine::mkdir +128 QFSFileEngine::rmdir +136 QFSFileEngine::setSize +144 QFSFileEngine::caseSensitive +152 QFSFileEngine::isRelativePath +160 QFSFileEngine::entryList +168 QFSFileEngine::fileFlags +176 QFSFileEngine::setPermissions +184 QFSFileEngine::fileName +192 QFSFileEngine::ownerId +200 QFSFileEngine::owner +208 QFSFileEngine::fileTime +216 QFSFileEngine::setFileName +224 QFSFileEngine::handle +232 QFSFileEngine::beginEntryList +240 QFSFileEngine::endEntryList +248 QFSFileEngine::read +256 QFSFileEngine::readLine +264 QFSFileEngine::write +272 QFSFileEngine::extension +280 QFSFileEngine::supportsExtension + +Class QFSFileEngine + size=16 align=8 + base size=16 base align=8 +QFSFileEngine (0x7f9ac3ae6a80) 0 + vptr=((& QFSFileEngine::_ZTV13QFSFileEngine) + 16u) + QAbstractFileEngine (0x7f9ac3ae6af0) 0 + primary-for QFSFileEngine (0x7f9ac3ae6a80) + +Class QSharedData + size=4 align=4 + base size=4 base align=4 +QSharedData (0x7f9ac3af5e70) 0 + +Class QProcessEnvironment + size=8 align=8 + base size=8 base align=8 +QProcessEnvironment (0x7f9ac393f1c0) 0 + +Vtable for QProcess +QProcess::_ZTV8QProcess: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QProcess) +16 QProcess::metaObject +24 QProcess::qt_metacast +32 QProcess::qt_metacall +40 QProcess::~QProcess +48 QProcess::~QProcess +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QProcess::isSequential +120 QIODevice::open +128 QProcess::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QProcess::atEnd +168 QIODevice::reset +176 QProcess::bytesAvailable +184 QProcess::bytesToWrite +192 QProcess::canReadLine +200 QProcess::waitForReadyRead +208 QProcess::waitForBytesWritten +216 QProcess::readData +224 QIODevice::readLineData +232 QProcess::writeData +240 QProcess::setupChildProcess + +Class QProcess + size=16 align=8 + base size=16 base align=8 +QProcess (0x7f9ac393fcb0) 0 + vptr=((& QProcess::_ZTV8QProcess) + 16u) + QIODevice (0x7f9ac393fd20) 0 + primary-for QProcess (0x7f9ac393fcb0) + QObject (0x7f9ac393fd90) 0 + primary-for QIODevice (0x7f9ac393fd20) + +Class QResource + size=8 align=8 + base size=8 base align=8 +QResource (0x7f9ac39871c0) 0 + +Class QMetaType + size=1 align=1 + base size=0 base align=1 +QMetaType (0x7f9ac3987e70) 0 empty + +Class QVariant::PrivateShared + size=16 align=8 + base size=12 base align=8 +QVariant::PrivateShared (0x7f9ac3883700) 0 + +Class QVariant::Private::Data + size=8 align=8 + base size=8 base align=8 +QVariant::Private::Data (0x7f9ac3883a10) 0 + +Class QVariant::Private + size=16 align=8 + base size=12 base align=8 +QVariant::Private (0x7f9ac38837e0) 0 + +Class QVariant::Handler + size=72 align=8 + base size=72 base align=8 +QVariant::Handler (0x7f9ac3892700) 0 + +Class QVariant + size=16 align=8 + base size=16 base align=8 +QVariant (0x7f9ac38537e0) 0 + +Class QVariantComparisonHelper + size=8 align=8 + base size=8 base align=8 +QVariantComparisonHelper (0x7f9ac37419a0) 0 + +Vtable for QSettings +QSettings::_ZTV9QSettings: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QSettings) +16 QSettings::metaObject +24 QSettings::qt_metacast +32 QSettings::qt_metacall +40 QSettings::~QSettings +48 QSettings::~QSettings +56 QSettings::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSettings + size=16 align=8 + base size=16 base align=8 +QSettings (0x7f9ac3768ee0) 0 + vptr=((& QSettings::_ZTV9QSettings) + 16u) + QObject (0x7f9ac3768f50) 0 + primary-for QSettings (0x7f9ac3768ee0) + +Vtable for QTemporaryFile +QTemporaryFile::_ZTV14QTemporaryFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QTemporaryFile) +16 QTemporaryFile::metaObject +24 QTemporaryFile::qt_metacast +32 QTemporaryFile::qt_metacall +40 QTemporaryFile::~QTemporaryFile +48 QTemporaryFile::~QTemporaryFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QTemporaryFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QTemporaryFile::fileEngine + +Class QTemporaryFile + size=16 align=8 + base size=16 base align=8 +QTemporaryFile (0x7f9ac37ed2a0) 0 + vptr=((& QTemporaryFile::_ZTV14QTemporaryFile) + 16u) + QFile (0x7f9ac37ed310) 0 + primary-for QTemporaryFile (0x7f9ac37ed2a0) + QIODevice (0x7f9ac37ed380) 0 + primary-for QFile (0x7f9ac37ed310) + QObject (0x7f9ac37ed3f0) 0 + primary-for QIODevice (0x7f9ac37ed380) + +Class QUrl + size=8 align=8 + base size=8 base align=8 +QUrl (0x7f9ac38079a0) 0 + +Class QXmlStreamStringRef + size=16 align=8 + base size=16 base align=8 +QXmlStreamStringRef (0x7f9ac3694070) 0 + +Class QXmlStreamAttribute + size=80 align=8 + base size=73 base align=8 +QXmlStreamAttribute (0x7f9ac36b4850) 0 + +Class QXmlStreamAttributes + size=8 align=8 + base size=8 base align=8 +QXmlStreamAttributes (0x7f9ac36dd310) 0 + QVector (0x7f9ac36dd380) 0 + +Class QXmlStreamNamespaceDeclaration + size=40 align=8 + base size=40 base align=8 +QXmlStreamNamespaceDeclaration (0x7f9ac36dd7e0) 0 + +Class QXmlStreamNotationDeclaration + size=56 align=8 + base size=56 base align=8 +QXmlStreamNotationDeclaration (0x7f9ac37201c0) 0 + +Class QXmlStreamEntityDeclaration + size=88 align=8 + base size=88 base align=8 +QXmlStreamEntityDeclaration (0x7f9ac353a070) 0 + +Vtable for QXmlStreamEntityResolver +QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QXmlStreamEntityResolver) +16 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +24 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +32 QXmlStreamEntityResolver::resolveEntity +40 QXmlStreamEntityResolver::resolveUndeclaredEntity + +Class QXmlStreamEntityResolver + size=8 align=8 + base size=8 base align=8 +QXmlStreamEntityResolver (0x7f9ac35559a0) 0 nearly-empty + vptr=((& QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver) + 16u) + +Class QXmlStreamReader + size=8 align=8 + base size=8 base align=8 +QXmlStreamReader (0x7f9ac3555b60) 0 + +Class QXmlStreamWriter + size=8 align=8 + base size=8 base align=8 +QXmlStreamWriter (0x7f9ac359cc40) 0 + +Vtable for QAbstractState +QAbstractState::_ZTV14QAbstractState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QAbstractState) +16 QAbstractState::metaObject +24 QAbstractState::qt_metacast +32 QAbstractState::qt_metacall +40 QAbstractState::~QAbstractState +48 QAbstractState::~QAbstractState +56 QAbstractState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QAbstractState + size=16 align=8 + base size=16 base align=8 +QAbstractState (0x7f9ac35b1a80) 0 + vptr=((& QAbstractState::_ZTV14QAbstractState) + 16u) + QObject (0x7f9ac35b1af0) 0 + primary-for QAbstractState (0x7f9ac35b1a80) + +Vtable for QAbstractTransition +QAbstractTransition::_ZTV19QAbstractTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractTransition) +16 QAbstractTransition::metaObject +24 QAbstractTransition::qt_metacast +32 QAbstractTransition::qt_metacall +40 QAbstractTransition::~QAbstractTransition +48 QAbstractTransition::~QAbstractTransition +56 QAbstractTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QAbstractTransition + size=16 align=8 + base size=16 base align=8 +QAbstractTransition (0x7f9ac35d92a0) 0 + vptr=((& QAbstractTransition::_ZTV19QAbstractTransition) + 16u) + QObject (0x7f9ac35d9310) 0 + primary-for QAbstractTransition (0x7f9ac35d92a0) + +Vtable for QEvent +QEvent::_ZTV6QEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QEvent) +16 QEvent::~QEvent +24 QEvent::~QEvent + +Class QEvent + size=24 align=8 + base size=20 base align=8 +QEvent (0x7f9ac35edaf0) 0 + vptr=((& QEvent::_ZTV6QEvent) + 16u) + +Vtable for QTimerEvent +QTimerEvent::_ZTV11QTimerEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTimerEvent) +16 QTimerEvent::~QTimerEvent +24 QTimerEvent::~QTimerEvent + +Class QTimerEvent + size=24 align=8 + base size=24 base align=8 +QTimerEvent (0x7f9ac360f700) 0 + vptr=((& QTimerEvent::_ZTV11QTimerEvent) + 16u) + QEvent (0x7f9ac360f770) 0 + primary-for QTimerEvent (0x7f9ac360f700) + +Vtable for QChildEvent +QChildEvent::_ZTV11QChildEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QChildEvent) +16 QChildEvent::~QChildEvent +24 QChildEvent::~QChildEvent + +Class QChildEvent + size=32 align=8 + base size=32 base align=8 +QChildEvent (0x7f9ac360fb60) 0 + vptr=((& QChildEvent::_ZTV11QChildEvent) + 16u) + QEvent (0x7f9ac360fbd0) 0 + primary-for QChildEvent (0x7f9ac360fb60) + +Vtable for QCustomEvent +QCustomEvent::_ZTV12QCustomEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QCustomEvent) +16 QCustomEvent::~QCustomEvent +24 QCustomEvent::~QCustomEvent + +Class QCustomEvent + size=24 align=8 + base size=20 base align=8 +QCustomEvent (0x7f9ac3618e00) 0 + vptr=((& QCustomEvent::_ZTV12QCustomEvent) + 16u) + QEvent (0x7f9ac3618e70) 0 + primary-for QCustomEvent (0x7f9ac3618e00) + +Vtable for QDynamicPropertyChangeEvent +QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QDynamicPropertyChangeEvent) +16 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent +24 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent + +Class QDynamicPropertyChangeEvent + size=32 align=8 + base size=32 base align=8 +QDynamicPropertyChangeEvent (0x7f9ac362a620) 0 + vptr=((& QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent) + 16u) + QEvent (0x7f9ac362a690) 0 + primary-for QDynamicPropertyChangeEvent (0x7f9ac362a620) + +Vtable for QEventTransition +QEventTransition::_ZTV16QEventTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QEventTransition) +16 QEventTransition::metaObject +24 QEventTransition::qt_metacast +32 QEventTransition::qt_metacall +40 QEventTransition::~QEventTransition +48 QEventTransition::~QEventTransition +56 QEventTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QEventTransition::eventTest +120 QEventTransition::onTransition + +Class QEventTransition + size=16 align=8 + base size=16 base align=8 +QEventTransition (0x7f9ac362aaf0) 0 + vptr=((& QEventTransition::_ZTV16QEventTransition) + 16u) + QAbstractTransition (0x7f9ac362ab60) 0 + primary-for QEventTransition (0x7f9ac362aaf0) + QObject (0x7f9ac362abd0) 0 + primary-for QAbstractTransition (0x7f9ac362ab60) + +Vtable for QFinalState +QFinalState::_ZTV11QFinalState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFinalState) +16 QFinalState::metaObject +24 QFinalState::qt_metacast +32 QFinalState::qt_metacall +40 QFinalState::~QFinalState +48 QFinalState::~QFinalState +56 QFinalState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFinalState::onEntry +120 QFinalState::onExit + +Class QFinalState + size=16 align=8 + base size=16 base align=8 +QFinalState (0x7f9ac34459a0) 0 + vptr=((& QFinalState::_ZTV11QFinalState) + 16u) + QAbstractState (0x7f9ac3445a10) 0 + primary-for QFinalState (0x7f9ac34459a0) + QObject (0x7f9ac3445a80) 0 + primary-for QAbstractState (0x7f9ac3445a10) + +Vtable for QHistoryState +QHistoryState::_ZTV13QHistoryState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QHistoryState) +16 QHistoryState::metaObject +24 QHistoryState::qt_metacast +32 QHistoryState::qt_metacall +40 QHistoryState::~QHistoryState +48 QHistoryState::~QHistoryState +56 QHistoryState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QHistoryState::onEntry +120 QHistoryState::onExit + +Class QHistoryState + size=16 align=8 + base size=16 base align=8 +QHistoryState (0x7f9ac345f230) 0 + vptr=((& QHistoryState::_ZTV13QHistoryState) + 16u) + QAbstractState (0x7f9ac345f2a0) 0 + primary-for QHistoryState (0x7f9ac345f230) + QObject (0x7f9ac345f310) 0 + primary-for QAbstractState (0x7f9ac345f2a0) + +Vtable for QSignalTransition +QSignalTransition::_ZTV17QSignalTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QSignalTransition) +16 QSignalTransition::metaObject +24 QSignalTransition::qt_metacast +32 QSignalTransition::qt_metacall +40 QSignalTransition::~QSignalTransition +48 QSignalTransition::~QSignalTransition +56 QSignalTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QSignalTransition::eventTest +120 QSignalTransition::onTransition + +Class QSignalTransition + size=16 align=8 + base size=16 base align=8 +QSignalTransition (0x7f9ac346ff50) 0 + vptr=((& QSignalTransition::_ZTV17QSignalTransition) + 16u) + QAbstractTransition (0x7f9ac3478000) 0 + primary-for QSignalTransition (0x7f9ac346ff50) + QObject (0x7f9ac3478070) 0 + primary-for QAbstractTransition (0x7f9ac3478000) + +Vtable for QState +QState::_ZTV6QState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QState) +16 QState::metaObject +24 QState::qt_metacast +32 QState::qt_metacall +40 QState::~QState +48 QState::~QState +56 QState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QState::onEntry +120 QState::onExit + +Class QState + size=16 align=8 + base size=16 base align=8 +QState (0x7f9ac348baf0) 0 + vptr=((& QState::_ZTV6QState) + 16u) + QAbstractState (0x7f9ac348bb60) 0 + primary-for QState (0x7f9ac348baf0) + QObject (0x7f9ac348bbd0) 0 + primary-for QAbstractState (0x7f9ac348bb60) + +Vtable for QStateMachine::SignalEvent +QStateMachine::SignalEvent::_ZTVN13QStateMachine11SignalEventE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN13QStateMachine11SignalEventE) +16 QStateMachine::SignalEvent::~SignalEvent +24 QStateMachine::SignalEvent::~SignalEvent + +Class QStateMachine::SignalEvent + size=48 align=8 + base size=48 base align=8 +QStateMachine::SignalEvent (0x7f9ac34b0150) 0 + vptr=((& QStateMachine::SignalEvent::_ZTVN13QStateMachine11SignalEventE) + 16u) + QEvent (0x7f9ac34b01c0) 0 + primary-for QStateMachine::SignalEvent (0x7f9ac34b0150) + +Vtable for QStateMachine::WrappedEvent +QStateMachine::WrappedEvent::_ZTVN13QStateMachine12WrappedEventE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN13QStateMachine12WrappedEventE) +16 QStateMachine::WrappedEvent::~WrappedEvent +24 QStateMachine::WrappedEvent::~WrappedEvent + +Class QStateMachine::WrappedEvent + size=40 align=8 + base size=40 base align=8 +QStateMachine::WrappedEvent (0x7f9ac34b0700) 0 + vptr=((& QStateMachine::WrappedEvent::_ZTVN13QStateMachine12WrappedEventE) + 16u) + QEvent (0x7f9ac34b0770) 0 + primary-for QStateMachine::WrappedEvent (0x7f9ac34b0700) + +Vtable for QStateMachine +QStateMachine::_ZTV13QStateMachine: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QStateMachine) +16 QStateMachine::metaObject +24 QStateMachine::qt_metacast +32 QStateMachine::qt_metacall +40 QStateMachine::~QStateMachine +48 QStateMachine::~QStateMachine +56 QStateMachine::event +64 QStateMachine::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QStateMachine::onEntry +120 QStateMachine::onExit +128 QStateMachine::beginSelectTransitions +136 QStateMachine::endSelectTransitions +144 QStateMachine::beginMicrostep +152 QStateMachine::endMicrostep + +Class QStateMachine + size=16 align=8 + base size=16 base align=8 +QStateMachine (0x7f9ac34a6ee0) 0 + vptr=((& QStateMachine::_ZTV13QStateMachine) + 16u) + QState (0x7f9ac34a6f50) 0 + primary-for QStateMachine (0x7f9ac34a6ee0) + QAbstractState (0x7f9ac34b0000) 0 + primary-for QState (0x7f9ac34a6f50) + QObject (0x7f9ac34b0070) 0 + primary-for QAbstractState (0x7f9ac34b0000) + +Class QBitArray + size=8 align=8 + base size=8 base align=8 +QBitArray (0x7f9ac34df150) 0 + +Class QBitRef + size=16 align=8 + base size=12 base align=8 +QBitRef (0x7f9ac3335e00) 0 + +Class QByteArrayMatcher::Data + size=272 align=8 + base size=272 base align=8 +QByteArrayMatcher::Data (0x7f9ac334aaf0) 0 + +Class QByteArrayMatcher + size=1040 align=8 + base size=1040 base align=8 +QByteArrayMatcher (0x7f9ac334a4d0) 0 + +Class QCryptographicHash + size=8 align=8 + base size=8 base align=8 +QCryptographicHash (0x7f9ac3380150) 0 + +Vtable for QtSharedPointer::ExternalRefCountData +QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN15QtSharedPointer20ExternalRefCountDataE) +16 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +24 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +32 QtSharedPointer::ExternalRefCountData::destroy + +Class QtSharedPointer::ExternalRefCountData + size=16 align=8 + base size=16 base align=8 +QtSharedPointer::ExternalRefCountData (0x7f9ac33ac070) 0 + vptr=((& QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE) + 16u) + +Vtable for QtSharedPointer::ExternalRefCountWithDestroyFn +QtSharedPointer::ExternalRefCountWithDestroyFn::_ZTVN15QtSharedPointer29ExternalRefCountWithDestroyFnE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN15QtSharedPointer29ExternalRefCountWithDestroyFnE) +16 QtSharedPointer::ExternalRefCountWithDestroyFn::~ExternalRefCountWithDestroyFn +24 QtSharedPointer::ExternalRefCountWithDestroyFn::~ExternalRefCountWithDestroyFn +32 QtSharedPointer::ExternalRefCountWithDestroyFn::destroy + +Class QtSharedPointer::ExternalRefCountWithDestroyFn + size=24 align=8 + base size=24 base align=8 +QtSharedPointer::ExternalRefCountWithDestroyFn (0x7f9ac33c2930) 0 + vptr=((& QtSharedPointer::ExternalRefCountWithDestroyFn::_ZTVN15QtSharedPointer29ExternalRefCountWithDestroyFnE) + 16u) + QtSharedPointer::ExternalRefCountData (0x7f9ac33c29a0) 0 + primary-for QtSharedPointer::ExternalRefCountWithDestroyFn (0x7f9ac33c2930) + +Class QDate + size=4 align=4 + base size=4 base align=4 +QDate (0x7f9ac32475b0) 0 + +Class QTime + size=4 align=4 + base size=4 base align=4 +QTime (0x7f9ac327a540) 0 + +Class QDateTime + size=8 align=8 + base size=8 base align=8 +QDateTime (0x7f9ac3295af0) 0 + +Class QEasingCurve + size=8 align=8 + base size=8 base align=8 +QEasingCurve (0x7f9ac32dc000) 0 + +Class QPoint + size=8 align=4 + base size=8 base align=4 +QPoint (0x7f9ac32dcee0) 0 + +Class QPointF + size=16 align=8 + base size=16 base align=8 +QPointF (0x7f9ac331eaf0) 0 + +Class QLine + size=16 align=4 + base size=16 base align=4 +QLine (0x7f9ac3154af0) 0 + +Class QLineF + size=32 align=8 + base size=32 base align=8 +QLineF (0x7f9ac318f9a0) 0 + +Class QLinkedListData + size=32 align=8 + base size=32 base align=8 +QLinkedListData (0x7f9ac31ec460) 0 + +Class QMargins + size=16 align=4 + base size=16 base align=4 +QMargins (0x7f9ac30ac380) 0 + +Class QSize + size=8 align=4 + base size=8 base align=4 +QSize (0x7f9ac30da150) 0 + +Class QSizeF + size=16 align=8 + base size=16 base align=8 +QSizeF (0x7f9ac311be00) 0 + +Class QRect + size=16 align=4 + base size=16 base align=4 +QRect (0x7f9ac2f6e380) 0 + +Class QRectF + size=32 align=8 + base size=32 base align=8 +QRectF (0x7f9ac301bd20) 0 + +Class QLatin1Literal + size=16 align=8 + base size=16 base align=8 +QLatin1Literal (0x7f9ac2ec9ee0) 0 + +Class QAbstractConcatenable + size=1 align=1 + base size=0 base align=1 +QAbstractConcatenable (0x7f9ac2eda3f0) 0 empty + +Class QTextBoundaryFinder + size=48 align=8 + base size=48 base align=8 +QTextBoundaryFinder (0x7f9ac2f13380) 0 + +Vtable for QTimeLine +QTimeLine::_ZTV9QTimeLine: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTimeLine) +16 QTimeLine::metaObject +24 QTimeLine::qt_metacast +32 QTimeLine::qt_metacall +40 QTimeLine::~QTimeLine +48 QTimeLine::~QTimeLine +56 QObject::event +64 QObject::eventFilter +72 QTimeLine::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTimeLine::valueForTime + +Class QTimeLine + size=16 align=8 + base size=16 base align=8 +QTimeLine (0x7f9ac2f23700) 0 + vptr=((& QTimeLine::_ZTV9QTimeLine) + 16u) + QObject (0x7f9ac2f23770) 0 + primary-for QTimeLine (0x7f9ac2f23700) + +Vtable for QRunnable +QRunnable::_ZTV9QRunnable: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QRunnable) +16 __cxa_pure_virtual +24 QRunnable::~QRunnable +32 QRunnable::~QRunnable + +Class QRunnable + size=16 align=8 + base size=12 base align=8 +QRunnable (0x7f9ac2d4af50) 0 + vptr=((& QRunnable::_ZTV9QRunnable) + 16u) + +Class QMutex + size=8 align=8 + base size=8 base align=8 +QMutex (0x7f9ac2d81620) 0 + +Class QMutexLocker + size=8 align=8 + base size=8 base align=8 +QMutexLocker (0x7f9ac2d8f1c0) 0 + +Vtable for QtConcurrent::Exception +QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent9ExceptionE) +16 QtConcurrent::Exception::~Exception +24 QtConcurrent::Exception::~Exception +32 std::exception::what +40 QtConcurrent::Exception::raise +48 QtConcurrent::Exception::clone + +Class QtConcurrent::Exception + size=8 align=8 + base size=8 base align=8 +QtConcurrent::Exception (0x7f9ac2da64d0) 0 nearly-empty + vptr=((& QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE) + 16u) + std::exception (0x7f9ac2da6540) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7f9ac2da64d0) + +Vtable for QtConcurrent::UnhandledException +QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent18UnhandledExceptionE) +16 QtConcurrent::UnhandledException::~UnhandledException +24 QtConcurrent::UnhandledException::~UnhandledException +32 std::exception::what +40 QtConcurrent::UnhandledException::raise +48 QtConcurrent::UnhandledException::clone + +Class QtConcurrent::UnhandledException + size=8 align=8 + base size=8 base align=8 +QtConcurrent::UnhandledException (0x7f9ac2da6770) 0 nearly-empty + vptr=((& QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE) + 16u) + QtConcurrent::Exception (0x7f9ac2da67e0) 0 nearly-empty + primary-for QtConcurrent::UnhandledException (0x7f9ac2da6770) + std::exception (0x7f9ac2da6850) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7f9ac2da67e0) + +Class QtConcurrent::internal::ExceptionHolder + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionHolder (0x7f9ac2da6a80) 0 + +Class QtConcurrent::internal::ExceptionStore + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionStore (0x7f9ac2da6e00) 0 + +Class QtConcurrent::ResultItem + size=16 align=8 + base size=16 base align=8 +QtConcurrent::ResultItem (0x7f9ac2da6e70) 0 + +Class QtConcurrent::ResultIteratorBase + size=16 align=8 + base size=12 base align=8 +QtConcurrent::ResultIteratorBase (0x7f9ac2dbed90) 0 + +Vtable for QtConcurrent::ResultStoreBase +QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent15ResultStoreBaseE) +16 QtConcurrent::ResultStoreBase::~ResultStoreBase +24 QtConcurrent::ResultStoreBase::~ResultStoreBase + +Class QtConcurrent::ResultStoreBase + size=48 align=8 + base size=44 base align=8 +QtConcurrent::ResultStoreBase (0x7f9ac2dc3930) 0 + vptr=((& QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE) + 16u) + +Vtable for QFutureInterfaceBase +QFutureInterfaceBase::_ZTV20QFutureInterfaceBase: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QFutureInterfaceBase) +16 QFutureInterfaceBase::~QFutureInterfaceBase +24 QFutureInterfaceBase::~QFutureInterfaceBase + +Class QFutureInterfaceBase + size=16 align=8 + base size=16 base align=8 +QFutureInterfaceBase (0x7f9ac2e01d90) 0 + vptr=((& QFutureInterfaceBase::_ZTV20QFutureInterfaceBase) + 16u) + +Vtable for QFutureWatcherBase +QFutureWatcherBase::_ZTV18QFutureWatcherBase: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFutureWatcherBase) +16 QFutureWatcherBase::metaObject +24 QFutureWatcherBase::qt_metacast +32 QFutureWatcherBase::qt_metacall +40 QFutureWatcherBase::~QFutureWatcherBase +48 QFutureWatcherBase::~QFutureWatcherBase +56 QFutureWatcherBase::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QFutureWatcherBase::connectNotify +104 QFutureWatcherBase::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QFutureWatcherBase + size=16 align=8 + base size=16 base align=8 +QFutureWatcherBase (0x7f9ac2ce6690) 0 + vptr=((& QFutureWatcherBase::_ZTV18QFutureWatcherBase) + 16u) + QObject (0x7f9ac2ce6700) 0 + primary-for QFutureWatcherBase (0x7f9ac2ce6690) + +Vtable for QThread +QThread::_ZTV7QThread: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QThread) +16 QThread::metaObject +24 QThread::qt_metacast +32 QThread::qt_metacall +40 QThread::~QThread +48 QThread::~QThread +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QThread::run + +Class QThread + size=16 align=8 + base size=16 base align=8 +QThread (0x7f9ac2b38a80) 0 + vptr=((& QThread::_ZTV7QThread) + 16u) + QObject (0x7f9ac2b38af0) 0 + primary-for QThread (0x7f9ac2b38a80) + +Vtable for QThreadPool +QThreadPool::_ZTV11QThreadPool: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QThreadPool) +16 QThreadPool::metaObject +24 QThreadPool::qt_metacast +32 QThreadPool::qt_metacall +40 QThreadPool::~QThreadPool +48 QThreadPool::~QThreadPool +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QThreadPool + size=16 align=8 + base size=16 base align=8 +QThreadPool (0x7f9ac2b5e930) 0 + vptr=((& QThreadPool::_ZTV11QThreadPool) + 16u) + QObject (0x7f9ac2b5e9a0) 0 + primary-for QThreadPool (0x7f9ac2b5e930) + +Class QWaitCondition + size=8 align=8 + base size=8 base align=8 +QWaitCondition (0x7f9ac2b71ee0) 0 + +Class QSemaphore + size=8 align=8 + base size=8 base align=8 +QSemaphore (0x7f9ac2b78460) 0 + +Class QtConcurrent::ThreadEngineBarrier + size=24 align=8 + base size=24 base align=8 +QtConcurrent::ThreadEngineBarrier (0x7f9ac2b789a0) 0 + +Vtable for QtConcurrent::ThreadEngineBase +QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent16ThreadEngineBaseE) +16 QtConcurrent::ThreadEngineBase::run +24 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +32 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +40 QtConcurrent::ThreadEngineBase::start +48 QtConcurrent::ThreadEngineBase::finish +56 QtConcurrent::ThreadEngineBase::threadFunction +64 QtConcurrent::ThreadEngineBase::shouldStartThread +72 QtConcurrent::ThreadEngineBase::shouldThrottleThread +80 __cxa_pure_virtual + +Class QtConcurrent::ThreadEngineBase + size=64 align=8 + base size=64 base align=8 +QtConcurrent::ThreadEngineBase (0x7f9ac2b78a80) 0 + vptr=((& QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE) + 16u) + QRunnable (0x7f9ac2b78af0) 0 + primary-for QtConcurrent::ThreadEngineBase (0x7f9ac2b78a80) + +VTT for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTTN12QtConcurrent12ThreadEngineIvEE: 2u entries +0 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 24u) +8 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 136u) + +Class QtConcurrent::BlockSizeManager + size=96 align=8 + base size=92 base align=8 +QtConcurrent::BlockSizeManager (0x7f9ac2bc4ee0) 0 + +Vtable for QFactoryInterface +QFactoryInterface::_ZTV17QFactoryInterface: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QFactoryInterface) +16 QFactoryInterface::~QFactoryInterface +24 QFactoryInterface::~QFactoryInterface +32 __cxa_pure_virtual + +Class QFactoryInterface + size=8 align=8 + base size=8 base align=8 +QFactoryInterface (0x7f9ac2669d20) 0 nearly-empty + vptr=((& QFactoryInterface::_ZTV17QFactoryInterface) + 16u) + +Vtable for QTextCodecFactoryInterface +QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QTextCodecFactoryInterface) +16 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +24 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QTextCodecFactoryInterface + size=8 align=8 + base size=8 base align=8 +QTextCodecFactoryInterface (0x7f9ac269b000) 0 nearly-empty + vptr=((& QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface) + 16u) + QFactoryInterface (0x7f9ac269b070) 0 nearly-empty + primary-for QTextCodecFactoryInterface (0x7f9ac269b000) + +Vtable for QTextCodecPlugin +QTextCodecPlugin::_ZTV16QTextCodecPlugin: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QTextCodecPlugin) +16 QTextCodecPlugin::metaObject +24 QTextCodecPlugin::qt_metacast +32 QTextCodecPlugin::qt_metacall +40 QTextCodecPlugin::~QTextCodecPlugin +48 QTextCodecPlugin::~QTextCodecPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 QTextCodecPlugin::keys +160 QTextCodecPlugin::create +168 (int (*)(...))-0x00000000000000010 +176 (int (*)(...))(& _ZTI16QTextCodecPlugin) +184 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD1Ev +192 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD0Ev +200 QTextCodecPlugin::_ZThn16_NK16QTextCodecPlugin4keysEv +208 QTextCodecPlugin::_ZThn16_N16QTextCodecPlugin6createERK7QString + +Class QTextCodecPlugin + size=24 align=8 + base size=24 base align=8 +QTextCodecPlugin (0x7f9ac26a3580) 0 + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 16u) + QObject (0x7f9ac269ba80) 0 + primary-for QTextCodecPlugin (0x7f9ac26a3580) + QTextCodecFactoryInterface (0x7f9ac269baf0) 16 nearly-empty + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 184u) + QFactoryInterface (0x7f9ac269bb60) 16 nearly-empty + primary-for QTextCodecFactoryInterface (0x7f9ac269baf0) + +Class QLibraryInfo + size=1 align=1 + base size=0 base align=1 +QLibraryInfo (0x7f9ac26f3150) 0 empty + +Vtable for QEventLoop +QEventLoop::_ZTV10QEventLoop: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QEventLoop) +16 QEventLoop::metaObject +24 QEventLoop::qt_metacast +32 QEventLoop::qt_metacall +40 QEventLoop::~QEventLoop +48 QEventLoop::~QEventLoop +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QEventLoop + size=16 align=8 + base size=16 base align=8 +QEventLoop (0x7f9ac26f32a0) 0 + vptr=((& QEventLoop::_ZTV10QEventLoop) + 16u) + QObject (0x7f9ac26f3310) 0 + primary-for QEventLoop (0x7f9ac26f32a0) + +Vtable for QAbstractEventDispatcher +QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QAbstractEventDispatcher) +16 QAbstractEventDispatcher::metaObject +24 QAbstractEventDispatcher::qt_metacast +32 QAbstractEventDispatcher::qt_metacall +40 QAbstractEventDispatcher::~QAbstractEventDispatcher +48 QAbstractEventDispatcher::~QAbstractEventDispatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 QAbstractEventDispatcher::startingUp +208 QAbstractEventDispatcher::closingDown + +Class QAbstractEventDispatcher + size=16 align=8 + base size=16 base align=8 +QAbstractEventDispatcher (0x7f9ac252dbd0) 0 + vptr=((& QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher) + 16u) + QObject (0x7f9ac252dc40) 0 + primary-for QAbstractEventDispatcher (0x7f9ac252dbd0) + +Class QModelIndex + size=24 align=8 + base size=24 base align=8 +QModelIndex (0x7f9ac2551a80) 0 + +Class QPersistentModelIndex + size=8 align=8 + base size=8 base align=8 +QPersistentModelIndex (0x7f9ac257d540) 0 + +Vtable for QAbstractItemModel +QAbstractItemModel::_ZTV18QAbstractItemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractItemModel) +16 QAbstractItemModel::metaObject +24 QAbstractItemModel::qt_metacast +32 QAbstractItemModel::qt_metacall +40 QAbstractItemModel::~QAbstractItemModel +48 QAbstractItemModel::~QAbstractItemModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractItemModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractItemModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractItemModel + size=16 align=8 + base size=16 base align=8 +QAbstractItemModel (0x7f9ac2586850) 0 + vptr=((& QAbstractItemModel::_ZTV18QAbstractItemModel) + 16u) + QObject (0x7f9ac25868c0) 0 + primary-for QAbstractItemModel (0x7f9ac2586850) + +Vtable for QAbstractTableModel +QAbstractTableModel::_ZTV19QAbstractTableModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractTableModel) +16 QAbstractTableModel::metaObject +24 QAbstractTableModel::qt_metacast +32 QAbstractTableModel::qt_metacall +40 QAbstractTableModel::~QAbstractTableModel +48 QAbstractTableModel::~QAbstractTableModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractTableModel::index +120 QAbstractTableModel::parent +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractTableModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractTableModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractTableModel + size=16 align=8 + base size=16 base align=8 +QAbstractTableModel (0x7f9ac25e2b60) 0 + vptr=((& QAbstractTableModel::_ZTV19QAbstractTableModel) + 16u) + QAbstractItemModel (0x7f9ac25e2bd0) 0 + primary-for QAbstractTableModel (0x7f9ac25e2b60) + QObject (0x7f9ac25e2c40) 0 + primary-for QAbstractItemModel (0x7f9ac25e2bd0) + +Vtable for QAbstractListModel +QAbstractListModel::_ZTV18QAbstractListModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractListModel) +16 QAbstractListModel::metaObject +24 QAbstractListModel::qt_metacast +32 QAbstractListModel::qt_metacall +40 QAbstractListModel::~QAbstractListModel +48 QAbstractListModel::~QAbstractListModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractListModel::index +120 QAbstractListModel::parent +128 __cxa_pure_virtual +136 QAbstractListModel::columnCount +144 QAbstractListModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractListModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractListModel + size=16 align=8 + base size=16 base align=8 +QAbstractListModel (0x7f9ac26000e0) 0 + vptr=((& QAbstractListModel::_ZTV18QAbstractListModel) + 16u) + QAbstractItemModel (0x7f9ac2600150) 0 + primary-for QAbstractListModel (0x7f9ac26000e0) + QObject (0x7f9ac26001c0) 0 + primary-for QAbstractItemModel (0x7f9ac2600150) + +Class QBasicTimer + size=4 align=4 + base size=4 base align=4 +QBasicTimer (0x7f9ac2432230) 0 + +Vtable for QCoreApplication +QCoreApplication::_ZTV16QCoreApplication: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QCoreApplication) +16 QCoreApplication::metaObject +24 QCoreApplication::qt_metacast +32 QCoreApplication::qt_metacall +40 QCoreApplication::~QCoreApplication +48 QCoreApplication::~QCoreApplication +56 QCoreApplication::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCoreApplication::notify +120 QCoreApplication::compressEvent + +Class QCoreApplication + size=16 align=8 + base size=16 base align=8 +QCoreApplication (0x7f9ac243c620) 0 + vptr=((& QCoreApplication::_ZTV16QCoreApplication) + 16u) + QObject (0x7f9ac243c690) 0 + primary-for QCoreApplication (0x7f9ac243c620) + +Class __exception + size=40 align=8 + base size=40 base align=8 +__exception (0x7f9ac2470310) 0 + +Class QMetaMethod + size=16 align=8 + base size=12 base align=8 +QMetaMethod (0x7f9ac24dd770) 0 + +Class QMetaEnum + size=16 align=8 + base size=12 base align=8 +QMetaEnum (0x7f9ac24f6bd0) 0 + +Class QMetaProperty + size=32 align=8 + base size=32 base align=8 +QMetaProperty (0x7f9ac2505930) 0 + +Class QMetaClassInfo + size=16 align=8 + base size=12 base align=8 +QMetaClassInfo (0x7f9ac2517000) 0 + +Vtable for QMimeData +QMimeData::_ZTV9QMimeData: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QMimeData) +16 QMimeData::metaObject +24 QMimeData::qt_metacast +32 QMimeData::qt_metacall +40 QMimeData::~QMimeData +48 QMimeData::~QMimeData +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMimeData::hasFormat +120 QMimeData::formats +128 QMimeData::retrieveData + +Class QMimeData + size=16 align=8 + base size=16 base align=8 +QMimeData (0x7f9ac2517af0) 0 + vptr=((& QMimeData::_ZTV9QMimeData) + 16u) + QObject (0x7f9ac2517b60) 0 + primary-for QMimeData (0x7f9ac2517af0) + +Vtable for QObjectCleanupHandler +QObjectCleanupHandler::_ZTV21QObjectCleanupHandler: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QObjectCleanupHandler) +16 QObjectCleanupHandler::metaObject +24 QObjectCleanupHandler::qt_metacast +32 QObjectCleanupHandler::qt_metacall +40 QObjectCleanupHandler::~QObjectCleanupHandler +48 QObjectCleanupHandler::~QObjectCleanupHandler +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObjectCleanupHandler + size=24 align=8 + base size=24 base align=8 +QObjectCleanupHandler (0x7f9ac2339380) 0 + vptr=((& QObjectCleanupHandler::_ZTV21QObjectCleanupHandler) + 16u) + QObject (0x7f9ac23393f0) 0 + primary-for QObjectCleanupHandler (0x7f9ac2339380) + +Vtable for QSharedMemory +QSharedMemory::_ZTV13QSharedMemory: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSharedMemory) +16 QSharedMemory::metaObject +24 QSharedMemory::qt_metacast +32 QSharedMemory::qt_metacall +40 QSharedMemory::~QSharedMemory +48 QSharedMemory::~QSharedMemory +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSharedMemory + size=16 align=8 + base size=16 base align=8 +QSharedMemory (0x7f9ac234b4d0) 0 + vptr=((& QSharedMemory::_ZTV13QSharedMemory) + 16u) + QObject (0x7f9ac234b540) 0 + primary-for QSharedMemory (0x7f9ac234b4d0) + +Vtable for QSignalMapper +QSignalMapper::_ZTV13QSignalMapper: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSignalMapper) +16 QSignalMapper::metaObject +24 QSignalMapper::qt_metacast +32 QSignalMapper::qt_metacall +40 QSignalMapper::~QSignalMapper +48 QSignalMapper::~QSignalMapper +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSignalMapper + size=16 align=8 + base size=16 base align=8 +QSignalMapper (0x7f9ac23652a0) 0 + vptr=((& QSignalMapper::_ZTV13QSignalMapper) + 16u) + QObject (0x7f9ac2365310) 0 + primary-for QSignalMapper (0x7f9ac23652a0) + +Vtable for QSocketNotifier +QSocketNotifier::_ZTV15QSocketNotifier: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSocketNotifier) +16 QSocketNotifier::metaObject +24 QSocketNotifier::qt_metacast +32 QSocketNotifier::qt_metacall +40 QSocketNotifier::~QSocketNotifier +48 QSocketNotifier::~QSocketNotifier +56 QSocketNotifier::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSocketNotifier + size=32 align=8 + base size=25 base align=8 +QSocketNotifier (0x7f9ac2382690) 0 + vptr=((& QSocketNotifier::_ZTV15QSocketNotifier) + 16u) + QObject (0x7f9ac2382700) 0 + primary-for QSocketNotifier (0x7f9ac2382690) + +Class QSystemSemaphore + size=8 align=8 + base size=8 base align=8 +QSystemSemaphore (0x7f9ac239da10) 0 + +Vtable for QTimer +QTimer::_ZTV6QTimer: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QTimer) +16 QTimer::metaObject +24 QTimer::qt_metacast +32 QTimer::qt_metacall +40 QTimer::~QTimer +48 QTimer::~QTimer +56 QObject::event +64 QObject::eventFilter +72 QTimer::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTimer + size=32 align=8 + base size=29 base align=8 +QTimer (0x7f9ac23a6460) 0 + vptr=((& QTimer::_ZTV6QTimer) + 16u) + QObject (0x7f9ac23a64d0) 0 + primary-for QTimer (0x7f9ac23a6460) + +Vtable for QTranslator +QTranslator::_ZTV11QTranslator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTranslator) +16 QTranslator::metaObject +24 QTranslator::qt_metacast +32 QTranslator::qt_metacall +40 QTranslator::~QTranslator +48 QTranslator::~QTranslator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTranslator::translate +120 QTranslator::isEmpty + +Class QTranslator + size=16 align=8 + base size=16 base align=8 +QTranslator (0x7f9ac23ca9a0) 0 + vptr=((& QTranslator::_ZTV11QTranslator) + 16u) + QObject (0x7f9ac23caa10) 0 + primary-for QTranslator (0x7f9ac23ca9a0) + +Vtable for QLibrary +QLibrary::_ZTV8QLibrary: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QLibrary) +16 QLibrary::metaObject +24 QLibrary::qt_metacast +32 QLibrary::qt_metacall +40 QLibrary::~QLibrary +48 QLibrary::~QLibrary +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QLibrary + size=32 align=8 + base size=25 base align=8 +QLibrary (0x7f9ac23e4930) 0 + vptr=((& QLibrary::_ZTV8QLibrary) + 16u) + QObject (0x7f9ac23e49a0) 0 + primary-for QLibrary (0x7f9ac23e4930) + +Vtable for QPluginLoader +QPluginLoader::_ZTV13QPluginLoader: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QPluginLoader) +16 QPluginLoader::metaObject +24 QPluginLoader::qt_metacast +32 QPluginLoader::qt_metacall +40 QPluginLoader::~QPluginLoader +48 QPluginLoader::~QPluginLoader +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QPluginLoader + size=32 align=8 + base size=25 base align=8 +QPluginLoader (0x7f9ac22333f0) 0 + vptr=((& QPluginLoader::_ZTV13QPluginLoader) + 16u) + QObject (0x7f9ac2233460) 0 + primary-for QPluginLoader (0x7f9ac22333f0) + +Class QUuid + size=16 align=4 + base size=16 base align=4 +QUuid (0x7f9ac2241b60) 0 + +Class QReadWriteLock + size=8 align=8 + base size=8 base align=8 +QReadWriteLock (0x7f9ac22684d0) 0 + +Class QReadLocker + size=8 align=8 + base size=8 base align=8 +QReadLocker (0x7f9ac2268b60) 0 + +Class QWriteLocker + size=8 align=8 + base size=8 base align=8 +QWriteLocker (0x7f9ac2287ee0) 0 + +Class QThreadStorageData + size=4 align=4 + base size=4 base align=4 +QThreadStorageData (0x7f9ac22a02a0) 0 + +Vtable for QAbstractAnimation +QAbstractAnimation::_ZTV18QAbstractAnimation: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractAnimation) +16 QAbstractAnimation::metaObject +24 QAbstractAnimation::qt_metacast +32 QAbstractAnimation::qt_metacall +40 QAbstractAnimation::~QAbstractAnimation +48 QAbstractAnimation::~QAbstractAnimation +56 QAbstractAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAbstractAnimation::updateState +136 QAbstractAnimation::updateDirection + +Class QAbstractAnimation + size=16 align=8 + base size=16 base align=8 +QAbstractAnimation (0x7f9ac22a0a10) 0 + vptr=((& QAbstractAnimation::_ZTV18QAbstractAnimation) + 16u) + QObject (0x7f9ac22a0a80) 0 + primary-for QAbstractAnimation (0x7f9ac22a0a10) + +Vtable for QAnimationGroup +QAnimationGroup::_ZTV15QAnimationGroup: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QAnimationGroup) +16 QAnimationGroup::metaObject +24 QAnimationGroup::qt_metacast +32 QAnimationGroup::qt_metacall +40 QAnimationGroup::~QAnimationGroup +48 QAnimationGroup::~QAnimationGroup +56 QAnimationGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAbstractAnimation::updateState +136 QAbstractAnimation::updateDirection + +Class QAnimationGroup + size=16 align=8 + base size=16 base align=8 +QAnimationGroup (0x7f9ac22d6150) 0 + vptr=((& QAnimationGroup::_ZTV15QAnimationGroup) + 16u) + QAbstractAnimation (0x7f9ac22d61c0) 0 + primary-for QAnimationGroup (0x7f9ac22d6150) + QObject (0x7f9ac22d6230) 0 + primary-for QAbstractAnimation (0x7f9ac22d61c0) + +Vtable for QParallelAnimationGroup +QParallelAnimationGroup::_ZTV23QParallelAnimationGroup: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QParallelAnimationGroup) +16 QParallelAnimationGroup::metaObject +24 QParallelAnimationGroup::qt_metacast +32 QParallelAnimationGroup::qt_metacall +40 QParallelAnimationGroup::~QParallelAnimationGroup +48 QParallelAnimationGroup::~QParallelAnimationGroup +56 QParallelAnimationGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QParallelAnimationGroup::duration +120 QParallelAnimationGroup::updateCurrentTime +128 QParallelAnimationGroup::updateState +136 QParallelAnimationGroup::updateDirection + +Class QParallelAnimationGroup + size=16 align=8 + base size=16 base align=8 +QParallelAnimationGroup (0x7f9ac22f2000) 0 + vptr=((& QParallelAnimationGroup::_ZTV23QParallelAnimationGroup) + 16u) + QAnimationGroup (0x7f9ac22f2070) 0 + primary-for QParallelAnimationGroup (0x7f9ac22f2000) + QAbstractAnimation (0x7f9ac22f20e0) 0 + primary-for QAnimationGroup (0x7f9ac22f2070) + QObject (0x7f9ac22f2150) 0 + primary-for QAbstractAnimation (0x7f9ac22f20e0) + +Vtable for QPauseAnimation +QPauseAnimation::_ZTV15QPauseAnimation: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QPauseAnimation) +16 QPauseAnimation::metaObject +24 QPauseAnimation::qt_metacast +32 QPauseAnimation::qt_metacall +40 QPauseAnimation::~QPauseAnimation +48 QPauseAnimation::~QPauseAnimation +56 QPauseAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QPauseAnimation::duration +120 QPauseAnimation::updateCurrentTime +128 QAbstractAnimation::updateState +136 QAbstractAnimation::updateDirection + +Class QPauseAnimation + size=16 align=8 + base size=16 base align=8 +QPauseAnimation (0x7f9ac2300e70) 0 + vptr=((& QPauseAnimation::_ZTV15QPauseAnimation) + 16u) + QAbstractAnimation (0x7f9ac2300ee0) 0 + primary-for QPauseAnimation (0x7f9ac2300e70) + QObject (0x7f9ac2300f50) 0 + primary-for QAbstractAnimation (0x7f9ac2300ee0) + +Vtable for QVariantAnimation +QVariantAnimation::_ZTV17QVariantAnimation: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QVariantAnimation) +16 QVariantAnimation::metaObject +24 QVariantAnimation::qt_metacast +32 QVariantAnimation::qt_metacall +40 QVariantAnimation::~QVariantAnimation +48 QVariantAnimation::~QVariantAnimation +56 QVariantAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QVariantAnimation::duration +120 QVariantAnimation::updateCurrentTime +128 QVariantAnimation::updateState +136 QAbstractAnimation::updateDirection +144 __cxa_pure_virtual +152 QVariantAnimation::interpolated + +Class QVariantAnimation + size=16 align=8 + base size=16 base align=8 +QVariantAnimation (0x7f9ac231e8c0) 0 + vptr=((& QVariantAnimation::_ZTV17QVariantAnimation) + 16u) + QAbstractAnimation (0x7f9ac231e930) 0 + primary-for QVariantAnimation (0x7f9ac231e8c0) + QObject (0x7f9ac231e9a0) 0 + primary-for QAbstractAnimation (0x7f9ac231e930) + +Vtable for QPropertyAnimation +QPropertyAnimation::_ZTV18QPropertyAnimation: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QPropertyAnimation) +16 QPropertyAnimation::metaObject +24 QPropertyAnimation::qt_metacast +32 QPropertyAnimation::qt_metacall +40 QPropertyAnimation::~QPropertyAnimation +48 QPropertyAnimation::~QPropertyAnimation +56 QPropertyAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QVariantAnimation::duration +120 QVariantAnimation::updateCurrentTime +128 QPropertyAnimation::updateState +136 QAbstractAnimation::updateDirection +144 QPropertyAnimation::updateCurrentValue +152 QVariantAnimation::interpolated + +Class QPropertyAnimation + size=16 align=8 + base size=16 base align=8 +QPropertyAnimation (0x7f9ac213ab60) 0 + vptr=((& QPropertyAnimation::_ZTV18QPropertyAnimation) + 16u) + QVariantAnimation (0x7f9ac213abd0) 0 + primary-for QPropertyAnimation (0x7f9ac213ab60) + QAbstractAnimation (0x7f9ac213ac40) 0 + primary-for QVariantAnimation (0x7f9ac213abd0) + QObject (0x7f9ac213acb0) 0 + primary-for QAbstractAnimation (0x7f9ac213ac40) + +Vtable for QSequentialAnimationGroup +QSequentialAnimationGroup::_ZTV25QSequentialAnimationGroup: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QSequentialAnimationGroup) +16 QSequentialAnimationGroup::metaObject +24 QSequentialAnimationGroup::qt_metacast +32 QSequentialAnimationGroup::qt_metacall +40 QSequentialAnimationGroup::~QSequentialAnimationGroup +48 QSequentialAnimationGroup::~QSequentialAnimationGroup +56 QSequentialAnimationGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QSequentialAnimationGroup::duration +120 QSequentialAnimationGroup::updateCurrentTime +128 QSequentialAnimationGroup::updateState +136 QSequentialAnimationGroup::updateDirection + +Class QSequentialAnimationGroup + size=16 align=8 + base size=16 base align=8 +QSequentialAnimationGroup (0x7f9ac2154b60) 0 + vptr=((& QSequentialAnimationGroup::_ZTV25QSequentialAnimationGroup) + 16u) + QAnimationGroup (0x7f9ac2154bd0) 0 + primary-for QSequentialAnimationGroup (0x7f9ac2154b60) + QAbstractAnimation (0x7f9ac2154c40) 0 + primary-for QAnimationGroup (0x7f9ac2154bd0) + QObject (0x7f9ac2154cb0) 0 + primary-for QAbstractAnimation (0x7f9ac2154c40) + +Class QSslCertificate + size=8 align=8 + base size=8 base align=8 +QSslCertificate (0x7f9ac216ebd0) 0 + +Class QSslCipher + size=8 align=8 + base size=8 base align=8 +QSslCipher (0x7f9ac2187770) 0 + +Vtable for QAbstractSocket +QAbstractSocket::_ZTV15QAbstractSocket: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QAbstractSocket) +16 QAbstractSocket::metaObject +24 QAbstractSocket::qt_metacast +32 QAbstractSocket::qt_metacall +40 QAbstractSocket::~QAbstractSocket +48 QAbstractSocket::~QAbstractSocket +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractSocket::isSequential +120 QIODevice::open +128 QAbstractSocket::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QAbstractSocket::atEnd +168 QIODevice::reset +176 QAbstractSocket::bytesAvailable +184 QAbstractSocket::bytesToWrite +192 QAbstractSocket::canReadLine +200 QAbstractSocket::waitForReadyRead +208 QAbstractSocket::waitForBytesWritten +216 QAbstractSocket::readData +224 QAbstractSocket::readLineData +232 QAbstractSocket::writeData + +Class QAbstractSocket + size=16 align=8 + base size=16 base align=8 +QAbstractSocket (0x7f9ac21a80e0) 0 + vptr=((& QAbstractSocket::_ZTV15QAbstractSocket) + 16u) + QIODevice (0x7f9ac21a8150) 0 + primary-for QAbstractSocket (0x7f9ac21a80e0) + QObject (0x7f9ac21a81c0) 0 + primary-for QIODevice (0x7f9ac21a8150) + +Vtable for QTcpSocket +QTcpSocket::_ZTV10QTcpSocket: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTcpSocket) +16 QTcpSocket::metaObject +24 QTcpSocket::qt_metacast +32 QTcpSocket::qt_metacall +40 QTcpSocket::~QTcpSocket +48 QTcpSocket::~QTcpSocket +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractSocket::isSequential +120 QIODevice::open +128 QAbstractSocket::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QAbstractSocket::atEnd +168 QIODevice::reset +176 QAbstractSocket::bytesAvailable +184 QAbstractSocket::bytesToWrite +192 QAbstractSocket::canReadLine +200 QAbstractSocket::waitForReadyRead +208 QAbstractSocket::waitForBytesWritten +216 QAbstractSocket::readData +224 QAbstractSocket::readLineData +232 QAbstractSocket::writeData + +Class QTcpSocket + size=16 align=8 + base size=16 base align=8 +QTcpSocket (0x7f9ac21e2a10) 0 + vptr=((& QTcpSocket::_ZTV10QTcpSocket) + 16u) + QAbstractSocket (0x7f9ac21e2a80) 0 + primary-for QTcpSocket (0x7f9ac21e2a10) + QIODevice (0x7f9ac21e2af0) 0 + primary-for QAbstractSocket (0x7f9ac21e2a80) + QObject (0x7f9ac21e2b60) 0 + primary-for QIODevice (0x7f9ac21e2af0) + +Class QSslError + size=8 align=8 + base size=8 base align=8 +QSslError (0x7f9ac21fe4d0) 0 + +Vtable for QSslSocket +QSslSocket::_ZTV10QSslSocket: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QSslSocket) +16 QSslSocket::metaObject +24 QSslSocket::qt_metacast +32 QSslSocket::qt_metacall +40 QSslSocket::~QSslSocket +48 QSslSocket::~QSslSocket +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractSocket::isSequential +120 QIODevice::open +128 QSslSocket::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QSslSocket::atEnd +168 QIODevice::reset +176 QSslSocket::bytesAvailable +184 QSslSocket::bytesToWrite +192 QSslSocket::canReadLine +200 QSslSocket::waitForReadyRead +208 QSslSocket::waitForBytesWritten +216 QSslSocket::readData +224 QAbstractSocket::readLineData +232 QSslSocket::writeData + +Class QSslSocket + size=16 align=8 + base size=16 base align=8 +QSslSocket (0x7f9ac220a3f0) 0 + vptr=((& QSslSocket::_ZTV10QSslSocket) + 16u) + QTcpSocket (0x7f9ac220a460) 0 + primary-for QSslSocket (0x7f9ac220a3f0) + QAbstractSocket (0x7f9ac220a4d0) 0 + primary-for QTcpSocket (0x7f9ac220a460) + QIODevice (0x7f9ac220a540) 0 + primary-for QAbstractSocket (0x7f9ac220a4d0) + QObject (0x7f9ac220a5b0) 0 + primary-for QIODevice (0x7f9ac220a540) + +Class QSslConfiguration + size=8 align=8 + base size=8 base align=8 +QSslConfiguration (0x7f9ac20494d0) 0 + +Class QSslKey + size=8 align=8 + base size=8 base align=8 +QSslKey (0x7f9ac20592a0) 0 + +Class QNetworkRequest + size=8 align=8 + base size=8 base align=8 +QNetworkRequest (0x7f9ac2059ee0) 0 + +Class QNetworkCacheMetaData + size=8 align=8 + base size=8 base align=8 +QNetworkCacheMetaData (0x7f9ac2089d90) 0 + +Vtable for QAbstractNetworkCache +QAbstractNetworkCache::_ZTV21QAbstractNetworkCache: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QAbstractNetworkCache) +16 QAbstractNetworkCache::metaObject +24 QAbstractNetworkCache::qt_metacast +32 QAbstractNetworkCache::qt_metacall +40 QAbstractNetworkCache::~QAbstractNetworkCache +48 QAbstractNetworkCache::~QAbstractNetworkCache +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QAbstractNetworkCache + size=16 align=8 + base size=16 base align=8 +QAbstractNetworkCache (0x7f9ac20b8000) 0 + vptr=((& QAbstractNetworkCache::_ZTV21QAbstractNetworkCache) + 16u) + QObject (0x7f9ac20b8070) 0 + primary-for QAbstractNetworkCache (0x7f9ac20b8000) + +Vtable for QUrlInfo +QUrlInfo::_ZTV8QUrlInfo: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QUrlInfo) +16 QUrlInfo::~QUrlInfo +24 QUrlInfo::~QUrlInfo +32 QUrlInfo::setName +40 QUrlInfo::setDir +48 QUrlInfo::setFile +56 QUrlInfo::setSymLink +64 QUrlInfo::setOwner +72 QUrlInfo::setGroup +80 QUrlInfo::setSize +88 QUrlInfo::setWritable +96 QUrlInfo::setReadable +104 QUrlInfo::setPermissions +112 QUrlInfo::setLastModified + +Class QUrlInfo + size=16 align=8 + base size=16 base align=8 +QUrlInfo (0x7f9ac20cc9a0) 0 + vptr=((& QUrlInfo::_ZTV8QUrlInfo) + 16u) + +Vtable for QFtp +QFtp::_ZTV4QFtp: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI4QFtp) +16 QFtp::metaObject +24 QFtp::qt_metacast +32 QFtp::qt_metacall +40 QFtp::~QFtp +48 QFtp::~QFtp +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QFtp + size=16 align=8 + base size=16 base align=8 +QFtp (0x7f9ac20e2930) 0 + vptr=((& QFtp::_ZTV4QFtp) + 16u) + QObject (0x7f9ac20e29a0) 0 + primary-for QFtp (0x7f9ac20e2930) + +Vtable for QHttpHeader +QHttpHeader::_ZTV11QHttpHeader: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QHttpHeader) +16 QHttpHeader::~QHttpHeader +24 QHttpHeader::~QHttpHeader +32 QHttpHeader::toString +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QHttpHeader::parseLine + +Class QHttpHeader + size=16 align=8 + base size=16 base align=8 +QHttpHeader (0x7f9ac210bf50) 0 + vptr=((& QHttpHeader::_ZTV11QHttpHeader) + 16u) + +Vtable for QHttpResponseHeader +QHttpResponseHeader::_ZTV19QHttpResponseHeader: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QHttpResponseHeader) +16 QHttpResponseHeader::~QHttpResponseHeader +24 QHttpResponseHeader::~QHttpResponseHeader +32 QHttpResponseHeader::toString +40 QHttpResponseHeader::majorVersion +48 QHttpResponseHeader::minorVersion +56 QHttpResponseHeader::parseLine + +Class QHttpResponseHeader + size=16 align=8 + base size=16 base align=8 +QHttpResponseHeader (0x7f9ac2113e70) 0 + vptr=((& QHttpResponseHeader::_ZTV19QHttpResponseHeader) + 16u) + QHttpHeader (0x7f9ac2113ee0) 0 + primary-for QHttpResponseHeader (0x7f9ac2113e70) + +Vtable for QHttpRequestHeader +QHttpRequestHeader::_ZTV18QHttpRequestHeader: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QHttpRequestHeader) +16 QHttpRequestHeader::~QHttpRequestHeader +24 QHttpRequestHeader::~QHttpRequestHeader +32 QHttpRequestHeader::toString +40 QHttpRequestHeader::majorVersion +48 QHttpRequestHeader::minorVersion +56 QHttpRequestHeader::parseLine + +Class QHttpRequestHeader + size=16 align=8 + base size=16 base align=8 +QHttpRequestHeader (0x7f9ac1f2daf0) 0 + vptr=((& QHttpRequestHeader::_ZTV18QHttpRequestHeader) + 16u) + QHttpHeader (0x7f9ac1f2db60) 0 + primary-for QHttpRequestHeader (0x7f9ac1f2daf0) + +Vtable for QHttp +QHttp::_ZTV5QHttp: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QHttp) +16 QHttp::metaObject +24 QHttp::qt_metacast +32 QHttp::qt_metacall +40 QHttp::~QHttp +48 QHttp::~QHttp +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QHttp + size=16 align=8 + base size=16 base align=8 +QHttp (0x7f9ac1f39700) 0 + vptr=((& QHttp::_ZTV5QHttp) + 16u) + QObject (0x7f9ac1f39770) 0 + primary-for QHttp (0x7f9ac1f39700) + +Vtable for QNetworkAccessManager +QNetworkAccessManager::_ZTV21QNetworkAccessManager: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QNetworkAccessManager) +16 QNetworkAccessManager::metaObject +24 QNetworkAccessManager::qt_metacast +32 QNetworkAccessManager::qt_metacall +40 QNetworkAccessManager::~QNetworkAccessManager +48 QNetworkAccessManager::~QNetworkAccessManager +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QNetworkAccessManager::createRequest + +Class QNetworkAccessManager + size=16 align=8 + base size=16 base align=8 +QNetworkAccessManager (0x7f9ac1f738c0) 0 + vptr=((& QNetworkAccessManager::_ZTV21QNetworkAccessManager) + 16u) + QObject (0x7f9ac1f73930) 0 + primary-for QNetworkAccessManager (0x7f9ac1f738c0) + +Class QNetworkCookie + size=8 align=8 + base size=8 base align=8 +QNetworkCookie (0x7f9ac1f88e00) 0 + +Vtable for QNetworkCookieJar +QNetworkCookieJar::_ZTV17QNetworkCookieJar: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QNetworkCookieJar) +16 QNetworkCookieJar::metaObject +24 QNetworkCookieJar::qt_metacast +32 QNetworkCookieJar::qt_metacall +40 QNetworkCookieJar::~QNetworkCookieJar +48 QNetworkCookieJar::~QNetworkCookieJar +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QNetworkCookieJar::cookiesForUrl +120 QNetworkCookieJar::setCookiesFromUrl + +Class QNetworkCookieJar + size=16 align=8 + base size=16 base align=8 +QNetworkCookieJar (0x7f9ac1f93f50) 0 + vptr=((& QNetworkCookieJar::_ZTV17QNetworkCookieJar) + 16u) + QObject (0x7f9ac1f939a0) 0 + primary-for QNetworkCookieJar (0x7f9ac1f93f50) + +Vtable for QNetworkDiskCache +QNetworkDiskCache::_ZTV17QNetworkDiskCache: 23u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QNetworkDiskCache) +16 QNetworkDiskCache::metaObject +24 QNetworkDiskCache::qt_metacast +32 QNetworkDiskCache::qt_metacall +40 QNetworkDiskCache::~QNetworkDiskCache +48 QNetworkDiskCache::~QNetworkDiskCache +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QNetworkDiskCache::metaData +120 QNetworkDiskCache::updateMetaData +128 QNetworkDiskCache::data +136 QNetworkDiskCache::remove +144 QNetworkDiskCache::cacheSize +152 QNetworkDiskCache::prepare +160 QNetworkDiskCache::insert +168 QNetworkDiskCache::clear +176 QNetworkDiskCache::expire + +Class QNetworkDiskCache + size=16 align=8 + base size=16 base align=8 +QNetworkDiskCache (0x7f9ac1fc0e00) 0 + vptr=((& QNetworkDiskCache::_ZTV17QNetworkDiskCache) + 16u) + QAbstractNetworkCache (0x7f9ac1fc0e70) 0 + primary-for QNetworkDiskCache (0x7f9ac1fc0e00) + QObject (0x7f9ac1fc0ee0) 0 + primary-for QAbstractNetworkCache (0x7f9ac1fc0e70) + +Vtable for QNetworkReply +QNetworkReply::_ZTV13QNetworkReply: 33u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QNetworkReply) +16 QNetworkReply::metaObject +24 QNetworkReply::qt_metacast +32 QNetworkReply::qt_metacall +40 QNetworkReply::~QNetworkReply +48 QNetworkReply::~QNetworkReply +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QNetworkReply::isSequential +120 QIODevice::open +128 QNetworkReply::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QIODevice::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 __cxa_pure_virtual +224 QIODevice::readLineData +232 QNetworkReply::writeData +240 __cxa_pure_virtual +248 QNetworkReply::setReadBufferSize +256 QNetworkReply::ignoreSslErrors + +Class QNetworkReply + size=16 align=8 + base size=16 base align=8 +QNetworkReply (0x7f9ac1fe5770) 0 + vptr=((& QNetworkReply::_ZTV13QNetworkReply) + 16u) + QIODevice (0x7f9ac1fe57e0) 0 + primary-for QNetworkReply (0x7f9ac1fe5770) + QObject (0x7f9ac1fe5850) 0 + primary-for QIODevice (0x7f9ac1fe57e0) + +Class QAuthenticator + size=8 align=8 + base size=8 base align=8 +QAuthenticator (0x7f9ac200b3f0) 0 + +Class QIPv6Address + size=16 align=1 + base size=16 base align=1 +QIPv6Address (0x7f9ac200bcb0) 0 + +Class QHostAddress + size=8 align=8 + base size=8 base align=8 +QHostAddress (0x7f9ac2017310) 0 + +Class QHostInfo + size=8 align=8 + base size=8 base align=8 +QHostInfo (0x7f9ac1e49310) 0 + +Class QNetworkAddressEntry + size=8 align=8 + base size=8 base align=8 +QNetworkAddressEntry (0x7f9ac1e49c40) 0 + +Class QNetworkInterface + size=8 align=8 + base size=8 base align=8 +QNetworkInterface (0x7f9ac1e61540) 0 + +Class QNetworkProxyQuery + size=8 align=8 + base size=8 base align=8 +QNetworkProxyQuery (0x7f9ac1eae230) 0 + +Class QNetworkProxy + size=8 align=8 + base size=8 base align=8 +QNetworkProxy (0x7f9ac1ec74d0) 0 + +Vtable for QNetworkProxyFactory +QNetworkProxyFactory::_ZTV20QNetworkProxyFactory: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QNetworkProxyFactory) +16 QNetworkProxyFactory::~QNetworkProxyFactory +24 QNetworkProxyFactory::~QNetworkProxyFactory +32 __cxa_pure_virtual + +Class QNetworkProxyFactory + size=8 align=8 + base size=8 base align=8 +QNetworkProxyFactory (0x7f9ac1f06930) 0 nearly-empty + vptr=((& QNetworkProxyFactory::_ZTV20QNetworkProxyFactory) + 16u) + +Vtable for QLocalServer +QLocalServer::_ZTV12QLocalServer: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QLocalServer) +16 QLocalServer::metaObject +24 QLocalServer::qt_metacast +32 QLocalServer::qt_metacall +40 QLocalServer::~QLocalServer +48 QLocalServer::~QLocalServer +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QLocalServer::hasPendingConnections +120 QLocalServer::nextPendingConnection +128 QLocalServer::incomingConnection + +Class QLocalServer + size=16 align=8 + base size=16 base align=8 +QLocalServer (0x7f9ac1f06c40) 0 + vptr=((& QLocalServer::_ZTV12QLocalServer) + 16u) + QObject (0x7f9ac1f06cb0) 0 + primary-for QLocalServer (0x7f9ac1f06c40) + +Vtable for QLocalSocket +QLocalSocket::_ZTV12QLocalSocket: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QLocalSocket) +16 QLocalSocket::metaObject +24 QLocalSocket::qt_metacast +32 QLocalSocket::qt_metacall +40 QLocalSocket::~QLocalSocket +48 QLocalSocket::~QLocalSocket +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QLocalSocket::isSequential +120 QIODevice::open +128 QLocalSocket::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QIODevice::atEnd +168 QIODevice::reset +176 QLocalSocket::bytesAvailable +184 QLocalSocket::bytesToWrite +192 QLocalSocket::canReadLine +200 QLocalSocket::waitForReadyRead +208 QLocalSocket::waitForBytesWritten +216 QLocalSocket::readData +224 QIODevice::readLineData +232 QLocalSocket::writeData + +Class QLocalSocket + size=16 align=8 + base size=16 base align=8 +QLocalSocket (0x7f9ac1d35620) 0 + vptr=((& QLocalSocket::_ZTV12QLocalSocket) + 16u) + QIODevice (0x7f9ac1d35690) 0 + primary-for QLocalSocket (0x7f9ac1d35620) + QObject (0x7f9ac1d35700) 0 + primary-for QIODevice (0x7f9ac1d35690) + +Vtable for QTcpServer +QTcpServer::_ZTV10QTcpServer: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTcpServer) +16 QTcpServer::metaObject +24 QTcpServer::qt_metacast +32 QTcpServer::qt_metacall +40 QTcpServer::~QTcpServer +48 QTcpServer::~QTcpServer +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTcpServer::hasPendingConnections +120 QTcpServer::nextPendingConnection +128 QTcpServer::incomingConnection + +Class QTcpServer + size=16 align=8 + base size=16 base align=8 +QTcpServer (0x7f9ac1d5a7e0) 0 + vptr=((& QTcpServer::_ZTV10QTcpServer) + 16u) + QObject (0x7f9ac1d5a850) 0 + primary-for QTcpServer (0x7f9ac1d5a7e0) + +Vtable for QUdpSocket +QUdpSocket::_ZTV10QUdpSocket: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QUdpSocket) +16 QUdpSocket::metaObject +24 QUdpSocket::qt_metacast +32 QUdpSocket::qt_metacall +40 QUdpSocket::~QUdpSocket +48 QUdpSocket::~QUdpSocket +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractSocket::isSequential +120 QIODevice::open +128 QAbstractSocket::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QAbstractSocket::atEnd +168 QIODevice::reset +176 QAbstractSocket::bytesAvailable +184 QAbstractSocket::bytesToWrite +192 QAbstractSocket::canReadLine +200 QAbstractSocket::waitForReadyRead +208 QAbstractSocket::waitForBytesWritten +216 QAbstractSocket::readData +224 QAbstractSocket::readLineData +232 QAbstractSocket::writeData + +Class QUdpSocket + size=16 align=8 + base size=16 base align=8 +QUdpSocket (0x7f9ac1d76310) 0 + vptr=((& QUdpSocket::_ZTV10QUdpSocket) + 16u) + QAbstractSocket (0x7f9ac1d76380) 0 + primary-for QUdpSocket (0x7f9ac1d76310) + QIODevice (0x7f9ac1d763f0) 0 + primary-for QAbstractSocket (0x7f9ac1d76380) + QObject (0x7f9ac1d76460) 0 + primary-for QIODevice (0x7f9ac1d763f0) + +Class QSourceLocation + size=24 align=8 + base size=24 base align=8 +QSourceLocation (0x7f9ac1dc3070) 0 + +Vtable for QAbstractMessageHandler +QAbstractMessageHandler::_ZTV23QAbstractMessageHandler: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QAbstractMessageHandler) +16 QAbstractMessageHandler::metaObject +24 QAbstractMessageHandler::qt_metacast +32 QAbstractMessageHandler::qt_metacall +40 QAbstractMessageHandler::~QAbstractMessageHandler +48 QAbstractMessageHandler::~QAbstractMessageHandler +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual + +Class QAbstractMessageHandler + size=16 align=8 + base size=16 base align=8 +QAbstractMessageHandler (0x7f9ac1dc3d20) 0 + vptr=((& QAbstractMessageHandler::_ZTV23QAbstractMessageHandler) + 16u) + QObject (0x7f9ac1dc3d90) 0 + primary-for QAbstractMessageHandler (0x7f9ac1dc3d20) + +Vtable for QAbstractUriResolver +QAbstractUriResolver::_ZTV20QAbstractUriResolver: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QAbstractUriResolver) +16 QAbstractUriResolver::metaObject +24 QAbstractUriResolver::qt_metacast +32 QAbstractUriResolver::qt_metacall +40 QAbstractUriResolver::~QAbstractUriResolver +48 QAbstractUriResolver::~QAbstractUriResolver +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual + +Class QAbstractUriResolver + size=16 align=8 + base size=16 base align=8 +QAbstractUriResolver (0x7f9ac1de8700) 0 + vptr=((& QAbstractUriResolver::_ZTV20QAbstractUriResolver) + 16u) + QObject (0x7f9ac1de8770) 0 + primary-for QAbstractUriResolver (0x7f9ac1de8700) + +Class QXmlName + size=8 align=8 + base size=8 base align=8 +QXmlName (0x7f9ac1e01000) 0 + +Class QPatternist::NodeIndexStorage + size=24 align=8 + base size=24 base align=8 +QPatternist::NodeIndexStorage (0x7f9ac1e1a3f0) 0 + +Class QXmlNodeModelIndex + size=24 align=8 + base size=24 base align=8 +QXmlNodeModelIndex (0x7f9ac1e1ab60) 0 + +Vtable for QAbstractXmlNodeModel +QAbstractXmlNodeModel::_ZTV21QAbstractXmlNodeModel: 24u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QAbstractXmlNodeModel) +16 QAbstractXmlNodeModel::~QAbstractXmlNodeModel +24 QAbstractXmlNodeModel::~QAbstractXmlNodeModel +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 QAbstractXmlNodeModel::iterate +104 QAbstractXmlNodeModel::sequencedTypedValue +112 QAbstractXmlNodeModel::type +120 QAbstractXmlNodeModel::namespaceForPrefix +128 QAbstractXmlNodeModel::isDeepEqual +136 QAbstractXmlNodeModel::sendNamespaces +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 QAbstractXmlNodeModel::copyNodeTo +176 __cxa_pure_virtual +184 __cxa_pure_virtual + +Class QAbstractXmlNodeModel + size=24 align=8 + base size=24 base align=8 +QAbstractXmlNodeModel (0x7f9ac1c861c0) 0 + vptr=((& QAbstractXmlNodeModel::_ZTV21QAbstractXmlNodeModel) + 16u) + QSharedData (0x7f9ac1c86230) 8 + +Class QXmlItem + size=24 align=8 + base size=24 base align=8 +QXmlItem (0x7f9ac1c94e70) 0 + +Vtable for QAbstractXmlReceiver +QAbstractXmlReceiver::_ZTV20QAbstractXmlReceiver: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QAbstractXmlReceiver) +16 QAbstractXmlReceiver::~QAbstractXmlReceiver +24 QAbstractXmlReceiver::~QAbstractXmlReceiver +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAbstractXmlReceiver::whitespaceOnly +136 QAbstractXmlReceiver::item + +Class QAbstractXmlReceiver + size=16 align=8 + base size=16 base align=8 +QAbstractXmlReceiver (0x7f9ac1cafd90) 0 + vptr=((& QAbstractXmlReceiver::_ZTV20QAbstractXmlReceiver) + 16u) + +Class QXmlNamePool + size=8 align=8 + base size=8 base align=8 +QXmlNamePool (0x7f9ac1cd15b0) 0 + +Class QXmlQuery + size=8 align=8 + base size=8 base align=8 +QXmlQuery (0x7f9ac1cd1c40) 0 + +Vtable for QSimpleXmlNodeModel +QSimpleXmlNodeModel::_ZTV19QSimpleXmlNodeModel: 24u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QSimpleXmlNodeModel) +16 QSimpleXmlNodeModel::~QSimpleXmlNodeModel +24 QSimpleXmlNodeModel::~QSimpleXmlNodeModel +32 QSimpleXmlNodeModel::baseUri +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 QSimpleXmlNodeModel::stringValue +88 __cxa_pure_virtual +96 QAbstractXmlNodeModel::iterate +104 QAbstractXmlNodeModel::sequencedTypedValue +112 QAbstractXmlNodeModel::type +120 QAbstractXmlNodeModel::namespaceForPrefix +128 QAbstractXmlNodeModel::isDeepEqual +136 QAbstractXmlNodeModel::sendNamespaces +144 QSimpleXmlNodeModel::namespaceBindings +152 QSimpleXmlNodeModel::elementById +160 QSimpleXmlNodeModel::nodesByIdref +168 QAbstractXmlNodeModel::copyNodeTo +176 __cxa_pure_virtual +184 __cxa_pure_virtual + +Class QSimpleXmlNodeModel + size=24 align=8 + base size=24 base align=8 +QSimpleXmlNodeModel (0x7f9ac1cec7e0) 0 + vptr=((& QSimpleXmlNodeModel::_ZTV19QSimpleXmlNodeModel) + 16u) + QAbstractXmlNodeModel (0x7f9ac1cec850) 0 + primary-for QSimpleXmlNodeModel (0x7f9ac1cec7e0) + QSharedData (0x7f9ac1cec8c0) 8 + +Vtable for QXmlSerializer +QXmlSerializer::_ZTV14QXmlSerializer: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QXmlSerializer) +16 QXmlSerializer::~QXmlSerializer +24 QXmlSerializer::~QXmlSerializer +32 QXmlSerializer::startElement +40 QXmlSerializer::endElement +48 QXmlSerializer::attribute +56 QXmlSerializer::comment +64 QXmlSerializer::characters +72 QXmlSerializer::startDocument +80 QXmlSerializer::endDocument +88 QXmlSerializer::processingInstruction +96 QXmlSerializer::atomicValue +104 QXmlSerializer::namespaceBinding +112 QXmlSerializer::startOfSequence +120 QXmlSerializer::endOfSequence +128 QAbstractXmlReceiver::whitespaceOnly +136 QXmlSerializer::item + +Class QXmlSerializer + size=16 align=8 + base size=16 base align=8 +QXmlSerializer (0x7f9ac1d01000) 0 + vptr=((& QXmlSerializer::_ZTV14QXmlSerializer) + 16u) + QAbstractXmlReceiver (0x7f9ac1d01070) 0 + primary-for QXmlSerializer (0x7f9ac1d01000) + +Vtable for QXmlFormatter +QXmlFormatter::_ZTV13QXmlFormatter: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QXmlFormatter) +16 QXmlFormatter::~QXmlFormatter +24 QXmlFormatter::~QXmlFormatter +32 QXmlFormatter::startElement +40 QXmlFormatter::endElement +48 QXmlFormatter::attribute +56 QXmlFormatter::comment +64 QXmlFormatter::characters +72 QXmlFormatter::startDocument +80 QXmlFormatter::endDocument +88 QXmlFormatter::processingInstruction +96 QXmlFormatter::atomicValue +104 QXmlSerializer::namespaceBinding +112 QXmlFormatter::startOfSequence +120 QXmlFormatter::endOfSequence +128 QAbstractXmlReceiver::whitespaceOnly +136 QXmlFormatter::item + +Class QXmlFormatter + size=16 align=8 + base size=16 base align=8 +QXmlFormatter (0x7f9ac1d017e0) 0 + vptr=((& QXmlFormatter::_ZTV13QXmlFormatter) + 16u) + QXmlSerializer (0x7f9ac1d01850) 0 + primary-for QXmlFormatter (0x7f9ac1d017e0) + QAbstractXmlReceiver (0x7f9ac1d018c0) 0 + primary-for QXmlSerializer (0x7f9ac1d01850) + +Vtable for QXmlResultItems +QXmlResultItems::_ZTV15QXmlResultItems: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QXmlResultItems) +16 QXmlResultItems::~QXmlResultItems +24 QXmlResultItems::~QXmlResultItems + +Class QXmlResultItems + size=16 align=8 + base size=16 base align=8 +QXmlResultItems (0x7f9ac1d01f50) 0 + vptr=((& QXmlResultItems::_ZTV15QXmlResultItems) + 16u) + +Class QXmlSchema + size=8 align=8 + base size=8 base align=8 +QXmlSchema (0x7f9ac1b24af0) 0 + +Class QXmlSchemaValidator + size=8 align=8 + base size=8 base align=8 +QXmlSchemaValidator (0x7f9ac1b24f50) 0 + +Vtable for QPaintDevice +QPaintDevice::_ZTV12QPaintDevice: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QPaintDevice) +16 QPaintDevice::~QPaintDevice +24 QPaintDevice::~QPaintDevice +32 QPaintDevice::devType +40 __cxa_pure_virtual +48 QPaintDevice::metric + +Class QPaintDevice + size=16 align=8 + base size=10 base align=8 +QPaintDevice (0x7f9ac1b454d0) 0 + vptr=((& QPaintDevice::_ZTV12QPaintDevice) + 16u) + +Class QColor + size=16 align=4 + base size=14 base align=4 +QColor (0x7f9ac1b7ae00) 0 + +Class QPolygon + size=8 align=8 + base size=8 base align=8 +QPolygon (0x7f9ac1bd8620) 0 + QVector (0x7f9ac1bd8690) 0 + +Class QPolygonF + size=8 align=8 + base size=8 base align=8 +QPolygonF (0x7f9ac1c1bb60) 0 + QVector (0x7f9ac1c1bbd0) 0 + +Class QRegion::QRegionData + size=32 align=8 + base size=32 base align=8 +QRegion::QRegionData (0x7f9ac1a7d5b0) 0 + +Class QRegion + size=8 align=8 + base size=8 base align=8 +QRegion (0x7f9ac1a58cb0) 0 + +Class QMatrix + size=48 align=8 + base size=48 base align=8 +QMatrix (0x7f9ac1a91e00) 0 + +Class QPainterPath::Element + size=24 align=8 + base size=24 base align=8 +QPainterPath::Element (0x7f9ac1ad2f50) 0 + +Class QPainterPath + size=8 align=8 + base size=8 base align=8 +QPainterPath (0x7f9ac1ad2ee0) 0 + +Class QPainterPathPrivate + size=16 align=8 + base size=16 base align=8 +QPainterPathPrivate (0x7f9ac192e690) 0 + +Class QPainterPathStroker + size=8 align=8 + base size=8 base align=8 +QPainterPathStroker (0x7f9ac19561c0) 0 + +Class QTransform + size=88 align=8 + base size=88 base align=8 +QTransform (0x7f9ac19ac1c0) 0 + +Class QImageTextKeyLang + size=16 align=8 + base size=16 base align=8 +QImageTextKeyLang (0x7f9ac18457e0) 0 + +Vtable for QImage +QImage::_ZTV6QImage: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QImage) +16 QImage::~QImage +24 QImage::~QImage +32 QImage::devType +40 QImage::paintEngine +48 QImage::metric + +Class QImage + size=24 align=8 + base size=24 base align=8 +QImage (0x7f9ac1899070) 0 + vptr=((& QImage::_ZTV6QImage) + 16u) + QPaintDevice (0x7f9ac18990e0) 0 + primary-for QImage (0x7f9ac1899070) + +Vtable for QPixmap +QPixmap::_ZTV7QPixmap: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QPixmap) +16 QPixmap::~QPixmap +24 QPixmap::~QPixmap +32 QPixmap::devType +40 QPixmap::paintEngine +48 QPixmap::metric + +Class QPixmap + size=24 align=8 + base size=24 base align=8 +QPixmap (0x7f9ac19137e0) 0 + vptr=((& QPixmap::_ZTV7QPixmap) + 16u) + QPaintDevice (0x7f9ac1913850) 0 + primary-for QPixmap (0x7f9ac19137e0) + +Class QIcon + size=8 align=8 + base size=8 base align=8 +QIcon (0x7f9ac1770af0) 0 + +Class QWebSettings + size=8 align=8 + base size=8 base align=8 +QWebSettings (0x7f9ac17a8700) 0 + +Class QBrush + size=8 align=8 + base size=8 base align=8 +QBrush (0x7f9ac17c4690) 0 + +Class QBrushData + size=112 align=8 + base size=112 base align=8 +QBrushData (0x7f9ac17ed0e0) 0 + +Class QGradient + size=64 align=8 + base size=64 base align=8 +QGradient (0x7f9ac18032a0) 0 + +Class QLinearGradient + size=64 align=8 + base size=64 base align=8 +QLinearGradient (0x7f9ac1810d90) 0 + QGradient (0x7f9ac1810e00) 0 + +Class QRadialGradient + size=64 align=8 + base size=64 base align=8 +QRadialGradient (0x7f9ac163b230) 0 + QGradient (0x7f9ac163b2a0) 0 + +Class QConicalGradient + size=64 align=8 + base size=64 base align=8 +QConicalGradient (0x7f9ac163b7e0) 0 + QGradient (0x7f9ac163b850) 0 + +Class QPalette + size=16 align=8 + base size=12 base align=8 +QPalette (0x7f9ac163bb60) 0 + +Class QColorGroup + size=16 align=8 + base size=12 base align=8 +QColorGroup (0x7f9ac169d4d0) 0 + QPalette (0x7f9ac169d540) 0 + +Class QFont + size=16 align=8 + base size=12 base align=8 +QFont (0x7f9ac16d37e0) 0 + +Class QFontMetrics + size=8 align=8 + base size=8 base align=8 +QFontMetrics (0x7f9ac15104d0) 0 + +Class QFontMetricsF + size=8 align=8 + base size=8 base align=8 +QFontMetricsF (0x7f9ac1525930) 0 + +Class QFontInfo + size=8 align=8 + base size=8 base align=8 +QFontInfo (0x7f9ac1530850) 0 + +Class QSizePolicy + size=4 align=4 + base size=4 base align=4 +QSizePolicy (0x7f9ac1546380) 0 + +Class QCursor + size=8 align=8 + base size=8 base align=8 +QCursor (0x7f9ac1399380) 0 + +Class QKeySequence + size=8 align=8 + base size=8 base align=8 +QKeySequence (0x7f9ac1399b60) 0 + +Class QWidgetData + size=88 align=8 + base size=88 base align=8 +QWidgetData (0x7f9ac13df4d0) 0 + +Vtable for QWidget +QWidget::_ZTV7QWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QWidget) +16 QWidget::metaObject +24 QWidget::qt_metacast +32 QWidget::qt_metacall +40 QWidget::~QWidget +48 QWidget::~QWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI7QWidget) +464 QWidget::_ZThn16_N7QWidgetD1Ev +472 QWidget::_ZThn16_N7QWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWidget + size=40 align=8 + base size=40 base align=8 +QWidget (0x7f9ac13dea80) 0 + vptr=((& QWidget::_ZTV7QWidget) + 16u) + QObject (0x7f9ac13df540) 0 + primary-for QWidget (0x7f9ac13dea80) + QPaintDevice (0x7f9ac13df5b0) 16 + vptr=((& QWidget::_ZTV7QWidget) + 464u) + +Class QWebPage::ExtensionOption + size=1 align=1 + base size=0 base align=1 +QWebPage::ExtensionOption (0x7f9ac1367ee0) 0 empty + +Class QWebPage::ExtensionReturn + size=1 align=1 + base size=0 base align=1 +QWebPage::ExtensionReturn (0x7f9ac1367f50) 0 empty + +Class QWebPage::ChooseMultipleFilesExtensionOption + size=16 align=8 + base size=16 base align=8 +QWebPage::ChooseMultipleFilesExtensionOption (0x7f9ac1175000) 0 + QWebPage::ExtensionOption (0x7f9ac1175070) 0 empty + +Class QWebPage::ChooseMultipleFilesExtensionReturn + size=8 align=8 + base size=8 base align=8 +QWebPage::ChooseMultipleFilesExtensionReturn (0x7f9ac11750e0) 0 + QWebPage::ExtensionReturn (0x7f9ac1175150) 0 empty + +Class QWebPage::ErrorPageExtensionOption + size=32 align=8 + base size=32 base align=8 +QWebPage::ErrorPageExtensionOption (0x7f9ac11751c0) 0 + QWebPage::ExtensionOption (0x7f9ac1175230) 0 empty + +Class QWebPage::ErrorPageExtensionReturn + size=32 align=8 + base size=32 base align=8 +QWebPage::ErrorPageExtensionReturn (0x7f9ac11753f0) 0 + QWebPage::ExtensionReturn (0x7f9ac1175460) 0 empty + +Vtable for QWebPage +QWebPage::_ZTV8QWebPage: 26u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QWebPage) +16 QWebPage::metaObject +24 QWebPage::qt_metacast +32 QWebPage::qt_metacall +40 QWebPage::~QWebPage +48 QWebPage::~QWebPage +56 QWebPage::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWebPage::triggerAction +120 QWebPage::extension +128 QWebPage::supportsExtension +136 QWebPage::createWindow +144 QWebPage::createPlugin +152 QWebPage::acceptNavigationRequest +160 QWebPage::chooseFile +168 QWebPage::javaScriptAlert +176 QWebPage::javaScriptConfirm +184 QWebPage::javaScriptPrompt +192 QWebPage::javaScriptConsoleMessage +200 QWebPage::userAgentForUrl + +Class QWebPage + size=24 align=8 + base size=24 base align=8 +QWebPage (0x7f9ac13675b0) 0 + vptr=((& QWebPage::_ZTV8QWebPage) + 16u) + QObject (0x7f9ac1367620) 0 + primary-for QWebPage (0x7f9ac13675b0) + +Vtable for QMimeSource +QMimeSource::_ZTV11QMimeSource: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMimeSource) +16 QMimeSource::~QMimeSource +24 QMimeSource::~QMimeSource +32 __cxa_pure_virtual +40 QMimeSource::provides +48 __cxa_pure_virtual + +Class QMimeSource + size=8 align=8 + base size=8 base align=8 +QMimeSource (0x7f9ac11bda10) 0 nearly-empty + vptr=((& QMimeSource::_ZTV11QMimeSource) + 16u) + +Vtable for QDrag +QDrag::_ZTV5QDrag: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QDrag) +16 QDrag::metaObject +24 QDrag::qt_metacast +32 QDrag::qt_metacall +40 QDrag::~QDrag +48 QDrag::~QDrag +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QDrag + size=16 align=8 + base size=16 base align=8 +QDrag (0x7f9ac11bdb60) 0 + vptr=((& QDrag::_ZTV5QDrag) + 16u) + QObject (0x7f9ac11bdbd0) 0 + primary-for QDrag (0x7f9ac11bdb60) + +Vtable for QInputEvent +QInputEvent::_ZTV11QInputEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QInputEvent) +16 QInputEvent::~QInputEvent +24 QInputEvent::~QInputEvent + +Class QInputEvent + size=24 align=8 + base size=24 base align=8 +QInputEvent (0x7f9ac11eb310) 0 + vptr=((& QInputEvent::_ZTV11QInputEvent) + 16u) + QEvent (0x7f9ac11eb380) 0 + primary-for QInputEvent (0x7f9ac11eb310) + +Vtable for QMouseEvent +QMouseEvent::_ZTV11QMouseEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QMouseEvent) +16 QMouseEvent::~QMouseEvent +24 QMouseEvent::~QMouseEvent + +Class QMouseEvent + size=48 align=8 + base size=48 base align=8 +QMouseEvent (0x7f9ac11ebbd0) 0 + vptr=((& QMouseEvent::_ZTV11QMouseEvent) + 16u) + QInputEvent (0x7f9ac11ebc40) 0 + primary-for QMouseEvent (0x7f9ac11ebbd0) + QEvent (0x7f9ac11ebcb0) 0 + primary-for QInputEvent (0x7f9ac11ebc40) + +Vtable for QHoverEvent +QHoverEvent::_ZTV11QHoverEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QHoverEvent) +16 QHoverEvent::~QHoverEvent +24 QHoverEvent::~QHoverEvent + +Class QHoverEvent + size=40 align=8 + base size=36 base align=8 +QHoverEvent (0x7f9ac120ca10) 0 + vptr=((& QHoverEvent::_ZTV11QHoverEvent) + 16u) + QEvent (0x7f9ac120ca80) 0 + primary-for QHoverEvent (0x7f9ac120ca10) + +Vtable for QWheelEvent +QWheelEvent::_ZTV11QWheelEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QWheelEvent) +16 QWheelEvent::~QWheelEvent +24 QWheelEvent::~QWheelEvent + +Class QWheelEvent + size=56 align=8 + base size=52 base align=8 +QWheelEvent (0x7f9ac12260e0) 0 + vptr=((& QWheelEvent::_ZTV11QWheelEvent) + 16u) + QInputEvent (0x7f9ac1226150) 0 + primary-for QWheelEvent (0x7f9ac12260e0) + QEvent (0x7f9ac12261c0) 0 + primary-for QInputEvent (0x7f9ac1226150) + +Vtable for QTabletEvent +QTabletEvent::_ZTV12QTabletEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTabletEvent) +16 QTabletEvent::~QTabletEvent +24 QTabletEvent::~QTabletEvent + +Class QTabletEvent + size=120 align=8 + base size=120 base align=8 +QTabletEvent (0x7f9ac1234ee0) 0 + vptr=((& QTabletEvent::_ZTV12QTabletEvent) + 16u) + QInputEvent (0x7f9ac1234f50) 0 + primary-for QTabletEvent (0x7f9ac1234ee0) + QEvent (0x7f9ac123c000) 0 + primary-for QInputEvent (0x7f9ac1234f50) + +Vtable for QKeyEvent +QKeyEvent::_ZTV9QKeyEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QKeyEvent) +16 QKeyEvent::~QKeyEvent +24 QKeyEvent::~QKeyEvent + +Class QKeyEvent + size=40 align=8 + base size=39 base align=8 +QKeyEvent (0x7f9ac1256230) 0 + vptr=((& QKeyEvent::_ZTV9QKeyEvent) + 16u) + QInputEvent (0x7f9ac12562a0) 0 + primary-for QKeyEvent (0x7f9ac1256230) + QEvent (0x7f9ac1256310) 0 + primary-for QInputEvent (0x7f9ac12562a0) + +Vtable for QFocusEvent +QFocusEvent::_ZTV11QFocusEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFocusEvent) +16 QFocusEvent::~QFocusEvent +24 QFocusEvent::~QFocusEvent + +Class QFocusEvent + size=24 align=8 + base size=24 base align=8 +QFocusEvent (0x7f9ac1078bd0) 0 + vptr=((& QFocusEvent::_ZTV11QFocusEvent) + 16u) + QEvent (0x7f9ac1078c40) 0 + primary-for QFocusEvent (0x7f9ac1078bd0) + +Vtable for QPaintEvent +QPaintEvent::_ZTV11QPaintEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QPaintEvent) +16 QPaintEvent::~QPaintEvent +24 QPaintEvent::~QPaintEvent + +Class QPaintEvent + size=56 align=8 + base size=49 base align=8 +QPaintEvent (0x7f9ac1084620) 0 + vptr=((& QPaintEvent::_ZTV11QPaintEvent) + 16u) + QEvent (0x7f9ac1084690) 0 + primary-for QPaintEvent (0x7f9ac1084620) + +Vtable for QUpdateLaterEvent +QUpdateLaterEvent::_ZTV17QUpdateLaterEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QUpdateLaterEvent) +16 QUpdateLaterEvent::~QUpdateLaterEvent +24 QUpdateLaterEvent::~QUpdateLaterEvent + +Class QUpdateLaterEvent + size=32 align=8 + base size=32 base align=8 +QUpdateLaterEvent (0x7f9ac10932a0) 0 + vptr=((& QUpdateLaterEvent::_ZTV17QUpdateLaterEvent) + 16u) + QEvent (0x7f9ac1093310) 0 + primary-for QUpdateLaterEvent (0x7f9ac10932a0) + +Vtable for QMoveEvent +QMoveEvent::_ZTV10QMoveEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QMoveEvent) +16 QMoveEvent::~QMoveEvent +24 QMoveEvent::~QMoveEvent + +Class QMoveEvent + size=40 align=8 + base size=36 base align=8 +QMoveEvent (0x7f9ac1093700) 0 + vptr=((& QMoveEvent::_ZTV10QMoveEvent) + 16u) + QEvent (0x7f9ac1093770) 0 + primary-for QMoveEvent (0x7f9ac1093700) + +Vtable for QResizeEvent +QResizeEvent::_ZTV12QResizeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QResizeEvent) +16 QResizeEvent::~QResizeEvent +24 QResizeEvent::~QResizeEvent + +Class QResizeEvent + size=40 align=8 + base size=36 base align=8 +QResizeEvent (0x7f9ac1093d90) 0 + vptr=((& QResizeEvent::_ZTV12QResizeEvent) + 16u) + QEvent (0x7f9ac1093e00) 0 + primary-for QResizeEvent (0x7f9ac1093d90) + +Vtable for QCloseEvent +QCloseEvent::_ZTV11QCloseEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QCloseEvent) +16 QCloseEvent::~QCloseEvent +24 QCloseEvent::~QCloseEvent + +Class QCloseEvent + size=24 align=8 + base size=20 base align=8 +QCloseEvent (0x7f9ac10a1310) 0 + vptr=((& QCloseEvent::_ZTV11QCloseEvent) + 16u) + QEvent (0x7f9ac10a1380) 0 + primary-for QCloseEvent (0x7f9ac10a1310) + +Vtable for QIconDragEvent +QIconDragEvent::_ZTV14QIconDragEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QIconDragEvent) +16 QIconDragEvent::~QIconDragEvent +24 QIconDragEvent::~QIconDragEvent + +Class QIconDragEvent + size=24 align=8 + base size=20 base align=8 +QIconDragEvent (0x7f9ac10a1540) 0 + vptr=((& QIconDragEvent::_ZTV14QIconDragEvent) + 16u) + QEvent (0x7f9ac10a15b0) 0 + primary-for QIconDragEvent (0x7f9ac10a1540) + +Vtable for QShowEvent +QShowEvent::_ZTV10QShowEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QShowEvent) +16 QShowEvent::~QShowEvent +24 QShowEvent::~QShowEvent + +Class QShowEvent + size=24 align=8 + base size=20 base align=8 +QShowEvent (0x7f9ac10a1770) 0 + vptr=((& QShowEvent::_ZTV10QShowEvent) + 16u) + QEvent (0x7f9ac10a17e0) 0 + primary-for QShowEvent (0x7f9ac10a1770) + +Vtable for QHideEvent +QHideEvent::_ZTV10QHideEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QHideEvent) +16 QHideEvent::~QHideEvent +24 QHideEvent::~QHideEvent + +Class QHideEvent + size=24 align=8 + base size=20 base align=8 +QHideEvent (0x7f9ac10a19a0) 0 + vptr=((& QHideEvent::_ZTV10QHideEvent) + 16u) + QEvent (0x7f9ac10a1a10) 0 + primary-for QHideEvent (0x7f9ac10a19a0) + +Vtable for QContextMenuEvent +QContextMenuEvent::_ZTV17QContextMenuEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QContextMenuEvent) +16 QContextMenuEvent::~QContextMenuEvent +24 QContextMenuEvent::~QContextMenuEvent + +Class QContextMenuEvent + size=48 align=8 + base size=41 base align=8 +QContextMenuEvent (0x7f9ac10a1bd0) 0 + vptr=((& QContextMenuEvent::_ZTV17QContextMenuEvent) + 16u) + QInputEvent (0x7f9ac10a1c40) 0 + primary-for QContextMenuEvent (0x7f9ac10a1bd0) + QEvent (0x7f9ac10a1cb0) 0 + primary-for QInputEvent (0x7f9ac10a1c40) + +Class QInputMethodEvent::Attribute + size=32 align=8 + base size=32 base align=8 +QInputMethodEvent::Attribute (0x7f9ac10bc770) 0 + +Vtable for QInputMethodEvent +QInputMethodEvent::_ZTV17QInputMethodEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QInputMethodEvent) +16 QInputMethodEvent::~QInputMethodEvent +24 QInputMethodEvent::~QInputMethodEvent + +Class QInputMethodEvent + size=56 align=8 + base size=56 base align=8 +QInputMethodEvent (0x7f9ac10bc690) 0 + vptr=((& QInputMethodEvent::_ZTV17QInputMethodEvent) + 16u) + QEvent (0x7f9ac10bc700) 0 + primary-for QInputMethodEvent (0x7f9ac10bc690) + +Vtable for QDropEvent +QDropEvent::_ZTV10QDropEvent: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QDropEvent) +16 QDropEvent::~QDropEvent +24 QDropEvent::~QDropEvent +32 QDropEvent::format +40 QDropEvent::encodedData +48 QDropEvent::provides +56 (int (*)(...))-0x00000000000000018 +64 (int (*)(...))(& _ZTI10QDropEvent) +72 QDropEvent::_ZThn24_N10QDropEventD1Ev +80 QDropEvent::_ZThn24_N10QDropEventD0Ev +88 QDropEvent::_ZThn24_NK10QDropEvent6formatEi +96 QDropEvent::_ZThn24_NK10QDropEvent8providesEPKc +104 QDropEvent::_ZThn24_NK10QDropEvent11encodedDataEPKc + +Class QDropEvent + size=80 align=8 + base size=80 base align=8 +QDropEvent (0x7f9ac10cae80) 0 + vptr=((& QDropEvent::_ZTV10QDropEvent) + 16u) + QEvent (0x7f9ac10f5e70) 0 + primary-for QDropEvent (0x7f9ac10cae80) + QMimeSource (0x7f9ac10f5ee0) 24 nearly-empty + vptr=((& QDropEvent::_ZTV10QDropEvent) + 72u) + +Vtable for QDragMoveEvent +QDragMoveEvent::_ZTV14QDragMoveEvent: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QDragMoveEvent) +16 QDragMoveEvent::~QDragMoveEvent +24 QDragMoveEvent::~QDragMoveEvent +32 QDropEvent::format +40 QDropEvent::encodedData +48 QDropEvent::provides +56 (int (*)(...))-0x00000000000000018 +64 (int (*)(...))(& _ZTI14QDragMoveEvent) +72 QDragMoveEvent::_ZThn24_N14QDragMoveEventD1Ev +80 QDragMoveEvent::_ZThn24_N14QDragMoveEventD0Ev +88 QDropEvent::_ZThn24_NK10QDropEvent6formatEi +96 QDropEvent::_ZThn24_NK10QDropEvent8providesEPKc +104 QDropEvent::_ZThn24_NK10QDropEvent11encodedDataEPKc + +Class QDragMoveEvent + size=96 align=8 + base size=96 base align=8 +QDragMoveEvent (0x7f9ac1110bd0) 0 + vptr=((& QDragMoveEvent::_ZTV14QDragMoveEvent) + 16u) + QDropEvent (0x7f9ac1113580) 0 + primary-for QDragMoveEvent (0x7f9ac1110bd0) + QEvent (0x7f9ac1110c40) 0 + primary-for QDropEvent (0x7f9ac1113580) + QMimeSource (0x7f9ac1110cb0) 24 nearly-empty + vptr=((& QDragMoveEvent::_ZTV14QDragMoveEvent) + 72u) + +Vtable for QDragEnterEvent +QDragEnterEvent::_ZTV15QDragEnterEvent: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QDragEnterEvent) +16 QDragEnterEvent::~QDragEnterEvent +24 QDragEnterEvent::~QDragEnterEvent +32 QDropEvent::format +40 QDropEvent::encodedData +48 QDropEvent::provides +56 (int (*)(...))-0x00000000000000018 +64 (int (*)(...))(& _ZTI15QDragEnterEvent) +72 QDragEnterEvent::_ZThn24_N15QDragEnterEventD1Ev +80 QDragEnterEvent::_ZThn24_N15QDragEnterEventD0Ev +88 QDropEvent::_ZThn24_NK10QDropEvent6formatEi +96 QDropEvent::_ZThn24_NK10QDropEvent8providesEPKc +104 QDropEvent::_ZThn24_NK10QDropEvent11encodedDataEPKc + +Class QDragEnterEvent + size=96 align=8 + base size=96 base align=8 +QDragEnterEvent (0x7f9ac1122380) 0 + vptr=((& QDragEnterEvent::_ZTV15QDragEnterEvent) + 16u) + QDragMoveEvent (0x7f9ac11223f0) 0 + primary-for QDragEnterEvent (0x7f9ac1122380) + QDropEvent (0x7f9ac1113f00) 0 + primary-for QDragMoveEvent (0x7f9ac11223f0) + QEvent (0x7f9ac1122460) 0 + primary-for QDropEvent (0x7f9ac1113f00) + QMimeSource (0x7f9ac11224d0) 24 nearly-empty + vptr=((& QDragEnterEvent::_ZTV15QDragEnterEvent) + 72u) + +Vtable for QDragResponseEvent +QDragResponseEvent::_ZTV18QDragResponseEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QDragResponseEvent) +16 QDragResponseEvent::~QDragResponseEvent +24 QDragResponseEvent::~QDragResponseEvent + +Class QDragResponseEvent + size=24 align=8 + base size=21 base align=8 +QDragResponseEvent (0x7f9ac1122690) 0 + vptr=((& QDragResponseEvent::_ZTV18QDragResponseEvent) + 16u) + QEvent (0x7f9ac1122700) 0 + primary-for QDragResponseEvent (0x7f9ac1122690) + +Vtable for QDragLeaveEvent +QDragLeaveEvent::_ZTV15QDragLeaveEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QDragLeaveEvent) +16 QDragLeaveEvent::~QDragLeaveEvent +24 QDragLeaveEvent::~QDragLeaveEvent + +Class QDragLeaveEvent + size=24 align=8 + base size=20 base align=8 +QDragLeaveEvent (0x7f9ac1122af0) 0 + vptr=((& QDragLeaveEvent::_ZTV15QDragLeaveEvent) + 16u) + QEvent (0x7f9ac1122b60) 0 + primary-for QDragLeaveEvent (0x7f9ac1122af0) + +Vtable for QHelpEvent +QHelpEvent::_ZTV10QHelpEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QHelpEvent) +16 QHelpEvent::~QHelpEvent +24 QHelpEvent::~QHelpEvent + +Class QHelpEvent + size=40 align=8 + base size=36 base align=8 +QHelpEvent (0x7f9ac1122d20) 0 + vptr=((& QHelpEvent::_ZTV10QHelpEvent) + 16u) + QEvent (0x7f9ac1122d90) 0 + primary-for QHelpEvent (0x7f9ac1122d20) + +Vtable for QStatusTipEvent +QStatusTipEvent::_ZTV15QStatusTipEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QStatusTipEvent) +16 QStatusTipEvent::~QStatusTipEvent +24 QStatusTipEvent::~QStatusTipEvent + +Class QStatusTipEvent + size=32 align=8 + base size=32 base align=8 +QStatusTipEvent (0x7f9ac1134d90) 0 + vptr=((& QStatusTipEvent::_ZTV15QStatusTipEvent) + 16u) + QEvent (0x7f9ac1134e00) 0 + primary-for QStatusTipEvent (0x7f9ac1134d90) + +Vtable for QWhatsThisClickedEvent +QWhatsThisClickedEvent::_ZTV22QWhatsThisClickedEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI22QWhatsThisClickedEvent) +16 QWhatsThisClickedEvent::~QWhatsThisClickedEvent +24 QWhatsThisClickedEvent::~QWhatsThisClickedEvent + +Class QWhatsThisClickedEvent + size=32 align=8 + base size=32 base align=8 +QWhatsThisClickedEvent (0x7f9ac113a230) 0 + vptr=((& QWhatsThisClickedEvent::_ZTV22QWhatsThisClickedEvent) + 16u) + QEvent (0x7f9ac113a2a0) 0 + primary-for QWhatsThisClickedEvent (0x7f9ac113a230) + +Vtable for QActionEvent +QActionEvent::_ZTV12QActionEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QActionEvent) +16 QActionEvent::~QActionEvent +24 QActionEvent::~QActionEvent + +Class QActionEvent + size=40 align=8 + base size=40 base align=8 +QActionEvent (0x7f9ac113a700) 0 + vptr=((& QActionEvent::_ZTV12QActionEvent) + 16u) + QEvent (0x7f9ac113a770) 0 + primary-for QActionEvent (0x7f9ac113a700) + +Vtable for QFileOpenEvent +QFileOpenEvent::_ZTV14QFileOpenEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QFileOpenEvent) +16 QFileOpenEvent::~QFileOpenEvent +24 QFileOpenEvent::~QFileOpenEvent + +Class QFileOpenEvent + size=32 align=8 + base size=32 base align=8 +QFileOpenEvent (0x7f9ac113ad90) 0 + vptr=((& QFileOpenEvent::_ZTV14QFileOpenEvent) + 16u) + QEvent (0x7f9ac113ae00) 0 + primary-for QFileOpenEvent (0x7f9ac113ad90) + +Vtable for QToolBarChangeEvent +QToolBarChangeEvent::_ZTV19QToolBarChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QToolBarChangeEvent) +16 QToolBarChangeEvent::~QToolBarChangeEvent +24 QToolBarChangeEvent::~QToolBarChangeEvent + +Class QToolBarChangeEvent + size=24 align=8 + base size=21 base align=8 +QToolBarChangeEvent (0x7f9ac114c1c0) 0 + vptr=((& QToolBarChangeEvent::_ZTV19QToolBarChangeEvent) + 16u) + QEvent (0x7f9ac114c230) 0 + primary-for QToolBarChangeEvent (0x7f9ac114c1c0) + +Vtable for QShortcutEvent +QShortcutEvent::_ZTV14QShortcutEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QShortcutEvent) +16 QShortcutEvent::~QShortcutEvent +24 QShortcutEvent::~QShortcutEvent + +Class QShortcutEvent + size=40 align=8 + base size=40 base align=8 +QShortcutEvent (0x7f9ac114c700) 0 + vptr=((& QShortcutEvent::_ZTV14QShortcutEvent) + 16u) + QEvent (0x7f9ac114c770) 0 + primary-for QShortcutEvent (0x7f9ac114c700) + +Vtable for QClipboardEvent +QClipboardEvent::_ZTV15QClipboardEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QClipboardEvent) +16 QClipboardEvent::~QClipboardEvent +24 QClipboardEvent::~QClipboardEvent + +Class QClipboardEvent + size=24 align=8 + base size=20 base align=8 +QClipboardEvent (0x7f9ac115a5b0) 0 + vptr=((& QClipboardEvent::_ZTV15QClipboardEvent) + 16u) + QEvent (0x7f9ac115a620) 0 + primary-for QClipboardEvent (0x7f9ac115a5b0) + +Vtable for QWindowStateChangeEvent +QWindowStateChangeEvent::_ZTV23QWindowStateChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QWindowStateChangeEvent) +16 QWindowStateChangeEvent::~QWindowStateChangeEvent +24 QWindowStateChangeEvent::~QWindowStateChangeEvent + +Class QWindowStateChangeEvent + size=24 align=8 + base size=24 base align=8 +QWindowStateChangeEvent (0x7f9ac115aa10) 0 + vptr=((& QWindowStateChangeEvent::_ZTV23QWindowStateChangeEvent) + 16u) + QEvent (0x7f9ac115aa80) 0 + primary-for QWindowStateChangeEvent (0x7f9ac115aa10) + +Vtable for QMenubarUpdatedEvent +QMenubarUpdatedEvent::_ZTV20QMenubarUpdatedEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QMenubarUpdatedEvent) +16 QMenubarUpdatedEvent::~QMenubarUpdatedEvent +24 QMenubarUpdatedEvent::~QMenubarUpdatedEvent + +Class QMenubarUpdatedEvent + size=32 align=8 + base size=32 base align=8 +QMenubarUpdatedEvent (0x7f9ac115af50) 0 + vptr=((& QMenubarUpdatedEvent::_ZTV20QMenubarUpdatedEvent) + 16u) + QEvent (0x7f9ac115a770) 0 + primary-for QMenubarUpdatedEvent (0x7f9ac115af50) + +Class QTouchEvent::TouchPoint + size=8 align=8 + base size=8 base align=8 +QTouchEvent::TouchPoint (0x7f9ac1168af0) 0 + +Vtable for QTouchEvent +QTouchEvent::_ZTV11QTouchEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTouchEvent) +16 QTouchEvent::~QTouchEvent +24 QTouchEvent::~QTouchEvent + +Class QTouchEvent + size=48 align=8 + base size=48 base align=8 +QTouchEvent (0x7f9ac11689a0) 0 + vptr=((& QTouchEvent::_ZTV11QTouchEvent) + 16u) + QInputEvent (0x7f9ac1168a10) 0 + primary-for QTouchEvent (0x7f9ac11689a0) + QEvent (0x7f9ac1168a80) 0 + primary-for QInputEvent (0x7f9ac1168a10) + +Vtable for QGestureEvent +QGestureEvent::_ZTV13QGestureEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QGestureEvent) +16 QGestureEvent::~QGestureEvent +24 QGestureEvent::~QGestureEvent + +Class QGestureEvent + size=24 align=8 + base size=20 base align=8 +QGestureEvent (0x7f9ac0fb3000) 0 + vptr=((& QGestureEvent::_ZTV13QGestureEvent) + 16u) + QEvent (0x7f9ac0fb3070) 0 + primary-for QGestureEvent (0x7f9ac0fb3000) + +Vtable for QGraphicsLayoutItem +QGraphicsLayoutItem::_ZTV19QGraphicsLayoutItem: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QGraphicsLayoutItem) +16 QGraphicsLayoutItem::~QGraphicsLayoutItem +24 QGraphicsLayoutItem::~QGraphicsLayoutItem +32 QGraphicsLayoutItem::setGeometry +40 QGraphicsLayoutItem::getContentsMargins +48 QGraphicsLayoutItem::updateGeometry +56 __cxa_pure_virtual + +Class QGraphicsLayoutItem + size=16 align=8 + base size=16 base align=8 +QGraphicsLayoutItem (0x7f9ac0fb35b0) 0 + vptr=((& QGraphicsLayoutItem::_ZTV19QGraphicsLayoutItem) + 16u) + +Vtable for QGraphicsItem +QGraphicsItem::_ZTV13QGraphicsItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QGraphicsItem) +16 QGraphicsItem::~QGraphicsItem +24 QGraphicsItem::~QGraphicsItem +32 QGraphicsItem::advance +40 __cxa_pure_virtual +48 QGraphicsItem::shape +56 QGraphicsItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsItem::isObscuredBy +88 QGraphicsItem::opaqueArea +96 __cxa_pure_virtual +104 QGraphicsItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsItem::supportsExtension +296 QGraphicsItem::setExtension +304 QGraphicsItem::extension + +Class QGraphicsItem + size=16 align=8 + base size=16 base align=8 +QGraphicsItem (0x7f9ac0fe9d20) 0 + vptr=((& QGraphicsItem::_ZTV13QGraphicsItem) + 16u) + +Vtable for QGraphicsObject +QGraphicsObject::_ZTV15QGraphicsObject: 53u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QGraphicsObject) +16 QGraphicsObject::metaObject +24 QGraphicsObject::qt_metacast +32 QGraphicsObject::qt_metacall +40 QGraphicsObject::~QGraphicsObject +48 QGraphicsObject::~QGraphicsObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 (int (*)(...))-0x00000000000000010 +120 (int (*)(...))(& _ZTI15QGraphicsObject) +128 QGraphicsObject::_ZThn16_N15QGraphicsObjectD1Ev +136 QGraphicsObject::_ZThn16_N15QGraphicsObjectD0Ev +144 QGraphicsItem::advance +152 __cxa_pure_virtual +160 QGraphicsItem::shape +168 QGraphicsItem::contains +176 QGraphicsItem::collidesWithItem +184 QGraphicsItem::collidesWithPath +192 QGraphicsItem::isObscuredBy +200 QGraphicsItem::opaqueArea +208 __cxa_pure_virtual +216 QGraphicsItem::type +224 QGraphicsItem::sceneEventFilter +232 QGraphicsItem::sceneEvent +240 QGraphicsItem::contextMenuEvent +248 QGraphicsItem::dragEnterEvent +256 QGraphicsItem::dragLeaveEvent +264 QGraphicsItem::dragMoveEvent +272 QGraphicsItem::dropEvent +280 QGraphicsItem::focusInEvent +288 QGraphicsItem::focusOutEvent +296 QGraphicsItem::hoverEnterEvent +304 QGraphicsItem::hoverMoveEvent +312 QGraphicsItem::hoverLeaveEvent +320 QGraphicsItem::keyPressEvent +328 QGraphicsItem::keyReleaseEvent +336 QGraphicsItem::mousePressEvent +344 QGraphicsItem::mouseMoveEvent +352 QGraphicsItem::mouseReleaseEvent +360 QGraphicsItem::mouseDoubleClickEvent +368 QGraphicsItem::wheelEvent +376 QGraphicsItem::inputMethodEvent +384 QGraphicsItem::inputMethodQuery +392 QGraphicsItem::itemChange +400 QGraphicsItem::supportsExtension +408 QGraphicsItem::setExtension +416 QGraphicsItem::extension + +Class QGraphicsObject + size=32 align=8 + base size=32 base align=8 +QGraphicsObject (0x7f9ac0ebf880) 0 + vptr=((& QGraphicsObject::_ZTV15QGraphicsObject) + 16u) + QObject (0x7f9ac0ec3d20) 0 + primary-for QGraphicsObject (0x7f9ac0ebf880) + QGraphicsItem (0x7f9ac0ec3d90) 16 + vptr=((& QGraphicsObject::_ZTV15QGraphicsObject) + 128u) + +Vtable for QAbstractGraphicsShapeItem +QAbstractGraphicsShapeItem::_ZTV26QAbstractGraphicsShapeItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QAbstractGraphicsShapeItem) +16 QAbstractGraphicsShapeItem::~QAbstractGraphicsShapeItem +24 QAbstractGraphicsShapeItem::~QAbstractGraphicsShapeItem +32 QGraphicsItem::advance +40 __cxa_pure_virtual +48 QGraphicsItem::shape +56 QGraphicsItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QAbstractGraphicsShapeItem::isObscuredBy +88 QAbstractGraphicsShapeItem::opaqueArea +96 __cxa_pure_virtual +104 QGraphicsItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsItem::supportsExtension +296 QGraphicsItem::setExtension +304 QGraphicsItem::extension + +Class QAbstractGraphicsShapeItem + size=16 align=8 + base size=16 base align=8 +QAbstractGraphicsShapeItem (0x7f9ac0ed0e70) 0 + vptr=((& QAbstractGraphicsShapeItem::_ZTV26QAbstractGraphicsShapeItem) + 16u) + QGraphicsItem (0x7f9ac0ed0ee0) 0 + primary-for QAbstractGraphicsShapeItem (0x7f9ac0ed0e70) + +Vtable for QGraphicsPathItem +QGraphicsPathItem::_ZTV17QGraphicsPathItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QGraphicsPathItem) +16 QGraphicsPathItem::~QGraphicsPathItem +24 QGraphicsPathItem::~QGraphicsPathItem +32 QGraphicsItem::advance +40 QGraphicsPathItem::boundingRect +48 QGraphicsPathItem::shape +56 QGraphicsPathItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsPathItem::isObscuredBy +88 QGraphicsPathItem::opaqueArea +96 QGraphicsPathItem::paint +104 QGraphicsPathItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsPathItem::supportsExtension +296 QGraphicsPathItem::setExtension +304 QGraphicsPathItem::extension + +Class QGraphicsPathItem + size=16 align=8 + base size=16 base align=8 +QGraphicsPathItem (0x7f9ac0ee3cb0) 0 + vptr=((& QGraphicsPathItem::_ZTV17QGraphicsPathItem) + 16u) + QAbstractGraphicsShapeItem (0x7f9ac0ee3d20) 0 + primary-for QGraphicsPathItem (0x7f9ac0ee3cb0) + QGraphicsItem (0x7f9ac0ee3d90) 0 + primary-for QAbstractGraphicsShapeItem (0x7f9ac0ee3d20) + +Vtable for QGraphicsRectItem +QGraphicsRectItem::_ZTV17QGraphicsRectItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QGraphicsRectItem) +16 QGraphicsRectItem::~QGraphicsRectItem +24 QGraphicsRectItem::~QGraphicsRectItem +32 QGraphicsItem::advance +40 QGraphicsRectItem::boundingRect +48 QGraphicsRectItem::shape +56 QGraphicsRectItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsRectItem::isObscuredBy +88 QGraphicsRectItem::opaqueArea +96 QGraphicsRectItem::paint +104 QGraphicsRectItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsRectItem::supportsExtension +296 QGraphicsRectItem::setExtension +304 QGraphicsRectItem::extension + +Class QGraphicsRectItem + size=16 align=8 + base size=16 base align=8 +QGraphicsRectItem (0x7f9ac0ef1c40) 0 + vptr=((& QGraphicsRectItem::_ZTV17QGraphicsRectItem) + 16u) + QAbstractGraphicsShapeItem (0x7f9ac0ef1cb0) 0 + primary-for QGraphicsRectItem (0x7f9ac0ef1c40) + QGraphicsItem (0x7f9ac0ef1d20) 0 + primary-for QAbstractGraphicsShapeItem (0x7f9ac0ef1cb0) + +Vtable for QGraphicsEllipseItem +QGraphicsEllipseItem::_ZTV20QGraphicsEllipseItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QGraphicsEllipseItem) +16 QGraphicsEllipseItem::~QGraphicsEllipseItem +24 QGraphicsEllipseItem::~QGraphicsEllipseItem +32 QGraphicsItem::advance +40 QGraphicsEllipseItem::boundingRect +48 QGraphicsEllipseItem::shape +56 QGraphicsEllipseItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsEllipseItem::isObscuredBy +88 QGraphicsEllipseItem::opaqueArea +96 QGraphicsEllipseItem::paint +104 QGraphicsEllipseItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsEllipseItem::supportsExtension +296 QGraphicsEllipseItem::setExtension +304 QGraphicsEllipseItem::extension + +Class QGraphicsEllipseItem + size=16 align=8 + base size=16 base align=8 +QGraphicsEllipseItem (0x7f9ac0f02f50) 0 + vptr=((& QGraphicsEllipseItem::_ZTV20QGraphicsEllipseItem) + 16u) + QAbstractGraphicsShapeItem (0x7f9ac0f02700) 0 + primary-for QGraphicsEllipseItem (0x7f9ac0f02f50) + QGraphicsItem (0x7f9ac0f16000) 0 + primary-for QAbstractGraphicsShapeItem (0x7f9ac0f02700) + +Vtable for QGraphicsPolygonItem +QGraphicsPolygonItem::_ZTV20QGraphicsPolygonItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QGraphicsPolygonItem) +16 QGraphicsPolygonItem::~QGraphicsPolygonItem +24 QGraphicsPolygonItem::~QGraphicsPolygonItem +32 QGraphicsItem::advance +40 QGraphicsPolygonItem::boundingRect +48 QGraphicsPolygonItem::shape +56 QGraphicsPolygonItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsPolygonItem::isObscuredBy +88 QGraphicsPolygonItem::opaqueArea +96 QGraphicsPolygonItem::paint +104 QGraphicsPolygonItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsPolygonItem::supportsExtension +296 QGraphicsPolygonItem::setExtension +304 QGraphicsPolygonItem::extension + +Class QGraphicsPolygonItem + size=16 align=8 + base size=16 base align=8 +QGraphicsPolygonItem (0x7f9ac0f2b230) 0 + vptr=((& QGraphicsPolygonItem::_ZTV20QGraphicsPolygonItem) + 16u) + QAbstractGraphicsShapeItem (0x7f9ac0f2b2a0) 0 + primary-for QGraphicsPolygonItem (0x7f9ac0f2b230) + QGraphicsItem (0x7f9ac0f2b310) 0 + primary-for QAbstractGraphicsShapeItem (0x7f9ac0f2b2a0) + +Vtable for QGraphicsLineItem +QGraphicsLineItem::_ZTV17QGraphicsLineItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QGraphicsLineItem) +16 QGraphicsLineItem::~QGraphicsLineItem +24 QGraphicsLineItem::~QGraphicsLineItem +32 QGraphicsItem::advance +40 QGraphicsLineItem::boundingRect +48 QGraphicsLineItem::shape +56 QGraphicsLineItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsLineItem::isObscuredBy +88 QGraphicsLineItem::opaqueArea +96 QGraphicsLineItem::paint +104 QGraphicsLineItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsLineItem::supportsExtension +296 QGraphicsLineItem::setExtension +304 QGraphicsLineItem::extension + +Class QGraphicsLineItem + size=16 align=8 + base size=16 base align=8 +QGraphicsLineItem (0x7f9ac0f3e1c0) 0 + vptr=((& QGraphicsLineItem::_ZTV17QGraphicsLineItem) + 16u) + QGraphicsItem (0x7f9ac0f3e230) 0 + primary-for QGraphicsLineItem (0x7f9ac0f3e1c0) + +Vtable for QGraphicsPixmapItem +QGraphicsPixmapItem::_ZTV19QGraphicsPixmapItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QGraphicsPixmapItem) +16 QGraphicsPixmapItem::~QGraphicsPixmapItem +24 QGraphicsPixmapItem::~QGraphicsPixmapItem +32 QGraphicsItem::advance +40 QGraphicsPixmapItem::boundingRect +48 QGraphicsPixmapItem::shape +56 QGraphicsPixmapItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsPixmapItem::isObscuredBy +88 QGraphicsPixmapItem::opaqueArea +96 QGraphicsPixmapItem::paint +104 QGraphicsPixmapItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsPixmapItem::supportsExtension +296 QGraphicsPixmapItem::setExtension +304 QGraphicsPixmapItem::extension + +Class QGraphicsPixmapItem + size=16 align=8 + base size=16 base align=8 +QGraphicsPixmapItem (0x7f9ac0f50460) 0 + vptr=((& QGraphicsPixmapItem::_ZTV19QGraphicsPixmapItem) + 16u) + QGraphicsItem (0x7f9ac0f504d0) 0 + primary-for QGraphicsPixmapItem (0x7f9ac0f50460) + +Vtable for QGraphicsTextItem +QGraphicsTextItem::_ZTV17QGraphicsTextItem: 82u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QGraphicsTextItem) +16 QGraphicsTextItem::metaObject +24 QGraphicsTextItem::qt_metacast +32 QGraphicsTextItem::qt_metacall +40 QGraphicsTextItem::~QGraphicsTextItem +48 QGraphicsTextItem::~QGraphicsTextItem +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsTextItem::boundingRect +120 QGraphicsTextItem::shape +128 QGraphicsTextItem::contains +136 QGraphicsTextItem::paint +144 QGraphicsTextItem::isObscuredBy +152 QGraphicsTextItem::opaqueArea +160 QGraphicsTextItem::type +168 QGraphicsTextItem::sceneEvent +176 QGraphicsTextItem::mousePressEvent +184 QGraphicsTextItem::mouseMoveEvent +192 QGraphicsTextItem::mouseReleaseEvent +200 QGraphicsTextItem::mouseDoubleClickEvent +208 QGraphicsTextItem::contextMenuEvent +216 QGraphicsTextItem::keyPressEvent +224 QGraphicsTextItem::keyReleaseEvent +232 QGraphicsTextItem::focusInEvent +240 QGraphicsTextItem::focusOutEvent +248 QGraphicsTextItem::dragEnterEvent +256 QGraphicsTextItem::dragLeaveEvent +264 QGraphicsTextItem::dragMoveEvent +272 QGraphicsTextItem::dropEvent +280 QGraphicsTextItem::inputMethodEvent +288 QGraphicsTextItem::hoverEnterEvent +296 QGraphicsTextItem::hoverMoveEvent +304 QGraphicsTextItem::hoverLeaveEvent +312 QGraphicsTextItem::inputMethodQuery +320 QGraphicsTextItem::supportsExtension +328 QGraphicsTextItem::setExtension +336 QGraphicsTextItem::extension +344 (int (*)(...))-0x00000000000000010 +352 (int (*)(...))(& _ZTI17QGraphicsTextItem) +360 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItemD1Ev +368 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItemD0Ev +376 QGraphicsItem::advance +384 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem12boundingRectEv +392 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem5shapeEv +400 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem8containsERK7QPointF +408 QGraphicsItem::collidesWithItem +416 QGraphicsItem::collidesWithPath +424 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem12isObscuredByEPK13QGraphicsItem +432 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem10opaqueAreaEv +440 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget +448 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem4typeEv +456 QGraphicsItem::sceneEventFilter +464 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem10sceneEventEP6QEvent +472 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem16contextMenuEventEP30QGraphicsSceneContextMenuEvent +480 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem14dragEnterEventEP27QGraphicsSceneDragDropEvent +488 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem14dragLeaveEventEP27QGraphicsSceneDragDropEvent +496 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem13dragMoveEventEP27QGraphicsSceneDragDropEvent +504 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem9dropEventEP27QGraphicsSceneDragDropEvent +512 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem12focusInEventEP11QFocusEvent +520 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem13focusOutEventEP11QFocusEvent +528 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem15hoverEnterEventEP24QGraphicsSceneHoverEvent +536 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem14hoverMoveEventEP24QGraphicsSceneHoverEvent +544 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem15hoverLeaveEventEP24QGraphicsSceneHoverEvent +552 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem13keyPressEventEP9QKeyEvent +560 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem15keyReleaseEventEP9QKeyEvent +568 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem15mousePressEventEP24QGraphicsSceneMouseEvent +576 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem14mouseMoveEventEP24QGraphicsSceneMouseEvent +584 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem17mouseReleaseEventEP24QGraphicsSceneMouseEvent +592 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem21mouseDoubleClickEventEP24QGraphicsSceneMouseEvent +600 QGraphicsItem::wheelEvent +608 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem16inputMethodEventEP17QInputMethodEvent +616 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem16inputMethodQueryEN2Qt16InputMethodQueryE +624 QGraphicsItem::itemChange +632 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem17supportsExtensionEN13QGraphicsItem9ExtensionE +640 QGraphicsTextItem::_ZThn16_N17QGraphicsTextItem12setExtensionEN13QGraphicsItem9ExtensionERK8QVariant +648 QGraphicsTextItem::_ZThn16_NK17QGraphicsTextItem9extensionERK8QVariant + +Class QGraphicsTextItem + size=40 align=8 + base size=40 base align=8 +QGraphicsTextItem (0x7f9ac0f63700) 0 + vptr=((& QGraphicsTextItem::_ZTV17QGraphicsTextItem) + 16u) + QGraphicsObject (0x7f9ac0f66300) 0 + primary-for QGraphicsTextItem (0x7f9ac0f63700) + QObject (0x7f9ac0f63770) 0 + primary-for QGraphicsObject (0x7f9ac0f66300) + QGraphicsItem (0x7f9ac0f637e0) 16 + vptr=((& QGraphicsTextItem::_ZTV17QGraphicsTextItem) + 360u) + +Vtable for QGraphicsSimpleTextItem +QGraphicsSimpleTextItem::_ZTV23QGraphicsSimpleTextItem: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QGraphicsSimpleTextItem) +16 QGraphicsSimpleTextItem::~QGraphicsSimpleTextItem +24 QGraphicsSimpleTextItem::~QGraphicsSimpleTextItem +32 QGraphicsItem::advance +40 QGraphicsSimpleTextItem::boundingRect +48 QGraphicsSimpleTextItem::shape +56 QGraphicsSimpleTextItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsSimpleTextItem::isObscuredBy +88 QGraphicsSimpleTextItem::opaqueArea +96 QGraphicsSimpleTextItem::paint +104 QGraphicsSimpleTextItem::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsSimpleTextItem::supportsExtension +296 QGraphicsSimpleTextItem::setExtension +304 QGraphicsSimpleTextItem::extension + +Class QGraphicsSimpleTextItem + size=16 align=8 + base size=16 base align=8 +QGraphicsSimpleTextItem (0x7f9ac0d81d90) 0 + vptr=((& QGraphicsSimpleTextItem::_ZTV23QGraphicsSimpleTextItem) + 16u) + QAbstractGraphicsShapeItem (0x7f9ac0d81e00) 0 + primary-for QGraphicsSimpleTextItem (0x7f9ac0d81d90) + QGraphicsItem (0x7f9ac0d81e70) 0 + primary-for QAbstractGraphicsShapeItem (0x7f9ac0d81e00) + +Vtable for QGraphicsItemGroup +QGraphicsItemGroup::_ZTV18QGraphicsItemGroup: 39u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QGraphicsItemGroup) +16 QGraphicsItemGroup::~QGraphicsItemGroup +24 QGraphicsItemGroup::~QGraphicsItemGroup +32 QGraphicsItem::advance +40 QGraphicsItemGroup::boundingRect +48 QGraphicsItem::shape +56 QGraphicsItem::contains +64 QGraphicsItem::collidesWithItem +72 QGraphicsItem::collidesWithPath +80 QGraphicsItemGroup::isObscuredBy +88 QGraphicsItemGroup::opaqueArea +96 QGraphicsItemGroup::paint +104 QGraphicsItemGroup::type +112 QGraphicsItem::sceneEventFilter +120 QGraphicsItem::sceneEvent +128 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +144 QGraphicsItem::dragLeaveEvent +152 QGraphicsItem::dragMoveEvent +160 QGraphicsItem::dropEvent +168 QGraphicsItem::focusInEvent +176 QGraphicsItem::focusOutEvent +184 QGraphicsItem::hoverEnterEvent +192 QGraphicsItem::hoverMoveEvent +200 QGraphicsItem::hoverLeaveEvent +208 QGraphicsItem::keyPressEvent +216 QGraphicsItem::keyReleaseEvent +224 QGraphicsItem::mousePressEvent +232 QGraphicsItem::mouseMoveEvent +240 QGraphicsItem::mouseReleaseEvent +248 QGraphicsItem::mouseDoubleClickEvent +256 QGraphicsItem::wheelEvent +264 QGraphicsItem::inputMethodEvent +272 QGraphicsItem::inputMethodQuery +280 QGraphicsItem::itemChange +288 QGraphicsItem::supportsExtension +296 QGraphicsItem::setExtension +304 QGraphicsItem::extension + +Class QGraphicsItemGroup + size=16 align=8 + base size=16 base align=8 +QGraphicsItemGroup (0x7f9ac0d98d20) 0 + vptr=((& QGraphicsItemGroup::_ZTV18QGraphicsItemGroup) + 16u) + QGraphicsItem (0x7f9ac0d98d90) 0 + primary-for QGraphicsItemGroup (0x7f9ac0d98d20) + +Vtable for QGraphicsWidget +QGraphicsWidget::_ZTV15QGraphicsWidget: 92u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QGraphicsWidget) +16 QGraphicsWidget::metaObject +24 QGraphicsWidget::qt_metacast +32 QGraphicsWidget::qt_metacall +40 QGraphicsWidget::~QGraphicsWidget +48 QGraphicsWidget::~QGraphicsWidget +56 QGraphicsWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsWidget::setGeometry +120 QGraphicsWidget::getContentsMargins +128 QGraphicsWidget::type +136 QGraphicsWidget::paint +144 QGraphicsWidget::paintWindowFrame +152 QGraphicsWidget::boundingRect +160 QGraphicsWidget::shape +168 QGraphicsWidget::initStyleOption +176 QGraphicsWidget::sizeHint +184 QGraphicsWidget::updateGeometry +192 QGraphicsWidget::itemChange +200 QGraphicsWidget::propertyChange +208 QGraphicsWidget::sceneEvent +216 QGraphicsWidget::windowFrameEvent +224 QGraphicsWidget::windowFrameSectionAt +232 QGraphicsWidget::changeEvent +240 QGraphicsWidget::closeEvent +248 QGraphicsWidget::focusInEvent +256 QGraphicsWidget::focusNextPrevChild +264 QGraphicsWidget::focusOutEvent +272 QGraphicsWidget::hideEvent +280 QGraphicsWidget::moveEvent +288 QGraphicsWidget::polishEvent +296 QGraphicsWidget::resizeEvent +304 QGraphicsWidget::showEvent +312 QGraphicsWidget::hoverMoveEvent +320 QGraphicsWidget::hoverLeaveEvent +328 QGraphicsWidget::grabMouseEvent +336 QGraphicsWidget::ungrabMouseEvent +344 QGraphicsWidget::grabKeyboardEvent +352 QGraphicsWidget::ungrabKeyboardEvent +360 (int (*)(...))-0x00000000000000010 +368 (int (*)(...))(& _ZTI15QGraphicsWidget) +376 QGraphicsWidget::_ZThn16_N15QGraphicsWidgetD1Ev +384 QGraphicsWidget::_ZThn16_N15QGraphicsWidgetD0Ev +392 QGraphicsItem::advance +400 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget12boundingRectEv +408 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget5shapeEv +416 QGraphicsItem::contains +424 QGraphicsItem::collidesWithItem +432 QGraphicsItem::collidesWithPath +440 QGraphicsItem::isObscuredBy +448 QGraphicsItem::opaqueArea +456 QGraphicsWidget::_ZThn16_N15QGraphicsWidget5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget +464 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget4typeEv +472 QGraphicsItem::sceneEventFilter +480 QGraphicsWidget::_ZThn16_N15QGraphicsWidget10sceneEventEP6QEvent +488 QGraphicsItem::contextMenuEvent +496 QGraphicsItem::dragEnterEvent +504 QGraphicsItem::dragLeaveEvent +512 QGraphicsItem::dragMoveEvent +520 QGraphicsItem::dropEvent +528 QGraphicsWidget::_ZThn16_N15QGraphicsWidget12focusInEventEP11QFocusEvent +536 QGraphicsWidget::_ZThn16_N15QGraphicsWidget13focusOutEventEP11QFocusEvent +544 QGraphicsItem::hoverEnterEvent +552 QGraphicsWidget::_ZThn16_N15QGraphicsWidget14hoverMoveEventEP24QGraphicsSceneHoverEvent +560 QGraphicsWidget::_ZThn16_N15QGraphicsWidget15hoverLeaveEventEP24QGraphicsSceneHoverEvent +568 QGraphicsItem::keyPressEvent +576 QGraphicsItem::keyReleaseEvent +584 QGraphicsItem::mousePressEvent +592 QGraphicsItem::mouseMoveEvent +600 QGraphicsItem::mouseReleaseEvent +608 QGraphicsItem::mouseDoubleClickEvent +616 QGraphicsItem::wheelEvent +624 QGraphicsItem::inputMethodEvent +632 QGraphicsItem::inputMethodQuery +640 QGraphicsWidget::_ZThn16_N15QGraphicsWidget10itemChangeEN13QGraphicsItem18GraphicsItemChangeERK8QVariant +648 QGraphicsItem::supportsExtension +656 QGraphicsItem::setExtension +664 QGraphicsItem::extension +672 (int (*)(...))-0x00000000000000020 +680 (int (*)(...))(& _ZTI15QGraphicsWidget) +688 QGraphicsWidget::_ZThn32_N15QGraphicsWidgetD1Ev +696 QGraphicsWidget::_ZThn32_N15QGraphicsWidgetD0Ev +704 QGraphicsWidget::_ZThn32_N15QGraphicsWidget11setGeometryERK6QRectF +712 QGraphicsWidget::_ZThn32_NK15QGraphicsWidget18getContentsMarginsEPdS0_S0_S0_ +720 QGraphicsWidget::_ZThn32_N15QGraphicsWidget14updateGeometryEv +728 QGraphicsWidget::_ZThn32_NK15QGraphicsWidget8sizeHintEN2Qt8SizeHintERK6QSizeF + +Class QGraphicsWidget + size=48 align=8 + base size=48 base align=8 +QGraphicsWidget (0x7f9ac0dc5380) 0 + vptr=((& QGraphicsWidget::_ZTV15QGraphicsWidget) + 16u) + QGraphicsObject (0x7f9ac0dc5400) 0 + primary-for QGraphicsWidget (0x7f9ac0dc5380) + QObject (0x7f9ac0db9620) 0 + primary-for QGraphicsObject (0x7f9ac0dc5400) + QGraphicsItem (0x7f9ac0db9690) 16 + vptr=((& QGraphicsWidget::_ZTV15QGraphicsWidget) + 376u) + QGraphicsLayoutItem (0x7f9ac0db9700) 32 + vptr=((& QGraphicsWidget::_ZTV15QGraphicsWidget) + 688u) + +Class QTextOption::Tab + size=16 align=8 + base size=14 base align=8 +QTextOption::Tab (0x7f9ac0dfeee0) 0 + +Class QTextOption + size=32 align=8 + base size=32 base align=8 +QTextOption (0x7f9ac0dfee70) 0 + +Class QTileRules + size=8 align=4 + base size=8 base align=4 +QTileRules (0x7f9ac0c66310) 0 + +Class QDrawPixmaps::Data + size=80 align=8 + base size=80 base align=8 +QDrawPixmaps::Data (0x7f9ac0c7d380) 0 + +Class QPen + size=8 align=8 + base size=8 base align=8 +QPen (0x7f9ac0c7d460) 0 + +Class QPainter + size=8 align=8 + base size=8 base align=8 +QPainter (0x7f9ac0ca88c0) 0 + +Vtable for QGraphicsWebView +QGraphicsWebView::_ZTV16QGraphicsWebView: 106u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QGraphicsWebView) +16 QGraphicsWebView::metaObject +24 QGraphicsWebView::qt_metacast +32 QGraphicsWebView::qt_metacall +40 QGraphicsWebView::~QGraphicsWebView +48 QGraphicsWebView::~QGraphicsWebView +56 QGraphicsWebView::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QGraphicsWebView::setGeometry +120 QGraphicsWidget::getContentsMargins +128 QGraphicsWidget::type +136 QGraphicsWebView::paint +144 QGraphicsWidget::paintWindowFrame +152 QGraphicsWidget::boundingRect +160 QGraphicsWidget::shape +168 QGraphicsWidget::initStyleOption +176 QGraphicsWebView::sizeHint +184 QGraphicsWebView::updateGeometry +192 QGraphicsWebView::itemChange +200 QGraphicsWidget::propertyChange +208 QGraphicsWebView::sceneEvent +216 QGraphicsWidget::windowFrameEvent +224 QGraphicsWidget::windowFrameSectionAt +232 QGraphicsWidget::changeEvent +240 QGraphicsWidget::closeEvent +248 QGraphicsWebView::focusInEvent +256 QGraphicsWebView::focusNextPrevChild +264 QGraphicsWebView::focusOutEvent +272 QGraphicsWidget::hideEvent +280 QGraphicsWidget::moveEvent +288 QGraphicsWidget::polishEvent +296 QGraphicsWidget::resizeEvent +304 QGraphicsWidget::showEvent +312 QGraphicsWebView::hoverMoveEvent +320 QGraphicsWebView::hoverLeaveEvent +328 QGraphicsWidget::grabMouseEvent +336 QGraphicsWidget::ungrabMouseEvent +344 QGraphicsWidget::grabKeyboardEvent +352 QGraphicsWidget::ungrabKeyboardEvent +360 QGraphicsWebView::inputMethodQuery +368 QGraphicsWebView::mousePressEvent +376 QGraphicsWebView::mouseDoubleClickEvent +384 QGraphicsWebView::mouseReleaseEvent +392 QGraphicsWebView::mouseMoveEvent +400 QGraphicsWebView::wheelEvent +408 QGraphicsWebView::keyPressEvent +416 QGraphicsWebView::keyReleaseEvent +424 QGraphicsWebView::contextMenuEvent +432 QGraphicsWebView::dragEnterEvent +440 QGraphicsWebView::dragLeaveEvent +448 QGraphicsWebView::dragMoveEvent +456 QGraphicsWebView::dropEvent +464 QGraphicsWebView::inputMethodEvent +472 (int (*)(...))-0x00000000000000010 +480 (int (*)(...))(& _ZTI16QGraphicsWebView) +488 QGraphicsWebView::_ZThn16_N16QGraphicsWebViewD1Ev +496 QGraphicsWebView::_ZThn16_N16QGraphicsWebViewD0Ev +504 QGraphicsItem::advance +512 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget12boundingRectEv +520 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget5shapeEv +528 QGraphicsItem::contains +536 QGraphicsItem::collidesWithItem +544 QGraphicsItem::collidesWithPath +552 QGraphicsItem::isObscuredBy +560 QGraphicsItem::opaqueArea +568 QGraphicsWebView::_ZThn16_N16QGraphicsWebView5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget +576 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget4typeEv +584 QGraphicsItem::sceneEventFilter +592 QGraphicsWebView::_ZThn16_N16QGraphicsWebView10sceneEventEP6QEvent +600 QGraphicsWebView::_ZThn16_N16QGraphicsWebView16contextMenuEventEP30QGraphicsSceneContextMenuEvent +608 QGraphicsWebView::_ZThn16_N16QGraphicsWebView14dragEnterEventEP27QGraphicsSceneDragDropEvent +616 QGraphicsWebView::_ZThn16_N16QGraphicsWebView14dragLeaveEventEP27QGraphicsSceneDragDropEvent +624 QGraphicsWebView::_ZThn16_N16QGraphicsWebView13dragMoveEventEP27QGraphicsSceneDragDropEvent +632 QGraphicsWebView::_ZThn16_N16QGraphicsWebView9dropEventEP27QGraphicsSceneDragDropEvent +640 QGraphicsWebView::_ZThn16_N16QGraphicsWebView12focusInEventEP11QFocusEvent +648 QGraphicsWebView::_ZThn16_N16QGraphicsWebView13focusOutEventEP11QFocusEvent +656 QGraphicsItem::hoverEnterEvent +664 QGraphicsWebView::_ZThn16_N16QGraphicsWebView14hoverMoveEventEP24QGraphicsSceneHoverEvent +672 QGraphicsWebView::_ZThn16_N16QGraphicsWebView15hoverLeaveEventEP24QGraphicsSceneHoverEvent +680 QGraphicsWebView::_ZThn16_N16QGraphicsWebView13keyPressEventEP9QKeyEvent +688 QGraphicsWebView::_ZThn16_N16QGraphicsWebView15keyReleaseEventEP9QKeyEvent +696 QGraphicsWebView::_ZThn16_N16QGraphicsWebView15mousePressEventEP24QGraphicsSceneMouseEvent +704 QGraphicsWebView::_ZThn16_N16QGraphicsWebView14mouseMoveEventEP24QGraphicsSceneMouseEvent +712 QGraphicsWebView::_ZThn16_N16QGraphicsWebView17mouseReleaseEventEP24QGraphicsSceneMouseEvent +720 QGraphicsWebView::_ZThn16_N16QGraphicsWebView21mouseDoubleClickEventEP24QGraphicsSceneMouseEvent +728 QGraphicsWebView::_ZThn16_N16QGraphicsWebView10wheelEventEP24QGraphicsSceneWheelEvent +736 QGraphicsWebView::_ZThn16_N16QGraphicsWebView16inputMethodEventEP17QInputMethodEvent +744 QGraphicsWebView::_ZThn16_NK16QGraphicsWebView16inputMethodQueryEN2Qt16InputMethodQueryE +752 QGraphicsWebView::_ZThn16_N16QGraphicsWebView10itemChangeEN13QGraphicsItem18GraphicsItemChangeERK8QVariant +760 QGraphicsItem::supportsExtension +768 QGraphicsItem::setExtension +776 QGraphicsItem::extension +784 (int (*)(...))-0x00000000000000020 +792 (int (*)(...))(& _ZTI16QGraphicsWebView) +800 QGraphicsWebView::_ZThn32_N16QGraphicsWebViewD1Ev +808 QGraphicsWebView::_ZThn32_N16QGraphicsWebViewD0Ev +816 QGraphicsWebView::_ZThn32_N16QGraphicsWebView11setGeometryERK6QRectF +824 QGraphicsWidget::_ZThn32_NK15QGraphicsWidget18getContentsMarginsEPdS0_S0_S0_ +832 QGraphicsWebView::_ZThn32_N16QGraphicsWebView14updateGeometryEv +840 QGraphicsWebView::_ZThn32_NK16QGraphicsWebView8sizeHintEN2Qt8SizeHintERK6QSizeF + +Class QGraphicsWebView + size=56 align=8 + base size=56 base align=8 +QGraphicsWebView (0x7f9ac0ab6380) 0 + vptr=((& QGraphicsWebView::_ZTV16QGraphicsWebView) + 16u) + QGraphicsWidget (0x7f9ac0ab0980) 0 + primary-for QGraphicsWebView (0x7f9ac0ab6380) + QGraphicsObject (0x7f9ac0ab0a00) 0 + primary-for QGraphicsWidget (0x7f9ac0ab0980) + QObject (0x7f9ac0ab63f0) 0 + primary-for QGraphicsObject (0x7f9ac0ab0a00) + QGraphicsItem (0x7f9ac0ab6460) 16 + vptr=((& QGraphicsWebView::_ZTV16QGraphicsWebView) + 488u) + QGraphicsLayoutItem (0x7f9ac0ab64d0) 32 + vptr=((& QGraphicsWebView::_ZTV16QGraphicsWebView) + 800u) + +Class QWebDatabase + size=8 align=8 + base size=8 base align=8 +QWebDatabase (0x7f9ac0adf8c0) 0 + +Class QWebElement + size=16 align=8 + base size=16 base align=8 +QWebElement (0x7f9ac0adfee0) 0 + +Class QWebElementCollection::const_iterator + size=16 align=8 + base size=16 base align=8 +QWebElementCollection::const_iterator (0x7f9ac0b14850) 0 + +Class QWebElementCollection::iterator + size=16 align=8 + base size=16 base align=8 +QWebElementCollection::iterator (0x7f9ac0b21460) 0 + +Class QWebElementCollection + size=8 align=8 + base size=8 base align=8 +QWebElementCollection (0x7f9ac0b06cb0) 0 + +Class QScriptValue + size=8 align=8 + base size=8 base align=8 +QScriptValue (0x7f9ac097d150) 0 + +Class QScriptContext + size=8 align=8 + base size=8 base align=8 +QScriptContext (0x7f9ac0a31cb0) 0 + +Class QScriptString + size=8 align=8 + base size=8 base align=8 +QScriptString (0x7f9ac0a49b60) 0 + +Class QScriptProgram + size=8 align=8 + base size=8 base align=8 +QScriptProgram (0x7f9ac0a56930) 0 + +Class QScriptSyntaxCheckResult + size=8 align=8 + base size=8 base align=8 +QScriptSyntaxCheckResult (0x7f9ac086d7e0) 0 + +Vtable for QScriptEngine +QScriptEngine::_ZTV13QScriptEngine: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QScriptEngine) +16 QScriptEngine::metaObject +24 QScriptEngine::qt_metacast +32 QScriptEngine::qt_metacall +40 QScriptEngine::~QScriptEngine +48 QScriptEngine::~QScriptEngine +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QScriptEngine + size=16 align=8 + base size=16 base align=8 +QScriptEngine (0x7f9ac08904d0) 0 + vptr=((& QScriptEngine::_ZTV13QScriptEngine) + 16u) + QObject (0x7f9ac0890540) 0 + primary-for QScriptEngine (0x7f9ac08904d0) + +Class QWebHitTestResult + size=8 align=8 + base size=8 base align=8 +QWebHitTestResult (0x7f9ac0907d20) 0 + +Vtable for QWebFrame +QWebFrame::_ZTV9QWebFrame: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QWebFrame) +16 QWebFrame::metaObject +24 QWebFrame::qt_metacast +32 QWebFrame::qt_metacall +40 QWebFrame::~QWebFrame +48 QWebFrame::~QWebFrame +56 QWebFrame::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QWebFrame + size=24 align=8 + base size=24 base align=8 +QWebFrame (0x7f9ac091e310) 0 + vptr=((& QWebFrame::_ZTV9QWebFrame) + 16u) + QObject (0x7f9ac091e380) 0 + primary-for QWebFrame (0x7f9ac091e310) + +Class QWebHistoryItem + size=8 align=8 + base size=8 base align=8 +QWebHistoryItem (0x7f9ac0941e00) 0 + +Class QWebHistory + size=8 align=8 + base size=8 base align=8 +QWebHistory (0x7f9ac094c460) 0 + +Vtable for QWebHistoryInterface +QWebHistoryInterface::_ZTV20QWebHistoryInterface: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QWebHistoryInterface) +16 QWebHistoryInterface::metaObject +24 QWebHistoryInterface::qt_metacast +32 QWebHistoryInterface::qt_metacall +40 QWebHistoryInterface::~QWebHistoryInterface +48 QWebHistoryInterface::~QWebHistoryInterface +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QWebHistoryInterface + size=16 align=8 + base size=16 base align=8 +QWebHistoryInterface (0x7f9ac094ccb0) 0 + vptr=((& QWebHistoryInterface::_ZTV20QWebHistoryInterface) + 16u) + QObject (0x7f9ac094cd20) 0 + primary-for QWebHistoryInterface (0x7f9ac094ccb0) + +Vtable for QWebView +QWebView::_ZTV8QWebView: 64u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QWebView) +16 QWebView::metaObject +24 QWebView::qt_metacast +32 QWebView::qt_metacall +40 QWebView::~QWebView +48 QWebView::~QWebView +56 QWebView::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWebView::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWebView::mousePressEvent +168 QWebView::mouseReleaseEvent +176 QWebView::mouseDoubleClickEvent +184 QWebView::mouseMoveEvent +192 QWebView::wheelEvent +200 QWebView::keyPressEvent +208 QWebView::keyReleaseEvent +216 QWebView::focusInEvent +224 QWebView::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWebView::paintEvent +256 QWidget::moveEvent +264 QWebView::resizeEvent +272 QWidget::closeEvent +280 QWebView::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWebView::dragEnterEvent +312 QWebView::dragMoveEvent +320 QWebView::dragLeaveEvent +328 QWebView::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWebView::changeEvent +368 QWidget::metric +376 QWebView::inputMethodEvent +384 QWebView::inputMethodQuery +392 QWebView::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 QWebView::createWindow +456 (int (*)(...))-0x00000000000000010 +464 (int (*)(...))(& _ZTI8QWebView) +472 QWebView::_ZThn16_N8QWebViewD1Ev +480 QWebView::_ZThn16_N8QWebViewD0Ev +488 QWidget::_ZThn16_NK7QWidget7devTypeEv +496 QWidget::_ZThn16_NK7QWidget11paintEngineEv +504 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWebView + size=48 align=8 + base size=48 base align=8 +QWebView (0x7f9ac076ccb0) 0 + vptr=((& QWebView::_ZTV8QWebView) + 16u) + QWidget (0x7f9ac0943c00) 0 + primary-for QWebView (0x7f9ac076ccb0) + QObject (0x7f9ac076cd20) 0 + primary-for QWidget (0x7f9ac0943c00) + QPaintDevice (0x7f9ac076cd90) 16 + vptr=((& QWebView::_ZTV8QWebView) + 472u) + +Vtable for QWebInspector +QWebInspector::_ZTV13QWebInspector: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QWebInspector) +16 QWebInspector::metaObject +24 QWebInspector::qt_metacast +32 QWebInspector::qt_metacall +40 QWebInspector::~QWebInspector +48 QWebInspector::~QWebInspector +56 QWebInspector::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWebInspector::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWebInspector::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWebInspector::showEvent +344 QWebInspector::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI13QWebInspector) +464 QWebInspector::_ZThn16_N13QWebInspectorD1Ev +472 QWebInspector::_ZThn16_N13QWebInspectorD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWebInspector + size=48 align=8 + base size=48 base align=8 +QWebInspector (0x7f9ac079d540) 0 + vptr=((& QWebInspector::_ZTV13QWebInspector) + 16u) + QWidget (0x7f9ac079a300) 0 + primary-for QWebInspector (0x7f9ac079d540) + QObject (0x7f9ac079d5b0) 0 + primary-for QWidget (0x7f9ac079a300) + QPaintDevice (0x7f9ac079d620) 16 + vptr=((& QWebInspector::_ZTV13QWebInspector) + 464u) + +Class QWebPluginFactory::MimeType + size=24 align=8 + base size=24 base align=8 +QWebPluginFactory::MimeType (0x7f9ac07b3620) 0 + +Class QWebPluginFactory::Plugin + size=24 align=8 + base size=24 base align=8 +QWebPluginFactory::Plugin (0x7f9ac07b3850) 0 + +Class QWebPluginFactory::ExtensionOption + size=1 align=1 + base size=0 base align=1 +QWebPluginFactory::ExtensionOption (0x7f9ac07e3620) 0 empty + +Class QWebPluginFactory::ExtensionReturn + size=1 align=1 + base size=0 base align=1 +QWebPluginFactory::ExtensionReturn (0x7f9ac07e3690) 0 empty + +Vtable for QWebPluginFactory +QWebPluginFactory::_ZTV17QWebPluginFactory: 19u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QWebPluginFactory) +16 QWebPluginFactory::metaObject +24 QWebPluginFactory::qt_metacast +32 QWebPluginFactory::qt_metacall +40 QWebPluginFactory::~QWebPluginFactory +48 QWebPluginFactory::~QWebPluginFactory +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 QWebPluginFactory::refreshPlugins +128 __cxa_pure_virtual +136 QWebPluginFactory::extension +144 QWebPluginFactory::supportsExtension + +Class QWebPluginFactory + size=24 align=8 + base size=24 base align=8 +QWebPluginFactory (0x7f9ac07b34d0) 0 + vptr=((& QWebPluginFactory::_ZTV17QWebPluginFactory) + 16u) + QObject (0x7f9ac07b3540) 0 + primary-for QWebPluginFactory (0x7f9ac07b34d0) + +Class QWebSecurityOrigin + size=8 align=8 + base size=8 base align=8 +QWebSecurityOrigin (0x7f9ac07f2700) 0 + diff --git a/tests/auto/bic/data/QtXml.4.5.0.linux-gcc-amd64.txt b/tests/auto/bic/data/QtXml.4.5.0.linux-gcc-amd64.txt new file mode 100644 index 0000000..eba780a --- /dev/null +++ b/tests/auto/bic/data/QtXml.4.5.0.linux-gcc-amd64.txt @@ -0,0 +1,2783 @@ +Class QSysInfo + size=1 align=1 + base size=0 base align=1 +QSysInfo (0x7f5892504460) 0 empty + +Class QBool + size=1 align=1 + base size=1 base align=1 +QBool (0x7f5892518150) 0 + +Class qIsNull(double)::U + size=8 align=8 + base size=8 base align=8 +qIsNull(double)::U (0x7f589252f540) 0 + +Class qIsNull(float)::U + size=4 align=4 + base size=4 base align=4 +qIsNull(float)::U (0x7f589252f7e0) 0 + +Class QFlag + size=4 align=4 + base size=4 base align=4 +QFlag (0x7f5892566620) 0 + +Class QIncompatibleFlag + size=4 align=4 + base size=4 base align=4 +QIncompatibleFlag (0x7f5892566e00) 0 + +Class QInternal + size=1 align=1 + base size=0 base align=1 +QInternal (0x7f5891b62540) 0 empty + +Class QGenericArgument + size=16 align=8 + base size=16 base align=8 +QGenericArgument (0x7f5891b62850) 0 + +Class QGenericReturnArgument + size=16 align=8 + base size=16 base align=8 +QGenericReturnArgument (0x7f5891b7c3f0) 0 + QGenericArgument (0x7f5891b7c460) 0 + +Class QMetaObject + size=32 align=8 + base size=32 base align=8 +QMetaObject (0x7f5891b7ccb0) 0 + +Class QMetaObjectExtraData + size=16 align=8 + base size=16 base align=8 +QMetaObjectExtraData (0x7f5891ba4cb0) 0 + +Class QLatin1Char + size=1 align=1 + base size=1 base align=1 +QLatin1Char (0x7f5891bb0700) 0 + +Class QChar + size=2 align=2 + base size=2 base align=2 +QChar (0x7f5891bb52a0) 0 + +Class QBasicAtomicInt + size=4 align=4 + base size=4 base align=4 +QBasicAtomicInt (0x7f5891a1c380) 0 + +Class QAtomicInt + size=4 align=4 + base size=4 base align=4 +QAtomicInt (0x7f5891a55d20) 0 + QBasicAtomicInt (0x7f5891a55d90) 0 + +Class __locale_struct + size=232 align=8 + base size=232 base align=8 +__locale_struct (0x7f5891a7e1c0) 0 + +Class QByteArray::Data + size=32 align=8 + base size=32 base align=8 +QByteArray::Data (0x7f58918f97e0) 0 + +Class QByteArray + size=8 align=8 + base size=8 base align=8 +QByteArray (0x7f5891ab6540) 0 + +Class QByteRef + size=16 align=8 + base size=12 base align=8 +QByteRef (0x7f589194fa80) 0 + +Class QString::Null + size=1 align=1 + base size=0 base align=1 +QString::Null (0x7f5891858700) 0 empty + +Class QString::Data + size=32 align=8 + base size=32 base align=8 +QString::Data (0x7f5891867ee0) 0 + +Class QString + size=8 align=8 + base size=8 base align=8 +QString (0x7f58917d75b0) 0 + +Class QLatin1String + size=8 align=8 + base size=8 base align=8 +QLatin1String (0x7f5891742000) 0 + +Class QCharRef + size=16 align=8 + base size=12 base align=8 +QCharRef (0x7f58915d8620) 0 + +Class QConstString + size=8 align=8 + base size=8 base align=8 +QConstString (0x7f5891522ee0) 0 + QString (0x7f5891522f50) 0 + +Class QStringRef + size=16 align=8 + base size=16 base align=8 +QStringRef (0x7f5891542bd0) 0 + +Vtable for std::exception +std::exception::_ZTVSt9exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9exception) +16 std::exception::~exception +24 std::exception::~exception +32 std::exception::what + +Class std::exception + size=8 align=8 + base size=8 base align=8 +std::exception (0x7f58913fd620) 0 nearly-empty + vptr=((& std::exception::_ZTVSt9exception) + 16u) + +Vtable for std::bad_exception +std::bad_exception::_ZTVSt13bad_exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13bad_exception) +16 std::bad_exception::~bad_exception +24 std::bad_exception::~bad_exception +32 std::bad_exception::what + +Class std::bad_exception + size=8 align=8 + base size=8 base align=8 +std::bad_exception (0x7f589141f000) 0 nearly-empty + vptr=((& std::bad_exception::_ZTVSt13bad_exception) + 16u) + std::exception (0x7f589141f070) 0 nearly-empty + primary-for std::bad_exception (0x7f589141f000) + +Vtable for std::bad_alloc +std::bad_alloc::_ZTVSt9bad_alloc: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9bad_alloc) +16 std::bad_alloc::~bad_alloc +24 std::bad_alloc::~bad_alloc +32 std::bad_alloc::what + +Class std::bad_alloc + size=8 align=8 + base size=8 base align=8 +std::bad_alloc (0x7f589141f8c0) 0 nearly-empty + vptr=((& std::bad_alloc::_ZTVSt9bad_alloc) + 16u) + std::exception (0x7f589141f930) 0 nearly-empty + primary-for std::bad_alloc (0x7f589141f8c0) + +Class std::nothrow_t + size=1 align=1 + base size=0 base align=1 +std::nothrow_t (0x7f58914310e0) 0 empty + +Class QListData::Data + size=32 align=8 + base size=32 base align=8 +QListData::Data (0x7f5891431620) 0 + +Class QListData + size=8 align=8 + base size=8 base align=8 +QListData (0x7f58914315b0) 0 + +Vtable for QObjectData +QObjectData::_ZTV11QObjectData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QObjectData) +16 __cxa_pure_virtual +24 __cxa_pure_virtual + +Class QObjectData + size=40 align=8 + base size=40 base align=8 +QObjectData (0x7f5891332bd0) 0 + vptr=((& QObjectData::_ZTV11QObjectData) + 16u) + +Vtable for QObject +QObject::_ZTV7QObject: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QObject) +16 QObject::metaObject +24 QObject::qt_metacast +32 QObject::qt_metacall +40 QObject::~QObject +48 QObject::~QObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObject + size=16 align=8 + base size=16 base align=8 +QObject (0x7f5891332ee0) 0 + vptr=((& QObject::_ZTV7QObject) + 16u) + +Vtable for QObjectUserData +QObjectUserData::_ZTV15QObjectUserData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QObjectUserData) +16 QObjectUserData::~QObjectUserData +24 QObjectUserData::~QObjectUserData + +Class QObjectUserData + size=8 align=8 + base size=8 base align=8 +QObjectUserData (0x7f58911b43f0) 0 nearly-empty + vptr=((& QObjectUserData::_ZTV15QObjectUserData) + 16u) + +Vtable for QIODevice +QIODevice::_ZTV9QIODevice: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QIODevice) +16 QIODevice::metaObject +24 QIODevice::qt_metacast +32 QIODevice::qt_metacall +40 QIODevice::~QIODevice +48 QIODevice::~QIODevice +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QIODevice::isSequential +120 QIODevice::open +128 QIODevice::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QIODevice::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 __cxa_pure_virtual +224 QIODevice::readLineData +232 __cxa_pure_virtual + +Class QIODevice + size=16 align=8 + base size=16 base align=8 +QIODevice (0x7f58911b4930) 0 + vptr=((& QIODevice::_ZTV9QIODevice) + 16u) + QObject (0x7f58911b49a0) 0 + primary-for QIODevice (0x7f58911b4930) + +Vtable for QDataStream +QDataStream::_ZTV11QDataStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QDataStream) +16 QDataStream::~QDataStream +24 QDataStream::~QDataStream + +Class QDataStream + size=40 align=8 + base size=40 base align=8 +QDataStream (0x7f589122b2a0) 0 + vptr=((& QDataStream::_ZTV11QDataStream) + 16u) + +Class QHashData::Node + size=16 align=8 + base size=16 base align=8 +QHashData::Node (0x7f58910b0150) 0 + +Class QHashData + size=40 align=8 + base size=40 base align=8 +QHashData (0x7f58910b00e0) 0 + +Class QHashDummyValue + size=1 align=1 + base size=0 base align=1 +QHashDummyValue (0x7f58910c2ee0) 0 empty + +Class QMapData::Node + size=16 align=8 + base size=16 base align=8 +QMapData::Node (0x7f5890fd3690) 0 + +Class QMapData + size=128 align=8 + base size=128 base align=8 +QMapData (0x7f5890fd3620) 0 + +Vtable for QSystemLocale +QSystemLocale::_ZTV13QSystemLocale: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSystemLocale) +16 QSystemLocale::~QSystemLocale +24 QSystemLocale::~QSystemLocale +32 QSystemLocale::query +40 QSystemLocale::fallbackLocale + +Class QSystemLocale + size=8 align=8 + base size=8 base align=8 +QSystemLocale (0x7f5890ee8e00) 0 nearly-empty + vptr=((& QSystemLocale::_ZTV13QSystemLocale) + 16u) + +Class QLocale::Data + size=4 align=2 + base size=4 base align=2 +QLocale::Data (0x7f5890f463f0) 0 + +Class QLocale + size=8 align=8 + base size=8 base align=8 +QLocale (0x7f5890f0a0e0) 0 + +Class QTextCodec::ConverterState + size=32 align=8 + base size=32 base align=8 +QTextCodec::ConverterState (0x7f5890f94e70) 0 + +Vtable for QTextCodec +QTextCodec::_ZTV10QTextCodec: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextCodec) +16 __cxa_pure_virtual +24 QTextCodec::aliases +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QTextCodec::~QTextCodec +64 QTextCodec::~QTextCodec + +Class QTextCodec + size=8 align=8 + base size=8 base align=8 +QTextCodec (0x7f5890f7ea80) 0 nearly-empty + vptr=((& QTextCodec::_ZTV10QTextCodec) + 16u) + +Class QTextEncoder + size=40 align=8 + base size=40 base align=8 +QTextEncoder (0x7f5890e003f0) 0 + +Class QTextDecoder + size=40 align=8 + base size=40 base align=8 +QTextDecoder (0x7f5890e09230) 0 + +Class _IO_marker + size=24 align=8 + base size=24 base align=8 +_IO_marker (0x7f5890e122a0) 0 + +Class _IO_FILE + size=216 align=8 + base size=216 base align=8 +_IO_FILE (0x7f5890e12310) 0 + +Vtable for QTextStream +QTextStream::_ZTV11QTextStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTextStream) +16 QTextStream::~QTextStream +24 QTextStream::~QTextStream + +Class QTextStream + size=16 align=8 + base size=16 base align=8 +QTextStream (0x7f5890e123f0) 0 + vptr=((& QTextStream::_ZTV11QTextStream) + 16u) + +Class QTextStreamManipulator + size=40 align=8 + base size=38 base align=8 +QTextStreamManipulator (0x7f5890ea9ee0) 0 + +Vtable for QTextIStream +QTextIStream::_ZTV12QTextIStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextIStream) +16 QTextIStream::~QTextIStream +24 QTextIStream::~QTextIStream + +Class QTextIStream + size=16 align=8 + base size=16 base align=8 +QTextIStream (0x7f5890cd71c0) 0 + vptr=((& QTextIStream::_ZTV12QTextIStream) + 16u) + QTextStream (0x7f5890cd7230) 0 + primary-for QTextIStream (0x7f5890cd71c0) + +Vtable for QTextOStream +QTextOStream::_ZTV12QTextOStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextOStream) +16 QTextOStream::~QTextOStream +24 QTextOStream::~QTextOStream + +Class QTextOStream + size=16 align=8 + base size=16 base align=8 +QTextOStream (0x7f5890ceb070) 0 + vptr=((& QTextOStream::_ZTV12QTextOStream) + 16u) + QTextStream (0x7f5890ceb0e0) 0 + primary-for QTextOStream (0x7f5890ceb070) + +Class wait + size=4 align=4 + base size=4 base align=4 +wait (0x7f5890cf8ee0) 0 + +Class timespec + size=16 align=8 + base size=16 base align=8 +timespec (0x7f5890d05230) 0 + +Class timeval + size=16 align=8 + base size=16 base align=8 +timeval (0x7f5890d052a0) 0 + +Class __pthread_internal_list + size=16 align=8 + base size=16 base align=8 +__pthread_internal_list (0x7f5890d053f0) 0 + +Class random_data + size=48 align=8 + base size=48 base align=8 +random_data (0x7f5890d059a0) 0 + +Class drand48_data + size=24 align=8 + base size=24 base align=8 +drand48_data (0x7f5890d05a10) 0 + +Class QVectorData + size=16 align=4 + base size=16 base align=4 +QVectorData (0x7f5890d05a80) 0 + +Class QDebug::Stream + size=40 align=8 + base size=34 base align=8 +QDebug::Stream (0x7f5890c80230) 0 + +Class QDebug + size=8 align=8 + base size=8 base align=8 +QDebug (0x7f5890c801c0) 0 + +Class QNoDebug + size=1 align=1 + base size=0 base align=1 +QNoDebug (0x7f5890b1c070) 0 empty + +Vtable for QFile +QFile::_ZTV5QFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QFile) +16 QFile::metaObject +24 QFile::qt_metacast +32 QFile::qt_metacall +40 QFile::~QFile +48 QFile::~QFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QFile::fileEngine + +Class QFile + size=16 align=8 + base size=16 base align=8 +QFile (0x7f5890b30620) 0 + vptr=((& QFile::_ZTV5QFile) + 16u) + QIODevice (0x7f5890b30690) 0 + primary-for QFile (0x7f5890b30620) + QObject (0x7f5890b30700) 0 + primary-for QIODevice (0x7f5890b30690) + +Vtable for QTemporaryFile +QTemporaryFile::_ZTV14QTemporaryFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QTemporaryFile) +16 QTemporaryFile::metaObject +24 QTemporaryFile::qt_metacast +32 QTemporaryFile::qt_metacall +40 QTemporaryFile::~QTemporaryFile +48 QTemporaryFile::~QTemporaryFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QTemporaryFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QTemporaryFile::fileEngine + +Class QTemporaryFile + size=16 align=8 + base size=16 base align=8 +QTemporaryFile (0x7f5890b9a850) 0 + vptr=((& QTemporaryFile::_ZTV14QTemporaryFile) + 16u) + QFile (0x7f5890b9a8c0) 0 + primary-for QTemporaryFile (0x7f5890b9a850) + QIODevice (0x7f5890b9a930) 0 + primary-for QFile (0x7f5890b9a8c0) + QObject (0x7f5890b9a9a0) 0 + primary-for QIODevice (0x7f5890b9a930) + +Class QFileInfo + size=8 align=8 + base size=8 base align=8 +QFileInfo (0x7f58909bbf50) 0 + +Class QRegExp + size=8 align=8 + base size=8 base align=8 +QRegExp (0x7f5890a18770) 0 + +Class QStringMatcher + size=1048 align=8 + base size=1048 base align=8 +QStringMatcher (0x7f5890a635b0) 0 + +Class QStringList + size=8 align=8 + base size=8 base align=8 +QStringList (0x7f5890a78070) 0 + QList (0x7f5890a780e0) 0 + +Class QDir + size=8 align=8 + base size=8 base align=8 +QDir (0x7f5890904cb0) 0 + +Class QAbstractFileEngine::ExtensionOption + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionOption (0x7f58909a0e70) 0 empty + +Class QAbstractFileEngine::ExtensionReturn + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionReturn (0x7f58909a0ee0) 0 empty + +Class QAbstractFileEngine::MapExtensionOption + size=24 align=8 + base size=20 base align=8 +QAbstractFileEngine::MapExtensionOption (0x7f58909a0f50) 0 + QAbstractFileEngine::ExtensionOption (0x7f58907b4000) 0 empty + +Class QAbstractFileEngine::MapExtensionReturn + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::MapExtensionReturn (0x7f58907b41c0) 0 + QAbstractFileEngine::ExtensionReturn (0x7f58907b4230) 0 empty + +Class QAbstractFileEngine::UnMapExtensionOption + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::UnMapExtensionOption (0x7f58907b42a0) 0 + QAbstractFileEngine::ExtensionOption (0x7f58907b4310) 0 empty + +Vtable for QAbstractFileEngine +QAbstractFileEngine::_ZTV19QAbstractFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractFileEngine) +16 QAbstractFileEngine::~QAbstractFileEngine +24 QAbstractFileEngine::~QAbstractFileEngine +32 QAbstractFileEngine::open +40 QAbstractFileEngine::close +48 QAbstractFileEngine::flush +56 QAbstractFileEngine::size +64 QAbstractFileEngine::pos +72 QAbstractFileEngine::seek +80 QAbstractFileEngine::isSequential +88 QAbstractFileEngine::remove +96 QAbstractFileEngine::copy +104 QAbstractFileEngine::rename +112 QAbstractFileEngine::link +120 QAbstractFileEngine::mkdir +128 QAbstractFileEngine::rmdir +136 QAbstractFileEngine::setSize +144 QAbstractFileEngine::caseSensitive +152 QAbstractFileEngine::isRelativePath +160 QAbstractFileEngine::entryList +168 QAbstractFileEngine::fileFlags +176 QAbstractFileEngine::setPermissions +184 QAbstractFileEngine::fileName +192 QAbstractFileEngine::ownerId +200 QAbstractFileEngine::owner +208 QAbstractFileEngine::fileTime +216 QAbstractFileEngine::setFileName +224 QAbstractFileEngine::handle +232 QAbstractFileEngine::beginEntryList +240 QAbstractFileEngine::endEntryList +248 QAbstractFileEngine::read +256 QAbstractFileEngine::readLine +264 QAbstractFileEngine::write +272 QAbstractFileEngine::extension +280 QAbstractFileEngine::supportsExtension + +Class QAbstractFileEngine + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngine (0x7f589098fe00) 0 + vptr=((& QAbstractFileEngine::_ZTV19QAbstractFileEngine) + 16u) + +Vtable for QAbstractFileEngineHandler +QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QAbstractFileEngineHandler) +16 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +24 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +32 __cxa_pure_virtual + +Class QAbstractFileEngineHandler + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngineHandler (0x7f58907e3000) 0 nearly-empty + vptr=((& QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler) + 16u) + +Vtable for QAbstractFileEngineIterator +QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QAbstractFileEngineIterator) +16 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +24 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QAbstractFileEngineIterator::currentFileInfo +64 QAbstractFileEngineIterator::entryInfo + +Class QAbstractFileEngineIterator + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngineIterator (0x7f58907e31c0) 0 + vptr=((& QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator) + 16u) + +Vtable for QFSFileEngine +QFSFileEngine::_ZTV13QFSFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QFSFileEngine) +16 QFSFileEngine::~QFSFileEngine +24 QFSFileEngine::~QFSFileEngine +32 QFSFileEngine::open +40 QFSFileEngine::close +48 QFSFileEngine::flush +56 QFSFileEngine::size +64 QFSFileEngine::pos +72 QFSFileEngine::seek +80 QFSFileEngine::isSequential +88 QFSFileEngine::remove +96 QFSFileEngine::copy +104 QFSFileEngine::rename +112 QFSFileEngine::link +120 QFSFileEngine::mkdir +128 QFSFileEngine::rmdir +136 QFSFileEngine::setSize +144 QFSFileEngine::caseSensitive +152 QFSFileEngine::isRelativePath +160 QFSFileEngine::entryList +168 QFSFileEngine::fileFlags +176 QFSFileEngine::setPermissions +184 QFSFileEngine::fileName +192 QFSFileEngine::ownerId +200 QFSFileEngine::owner +208 QFSFileEngine::fileTime +216 QFSFileEngine::setFileName +224 QFSFileEngine::handle +232 QFSFileEngine::beginEntryList +240 QFSFileEngine::endEntryList +248 QFSFileEngine::read +256 QFSFileEngine::readLine +264 QFSFileEngine::write +272 QFSFileEngine::extension +280 QFSFileEngine::supportsExtension + +Class QFSFileEngine + size=16 align=8 + base size=16 base align=8 +QFSFileEngine (0x7f58907e3a10) 0 + vptr=((& QFSFileEngine::_ZTV13QFSFileEngine) + 16u) + QAbstractFileEngine (0x7f58907e3a80) 0 + primary-for QFSFileEngine (0x7f58907e3a10) + +Vtable for QProcess +QProcess::_ZTV8QProcess: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QProcess) +16 QProcess::metaObject +24 QProcess::qt_metacast +32 QProcess::qt_metacall +40 QProcess::~QProcess +48 QProcess::~QProcess +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QProcess::isSequential +120 QIODevice::open +128 QProcess::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QProcess::atEnd +168 QIODevice::reset +176 QProcess::bytesAvailable +184 QProcess::bytesToWrite +192 QProcess::canReadLine +200 QProcess::waitForReadyRead +208 QProcess::waitForBytesWritten +216 QProcess::readData +224 QIODevice::readLineData +232 QProcess::writeData +240 QProcess::setupChildProcess + +Class QProcess + size=16 align=8 + base size=16 base align=8 +QProcess (0x7f58907fad20) 0 + vptr=((& QProcess::_ZTV8QProcess) + 16u) + QIODevice (0x7f58907fad90) 0 + primary-for QProcess (0x7f58907fad20) + QObject (0x7f58907fae00) 0 + primary-for QIODevice (0x7f58907fad90) + +Class QResource + size=8 align=8 + base size=8 base align=8 +QResource (0x7f5890837230) 0 + +Vtable for QDirIterator +QDirIterator::_ZTV12QDirIterator: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QDirIterator) +16 QDirIterator::~QDirIterator +24 QDirIterator::~QDirIterator + +Class QDirIterator + size=16 align=8 + base size=16 base align=8 +QDirIterator (0x7f5890837cb0) 0 + vptr=((& QDirIterator::_ZTV12QDirIterator) + 16u) + +Vtable for QBuffer +QBuffer::_ZTV7QBuffer: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QBuffer) +16 QBuffer::metaObject +24 QBuffer::qt_metacast +32 QBuffer::qt_metacall +40 QBuffer::~QBuffer +48 QBuffer::~QBuffer +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QBuffer::connectNotify +104 QBuffer::disconnectNotify +112 QIODevice::isSequential +120 QBuffer::open +128 QBuffer::close +136 QBuffer::pos +144 QBuffer::size +152 QBuffer::seek +160 QBuffer::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QBuffer::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QBuffer::readData +224 QIODevice::readLineData +232 QBuffer::writeData + +Class QBuffer + size=16 align=8 + base size=16 base align=8 +QBuffer (0x7f5890867a80) 0 + vptr=((& QBuffer::_ZTV7QBuffer) + 16u) + QIODevice (0x7f5890867af0) 0 + primary-for QBuffer (0x7f5890867a80) + QObject (0x7f5890867b60) 0 + primary-for QIODevice (0x7f5890867af0) + +Vtable for QFileSystemWatcher +QFileSystemWatcher::_ZTV18QFileSystemWatcher: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFileSystemWatcher) +16 QFileSystemWatcher::metaObject +24 QFileSystemWatcher::qt_metacast +32 QFileSystemWatcher::qt_metacall +40 QFileSystemWatcher::~QFileSystemWatcher +48 QFileSystemWatcher::~QFileSystemWatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QFileSystemWatcher + size=16 align=8 + base size=16 base align=8 +QFileSystemWatcher (0x7f589088f690) 0 + vptr=((& QFileSystemWatcher::_ZTV18QFileSystemWatcher) + 16u) + QObject (0x7f589088f700) 0 + primary-for QFileSystemWatcher (0x7f589088f690) + +Class QUrl + size=8 align=8 + base size=8 base align=8 +QUrl (0x7f58908a3bd0) 0 + +Class QMetaType + size=1 align=1 + base size=0 base align=1 +QMetaType (0x7f589070e3f0) 0 empty + +Class QVariant::PrivateShared + size=16 align=8 + base size=12 base align=8 +QVariant::PrivateShared (0x7f58905df930) 0 + +Class QVariant::Private::Data + size=8 align=8 + base size=8 base align=8 +QVariant::Private::Data (0x7f58905dfc40) 0 + +Class QVariant::Private + size=16 align=8 + base size=12 base align=8 +QVariant::Private (0x7f58905dfa10) 0 + +Class QVariant::Handler + size=72 align=8 + base size=72 base align=8 +QVariant::Handler (0x7f58905ed930) 0 + +Class QVariant + size=16 align=8 + base size=16 base align=8 +QVariant (0x7f58905afaf0) 0 + +Class QVariantComparisonHelper + size=8 align=8 + base size=8 base align=8 +QVariantComparisonHelper (0x7f5890493cb0) 0 + +Vtable for QSettings +QSettings::_ZTV9QSettings: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QSettings) +16 QSettings::metaObject +24 QSettings::qt_metacast +32 QSettings::qt_metacall +40 QSettings::~QSettings +48 QSettings::~QSettings +56 QSettings::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSettings + size=16 align=8 + base size=16 base align=8 +QSettings (0x7f58904b8cb0) 0 + vptr=((& QSettings::_ZTV9QSettings) + 16u) + QObject (0x7f58904b8d20) 0 + primary-for QSettings (0x7f58904b8cb0) + +Class QXmlStreamStringRef + size=16 align=8 + base size=16 base align=8 +QXmlStreamStringRef (0x7f589053b070) 0 + +Class QXmlStreamAttribute + size=80 align=8 + base size=73 base align=8 +QXmlStreamAttribute (0x7f5890559850) 0 + +Class QXmlStreamAttributes + size=8 align=8 + base size=8 base align=8 +QXmlStreamAttributes (0x7f5890580380) 0 + QVector (0x7f58905803f0) 0 + +Class QXmlStreamNamespaceDeclaration + size=40 align=8 + base size=40 base align=8 +QXmlStreamNamespaceDeclaration (0x7f5890580850) 0 + +Class QXmlStreamNotationDeclaration + size=56 align=8 + base size=56 base align=8 +QXmlStreamNotationDeclaration (0x7f58903c01c0) 0 + +Class QXmlStreamEntityDeclaration + size=88 align=8 + base size=88 base align=8 +QXmlStreamEntityDeclaration (0x7f58903e0070) 0 + +Vtable for QXmlStreamEntityResolver +QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QXmlStreamEntityResolver) +16 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +24 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +32 QXmlStreamEntityResolver::resolveEntity +40 QXmlStreamEntityResolver::resolveUndeclaredEntity + +Class QXmlStreamEntityResolver + size=8 align=8 + base size=8 base align=8 +QXmlStreamEntityResolver (0x7f58903fe9a0) 0 nearly-empty + vptr=((& QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver) + 16u) + +Class QXmlStreamReader + size=8 align=8 + base size=8 base align=8 +QXmlStreamReader (0x7f58903feb60) 0 + +Class QXmlStreamWriter + size=8 align=8 + base size=8 base align=8 +QXmlStreamWriter (0x7f589043ba10) 0 + +Class QPoint + size=8 align=4 + base size=8 base align=4 +QPoint (0x7f5890477150) 0 + +Class QPointF + size=16 align=8 + base size=16 base align=8 +QPointF (0x7f58902aed90) 0 + +Class QLine + size=16 align=4 + base size=16 base align=4 +QLine (0x7f58902edbd0) 0 + +Class QLineF + size=32 align=8 + base size=32 base align=8 +QLineF (0x7f5890327a80) 0 + +Class QSize + size=8 align=4 + base size=8 base align=4 +QSize (0x7f5890183540) 0 + +Class QSizeF + size=16 align=8 + base size=16 base align=8 +QSizeF (0x7f58901ce380) 0 + +Class QRect + size=16 align=4 + base size=16 base align=4 +QRect (0x7f589021a9a0) 0 + +Class QRectF + size=32 align=8 + base size=32 base align=8 +QRectF (0x7f58900cb380) 0 + +Class QSharedData + size=4 align=4 + base size=4 base align=4 +QSharedData (0x7f5890176150) 0 + +Vtable for QtSharedPointer::ExternalRefCountData +QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN15QtSharedPointer20ExternalRefCountDataE) +16 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +24 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +32 QtSharedPointer::ExternalRefCountData::destroy + +Class QtSharedPointer::ExternalRefCountData + size=16 align=8 + base size=16 base align=8 +QtSharedPointer::ExternalRefCountData (0x7f588ffa4af0) 0 + vptr=((& QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE) + 16u) + +Class QLinkedListData + size=32 align=8 + base size=32 base align=8 +QLinkedListData (0x7f589002bc40) 0 + +Class QBitArray + size=8 align=8 + base size=8 base align=8 +QBitArray (0x7f588fef8b60) 0 + +Class QBitRef + size=16 align=8 + base size=12 base align=8 +QBitRef (0x7f588ff6c930) 0 + +Class QByteArrayMatcher + size=1040 align=8 + base size=1040 base align=8 +QByteArrayMatcher (0x7f588fd86310) 0 + +Class QCryptographicHash + size=8 align=8 + base size=8 base align=8 +QCryptographicHash (0x7f588fd97a10) 0 + +Class QTextBoundaryFinder + size=48 align=8 + base size=48 base align=8 +QTextBoundaryFinder (0x7f588fdc4460) 0 + +Class QDate + size=4 align=4 + base size=4 base align=4 +QDate (0x7f588fdda7e0) 0 + +Class QTime + size=4 align=4 + base size=4 base align=4 +QTime (0x7f588fe03770) 0 + +Class QDateTime + size=8 align=8 + base size=8 base align=8 +QDateTime (0x7f588fe21d20) 0 + +Vtable for QTimeLine +QTimeLine::_ZTV9QTimeLine: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTimeLine) +16 QTimeLine::metaObject +24 QTimeLine::qt_metacast +32 QTimeLine::qt_metacall +40 QTimeLine::~QTimeLine +48 QTimeLine::~QTimeLine +56 QObject::event +64 QObject::eventFilter +72 QTimeLine::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTimeLine::valueForTime + +Class QTimeLine + size=16 align=8 + base size=16 base align=8 +QTimeLine (0x7f588fe551c0) 0 + vptr=((& QTimeLine::_ZTV9QTimeLine) + 16u) + QObject (0x7f588fe55230) 0 + primary-for QTimeLine (0x7f588fe551c0) + +Vtable for QRunnable +QRunnable::_ZTV9QRunnable: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QRunnable) +16 __cxa_pure_virtual +24 QRunnable::~QRunnable +32 QRunnable::~QRunnable + +Class QRunnable + size=16 align=8 + base size=12 base align=8 +QRunnable (0x7f588fc7c070) 0 + vptr=((& QRunnable::_ZTV9QRunnable) + 16u) + +Class QMutex + size=8 align=8 + base size=8 base align=8 +QMutex (0x7f588fc88700) 0 + +Class QMutexLocker + size=8 align=8 + base size=8 base align=8 +QMutexLocker (0x7f588fc972a0) 0 + +Vtable for QtConcurrent::Exception +QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent9ExceptionE) +16 QtConcurrent::Exception::~Exception +24 QtConcurrent::Exception::~Exception +32 std::exception::what +40 QtConcurrent::Exception::raise +48 QtConcurrent::Exception::clone + +Class QtConcurrent::Exception + size=8 align=8 + base size=8 base align=8 +QtConcurrent::Exception (0x7f588fcad5b0) 0 nearly-empty + vptr=((& QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE) + 16u) + std::exception (0x7f588fcad620) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7f588fcad5b0) + +Vtable for QtConcurrent::UnhandledException +QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent18UnhandledExceptionE) +16 QtConcurrent::UnhandledException::~UnhandledException +24 QtConcurrent::UnhandledException::~UnhandledException +32 std::exception::what +40 QtConcurrent::UnhandledException::raise +48 QtConcurrent::UnhandledException::clone + +Class QtConcurrent::UnhandledException + size=8 align=8 + base size=8 base align=8 +QtConcurrent::UnhandledException (0x7f588fcad850) 0 nearly-empty + vptr=((& QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE) + 16u) + QtConcurrent::Exception (0x7f588fcad8c0) 0 nearly-empty + primary-for QtConcurrent::UnhandledException (0x7f588fcad850) + std::exception (0x7f588fcad930) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7f588fcad8c0) + +Class QtConcurrent::internal::ExceptionHolder + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionHolder (0x7f588fcadb60) 0 + +Class QtConcurrent::internal::ExceptionStore + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionStore (0x7f588fcadee0) 0 + +Class QtConcurrent::ResultItem + size=16 align=8 + base size=16 base align=8 +QtConcurrent::ResultItem (0x7f588fcadf50) 0 + +Class QtConcurrent::ResultIteratorBase + size=16 align=8 + base size=12 base align=8 +QtConcurrent::ResultIteratorBase (0x7f588fcc5e70) 0 + +Vtable for QtConcurrent::ResultStoreBase +QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent15ResultStoreBaseE) +16 QtConcurrent::ResultStoreBase::~ResultStoreBase +24 QtConcurrent::ResultStoreBase::~ResultStoreBase + +Class QtConcurrent::ResultStoreBase + size=48 align=8 + base size=44 base align=8 +QtConcurrent::ResultStoreBase (0x7f588fcc9a10) 0 + vptr=((& QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE) + 16u) + +Vtable for QFutureInterfaceBase +QFutureInterfaceBase::_ZTV20QFutureInterfaceBase: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QFutureInterfaceBase) +16 QFutureInterfaceBase::~QFutureInterfaceBase +24 QFutureInterfaceBase::~QFutureInterfaceBase + +Class QFutureInterfaceBase + size=16 align=8 + base size=16 base align=8 +QFutureInterfaceBase (0x7f588fd0ae70) 0 + vptr=((& QFutureInterfaceBase::_ZTV20QFutureInterfaceBase) + 16u) + +Vtable for QThread +QThread::_ZTV7QThread: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QThread) +16 QThread::metaObject +24 QThread::qt_metacast +32 QThread::qt_metacall +40 QThread::~QThread +48 QThread::~QThread +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QThread::run + +Class QThread + size=16 align=8 + base size=16 base align=8 +QThread (0x7f588fbeee00) 0 + vptr=((& QThread::_ZTV7QThread) + 16u) + QObject (0x7f588fbeee70) 0 + primary-for QThread (0x7f588fbeee00) + +Vtable for QThreadPool +QThreadPool::_ZTV11QThreadPool: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QThreadPool) +16 QThreadPool::metaObject +24 QThreadPool::qt_metacast +32 QThreadPool::qt_metacall +40 QThreadPool::~QThreadPool +48 QThreadPool::~QThreadPool +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QThreadPool + size=16 align=8 + base size=16 base align=8 +QThreadPool (0x7f588fc21cb0) 0 + vptr=((& QThreadPool::_ZTV11QThreadPool) + 16u) + QObject (0x7f588fc21d20) 0 + primary-for QThreadPool (0x7f588fc21cb0) + +Class QWaitCondition + size=8 align=8 + base size=8 base align=8 +QWaitCondition (0x7f588fc38540) 0 + +Class QtConcurrent::ThreadEngineSemaphore + size=24 align=8 + base size=24 base align=8 +QtConcurrent::ThreadEngineSemaphore (0x7f588fc38a80) 0 + +Vtable for QtConcurrent::ThreadEngineBase +QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent16ThreadEngineBaseE) +16 QtConcurrent::ThreadEngineBase::run +24 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +32 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +40 QtConcurrent::ThreadEngineBase::start +48 QtConcurrent::ThreadEngineBase::finish +56 QtConcurrent::ThreadEngineBase::threadFunction +64 QtConcurrent::ThreadEngineBase::shouldStartThread +72 QtConcurrent::ThreadEngineBase::shouldThrottleThread +80 __cxa_pure_virtual + +Class QtConcurrent::ThreadEngineBase + size=64 align=8 + base size=64 base align=8 +QtConcurrent::ThreadEngineBase (0x7f588fc58460) 0 + vptr=((& QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE) + 16u) + QRunnable (0x7f588fc584d0) 0 + primary-for QtConcurrent::ThreadEngineBase (0x7f588fc58460) + +VTT for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTTN12QtConcurrent12ThreadEngineIvEE: 2u entries +0 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 24u) +8 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 136u) + +Class std::input_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::input_iterator_tag (0x7f588fa9b850) 0 empty + +Class std::output_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::output_iterator_tag (0x7f588fa9b8c0) 0 empty + +Class std::forward_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::forward_iterator_tag (0x7f588fa9b930) 0 empty + std::input_iterator_tag (0x7f588fa9b9a0) 0 empty + +Class std::bidirectional_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::bidirectional_iterator_tag (0x7f588fa9ba10) 0 empty + std::forward_iterator_tag (0x7f588fa9ba80) 0 empty + std::input_iterator_tag (0x7f588fa9baf0) 0 empty + +Class std::random_access_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::random_access_iterator_tag (0x7f588fa9bb60) 0 empty + std::bidirectional_iterator_tag (0x7f588fa9bbd0) 0 empty + std::forward_iterator_tag (0x7f588fa9bc40) 0 empty + std::input_iterator_tag (0x7f588fa9bcb0) 0 empty + +Class std::__true_type + size=1 align=1 + base size=0 base align=1 +std::__true_type (0x7f588faad2a0) 0 empty + +Class std::__false_type + size=1 align=1 + base size=0 base align=1 +std::__false_type (0x7f588faad310) 0 empty + +Class lconv + size=96 align=8 + base size=96 base align=8 +lconv (0x7f588f889620) 0 + +Class sched_param + size=4 align=4 + base size=4 base align=4 +sched_param (0x7f588f889a80) 0 + +Class __sched_param + size=4 align=4 + base size=4 base align=4 +__sched_param (0x7f588f889af0) 0 + +Class tm + size=56 align=8 + base size=56 base align=8 +tm (0x7f588f889bd0) 0 + +Class itimerspec + size=32 align=8 + base size=32 base align=8 +itimerspec (0x7f588f889cb0) 0 + +Class _pthread_cleanup_buffer + size=32 align=8 + base size=32 base align=8 +_pthread_cleanup_buffer (0x7f588f889d20) 0 + +Class __pthread_cleanup_frame + size=24 align=8 + base size=24 base align=8 +__pthread_cleanup_frame (0x7f588f889e70) 0 + +Class __pthread_cleanup_class + size=24 align=8 + base size=24 base align=8 +__pthread_cleanup_class (0x7f588f889ee0) 0 + +Vtable for __cxxabiv1::__forced_unwind +__cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN10__cxxabiv115__forced_unwindE) +16 __cxxabiv1::__forced_unwind::~__forced_unwind +24 __cxxabiv1::__forced_unwind::~__forced_unwind +32 __cxa_pure_virtual + +Class __cxxabiv1::__forced_unwind + size=8 align=8 + base size=8 base align=8 +__cxxabiv1::__forced_unwind (0x7f588f79ea80) 0 nearly-empty + vptr=((& __cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE) + 16u) + +Class std::locale + size=8 align=8 + base size=8 base align=8 +std::locale (0x7f588f6515b0) 0 + +Vtable for std::locale::facet +std::locale::facet::_ZTVNSt6locale5facetE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTINSt6locale5facetE) +16 std::locale::facet::~facet +24 std::locale::facet::~facet + +Class std::locale::facet + size=16 align=8 + base size=12 base align=8 +std::locale::facet (0x7f588f4f2cb0) 0 + vptr=((& std::locale::facet::_ZTVNSt6locale5facetE) + 16u) + +Class std::locale::id + size=8 align=8 + base size=8 base align=8 +std::locale::id (0x7f588f5072a0) 0 + +Class std::locale::_Impl + size=40 align=8 + base size=40 base align=8 +std::locale::_Impl (0x7f588f5078c0) 0 + +Vtable for std::ios_base::failure +std::ios_base::failure::_ZTVNSt8ios_base7failureE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTINSt8ios_base7failureE) +16 std::ios_base::failure::~failure +24 std::ios_base::failure::~failure +32 std::ios_base::failure::what + +Class std::ios_base::failure + size=16 align=8 + base size=16 base align=8 +std::ios_base::failure (0x7f588f395070) 0 + vptr=((& std::ios_base::failure::_ZTVNSt8ios_base7failureE) + 16u) + std::exception (0x7f588f3950e0) 0 nearly-empty + primary-for std::ios_base::failure (0x7f588f395070) + +Class std::ios_base::_Callback_list + size=24 align=8 + base size=24 base align=8 +std::ios_base::_Callback_list (0x7f588f3a3310) 0 + +Class std::ios_base::_Words + size=16 align=8 + base size=16 base align=8 +std::ios_base::_Words (0x7f588f3a3d90) 0 + +Class std::ios_base::Init + size=1 align=1 + base size=0 base align=1 +std::ios_base::Init (0x7f588f3aa4d0) 0 empty + +Vtable for std::ios_base +std::ios_base::_ZTVSt8ios_base: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt8ios_base) +16 std::ios_base::~ios_base +24 std::ios_base::~ios_base + +Class std::ios_base + size=216 align=8 + base size=216 base align=8 +std::ios_base (0x7f588f395000) 0 + vptr=((& std::ios_base::_ZTVSt8ios_base) + 16u) + +Class std::ctype_base + size=1 align=1 + base size=0 base align=1 +std::ctype_base (0x7f588f422930) 0 empty + +Class std::__num_base + size=1 align=1 + base size=0 base align=1 +std::__num_base (0x7f588f3471c0) 0 empty + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSo: 2u entries +0 ((& std::basic_ostream >::_ZTVSo) + 24u) +8 ((& std::basic_ostream >::_ZTVSo) + 64u) + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSt13basic_ostreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 24u) +8 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 64u) + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSi: 2u entries +0 ((& std::basic_istream >::_ZTVSi) + 24u) +8 ((& std::basic_istream >::_ZTVSi) + 64u) + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSt13basic_istreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 24u) +8 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 64u) + +Construction vtable for std::basic_istream > (0x7f588ee74310 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd0_Si: 10u entries +0 24u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISi) +24 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +32 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +40 -24u +48 (int (*)(...))-0x00000000000000018 +56 (int (*)(...))(& _ZTISi) +64 std::basic_istream >::_ZTv0_n24_NSiD1Ev +72 std::basic_istream >::_ZTv0_n24_NSiD0Ev + +Construction vtable for std::basic_ostream > (0x7f588ee74460 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd16_So: 10u entries +0 8u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISo) +24 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +32 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +40 -8u +48 (int (*)(...))-0x00000000000000008 +56 (int (*)(...))(& _ZTISo) +64 std::basic_ostream >::_ZTv0_n24_NSoD1Ev +72 std::basic_ostream >::_ZTv0_n24_NSoD0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSd: 7u entries +0 ((& std::basic_iostream >::_ZTVSd) + 24u) +8 ((& std::basic_iostream >::_ZTCSd0_Si) + 24u) +16 ((& std::basic_iostream >::_ZTCSd0_Si) + 64u) +24 ((& std::basic_iostream >::_ZTCSd16_So) + 24u) +32 ((& std::basic_iostream >::_ZTCSd16_So) + 64u) +40 ((& std::basic_iostream >::_ZTVSd) + 104u) +48 ((& std::basic_iostream >::_ZTVSd) + 64u) + +Construction vtable for std::basic_istream > (0x7f588ee74620 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E: 10u entries +0 24u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +24 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +32 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +40 -24u +48 (int (*)(...))-0x00000000000000018 +56 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +64 std::basic_istream >::_ZTv0_n24_NSt13basic_istreamIwSt11char_traitsIwEED1Ev +72 std::basic_istream >::_ZTv0_n24_NSt13basic_istreamIwSt11char_traitsIwEED0Ev + +Construction vtable for std::basic_ostream > (0x7f588ee74770 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE16_St13basic_ostreamIwS1_E: 10u entries +0 8u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +24 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +32 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +40 -8u +48 (int (*)(...))-0x00000000000000008 +56 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +64 std::basic_ostream >::_ZTv0_n24_NSt13basic_ostreamIwSt11char_traitsIwEED1Ev +72 std::basic_ostream >::_ZTv0_n24_NSt13basic_ostreamIwSt11char_traitsIwEED0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSt14basic_iostreamIwSt11char_traitsIwEE: 7u entries +0 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 24u) +8 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 24u) +16 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 64u) +24 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE16_St13basic_ostreamIwS1_E) + 24u) +32 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE16_St13basic_ostreamIwS1_E) + 64u) +40 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 104u) +48 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 64u) + +Class QtConcurrent::BlockSizeManager + size=96 align=8 + base size=92 base align=8 +QtConcurrent::BlockSizeManager (0x7f588eede230) 0 + +Vtable for QFutureWatcherBase +QFutureWatcherBase::_ZTV18QFutureWatcherBase: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFutureWatcherBase) +16 QFutureWatcherBase::metaObject +24 QFutureWatcherBase::qt_metacast +32 QFutureWatcherBase::qt_metacall +40 QFutureWatcherBase::~QFutureWatcherBase +48 QFutureWatcherBase::~QFutureWatcherBase +56 QFutureWatcherBase::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QFutureWatcherBase::connectNotify +104 QFutureWatcherBase::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QFutureWatcherBase + size=16 align=8 + base size=16 base align=8 +QFutureWatcherBase (0x7f588eaa9bd0) 0 + vptr=((& QFutureWatcherBase::_ZTV18QFutureWatcherBase) + 16u) + QObject (0x7f588eaa9c40) 0 + primary-for QFutureWatcherBase (0x7f588eaa9bd0) + +Vtable for QFactoryInterface +QFactoryInterface::_ZTV17QFactoryInterface: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QFactoryInterface) +16 QFactoryInterface::~QFactoryInterface +24 QFactoryInterface::~QFactoryInterface +32 __cxa_pure_virtual + +Class QFactoryInterface + size=8 align=8 + base size=8 base align=8 +QFactoryInterface (0x7f588e9c0e00) 0 nearly-empty + vptr=((& QFactoryInterface::_ZTV17QFactoryInterface) + 16u) + +Vtable for QTextCodecFactoryInterface +QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QTextCodecFactoryInterface) +16 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +24 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QTextCodecFactoryInterface + size=8 align=8 + base size=8 base align=8 +QTextCodecFactoryInterface (0x7f588e9e3ee0) 0 nearly-empty + vptr=((& QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface) + 16u) + QFactoryInterface (0x7f588e9e3f50) 0 nearly-empty + primary-for QTextCodecFactoryInterface (0x7f588e9e3ee0) + +Vtable for QTextCodecPlugin +QTextCodecPlugin::_ZTV16QTextCodecPlugin: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QTextCodecPlugin) +16 QTextCodecPlugin::metaObject +24 QTextCodecPlugin::qt_metacast +32 QTextCodecPlugin::qt_metacall +40 QTextCodecPlugin::~QTextCodecPlugin +48 QTextCodecPlugin::~QTextCodecPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 QTextCodecPlugin::keys +160 QTextCodecPlugin::create +168 (int (*)(...))-0x00000000000000010 +176 (int (*)(...))(& _ZTI16QTextCodecPlugin) +184 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD1Ev +192 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD0Ev +200 QTextCodecPlugin::_ZThn16_NK16QTextCodecPlugin4keysEv +208 QTextCodecPlugin::_ZThn16_N16QTextCodecPlugin6createERK7QString + +Class QTextCodecPlugin + size=24 align=8 + base size=24 base align=8 +QTextCodecPlugin (0x7f588e9e6e00) 0 + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 16u) + QObject (0x7f588e9ee7e0) 0 + primary-for QTextCodecPlugin (0x7f588e9e6e00) + QTextCodecFactoryInterface (0x7f588e9ee850) 16 nearly-empty + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 184u) + QFactoryInterface (0x7f588e9ee8c0) 16 nearly-empty + primary-for QTextCodecFactoryInterface (0x7f588e9ee850) + +Class QLibraryInfo + size=1 align=1 + base size=0 base align=1 +QLibraryInfo (0x7f588ea04700) 0 empty + +Vtable for QTranslator +QTranslator::_ZTV11QTranslator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTranslator) +16 QTranslator::metaObject +24 QTranslator::qt_metacast +32 QTranslator::qt_metacall +40 QTranslator::~QTranslator +48 QTranslator::~QTranslator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTranslator::translate +120 QTranslator::isEmpty + +Class QTranslator + size=16 align=8 + base size=16 base align=8 +QTranslator (0x7f588ea49000) 0 + vptr=((& QTranslator::_ZTV11QTranslator) + 16u) + QObject (0x7f588ea49070) 0 + primary-for QTranslator (0x7f588ea49000) + +Class __exception + size=40 align=8 + base size=40 base align=8 +__exception (0x7f588ea5af50) 0 + +Vtable for QMimeData +QMimeData::_ZTV9QMimeData: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QMimeData) +16 QMimeData::metaObject +24 QMimeData::qt_metacast +32 QMimeData::qt_metacall +40 QMimeData::~QMimeData +48 QMimeData::~QMimeData +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMimeData::hasFormat +120 QMimeData::formats +128 QMimeData::retrieveData + +Class QMimeData + size=16 align=8 + base size=16 base align=8 +QMimeData (0x7f588e8c6150) 0 + vptr=((& QMimeData::_ZTV9QMimeData) + 16u) + QObject (0x7f588e8c61c0) 0 + primary-for QMimeData (0x7f588e8c6150) + +Vtable for QEventLoop +QEventLoop::_ZTV10QEventLoop: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QEventLoop) +16 QEventLoop::metaObject +24 QEventLoop::qt_metacast +32 QEventLoop::qt_metacall +40 QEventLoop::~QEventLoop +48 QEventLoop::~QEventLoop +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QEventLoop + size=16 align=8 + base size=16 base align=8 +QEventLoop (0x7f588e8dd9a0) 0 + vptr=((& QEventLoop::_ZTV10QEventLoop) + 16u) + QObject (0x7f588e8dda10) 0 + primary-for QEventLoop (0x7f588e8dd9a0) + +Vtable for QEvent +QEvent::_ZTV6QEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QEvent) +16 QEvent::~QEvent +24 QEvent::~QEvent + +Class QEvent + size=24 align=8 + base size=20 base align=8 +QEvent (0x7f588e91f310) 0 + vptr=((& QEvent::_ZTV6QEvent) + 16u) + +Vtable for QTimerEvent +QTimerEvent::_ZTV11QTimerEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTimerEvent) +16 QTimerEvent::~QTimerEvent +24 QTimerEvent::~QTimerEvent + +Class QTimerEvent + size=24 align=8 + base size=24 base align=8 +QTimerEvent (0x7f588e938ee0) 0 + vptr=((& QTimerEvent::_ZTV11QTimerEvent) + 16u) + QEvent (0x7f588e938f50) 0 + primary-for QTimerEvent (0x7f588e938ee0) + +Vtable for QChildEvent +QChildEvent::_ZTV11QChildEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QChildEvent) +16 QChildEvent::~QChildEvent +24 QChildEvent::~QChildEvent + +Class QChildEvent + size=32 align=8 + base size=32 base align=8 +QChildEvent (0x7f588e93a380) 0 + vptr=((& QChildEvent::_ZTV11QChildEvent) + 16u) + QEvent (0x7f588e93a3f0) 0 + primary-for QChildEvent (0x7f588e93a380) + +Vtable for QCustomEvent +QCustomEvent::_ZTV12QCustomEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QCustomEvent) +16 QCustomEvent::~QCustomEvent +24 QCustomEvent::~QCustomEvent + +Class QCustomEvent + size=24 align=8 + base size=20 base align=8 +QCustomEvent (0x7f588e94d620) 0 + vptr=((& QCustomEvent::_ZTV12QCustomEvent) + 16u) + QEvent (0x7f588e94d690) 0 + primary-for QCustomEvent (0x7f588e94d620) + +Vtable for QDynamicPropertyChangeEvent +QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QDynamicPropertyChangeEvent) +16 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent +24 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent + +Class QDynamicPropertyChangeEvent + size=32 align=8 + base size=32 base align=8 +QDynamicPropertyChangeEvent (0x7f588e94de00) 0 + vptr=((& QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent) + 16u) + QEvent (0x7f588e94de70) 0 + primary-for QDynamicPropertyChangeEvent (0x7f588e94de00) + +Vtable for QCoreApplication +QCoreApplication::_ZTV16QCoreApplication: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QCoreApplication) +16 QCoreApplication::metaObject +24 QCoreApplication::qt_metacast +32 QCoreApplication::qt_metacall +40 QCoreApplication::~QCoreApplication +48 QCoreApplication::~QCoreApplication +56 QCoreApplication::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCoreApplication::notify +120 QCoreApplication::compressEvent + +Class QCoreApplication + size=16 align=8 + base size=16 base align=8 +QCoreApplication (0x7f588e95e230) 0 + vptr=((& QCoreApplication::_ZTV16QCoreApplication) + 16u) + QObject (0x7f588e95e2a0) 0 + primary-for QCoreApplication (0x7f588e95e230) + +Vtable for QSharedMemory +QSharedMemory::_ZTV13QSharedMemory: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSharedMemory) +16 QSharedMemory::metaObject +24 QSharedMemory::qt_metacast +32 QSharedMemory::qt_metacall +40 QSharedMemory::~QSharedMemory +48 QSharedMemory::~QSharedMemory +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSharedMemory + size=16 align=8 + base size=16 base align=8 +QSharedMemory (0x7f588e789a80) 0 + vptr=((& QSharedMemory::_ZTV13QSharedMemory) + 16u) + QObject (0x7f588e789af0) 0 + primary-for QSharedMemory (0x7f588e789a80) + +Class QModelIndex + size=24 align=8 + base size=24 base align=8 +QModelIndex (0x7f588e7a8850) 0 + +Class QPersistentModelIndex + size=8 align=8 + base size=8 base align=8 +QPersistentModelIndex (0x7f588e7d0310) 0 + +Vtable for QAbstractItemModel +QAbstractItemModel::_ZTV18QAbstractItemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractItemModel) +16 QAbstractItemModel::metaObject +24 QAbstractItemModel::qt_metacast +32 QAbstractItemModel::qt_metacall +40 QAbstractItemModel::~QAbstractItemModel +48 QAbstractItemModel::~QAbstractItemModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractItemModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractItemModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractItemModel + size=16 align=8 + base size=16 base align=8 +QAbstractItemModel (0x7f588e7dd5b0) 0 + vptr=((& QAbstractItemModel::_ZTV18QAbstractItemModel) + 16u) + QObject (0x7f588e7dd620) 0 + primary-for QAbstractItemModel (0x7f588e7dd5b0) + +Vtable for QAbstractTableModel +QAbstractTableModel::_ZTV19QAbstractTableModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractTableModel) +16 QAbstractTableModel::metaObject +24 QAbstractTableModel::qt_metacast +32 QAbstractTableModel::qt_metacall +40 QAbstractTableModel::~QAbstractTableModel +48 QAbstractTableModel::~QAbstractTableModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractTableModel::index +120 QAbstractTableModel::parent +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractTableModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractTableModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractTableModel + size=16 align=8 + base size=16 base align=8 +QAbstractTableModel (0x7f588e82e930) 0 + vptr=((& QAbstractTableModel::_ZTV19QAbstractTableModel) + 16u) + QAbstractItemModel (0x7f588e82e9a0) 0 + primary-for QAbstractTableModel (0x7f588e82e930) + QObject (0x7f588e82ea10) 0 + primary-for QAbstractItemModel (0x7f588e82e9a0) + +Vtable for QAbstractListModel +QAbstractListModel::_ZTV18QAbstractListModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractListModel) +16 QAbstractListModel::metaObject +24 QAbstractListModel::qt_metacast +32 QAbstractListModel::qt_metacall +40 QAbstractListModel::~QAbstractListModel +48 QAbstractListModel::~QAbstractListModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractListModel::index +120 QAbstractListModel::parent +128 __cxa_pure_virtual +136 QAbstractListModel::columnCount +144 QAbstractListModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractListModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractListModel + size=16 align=8 + base size=16 base align=8 +QAbstractListModel (0x7f588e83dee0) 0 + vptr=((& QAbstractListModel::_ZTV18QAbstractListModel) + 16u) + QAbstractItemModel (0x7f588e83df50) 0 + primary-for QAbstractListModel (0x7f588e83dee0) + QObject (0x7f588e83d230) 0 + primary-for QAbstractItemModel (0x7f588e83df50) + +Vtable for QSignalMapper +QSignalMapper::_ZTV13QSignalMapper: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSignalMapper) +16 QSignalMapper::metaObject +24 QSignalMapper::qt_metacast +32 QSignalMapper::qt_metacall +40 QSignalMapper::~QSignalMapper +48 QSignalMapper::~QSignalMapper +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSignalMapper + size=16 align=8 + base size=16 base align=8 +QSignalMapper (0x7f588e67e000) 0 + vptr=((& QSignalMapper::_ZTV13QSignalMapper) + 16u) + QObject (0x7f588e67e070) 0 + primary-for QSignalMapper (0x7f588e67e000) + +Vtable for QObjectCleanupHandler +QObjectCleanupHandler::_ZTV21QObjectCleanupHandler: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QObjectCleanupHandler) +16 QObjectCleanupHandler::metaObject +24 QObjectCleanupHandler::qt_metacast +32 QObjectCleanupHandler::qt_metacall +40 QObjectCleanupHandler::~QObjectCleanupHandler +48 QObjectCleanupHandler::~QObjectCleanupHandler +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObjectCleanupHandler + size=24 align=8 + base size=24 base align=8 +QObjectCleanupHandler (0x7f588e6953f0) 0 + vptr=((& QObjectCleanupHandler::_ZTV21QObjectCleanupHandler) + 16u) + QObject (0x7f588e695460) 0 + primary-for QObjectCleanupHandler (0x7f588e6953f0) + +Class QBasicTimer + size=4 align=4 + base size=4 base align=4 +QBasicTimer (0x7f588e6a5540) 0 + +Vtable for QSocketNotifier +QSocketNotifier::_ZTV15QSocketNotifier: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSocketNotifier) +16 QSocketNotifier::metaObject +24 QSocketNotifier::qt_metacast +32 QSocketNotifier::qt_metacall +40 QSocketNotifier::~QSocketNotifier +48 QSocketNotifier::~QSocketNotifier +56 QSocketNotifier::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSocketNotifier + size=32 align=8 + base size=25 base align=8 +QSocketNotifier (0x7f588e6af930) 0 + vptr=((& QSocketNotifier::_ZTV15QSocketNotifier) + 16u) + QObject (0x7f588e6af9a0) 0 + primary-for QSocketNotifier (0x7f588e6af930) + +Vtable for QTimer +QTimer::_ZTV6QTimer: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QTimer) +16 QTimer::metaObject +24 QTimer::qt_metacast +32 QTimer::qt_metacall +40 QTimer::~QTimer +48 QTimer::~QTimer +56 QObject::event +64 QObject::eventFilter +72 QTimer::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTimer + size=32 align=8 + base size=29 base align=8 +QTimer (0x7f588e6cecb0) 0 + vptr=((& QTimer::_ZTV6QTimer) + 16u) + QObject (0x7f588e6ced20) 0 + primary-for QTimer (0x7f588e6cecb0) + +Vtable for QAbstractEventDispatcher +QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QAbstractEventDispatcher) +16 QAbstractEventDispatcher::metaObject +24 QAbstractEventDispatcher::qt_metacast +32 QAbstractEventDispatcher::qt_metacall +40 QAbstractEventDispatcher::~QAbstractEventDispatcher +48 QAbstractEventDispatcher::~QAbstractEventDispatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 QAbstractEventDispatcher::startingUp +208 QAbstractEventDispatcher::closingDown + +Class QAbstractEventDispatcher + size=16 align=8 + base size=16 base align=8 +QAbstractEventDispatcher (0x7f588e6f12a0) 0 + vptr=((& QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher) + 16u) + QObject (0x7f588e6f1310) 0 + primary-for QAbstractEventDispatcher (0x7f588e6f12a0) + +Class QMetaMethod + size=16 align=8 + base size=12 base align=8 +QMetaMethod (0x7f588e70b150) 0 + +Class QMetaEnum + size=16 align=8 + base size=12 base align=8 +QMetaEnum (0x7f588e7285b0) 0 + +Class QMetaProperty + size=32 align=8 + base size=32 base align=8 +QMetaProperty (0x7f588e732310) 0 + +Class QMetaClassInfo + size=16 align=8 + base size=12 base align=8 +QMetaClassInfo (0x7f588e7329a0) 0 + +Class QSystemSemaphore + size=8 align=8 + base size=8 base align=8 +QSystemSemaphore (0x7f588e7454d0) 0 + +Vtable for QLibrary +QLibrary::_ZTV8QLibrary: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QLibrary) +16 QLibrary::metaObject +24 QLibrary::qt_metacast +32 QLibrary::qt_metacall +40 QLibrary::~QLibrary +48 QLibrary::~QLibrary +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QLibrary + size=32 align=8 + base size=25 base align=8 +QLibrary (0x7f588e745e00) 0 + vptr=((& QLibrary::_ZTV8QLibrary) + 16u) + QObject (0x7f588e745e70) 0 + primary-for QLibrary (0x7f588e745e00) + +Vtable for QPluginLoader +QPluginLoader::_ZTV13QPluginLoader: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QPluginLoader) +16 QPluginLoader::metaObject +24 QPluginLoader::qt_metacast +32 QPluginLoader::qt_metacall +40 QPluginLoader::~QPluginLoader +48 QPluginLoader::~QPluginLoader +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QPluginLoader + size=32 align=8 + base size=25 base align=8 +QPluginLoader (0x7f588e58a8c0) 0 + vptr=((& QPluginLoader::_ZTV13QPluginLoader) + 16u) + QObject (0x7f588e58a930) 0 + primary-for QPluginLoader (0x7f588e58a8c0) + +Class QUuid + size=16 align=4 + base size=16 base align=4 +QUuid (0x7f588e5ae070) 0 + +Class QSemaphore + size=8 align=8 + base size=8 base align=8 +QSemaphore (0x7f588e5cd9a0) 0 + +Class QThreadStorageData + size=4 align=4 + base size=4 base align=4 +QThreadStorageData (0x7f588e5cdee0) 0 + +Class QReadWriteLock + size=8 align=8 + base size=8 base align=8 +QReadWriteLock (0x7f588e5df690) 0 + +Class QReadLocker + size=8 align=8 + base size=8 base align=8 +QReadLocker (0x7f588e5dfd20) 0 + +Class QWriteLocker + size=8 align=8 + base size=8 base align=8 +QWriteLocker (0x7f588e60e0e0) 0 + +Class QDomImplementation + size=8 align=8 + base size=8 base align=8 +QDomImplementation (0x7f588e621460) 0 + +Class QDomNode + size=8 align=8 + base size=8 base align=8 +QDomNode (0x7f588e621d90) 0 + +Class QDomNodeList + size=8 align=8 + base size=8 base align=8 +QDomNodeList (0x7f588e64e000) 0 + +Class QDomDocumentType + size=8 align=8 + base size=8 base align=8 +QDomDocumentType (0x7f588e656070) 0 + QDomNode (0x7f588e6560e0) 0 + +Class QDomDocument + size=8 align=8 + base size=8 base align=8 +QDomDocument (0x7f588e656bd0) 0 + QDomNode (0x7f588e656c40) 0 + +Class QDomNamedNodeMap + size=8 align=8 + base size=8 base align=8 +QDomNamedNodeMap (0x7f588e65daf0) 0 + +Class QDomDocumentFragment + size=8 align=8 + base size=8 base align=8 +QDomDocumentFragment (0x7f588e46d930) 0 + QDomNode (0x7f588e46d9a0) 0 + +Class QDomCharacterData + size=8 align=8 + base size=8 base align=8 +QDomCharacterData (0x7f588e4784d0) 0 + QDomNode (0x7f588e478540) 0 + +Class QDomAttr + size=8 align=8 + base size=8 base align=8 +QDomAttr (0x7f588e478ee0) 0 + QDomNode (0x7f588e478f50) 0 + +Class QDomElement + size=8 align=8 + base size=8 base align=8 +QDomElement (0x7f588e481a80) 0 + QDomNode (0x7f588e481af0) 0 + +Class QDomText + size=8 align=8 + base size=8 base align=8 +QDomText (0x7f588e487d20) 0 + QDomCharacterData (0x7f588e487d90) 0 + QDomNode (0x7f588e487e00) 0 + +Class QDomComment + size=8 align=8 + base size=8 base align=8 +QDomComment (0x7f588e49fa80) 0 + QDomCharacterData (0x7f588e49faf0) 0 + QDomNode (0x7f588e49fb60) 0 + +Class QDomCDATASection + size=8 align=8 + base size=8 base align=8 +QDomCDATASection (0x7f588e4a6690) 0 + QDomText (0x7f588e4a6700) 0 + QDomCharacterData (0x7f588e4a6770) 0 + QDomNode (0x7f588e4a67e0) 0 + +Class QDomNotation + size=8 align=8 + base size=8 base align=8 +QDomNotation (0x7f588e4aa310) 0 + QDomNode (0x7f588e4aa380) 0 + +Class QDomEntity + size=8 align=8 + base size=8 base align=8 +QDomEntity (0x7f588e4aae70) 0 + QDomNode (0x7f588e4aaee0) 0 + +Class QDomEntityReference + size=8 align=8 + base size=8 base align=8 +QDomEntityReference (0x7f588e4b1a10) 0 + QDomNode (0x7f588e4b1a80) 0 + +Class QDomProcessingInstruction + size=8 align=8 + base size=8 base align=8 +QDomProcessingInstruction (0x7f588e4b65b0) 0 + QDomNode (0x7f588e4b6620) 0 + +Class QXmlNamespaceSupport + size=8 align=8 + base size=8 base align=8 +QXmlNamespaceSupport (0x7f588e4be150) 0 + +Class QXmlAttributes::Attribute + size=32 align=8 + base size=32 base align=8 +QXmlAttributes::Attribute (0x7f588e4be7e0) 0 + +Vtable for QXmlAttributes +QXmlAttributes::_ZTV14QXmlAttributes: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QXmlAttributes) +16 QXmlAttributes::~QXmlAttributes +24 QXmlAttributes::~QXmlAttributes + +Class QXmlAttributes + size=24 align=8 + base size=24 base align=8 +QXmlAttributes (0x7f588e4be690) 0 + vptr=((& QXmlAttributes::_ZTV14QXmlAttributes) + 16u) + +Vtable for QXmlInputSource +QXmlInputSource::_ZTV15QXmlInputSource: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QXmlInputSource) +16 QXmlInputSource::~QXmlInputSource +24 QXmlInputSource::~QXmlInputSource +32 QXmlInputSource::setData +40 QXmlInputSource::setData +48 QXmlInputSource::fetchData +56 QXmlInputSource::data +64 QXmlInputSource::next +72 QXmlInputSource::reset +80 QXmlInputSource::fromRawData + +Class QXmlInputSource + size=16 align=8 + base size=16 base align=8 +QXmlInputSource (0x7f588e4f7ee0) 0 + vptr=((& QXmlInputSource::_ZTV15QXmlInputSource) + 16u) + +Class QXmlParseException + size=8 align=8 + base size=8 base align=8 +QXmlParseException (0x7f588e4fe230) 0 + +Vtable for QXmlReader +QXmlReader::_ZTV10QXmlReader: 24u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QXmlReader) +16 QXmlReader::~QXmlReader +24 QXmlReader::~QXmlReader +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual + +Class QXmlReader + size=8 align=8 + base size=8 base align=8 +QXmlReader (0x7f588e4fe4d0) 0 nearly-empty + vptr=((& QXmlReader::_ZTV10QXmlReader) + 16u) + +Vtable for QXmlSimpleReader +QXmlSimpleReader::_ZTV16QXmlSimpleReader: 26u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QXmlSimpleReader) +16 QXmlSimpleReader::~QXmlSimpleReader +24 QXmlSimpleReader::~QXmlSimpleReader +32 QXmlSimpleReader::feature +40 QXmlSimpleReader::setFeature +48 QXmlSimpleReader::hasFeature +56 QXmlSimpleReader::property +64 QXmlSimpleReader::setProperty +72 QXmlSimpleReader::hasProperty +80 QXmlSimpleReader::setEntityResolver +88 QXmlSimpleReader::entityResolver +96 QXmlSimpleReader::setDTDHandler +104 QXmlSimpleReader::DTDHandler +112 QXmlSimpleReader::setContentHandler +120 QXmlSimpleReader::contentHandler +128 QXmlSimpleReader::setErrorHandler +136 QXmlSimpleReader::errorHandler +144 QXmlSimpleReader::setLexicalHandler +152 QXmlSimpleReader::lexicalHandler +160 QXmlSimpleReader::setDeclHandler +168 QXmlSimpleReader::declHandler +176 QXmlSimpleReader::parse +184 QXmlSimpleReader::parse +192 QXmlSimpleReader::parse +200 QXmlSimpleReader::parseContinue + +Class QXmlSimpleReader + size=16 align=8 + base size=16 base align=8 +QXmlSimpleReader (0x7f588e4feee0) 0 + vptr=((& QXmlSimpleReader::_ZTV16QXmlSimpleReader) + 16u) + QXmlReader (0x7f588e4fef50) 0 nearly-empty + primary-for QXmlSimpleReader (0x7f588e4feee0) + +Vtable for QXmlLocator +QXmlLocator::_ZTV11QXmlLocator: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QXmlLocator) +16 QXmlLocator::~QXmlLocator +24 QXmlLocator::~QXmlLocator +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QXmlLocator + size=8 align=8 + base size=8 base align=8 +QXmlLocator (0x7f588e521930) 0 nearly-empty + vptr=((& QXmlLocator::_ZTV11QXmlLocator) + 16u) + +Vtable for QXmlContentHandler +QXmlContentHandler::_ZTV18QXmlContentHandler: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QXmlContentHandler) +16 QXmlContentHandler::~QXmlContentHandler +24 QXmlContentHandler::~QXmlContentHandler +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QXmlContentHandler + size=8 align=8 + base size=8 base align=8 +QXmlContentHandler (0x7f588e521b60) 0 nearly-empty + vptr=((& QXmlContentHandler::_ZTV18QXmlContentHandler) + 16u) + +Vtable for QXmlErrorHandler +QXmlErrorHandler::_ZTV16QXmlErrorHandler: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QXmlErrorHandler) +16 QXmlErrorHandler::~QXmlErrorHandler +24 QXmlErrorHandler::~QXmlErrorHandler +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual + +Class QXmlErrorHandler + size=8 align=8 + base size=8 base align=8 +QXmlErrorHandler (0x7f588e536460) 0 nearly-empty + vptr=((& QXmlErrorHandler::_ZTV16QXmlErrorHandler) + 16u) + +Vtable for QXmlDTDHandler +QXmlDTDHandler::_ZTV14QXmlDTDHandler: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QXmlDTDHandler) +16 QXmlDTDHandler::~QXmlDTDHandler +24 QXmlDTDHandler::~QXmlDTDHandler +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual + +Class QXmlDTDHandler + size=8 align=8 + base size=8 base align=8 +QXmlDTDHandler (0x7f588e536e70) 0 nearly-empty + vptr=((& QXmlDTDHandler::_ZTV14QXmlDTDHandler) + 16u) + +Vtable for QXmlEntityResolver +QXmlEntityResolver::_ZTV18QXmlEntityResolver: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QXmlEntityResolver) +16 QXmlEntityResolver::~QXmlEntityResolver +24 QXmlEntityResolver::~QXmlEntityResolver +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QXmlEntityResolver + size=8 align=8 + base size=8 base align=8 +QXmlEntityResolver (0x7f588e5457e0) 0 nearly-empty + vptr=((& QXmlEntityResolver::_ZTV18QXmlEntityResolver) + 16u) + +Vtable for QXmlLexicalHandler +QXmlLexicalHandler::_ZTV18QXmlLexicalHandler: 12u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QXmlLexicalHandler) +16 QXmlLexicalHandler::~QXmlLexicalHandler +24 QXmlLexicalHandler::~QXmlLexicalHandler +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual + +Class QXmlLexicalHandler + size=8 align=8 + base size=8 base align=8 +QXmlLexicalHandler (0x7f588e54d230) 0 nearly-empty + vptr=((& QXmlLexicalHandler::_ZTV18QXmlLexicalHandler) + 16u) + +Vtable for QXmlDeclHandler +QXmlDeclHandler::_ZTV15QXmlDeclHandler: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QXmlDeclHandler) +16 QXmlDeclHandler::~QXmlDeclHandler +24 QXmlDeclHandler::~QXmlDeclHandler +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual + +Class QXmlDeclHandler + size=8 align=8 + base size=8 base align=8 +QXmlDeclHandler (0x7f588e54dc40) 0 nearly-empty + vptr=((& QXmlDeclHandler::_ZTV15QXmlDeclHandler) + 16u) + +Vtable for QXmlDefaultHandler +QXmlDefaultHandler::_ZTV18QXmlDefaultHandler: 73u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QXmlDefaultHandler) +16 QXmlDefaultHandler::~QXmlDefaultHandler +24 QXmlDefaultHandler::~QXmlDefaultHandler +32 QXmlDefaultHandler::setDocumentLocator +40 QXmlDefaultHandler::startDocument +48 QXmlDefaultHandler::endDocument +56 QXmlDefaultHandler::startPrefixMapping +64 QXmlDefaultHandler::endPrefixMapping +72 QXmlDefaultHandler::startElement +80 QXmlDefaultHandler::endElement +88 QXmlDefaultHandler::characters +96 QXmlDefaultHandler::ignorableWhitespace +104 QXmlDefaultHandler::processingInstruction +112 QXmlDefaultHandler::skippedEntity +120 QXmlDefaultHandler::errorString +128 QXmlDefaultHandler::warning +136 QXmlDefaultHandler::error +144 QXmlDefaultHandler::fatalError +152 QXmlDefaultHandler::notationDecl +160 QXmlDefaultHandler::unparsedEntityDecl +168 QXmlDefaultHandler::resolveEntity +176 QXmlDefaultHandler::startDTD +184 QXmlDefaultHandler::endDTD +192 QXmlDefaultHandler::startEntity +200 QXmlDefaultHandler::endEntity +208 QXmlDefaultHandler::startCDATA +216 QXmlDefaultHandler::endCDATA +224 QXmlDefaultHandler::comment +232 QXmlDefaultHandler::attributeDecl +240 QXmlDefaultHandler::internalEntityDecl +248 QXmlDefaultHandler::externalEntityDecl +256 (int (*)(...))-0x00000000000000008 +264 (int (*)(...))(& _ZTI18QXmlDefaultHandler) +272 QXmlDefaultHandler::_ZThn8_N18QXmlDefaultHandlerD1Ev +280 QXmlDefaultHandler::_ZThn8_N18QXmlDefaultHandlerD0Ev +288 QXmlDefaultHandler::_ZThn8_N18QXmlDefaultHandler7warningERK18QXmlParseException +296 QXmlDefaultHandler::_ZThn8_N18QXmlDefaultHandler5errorERK18QXmlParseException +304 QXmlDefaultHandler::_ZThn8_N18QXmlDefaultHandler10fatalErrorERK18QXmlParseException +312 QXmlDefaultHandler::_ZThn8_NK18QXmlDefaultHandler11errorStringEv +320 (int (*)(...))-0x00000000000000010 +328 (int (*)(...))(& _ZTI18QXmlDefaultHandler) +336 QXmlDefaultHandler::_ZThn16_N18QXmlDefaultHandlerD1Ev +344 QXmlDefaultHandler::_ZThn16_N18QXmlDefaultHandlerD0Ev +352 QXmlDefaultHandler::_ZThn16_N18QXmlDefaultHandler12notationDeclERK7QStringS2_S2_ +360 QXmlDefaultHandler::_ZThn16_N18QXmlDefaultHandler18unparsedEntityDeclERK7QStringS2_S2_S2_ +368 QXmlDefaultHandler::_ZThn16_NK18QXmlDefaultHandler11errorStringEv +376 (int (*)(...))-0x00000000000000018 +384 (int (*)(...))(& _ZTI18QXmlDefaultHandler) +392 QXmlDefaultHandler::_ZThn24_N18QXmlDefaultHandlerD1Ev +400 QXmlDefaultHandler::_ZThn24_N18QXmlDefaultHandlerD0Ev +408 QXmlDefaultHandler::_ZThn24_N18QXmlDefaultHandler13resolveEntityERK7QStringS2_RP15QXmlInputSource +416 QXmlDefaultHandler::_ZThn24_NK18QXmlDefaultHandler11errorStringEv +424 (int (*)(...))-0x00000000000000020 +432 (int (*)(...))(& _ZTI18QXmlDefaultHandler) +440 QXmlDefaultHandler::_ZThn32_N18QXmlDefaultHandlerD1Ev +448 QXmlDefaultHandler::_ZThn32_N18QXmlDefaultHandlerD0Ev +456 QXmlDefaultHandler::_ZThn32_N18QXmlDefaultHandler8startDTDERK7QStringS2_S2_ +464 QXmlDefaultHandler::_ZThn32_N18QXmlDefaultHandler6endDTDEv +472 QXmlDefaultHandler::_ZThn32_N18QXmlDefaultHandler11startEntityERK7QString +480 QXmlDefaultHandler::_ZThn32_N18QXmlDefaultHandler9endEntityERK7QString +488 QXmlDefaultHandler::_ZThn32_N18QXmlDefaultHandler10startCDATAEv +496 QXmlDefaultHandler::_ZThn32_N18QXmlDefaultHandler8endCDATAEv +504 QXmlDefaultHandler::_ZThn32_N18QXmlDefaultHandler7commentERK7QString +512 QXmlDefaultHandler::_ZThn32_NK18QXmlDefaultHandler11errorStringEv +520 (int (*)(...))-0x00000000000000028 +528 (int (*)(...))(& _ZTI18QXmlDefaultHandler) +536 QXmlDefaultHandler::_ZThn40_N18QXmlDefaultHandlerD1Ev +544 QXmlDefaultHandler::_ZThn40_N18QXmlDefaultHandlerD0Ev +552 QXmlDefaultHandler::_ZThn40_N18QXmlDefaultHandler13attributeDeclERK7QStringS2_S2_S2_S2_ +560 QXmlDefaultHandler::_ZThn40_N18QXmlDefaultHandler18internalEntityDeclERK7QStringS2_ +568 QXmlDefaultHandler::_ZThn40_N18QXmlDefaultHandler18externalEntityDeclERK7QStringS2_S2_ +576 QXmlDefaultHandler::_ZThn40_NK18QXmlDefaultHandler11errorStringEv + +Class QXmlDefaultHandler + size=56 align=8 + base size=56 base align=8 +QXmlDefaultHandler (0x7f588e557c80) 0 + vptr=((& QXmlDefaultHandler::_ZTV18QXmlDefaultHandler) + 16u) + QXmlContentHandler (0x7f588e5605b0) 0 nearly-empty + primary-for QXmlDefaultHandler (0x7f588e557c80) + QXmlErrorHandler (0x7f588e560620) 8 nearly-empty + vptr=((& QXmlDefaultHandler::_ZTV18QXmlDefaultHandler) + 272u) + QXmlDTDHandler (0x7f588e560690) 16 nearly-empty + vptr=((& QXmlDefaultHandler::_ZTV18QXmlDefaultHandler) + 336u) + QXmlEntityResolver (0x7f588e560700) 24 nearly-empty + vptr=((& QXmlDefaultHandler::_ZTV18QXmlDefaultHandler) + 392u) + QXmlLexicalHandler (0x7f588e560770) 32 nearly-empty + vptr=((& QXmlDefaultHandler::_ZTV18QXmlDefaultHandler) + 440u) + QXmlDeclHandler (0x7f588e5607e0) 40 nearly-empty + vptr=((& QXmlDefaultHandler::_ZTV18QXmlDefaultHandler) + 536u) + diff --git a/tests/auto/bic/data/QtXml.4.6.0.linux-gcc-amd64.txt b/tests/auto/bic/data/QtXml.4.6.0.linux-gcc-amd64.txt new file mode 100644 index 0000000..f0916aa --- /dev/null +++ b/tests/auto/bic/data/QtXml.4.6.0.linux-gcc-amd64.txt @@ -0,0 +1,3064 @@ +Class QSysInfo + size=1 align=1 + base size=0 base align=1 +QSysInfo (0x7f35b9415230) 0 empty + +Class QBool + size=1 align=1 + base size=1 base align=1 +QBool (0x7f35b9415e70) 0 + +Class qIsNull(double)::U + size=8 align=8 + base size=8 base align=8 +qIsNull(double)::U (0x7f35b8c27540) 0 + +Class qIsNull(float)::U + size=4 align=4 + base size=4 base align=4 +qIsNull(float)::U (0x7f35b8c277e0) 0 + +Class QFlag + size=4 align=4 + base size=4 base align=4 +QFlag (0x7f35b8c60690) 0 + +Class QIncompatibleFlag + size=4 align=4 + base size=4 base align=4 +QIncompatibleFlag (0x7f35b8c60e70) 0 + +Class QLatin1Char + size=1 align=1 + base size=1 base align=1 +QLatin1Char (0x7f35b8c8f5b0) 0 + +Class QChar + size=2 align=2 + base size=2 base align=2 +QChar (0x7f35b8cb7150) 0 + +Class QBasicAtomicInt + size=4 align=4 + base size=4 base align=4 +QBasicAtomicInt (0x7f35b8b1d310) 0 + +Class QAtomicInt + size=4 align=4 + base size=4 base align=4 +QAtomicInt (0x7f35b8b5bcb0) 0 + QBasicAtomicInt (0x7f35b8b5bd20) 0 + +Class QInternal + size=1 align=1 + base size=0 base align=1 +QInternal (0x7f35b89af4d0) 0 empty + +Class __locale_struct + size=232 align=8 + base size=232 base align=8 +__locale_struct (0x7f35b89af700) 0 + +Class QByteArray::Data + size=32 align=8 + base size=32 base align=8 +QByteArray::Data (0x7f35b89eaaf0) 0 + +Class QByteArray + size=8 align=8 + base size=8 base align=8 +QByteArray (0x7f35b89eaa80) 0 + +Class QByteRef + size=16 align=8 + base size=12 base align=8 +QByteRef (0x7f35b888f380) 0 + +Class QString::Null + size=1 align=1 + base size=0 base align=1 +QString::Null (0x7f35b878dd20) 0 empty + +Class QString::Data + size=32 align=8 + base size=32 base align=8 +QString::Data (0x7f35b87a65b0) 0 + +Class QString + size=8 align=8 + base size=8 base align=8 +QString (0x7f35b8708bd0) 0 + +Class QLatin1String + size=8 align=8 + base size=8 base align=8 +QLatin1String (0x7f35b867e9a0) 0 + +Class QCharRef + size=16 align=8 + base size=12 base align=8 +QCharRef (0x7f35b851d000) 0 + +Class QConstString + size=8 align=8 + base size=8 base align=8 +QConstString (0x7f35b84668c0) 0 + QString (0x7f35b8466930) 0 + +Class QStringRef + size=16 align=8 + base size=16 base align=8 +QStringRef (0x7f35b848c310) 0 + +Class QGenericArgument + size=16 align=8 + base size=16 base align=8 +QGenericArgument (0x7f35b82c4700) 0 + +Class QGenericReturnArgument + size=16 align=8 + base size=16 base align=8 +QGenericReturnArgument (0x7f35b82ce2a0) 0 + QGenericArgument (0x7f35b82ce310) 0 + +Class QMetaObject + size=32 align=8 + base size=32 base align=8 +QMetaObject (0x7f35b82ceb60) 0 + +Class QMetaObjectExtraData + size=16 align=8 + base size=16 base align=8 +QMetaObjectExtraData (0x7f35b82f8bd0) 0 + +Vtable for std::exception +std::exception::_ZTVSt9exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9exception) +16 std::exception::~exception +24 std::exception::~exception +32 std::exception::what + +Class std::exception + size=8 align=8 + base size=8 base align=8 +std::exception (0x7f35b834c1c0) 0 nearly-empty + vptr=((& std::exception::_ZTVSt9exception) + 16u) + +Vtable for std::bad_exception +std::bad_exception::_ZTVSt13bad_exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13bad_exception) +16 std::bad_exception::~bad_exception +24 std::bad_exception::~bad_exception +32 std::bad_exception::what + +Class std::bad_exception + size=8 align=8 + base size=8 base align=8 +std::bad_exception (0x7f35b834c770) 0 nearly-empty + vptr=((& std::bad_exception::_ZTVSt13bad_exception) + 16u) + std::exception (0x7f35b834c7e0) 0 nearly-empty + primary-for std::bad_exception (0x7f35b834c770) + +Vtable for std::bad_alloc +std::bad_alloc::_ZTVSt9bad_alloc: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9bad_alloc) +16 std::bad_alloc::~bad_alloc +24 std::bad_alloc::~bad_alloc +32 std::bad_alloc::what + +Class std::bad_alloc + size=8 align=8 + base size=8 base align=8 +std::bad_alloc (0x7f35b834c930) 0 nearly-empty + vptr=((& std::bad_alloc::_ZTVSt9bad_alloc) + 16u) + std::exception (0x7f35b8362000) 0 nearly-empty + primary-for std::bad_alloc (0x7f35b834c930) + +Class std::nothrow_t + size=1 align=1 + base size=0 base align=1 +std::nothrow_t (0x7f35b8362850) 0 empty + +Class QListData::Data + size=32 align=8 + base size=32 base align=8 +QListData::Data (0x7f35b8362d90) 0 + +Class QListData + size=8 align=8 + base size=8 base align=8 +QListData (0x7f35b8362d20) 0 + +Class QScopedPointerPodDeleter + size=1 align=1 + base size=0 base align=1 +QScopedPointerPodDeleter (0x7f35b828b850) 0 empty + +Vtable for QObjectData +QObjectData::_ZTV11QObjectData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QObjectData) +16 __cxa_pure_virtual +24 __cxa_pure_virtual + +Class QObjectData + size=48 align=8 + base size=48 base align=8 +QObjectData (0x7f35b82ab2a0) 0 + vptr=((& QObjectData::_ZTV11QObjectData) + 16u) + +Vtable for QObject +QObject::_ZTV7QObject: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QObject) +16 QObject::metaObject +24 QObject::qt_metacast +32 QObject::qt_metacall +40 QObject::~QObject +48 QObject::~QObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObject + size=16 align=8 + base size=16 base align=8 +QObject (0x7f35b82ab5b0) 0 + vptr=((& QObject::_ZTV7QObject) + 16u) + +Vtable for QObjectUserData +QObjectUserData::_ZTV15QObjectUserData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QObjectUserData) +16 QObjectUserData::~QObjectUserData +24 QObjectUserData::~QObjectUserData + +Class QObjectUserData + size=8 align=8 + base size=8 base align=8 +QObjectUserData (0x7f35b8120b60) 0 nearly-empty + vptr=((& QObjectUserData::_ZTV15QObjectUserData) + 16u) + +Vtable for QIODevice +QIODevice::_ZTV9QIODevice: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QIODevice) +16 QIODevice::metaObject +24 QIODevice::qt_metacast +32 QIODevice::qt_metacall +40 QIODevice::~QIODevice +48 QIODevice::~QIODevice +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QIODevice::isSequential +120 QIODevice::open +128 QIODevice::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QIODevice::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 __cxa_pure_virtual +224 QIODevice::readLineData +232 __cxa_pure_virtual + +Class QIODevice + size=16 align=8 + base size=16 base align=8 +QIODevice (0x7f35b8131150) 0 + vptr=((& QIODevice::_ZTV9QIODevice) + 16u) + QObject (0x7f35b81311c0) 0 + primary-for QIODevice (0x7f35b8131150) + +Class _IO_marker + size=24 align=8 + base size=24 base align=8 +_IO_marker (0x7f35b8194cb0) 0 + +Class _IO_FILE + size=216 align=8 + base size=216 base align=8 +_IO_FILE (0x7f35b8194d20) 0 + +Vtable for QFile +QFile::_ZTV5QFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QFile) +16 QFile::metaObject +24 QFile::qt_metacast +32 QFile::qt_metacall +40 QFile::~QFile +48 QFile::~QFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QFile::fileEngine + +Class QFile + size=16 align=8 + base size=16 base align=8 +QFile (0x7f35b8194e00) 0 + vptr=((& QFile::_ZTV5QFile) + 16u) + QIODevice (0x7f35b8194e70) 0 + primary-for QFile (0x7f35b8194e00) + QObject (0x7f35b8194ee0) 0 + primary-for QIODevice (0x7f35b8194e70) + +Class QFileInfo + size=8 align=8 + base size=8 base align=8 +QFileInfo (0x7f35b8036070) 0 + +Vtable for QDataStream +QDataStream::_ZTV11QDataStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QDataStream) +16 QDataStream::~QDataStream +24 QDataStream::~QDataStream + +Class QDataStream + size=40 align=8 + base size=40 base align=8 +QDataStream (0x7f35b808aa10) 0 + vptr=((& QDataStream::_ZTV11QDataStream) + 16u) + +Class QRegExp + size=8 align=8 + base size=8 base align=8 +QRegExp (0x7f35b7ef2e70) 0 + +Class QStringMatcher::Data + size=272 align=8 + base size=272 base align=8 +QStringMatcher::Data (0x7f35b7f5b2a0) 0 + +Class QStringMatcher + size=1048 align=8 + base size=1048 base align=8 +QStringMatcher (0x7f35b7f4fc40) 0 + +Class QStringList + size=8 align=8 + base size=8 base align=8 +QStringList (0x7f35b7f5b850) 0 + QList (0x7f35b7f5b8c0) 0 + +Class QDir + size=8 align=8 + base size=8 base align=8 +QDir (0x7f35b7df94d0) 0 + +Class QAbstractFileEngine::ExtensionOption + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionOption (0x7f35b7ea18c0) 0 empty + +Class QAbstractFileEngine::ExtensionReturn + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionReturn (0x7f35b7ea1930) 0 empty + +Class QAbstractFileEngine::MapExtensionOption + size=24 align=8 + base size=20 base align=8 +QAbstractFileEngine::MapExtensionOption (0x7f35b7ea19a0) 0 + QAbstractFileEngine::ExtensionOption (0x7f35b7ea1a10) 0 empty + +Class QAbstractFileEngine::MapExtensionReturn + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::MapExtensionReturn (0x7f35b7ea1bd0) 0 + QAbstractFileEngine::ExtensionReturn (0x7f35b7ea1c40) 0 empty + +Class QAbstractFileEngine::UnMapExtensionOption + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::UnMapExtensionOption (0x7f35b7ea1cb0) 0 + QAbstractFileEngine::ExtensionOption (0x7f35b7ea1d20) 0 empty + +Vtable for QAbstractFileEngine +QAbstractFileEngine::_ZTV19QAbstractFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractFileEngine) +16 QAbstractFileEngine::~QAbstractFileEngine +24 QAbstractFileEngine::~QAbstractFileEngine +32 QAbstractFileEngine::open +40 QAbstractFileEngine::close +48 QAbstractFileEngine::flush +56 QAbstractFileEngine::size +64 QAbstractFileEngine::pos +72 QAbstractFileEngine::seek +80 QAbstractFileEngine::isSequential +88 QAbstractFileEngine::remove +96 QAbstractFileEngine::copy +104 QAbstractFileEngine::rename +112 QAbstractFileEngine::link +120 QAbstractFileEngine::mkdir +128 QAbstractFileEngine::rmdir +136 QAbstractFileEngine::setSize +144 QAbstractFileEngine::caseSensitive +152 QAbstractFileEngine::isRelativePath +160 QAbstractFileEngine::entryList +168 QAbstractFileEngine::fileFlags +176 QAbstractFileEngine::setPermissions +184 QAbstractFileEngine::fileName +192 QAbstractFileEngine::ownerId +200 QAbstractFileEngine::owner +208 QAbstractFileEngine::fileTime +216 QAbstractFileEngine::setFileName +224 QAbstractFileEngine::handle +232 QAbstractFileEngine::beginEntryList +240 QAbstractFileEngine::endEntryList +248 QAbstractFileEngine::read +256 QAbstractFileEngine::readLine +264 QAbstractFileEngine::write +272 QAbstractFileEngine::extension +280 QAbstractFileEngine::supportsExtension + +Class QAbstractFileEngine + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngine (0x7f35b7e86850) 0 + vptr=((& QAbstractFileEngine::_ZTV19QAbstractFileEngine) + 16u) + +Vtable for QAbstractFileEngineHandler +QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QAbstractFileEngineHandler) +16 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +24 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +32 __cxa_pure_virtual + +Class QAbstractFileEngineHandler + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngineHandler (0x7f35b7cd8bd0) 0 nearly-empty + vptr=((& QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler) + 16u) + +Vtable for QAbstractFileEngineIterator +QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QAbstractFileEngineIterator) +16 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +24 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QAbstractFileEngineIterator::currentFileInfo +64 QAbstractFileEngineIterator::entryInfo + +Class QAbstractFileEngineIterator + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngineIterator (0x7f35b7cd8d90) 0 + vptr=((& QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator) + 16u) + +Vtable for QBuffer +QBuffer::_ZTV7QBuffer: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QBuffer) +16 QBuffer::metaObject +24 QBuffer::qt_metacast +32 QBuffer::qt_metacall +40 QBuffer::~QBuffer +48 QBuffer::~QBuffer +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QBuffer::connectNotify +104 QBuffer::disconnectNotify +112 QIODevice::isSequential +120 QBuffer::open +128 QBuffer::close +136 QBuffer::pos +144 QBuffer::size +152 QBuffer::seek +160 QBuffer::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QBuffer::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QBuffer::readData +224 QIODevice::readLineData +232 QBuffer::writeData + +Class QBuffer + size=16 align=8 + base size=16 base align=8 +QBuffer (0x7f35b7ceb690) 0 + vptr=((& QBuffer::_ZTV7QBuffer) + 16u) + QIODevice (0x7f35b7ceb700) 0 + primary-for QBuffer (0x7f35b7ceb690) + QObject (0x7f35b7ceb770) 0 + primary-for QIODevice (0x7f35b7ceb700) + +Class QHashData::Node + size=16 align=8 + base size=16 base align=8 +QHashData::Node (0x7f35b7d2de00) 0 + +Class QHashData + size=40 align=8 + base size=40 base align=8 +QHashData (0x7f35b7d2dd90) 0 + +Class QHashDummyValue + size=1 align=1 + base size=0 base align=1 +QHashDummyValue (0x7f35b7d4f150) 0 empty + +Class QMapData::Node + size=16 align=8 + base size=16 base align=8 +QMapData::Node (0x7f35b7c4ea80) 0 + +Class QMapData + size=128 align=8 + base size=128 base align=8 +QMapData (0x7f35b7c4ea10) 0 + +Vtable for QSystemLocale +QSystemLocale::_ZTV13QSystemLocale: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSystemLocale) +16 QSystemLocale::~QSystemLocale +24 QSystemLocale::~QSystemLocale +32 QSystemLocale::query +40 QSystemLocale::fallbackLocale + +Class QSystemLocale + size=8 align=8 + base size=8 base align=8 +QSystemLocale (0x7f35b7b8c690) 0 nearly-empty + vptr=((& QSystemLocale::_ZTV13QSystemLocale) + 16u) + +Class QLocale::Data + size=4 align=2 + base size=4 base align=2 +QLocale::Data (0x7f35b79d4d90) 0 + +Class QLocale + size=8 align=8 + base size=8 base align=8 +QLocale (0x7f35b7b8caf0) 0 + +Class QTextCodec::ConverterState + size=32 align=8 + base size=32 base align=8 +QTextCodec::ConverterState (0x7f35b7a2cbd0) 0 + +Vtable for QTextCodec +QTextCodec::_ZTV10QTextCodec: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextCodec) +16 __cxa_pure_virtual +24 QTextCodec::aliases +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QTextCodec::~QTextCodec +64 QTextCodec::~QTextCodec + +Class QTextCodec + size=8 align=8 + base size=8 base align=8 +QTextCodec (0x7f35b7a1d460) 0 nearly-empty + vptr=((& QTextCodec::_ZTV10QTextCodec) + 16u) + +Class QTextEncoder + size=40 align=8 + base size=40 base align=8 +QTextEncoder (0x7f35b7a9f150) 0 + +Class QTextDecoder + size=40 align=8 + base size=40 base align=8 +QTextDecoder (0x7f35b7a9ff50) 0 + +Vtable for QTextStream +QTextStream::_ZTV11QTextStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTextStream) +16 QTextStream::~QTextStream +24 QTextStream::~QTextStream + +Class QTextStream + size=16 align=8 + base size=16 base align=8 +QTextStream (0x7f35b7aa7d90) 0 + vptr=((& QTextStream::_ZTV11QTextStream) + 16u) + +Class QTextStreamManipulator + size=40 align=8 + base size=38 base align=8 +QTextStreamManipulator (0x7f35b791fa80) 0 + +Vtable for QTextIStream +QTextIStream::_ZTV12QTextIStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextIStream) +16 QTextIStream::~QTextIStream +24 QTextIStream::~QTextIStream + +Class QTextIStream + size=16 align=8 + base size=16 base align=8 +QTextIStream (0x7f35b7950070) 0 + vptr=((& QTextIStream::_ZTV12QTextIStream) + 16u) + QTextStream (0x7f35b79500e0) 0 + primary-for QTextIStream (0x7f35b7950070) + +Vtable for QTextOStream +QTextOStream::_ZTV12QTextOStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextOStream) +16 QTextOStream::~QTextOStream +24 QTextOStream::~QTextOStream + +Class QTextOStream + size=16 align=8 + base size=16 base align=8 +QTextOStream (0x7f35b795dee0) 0 + vptr=((& QTextOStream::_ZTV12QTextOStream) + 16u) + QTextStream (0x7f35b795df50) 0 + primary-for QTextOStream (0x7f35b795dee0) + +Class wait + size=4 align=4 + base size=4 base align=4 +wait (0x7f35b7972d90) 0 + +Class timespec + size=16 align=8 + base size=16 base align=8 +timespec (0x7f35b797f0e0) 0 + +Class timeval + size=16 align=8 + base size=16 base align=8 +timeval (0x7f35b797f150) 0 + +Class __pthread_internal_list + size=16 align=8 + base size=16 base align=8 +__pthread_internal_list (0x7f35b797f2a0) 0 + +Class random_data + size=48 align=8 + base size=48 base align=8 +random_data (0x7f35b797f850) 0 + +Class drand48_data + size=24 align=8 + base size=24 base align=8 +drand48_data (0x7f35b797f8c0) 0 + +Class QVectorData + size=16 align=4 + base size=16 base align=4 +QVectorData (0x7f35b797f930) 0 + +Class QContiguousCacheData + size=24 align=4 + base size=24 base align=4 +QContiguousCacheData (0x7f35b773b620) 0 + +Class QDebug::Stream + size=40 align=8 + base size=34 base align=8 +QDebug::Stream (0x7f35b759e150) 0 + +Class QDebug + size=8 align=8 + base size=8 base align=8 +QDebug (0x7f35b759e0e0) 0 + +Class QNoDebug + size=1 align=1 + base size=0 base align=1 +QNoDebug (0x7f35b764b0e0) 0 empty + +Vtable for QDirIterator +QDirIterator::_ZTV12QDirIterator: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QDirIterator) +16 QDirIterator::~QDirIterator +24 QDirIterator::~QDirIterator + +Class QDirIterator + size=16 align=8 + base size=16 base align=8 +QDirIterator (0x7f35b765b700) 0 + vptr=((& QDirIterator::_ZTV12QDirIterator) + 16u) + +Vtable for QFileSystemWatcher +QFileSystemWatcher::_ZTV18QFileSystemWatcher: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFileSystemWatcher) +16 QFileSystemWatcher::metaObject +24 QFileSystemWatcher::qt_metacast +32 QFileSystemWatcher::qt_metacall +40 QFileSystemWatcher::~QFileSystemWatcher +48 QFileSystemWatcher::~QFileSystemWatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QFileSystemWatcher + size=16 align=8 + base size=16 base align=8 +QFileSystemWatcher (0x7f35b74b7540) 0 + vptr=((& QFileSystemWatcher::_ZTV18QFileSystemWatcher) + 16u) + QObject (0x7f35b74b75b0) 0 + primary-for QFileSystemWatcher (0x7f35b74b7540) + +Vtable for QFSFileEngine +QFSFileEngine::_ZTV13QFSFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QFSFileEngine) +16 QFSFileEngine::~QFSFileEngine +24 QFSFileEngine::~QFSFileEngine +32 QFSFileEngine::open +40 QFSFileEngine::close +48 QFSFileEngine::flush +56 QFSFileEngine::size +64 QFSFileEngine::pos +72 QFSFileEngine::seek +80 QFSFileEngine::isSequential +88 QFSFileEngine::remove +96 QFSFileEngine::copy +104 QFSFileEngine::rename +112 QFSFileEngine::link +120 QFSFileEngine::mkdir +128 QFSFileEngine::rmdir +136 QFSFileEngine::setSize +144 QFSFileEngine::caseSensitive +152 QFSFileEngine::isRelativePath +160 QFSFileEngine::entryList +168 QFSFileEngine::fileFlags +176 QFSFileEngine::setPermissions +184 QFSFileEngine::fileName +192 QFSFileEngine::ownerId +200 QFSFileEngine::owner +208 QFSFileEngine::fileTime +216 QFSFileEngine::setFileName +224 QFSFileEngine::handle +232 QFSFileEngine::beginEntryList +240 QFSFileEngine::endEntryList +248 QFSFileEngine::read +256 QFSFileEngine::readLine +264 QFSFileEngine::write +272 QFSFileEngine::extension +280 QFSFileEngine::supportsExtension + +Class QFSFileEngine + size=16 align=8 + base size=16 base align=8 +QFSFileEngine (0x7f35b74c9a80) 0 + vptr=((& QFSFileEngine::_ZTV13QFSFileEngine) + 16u) + QAbstractFileEngine (0x7f35b74c9af0) 0 + primary-for QFSFileEngine (0x7f35b74c9a80) + +Class QSharedData + size=4 align=4 + base size=4 base align=4 +QSharedData (0x7f35b74d9e70) 0 + +Class QProcessEnvironment + size=8 align=8 + base size=8 base align=8 +QProcessEnvironment (0x7f35b75231c0) 0 + +Vtable for QProcess +QProcess::_ZTV8QProcess: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QProcess) +16 QProcess::metaObject +24 QProcess::qt_metacast +32 QProcess::qt_metacall +40 QProcess::~QProcess +48 QProcess::~QProcess +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QProcess::isSequential +120 QIODevice::open +128 QProcess::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QProcess::atEnd +168 QIODevice::reset +176 QProcess::bytesAvailable +184 QProcess::bytesToWrite +192 QProcess::canReadLine +200 QProcess::waitForReadyRead +208 QProcess::waitForBytesWritten +216 QProcess::readData +224 QIODevice::readLineData +232 QProcess::writeData +240 QProcess::setupChildProcess + +Class QProcess + size=16 align=8 + base size=16 base align=8 +QProcess (0x7f35b7523cb0) 0 + vptr=((& QProcess::_ZTV8QProcess) + 16u) + QIODevice (0x7f35b7523d20) 0 + primary-for QProcess (0x7f35b7523cb0) + QObject (0x7f35b7523d90) 0 + primary-for QIODevice (0x7f35b7523d20) + +Class QResource + size=8 align=8 + base size=8 base align=8 +QResource (0x7f35b75691c0) 0 + +Class QMetaType + size=1 align=1 + base size=0 base align=1 +QMetaType (0x7f35b7569e70) 0 empty + +Class QVariant::PrivateShared + size=16 align=8 + base size=12 base align=8 +QVariant::PrivateShared (0x7f35b7467700) 0 + +Class QVariant::Private::Data + size=8 align=8 + base size=8 base align=8 +QVariant::Private::Data (0x7f35b7467a10) 0 + +Class QVariant::Private + size=16 align=8 + base size=12 base align=8 +QVariant::Private (0x7f35b74677e0) 0 + +Class QVariant::Handler + size=72 align=8 + base size=72 base align=8 +QVariant::Handler (0x7f35b7476700) 0 + +Class QVariant + size=16 align=8 + base size=16 base align=8 +QVariant (0x7f35b74387e0) 0 + +Class QVariantComparisonHelper + size=8 align=8 + base size=8 base align=8 +QVariantComparisonHelper (0x7f35b73289a0) 0 + +Vtable for QSettings +QSettings::_ZTV9QSettings: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QSettings) +16 QSettings::metaObject +24 QSettings::qt_metacast +32 QSettings::qt_metacall +40 QSettings::~QSettings +48 QSettings::~QSettings +56 QSettings::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSettings + size=16 align=8 + base size=16 base align=8 +QSettings (0x7f35b734eee0) 0 + vptr=((& QSettings::_ZTV9QSettings) + 16u) + QObject (0x7f35b734ef50) 0 + primary-for QSettings (0x7f35b734eee0) + +Vtable for QTemporaryFile +QTemporaryFile::_ZTV14QTemporaryFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QTemporaryFile) +16 QTemporaryFile::metaObject +24 QTemporaryFile::qt_metacast +32 QTemporaryFile::qt_metacall +40 QTemporaryFile::~QTemporaryFile +48 QTemporaryFile::~QTemporaryFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QTemporaryFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QTemporaryFile::fileEngine + +Class QTemporaryFile + size=16 align=8 + base size=16 base align=8 +QTemporaryFile (0x7f35b71d02a0) 0 + vptr=((& QTemporaryFile::_ZTV14QTemporaryFile) + 16u) + QFile (0x7f35b71d0310) 0 + primary-for QTemporaryFile (0x7f35b71d02a0) + QIODevice (0x7f35b71d0380) 0 + primary-for QFile (0x7f35b71d0310) + QObject (0x7f35b71d03f0) 0 + primary-for QIODevice (0x7f35b71d0380) + +Class QUrl + size=8 align=8 + base size=8 base align=8 +QUrl (0x7f35b71ec9a0) 0 + +Class QXmlStreamStringRef + size=16 align=8 + base size=16 base align=8 +QXmlStreamStringRef (0x7f35b727a070) 0 + +Class QXmlStreamAttribute + size=80 align=8 + base size=73 base align=8 +QXmlStreamAttribute (0x7f35b7094850) 0 + +Class QXmlStreamAttributes + size=8 align=8 + base size=8 base align=8 +QXmlStreamAttributes (0x7f35b70bc310) 0 + QVector (0x7f35b70bc380) 0 + +Class QXmlStreamNamespaceDeclaration + size=40 align=8 + base size=40 base align=8 +QXmlStreamNamespaceDeclaration (0x7f35b70bc7e0) 0 + +Class QXmlStreamNotationDeclaration + size=56 align=8 + base size=56 base align=8 +QXmlStreamNotationDeclaration (0x7f35b70fe1c0) 0 + +Class QXmlStreamEntityDeclaration + size=88 align=8 + base size=88 base align=8 +QXmlStreamEntityDeclaration (0x7f35b711c070) 0 + +Vtable for QXmlStreamEntityResolver +QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QXmlStreamEntityResolver) +16 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +24 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +32 QXmlStreamEntityResolver::resolveEntity +40 QXmlStreamEntityResolver::resolveUndeclaredEntity + +Class QXmlStreamEntityResolver + size=8 align=8 + base size=8 base align=8 +QXmlStreamEntityResolver (0x7f35b71399a0) 0 nearly-empty + vptr=((& QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver) + 16u) + +Class QXmlStreamReader + size=8 align=8 + base size=8 base align=8 +QXmlStreamReader (0x7f35b7139b60) 0 + +Class QXmlStreamWriter + size=8 align=8 + base size=8 base align=8 +QXmlStreamWriter (0x7f35b6f81c40) 0 + +Vtable for QAbstractState +QAbstractState::_ZTV14QAbstractState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QAbstractState) +16 QAbstractState::metaObject +24 QAbstractState::qt_metacast +32 QAbstractState::qt_metacall +40 QAbstractState::~QAbstractState +48 QAbstractState::~QAbstractState +56 QAbstractState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QAbstractState + size=16 align=8 + base size=16 base align=8 +QAbstractState (0x7f35b6f96a80) 0 + vptr=((& QAbstractState::_ZTV14QAbstractState) + 16u) + QObject (0x7f35b6f96af0) 0 + primary-for QAbstractState (0x7f35b6f96a80) + +Vtable for QAbstractTransition +QAbstractTransition::_ZTV19QAbstractTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractTransition) +16 QAbstractTransition::metaObject +24 QAbstractTransition::qt_metacast +32 QAbstractTransition::qt_metacall +40 QAbstractTransition::~QAbstractTransition +48 QAbstractTransition::~QAbstractTransition +56 QAbstractTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QAbstractTransition + size=16 align=8 + base size=16 base align=8 +QAbstractTransition (0x7f35b6fbc2a0) 0 + vptr=((& QAbstractTransition::_ZTV19QAbstractTransition) + 16u) + QObject (0x7f35b6fbc310) 0 + primary-for QAbstractTransition (0x7f35b6fbc2a0) + +Vtable for QEvent +QEvent::_ZTV6QEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QEvent) +16 QEvent::~QEvent +24 QEvent::~QEvent + +Class QEvent + size=24 align=8 + base size=20 base align=8 +QEvent (0x7f35b6fd1af0) 0 + vptr=((& QEvent::_ZTV6QEvent) + 16u) + +Vtable for QTimerEvent +QTimerEvent::_ZTV11QTimerEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTimerEvent) +16 QTimerEvent::~QTimerEvent +24 QTimerEvent::~QTimerEvent + +Class QTimerEvent + size=24 align=8 + base size=24 base align=8 +QTimerEvent (0x7f35b6ff3700) 0 + vptr=((& QTimerEvent::_ZTV11QTimerEvent) + 16u) + QEvent (0x7f35b6ff3770) 0 + primary-for QTimerEvent (0x7f35b6ff3700) + +Vtable for QChildEvent +QChildEvent::_ZTV11QChildEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QChildEvent) +16 QChildEvent::~QChildEvent +24 QChildEvent::~QChildEvent + +Class QChildEvent + size=32 align=8 + base size=32 base align=8 +QChildEvent (0x7f35b6ff3b60) 0 + vptr=((& QChildEvent::_ZTV11QChildEvent) + 16u) + QEvent (0x7f35b6ff3bd0) 0 + primary-for QChildEvent (0x7f35b6ff3b60) + +Vtable for QCustomEvent +QCustomEvent::_ZTV12QCustomEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QCustomEvent) +16 QCustomEvent::~QCustomEvent +24 QCustomEvent::~QCustomEvent + +Class QCustomEvent + size=24 align=8 + base size=20 base align=8 +QCustomEvent (0x7f35b6ffce00) 0 + vptr=((& QCustomEvent::_ZTV12QCustomEvent) + 16u) + QEvent (0x7f35b6ffce70) 0 + primary-for QCustomEvent (0x7f35b6ffce00) + +Vtable for QDynamicPropertyChangeEvent +QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QDynamicPropertyChangeEvent) +16 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent +24 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent + +Class QDynamicPropertyChangeEvent + size=32 align=8 + base size=32 base align=8 +QDynamicPropertyChangeEvent (0x7f35b700e620) 0 + vptr=((& QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent) + 16u) + QEvent (0x7f35b700e690) 0 + primary-for QDynamicPropertyChangeEvent (0x7f35b700e620) + +Vtable for QEventTransition +QEventTransition::_ZTV16QEventTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QEventTransition) +16 QEventTransition::metaObject +24 QEventTransition::qt_metacast +32 QEventTransition::qt_metacall +40 QEventTransition::~QEventTransition +48 QEventTransition::~QEventTransition +56 QEventTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QEventTransition::eventTest +120 QEventTransition::onTransition + +Class QEventTransition + size=16 align=8 + base size=16 base align=8 +QEventTransition (0x7f35b700eaf0) 0 + vptr=((& QEventTransition::_ZTV16QEventTransition) + 16u) + QAbstractTransition (0x7f35b700eb60) 0 + primary-for QEventTransition (0x7f35b700eaf0) + QObject (0x7f35b700ebd0) 0 + primary-for QAbstractTransition (0x7f35b700eb60) + +Vtable for QFinalState +QFinalState::_ZTV11QFinalState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFinalState) +16 QFinalState::metaObject +24 QFinalState::qt_metacast +32 QFinalState::qt_metacall +40 QFinalState::~QFinalState +48 QFinalState::~QFinalState +56 QFinalState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFinalState::onEntry +120 QFinalState::onExit + +Class QFinalState + size=16 align=8 + base size=16 base align=8 +QFinalState (0x7f35b70299a0) 0 + vptr=((& QFinalState::_ZTV11QFinalState) + 16u) + QAbstractState (0x7f35b7029a10) 0 + primary-for QFinalState (0x7f35b70299a0) + QObject (0x7f35b7029a80) 0 + primary-for QAbstractState (0x7f35b7029a10) + +Vtable for QHistoryState +QHistoryState::_ZTV13QHistoryState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QHistoryState) +16 QHistoryState::metaObject +24 QHistoryState::qt_metacast +32 QHistoryState::qt_metacall +40 QHistoryState::~QHistoryState +48 QHistoryState::~QHistoryState +56 QHistoryState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QHistoryState::onEntry +120 QHistoryState::onExit + +Class QHistoryState + size=16 align=8 + base size=16 base align=8 +QHistoryState (0x7f35b7043230) 0 + vptr=((& QHistoryState::_ZTV13QHistoryState) + 16u) + QAbstractState (0x7f35b70432a0) 0 + primary-for QHistoryState (0x7f35b7043230) + QObject (0x7f35b7043310) 0 + primary-for QAbstractState (0x7f35b70432a0) + +Vtable for QSignalTransition +QSignalTransition::_ZTV17QSignalTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QSignalTransition) +16 QSignalTransition::metaObject +24 QSignalTransition::qt_metacast +32 QSignalTransition::qt_metacall +40 QSignalTransition::~QSignalTransition +48 QSignalTransition::~QSignalTransition +56 QSignalTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QSignalTransition::eventTest +120 QSignalTransition::onTransition + +Class QSignalTransition + size=16 align=8 + base size=16 base align=8 +QSignalTransition (0x7f35b7052f50) 0 + vptr=((& QSignalTransition::_ZTV17QSignalTransition) + 16u) + QAbstractTransition (0x7f35b705c000) 0 + primary-for QSignalTransition (0x7f35b7052f50) + QObject (0x7f35b705c070) 0 + primary-for QAbstractTransition (0x7f35b705c000) + +Vtable for QState +QState::_ZTV6QState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QState) +16 QState::metaObject +24 QState::qt_metacast +32 QState::qt_metacall +40 QState::~QState +48 QState::~QState +56 QState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QState::onEntry +120 QState::onExit + +Class QState + size=16 align=8 + base size=16 base align=8 +QState (0x7f35b706faf0) 0 + vptr=((& QState::_ZTV6QState) + 16u) + QAbstractState (0x7f35b706fb60) 0 + primary-for QState (0x7f35b706faf0) + QObject (0x7f35b706fbd0) 0 + primary-for QAbstractState (0x7f35b706fb60) + +Vtable for QStateMachine::SignalEvent +QStateMachine::SignalEvent::_ZTVN13QStateMachine11SignalEventE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN13QStateMachine11SignalEventE) +16 QStateMachine::SignalEvent::~SignalEvent +24 QStateMachine::SignalEvent::~SignalEvent + +Class QStateMachine::SignalEvent + size=48 align=8 + base size=48 base align=8 +QStateMachine::SignalEvent (0x7f35b6e93150) 0 + vptr=((& QStateMachine::SignalEvent::_ZTVN13QStateMachine11SignalEventE) + 16u) + QEvent (0x7f35b6e931c0) 0 + primary-for QStateMachine::SignalEvent (0x7f35b6e93150) + +Vtable for QStateMachine::WrappedEvent +QStateMachine::WrappedEvent::_ZTVN13QStateMachine12WrappedEventE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN13QStateMachine12WrappedEventE) +16 QStateMachine::WrappedEvent::~WrappedEvent +24 QStateMachine::WrappedEvent::~WrappedEvent + +Class QStateMachine::WrappedEvent + size=40 align=8 + base size=40 base align=8 +QStateMachine::WrappedEvent (0x7f35b6e93700) 0 + vptr=((& QStateMachine::WrappedEvent::_ZTVN13QStateMachine12WrappedEventE) + 16u) + QEvent (0x7f35b6e93770) 0 + primary-for QStateMachine::WrappedEvent (0x7f35b6e93700) + +Vtable for QStateMachine +QStateMachine::_ZTV13QStateMachine: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QStateMachine) +16 QStateMachine::metaObject +24 QStateMachine::qt_metacast +32 QStateMachine::qt_metacall +40 QStateMachine::~QStateMachine +48 QStateMachine::~QStateMachine +56 QStateMachine::event +64 QStateMachine::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QStateMachine::onEntry +120 QStateMachine::onExit +128 QStateMachine::beginSelectTransitions +136 QStateMachine::endSelectTransitions +144 QStateMachine::beginMicrostep +152 QStateMachine::endMicrostep + +Class QStateMachine + size=16 align=8 + base size=16 base align=8 +QStateMachine (0x7f35b6e89ee0) 0 + vptr=((& QStateMachine::_ZTV13QStateMachine) + 16u) + QState (0x7f35b6e89f50) 0 + primary-for QStateMachine (0x7f35b6e89ee0) + QAbstractState (0x7f35b6e93000) 0 + primary-for QState (0x7f35b6e89f50) + QObject (0x7f35b6e93070) 0 + primary-for QAbstractState (0x7f35b6e93000) + +Class QBitArray + size=8 align=8 + base size=8 base align=8 +QBitArray (0x7f35b6ec4150) 0 + +Class QBitRef + size=16 align=8 + base size=12 base align=8 +QBitRef (0x7f35b6f1ae00) 0 + +Class QByteArrayMatcher::Data + size=272 align=8 + base size=272 base align=8 +QByteArrayMatcher::Data (0x7f35b6f2daf0) 0 + +Class QByteArrayMatcher + size=1040 align=8 + base size=1040 base align=8 +QByteArrayMatcher (0x7f35b6f2d4d0) 0 + +Class QCryptographicHash + size=8 align=8 + base size=8 base align=8 +QCryptographicHash (0x7f35b6f63150) 0 + +Vtable for QtSharedPointer::ExternalRefCountData +QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN15QtSharedPointer20ExternalRefCountDataE) +16 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +24 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +32 QtSharedPointer::ExternalRefCountData::destroy + +Class QtSharedPointer::ExternalRefCountData + size=16 align=8 + base size=16 base align=8 +QtSharedPointer::ExternalRefCountData (0x7f35b6d8e070) 0 + vptr=((& QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE) + 16u) + +Vtable for QtSharedPointer::ExternalRefCountWithDestroyFn +QtSharedPointer::ExternalRefCountWithDestroyFn::_ZTVN15QtSharedPointer29ExternalRefCountWithDestroyFnE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN15QtSharedPointer29ExternalRefCountWithDestroyFnE) +16 QtSharedPointer::ExternalRefCountWithDestroyFn::~ExternalRefCountWithDestroyFn +24 QtSharedPointer::ExternalRefCountWithDestroyFn::~ExternalRefCountWithDestroyFn +32 QtSharedPointer::ExternalRefCountWithDestroyFn::destroy + +Class QtSharedPointer::ExternalRefCountWithDestroyFn + size=24 align=8 + base size=24 base align=8 +QtSharedPointer::ExternalRefCountWithDestroyFn (0x7f35b6da7930) 0 + vptr=((& QtSharedPointer::ExternalRefCountWithDestroyFn::_ZTVN15QtSharedPointer29ExternalRefCountWithDestroyFnE) + 16u) + QtSharedPointer::ExternalRefCountData (0x7f35b6da79a0) 0 + primary-for QtSharedPointer::ExternalRefCountWithDestroyFn (0x7f35b6da7930) + +Class QDate + size=4 align=4 + base size=4 base align=4 +QDate (0x7f35b6e2c5b0) 0 + +Class QTime + size=4 align=4 + base size=4 base align=4 +QTime (0x7f35b6e5e540) 0 + +Class QDateTime + size=8 align=8 + base size=8 base align=8 +QDateTime (0x7f35b6e79af0) 0 + +Class QEasingCurve + size=8 align=8 + base size=8 base align=8 +QEasingCurve (0x7f35b6cc0000) 0 + +Class QPoint + size=8 align=4 + base size=8 base align=4 +QPoint (0x7f35b6cc0ee0) 0 + +Class QPointF + size=16 align=8 + base size=16 base align=8 +QPointF (0x7f35b6d03af0) 0 + +Class QLine + size=16 align=4 + base size=16 base align=4 +QLine (0x7f35b6d3faf0) 0 + +Class QLineF + size=32 align=8 + base size=32 base align=8 +QLineF (0x7f35b6d7c9a0) 0 + +Class QLinkedListData + size=32 align=8 + base size=32 base align=8 +QLinkedListData (0x7f35b6bd0460) 0 + +Class QMargins + size=16 align=4 + base size=16 base align=4 +QMargins (0x7f35b6a8f380) 0 + +Class QSize + size=8 align=4 + base size=8 base align=4 +QSize (0x7f35b6abe150) 0 + +Class QSizeF + size=16 align=8 + base size=16 base align=8 +QSizeF (0x7f35b6afee00) 0 + +Class QRect + size=16 align=4 + base size=16 base align=4 +QRect (0x7f35b6b53380) 0 + +Class QRectF + size=32 align=8 + base size=32 base align=8 +QRectF (0x7f35b69fdd20) 0 + +Class QLatin1Literal + size=16 align=8 + base size=16 base align=8 +QLatin1Literal (0x7f35b68adee0) 0 + +Class QAbstractConcatenable + size=1 align=1 + base size=0 base align=1 +QAbstractConcatenable (0x7f35b68be3f0) 0 empty + +Class QTextBoundaryFinder + size=48 align=8 + base size=48 base align=8 +QTextBoundaryFinder (0x7f35b68f6380) 0 + +Vtable for QTimeLine +QTimeLine::_ZTV9QTimeLine: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTimeLine) +16 QTimeLine::metaObject +24 QTimeLine::qt_metacast +32 QTimeLine::qt_metacall +40 QTimeLine::~QTimeLine +48 QTimeLine::~QTimeLine +56 QObject::event +64 QObject::eventFilter +72 QTimeLine::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTimeLine::valueForTime + +Class QTimeLine + size=16 align=8 + base size=16 base align=8 +QTimeLine (0x7f35b6907700) 0 + vptr=((& QTimeLine::_ZTV9QTimeLine) + 16u) + QObject (0x7f35b6907770) 0 + primary-for QTimeLine (0x7f35b6907700) + +Vtable for QRunnable +QRunnable::_ZTV9QRunnable: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QRunnable) +16 __cxa_pure_virtual +24 QRunnable::~QRunnable +32 QRunnable::~QRunnable + +Class QRunnable + size=16 align=8 + base size=12 base align=8 +QRunnable (0x7f35b692ef50) 0 + vptr=((& QRunnable::_ZTV9QRunnable) + 16u) + +Class QMutex + size=8 align=8 + base size=8 base align=8 +QMutex (0x7f35b6964620) 0 + +Class QMutexLocker + size=8 align=8 + base size=8 base align=8 +QMutexLocker (0x7f35b69731c0) 0 + +Vtable for QtConcurrent::Exception +QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent9ExceptionE) +16 QtConcurrent::Exception::~Exception +24 QtConcurrent::Exception::~Exception +32 std::exception::what +40 QtConcurrent::Exception::raise +48 QtConcurrent::Exception::clone + +Class QtConcurrent::Exception + size=8 align=8 + base size=8 base align=8 +QtConcurrent::Exception (0x7f35b678a4d0) 0 nearly-empty + vptr=((& QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE) + 16u) + std::exception (0x7f35b678a540) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7f35b678a4d0) + +Vtable for QtConcurrent::UnhandledException +QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent18UnhandledExceptionE) +16 QtConcurrent::UnhandledException::~UnhandledException +24 QtConcurrent::UnhandledException::~UnhandledException +32 std::exception::what +40 QtConcurrent::UnhandledException::raise +48 QtConcurrent::UnhandledException::clone + +Class QtConcurrent::UnhandledException + size=8 align=8 + base size=8 base align=8 +QtConcurrent::UnhandledException (0x7f35b678a770) 0 nearly-empty + vptr=((& QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE) + 16u) + QtConcurrent::Exception (0x7f35b678a7e0) 0 nearly-empty + primary-for QtConcurrent::UnhandledException (0x7f35b678a770) + std::exception (0x7f35b678a850) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7f35b678a7e0) + +Class QtConcurrent::internal::ExceptionHolder + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionHolder (0x7f35b678aa80) 0 + +Class QtConcurrent::internal::ExceptionStore + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionStore (0x7f35b678ae00) 0 + +Class QtConcurrent::ResultItem + size=16 align=8 + base size=16 base align=8 +QtConcurrent::ResultItem (0x7f35b678ae70) 0 + +Class QtConcurrent::ResultIteratorBase + size=16 align=8 + base size=12 base align=8 +QtConcurrent::ResultIteratorBase (0x7f35b67a2d90) 0 + +Vtable for QtConcurrent::ResultStoreBase +QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent15ResultStoreBaseE) +16 QtConcurrent::ResultStoreBase::~ResultStoreBase +24 QtConcurrent::ResultStoreBase::~ResultStoreBase + +Class QtConcurrent::ResultStoreBase + size=48 align=8 + base size=44 base align=8 +QtConcurrent::ResultStoreBase (0x7f35b67a8930) 0 + vptr=((& QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE) + 16u) + +Vtable for QFutureInterfaceBase +QFutureInterfaceBase::_ZTV20QFutureInterfaceBase: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QFutureInterfaceBase) +16 QFutureInterfaceBase::~QFutureInterfaceBase +24 QFutureInterfaceBase::~QFutureInterfaceBase + +Class QFutureInterfaceBase + size=16 align=8 + base size=16 base align=8 +QFutureInterfaceBase (0x7f35b67e5d90) 0 + vptr=((& QFutureInterfaceBase::_ZTV20QFutureInterfaceBase) + 16u) + +Vtable for QFutureWatcherBase +QFutureWatcherBase::_ZTV18QFutureWatcherBase: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFutureWatcherBase) +16 QFutureWatcherBase::metaObject +24 QFutureWatcherBase::qt_metacast +32 QFutureWatcherBase::qt_metacall +40 QFutureWatcherBase::~QFutureWatcherBase +48 QFutureWatcherBase::~QFutureWatcherBase +56 QFutureWatcherBase::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QFutureWatcherBase::connectNotify +104 QFutureWatcherBase::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QFutureWatcherBase + size=16 align=8 + base size=16 base align=8 +QFutureWatcherBase (0x7f35b66cb690) 0 + vptr=((& QFutureWatcherBase::_ZTV18QFutureWatcherBase) + 16u) + QObject (0x7f35b66cb700) 0 + primary-for QFutureWatcherBase (0x7f35b66cb690) + +Vtable for QThread +QThread::_ZTV7QThread: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QThread) +16 QThread::metaObject +24 QThread::qt_metacast +32 QThread::qt_metacall +40 QThread::~QThread +48 QThread::~QThread +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QThread::run + +Class QThread + size=16 align=8 + base size=16 base align=8 +QThread (0x7f35b671ca80) 0 + vptr=((& QThread::_ZTV7QThread) + 16u) + QObject (0x7f35b671caf0) 0 + primary-for QThread (0x7f35b671ca80) + +Vtable for QThreadPool +QThreadPool::_ZTV11QThreadPool: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QThreadPool) +16 QThreadPool::metaObject +24 QThreadPool::qt_metacast +32 QThreadPool::qt_metacall +40 QThreadPool::~QThreadPool +48 QThreadPool::~QThreadPool +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QThreadPool + size=16 align=8 + base size=16 base align=8 +QThreadPool (0x7f35b6743930) 0 + vptr=((& QThreadPool::_ZTV11QThreadPool) + 16u) + QObject (0x7f35b67439a0) 0 + primary-for QThreadPool (0x7f35b6743930) + +Class QWaitCondition + size=8 align=8 + base size=8 base align=8 +QWaitCondition (0x7f35b6755ee0) 0 + +Class QSemaphore + size=8 align=8 + base size=8 base align=8 +QSemaphore (0x7f35b675c460) 0 + +Class QtConcurrent::ThreadEngineBarrier + size=24 align=8 + base size=24 base align=8 +QtConcurrent::ThreadEngineBarrier (0x7f35b675c9a0) 0 + +Vtable for QtConcurrent::ThreadEngineBase +QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent16ThreadEngineBaseE) +16 QtConcurrent::ThreadEngineBase::run +24 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +32 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +40 QtConcurrent::ThreadEngineBase::start +48 QtConcurrent::ThreadEngineBase::finish +56 QtConcurrent::ThreadEngineBase::threadFunction +64 QtConcurrent::ThreadEngineBase::shouldStartThread +72 QtConcurrent::ThreadEngineBase::shouldThrottleThread +80 __cxa_pure_virtual + +Class QtConcurrent::ThreadEngineBase + size=64 align=8 + base size=64 base align=8 +QtConcurrent::ThreadEngineBase (0x7f35b675ca80) 0 + vptr=((& QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE) + 16u) + QRunnable (0x7f35b675caf0) 0 + primary-for QtConcurrent::ThreadEngineBase (0x7f35b675ca80) + +VTT for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTTN12QtConcurrent12ThreadEngineIvEE: 2u entries +0 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 24u) +8 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 136u) + +Class QtConcurrent::BlockSizeManager + size=96 align=8 + base size=92 base align=8 +QtConcurrent::BlockSizeManager (0x7f35b65aaee0) 0 + +Vtable for QFactoryInterface +QFactoryInterface::_ZTV17QFactoryInterface: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QFactoryInterface) +16 QFactoryInterface::~QFactoryInterface +24 QFactoryInterface::~QFactoryInterface +32 __cxa_pure_virtual + +Class QFactoryInterface + size=8 align=8 + base size=8 base align=8 +QFactoryInterface (0x7f35b624cd20) 0 nearly-empty + vptr=((& QFactoryInterface::_ZTV17QFactoryInterface) + 16u) + +Vtable for QTextCodecFactoryInterface +QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QTextCodecFactoryInterface) +16 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +24 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QTextCodecFactoryInterface + size=8 align=8 + base size=8 base align=8 +QTextCodecFactoryInterface (0x7f35b607f000) 0 nearly-empty + vptr=((& QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface) + 16u) + QFactoryInterface (0x7f35b607f070) 0 nearly-empty + primary-for QTextCodecFactoryInterface (0x7f35b607f000) + +Vtable for QTextCodecPlugin +QTextCodecPlugin::_ZTV16QTextCodecPlugin: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QTextCodecPlugin) +16 QTextCodecPlugin::metaObject +24 QTextCodecPlugin::qt_metacast +32 QTextCodecPlugin::qt_metacall +40 QTextCodecPlugin::~QTextCodecPlugin +48 QTextCodecPlugin::~QTextCodecPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 QTextCodecPlugin::keys +160 QTextCodecPlugin::create +168 (int (*)(...))-0x00000000000000010 +176 (int (*)(...))(& _ZTI16QTextCodecPlugin) +184 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD1Ev +192 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD0Ev +200 QTextCodecPlugin::_ZThn16_NK16QTextCodecPlugin4keysEv +208 QTextCodecPlugin::_ZThn16_N16QTextCodecPlugin6createERK7QString + +Class QTextCodecPlugin + size=24 align=8 + base size=24 base align=8 +QTextCodecPlugin (0x7f35b6089580) 0 + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 16u) + QObject (0x7f35b607fa80) 0 + primary-for QTextCodecPlugin (0x7f35b6089580) + QTextCodecFactoryInterface (0x7f35b607faf0) 16 nearly-empty + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 184u) + QFactoryInterface (0x7f35b607fb60) 16 nearly-empty + primary-for QTextCodecFactoryInterface (0x7f35b607faf0) + +Class QLibraryInfo + size=1 align=1 + base size=0 base align=1 +QLibraryInfo (0x7f35b60d6150) 0 empty + +Vtable for QEventLoop +QEventLoop::_ZTV10QEventLoop: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QEventLoop) +16 QEventLoop::metaObject +24 QEventLoop::qt_metacast +32 QEventLoop::qt_metacall +40 QEventLoop::~QEventLoop +48 QEventLoop::~QEventLoop +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QEventLoop + size=16 align=8 + base size=16 base align=8 +QEventLoop (0x7f35b60d62a0) 0 + vptr=((& QEventLoop::_ZTV10QEventLoop) + 16u) + QObject (0x7f35b60d6310) 0 + primary-for QEventLoop (0x7f35b60d62a0) + +Vtable for QAbstractEventDispatcher +QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QAbstractEventDispatcher) +16 QAbstractEventDispatcher::metaObject +24 QAbstractEventDispatcher::qt_metacast +32 QAbstractEventDispatcher::qt_metacall +40 QAbstractEventDispatcher::~QAbstractEventDispatcher +48 QAbstractEventDispatcher::~QAbstractEventDispatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 QAbstractEventDispatcher::startingUp +208 QAbstractEventDispatcher::closingDown + +Class QAbstractEventDispatcher + size=16 align=8 + base size=16 base align=8 +QAbstractEventDispatcher (0x7f35b6111bd0) 0 + vptr=((& QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher) + 16u) + QObject (0x7f35b6111c40) 0 + primary-for QAbstractEventDispatcher (0x7f35b6111bd0) + +Class QModelIndex + size=24 align=8 + base size=24 base align=8 +QModelIndex (0x7f35b6136a80) 0 + +Class QPersistentModelIndex + size=8 align=8 + base size=8 base align=8 +QPersistentModelIndex (0x7f35b6162540) 0 + +Vtable for QAbstractItemModel +QAbstractItemModel::_ZTV18QAbstractItemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractItemModel) +16 QAbstractItemModel::metaObject +24 QAbstractItemModel::qt_metacast +32 QAbstractItemModel::qt_metacall +40 QAbstractItemModel::~QAbstractItemModel +48 QAbstractItemModel::~QAbstractItemModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractItemModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractItemModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractItemModel + size=16 align=8 + base size=16 base align=8 +QAbstractItemModel (0x7f35b616a850) 0 + vptr=((& QAbstractItemModel::_ZTV18QAbstractItemModel) + 16u) + QObject (0x7f35b616a8c0) 0 + primary-for QAbstractItemModel (0x7f35b616a850) + +Vtable for QAbstractTableModel +QAbstractTableModel::_ZTV19QAbstractTableModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractTableModel) +16 QAbstractTableModel::metaObject +24 QAbstractTableModel::qt_metacast +32 QAbstractTableModel::qt_metacall +40 QAbstractTableModel::~QAbstractTableModel +48 QAbstractTableModel::~QAbstractTableModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractTableModel::index +120 QAbstractTableModel::parent +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractTableModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractTableModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractTableModel + size=16 align=8 + base size=16 base align=8 +QAbstractTableModel (0x7f35b5fc4b60) 0 + vptr=((& QAbstractTableModel::_ZTV19QAbstractTableModel) + 16u) + QAbstractItemModel (0x7f35b5fc4bd0) 0 + primary-for QAbstractTableModel (0x7f35b5fc4b60) + QObject (0x7f35b5fc4c40) 0 + primary-for QAbstractItemModel (0x7f35b5fc4bd0) + +Vtable for QAbstractListModel +QAbstractListModel::_ZTV18QAbstractListModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractListModel) +16 QAbstractListModel::metaObject +24 QAbstractListModel::qt_metacast +32 QAbstractListModel::qt_metacall +40 QAbstractListModel::~QAbstractListModel +48 QAbstractListModel::~QAbstractListModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractListModel::index +120 QAbstractListModel::parent +128 __cxa_pure_virtual +136 QAbstractListModel::columnCount +144 QAbstractListModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractListModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractListModel + size=16 align=8 + base size=16 base align=8 +QAbstractListModel (0x7f35b5fe30e0) 0 + vptr=((& QAbstractListModel::_ZTV18QAbstractListModel) + 16u) + QAbstractItemModel (0x7f35b5fe3150) 0 + primary-for QAbstractListModel (0x7f35b5fe30e0) + QObject (0x7f35b5fe31c0) 0 + primary-for QAbstractItemModel (0x7f35b5fe3150) + +Class QBasicTimer + size=4 align=4 + base size=4 base align=4 +QBasicTimer (0x7f35b6013230) 0 + +Vtable for QCoreApplication +QCoreApplication::_ZTV16QCoreApplication: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QCoreApplication) +16 QCoreApplication::metaObject +24 QCoreApplication::qt_metacast +32 QCoreApplication::qt_metacall +40 QCoreApplication::~QCoreApplication +48 QCoreApplication::~QCoreApplication +56 QCoreApplication::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCoreApplication::notify +120 QCoreApplication::compressEvent + +Class QCoreApplication + size=16 align=8 + base size=16 base align=8 +QCoreApplication (0x7f35b6020620) 0 + vptr=((& QCoreApplication::_ZTV16QCoreApplication) + 16u) + QObject (0x7f35b6020690) 0 + primary-for QCoreApplication (0x7f35b6020620) + +Class __exception + size=40 align=8 + base size=40 base align=8 +__exception (0x7f35b6052310) 0 + +Class QMetaMethod + size=16 align=8 + base size=12 base align=8 +QMetaMethod (0x7f35b5ebf770) 0 + +Class QMetaEnum + size=16 align=8 + base size=12 base align=8 +QMetaEnum (0x7f35b5edbbd0) 0 + +Class QMetaProperty + size=32 align=8 + base size=32 base align=8 +QMetaProperty (0x7f35b5eea930) 0 + +Class QMetaClassInfo + size=16 align=8 + base size=12 base align=8 +QMetaClassInfo (0x7f35b5efa000) 0 + +Vtable for QMimeData +QMimeData::_ZTV9QMimeData: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QMimeData) +16 QMimeData::metaObject +24 QMimeData::qt_metacast +32 QMimeData::qt_metacall +40 QMimeData::~QMimeData +48 QMimeData::~QMimeData +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMimeData::hasFormat +120 QMimeData::formats +128 QMimeData::retrieveData + +Class QMimeData + size=16 align=8 + base size=16 base align=8 +QMimeData (0x7f35b5efaaf0) 0 + vptr=((& QMimeData::_ZTV9QMimeData) + 16u) + QObject (0x7f35b5efab60) 0 + primary-for QMimeData (0x7f35b5efaaf0) + +Vtable for QObjectCleanupHandler +QObjectCleanupHandler::_ZTV21QObjectCleanupHandler: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QObjectCleanupHandler) +16 QObjectCleanupHandler::metaObject +24 QObjectCleanupHandler::qt_metacast +32 QObjectCleanupHandler::qt_metacall +40 QObjectCleanupHandler::~QObjectCleanupHandler +48 QObjectCleanupHandler::~QObjectCleanupHandler +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObjectCleanupHandler + size=24 align=8 + base size=24 base align=8 +QObjectCleanupHandler (0x7f35b5f1e380) 0 + vptr=((& QObjectCleanupHandler::_ZTV21QObjectCleanupHandler) + 16u) + QObject (0x7f35b5f1e3f0) 0 + primary-for QObjectCleanupHandler (0x7f35b5f1e380) + +Vtable for QSharedMemory +QSharedMemory::_ZTV13QSharedMemory: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSharedMemory) +16 QSharedMemory::metaObject +24 QSharedMemory::qt_metacast +32 QSharedMemory::qt_metacall +40 QSharedMemory::~QSharedMemory +48 QSharedMemory::~QSharedMemory +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSharedMemory + size=16 align=8 + base size=16 base align=8 +QSharedMemory (0x7f35b5f2f4d0) 0 + vptr=((& QSharedMemory::_ZTV13QSharedMemory) + 16u) + QObject (0x7f35b5f2f540) 0 + primary-for QSharedMemory (0x7f35b5f2f4d0) + +Vtable for QSignalMapper +QSignalMapper::_ZTV13QSignalMapper: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSignalMapper) +16 QSignalMapper::metaObject +24 QSignalMapper::qt_metacast +32 QSignalMapper::qt_metacall +40 QSignalMapper::~QSignalMapper +48 QSignalMapper::~QSignalMapper +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSignalMapper + size=16 align=8 + base size=16 base align=8 +QSignalMapper (0x7f35b5f492a0) 0 + vptr=((& QSignalMapper::_ZTV13QSignalMapper) + 16u) + QObject (0x7f35b5f49310) 0 + primary-for QSignalMapper (0x7f35b5f492a0) + +Vtable for QSocketNotifier +QSocketNotifier::_ZTV15QSocketNotifier: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSocketNotifier) +16 QSocketNotifier::metaObject +24 QSocketNotifier::qt_metacast +32 QSocketNotifier::qt_metacall +40 QSocketNotifier::~QSocketNotifier +48 QSocketNotifier::~QSocketNotifier +56 QSocketNotifier::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSocketNotifier + size=32 align=8 + base size=25 base align=8 +QSocketNotifier (0x7f35b5f65690) 0 + vptr=((& QSocketNotifier::_ZTV15QSocketNotifier) + 16u) + QObject (0x7f35b5f65700) 0 + primary-for QSocketNotifier (0x7f35b5f65690) + +Class QSystemSemaphore + size=8 align=8 + base size=8 base align=8 +QSystemSemaphore (0x7f35b5d7ea10) 0 + +Vtable for QTimer +QTimer::_ZTV6QTimer: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QTimer) +16 QTimer::metaObject +24 QTimer::qt_metacast +32 QTimer::qt_metacall +40 QTimer::~QTimer +48 QTimer::~QTimer +56 QObject::event +64 QObject::eventFilter +72 QTimer::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTimer + size=32 align=8 + base size=29 base align=8 +QTimer (0x7f35b5d8a460) 0 + vptr=((& QTimer::_ZTV6QTimer) + 16u) + QObject (0x7f35b5d8a4d0) 0 + primary-for QTimer (0x7f35b5d8a460) + +Vtable for QTranslator +QTranslator::_ZTV11QTranslator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTranslator) +16 QTranslator::metaObject +24 QTranslator::qt_metacast +32 QTranslator::qt_metacall +40 QTranslator::~QTranslator +48 QTranslator::~QTranslator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTranslator::translate +120 QTranslator::isEmpty + +Class QTranslator + size=16 align=8 + base size=16 base align=8 +QTranslator (0x7f35b5dae9a0) 0 + vptr=((& QTranslator::_ZTV11QTranslator) + 16u) + QObject (0x7f35b5daea10) 0 + primary-for QTranslator (0x7f35b5dae9a0) + +Vtable for QLibrary +QLibrary::_ZTV8QLibrary: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QLibrary) +16 QLibrary::metaObject +24 QLibrary::qt_metacast +32 QLibrary::qt_metacall +40 QLibrary::~QLibrary +48 QLibrary::~QLibrary +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QLibrary + size=32 align=8 + base size=25 base align=8 +QLibrary (0x7f35b5dca930) 0 + vptr=((& QLibrary::_ZTV8QLibrary) + 16u) + QObject (0x7f35b5dca9a0) 0 + primary-for QLibrary (0x7f35b5dca930) + +Vtable for QPluginLoader +QPluginLoader::_ZTV13QPluginLoader: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QPluginLoader) +16 QPluginLoader::metaObject +24 QPluginLoader::qt_metacast +32 QPluginLoader::qt_metacall +40 QPluginLoader::~QPluginLoader +48 QPluginLoader::~QPluginLoader +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QPluginLoader + size=32 align=8 + base size=25 base align=8 +QPluginLoader (0x7f35b5e163f0) 0 + vptr=((& QPluginLoader::_ZTV13QPluginLoader) + 16u) + QObject (0x7f35b5e16460) 0 + primary-for QPluginLoader (0x7f35b5e163f0) + +Class QUuid + size=16 align=4 + base size=16 base align=4 +QUuid (0x7f35b5e24b60) 0 + +Class QReadWriteLock + size=8 align=8 + base size=8 base align=8 +QReadWriteLock (0x7f35b5e4c4d0) 0 + +Class QReadLocker + size=8 align=8 + base size=8 base align=8 +QReadLocker (0x7f35b5e4cb60) 0 + +Class QWriteLocker + size=8 align=8 + base size=8 base align=8 +QWriteLocker (0x7f35b5e6bee0) 0 + +Class QThreadStorageData + size=4 align=4 + base size=4 base align=4 +QThreadStorageData (0x7f35b5c852a0) 0 + +Vtable for QAbstractAnimation +QAbstractAnimation::_ZTV18QAbstractAnimation: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractAnimation) +16 QAbstractAnimation::metaObject +24 QAbstractAnimation::qt_metacast +32 QAbstractAnimation::qt_metacall +40 QAbstractAnimation::~QAbstractAnimation +48 QAbstractAnimation::~QAbstractAnimation +56 QAbstractAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAbstractAnimation::updateState +136 QAbstractAnimation::updateDirection + +Class QAbstractAnimation + size=16 align=8 + base size=16 base align=8 +QAbstractAnimation (0x7f35b5c85a10) 0 + vptr=((& QAbstractAnimation::_ZTV18QAbstractAnimation) + 16u) + QObject (0x7f35b5c85a80) 0 + primary-for QAbstractAnimation (0x7f35b5c85a10) + +Vtable for QAnimationGroup +QAnimationGroup::_ZTV15QAnimationGroup: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QAnimationGroup) +16 QAnimationGroup::metaObject +24 QAnimationGroup::qt_metacast +32 QAnimationGroup::qt_metacall +40 QAnimationGroup::~QAnimationGroup +48 QAnimationGroup::~QAnimationGroup +56 QAnimationGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAbstractAnimation::updateState +136 QAbstractAnimation::updateDirection + +Class QAnimationGroup + size=16 align=8 + base size=16 base align=8 +QAnimationGroup (0x7f35b5cbc150) 0 + vptr=((& QAnimationGroup::_ZTV15QAnimationGroup) + 16u) + QAbstractAnimation (0x7f35b5cbc1c0) 0 + primary-for QAnimationGroup (0x7f35b5cbc150) + QObject (0x7f35b5cbc230) 0 + primary-for QAbstractAnimation (0x7f35b5cbc1c0) + +Vtable for QParallelAnimationGroup +QParallelAnimationGroup::_ZTV23QParallelAnimationGroup: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QParallelAnimationGroup) +16 QParallelAnimationGroup::metaObject +24 QParallelAnimationGroup::qt_metacast +32 QParallelAnimationGroup::qt_metacall +40 QParallelAnimationGroup::~QParallelAnimationGroup +48 QParallelAnimationGroup::~QParallelAnimationGroup +56 QParallelAnimationGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QParallelAnimationGroup::duration +120 QParallelAnimationGroup::updateCurrentTime +128 QParallelAnimationGroup::updateState +136 QParallelAnimationGroup::updateDirection + +Class QParallelAnimationGroup + size=16 align=8 + base size=16 base align=8 +QParallelAnimationGroup (0x7f35b5cd6000) 0 + vptr=((& QParallelAnimationGroup::_ZTV23QParallelAnimationGroup) + 16u) + QAnimationGroup (0x7f35b5cd6070) 0 + primary-for QParallelAnimationGroup (0x7f35b5cd6000) + QAbstractAnimation (0x7f35b5cd60e0) 0 + primary-for QAnimationGroup (0x7f35b5cd6070) + QObject (0x7f35b5cd6150) 0 + primary-for QAbstractAnimation (0x7f35b5cd60e0) + +Vtable for QPauseAnimation +QPauseAnimation::_ZTV15QPauseAnimation: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QPauseAnimation) +16 QPauseAnimation::metaObject +24 QPauseAnimation::qt_metacast +32 QPauseAnimation::qt_metacall +40 QPauseAnimation::~QPauseAnimation +48 QPauseAnimation::~QPauseAnimation +56 QPauseAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QPauseAnimation::duration +120 QPauseAnimation::updateCurrentTime +128 QAbstractAnimation::updateState +136 QAbstractAnimation::updateDirection + +Class QPauseAnimation + size=16 align=8 + base size=16 base align=8 +QPauseAnimation (0x7f35b5ce3e70) 0 + vptr=((& QPauseAnimation::_ZTV15QPauseAnimation) + 16u) + QAbstractAnimation (0x7f35b5ce3ee0) 0 + primary-for QPauseAnimation (0x7f35b5ce3e70) + QObject (0x7f35b5ce3f50) 0 + primary-for QAbstractAnimation (0x7f35b5ce3ee0) + +Vtable for QVariantAnimation +QVariantAnimation::_ZTV17QVariantAnimation: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QVariantAnimation) +16 QVariantAnimation::metaObject +24 QVariantAnimation::qt_metacast +32 QVariantAnimation::qt_metacall +40 QVariantAnimation::~QVariantAnimation +48 QVariantAnimation::~QVariantAnimation +56 QVariantAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QVariantAnimation::duration +120 QVariantAnimation::updateCurrentTime +128 QVariantAnimation::updateState +136 QAbstractAnimation::updateDirection +144 __cxa_pure_virtual +152 QVariantAnimation::interpolated + +Class QVariantAnimation + size=16 align=8 + base size=16 base align=8 +QVariantAnimation (0x7f35b5d028c0) 0 + vptr=((& QVariantAnimation::_ZTV17QVariantAnimation) + 16u) + QAbstractAnimation (0x7f35b5d02930) 0 + primary-for QVariantAnimation (0x7f35b5d028c0) + QObject (0x7f35b5d029a0) 0 + primary-for QAbstractAnimation (0x7f35b5d02930) + +Vtable for QPropertyAnimation +QPropertyAnimation::_ZTV18QPropertyAnimation: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QPropertyAnimation) +16 QPropertyAnimation::metaObject +24 QPropertyAnimation::qt_metacast +32 QPropertyAnimation::qt_metacall +40 QPropertyAnimation::~QPropertyAnimation +48 QPropertyAnimation::~QPropertyAnimation +56 QPropertyAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QVariantAnimation::duration +120 QVariantAnimation::updateCurrentTime +128 QPropertyAnimation::updateState +136 QAbstractAnimation::updateDirection +144 QPropertyAnimation::updateCurrentValue +152 QVariantAnimation::interpolated + +Class QPropertyAnimation + size=16 align=8 + base size=16 base align=8 +QPropertyAnimation (0x7f35b5d1fb60) 0 + vptr=((& QPropertyAnimation::_ZTV18QPropertyAnimation) + 16u) + QVariantAnimation (0x7f35b5d1fbd0) 0 + primary-for QPropertyAnimation (0x7f35b5d1fb60) + QAbstractAnimation (0x7f35b5d1fc40) 0 + primary-for QVariantAnimation (0x7f35b5d1fbd0) + QObject (0x7f35b5d1fcb0) 0 + primary-for QAbstractAnimation (0x7f35b5d1fc40) + +Vtable for QSequentialAnimationGroup +QSequentialAnimationGroup::_ZTV25QSequentialAnimationGroup: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QSequentialAnimationGroup) +16 QSequentialAnimationGroup::metaObject +24 QSequentialAnimationGroup::qt_metacast +32 QSequentialAnimationGroup::qt_metacall +40 QSequentialAnimationGroup::~QSequentialAnimationGroup +48 QSequentialAnimationGroup::~QSequentialAnimationGroup +56 QSequentialAnimationGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QSequentialAnimationGroup::duration +120 QSequentialAnimationGroup::updateCurrentTime +128 QSequentialAnimationGroup::updateState +136 QSequentialAnimationGroup::updateDirection + +Class QSequentialAnimationGroup + size=16 align=8 + base size=16 base align=8 +QSequentialAnimationGroup (0x7f35b5d39b60) 0 + vptr=((& QSequentialAnimationGroup::_ZTV25QSequentialAnimationGroup) + 16u) + QAnimationGroup (0x7f35b5d39bd0) 0 + primary-for QSequentialAnimationGroup (0x7f35b5d39b60) + QAbstractAnimation (0x7f35b5d39c40) 0 + primary-for QAnimationGroup (0x7f35b5d39bd0) + QObject (0x7f35b5d39cb0) 0 + primary-for QAbstractAnimation (0x7f35b5d39c40) + +Class QDomImplementation + size=8 align=8 + base size=8 base align=8 +QDomImplementation (0x7f35b5d51bd0) 0 + +Class QDomNode + size=8 align=8 + base size=8 base align=8 +QDomNode (0x7f35b5d5f540) 0 + +Class QDomNodeList + size=8 align=8 + base size=8 base align=8 +QDomNodeList (0x7f35b5d6f770) 0 + +Class QDomDocumentType + size=8 align=8 + base size=8 base align=8 +QDomDocumentType (0x7f35b5b877e0) 0 + QDomNode (0x7f35b5b87850) 0 + +Class QDomDocument + size=8 align=8 + base size=8 base align=8 +QDomDocument (0x7f35b5b8f380) 0 + QDomNode (0x7f35b5b8f3f0) 0 + +Class QDomNamedNodeMap + size=8 align=8 + base size=8 base align=8 +QDomNamedNodeMap (0x7f35b5ba12a0) 0 + +Class QDomDocumentFragment + size=8 align=8 + base size=8 base align=8 +QDomDocumentFragment (0x7f35b5bb00e0) 0 + QDomNode (0x7f35b5bb0150) 0 + +Class QDomCharacterData + size=8 align=8 + base size=8 base align=8 +QDomCharacterData (0x7f35b5bb0c40) 0 + QDomNode (0x7f35b5bb0cb0) 0 + +Class QDomAttr + size=8 align=8 + base size=8 base align=8 +QDomAttr (0x7f35b5bb4690) 0 + QDomNode (0x7f35b5bb4700) 0 + +Class QDomElement + size=8 align=8 + base size=8 base align=8 +QDomElement (0x7f35b5bbd230) 0 + QDomNode (0x7f35b5bbd2a0) 0 + +Class QDomText + size=8 align=8 + base size=8 base align=8 +QDomText (0x7f35b5bd24d0) 0 + QDomCharacterData (0x7f35b5bd2540) 0 + QDomNode (0x7f35b5bd25b0) 0 + +Class QDomComment + size=8 align=8 + base size=8 base align=8 +QDomComment (0x7f35b5bd9230) 0 + QDomCharacterData (0x7f35b5bd92a0) 0 + QDomNode (0x7f35b5bd9310) 0 + +Class QDomCDATASection + size=8 align=8 + base size=8 base align=8 +QDomCDATASection (0x7f35b5bd9e00) 0 + QDomText (0x7f35b5bd9e70) 0 + QDomCharacterData (0x7f35b5bd9ee0) 0 + QDomNode (0x7f35b5bd9f50) 0 + +Class QDomNotation + size=8 align=8 + base size=8 base align=8 +QDomNotation (0x7f35b5be0a80) 0 + QDomNode (0x7f35b5be0af0) 0 + +Class QDomEntity + size=8 align=8 + base size=8 base align=8 +QDomEntity (0x7f35b5be5620) 0 + QDomNode (0x7f35b5be5690) 0 + +Class QDomEntityReference + size=8 align=8 + base size=8 base align=8 +QDomEntityReference (0x7f35b5bec1c0) 0 + QDomNode (0x7f35b5bec230) 0 + +Class QDomProcessingInstruction + size=8 align=8 + base size=8 base align=8 +QDomProcessingInstruction (0x7f35b5becd20) 0 + QDomNode (0x7f35b5becd90) 0 + +Class QXmlNamespaceSupport + size=8 align=8 + base size=8 base align=8 +QXmlNamespaceSupport (0x7f35b5bf08c0) 0 + +Class QXmlAttributes::Attribute + size=32 align=8 + base size=32 base align=8 +QXmlAttributes::Attribute (0x7f35b5bf0f50) 0 + +Vtable for QXmlAttributes +QXmlAttributes::_ZTV14QXmlAttributes: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QXmlAttributes) +16 QXmlAttributes::~QXmlAttributes +24 QXmlAttributes::~QXmlAttributes + +Class QXmlAttributes + size=24 align=8 + base size=24 base align=8 +QXmlAttributes (0x7f35b5bf0e00) 0 + vptr=((& QXmlAttributes::_ZTV14QXmlAttributes) + 16u) + +Vtable for QXmlInputSource +QXmlInputSource::_ZTV15QXmlInputSource: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QXmlInputSource) +16 QXmlInputSource::~QXmlInputSource +24 QXmlInputSource::~QXmlInputSource +32 QXmlInputSource::setData +40 QXmlInputSource::setData +48 QXmlInputSource::fetchData +56 QXmlInputSource::data +64 QXmlInputSource::next +72 QXmlInputSource::reset +80 QXmlInputSource::fromRawData + +Class QXmlInputSource + size=16 align=8 + base size=16 base align=8 +QXmlInputSource (0x7f35b5c32690) 0 + vptr=((& QXmlInputSource::_ZTV15QXmlInputSource) + 16u) + +Class QXmlParseException + size=8 align=8 + base size=8 base align=8 +QXmlParseException (0x7f35b5c329a0) 0 + +Vtable for QXmlReader +QXmlReader::_ZTV10QXmlReader: 24u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QXmlReader) +16 QXmlReader::~QXmlReader +24 QXmlReader::~QXmlReader +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual + +Class QXmlReader + size=8 align=8 + base size=8 base align=8 +QXmlReader (0x7f35b5c32e70) 0 nearly-empty + vptr=((& QXmlReader::_ZTV10QXmlReader) + 16u) + +Vtable for QXmlSimpleReader +QXmlSimpleReader::_ZTV16QXmlSimpleReader: 26u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QXmlSimpleReader) +16 QXmlSimpleReader::~QXmlSimpleReader +24 QXmlSimpleReader::~QXmlSimpleReader +32 QXmlSimpleReader::feature +40 QXmlSimpleReader::setFeature +48 QXmlSimpleReader::hasFeature +56 QXmlSimpleReader::property +64 QXmlSimpleReader::setProperty +72 QXmlSimpleReader::hasProperty +80 QXmlSimpleReader::setEntityResolver +88 QXmlSimpleReader::entityResolver +96 QXmlSimpleReader::setDTDHandler +104 QXmlSimpleReader::DTDHandler +112 QXmlSimpleReader::setContentHandler +120 QXmlSimpleReader::contentHandler +128 QXmlSimpleReader::setErrorHandler +136 QXmlSimpleReader::errorHandler +144 QXmlSimpleReader::setLexicalHandler +152 QXmlSimpleReader::lexicalHandler +160 QXmlSimpleReader::setDeclHandler +168 QXmlSimpleReader::declHandler +176 QXmlSimpleReader::parse +184 QXmlSimpleReader::parse +192 QXmlSimpleReader::parse +200 QXmlSimpleReader::parseContinue + +Class QXmlSimpleReader + size=16 align=8 + base size=16 base align=8 +QXmlSimpleReader (0x7f35b5c56770) 0 + vptr=((& QXmlSimpleReader::_ZTV16QXmlSimpleReader) + 16u) + QXmlReader (0x7f35b5c567e0) 0 nearly-empty + primary-for QXmlSimpleReader (0x7f35b5c56770) + +Vtable for QXmlLocator +QXmlLocator::_ZTV11QXmlLocator: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QXmlLocator) +16 QXmlLocator::~QXmlLocator +24 QXmlLocator::~QXmlLocator +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QXmlLocator + size=8 align=8 + base size=8 base align=8 +QXmlLocator (0x7f35b5c703f0) 0 nearly-empty + vptr=((& QXmlLocator::_ZTV11QXmlLocator) + 16u) + +Vtable for QXmlContentHandler +QXmlContentHandler::_ZTV18QXmlContentHandler: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QXmlContentHandler) +16 QXmlContentHandler::~QXmlContentHandler +24 QXmlContentHandler::~QXmlContentHandler +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QXmlContentHandler + size=8 align=8 + base size=8 base align=8 +QXmlContentHandler (0x7f35b5c70620) 0 nearly-empty + vptr=((& QXmlContentHandler::_ZTV18QXmlContentHandler) + 16u) + +Vtable for QXmlErrorHandler +QXmlErrorHandler::_ZTV16QXmlErrorHandler: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QXmlErrorHandler) +16 QXmlErrorHandler::~QXmlErrorHandler +24 QXmlErrorHandler::~QXmlErrorHandler +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual + +Class QXmlErrorHandler + size=8 align=8 + base size=8 base align=8 +QXmlErrorHandler (0x7f35b5c70700) 0 nearly-empty + vptr=((& QXmlErrorHandler::_ZTV16QXmlErrorHandler) + 16u) + +Vtable for QXmlDTDHandler +QXmlDTDHandler::_ZTV14QXmlDTDHandler: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QXmlDTDHandler) +16 QXmlDTDHandler::~QXmlDTDHandler +24 QXmlDTDHandler::~QXmlDTDHandler +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual + +Class QXmlDTDHandler + size=8 align=8 + base size=8 base align=8 +QXmlDTDHandler (0x7f35b5a809a0) 0 nearly-empty + vptr=((& QXmlDTDHandler::_ZTV14QXmlDTDHandler) + 16u) + +Vtable for QXmlEntityResolver +QXmlEntityResolver::_ZTV18QXmlEntityResolver: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QXmlEntityResolver) +16 QXmlEntityResolver::~QXmlEntityResolver +24 QXmlEntityResolver::~QXmlEntityResolver +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QXmlEntityResolver + size=8 align=8 + base size=8 base align=8 +QXmlEntityResolver (0x7f35b5a8f310) 0 nearly-empty + vptr=((& QXmlEntityResolver::_ZTV18QXmlEntityResolver) + 16u) + +Vtable for QXmlLexicalHandler +QXmlLexicalHandler::_ZTV18QXmlLexicalHandler: 12u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QXmlLexicalHandler) +16 QXmlLexicalHandler::~QXmlLexicalHandler +24 QXmlLexicalHandler::~QXmlLexicalHandler +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual + +Class QXmlLexicalHandler + size=8 align=8 + base size=8 base align=8 +QXmlLexicalHandler (0x7f35b5a8fd90) 0 nearly-empty + vptr=((& QXmlLexicalHandler::_ZTV18QXmlLexicalHandler) + 16u) + +Vtable for QXmlDeclHandler +QXmlDeclHandler::_ZTV15QXmlDeclHandler: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QXmlDeclHandler) +16 QXmlDeclHandler::~QXmlDeclHandler +24 QXmlDeclHandler::~QXmlDeclHandler +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual + +Class QXmlDeclHandler + size=8 align=8 + base size=8 base align=8 +QXmlDeclHandler (0x7f35b5aa0700) 0 nearly-empty + vptr=((& QXmlDeclHandler::_ZTV15QXmlDeclHandler) + 16u) + +Vtable for QXmlDefaultHandler +QXmlDefaultHandler::_ZTV18QXmlDefaultHandler: 73u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QXmlDefaultHandler) +16 QXmlDefaultHandler::~QXmlDefaultHandler +24 QXmlDefaultHandler::~QXmlDefaultHandler +32 QXmlDefaultHandler::setDocumentLocator +40 QXmlDefaultHandler::startDocument +48 QXmlDefaultHandler::endDocument +56 QXmlDefaultHandler::startPrefixMapping +64 QXmlDefaultHandler::endPrefixMapping +72 QXmlDefaultHandler::startElement +80 QXmlDefaultHandler::endElement +88 QXmlDefaultHandler::characters +96 QXmlDefaultHandler::ignorableWhitespace +104 QXmlDefaultHandler::processingInstruction +112 QXmlDefaultHandler::skippedEntity +120 QXmlDefaultHandler::errorString +128 QXmlDefaultHandler::warning +136 QXmlDefaultHandler::error +144 QXmlDefaultHandler::fatalError +152 QXmlDefaultHandler::notationDecl +160 QXmlDefaultHandler::unparsedEntityDecl +168 QXmlDefaultHandler::resolveEntity +176 QXmlDefaultHandler::startDTD +184 QXmlDefaultHandler::endDTD +192 QXmlDefaultHandler::startEntity +200 QXmlDefaultHandler::endEntity +208 QXmlDefaultHandler::startCDATA +216 QXmlDefaultHandler::endCDATA +224 QXmlDefaultHandler::comment +232 QXmlDefaultHandler::attributeDecl +240 QXmlDefaultHandler::internalEntityDecl +248 QXmlDefaultHandler::externalEntityDecl +256 (int (*)(...))-0x00000000000000008 +264 (int (*)(...))(& _ZTI18QXmlDefaultHandler) +272 QXmlDefaultHandler::_ZThn8_N18QXmlDefaultHandlerD1Ev +280 QXmlDefaultHandler::_ZThn8_N18QXmlDefaultHandlerD0Ev +288 QXmlDefaultHandler::_ZThn8_N18QXmlDefaultHandler7warningERK18QXmlParseException +296 QXmlDefaultHandler::_ZThn8_N18QXmlDefaultHandler5errorERK18QXmlParseException +304 QXmlDefaultHandler::_ZThn8_N18QXmlDefaultHandler10fatalErrorERK18QXmlParseException +312 QXmlDefaultHandler::_ZThn8_NK18QXmlDefaultHandler11errorStringEv +320 (int (*)(...))-0x00000000000000010 +328 (int (*)(...))(& _ZTI18QXmlDefaultHandler) +336 QXmlDefaultHandler::_ZThn16_N18QXmlDefaultHandlerD1Ev +344 QXmlDefaultHandler::_ZThn16_N18QXmlDefaultHandlerD0Ev +352 QXmlDefaultHandler::_ZThn16_N18QXmlDefaultHandler12notationDeclERK7QStringS2_S2_ +360 QXmlDefaultHandler::_ZThn16_N18QXmlDefaultHandler18unparsedEntityDeclERK7QStringS2_S2_S2_ +368 QXmlDefaultHandler::_ZThn16_NK18QXmlDefaultHandler11errorStringEv +376 (int (*)(...))-0x00000000000000018 +384 (int (*)(...))(& _ZTI18QXmlDefaultHandler) +392 QXmlDefaultHandler::_ZThn24_N18QXmlDefaultHandlerD1Ev +400 QXmlDefaultHandler::_ZThn24_N18QXmlDefaultHandlerD0Ev +408 QXmlDefaultHandler::_ZThn24_N18QXmlDefaultHandler13resolveEntityERK7QStringS2_RP15QXmlInputSource +416 QXmlDefaultHandler::_ZThn24_NK18QXmlDefaultHandler11errorStringEv +424 (int (*)(...))-0x00000000000000020 +432 (int (*)(...))(& _ZTI18QXmlDefaultHandler) +440 QXmlDefaultHandler::_ZThn32_N18QXmlDefaultHandlerD1Ev +448 QXmlDefaultHandler::_ZThn32_N18QXmlDefaultHandlerD0Ev +456 QXmlDefaultHandler::_ZThn32_N18QXmlDefaultHandler8startDTDERK7QStringS2_S2_ +464 QXmlDefaultHandler::_ZThn32_N18QXmlDefaultHandler6endDTDEv +472 QXmlDefaultHandler::_ZThn32_N18QXmlDefaultHandler11startEntityERK7QString +480 QXmlDefaultHandler::_ZThn32_N18QXmlDefaultHandler9endEntityERK7QString +488 QXmlDefaultHandler::_ZThn32_N18QXmlDefaultHandler10startCDATAEv +496 QXmlDefaultHandler::_ZThn32_N18QXmlDefaultHandler8endCDATAEv +504 QXmlDefaultHandler::_ZThn32_N18QXmlDefaultHandler7commentERK7QString +512 QXmlDefaultHandler::_ZThn32_NK18QXmlDefaultHandler11errorStringEv +520 (int (*)(...))-0x00000000000000028 +528 (int (*)(...))(& _ZTI18QXmlDefaultHandler) +536 QXmlDefaultHandler::_ZThn40_N18QXmlDefaultHandlerD1Ev +544 QXmlDefaultHandler::_ZThn40_N18QXmlDefaultHandlerD0Ev +552 QXmlDefaultHandler::_ZThn40_N18QXmlDefaultHandler13attributeDeclERK7QStringS2_S2_S2_S2_ +560 QXmlDefaultHandler::_ZThn40_N18QXmlDefaultHandler18internalEntityDeclERK7QStringS2_ +568 QXmlDefaultHandler::_ZThn40_N18QXmlDefaultHandler18externalEntityDeclERK7QStringS2_S2_ +576 QXmlDefaultHandler::_ZThn40_NK18QXmlDefaultHandler11errorStringEv + +Class QXmlDefaultHandler + size=56 align=8 + base size=56 base align=8 +QXmlDefaultHandler (0x7f35b5aa76e0) 0 + vptr=((& QXmlDefaultHandler::_ZTV18QXmlDefaultHandler) + 16u) + QXmlContentHandler (0x7f35b5aad0e0) 0 nearly-empty + primary-for QXmlDefaultHandler (0x7f35b5aa76e0) + QXmlErrorHandler (0x7f35b5aad150) 8 nearly-empty + vptr=((& QXmlDefaultHandler::_ZTV18QXmlDefaultHandler) + 272u) + QXmlDTDHandler (0x7f35b5aad1c0) 16 nearly-empty + vptr=((& QXmlDefaultHandler::_ZTV18QXmlDefaultHandler) + 336u) + QXmlEntityResolver (0x7f35b5aad230) 24 nearly-empty + vptr=((& QXmlDefaultHandler::_ZTV18QXmlDefaultHandler) + 392u) + QXmlLexicalHandler (0x7f35b5aad2a0) 32 nearly-empty + vptr=((& QXmlDefaultHandler::_ZTV18QXmlDefaultHandler) + 440u) + QXmlDeclHandler (0x7f35b5aad310) 40 nearly-empty + vptr=((& QXmlDefaultHandler::_ZTV18QXmlDefaultHandler) + 536u) + diff --git a/tests/auto/bic/data/QtXmlPatterns.4.5.0.linux-gcc-amd64.txt b/tests/auto/bic/data/QtXmlPatterns.4.5.0.linux-gcc-amd64.txt new file mode 100644 index 0000000..65c885d --- /dev/null +++ b/tests/auto/bic/data/QtXmlPatterns.4.5.0.linux-gcc-amd64.txt @@ -0,0 +1,3270 @@ +Class QSysInfo + size=1 align=1 + base size=0 base align=1 +QSysInfo (0x7f593a280460) 0 empty + +Class QBool + size=1 align=1 + base size=1 base align=1 +QBool (0x7f593a297150) 0 + +Class qIsNull(double)::U + size=8 align=8 + base size=8 base align=8 +qIsNull(double)::U (0x7f593a2ad540) 0 + +Class qIsNull(float)::U + size=4 align=4 + base size=4 base align=4 +qIsNull(float)::U (0x7f593a2ad7e0) 0 + +Class QFlag + size=4 align=4 + base size=4 base align=4 +QFlag (0x7f593a2e5620) 0 + +Class QIncompatibleFlag + size=4 align=4 + base size=4 base align=4 +QIncompatibleFlag (0x7f593a2e5e00) 0 + +Class QInternal + size=1 align=1 + base size=0 base align=1 +QInternal (0x7f59398be540) 0 empty + +Class QGenericArgument + size=16 align=8 + base size=16 base align=8 +QGenericArgument (0x7f59398be850) 0 + +Class QGenericReturnArgument + size=16 align=8 + base size=16 base align=8 +QGenericReturnArgument (0x7f59398da3f0) 0 + QGenericArgument (0x7f59398da460) 0 + +Class QMetaObject + size=32 align=8 + base size=32 base align=8 +QMetaObject (0x7f59398dacb0) 0 + +Class QMetaObjectExtraData + size=16 align=8 + base size=16 base align=8 +QMetaObjectExtraData (0x7f5939901cb0) 0 + +Class QLatin1Char + size=1 align=1 + base size=1 base align=1 +QLatin1Char (0x7f593990d700) 0 + +Class QChar + size=2 align=2 + base size=2 base align=2 +QChar (0x7f59399112a0) 0 + +Class QBasicAtomicInt + size=4 align=4 + base size=4 base align=4 +QBasicAtomicInt (0x7f593977d380) 0 + +Class QAtomicInt + size=4 align=4 + base size=4 base align=4 +QAtomicInt (0x7f59397b9d20) 0 + QBasicAtomicInt (0x7f59397b9d90) 0 + +Class __locale_struct + size=232 align=8 + base size=232 base align=8 +__locale_struct (0x7f59397de1c0) 0 + +Class QByteArray::Data + size=32 align=8 + base size=32 base align=8 +QByteArray::Data (0x7f59396577e0) 0 + +Class QByteArray + size=8 align=8 + base size=8 base align=8 +QByteArray (0x7f5939612540) 0 + +Class QByteRef + size=16 align=8 + base size=12 base align=8 +QByteRef (0x7f59396aca80) 0 + +Class QString::Null + size=1 align=1 + base size=0 base align=1 +QString::Null (0x7f59395b5700) 0 empty + +Class QString::Data + size=32 align=8 + base size=32 base align=8 +QString::Data (0x7f59395c4ee0) 0 + +Class QString + size=8 align=8 + base size=8 base align=8 +QString (0x7f59395345b0) 0 + +Class QLatin1String + size=8 align=8 + base size=8 base align=8 +QLatin1String (0x7f593949f000) 0 + +Class QCharRef + size=16 align=8 + base size=12 base align=8 +QCharRef (0x7f5939336620) 0 + +Class QConstString + size=8 align=8 + base size=8 base align=8 +QConstString (0x7f593927fee0) 0 + QString (0x7f593927ff50) 0 + +Class QStringRef + size=16 align=8 + base size=16 base align=8 +QStringRef (0x7f593929fbd0) 0 + +Vtable for std::exception +std::exception::_ZTVSt9exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9exception) +16 std::exception::~exception +24 std::exception::~exception +32 std::exception::what + +Class std::exception + size=8 align=8 + base size=8 base align=8 +std::exception (0x7f593915a620) 0 nearly-empty + vptr=((& std::exception::_ZTVSt9exception) + 16u) + +Vtable for std::bad_exception +std::bad_exception::_ZTVSt13bad_exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13bad_exception) +16 std::bad_exception::~bad_exception +24 std::bad_exception::~bad_exception +32 std::bad_exception::what + +Class std::bad_exception + size=8 align=8 + base size=8 base align=8 +std::bad_exception (0x7f593917d000) 0 nearly-empty + vptr=((& std::bad_exception::_ZTVSt13bad_exception) + 16u) + std::exception (0x7f593917d070) 0 nearly-empty + primary-for std::bad_exception (0x7f593917d000) + +Vtable for std::bad_alloc +std::bad_alloc::_ZTVSt9bad_alloc: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9bad_alloc) +16 std::bad_alloc::~bad_alloc +24 std::bad_alloc::~bad_alloc +32 std::bad_alloc::what + +Class std::bad_alloc + size=8 align=8 + base size=8 base align=8 +std::bad_alloc (0x7f593917d8c0) 0 nearly-empty + vptr=((& std::bad_alloc::_ZTVSt9bad_alloc) + 16u) + std::exception (0x7f593917d930) 0 nearly-empty + primary-for std::bad_alloc (0x7f593917d8c0) + +Class std::nothrow_t + size=1 align=1 + base size=0 base align=1 +std::nothrow_t (0x7f593918e0e0) 0 empty + +Class QListData::Data + size=32 align=8 + base size=32 base align=8 +QListData::Data (0x7f593918e620) 0 + +Class QListData + size=8 align=8 + base size=8 base align=8 +QListData (0x7f593918e5b0) 0 + +Vtable for QObjectData +QObjectData::_ZTV11QObjectData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QObjectData) +16 __cxa_pure_virtual +24 __cxa_pure_virtual + +Class QObjectData + size=40 align=8 + base size=40 base align=8 +QObjectData (0x7f5939091bd0) 0 + vptr=((& QObjectData::_ZTV11QObjectData) + 16u) + +Vtable for QObject +QObject::_ZTV7QObject: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QObject) +16 QObject::metaObject +24 QObject::qt_metacast +32 QObject::qt_metacall +40 QObject::~QObject +48 QObject::~QObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObject + size=16 align=8 + base size=16 base align=8 +QObject (0x7f5939091ee0) 0 + vptr=((& QObject::_ZTV7QObject) + 16u) + +Vtable for QObjectUserData +QObjectUserData::_ZTV15QObjectUserData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QObjectUserData) +16 QObjectUserData::~QObjectUserData +24 QObjectUserData::~QObjectUserData + +Class QObjectUserData + size=8 align=8 + base size=8 base align=8 +QObjectUserData (0x7f5938f223f0) 0 nearly-empty + vptr=((& QObjectUserData::_ZTV15QObjectUserData) + 16u) + +Vtable for QIODevice +QIODevice::_ZTV9QIODevice: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QIODevice) +16 QIODevice::metaObject +24 QIODevice::qt_metacast +32 QIODevice::qt_metacall +40 QIODevice::~QIODevice +48 QIODevice::~QIODevice +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QIODevice::isSequential +120 QIODevice::open +128 QIODevice::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QIODevice::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 __cxa_pure_virtual +224 QIODevice::readLineData +232 __cxa_pure_virtual + +Class QIODevice + size=16 align=8 + base size=16 base align=8 +QIODevice (0x7f5938f22930) 0 + vptr=((& QIODevice::_ZTV9QIODevice) + 16u) + QObject (0x7f5938f229a0) 0 + primary-for QIODevice (0x7f5938f22930) + +Vtable for QDataStream +QDataStream::_ZTV11QDataStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QDataStream) +16 QDataStream::~QDataStream +24 QDataStream::~QDataStream + +Class QDataStream + size=40 align=8 + base size=40 base align=8 +QDataStream (0x7f5938f992a0) 0 + vptr=((& QDataStream::_ZTV11QDataStream) + 16u) + +Class QHashData::Node + size=16 align=8 + base size=16 base align=8 +QHashData::Node (0x7f5938e1f150) 0 + +Class QHashData + size=40 align=8 + base size=40 base align=8 +QHashData (0x7f5938e1f0e0) 0 + +Class QHashDummyValue + size=1 align=1 + base size=0 base align=1 +QHashDummyValue (0x7f5938e2fee0) 0 empty + +Class QMapData::Node + size=16 align=8 + base size=16 base align=8 +QMapData::Node (0x7f5938d42690) 0 + +Class QMapData + size=128 align=8 + base size=128 base align=8 +QMapData (0x7f5938d42620) 0 + +Vtable for QSystemLocale +QSystemLocale::_ZTV13QSystemLocale: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSystemLocale) +16 QSystemLocale::~QSystemLocale +24 QSystemLocale::~QSystemLocale +32 QSystemLocale::query +40 QSystemLocale::fallbackLocale + +Class QSystemLocale + size=8 align=8 + base size=8 base align=8 +QSystemLocale (0x7f5938c55e00) 0 nearly-empty + vptr=((& QSystemLocale::_ZTV13QSystemLocale) + 16u) + +Class QLocale::Data + size=4 align=2 + base size=4 base align=2 +QLocale::Data (0x7f5938cb43f0) 0 + +Class QLocale + size=8 align=8 + base size=8 base align=8 +QLocale (0x7f5938c780e0) 0 + +Class QTextCodec::ConverterState + size=32 align=8 + base size=32 base align=8 +QTextCodec::ConverterState (0x7f5938d02e70) 0 + +Vtable for QTextCodec +QTextCodec::_ZTV10QTextCodec: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextCodec) +16 __cxa_pure_virtual +24 QTextCodec::aliases +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QTextCodec::~QTextCodec +64 QTextCodec::~QTextCodec + +Class QTextCodec + size=8 align=8 + base size=8 base align=8 +QTextCodec (0x7f5938ceba80) 0 nearly-empty + vptr=((& QTextCodec::_ZTV10QTextCodec) + 16u) + +Class QTextEncoder + size=40 align=8 + base size=40 base align=8 +QTextEncoder (0x7f5938b6e3f0) 0 + +Class QTextDecoder + size=40 align=8 + base size=40 base align=8 +QTextDecoder (0x7f5938b77230) 0 + +Class _IO_marker + size=24 align=8 + base size=24 base align=8 +_IO_marker (0x7f5938b7f2a0) 0 + +Class _IO_FILE + size=216 align=8 + base size=216 base align=8 +_IO_FILE (0x7f5938b7f310) 0 + +Vtable for QTextStream +QTextStream::_ZTV11QTextStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTextStream) +16 QTextStream::~QTextStream +24 QTextStream::~QTextStream + +Class QTextStream + size=16 align=8 + base size=16 base align=8 +QTextStream (0x7f5938b7f3f0) 0 + vptr=((& QTextStream::_ZTV11QTextStream) + 16u) + +Class QTextStreamManipulator + size=40 align=8 + base size=38 base align=8 +QTextStreamManipulator (0x7f5938a17ee0) 0 + +Vtable for QTextIStream +QTextIStream::_ZTV12QTextIStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextIStream) +16 QTextIStream::~QTextIStream +24 QTextIStream::~QTextIStream + +Class QTextIStream + size=16 align=8 + base size=16 base align=8 +QTextIStream (0x7f5938a441c0) 0 + vptr=((& QTextIStream::_ZTV12QTextIStream) + 16u) + QTextStream (0x7f5938a44230) 0 + primary-for QTextIStream (0x7f5938a441c0) + +Vtable for QTextOStream +QTextOStream::_ZTV12QTextOStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextOStream) +16 QTextOStream::~QTextOStream +24 QTextOStream::~QTextOStream + +Class QTextOStream + size=16 align=8 + base size=16 base align=8 +QTextOStream (0x7f5938a59070) 0 + vptr=((& QTextOStream::_ZTV12QTextOStream) + 16u) + QTextStream (0x7f5938a590e0) 0 + primary-for QTextOStream (0x7f5938a59070) + +Class wait + size=4 align=4 + base size=4 base align=4 +wait (0x7f5938a65ee0) 0 + +Class timespec + size=16 align=8 + base size=16 base align=8 +timespec (0x7f5938a73230) 0 + +Class timeval + size=16 align=8 + base size=16 base align=8 +timeval (0x7f5938a732a0) 0 + +Class __pthread_internal_list + size=16 align=8 + base size=16 base align=8 +__pthread_internal_list (0x7f5938a733f0) 0 + +Class random_data + size=48 align=8 + base size=48 base align=8 +random_data (0x7f5938a739a0) 0 + +Class drand48_data + size=24 align=8 + base size=24 base align=8 +drand48_data (0x7f5938a73a10) 0 + +Class QVectorData + size=16 align=4 + base size=16 base align=4 +QVectorData (0x7f5938a73a80) 0 + +Class QDebug::Stream + size=40 align=8 + base size=34 base align=8 +QDebug::Stream (0x7f59389ee230) 0 + +Class QDebug + size=8 align=8 + base size=8 base align=8 +QDebug (0x7f59389ee1c0) 0 + +Class QNoDebug + size=1 align=1 + base size=0 base align=1 +QNoDebug (0x7f593888c070) 0 empty + +Vtable for QFile +QFile::_ZTV5QFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QFile) +16 QFile::metaObject +24 QFile::qt_metacast +32 QFile::qt_metacall +40 QFile::~QFile +48 QFile::~QFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QFile::fileEngine + +Class QFile + size=16 align=8 + base size=16 base align=8 +QFile (0x7f593889e620) 0 + vptr=((& QFile::_ZTV5QFile) + 16u) + QIODevice (0x7f593889e690) 0 + primary-for QFile (0x7f593889e620) + QObject (0x7f593889e700) 0 + primary-for QIODevice (0x7f593889e690) + +Vtable for QTemporaryFile +QTemporaryFile::_ZTV14QTemporaryFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QTemporaryFile) +16 QTemporaryFile::metaObject +24 QTemporaryFile::qt_metacast +32 QTemporaryFile::qt_metacall +40 QTemporaryFile::~QTemporaryFile +48 QTemporaryFile::~QTemporaryFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QTemporaryFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QTemporaryFile::fileEngine + +Class QTemporaryFile + size=16 align=8 + base size=16 base align=8 +QTemporaryFile (0x7f5938708850) 0 + vptr=((& QTemporaryFile::_ZTV14QTemporaryFile) + 16u) + QFile (0x7f59387088c0) 0 + primary-for QTemporaryFile (0x7f5938708850) + QIODevice (0x7f5938708930) 0 + primary-for QFile (0x7f59387088c0) + QObject (0x7f59387089a0) 0 + primary-for QIODevice (0x7f5938708930) + +Class QFileInfo + size=8 align=8 + base size=8 base align=8 +QFileInfo (0x7f593872af50) 0 + +Class QRegExp + size=8 align=8 + base size=8 base align=8 +QRegExp (0x7f5938786770) 0 + +Class QStringMatcher + size=1048 align=8 + base size=1048 base align=8 +QStringMatcher (0x7f59387d35b0) 0 + +Class QStringList + size=8 align=8 + base size=8 base align=8 +QStringList (0x7f59387e7070) 0 + QList (0x7f59387e70e0) 0 + +Class QDir + size=8 align=8 + base size=8 base align=8 +QDir (0x7f5938674cb0) 0 + +Class QAbstractFileEngine::ExtensionOption + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionOption (0x7f593850de70) 0 empty + +Class QAbstractFileEngine::ExtensionReturn + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionReturn (0x7f593850dee0) 0 empty + +Class QAbstractFileEngine::MapExtensionOption + size=24 align=8 + base size=20 base align=8 +QAbstractFileEngine::MapExtensionOption (0x7f593850df50) 0 + QAbstractFileEngine::ExtensionOption (0x7f5938522000) 0 empty + +Class QAbstractFileEngine::MapExtensionReturn + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::MapExtensionReturn (0x7f59385221c0) 0 + QAbstractFileEngine::ExtensionReturn (0x7f5938522230) 0 empty + +Class QAbstractFileEngine::UnMapExtensionOption + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::UnMapExtensionOption (0x7f59385222a0) 0 + QAbstractFileEngine::ExtensionOption (0x7f5938522310) 0 empty + +Vtable for QAbstractFileEngine +QAbstractFileEngine::_ZTV19QAbstractFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractFileEngine) +16 QAbstractFileEngine::~QAbstractFileEngine +24 QAbstractFileEngine::~QAbstractFileEngine +32 QAbstractFileEngine::open +40 QAbstractFileEngine::close +48 QAbstractFileEngine::flush +56 QAbstractFileEngine::size +64 QAbstractFileEngine::pos +72 QAbstractFileEngine::seek +80 QAbstractFileEngine::isSequential +88 QAbstractFileEngine::remove +96 QAbstractFileEngine::copy +104 QAbstractFileEngine::rename +112 QAbstractFileEngine::link +120 QAbstractFileEngine::mkdir +128 QAbstractFileEngine::rmdir +136 QAbstractFileEngine::setSize +144 QAbstractFileEngine::caseSensitive +152 QAbstractFileEngine::isRelativePath +160 QAbstractFileEngine::entryList +168 QAbstractFileEngine::fileFlags +176 QAbstractFileEngine::setPermissions +184 QAbstractFileEngine::fileName +192 QAbstractFileEngine::ownerId +200 QAbstractFileEngine::owner +208 QAbstractFileEngine::fileTime +216 QAbstractFileEngine::setFileName +224 QAbstractFileEngine::handle +232 QAbstractFileEngine::beginEntryList +240 QAbstractFileEngine::endEntryList +248 QAbstractFileEngine::read +256 QAbstractFileEngine::readLine +264 QAbstractFileEngine::write +272 QAbstractFileEngine::extension +280 QAbstractFileEngine::supportsExtension + +Class QAbstractFileEngine + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngine (0x7f59386fde00) 0 + vptr=((& QAbstractFileEngine::_ZTV19QAbstractFileEngine) + 16u) + +Vtable for QAbstractFileEngineHandler +QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QAbstractFileEngineHandler) +16 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +24 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +32 __cxa_pure_virtual + +Class QAbstractFileEngineHandler + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngineHandler (0x7f5938552000) 0 nearly-empty + vptr=((& QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler) + 16u) + +Vtable for QAbstractFileEngineIterator +QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QAbstractFileEngineIterator) +16 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +24 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QAbstractFileEngineIterator::currentFileInfo +64 QAbstractFileEngineIterator::entryInfo + +Class QAbstractFileEngineIterator + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngineIterator (0x7f59385521c0) 0 + vptr=((& QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator) + 16u) + +Vtable for QFSFileEngine +QFSFileEngine::_ZTV13QFSFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QFSFileEngine) +16 QFSFileEngine::~QFSFileEngine +24 QFSFileEngine::~QFSFileEngine +32 QFSFileEngine::open +40 QFSFileEngine::close +48 QFSFileEngine::flush +56 QFSFileEngine::size +64 QFSFileEngine::pos +72 QFSFileEngine::seek +80 QFSFileEngine::isSequential +88 QFSFileEngine::remove +96 QFSFileEngine::copy +104 QFSFileEngine::rename +112 QFSFileEngine::link +120 QFSFileEngine::mkdir +128 QFSFileEngine::rmdir +136 QFSFileEngine::setSize +144 QFSFileEngine::caseSensitive +152 QFSFileEngine::isRelativePath +160 QFSFileEngine::entryList +168 QFSFileEngine::fileFlags +176 QFSFileEngine::setPermissions +184 QFSFileEngine::fileName +192 QFSFileEngine::ownerId +200 QFSFileEngine::owner +208 QFSFileEngine::fileTime +216 QFSFileEngine::setFileName +224 QFSFileEngine::handle +232 QFSFileEngine::beginEntryList +240 QFSFileEngine::endEntryList +248 QFSFileEngine::read +256 QFSFileEngine::readLine +264 QFSFileEngine::write +272 QFSFileEngine::extension +280 QFSFileEngine::supportsExtension + +Class QFSFileEngine + size=16 align=8 + base size=16 base align=8 +QFSFileEngine (0x7f5938552a10) 0 + vptr=((& QFSFileEngine::_ZTV13QFSFileEngine) + 16u) + QAbstractFileEngine (0x7f5938552a80) 0 + primary-for QFSFileEngine (0x7f5938552a10) + +Vtable for QProcess +QProcess::_ZTV8QProcess: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QProcess) +16 QProcess::metaObject +24 QProcess::qt_metacast +32 QProcess::qt_metacall +40 QProcess::~QProcess +48 QProcess::~QProcess +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QProcess::isSequential +120 QIODevice::open +128 QProcess::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QProcess::atEnd +168 QIODevice::reset +176 QProcess::bytesAvailable +184 QProcess::bytesToWrite +192 QProcess::canReadLine +200 QProcess::waitForReadyRead +208 QProcess::waitForBytesWritten +216 QProcess::readData +224 QIODevice::readLineData +232 QProcess::writeData +240 QProcess::setupChildProcess + +Class QProcess + size=16 align=8 + base size=16 base align=8 +QProcess (0x7f5938569d20) 0 + vptr=((& QProcess::_ZTV8QProcess) + 16u) + QIODevice (0x7f5938569d90) 0 + primary-for QProcess (0x7f5938569d20) + QObject (0x7f5938569e00) 0 + primary-for QIODevice (0x7f5938569d90) + +Class QResource + size=8 align=8 + base size=8 base align=8 +QResource (0x7f59385a5230) 0 + +Vtable for QDirIterator +QDirIterator::_ZTV12QDirIterator: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QDirIterator) +16 QDirIterator::~QDirIterator +24 QDirIterator::~QDirIterator + +Class QDirIterator + size=16 align=8 + base size=16 base align=8 +QDirIterator (0x7f59385a5cb0) 0 + vptr=((& QDirIterator::_ZTV12QDirIterator) + 16u) + +Vtable for QBuffer +QBuffer::_ZTV7QBuffer: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QBuffer) +16 QBuffer::metaObject +24 QBuffer::qt_metacast +32 QBuffer::qt_metacall +40 QBuffer::~QBuffer +48 QBuffer::~QBuffer +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QBuffer::connectNotify +104 QBuffer::disconnectNotify +112 QIODevice::isSequential +120 QBuffer::open +128 QBuffer::close +136 QBuffer::pos +144 QBuffer::size +152 QBuffer::seek +160 QBuffer::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QBuffer::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QBuffer::readData +224 QIODevice::readLineData +232 QBuffer::writeData + +Class QBuffer + size=16 align=8 + base size=16 base align=8 +QBuffer (0x7f59385d6a80) 0 + vptr=((& QBuffer::_ZTV7QBuffer) + 16u) + QIODevice (0x7f59385d6af0) 0 + primary-for QBuffer (0x7f59385d6a80) + QObject (0x7f59385d6b60) 0 + primary-for QIODevice (0x7f59385d6af0) + +Vtable for QFileSystemWatcher +QFileSystemWatcher::_ZTV18QFileSystemWatcher: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFileSystemWatcher) +16 QFileSystemWatcher::metaObject +24 QFileSystemWatcher::qt_metacast +32 QFileSystemWatcher::qt_metacall +40 QFileSystemWatcher::~QFileSystemWatcher +48 QFileSystemWatcher::~QFileSystemWatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QFileSystemWatcher + size=16 align=8 + base size=16 base align=8 +QFileSystemWatcher (0x7f59385ff690) 0 + vptr=((& QFileSystemWatcher::_ZTV18QFileSystemWatcher) + 16u) + QObject (0x7f59385ff700) 0 + primary-for QFileSystemWatcher (0x7f59385ff690) + +Class QUrl + size=8 align=8 + base size=8 base align=8 +QUrl (0x7f59383f1bd0) 0 + +Class QMetaType + size=1 align=1 + base size=0 base align=1 +QMetaType (0x7f593847c3f0) 0 empty + +Class QVariant::PrivateShared + size=16 align=8 + base size=12 base align=8 +QVariant::PrivateShared (0x7f593834e930) 0 + +Class QVariant::Private::Data + size=8 align=8 + base size=8 base align=8 +QVariant::Private::Data (0x7f593834ec40) 0 + +Class QVariant::Private + size=16 align=8 + base size=12 base align=8 +QVariant::Private (0x7f593834ea10) 0 + +Class QVariant::Handler + size=72 align=8 + base size=72 base align=8 +QVariant::Handler (0x7f593835c930) 0 + +Class QVariant + size=16 align=8 + base size=16 base align=8 +QVariant (0x7f593831daf0) 0 + +Class QVariantComparisonHelper + size=8 align=8 + base size=8 base align=8 +QVariantComparisonHelper (0x7f5938201cb0) 0 + +Vtable for QSettings +QSettings::_ZTV9QSettings: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QSettings) +16 QSettings::metaObject +24 QSettings::qt_metacast +32 QSettings::qt_metacall +40 QSettings::~QSettings +48 QSettings::~QSettings +56 QSettings::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSettings + size=16 align=8 + base size=16 base align=8 +QSettings (0x7f5938226cb0) 0 + vptr=((& QSettings::_ZTV9QSettings) + 16u) + QObject (0x7f5938226d20) 0 + primary-for QSettings (0x7f5938226cb0) + +Class QXmlStreamStringRef + size=16 align=8 + base size=16 base align=8 +QXmlStreamStringRef (0x7f59382a8070) 0 + +Class QXmlStreamAttribute + size=80 align=8 + base size=73 base align=8 +QXmlStreamAttribute (0x7f59382c6850) 0 + +Class QXmlStreamAttributes + size=8 align=8 + base size=8 base align=8 +QXmlStreamAttributes (0x7f59380ee380) 0 + QVector (0x7f59380ee3f0) 0 + +Class QXmlStreamNamespaceDeclaration + size=40 align=8 + base size=40 base align=8 +QXmlStreamNamespaceDeclaration (0x7f59380ee850) 0 + +Class QXmlStreamNotationDeclaration + size=56 align=8 + base size=56 base align=8 +QXmlStreamNotationDeclaration (0x7f593812f1c0) 0 + +Class QXmlStreamEntityDeclaration + size=88 align=8 + base size=88 base align=8 +QXmlStreamEntityDeclaration (0x7f593814f070) 0 + +Vtable for QXmlStreamEntityResolver +QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QXmlStreamEntityResolver) +16 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +24 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +32 QXmlStreamEntityResolver::resolveEntity +40 QXmlStreamEntityResolver::resolveUndeclaredEntity + +Class QXmlStreamEntityResolver + size=8 align=8 + base size=8 base align=8 +QXmlStreamEntityResolver (0x7f593816c9a0) 0 nearly-empty + vptr=((& QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver) + 16u) + +Class QXmlStreamReader + size=8 align=8 + base size=8 base align=8 +QXmlStreamReader (0x7f593816cb60) 0 + +Class QXmlStreamWriter + size=8 align=8 + base size=8 base align=8 +QXmlStreamWriter (0x7f59381a9a10) 0 + +Class QPoint + size=8 align=4 + base size=8 base align=4 +QPoint (0x7f5937fe5150) 0 + +Class QPointF + size=16 align=8 + base size=16 base align=8 +QPointF (0x7f593801dd90) 0 + +Class QLine + size=16 align=4 + base size=16 base align=4 +QLine (0x7f593805abd0) 0 + +Class QLineF + size=32 align=8 + base size=32 base align=8 +QLineF (0x7f5938094a80) 0 + +Class QSize + size=8 align=4 + base size=8 base align=4 +QSize (0x7f5937ef0540) 0 + +Class QSizeF + size=16 align=8 + base size=16 base align=8 +QSizeF (0x7f5937f3b380) 0 + +Class QRect + size=16 align=4 + base size=16 base align=4 +QRect (0x7f5937f899a0) 0 + +Class QRectF + size=32 align=8 + base size=32 base align=8 +QRectF (0x7f5937e38380) 0 + +Class QSharedData + size=4 align=4 + base size=4 base align=4 +QSharedData (0x7f5937ce3150) 0 + +Vtable for QtSharedPointer::ExternalRefCountData +QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN15QtSharedPointer20ExternalRefCountDataE) +16 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +24 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +32 QtSharedPointer::ExternalRefCountData::destroy + +Class QtSharedPointer::ExternalRefCountData + size=16 align=8 + base size=16 base align=8 +QtSharedPointer::ExternalRefCountData (0x7f5937d13af0) 0 + vptr=((& QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE) + 16u) + +Class QLinkedListData + size=32 align=8 + base size=32 base align=8 +QLinkedListData (0x7f5937d9bc40) 0 + +Class QBitArray + size=8 align=8 + base size=8 base align=8 +QBitArray (0x7f5937c66b60) 0 + +Class QBitRef + size=16 align=8 + base size=12 base align=8 +QBitRef (0x7f5937ada930) 0 + +Class QByteArrayMatcher + size=1040 align=8 + base size=1040 base align=8 +QByteArrayMatcher (0x7f5937af3310) 0 + +Class QCryptographicHash + size=8 align=8 + base size=8 base align=8 +QCryptographicHash (0x7f5937b05a10) 0 + +Class QTextBoundaryFinder + size=48 align=8 + base size=48 base align=8 +QTextBoundaryFinder (0x7f5937b33460) 0 + +Class QDate + size=4 align=4 + base size=4 base align=4 +QDate (0x7f5937b497e0) 0 + +Class QTime + size=4 align=4 + base size=4 base align=4 +QTime (0x7f5937b71770) 0 + +Class QDateTime + size=8 align=8 + base size=8 base align=8 +QDateTime (0x7f5937b8fd20) 0 + +Vtable for QTimeLine +QTimeLine::_ZTV9QTimeLine: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTimeLine) +16 QTimeLine::metaObject +24 QTimeLine::qt_metacast +32 QTimeLine::qt_metacall +40 QTimeLine::~QTimeLine +48 QTimeLine::~QTimeLine +56 QObject::event +64 QObject::eventFilter +72 QTimeLine::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTimeLine::valueForTime + +Class QTimeLine + size=16 align=8 + base size=16 base align=8 +QTimeLine (0x7f5937bc21c0) 0 + vptr=((& QTimeLine::_ZTV9QTimeLine) + 16u) + QObject (0x7f5937bc2230) 0 + primary-for QTimeLine (0x7f5937bc21c0) + +Vtable for QRunnable +QRunnable::_ZTV9QRunnable: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QRunnable) +16 __cxa_pure_virtual +24 QRunnable::~QRunnable +32 QRunnable::~QRunnable + +Class QRunnable + size=16 align=8 + base size=12 base align=8 +QRunnable (0x7f59379ea070) 0 + vptr=((& QRunnable::_ZTV9QRunnable) + 16u) + +Class QMutex + size=8 align=8 + base size=8 base align=8 +QMutex (0x7f59379f8700) 0 + +Class QMutexLocker + size=8 align=8 + base size=8 base align=8 +QMutexLocker (0x7f5937a052a0) 0 + +Vtable for QtConcurrent::Exception +QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent9ExceptionE) +16 QtConcurrent::Exception::~Exception +24 QtConcurrent::Exception::~Exception +32 std::exception::what +40 QtConcurrent::Exception::raise +48 QtConcurrent::Exception::clone + +Class QtConcurrent::Exception + size=8 align=8 + base size=8 base align=8 +QtConcurrent::Exception (0x7f5937a1c5b0) 0 nearly-empty + vptr=((& QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE) + 16u) + std::exception (0x7f5937a1c620) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7f5937a1c5b0) + +Vtable for QtConcurrent::UnhandledException +QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent18UnhandledExceptionE) +16 QtConcurrent::UnhandledException::~UnhandledException +24 QtConcurrent::UnhandledException::~UnhandledException +32 std::exception::what +40 QtConcurrent::UnhandledException::raise +48 QtConcurrent::UnhandledException::clone + +Class QtConcurrent::UnhandledException + size=8 align=8 + base size=8 base align=8 +QtConcurrent::UnhandledException (0x7f5937a1c850) 0 nearly-empty + vptr=((& QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE) + 16u) + QtConcurrent::Exception (0x7f5937a1c8c0) 0 nearly-empty + primary-for QtConcurrent::UnhandledException (0x7f5937a1c850) + std::exception (0x7f5937a1c930) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7f5937a1c8c0) + +Class QtConcurrent::internal::ExceptionHolder + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionHolder (0x7f5937a1cb60) 0 + +Class QtConcurrent::internal::ExceptionStore + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionStore (0x7f5937a1cee0) 0 + +Class QtConcurrent::ResultItem + size=16 align=8 + base size=16 base align=8 +QtConcurrent::ResultItem (0x7f5937a1cf50) 0 + +Class QtConcurrent::ResultIteratorBase + size=16 align=8 + base size=12 base align=8 +QtConcurrent::ResultIteratorBase (0x7f5937a33e70) 0 + +Vtable for QtConcurrent::ResultStoreBase +QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent15ResultStoreBaseE) +16 QtConcurrent::ResultStoreBase::~ResultStoreBase +24 QtConcurrent::ResultStoreBase::~ResultStoreBase + +Class QtConcurrent::ResultStoreBase + size=48 align=8 + base size=44 base align=8 +QtConcurrent::ResultStoreBase (0x7f5937a37a10) 0 + vptr=((& QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE) + 16u) + +Vtable for QFutureInterfaceBase +QFutureInterfaceBase::_ZTV20QFutureInterfaceBase: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QFutureInterfaceBase) +16 QFutureInterfaceBase::~QFutureInterfaceBase +24 QFutureInterfaceBase::~QFutureInterfaceBase + +Class QFutureInterfaceBase + size=16 align=8 + base size=16 base align=8 +QFutureInterfaceBase (0x7f5937a77e70) 0 + vptr=((& QFutureInterfaceBase::_ZTV20QFutureInterfaceBase) + 16u) + +Vtable for QThread +QThread::_ZTV7QThread: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QThread) +16 QThread::metaObject +24 QThread::qt_metacast +32 QThread::qt_metacall +40 QThread::~QThread +48 QThread::~QThread +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QThread::run + +Class QThread + size=16 align=8 + base size=16 base align=8 +QThread (0x7f593795ce00) 0 + vptr=((& QThread::_ZTV7QThread) + 16u) + QObject (0x7f593795ce70) 0 + primary-for QThread (0x7f593795ce00) + +Vtable for QThreadPool +QThreadPool::_ZTV11QThreadPool: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QThreadPool) +16 QThreadPool::metaObject +24 QThreadPool::qt_metacast +32 QThreadPool::qt_metacall +40 QThreadPool::~QThreadPool +48 QThreadPool::~QThreadPool +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QThreadPool + size=16 align=8 + base size=16 base align=8 +QThreadPool (0x7f593798fcb0) 0 + vptr=((& QThreadPool::_ZTV11QThreadPool) + 16u) + QObject (0x7f593798fd20) 0 + primary-for QThreadPool (0x7f593798fcb0) + +Class QWaitCondition + size=8 align=8 + base size=8 base align=8 +QWaitCondition (0x7f59379a7540) 0 + +Class QtConcurrent::ThreadEngineSemaphore + size=24 align=8 + base size=24 base align=8 +QtConcurrent::ThreadEngineSemaphore (0x7f59379a7a80) 0 + +Vtable for QtConcurrent::ThreadEngineBase +QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent16ThreadEngineBaseE) +16 QtConcurrent::ThreadEngineBase::run +24 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +32 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +40 QtConcurrent::ThreadEngineBase::start +48 QtConcurrent::ThreadEngineBase::finish +56 QtConcurrent::ThreadEngineBase::threadFunction +64 QtConcurrent::ThreadEngineBase::shouldStartThread +72 QtConcurrent::ThreadEngineBase::shouldThrottleThread +80 __cxa_pure_virtual + +Class QtConcurrent::ThreadEngineBase + size=64 align=8 + base size=64 base align=8 +QtConcurrent::ThreadEngineBase (0x7f59379c8460) 0 + vptr=((& QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE) + 16u) + QRunnable (0x7f59379c84d0) 0 + primary-for QtConcurrent::ThreadEngineBase (0x7f59379c8460) + +VTT for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTTN12QtConcurrent12ThreadEngineIvEE: 2u entries +0 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 24u) +8 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 136u) + +Class std::input_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::input_iterator_tag (0x7f5937809850) 0 empty + +Class std::output_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::output_iterator_tag (0x7f59378098c0) 0 empty + +Class std::forward_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::forward_iterator_tag (0x7f5937809930) 0 empty + std::input_iterator_tag (0x7f59378099a0) 0 empty + +Class std::bidirectional_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::bidirectional_iterator_tag (0x7f5937809a10) 0 empty + std::forward_iterator_tag (0x7f5937809a80) 0 empty + std::input_iterator_tag (0x7f5937809af0) 0 empty + +Class std::random_access_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::random_access_iterator_tag (0x7f5937809b60) 0 empty + std::bidirectional_iterator_tag (0x7f5937809bd0) 0 empty + std::forward_iterator_tag (0x7f5937809c40) 0 empty + std::input_iterator_tag (0x7f5937809cb0) 0 empty + +Class std::__true_type + size=1 align=1 + base size=0 base align=1 +std::__true_type (0x7f593781a2a0) 0 empty + +Class std::__false_type + size=1 align=1 + base size=0 base align=1 +std::__false_type (0x7f593781a310) 0 empty + +Class lconv + size=96 align=8 + base size=96 base align=8 +lconv (0x7f59375f6620) 0 + +Class sched_param + size=4 align=4 + base size=4 base align=4 +sched_param (0x7f59375f6a80) 0 + +Class __sched_param + size=4 align=4 + base size=4 base align=4 +__sched_param (0x7f59375f6af0) 0 + +Class tm + size=56 align=8 + base size=56 base align=8 +tm (0x7f59375f6bd0) 0 + +Class itimerspec + size=32 align=8 + base size=32 base align=8 +itimerspec (0x7f59375f6cb0) 0 + +Class _pthread_cleanup_buffer + size=32 align=8 + base size=32 base align=8 +_pthread_cleanup_buffer (0x7f59375f6d20) 0 + +Class __pthread_cleanup_frame + size=24 align=8 + base size=24 base align=8 +__pthread_cleanup_frame (0x7f59375f6e70) 0 + +Class __pthread_cleanup_class + size=24 align=8 + base size=24 base align=8 +__pthread_cleanup_class (0x7f59375f6ee0) 0 + +Vtable for __cxxabiv1::__forced_unwind +__cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN10__cxxabiv115__forced_unwindE) +16 __cxxabiv1::__forced_unwind::~__forced_unwind +24 __cxxabiv1::__forced_unwind::~__forced_unwind +32 __cxa_pure_virtual + +Class __cxxabiv1::__forced_unwind + size=8 align=8 + base size=8 base align=8 +__cxxabiv1::__forced_unwind (0x7f593750ca80) 0 nearly-empty + vptr=((& __cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE) + 16u) + +Class std::locale + size=8 align=8 + base size=8 base align=8 +std::locale (0x7f59373bd5b0) 0 + +Vtable for std::locale::facet +std::locale::facet::_ZTVNSt6locale5facetE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTINSt6locale5facetE) +16 std::locale::facet::~facet +24 std::locale::facet::~facet + +Class std::locale::facet + size=16 align=8 + base size=12 base align=8 +std::locale::facet (0x7f5937261cb0) 0 + vptr=((& std::locale::facet::_ZTVNSt6locale5facetE) + 16u) + +Class std::locale::id + size=8 align=8 + base size=8 base align=8 +std::locale::id (0x7f59372742a0) 0 + +Class std::locale::_Impl + size=40 align=8 + base size=40 base align=8 +std::locale::_Impl (0x7f59372748c0) 0 + +Vtable for std::ios_base::failure +std::ios_base::failure::_ZTVNSt8ios_base7failureE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTINSt8ios_base7failureE) +16 std::ios_base::failure::~failure +24 std::ios_base::failure::~failure +32 std::ios_base::failure::what + +Class std::ios_base::failure + size=16 align=8 + base size=16 base align=8 +std::ios_base::failure (0x7f5937103070) 0 + vptr=((& std::ios_base::failure::_ZTVNSt8ios_base7failureE) + 16u) + std::exception (0x7f59371030e0) 0 nearly-empty + primary-for std::ios_base::failure (0x7f5937103070) + +Class std::ios_base::_Callback_list + size=24 align=8 + base size=24 base align=8 +std::ios_base::_Callback_list (0x7f5937110310) 0 + +Class std::ios_base::_Words + size=16 align=8 + base size=16 base align=8 +std::ios_base::_Words (0x7f5937110d90) 0 + +Class std::ios_base::Init + size=1 align=1 + base size=0 base align=1 +std::ios_base::Init (0x7f59371194d0) 0 empty + +Vtable for std::ios_base +std::ios_base::_ZTVSt8ios_base: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt8ios_base) +16 std::ios_base::~ios_base +24 std::ios_base::~ios_base + +Class std::ios_base + size=216 align=8 + base size=216 base align=8 +std::ios_base (0x7f5937103000) 0 + vptr=((& std::ios_base::_ZTVSt8ios_base) + 16u) + +Class std::ctype_base + size=1 align=1 + base size=0 base align=1 +std::ctype_base (0x7f5937190930) 0 empty + +Class std::__num_base + size=1 align=1 + base size=0 base align=1 +std::__num_base (0x7f59370b41c0) 0 empty + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSo: 2u entries +0 ((& std::basic_ostream >::_ZTVSo) + 24u) +8 ((& std::basic_ostream >::_ZTVSo) + 64u) + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSt13basic_ostreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 24u) +8 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 64u) + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSi: 2u entries +0 ((& std::basic_istream >::_ZTVSi) + 24u) +8 ((& std::basic_istream >::_ZTVSi) + 64u) + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSt13basic_istreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 24u) +8 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 64u) + +Construction vtable for std::basic_istream > (0x7f5936be0310 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd0_Si: 10u entries +0 24u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISi) +24 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +32 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +40 -24u +48 (int (*)(...))-0x00000000000000018 +56 (int (*)(...))(& _ZTISi) +64 std::basic_istream >::_ZTv0_n24_NSiD1Ev +72 std::basic_istream >::_ZTv0_n24_NSiD0Ev + +Construction vtable for std::basic_ostream > (0x7f5936be0460 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd16_So: 10u entries +0 8u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISo) +24 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +32 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +40 -8u +48 (int (*)(...))-0x00000000000000008 +56 (int (*)(...))(& _ZTISo) +64 std::basic_ostream >::_ZTv0_n24_NSoD1Ev +72 std::basic_ostream >::_ZTv0_n24_NSoD0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSd: 7u entries +0 ((& std::basic_iostream >::_ZTVSd) + 24u) +8 ((& std::basic_iostream >::_ZTCSd0_Si) + 24u) +16 ((& std::basic_iostream >::_ZTCSd0_Si) + 64u) +24 ((& std::basic_iostream >::_ZTCSd16_So) + 24u) +32 ((& std::basic_iostream >::_ZTCSd16_So) + 64u) +40 ((& std::basic_iostream >::_ZTVSd) + 104u) +48 ((& std::basic_iostream >::_ZTVSd) + 64u) + +Construction vtable for std::basic_istream > (0x7f5936be0620 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E: 10u entries +0 24u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +24 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +32 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +40 -24u +48 (int (*)(...))-0x00000000000000018 +56 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +64 std::basic_istream >::_ZTv0_n24_NSt13basic_istreamIwSt11char_traitsIwEED1Ev +72 std::basic_istream >::_ZTv0_n24_NSt13basic_istreamIwSt11char_traitsIwEED0Ev + +Construction vtable for std::basic_ostream > (0x7f5936be0770 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE16_St13basic_ostreamIwS1_E: 10u entries +0 8u +8 (int (*)(...))0 +16 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +24 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +32 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +40 -8u +48 (int (*)(...))-0x00000000000000008 +56 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +64 std::basic_ostream >::_ZTv0_n24_NSt13basic_ostreamIwSt11char_traitsIwEED1Ev +72 std::basic_ostream >::_ZTv0_n24_NSt13basic_ostreamIwSt11char_traitsIwEED0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSt14basic_iostreamIwSt11char_traitsIwEE: 7u entries +0 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 24u) +8 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 24u) +16 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 64u) +24 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE16_St13basic_ostreamIwS1_E) + 24u) +32 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE16_St13basic_ostreamIwS1_E) + 64u) +40 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 104u) +48 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 64u) + +Class QtConcurrent::BlockSizeManager + size=96 align=8 + base size=92 base align=8 +QtConcurrent::BlockSizeManager (0x7f5936c4b230) 0 + +Vtable for QFutureWatcherBase +QFutureWatcherBase::_ZTV18QFutureWatcherBase: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFutureWatcherBase) +16 QFutureWatcherBase::metaObject +24 QFutureWatcherBase::qt_metacast +32 QFutureWatcherBase::qt_metacall +40 QFutureWatcherBase::~QFutureWatcherBase +48 QFutureWatcherBase::~QFutureWatcherBase +56 QFutureWatcherBase::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QFutureWatcherBase::connectNotify +104 QFutureWatcherBase::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QFutureWatcherBase + size=16 align=8 + base size=16 base align=8 +QFutureWatcherBase (0x7f5936816bd0) 0 + vptr=((& QFutureWatcherBase::_ZTV18QFutureWatcherBase) + 16u) + QObject (0x7f5936816c40) 0 + primary-for QFutureWatcherBase (0x7f5936816bd0) + +Vtable for QFactoryInterface +QFactoryInterface::_ZTV17QFactoryInterface: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QFactoryInterface) +16 QFactoryInterface::~QFactoryInterface +24 QFactoryInterface::~QFactoryInterface +32 __cxa_pure_virtual + +Class QFactoryInterface + size=8 align=8 + base size=8 base align=8 +QFactoryInterface (0x7f593672de00) 0 nearly-empty + vptr=((& QFactoryInterface::_ZTV17QFactoryInterface) + 16u) + +Vtable for QTextCodecFactoryInterface +QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QTextCodecFactoryInterface) +16 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +24 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QTextCodecFactoryInterface + size=8 align=8 + base size=8 base align=8 +QTextCodecFactoryInterface (0x7f5936750ee0) 0 nearly-empty + vptr=((& QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface) + 16u) + QFactoryInterface (0x7f5936750f50) 0 nearly-empty + primary-for QTextCodecFactoryInterface (0x7f5936750ee0) + +Vtable for QTextCodecPlugin +QTextCodecPlugin::_ZTV16QTextCodecPlugin: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QTextCodecPlugin) +16 QTextCodecPlugin::metaObject +24 QTextCodecPlugin::qt_metacast +32 QTextCodecPlugin::qt_metacall +40 QTextCodecPlugin::~QTextCodecPlugin +48 QTextCodecPlugin::~QTextCodecPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 QTextCodecPlugin::keys +160 QTextCodecPlugin::create +168 (int (*)(...))-0x00000000000000010 +176 (int (*)(...))(& _ZTI16QTextCodecPlugin) +184 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD1Ev +192 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD0Ev +200 QTextCodecPlugin::_ZThn16_NK16QTextCodecPlugin4keysEv +208 QTextCodecPlugin::_ZThn16_N16QTextCodecPlugin6createERK7QString + +Class QTextCodecPlugin + size=24 align=8 + base size=24 base align=8 +QTextCodecPlugin (0x7f5936753e00) 0 + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 16u) + QObject (0x7f593675c7e0) 0 + primary-for QTextCodecPlugin (0x7f5936753e00) + QTextCodecFactoryInterface (0x7f593675c850) 16 nearly-empty + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 184u) + QFactoryInterface (0x7f593675c8c0) 16 nearly-empty + primary-for QTextCodecFactoryInterface (0x7f593675c850) + +Class QLibraryInfo + size=1 align=1 + base size=0 base align=1 +QLibraryInfo (0x7f5936772700) 0 empty + +Vtable for QTranslator +QTranslator::_ZTV11QTranslator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTranslator) +16 QTranslator::metaObject +24 QTranslator::qt_metacast +32 QTranslator::qt_metacall +40 QTranslator::~QTranslator +48 QTranslator::~QTranslator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTranslator::translate +120 QTranslator::isEmpty + +Class QTranslator + size=16 align=8 + base size=16 base align=8 +QTranslator (0x7f59367b6000) 0 + vptr=((& QTranslator::_ZTV11QTranslator) + 16u) + QObject (0x7f59367b6070) 0 + primary-for QTranslator (0x7f59367b6000) + +Class __exception + size=40 align=8 + base size=40 base align=8 +__exception (0x7f59365c6f50) 0 + +Vtable for QMimeData +QMimeData::_ZTV9QMimeData: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QMimeData) +16 QMimeData::metaObject +24 QMimeData::qt_metacast +32 QMimeData::qt_metacall +40 QMimeData::~QMimeData +48 QMimeData::~QMimeData +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMimeData::hasFormat +120 QMimeData::formats +128 QMimeData::retrieveData + +Class QMimeData + size=16 align=8 + base size=16 base align=8 +QMimeData (0x7f5936633150) 0 + vptr=((& QMimeData::_ZTV9QMimeData) + 16u) + QObject (0x7f59366331c0) 0 + primary-for QMimeData (0x7f5936633150) + +Vtable for QEventLoop +QEventLoop::_ZTV10QEventLoop: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QEventLoop) +16 QEventLoop::metaObject +24 QEventLoop::qt_metacast +32 QEventLoop::qt_metacall +40 QEventLoop::~QEventLoop +48 QEventLoop::~QEventLoop +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QEventLoop + size=16 align=8 + base size=16 base align=8 +QEventLoop (0x7f593664b9a0) 0 + vptr=((& QEventLoop::_ZTV10QEventLoop) + 16u) + QObject (0x7f593664ba10) 0 + primary-for QEventLoop (0x7f593664b9a0) + +Vtable for QEvent +QEvent::_ZTV6QEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QEvent) +16 QEvent::~QEvent +24 QEvent::~QEvent + +Class QEvent + size=24 align=8 + base size=20 base align=8 +QEvent (0x7f593668d310) 0 + vptr=((& QEvent::_ZTV6QEvent) + 16u) + +Vtable for QTimerEvent +QTimerEvent::_ZTV11QTimerEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTimerEvent) +16 QTimerEvent::~QTimerEvent +24 QTimerEvent::~QTimerEvent + +Class QTimerEvent + size=24 align=8 + base size=24 base align=8 +QTimerEvent (0x7f59366a5ee0) 0 + vptr=((& QTimerEvent::_ZTV11QTimerEvent) + 16u) + QEvent (0x7f59366a5f50) 0 + primary-for QTimerEvent (0x7f59366a5ee0) + +Vtable for QChildEvent +QChildEvent::_ZTV11QChildEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QChildEvent) +16 QChildEvent::~QChildEvent +24 QChildEvent::~QChildEvent + +Class QChildEvent + size=32 align=8 + base size=32 base align=8 +QChildEvent (0x7f59366a8380) 0 + vptr=((& QChildEvent::_ZTV11QChildEvent) + 16u) + QEvent (0x7f59366a83f0) 0 + primary-for QChildEvent (0x7f59366a8380) + +Vtable for QCustomEvent +QCustomEvent::_ZTV12QCustomEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QCustomEvent) +16 QCustomEvent::~QCustomEvent +24 QCustomEvent::~QCustomEvent + +Class QCustomEvent + size=24 align=8 + base size=20 base align=8 +QCustomEvent (0x7f59366ba620) 0 + vptr=((& QCustomEvent::_ZTV12QCustomEvent) + 16u) + QEvent (0x7f59366ba690) 0 + primary-for QCustomEvent (0x7f59366ba620) + +Vtable for QDynamicPropertyChangeEvent +QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QDynamicPropertyChangeEvent) +16 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent +24 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent + +Class QDynamicPropertyChangeEvent + size=32 align=8 + base size=32 base align=8 +QDynamicPropertyChangeEvent (0x7f59366bae00) 0 + vptr=((& QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent) + 16u) + QEvent (0x7f59366bae70) 0 + primary-for QDynamicPropertyChangeEvent (0x7f59366bae00) + +Vtable for QCoreApplication +QCoreApplication::_ZTV16QCoreApplication: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QCoreApplication) +16 QCoreApplication::metaObject +24 QCoreApplication::qt_metacast +32 QCoreApplication::qt_metacall +40 QCoreApplication::~QCoreApplication +48 QCoreApplication::~QCoreApplication +56 QCoreApplication::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCoreApplication::notify +120 QCoreApplication::compressEvent + +Class QCoreApplication + size=16 align=8 + base size=16 base align=8 +QCoreApplication (0x7f59364ca230) 0 + vptr=((& QCoreApplication::_ZTV16QCoreApplication) + 16u) + QObject (0x7f59364ca2a0) 0 + primary-for QCoreApplication (0x7f59364ca230) + +Vtable for QSharedMemory +QSharedMemory::_ZTV13QSharedMemory: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSharedMemory) +16 QSharedMemory::metaObject +24 QSharedMemory::qt_metacast +32 QSharedMemory::qt_metacall +40 QSharedMemory::~QSharedMemory +48 QSharedMemory::~QSharedMemory +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSharedMemory + size=16 align=8 + base size=16 base align=8 +QSharedMemory (0x7f59364f5a80) 0 + vptr=((& QSharedMemory::_ZTV13QSharedMemory) + 16u) + QObject (0x7f59364f5af0) 0 + primary-for QSharedMemory (0x7f59364f5a80) + +Class QModelIndex + size=24 align=8 + base size=24 base align=8 +QModelIndex (0x7f5936515850) 0 + +Class QPersistentModelIndex + size=8 align=8 + base size=8 base align=8 +QPersistentModelIndex (0x7f593653e310) 0 + +Vtable for QAbstractItemModel +QAbstractItemModel::_ZTV18QAbstractItemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractItemModel) +16 QAbstractItemModel::metaObject +24 QAbstractItemModel::qt_metacast +32 QAbstractItemModel::qt_metacall +40 QAbstractItemModel::~QAbstractItemModel +48 QAbstractItemModel::~QAbstractItemModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractItemModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractItemModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractItemModel + size=16 align=8 + base size=16 base align=8 +QAbstractItemModel (0x7f593654c5b0) 0 + vptr=((& QAbstractItemModel::_ZTV18QAbstractItemModel) + 16u) + QObject (0x7f593654c620) 0 + primary-for QAbstractItemModel (0x7f593654c5b0) + +Vtable for QAbstractTableModel +QAbstractTableModel::_ZTV19QAbstractTableModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractTableModel) +16 QAbstractTableModel::metaObject +24 QAbstractTableModel::qt_metacast +32 QAbstractTableModel::qt_metacall +40 QAbstractTableModel::~QAbstractTableModel +48 QAbstractTableModel::~QAbstractTableModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractTableModel::index +120 QAbstractTableModel::parent +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractTableModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractTableModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractTableModel + size=16 align=8 + base size=16 base align=8 +QAbstractTableModel (0x7f593659c930) 0 + vptr=((& QAbstractTableModel::_ZTV19QAbstractTableModel) + 16u) + QAbstractItemModel (0x7f593659c9a0) 0 + primary-for QAbstractTableModel (0x7f593659c930) + QObject (0x7f593659ca10) 0 + primary-for QAbstractItemModel (0x7f593659c9a0) + +Vtable for QAbstractListModel +QAbstractListModel::_ZTV18QAbstractListModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractListModel) +16 QAbstractListModel::metaObject +24 QAbstractListModel::qt_metacast +32 QAbstractListModel::qt_metacall +40 QAbstractListModel::~QAbstractListModel +48 QAbstractListModel::~QAbstractListModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractListModel::index +120 QAbstractListModel::parent +128 __cxa_pure_virtual +136 QAbstractListModel::columnCount +144 QAbstractListModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractListModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractListModel + size=16 align=8 + base size=16 base align=8 +QAbstractListModel (0x7f59365aaee0) 0 + vptr=((& QAbstractListModel::_ZTV18QAbstractListModel) + 16u) + QAbstractItemModel (0x7f59365aaf50) 0 + primary-for QAbstractListModel (0x7f59365aaee0) + QObject (0x7f59365aa230) 0 + primary-for QAbstractItemModel (0x7f59365aaf50) + +Vtable for QSignalMapper +QSignalMapper::_ZTV13QSignalMapper: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSignalMapper) +16 QSignalMapper::metaObject +24 QSignalMapper::qt_metacast +32 QSignalMapper::qt_metacall +40 QSignalMapper::~QSignalMapper +48 QSignalMapper::~QSignalMapper +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSignalMapper + size=16 align=8 + base size=16 base align=8 +QSignalMapper (0x7f59363eb000) 0 + vptr=((& QSignalMapper::_ZTV13QSignalMapper) + 16u) + QObject (0x7f59363eb070) 0 + primary-for QSignalMapper (0x7f59363eb000) + +Vtable for QObjectCleanupHandler +QObjectCleanupHandler::_ZTV21QObjectCleanupHandler: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QObjectCleanupHandler) +16 QObjectCleanupHandler::metaObject +24 QObjectCleanupHandler::qt_metacast +32 QObjectCleanupHandler::qt_metacall +40 QObjectCleanupHandler::~QObjectCleanupHandler +48 QObjectCleanupHandler::~QObjectCleanupHandler +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObjectCleanupHandler + size=24 align=8 + base size=24 base align=8 +QObjectCleanupHandler (0x7f59364033f0) 0 + vptr=((& QObjectCleanupHandler::_ZTV21QObjectCleanupHandler) + 16u) + QObject (0x7f5936403460) 0 + primary-for QObjectCleanupHandler (0x7f59364033f0) + +Class QBasicTimer + size=4 align=4 + base size=4 base align=4 +QBasicTimer (0x7f5936412540) 0 + +Vtable for QSocketNotifier +QSocketNotifier::_ZTV15QSocketNotifier: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSocketNotifier) +16 QSocketNotifier::metaObject +24 QSocketNotifier::qt_metacast +32 QSocketNotifier::qt_metacall +40 QSocketNotifier::~QSocketNotifier +48 QSocketNotifier::~QSocketNotifier +56 QSocketNotifier::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSocketNotifier + size=32 align=8 + base size=25 base align=8 +QSocketNotifier (0x7f593641c930) 0 + vptr=((& QSocketNotifier::_ZTV15QSocketNotifier) + 16u) + QObject (0x7f593641c9a0) 0 + primary-for QSocketNotifier (0x7f593641c930) + +Vtable for QTimer +QTimer::_ZTV6QTimer: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QTimer) +16 QTimer::metaObject +24 QTimer::qt_metacast +32 QTimer::qt_metacall +40 QTimer::~QTimer +48 QTimer::~QTimer +56 QObject::event +64 QObject::eventFilter +72 QTimer::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTimer + size=32 align=8 + base size=29 base align=8 +QTimer (0x7f593643acb0) 0 + vptr=((& QTimer::_ZTV6QTimer) + 16u) + QObject (0x7f593643ad20) 0 + primary-for QTimer (0x7f593643acb0) + +Vtable for QAbstractEventDispatcher +QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QAbstractEventDispatcher) +16 QAbstractEventDispatcher::metaObject +24 QAbstractEventDispatcher::qt_metacast +32 QAbstractEventDispatcher::qt_metacall +40 QAbstractEventDispatcher::~QAbstractEventDispatcher +48 QAbstractEventDispatcher::~QAbstractEventDispatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 QAbstractEventDispatcher::startingUp +208 QAbstractEventDispatcher::closingDown + +Class QAbstractEventDispatcher + size=16 align=8 + base size=16 base align=8 +QAbstractEventDispatcher (0x7f593645e2a0) 0 + vptr=((& QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher) + 16u) + QObject (0x7f593645e310) 0 + primary-for QAbstractEventDispatcher (0x7f593645e2a0) + +Class QMetaMethod + size=16 align=8 + base size=12 base align=8 +QMetaMethod (0x7f5936479150) 0 + +Class QMetaEnum + size=16 align=8 + base size=12 base align=8 +QMetaEnum (0x7f59364955b0) 0 + +Class QMetaProperty + size=32 align=8 + base size=32 base align=8 +QMetaProperty (0x7f59364a0310) 0 + +Class QMetaClassInfo + size=16 align=8 + base size=12 base align=8 +QMetaClassInfo (0x7f59364a09a0) 0 + +Class QSystemSemaphore + size=8 align=8 + base size=8 base align=8 +QSystemSemaphore (0x7f59364b24d0) 0 + +Vtable for QLibrary +QLibrary::_ZTV8QLibrary: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QLibrary) +16 QLibrary::metaObject +24 QLibrary::qt_metacast +32 QLibrary::qt_metacall +40 QLibrary::~QLibrary +48 QLibrary::~QLibrary +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QLibrary + size=32 align=8 + base size=25 base align=8 +QLibrary (0x7f59364b2e00) 0 + vptr=((& QLibrary::_ZTV8QLibrary) + 16u) + QObject (0x7f59364b2e70) 0 + primary-for QLibrary (0x7f59364b2e00) + +Vtable for QPluginLoader +QPluginLoader::_ZTV13QPluginLoader: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QPluginLoader) +16 QPluginLoader::metaObject +24 QPluginLoader::qt_metacast +32 QPluginLoader::qt_metacall +40 QPluginLoader::~QPluginLoader +48 QPluginLoader::~QPluginLoader +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QPluginLoader + size=32 align=8 + base size=25 base align=8 +QPluginLoader (0x7f59362f98c0) 0 + vptr=((& QPluginLoader::_ZTV13QPluginLoader) + 16u) + QObject (0x7f59362f9930) 0 + primary-for QPluginLoader (0x7f59362f98c0) + +Class QUuid + size=16 align=4 + base size=16 base align=4 +QUuid (0x7f593631d070) 0 + +Class QSemaphore + size=8 align=8 + base size=8 base align=8 +QSemaphore (0x7f593633c9a0) 0 + +Class QThreadStorageData + size=4 align=4 + base size=4 base align=4 +QThreadStorageData (0x7f593633cee0) 0 + +Class QReadWriteLock + size=8 align=8 + base size=8 base align=8 +QReadWriteLock (0x7f593634e690) 0 + +Class QReadLocker + size=8 align=8 + base size=8 base align=8 +QReadLocker (0x7f593634ed20) 0 + +Class QWriteLocker + size=8 align=8 + base size=8 base align=8 +QWriteLocker (0x7f593637b0e0) 0 + +Class QSslCertificate + size=8 align=8 + base size=8 base align=8 +QSslCertificate (0x7f593638d460) 0 + +Class QSslError + size=8 align=8 + base size=8 base align=8 +QSslError (0x7f59363a0ee0) 0 + +Class QSslCipher + size=8 align=8 + base size=8 base align=8 +QSslCipher (0x7f59363adcb0) 0 + +Vtable for QAbstractSocket +QAbstractSocket::_ZTV15QAbstractSocket: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QAbstractSocket) +16 QAbstractSocket::metaObject +24 QAbstractSocket::qt_metacast +32 QAbstractSocket::qt_metacall +40 QAbstractSocket::~QAbstractSocket +48 QAbstractSocket::~QAbstractSocket +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractSocket::isSequential +120 QIODevice::open +128 QAbstractSocket::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QAbstractSocket::atEnd +168 QIODevice::reset +176 QAbstractSocket::bytesAvailable +184 QAbstractSocket::bytesToWrite +192 QAbstractSocket::canReadLine +200 QAbstractSocket::waitForReadyRead +208 QAbstractSocket::waitForBytesWritten +216 QAbstractSocket::readData +224 QAbstractSocket::readLineData +232 QAbstractSocket::writeData + +Class QAbstractSocket + size=16 align=8 + base size=16 base align=8 +QAbstractSocket (0x7f59363ba620) 0 + vptr=((& QAbstractSocket::_ZTV15QAbstractSocket) + 16u) + QIODevice (0x7f59363ba690) 0 + primary-for QAbstractSocket (0x7f59363ba620) + QObject (0x7f59363ba700) 0 + primary-for QIODevice (0x7f59363ba690) + +Vtable for QTcpSocket +QTcpSocket::_ZTV10QTcpSocket: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTcpSocket) +16 QTcpSocket::metaObject +24 QTcpSocket::qt_metacast +32 QTcpSocket::qt_metacall +40 QTcpSocket::~QTcpSocket +48 QTcpSocket::~QTcpSocket +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractSocket::isSequential +120 QIODevice::open +128 QAbstractSocket::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QAbstractSocket::atEnd +168 QIODevice::reset +176 QAbstractSocket::bytesAvailable +184 QAbstractSocket::bytesToWrite +192 QAbstractSocket::canReadLine +200 QAbstractSocket::waitForReadyRead +208 QAbstractSocket::waitForBytesWritten +216 QAbstractSocket::readData +224 QAbstractSocket::readLineData +232 QAbstractSocket::writeData + +Class QTcpSocket + size=16 align=8 + base size=16 base align=8 +QTcpSocket (0x7f59361f3cb0) 0 + vptr=((& QTcpSocket::_ZTV10QTcpSocket) + 16u) + QAbstractSocket (0x7f59361f3d20) 0 + primary-for QTcpSocket (0x7f59361f3cb0) + QIODevice (0x7f59361f3d90) 0 + primary-for QAbstractSocket (0x7f59361f3d20) + QObject (0x7f59361f3e00) 0 + primary-for QIODevice (0x7f59361f3d90) + +Vtable for QSslSocket +QSslSocket::_ZTV10QSslSocket: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QSslSocket) +16 QSslSocket::metaObject +24 QSslSocket::qt_metacast +32 QSslSocket::qt_metacall +40 QSslSocket::~QSslSocket +48 QSslSocket::~QSslSocket +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractSocket::isSequential +120 QIODevice::open +128 QSslSocket::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QSslSocket::atEnd +168 QIODevice::reset +176 QSslSocket::bytesAvailable +184 QSslSocket::bytesToWrite +192 QSslSocket::canReadLine +200 QSslSocket::waitForReadyRead +208 QSslSocket::waitForBytesWritten +216 QSslSocket::readData +224 QAbstractSocket::readLineData +232 QSslSocket::writeData + +Class QSslSocket + size=16 align=8 + base size=16 base align=8 +QSslSocket (0x7f593620f770) 0 + vptr=((& QSslSocket::_ZTV10QSslSocket) + 16u) + QTcpSocket (0x7f593620f7e0) 0 + primary-for QSslSocket (0x7f593620f770) + QAbstractSocket (0x7f593620f850) 0 + primary-for QTcpSocket (0x7f593620f7e0) + QIODevice (0x7f593620f8c0) 0 + primary-for QAbstractSocket (0x7f593620f850) + QObject (0x7f593620f930) 0 + primary-for QIODevice (0x7f593620f8c0) + +Class QSslConfiguration + size=8 align=8 + base size=8 base align=8 +QSslConfiguration (0x7f59362454d0) 0 + +Class QSslKey + size=8 align=8 + base size=8 base align=8 +QSslKey (0x7f59362562a0) 0 + +Vtable for QHttpHeader +QHttpHeader::_ZTV11QHttpHeader: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QHttpHeader) +16 QHttpHeader::~QHttpHeader +24 QHttpHeader::~QHttpHeader +32 QHttpHeader::toString +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QHttpHeader::parseLine + +Class QHttpHeader + size=16 align=8 + base size=16 base align=8 +QHttpHeader (0x7f5936256e00) 0 + vptr=((& QHttpHeader::_ZTV11QHttpHeader) + 16u) + +Vtable for QHttpResponseHeader +QHttpResponseHeader::_ZTV19QHttpResponseHeader: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QHttpResponseHeader) +16 QHttpResponseHeader::~QHttpResponseHeader +24 QHttpResponseHeader::~QHttpResponseHeader +32 QHttpResponseHeader::toString +40 QHttpResponseHeader::majorVersion +48 QHttpResponseHeader::minorVersion +56 QHttpResponseHeader::parseLine + +Class QHttpResponseHeader + size=16 align=8 + base size=16 base align=8 +QHttpResponseHeader (0x7f5936270a80) 0 + vptr=((& QHttpResponseHeader::_ZTV19QHttpResponseHeader) + 16u) + QHttpHeader (0x7f5936270af0) 0 + primary-for QHttpResponseHeader (0x7f5936270a80) + +Vtable for QHttpRequestHeader +QHttpRequestHeader::_ZTV18QHttpRequestHeader: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QHttpRequestHeader) +16 QHttpRequestHeader::~QHttpRequestHeader +24 QHttpRequestHeader::~QHttpRequestHeader +32 QHttpRequestHeader::toString +40 QHttpRequestHeader::majorVersion +48 QHttpRequestHeader::minorVersion +56 QHttpRequestHeader::parseLine + +Class QHttpRequestHeader + size=16 align=8 + base size=16 base align=8 +QHttpRequestHeader (0x7f5936281770) 0 + vptr=((& QHttpRequestHeader::_ZTV18QHttpRequestHeader) + 16u) + QHttpHeader (0x7f59362817e0) 0 + primary-for QHttpRequestHeader (0x7f5936281770) + +Vtable for QHttp +QHttp::_ZTV5QHttp: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QHttp) +16 QHttp::metaObject +24 QHttp::qt_metacast +32 QHttp::qt_metacall +40 QHttp::~QHttp +48 QHttp::~QHttp +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QHttp + size=16 align=8 + base size=16 base align=8 +QHttp (0x7f5936295310) 0 + vptr=((& QHttp::_ZTV5QHttp) + 16u) + QObject (0x7f5936295380) 0 + primary-for QHttp (0x7f5936295310) + +Class QNetworkRequest + size=8 align=8 + base size=8 base align=8 +QNetworkRequest (0x7f59362c2540) 0 + +Vtable for QNetworkAccessManager +QNetworkAccessManager::_ZTV21QNetworkAccessManager: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QNetworkAccessManager) +16 QNetworkAccessManager::metaObject +24 QNetworkAccessManager::qt_metacast +32 QNetworkAccessManager::qt_metacall +40 QNetworkAccessManager::~QNetworkAccessManager +48 QNetworkAccessManager::~QNetworkAccessManager +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QNetworkAccessManager::createRequest + +Class QNetworkAccessManager + size=16 align=8 + base size=16 base align=8 +QNetworkAccessManager (0x7f59360dc460) 0 + vptr=((& QNetworkAccessManager::_ZTV21QNetworkAccessManager) + 16u) + QObject (0x7f59360dc4d0) 0 + primary-for QNetworkAccessManager (0x7f59360dc460) + +Class QNetworkCookie + size=8 align=8 + base size=8 base align=8 +QNetworkCookie (0x7f59360fa9a0) 0 + +Vtable for QNetworkCookieJar +QNetworkCookieJar::_ZTV17QNetworkCookieJar: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QNetworkCookieJar) +16 QNetworkCookieJar::metaObject +24 QNetworkCookieJar::qt_metacast +32 QNetworkCookieJar::qt_metacall +40 QNetworkCookieJar::~QNetworkCookieJar +48 QNetworkCookieJar::~QNetworkCookieJar +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QNetworkCookieJar::cookiesForUrl +120 QNetworkCookieJar::setCookiesFromUrl + +Class QNetworkCookieJar + size=16 align=8 + base size=16 base align=8 +QNetworkCookieJar (0x7f59360ffaf0) 0 + vptr=((& QNetworkCookieJar::_ZTV17QNetworkCookieJar) + 16u) + QObject (0x7f59360ffb60) 0 + primary-for QNetworkCookieJar (0x7f59360ffaf0) + +Vtable for QNetworkReply +QNetworkReply::_ZTV13QNetworkReply: 33u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QNetworkReply) +16 QNetworkReply::metaObject +24 QNetworkReply::qt_metacast +32 QNetworkReply::qt_metacall +40 QNetworkReply::~QNetworkReply +48 QNetworkReply::~QNetworkReply +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QNetworkReply::isSequential +120 QIODevice::open +128 QNetworkReply::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QIODevice::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 __cxa_pure_virtual +224 QIODevice::readLineData +232 QNetworkReply::writeData +240 __cxa_pure_virtual +248 QNetworkReply::setReadBufferSize +256 QNetworkReply::ignoreSslErrors + +Class QNetworkReply + size=16 align=8 + base size=16 base align=8 +QNetworkReply (0x7f59361309a0) 0 + vptr=((& QNetworkReply::_ZTV13QNetworkReply) + 16u) + QIODevice (0x7f5936130a10) 0 + primary-for QNetworkReply (0x7f59361309a0) + QObject (0x7f5936130a80) 0 + primary-for QIODevice (0x7f5936130a10) + +Vtable for QUrlInfo +QUrlInfo::_ZTV8QUrlInfo: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QUrlInfo) +16 QUrlInfo::~QUrlInfo +24 QUrlInfo::~QUrlInfo +32 QUrlInfo::setName +40 QUrlInfo::setDir +48 QUrlInfo::setFile +56 QUrlInfo::setSymLink +64 QUrlInfo::setOwner +72 QUrlInfo::setGroup +80 QUrlInfo::setSize +88 QUrlInfo::setWritable +96 QUrlInfo::setReadable +104 QUrlInfo::setPermissions +112 QUrlInfo::setLastModified + +Class QUrlInfo + size=16 align=8 + base size=16 base align=8 +QUrlInfo (0x7f593615a620) 0 + vptr=((& QUrlInfo::_ZTV8QUrlInfo) + 16u) + +Vtable for QFtp +QFtp::_ZTV4QFtp: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI4QFtp) +16 QFtp::metaObject +24 QFtp::qt_metacast +32 QFtp::qt_metacall +40 QFtp::~QFtp +48 QFtp::~QFtp +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QFtp + size=16 align=8 + base size=16 base align=8 +QFtp (0x7f593616b5b0) 0 + vptr=((& QFtp::_ZTV4QFtp) + 16u) + QObject (0x7f593616b620) 0 + primary-for QFtp (0x7f593616b5b0) + +Class QNetworkCacheMetaData + size=8 align=8 + base size=8 base align=8 +QNetworkCacheMetaData (0x7f5936199bd0) 0 + +Vtable for QAbstractNetworkCache +QAbstractNetworkCache::_ZTV21QAbstractNetworkCache: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QAbstractNetworkCache) +16 QAbstractNetworkCache::metaObject +24 QAbstractNetworkCache::qt_metacast +32 QAbstractNetworkCache::qt_metacall +40 QAbstractNetworkCache::~QAbstractNetworkCache +48 QAbstractNetworkCache::~QAbstractNetworkCache +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QAbstractNetworkCache + size=16 align=8 + base size=16 base align=8 +QAbstractNetworkCache (0x7f593619dee0) 0 + vptr=((& QAbstractNetworkCache::_ZTV21QAbstractNetworkCache) + 16u) + QObject (0x7f593619df50) 0 + primary-for QAbstractNetworkCache (0x7f593619dee0) + +Vtable for QNetworkDiskCache +QNetworkDiskCache::_ZTV17QNetworkDiskCache: 23u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QNetworkDiskCache) +16 QNetworkDiskCache::metaObject +24 QNetworkDiskCache::qt_metacast +32 QNetworkDiskCache::qt_metacall +40 QNetworkDiskCache::~QNetworkDiskCache +48 QNetworkDiskCache::~QNetworkDiskCache +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QNetworkDiskCache::metaData +120 QNetworkDiskCache::updateMetaData +128 QNetworkDiskCache::data +136 QNetworkDiskCache::remove +144 QNetworkDiskCache::cacheSize +152 QNetworkDiskCache::prepare +160 QNetworkDiskCache::insert +168 QNetworkDiskCache::clear +176 QNetworkDiskCache::expire + +Class QNetworkDiskCache + size=16 align=8 + base size=16 base align=8 +QNetworkDiskCache (0x7f5935fca850) 0 + vptr=((& QNetworkDiskCache::_ZTV17QNetworkDiskCache) + 16u) + QAbstractNetworkCache (0x7f5935fca8c0) 0 + primary-for QNetworkDiskCache (0x7f5935fca850) + QObject (0x7f5935fca930) 0 + primary-for QAbstractNetworkCache (0x7f5935fca8c0) + +Class QIPv6Address + size=16 align=1 + base size=16 base align=1 +QIPv6Address (0x7f5935fe71c0) 0 + +Class QHostAddress + size=8 align=8 + base size=8 base align=8 +QHostAddress (0x7f5935fe77e0) 0 + +Class QNetworkAddressEntry + size=8 align=8 + base size=8 base align=8 +QNetworkAddressEntry (0x7f593600f770) 0 + +Class QNetworkInterface + size=8 align=8 + base size=8 base align=8 +QNetworkInterface (0x7f5936020000) 0 + +Class QAuthenticator + size=8 align=8 + base size=8 base align=8 +QAuthenticator (0x7f593604ed20) 0 + +Class QHostInfo + size=8 align=8 + base size=8 base align=8 +QHostInfo (0x7f593605d620) 0 + +Class QNetworkProxyQuery + size=8 align=8 + base size=8 base align=8 +QNetworkProxyQuery (0x7f593605de70) 0 + +Class QNetworkProxy + size=8 align=8 + base size=8 base align=8 +QNetworkProxy (0x7f593608a150) 0 + +Vtable for QNetworkProxyFactory +QNetworkProxyFactory::_ZTV20QNetworkProxyFactory: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QNetworkProxyFactory) +16 QNetworkProxyFactory::~QNetworkProxyFactory +24 QNetworkProxyFactory::~QNetworkProxyFactory +32 __cxa_pure_virtual + +Class QNetworkProxyFactory + size=8 align=8 + base size=8 base align=8 +QNetworkProxyFactory (0x7f5935ece5b0) 0 nearly-empty + vptr=((& QNetworkProxyFactory::_ZTV20QNetworkProxyFactory) + 16u) + +Vtable for QLocalServer +QLocalServer::_ZTV12QLocalServer: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QLocalServer) +16 QLocalServer::metaObject +24 QLocalServer::qt_metacast +32 QLocalServer::qt_metacall +40 QLocalServer::~QLocalServer +48 QLocalServer::~QLocalServer +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QLocalServer::hasPendingConnections +120 QLocalServer::nextPendingConnection +128 QLocalServer::incomingConnection + +Class QLocalServer + size=16 align=8 + base size=16 base align=8 +QLocalServer (0x7f5935ece8c0) 0 + vptr=((& QLocalServer::_ZTV12QLocalServer) + 16u) + QObject (0x7f5935ece930) 0 + primary-for QLocalServer (0x7f5935ece8c0) + +Vtable for QLocalSocket +QLocalSocket::_ZTV12QLocalSocket: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QLocalSocket) +16 QLocalSocket::metaObject +24 QLocalSocket::qt_metacast +32 QLocalSocket::qt_metacall +40 QLocalSocket::~QLocalSocket +48 QLocalSocket::~QLocalSocket +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QLocalSocket::isSequential +120 QIODevice::open +128 QLocalSocket::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QIODevice::atEnd +168 QIODevice::reset +176 QLocalSocket::bytesAvailable +184 QLocalSocket::bytesToWrite +192 QLocalSocket::canReadLine +200 QLocalSocket::waitForReadyRead +208 QLocalSocket::waitForBytesWritten +216 QLocalSocket::readData +224 QIODevice::readLineData +232 QLocalSocket::writeData + +Class QLocalSocket + size=16 align=8 + base size=16 base align=8 +QLocalSocket (0x7f5935eef2a0) 0 + vptr=((& QLocalSocket::_ZTV12QLocalSocket) + 16u) + QIODevice (0x7f5935eef310) 0 + primary-for QLocalSocket (0x7f5935eef2a0) + QObject (0x7f5935eef380) 0 + primary-for QIODevice (0x7f5935eef310) + +Vtable for QTcpServer +QTcpServer::_ZTV10QTcpServer: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTcpServer) +16 QTcpServer::metaObject +24 QTcpServer::qt_metacast +32 QTcpServer::qt_metacall +40 QTcpServer::~QTcpServer +48 QTcpServer::~QTcpServer +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTcpServer::hasPendingConnections +120 QTcpServer::nextPendingConnection +128 QTcpServer::incomingConnection + +Class QTcpServer + size=16 align=8 + base size=16 base align=8 +QTcpServer (0x7f5935f12460) 0 + vptr=((& QTcpServer::_ZTV10QTcpServer) + 16u) + QObject (0x7f5935f124d0) 0 + primary-for QTcpServer (0x7f5935f12460) + +Vtable for QUdpSocket +QUdpSocket::_ZTV10QUdpSocket: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QUdpSocket) +16 QUdpSocket::metaObject +24 QUdpSocket::qt_metacast +32 QUdpSocket::qt_metacall +40 QUdpSocket::~QUdpSocket +48 QUdpSocket::~QUdpSocket +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractSocket::isSequential +120 QIODevice::open +128 QAbstractSocket::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QAbstractSocket::atEnd +168 QIODevice::reset +176 QAbstractSocket::bytesAvailable +184 QAbstractSocket::bytesToWrite +192 QAbstractSocket::canReadLine +200 QAbstractSocket::waitForReadyRead +208 QAbstractSocket::waitForBytesWritten +216 QAbstractSocket::readData +224 QAbstractSocket::readLineData +232 QAbstractSocket::writeData + +Class QUdpSocket + size=16 align=8 + base size=16 base align=8 +QUdpSocket (0x7f5935f25f50) 0 + vptr=((& QUdpSocket::_ZTV10QUdpSocket) + 16u) + QAbstractSocket (0x7f5935f2e000) 0 + primary-for QUdpSocket (0x7f5935f25f50) + QIODevice (0x7f5935f2e070) 0 + primary-for QAbstractSocket (0x7f5935f2e000) + QObject (0x7f5935f2e0e0) 0 + primary-for QIODevice (0x7f5935f2e070) + +Class QXmlName + size=8 align=8 + base size=8 base align=8 +QXmlName (0x7f5935f62cb0) 0 + +Class QPatternist::NodeIndexStorage + size=24 align=8 + base size=24 base align=8 +QPatternist::NodeIndexStorage (0x7f5935f8f0e0) 0 + +Class QXmlNodeModelIndex + size=24 align=8 + base size=24 base align=8 +QXmlNodeModelIndex (0x7f5935f8f850) 0 + +Vtable for QAbstractXmlNodeModel +QAbstractXmlNodeModel::_ZTV21QAbstractXmlNodeModel: 24u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QAbstractXmlNodeModel) +16 QAbstractXmlNodeModel::~QAbstractXmlNodeModel +24 QAbstractXmlNodeModel::~QAbstractXmlNodeModel +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 QAbstractXmlNodeModel::iterate +104 QAbstractXmlNodeModel::sequencedTypedValue +112 QAbstractXmlNodeModel::type +120 QAbstractXmlNodeModel::namespaceForPrefix +128 QAbstractXmlNodeModel::isDeepEqual +136 QAbstractXmlNodeModel::sendNamespaces +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 QAbstractXmlNodeModel::copyNodeTo +176 __cxa_pure_virtual +184 __cxa_pure_virtual + +Class QAbstractXmlNodeModel + size=24 align=8 + base size=24 base align=8 +QAbstractXmlNodeModel (0x7f5935df0e70) 0 + vptr=((& QAbstractXmlNodeModel::_ZTV21QAbstractXmlNodeModel) + 16u) + QSharedData (0x7f5935df0ee0) 8 + +Class QXmlItem + size=24 align=8 + base size=24 base align=8 +QXmlItem (0x7f5935e07a80) 0 + +Vtable for QAbstractXmlReceiver +QAbstractXmlReceiver::_ZTV20QAbstractXmlReceiver: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QAbstractXmlReceiver) +16 QAbstractXmlReceiver::~QAbstractXmlReceiver +24 QAbstractXmlReceiver::~QAbstractXmlReceiver +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAbstractXmlReceiver::whitespaceOnly +136 QAbstractXmlReceiver::item + +Class QAbstractXmlReceiver + size=16 align=8 + base size=16 base align=8 +QAbstractXmlReceiver (0x7f5935e16a10) 0 + vptr=((& QAbstractXmlReceiver::_ZTV20QAbstractXmlReceiver) + 16u) + +Vtable for QXmlSerializer +QXmlSerializer::_ZTV14QXmlSerializer: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QXmlSerializer) +16 QXmlSerializer::~QXmlSerializer +24 QXmlSerializer::~QXmlSerializer +32 QXmlSerializer::startElement +40 QXmlSerializer::endElement +48 QXmlSerializer::attribute +56 QXmlSerializer::comment +64 QXmlSerializer::characters +72 QXmlSerializer::startDocument +80 QXmlSerializer::endDocument +88 QXmlSerializer::processingInstruction +96 QXmlSerializer::atomicValue +104 QXmlSerializer::namespaceBinding +112 QXmlSerializer::startOfSequence +120 QXmlSerializer::endOfSequence +128 QAbstractXmlReceiver::whitespaceOnly +136 QXmlSerializer::item + +Class QXmlSerializer + size=16 align=8 + base size=16 base align=8 +QXmlSerializer (0x7f5935e2e1c0) 0 + vptr=((& QXmlSerializer::_ZTV14QXmlSerializer) + 16u) + QAbstractXmlReceiver (0x7f5935e2e230) 0 + primary-for QXmlSerializer (0x7f5935e2e1c0) + +Class QSourceLocation + size=24 align=8 + base size=24 base align=8 +QSourceLocation (0x7f5935e2e930) 0 + +Vtable for QAbstractMessageHandler +QAbstractMessageHandler::_ZTV23QAbstractMessageHandler: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QAbstractMessageHandler) +16 QAbstractMessageHandler::metaObject +24 QAbstractMessageHandler::qt_metacast +32 QAbstractMessageHandler::qt_metacall +40 QAbstractMessageHandler::~QAbstractMessageHandler +48 QAbstractMessageHandler::~QAbstractMessageHandler +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual + +Class QAbstractMessageHandler + size=16 align=8 + base size=16 base align=8 +QAbstractMessageHandler (0x7f5935e49540) 0 + vptr=((& QAbstractMessageHandler::_ZTV23QAbstractMessageHandler) + 16u) + QObject (0x7f5935e495b0) 0 + primary-for QAbstractMessageHandler (0x7f5935e49540) + +Class QXmlNamePool + size=8 align=8 + base size=8 base align=8 +QXmlNamePool (0x7f5935e64ee0) 0 + +Class QXmlQuery + size=8 align=8 + base size=8 base align=8 +QXmlQuery (0x7f5935e6c540) 0 + +Vtable for QAbstractUriResolver +QAbstractUriResolver::_ZTV20QAbstractUriResolver: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QAbstractUriResolver) +16 QAbstractUriResolver::metaObject +24 QAbstractUriResolver::qt_metacast +32 QAbstractUriResolver::qt_metacall +40 QAbstractUriResolver::~QAbstractUriResolver +48 QAbstractUriResolver::~QAbstractUriResolver +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual + +Class QAbstractUriResolver + size=16 align=8 + base size=16 base align=8 +QAbstractUriResolver (0x7f5935e8d150) 0 + vptr=((& QAbstractUriResolver::_ZTV20QAbstractUriResolver) + 16u) + QObject (0x7f5935e8d1c0) 0 + primary-for QAbstractUriResolver (0x7f5935e8d150) + +Vtable for QSimpleXmlNodeModel +QSimpleXmlNodeModel::_ZTV19QSimpleXmlNodeModel: 24u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QSimpleXmlNodeModel) +16 QSimpleXmlNodeModel::~QSimpleXmlNodeModel +24 QSimpleXmlNodeModel::~QSimpleXmlNodeModel +32 QSimpleXmlNodeModel::baseUri +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 QSimpleXmlNodeModel::stringValue +88 __cxa_pure_virtual +96 QAbstractXmlNodeModel::iterate +104 QAbstractXmlNodeModel::sequencedTypedValue +112 QAbstractXmlNodeModel::type +120 QAbstractXmlNodeModel::namespaceForPrefix +128 QAbstractXmlNodeModel::isDeepEqual +136 QAbstractXmlNodeModel::sendNamespaces +144 QSimpleXmlNodeModel::namespaceBindings +152 QSimpleXmlNodeModel::elementById +160 QSimpleXmlNodeModel::nodesByIdref +168 QAbstractXmlNodeModel::copyNodeTo +176 __cxa_pure_virtual +184 __cxa_pure_virtual + +Class QSimpleXmlNodeModel + size=24 align=8 + base size=24 base align=8 +QSimpleXmlNodeModel (0x7f5935e9da10) 0 + vptr=((& QSimpleXmlNodeModel::_ZTV19QSimpleXmlNodeModel) + 16u) + QAbstractXmlNodeModel (0x7f5935e9da80) 0 + primary-for QSimpleXmlNodeModel (0x7f5935e9da10) + QSharedData (0x7f5935e9daf0) 8 + +Vtable for QXmlFormatter +QXmlFormatter::_ZTV13QXmlFormatter: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QXmlFormatter) +16 QXmlFormatter::~QXmlFormatter +24 QXmlFormatter::~QXmlFormatter +32 QXmlFormatter::startElement +40 QXmlFormatter::endElement +48 QXmlFormatter::attribute +56 QXmlFormatter::comment +64 QXmlFormatter::characters +72 QXmlFormatter::startDocument +80 QXmlFormatter::endDocument +88 QXmlFormatter::processingInstruction +96 QXmlFormatter::atomicValue +104 QXmlSerializer::namespaceBinding +112 QXmlFormatter::startOfSequence +120 QXmlFormatter::endOfSequence +128 QAbstractXmlReceiver::whitespaceOnly +136 QXmlFormatter::item + +Class QXmlFormatter + size=16 align=8 + base size=16 base align=8 +QXmlFormatter (0x7f5935eab1c0) 0 + vptr=((& QXmlFormatter::_ZTV13QXmlFormatter) + 16u) + QXmlSerializer (0x7f5935eab230) 0 + primary-for QXmlFormatter (0x7f5935eab1c0) + QAbstractXmlReceiver (0x7f5935eab2a0) 0 + primary-for QXmlSerializer (0x7f5935eab230) + +Vtable for QXmlResultItems +QXmlResultItems::_ZTV15QXmlResultItems: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QXmlResultItems) +16 QXmlResultItems::~QXmlResultItems +24 QXmlResultItems::~QXmlResultItems + +Class QXmlResultItems + size=16 align=8 + base size=16 base align=8 +QXmlResultItems (0x7f5935eab930) 0 + vptr=((& QXmlResultItems::_ZTV15QXmlResultItems) + 16u) + diff --git a/tests/auto/bic/data/QtXmlPatterns.4.6.0.linux-gcc-amd64.txt b/tests/auto/bic/data/QtXmlPatterns.4.6.0.linux-gcc-amd64.txt new file mode 100644 index 0000000..a08062d --- /dev/null +++ b/tests/auto/bic/data/QtXmlPatterns.4.6.0.linux-gcc-amd64.txt @@ -0,0 +1,3561 @@ +Class QSysInfo + size=1 align=1 + base size=0 base align=1 +QSysInfo (0x7f7ae7deb230) 0 empty + +Class QBool + size=1 align=1 + base size=1 base align=1 +QBool (0x7f7ae7debe70) 0 + +Class qIsNull(double)::U + size=8 align=8 + base size=8 base align=8 +qIsNull(double)::U (0x7f7ae7e19540) 0 + +Class qIsNull(float)::U + size=4 align=4 + base size=4 base align=4 +qIsNull(float)::U (0x7f7ae7e197e0) 0 + +Class QFlag + size=4 align=4 + base size=4 base align=4 +QFlag (0x7f7ae7e53690) 0 + +Class QIncompatibleFlag + size=4 align=4 + base size=4 base align=4 +QIncompatibleFlag (0x7f7ae7e53e70) 0 + +Class QLatin1Char + size=1 align=1 + base size=1 base align=1 +QLatin1Char (0x7f7ae7e815b0) 0 + +Class QChar + size=2 align=2 + base size=2 base align=2 +QChar (0x7f7ae7ea9150) 0 + +Class QBasicAtomicInt + size=4 align=4 + base size=4 base align=4 +QBasicAtomicInt (0x7f7ae7d0b310) 0 + +Class QAtomicInt + size=4 align=4 + base size=4 base align=4 +QAtomicInt (0x7f7ae7d49cb0) 0 + QBasicAtomicInt (0x7f7ae7d49d20) 0 + +Class QInternal + size=1 align=1 + base size=0 base align=1 +QInternal (0x7f7ae7b9c4d0) 0 empty + +Class __locale_struct + size=232 align=8 + base size=232 base align=8 +__locale_struct (0x7f7ae7b9c700) 0 + +Class QByteArray::Data + size=32 align=8 + base size=32 base align=8 +QByteArray::Data (0x7f7ae7bd8af0) 0 + +Class QByteArray + size=8 align=8 + base size=8 base align=8 +QByteArray (0x7f7ae7bd8a80) 0 + +Class QByteRef + size=16 align=8 + base size=12 base align=8 +QByteRef (0x7f7ae7a7c380) 0 + +Class QString::Null + size=1 align=1 + base size=0 base align=1 +QString::Null (0x7f7ae797bd20) 0 empty + +Class QString::Data + size=32 align=8 + base size=32 base align=8 +QString::Data (0x7f7ae79935b0) 0 + +Class QString + size=8 align=8 + base size=8 base align=8 +QString (0x7f7ae78f5bd0) 0 + +Class QLatin1String + size=8 align=8 + base size=8 base align=8 +QLatin1String (0x7f7ae786c9a0) 0 + +Class QCharRef + size=16 align=8 + base size=12 base align=8 +QCharRef (0x7f7ae770b000) 0 + +Class QConstString + size=8 align=8 + base size=8 base align=8 +QConstString (0x7f7ae76548c0) 0 + QString (0x7f7ae7654930) 0 + +Class QStringRef + size=16 align=8 + base size=16 base align=8 +QStringRef (0x7f7ae767b310) 0 + +Class QGenericArgument + size=16 align=8 + base size=16 base align=8 +QGenericArgument (0x7f7ae74f4700) 0 + +Class QGenericReturnArgument + size=16 align=8 + base size=16 base align=8 +QGenericReturnArgument (0x7f7ae74fd2a0) 0 + QGenericArgument (0x7f7ae74fd310) 0 + +Class QMetaObject + size=32 align=8 + base size=32 base align=8 +QMetaObject (0x7f7ae74fdb60) 0 + +Class QMetaObjectExtraData + size=16 align=8 + base size=16 base align=8 +QMetaObjectExtraData (0x7f7ae7526bd0) 0 + +Vtable for std::exception +std::exception::_ZTVSt9exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9exception) +16 std::exception::~exception +24 std::exception::~exception +32 std::exception::what + +Class std::exception + size=8 align=8 + base size=8 base align=8 +std::exception (0x7f7ae757a1c0) 0 nearly-empty + vptr=((& std::exception::_ZTVSt9exception) + 16u) + +Vtable for std::bad_exception +std::bad_exception::_ZTVSt13bad_exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13bad_exception) +16 std::bad_exception::~bad_exception +24 std::bad_exception::~bad_exception +32 std::bad_exception::what + +Class std::bad_exception + size=8 align=8 + base size=8 base align=8 +std::bad_exception (0x7f7ae757a770) 0 nearly-empty + vptr=((& std::bad_exception::_ZTVSt13bad_exception) + 16u) + std::exception (0x7f7ae757a7e0) 0 nearly-empty + primary-for std::bad_exception (0x7f7ae757a770) + +Vtable for std::bad_alloc +std::bad_alloc::_ZTVSt9bad_alloc: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9bad_alloc) +16 std::bad_alloc::~bad_alloc +24 std::bad_alloc::~bad_alloc +32 std::bad_alloc::what + +Class std::bad_alloc + size=8 align=8 + base size=8 base align=8 +std::bad_alloc (0x7f7ae757a930) 0 nearly-empty + vptr=((& std::bad_alloc::_ZTVSt9bad_alloc) + 16u) + std::exception (0x7f7ae7590000) 0 nearly-empty + primary-for std::bad_alloc (0x7f7ae757a930) + +Class std::nothrow_t + size=1 align=1 + base size=0 base align=1 +std::nothrow_t (0x7f7ae7590850) 0 empty + +Class QListData::Data + size=32 align=8 + base size=32 base align=8 +QListData::Data (0x7f7ae7590d90) 0 + +Class QListData + size=8 align=8 + base size=8 base align=8 +QListData (0x7f7ae7590d20) 0 + +Class QScopedPointerPodDeleter + size=1 align=1 + base size=0 base align=1 +QScopedPointerPodDeleter (0x7f7ae74ba850) 0 empty + +Vtable for QObjectData +QObjectData::_ZTV11QObjectData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QObjectData) +16 __cxa_pure_virtual +24 __cxa_pure_virtual + +Class QObjectData + size=48 align=8 + base size=48 base align=8 +QObjectData (0x7f7ae74db2a0) 0 + vptr=((& QObjectData::_ZTV11QObjectData) + 16u) + +Vtable for QObject +QObject::_ZTV7QObject: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QObject) +16 QObject::metaObject +24 QObject::qt_metacast +32 QObject::qt_metacall +40 QObject::~QObject +48 QObject::~QObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObject + size=16 align=8 + base size=16 base align=8 +QObject (0x7f7ae74db5b0) 0 + vptr=((& QObject::_ZTV7QObject) + 16u) + +Vtable for QObjectUserData +QObjectUserData::_ZTV15QObjectUserData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QObjectUserData) +16 QObjectUserData::~QObjectUserData +24 QObjectUserData::~QObjectUserData + +Class QObjectUserData + size=8 align=8 + base size=8 base align=8 +QObjectUserData (0x7f7ae735fb60) 0 nearly-empty + vptr=((& QObjectUserData::_ZTV15QObjectUserData) + 16u) + +Vtable for QIODevice +QIODevice::_ZTV9QIODevice: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QIODevice) +16 QIODevice::metaObject +24 QIODevice::qt_metacast +32 QIODevice::qt_metacall +40 QIODevice::~QIODevice +48 QIODevice::~QIODevice +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QIODevice::isSequential +120 QIODevice::open +128 QIODevice::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QIODevice::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 __cxa_pure_virtual +224 QIODevice::readLineData +232 __cxa_pure_virtual + +Class QIODevice + size=16 align=8 + base size=16 base align=8 +QIODevice (0x7f7ae736f150) 0 + vptr=((& QIODevice::_ZTV9QIODevice) + 16u) + QObject (0x7f7ae736f1c0) 0 + primary-for QIODevice (0x7f7ae736f150) + +Class _IO_marker + size=24 align=8 + base size=24 base align=8 +_IO_marker (0x7f7ae73d3cb0) 0 + +Class _IO_FILE + size=216 align=8 + base size=216 base align=8 +_IO_FILE (0x7f7ae73d3d20) 0 + +Vtable for QFile +QFile::_ZTV5QFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QFile) +16 QFile::metaObject +24 QFile::qt_metacast +32 QFile::qt_metacall +40 QFile::~QFile +48 QFile::~QFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QFile::fileEngine + +Class QFile + size=16 align=8 + base size=16 base align=8 +QFile (0x7f7ae73d3e00) 0 + vptr=((& QFile::_ZTV5QFile) + 16u) + QIODevice (0x7f7ae73d3e70) 0 + primary-for QFile (0x7f7ae73d3e00) + QObject (0x7f7ae73d3ee0) 0 + primary-for QIODevice (0x7f7ae73d3e70) + +Class QFileInfo + size=8 align=8 + base size=8 base align=8 +QFileInfo (0x7f7ae7275070) 0 + +Vtable for QDataStream +QDataStream::_ZTV11QDataStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QDataStream) +16 QDataStream::~QDataStream +24 QDataStream::~QDataStream + +Class QDataStream + size=40 align=8 + base size=40 base align=8 +QDataStream (0x7f7ae72c8a10) 0 + vptr=((& QDataStream::_ZTV11QDataStream) + 16u) + +Class QRegExp + size=8 align=8 + base size=8 base align=8 +QRegExp (0x7f7ae7132e70) 0 + +Class QStringMatcher::Data + size=272 align=8 + base size=272 base align=8 +QStringMatcher::Data (0x7f7ae719b2a0) 0 + +Class QStringMatcher + size=1048 align=8 + base size=1048 base align=8 +QStringMatcher (0x7f7ae718dc40) 0 + +Class QStringList + size=8 align=8 + base size=8 base align=8 +QStringList (0x7f7ae719b850) 0 + QList (0x7f7ae719b8c0) 0 + +Class QDir + size=8 align=8 + base size=8 base align=8 +QDir (0x7f7ae70384d0) 0 + +Class QAbstractFileEngine::ExtensionOption + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionOption (0x7f7ae6ee18c0) 0 empty + +Class QAbstractFileEngine::ExtensionReturn + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionReturn (0x7f7ae6ee1930) 0 empty + +Class QAbstractFileEngine::MapExtensionOption + size=24 align=8 + base size=20 base align=8 +QAbstractFileEngine::MapExtensionOption (0x7f7ae6ee19a0) 0 + QAbstractFileEngine::ExtensionOption (0x7f7ae6ee1a10) 0 empty + +Class QAbstractFileEngine::MapExtensionReturn + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::MapExtensionReturn (0x7f7ae6ee1bd0) 0 + QAbstractFileEngine::ExtensionReturn (0x7f7ae6ee1c40) 0 empty + +Class QAbstractFileEngine::UnMapExtensionOption + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngine::UnMapExtensionOption (0x7f7ae6ee1cb0) 0 + QAbstractFileEngine::ExtensionOption (0x7f7ae6ee1d20) 0 empty + +Vtable for QAbstractFileEngine +QAbstractFileEngine::_ZTV19QAbstractFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractFileEngine) +16 QAbstractFileEngine::~QAbstractFileEngine +24 QAbstractFileEngine::~QAbstractFileEngine +32 QAbstractFileEngine::open +40 QAbstractFileEngine::close +48 QAbstractFileEngine::flush +56 QAbstractFileEngine::size +64 QAbstractFileEngine::pos +72 QAbstractFileEngine::seek +80 QAbstractFileEngine::isSequential +88 QAbstractFileEngine::remove +96 QAbstractFileEngine::copy +104 QAbstractFileEngine::rename +112 QAbstractFileEngine::link +120 QAbstractFileEngine::mkdir +128 QAbstractFileEngine::rmdir +136 QAbstractFileEngine::setSize +144 QAbstractFileEngine::caseSensitive +152 QAbstractFileEngine::isRelativePath +160 QAbstractFileEngine::entryList +168 QAbstractFileEngine::fileFlags +176 QAbstractFileEngine::setPermissions +184 QAbstractFileEngine::fileName +192 QAbstractFileEngine::ownerId +200 QAbstractFileEngine::owner +208 QAbstractFileEngine::fileTime +216 QAbstractFileEngine::setFileName +224 QAbstractFileEngine::handle +232 QAbstractFileEngine::beginEntryList +240 QAbstractFileEngine::endEntryList +248 QAbstractFileEngine::read +256 QAbstractFileEngine::readLine +264 QAbstractFileEngine::write +272 QAbstractFileEngine::extension +280 QAbstractFileEngine::supportsExtension + +Class QAbstractFileEngine + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngine (0x7f7ae70c5850) 0 + vptr=((& QAbstractFileEngine::_ZTV19QAbstractFileEngine) + 16u) + +Vtable for QAbstractFileEngineHandler +QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QAbstractFileEngineHandler) +16 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +24 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +32 __cxa_pure_virtual + +Class QAbstractFileEngineHandler + size=8 align=8 + base size=8 base align=8 +QAbstractFileEngineHandler (0x7f7ae6f17bd0) 0 nearly-empty + vptr=((& QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler) + 16u) + +Vtable for QAbstractFileEngineIterator +QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QAbstractFileEngineIterator) +16 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +24 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QAbstractFileEngineIterator::currentFileInfo +64 QAbstractFileEngineIterator::entryInfo + +Class QAbstractFileEngineIterator + size=16 align=8 + base size=16 base align=8 +QAbstractFileEngineIterator (0x7f7ae6f17d90) 0 + vptr=((& QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator) + 16u) + +Vtable for QBuffer +QBuffer::_ZTV7QBuffer: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QBuffer) +16 QBuffer::metaObject +24 QBuffer::qt_metacast +32 QBuffer::qt_metacall +40 QBuffer::~QBuffer +48 QBuffer::~QBuffer +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QBuffer::connectNotify +104 QBuffer::disconnectNotify +112 QIODevice::isSequential +120 QBuffer::open +128 QBuffer::close +136 QBuffer::pos +144 QBuffer::size +152 QBuffer::seek +160 QBuffer::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QBuffer::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QBuffer::readData +224 QIODevice::readLineData +232 QBuffer::writeData + +Class QBuffer + size=16 align=8 + base size=16 base align=8 +QBuffer (0x7f7ae6f2a690) 0 + vptr=((& QBuffer::_ZTV7QBuffer) + 16u) + QIODevice (0x7f7ae6f2a700) 0 + primary-for QBuffer (0x7f7ae6f2a690) + QObject (0x7f7ae6f2a770) 0 + primary-for QIODevice (0x7f7ae6f2a700) + +Class QHashData::Node + size=16 align=8 + base size=16 base align=8 +QHashData::Node (0x7f7ae6f6ce00) 0 + +Class QHashData + size=40 align=8 + base size=40 base align=8 +QHashData (0x7f7ae6f6cd90) 0 + +Class QHashDummyValue + size=1 align=1 + base size=0 base align=1 +QHashDummyValue (0x7f7ae6f8e150) 0 empty + +Class QMapData::Node + size=16 align=8 + base size=16 base align=8 +QMapData::Node (0x7f7ae6e8da80) 0 + +Class QMapData + size=128 align=8 + base size=128 base align=8 +QMapData (0x7f7ae6e8da10) 0 + +Vtable for QSystemLocale +QSystemLocale::_ZTV13QSystemLocale: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSystemLocale) +16 QSystemLocale::~QSystemLocale +24 QSystemLocale::~QSystemLocale +32 QSystemLocale::query +40 QSystemLocale::fallbackLocale + +Class QSystemLocale + size=8 align=8 + base size=8 base align=8 +QSystemLocale (0x7f7ae6dcb690) 0 nearly-empty + vptr=((& QSystemLocale::_ZTV13QSystemLocale) + 16u) + +Class QLocale::Data + size=4 align=2 + base size=4 base align=2 +QLocale::Data (0x7f7ae6c17d90) 0 + +Class QLocale + size=8 align=8 + base size=8 base align=8 +QLocale (0x7f7ae6dcbaf0) 0 + +Class QTextCodec::ConverterState + size=32 align=8 + base size=32 base align=8 +QTextCodec::ConverterState (0x7f7ae6c6fbd0) 0 + +Vtable for QTextCodec +QTextCodec::_ZTV10QTextCodec: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextCodec) +16 __cxa_pure_virtual +24 QTextCodec::aliases +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QTextCodec::~QTextCodec +64 QTextCodec::~QTextCodec + +Class QTextCodec + size=8 align=8 + base size=8 base align=8 +QTextCodec (0x7f7ae6c61460) 0 nearly-empty + vptr=((& QTextCodec::_ZTV10QTextCodec) + 16u) + +Class QTextEncoder + size=40 align=8 + base size=40 base align=8 +QTextEncoder (0x7f7ae6add150) 0 + +Class QTextDecoder + size=40 align=8 + base size=40 base align=8 +QTextDecoder (0x7f7ae6addf50) 0 + +Vtable for QTextStream +QTextStream::_ZTV11QTextStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTextStream) +16 QTextStream::~QTextStream +24 QTextStream::~QTextStream + +Class QTextStream + size=16 align=8 + base size=16 base align=8 +QTextStream (0x7f7ae6ae6d90) 0 + vptr=((& QTextStream::_ZTV11QTextStream) + 16u) + +Class QTextStreamManipulator + size=40 align=8 + base size=38 base align=8 +QTextStreamManipulator (0x7f7ae6b5fa80) 0 + +Vtable for QTextIStream +QTextIStream::_ZTV12QTextIStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextIStream) +16 QTextIStream::~QTextIStream +24 QTextIStream::~QTextIStream + +Class QTextIStream + size=16 align=8 + base size=16 base align=8 +QTextIStream (0x7f7ae6b90070) 0 + vptr=((& QTextIStream::_ZTV12QTextIStream) + 16u) + QTextStream (0x7f7ae6b900e0) 0 + primary-for QTextIStream (0x7f7ae6b90070) + +Vtable for QTextOStream +QTextOStream::_ZTV12QTextOStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextOStream) +16 QTextOStream::~QTextOStream +24 QTextOStream::~QTextOStream + +Class QTextOStream + size=16 align=8 + base size=16 base align=8 +QTextOStream (0x7f7ae6b9cee0) 0 + vptr=((& QTextOStream::_ZTV12QTextOStream) + 16u) + QTextStream (0x7f7ae6b9cf50) 0 + primary-for QTextOStream (0x7f7ae6b9cee0) + +Class wait + size=4 align=4 + base size=4 base align=4 +wait (0x7f7ae6bb0d90) 0 + +Class timespec + size=16 align=8 + base size=16 base align=8 +timespec (0x7f7ae6bbd0e0) 0 + +Class timeval + size=16 align=8 + base size=16 base align=8 +timeval (0x7f7ae6bbd150) 0 + +Class __pthread_internal_list + size=16 align=8 + base size=16 base align=8 +__pthread_internal_list (0x7f7ae6bbd2a0) 0 + +Class random_data + size=48 align=8 + base size=48 base align=8 +random_data (0x7f7ae6bbd850) 0 + +Class drand48_data + size=24 align=8 + base size=24 base align=8 +drand48_data (0x7f7ae6bbd8c0) 0 + +Class QVectorData + size=16 align=4 + base size=16 base align=4 +QVectorData (0x7f7ae6bbd930) 0 + +Class QContiguousCacheData + size=24 align=4 + base size=24 base align=4 +QContiguousCacheData (0x7f7ae697d620) 0 + +Class QDebug::Stream + size=40 align=8 + base size=34 base align=8 +QDebug::Stream (0x7f7ae67dd150) 0 + +Class QDebug + size=8 align=8 + base size=8 base align=8 +QDebug (0x7f7ae67dd0e0) 0 + +Class QNoDebug + size=1 align=1 + base size=0 base align=1 +QNoDebug (0x7f7ae688c0e0) 0 empty + +Vtable for QDirIterator +QDirIterator::_ZTV12QDirIterator: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QDirIterator) +16 QDirIterator::~QDirIterator +24 QDirIterator::~QDirIterator + +Class QDirIterator + size=16 align=8 + base size=16 base align=8 +QDirIterator (0x7f7ae689c700) 0 + vptr=((& QDirIterator::_ZTV12QDirIterator) + 16u) + +Vtable for QFileSystemWatcher +QFileSystemWatcher::_ZTV18QFileSystemWatcher: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFileSystemWatcher) +16 QFileSystemWatcher::metaObject +24 QFileSystemWatcher::qt_metacast +32 QFileSystemWatcher::qt_metacall +40 QFileSystemWatcher::~QFileSystemWatcher +48 QFileSystemWatcher::~QFileSystemWatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QFileSystemWatcher + size=16 align=8 + base size=16 base align=8 +QFileSystemWatcher (0x7f7ae66f7540) 0 + vptr=((& QFileSystemWatcher::_ZTV18QFileSystemWatcher) + 16u) + QObject (0x7f7ae66f75b0) 0 + primary-for QFileSystemWatcher (0x7f7ae66f7540) + +Vtable for QFSFileEngine +QFSFileEngine::_ZTV13QFSFileEngine: 36u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QFSFileEngine) +16 QFSFileEngine::~QFSFileEngine +24 QFSFileEngine::~QFSFileEngine +32 QFSFileEngine::open +40 QFSFileEngine::close +48 QFSFileEngine::flush +56 QFSFileEngine::size +64 QFSFileEngine::pos +72 QFSFileEngine::seek +80 QFSFileEngine::isSequential +88 QFSFileEngine::remove +96 QFSFileEngine::copy +104 QFSFileEngine::rename +112 QFSFileEngine::link +120 QFSFileEngine::mkdir +128 QFSFileEngine::rmdir +136 QFSFileEngine::setSize +144 QFSFileEngine::caseSensitive +152 QFSFileEngine::isRelativePath +160 QFSFileEngine::entryList +168 QFSFileEngine::fileFlags +176 QFSFileEngine::setPermissions +184 QFSFileEngine::fileName +192 QFSFileEngine::ownerId +200 QFSFileEngine::owner +208 QFSFileEngine::fileTime +216 QFSFileEngine::setFileName +224 QFSFileEngine::handle +232 QFSFileEngine::beginEntryList +240 QFSFileEngine::endEntryList +248 QFSFileEngine::read +256 QFSFileEngine::readLine +264 QFSFileEngine::write +272 QFSFileEngine::extension +280 QFSFileEngine::supportsExtension + +Class QFSFileEngine + size=16 align=8 + base size=16 base align=8 +QFSFileEngine (0x7f7ae6709a80) 0 + vptr=((& QFSFileEngine::_ZTV13QFSFileEngine) + 16u) + QAbstractFileEngine (0x7f7ae6709af0) 0 + primary-for QFSFileEngine (0x7f7ae6709a80) + +Class QSharedData + size=4 align=4 + base size=4 base align=4 +QSharedData (0x7f7ae6719e70) 0 + +Class QProcessEnvironment + size=8 align=8 + base size=8 base align=8 +QProcessEnvironment (0x7f7ae67641c0) 0 + +Vtable for QProcess +QProcess::_ZTV8QProcess: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QProcess) +16 QProcess::metaObject +24 QProcess::qt_metacast +32 QProcess::qt_metacall +40 QProcess::~QProcess +48 QProcess::~QProcess +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QProcess::isSequential +120 QIODevice::open +128 QProcess::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QProcess::atEnd +168 QIODevice::reset +176 QProcess::bytesAvailable +184 QProcess::bytesToWrite +192 QProcess::canReadLine +200 QProcess::waitForReadyRead +208 QProcess::waitForBytesWritten +216 QProcess::readData +224 QIODevice::readLineData +232 QProcess::writeData +240 QProcess::setupChildProcess + +Class QProcess + size=16 align=8 + base size=16 base align=8 +QProcess (0x7f7ae6764cb0) 0 + vptr=((& QProcess::_ZTV8QProcess) + 16u) + QIODevice (0x7f7ae6764d20) 0 + primary-for QProcess (0x7f7ae6764cb0) + QObject (0x7f7ae6764d90) 0 + primary-for QIODevice (0x7f7ae6764d20) + +Class QResource + size=8 align=8 + base size=8 base align=8 +QResource (0x7f7ae67a81c0) 0 + +Class QMetaType + size=1 align=1 + base size=0 base align=1 +QMetaType (0x7f7ae67a8e70) 0 empty + +Class QVariant::PrivateShared + size=16 align=8 + base size=12 base align=8 +QVariant::PrivateShared (0x7f7ae66a7700) 0 + +Class QVariant::Private::Data + size=8 align=8 + base size=8 base align=8 +QVariant::Private::Data (0x7f7ae66a7a10) 0 + +Class QVariant::Private + size=16 align=8 + base size=12 base align=8 +QVariant::Private (0x7f7ae66a77e0) 0 + +Class QVariant::Handler + size=72 align=8 + base size=72 base align=8 +QVariant::Handler (0x7f7ae64b7700) 0 + +Class QVariant + size=16 align=8 + base size=16 base align=8 +QVariant (0x7f7ae66777e0) 0 + +Class QVariantComparisonHelper + size=8 align=8 + base size=8 base align=8 +QVariantComparisonHelper (0x7f7ae656e9a0) 0 + +Vtable for QSettings +QSettings::_ZTV9QSettings: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QSettings) +16 QSettings::metaObject +24 QSettings::qt_metacast +32 QSettings::qt_metacall +40 QSettings::~QSettings +48 QSettings::~QSettings +56 QSettings::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSettings + size=16 align=8 + base size=16 base align=8 +QSettings (0x7f7ae6594ee0) 0 + vptr=((& QSettings::_ZTV9QSettings) + 16u) + QObject (0x7f7ae6594f50) 0 + primary-for QSettings (0x7f7ae6594ee0) + +Vtable for QTemporaryFile +QTemporaryFile::_ZTV14QTemporaryFile: 31u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QTemporaryFile) +16 QTemporaryFile::metaObject +24 QTemporaryFile::qt_metacast +32 QTemporaryFile::qt_metacall +40 QTemporaryFile::~QTemporaryFile +48 QTemporaryFile::~QTemporaryFile +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFile::isSequential +120 QTemporaryFile::open +128 QFile::close +136 QFile::pos +144 QFile::size +152 QFile::seek +160 QFile::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 QFile::readData +224 QFile::readLineData +232 QFile::writeData +240 QTemporaryFile::fileEngine + +Class QTemporaryFile + size=16 align=8 + base size=16 base align=8 +QTemporaryFile (0x7f7ae64122a0) 0 + vptr=((& QTemporaryFile::_ZTV14QTemporaryFile) + 16u) + QFile (0x7f7ae6412310) 0 + primary-for QTemporaryFile (0x7f7ae64122a0) + QIODevice (0x7f7ae6412380) 0 + primary-for QFile (0x7f7ae6412310) + QObject (0x7f7ae64123f0) 0 + primary-for QIODevice (0x7f7ae6412380) + +Class QUrl + size=8 align=8 + base size=8 base align=8 +QUrl (0x7f7ae642b9a0) 0 + +Class QXmlStreamStringRef + size=16 align=8 + base size=16 base align=8 +QXmlStreamStringRef (0x7f7ae62b5070) 0 + +Class QXmlStreamAttribute + size=80 align=8 + base size=73 base align=8 +QXmlStreamAttribute (0x7f7ae62d4850) 0 + +Class QXmlStreamAttributes + size=8 align=8 + base size=8 base align=8 +QXmlStreamAttributes (0x7f7ae62fd310) 0 + QVector (0x7f7ae62fd380) 0 + +Class QXmlStreamNamespaceDeclaration + size=40 align=8 + base size=40 base align=8 +QXmlStreamNamespaceDeclaration (0x7f7ae62fd7e0) 0 + +Class QXmlStreamNotationDeclaration + size=56 align=8 + base size=56 base align=8 +QXmlStreamNotationDeclaration (0x7f7ae633e1c0) 0 + +Class QXmlStreamEntityDeclaration + size=88 align=8 + base size=88 base align=8 +QXmlStreamEntityDeclaration (0x7f7ae635d070) 0 + +Vtable for QXmlStreamEntityResolver +QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QXmlStreamEntityResolver) +16 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +24 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +32 QXmlStreamEntityResolver::resolveEntity +40 QXmlStreamEntityResolver::resolveUndeclaredEntity + +Class QXmlStreamEntityResolver + size=8 align=8 + base size=8 base align=8 +QXmlStreamEntityResolver (0x7f7ae63799a0) 0 nearly-empty + vptr=((& QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver) + 16u) + +Class QXmlStreamReader + size=8 align=8 + base size=8 base align=8 +QXmlStreamReader (0x7f7ae6379b60) 0 + +Class QXmlStreamWriter + size=8 align=8 + base size=8 base align=8 +QXmlStreamWriter (0x7f7ae61c1c40) 0 + +Vtable for QAbstractState +QAbstractState::_ZTV14QAbstractState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QAbstractState) +16 QAbstractState::metaObject +24 QAbstractState::qt_metacast +32 QAbstractState::qt_metacall +40 QAbstractState::~QAbstractState +48 QAbstractState::~QAbstractState +56 QAbstractState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QAbstractState + size=16 align=8 + base size=16 base align=8 +QAbstractState (0x7f7ae61d6a80) 0 + vptr=((& QAbstractState::_ZTV14QAbstractState) + 16u) + QObject (0x7f7ae61d6af0) 0 + primary-for QAbstractState (0x7f7ae61d6a80) + +Vtable for QAbstractTransition +QAbstractTransition::_ZTV19QAbstractTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractTransition) +16 QAbstractTransition::metaObject +24 QAbstractTransition::qt_metacast +32 QAbstractTransition::qt_metacall +40 QAbstractTransition::~QAbstractTransition +48 QAbstractTransition::~QAbstractTransition +56 QAbstractTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QAbstractTransition + size=16 align=8 + base size=16 base align=8 +QAbstractTransition (0x7f7ae61fc2a0) 0 + vptr=((& QAbstractTransition::_ZTV19QAbstractTransition) + 16u) + QObject (0x7f7ae61fc310) 0 + primary-for QAbstractTransition (0x7f7ae61fc2a0) + +Vtable for QEvent +QEvent::_ZTV6QEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QEvent) +16 QEvent::~QEvent +24 QEvent::~QEvent + +Class QEvent + size=24 align=8 + base size=20 base align=8 +QEvent (0x7f7ae6211af0) 0 + vptr=((& QEvent::_ZTV6QEvent) + 16u) + +Vtable for QTimerEvent +QTimerEvent::_ZTV11QTimerEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTimerEvent) +16 QTimerEvent::~QTimerEvent +24 QTimerEvent::~QTimerEvent + +Class QTimerEvent + size=24 align=8 + base size=24 base align=8 +QTimerEvent (0x7f7ae6233700) 0 + vptr=((& QTimerEvent::_ZTV11QTimerEvent) + 16u) + QEvent (0x7f7ae6233770) 0 + primary-for QTimerEvent (0x7f7ae6233700) + +Vtable for QChildEvent +QChildEvent::_ZTV11QChildEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QChildEvent) +16 QChildEvent::~QChildEvent +24 QChildEvent::~QChildEvent + +Class QChildEvent + size=32 align=8 + base size=32 base align=8 +QChildEvent (0x7f7ae6233b60) 0 + vptr=((& QChildEvent::_ZTV11QChildEvent) + 16u) + QEvent (0x7f7ae6233bd0) 0 + primary-for QChildEvent (0x7f7ae6233b60) + +Vtable for QCustomEvent +QCustomEvent::_ZTV12QCustomEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QCustomEvent) +16 QCustomEvent::~QCustomEvent +24 QCustomEvent::~QCustomEvent + +Class QCustomEvent + size=24 align=8 + base size=20 base align=8 +QCustomEvent (0x7f7ae623de00) 0 + vptr=((& QCustomEvent::_ZTV12QCustomEvent) + 16u) + QEvent (0x7f7ae623de70) 0 + primary-for QCustomEvent (0x7f7ae623de00) + +Vtable for QDynamicPropertyChangeEvent +QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI27QDynamicPropertyChangeEvent) +16 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent +24 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent + +Class QDynamicPropertyChangeEvent + size=32 align=8 + base size=32 base align=8 +QDynamicPropertyChangeEvent (0x7f7ae624f620) 0 + vptr=((& QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent) + 16u) + QEvent (0x7f7ae624f690) 0 + primary-for QDynamicPropertyChangeEvent (0x7f7ae624f620) + +Vtable for QEventTransition +QEventTransition::_ZTV16QEventTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QEventTransition) +16 QEventTransition::metaObject +24 QEventTransition::qt_metacast +32 QEventTransition::qt_metacall +40 QEventTransition::~QEventTransition +48 QEventTransition::~QEventTransition +56 QEventTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QEventTransition::eventTest +120 QEventTransition::onTransition + +Class QEventTransition + size=16 align=8 + base size=16 base align=8 +QEventTransition (0x7f7ae624faf0) 0 + vptr=((& QEventTransition::_ZTV16QEventTransition) + 16u) + QAbstractTransition (0x7f7ae624fb60) 0 + primary-for QEventTransition (0x7f7ae624faf0) + QObject (0x7f7ae624fbd0) 0 + primary-for QAbstractTransition (0x7f7ae624fb60) + +Vtable for QFinalState +QFinalState::_ZTV11QFinalState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QFinalState) +16 QFinalState::metaObject +24 QFinalState::qt_metacast +32 QFinalState::qt_metacall +40 QFinalState::~QFinalState +48 QFinalState::~QFinalState +56 QFinalState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QFinalState::onEntry +120 QFinalState::onExit + +Class QFinalState + size=16 align=8 + base size=16 base align=8 +QFinalState (0x7f7ae62699a0) 0 + vptr=((& QFinalState::_ZTV11QFinalState) + 16u) + QAbstractState (0x7f7ae6269a10) 0 + primary-for QFinalState (0x7f7ae62699a0) + QObject (0x7f7ae6269a80) 0 + primary-for QAbstractState (0x7f7ae6269a10) + +Vtable for QHistoryState +QHistoryState::_ZTV13QHistoryState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QHistoryState) +16 QHistoryState::metaObject +24 QHistoryState::qt_metacast +32 QHistoryState::qt_metacall +40 QHistoryState::~QHistoryState +48 QHistoryState::~QHistoryState +56 QHistoryState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QHistoryState::onEntry +120 QHistoryState::onExit + +Class QHistoryState + size=16 align=8 + base size=16 base align=8 +QHistoryState (0x7f7ae6282230) 0 + vptr=((& QHistoryState::_ZTV13QHistoryState) + 16u) + QAbstractState (0x7f7ae62822a0) 0 + primary-for QHistoryState (0x7f7ae6282230) + QObject (0x7f7ae6282310) 0 + primary-for QAbstractState (0x7f7ae62822a0) + +Vtable for QSignalTransition +QSignalTransition::_ZTV17QSignalTransition: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QSignalTransition) +16 QSignalTransition::metaObject +24 QSignalTransition::qt_metacast +32 QSignalTransition::qt_metacall +40 QSignalTransition::~QSignalTransition +48 QSignalTransition::~QSignalTransition +56 QSignalTransition::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QSignalTransition::eventTest +120 QSignalTransition::onTransition + +Class QSignalTransition + size=16 align=8 + base size=16 base align=8 +QSignalTransition (0x7f7ae6293f50) 0 + vptr=((& QSignalTransition::_ZTV17QSignalTransition) + 16u) + QAbstractTransition (0x7f7ae629c000) 0 + primary-for QSignalTransition (0x7f7ae6293f50) + QObject (0x7f7ae629c070) 0 + primary-for QAbstractTransition (0x7f7ae629c000) + +Vtable for QState +QState::_ZTV6QState: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QState) +16 QState::metaObject +24 QState::qt_metacast +32 QState::qt_metacall +40 QState::~QState +48 QState::~QState +56 QState::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QState::onEntry +120 QState::onExit + +Class QState + size=16 align=8 + base size=16 base align=8 +QState (0x7f7ae60aeaf0) 0 + vptr=((& QState::_ZTV6QState) + 16u) + QAbstractState (0x7f7ae60aeb60) 0 + primary-for QState (0x7f7ae60aeaf0) + QObject (0x7f7ae60aebd0) 0 + primary-for QAbstractState (0x7f7ae60aeb60) + +Vtable for QStateMachine::SignalEvent +QStateMachine::SignalEvent::_ZTVN13QStateMachine11SignalEventE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN13QStateMachine11SignalEventE) +16 QStateMachine::SignalEvent::~SignalEvent +24 QStateMachine::SignalEvent::~SignalEvent + +Class QStateMachine::SignalEvent + size=48 align=8 + base size=48 base align=8 +QStateMachine::SignalEvent (0x7f7ae60d4150) 0 + vptr=((& QStateMachine::SignalEvent::_ZTVN13QStateMachine11SignalEventE) + 16u) + QEvent (0x7f7ae60d41c0) 0 + primary-for QStateMachine::SignalEvent (0x7f7ae60d4150) + +Vtable for QStateMachine::WrappedEvent +QStateMachine::WrappedEvent::_ZTVN13QStateMachine12WrappedEventE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN13QStateMachine12WrappedEventE) +16 QStateMachine::WrappedEvent::~WrappedEvent +24 QStateMachine::WrappedEvent::~WrappedEvent + +Class QStateMachine::WrappedEvent + size=40 align=8 + base size=40 base align=8 +QStateMachine::WrappedEvent (0x7f7ae60d4700) 0 + vptr=((& QStateMachine::WrappedEvent::_ZTVN13QStateMachine12WrappedEventE) + 16u) + QEvent (0x7f7ae60d4770) 0 + primary-for QStateMachine::WrappedEvent (0x7f7ae60d4700) + +Vtable for QStateMachine +QStateMachine::_ZTV13QStateMachine: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QStateMachine) +16 QStateMachine::metaObject +24 QStateMachine::qt_metacast +32 QStateMachine::qt_metacall +40 QStateMachine::~QStateMachine +48 QStateMachine::~QStateMachine +56 QStateMachine::event +64 QStateMachine::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QStateMachine::onEntry +120 QStateMachine::onExit +128 QStateMachine::beginSelectTransitions +136 QStateMachine::endSelectTransitions +144 QStateMachine::beginMicrostep +152 QStateMachine::endMicrostep + +Class QStateMachine + size=16 align=8 + base size=16 base align=8 +QStateMachine (0x7f7ae60cbee0) 0 + vptr=((& QStateMachine::_ZTV13QStateMachine) + 16u) + QState (0x7f7ae60cbf50) 0 + primary-for QStateMachine (0x7f7ae60cbee0) + QAbstractState (0x7f7ae60d4000) 0 + primary-for QState (0x7f7ae60cbf50) + QObject (0x7f7ae60d4070) 0 + primary-for QAbstractState (0x7f7ae60d4000) + +Class QBitArray + size=8 align=8 + base size=8 base align=8 +QBitArray (0x7f7ae6103150) 0 + +Class QBitRef + size=16 align=8 + base size=12 base align=8 +QBitRef (0x7f7ae615ae00) 0 + +Class QByteArrayMatcher::Data + size=272 align=8 + base size=272 base align=8 +QByteArrayMatcher::Data (0x7f7ae616daf0) 0 + +Class QByteArrayMatcher + size=1040 align=8 + base size=1040 base align=8 +QByteArrayMatcher (0x7f7ae616d4d0) 0 + +Class QCryptographicHash + size=8 align=8 + base size=8 base align=8 +QCryptographicHash (0x7f7ae61a3150) 0 + +Vtable for QtSharedPointer::ExternalRefCountData +QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN15QtSharedPointer20ExternalRefCountDataE) +16 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +24 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +32 QtSharedPointer::ExternalRefCountData::destroy + +Class QtSharedPointer::ExternalRefCountData + size=16 align=8 + base size=16 base align=8 +QtSharedPointer::ExternalRefCountData (0x7f7ae5fcf070) 0 + vptr=((& QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE) + 16u) + +Vtable for QtSharedPointer::ExternalRefCountWithDestroyFn +QtSharedPointer::ExternalRefCountWithDestroyFn::_ZTVN15QtSharedPointer29ExternalRefCountWithDestroyFnE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN15QtSharedPointer29ExternalRefCountWithDestroyFnE) +16 QtSharedPointer::ExternalRefCountWithDestroyFn::~ExternalRefCountWithDestroyFn +24 QtSharedPointer::ExternalRefCountWithDestroyFn::~ExternalRefCountWithDestroyFn +32 QtSharedPointer::ExternalRefCountWithDestroyFn::destroy + +Class QtSharedPointer::ExternalRefCountWithDestroyFn + size=24 align=8 + base size=24 base align=8 +QtSharedPointer::ExternalRefCountWithDestroyFn (0x7f7ae5fe7930) 0 + vptr=((& QtSharedPointer::ExternalRefCountWithDestroyFn::_ZTVN15QtSharedPointer29ExternalRefCountWithDestroyFnE) + 16u) + QtSharedPointer::ExternalRefCountData (0x7f7ae5fe79a0) 0 + primary-for QtSharedPointer::ExternalRefCountWithDestroyFn (0x7f7ae5fe7930) + +Class QDate + size=4 align=4 + base size=4 base align=4 +QDate (0x7f7ae606c5b0) 0 + +Class QTime + size=4 align=4 + base size=4 base align=4 +QTime (0x7f7ae609e540) 0 + +Class QDateTime + size=8 align=8 + base size=8 base align=8 +QDateTime (0x7f7ae5eb9af0) 0 + +Class QEasingCurve + size=8 align=8 + base size=8 base align=8 +QEasingCurve (0x7f7ae5f00000) 0 + +Class QPoint + size=8 align=4 + base size=8 base align=4 +QPoint (0x7f7ae5f00ee0) 0 + +Class QPointF + size=16 align=8 + base size=16 base align=8 +QPointF (0x7f7ae5f43af0) 0 + +Class QLine + size=16 align=4 + base size=16 base align=4 +QLine (0x7f7ae5f82af0) 0 + +Class QLineF + size=32 align=8 + base size=32 base align=8 +QLineF (0x7f7ae5db39a0) 0 + +Class QLinkedListData + size=32 align=8 + base size=32 base align=8 +QLinkedListData (0x7f7ae5e10460) 0 + +Class QMargins + size=16 align=4 + base size=16 base align=4 +QMargins (0x7f7ae5ccf380) 0 + +Class QSize + size=8 align=4 + base size=8 base align=4 +QSize (0x7f7ae5cfe150) 0 + +Class QSizeF + size=16 align=8 + base size=16 base align=8 +QSizeF (0x7f7ae5d3ee00) 0 + +Class QRect + size=16 align=4 + base size=16 base align=4 +QRect (0x7f7ae5d92380) 0 + +Class QRectF + size=32 align=8 + base size=32 base align=8 +QRectF (0x7f7ae5c3ed20) 0 + +Class QLatin1Literal + size=16 align=8 + base size=16 base align=8 +QLatin1Literal (0x7f7ae5aeeee0) 0 + +Class QAbstractConcatenable + size=1 align=1 + base size=0 base align=1 +QAbstractConcatenable (0x7f7ae5aff3f0) 0 empty + +Class QTextBoundaryFinder + size=48 align=8 + base size=48 base align=8 +QTextBoundaryFinder (0x7f7ae5b36380) 0 + +Vtable for QTimeLine +QTimeLine::_ZTV9QTimeLine: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QTimeLine) +16 QTimeLine::metaObject +24 QTimeLine::qt_metacast +32 QTimeLine::qt_metacall +40 QTimeLine::~QTimeLine +48 QTimeLine::~QTimeLine +56 QObject::event +64 QObject::eventFilter +72 QTimeLine::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTimeLine::valueForTime + +Class QTimeLine + size=16 align=8 + base size=16 base align=8 +QTimeLine (0x7f7ae5b47700) 0 + vptr=((& QTimeLine::_ZTV9QTimeLine) + 16u) + QObject (0x7f7ae5b47770) 0 + primary-for QTimeLine (0x7f7ae5b47700) + +Vtable for QRunnable +QRunnable::_ZTV9QRunnable: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QRunnable) +16 __cxa_pure_virtual +24 QRunnable::~QRunnable +32 QRunnable::~QRunnable + +Class QRunnable + size=16 align=8 + base size=12 base align=8 +QRunnable (0x7f7ae5b6ef50) 0 + vptr=((& QRunnable::_ZTV9QRunnable) + 16u) + +Class QMutex + size=8 align=8 + base size=8 base align=8 +QMutex (0x7f7ae59a5620) 0 + +Class QMutexLocker + size=8 align=8 + base size=8 base align=8 +QMutexLocker (0x7f7ae59b31c0) 0 + +Vtable for QtConcurrent::Exception +QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent9ExceptionE) +16 QtConcurrent::Exception::~Exception +24 QtConcurrent::Exception::~Exception +32 std::exception::what +40 QtConcurrent::Exception::raise +48 QtConcurrent::Exception::clone + +Class QtConcurrent::Exception + size=8 align=8 + base size=8 base align=8 +QtConcurrent::Exception (0x7f7ae59ca4d0) 0 nearly-empty + vptr=((& QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE) + 16u) + std::exception (0x7f7ae59ca540) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7f7ae59ca4d0) + +Vtable for QtConcurrent::UnhandledException +QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent18UnhandledExceptionE) +16 QtConcurrent::UnhandledException::~UnhandledException +24 QtConcurrent::UnhandledException::~UnhandledException +32 std::exception::what +40 QtConcurrent::UnhandledException::raise +48 QtConcurrent::UnhandledException::clone + +Class QtConcurrent::UnhandledException + size=8 align=8 + base size=8 base align=8 +QtConcurrent::UnhandledException (0x7f7ae59ca770) 0 nearly-empty + vptr=((& QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE) + 16u) + QtConcurrent::Exception (0x7f7ae59ca7e0) 0 nearly-empty + primary-for QtConcurrent::UnhandledException (0x7f7ae59ca770) + std::exception (0x7f7ae59ca850) 0 nearly-empty + primary-for QtConcurrent::Exception (0x7f7ae59ca7e0) + +Class QtConcurrent::internal::ExceptionHolder + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionHolder (0x7f7ae59caa80) 0 + +Class QtConcurrent::internal::ExceptionStore + size=8 align=8 + base size=8 base align=8 +QtConcurrent::internal::ExceptionStore (0x7f7ae59cae00) 0 + +Class QtConcurrent::ResultItem + size=16 align=8 + base size=16 base align=8 +QtConcurrent::ResultItem (0x7f7ae59cae70) 0 + +Class QtConcurrent::ResultIteratorBase + size=16 align=8 + base size=12 base align=8 +QtConcurrent::ResultIteratorBase (0x7f7ae59e3d90) 0 + +Vtable for QtConcurrent::ResultStoreBase +QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent15ResultStoreBaseE) +16 QtConcurrent::ResultStoreBase::~ResultStoreBase +24 QtConcurrent::ResultStoreBase::~ResultStoreBase + +Class QtConcurrent::ResultStoreBase + size=48 align=8 + base size=44 base align=8 +QtConcurrent::ResultStoreBase (0x7f7ae59e7930) 0 + vptr=((& QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE) + 16u) + +Vtable for QFutureInterfaceBase +QFutureInterfaceBase::_ZTV20QFutureInterfaceBase: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QFutureInterfaceBase) +16 QFutureInterfaceBase::~QFutureInterfaceBase +24 QFutureInterfaceBase::~QFutureInterfaceBase + +Class QFutureInterfaceBase + size=16 align=8 + base size=16 base align=8 +QFutureInterfaceBase (0x7f7ae5a24d90) 0 + vptr=((& QFutureInterfaceBase::_ZTV20QFutureInterfaceBase) + 16u) + +Vtable for QFutureWatcherBase +QFutureWatcherBase::_ZTV18QFutureWatcherBase: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QFutureWatcherBase) +16 QFutureWatcherBase::metaObject +24 QFutureWatcherBase::qt_metacast +32 QFutureWatcherBase::qt_metacall +40 QFutureWatcherBase::~QFutureWatcherBase +48 QFutureWatcherBase::~QFutureWatcherBase +56 QFutureWatcherBase::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QFutureWatcherBase::connectNotify +104 QFutureWatcherBase::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual + +Class QFutureWatcherBase + size=16 align=8 + base size=16 base align=8 +QFutureWatcherBase (0x7f7ae590b690) 0 + vptr=((& QFutureWatcherBase::_ZTV18QFutureWatcherBase) + 16u) + QObject (0x7f7ae590b700) 0 + primary-for QFutureWatcherBase (0x7f7ae590b690) + +Vtable for QThread +QThread::_ZTV7QThread: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QThread) +16 QThread::metaObject +24 QThread::qt_metacast +32 QThread::qt_metacall +40 QThread::~QThread +48 QThread::~QThread +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QThread::run + +Class QThread + size=16 align=8 + base size=16 base align=8 +QThread (0x7f7ae595ea80) 0 + vptr=((& QThread::_ZTV7QThread) + 16u) + QObject (0x7f7ae595eaf0) 0 + primary-for QThread (0x7f7ae595ea80) + +Vtable for QThreadPool +QThreadPool::_ZTV11QThreadPool: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QThreadPool) +16 QThreadPool::metaObject +24 QThreadPool::qt_metacast +32 QThreadPool::qt_metacall +40 QThreadPool::~QThreadPool +48 QThreadPool::~QThreadPool +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QThreadPool + size=16 align=8 + base size=16 base align=8 +QThreadPool (0x7f7ae5983930) 0 + vptr=((& QThreadPool::_ZTV11QThreadPool) + 16u) + QObject (0x7f7ae59839a0) 0 + primary-for QThreadPool (0x7f7ae5983930) + +Class QWaitCondition + size=8 align=8 + base size=8 base align=8 +QWaitCondition (0x7f7ae5995ee0) 0 + +Class QSemaphore + size=8 align=8 + base size=8 base align=8 +QSemaphore (0x7f7ae599e460) 0 + +Class QtConcurrent::ThreadEngineBarrier + size=24 align=8 + base size=24 base align=8 +QtConcurrent::ThreadEngineBarrier (0x7f7ae599e9a0) 0 + +Vtable for QtConcurrent::ThreadEngineBase +QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE: 11u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent16ThreadEngineBaseE) +16 QtConcurrent::ThreadEngineBase::run +24 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +32 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +40 QtConcurrent::ThreadEngineBase::start +48 QtConcurrent::ThreadEngineBase::finish +56 QtConcurrent::ThreadEngineBase::threadFunction +64 QtConcurrent::ThreadEngineBase::shouldStartThread +72 QtConcurrent::ThreadEngineBase::shouldThrottleThread +80 __cxa_pure_virtual + +Class QtConcurrent::ThreadEngineBase + size=64 align=8 + base size=64 base align=8 +QtConcurrent::ThreadEngineBase (0x7f7ae599ea80) 0 + vptr=((& QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE) + 16u) + QRunnable (0x7f7ae599eaf0) 0 + primary-for QtConcurrent::ThreadEngineBase (0x7f7ae599ea80) + +VTT for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTTN12QtConcurrent12ThreadEngineIvEE: 2u entries +0 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 24u) +8 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 136u) + +Class QtConcurrent::BlockSizeManager + size=96 align=8 + base size=92 base align=8 +QtConcurrent::BlockSizeManager (0x7f7ae57eaee0) 0 + +Vtable for QFactoryInterface +QFactoryInterface::_ZTV17QFactoryInterface: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QFactoryInterface) +16 QFactoryInterface::~QFactoryInterface +24 QFactoryInterface::~QFactoryInterface +32 __cxa_pure_virtual + +Class QFactoryInterface + size=8 align=8 + base size=8 base align=8 +QFactoryInterface (0x7f7ae548dd20) 0 nearly-empty + vptr=((& QFactoryInterface::_ZTV17QFactoryInterface) + 16u) + +Vtable for QTextCodecFactoryInterface +QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI26QTextCodecFactoryInterface) +16 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +24 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QTextCodecFactoryInterface + size=8 align=8 + base size=8 base align=8 +QTextCodecFactoryInterface (0x7f7ae52c1000) 0 nearly-empty + vptr=((& QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface) + 16u) + QFactoryInterface (0x7f7ae52c1070) 0 nearly-empty + primary-for QTextCodecFactoryInterface (0x7f7ae52c1000) + +Vtable for QTextCodecPlugin +QTextCodecPlugin::_ZTV16QTextCodecPlugin: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QTextCodecPlugin) +16 QTextCodecPlugin::metaObject +24 QTextCodecPlugin::qt_metacast +32 QTextCodecPlugin::qt_metacall +40 QTextCodecPlugin::~QTextCodecPlugin +48 QTextCodecPlugin::~QTextCodecPlugin +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 QTextCodecPlugin::keys +160 QTextCodecPlugin::create +168 (int (*)(...))-0x00000000000000010 +176 (int (*)(...))(& _ZTI16QTextCodecPlugin) +184 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD1Ev +192 QTextCodecPlugin::_ZThn16_N16QTextCodecPluginD0Ev +200 QTextCodecPlugin::_ZThn16_NK16QTextCodecPlugin4keysEv +208 QTextCodecPlugin::_ZThn16_N16QTextCodecPlugin6createERK7QString + +Class QTextCodecPlugin + size=24 align=8 + base size=24 base align=8 +QTextCodecPlugin (0x7f7ae52c9580) 0 + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 16u) + QObject (0x7f7ae52c1a80) 0 + primary-for QTextCodecPlugin (0x7f7ae52c9580) + QTextCodecFactoryInterface (0x7f7ae52c1af0) 16 nearly-empty + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 184u) + QFactoryInterface (0x7f7ae52c1b60) 16 nearly-empty + primary-for QTextCodecFactoryInterface (0x7f7ae52c1af0) + +Class QLibraryInfo + size=1 align=1 + base size=0 base align=1 +QLibraryInfo (0x7f7ae5315150) 0 empty + +Vtable for QEventLoop +QEventLoop::_ZTV10QEventLoop: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QEventLoop) +16 QEventLoop::metaObject +24 QEventLoop::qt_metacast +32 QEventLoop::qt_metacall +40 QEventLoop::~QEventLoop +48 QEventLoop::~QEventLoop +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QEventLoop + size=16 align=8 + base size=16 base align=8 +QEventLoop (0x7f7ae53152a0) 0 + vptr=((& QEventLoop::_ZTV10QEventLoop) + 16u) + QObject (0x7f7ae5315310) 0 + primary-for QEventLoop (0x7f7ae53152a0) + +Vtable for QAbstractEventDispatcher +QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher: 27u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI24QAbstractEventDispatcher) +16 QAbstractEventDispatcher::metaObject +24 QAbstractEventDispatcher::qt_metacast +32 QAbstractEventDispatcher::qt_metacall +40 QAbstractEventDispatcher::~QAbstractEventDispatcher +48 QAbstractEventDispatcher::~QAbstractEventDispatcher +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual +192 __cxa_pure_virtual +200 QAbstractEventDispatcher::startingUp +208 QAbstractEventDispatcher::closingDown + +Class QAbstractEventDispatcher + size=16 align=8 + base size=16 base align=8 +QAbstractEventDispatcher (0x7f7ae5351bd0) 0 + vptr=((& QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher) + 16u) + QObject (0x7f7ae5351c40) 0 + primary-for QAbstractEventDispatcher (0x7f7ae5351bd0) + +Class QModelIndex + size=24 align=8 + base size=24 base align=8 +QModelIndex (0x7f7ae5378a80) 0 + +Class QPersistentModelIndex + size=8 align=8 + base size=8 base align=8 +QPersistentModelIndex (0x7f7ae51a1540) 0 + +Vtable for QAbstractItemModel +QAbstractItemModel::_ZTV18QAbstractItemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractItemModel) +16 QAbstractItemModel::metaObject +24 QAbstractItemModel::qt_metacast +32 QAbstractItemModel::qt_metacall +40 QAbstractItemModel::~QAbstractItemModel +48 QAbstractItemModel::~QAbstractItemModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractItemModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractItemModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractItemModel + size=16 align=8 + base size=16 base align=8 +QAbstractItemModel (0x7f7ae51aa850) 0 + vptr=((& QAbstractItemModel::_ZTV18QAbstractItemModel) + 16u) + QObject (0x7f7ae51aa8c0) 0 + primary-for QAbstractItemModel (0x7f7ae51aa850) + +Vtable for QAbstractTableModel +QAbstractTableModel::_ZTV19QAbstractTableModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractTableModel) +16 QAbstractTableModel::metaObject +24 QAbstractTableModel::qt_metacast +32 QAbstractTableModel::qt_metacall +40 QAbstractTableModel::~QAbstractTableModel +48 QAbstractTableModel::~QAbstractTableModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractTableModel::index +120 QAbstractTableModel::parent +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractTableModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractTableModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractTableModel + size=16 align=8 + base size=16 base align=8 +QAbstractTableModel (0x7f7ae5206b60) 0 + vptr=((& QAbstractTableModel::_ZTV19QAbstractTableModel) + 16u) + QAbstractItemModel (0x7f7ae5206bd0) 0 + primary-for QAbstractTableModel (0x7f7ae5206b60) + QObject (0x7f7ae5206c40) 0 + primary-for QAbstractItemModel (0x7f7ae5206bd0) + +Vtable for QAbstractListModel +QAbstractListModel::_ZTV18QAbstractListModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractListModel) +16 QAbstractListModel::metaObject +24 QAbstractListModel::qt_metacast +32 QAbstractListModel::qt_metacall +40 QAbstractListModel::~QAbstractListModel +48 QAbstractListModel::~QAbstractListModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractListModel::index +120 QAbstractListModel::parent +128 __cxa_pure_virtual +136 QAbstractListModel::columnCount +144 QAbstractListModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractListModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractListModel + size=16 align=8 + base size=16 base align=8 +QAbstractListModel (0x7f7ae52230e0) 0 + vptr=((& QAbstractListModel::_ZTV18QAbstractListModel) + 16u) + QAbstractItemModel (0x7f7ae5223150) 0 + primary-for QAbstractListModel (0x7f7ae52230e0) + QObject (0x7f7ae52231c0) 0 + primary-for QAbstractItemModel (0x7f7ae5223150) + +Class QBasicTimer + size=4 align=4 + base size=4 base align=4 +QBasicTimer (0x7f7ae5253230) 0 + +Vtable for QCoreApplication +QCoreApplication::_ZTV16QCoreApplication: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI16QCoreApplication) +16 QCoreApplication::metaObject +24 QCoreApplication::qt_metacast +32 QCoreApplication::qt_metacall +40 QCoreApplication::~QCoreApplication +48 QCoreApplication::~QCoreApplication +56 QCoreApplication::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QCoreApplication::notify +120 QCoreApplication::compressEvent + +Class QCoreApplication + size=16 align=8 + base size=16 base align=8 +QCoreApplication (0x7f7ae5260620) 0 + vptr=((& QCoreApplication::_ZTV16QCoreApplication) + 16u) + QObject (0x7f7ae5260690) 0 + primary-for QCoreApplication (0x7f7ae5260620) + +Class __exception + size=40 align=8 + base size=40 base align=8 +__exception (0x7f7ae5293310) 0 + +Class QMetaMethod + size=16 align=8 + base size=12 base align=8 +QMetaMethod (0x7f7ae5100770) 0 + +Class QMetaEnum + size=16 align=8 + base size=12 base align=8 +QMetaEnum (0x7f7ae511cbd0) 0 + +Class QMetaProperty + size=32 align=8 + base size=32 base align=8 +QMetaProperty (0x7f7ae512a930) 0 + +Class QMetaClassInfo + size=16 align=8 + base size=12 base align=8 +QMetaClassInfo (0x7f7ae513c000) 0 + +Vtable for QMimeData +QMimeData::_ZTV9QMimeData: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QMimeData) +16 QMimeData::metaObject +24 QMimeData::qt_metacast +32 QMimeData::qt_metacall +40 QMimeData::~QMimeData +48 QMimeData::~QMimeData +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QMimeData::hasFormat +120 QMimeData::formats +128 QMimeData::retrieveData + +Class QMimeData + size=16 align=8 + base size=16 base align=8 +QMimeData (0x7f7ae513caf0) 0 + vptr=((& QMimeData::_ZTV9QMimeData) + 16u) + QObject (0x7f7ae513cb60) 0 + primary-for QMimeData (0x7f7ae513caf0) + +Vtable for QObjectCleanupHandler +QObjectCleanupHandler::_ZTV21QObjectCleanupHandler: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QObjectCleanupHandler) +16 QObjectCleanupHandler::metaObject +24 QObjectCleanupHandler::qt_metacast +32 QObjectCleanupHandler::qt_metacall +40 QObjectCleanupHandler::~QObjectCleanupHandler +48 QObjectCleanupHandler::~QObjectCleanupHandler +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObjectCleanupHandler + size=24 align=8 + base size=24 base align=8 +QObjectCleanupHandler (0x7f7ae515d380) 0 + vptr=((& QObjectCleanupHandler::_ZTV21QObjectCleanupHandler) + 16u) + QObject (0x7f7ae515d3f0) 0 + primary-for QObjectCleanupHandler (0x7f7ae515d380) + +Vtable for QSharedMemory +QSharedMemory::_ZTV13QSharedMemory: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSharedMemory) +16 QSharedMemory::metaObject +24 QSharedMemory::qt_metacast +32 QSharedMemory::qt_metacall +40 QSharedMemory::~QSharedMemory +48 QSharedMemory::~QSharedMemory +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSharedMemory + size=16 align=8 + base size=16 base align=8 +QSharedMemory (0x7f7ae516e4d0) 0 + vptr=((& QSharedMemory::_ZTV13QSharedMemory) + 16u) + QObject (0x7f7ae516e540) 0 + primary-for QSharedMemory (0x7f7ae516e4d0) + +Vtable for QSignalMapper +QSignalMapper::_ZTV13QSignalMapper: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSignalMapper) +16 QSignalMapper::metaObject +24 QSignalMapper::qt_metacast +32 QSignalMapper::qt_metacall +40 QSignalMapper::~QSignalMapper +48 QSignalMapper::~QSignalMapper +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSignalMapper + size=16 align=8 + base size=16 base align=8 +QSignalMapper (0x7f7ae518b2a0) 0 + vptr=((& QSignalMapper::_ZTV13QSignalMapper) + 16u) + QObject (0x7f7ae518b310) 0 + primary-for QSignalMapper (0x7f7ae518b2a0) + +Vtable for QSocketNotifier +QSocketNotifier::_ZTV15QSocketNotifier: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QSocketNotifier) +16 QSocketNotifier::metaObject +24 QSocketNotifier::qt_metacast +32 QSocketNotifier::qt_metacall +40 QSocketNotifier::~QSocketNotifier +48 QSocketNotifier::~QSocketNotifier +56 QSocketNotifier::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QSocketNotifier + size=32 align=8 + base size=25 base align=8 +QSocketNotifier (0x7f7ae4fa6690) 0 + vptr=((& QSocketNotifier::_ZTV15QSocketNotifier) + 16u) + QObject (0x7f7ae4fa6700) 0 + primary-for QSocketNotifier (0x7f7ae4fa6690) + +Class QSystemSemaphore + size=8 align=8 + base size=8 base align=8 +QSystemSemaphore (0x7f7ae4fbfa10) 0 + +Vtable for QTimer +QTimer::_ZTV6QTimer: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QTimer) +16 QTimer::metaObject +24 QTimer::qt_metacast +32 QTimer::qt_metacall +40 QTimer::~QTimer +48 QTimer::~QTimer +56 QObject::event +64 QObject::eventFilter +72 QTimer::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QTimer + size=32 align=8 + base size=29 base align=8 +QTimer (0x7f7ae4fcb460) 0 + vptr=((& QTimer::_ZTV6QTimer) + 16u) + QObject (0x7f7ae4fcb4d0) 0 + primary-for QTimer (0x7f7ae4fcb460) + +Vtable for QTranslator +QTranslator::_ZTV11QTranslator: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTranslator) +16 QTranslator::metaObject +24 QTranslator::qt_metacast +32 QTranslator::qt_metacall +40 QTranslator::~QTranslator +48 QTranslator::~QTranslator +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTranslator::translate +120 QTranslator::isEmpty + +Class QTranslator + size=16 align=8 + base size=16 base align=8 +QTranslator (0x7f7ae4fef9a0) 0 + vptr=((& QTranslator::_ZTV11QTranslator) + 16u) + QObject (0x7f7ae4fefa10) 0 + primary-for QTranslator (0x7f7ae4fef9a0) + +Vtable for QLibrary +QLibrary::_ZTV8QLibrary: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QLibrary) +16 QLibrary::metaObject +24 QLibrary::qt_metacast +32 QLibrary::qt_metacall +40 QLibrary::~QLibrary +48 QLibrary::~QLibrary +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QLibrary + size=32 align=8 + base size=25 base align=8 +QLibrary (0x7f7ae5009930) 0 + vptr=((& QLibrary::_ZTV8QLibrary) + 16u) + QObject (0x7f7ae50099a0) 0 + primary-for QLibrary (0x7f7ae5009930) + +Vtable for QPluginLoader +QPluginLoader::_ZTV13QPluginLoader: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QPluginLoader) +16 QPluginLoader::metaObject +24 QPluginLoader::qt_metacast +32 QPluginLoader::qt_metacall +40 QPluginLoader::~QPluginLoader +48 QPluginLoader::~QPluginLoader +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QPluginLoader + size=32 align=8 + base size=25 base align=8 +QPluginLoader (0x7f7ae50573f0) 0 + vptr=((& QPluginLoader::_ZTV13QPluginLoader) + 16u) + QObject (0x7f7ae5057460) 0 + primary-for QPluginLoader (0x7f7ae50573f0) + +Class QUuid + size=16 align=4 + base size=16 base align=4 +QUuid (0x7f7ae5066b60) 0 + +Class QReadWriteLock + size=8 align=8 + base size=8 base align=8 +QReadWriteLock (0x7f7ae508c4d0) 0 + +Class QReadLocker + size=8 align=8 + base size=8 base align=8 +QReadLocker (0x7f7ae508cb60) 0 + +Class QWriteLocker + size=8 align=8 + base size=8 base align=8 +QWriteLocker (0x7f7ae4eaaee0) 0 + +Class QThreadStorageData + size=4 align=4 + base size=4 base align=4 +QThreadStorageData (0x7f7ae4ec52a0) 0 + +Vtable for QAbstractAnimation +QAbstractAnimation::_ZTV18QAbstractAnimation: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractAnimation) +16 QAbstractAnimation::metaObject +24 QAbstractAnimation::qt_metacast +32 QAbstractAnimation::qt_metacall +40 QAbstractAnimation::~QAbstractAnimation +48 QAbstractAnimation::~QAbstractAnimation +56 QAbstractAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAbstractAnimation::updateState +136 QAbstractAnimation::updateDirection + +Class QAbstractAnimation + size=16 align=8 + base size=16 base align=8 +QAbstractAnimation (0x7f7ae4ec5a10) 0 + vptr=((& QAbstractAnimation::_ZTV18QAbstractAnimation) + 16u) + QObject (0x7f7ae4ec5a80) 0 + primary-for QAbstractAnimation (0x7f7ae4ec5a10) + +Vtable for QAnimationGroup +QAnimationGroup::_ZTV15QAnimationGroup: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QAnimationGroup) +16 QAnimationGroup::metaObject +24 QAnimationGroup::qt_metacast +32 QAnimationGroup::qt_metacall +40 QAnimationGroup::~QAnimationGroup +48 QAnimationGroup::~QAnimationGroup +56 QAnimationGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAbstractAnimation::updateState +136 QAbstractAnimation::updateDirection + +Class QAnimationGroup + size=16 align=8 + base size=16 base align=8 +QAnimationGroup (0x7f7ae4efc150) 0 + vptr=((& QAnimationGroup::_ZTV15QAnimationGroup) + 16u) + QAbstractAnimation (0x7f7ae4efc1c0) 0 + primary-for QAnimationGroup (0x7f7ae4efc150) + QObject (0x7f7ae4efc230) 0 + primary-for QAbstractAnimation (0x7f7ae4efc1c0) + +Vtable for QParallelAnimationGroup +QParallelAnimationGroup::_ZTV23QParallelAnimationGroup: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QParallelAnimationGroup) +16 QParallelAnimationGroup::metaObject +24 QParallelAnimationGroup::qt_metacast +32 QParallelAnimationGroup::qt_metacall +40 QParallelAnimationGroup::~QParallelAnimationGroup +48 QParallelAnimationGroup::~QParallelAnimationGroup +56 QParallelAnimationGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QParallelAnimationGroup::duration +120 QParallelAnimationGroup::updateCurrentTime +128 QParallelAnimationGroup::updateState +136 QParallelAnimationGroup::updateDirection + +Class QParallelAnimationGroup + size=16 align=8 + base size=16 base align=8 +QParallelAnimationGroup (0x7f7ae4f17000) 0 + vptr=((& QParallelAnimationGroup::_ZTV23QParallelAnimationGroup) + 16u) + QAnimationGroup (0x7f7ae4f17070) 0 + primary-for QParallelAnimationGroup (0x7f7ae4f17000) + QAbstractAnimation (0x7f7ae4f170e0) 0 + primary-for QAnimationGroup (0x7f7ae4f17070) + QObject (0x7f7ae4f17150) 0 + primary-for QAbstractAnimation (0x7f7ae4f170e0) + +Vtable for QPauseAnimation +QPauseAnimation::_ZTV15QPauseAnimation: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QPauseAnimation) +16 QPauseAnimation::metaObject +24 QPauseAnimation::qt_metacast +32 QPauseAnimation::qt_metacall +40 QPauseAnimation::~QPauseAnimation +48 QPauseAnimation::~QPauseAnimation +56 QPauseAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QPauseAnimation::duration +120 QPauseAnimation::updateCurrentTime +128 QAbstractAnimation::updateState +136 QAbstractAnimation::updateDirection + +Class QPauseAnimation + size=16 align=8 + base size=16 base align=8 +QPauseAnimation (0x7f7ae4f26e70) 0 + vptr=((& QPauseAnimation::_ZTV15QPauseAnimation) + 16u) + QAbstractAnimation (0x7f7ae4f26ee0) 0 + primary-for QPauseAnimation (0x7f7ae4f26e70) + QObject (0x7f7ae4f26f50) 0 + primary-for QAbstractAnimation (0x7f7ae4f26ee0) + +Vtable for QVariantAnimation +QVariantAnimation::_ZTV17QVariantAnimation: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QVariantAnimation) +16 QVariantAnimation::metaObject +24 QVariantAnimation::qt_metacast +32 QVariantAnimation::qt_metacall +40 QVariantAnimation::~QVariantAnimation +48 QVariantAnimation::~QVariantAnimation +56 QVariantAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QVariantAnimation::duration +120 QVariantAnimation::updateCurrentTime +128 QVariantAnimation::updateState +136 QAbstractAnimation::updateDirection +144 __cxa_pure_virtual +152 QVariantAnimation::interpolated + +Class QVariantAnimation + size=16 align=8 + base size=16 base align=8 +QVariantAnimation (0x7f7ae4f428c0) 0 + vptr=((& QVariantAnimation::_ZTV17QVariantAnimation) + 16u) + QAbstractAnimation (0x7f7ae4f42930) 0 + primary-for QVariantAnimation (0x7f7ae4f428c0) + QObject (0x7f7ae4f429a0) 0 + primary-for QAbstractAnimation (0x7f7ae4f42930) + +Vtable for QPropertyAnimation +QPropertyAnimation::_ZTV18QPropertyAnimation: 20u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QPropertyAnimation) +16 QPropertyAnimation::metaObject +24 QPropertyAnimation::qt_metacast +32 QPropertyAnimation::qt_metacall +40 QPropertyAnimation::~QPropertyAnimation +48 QPropertyAnimation::~QPropertyAnimation +56 QPropertyAnimation::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QVariantAnimation::duration +120 QVariantAnimation::updateCurrentTime +128 QPropertyAnimation::updateState +136 QAbstractAnimation::updateDirection +144 QPropertyAnimation::updateCurrentValue +152 QVariantAnimation::interpolated + +Class QPropertyAnimation + size=16 align=8 + base size=16 base align=8 +QPropertyAnimation (0x7f7ae4f5eb60) 0 + vptr=((& QPropertyAnimation::_ZTV18QPropertyAnimation) + 16u) + QVariantAnimation (0x7f7ae4f5ebd0) 0 + primary-for QPropertyAnimation (0x7f7ae4f5eb60) + QAbstractAnimation (0x7f7ae4f5ec40) 0 + primary-for QVariantAnimation (0x7f7ae4f5ebd0) + QObject (0x7f7ae4f5ecb0) 0 + primary-for QAbstractAnimation (0x7f7ae4f5ec40) + +Vtable for QSequentialAnimationGroup +QSequentialAnimationGroup::_ZTV25QSequentialAnimationGroup: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI25QSequentialAnimationGroup) +16 QSequentialAnimationGroup::metaObject +24 QSequentialAnimationGroup::qt_metacast +32 QSequentialAnimationGroup::qt_metacall +40 QSequentialAnimationGroup::~QSequentialAnimationGroup +48 QSequentialAnimationGroup::~QSequentialAnimationGroup +56 QSequentialAnimationGroup::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QSequentialAnimationGroup::duration +120 QSequentialAnimationGroup::updateCurrentTime +128 QSequentialAnimationGroup::updateState +136 QSequentialAnimationGroup::updateDirection + +Class QSequentialAnimationGroup + size=16 align=8 + base size=16 base align=8 +QSequentialAnimationGroup (0x7f7ae4f79b60) 0 + vptr=((& QSequentialAnimationGroup::_ZTV25QSequentialAnimationGroup) + 16u) + QAnimationGroup (0x7f7ae4f79bd0) 0 + primary-for QSequentialAnimationGroup (0x7f7ae4f79b60) + QAbstractAnimation (0x7f7ae4f79c40) 0 + primary-for QAnimationGroup (0x7f7ae4f79bd0) + QObject (0x7f7ae4f79cb0) 0 + primary-for QAbstractAnimation (0x7f7ae4f79c40) + +Class QSslCertificate + size=8 align=8 + base size=8 base align=8 +QSslCertificate (0x7f7ae4f92bd0) 0 + +Class QSslCipher + size=8 align=8 + base size=8 base align=8 +QSslCipher (0x7f7ae4dad770) 0 + +Vtable for QAbstractSocket +QAbstractSocket::_ZTV15QAbstractSocket: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QAbstractSocket) +16 QAbstractSocket::metaObject +24 QAbstractSocket::qt_metacast +32 QAbstractSocket::qt_metacall +40 QAbstractSocket::~QAbstractSocket +48 QAbstractSocket::~QAbstractSocket +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractSocket::isSequential +120 QIODevice::open +128 QAbstractSocket::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QAbstractSocket::atEnd +168 QIODevice::reset +176 QAbstractSocket::bytesAvailable +184 QAbstractSocket::bytesToWrite +192 QAbstractSocket::canReadLine +200 QAbstractSocket::waitForReadyRead +208 QAbstractSocket::waitForBytesWritten +216 QAbstractSocket::readData +224 QAbstractSocket::readLineData +232 QAbstractSocket::writeData + +Class QAbstractSocket + size=16 align=8 + base size=16 base align=8 +QAbstractSocket (0x7f7ae4dcc0e0) 0 + vptr=((& QAbstractSocket::_ZTV15QAbstractSocket) + 16u) + QIODevice (0x7f7ae4dcc150) 0 + primary-for QAbstractSocket (0x7f7ae4dcc0e0) + QObject (0x7f7ae4dcc1c0) 0 + primary-for QIODevice (0x7f7ae4dcc150) + +Vtable for QTcpSocket +QTcpSocket::_ZTV10QTcpSocket: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTcpSocket) +16 QTcpSocket::metaObject +24 QTcpSocket::qt_metacast +32 QTcpSocket::qt_metacall +40 QTcpSocket::~QTcpSocket +48 QTcpSocket::~QTcpSocket +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractSocket::isSequential +120 QIODevice::open +128 QAbstractSocket::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QAbstractSocket::atEnd +168 QIODevice::reset +176 QAbstractSocket::bytesAvailable +184 QAbstractSocket::bytesToWrite +192 QAbstractSocket::canReadLine +200 QAbstractSocket::waitForReadyRead +208 QAbstractSocket::waitForBytesWritten +216 QAbstractSocket::readData +224 QAbstractSocket::readLineData +232 QAbstractSocket::writeData + +Class QTcpSocket + size=16 align=8 + base size=16 base align=8 +QTcpSocket (0x7f7ae4e05a10) 0 + vptr=((& QTcpSocket::_ZTV10QTcpSocket) + 16u) + QAbstractSocket (0x7f7ae4e05a80) 0 + primary-for QTcpSocket (0x7f7ae4e05a10) + QIODevice (0x7f7ae4e05af0) 0 + primary-for QAbstractSocket (0x7f7ae4e05a80) + QObject (0x7f7ae4e05b60) 0 + primary-for QIODevice (0x7f7ae4e05af0) + +Class QSslError + size=8 align=8 + base size=8 base align=8 +QSslError (0x7f7ae4e234d0) 0 + +Vtable for QSslSocket +QSslSocket::_ZTV10QSslSocket: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QSslSocket) +16 QSslSocket::metaObject +24 QSslSocket::qt_metacast +32 QSslSocket::qt_metacall +40 QSslSocket::~QSslSocket +48 QSslSocket::~QSslSocket +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractSocket::isSequential +120 QIODevice::open +128 QSslSocket::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QSslSocket::atEnd +168 QIODevice::reset +176 QSslSocket::bytesAvailable +184 QSslSocket::bytesToWrite +192 QSslSocket::canReadLine +200 QSslSocket::waitForReadyRead +208 QSslSocket::waitForBytesWritten +216 QSslSocket::readData +224 QAbstractSocket::readLineData +232 QSslSocket::writeData + +Class QSslSocket + size=16 align=8 + base size=16 base align=8 +QSslSocket (0x7f7ae4e2f3f0) 0 + vptr=((& QSslSocket::_ZTV10QSslSocket) + 16u) + QTcpSocket (0x7f7ae4e2f460) 0 + primary-for QSslSocket (0x7f7ae4e2f3f0) + QAbstractSocket (0x7f7ae4e2f4d0) 0 + primary-for QTcpSocket (0x7f7ae4e2f460) + QIODevice (0x7f7ae4e2f540) 0 + primary-for QAbstractSocket (0x7f7ae4e2f4d0) + QObject (0x7f7ae4e2f5b0) 0 + primary-for QIODevice (0x7f7ae4e2f540) + +Class QSslConfiguration + size=8 align=8 + base size=8 base align=8 +QSslConfiguration (0x7f7ae4e6d4d0) 0 + +Class QSslKey + size=8 align=8 + base size=8 base align=8 +QSslKey (0x7f7ae4e7d2a0) 0 + +Class QNetworkRequest + size=8 align=8 + base size=8 base align=8 +QNetworkRequest (0x7f7ae4e7dee0) 0 + +Class QNetworkCacheMetaData + size=8 align=8 + base size=8 base align=8 +QNetworkCacheMetaData (0x7f7ae4cabd90) 0 + +Vtable for QAbstractNetworkCache +QAbstractNetworkCache::_ZTV21QAbstractNetworkCache: 22u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QAbstractNetworkCache) +16 QAbstractNetworkCache::metaObject +24 QAbstractNetworkCache::qt_metacast +32 QAbstractNetworkCache::qt_metacall +40 QAbstractNetworkCache::~QAbstractNetworkCache +48 QAbstractNetworkCache::~QAbstractNetworkCache +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 __cxa_pure_virtual + +Class QAbstractNetworkCache + size=16 align=8 + base size=16 base align=8 +QAbstractNetworkCache (0x7f7ae4cda000) 0 + vptr=((& QAbstractNetworkCache::_ZTV21QAbstractNetworkCache) + 16u) + QObject (0x7f7ae4cda070) 0 + primary-for QAbstractNetworkCache (0x7f7ae4cda000) + +Vtable for QUrlInfo +QUrlInfo::_ZTV8QUrlInfo: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI8QUrlInfo) +16 QUrlInfo::~QUrlInfo +24 QUrlInfo::~QUrlInfo +32 QUrlInfo::setName +40 QUrlInfo::setDir +48 QUrlInfo::setFile +56 QUrlInfo::setSymLink +64 QUrlInfo::setOwner +72 QUrlInfo::setGroup +80 QUrlInfo::setSize +88 QUrlInfo::setWritable +96 QUrlInfo::setReadable +104 QUrlInfo::setPermissions +112 QUrlInfo::setLastModified + +Class QUrlInfo + size=16 align=8 + base size=16 base align=8 +QUrlInfo (0x7f7ae4cef9a0) 0 + vptr=((& QUrlInfo::_ZTV8QUrlInfo) + 16u) + +Vtable for QFtp +QFtp::_ZTV4QFtp: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI4QFtp) +16 QFtp::metaObject +24 QFtp::qt_metacast +32 QFtp::qt_metacall +40 QFtp::~QFtp +48 QFtp::~QFtp +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QFtp + size=16 align=8 + base size=16 base align=8 +QFtp (0x7f7ae4d01930) 0 + vptr=((& QFtp::_ZTV4QFtp) + 16u) + QObject (0x7f7ae4d019a0) 0 + primary-for QFtp (0x7f7ae4d01930) + +Vtable for QHttpHeader +QHttpHeader::_ZTV11QHttpHeader: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QHttpHeader) +16 QHttpHeader::~QHttpHeader +24 QHttpHeader::~QHttpHeader +32 QHttpHeader::toString +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QHttpHeader::parseLine + +Class QHttpHeader + size=16 align=8 + base size=16 base align=8 +QHttpHeader (0x7f7ae4d30f50) 0 + vptr=((& QHttpHeader::_ZTV11QHttpHeader) + 16u) + +Vtable for QHttpResponseHeader +QHttpResponseHeader::_ZTV19QHttpResponseHeader: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QHttpResponseHeader) +16 QHttpResponseHeader::~QHttpResponseHeader +24 QHttpResponseHeader::~QHttpResponseHeader +32 QHttpResponseHeader::toString +40 QHttpResponseHeader::majorVersion +48 QHttpResponseHeader::minorVersion +56 QHttpResponseHeader::parseLine + +Class QHttpResponseHeader + size=16 align=8 + base size=16 base align=8 +QHttpResponseHeader (0x7f7ae4d36e70) 0 + vptr=((& QHttpResponseHeader::_ZTV19QHttpResponseHeader) + 16u) + QHttpHeader (0x7f7ae4d36ee0) 0 + primary-for QHttpResponseHeader (0x7f7ae4d36e70) + +Vtable for QHttpRequestHeader +QHttpRequestHeader::_ZTV18QHttpRequestHeader: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QHttpRequestHeader) +16 QHttpRequestHeader::~QHttpRequestHeader +24 QHttpRequestHeader::~QHttpRequestHeader +32 QHttpRequestHeader::toString +40 QHttpRequestHeader::majorVersion +48 QHttpRequestHeader::minorVersion +56 QHttpRequestHeader::parseLine + +Class QHttpRequestHeader + size=16 align=8 + base size=16 base align=8 +QHttpRequestHeader (0x7f7ae4d4faf0) 0 + vptr=((& QHttpRequestHeader::_ZTV18QHttpRequestHeader) + 16u) + QHttpHeader (0x7f7ae4d4fb60) 0 + primary-for QHttpRequestHeader (0x7f7ae4d4faf0) + +Vtable for QHttp +QHttp::_ZTV5QHttp: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI5QHttp) +16 QHttp::metaObject +24 QHttp::qt_metacast +32 QHttp::qt_metacall +40 QHttp::~QHttp +48 QHttp::~QHttp +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QHttp + size=16 align=8 + base size=16 base align=8 +QHttp (0x7f7ae4d5f700) 0 + vptr=((& QHttp::_ZTV5QHttp) + 16u) + QObject (0x7f7ae4d5f770) 0 + primary-for QHttp (0x7f7ae4d5f700) + +Vtable for QNetworkAccessManager +QNetworkAccessManager::_ZTV21QNetworkAccessManager: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QNetworkAccessManager) +16 QNetworkAccessManager::metaObject +24 QNetworkAccessManager::qt_metacast +32 QNetworkAccessManager::qt_metacall +40 QNetworkAccessManager::~QNetworkAccessManager +48 QNetworkAccessManager::~QNetworkAccessManager +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QNetworkAccessManager::createRequest + +Class QNetworkAccessManager + size=16 align=8 + base size=16 base align=8 +QNetworkAccessManager (0x7f7ae4d968c0) 0 + vptr=((& QNetworkAccessManager::_ZTV21QNetworkAccessManager) + 16u) + QObject (0x7f7ae4d96930) 0 + primary-for QNetworkAccessManager (0x7f7ae4d968c0) + +Class QNetworkCookie + size=8 align=8 + base size=8 base align=8 +QNetworkCookie (0x7f7ae4babe00) 0 + +Vtable for QNetworkCookieJar +QNetworkCookieJar::_ZTV17QNetworkCookieJar: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QNetworkCookieJar) +16 QNetworkCookieJar::metaObject +24 QNetworkCookieJar::qt_metacast +32 QNetworkCookieJar::qt_metacall +40 QNetworkCookieJar::~QNetworkCookieJar +48 QNetworkCookieJar::~QNetworkCookieJar +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QNetworkCookieJar::cookiesForUrl +120 QNetworkCookieJar::setCookiesFromUrl + +Class QNetworkCookieJar + size=16 align=8 + base size=16 base align=8 +QNetworkCookieJar (0x7f7ae4bb8f50) 0 + vptr=((& QNetworkCookieJar::_ZTV17QNetworkCookieJar) + 16u) + QObject (0x7f7ae4bb89a0) 0 + primary-for QNetworkCookieJar (0x7f7ae4bb8f50) + +Vtable for QNetworkDiskCache +QNetworkDiskCache::_ZTV17QNetworkDiskCache: 23u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI17QNetworkDiskCache) +16 QNetworkDiskCache::metaObject +24 QNetworkDiskCache::qt_metacast +32 QNetworkDiskCache::qt_metacall +40 QNetworkDiskCache::~QNetworkDiskCache +48 QNetworkDiskCache::~QNetworkDiskCache +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QNetworkDiskCache::metaData +120 QNetworkDiskCache::updateMetaData +128 QNetworkDiskCache::data +136 QNetworkDiskCache::remove +144 QNetworkDiskCache::cacheSize +152 QNetworkDiskCache::prepare +160 QNetworkDiskCache::insert +168 QNetworkDiskCache::clear +176 QNetworkDiskCache::expire + +Class QNetworkDiskCache + size=16 align=8 + base size=16 base align=8 +QNetworkDiskCache (0x7f7ae4be4e00) 0 + vptr=((& QNetworkDiskCache::_ZTV17QNetworkDiskCache) + 16u) + QAbstractNetworkCache (0x7f7ae4be4e70) 0 + primary-for QNetworkDiskCache (0x7f7ae4be4e00) + QObject (0x7f7ae4be4ee0) 0 + primary-for QAbstractNetworkCache (0x7f7ae4be4e70) + +Vtable for QNetworkReply +QNetworkReply::_ZTV13QNetworkReply: 33u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QNetworkReply) +16 QNetworkReply::metaObject +24 QNetworkReply::qt_metacast +32 QNetworkReply::qt_metacall +40 QNetworkReply::~QNetworkReply +48 QNetworkReply::~QNetworkReply +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QNetworkReply::isSequential +120 QIODevice::open +128 QNetworkReply::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QIODevice::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 __cxa_pure_virtual +224 QIODevice::readLineData +232 QNetworkReply::writeData +240 __cxa_pure_virtual +248 QNetworkReply::setReadBufferSize +256 QNetworkReply::ignoreSslErrors + +Class QNetworkReply + size=16 align=8 + base size=16 base align=8 +QNetworkReply (0x7f7ae4c09770) 0 + vptr=((& QNetworkReply::_ZTV13QNetworkReply) + 16u) + QIODevice (0x7f7ae4c097e0) 0 + primary-for QNetworkReply (0x7f7ae4c09770) + QObject (0x7f7ae4c09850) 0 + primary-for QIODevice (0x7f7ae4c097e0) + +Class QAuthenticator + size=8 align=8 + base size=8 base align=8 +QAuthenticator (0x7f7ae4c2f3f0) 0 + +Class QIPv6Address + size=16 align=1 + base size=16 base align=1 +QIPv6Address (0x7f7ae4c2fcb0) 0 + +Class QHostAddress + size=8 align=8 + base size=8 base align=8 +QHostAddress (0x7f7ae4c3c310) 0 + +Class QHostInfo + size=8 align=8 + base size=8 base align=8 +QHostInfo (0x7f7ae4c6d310) 0 + +Class QNetworkAddressEntry + size=8 align=8 + base size=8 base align=8 +QNetworkAddressEntry (0x7f7ae4c6dc40) 0 + +Class QNetworkInterface + size=8 align=8 + base size=8 base align=8 +QNetworkInterface (0x7f7ae4c84540) 0 + +Class QNetworkProxyQuery + size=8 align=8 + base size=8 base align=8 +QNetworkProxyQuery (0x7f7ae4ad3230) 0 + +Class QNetworkProxy + size=8 align=8 + base size=8 base align=8 +QNetworkProxy (0x7f7ae4aea4d0) 0 + +Vtable for QNetworkProxyFactory +QNetworkProxyFactory::_ZTV20QNetworkProxyFactory: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QNetworkProxyFactory) +16 QNetworkProxyFactory::~QNetworkProxyFactory +24 QNetworkProxyFactory::~QNetworkProxyFactory +32 __cxa_pure_virtual + +Class QNetworkProxyFactory + size=8 align=8 + base size=8 base align=8 +QNetworkProxyFactory (0x7f7ae4b2d930) 0 nearly-empty + vptr=((& QNetworkProxyFactory::_ZTV20QNetworkProxyFactory) + 16u) + +Vtable for QLocalServer +QLocalServer::_ZTV12QLocalServer: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QLocalServer) +16 QLocalServer::metaObject +24 QLocalServer::qt_metacast +32 QLocalServer::qt_metacall +40 QLocalServer::~QLocalServer +48 QLocalServer::~QLocalServer +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QLocalServer::hasPendingConnections +120 QLocalServer::nextPendingConnection +128 QLocalServer::incomingConnection + +Class QLocalServer + size=16 align=8 + base size=16 base align=8 +QLocalServer (0x7f7ae4b2dc40) 0 + vptr=((& QLocalServer::_ZTV12QLocalServer) + 16u) + QObject (0x7f7ae4b2dcb0) 0 + primary-for QLocalServer (0x7f7ae4b2dc40) + +Vtable for QLocalSocket +QLocalSocket::_ZTV12QLocalSocket: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QLocalSocket) +16 QLocalSocket::metaObject +24 QLocalSocket::qt_metacast +32 QLocalSocket::qt_metacall +40 QLocalSocket::~QLocalSocket +48 QLocalSocket::~QLocalSocket +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QLocalSocket::isSequential +120 QIODevice::open +128 QLocalSocket::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QIODevice::atEnd +168 QIODevice::reset +176 QLocalSocket::bytesAvailable +184 QLocalSocket::bytesToWrite +192 QLocalSocket::canReadLine +200 QLocalSocket::waitForReadyRead +208 QLocalSocket::waitForBytesWritten +216 QLocalSocket::readData +224 QIODevice::readLineData +232 QLocalSocket::writeData + +Class QLocalSocket + size=16 align=8 + base size=16 base align=8 +QLocalSocket (0x7f7ae4b58620) 0 + vptr=((& QLocalSocket::_ZTV12QLocalSocket) + 16u) + QIODevice (0x7f7ae4b58690) 0 + primary-for QLocalSocket (0x7f7ae4b58620) + QObject (0x7f7ae4b58700) 0 + primary-for QIODevice (0x7f7ae4b58690) + +Vtable for QTcpServer +QTcpServer::_ZTV10QTcpServer: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTcpServer) +16 QTcpServer::metaObject +24 QTcpServer::qt_metacast +32 QTcpServer::qt_metacall +40 QTcpServer::~QTcpServer +48 QTcpServer::~QTcpServer +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QTcpServer::hasPendingConnections +120 QTcpServer::nextPendingConnection +128 QTcpServer::incomingConnection + +Class QTcpServer + size=16 align=8 + base size=16 base align=8 +QTcpServer (0x7f7ae4b7d7e0) 0 + vptr=((& QTcpServer::_ZTV10QTcpServer) + 16u) + QObject (0x7f7ae4b7d850) 0 + primary-for QTcpServer (0x7f7ae4b7d7e0) + +Vtable for QUdpSocket +QUdpSocket::_ZTV10QUdpSocket: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QUdpSocket) +16 QUdpSocket::metaObject +24 QUdpSocket::qt_metacast +32 QUdpSocket::qt_metacall +40 QUdpSocket::~QUdpSocket +48 QUdpSocket::~QUdpSocket +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractSocket::isSequential +120 QIODevice::open +128 QAbstractSocket::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QAbstractSocket::atEnd +168 QIODevice::reset +176 QAbstractSocket::bytesAvailable +184 QAbstractSocket::bytesToWrite +192 QAbstractSocket::canReadLine +200 QAbstractSocket::waitForReadyRead +208 QAbstractSocket::waitForBytesWritten +216 QAbstractSocket::readData +224 QAbstractSocket::readLineData +232 QAbstractSocket::writeData + +Class QUdpSocket + size=16 align=8 + base size=16 base align=8 +QUdpSocket (0x7f7ae499a310) 0 + vptr=((& QUdpSocket::_ZTV10QUdpSocket) + 16u) + QAbstractSocket (0x7f7ae499a380) 0 + primary-for QUdpSocket (0x7f7ae499a310) + QIODevice (0x7f7ae499a3f0) 0 + primary-for QAbstractSocket (0x7f7ae499a380) + QObject (0x7f7ae499a460) 0 + primary-for QIODevice (0x7f7ae499a3f0) + +Class QSourceLocation + size=24 align=8 + base size=24 base align=8 +QSourceLocation (0x7f7ae49e6070) 0 + +Vtable for QAbstractMessageHandler +QAbstractMessageHandler::_ZTV23QAbstractMessageHandler: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI23QAbstractMessageHandler) +16 QAbstractMessageHandler::metaObject +24 QAbstractMessageHandler::qt_metacast +32 QAbstractMessageHandler::qt_metacall +40 QAbstractMessageHandler::~QAbstractMessageHandler +48 QAbstractMessageHandler::~QAbstractMessageHandler +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual + +Class QAbstractMessageHandler + size=16 align=8 + base size=16 base align=8 +QAbstractMessageHandler (0x7f7ae49e6d20) 0 + vptr=((& QAbstractMessageHandler::_ZTV23QAbstractMessageHandler) + 16u) + QObject (0x7f7ae49e6d90) 0 + primary-for QAbstractMessageHandler (0x7f7ae49e6d20) + +Vtable for QAbstractUriResolver +QAbstractUriResolver::_ZTV20QAbstractUriResolver: 15u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QAbstractUriResolver) +16 QAbstractUriResolver::metaObject +24 QAbstractUriResolver::qt_metacast +32 QAbstractUriResolver::qt_metacall +40 QAbstractUriResolver::~QAbstractUriResolver +48 QAbstractUriResolver::~QAbstractUriResolver +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual + +Class QAbstractUriResolver + size=16 align=8 + base size=16 base align=8 +QAbstractUriResolver (0x7f7ae4a0b700) 0 + vptr=((& QAbstractUriResolver::_ZTV20QAbstractUriResolver) + 16u) + QObject (0x7f7ae4a0b770) 0 + primary-for QAbstractUriResolver (0x7f7ae4a0b700) + +Class QXmlName + size=8 align=8 + base size=8 base align=8 +QXmlName (0x7f7ae4a26000) 0 + +Class QPatternist::NodeIndexStorage + size=24 align=8 + base size=24 base align=8 +QPatternist::NodeIndexStorage (0x7f7ae4a3e3f0) 0 + +Class QXmlNodeModelIndex + size=24 align=8 + base size=24 base align=8 +QXmlNodeModelIndex (0x7f7ae4a3eb60) 0 + +Vtable for QAbstractXmlNodeModel +QAbstractXmlNodeModel::_ZTV21QAbstractXmlNodeModel: 24u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI21QAbstractXmlNodeModel) +16 QAbstractXmlNodeModel::~QAbstractXmlNodeModel +24 QAbstractXmlNodeModel::~QAbstractXmlNodeModel +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 QAbstractXmlNodeModel::iterate +104 QAbstractXmlNodeModel::sequencedTypedValue +112 QAbstractXmlNodeModel::type +120 QAbstractXmlNodeModel::namespaceForPrefix +128 QAbstractXmlNodeModel::isDeepEqual +136 QAbstractXmlNodeModel::sendNamespaces +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 __cxa_pure_virtual +168 QAbstractXmlNodeModel::copyNodeTo +176 __cxa_pure_virtual +184 __cxa_pure_virtual + +Class QAbstractXmlNodeModel + size=24 align=8 + base size=24 base align=8 +QAbstractXmlNodeModel (0x7f7ae48ab1c0) 0 + vptr=((& QAbstractXmlNodeModel::_ZTV21QAbstractXmlNodeModel) + 16u) + QSharedData (0x7f7ae48ab230) 8 + +Class QXmlItem + size=24 align=8 + base size=24 base align=8 +QXmlItem (0x7f7ae48b8e70) 0 + +Vtable for QAbstractXmlReceiver +QAbstractXmlReceiver::_ZTV20QAbstractXmlReceiver: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI20QAbstractXmlReceiver) +16 QAbstractXmlReceiver::~QAbstractXmlReceiver +24 QAbstractXmlReceiver::~QAbstractXmlReceiver +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 QAbstractXmlReceiver::whitespaceOnly +136 QAbstractXmlReceiver::item + +Class QAbstractXmlReceiver + size=16 align=8 + base size=16 base align=8 +QAbstractXmlReceiver (0x7f7ae48d3d90) 0 + vptr=((& QAbstractXmlReceiver::_ZTV20QAbstractXmlReceiver) + 16u) + +Class QXmlNamePool + size=8 align=8 + base size=8 base align=8 +QXmlNamePool (0x7f7ae48f65b0) 0 + +Class QXmlQuery + size=8 align=8 + base size=8 base align=8 +QXmlQuery (0x7f7ae48f6c40) 0 + +Vtable for QSimpleXmlNodeModel +QSimpleXmlNodeModel::_ZTV19QSimpleXmlNodeModel: 24u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QSimpleXmlNodeModel) +16 QSimpleXmlNodeModel::~QSimpleXmlNodeModel +24 QSimpleXmlNodeModel::~QSimpleXmlNodeModel +32 QSimpleXmlNodeModel::baseUri +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 QSimpleXmlNodeModel::stringValue +88 __cxa_pure_virtual +96 QAbstractXmlNodeModel::iterate +104 QAbstractXmlNodeModel::sequencedTypedValue +112 QAbstractXmlNodeModel::type +120 QAbstractXmlNodeModel::namespaceForPrefix +128 QAbstractXmlNodeModel::isDeepEqual +136 QAbstractXmlNodeModel::sendNamespaces +144 QSimpleXmlNodeModel::namespaceBindings +152 QSimpleXmlNodeModel::elementById +160 QSimpleXmlNodeModel::nodesByIdref +168 QAbstractXmlNodeModel::copyNodeTo +176 __cxa_pure_virtual +184 __cxa_pure_virtual + +Class QSimpleXmlNodeModel + size=24 align=8 + base size=24 base align=8 +QSimpleXmlNodeModel (0x7f7ae49107e0) 0 + vptr=((& QSimpleXmlNodeModel::_ZTV19QSimpleXmlNodeModel) + 16u) + QAbstractXmlNodeModel (0x7f7ae4910850) 0 + primary-for QSimpleXmlNodeModel (0x7f7ae49107e0) + QSharedData (0x7f7ae49108c0) 8 + +Vtable for QXmlSerializer +QXmlSerializer::_ZTV14QXmlSerializer: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI14QXmlSerializer) +16 QXmlSerializer::~QXmlSerializer +24 QXmlSerializer::~QXmlSerializer +32 QXmlSerializer::startElement +40 QXmlSerializer::endElement +48 QXmlSerializer::attribute +56 QXmlSerializer::comment +64 QXmlSerializer::characters +72 QXmlSerializer::startDocument +80 QXmlSerializer::endDocument +88 QXmlSerializer::processingInstruction +96 QXmlSerializer::atomicValue +104 QXmlSerializer::namespaceBinding +112 QXmlSerializer::startOfSequence +120 QXmlSerializer::endOfSequence +128 QAbstractXmlReceiver::whitespaceOnly +136 QXmlSerializer::item + +Class QXmlSerializer + size=16 align=8 + base size=16 base align=8 +QXmlSerializer (0x7f7ae4928000) 0 + vptr=((& QXmlSerializer::_ZTV14QXmlSerializer) + 16u) + QAbstractXmlReceiver (0x7f7ae4928070) 0 + primary-for QXmlSerializer (0x7f7ae4928000) + +Vtable for QXmlFormatter +QXmlFormatter::_ZTV13QXmlFormatter: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QXmlFormatter) +16 QXmlFormatter::~QXmlFormatter +24 QXmlFormatter::~QXmlFormatter +32 QXmlFormatter::startElement +40 QXmlFormatter::endElement +48 QXmlFormatter::attribute +56 QXmlFormatter::comment +64 QXmlFormatter::characters +72 QXmlFormatter::startDocument +80 QXmlFormatter::endDocument +88 QXmlFormatter::processingInstruction +96 QXmlFormatter::atomicValue +104 QXmlSerializer::namespaceBinding +112 QXmlFormatter::startOfSequence +120 QXmlFormatter::endOfSequence +128 QAbstractXmlReceiver::whitespaceOnly +136 QXmlFormatter::item + +Class QXmlFormatter + size=16 align=8 + base size=16 base align=8 +QXmlFormatter (0x7f7ae49287e0) 0 + vptr=((& QXmlFormatter::_ZTV13QXmlFormatter) + 16u) + QXmlSerializer (0x7f7ae4928850) 0 + primary-for QXmlFormatter (0x7f7ae49287e0) + QAbstractXmlReceiver (0x7f7ae49288c0) 0 + primary-for QXmlSerializer (0x7f7ae4928850) + +Vtable for QXmlResultItems +QXmlResultItems::_ZTV15QXmlResultItems: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QXmlResultItems) +16 QXmlResultItems::~QXmlResultItems +24 QXmlResultItems::~QXmlResultItems + +Class QXmlResultItems + size=16 align=8 + base size=16 base align=8 +QXmlResultItems (0x7f7ae4928f50) 0 + vptr=((& QXmlResultItems::_ZTV15QXmlResultItems) + 16u) + +Class QXmlSchema + size=8 align=8 + base size=8 base align=8 +QXmlSchema (0x7f7ae4947af0) 0 + +Class QXmlSchemaValidator + size=8 align=8 + base size=8 base align=8 +QXmlSchemaValidator (0x7f7ae4947f50) 0 + diff --git a/tests/auto/bic/data/phonon.4.5.0.linux-gcc-amd64.txt b/tests/auto/bic/data/phonon.4.5.0.linux-gcc-amd64.txt new file mode 100644 index 0000000..08dbee8 --- /dev/null +++ b/tests/auto/bic/data/phonon.4.5.0.linux-gcc-amd64.txt @@ -0,0 +1,1931 @@ + +Class QSysInfo + size=1 align=1 + base size=0 base align=1 +QSysInfo (0x7f09e42d13f0) 0 empty + +Class QBool + size=1 align=1 + base size=1 base align=1 +QBool (0x7f09e42e80e0) 0 + +Class qIsNull(double)::U + size=8 align=8 + base size=8 base align=8 +qIsNull(double)::U (0x7f09e42fd4d0) 0 + +Class qIsNull(float)::U + size=4 align=4 + base size=4 base align=4 +qIsNull(float)::U (0x7f09e42fd770) 0 + +Class QFlag + size=4 align=4 + base size=4 base align=4 +QFlag (0x7f09e3a1c5b0) 0 + +Class QIncompatibleFlag + size=4 align=4 + base size=4 base align=4 +QIncompatibleFlag (0x7f09e3a1cd90) 0 + +Class QBasicAtomicInt + size=4 align=4 + base size=4 base align=4 +QBasicAtomicInt (0x7f09e3a483f0) 0 + +Class QAtomicInt + size=4 align=4 + base size=4 base align=4 +QAtomicInt (0x7f09e3a9dd90) 0 + QBasicAtomicInt (0x7f09e3a9de00) 0 + +Class QSharedData + size=4 align=4 + base size=4 base align=4 +QSharedData (0x7f09e3ac0230) 0 + +Class QLatin1Char + size=1 align=1 + base size=1 base align=1 +QLatin1Char (0x7f09e3928700) 0 + +Class QChar + size=2 align=2 + base size=2 base align=2 +QChar (0x7f09e3950af0) 0 + +Vtable for std::exception +std::exception::_ZTVSt9exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9exception) +16 std::exception::~exception +24 std::exception::~exception +32 std::exception::what + +Class std::exception + size=8 align=8 + base size=8 base align=8 +std::exception (0x7f09e39bbbd0) 0 nearly-empty + vptr=((& std::exception::_ZTVSt9exception) + 16u) + +Vtable for std::bad_exception +std::bad_exception::_ZTVSt13bad_exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13bad_exception) +16 std::bad_exception::~bad_exception +24 std::bad_exception::~bad_exception +32 std::bad_exception::what + +Class std::bad_exception + size=8 align=8 + base size=8 base align=8 +std::bad_exception (0x7f09e39c8150) 0 nearly-empty + vptr=((& std::bad_exception::_ZTVSt13bad_exception) + 16u) + std::exception (0x7f09e39c81c0) 0 nearly-empty + primary-for std::bad_exception (0x7f09e39c8150) + +Vtable for std::bad_alloc +std::bad_alloc::_ZTVSt9bad_alloc: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9bad_alloc) +16 std::bad_alloc::~bad_alloc +24 std::bad_alloc::~bad_alloc +32 std::bad_alloc::what + +Class std::bad_alloc + size=8 align=8 + base size=8 base align=8 +std::bad_alloc (0x7f09e39c8a10) 0 nearly-empty + vptr=((& std::bad_alloc::_ZTVSt9bad_alloc) + 16u) + std::exception (0x7f09e39c8a80) 0 nearly-empty + primary-for std::bad_alloc (0x7f09e39c8a10) + +Class std::nothrow_t + size=1 align=1 + base size=0 base align=1 +std::nothrow_t (0x7f09e39db230) 0 empty + +Class QListData::Data + size=32 align=8 + base size=32 base align=8 +QListData::Data (0x7f09e39db770) 0 + +Class QListData + size=8 align=8 + base size=8 base align=8 +QListData (0x7f09e39db700) 0 + +Class QInternal + size=1 align=1 + base size=0 base align=1 +QInternal (0x7f09e3699e00) 0 empty + +Class QGenericArgument + size=16 align=8 + base size=16 base align=8 +QGenericArgument (0x7f09e36b3150) 0 + +Class QGenericReturnArgument + size=16 align=8 + base size=16 base align=8 +QGenericReturnArgument (0x7f09e36b3cb0) 0 + QGenericArgument (0x7f09e36b3d20) 0 + +Class QMetaObject + size=32 align=8 + base size=32 base align=8 +QMetaObject (0x7f09e36bf5b0) 0 + +Class QMetaObjectExtraData + size=16 align=8 + base size=16 base align=8 +QMetaObjectExtraData (0x7f09e36e65b0) 0 + +Class __locale_struct + size=232 align=8 + base size=232 base align=8 +__locale_struct (0x7f09e36f9000) 0 + +Class QByteArray::Data + size=32 align=8 + base size=32 base align=8 +QByteArray::Data (0x7f09e3564620) 0 + +Class QByteArray + size=8 align=8 + base size=8 base align=8 +QByteArray (0x7f09e3523380) 0 + +Class QByteRef + size=16 align=8 + base size=12 base align=8 +QByteRef (0x7f09e35ba8c0) 0 + +Class QString::Null + size=1 align=1 + base size=0 base align=1 +QString::Null (0x7f09e34c3540) 0 empty + +Class QString::Data + size=32 align=8 + base size=32 base align=8 +QString::Data (0x7f09e34d2d20) 0 + +Class QString + size=8 align=8 + base size=8 base align=8 +QString (0x7f09e34443f0) 0 + +Class QLatin1String + size=8 align=8 + base size=8 base align=8 +QLatin1String (0x7f09e33a7e00) 0 + +Class QCharRef + size=16 align=8 + base size=12 base align=8 +QCharRef (0x7f09e3243460) 0 + +Class QConstString + size=8 align=8 + base size=8 base align=8 +QConstString (0x7f09e318dcb0) 0 + QString (0x7f09e318dd20) 0 + +Class QStringRef + size=16 align=8 + base size=16 base align=8 +QStringRef (0x7f09e31ab9a0) 0 + +Vtable for QObjectData +QObjectData::_ZTV11QObjectData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QObjectData) +16 __cxa_pure_virtual +24 __cxa_pure_virtual + +Class QObjectData + size=40 align=8 + base size=40 base align=8 +QObjectData (0x7f09e3029cb0) 0 + vptr=((& QObjectData::_ZTV11QObjectData) + 16u) + +Vtable for QObject +QObject::_ZTV7QObject: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QObject) +16 QObject::metaObject +24 QObject::qt_metacast +32 QObject::qt_metacall +40 QObject::~QObject +48 QObject::~QObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObject + size=16 align=8 + base size=16 base align=8 +QObject (0x7f09e3029f50) 0 + vptr=((& QObject::_ZTV7QObject) + 16u) + +Vtable for QObjectUserData +QObjectUserData::_ZTV15QObjectUserData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QObjectUserData) +16 QObjectUserData::~QObjectUserData +24 QObjectUserData::~QObjectUserData + +Class QObjectUserData + size=8 align=8 + base size=8 base align=8 +QObjectUserData (0x7f09e30a64d0) 0 nearly-empty + vptr=((& QObjectUserData::_ZTV15QObjectUserData) + 16u) + +Vtable for QIODevice +QIODevice::_ZTV9QIODevice: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QIODevice) +16 QIODevice::metaObject +24 QIODevice::qt_metacast +32 QIODevice::qt_metacall +40 QIODevice::~QIODevice +48 QIODevice::~QIODevice +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QIODevice::isSequential +120 QIODevice::open +128 QIODevice::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QIODevice::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 __cxa_pure_virtual +224 QIODevice::readLineData +232 __cxa_pure_virtual + +Class QIODevice + size=16 align=8 + base size=16 base align=8 +QIODevice (0x7f09e30a6a10) 0 + vptr=((& QIODevice::_ZTV9QIODevice) + 16u) + QObject (0x7f09e30a6a80) 0 + primary-for QIODevice (0x7f09e30a6a10) + +Vtable for QDataStream +QDataStream::_ZTV11QDataStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QDataStream) +16 QDataStream::~QDataStream +24 QDataStream::~QDataStream + +Class QDataStream + size=40 align=8 + base size=40 base align=8 +QDataStream (0x7f09e2f0d380) 0 + vptr=((& QDataStream::_ZTV11QDataStream) + 16u) + +Class QHashData::Node + size=16 align=8 + base size=16 base align=8 +QHashData::Node (0x7f09e2f91230) 0 + +Class QHashData + size=40 align=8 + base size=40 base align=8 +QHashData (0x7f09e2f911c0) 0 + +Class QHashDummyValue + size=1 align=1 + base size=0 base align=1 +QHashDummyValue (0x7f09e2fa6000) 0 empty + +Class QMapData::Node + size=16 align=8 + base size=16 base align=8 +QMapData::Node (0x7f09e2eb4770) 0 + +Class QMapData + size=128 align=8 + base size=128 base align=8 +QMapData (0x7f09e2eb4700) 0 + +Vtable for QSystemLocale +QSystemLocale::_ZTV13QSystemLocale: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSystemLocale) +16 QSystemLocale::~QSystemLocale +24 QSystemLocale::~QSystemLocale +32 QSystemLocale::query +40 QSystemLocale::fallbackLocale + +Class QSystemLocale + size=8 align=8 + base size=8 base align=8 +QSystemLocale (0x7f09e2dc3ee0) 0 nearly-empty + vptr=((& QSystemLocale::_ZTV13QSystemLocale) + 16u) + +Class QLocale::Data + size=4 align=2 + base size=4 base align=2 +QLocale::Data (0x7f09e2c274d0) 0 + +Class QLocale + size=8 align=8 + base size=8 base align=8 +QLocale (0x7f09e2de71c0) 0 + +Class QTextCodec::ConverterState + size=32 align=8 + base size=32 base align=8 +QTextCodec::ConverterState (0x7f09e2c75f50) 0 + +Vtable for QTextCodec +QTextCodec::_ZTV10QTextCodec: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextCodec) +16 __cxa_pure_virtual +24 QTextCodec::aliases +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QTextCodec::~QTextCodec +64 QTextCodec::~QTextCodec + +Class QTextCodec + size=8 align=8 + base size=8 base align=8 +QTextCodec (0x7f09e2c5fb60) 0 nearly-empty + vptr=((& QTextCodec::_ZTV10QTextCodec) + 16u) + +Class QTextEncoder + size=40 align=8 + base size=40 base align=8 +QTextEncoder (0x7f09e2ce14d0) 0 + +Class QTextDecoder + size=40 align=8 + base size=40 base align=8 +QTextDecoder (0x7f09e2aea310) 0 + +Class _IO_marker + size=24 align=8 + base size=24 base align=8 +_IO_marker (0x7f09e2af3380) 0 + +Class _IO_FILE + size=216 align=8 + base size=216 base align=8 +_IO_FILE (0x7f09e2af33f0) 0 + +Vtable for QTextStream +QTextStream::_ZTV11QTextStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTextStream) +16 QTextStream::~QTextStream +24 QTextStream::~QTextStream + +Class QTextStream + size=16 align=8 + base size=16 base align=8 +QTextStream (0x7f09e2af34d0) 0 + vptr=((& QTextStream::_ZTV11QTextStream) + 16u) + +Class QTextStreamManipulator + size=40 align=8 + base size=38 base align=8 +QTextStreamManipulator (0x7f09e2b98000) 0 + +Vtable for QTextIStream +QTextIStream::_ZTV12QTextIStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextIStream) +16 QTextIStream::~QTextIStream +24 QTextIStream::~QTextIStream + +Class QTextIStream + size=16 align=8 + base size=16 base align=8 +QTextIStream (0x7f09e2bb62a0) 0 + vptr=((& QTextIStream::_ZTV12QTextIStream) + 16u) + QTextStream (0x7f09e2bb6310) 0 + primary-for QTextIStream (0x7f09e2bb62a0) + +Vtable for QTextOStream +QTextOStream::_ZTV12QTextOStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextOStream) +16 QTextOStream::~QTextOStream +24 QTextOStream::~QTextOStream + +Class QTextOStream + size=16 align=8 + base size=16 base align=8 +QTextOStream (0x7f09e2bcd150) 0 + vptr=((& QTextOStream::_ZTV12QTextOStream) + 16u) + QTextStream (0x7f09e2bcd1c0) 0 + primary-for QTextOStream (0x7f09e2bcd150) + +Class wait + size=4 align=4 + base size=4 base align=4 +wait (0x7f09e2be0000) 0 + +Class timespec + size=16 align=8 + base size=16 base align=8 +timespec (0x7f09e2be0310) 0 + +Class timeval + size=16 align=8 + base size=16 base align=8 +timeval (0x7f09e2be0380) 0 + +Class __pthread_internal_list + size=16 align=8 + base size=16 base align=8 +__pthread_internal_list (0x7f09e2be04d0) 0 + +Class random_data + size=48 align=8 + base size=48 base align=8 +random_data (0x7f09e2be0a80) 0 + +Class drand48_data + size=24 align=8 + base size=24 base align=8 +drand48_data (0x7f09e2be0af0) 0 + +Class QVectorData + size=16 align=4 + base size=16 base align=4 +QVectorData (0x7f09e2be0b60) 0 + +Class QDebug::Stream + size=40 align=8 + base size=34 base align=8 +QDebug::Stream (0x7f09e2961310) 0 + +Class QDebug + size=8 align=8 + base size=8 base align=8 +QDebug (0x7f09e29612a0) 0 + +Class QNoDebug + size=1 align=1 + base size=0 base align=1 +QNoDebug (0x7f09e27fe150) 0 empty + +Class QMetaType + size=1 align=1 + base size=0 base align=1 +QMetaType (0x7f09e2810700) 0 empty + +Class QVariant::PrivateShared + size=16 align=8 + base size=12 base align=8 +QVariant::PrivateShared (0x7f09e26fac40) 0 + +Class QVariant::Private::Data + size=8 align=8 + base size=8 base align=8 +QVariant::Private::Data (0x7f09e26faf50) 0 + +Class QVariant::Private + size=16 align=8 + base size=12 base align=8 +QVariant::Private (0x7f09e26fad20) 0 + +Class QVariant::Handler + size=72 align=8 + base size=72 base align=8 +QVariant::Handler (0x7f09e270ec40) 0 + +Class QVariant + size=16 align=8 + base size=16 base align=8 +QVariant (0x7f09e28d0e00) 0 + +Class QVariantComparisonHelper + size=8 align=8 + base size=8 base align=8 +QVariantComparisonHelper (0x7f09e27cb000) 0 + +Class Phonon::ObjectDescriptionData + size=16 align=8 + base size=16 base align=8 +Phonon::ObjectDescriptionData (0x7f09e25e1000) 0 + QSharedData (0x7f09e25e1070) 0 + +Class Phonon::Path + size=8 align=8 + base size=8 base align=8 +Phonon::Path (0x7f09e262ed20) 0 + +Vtable for Phonon::MediaNode +Phonon::MediaNode::_ZTVN6Phonon9MediaNodeE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN6Phonon9MediaNodeE) +16 Phonon::MediaNode::~MediaNode +24 Phonon::MediaNode::~MediaNode + +Class Phonon::MediaNode + size=16 align=8 + base size=16 base align=8 +Phonon::MediaNode (0x7f09e2650540) 0 + vptr=((& Phonon::MediaNode::_ZTVN6Phonon9MediaNodeE) + 16u) + +Vtable for Phonon::AbstractVideoOutput +Phonon::AbstractVideoOutput::_ZTVN6Phonon19AbstractVideoOutputE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN6Phonon19AbstractVideoOutputE) +16 Phonon::AbstractVideoOutput::~AbstractVideoOutput +24 Phonon::AbstractVideoOutput::~AbstractVideoOutput + +Class Phonon::AbstractVideoOutput + size=16 align=8 + base size=16 base align=8 +Phonon::AbstractVideoOutput (0x7f09e2650cb0) 0 + vptr=((& Phonon::AbstractVideoOutput::_ZTVN6Phonon19AbstractVideoOutputE) + 16u) + Phonon::MediaNode (0x7f09e2650d20) 0 + primary-for Phonon::AbstractVideoOutput (0x7f09e2650cb0) + +Class Phonon::MediaSource + size=8 align=8 + base size=8 base align=8 +Phonon::MediaSource (0x7f09e266bbd0) 0 + +Vtable for Phonon::EffectInterface +Phonon::EffectInterface::_ZTVN6Phonon15EffectInterfaceE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN6Phonon15EffectInterfaceE) +16 Phonon::EffectInterface::~EffectInterface +24 Phonon::EffectInterface::~EffectInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual + +Class Phonon::EffectInterface + size=8 align=8 + base size=8 base align=8 +Phonon::EffectInterface (0x7f09e268c770) 0 nearly-empty + vptr=((& Phonon::EffectInterface::_ZTVN6Phonon15EffectInterfaceE) + 16u) + +Vtable for Phonon::AddonInterface +Phonon::AddonInterface::_ZTVN6Phonon14AddonInterfaceE: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN6Phonon14AddonInterfaceE) +16 Phonon::AddonInterface::~AddonInterface +24 Phonon::AddonInterface::~AddonInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class Phonon::AddonInterface + size=8 align=8 + base size=8 base align=8 +Phonon::AddonInterface (0x7f09e26a67e0) 0 nearly-empty + vptr=((& Phonon::AddonInterface::_ZTVN6Phonon14AddonInterfaceE) + 16u) + +Class QSize + size=8 align=4 + base size=8 base align=4 +QSize (0x7f09e26bea80) 0 + +Class QSizeF + size=16 align=8 + base size=16 base align=8 +QSizeF (0x7f09e250c8c0) 0 + +Class QPoint + size=8 align=4 + base size=8 base align=4 +QPoint (0x7f09e255cee0) 0 + +Class QPointF + size=16 align=8 + base size=16 base align=8 +QPointF (0x7f09e2591b60) 0 + +Class QRect + size=16 align=4 + base size=16 base align=4 +QRect (0x7f09e25d09a0) 0 + +Class QRectF + size=32 align=8 + base size=32 base align=8 +QRectF (0x7f09e2463380) 0 + +Vtable for QPaintDevice +QPaintDevice::_ZTV12QPaintDevice: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QPaintDevice) +16 QPaintDevice::~QPaintDevice +24 QPaintDevice::~QPaintDevice +32 QPaintDevice::devType +40 __cxa_pure_virtual +48 QPaintDevice::metric + +Class QPaintDevice + size=16 align=8 + base size=10 base align=8 +QPaintDevice (0x7f09e230e150) 0 + vptr=((& QPaintDevice::_ZTV12QPaintDevice) + 16u) + +Class QRegExp + size=8 align=8 + base size=8 base align=8 +QRegExp (0x7f09e233d4d0) 0 + +Class QStringMatcher + size=1048 align=8 + base size=1048 base align=8 +QStringMatcher (0x7f09e236b310) 0 + +Class QStringList + size=8 align=8 + base size=8 base align=8 +QStringList (0x7f09e236bd90) 0 + QList (0x7f09e236be00) 0 + +Class QColor + size=16 align=4 + base size=14 base align=4 +QColor (0x7f09e220ea10) 0 + +Class QPolygon + size=8 align=8 + base size=8 base align=8 +QPolygon (0x7f09e225de00) 0 + QVector (0x7f09e225de70) 0 + +Class QPolygonF + size=8 align=8 + base size=8 base align=8 +QPolygonF (0x7f09e22a3f50) 0 + QVector (0x7f09e22a3ee0) 0 + +Class QRegion::QRegionData + size=32 align=8 + base size=32 base align=8 +QRegion::QRegionData (0x7f09e2104460) 0 + +Class QRegion + size=8 align=8 + base size=8 base align=8 +QRegion (0x7f09e20e3bd0) 0 + +Class QLine + size=16 align=4 + base size=16 base align=4 +QLine (0x7f09e2119d20) 0 + +Class QLineF + size=32 align=8 + base size=32 base align=8 +QLineF (0x7f09e2154bd0) 0 + +Class QMatrix + size=48 align=8 + base size=48 base align=8 +QMatrix (0x7f09e21b1690) 0 + +Class QPainterPath::Element + size=24 align=8 + base size=24 base align=8 +QPainterPath::Element (0x7f09e1fe40e0) 0 + +Class QPainterPath + size=8 align=8 + base size=8 base align=8 +QPainterPath (0x7f09e1fe4070) 0 + +Class QPainterPathPrivate + size=16 align=8 + base size=16 base align=8 +QPainterPathPrivate (0x7f09e2027460) 0 + +Class QPainterPathStroker + size=8 align=8 + base size=8 base align=8 +QPainterPathStroker (0x7f09e2027c40) 0 + +Class QTransform + size=88 align=8 + base size=88 base align=8 +QTransform (0x7f09e2088b60) 0 + +Class QImageTextKeyLang + size=16 align=8 + base size=16 base align=8 +QImageTextKeyLang (0x7f09e1f04e70) 0 + +Vtable for QImage +QImage::_ZTV6QImage: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QImage) +16 QImage::~QImage +24 QImage::~QImage +32 QImage::devType +40 QImage::paintEngine +48 QImage::metric + +Class QImage + size=24 align=8 + base size=24 base align=8 +QImage (0x7f09e1f38700) 0 + vptr=((& QImage::_ZTV6QImage) + 16u) + QPaintDevice (0x7f09e1f38770) 0 + primary-for QImage (0x7f09e1f38700) + +Vtable for QPixmap +QPixmap::_ZTV7QPixmap: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QPixmap) +16 QPixmap::~QPixmap +24 QPixmap::~QPixmap +32 QPixmap::devType +40 QPixmap::paintEngine +48 QPixmap::metric + +Class QPixmap + size=24 align=8 + base size=24 base align=8 +QPixmap (0x7f09e1dd8150) 0 + vptr=((& QPixmap::_ZTV7QPixmap) + 16u) + QPaintDevice (0x7f09e1dd81c0) 0 + primary-for QPixmap (0x7f09e1dd8150) + +Class QBrush + size=8 align=8 + base size=8 base align=8 +QBrush (0x7f09e1e26310) 0 + +Class QBrushData + size=112 align=8 + base size=112 base align=8 +QBrushData (0x7f09e1e3dee0) 0 + +Class QGradient + size=64 align=8 + base size=64 base align=8 +QGradient (0x7f09e1e580e0) 0 + +Class QLinearGradient + size=64 align=8 + base size=64 base align=8 +QLinearGradient (0x7f09e1e88b60) 0 + QGradient (0x7f09e1e88bd0) 0 + +Class QRadialGradient + size=64 align=8 + base size=64 base align=8 +QRadialGradient (0x7f09e1e95070) 0 + QGradient (0x7f09e1e950e0) 0 + +Class QConicalGradient + size=64 align=8 + base size=64 base align=8 +QConicalGradient (0x7f09e1e95620) 0 + QGradient (0x7f09e1e95690) 0 + +Class QPalette + size=16 align=8 + base size=12 base align=8 +QPalette (0x7f09e1e959a0) 0 + +Class QColorGroup + size=16 align=8 + base size=12 base align=8 +QColorGroup (0x7f09e1cb1310) 0 + QPalette (0x7f09e1cb1380) 0 + +Class QFont + size=16 align=8 + base size=12 base align=8 +QFont (0x7f09e1ce9620) 0 + +Class QFontMetrics + size=8 align=8 + base size=8 base align=8 +QFontMetrics (0x7f09e1d242a0) 0 + +Class QFontMetricsF + size=8 align=8 + base size=8 base align=8 +QFontMetricsF (0x7f09e1d38700) 0 + +Class QFontInfo + size=8 align=8 + base size=8 base align=8 +QFontInfo (0x7f09e1d4f620) 0 + +Class QSizePolicy + size=4 align=4 + base size=4 base align=4 +QSizePolicy (0x7f09e1d5a150) 0 + +Class QCursor + size=8 align=8 + base size=8 base align=8 +QCursor (0x7f09e1c03e70) 0 + +Class QKeySequence + size=8 align=8 + base size=8 base align=8 +QKeySequence (0x7f09e1c06690) 0 + +Class QWidgetData + size=88 align=8 + base size=88 base align=8 +QWidgetData (0x7f09e1c4f2a0) 0 + +Vtable for QWidget +QWidget::_ZTV7QWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QWidget) +16 QWidget::metaObject +24 QWidget::qt_metacast +32 QWidget::qt_metacall +40 QWidget::~QWidget +48 QWidget::~QWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI7QWidget) +464 QWidget::_ZThn16_N7QWidgetD1Ev +472 QWidget::_ZThn16_N7QWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWidget + size=40 align=8 + base size=40 base align=8 +QWidget (0x7f09e1c4a780) 0 + vptr=((& QWidget::_ZTV7QWidget) + 16u) + QObject (0x7f09e1c4f310) 0 + primary-for QWidget (0x7f09e1c4a780) + QPaintDevice (0x7f09e1c4f380) 16 + vptr=((& QWidget::_ZTV7QWidget) + 464u) + +Vtable for Phonon::VideoPlayer +Phonon::VideoPlayer::_ZTVN6Phonon11VideoPlayerE: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN6Phonon11VideoPlayerE) +16 Phonon::VideoPlayer::metaObject +24 Phonon::VideoPlayer::qt_metacast +32 Phonon::VideoPlayer::qt_metacall +40 Phonon::VideoPlayer::~VideoPlayer +48 Phonon::VideoPlayer::~VideoPlayer +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTIN6Phonon11VideoPlayerE) +464 Phonon::VideoPlayer::_ZThn16_N6Phonon11VideoPlayerD1Ev +472 Phonon::VideoPlayer::_ZThn16_N6Phonon11VideoPlayerD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Phonon::VideoPlayer + size=48 align=8 + base size=48 base align=8 +Phonon::VideoPlayer (0x7f09e19a80e0) 0 + vptr=((& Phonon::VideoPlayer::_ZTVN6Phonon11VideoPlayerE) + 16u) + QWidget (0x7f09e19a9180) 0 + primary-for Phonon::VideoPlayer (0x7f09e19a80e0) + QObject (0x7f09e19a8150) 0 + primary-for QWidget (0x7f09e19a9180) + QPaintDevice (0x7f09e19a81c0) 16 + vptr=((& Phonon::VideoPlayer::_ZTVN6Phonon11VideoPlayerE) + 464u) + +Vtable for Phonon::Effect +Phonon::Effect::_ZTVN6Phonon6EffectE: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN6Phonon6EffectE) +16 Phonon::Effect::metaObject +24 Phonon::Effect::qt_metacast +32 Phonon::Effect::qt_metacall +40 Phonon::Effect::~Effect +48 Phonon::Effect::~Effect +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 (int (*)(...))-0x00000000000000010 +120 (int (*)(...))(& _ZTIN6Phonon6EffectE) +128 Phonon::Effect::_ZThn16_N6Phonon6EffectD1Ev +136 Phonon::Effect::_ZThn16_N6Phonon6EffectD0Ev + +Class Phonon::Effect + size=32 align=8 + base size=32 base align=8 +Phonon::Effect (0x7f09e19a9880) 0 + vptr=((& Phonon::Effect::_ZTVN6Phonon6EffectE) + 16u) + QObject (0x7f09e19c4150) 0 + primary-for Phonon::Effect (0x7f09e19a9880) + Phonon::MediaNode (0x7f09e19c41c0) 16 + vptr=((& Phonon::Effect::_ZTVN6Phonon6EffectE) + 128u) + +Vtable for Phonon::VolumeFaderEffect +Phonon::VolumeFaderEffect::_ZTVN6Phonon17VolumeFaderEffectE: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN6Phonon17VolumeFaderEffectE) +16 Phonon::VolumeFaderEffect::metaObject +24 Phonon::VolumeFaderEffect::qt_metacast +32 Phonon::VolumeFaderEffect::qt_metacall +40 Phonon::VolumeFaderEffect::~VolumeFaderEffect +48 Phonon::VolumeFaderEffect::~VolumeFaderEffect +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 (int (*)(...))-0x00000000000000010 +120 (int (*)(...))(& _ZTIN6Phonon17VolumeFaderEffectE) +128 Phonon::VolumeFaderEffect::_ZThn16_N6Phonon17VolumeFaderEffectD1Ev +136 Phonon::VolumeFaderEffect::_ZThn16_N6Phonon17VolumeFaderEffectD0Ev + +Class Phonon::VolumeFaderEffect + size=32 align=8 + base size=32 base align=8 +Phonon::VolumeFaderEffect (0x7f09e19d6620) 0 + vptr=((& Phonon::VolumeFaderEffect::_ZTVN6Phonon17VolumeFaderEffectE) + 16u) + Phonon::Effect (0x7f09e19d7180) 0 + primary-for Phonon::VolumeFaderEffect (0x7f09e19d6620) + QObject (0x7f09e19d6690) 0 + primary-for Phonon::Effect (0x7f09e19d7180) + Phonon::MediaNode (0x7f09e19d6700) 16 + vptr=((& Phonon::VolumeFaderEffect::_ZTVN6Phonon17VolumeFaderEffectE) + 128u) + +Class QModelIndex + size=24 align=8 + base size=24 base align=8 +QModelIndex (0x7f09e19e8c40) 0 + +Class QPersistentModelIndex + size=8 align=8 + base size=8 base align=8 +QPersistentModelIndex (0x7f09e1a12700) 0 + +Vtable for QAbstractItemModel +QAbstractItemModel::_ZTV18QAbstractItemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractItemModel) +16 QAbstractItemModel::metaObject +24 QAbstractItemModel::qt_metacast +32 QAbstractItemModel::qt_metacall +40 QAbstractItemModel::~QAbstractItemModel +48 QAbstractItemModel::~QAbstractItemModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractItemModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractItemModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractItemModel + size=16 align=8 + base size=16 base align=8 +QAbstractItemModel (0x7f09e1a1da10) 0 + vptr=((& QAbstractItemModel::_ZTV18QAbstractItemModel) + 16u) + QObject (0x7f09e1a1da80) 0 + primary-for QAbstractItemModel (0x7f09e1a1da10) + +Vtable for QAbstractTableModel +QAbstractTableModel::_ZTV19QAbstractTableModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractTableModel) +16 QAbstractTableModel::metaObject +24 QAbstractTableModel::qt_metacast +32 QAbstractTableModel::qt_metacall +40 QAbstractTableModel::~QAbstractTableModel +48 QAbstractTableModel::~QAbstractTableModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractTableModel::index +120 QAbstractTableModel::parent +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractTableModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractTableModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractTableModel + size=16 align=8 + base size=16 base align=8 +QAbstractTableModel (0x7f09e1871d20) 0 + vptr=((& QAbstractTableModel::_ZTV19QAbstractTableModel) + 16u) + QAbstractItemModel (0x7f09e1871d90) 0 + primary-for QAbstractTableModel (0x7f09e1871d20) + QObject (0x7f09e1871e00) 0 + primary-for QAbstractItemModel (0x7f09e1871d90) + +Vtable for QAbstractListModel +QAbstractListModel::_ZTV18QAbstractListModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractListModel) +16 QAbstractListModel::metaObject +24 QAbstractListModel::qt_metacast +32 QAbstractListModel::qt_metacall +40 QAbstractListModel::~QAbstractListModel +48 QAbstractListModel::~QAbstractListModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractListModel::index +120 QAbstractListModel::parent +128 __cxa_pure_virtual +136 QAbstractListModel::columnCount +144 QAbstractListModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractListModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractListModel + size=16 align=8 + base size=16 base align=8 +QAbstractListModel (0x7f09e188c2a0) 0 + vptr=((& QAbstractListModel::_ZTV18QAbstractListModel) + 16u) + QAbstractItemModel (0x7f09e188c310) 0 + primary-for QAbstractListModel (0x7f09e188c2a0) + QObject (0x7f09e188c380) 0 + primary-for QAbstractItemModel (0x7f09e188c310) + +Class Phonon::ObjectDescriptionModelData + size=8 align=8 + base size=8 base align=8 +Phonon::ObjectDescriptionModelData (0x7f09e18bd3f0) 0 + +Vtable for Phonon::StreamInterface +Phonon::StreamInterface::_ZTVN6Phonon15StreamInterfaceE: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN6Phonon15StreamInterfaceE) +16 Phonon::StreamInterface::~StreamInterface +24 Phonon::StreamInterface::~StreamInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual + +Class Phonon::StreamInterface + size=16 align=8 + base size=16 base align=8 +Phonon::StreamInterface (0x7f09e1906540) 0 + vptr=((& Phonon::StreamInterface::_ZTVN6Phonon15StreamInterfaceE) + 16u) + +Vtable for Phonon::SeekSlider +Phonon::SeekSlider::_ZTVN6Phonon10SeekSliderE: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN6Phonon10SeekSliderE) +16 Phonon::SeekSlider::metaObject +24 Phonon::SeekSlider::qt_metacast +32 Phonon::SeekSlider::qt_metacall +40 Phonon::SeekSlider::~SeekSlider +48 Phonon::SeekSlider::~SeekSlider +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTIN6Phonon10SeekSliderE) +464 Phonon::SeekSlider::_ZThn16_N6Phonon10SeekSliderD1Ev +472 Phonon::SeekSlider::_ZThn16_N6Phonon10SeekSliderD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Phonon::SeekSlider + size=48 align=8 + base size=48 base align=8 +Phonon::SeekSlider (0x7f09e1906e00) 0 + vptr=((& Phonon::SeekSlider::_ZTVN6Phonon10SeekSliderE) + 16u) + QWidget (0x7f09e194e080) 0 + primary-for Phonon::SeekSlider (0x7f09e1906e00) + QObject (0x7f09e1906e70) 0 + primary-for QWidget (0x7f09e194e080) + QPaintDevice (0x7f09e1906ee0) 16 + vptr=((& Phonon::SeekSlider::_ZTVN6Phonon10SeekSliderE) + 464u) + +Vtable for Phonon::PlatformPlugin +Phonon::PlatformPlugin::_ZTVN6Phonon14PlatformPluginE: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN6Phonon14PlatformPluginE) +16 Phonon::PlatformPlugin::~PlatformPlugin +24 Phonon::PlatformPlugin::~PlatformPlugin +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 Phonon::PlatformPlugin::deviceAccessListFor + +Class Phonon::PlatformPlugin + size=8 align=8 + base size=8 base align=8 +Phonon::PlatformPlugin (0x7f09e17692a0) 0 nearly-empty + vptr=((& Phonon::PlatformPlugin::_ZTVN6Phonon14PlatformPluginE) + 16u) + +Vtable for Phonon::MediaController +Phonon::MediaController::_ZTVN6Phonon15MediaControllerE: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN6Phonon15MediaControllerE) +16 Phonon::MediaController::metaObject +24 Phonon::MediaController::qt_metacast +32 Phonon::MediaController::qt_metacall +40 Phonon::MediaController::~MediaController +48 Phonon::MediaController::~MediaController +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class Phonon::MediaController + size=24 align=8 + base size=24 base align=8 +Phonon::MediaController (0x7f09e179c700) 0 + vptr=((& Phonon::MediaController::_ZTVN6Phonon15MediaControllerE) + 16u) + QObject (0x7f09e179c770) 0 + primary-for Phonon::MediaController (0x7f09e179c700) + +Vtable for Phonon::VolumeSlider +Phonon::VolumeSlider::_ZTVN6Phonon12VolumeSliderE: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN6Phonon12VolumeSliderE) +16 Phonon::VolumeSlider::metaObject +24 Phonon::VolumeSlider::qt_metacast +32 Phonon::VolumeSlider::qt_metacall +40 Phonon::VolumeSlider::~VolumeSlider +48 Phonon::VolumeSlider::~VolumeSlider +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTIN6Phonon12VolumeSliderE) +464 Phonon::VolumeSlider::_ZThn16_N6Phonon12VolumeSliderD1Ev +472 Phonon::VolumeSlider::_ZThn16_N6Phonon12VolumeSliderD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Phonon::VolumeSlider + size=48 align=8 + base size=48 base align=8 +Phonon::VolumeSlider (0x7f09e17d2620) 0 + vptr=((& Phonon::VolumeSlider::_ZTVN6Phonon12VolumeSliderE) + 16u) + QWidget (0x7f09e17e0080) 0 + primary-for Phonon::VolumeSlider (0x7f09e17d2620) + QObject (0x7f09e17d2690) 0 + primary-for QWidget (0x7f09e17e0080) + QPaintDevice (0x7f09e17d2700) 16 + vptr=((& Phonon::VolumeSlider::_ZTVN6Phonon12VolumeSliderE) + 464u) + +Vtable for Phonon::MediaObject +Phonon::MediaObject::_ZTVN6Phonon11MediaObjectE: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN6Phonon11MediaObjectE) +16 Phonon::MediaObject::metaObject +24 Phonon::MediaObject::qt_metacast +32 Phonon::MediaObject::qt_metacall +40 Phonon::MediaObject::~MediaObject +48 Phonon::MediaObject::~MediaObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 (int (*)(...))-0x00000000000000010 +120 (int (*)(...))(& _ZTIN6Phonon11MediaObjectE) +128 Phonon::MediaObject::_ZThn16_N6Phonon11MediaObjectD1Ev +136 Phonon::MediaObject::_ZThn16_N6Phonon11MediaObjectD0Ev + +Class Phonon::MediaObject + size=32 align=8 + base size=32 base align=8 +Phonon::MediaObject (0x7f09e17e0980) 0 + vptr=((& Phonon::MediaObject::_ZTVN6Phonon11MediaObjectE) + 16u) + QObject (0x7f09e17f5af0) 0 + primary-for Phonon::MediaObject (0x7f09e17e0980) + Phonon::MediaNode (0x7f09e17f5b60) 16 + vptr=((& Phonon::MediaObject::_ZTVN6Phonon11MediaObjectE) + 128u) + +Vtable for Phonon::EffectWidget +Phonon::EffectWidget::_ZTVN6Phonon12EffectWidgetE: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN6Phonon12EffectWidgetE) +16 Phonon::EffectWidget::metaObject +24 Phonon::EffectWidget::qt_metacast +32 Phonon::EffectWidget::qt_metacall +40 Phonon::EffectWidget::~EffectWidget +48 Phonon::EffectWidget::~EffectWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTIN6Phonon12EffectWidgetE) +464 Phonon::EffectWidget::_ZThn16_N6Phonon12EffectWidgetD1Ev +472 Phonon::EffectWidget::_ZThn16_N6Phonon12EffectWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Phonon::EffectWidget + size=48 align=8 + base size=48 base align=8 +Phonon::EffectWidget (0x7f09e181d0e0) 0 + vptr=((& Phonon::EffectWidget::_ZTVN6Phonon12EffectWidgetE) + 16u) + QWidget (0x7f09e1819280) 0 + primary-for Phonon::EffectWidget (0x7f09e181d0e0) + QObject (0x7f09e181d150) 0 + primary-for QWidget (0x7f09e1819280) + QPaintDevice (0x7f09e181d1c0) 16 + vptr=((& Phonon::EffectWidget::_ZTVN6Phonon12EffectWidgetE) + 464u) + +Class Phonon::EffectParameter + size=8 align=8 + base size=8 base align=8 +Phonon::EffectParameter (0x7f09e1830460) 0 + +Vtable for Phonon::VolumeFaderInterface +Phonon::VolumeFaderInterface::_ZTVN6Phonon20VolumeFaderInterfaceE: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN6Phonon20VolumeFaderInterfaceE) +16 Phonon::VolumeFaderInterface::~VolumeFaderInterface +24 Phonon::VolumeFaderInterface::~VolumeFaderInterface +32 Phonon::VolumeFaderInterface::volume +40 Phonon::VolumeFaderInterface::setVolume +48 Phonon::VolumeFaderInterface::fadeCurve +56 Phonon::VolumeFaderInterface::setFadeCurve +64 Phonon::VolumeFaderInterface::fadeTo + +Class Phonon::VolumeFaderInterface + size=8 align=8 + base size=8 base align=8 +Phonon::VolumeFaderInterface (0x7f09e166d070) 0 nearly-empty + vptr=((& Phonon::VolumeFaderInterface::_ZTVN6Phonon20VolumeFaderInterfaceE) + 16u) + +Vtable for Phonon::AbstractAudioOutput +Phonon::AbstractAudioOutput::_ZTVN6Phonon19AbstractAudioOutputE: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN6Phonon19AbstractAudioOutputE) +16 Phonon::AbstractAudioOutput::metaObject +24 Phonon::AbstractAudioOutput::qt_metacast +32 Phonon::AbstractAudioOutput::qt_metacall +40 Phonon::AbstractAudioOutput::~AbstractAudioOutput +48 Phonon::AbstractAudioOutput::~AbstractAudioOutput +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 (int (*)(...))-0x00000000000000010 +120 (int (*)(...))(& _ZTIN6Phonon19AbstractAudioOutputE) +128 Phonon::AbstractAudioOutput::_ZThn16_N6Phonon19AbstractAudioOutputD1Ev +136 Phonon::AbstractAudioOutput::_ZThn16_N6Phonon19AbstractAudioOutputD0Ev + +Class Phonon::AbstractAudioOutput + size=32 align=8 + base size=32 base align=8 +Phonon::AbstractAudioOutput (0x7f09e1676f00) 0 + vptr=((& Phonon::AbstractAudioOutput::_ZTVN6Phonon19AbstractAudioOutputE) + 16u) + QObject (0x7f09e1677930) 0 + primary-for Phonon::AbstractAudioOutput (0x7f09e1676f00) + Phonon::MediaNode (0x7f09e16779a0) 16 + vptr=((& Phonon::AbstractAudioOutput::_ZTVN6Phonon19AbstractAudioOutputE) + 128u) + +Vtable for Phonon::AudioOutput +Phonon::AudioOutput::_ZTVN6Phonon11AudioOutputE: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN6Phonon11AudioOutputE) +16 Phonon::AudioOutput::metaObject +24 Phonon::AudioOutput::qt_metacast +32 Phonon::AudioOutput::qt_metacall +40 Phonon::AudioOutput::~AudioOutput +48 Phonon::AudioOutput::~AudioOutput +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 (int (*)(...))-0x00000000000000010 +120 (int (*)(...))(& _ZTIN6Phonon11AudioOutputE) +128 Phonon::AudioOutput::_ZThn16_N6Phonon11AudioOutputD1Ev +136 Phonon::AudioOutput::_ZThn16_N6Phonon11AudioOutputD0Ev + +Class Phonon::AudioOutput + size=32 align=8 + base size=32 base align=8 +Phonon::AudioOutput (0x7f09e168bd20) 0 + vptr=((& Phonon::AudioOutput::_ZTVN6Phonon11AudioOutputE) + 16u) + Phonon::AbstractAudioOutput (0x7f09e1680800) 0 + primary-for Phonon::AudioOutput (0x7f09e168bd20) + QObject (0x7f09e168bd90) 0 + primary-for Phonon::AbstractAudioOutput (0x7f09e1680800) + Phonon::MediaNode (0x7f09e168be00) 16 + vptr=((& Phonon::AudioOutput::_ZTVN6Phonon11AudioOutputE) + 128u) + +Vtable for Phonon::AudioOutputInterface40 +Phonon::AudioOutputInterface40::_ZTVN6Phonon22AudioOutputInterface40E: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN6Phonon22AudioOutputInterface40E) +16 Phonon::AudioOutputInterface40::~AudioOutputInterface40 +24 Phonon::AudioOutputInterface40::~AudioOutputInterface40 +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual + +Class Phonon::AudioOutputInterface40 + size=8 align=8 + base size=8 base align=8 +Phonon::AudioOutputInterface40 (0x7f09e16ac2a0) 0 nearly-empty + vptr=((& Phonon::AudioOutputInterface40::_ZTVN6Phonon22AudioOutputInterface40E) + 16u) + +Vtable for Phonon::AudioOutputInterface42 +Phonon::AudioOutputInterface42::_ZTVN6Phonon22AudioOutputInterface42E: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN6Phonon22AudioOutputInterface42E) +16 Phonon::AudioOutputInterface42::~AudioOutputInterface42 +24 Phonon::AudioOutputInterface42::~AudioOutputInterface42 +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual + +Class Phonon::AudioOutputInterface42 + size=8 align=8 + base size=8 base align=8 +Phonon::AudioOutputInterface42 (0x7f09e16accb0) 0 nearly-empty + vptr=((& Phonon::AudioOutputInterface42::_ZTVN6Phonon22AudioOutputInterface42E) + 16u) + Phonon::AudioOutputInterface40 (0x7f09e16acd20) 0 nearly-empty + primary-for Phonon::AudioOutputInterface42 (0x7f09e16accb0) + +Vtable for Phonon::BackendCapabilities::Notifier +Phonon::BackendCapabilities::Notifier::_ZTVN6Phonon19BackendCapabilities8NotifierE: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN6Phonon19BackendCapabilities8NotifierE) +16 Phonon::BackendCapabilities::Notifier::metaObject +24 Phonon::BackendCapabilities::Notifier::qt_metacast +32 Phonon::BackendCapabilities::Notifier::qt_metacall +40 Phonon::BackendCapabilities::Notifier::~Notifier +48 Phonon::BackendCapabilities::Notifier::~Notifier +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class Phonon::BackendCapabilities::Notifier + size=16 align=8 + base size=16 base align=8 +Phonon::BackendCapabilities::Notifier (0x7f09e16bac40) 0 + vptr=((& Phonon::BackendCapabilities::Notifier::_ZTVN6Phonon19BackendCapabilities8NotifierE) + 16u) + QObject (0x7f09e16bacb0) 0 + primary-for Phonon::BackendCapabilities::Notifier (0x7f09e16bac40) + +Vtable for Phonon::BackendInterface +Phonon::BackendInterface::_ZTVN6Phonon16BackendInterfaceE: 12u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN6Phonon16BackendInterfaceE) +16 Phonon::BackendInterface::~BackendInterface +24 Phonon::BackendInterface::~BackendInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual + +Class Phonon::BackendInterface + size=8 align=8 + base size=8 base align=8 +Phonon::BackendInterface (0x7f09e16ce9a0) 0 nearly-empty + vptr=((& Phonon::BackendInterface::_ZTVN6Phonon16BackendInterfaceE) + 16u) + +Vtable for Phonon::AbstractMediaStream +Phonon::AbstractMediaStream::_ZTVN6Phonon19AbstractMediaStreamE: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN6Phonon19AbstractMediaStreamE) +16 Phonon::AbstractMediaStream::metaObject +24 Phonon::AbstractMediaStream::qt_metacast +32 Phonon::AbstractMediaStream::qt_metacall +40 Phonon::AbstractMediaStream::~AbstractMediaStream +48 Phonon::AbstractMediaStream::~AbstractMediaStream +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 Phonon::AbstractMediaStream::enoughData +136 Phonon::AbstractMediaStream::seekStream + +Class Phonon::AbstractMediaStream + size=24 align=8 + base size=24 base align=8 +Phonon::AbstractMediaStream (0x7f09e16dfc40) 0 + vptr=((& Phonon::AbstractMediaStream::_ZTVN6Phonon19AbstractMediaStreamE) + 16u) + QObject (0x7f09e16dfcb0) 0 + primary-for Phonon::AbstractMediaStream (0x7f09e16dfc40) + +Vtable for Phonon::VideoWidget +Phonon::VideoWidget::_ZTVN6Phonon11VideoWidgetE: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN6Phonon11VideoWidgetE) +16 Phonon::VideoWidget::metaObject +24 Phonon::VideoWidget::qt_metacast +32 Phonon::VideoWidget::qt_metacall +40 Phonon::VideoWidget::~VideoWidget +48 Phonon::VideoWidget::~VideoWidget +56 Phonon::VideoWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 Phonon::VideoWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTIN6Phonon11VideoWidgetE) +464 Phonon::VideoWidget::_ZThn16_N6Phonon11VideoWidgetD1Ev +472 Phonon::VideoWidget::_ZThn16_N6Phonon11VideoWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE +504 (int (*)(...))-0x00000000000000028 +512 (int (*)(...))(& _ZTIN6Phonon11VideoWidgetE) +520 Phonon::VideoWidget::_ZThn40_N6Phonon11VideoWidgetD1Ev +528 Phonon::VideoWidget::_ZThn40_N6Phonon11VideoWidgetD0Ev + +Class Phonon::VideoWidget + size=56 align=8 + base size=56 base align=8 +Phonon::VideoWidget (0x7f09e16e8900) 0 + vptr=((& Phonon::VideoWidget::_ZTVN6Phonon11VideoWidgetE) + 16u) + QWidget (0x7f09e16e8980) 0 + primary-for Phonon::VideoWidget (0x7f09e16e8900) + QObject (0x7f09e16fd0e0) 0 + primary-for QWidget (0x7f09e16e8980) + QPaintDevice (0x7f09e16fd150) 16 + vptr=((& Phonon::VideoWidget::_ZTVN6Phonon11VideoWidgetE) + 464u) + Phonon::AbstractVideoOutput (0x7f09e16fd1c0) 40 + vptr=((& Phonon::VideoWidget::_ZTVN6Phonon11VideoWidgetE) + 520u) + Phonon::MediaNode (0x7f09e16fd230) 40 + primary-for Phonon::AbstractVideoOutput (0x7f09e16fd1c0) + +Vtable for Phonon::VideoWidgetInterface +Phonon::VideoWidgetInterface::_ZTVN6Phonon20VideoWidgetInterfaceE: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN6Phonon20VideoWidgetInterfaceE) +16 Phonon::VideoWidgetInterface::~VideoWidgetInterface +24 Phonon::VideoWidgetInterface::~VideoWidgetInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual + +Class Phonon::VideoWidgetInterface + size=8 align=8 + base size=8 base align=8 +Phonon::VideoWidgetInterface (0x7f09e1717a80) 0 nearly-empty + vptr=((& Phonon::VideoWidgetInterface::_ZTVN6Phonon20VideoWidgetInterfaceE) + 16u) + +Vtable for Phonon::MediaObjectInterface +Phonon::MediaObjectInterface::_ZTVN6Phonon20MediaObjectInterfaceE: 25u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN6Phonon20MediaObjectInterfaceE) +16 Phonon::MediaObjectInterface::~MediaObjectInterface +24 Phonon::MediaObjectInterface::~MediaObjectInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 Phonon::MediaObjectInterface::remainingTime +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual +192 __cxa_pure_virtual + +Class Phonon::MediaObjectInterface + size=8 align=8 + base size=8 base align=8 +Phonon::MediaObjectInterface (0x7f09e1727ee0) 0 nearly-empty + vptr=((& Phonon::MediaObjectInterface::_ZTVN6Phonon20MediaObjectInterfaceE) + 16u) + diff --git a/tests/auto/bic/data/phonon.4.6.0.linux-gcc-amd64.txt b/tests/auto/bic/data/phonon.4.6.0.linux-gcc-amd64.txt new file mode 100644 index 0000000..b962099 --- /dev/null +++ b/tests/auto/bic/data/phonon.4.6.0.linux-gcc-amd64.txt @@ -0,0 +1,1980 @@ +Class QSysInfo + size=1 align=1 + base size=0 base align=1 +QSysInfo (0x7f37bb27e230) 0 empty + +Class QBool + size=1 align=1 + base size=1 base align=1 +QBool (0x7f37bb27ee70) 0 + +Class qIsNull(double)::U + size=8 align=8 + base size=8 base align=8 +qIsNull(double)::U (0x7f37bb2a9540) 0 + +Class qIsNull(float)::U + size=4 align=4 + base size=4 base align=4 +qIsNull(float)::U (0x7f37bb2a97e0) 0 + +Class QFlag + size=4 align=4 + base size=4 base align=4 +QFlag (0x7f37ba9cb690) 0 + +Class QIncompatibleFlag + size=4 align=4 + base size=4 base align=4 +QIncompatibleFlag (0x7f37ba9cbe70) 0 + +Class QBasicAtomicInt + size=4 align=4 + base size=4 base align=4 +QBasicAtomicInt (0x7f37ba9f75b0) 0 + +Class QAtomicInt + size=4 align=4 + base size=4 base align=4 +QAtomicInt (0x7f37baa51f50) 0 + QBasicAtomicInt (0x7f37baa67000) 0 + +Class QSharedData + size=4 align=4 + base size=4 base align=4 +QSharedData (0x7f37baa743f0) 0 + +Class QLatin1Char + size=1 align=1 + base size=1 base align=1 +QLatin1Char (0x7f37ba8fd310) 0 + +Class QChar + size=2 align=2 + base size=2 base align=2 +QChar (0x7f37ba8fde70) 0 + +Vtable for std::exception +std::exception::_ZTVSt9exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9exception) +16 std::exception::~exception +24 std::exception::~exception +32 std::exception::what + +Class std::exception + size=8 align=8 + base size=8 base align=8 +std::exception (0x7f37ba978070) 0 nearly-empty + vptr=((& std::exception::_ZTVSt9exception) + 16u) + +Vtable for std::bad_exception +std::bad_exception::_ZTVSt13bad_exception: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13bad_exception) +16 std::bad_exception::~bad_exception +24 std::bad_exception::~bad_exception +32 std::bad_exception::what + +Class std::bad_exception + size=8 align=8 + base size=8 base align=8 +std::bad_exception (0x7f37ba978620) 0 nearly-empty + vptr=((& std::bad_exception::_ZTVSt13bad_exception) + 16u) + std::exception (0x7f37ba978690) 0 nearly-empty + primary-for std::bad_exception (0x7f37ba978620) + +Vtable for std::bad_alloc +std::bad_alloc::_ZTVSt9bad_alloc: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt9bad_alloc) +16 std::bad_alloc::~bad_alloc +24 std::bad_alloc::~bad_alloc +32 std::bad_alloc::what + +Class std::bad_alloc + size=8 align=8 + base size=8 base align=8 +std::bad_alloc (0x7f37ba978ee0) 0 nearly-empty + vptr=((& std::bad_alloc::_ZTVSt9bad_alloc) + 16u) + std::exception (0x7f37ba978f50) 0 nearly-empty + primary-for std::bad_alloc (0x7f37ba978ee0) + +Class std::nothrow_t + size=1 align=1 + base size=0 base align=1 +std::nothrow_t (0x7f37ba98d700) 0 empty + +Class __locale_struct + size=232 align=8 + base size=232 base align=8 +__locale_struct (0x7f37ba98dbd0) 0 + +Class QListData::Data + size=32 align=8 + base size=32 base align=8 +QListData::Data (0x7f37ba98dcb0) 0 + +Class QListData + size=8 align=8 + base size=8 base align=8 +QListData (0x7f37ba98dc40) 0 + +Class QScopedPointerPodDeleter + size=1 align=1 + base size=0 base align=1 +QScopedPointerPodDeleter (0x7f37ba6cb770) 0 empty + +Class QInternal + size=1 align=1 + base size=0 base align=1 +QInternal (0x7f37ba512540) 0 empty + +Class QGenericArgument + size=16 align=8 + base size=16 base align=8 +QGenericArgument (0x7f37ba512850) 0 + +Class QGenericReturnArgument + size=16 align=8 + base size=16 base align=8 +QGenericReturnArgument (0x7f37ba52f3f0) 0 + QGenericArgument (0x7f37ba52f460) 0 + +Class QMetaObject + size=32 align=8 + base size=32 base align=8 +QMetaObject (0x7f37ba52fcb0) 0 + +Class QMetaObjectExtraData + size=16 align=8 + base size=16 base align=8 +QMetaObjectExtraData (0x7f37ba558d20) 0 + +Class QByteArray::Data + size=32 align=8 + base size=32 base align=8 +QByteArray::Data (0x7f37ba56daf0) 0 + +Class QByteArray + size=8 align=8 + base size=8 base align=8 +QByteArray (0x7f37ba56da80) 0 + +Class QByteRef + size=16 align=8 + base size=12 base align=8 +QByteRef (0x7f37ba40e380) 0 + +Class QString::Null + size=1 align=1 + base size=0 base align=1 +QString::Null (0x7f37ba30ed20) 0 empty + +Class QString::Data + size=32 align=8 + base size=32 base align=8 +QString::Data (0x7f37ba3275b0) 0 + +Class QString + size=8 align=8 + base size=8 base align=8 +QString (0x7f37ba489bd0) 0 + +Class QLatin1String + size=8 align=8 + base size=8 base align=8 +QLatin1String (0x7f37ba1fb9a0) 0 + +Class QCharRef + size=16 align=8 + base size=12 base align=8 +QCharRef (0x7f37ba0a0000) 0 + +Class QConstString + size=8 align=8 + base size=8 base align=8 +QConstString (0x7f37b9fd8850) 0 + QString (0x7f37b9fd88c0) 0 + +Class QStringRef + size=16 align=8 + base size=16 base align=8 +QStringRef (0x7f37b9ffc2a0) 0 + +Vtable for QObjectData +QObjectData::_ZTV11QObjectData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QObjectData) +16 __cxa_pure_virtual +24 __cxa_pure_virtual + +Class QObjectData + size=48 align=8 + base size=48 base align=8 +QObjectData (0x7f37ba0795b0) 0 + vptr=((& QObjectData::_ZTV11QObjectData) + 16u) + +Vtable for QObject +QObject::_ZTV7QObject: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QObject) +16 QObject::metaObject +24 QObject::qt_metacast +32 QObject::qt_metacall +40 QObject::~QObject +48 QObject::~QObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class QObject + size=16 align=8 + base size=16 base align=8 +QObject (0x7f37ba0798c0) 0 + vptr=((& QObject::_ZTV7QObject) + 16u) + +Vtable for QObjectUserData +QObjectUserData::_ZTV15QObjectUserData: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI15QObjectUserData) +16 QObjectUserData::~QObjectUserData +24 QObjectUserData::~QObjectUserData + +Class QObjectUserData + size=8 align=8 + base size=8 base align=8 +QObjectUserData (0x7f37b9ef7e70) 0 nearly-empty + vptr=((& QObjectUserData::_ZTV15QObjectUserData) + 16u) + +Vtable for QIODevice +QIODevice::_ZTV9QIODevice: 30u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI9QIODevice) +16 QIODevice::metaObject +24 QIODevice::qt_metacast +32 QIODevice::qt_metacall +40 QIODevice::~QIODevice +48 QIODevice::~QIODevice +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QIODevice::isSequential +120 QIODevice::open +128 QIODevice::close +136 QIODevice::pos +144 QIODevice::size +152 QIODevice::seek +160 QIODevice::atEnd +168 QIODevice::reset +176 QIODevice::bytesAvailable +184 QIODevice::bytesToWrite +192 QIODevice::canReadLine +200 QIODevice::waitForReadyRead +208 QIODevice::waitForBytesWritten +216 __cxa_pure_virtual +224 QIODevice::readLineData +232 __cxa_pure_virtual + +Class QIODevice + size=16 align=8 + base size=16 base align=8 +QIODevice (0x7f37b9f05460) 0 + vptr=((& QIODevice::_ZTV9QIODevice) + 16u) + QObject (0x7f37b9f054d0) 0 + primary-for QIODevice (0x7f37b9f05460) + +Vtable for QDataStream +QDataStream::_ZTV11QDataStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QDataStream) +16 QDataStream::~QDataStream +24 QDataStream::~QDataStream + +Class QDataStream + size=40 align=8 + base size=40 base align=8 +QDataStream (0x7f37b9f6bd90) 0 + vptr=((& QDataStream::_ZTV11QDataStream) + 16u) + +Class QHashData::Node + size=16 align=8 + base size=16 base align=8 +QHashData::Node (0x7f37b9e00e70) 0 + +Class QHashData + size=40 align=8 + base size=40 base align=8 +QHashData (0x7f37b9e00e00) 0 + +Class QHashDummyValue + size=1 align=1 + base size=0 base align=1 +QHashDummyValue (0x7f37b9e211c0) 0 empty + +Class QMapData::Node + size=16 align=8 + base size=16 base align=8 +QMapData::Node (0x7f37b9d24af0) 0 + +Class QMapData + size=128 align=8 + base size=128 base align=8 +QMapData (0x7f37b9d24a80) 0 + +Vtable for QSystemLocale +QSystemLocale::_ZTV13QSystemLocale: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI13QSystemLocale) +16 QSystemLocale::~QSystemLocale +24 QSystemLocale::~QSystemLocale +32 QSystemLocale::query +40 QSystemLocale::fallbackLocale + +Class QSystemLocale + size=8 align=8 + base size=8 base align=8 +QSystemLocale (0x7f37b9c5e700) 0 nearly-empty + vptr=((& QSystemLocale::_ZTV13QSystemLocale) + 16u) + +Class QLocale::Data + size=4 align=2 + base size=4 base align=2 +QLocale::Data (0x7f37b9aabe00) 0 + +Class QLocale + size=8 align=8 + base size=8 base align=8 +QLocale (0x7f37b9c5eb60) 0 + +Class QTextCodec::ConverterState + size=32 align=8 + base size=32 base align=8 +QTextCodec::ConverterState (0x7f37b9affc40) 0 + +Vtable for QTextCodec +QTextCodec::_ZTV10QTextCodec: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI10QTextCodec) +16 __cxa_pure_virtual +24 QTextCodec::aliases +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 QTextCodec::~QTextCodec +64 QTextCodec::~QTextCodec + +Class QTextCodec + size=8 align=8 + base size=8 base align=8 +QTextCodec (0x7f37b9af04d0) 0 nearly-empty + vptr=((& QTextCodec::_ZTV10QTextCodec) + 16u) + +Class QTextEncoder + size=40 align=8 + base size=40 base align=8 +QTextEncoder (0x7f37b9b6c1c0) 0 + +Class QTextDecoder + size=40 align=8 + base size=40 base align=8 +QTextDecoder (0x7f37b9b73000) 0 + +Class _IO_marker + size=24 align=8 + base size=24 base align=8 +_IO_marker (0x7f37b9985070) 0 + +Class _IO_FILE + size=216 align=8 + base size=216 base align=8 +_IO_FILE (0x7f37b99850e0) 0 + +Vtable for QTextStream +QTextStream::_ZTV11QTextStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI11QTextStream) +16 QTextStream::~QTextStream +24 QTextStream::~QTextStream + +Class QTextStream + size=16 align=8 + base size=16 base align=8 +QTextStream (0x7f37b99851c0) 0 + vptr=((& QTextStream::_ZTV11QTextStream) + 16u) + +Class QTextStreamManipulator + size=40 align=8 + base size=38 base align=8 +QTextStreamManipulator (0x7f37b9a22e70) 0 + +Vtable for QTextIStream +QTextIStream::_ZTV12QTextIStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextIStream) +16 QTextIStream::~QTextIStream +24 QTextIStream::~QTextIStream + +Class QTextIStream + size=16 align=8 + base size=16 base align=8 +QTextIStream (0x7f37b9a50460) 0 + vptr=((& QTextIStream::_ZTV12QTextIStream) + 16u) + QTextStream (0x7f37b9a504d0) 0 + primary-for QTextIStream (0x7f37b9a50460) + +Vtable for QTextOStream +QTextOStream::_ZTV12QTextOStream: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QTextOStream) +16 QTextOStream::~QTextOStream +24 QTextOStream::~QTextOStream + +Class QTextOStream + size=16 align=8 + base size=16 base align=8 +QTextOStream (0x7f37b9a66310) 0 + vptr=((& QTextOStream::_ZTV12QTextOStream) + 16u) + QTextStream (0x7f37b9a66380) 0 + primary-for QTextOStream (0x7f37b9a66310) + +Class wait + size=4 align=4 + base size=4 base align=4 +wait (0x7f37b9a781c0) 0 + +Class timespec + size=16 align=8 + base size=16 base align=8 +timespec (0x7f37b9a784d0) 0 + +Class timeval + size=16 align=8 + base size=16 base align=8 +timeval (0x7f37b9a78540) 0 + +Class __pthread_internal_list + size=16 align=8 + base size=16 base align=8 +__pthread_internal_list (0x7f37b9a78690) 0 + +Class random_data + size=48 align=8 + base size=48 base align=8 +random_data (0x7f37b9a78c40) 0 + +Class drand48_data + size=24 align=8 + base size=24 base align=8 +drand48_data (0x7f37b9a78cb0) 0 + +Class QVectorData + size=16 align=4 + base size=16 base align=4 +QVectorData (0x7f37b9a78d20) 0 + +Class QContiguousCacheData + size=24 align=4 + base size=24 base align=4 +QContiguousCacheData (0x7f37b982ea10) 0 + +Class QDebug::Stream + size=40 align=8 + base size=34 base align=8 +QDebug::Stream (0x7f37b96af540) 0 + +Class QDebug + size=8 align=8 + base size=8 base align=8 +QDebug (0x7f37b96af4d0) 0 + +Class QNoDebug + size=1 align=1 + base size=0 base align=1 +QNoDebug (0x7f37b97614d0) 0 empty + +Class QMetaType + size=1 align=1 + base size=0 base align=1 +QMetaType (0x7f37b9771b60) 0 empty + +Class QVariant::PrivateShared + size=16 align=8 + base size=12 base align=8 +QVariant::PrivateShared (0x7f37b967b3f0) 0 + +Class QVariant::Private::Data + size=8 align=8 + base size=8 base align=8 +QVariant::Private::Data (0x7f37b967b700) 0 + +Class QVariant::Private + size=16 align=8 + base size=12 base align=8 +QVariant::Private (0x7f37b967b4d0) 0 + +Class QVariant::Handler + size=72 align=8 + base size=72 base align=8 +QVariant::Handler (0x7f37b94863f0) 0 + +Class QVariant + size=16 align=8 + base size=16 base align=8 +QVariant (0x7f37b964e4d0) 0 + +Class QVariantComparisonHelper + size=8 align=8 + base size=8 base align=8 +QVariantComparisonHelper (0x7f37b9541690) 0 + +Class Phonon::ObjectDescriptionData + size=16 align=8 + base size=16 base align=8 +Phonon::ObjectDescriptionData (0x7f37b9568bd0) 0 + QSharedData (0x7f37b9568c40) 0 + +Class Phonon::Path + size=8 align=8 + base size=8 base align=8 +Phonon::Path (0x7f37b93c0930) 0 + +Vtable for Phonon::MediaNode +Phonon::MediaNode::_ZTVN6Phonon9MediaNodeE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN6Phonon9MediaNodeE) +16 Phonon::MediaNode::~MediaNode +24 Phonon::MediaNode::~MediaNode + +Class Phonon::MediaNode + size=16 align=8 + base size=16 base align=8 +Phonon::MediaNode (0x7f37b93da150) 0 + vptr=((& Phonon::MediaNode::_ZTVN6Phonon9MediaNodeE) + 16u) + +Vtable for Phonon::AbstractAudioOutput +Phonon::AbstractAudioOutput::_ZTVN6Phonon19AbstractAudioOutputE: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN6Phonon19AbstractAudioOutputE) +16 Phonon::AbstractAudioOutput::metaObject +24 Phonon::AbstractAudioOutput::qt_metacast +32 Phonon::AbstractAudioOutput::qt_metacall +40 Phonon::AbstractAudioOutput::~AbstractAudioOutput +48 Phonon::AbstractAudioOutput::~AbstractAudioOutput +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 (int (*)(...))-0x00000000000000010 +120 (int (*)(...))(& _ZTIN6Phonon19AbstractAudioOutputE) +128 Phonon::AbstractAudioOutput::_ZThn16_N6Phonon19AbstractAudioOutputD1Ev +136 Phonon::AbstractAudioOutput::_ZThn16_N6Phonon19AbstractAudioOutputD0Ev + +Class Phonon::AbstractAudioOutput + size=32 align=8 + base size=32 base align=8 +Phonon::AbstractAudioOutput (0x7f37b93f0100) 0 + vptr=((& Phonon::AbstractAudioOutput::_ZTVN6Phonon19AbstractAudioOutputE) + 16u) + QObject (0x7f37b93da8c0) 0 + primary-for Phonon::AbstractAudioOutput (0x7f37b93f0100) + Phonon::MediaNode (0x7f37b93da930) 16 + vptr=((& Phonon::AbstractAudioOutput::_ZTVN6Phonon19AbstractAudioOutputE) + 128u) + +Vtable for Phonon::AbstractMediaStream +Phonon::AbstractMediaStream::_ZTVN6Phonon19AbstractMediaStreamE: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN6Phonon19AbstractMediaStreamE) +16 Phonon::AbstractMediaStream::metaObject +24 Phonon::AbstractMediaStream::qt_metacast +32 Phonon::AbstractMediaStream::qt_metacall +40 Phonon::AbstractMediaStream::~AbstractMediaStream +48 Phonon::AbstractMediaStream::~AbstractMediaStream +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 Phonon::AbstractMediaStream::enoughData +136 Phonon::AbstractMediaStream::seekStream + +Class Phonon::AbstractMediaStream + size=24 align=8 + base size=24 base align=8 +Phonon::AbstractMediaStream (0x7f37b9414540) 0 + vptr=((& Phonon::AbstractMediaStream::_ZTVN6Phonon19AbstractMediaStreamE) + 16u) + QObject (0x7f37b94145b0) 0 + primary-for Phonon::AbstractMediaStream (0x7f37b9414540) + +Vtable for Phonon::AbstractVideoOutput +Phonon::AbstractVideoOutput::_ZTVN6Phonon19AbstractVideoOutputE: 4u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN6Phonon19AbstractVideoOutputE) +16 Phonon::AbstractVideoOutput::~AbstractVideoOutput +24 Phonon::AbstractVideoOutput::~AbstractVideoOutput + +Class Phonon::AbstractVideoOutput + size=16 align=8 + base size=16 base align=8 +Phonon::AbstractVideoOutput (0x7f37b9437b60) 0 + vptr=((& Phonon::AbstractVideoOutput::_ZTVN6Phonon19AbstractVideoOutputE) + 16u) + Phonon::MediaNode (0x7f37b9437bd0) 0 + primary-for Phonon::AbstractVideoOutput (0x7f37b9437b60) + +Vtable for Phonon::AddonInterface +Phonon::AddonInterface::_ZTVN6Phonon14AddonInterfaceE: 6u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN6Phonon14AddonInterfaceE) +16 Phonon::AddonInterface::~AddonInterface +24 Phonon::AddonInterface::~AddonInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class Phonon::AddonInterface + size=8 align=8 + base size=8 base align=8 +Phonon::AddonInterface (0x7f37b9442230) 0 nearly-empty + vptr=((& Phonon::AddonInterface::_ZTVN6Phonon14AddonInterfaceE) + 16u) + +Vtable for Phonon::AudioOutput +Phonon::AudioOutput::_ZTVN6Phonon11AudioOutputE: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN6Phonon11AudioOutputE) +16 Phonon::AudioOutput::metaObject +24 Phonon::AudioOutput::qt_metacast +32 Phonon::AudioOutput::qt_metacall +40 Phonon::AudioOutput::~AudioOutput +48 Phonon::AudioOutput::~AudioOutput +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 (int (*)(...))-0x00000000000000010 +120 (int (*)(...))(& _ZTIN6Phonon11AudioOutputE) +128 Phonon::AudioOutput::_ZThn16_N6Phonon11AudioOutputD1Ev +136 Phonon::AudioOutput::_ZThn16_N6Phonon11AudioOutputD0Ev + +Class Phonon::AudioOutput + size=32 align=8 + base size=32 base align=8 +Phonon::AudioOutput (0x7f37b945d620) 0 + vptr=((& Phonon::AudioOutput::_ZTVN6Phonon11AudioOutputE) + 16u) + Phonon::AbstractAudioOutput (0x7f37b9456f00) 0 + primary-for Phonon::AudioOutput (0x7f37b945d620) + QObject (0x7f37b945d690) 0 + primary-for Phonon::AbstractAudioOutput (0x7f37b9456f00) + Phonon::MediaNode (0x7f37b945d700) 16 + vptr=((& Phonon::AudioOutput::_ZTVN6Phonon11AudioOutputE) + 128u) + +Vtable for Phonon::AudioOutputInterface40 +Phonon::AudioOutputInterface40::_ZTVN6Phonon22AudioOutputInterface40E: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN6Phonon22AudioOutputInterface40E) +16 Phonon::AudioOutputInterface40::~AudioOutputInterface40 +24 Phonon::AudioOutputInterface40::~AudioOutputInterface40 +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual + +Class Phonon::AudioOutputInterface40 + size=8 align=8 + base size=8 base align=8 +Phonon::AudioOutputInterface40 (0x7f37b9254b60) 0 nearly-empty + vptr=((& Phonon::AudioOutputInterface40::_ZTVN6Phonon22AudioOutputInterface40E) + 16u) + +Vtable for Phonon::AudioOutputInterface42 +Phonon::AudioOutputInterface42::_ZTVN6Phonon22AudioOutputInterface42E: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN6Phonon22AudioOutputInterface42E) +16 Phonon::AudioOutputInterface42::~AudioOutputInterface42 +24 Phonon::AudioOutputInterface42::~AudioOutputInterface42 +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual + +Class Phonon::AudioOutputInterface42 + size=8 align=8 + base size=8 base align=8 +Phonon::AudioOutputInterface42 (0x7f37b925e540) 0 nearly-empty + vptr=((& Phonon::AudioOutputInterface42::_ZTVN6Phonon22AudioOutputInterface42E) + 16u) + Phonon::AudioOutputInterface40 (0x7f37b925e5b0) 0 nearly-empty + primary-for Phonon::AudioOutputInterface42 (0x7f37b925e540) + +Vtable for Phonon::BackendCapabilities::Notifier +Phonon::BackendCapabilities::Notifier::_ZTVN6Phonon19BackendCapabilities8NotifierE: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN6Phonon19BackendCapabilities8NotifierE) +16 Phonon::BackendCapabilities::Notifier::metaObject +24 Phonon::BackendCapabilities::Notifier::qt_metacast +32 Phonon::BackendCapabilities::Notifier::qt_metacall +40 Phonon::BackendCapabilities::Notifier::~Notifier +48 Phonon::BackendCapabilities::Notifier::~Notifier +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class Phonon::BackendCapabilities::Notifier + size=16 align=8 + base size=16 base align=8 +Phonon::BackendCapabilities::Notifier (0x7f37b926f7e0) 0 + vptr=((& Phonon::BackendCapabilities::Notifier::_ZTVN6Phonon19BackendCapabilities8NotifierE) + 16u) + QObject (0x7f37b926f850) 0 + primary-for Phonon::BackendCapabilities::Notifier (0x7f37b926f7e0) + +Vtable for Phonon::BackendInterface +Phonon::BackendInterface::_ZTVN6Phonon16BackendInterfaceE: 12u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN6Phonon16BackendInterfaceE) +16 Phonon::BackendInterface::~BackendInterface +24 Phonon::BackendInterface::~BackendInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual + +Class Phonon::BackendInterface + size=8 align=8 + base size=8 base align=8 +Phonon::BackendInterface (0x7f37b927f540) 0 nearly-empty + vptr=((& Phonon::BackendInterface::_ZTVN6Phonon16BackendInterfaceE) + 16u) + +Vtable for Phonon::Effect +Phonon::Effect::_ZTVN6Phonon6EffectE: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN6Phonon6EffectE) +16 Phonon::Effect::metaObject +24 Phonon::Effect::qt_metacast +32 Phonon::Effect::qt_metacall +40 Phonon::Effect::~Effect +48 Phonon::Effect::~Effect +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 (int (*)(...))-0x00000000000000010 +120 (int (*)(...))(& _ZTIN6Phonon6EffectE) +128 Phonon::Effect::_ZThn16_N6Phonon6EffectD1Ev +136 Phonon::Effect::_ZThn16_N6Phonon6EffectD0Ev + +Class Phonon::Effect + size=32 align=8 + base size=32 base align=8 +Phonon::Effect (0x7f37b9291c00) 0 + vptr=((& Phonon::Effect::_ZTVN6Phonon6EffectE) + 16u) + QObject (0x7f37b9292930) 0 + primary-for Phonon::Effect (0x7f37b9291c00) + Phonon::MediaNode (0x7f37b92929a0) 16 + vptr=((& Phonon::Effect::_ZTVN6Phonon6EffectE) + 128u) + +Vtable for Phonon::EffectInterface +Phonon::EffectInterface::_ZTVN6Phonon15EffectInterfaceE: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN6Phonon15EffectInterfaceE) +16 Phonon::EffectInterface::~EffectInterface +24 Phonon::EffectInterface::~EffectInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual + +Class Phonon::EffectInterface + size=8 align=8 + base size=8 base align=8 +Phonon::EffectInterface (0x7f37b92a5e00) 0 nearly-empty + vptr=((& Phonon::EffectInterface::_ZTVN6Phonon15EffectInterfaceE) + 16u) + +Class Phonon::EffectParameter + size=8 align=8 + base size=8 base align=8 +Phonon::EffectParameter (0x7f37b92bd070) 0 + +Class QMargins + size=16 align=4 + base size=16 base align=4 +QMargins (0x7f37b92ecc40) 0 + +Class QSize + size=8 align=4 + base size=8 base align=4 +QSize (0x7f37b9318690) 0 + +Class QSizeF + size=16 align=8 + base size=16 base align=8 +QSizeF (0x7f37b9164380) 0 + +Class QPoint + size=8 align=4 + base size=8 base align=4 +QPoint (0x7f37b91ad8c0) 0 + +Class QPointF + size=16 align=8 + base size=16 base align=8 +QPointF (0x7f37b91e6540) 0 + +Class QRect + size=16 align=4 + base size=16 base align=4 +QRect (0x7f37b9225540) 0 + +Class QRectF + size=32 align=8 + base size=32 base align=8 +QRectF (0x7f37b90d2ee0) 0 + +Vtable for QPaintDevice +QPaintDevice::_ZTV12QPaintDevice: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI12QPaintDevice) +16 QPaintDevice::~QPaintDevice +24 QPaintDevice::~QPaintDevice +32 QPaintDevice::devType +40 __cxa_pure_virtual +48 QPaintDevice::metric + +Class QPaintDevice + size=16 align=8 + base size=10 base align=8 +QPaintDevice (0x7f37b8f7dd20) 0 + vptr=((& QPaintDevice::_ZTV12QPaintDevice) + 16u) + +Class QRegExp + size=8 align=8 + base size=8 base align=8 +QRegExp (0x7f37b8fb1620) 0 + +Class QStringMatcher::Data + size=272 align=8 + base size=272 base align=8 +QStringMatcher::Data (0x7f37b8fe1a10) 0 + +Class QStringMatcher + size=1048 align=8 + base size=1048 base align=8 +QStringMatcher (0x7f37b8fe13f0) 0 + +Class QStringList + size=8 align=8 + base size=8 base align=8 +QStringList (0x7f37b9016000) 0 + QList (0x7f37b9016070) 0 + +Class QColor + size=16 align=4 + base size=14 base align=4 +QColor (0x7f37b8e84c40) 0 + +Class QPolygon + size=8 align=8 + base size=8 base align=8 +QPolygon (0x7f37b8ee5460) 0 + QVector (0x7f37b8ee54d0) 0 + +Class QPolygonF + size=8 align=8 + base size=8 base align=8 +QPolygonF (0x7f37b8f289a0) 0 + QVector (0x7f37b8f28a10) 0 + +Class QRegion::QRegionData + size=32 align=8 + base size=32 base align=8 +QRegion::QRegionData (0x7f37b8d84380) 0 + +Class QRegion + size=8 align=8 + base size=8 base align=8 +QRegion (0x7f37b8d64af0) 0 + +Class QLine + size=16 align=4 + base size=16 base align=4 +QLine (0x7f37b8d96c40) 0 + +Class QLineF + size=32 align=8 + base size=32 base align=8 +QLineF (0x7f37b8dd4af0) 0 + +Class QMatrix + size=48 align=8 + base size=48 base align=8 +QMatrix (0x7f37b8e305b0) 0 + +Class QPainterPath::Element + size=24 align=8 + base size=24 base align=8 +QPainterPath::Element (0x7f37b8c37700) 0 + +Class QPainterPath + size=8 align=8 + base size=8 base align=8 +QPainterPath (0x7f37b8c37690) 0 + +Class QPainterPathPrivate + size=16 align=8 + base size=16 base align=8 +QPainterPathPrivate (0x7f37b8c86e00) 0 + +Class QPainterPathStroker + size=8 align=8 + base size=8 base align=8 +QPainterPathStroker (0x7f37b8c8f930) 0 + +Class QTransform + size=88 align=8 + base size=88 base align=8 +QTransform (0x7f37b8cfc930) 0 + +Class QImageTextKeyLang + size=16 align=8 + base size=16 base align=8 +QImageTextKeyLang (0x7f37b8b9df50) 0 + +Vtable for QImage +QImage::_ZTV6QImage: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI6QImage) +16 QImage::~QImage +24 QImage::~QImage +32 QImage::devType +40 QImage::paintEngine +48 QImage::metric + +Class QImage + size=24 align=8 + base size=24 base align=8 +QImage (0x7f37b8bd07e0) 0 + vptr=((& QImage::_ZTV6QImage) + 16u) + QPaintDevice (0x7f37b8bd0850) 0 + primary-for QImage (0x7f37b8bd07e0) + +Vtable for QtSharedPointer::ExternalRefCountData +QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN15QtSharedPointer20ExternalRefCountDataE) +16 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +24 QtSharedPointer::ExternalRefCountData::~ExternalRefCountData +32 QtSharedPointer::ExternalRefCountData::destroy + +Class QtSharedPointer::ExternalRefCountData + size=16 align=8 + base size=16 base align=8 +QtSharedPointer::ExternalRefCountData (0x7f37b8a807e0) 0 + vptr=((& QtSharedPointer::ExternalRefCountData::_ZTVN15QtSharedPointer20ExternalRefCountDataE) + 16u) + +Vtable for QtSharedPointer::ExternalRefCountWithDestroyFn +QtSharedPointer::ExternalRefCountWithDestroyFn::_ZTVN15QtSharedPointer29ExternalRefCountWithDestroyFnE: 5u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN15QtSharedPointer29ExternalRefCountWithDestroyFnE) +16 QtSharedPointer::ExternalRefCountWithDestroyFn::~ExternalRefCountWithDestroyFn +24 QtSharedPointer::ExternalRefCountWithDestroyFn::~ExternalRefCountWithDestroyFn +32 QtSharedPointer::ExternalRefCountWithDestroyFn::destroy + +Class QtSharedPointer::ExternalRefCountWithDestroyFn + size=24 align=8 + base size=24 base align=8 +QtSharedPointer::ExternalRefCountWithDestroyFn (0x7f37b8aab0e0) 0 + vptr=((& QtSharedPointer::ExternalRefCountWithDestroyFn::_ZTVN15QtSharedPointer29ExternalRefCountWithDestroyFnE) + 16u) + QtSharedPointer::ExternalRefCountData (0x7f37b8aab150) 0 + primary-for QtSharedPointer::ExternalRefCountWithDestroyFn (0x7f37b8aab0e0) + +Vtable for QPixmap +QPixmap::_ZTV7QPixmap: 7u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QPixmap) +16 QPixmap::~QPixmap +24 QPixmap::~QPixmap +32 QPixmap::devType +40 QPixmap::paintEngine +48 QPixmap::metric + +Class QPixmap + size=24 align=8 + base size=24 base align=8 +QPixmap (0x7f37b8921d20) 0 + vptr=((& QPixmap::_ZTV7QPixmap) + 16u) + QPaintDevice (0x7f37b8921d90) 0 + primary-for QPixmap (0x7f37b8921d20) + +Class QBrush + size=8 align=8 + base size=8 base align=8 +QBrush (0x7f37b89a3070) 0 + +Class QBrushData + size=112 align=8 + base size=112 base align=8 +QBrushData (0x7f37b89c1a80) 0 + +Class QGradient + size=64 align=8 + base size=64 base align=8 +QGradient (0x7f37b89cfc40) 0 + +Class QLinearGradient + size=64 align=8 + base size=64 base align=8 +QLinearGradient (0x7f37b8810700) 0 + QGradient (0x7f37b8810770) 0 + +Class QRadialGradient + size=64 align=8 + base size=64 base align=8 +QRadialGradient (0x7f37b8810bd0) 0 + QGradient (0x7f37b8810c40) 0 + +Class QConicalGradient + size=64 align=8 + base size=64 base align=8 +QConicalGradient (0x7f37b88221c0) 0 + QGradient (0x7f37b8822230) 0 + +Class QPalette + size=16 align=8 + base size=12 base align=8 +QPalette (0x7f37b8822540) 0 + +Class QColorGroup + size=16 align=8 + base size=12 base align=8 +QColorGroup (0x7f37b886ee70) 0 + QPalette (0x7f37b886eee0) 0 + +Class QFont + size=16 align=8 + base size=12 base align=8 +QFont (0x7f37b88b11c0) 0 + +Class QFontMetrics + size=8 align=8 + base size=8 base align=8 +QFontMetrics (0x7f37b88f2e70) 0 + +Class QFontMetricsF + size=8 align=8 + base size=8 base align=8 +QFontMetricsF (0x7f37b8710310) 0 + +Class QFontInfo + size=8 align=8 + base size=8 base align=8 +QFontInfo (0x7f37b8722230) 0 + +Class QSizePolicy + size=4 align=4 + base size=4 base align=4 +QSizePolicy (0x7f37b8722d20) 0 + +Class QCursor + size=8 align=8 + base size=8 base align=8 +QCursor (0x7f37b87dad20) 0 + +Class QKeySequence + size=8 align=8 + base size=8 base align=8 +QKeySequence (0x7f37b87e1540) 0 + +Class QWidgetData + size=88 align=8 + base size=88 base align=8 +QWidgetData (0x7f37b8801e70) 0 + +Vtable for QWidget +QWidget::_ZTV7QWidget: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI7QWidget) +16 QWidget::metaObject +24 QWidget::qt_metacast +32 QWidget::qt_metacall +40 QWidget::~QWidget +48 QWidget::~QWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTI7QWidget) +464 QWidget::_ZThn16_N7QWidgetD1Ev +472 QWidget::_ZThn16_N7QWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWidget + size=40 align=8 + base size=40 base align=8 +QWidget (0x7f37b8611f00) 0 + vptr=((& QWidget::_ZTV7QWidget) + 16u) + QObject (0x7f37b8801ee0) 0 + primary-for QWidget (0x7f37b8611f00) + QPaintDevice (0x7f37b8801f50) 16 + vptr=((& QWidget::_ZTV7QWidget) + 464u) + +Vtable for Phonon::EffectWidget +Phonon::EffectWidget::_ZTVN6Phonon12EffectWidgetE: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN6Phonon12EffectWidgetE) +16 Phonon::EffectWidget::metaObject +24 Phonon::EffectWidget::qt_metacast +32 Phonon::EffectWidget::qt_metacall +40 Phonon::EffectWidget::~EffectWidget +48 Phonon::EffectWidget::~EffectWidget +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTIN6Phonon12EffectWidgetE) +464 Phonon::EffectWidget::_ZThn16_N6Phonon12EffectWidgetD1Ev +472 Phonon::EffectWidget::_ZThn16_N6Phonon12EffectWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Phonon::EffectWidget + size=48 align=8 + base size=48 base align=8 +Phonon::EffectWidget (0x7f37b8581f50) 0 + vptr=((& Phonon::EffectWidget::_ZTVN6Phonon12EffectWidgetE) + 16u) + QWidget (0x7f37b8583b80) 0 + primary-for Phonon::EffectWidget (0x7f37b8581f50) + QObject (0x7f37b858b000) 0 + primary-for QWidget (0x7f37b8583b80) + QPaintDevice (0x7f37b858b070) 16 + vptr=((& Phonon::EffectWidget::_ZTVN6Phonon12EffectWidgetE) + 464u) + +Vtable for Phonon::MediaController +Phonon::MediaController::_ZTVN6Phonon15MediaControllerE: 14u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN6Phonon15MediaControllerE) +16 Phonon::MediaController::metaObject +24 Phonon::MediaController::qt_metacast +32 Phonon::MediaController::qt_metacall +40 Phonon::MediaController::~MediaController +48 Phonon::MediaController::~MediaController +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify + +Class Phonon::MediaController + size=24 align=8 + base size=24 base align=8 +Phonon::MediaController (0x7f37b85a0310) 0 + vptr=((& Phonon::MediaController::_ZTVN6Phonon15MediaControllerE) + 16u) + QObject (0x7f37b85a0380) 0 + primary-for Phonon::MediaController (0x7f37b85a0310) + +Class Phonon::MediaSource + size=8 align=8 + base size=8 base align=8 +Phonon::MediaSource (0x7f37b85e1230) 0 + +Vtable for Phonon::MediaObject +Phonon::MediaObject::_ZTVN6Phonon11MediaObjectE: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN6Phonon11MediaObjectE) +16 Phonon::MediaObject::metaObject +24 Phonon::MediaObject::qt_metacast +32 Phonon::MediaObject::qt_metacall +40 Phonon::MediaObject::~MediaObject +48 Phonon::MediaObject::~MediaObject +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 (int (*)(...))-0x00000000000000010 +120 (int (*)(...))(& _ZTIN6Phonon11MediaObjectE) +128 Phonon::MediaObject::_ZThn16_N6Phonon11MediaObjectD1Ev +136 Phonon::MediaObject::_ZThn16_N6Phonon11MediaObjectD0Ev + +Class Phonon::MediaObject + size=32 align=8 + base size=32 base align=8 +Phonon::MediaObject (0x7f37b85df600) 0 + vptr=((& Phonon::MediaObject::_ZTVN6Phonon11MediaObjectE) + 16u) + QObject (0x7f37b85e1d90) 0 + primary-for Phonon::MediaObject (0x7f37b85df600) + Phonon::MediaNode (0x7f37b85e1e00) 16 + vptr=((& Phonon::MediaObject::_ZTVN6Phonon11MediaObjectE) + 128u) + +Vtable for Phonon::MediaObjectInterface +Phonon::MediaObjectInterface::_ZTVN6Phonon20MediaObjectInterfaceE: 25u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN6Phonon20MediaObjectInterfaceE) +16 Phonon::MediaObjectInterface::~MediaObjectInterface +24 Phonon::MediaObjectInterface::~MediaObjectInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 __cxa_pure_virtual +152 __cxa_pure_virtual +160 Phonon::MediaObjectInterface::remainingTime +168 __cxa_pure_virtual +176 __cxa_pure_virtual +184 __cxa_pure_virtual +192 __cxa_pure_virtual + +Class Phonon::MediaObjectInterface + size=8 align=8 + base size=8 base align=8 +Phonon::MediaObjectInterface (0x7f37b8419310) 0 nearly-empty + vptr=((& Phonon::MediaObjectInterface::_ZTVN6Phonon20MediaObjectInterfaceE) + 16u) + +Class QModelIndex + size=24 align=8 + base size=24 base align=8 +QModelIndex (0x7f37b842ab60) 0 + +Class QPersistentModelIndex + size=8 align=8 + base size=8 base align=8 +QPersistentModelIndex (0x7f37b845a620) 0 + +Vtable for QAbstractItemModel +QAbstractItemModel::_ZTV18QAbstractItemModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractItemModel) +16 QAbstractItemModel::metaObject +24 QAbstractItemModel::qt_metacast +32 QAbstractItemModel::qt_metacall +40 QAbstractItemModel::~QAbstractItemModel +48 QAbstractItemModel::~QAbstractItemModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractItemModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractItemModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractItemModel + size=16 align=8 + base size=16 base align=8 +QAbstractItemModel (0x7f37b8464930) 0 + vptr=((& QAbstractItemModel::_ZTV18QAbstractItemModel) + 16u) + QObject (0x7f37b84649a0) 0 + primary-for QAbstractItemModel (0x7f37b8464930) + +Vtable for QAbstractTableModel +QAbstractTableModel::_ZTV19QAbstractTableModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI19QAbstractTableModel) +16 QAbstractTableModel::metaObject +24 QAbstractTableModel::qt_metacast +32 QAbstractTableModel::qt_metacall +40 QAbstractTableModel::~QAbstractTableModel +48 QAbstractTableModel::~QAbstractTableModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractTableModel::index +120 QAbstractTableModel::parent +128 __cxa_pure_virtual +136 __cxa_pure_virtual +144 QAbstractTableModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractTableModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractTableModel + size=16 align=8 + base size=16 base align=8 +QAbstractTableModel (0x7f37b84bdc40) 0 + vptr=((& QAbstractTableModel::_ZTV19QAbstractTableModel) + 16u) + QAbstractItemModel (0x7f37b84bdcb0) 0 + primary-for QAbstractTableModel (0x7f37b84bdc40) + QObject (0x7f37b84bdd20) 0 + primary-for QAbstractItemModel (0x7f37b84bdcb0) + +Vtable for QAbstractListModel +QAbstractListModel::_ZTV18QAbstractListModel: 42u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTI18QAbstractListModel) +16 QAbstractListModel::metaObject +24 QAbstractListModel::qt_metacast +32 QAbstractListModel::qt_metacall +40 QAbstractListModel::~QAbstractListModel +48 QAbstractListModel::~QAbstractListModel +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QAbstractListModel::index +120 QAbstractListModel::parent +128 __cxa_pure_virtual +136 QAbstractListModel::columnCount +144 QAbstractListModel::hasChildren +152 __cxa_pure_virtual +160 QAbstractItemModel::setData +168 QAbstractItemModel::headerData +176 QAbstractItemModel::setHeaderData +184 QAbstractItemModel::itemData +192 QAbstractItemModel::setItemData +200 QAbstractItemModel::mimeTypes +208 QAbstractItemModel::mimeData +216 QAbstractListModel::dropMimeData +224 QAbstractItemModel::supportedDropActions +232 QAbstractItemModel::insertRows +240 QAbstractItemModel::insertColumns +248 QAbstractItemModel::removeRows +256 QAbstractItemModel::removeColumns +264 QAbstractItemModel::fetchMore +272 QAbstractItemModel::canFetchMore +280 QAbstractItemModel::flags +288 QAbstractItemModel::sort +296 QAbstractItemModel::buddy +304 QAbstractItemModel::match +312 QAbstractItemModel::span +320 QAbstractItemModel::submit +328 QAbstractItemModel::revert + +Class QAbstractListModel + size=16 align=8 + base size=16 base align=8 +QAbstractListModel (0x7f37b84d91c0) 0 + vptr=((& QAbstractListModel::_ZTV18QAbstractListModel) + 16u) + QAbstractItemModel (0x7f37b84d9230) 0 + primary-for QAbstractListModel (0x7f37b84d91c0) + QObject (0x7f37b84d92a0) 0 + primary-for QAbstractItemModel (0x7f37b84d9230) + +Class Phonon::ObjectDescriptionModelData + size=8 align=8 + base size=8 base align=8 +Phonon::ObjectDescriptionModelData (0x7f37b830c310) 0 + +Vtable for Phonon::PlatformPlugin +Phonon::PlatformPlugin::_ZTVN6Phonon14PlatformPluginE: 16u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN6Phonon14PlatformPluginE) +16 Phonon::PlatformPlugin::~PlatformPlugin +24 Phonon::PlatformPlugin::~PlatformPlugin +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 Phonon::PlatformPlugin::deviceAccessListFor + +Class Phonon::PlatformPlugin + size=8 align=8 + base size=8 base align=8 +Phonon::PlatformPlugin (0x7f37b83762a0) 0 nearly-empty + vptr=((& Phonon::PlatformPlugin::_ZTVN6Phonon14PlatformPluginE) + 16u) + +Vtable for Phonon::SeekSlider +Phonon::SeekSlider::_ZTVN6Phonon10SeekSliderE: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN6Phonon10SeekSliderE) +16 Phonon::SeekSlider::metaObject +24 Phonon::SeekSlider::qt_metacast +32 Phonon::SeekSlider::qt_metacall +40 Phonon::SeekSlider::~SeekSlider +48 Phonon::SeekSlider::~SeekSlider +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTIN6Phonon10SeekSliderE) +464 Phonon::SeekSlider::_ZThn16_N6Phonon10SeekSliderD1Ev +472 Phonon::SeekSlider::_ZThn16_N6Phonon10SeekSliderD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Phonon::SeekSlider + size=48 align=8 + base size=48 base align=8 +Phonon::SeekSlider (0x7f37b83ad8c0) 0 + vptr=((& Phonon::SeekSlider::_ZTVN6Phonon10SeekSliderE) + 16u) + QWidget (0x7f37b8388e00) 0 + primary-for Phonon::SeekSlider (0x7f37b83ad8c0) + QObject (0x7f37b83ad930) 0 + primary-for QWidget (0x7f37b8388e00) + QPaintDevice (0x7f37b83ad9a0) 16 + vptr=((& Phonon::SeekSlider::_ZTVN6Phonon10SeekSliderE) + 464u) + +Vtable for Phonon::StreamInterface +Phonon::StreamInterface::_ZTVN6Phonon15StreamInterfaceE: 8u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN6Phonon15StreamInterfaceE) +16 Phonon::StreamInterface::~StreamInterface +24 Phonon::StreamInterface::~StreamInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual + +Class Phonon::StreamInterface + size=16 align=8 + base size=16 base align=8 +Phonon::StreamInterface (0x7f37b83c9d90) 0 + vptr=((& Phonon::StreamInterface::_ZTVN6Phonon15StreamInterfaceE) + 16u) + +Vtable for Phonon::VideoPlayer +Phonon::VideoPlayer::_ZTVN6Phonon11VideoPlayerE: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN6Phonon11VideoPlayerE) +16 Phonon::VideoPlayer::metaObject +24 Phonon::VideoPlayer::qt_metacast +32 Phonon::VideoPlayer::qt_metacall +40 Phonon::VideoPlayer::~VideoPlayer +48 Phonon::VideoPlayer::~VideoPlayer +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTIN6Phonon11VideoPlayerE) +464 Phonon::VideoPlayer::_ZThn16_N6Phonon11VideoPlayerD1Ev +472 Phonon::VideoPlayer::_ZThn16_N6Phonon11VideoPlayerD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Phonon::VideoPlayer + size=48 align=8 + base size=48 base align=8 +Phonon::VideoPlayer (0x7f37b83d87e0) 0 + vptr=((& Phonon::VideoPlayer::_ZTVN6Phonon11VideoPlayerE) + 16u) + QWidget (0x7f37b83dd080) 0 + primary-for Phonon::VideoPlayer (0x7f37b83d87e0) + QObject (0x7f37b83d8850) 0 + primary-for QWidget (0x7f37b83dd080) + QPaintDevice (0x7f37b83d88c0) 16 + vptr=((& Phonon::VideoPlayer::_ZTVN6Phonon11VideoPlayerE) + 464u) + +Vtable for Phonon::VideoWidget +Phonon::VideoWidget::_ZTVN6Phonon11VideoWidgetE: 67u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN6Phonon11VideoWidgetE) +16 Phonon::VideoWidget::metaObject +24 Phonon::VideoWidget::qt_metacast +32 Phonon::VideoWidget::qt_metacall +40 Phonon::VideoWidget::~VideoWidget +48 Phonon::VideoWidget::~VideoWidget +56 Phonon::VideoWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 Phonon::VideoWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTIN6Phonon11VideoWidgetE) +464 Phonon::VideoWidget::_ZThn16_N6Phonon11VideoWidgetD1Ev +472 Phonon::VideoWidget::_ZThn16_N6Phonon11VideoWidgetD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE +504 (int (*)(...))-0x00000000000000028 +512 (int (*)(...))(& _ZTIN6Phonon11VideoWidgetE) +520 Phonon::VideoWidget::_ZThn40_N6Phonon11VideoWidgetD1Ev +528 Phonon::VideoWidget::_ZThn40_N6Phonon11VideoWidgetD0Ev + +Class Phonon::VideoWidget + size=56 align=8 + base size=56 base align=8 +Phonon::VideoWidget (0x7f37b83dd780) 0 + vptr=((& Phonon::VideoWidget::_ZTVN6Phonon11VideoWidgetE) + 16u) + QWidget (0x7f37b83dd800) 0 + primary-for Phonon::VideoWidget (0x7f37b83dd780) + QObject (0x7f37b81f0850) 0 + primary-for QWidget (0x7f37b83dd800) + QPaintDevice (0x7f37b81f08c0) 16 + vptr=((& Phonon::VideoWidget::_ZTVN6Phonon11VideoWidgetE) + 464u) + Phonon::AbstractVideoOutput (0x7f37b81f0930) 40 + vptr=((& Phonon::VideoWidget::_ZTVN6Phonon11VideoWidgetE) + 520u) + Phonon::MediaNode (0x7f37b81f09a0) 40 + primary-for Phonon::AbstractVideoOutput (0x7f37b81f0930) + +Vtable for Phonon::VideoWidgetInterface +Phonon::VideoWidgetInterface::_ZTVN6Phonon20VideoWidgetInterfaceE: 17u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN6Phonon20VideoWidgetInterfaceE) +16 Phonon::VideoWidgetInterface::~VideoWidgetInterface +24 Phonon::VideoWidgetInterface::~VideoWidgetInterface +32 __cxa_pure_virtual +40 __cxa_pure_virtual +48 __cxa_pure_virtual +56 __cxa_pure_virtual +64 __cxa_pure_virtual +72 __cxa_pure_virtual +80 __cxa_pure_virtual +88 __cxa_pure_virtual +96 __cxa_pure_virtual +104 __cxa_pure_virtual +112 __cxa_pure_virtual +120 __cxa_pure_virtual +128 __cxa_pure_virtual + +Class Phonon::VideoWidgetInterface + size=8 align=8 + base size=8 base align=8 +Phonon::VideoWidgetInterface (0x7f37b8216230) 0 nearly-empty + vptr=((& Phonon::VideoWidgetInterface::_ZTVN6Phonon20VideoWidgetInterfaceE) + 16u) + +Vtable for Phonon::VolumeFaderEffect +Phonon::VolumeFaderEffect::_ZTVN6Phonon17VolumeFaderEffectE: 18u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN6Phonon17VolumeFaderEffectE) +16 Phonon::VolumeFaderEffect::metaObject +24 Phonon::VolumeFaderEffect::qt_metacast +32 Phonon::VolumeFaderEffect::qt_metacall +40 Phonon::VolumeFaderEffect::~VolumeFaderEffect +48 Phonon::VolumeFaderEffect::~VolumeFaderEffect +56 QObject::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 (int (*)(...))-0x00000000000000010 +120 (int (*)(...))(& _ZTIN6Phonon17VolumeFaderEffectE) +128 Phonon::VolumeFaderEffect::_ZThn16_N6Phonon17VolumeFaderEffectD1Ev +136 Phonon::VolumeFaderEffect::_ZThn16_N6Phonon17VolumeFaderEffectD0Ev + +Class Phonon::VolumeFaderEffect + size=32 align=8 + base size=32 base align=8 +Phonon::VolumeFaderEffect (0x7f37b8225850) 0 + vptr=((& Phonon::VolumeFaderEffect::_ZTVN6Phonon17VolumeFaderEffectE) + 16u) + Phonon::Effect (0x7f37b8223c80) 0 + primary-for Phonon::VolumeFaderEffect (0x7f37b8225850) + QObject (0x7f37b82258c0) 0 + primary-for Phonon::Effect (0x7f37b8223c80) + Phonon::MediaNode (0x7f37b8225930) 16 + vptr=((& Phonon::VolumeFaderEffect::_ZTVN6Phonon17VolumeFaderEffectE) + 128u) + +Vtable for Phonon::VolumeFaderInterface +Phonon::VolumeFaderInterface::_ZTVN6Phonon20VolumeFaderInterfaceE: 9u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN6Phonon20VolumeFaderInterfaceE) +16 Phonon::VolumeFaderInterface::~VolumeFaderInterface +24 Phonon::VolumeFaderInterface::~VolumeFaderInterface +32 Phonon::VolumeFaderInterface::volume +40 Phonon::VolumeFaderInterface::setVolume +48 Phonon::VolumeFaderInterface::fadeCurve +56 Phonon::VolumeFaderInterface::setFadeCurve +64 Phonon::VolumeFaderInterface::fadeTo + +Class Phonon::VolumeFaderInterface + size=8 align=8 + base size=8 base align=8 +Phonon::VolumeFaderInterface (0x7f37b823ae70) 0 nearly-empty + vptr=((& Phonon::VolumeFaderInterface::_ZTVN6Phonon20VolumeFaderInterfaceE) + 16u) + +Vtable for Phonon::VolumeSlider +Phonon::VolumeSlider::_ZTVN6Phonon12VolumeSliderE: 63u entries +0 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN6Phonon12VolumeSliderE) +16 Phonon::VolumeSlider::metaObject +24 Phonon::VolumeSlider::qt_metacast +32 Phonon::VolumeSlider::qt_metacall +40 Phonon::VolumeSlider::~VolumeSlider +48 Phonon::VolumeSlider::~VolumeSlider +56 QWidget::event +64 QObject::eventFilter +72 QObject::timerEvent +80 QObject::childEvent +88 QObject::customEvent +96 QObject::connectNotify +104 QObject::disconnectNotify +112 QWidget::devType +120 QWidget::setVisible +128 QWidget::sizeHint +136 QWidget::minimumSizeHint +144 QWidget::heightForWidth +152 QWidget::paintEngine +160 QWidget::mousePressEvent +168 QWidget::mouseReleaseEvent +176 QWidget::mouseDoubleClickEvent +184 QWidget::mouseMoveEvent +192 QWidget::wheelEvent +200 QWidget::keyPressEvent +208 QWidget::keyReleaseEvent +216 QWidget::focusInEvent +224 QWidget::focusOutEvent +232 QWidget::enterEvent +240 QWidget::leaveEvent +248 QWidget::paintEvent +256 QWidget::moveEvent +264 QWidget::resizeEvent +272 QWidget::closeEvent +280 QWidget::contextMenuEvent +288 QWidget::tabletEvent +296 QWidget::actionEvent +304 QWidget::dragEnterEvent +312 QWidget::dragMoveEvent +320 QWidget::dragLeaveEvent +328 QWidget::dropEvent +336 QWidget::showEvent +344 QWidget::hideEvent +352 QWidget::x11Event +360 QWidget::changeEvent +368 QWidget::metric +376 QWidget::inputMethodEvent +384 QWidget::inputMethodQuery +392 QWidget::focusNextPrevChild +400 QWidget::styleChange +408 QWidget::enabledChange +416 QWidget::paletteChange +424 QWidget::fontChange +432 QWidget::windowActivationChange +440 QWidget::languageChange +448 (int (*)(...))-0x00000000000000010 +456 (int (*)(...))(& _ZTIN6Phonon12VolumeSliderE) +464 Phonon::VolumeSlider::_ZThn16_N6Phonon12VolumeSliderD1Ev +472 Phonon::VolumeSlider::_ZThn16_N6Phonon12VolumeSliderD0Ev +480 QWidget::_ZThn16_NK7QWidget7devTypeEv +488 QWidget::_ZThn16_NK7QWidget11paintEngineEv +496 QWidget::_ZThn16_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Phonon::VolumeSlider + size=48 align=8 + base size=48 base align=8 +Phonon::VolumeSlider (0x7f37b824f930) 0 + vptr=((& Phonon::VolumeSlider::_ZTVN6Phonon12VolumeSliderE) + 16u) + QWidget (0x7f37b8254500) 0 + primary-for Phonon::VolumeSlider (0x7f37b824f930) + QObject (0x7f37b824f9a0) 0 + primary-for QWidget (0x7f37b8254500) + QPaintDevice (0x7f37b824fa10) 16 + vptr=((& Phonon::VolumeSlider::_ZTVN6Phonon12VolumeSliderE) + 464u) + -- cgit v0.12 From c400e57c82e32d55cec0bb65465e9297927cc01e Mon Sep 17 00:00:00 2001 From: Shane Kearns Date: Fri, 21 May 2010 12:38:20 +0200 Subject: Backport multitouch bug fixes to 4.6 commit 24b811e53b30546279346ab7b16799be119ab8c4 on 4.7 includes bug fixes which are needed for 4.6 as well. 1. TouchEnd event was missing 2. pressure in touchpoints was set to 0.0 for non pressure sensitive touch screens, it should be set to 1.0 for consistency with existing Qt ports (e.g. mac). Task-number: QTBUG-10885 Reviewed-by: Bradley T. Hughes --- src/gui/kernel/qapplication_p.h | 3 ++- src/gui/kernel/qapplication_s60.cpp | 23 +++++++++++++++++------ 2 files changed, 19 insertions(+), 7 deletions(-) diff --git a/src/gui/kernel/qapplication_p.h b/src/gui/kernel/qapplication_p.h index ce39334..cf144c5 100644 --- a/src/gui/kernel/qapplication_p.h +++ b/src/gui/kernel/qapplication_p.h @@ -566,7 +566,8 @@ public: void _q_readRX71MultiTouchEvents(); #endif -#if defined(Q_WS_S60) +#if defined(Q_OS_SYMBIAN) + int pressureSupported; int maxTouchPressure; QList appAllTouchPoints; #endif diff --git a/src/gui/kernel/qapplication_s60.cpp b/src/gui/kernel/qapplication_s60.cpp index dbdcef9..6e6a806 100644 --- a/src/gui/kernel/qapplication_s60.cpp +++ b/src/gui/kernel/qapplication_s60.cpp @@ -407,15 +407,22 @@ void QSymbianControl::HandleLongTapEventL( const TPoint& aPenEventLocation, cons void QSymbianControl::translateAdvancedPointerEvent(const TAdvancedPointerEvent *event) { QApplicationPrivate *d = QApplicationPrivate::instance(); + qreal pressure; + if(d->pressureSupported + && event->Pressure() > 0) //workaround for misconfigured HAL + pressure = event->Pressure() / qreal(d->maxTouchPressure); + else + pressure = qreal(1.0); QRect screenGeometry = qApp->desktop()->screenGeometry(qwidget); - while (d->appAllTouchPoints.count() <= event->PointerNumber()) - d->appAllTouchPoints.append(QTouchEvent::TouchPoint(d->appAllTouchPoints.count())); + QList points = d->appAllTouchPoints; + while (points.count() <= event->PointerNumber()) + points.append(QTouchEvent::TouchPoint(points.count())); Qt::TouchPointStates allStates = 0; - for (int i = 0; i < d->appAllTouchPoints.count(); ++i) { - QTouchEvent::TouchPoint &touchPoint = d->appAllTouchPoints[i]; + for (int i = 0; i < points.count(); ++i) { + QTouchEvent::TouchPoint &touchPoint = points[i]; if (touchPoint.id() == event->PointerNumber()) { Qt::TouchPointStates state; @@ -445,7 +452,7 @@ void QSymbianControl::translateAdvancedPointerEvent(const TAdvancedPointerEvent touchPoint.setNormalizedPos(QPointF(screenPos.x() / screenGeometry.width(), screenPos.y() / screenGeometry.height())); - touchPoint.setPressure(event->Pressure() / qreal(d->maxTouchPressure)); + touchPoint.setPressure(pressure); } else if (touchPoint.state() != Qt::TouchPointReleased) { // all other active touch points should be marked as stationary touchPoint.setState(Qt::TouchPointStationary); @@ -457,11 +464,13 @@ void QSymbianControl::translateAdvancedPointerEvent(const TAdvancedPointerEvent if ((allStates & Qt::TouchPointStateMask) == Qt::TouchPointReleased) { // all touch points released d->appAllTouchPoints.clear(); + } else { + d->appAllTouchPoints = points; } QApplicationPrivate::translateRawTouchEvent(qwidget, QTouchEvent::TouchScreen, - d->appAllTouchPoints); + points); } #endif @@ -1916,6 +1925,8 @@ TUint QApplicationPrivate::resolveS60ScanCode(TInt scanCode, TUint keysym) void QApplicationPrivate::initializeMultitouch_sys() { #ifdef QT_SYMBIAN_SUPPORTS_ADVANCED_POINTER + if (HAL::Get(HALData::EPointer3DPressureSupported, pressureSupported) != KErrNone) + pressureSupported = 0; if (HAL::Get(HALData::EPointer3DMaxPressure, maxTouchPressure) != KErrNone) maxTouchPressure = KMaxTInt; #endif -- cgit v0.12 From 6b52b41c71300ea3424385986391485058fc1fa5 Mon Sep 17 00:00:00 2001 From: Morten Engvoldsen Date: Fri, 21 May 2010 13:29:58 +0200 Subject: Doc: design changes Fixing menus and js --- doc/src/template/scripts/functions.js | 9 +++++++-- doc/src/template/style/style.css | 13 +++++++++---- tools/qdoc3/test/qt-html-templates.qdocconf | 7 ------- 3 files changed, 16 insertions(+), 13 deletions(-) diff --git a/doc/src/template/scripts/functions.js b/doc/src/template/scripts/functions.js index 7ae2421..58a0248 100755 --- a/doc/src/template/scripts/functions.js +++ b/doc/src/template/scripts/functions.js @@ -117,7 +117,14 @@ function processNokiaData(response){ var blankRE=/^\s*$/; function CheckEmptyAndLoadList() { + var pageUrl = window.location.href; + var pageVal = $('title').html(); + $('#feedUrl').remove(); + $('#pageVal').remove(); + $('#feedform').append(''); + $('#feedform').append(''); $('.liveResult').remove(); + $('.defaultLink').css('display','block'); var value = document.getElementById('pageType').value; if((blankRE.test(value)) || (value.length < 3)) { @@ -140,11 +147,9 @@ else */ // Loads on doc ready $(document).ready(function () { - var pageUrl = window.location.href; //alert(pageUrl); //$('#pageUrl').attr('foo',pageUrl); var pageTitle = $('title').html(); - $('#feedform').append(''); var currentString = $('#pageType').val() ; if(currentString.length < 1){ $('.defaultLink').css('display','block'); diff --git a/doc/src/template/style/style.css b/doc/src/template/style/style.css index 82acd3e..ebc1607 100755 --- a/doc/src/template/style/style.css +++ b/doc/src/template/style/style.css @@ -844,7 +844,7 @@ background-color: #e6e7e8; z-index: 4; } - #feedcloseX a + #feedcloseX { display: inline; padding: 5px 5px 0 0; @@ -998,17 +998,17 @@ .rightAlign { - /*text-align:right; */ + text-align:right; } .leftAlign { - /*text-align:left; */ + text-align:left; } .topAlign{ - /*vertical-align:top*/ + vertical-align:top } .functionIndex a{ @@ -1150,6 +1150,11 @@ padding:0px; .wrap .content .flowList p{ padding:0px; } +pre.highlightedCode { + display: block; + overflow:hidden; +} + } /* end of screen media */ diff --git a/tools/qdoc3/test/qt-html-templates.qdocconf b/tools/qdoc3/test/qt-html-templates.qdocconf index 09f0c96..b72a1eb 100644 --- a/tools/qdoc3/test/qt-html-templates.qdocconf +++ b/tools/qdoc3/test/qt-html-templates.qdocconf @@ -54,8 +54,6 @@ HTML.postheader = "
    \n" \ "
  • QML elements
  • \n" \ " \n" \ "
    \n" \ - "
    \n" \ - "
    \n" \ "
    \n" \ "
    \n" \ "

    \n" \ @@ -68,8 +66,6 @@ HTML.postheader = "
    \n" \ "
  • Platform-specific info
  • \n" \ " \n" \ "
    \n" \ - "
    \n" \ - "
    \n" \ "

    \n" \ "
    \n" \ "

    \n" \ @@ -83,8 +79,6 @@ HTML.postheader = "
    \n" \ "
  • QML Demos
  • \n" \ " \n" \ "
    \n" \ - "
    \n" \ - "
    \n" \ "

    \n" \ " \n" \ "
    \n" \ @@ -130,7 +124,6 @@ HTML.footer = " \n" \ "
    X
    \n" \ "
    \n" \ "

    \n" \ - " \n" \ "

    \n" \ "
    \n" \ "
    \n" \ -- cgit v0.12 From 832b1a48050df80515353d9887976f364913ff8e Mon Sep 17 00:00:00 2001 From: Thierry Bastian Date: Fri, 21 May 2010 14:10:53 +0200 Subject: Fixed an assert in QMenu The code was changed and changed the behaviour. This is basically a kind of revert. Reviewed-By: gabi Task-Number: QTBUG-10735 --- src/gui/widgets/qmenu.cpp | 12 +--------- tests/auto/qmenu/tst_qmenu.cpp | 54 ++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 55 insertions(+), 11 deletions(-) diff --git a/src/gui/widgets/qmenu.cpp b/src/gui/widgets/qmenu.cpp index 879ba2a..c05829a 100644 --- a/src/gui/widgets/qmenu.cpp +++ b/src/gui/widgets/qmenu.cpp @@ -992,19 +992,9 @@ bool QMenuPrivate::mouseEventTaken(QMouseEvent *e) return false; } -class ExceptionGuard -{ -public: - inline ExceptionGuard(bool *w = 0) : watched(w) { Q_ASSERT(!(*watched)); *watched = true; } - inline ~ExceptionGuard() { *watched = false; } - inline operator bool() { return *watched; } -private: - bool *watched; -}; - void QMenuPrivate::activateCausedStack(const QList > &causedStack, QAction *action, QAction::ActionEvent action_e, bool self) { - ExceptionGuard guard(&activationRecursionGuard); + QBoolBlocker guard(activationRecursionGuard); #ifdef QT3_SUPPORT const int actionId = q_func()->findIdForAction(action); #endif diff --git a/tests/auto/qmenu/tst_qmenu.cpp b/tests/auto/qmenu/tst_qmenu.cpp index 9dc18e0..63e7310 100644 --- a/tests/auto/qmenu/tst_qmenu.cpp +++ b/tests/auto/qmenu/tst_qmenu.cpp @@ -51,6 +51,7 @@ #include #include #include +#include #include #include @@ -104,6 +105,7 @@ private slots: void setFixedWidth(); void deleteActionInTriggered(); void pushButtonPopulateOnAboutToShow(); + void QTBUG_10735_crashWithDialog(); protected slots: void onActivated(QAction*); void onHighlighted(QAction*); @@ -932,5 +934,57 @@ void tst_QMenu::pushButtonPopulateOnAboutToShow() } +class MyMenu : public QMenu +{ + Q_OBJECT +public: + MyMenu() : m_currentIndex(0) + { + for (int i = 0; i < 2; ++i) + dialogActions[i] = addAction( QString("dialog %1").arg(i), dialogs + i, SLOT(exec())); + } + + + void activateAction(int index) + { + m_currentIndex = index; + popup(QPoint()); + QTest::qWaitForWindowShown(this); + setActiveAction(dialogActions[index]); + QTimer::singleShot(500, this, SLOT(checkVisibility())); + QTest::keyClick(this, Qt::Key_Enter); //activation + } + +public slots: + void activateLastAction() + { + activateAction(1); + } + + void checkVisibility() + { + QTRY_VERIFY(dialogs[m_currentIndex].isVisible()); + if (m_currentIndex == 1) { + QApplication::closeAllWindows(); //this is the end of the test + } + } + + +private: + QAction *dialogActions[2]; + QDialog dialogs[2]; + int m_currentIndex; +}; + +void tst_QMenu::QTBUG_10735_crashWithDialog() +{ + MyMenu menu; + + QTimer::singleShot(1000, &menu, SLOT(activateLastAction())); + menu.activateAction(0); + +} + + QTEST_MAIN(tst_QMenu) #include "tst_qmenu.moc" -- cgit v0.12 From 49a6f4a7d87def3816cebf0115ddadf43e9c4d01 Mon Sep 17 00:00:00 2001 From: Carlos Manuel Duclos Vergara Date: Fri, 21 May 2010 14:23:22 +0200 Subject: Removal erroneous inclusion of new Public API in qmacstyle. When fixing qtbug-10401 I introduced some extra symbols in the public API. This commit fixes that and moves those symbols to QMacStylePrivate instead. Reviewed-by: jbache --- src/gui/styles/qmacstyle_mac_p.h | 255 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 255 insertions(+) create mode 100644 src/gui/styles/qmacstyle_mac_p.h diff --git a/src/gui/styles/qmacstyle_mac_p.h b/src/gui/styles/qmacstyle_mac_p.h new file mode 100644 index 0000000..7f8994e --- /dev/null +++ b/src/gui/styles/qmacstyle_mac_p.h @@ -0,0 +1,255 @@ +/**************************************************************************** +** +** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the QtGui module of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** No Commercial Usage +** This file contains pre-release code and may not be distributed. +** You may use this file in accordance with the terms and conditions +** contained in the Technology Preview License Agreement accompanying +** this package. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Nokia gives you certain additional +** rights. These rights are described in the Nokia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + + +#ifndef QMACSTYLE_MAC_P_H +#define QMACSTYLE_MAC_P_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +// +// W A R N I N G +// ------------- +// +// This file is not part of the Qt API. It exists purely as an +// implementation detail. This header file may change from version to +// version without notice, or even be removed. +// +// We mean it. +// + +// These colors specify the titlebar gradient colors on +// Leopard. Ideally we should get them from the system. +static const QColor titlebarGradientActiveBegin(220, 220, 220); +static const QColor titlebarGradientActiveEnd(151, 151, 151); +static const QColor titlebarSeparatorLineActive(111, 111, 111); +static const QColor titlebarGradientInactiveBegin(241, 241, 241); +static const QColor titlebarGradientInactiveEnd(207, 207, 207); +static const QColor titlebarSeparatorLineInactive(131, 131, 131); + +// Gradient colors used for the dock widget title bar and +// non-unifed tool bar bacground. +static const QColor mainWindowGradientBegin(240, 240, 240); +static const QColor mainWindowGradientEnd(200, 200, 200); + +#if (MAC_OS_X_VERSION_MAX_ALLOWED <= MAC_OS_X_VERSION_10_5) +enum { + kThemePushButtonTextured = 31, + kThemePushButtonTexturedSmall = 32, + kThemePushButtonTexturedMini = 33 +}; + +/* Search fields */ +enum { + kHIThemeFrameTextFieldRound = 1000, + kHIThemeFrameTextFieldRoundSmall = 1001, + kHIThemeFrameTextFieldRoundMini = 1002 +}; +#endif + +// Resolve these at run-time, since the functions was moved in Leopard. +typedef HIRect * (*PtrHIShapeGetBounds)(HIShapeRef, HIRect *); +static PtrHIShapeGetBounds ptrHIShapeGetBounds = 0; + +static int closeButtonSize = 12; + +/* + AHIG: + Apple Human Interface Guidelines + http://developer.apple.com/documentation/UserExperience/Conceptual/OSXHIGuidelines/ + + Builder: + Apple Interface Builder v. 3.1.1 +*/ + +// this works as long as we have at most 16 different control types +#define CT1(c) CT2(c, c) +#define CT2(c1, c2) ((uint(c1) << 16) | uint(c2)) + +enum QAquaWidgetSize { QAquaSizeLarge = 0, QAquaSizeSmall = 1, QAquaSizeMini = 2, + QAquaSizeUnknown = -1 }; + +#define SIZE(large, small, mini) \ + (controlSize == QAquaSizeLarge ? (large) : controlSize == QAquaSizeSmall ? (small) : (mini)) + +// same as return SIZE(...) but optimized +#define return_SIZE(large, small, mini) \ + do { \ + static const int sizes[] = { (large), (small), (mini) }; \ + return sizes[controlSize]; \ + } while (0) + +class QMacStylePrivate : public QObject +{ + Q_OBJECT + +public: + QMacStylePrivate(QMacStyle *style); + + // Ideally these wouldn't exist, but since they already exist we need some accessors. + static const int PushButtonLeftOffset; + static const int PushButtonTopOffset; + static const int PushButtonRightOffset; + static const int PushButtonBottomOffset; + static const int MiniButtonH; + static const int SmallButtonH; + static const int BevelButtonW; + static const int BevelButtonH; + static const int PushButtonContentPadding; + + + // Stuff from QAquaAnimate: + bool addWidget(QWidget *); + void removeWidget(QWidget *); + + enum Animates { AquaPushButton, AquaProgressBar, AquaListViewItemOpen }; + bool animatable(Animates, const QWidget *) const; + void stopAnimate(Animates, QWidget *); + void startAnimate(Animates, QWidget *); + static ThemeDrawState getDrawState(QStyle::State flags); + QAquaWidgetSize aquaSizeConstrain(const QStyleOption *option, const QWidget *widg, + QStyle::ContentsType ct = QStyle::CT_CustomBase, + QSize szHint=QSize(-1, -1), QSize *insz = 0) const; + void getSliderInfo(QStyle::ComplexControl cc, const QStyleOptionSlider *slider, + HIThemeTrackDrawInfo *tdi, const QWidget *needToRemoveMe); + bool doAnimate(Animates); + inline int animateSpeed(Animates) const { return 33; } + + // Utility functions + void drawColorlessButton(const HIRect &macRect, HIThemeButtonDrawInfo *bdi, + QPainter *p, const QStyleOption *opt) const; + + QSize pushButtonSizeFromContents(const QStyleOptionButton *btn) const; + + HIRect pushButtonContentBounds(const QStyleOptionButton *btn, + const HIThemeButtonDrawInfo *bdi) const; + + void initComboboxBdi(const QStyleOptionComboBox *combo, HIThemeButtonDrawInfo *bdi, + const QWidget *widget, const ThemeDrawState &tds); + + static HIRect comboboxInnerBounds(const HIRect &outerBounds, int buttonKind); + + static QRect comboboxEditBounds(const QRect &outerBounds, const HIThemeButtonDrawInfo &bdi); + + static void drawCombobox(const HIRect &outerBounds, const HIThemeButtonDrawInfo &bdi, QPainter *p); + static void drawTableHeader(const HIRect &outerBounds, bool drawTopBorder, bool drawLeftBorder, + const HIThemeButtonDrawInfo &bdi, QPainter *p); + bool contentFitsInPushButton(const QStyleOptionButton *btn, HIThemeButtonDrawInfo *bdi, + ThemeButtonKind buttonKindToCheck) const; + void initHIThemePushButton(const QStyleOptionButton *btn, const QWidget *widget, + const ThemeDrawState tds, + HIThemeButtonDrawInfo *bdi) const; + QPixmap generateBackgroundPattern() const; +protected: + bool eventFilter(QObject *, QEvent *); + void timerEvent(QTimerEvent *); + +private slots: + void startAnimationTimer(); + +public: + QPointer defaultButton; //default push buttons + int timerID; + QList > progressBars; //existing progress bars that need animation + + struct ButtonState { + int frame; + enum { ButtonDark, ButtonLight } dir; + } buttonState; + UInt8 progressFrame; + QPointer focusWidget; + CFAbsoluteTime defaultButtonStart; + QMacStyle *q; + bool mouseDown; +}; + +#endif // QMACSTYLE_MAC_P_H -- cgit v0.12 From 4377e247e135967eb7b4c89906415abecb283bd3 Mon Sep 17 00:00:00 2001 From: Carlos Manuel Duclos Vergara Date: Fri, 21 May 2010 14:32:05 +0200 Subject: Fixing incorrect addition of public API symbols. This commit is related to 49a6f4a7d87def3816cebf0115ddadf43e9c4d01 and contains all the files that were modified. The previous commit contained only the newly added file. Reviewed-by: jbache --- src/gui/kernel/qt_cocoa_helpers_mac_p.h | 5 + src/gui/styles/qmacstyle_mac.h | 11 -- src/gui/styles/qmacstyle_mac.mm | 181 ++++++-------------------------- src/gui/styles/qmacstyle_mac_p.h | 22 +--- src/gui/styles/qmacstylepixmaps_mac_p.h | 5 + src/gui/styles/styles.pri | 3 +- src/gui/widgets/qpushbutton.cpp | 9 +- 7 files changed, 55 insertions(+), 181 deletions(-) diff --git a/src/gui/kernel/qt_cocoa_helpers_mac_p.h b/src/gui/kernel/qt_cocoa_helpers_mac_p.h index 5db121a..44fb4f0 100644 --- a/src/gui/kernel/qt_cocoa_helpers_mac_p.h +++ b/src/gui/kernel/qt_cocoa_helpers_mac_p.h @@ -73,6 +73,9 @@ ** ****************************************************************************/ +#ifndef QT_COCOA_HELPERS_MAC_P_H +#define QT_COCOA_HELPERS_MAC_P_H + // // W A R N I N G // ------------- @@ -216,3 +219,5 @@ bool qt_cocoaPostMessage(id target, SEL selector); void qt_mac_post_retranslateAppMenu(); QT_END_NAMESPACE + +#endif // QT_COCOA_HELPERS_MAC_P_H diff --git a/src/gui/styles/qmacstyle_mac.h b/src/gui/styles/qmacstyle_mac.h index e594793..bcebb1d 100644 --- a/src/gui/styles/qmacstyle_mac.h +++ b/src/gui/styles/qmacstyle_mac.h @@ -120,17 +120,6 @@ public: bool event(QEvent *e); - // Ideally these wouldn't exist, but since they already exist we need some accessors. - static const int PushButtonLeftOffset; - static const int PushButtonTopOffset; - static const int PushButtonRightOffset; - static const int PushButtonBottomOffset; - static const int MiniButtonH; - static const int SmallButtonH; - static const int BevelButtonW; - static const int BevelButtonH; - static const int PushButtonContentPadding; - protected Q_SLOTS: QIcon standardIconImplementation(StandardPixmap standardIcon, const QStyleOption *opt = 0, const QWidget *widget = 0) const; diff --git a/src/gui/styles/qmacstyle_mac.mm b/src/gui/styles/qmacstyle_mac.mm index e82e638..9cffc1e 100644 --- a/src/gui/styles/qmacstyle_mac.mm +++ b/src/gui/styles/qmacstyle_mac.mm @@ -101,22 +101,21 @@ #include #include #include +#include "qmacstyle_mac_p.h" QT_BEGIN_NAMESPACE -extern QRegion qt_mac_convert_mac_region(RgnHandle); //qregion_mac.cpp - // The following constants are used for adjusting the size // of push buttons so that they are drawn inside their bounds. -const int QMacStyle::PushButtonLeftOffset = 6; -const int QMacStyle::PushButtonTopOffset = 4; -const int QMacStyle::PushButtonRightOffset = 12; -const int QMacStyle::PushButtonBottomOffset = 12; -const int QMacStyle::MiniButtonH = 26; -const int QMacStyle::SmallButtonH = 30; -const int QMacStyle::BevelButtonW = 50; -const int QMacStyle::BevelButtonH = 22; -const int QMacStyle::PushButtonContentPadding = 6; +const int QMacStylePrivate::PushButtonLeftOffset = 6; +const int QMacStylePrivate::PushButtonTopOffset = 4; +const int QMacStylePrivate::PushButtonRightOffset = 12; +const int QMacStylePrivate::PushButtonBottomOffset = 12; +const int QMacStylePrivate::MiniButtonH = 26; +const int QMacStylePrivate::SmallButtonH = 30; +const int QMacStylePrivate::BevelButtonW = 50; +const int QMacStylePrivate::BevelButtonH = 22; +const int QMacStylePrivate::PushButtonContentPadding = 6; // These colors specify the titlebar gradient colors on // Leopard. Ideally we should get them from the system. @@ -134,25 +133,14 @@ static const QColor mainWindowGradientEnd(200, 200, 200); static const int DisclosureOffset = 4; -#if (MAC_OS_X_VERSION_MAX_ALLOWED <= MAC_OS_X_VERSION_10_5) -enum { - kThemePushButtonTextured = 31, - kThemePushButtonTexturedSmall = 32, - kThemePushButtonTexturedMini = 33 -}; - -/* Search fields */ -enum { - kHIThemeFrameTextFieldRound = 1000, - kHIThemeFrameTextFieldRoundSmall = 1001, - kHIThemeFrameTextFieldRoundMini = 1002 -}; -#endif - // Resolve these at run-time, since the functions was moved in Leopard. typedef HIRect * (*PtrHIShapeGetBounds)(HIShapeRef, HIRect *); static PtrHIShapeGetBounds ptrHIShapeGetBounds = 0; +static int closeButtonSize = 12; + +extern QRegion qt_mac_convert_mac_region(RgnHandle); //qregion_mac.cpp + static bool isVerticalTabs(const QTabBar::Shape shape) { return (shape == QTabBar::RoundedEast || shape == QTabBar::TriangularEast @@ -160,8 +148,6 @@ static bool isVerticalTabs(const QTabBar::Shape shape) { || shape == QTabBar::TriangularWest); } -static int closeButtonSize = 12; - void drawTabCloseButton(QPainter *p, bool hover, bool active, bool selected) { // draw background circle @@ -380,32 +366,6 @@ void drawTabBase(QPainter *p, const QStyleOptionTabBarBaseV2 *tbb, const QWidget p->drawLine(tabRect.x(), height - 1, width, height - 1); } -/* - AHIG: - Apple Human Interface Guidelines - http://developer.apple.com/documentation/UserExperience/Conceptual/OSXHIGuidelines/ - - Builder: - Apple Interface Builder v. 3.1.1 -*/ - -// this works as long as we have at most 16 different control types -#define CT1(c) CT2(c, c) -#define CT2(c1, c2) ((uint(c1) << 16) | uint(c2)) - -enum QAquaWidgetSize { QAquaSizeLarge = 0, QAquaSizeSmall = 1, QAquaSizeMini = 2, - QAquaSizeUnknown = -1 }; - -#define SIZE(large, small, mini) \ - (controlSize == QAquaSizeLarge ? (large) : controlSize == QAquaSizeSmall ? (small) : (mini)) - -// same as return SIZE(...) but optimized -#define return_SIZE(large, small, mini) \ - do { \ - static const int sizes[] = { (large), (small), (mini) }; \ - return sizes[controlSize]; \ - } while (0) - static int getControlSize(const QStyleOption *option, const QWidget *widget) { if (option) { @@ -483,80 +443,9 @@ static inline ThemeTabDirection getTabDirection(QTabBar::Shape shape) return ttd; } -class QMacStylePrivate : public QObject -{ - Q_OBJECT - -public: - QMacStylePrivate(QMacStyle *style); - - // Stuff from QAquaAnimate: - bool addWidget(QWidget *); - void removeWidget(QWidget *); - - enum Animates { AquaPushButton, AquaProgressBar, AquaListViewItemOpen }; - bool animatable(Animates, const QWidget *) const; - void stopAnimate(Animates, QWidget *); - void startAnimate(Animates, QWidget *); - static ThemeDrawState getDrawState(QStyle::State flags); - QAquaWidgetSize aquaSizeConstrain(const QStyleOption *option, const QWidget *widg, - QStyle::ContentsType ct = QStyle::CT_CustomBase, - QSize szHint=QSize(-1, -1), QSize *insz = 0) const; - void getSliderInfo(QStyle::ComplexControl cc, const QStyleOptionSlider *slider, - HIThemeTrackDrawInfo *tdi, const QWidget *needToRemoveMe); - bool doAnimate(Animates); - inline int animateSpeed(Animates) const { return 33; } - - // Utility functions - void drawColorlessButton(const HIRect &macRect, HIThemeButtonDrawInfo *bdi, - QPainter *p, const QStyleOption *opt) const; - - QSize pushButtonSizeFromContents(const QStyleOptionButton *btn) const; - - HIRect pushButtonContentBounds(const QStyleOptionButton *btn, - const HIThemeButtonDrawInfo *bdi) const; - - void initComboboxBdi(const QStyleOptionComboBox *combo, HIThemeButtonDrawInfo *bdi, - const QWidget *widget, const ThemeDrawState &tds); - - static HIRect comboboxInnerBounds(const HIRect &outerBounds, int buttonKind); - - static QRect comboboxEditBounds(const QRect &outerBounds, const HIThemeButtonDrawInfo &bdi); - - static void drawCombobox(const HIRect &outerBounds, const HIThemeButtonDrawInfo &bdi, QPainter *p); - static void drawTableHeader(const HIRect &outerBounds, bool drawTopBorder, bool drawLeftBorder, - const HIThemeButtonDrawInfo &bdi, QPainter *p); - bool contentFitsInPushButton(const QStyleOptionButton *btn, HIThemeButtonDrawInfo *bdi, - ThemeButtonKind buttonKindToCheck) const; - void initHIThemePushButton(const QStyleOptionButton *btn, const QWidget *widget, - const ThemeDrawState tds, - HIThemeButtonDrawInfo *bdi) const; - QPixmap generateBackgroundPattern() const; -protected: - bool eventFilter(QObject *, QEvent *); - void timerEvent(QTimerEvent *); - -private slots: - void startAnimationTimer(); - -public: - QPointer defaultButton; //default push buttons - int timerID; - QList > progressBars; //existing progress bars that need animation - - struct ButtonState { - int frame; - enum { ButtonDark, ButtonLight } dir; - } buttonState; - UInt8 progressFrame; - QPointer focusWidget; - CFAbsoluteTime defaultButtonStart; - QMacStyle *q; - bool mouseDown; -}; - QT_BEGIN_INCLUDE_NAMESPACE -#include "qmacstyle_mac.moc" +#include "moc_qmacstyle_mac.cpp" +#include "moc_qmacstyle_mac_p.cpp" QT_END_INCLUDE_NAMESPACE /***************************************************************************** @@ -1057,10 +946,10 @@ HIRect QMacStylePrivate::pushButtonContentBounds(const QStyleOptionButton *btn, // Adjust the bounds to correct for // carbon not calculating the content bounds fully correct if (bdi->kind == kThemePushButton || bdi->kind == kThemePushButtonSmall){ - outerBounds.origin.y += QMacStyle::PushButtonTopOffset; - outerBounds.size.height -= QMacStyle::PushButtonBottomOffset; + outerBounds.origin.y += QMacStylePrivate::PushButtonTopOffset; + outerBounds.size.height -= QMacStylePrivate::PushButtonBottomOffset; } else if (bdi->kind == kThemePushButtonMini) { - outerBounds.origin.y += QMacStyle::PushButtonTopOffset; + outerBounds.origin.y += QMacStylePrivate::PushButtonTopOffset; } HIRect contentBounds; @@ -1076,7 +965,7 @@ QSize QMacStylePrivate::pushButtonSizeFromContents(const QStyleOptionButton *btn { QSize csz(0, 0); QSize iconSize = btn->icon.isNull() ? QSize(0, 0) - : (btn->iconSize + QSize(QMacStyle::PushButtonContentPadding, 0)); + : (btn->iconSize + QSize(QMacStylePrivate::PushButtonContentPadding, 0)); QRect textRect = btn->text.isEmpty() ? QRect(0, 0, 1, 1) : btn->fontMetrics.boundingRect(QRect(), Qt::AlignCenter, btn->text); csz.setWidth(iconSize.width() + textRect.width() @@ -1151,12 +1040,12 @@ void QMacStylePrivate::initHIThemePushButton(const QStyleOptionButton *btn, // Choose the button kind that closest match the button rect, but at the // same time displays the button contents without clipping. bdi->kind = kThemeBevelButton; - if (btn->rect.width() >= QMacStyle::BevelButtonW && btn->rect.height() >= QMacStyle::BevelButtonH){ + if (btn->rect.width() >= QMacStylePrivate::BevelButtonW && btn->rect.height() >= QMacStylePrivate::BevelButtonH){ if (widget && widget->testAttribute(Qt::WA_MacVariableSize)) { - if (btn->rect.height() <= QMacStyle::MiniButtonH){ + if (btn->rect.height() <= QMacStylePrivate::MiniButtonH){ if (contentFitsInPushButton(btn, bdi, kThemePushButtonMini)) bdi->kind = kThemePushButtonMini; - } else if (btn->rect.height() <= QMacStyle::SmallButtonH){ + } else if (btn->rect.height() <= QMacStylePrivate::SmallButtonH){ if (contentFitsInPushButton(btn, bdi, kThemePushButtonSmall)) bdi->kind = kThemePushButtonSmall; } else if (contentFitsInPushButton(btn, bdi, kThemePushButton)) { @@ -3497,21 +3386,21 @@ void QMacStyle::drawControl(ControlElement ce, const QStyleOption *opt, QPainter // the focus 'shadow' will be inside. HIRect newRect = qt_hirectForQRect(btn->rect); if (bdi.kind == kThemePushButton || bdi.kind == kThemePushButtonSmall) { - newRect.origin.x += PushButtonLeftOffset; - newRect.origin.y += PushButtonTopOffset; - newRect.size.width -= PushButtonRightOffset; - newRect.size.height -= PushButtonBottomOffset; + newRect.origin.x += QMacStylePrivate::PushButtonLeftOffset; + newRect.origin.y += QMacStylePrivate::PushButtonTopOffset; + newRect.size.width -= QMacStylePrivate::PushButtonRightOffset; + newRect.size.height -= QMacStylePrivate::PushButtonBottomOffset; } else if (bdi.kind == kThemePushButtonMini) { - newRect.origin.x += PushButtonLeftOffset - 2; - newRect.origin.y += PushButtonTopOffset; - newRect.size.width -= PushButtonRightOffset - 4; + newRect.origin.x += QMacStylePrivate::PushButtonLeftOffset - 2; + newRect.origin.y += QMacStylePrivate::PushButtonTopOffset; + newRect.size.width -= QMacStylePrivate::PushButtonRightOffset - 4; } HIThemeDrawButton(&newRect, &bdi, cg, kHIThemeOrientationNormal, 0); if (btn->features & QStyleOptionButton::HasMenu) { int mbi = proxy()->pixelMetric(QStyle::PM_MenuButtonIndicator, btn, w); QRect ir = btn->rect; - HIRect arrowRect = CGRectMake(ir.right() - mbi - PushButtonRightOffset, + HIRect arrowRect = CGRectMake(ir.right() - mbi - QMacStylePrivate::PushButtonRightOffset, ir.height() / 2 - 4, mbi, ir.height() / 2); bool drawColorless = btn->palette.currentColorGroup() == QPalette::Active; if (drawColorless && tds == kThemeStateInactive) @@ -3605,14 +3494,14 @@ void QMacStyle::drawControl(ControlElement ce, const QStyleOption *opt, QPainter if (btn->state & State_On) state = QIcon::On; QPixmap pixmap = btn->icon.pixmap(btn->iconSize, mode, state); - contentW += pixmap.width() + PushButtonContentPadding; + contentW += pixmap.width() + QMacStylePrivate::PushButtonContentPadding; int iconLeftOffset = freeContentRect.x() + (freeContentRect.width() - contentW) / 2; int iconTopOffset = freeContentRect.y() + (freeContentRect.height() - pixmap.height()) / 2; QRect iconDestRect(iconLeftOffset, iconTopOffset, pixmap.width(), pixmap.height()); QRect visualIconDestRect = visualRect(btn->direction, freeContentRect, iconDestRect); proxy()->drawItemPixmap(p, visualIconDestRect, Qt::AlignLeft | Qt::AlignVCenter, pixmap); int newOffset = iconDestRect.x() + iconDestRect.width() - + PushButtonContentPadding - textRect.x(); + + QMacStylePrivate::PushButtonContentPadding - textRect.x(); textRect.adjust(newOffset, 0, newOffset, 0); } // Draw the text: @@ -5708,8 +5597,8 @@ QSize QMacStyle::sizeFromContents(ContentsType ct, const QStyleOption *opt, // By default, we fit the contents inside a normal rounded push button. // Do this by add enough space around the contents so that rounded // borders (including highlighting when active) will show. - sz.rwidth() += PushButtonLeftOffset + PushButtonRightOffset + 12; - sz.rheight() += PushButtonTopOffset + PushButtonBottomOffset; + sz.rwidth() += QMacStylePrivate::PushButtonLeftOffset + QMacStylePrivate::PushButtonRightOffset + 12; + sz.rheight() += QMacStylePrivate::PushButtonTopOffset + QMacStylePrivate::PushButtonBottomOffset; break; case QStyle::CT_MenuItem: if (const QStyleOptionMenuItem *mi = qstyleoption_cast(opt)) { diff --git a/src/gui/styles/qmacstyle_mac_p.h b/src/gui/styles/qmacstyle_mac_p.h index 7f8994e..5a0ba4c 100644 --- a/src/gui/styles/qmacstyle_mac_p.h +++ b/src/gui/styles/qmacstyle_mac_p.h @@ -107,19 +107,7 @@ // We mean it. // -// These colors specify the titlebar gradient colors on -// Leopard. Ideally we should get them from the system. -static const QColor titlebarGradientActiveBegin(220, 220, 220); -static const QColor titlebarGradientActiveEnd(151, 151, 151); -static const QColor titlebarSeparatorLineActive(111, 111, 111); -static const QColor titlebarGradientInactiveBegin(241, 241, 241); -static const QColor titlebarGradientInactiveEnd(207, 207, 207); -static const QColor titlebarSeparatorLineInactive(131, 131, 131); - -// Gradient colors used for the dock widget title bar and -// non-unifed tool bar bacground. -static const QColor mainWindowGradientBegin(240, 240, 240); -static const QColor mainWindowGradientEnd(200, 200, 200); +QT_BEGIN_NAMESPACE #if (MAC_OS_X_VERSION_MAX_ALLOWED <= MAC_OS_X_VERSION_10_5) enum { @@ -136,12 +124,6 @@ enum { }; #endif -// Resolve these at run-time, since the functions was moved in Leopard. -typedef HIRect * (*PtrHIShapeGetBounds)(HIShapeRef, HIRect *); -static PtrHIShapeGetBounds ptrHIShapeGetBounds = 0; - -static int closeButtonSize = 12; - /* AHIG: Apple Human Interface Guidelines @@ -252,4 +234,6 @@ public: bool mouseDown; }; +QT_END_NAMESPACE + #endif // QMACSTYLE_MAC_P_H diff --git a/src/gui/styles/qmacstylepixmaps_mac_p.h b/src/gui/styles/qmacstylepixmaps_mac_p.h index 6a5e0e6..58038c3 100644 --- a/src/gui/styles/qmacstylepixmaps_mac_p.h +++ b/src/gui/styles/qmacstylepixmaps_mac_p.h @@ -39,6 +39,9 @@ ** ****************************************************************************/ +#ifndef QMACSTYLEPIXMAPS_MAC_P_H +#define QMACSTYLEPIXMAPS_MAC_P_H + // // W A R N I N G // ------------- @@ -65,3 +68,5 @@ static const char * const qt_mac_toolbar_ext[]={ "aab###bb###baa", "ab###bb###baaa", ".###..###.aaaa"}; + +#endif // QMACSTYLEPIXMAPS_MAC_P_H diff --git a/src/gui/styles/styles.pri b/src/gui/styles/styles.pri index f920032..0a96272 100644 --- a/src/gui/styles/styles.pri +++ b/src/gui/styles/styles.pri @@ -46,7 +46,8 @@ x11{ contains( styles, mac ) { HEADERS += \ styles/qmacstyle_mac.h \ - styles/qmacstylepixmaps_mac_p.h + styles/qmacstylepixmaps_mac_p.h \ + styles/qmacstyle_mac_p.h OBJECTIVE_SOURCES += styles/qmacstyle_mac.mm !contains( styles, windows ) { diff --git a/src/gui/widgets/qpushbutton.cpp b/src/gui/widgets/qpushbutton.cpp index 7b8c0db..d73cf6f 100644 --- a/src/gui/widgets/qpushbutton.cpp +++ b/src/gui/widgets/qpushbutton.cpp @@ -68,6 +68,7 @@ #include "private/qmenu_p.h" #include "private/qpushbutton_p.h" +#include "private/qmacstyle_mac_p.h" QT_BEGIN_NAMESPACE @@ -705,10 +706,10 @@ bool QPushButton::hitButton(const QPoint &pos) const bool QPushButtonPrivate::hitButton(const QPoint &pos) { Q_Q(QPushButton); - QRect roundedRect(q->rect().left() + QMacStyle::PushButtonLeftOffset, - q->rect().top() + QMacStyle::PushButtonContentPadding, - q->rect().width() - QMacStyle::PushButtonRightOffset, - q->rect().height() - QMacStyle::PushButtonBottomOffset); + QRect roundedRect(q->rect().left() + QMacStylePrivate::PushButtonLeftOffset, + q->rect().top() + QMacStylePrivate::PushButtonContentPadding, + q->rect().width() - QMacStylePrivate::PushButtonRightOffset, + q->rect().height() - QMacStylePrivate::PushButtonBottomOffset); return roundedRect.contains(pos); } #endif // Q_WS_MAC -- cgit v0.12 From d5f3db332292e31ccf430b8267b045e014fae389 Mon Sep 17 00:00:00 2001 From: Simon Hausmann Date: Fri, 21 May 2010 14:51:29 +0200 Subject: Updated WebKit from /home/shausman/src/webkit/trunk to qtwebkit/qtwebkit-4.6 ( ecee9d7244ce4f7e7acf723bcef535532780db5f ) Changes in WebKit/qt since the last update: * [Qt] Nested overflow div does not scroll https://bugs.webkit.org/show_bug.cgi?id=38641 * [Qt] Non animated gifs are animated in QtWebKit https://bugs.webkit.org/show_bug.cgi?id=35955 * [Qt] startAnimation() is not needed to preceede nativeImageForCurrentFrame() https://bugs.webkit.org/show_bug.cgi?id=37844 * Animated GIF images does not animate 10x as expected by default. https://bugs.webkit.org/show_bug.cgi?id=36818 Plus updated/fixed def files --- src/3rdparty/webkit/VERSION | 2 +- src/3rdparty/webkit/WebCore/ChangeLog | 47 ++++++++++++++ .../platform/graphics/qt/ImageDecoderQt.cpp | 24 ++++++- src/3rdparty/webkit/WebKit/qt/Api/qwebframe.cpp | 32 +++++---- src/3rdparty/webkit/WebKit/qt/ChangeLog | 16 +++++ .../webkit/WebKit/qt/symbian/bwins/QtWebKitu.def | 27 +++++++- .../webkit/WebKit/qt/symbian/eabi/QtWebKitu.def | 75 ++++++++++++++++++++++ 7 files changed, 206 insertions(+), 17 deletions(-) diff --git a/src/3rdparty/webkit/VERSION b/src/3rdparty/webkit/VERSION index fe2950e..a6fb502 100644 --- a/src/3rdparty/webkit/VERSION +++ b/src/3rdparty/webkit/VERSION @@ -8,4 +8,4 @@ The commit imported was from the and has the sha1 checksum - 4fb414b38f7c7c8439ce6a4323f1acb057a3ff20 + ecee9d7244ce4f7e7acf723bcef535532780db5f diff --git a/src/3rdparty/webkit/WebCore/ChangeLog b/src/3rdparty/webkit/WebCore/ChangeLog index 5e63c7c..2d905b0 100644 --- a/src/3rdparty/webkit/WebCore/ChangeLog +++ b/src/3rdparty/webkit/WebCore/ChangeLog @@ -1,3 +1,50 @@ +2010-05-04 Tucker Jay + + Reviewed by Holger Freyther. + + Animated GIF images does not animate 10x as expected by default. + https://bugs.webkit.org/show_bug.cgi?id=36818 + + Added test case to existing manual test to test the + fixed functionality. + + * manual-tests/qt/qt-10loop-anim.gif: Added. + * manual-tests/qt/qt-gif-test.html: + * platform/graphics/qt/ImageDecoderQt.cpp: + (WebCore::ImageDecoderQt::repetitionCount): + +2010-04-21 Zoltan Herczeg + + Reviewed by Kenneth Rohde Christiansen. + + [Qt] startAnimation() is not needed to preceede nativeImageForCurrentFrame() + https://bugs.webkit.org/show_bug.cgi?id=37844 + + nativeImageForCurrentFrame() resets the m_decoder parameter under Qt, + which is required by startAnimation() to detect frame and repetition counts. + Hence, Image::drawTiled cannot start animations under Qt: + does not work + + * platform/graphics/qt/ImageDecoderQt.cpp: + (WebCore::ImageDecoderQt::internalHandleCurrentImage): + +2010-03-10 Holger Hans Peter Freyther + + Reviewed by Simon Hausmann. + + [Qt] Non animated gifs are animated in QtWebKit + https://bugs.webkit.org/show_bug.cgi?id=35955 + + Properly map Qt animated and non-animated values to WebCore's + understanding of animated and non-animated images. Currently + we can not map anything to the cAnimationLoopNone value. + + * manual-tests/qt/qt-anim.gif: Added. + * manual-tests/qt/qt-gif-test.html: Added. + * manual-tests/qt/qt-noanim.gif: Added. + * platform/graphics/qt/ImageDecoderQt.cpp: + (WebCore::ImageDecoderQt::repetitionCount): + 2010-04-26 Simon Hausmann Reviewed by Kenneth Rohde Christiansen. diff --git a/src/3rdparty/webkit/WebCore/platform/graphics/qt/ImageDecoderQt.cpp b/src/3rdparty/webkit/WebCore/platform/graphics/qt/ImageDecoderQt.cpp index 9bcb3e9..764b240 100644 --- a/src/3rdparty/webkit/WebCore/platform/graphics/qt/ImageDecoderQt.cpp +++ b/src/3rdparty/webkit/WebCore/platform/graphics/qt/ImageDecoderQt.cpp @@ -114,8 +114,23 @@ size_t ImageDecoderQt::frameCount() int ImageDecoderQt::repetitionCount() const { - if (m_reader && m_reader->supportsAnimation()) - m_repetitionCount = qMax(0, m_reader->loopCount()); + if (m_reader && m_reader->supportsAnimation()) { + m_repetitionCount = m_reader->loopCount(); + + // Qt and WebCore have a incompatible understanding of + // the loop count and we can not completely map everything. + // Qt | WebCore | description + // -1 | 0 | infinite animation + // 0 | cAnimationLoopOnce | show every frame once + // n | n+1 | Qt returns the # of iterations - 1 + // n/a | cAnimationNone | show only the first frame + if (m_repetitionCount == -1) + m_repetitionCount = 0; + else if (m_repetitionCount == 0) + m_repetitionCount = cAnimationLoopOnce; + else + ++m_repetitionCount; + } return m_repetitionCount; } @@ -188,8 +203,11 @@ void ImageDecoderQt::internalHandleCurrentImage(size_t frameIndex) { // Now get the QImage from Qt and place it in the RGBA32Buffer QImage img; - if (!m_reader->read(&img)) + if (!m_reader->read(&img)) { + frameCount(); + repetitionCount(); return failRead(); + } // now into the RGBA32Buffer - even if the image is not QSize imageSize = img.size(); diff --git a/src/3rdparty/webkit/WebKit/qt/Api/qwebframe.cpp b/src/3rdparty/webkit/WebKit/qt/Api/qwebframe.cpp index 0fa31d5..8eaf3e8 100644 --- a/src/3rdparty/webkit/WebKit/qt/Api/qwebframe.cpp +++ b/src/3rdparty/webkit/WebKit/qt/Api/qwebframe.cpp @@ -324,8 +324,9 @@ void QWebFramePrivate::renderPrivate(QPainter *painter, QWebFrame::RenderLayer l } } -static bool webframe_scrollOverflow(WebCore::Frame* frame, int dx, int dy, const QPoint& pos) +bool QWEBKIT_EXPORT qtwebkit_webframe_scrollOverflow(QWebFrame* qFrame, int dx, int dy, const QPoint& pos) { + WebCore::Frame* frame = QWebFramePrivate::core(qFrame); if (!frame || !frame->document() || !frame->view() || !frame->eventHandler()) return false; @@ -348,17 +349,24 @@ static bool webframe_scrollOverflow(WebCore::Frame* frame, int dx, int dy, const bool scrolledHorizontal = false; bool scrolledVertical = false; - if (dx > 0) - scrolledHorizontal = renderLayer->scroll(ScrollRight, ScrollByPixel, dx); - else if (dx < 0) - scrolledHorizontal = renderLayer->scroll(ScrollLeft, ScrollByPixel, qAbs(dx)); + do { + if (dx > 0) + scrolledHorizontal = renderLayer->scroll(ScrollRight, ScrollByPixel, dx); + else if (dx < 0) + scrolledHorizontal = renderLayer->scroll(ScrollLeft, ScrollByPixel, qAbs(dx)); + + if (dy > 0) + scrolledVertical = renderLayer->scroll(ScrollDown, ScrollByPixel, dy); + else if (dy < 0) + scrolledVertical = renderLayer->scroll(ScrollUp, ScrollByPixel, qAbs(dy)); + + if (scrolledHorizontal || scrolledVertical) + return true; - if (dy > 0) - scrolledVertical = renderLayer->scroll(ScrollDown, ScrollByPixel, dy); - else if (dy < 0) - scrolledVertical = renderLayer->scroll(ScrollUp, ScrollByPixel, qAbs(dy)); + renderLayer = renderLayer->parent(); + } while (renderLayer); - return (scrolledHorizontal || scrolledVertical); + return false; } @@ -1060,7 +1068,7 @@ void QWEBKIT_EXPORT qtwebkit_webframe_scrollRecursively(QWebFrame* qFrame, int d if (!qFrame) return; - if (webframe_scrollOverflow(QWebFramePrivate::core(qFrame), dx, dy, pos)) + if (qtwebkit_webframe_scrollOverflow(qFrame, dx, dy, pos)) return; bool scrollHorizontal = false; @@ -1074,7 +1082,7 @@ void QWEBKIT_EXPORT qtwebkit_webframe_scrollRecursively(QWebFrame* qFrame, int d if (dy > 0) // scroll down scrollVertical = qFrame->scrollBarValue(Qt::Vertical) < qFrame->scrollBarMaximum(Qt::Vertical); - else if (dy < 0) //scroll up + else if (dy < 0) //scroll up scrollVertical = qFrame->scrollBarValue(Qt::Vertical) > qFrame->scrollBarMinimum(Qt::Vertical); if (scrollHorizontal || scrollVertical) { diff --git a/src/3rdparty/webkit/WebKit/qt/ChangeLog b/src/3rdparty/webkit/WebKit/qt/ChangeLog index d6b4a9d..3a1735f 100644 --- a/src/3rdparty/webkit/WebKit/qt/ChangeLog +++ b/src/3rdparty/webkit/WebKit/qt/ChangeLog @@ -1,3 +1,19 @@ +2010-05-12 Joe Ligman + + Reviewed by Laszlo Gombos. + + [Qt] Nested overflow div does not scroll + https://bugs.webkit.org/show_bug.cgi?id=38641 + + Modify qtwebkit_webframe_scrollOverflow, if the current node's render layer + does not scroll it will try and scroll the parent's render layer. Also export + qtwebkit_webframe_scrollOverflow so we can use it independently of + qtwebkit_webframe_scrollRecursively + + * Api/qwebframe.cpp: + (qtwebkit_webframe_scrollOverflow): + (qtwebkit_webframe_scrollRecursively): + 2010-04-26 Thiago Macieira Reviewed by Simon Hausmann. diff --git a/src/3rdparty/webkit/WebKit/qt/symbian/bwins/QtWebKitu.def b/src/3rdparty/webkit/WebKit/qt/symbian/bwins/QtWebKitu.def index cc609e1..a6efe7e 100644 --- a/src/3rdparty/webkit/WebKit/qt/symbian/bwins/QtWebKitu.def +++ b/src/3rdparty/webkit/WebKit/qt/symbian/bwins/QtWebKitu.def @@ -624,5 +624,30 @@ EXPORTS ?qt_resumeActiveDOMObjects@@YAXPAVQWebFrame@@@Z @ 623 NONAME ; void qt_resumeActiveDOMObjects(class QWebFrame *) ?qt_suspendActiveDOMObjects@@YAXPAVQWebFrame@@@Z @ 624 NONAME ; void qt_suspendActiveDOMObjects(class QWebFrame *) ?qtwebkit_webframe_scrollRecursively@@YA_NPAVQWebFrame@@HH@Z @ 625 NONAME ABSENT ; bool qtwebkit_webframe_scrollRecursively(class QWebFrame *, int, int) - ?qtwebkit_webframe_scrollRecursively@@YAXPAVQWebFrame@@HHABVQPoint@@@Z @ 626 NONAME ; void qtwebkit_webframe_scrollRecursively(class QWebFrame *, int, int, class QPoint const &) + ?closeEvent@QWebInspector@@MAEXPAVQCloseEvent@@@Z @ 626 NONAME ABSENT ; void QWebInspector::closeEvent(class QCloseEvent *) + ?inspectorUrl@QWebSettings@@QBE?AVQUrl@@XZ @ 627 NONAME ABSENT ; class QUrl QWebSettings::inspectorUrl(void) const + ?isTiledBackingStoreFrozen@QGraphicsWebView@@QBE_NXZ @ 628 NONAME ABSENT ; bool QGraphicsWebView::isTiledBackingStoreFrozen(void) const + ?pageChanged@QWebFrame@@IAEXXZ @ 629 NONAME ABSENT ; void QWebFrame::pageChanged(void) + ?qt_drt_enableCaretBrowsing@@YAXPAVQWebPage@@_N@Z @ 630 NONAME ABSENT ; void qt_drt_enableCaretBrowsing(class QWebPage *, bool) + ?qt_drt_evaluateScriptInIsolatedWorld@@YAXPAVQWebFrame@@HABVQString@@@Z @ 631 NONAME ABSENT ; void qt_drt_evaluateScriptInIsolatedWorld(class QWebFrame *, int, class QString const &) + ?qt_drt_hasDocumentElement@@YA_NPAVQWebFrame@@@Z @ 632 NONAME ABSENT ; bool qt_drt_hasDocumentElement(class QWebFrame *) + ?qt_drt_numberOfPages@@YAHPAVQWebFrame@@MM@Z @ 633 NONAME ABSENT ; int qt_drt_numberOfPages(class QWebFrame *, float, float) + ?qt_drt_pageNumberForElementById@@YAHPAVQWebFrame@@ABVQString@@MM@Z @ 634 NONAME ABSENT ; int qt_drt_pageNumberForElementById(class QWebFrame *, class QString const &, float, float) + ?qt_drt_pauseSVGAnimation@@YA_NPAVQWebFrame@@ABVQString@@N1@Z @ 635 NONAME ABSENT ; bool qt_drt_pauseSVGAnimation(class QWebFrame *, class QString const &, double, class QString const &) + ?qt_drt_setDomainRelaxationForbiddenForURLScheme@@YAX_NABVQString@@@Z @ 636 NONAME ABSENT ; void qt_drt_setDomainRelaxationForbiddenForURLScheme(bool, class QString const &) + ?qt_drt_setFrameFlatteningEnabled@@YAXPAVQWebPage@@_N@Z @ 637 NONAME ABSENT ; void qt_drt_setFrameFlatteningEnabled(class QWebPage *, bool) + ?qt_drt_setMediaType@@YAXPAVQWebFrame@@ABVQString@@@Z @ 638 NONAME ABSENT ; void qt_drt_setMediaType(class QWebFrame *, class QString const &) + ?qt_drt_setTimelineProfilingEnabled@@YAXPAVQWebPage@@_N@Z @ 639 NONAME ABSENT ; void qt_drt_setTimelineProfilingEnabled(class QWebPage *, bool) + ?qt_drt_webinspector_close@@YAXPAVQWebPage@@@Z @ 640 NONAME ABSENT ; void qt_drt_webinspector_close(class QWebPage *) + ?qt_drt_webinspector_executeScript@@YAXPAVQWebPage@@JABVQString@@@Z @ 641 NONAME ABSENT ; void qt_drt_webinspector_executeScript(class QWebPage *, long, class QString const &) + ?qt_drt_webinspector_show@@YAXPAVQWebPage@@@Z @ 642 NONAME ABSENT ; void qt_drt_webinspector_show(class QWebPage *) + ?qt_drt_workerThreadCount@@YAHXZ @ 643 NONAME ABSENT ; int qt_drt_workerThreadCount(void) + ?qt_wrt_setViewMode@@YAXPAVQWebPage@@ABVQString@@@Z @ 644 NONAME ABSENT ; void qt_wrt_setViewMode(class QWebPage *, class QString const &) + ?qtwebkit_webframe_scrollRecursively@@YAXPAVQWebFrame@@HHABVQPoint@@@Z @ 645 NONAME ; void qtwebkit_webframe_scrollRecursively(class QWebFrame *, int, int, class QPoint const &) + ?resizesToContents@QGraphicsWebView@@QBE_NXZ @ 646 NONAME ABSENT ; bool QGraphicsWebView::resizesToContents(void) const + ?scrollToAnchor@QWebFrame@@QAEXABVQString@@@Z @ 647 NONAME ABSENT ; void QWebFrame::scrollToAnchor(class QString const &) + ?setInspectorUrl@QWebSettings@@QAEXABVQUrl@@@Z @ 648 NONAME ABSENT ; void QWebSettings::setInspectorUrl(class QUrl const &) + ?setResizesToContents@QGraphicsWebView@@QAEX_N@Z @ 649 NONAME ABSENT ; void QGraphicsWebView::setResizesToContents(bool) + ?setTiledBackingStoreFrozen@QGraphicsWebView@@QAEX_N@Z @ 650 NONAME ABSENT ; void QGraphicsWebView::setTiledBackingStoreFrozen(bool) + ?qtwebkit_webframe_scrollOverflow@@YA_NPAVQWebFrame@@HHABVQPoint@@@Z @ 651 NONAME ABSENT ; bool qtwebkit_webframe_scrollOverflow(QWebFrame *, int, int, const QPoint&) diff --git a/src/3rdparty/webkit/WebKit/qt/symbian/eabi/QtWebKitu.def b/src/3rdparty/webkit/WebKit/qt/symbian/eabi/QtWebKitu.def index d244ad5..30f8584 100644 --- a/src/3rdparty/webkit/WebKit/qt/symbian/eabi/QtWebKitu.def +++ b/src/3rdparty/webkit/WebKit/qt/symbian/eabi/QtWebKitu.def @@ -695,3 +695,78 @@ EXPORTS _Z26qt_suspendActiveDOMObjectsP9QWebFrame @ 694 NONAME _Z35qtwebkit_webframe_scrollRecursivelyP9QWebFrameii @ 695 NONAME ABSENT _Z35qtwebkit_webframe_scrollRecursivelyP9QWebFrameiiRK6QPoint @ 696 NONAME + _ZN9QWebFrame17scrollRecursivelyEii @ 697 NONAME ABSENT + _ZN16QGraphicsWebView20setResizesToContentsEb @ 698 NONAME ABSENT + _ZNK16QGraphicsWebView17resizesToContentsEv @ 699 NONAME ABSENT + _Z20qt_drt_numberOfPagesP9QWebFrameff @ 700 NONAME ABSENT + _Z24qt_drt_pauseSVGAnimationP9QWebFrameRK7QStringdS3_ @ 701 NONAME ABSENT + _Z24qt_drt_webinspector_showP8QWebPage @ 702 NONAME ABSENT + _Z24qt_drt_workerThreadCountv @ 703 NONAME ABSENT + _Z25qt_drt_hasDocumentElementP9QWebFrame @ 704 NONAME ABSENT + _Z25qt_drt_webinspector_closeP8QWebPage @ 705 NONAME ABSENT + _Z31qt_drt_pageNumberForElementByIdP9QWebFrameRK7QStringff @ 706 NONAME ABSENT + _Z33qt_drt_webinspector_executeScriptP8QWebPagelRK7QString @ 707 NONAME ABSENT + _Z34qt_drt_setTimelineProfilingEnabledP8QWebPageb @ 708 NONAME ABSENT + _Z32qt_drt_setFrameFlatteningEnabledP8QWebPageb @ 709 NONAME ABSENT + _Z36qt_drt_evaluateScriptInIsolatedWorldP9QWebFrameiRK7QString @ 710 NONAME ABSENT + _Z47qt_drt_setDomainRelaxationForbiddenForURLSchemebRK7QString @ 711 NONAME ABSENT + _ZN9QWebFrame11pageChangedEv @ 712 NONAME ABSENT + _ZN9QWebFrame14scrollToAnchorERK7QString @ 713 NONAME ABSENT + _ZN12QWebSettings15setInspectorUrlERK4QUrl @ 714 NONAME ABSENT + _ZN13QWebInspector10closeEventEP11QCloseEvent @ 715 NONAME ABSENT + _ZN16QGraphicsWebView26setTiledBackingStoreFrozenEb @ 716 NONAME ABSENT + _ZNK16QGraphicsWebView25isTiledBackingStoreFrozenEv @ 717 NONAME ABSENT + _Z18qt_wrt_setViewModeP8QWebPageRK7QString @ 718 NONAME ABSENT + _Z19qt_drt_setMediaTypeP9QWebFrameRK7QString @ 719 NONAME ABSENT + _Z26qt_drt_enableCaretBrowsingP8QWebPageb @ 720 NONAME ABSENT + _ZNK12QWebSettings12inspectorUrlEv @ 721 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt19webPageSetGroupNameEP8QWebPageRK7QString @ 722 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt16webPageGroupNameEP8QWebPage @ 723 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt23garbageCollectorCollectEv @ 724 NONAME ABSENT + _Z32qtwebkit_webframe_scrollOverflowP9QWebFrameiiRK6QPoint @ 725 NONAME + _ZN23DumpRenderTreeSupportQt12setMediaTypeEP9QWebFrameRK7QString @ 726 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt13numberOfPagesEP9QWebFrameff @ 727 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt13selectedRangeEP8QWebPage @ 728 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt14clearFrameNameEP9QWebFrame @ 729 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt14pauseAnimationEP9QWebFrameRK7QStringdS4_ @ 730 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt15dumpFrameLoaderEb @ 731 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt16dumpNotificationEb @ 732 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt16isCommandEnabledEP8QWebPageRK7QString @ 733 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt16webInspectorShowEP8QWebPage @ 734 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt17pauseSVGAnimationEP9QWebFrameRK7QStringdS4_ @ 735 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt17webInspectorCloseEP8QWebPage @ 736 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt17workerThreadCountEv @ 737 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt18hasDocumentElementEP9QWebFrame @ 738 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt20dumpEditingCallbacksEb @ 739 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt21markerTextForListItemERK11QWebElement @ 740 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt22javaScriptObjectsCountEv @ 741 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt23setCaretBrowsingEnabledEP8QWebPageb @ 742 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt24executeCoreCommandByNameEP8QWebPageRK7QStringS4_ @ 743 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt21dumpSetAcceptsEditingEb @744 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt22resumeActiveDOMObjectsEP9QWebFrame @745 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt23suspendActiveDOMObjectsEP9QWebFrame @746 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt24numberOfActiveAnimationsEP9QWebFrame @747 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt24pageNumberForElementByIdEP9QWebFrameRK7QStringff @748 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt25dumpResourceLoadCallbacksEb @749 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt25pauseTransitionOfPropertyEP9QWebFrameRK7QStringdS4_ @750 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt25setFrameFlatteningEnabledEP8QWebPageb @751 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt25webInspectorExecuteScriptEP8QWebPagelRK7QString @752 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt25whiteListAccessFromOriginERK7QStringS2_S2_b @753 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt26counterValueForElementByIdEP9QWebFrameRK7QString @754 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt26firstRectForCharacterRangeEP8QWebPageii @755 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt26overwritePluginDirectoriesEv @756 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt27resetOriginAccessWhiteListsEv @757 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt27setSmartInsertDeleteEnabledEP8QWebPageb @758 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt27setTimelineProfilingEnabledEP8QWebPageb @759 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt28setDumpRenderTreeModeEnabledEb @760 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt29dumpResourceLoadCallbacksPathERK7QString @761 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt29evaluateScriptInIsolatedWorldEP9QWebFrameiRK7QString @762 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt29setJavaScriptProfilingEnabledEP9QWebFrameb @763 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt29setWillSendRequestReturnsNullEb @764 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt30setWillSendRequestClearHeadersERK11QStringList @765 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt33computedStyleIncludingVisitedInfoERK11QWebElement @766 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt34setSelectTrailingWhitespaceEnabledEP8QWebPageb @767 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt39elementDoesAutoCompleteForElementWithIdEP9QWebFrameRK7QString @768 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt39setWillSendRequestReturnsNullOnRedirectEb @769 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt40garbageCollectorCollectOnAlternateThreadEb @770 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt40setDomainRelaxationForbiddenForURLSchemeEbRK7QString @771 NONAME ABSENT -- cgit v0.12 From 8a83c72ec6de938124c869983fc5980dd3d0ae0c Mon Sep 17 00:00:00 2001 From: Yoann Lopes Date: Fri, 21 May 2010 15:07:48 +0200 Subject: My 4.6.3 changes. --- dist/changes-4.6.3 | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/dist/changes-4.6.3 b/dist/changes-4.6.3 index 1a49403..6a81f6a 100644 --- a/dist/changes-4.6.3 +++ b/dist/changes-4.6.3 @@ -49,6 +49,27 @@ QtCore QtGui ----- + - QGraphicsEffect + * [QTBUG-5358] Fixed warnings and crash when painting graphics effects outside scene. + + - QGraphicsItem + * [QTBUG-9391] Avoid a useless repaint when setting the cache mode to + DeviceCoordinateMode while already using that mode. + * [QTBUG-8475] Fixed crash and loss of focus when deleting a child of a focus scope. + + - QGraphicsProxyWidget + * [QTBUG-5349] Fixed tooltips not being shown for QGraphicsProxyWidget. + * [QTBUG-2883] Fixed tooltips appearing at wrong location. + * [QTBUG-7296] Fixed painting artifacts on a scaled proxy when the view is scrolled. + + - QGraphicsScene + * [QTBUG-7863] Fixed incorrect blending when using QGraphicsItem:DeviceCoordinateCache + and when the item is semi-transparent. If the item is transformed, the cache is now + always fully repainted to avoid artifacts. + + - QGraphicsView + * Item tooltips are not clipped by the view anymore. + - QPainter * [QTBUG-10421] Fixed WebKit-specific justification bug for text containing more than one script. -- cgit v0.12 From 634e3646cfbc53e85b66b42d2a75fb1fd4dab164 Mon Sep 17 00:00:00 2001 From: Carlos Manuel Duclos Vergara Date: Fri, 21 May 2010 15:18:46 +0200 Subject: Removing unneeded qDebug statement. Reviewed-by: Richard Moe Gustavsen --- src/gui/styles/qmacstyle_mac.mm | 1 - 1 file changed, 1 deletion(-) diff --git a/src/gui/styles/qmacstyle_mac.mm b/src/gui/styles/qmacstyle_mac.mm index 9cffc1e..aaebe4b 100644 --- a/src/gui/styles/qmacstyle_mac.mm +++ b/src/gui/styles/qmacstyle_mac.mm @@ -3361,7 +3361,6 @@ void QMacStyle::drawControl(ControlElement ce, const QStyleOption *opt, QPainter QCommonStyle::drawControl(ce, opt, p, w); break; case CE_PushButtonBevel: - qDebug() << "here"; if (const QStyleOptionButton *btn = ::qstyleoption_cast(opt)) { if (!(btn->state & (State_Raised | State_Sunken | State_On))) break; -- cgit v0.12 From 30d6b4ba5626fca244af6314f1b99e6d3854fe58 Mon Sep 17 00:00:00 2001 From: Gareth Stockwell Date: Thu, 20 May 2010 13:52:38 +0200 Subject: Fixed path for copying launcher script for spectrum demo Task-number: QTBUG-10879 Reviewed-by: Thomas Zander --- demos/spectrum/app/app.pro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demos/spectrum/app/app.pro b/demos/spectrum/app/app.pro index 2adb605..ce29169 100644 --- a/demos/spectrum/app/app.pro +++ b/demos/spectrum/app/app.pro @@ -111,7 +111,7 @@ symbian { # the dynamic library can be located. copy_launch_script.target = copy_launch_script copy_launch_script.commands = \ - install -m 0555 spectrum.sh ../bin/spectrum + install -m 0555 $$QT_SOURCE_TREE/demos/spectrum/app/spectrum.sh ../bin/spectrum QMAKE_EXTRA_TARGETS += copy_launch_script POST_TARGETDEPS += copy_launch_script } -- cgit v0.12 From 00fba5fb07a0a6c3c31772e60856c982010629a1 Mon Sep 17 00:00:00 2001 From: Gareth Stockwell Date: Thu, 20 May 2010 13:53:45 +0200 Subject: Install source for spectrum demo Task-number: QTBUG-10880 Reviewed-by: Thomas Zander --- demos/spectrum/3rdparty/fftreal/fftreal.pro | 6 ++++++ demos/spectrum/app/app.pro | 7 +++++++ demos/spectrum/spectrum.pro | 5 +++++ 3 files changed, 18 insertions(+) diff --git a/demos/spectrum/3rdparty/fftreal/fftreal.pro b/demos/spectrum/3rdparty/fftreal/fftreal.pro index 4ab9652..5dd02a4 100644 --- a/demos/spectrum/3rdparty/fftreal/fftreal.pro +++ b/demos/spectrum/3rdparty/fftreal/fftreal.pro @@ -38,4 +38,10 @@ symbian { } } +# Install + +sources.files = $$SOURCES $$HEADERS fftreal.pro readme.txt license.txt +sources.files += bwins/fftreal.def eabi/fftreal.def +sources.path = $$[QT_INSTALL_DEMOS]/spectrum/3rdparty/fftreal +INSTALLS += sources diff --git a/demos/spectrum/app/app.pro b/demos/spectrum/app/app.pro index ce29169..92398ac 100644 --- a/demos/spectrum/app/app.pro +++ b/demos/spectrum/app/app.pro @@ -70,6 +70,13 @@ symbian { } } +# Install + +sources.files = $$SOURCES $$HEADERS $$RESOURCES app.pro +sources.path = $$[QT_INSTALL_DEMOS]/spectrum/app +images.files += images/record.png images/settings.png +images.path = $$[QT_INSTALL_DEMOS]/spectrum/app/images +INSTALLS += sources images # Deployment diff --git a/demos/spectrum/spectrum.pro b/demos/spectrum/spectrum.pro index 04bbdee..bf73032 100644 --- a/demos/spectrum/spectrum.pro +++ b/demos/spectrum/spectrum.pro @@ -35,3 +35,8 @@ symbian { reg_rsc.path = $$REG_RESOURCE_IMPORT_DIR DEPLOYMENT += bin rsc mif reg_rsc } + +sources.files = README.txt spectrum.pri spectrum.pro TODO.txt +sources.path = $$[QT_INSTALL_DEMOS]/spectrum +INSTALLS += sources + -- cgit v0.12 From 77bc5d5bb6821d8ddc1d6b4b58a1acb2e7254006 Mon Sep 17 00:00:00 2001 From: Gareth Stockwell Date: Fri, 21 May 2010 11:41:36 +0100 Subject: Removed DEPLOYMENT from demos/spectrum/spectrum.pro DEPLOYMENT was added to demos/spectrum/spectrum.pro as a workaround for QTBUG-5312, in order to allow 'make sis' to be executed from the demos/spectrum directory. While this workaround is OK for SBSv2, it causes a build failure when using SBSv1. Task-number: QTBUG-10833 --- demos/spectrum/spectrum.pro | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/demos/spectrum/spectrum.pro b/demos/spectrum/spectrum.pro index bf73032..8736ba7 100644 --- a/demos/spectrum/spectrum.pro +++ b/demos/spectrum/spectrum.pro @@ -21,19 +21,6 @@ symbian { # UID for the SIS file TARGET.UID3 = 0xA000E3FA - - bin.sources = spectrum.exe - !contains(DEFINES, DISABLE_FFT) { - bin.sources += fftreal.dll - } - bin.path = /sys/bin - rsc.sources = $${EPOCROOT}$$HW_ZDIR$$APP_RESOURCE_DIR/spectrum.rsc - rsc.path = $$APP_RESOURCE_DIR - mif.sources = $${EPOCROOT}$$HW_ZDIR$$APP_RESOURCE_DIR/spectrum.mif - mif.path = $$APP_RESOURCE_DIR - reg_rsc.sources = $${EPOCROOT}$$HW_ZDIR$$REG_RESOURCE_IMPORT_DIR/spectrum_reg.rsc - reg_rsc.path = $$REG_RESOURCE_IMPORT_DIR - DEPLOYMENT += bin rsc mif reg_rsc } sources.files = README.txt spectrum.pri spectrum.pro TODO.txt -- cgit v0.12 From e06bc69870d1ef79466557dd716ec1edb0e48fee Mon Sep 17 00:00:00 2001 From: Harald Fernengel Date: Fri, 21 May 2010 16:14:38 +0200 Subject: QDebug operator for QFlags Output the flags one by one instead of just an integer Reviewed-by: Robert Griebl --- src/corelib/io/qdebug.h | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/src/corelib/io/qdebug.h b/src/corelib/io/qdebug.h index bc68599..093312f 100644 --- a/src/corelib/io/qdebug.h +++ b/src/corelib/io/qdebug.h @@ -254,6 +254,29 @@ inline QDebug operator<<(QDebug debug, const QContiguousCache &cache) return debug.space(); } +#if defined(FORCE_UREF) +template +inline QDebug &operator<<(QDebug debug, const QFlags &flags) +#else +template +inline QDebug operator<<(QDebug debug, const QFlags &flags) +#endif +{ + debug.nospace() << "QFlags("; + bool needSeparator = false; + for (uint i = 0; i < sizeof(T) * 8; ++i) { + if (flags.testFlag(T(1 << i))) { + if (needSeparator) + debug.nospace() << '|'; + else + needSeparator = true; + debug.nospace() << "0x" << QByteArray::number(T(1 << i), 16).constData(); + } + } + debug << ')'; + return debug.space(); +} + #if !defined(QT_NO_DEBUG_STREAM) Q_CORE_EXPORT_INLINE QDebug qDebug() { return QDebug(QtDebugMsg); } -- cgit v0.12 From 1ec8acd77b6c048f5a68887ac7750b0764ade598 Mon Sep 17 00:00:00 2001 From: Thiago Macieira Date: Fri, 21 May 2010 12:05:15 +0200 Subject: Remove Q_PACKED from QChar and QLocale::Data. Reviewed-by: Olivier Goffart --- dist/changes-4.7.0 | 7 +++++++ src/corelib/tools/qchar.h | 6 +----- src/corelib/tools/qlocale.h | 6 +----- 3 files changed, 9 insertions(+), 10 deletions(-) diff --git a/dist/changes-4.7.0 b/dist/changes-4.7.0 index 34d002c..4965ef5 100644 --- a/dist/changes-4.7.0 +++ b/dist/changes-4.7.0 @@ -333,3 +333,10 @@ QtScript: Changes due to updating src/3rdparty/javascriptcore: a column number of 1. - QScriptValueIterator will include the "length" property when iterating over Array objects. + +QtCore: + - QChar no longer carries the Q_PACKED tag on ARM. This flag was + used to allow proper alignment of QChar on 2 bytes on older ARM + ABIs, but it also allowed for unaligned access. Qt never generates + or uses unaligned access and the new EABI aligns as expected, so + the flag was removed. diff --git a/src/corelib/tools/qchar.h b/src/corelib/tools/qchar.h index 205f911..b9e7e01 100644 --- a/src/corelib/tools/qchar.h +++ b/src/corelib/tools/qchar.h @@ -358,11 +358,7 @@ private: QChar(uchar c); #endif ushort ucs; -} -#if (defined(__arm__) || defined(__ARMEL__)) - Q_PACKED -#endif - ; +}; Q_DECLARE_TYPEINFO(QChar, Q_MOVABLE_TYPE); diff --git a/src/corelib/tools/qlocale.h b/src/corelib/tools/qlocale.h index 5023201..f2fd892 100644 --- a/src/corelib/tools/qlocale.h +++ b/src/corelib/tools/qlocale.h @@ -685,11 +685,7 @@ public: struct Data { quint16 index; quint16 numberOptions; - } -#if (defined(__arm__) || defined(__ARMEL__)) - Q_PACKED -#endif - ; + }; private: friend struct QLocalePrivate; // ### We now use this field to pack an index into locale_data and NumberOptions. -- cgit v0.12 From b5f1a55c3112f46f27e2306fac7d93bde96152e6 Mon Sep 17 00:00:00 2001 From: Thiago Macieira Date: Fri, 21 May 2010 13:21:44 +0200 Subject: tst_bic: make it possible to test for cross-compilation --- tests/auto/bic/gen.sh | 2 +- tests/auto/bic/tst_bic.cpp | 12 +++++++++--- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/tests/auto/bic/gen.sh b/tests/auto/bic/gen.sh index 8005880..7bcad24 100755 --- a/tests/auto/bic/gen.sh +++ b/tests/auto/bic/gen.sh @@ -56,7 +56,7 @@ fi for module in $modules; do echo "#include <$module/$module>" >test.cpp - g++ -c -I$QTDIR/include -DQT_NO_STL -DQT3_SUPPORT -fdump-class-hierarchy test.cpp + ${CXX-g++} $CXXFLAGS -c -I$QTDIR/include -DQT_NO_STL -DQT3_SUPPORT -fdump-class-hierarchy test.cpp mv test.cpp*.class $module.$2.txt # Remove template classes from the output perl -pi -e '$skip = 1 if (/^(Class|Vtable).* Date: Tue, 18 May 2010 20:15:36 +0200 Subject: QDBusAbstractInterface: don't set lastError outside the object's own thread --- src/dbus/qdbusabstractinterface.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/dbus/qdbusabstractinterface.cpp b/src/dbus/qdbusabstractinterface.cpp index 1a7c417..4e9c1ad 100644 --- a/src/dbus/qdbusabstractinterface.cpp +++ b/src/dbus/qdbusabstractinterface.cpp @@ -42,6 +42,8 @@ #include "qdbusabstractinterface.h" #include "qdbusabstractinterface_p.h" +#include + #include "qdbusargument.h" #include "qdbuspendingcall.h" #include "qdbusmessage_p.h" @@ -440,7 +442,8 @@ QDBusMessage QDBusAbstractInterface::callWithArgumentList(QDBus::CallMode mode, msg.setArguments(args); QDBusMessage reply = d->connection.call(msg, mode); - d->lastError = reply; // will clear if reply isn't an error + if (thread() == QThread::currentThread()) + d->lastError = reply; // will clear if reply isn't an error // ensure that there is at least one element if (reply.arguments().isEmpty()) -- cgit v0.12 From 3d96cbd2ec0c104a77254219ef583b6ade3c547d Mon Sep 17 00:00:00 2001 From: Thiago Macieira Date: Sun, 23 May 2010 10:07:54 +0200 Subject: Unbreak compilation outside Mac --- src/gui/widgets/qpushbutton.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/widgets/qpushbutton.cpp b/src/gui/widgets/qpushbutton.cpp index d73cf6f..8a18ed0 100644 --- a/src/gui/widgets/qpushbutton.cpp +++ b/src/gui/widgets/qpushbutton.cpp @@ -60,6 +60,7 @@ #include "qdialogbuttonbox.h" #ifdef Q_WS_MAC #include "qmacstyle_mac.h" +#include "private/qmacstyle_mac_p.h" #endif // Q_WS_MAC #ifndef QT_NO_ACCESSIBILITY @@ -68,7 +69,6 @@ #include "private/qmenu_p.h" #include "private/qpushbutton_p.h" -#include "private/qmacstyle_mac_p.h" QT_BEGIN_NAMESPACE -- cgit v0.12 From b827967fef469f66a5a2f975bfafc3cdb82c4ffb Mon Sep 17 00:00:00 2001 From: Tasuku Suzuki Date: Sun, 23 May 2010 19:51:22 +0200 Subject: Compile with QT_NO_ACTION. Merge-request: 643 Reviewed-by: Andreas Kling --- src/declarative/graphicsitems/qdeclarativeitemsmodule.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/declarative/graphicsitems/qdeclarativeitemsmodule.cpp b/src/declarative/graphicsitems/qdeclarativeitemsmodule.cpp index 7c55009..151a9e9 100644 --- a/src/declarative/graphicsitems/qdeclarativeitemsmodule.cpp +++ b/src/declarative/graphicsitems/qdeclarativeitemsmodule.cpp @@ -140,7 +140,9 @@ void QDeclarativeItemModule::defineModule() qmlRegisterType(); qmlRegisterType(); qmlRegisterType(); +#ifndef QT_NO_ACTION qmlRegisterType(); +#endif qmlRegisterType(); qmlRegisterType(); #ifndef QT_NO_GRAPHICSEFFECT -- cgit v0.12 From 941b44c2e36eeafe1acd1be5fd1cb27151db99d2 Mon Sep 17 00:00:00 2001 From: Bea Lam Date: Mon, 24 May 2010 13:40:11 +1000 Subject: Clean up project files for c++ examples --- .../cppextensions/imageprovider/imageprovider.pro | 15 +++++++-------- examples/declarative/cppextensions/plugins/plugins.pro | 16 +++++++--------- examples/declarative/cppextensions/qwidgets/qwidgets.pro | 12 +++++------- .../extending/chapter5-plugins/chapter5-plugins.pro | 8 ++++---- 4 files changed, 23 insertions(+), 28 deletions(-) diff --git a/examples/declarative/cppextensions/imageprovider/imageprovider.pro b/examples/declarative/cppextensions/imageprovider/imageprovider.pro index 945a301..462f7d9d 100644 --- a/examples/declarative/cppextensions/imageprovider/imageprovider.pro +++ b/examples/declarative/cppextensions/imageprovider/imageprovider.pro @@ -1,12 +1,10 @@ TEMPLATE = lib -TARGET = imageprovider -QT += declarative CONFIG += qt plugin +QT += declarative -TARGET = $$qtLibraryTarget($$TARGET) DESTDIR = ImageProviderCore +TARGET = imageprovider -# Input SOURCES += imageprovider.cpp sources.files = $$SOURCES imageprovider.qml imageprovider.pro @@ -18,8 +16,9 @@ ImageProviderCore_sources.files = \ ImageProviderCore/qmldir ImageProviderCore_sources.path = $$[QT_INSTALL_EXAMPLES]/declarative/imageprovider/ImageProviderCore -symbian:{ - TARGET.EPOCALLOWDLLDATA=1 -} - INSTALLS = sources ImageProviderCore_sources target + +symbian { + include($$QT_SOURCE_TREE/examples/symbianpkgrules.pri) + TARGET.EPOCALLOWDLLDATA = 1 +} diff --git a/examples/declarative/cppextensions/plugins/plugins.pro b/examples/declarative/cppextensions/plugins/plugins.pro index b501ae3..d37ff40 100644 --- a/examples/declarative/cppextensions/plugins/plugins.pro +++ b/examples/declarative/cppextensions/plugins/plugins.pro @@ -1,9 +1,10 @@ TEMPLATE = lib -DESTDIR = com/nokia/TimeExample -TARGET = qtimeexampleqmlplugin CONFIG += qt plugin QT += declarative +DESTDIR = com/nokia/TimeExample +TARGET = qtimeexampleqmlplugin + SOURCES += plugin.cpp qdeclarativesources.files += \ @@ -18,14 +19,11 @@ qdeclarativesources.path += $$[QT_INSTALL_EXAMPLES]/declarative/plugins/com/noki sources.files += plugins.pro plugin.cpp plugins.qml README sources.path += $$[QT_INSTALL_EXAMPLES]/declarative/plugins - target.path += $$[QT_INSTALL_EXAMPLES]/declarative/plugins/com/nokia/TimeExample -symbian:{ - TARGET.EPOCALLOWDLLDATA=1 -} - - INSTALLS += qdeclarativesources sources target -symbian: include($$QT_SOURCE_TREE/examples/symbianpkgrules.pri) +symbian { + include($$QT_SOURCE_TREE/examples/symbianpkgrules.pri) + TARGET.EPOCALLOWDLLDATA = 1 +} diff --git a/examples/declarative/cppextensions/qwidgets/qwidgets.pro b/examples/declarative/cppextensions/qwidgets/qwidgets.pro index 37f313d..c5f8bcf 100644 --- a/examples/declarative/cppextensions/qwidgets/qwidgets.pro +++ b/examples/declarative/cppextensions/qwidgets/qwidgets.pro @@ -1,21 +1,19 @@ TEMPLATE = lib -DESTDIR = QWidgets -TARGET = qwidgetsplugin CONFIG += qt plugin QT += declarative +DESTDIR = QWidgets +TARGET = qwidgetsplugin + SOURCES += qwidgets.cpp sources.files += qwidgets.pro qwidgets.cpp qwidgets.qml - sources.path += $$[QT_INSTALL_EXAMPLES]/declarative/plugins - target.path += $$[QT_INSTALL_EXAMPLES]/declarative/plugins INSTALLS += sources target -symbian: include($$QT_SOURCE_TREE/examples/symbianpkgrules.pri) - -symbian:{ +symbian { + include($$QT_SOURCE_TREE/examples/symbianpkgrules.pri) TARGET.EPOCALLOWDLLDATA = 1 } diff --git a/examples/declarative/tutorials/extending/chapter5-plugins/chapter5-plugins.pro b/examples/declarative/tutorials/extending/chapter5-plugins/chapter5-plugins.pro index a8fb565..483da8f 100644 --- a/examples/declarative/tutorials/extending/chapter5-plugins/chapter5-plugins.pro +++ b/examples/declarative/tutorials/extending/chapter5-plugins/chapter5-plugins.pro @@ -2,6 +2,10 @@ TEMPLATE = lib CONFIG += qt plugin QT += declarative +DESTDIR = lib +OBJECTS_DIR = tmp +MOC_DIR = tmp + HEADERS += musician.h \ instrument.h \ musicplugin.h @@ -10,10 +14,6 @@ SOURCES += musician.cpp \ instrument.cpp \ musicplugin.cpp -DESTDIR = lib -OBJECTS_DIR = tmp -MOC_DIR = tmp - symbian { include($$QT_SOURCE_TREE/examples/symbianpkgrules.pri) TARGET.EPOCALLOWDLLDATA = 1 -- cgit v0.12 From 96f47aeec086b2d35b859194e42721dbc2d2db6a Mon Sep 17 00:00:00 2001 From: Bea Lam Date: Mon, 24 May 2010 15:23:10 +1000 Subject: Clean up and don't allow clicks on already filled places --- .../toys/tic-tac-toe/content/Button.qml | 34 ++--- .../toys/tic-tac-toe/content/tic-tac-toe.js | 144 +++++++++++---------- .../declarative/toys/tic-tac-toe/tic-tac-toe.qml | 110 ++++++++-------- 3 files changed, 149 insertions(+), 139 deletions(-) diff --git a/examples/declarative/toys/tic-tac-toe/content/Button.qml b/examples/declarative/toys/tic-tac-toe/content/Button.qml index 9b2dc8e..d0f387f 100644 --- a/examples/declarative/toys/tic-tac-toe/content/Button.qml +++ b/examples/declarative/toys/tic-tac-toe/content/Button.qml @@ -43,35 +43,37 @@ import Qt 4.7 Rectangle { id: container - property string text: "Button" - property bool down: false - property string mainCol: "lightgray" - property string darkCol: "darkgray" - property string lightCol: "white" + property string text + property bool pressed: false + + signal clicked width: buttonLabel.width + 20; height: buttonLabel.height + 6 - border { width: 1; color: Qt.darker(mainCol) } - radius: 8; - color: mainCol + border { width: 1; color: Qt.darker(container.color) } + radius: 8 + color: "lightgray" smooth: true gradient: Gradient { GradientStop { - id: topGrad; position: 0.0 - color: if (container.down) { darkCol } else { lightCol } + position: 0.0 + color: container.pressed ? "darkgray" : "white" + } + GradientStop { + position: 1.0 + color: container.color } - GradientStop { position: 1.0; color: mainCol } } - signal clicked - - MouseArea { id: mr; anchors.fill: parent; onClicked: container.clicked() } + MouseArea { + anchors.fill: parent + onClicked: container.clicked() + } Text { id: buttonLabel - anchors.centerIn: container - text: container.text; + text: container.text font.pixelSize: 14 } } diff --git a/examples/declarative/toys/tic-tac-toe/content/tic-tac-toe.js b/examples/declarative/toys/tic-tac-toe/content/tic-tac-toe.js index f8d6d9f..5a166b7 100644 --- a/examples/declarative/toys/tic-tac-toe/content/tic-tac-toe.js +++ b/examples/declarative/toys/tic-tac-toe/content/tic-tac-toe.js @@ -1,145 +1,149 @@ function winner(board) { for (var i=0; i<3; ++i) { - if (board.children[i].state!="" - && board.children[i].state==board.children[i+3].state - && board.children[i].state==board.children[i+6].state) + if (board.children[i].state != "" + && board.children[i].state == board.children[i+3].state + && board.children[i].state == board.children[i+6].state) return true - if (board.children[i*3].state!="" - && board.children[i*3].state==board.children[i*3+1].state - && board.children[i*3].state==board.children[i*3+2].state) + if (board.children[i*3].state != "" + && board.children[i*3].state == board.children[i*3+1].state + && board.children[i*3].state == board.children[i*3+2].state) return true } - if (board.children[0].state!="" - && board.children[0].state==board.children[4].state!="" - && board.children[0].state==board.children[8].state!="") + if (board.children[0].state != "" + && board.children[0].state == board.children[4].state != "" + && board.children[0].state == board.children[8].state != "") return true - if (board.children[2].state!="" - && board.children[2].state==board.children[4].state!="" - && board.children[2].state==board.children[6].state!="") + if (board.children[2].state != "" + && board.children[2].state == board.children[4].state != "" + && board.children[2].state == board.children[6].state != "") return true return false } -function restart() +function restartGame() { - // No moves left - start again + game.running = true + for (var i=0; i<9; ++i) board.children[i].state = "" } -function makeMove(pos,player) +function makeMove(pos, player) { board.children[pos].state = player if (winner(board)) { - win(player + " wins") + gameFinished(player + " wins") return true } else { return false } } +function canPlayAtPos(pos) +{ + return board.children[pos].state == "" +} + function computerTurn() { var r = Math.random(); - if(r < game.difficulty){ + if (r < game.difficulty) smartAI(); - }else{ - randAI(); - } + else + randomAI(); } function smartAI() { - function boardCopy(a){ + function boardCopy(a) { var ret = new Object; ret.children = new Array(9); - for(var i = 0; i<9; i++){ + for (var i = 0; i<9; i++) { ret.children[i] = new Object; ret.children[i].state = a.children[i].state; } return ret; } - for(var i=0; i<9; i++){ + + for (var i=0; i<9; i++) { var simpleBoard = boardCopy(board); - if (board.children[i].state == "") { + if (canPlayAtPos(i)) { simpleBoard.children[i].state = "O"; - if(winner(simpleBoard)){ - makeMove(i,"O") + if (winner(simpleBoard)) { + makeMove(i, "O") return } } } - for(var i=0; i<9; i++){ + for (var i=0; i<9; i++) { var simpleBoard = boardCopy(board); - if (board.children[i].state == "") { + if (canPlayAtPos(i)) { simpleBoard.children[i].state = "X"; - if(winner(simpleBoard)){ - makeMove(i,"O") + if (winner(simpleBoard)) { + makeMove(i, "O") return } } } - function thwart(a,b,c){//If they are at a, try b or c + + function thwart(a,b,c) { //If they are at a, try b or c if (board.children[a].state == "X") { - if (board.children[b].state == "") { - makeMove(b,"O") + if (canPlayAtPos(b)) { + makeMove(b, "O") return true - }else if (board.children[c].state == "") { - makeMove(c,"O") + } else if (canPlayAtPos(c)) { + makeMove(c, "O") return true } } return false; } - if(thwart(4,0,2)) return; - if(thwart(0,4,3)) return; - if(thwart(2,4,1)) return; - if(thwart(6,4,7)) return; - if(thwart(8,4,5)) return; - if(thwart(1,4,2)) return; - if(thwart(3,4,0)) return; - if(thwart(5,4,8)) return; - if(thwart(7,4,6)) return; - for(var i =0; i<9; i++){//Backup - if (board.children[i].state == "") { - makeMove(i,"O") + + if (thwart(4,0,2)) return; + if (thwart(0,4,3)) return; + if (thwart(2,4,1)) return; + if (thwart(6,4,7)) return; + if (thwart(8,4,5)) return; + if (thwart(1,4,2)) return; + if (thwart(3,4,0)) return; + if (thwart(5,4,8)) return; + if (thwart(7,4,6)) return; + + for (var i =0; i<9; i++) { + if (canPlayAtPos(i)) { + makeMove(i, "O") return } } - restart(); + restartGame(); } -function randAI() +function randomAI() { - var open = 0; - for (var i=0; i<9; ++i) - if (board.children[i].state == "") { - open += 1; - } - if(open == 0){ - restart(); - return; + var unfilledPosns = new Array(); + + for (var i=0; i<9; ++i) { + if (canPlayAtPos(i)) + unfilledPosns.push(i); + } + + if (unfilledPosns.length == 0) { + restartGame(); + } else { + var choice = unfilledPosns[Math.floor(Math.random() * unfilledPosns.length)]; + makeMove(choice, "O"); } - var openA = new Array(open);//JS doesn't have lists I can append to (i think) - var acc = 0; - for (var i=0; i<9; ++i) - if (board.children[i].state == "") { - openA[acc] = i; - acc += 1; - } - var choice = openA[Math.floor(Math.random() * open)]; - makeMove(choice, "O"); } -function win(s) +function gameFinished(message) { - msg.text = s - msg.opacity = 1 - endtimer.running = true + messageDisplay.text = message + messageDisplay.visible = true + game.running = false } diff --git a/examples/declarative/toys/tic-tac-toe/tic-tac-toe.qml b/examples/declarative/toys/tic-tac-toe/tic-tac-toe.qml index 707add7..34c3130 100644 --- a/examples/declarative/toys/tic-tac-toe/tic-tac-toe.qml +++ b/examples/declarative/toys/tic-tac-toe/tic-tac-toe.qml @@ -42,76 +42,80 @@ import Qt 4.7 import "content" import "content/tic-tac-toe.js" as Logic -Item { +Rectangle { id: game - property bool show: false + property bool running: true property real difficulty: 1.0 //chance it will actually think - width: 440 - height: 480 - anchors.fill: parent + width: display.width; height: display.height + 10 Image { - id: boardimage - anchors { verticalCenter: parent.verticalCenter; horizontalCenter: parent.horizontalCenter } + id: boardImage source: "content/pics/board.png" } - Grid { - id: board - anchors.fill: boardimage - columns: 3 - - Repeater { - model: 9 - TicTac { - width: board.width/3 - height: board.height/3 - onClicked: { - if (!endtimer.running) { - if (!Logic.makeMove(index,"X")) - Logic.computerTurn() - } - } - } - } + Text { + id: messageDisplay + anchors.centerIn: parent + color: "blue" + style: Text.Outline; styleColor: "white" + font.pixelSize: 50; font.bold: true + visible: false Timer { - id: endtimer - interval: 1600 - onTriggered: { msg.opacity = 0; Logic.restart() } + running: messageDisplay.visible + onTriggered: { + messageDisplay.visible = false; + Logic.restartGame(); + } } } - Row { - spacing: 4 - anchors { top: board.bottom; horizontalCenter: board.horizontalCenter } + Column { + id: display - Button { - text: "Hard" - onClicked: game.difficulty = 1.0; - down: game.difficulty == 1.0 - } - Button { - text: "Moderate" - onClicked: game.difficulty = 0.8; - down: game.difficulty == 0.8 - } - Button { - text: "Easy" - onClicked: game.difficulty = 0.2; - down: game.difficulty == 0.2 + Grid { + id: board + width: boardImage.width; height: boardImage.height + columns: 3 + + Repeater { + model: 9 + + TicTac { + width: board.width/3 + height: board.height/3 + + onClicked: { + if (game.running && Logic.canPlayAtPos(index)) { + if (!Logic.makeMove(index, "X")) + Logic.computerTurn(); + } + } + } + } } - } - Text { - id: msg + Row { + spacing: 4 + anchors.horizontalCenter: parent.horizontalCenter - anchors.centerIn: parent - opacity: 0 - color: "blue" - style: Text.Outline; styleColor: "white" - font.pixelSize: 50; font.bold: true + Button { + text: "Hard" + pressed: game.difficulty == 1.0 + onClicked: { game.difficulty = 1.0 } + } + Button { + text: "Moderate" + pressed: game.difficulty == 0.8 + onClicked: { game.difficulty = 0.8 } + } + Button { + text: "Easy" + pressed: game.difficulty == 0.2 + onClicked: { game.difficulty = 0.2 } + } + } } } -- cgit v0.12 From aee4174771cf9d64b3b36db6ab90f29b084a39d6 Mon Sep 17 00:00:00 2001 From: Alex Date: Mon, 24 May 2010 16:07:18 +1000 Subject: Improve Bearer Management related documentation in QNetworkAccessManager Reviewed-by: trustme --- src/network/access/qnetworkaccessmanager.cpp | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/src/network/access/qnetworkaccessmanager.cpp b/src/network/access/qnetworkaccessmanager.cpp index 1c7661d..c9e2638 100644 --- a/src/network/access/qnetworkaccessmanager.cpp +++ b/src/network/access/qnetworkaccessmanager.cpp @@ -141,6 +141,32 @@ static void ensureInitialized() can be: \snippet doc/src/snippets/code/src_network_access_qnetworkaccessmanager.cpp 1 + \section1 Network and Roaming support + + With the addition of the \l {Bearer Management} API to Qt 4.7 + QNetworkAccessManager gained the ability to manage network connections. + QNetworkAccessManager can start the network interface if the device is + offline and terminates the interface if the current process is the last + one to use the uplink. Note that some platform utilize grace periods from + when the last application stops using a uplink until the system actually + terminates the connectivity link. Roaming is equally transparent. Any + queued/pending network requests are automatically transferred to new + access point. + + Clients wanting to utlize this feature should not require any changes. In fact + it is likely that existing platform specific connection code can simply be + removed from the application. + + \note The network and roaming support in QNetworkAccessManager is conditional + upon the platform supporting connection management. The + \l QNetworkConfigurationManager::NetworkSessionRequired can be used to + detect whether QNetworkAccessManager utilizes this feature. Currently only + Meego/Harmattan and Symbian platforms provide connection management support. + + \note This feature cannot be used in combination with the Bearer Management + API as provided by QtMobility. Applications have to migrate to the Qt version + of Bearer Management. + \section1 Symbian Platform Security Requirements On Symbian, processes which use this class must have the -- cgit v0.12 From 2fa76dc524b97590e554f0f86e6e8c58b6396d51 Mon Sep 17 00:00:00 2001 From: Alex Date: Mon, 24 May 2010 16:09:47 +1000 Subject: fix typo in documentation --- src/network/access/qnetworkaccessmanager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/network/access/qnetworkaccessmanager.cpp b/src/network/access/qnetworkaccessmanager.cpp index c9e2638..6669b5d 100644 --- a/src/network/access/qnetworkaccessmanager.cpp +++ b/src/network/access/qnetworkaccessmanager.cpp @@ -153,7 +153,7 @@ static void ensureInitialized() queued/pending network requests are automatically transferred to new access point. - Clients wanting to utlize this feature should not require any changes. In fact + Clients wanting to utilize this feature should not require any changes. In fact it is likely that existing platform specific connection code can simply be removed from the application. -- cgit v0.12 From af84e21c40d3441546b22f631fc2d34a48580740 Mon Sep 17 00:00:00 2001 From: Alan Alpert Date: Mon, 24 May 2010 15:49:43 +0200 Subject: Fix typo --- examples/declarative/animation/easing/easing.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/declarative/animation/easing/easing.qml b/examples/declarative/animation/easing/easing.qml index 939d43b..6d30cf4 100644 --- a/examples/declarative/animation/easing/easing.qml +++ b/examples/declarative/animation/easing/easing.qml @@ -36,7 +36,7 @@ Rectangle { ListElement { name: "Easing.InOutCirc"; type: Easing.InOutCirc; ballColor: "RosyBrown" } ListElement { name: "Easing.OutInCirc"; type: Easing.OutInCirc; ballColor: "SandyBrown" } ListElement { name: "Easing.InElastic"; type: Easing.InElastic; ballColor: "DarkGoldenRod" } - ListElement { name: "Easing.InElastic"; type: Easing.OutElastic; ballColor: "Chocolate" } + ListElement { name: "Easing.OutElastic"; type: Easing.OutElastic; ballColor: "Chocolate" } ListElement { name: "Easing.InOutElastic"; type: Easing.InOutElastic; ballColor: "SaddleBrown" } ListElement { name: "Easing.OutInElastic"; type: Easing.OutInElastic; ballColor: "Brown" } ListElement { name: "Easing.InBack"; type: Easing.InBack; ballColor: "Maroon" } -- cgit v0.12 From 314a36895e1a31dd2b62de265d9160238d96e512 Mon Sep 17 00:00:00 2001 From: Thiago Macieira Date: Mon, 24 May 2010 09:21:28 +0200 Subject: QtDBus: Debug message update --- src/dbus/qdbusintegrator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dbus/qdbusintegrator.cpp b/src/dbus/qdbusintegrator.cpp index 6cb4924..6354770 100644 --- a/src/dbus/qdbusintegrator.cpp +++ b/src/dbus/qdbusintegrator.cpp @@ -523,7 +523,7 @@ qDBusSignalFilter(DBusConnection *connection, DBusMessage *message, void *data) return DBUS_HANDLER_RESULT_NOT_YET_HANDLED; QDBusMessage amsg = QDBusMessagePrivate::fromDBusMessage(message); - qDBusDebug() << d << "got message:" << amsg; + qDBusDebug() << d << "got message (signal):" << amsg; return d->handleMessage(amsg) ? DBUS_HANDLER_RESULT_HANDLED : -- cgit v0.12 From fd256203708e79d64bad856e39bb5a43357bfd06 Mon Sep 17 00:00:00 2001 From: Thiago Macieira Date: Tue, 18 May 2010 15:58:24 +0200 Subject: Fix a race condition with QtDBus blocking for replies. If an auxiliary thread tried to block on waiting for a reply, and at the same time the main thread handled the reply, there's room for a race condition. So ensure only one thread is stopped at dbus_pending_call_block(). The other thread(s) will be waiting on the QWaitCondition. It's not a race condition for the main thread to process (and finish processing) the reply while the auxiliary thread hasn't even started to wait. The code will ensure that the reply is properly seen. Task-Id: https://projects.maemo.org/bugzilla/show_bug.cgi?id=155306 Reviewed-By: Trust Me --- src/dbus/qdbusintegrator.cpp | 44 ++++++++++++++++++++++++++++-------------- src/dbus/qdbuspendingcall.cpp | 35 +++++++++++++++++++++++++-------- src/dbus/qdbuspendingcall_p.h | 35 ++++++++++++++++++++++----------- src/dbus/qdbuspendingreply.cpp | 3 ++- 4 files changed, 83 insertions(+), 34 deletions(-) diff --git a/src/dbus/qdbusintegrator.cpp b/src/dbus/qdbusintegrator.cpp index 6354770..0f49dcc 100644 --- a/src/dbus/qdbusintegrator.cpp +++ b/src/dbus/qdbusintegrator.cpp @@ -1687,15 +1687,31 @@ static void qDBusResultReceived(DBusPendingCall *pending, void *user_data) void QDBusConnectionPrivate::waitForFinished(QDBusPendingCallPrivate *pcall) { Q_ASSERT(pcall->pending); - QDBusDispatchLocker locker(PendingCallBlockAction, this); - q_dbus_pending_call_block(pcall->pending); - // QDBusConnectionPrivate::processFinishedCall() is called automatically + Q_ASSERT(!pcall->autoDelete); + //Q_ASSERT(pcall->mutex.isLocked()); // there's no such function + + if (pcall->waitingForFinished) { + // another thread is already waiting + pcall->waitForFinishedCondition.wait(&pcall->mutex); + } else { + pcall->waitingForFinished = true; + pcall->mutex.unlock(); + + { + QDBusDispatchLocker locker(PendingCallBlockAction, this); + q_dbus_pending_call_block(pcall->pending); + // QDBusConnectionPrivate::processFinishedCall() is called automatically + } + pcall->mutex.lock(); + } } void QDBusConnectionPrivate::processFinishedCall(QDBusPendingCallPrivate *call) { QDBusConnectionPrivate *connection = const_cast(call->connection); + QMutexLocker locker(&call->mutex); + QDBusMessage &msg = call->replyMessage; if (call->pending) { // decode the message @@ -1725,6 +1741,12 @@ void QDBusConnectionPrivate::processFinishedCall(QDBusPendingCallPrivate *call) qDBusDebug() << "Deliver failed!"; } + if (call->pending) + q_dbus_pending_call_unref(call->pending); + call->pending = 0; + + locker.unlock(); + // Are there any watchers? if (call->watcherHelper) call->watcherHelper->emitSignals(msg, call->sentMessage); @@ -1732,12 +1754,10 @@ void QDBusConnectionPrivate::processFinishedCall(QDBusPendingCallPrivate *call) if (msg.type() == QDBusMessage::ErrorMessage) emit connection->callWithCallbackFailed(QDBusError(msg), call->sentMessage); - if (call->pending) - q_dbus_pending_call_unref(call->pending); - call->pending = 0; - - if (call->autoDelete) + if (call->autoDelete) { + Q_ASSERT(!call->waitingForFinished); // can't wait on a call with autoDelete! delete call; + } } int QDBusConnectionPrivate::send(const QDBusMessage& message) @@ -1879,17 +1899,14 @@ QDBusPendingCallPrivate *QDBusConnectionPrivate::sendWithReplyAsync(const QDBusM { if (isServiceRegisteredByThread(message.service())) { // special case for local calls - QDBusPendingCallPrivate *pcall = new QDBusPendingCallPrivate; - pcall->sentMessage = message; + QDBusPendingCallPrivate *pcall = new QDBusPendingCallPrivate(message, this); pcall->replyMessage = sendWithReplyLocal(message); - pcall->connection = this; return pcall; } checkThread(); - QDBusPendingCallPrivate *pcall = new QDBusPendingCallPrivate; - pcall->sentMessage = message; + QDBusPendingCallPrivate *pcall = new QDBusPendingCallPrivate(message, this); pcall->ref = 0; QDBusError error; @@ -1913,7 +1930,6 @@ QDBusPendingCallPrivate *QDBusConnectionPrivate::sendWithReplyAsync(const QDBusM q_dbus_message_unref(msg); pcall->pending = pending; - pcall->connection = this; q_dbus_pending_call_set_notify(pending, qDBusResultReceived, pcall, 0); return pcall; diff --git a/src/dbus/qdbuspendingcall.cpp b/src/dbus/qdbuspendingcall.cpp index 3db5d9f..86b585d 100644 --- a/src/dbus/qdbuspendingcall.cpp +++ b/src/dbus/qdbuspendingcall.cpp @@ -208,6 +208,8 @@ void QDBusPendingCallPrivate::setMetaTypes(int count, const int *types) void QDBusPendingCallPrivate::checkReceivedSignature() { + // MUST BE CALLED WITH A LOCKED MUTEX! + if (replyMessage.type() == QDBusMessage::InvalidMessage) return; // not yet finished - no message to // validate against @@ -230,6 +232,8 @@ void QDBusPendingCallPrivate::checkReceivedSignature() void QDBusPendingCallPrivate::waitForFinished() { + QMutexLocker locker(&mutex); + if (replyMessage.type() != QDBusMessage::InvalidMessage) return; // already finished @@ -310,7 +314,11 @@ QDBusPendingCall &QDBusPendingCall::operator=(const QDBusPendingCall &other) bool QDBusPendingCall::isFinished() const { - return !d || (d->replyMessage.type() != QDBusMessage::InvalidMessage); + if (!d) + return true; // considered finished + + QMutexLocker locker(&d->mutex); + return d->replyMessage.type() != QDBusMessage::InvalidMessage; } void QDBusPendingCall::waitForFinished() @@ -329,7 +337,10 @@ void QDBusPendingCall::waitForFinished() */ bool QDBusPendingCall::isValid() const { - return d ? d->replyMessage.type() == QDBusMessage::ReplyMessage : false; + if (!d) + return false; + QMutexLocker locker(&d->mutex); + return d->replyMessage.type() == QDBusMessage::ReplyMessage; } /*! @@ -343,7 +354,10 @@ bool QDBusPendingCall::isValid() const */ bool QDBusPendingCall::isError() const { - return d ? d->replyMessage.type() == QDBusMessage::ErrorMessage : true; + if (!d) + return true; // considered finished and an error + QMutexLocker locker(&d->mutex); + return d->replyMessage.type() == QDBusMessage::ErrorMessage; } /*! @@ -356,8 +370,10 @@ bool QDBusPendingCall::isError() const */ QDBusError QDBusPendingCall::error() const { - if (d) + if (d) { + QMutexLocker locker(&d->mutex); return d->replyMessage; + } // not connected, return an error QDBusError err = QDBusError(QDBusError::Disconnected, @@ -378,7 +394,10 @@ QDBusError QDBusPendingCall::error() const */ QDBusMessage QDBusPendingCall::reply() const { - return d ? d->replyMessage : QDBusMessage::createError(error()); + if (!d) + return QDBusMessage::createError(error()); + QMutexLocker locker(&d->mutex); + return d->replyMessage; } #if 0 @@ -439,9 +458,8 @@ QDBusPendingCall QDBusPendingCall::fromCompletedCall(const QDBusMessage &msg) QDBusPendingCallPrivate *d = 0; if (msg.type() == QDBusMessage::ErrorMessage || msg.type() == QDBusMessage::ReplyMessage) { - d = new QDBusPendingCallPrivate; + d = new QDBusPendingCallPrivate(QDBusMessage(), 0); d->replyMessage = msg; - d->connection = 0; } return QDBusPendingCall(d); @@ -471,9 +489,10 @@ QDBusPendingCallWatcher::QDBusPendingCallWatcher(const QDBusPendingCall &call, Q : QObject(*new QDBusPendingCallWatcherPrivate, parent), QDBusPendingCall(call) { if (d) { // QDBusPendingCall::d + QMutexLocker locker(&d->mutex); if (!d->watcherHelper) { d->watcherHelper = new QDBusPendingCallWatcherHelper; - if (isFinished()) { + if (d->replyMessage.type() != QDBusMessage::InvalidMessage) { // cause a signal emission anyways QMetaObject::invokeMethod(d->watcherHelper, "finished", Qt::QueuedConnection); } diff --git a/src/dbus/qdbuspendingcall_p.h b/src/dbus/qdbuspendingcall_p.h index 641c397..c3aed53 100644 --- a/src/dbus/qdbuspendingcall_p.h +++ b/src/dbus/qdbuspendingcall_p.h @@ -57,6 +57,8 @@ #include #include #include +#include +#include #include "qdbusmessage.h" #include "qdbus_symbols_p.h" @@ -71,24 +73,35 @@ class QDBusConnectionPrivate; class QDBusPendingCallPrivate: public QSharedData { public: - QDBusMessage sentMessage; - QDBusMessage replyMessage; -// QDBusMessage pendingReplyMessage; // used in the local loop - QDBusPendingCallWatcherHelper *watcherHelper; - DBusPendingCall *pending; - QDBusConnectionPrivate *connection; + // { + // set only during construction: + const QDBusMessage sentMessage; + QDBusConnectionPrivate * const connection; - QString expectedReplySignature; - int expectedReplyCount; - - // for the callback + // for the callback mechanism (see setReplyCallback and QDBusConnectionPrivate::sendWithReplyAsync) QPointer receiver; QList metaTypes; int methodIdx; bool autoDelete; + // } + + mutable QMutex mutex; + QWaitCondition waitForFinishedCondition; + + // { + // protected by the mutex above: + QDBusPendingCallWatcherHelper *watcherHelper; + QDBusMessage replyMessage; + DBusPendingCall *pending; + volatile bool waitingForFinished; + + QString expectedReplySignature; + int expectedReplyCount; + // } - QDBusPendingCallPrivate() : watcherHelper(0), pending(0), autoDelete(false) + QDBusPendingCallPrivate(const QDBusMessage &sent, QDBusConnectionPrivate *connection) + : sentMessage(sent), connection(connection), autoDelete(false), watcherHelper(0), pending(0), waitingForFinished(false) { } ~QDBusPendingCallPrivate(); bool setReplyCallback(QObject *target, const char *member); diff --git a/src/dbus/qdbuspendingreply.cpp b/src/dbus/qdbuspendingreply.cpp index b492660..1df47f4 100644 --- a/src/dbus/qdbuspendingreply.cpp +++ b/src/dbus/qdbuspendingreply.cpp @@ -252,7 +252,7 @@ void QDBusPendingReplyData::assign(const QDBusPendingCall &other) void QDBusPendingReplyData::assign(const QDBusMessage &message) { - d = new QDBusPendingCallPrivate; // drops the reference to the old one + d = new QDBusPendingCallPrivate(QDBusMessage(), 0); // drops the reference to the old one d->replyMessage = message; } @@ -271,6 +271,7 @@ QVariant QDBusPendingReplyData::argumentAt(int index) const void QDBusPendingReplyData::setMetaTypes(int count, const int *types) { Q_ASSERT(d); + QMutexLocker locker(&d->mutex); d->setMetaTypes(count, types); d->checkReceivedSignature(); } -- cgit v0.12 From 3af5a362a034fe7f9085a202adfdf13252de1715 Mon Sep 17 00:00:00 2001 From: Alan Alpert Date: Mon, 24 May 2010 21:02:51 +0200 Subject: Integrate some QML examples and demos into qtdemo Includes minor changes and additions to the existing doc and examples, so that they follow Qt conventions better. Note that while blurring the background was part of the plan for the embedded QML viewer I could not get it to perform well enough. In the future, when blur is fast enough (or someone else can get it to perform better than I) -use-blur should become the default, and -no-blur the option. Task-number: QTBUG-10582 --- demos/qtdemo/MagicAnim.qml | 19 ++++ demos/qtdemo/colors.cpp | 4 + demos/qtdemo/colors.h | 1 + demos/qtdemo/mainwindow.cpp | 23 +++- demos/qtdemo/mainwindow.h | 3 + demos/qtdemo/menumanager.cpp | 110 +++++++++++++++++-- demos/qtdemo/menumanager.h | 9 +- demos/qtdemo/qmlShell.qml | 117 +++++++++++++++++++++ demos/qtdemo/qtdemo.pro | 5 +- demos/qtdemo/qtdemo.qrc | 18 ++-- demos/qtdemo/xml/examples.xml | 36 +++++-- doc/src/examples/qml-examples.qdoc | 41 ++++++-- doc/src/examples/qml-flickr.qdoc | 2 +- doc/src/examples/qml-minehunt.qdoc | 5 +- doc/src/examples/qml-photoviewer.qdoc | 2 +- doc/src/examples/qml-rssnews.qdoc | 2 +- doc/src/examples/qml-samegame.qdoc | 5 +- doc/src/examples/qml-snake.qdoc | 5 +- doc/src/examples/qml-twitter.qdoc | 50 +++++++++ doc/src/images/qml-clocks-example.png | Bin 0 -> 40742 bytes doc/src/images/qml-corkboards-example.png | Bin 0 -> 179625 bytes doc/src/images/qml-dialcontrol-example.png | Bin 0 -> 33569 bytes doc/src/images/qml-dynamicscene-example.png | Bin 0 -> 65247 bytes doc/src/images/qml-flickr-demo.png | Bin 0 -> 280730 bytes doc/src/images/qml-flickr-example.png | Bin 280730 -> 0 bytes doc/src/images/qml-flipable-example.png | Bin 0 -> 13301 bytes doc/src/images/qml-minehunt-demo.png | Bin 0 -> 170648 bytes doc/src/images/qml-minehunt-example.png | Bin 170648 -> 0 bytes doc/src/images/qml-photoviewer-demo.png | Bin 0 -> 473306 bytes doc/src/images/qml-photoviewer-example.png | Bin 473306 -> 0 bytes doc/src/images/qml-progressbar-example.png | Bin 0 -> 15188 bytes doc/src/images/qml-rssnews-demo.png | Bin 0 -> 143314 bytes doc/src/images/qml-rssnews-example.png | Bin 143314 -> 0 bytes doc/src/images/qml-samegame-demo.png | Bin 0 -> 285415 bytes doc/src/images/qml-samegame-example.png | Bin 285415 -> 0 bytes doc/src/images/qml-searchbox-example.png | Bin 0 -> 8170 bytes doc/src/images/qml-slideswitch-example.png | Bin 0 -> 8298 bytes doc/src/images/qml-snake-demo.png | Bin 0 -> 105053 bytes doc/src/images/qml-snake-example.png | Bin 105053 -> 0 bytes doc/src/images/qml-spinner-example.png | Bin 0 -> 5637 bytes doc/src/images/qml-tabwidget-example.png | Bin 0 -> 6487 bytes doc/src/images/qml-tic-tac-toe-example.png | Bin 0 -> 24275 bytes doc/src/images/qml-tvtennis-example.png | Bin 0 -> 2070 bytes doc/src/images/qml-twitter-demo.png | Bin 0 -> 95812 bytes examples/declarative/toys/README | 2 +- .../declarative/toys/dial-example/content/Dial.qml | 83 --------------- .../toys/dial-example/content/background.png | Bin 35876 -> 0 bytes .../toys/dial-example/content/needle.png | Bin 342 -> 0 bytes .../toys/dial-example/content/needle_shadow.png | Bin 632 -> 0 bytes .../toys/dial-example/content/overlay.png | Bin 3564 -> 0 bytes .../declarative/toys/dial-example/dial-example.qml | 90 ---------------- .../declarative/toys/dial-example/dial.qmlproject | 16 --- .../declarative/toys/tic-tac-toe/tic-tac-toe.qml | 1 - examples/declarative/ui-components/README | 39 +++++++ .../ui-components/dialcontrol/content/Dial.qml | 83 +++++++++++++++ .../dialcontrol/content/background.png | Bin 0 -> 35876 bytes .../ui-components/dialcontrol/content/needle.png | Bin 0 -> 342 bytes .../dialcontrol/content/needle_shadow.png | Bin 0 -> 632 bytes .../ui-components/dialcontrol/content/overlay.png | Bin 0 -> 3564 bytes .../ui-components/dialcontrol/dial.qmlproject | 16 +++ .../ui-components/dialcontrol/dialcontrol.qml | 90 ++++++++++++++++ .../ui-components/flipable/flipable-example.qml | 55 ---------- .../ui-components/flipable/flipable.qml | 55 ++++++++++ .../declarative/ui-components/progressbar/main.qml | 73 +++++++++++++ .../ui-components/progressbar/progressbars.qml | 73 ------------- .../ui-components/scrollbar/display.qml | 94 ----------------- .../declarative/ui-components/scrollbar/main.qml | 94 +++++++++++++++++ .../declarative/ui-components/tabwidget/main.qml | 99 +++++++++++++++++ .../declarative/ui-components/tabwidget/tabs.qml | 99 ----------------- 69 files changed, 962 insertions(+), 557 deletions(-) create mode 100644 demos/qtdemo/MagicAnim.qml create mode 100644 demos/qtdemo/qmlShell.qml create mode 100644 doc/src/examples/qml-twitter.qdoc create mode 100644 doc/src/images/qml-clocks-example.png create mode 100644 doc/src/images/qml-corkboards-example.png create mode 100644 doc/src/images/qml-dialcontrol-example.png create mode 100644 doc/src/images/qml-dynamicscene-example.png create mode 100644 doc/src/images/qml-flickr-demo.png delete mode 100644 doc/src/images/qml-flickr-example.png create mode 100644 doc/src/images/qml-flipable-example.png create mode 100644 doc/src/images/qml-minehunt-demo.png delete mode 100644 doc/src/images/qml-minehunt-example.png create mode 100644 doc/src/images/qml-photoviewer-demo.png delete mode 100644 doc/src/images/qml-photoviewer-example.png create mode 100644 doc/src/images/qml-progressbar-example.png create mode 100644 doc/src/images/qml-rssnews-demo.png delete mode 100644 doc/src/images/qml-rssnews-example.png create mode 100644 doc/src/images/qml-samegame-demo.png delete mode 100644 doc/src/images/qml-samegame-example.png create mode 100644 doc/src/images/qml-searchbox-example.png create mode 100644 doc/src/images/qml-slideswitch-example.png create mode 100644 doc/src/images/qml-snake-demo.png delete mode 100644 doc/src/images/qml-snake-example.png create mode 100644 doc/src/images/qml-spinner-example.png create mode 100644 doc/src/images/qml-tabwidget-example.png create mode 100644 doc/src/images/qml-tic-tac-toe-example.png create mode 100644 doc/src/images/qml-tvtennis-example.png create mode 100644 doc/src/images/qml-twitter-demo.png delete mode 100644 examples/declarative/toys/dial-example/content/Dial.qml delete mode 100644 examples/declarative/toys/dial-example/content/background.png delete mode 100644 examples/declarative/toys/dial-example/content/needle.png delete mode 100644 examples/declarative/toys/dial-example/content/needle_shadow.png delete mode 100644 examples/declarative/toys/dial-example/content/overlay.png delete mode 100644 examples/declarative/toys/dial-example/dial-example.qml delete mode 100644 examples/declarative/toys/dial-example/dial.qmlproject create mode 100644 examples/declarative/ui-components/README create mode 100644 examples/declarative/ui-components/dialcontrol/content/Dial.qml create mode 100644 examples/declarative/ui-components/dialcontrol/content/background.png create mode 100644 examples/declarative/ui-components/dialcontrol/content/needle.png create mode 100644 examples/declarative/ui-components/dialcontrol/content/needle_shadow.png create mode 100644 examples/declarative/ui-components/dialcontrol/content/overlay.png create mode 100644 examples/declarative/ui-components/dialcontrol/dial.qmlproject create mode 100644 examples/declarative/ui-components/dialcontrol/dialcontrol.qml delete mode 100644 examples/declarative/ui-components/flipable/flipable-example.qml create mode 100644 examples/declarative/ui-components/flipable/flipable.qml create mode 100644 examples/declarative/ui-components/progressbar/main.qml delete mode 100644 examples/declarative/ui-components/progressbar/progressbars.qml delete mode 100644 examples/declarative/ui-components/scrollbar/display.qml create mode 100644 examples/declarative/ui-components/scrollbar/main.qml create mode 100644 examples/declarative/ui-components/tabwidget/main.qml delete mode 100644 examples/declarative/ui-components/tabwidget/tabs.qml diff --git a/demos/qtdemo/MagicAnim.qml b/demos/qtdemo/MagicAnim.qml new file mode 100644 index 0000000..f2ee806 --- /dev/null +++ b/demos/qtdemo/MagicAnim.qml @@ -0,0 +1,19 @@ +import Qt 4.7 + +//Emulates the in animation of the menu elements +SequentialAnimation{ + id: main; + property Item target + property int from: 0 + property int to: 100 + property int duration: 1000 + property string properties: "y" + PauseAnimation { duration: main.duration*0.20 } + NumberAnimation { target: main.target; properties: main.properties; from: main.from; to: main.to + 40; duration: main.duration*0.30 } + NumberAnimation { target: main.target; properties: main.properties; from: main.to + 40; to: main.to; duration: main.duration*0.10 } + NumberAnimation { target: main.target; properties: main.properties; from: main.to; to: main.to + 20; duration: main.duration*0.10 } + NumberAnimation { target: main.target; properties: main.properties; from: main.to + 20; to: main.to; duration: main.duration*0.10 } + NumberAnimation { target: main.target; properties: main.properties; from: main.to; to: main.to + 8; duration: main.duration*0.10 } + NumberAnimation { target: main.target; properties: main.properties; from: main.to + 8; to: main.to; duration: main.duration*0.10 } +} + diff --git a/demos/qtdemo/colors.cpp b/demos/qtdemo/colors.cpp index 802d77d..07cf162 100644 --- a/demos/qtdemo/colors.cpp +++ b/demos/qtdemo/colors.cpp @@ -81,6 +81,7 @@ bool Colors::noRescale = false; bool Colors::noAnimations = false; bool Colors::noBlending = false; bool Colors::noScreenSync = false; +bool Colors::noBlur = true; bool Colors::fullscreen = false; bool Colors::usePixmaps = false; bool Colors::useLoop = false; @@ -232,6 +233,8 @@ void Colors::parseArgs(int argc, char *argv[]) Colors::showFps = true; else if (s == "-no-blending") Colors::noBlending = true; + else if (s == "-use-blur") + Colors::noBlur = false; else if (s == "-no-sync") Colors::noScreenSync = true; else if (s.startsWith("-menu")) @@ -295,6 +298,7 @@ void Colors::setLowSettings() Colors::usePixmaps = true; Colors::noAnimations = true; Colors::noBlending = true; + Colors::noBlur = true; } void Colors::detectSystemResources() diff --git a/demos/qtdemo/colors.h b/demos/qtdemo/colors.h index 1e0b795..2d58058 100644 --- a/demos/qtdemo/colors.h +++ b/demos/qtdemo/colors.h @@ -91,6 +91,7 @@ public: static bool noAnimations; static bool noBlending; static bool noScreenSync; + static bool noBlur; static bool useLoop; static bool noWindowMask; static bool usePixmaps; diff --git a/demos/qtdemo/mainwindow.cpp b/demos/qtdemo/mainwindow.cpp index a679c4f..45ec9a6 100644 --- a/demos/qtdemo/mainwindow.cpp +++ b/demos/qtdemo/mainwindow.cpp @@ -270,8 +270,10 @@ void MainWindow::setupSceneItems() this->fpsLabel->setPos(Colors::stageStartX, 600 - QFontMetricsF(Colors::buttonFont()).height() - 5); } - this->companyLogo = new ImageItem(QImage(":/images/trolltech-logo.png"), 1000, 1000, this->scene, 0, true, 0.5f); - this->qtLogo = new ImageItem(QImage(":/images/qtlogo_small.png"), 1000, 1000, this->scene, 0, true, 0.5f); + this->mainSceneRoot = new QGraphicsWidget(); + this->scene->addItem(mainSceneRoot); + this->companyLogo = new ImageItem(QImage(":/images/trolltech-logo.png"), 1000, 1000, this->scene, mainSceneRoot, true, 0.5f); + this->qtLogo = new ImageItem(QImage(":/images/qtlogo_small.png"), 1000, 1000, this->scene, mainSceneRoot, true, 0.5f); this->companyLogo->setZValue(100); this->qtLogo->setZValue(100); this->pausedLabel = new DemoTextItem(QString("PAUSED"), Colors::buttonFont(), Qt::white, -1, this->scene, 0); @@ -308,6 +310,20 @@ void MainWindow::checkAdapt() qDebug() << "- benchmark adaption: removed ticker (fps < 30)"; } + //Note: Because we don't adapt later in the program, if blur makes FPS plummet then we won't catch it + if (!Colors::noBlur && MenuManager::instance()->mainSceneBlur && this->mainSceneRoot){ + Colors::noBlur = true; + this->mainSceneRoot->setGraphicsEffect(0); + MenuManager::instance()->mainSceneBlur = 0; + if(MenuManager::instance()->qmlRoot){ + MenuManager::instance()->qmlRoot->setGraphicsEffect(0); + MenuManager::instance()->declarativeEngine->rootContext()->setContextProperty("realBlur", 0); + } + MenuManager::instance()->qmlShadow = 0; + if (Colors::verbose) + qDebug() << "- benchmark adaption: removed blur (fps < 30)"; + } + if (this->fpsMedian < 20){ Colors::noAnimations = true; if (Colors::verbose) @@ -376,7 +392,7 @@ void MainWindow::keyPressEvent(QKeyEvent *event) this->loop = false; QApplication::quit(); } - else if (event->key() == Qt::Key_1){ + else if (event->key() == Qt::Key_F1){ QString s(""); s += "Rendering system: "; if (Colors::openGlRendering) @@ -415,6 +431,7 @@ void MainWindow::keyPressEvent(QKeyEvent *event) s += Colors::noScreenSync ? "no" : "yes"; QMessageBox::information(0, QString("Current configuration"), s); } + QGraphicsView::keyPressEvent(event); } void MainWindow::focusInEvent(QFocusEvent *) diff --git a/demos/qtdemo/mainwindow.h b/demos/qtdemo/mainwindow.h index edcc146..e613268 100644 --- a/demos/qtdemo/mainwindow.h +++ b/demos/qtdemo/mainwindow.h @@ -43,6 +43,7 @@ #define MAIN_WINDOW_H #include +#include #include class DemoTextItem; @@ -62,6 +63,8 @@ public: void start(); QGraphicsScene *scene; + QGraphicsWidget* mainSceneRoot; + bool loop; // FPS stuff: diff --git a/demos/qtdemo/menumanager.cpp b/demos/qtdemo/menumanager.cpp index 40af30f..9eb5664 100644 --- a/demos/qtdemo/menumanager.cpp +++ b/demos/qtdemo/menumanager.cpp @@ -59,6 +59,8 @@ MenuManager::MenuManager() this->tickerInAnim = 0; this->upButton = 0; this->downButton = 0; + this->mainSceneBlur = 0; + this->qmlShadow = 0; this->helpEngine = 0; this->score = new Score(); this->currentMenu = QLatin1String("[no menu visible]"); @@ -152,6 +154,9 @@ void MenuManager::itemSelected(int userCode, const QString &menuName) case LAUNCH: this->launchExample(this->currentInfo); break; + case LAUNCH_QML: + this->launchQmlExample(this->currentInfo); + break; case DOCUMENTATION: this->showDocInAssistant(this->currentInfo); break; @@ -169,6 +174,8 @@ void MenuManager::itemSelected(int userCode, const QString &menuName) this->score->queueMovie(this->currentInfo + " -out"); this->score->queueMovie(this->currentInfo + " -buttons -out", Score::NEW_ANIMATION_ONLY); this->score->queueMovie("back -out", Score::ONLY_IF_VISIBLE); + if(qmlRoot) + qmlRoot->setProperty("show", QVariant(false)); // book-keeping: this->currentMenuCode = ROOT; this->currentMenu = menuName + " -menu1"; @@ -191,6 +198,8 @@ void MenuManager::itemSelected(int userCode, const QString &menuName) this->score->queueMovie(this->currentMenu + " -out", Score::FROM_START, Score::LOCK_ITEMS); this->score->queueMovie(this->currentMenuButtons + " -out", Score::FROM_START, Score::LOCK_ITEMS); this->score->queueMovie(this->currentInfo + " -out"); + if(qmlRoot) + qmlRoot->setProperty("show", QVariant(false)); // book-keeping: this->currentMenuCode = MENU1; this->currentCategory = menuName; @@ -208,6 +217,8 @@ void MenuManager::itemSelected(int userCode, const QString &menuName) // out: this->score->queueMovie(this->currentInfo + " -out", Score::NEW_ANIMATION_ONLY); this->score->queueMovie(this->currentInfo + " -buttons -out", Score::NEW_ANIMATION_ONLY); + if(qmlRoot) + qmlRoot->setProperty("show", QVariant(false)); // book-keeping: this->currentMenuCode = MENU2; this->currentInfo = menuName; @@ -242,6 +253,8 @@ void MenuManager::itemSelected(int userCode, const QString &menuName) // out: this->score->queueMovie(this->currentInfo + " -out", Score::NEW_ANIMATION_ONLY); this->score->queueMovie(this->currentInfo + " -buttons -out", Score::NEW_ANIMATION_ONLY); + if(qmlRoot) + qmlRoot->setProperty("show", QVariant(false)); // book-keeping: this->currentMenuCode = MENU1; this->currentMenuButtons = this->currentCategory + " -buttons"; @@ -343,6 +356,35 @@ void MenuManager::launchExample(const QString &name) #endif } +void MenuManager::launchQmlExample(const QString &name) +{ + if(!qmlRoot){ + exampleError(QProcess::UnknownError); + return; + } + //resolveQmlFilename - refactor to separate fn? + QString dirName = this->info[name]["dirname"]; + QString category = this->info[name]["category"]; + QString fileName = this->info[name]["filename"]; + QDir dir; + if (category == "demos") + dir = QDir(QLibraryInfo::location(QLibraryInfo::DemosPath)); + else + dir = QDir(QLibraryInfo::location(QLibraryInfo::ExamplesPath)); + QFile file(dir.path() + "/" + dirName + "/" + fileName + "/" + fileName.split('/').last() + ".qml"); + if(!file.exists()){ + //try main.qml as well + file.setFileName(dir.path() + "/" + dirName + "/" + fileName + "/" + "main.qml"); + if(!file.exists()){ + exampleError(QProcess::UnknownError); + return; + } + } + + qmlRoot->setProperty("show", QVariant(true)); + qmlRoot->setProperty("source", file.fileName()); +} + void MenuManager::exampleFinished() { } @@ -359,6 +401,15 @@ void MenuManager::init(MainWindow *window) { this->window = window; + //Create blur for later use + // Note that blur is DISABLED by default because it's too slow, even on Desktop machines + if(!Colors::noBlur){ + this->mainSceneBlur = new QGraphicsBlurEffect(this); + this->mainSceneBlur->setEnabled(false); + this->mainSceneBlur->setBlurRadius(0); + this->window->mainSceneRoot->setGraphicsEffect(mainSceneBlur); + } + // Create div: this->createTicker(); this->createUpnDownButtons(); @@ -385,6 +436,37 @@ void MenuManager::init(MainWindow *window) level2MenuNode = level2MenuNode.nextSibling(); } + + // Create QML Loader + qmlRegisterType("Effects", 1, 0, "Blur"); + declarativeEngine = new QDeclarativeEngine(this); + MenuManager::instance()->declarativeEngine->rootContext()->setContextProperty("realBlur", this->mainSceneBlur); + QDeclarativeComponent component(declarativeEngine, QUrl("qrc:qml/qmlShell.qml"), this); + qmlRoot = 0; + if(component.isReady()) + qmlRoot = qobject_cast(component.create()); + else + qDebug() << component.status() << component.errorString(); + if(qmlRoot){ + qmlRoot->setHeight(this->window->scene->sceneRect().height()); + qmlRoot->setWidth(this->window->scene->sceneRect().width()); + qmlRoot->setZValue(1000);//Above other items + qmlRoot->setCursor(Qt::ArrowCursor); + window->scene->addItem(qmlRoot); + if(!Colors::noBlur){ + qmlShadow = new QGraphicsDropShadowEffect(this); + qmlShadow->setOffset(4); + qmlRoot->setGraphicsEffect(qmlShadow); + } + + //Note that QML adds key handling to the app. + window->viewport()->setFocusPolicy(Qt::NoFocus);//Correct keyboard focus handling + window->setFocusPolicy(Qt::StrongFocus); + window->scene->setStickyFocus(true); + window->setFocus(); + }else{ + qDebug() << "Error intializing QML subsystem, Declarative examples will not work"; + } } void MenuManager::readInfoAboutExample(const QDomElement &example) @@ -392,13 +474,14 @@ void MenuManager::readInfoAboutExample(const QDomElement &example) QString name = example.attribute("name"); if (this->info.contains(name)) qWarning() << "__WARNING: MenuManager::readInfoAboutExample: Demo/example with name" - << name << "appears twize in the xml-file!__"; + << name << "appears twice in the xml-file!__"; this->info[name]["filename"] = example.attribute("filename"); this->info[name]["category"] = example.parentNode().toElement().tagName(); this->info[name]["dirname"] = example.parentNode().toElement().attribute("dirname"); this->info[name]["changedirectory"] = example.attribute("changedirectory"); this->info[name]["image"] = example.attribute("image"); + this->info[name]["qml"] = example.attribute("qml"); } QString MenuManager::resolveDataDir(const QString &name) @@ -454,7 +537,7 @@ QString MenuManager::resolveDocUrl(const QString &name) QString fileName = this->info[name]["filename"]; if (category == "demos") - return this->helpRootUrl + "demos-" + fileName + ".html"; + return this->helpRootUrl + "demos-" + fileName.replace("/", "-") + ".html"; else return this->helpRootUrl + dirName.replace("/", "-") + "-" + fileName + ".html"; } @@ -474,6 +557,9 @@ QByteArray MenuManager::getImage(const QString &name) QString imageName = this->info[name]["image"]; QString category = this->info[name]["category"]; QString fileName = this->info[name]["filename"]; + bool qml = (this->info[name]["qml"] == QLatin1String("true")); + if(qml) + fileName = QLatin1String("qml-") + fileName.split('/').last(); if (imageName.isEmpty()){ if (category == "demos") @@ -493,7 +579,7 @@ void MenuManager::createRootMenu(const QDomElement &el) { QString name = el.attribute("name"); createMenu(el, MENU1); - createInfo(new MenuContentItem(el, this->window->scene, 0), name + " -info"); + createInfo(new MenuContentItem(el, this->window->scene, this->window->mainSceneRoot), name + " -info"); Movie *menuButtonsIn = this->score->insertMovie(name + " -buttons"); Movie *menuButtonsOut = this->score->insertMovie(name + " -buttons -out"); @@ -505,19 +591,21 @@ void MenuManager::createSubMenu(const QDomElement &el) { QString name = el.attribute("name"); createMenu(el, MENU2); - createInfo(new MenuContentItem(el, this->window->scene, 0), name + " -info"); + createInfo(new MenuContentItem(el, this->window->scene, this->window->mainSceneRoot), name + " -info"); } void MenuManager::createLeafMenu(const QDomElement &el) { QString name = el.attribute("name"); - createInfo(new ExampleContent(name, this->window->scene, 0), name); + createInfo(new ExampleContent(name, this->window->scene, this->window->mainSceneRoot), name); Movie *infoButtonsIn = this->score->insertMovie(name + " -buttons"); Movie *infoButtonsOut = this->score->insertMovie(name + " -buttons -out"); createLowRightLeafButton("Documentation", 600, DOCUMENTATION, infoButtonsIn, infoButtonsOut, 0); if (el.attribute("executable") != "false") createLowRightLeafButton("Launch", 405, LAUNCH, infoButtonsIn, infoButtonsOut, 0); + else if(el.attribute("qml") == "true") + createLowRightLeafButton("Display", 405, LAUNCH_QML, infoButtonsIn, infoButtonsOut, 0); } void MenuManager::createMenu(const QDomElement &category, BUTTON_TYPE type) @@ -546,7 +634,7 @@ void MenuManager::createMenu(const QDomElement &category, BUTTON_TYPE type) // create normal menu button QString label = currentNode.toElement().attribute("name"); - item = new TextButton(label, TextButton::LEFT, type, this->window->scene, 0); + item = new TextButton(label, TextButton::LEFT, type, this->window->scene, this->window->mainSceneRoot); currentNode = currentNode.nextSibling(); #ifndef QT_OPENGL_SUPPORT @@ -646,7 +734,7 @@ void MenuManager::createMenu(const QDomElement &category, BUTTON_TYPE type) void MenuManager::createLowLeftButton(const QString &label, BUTTON_TYPE type, Movie *movieIn, Movie *movieOut, Movie *movieShake, const QString &menuString) { - TextButton *button = new TextButton(label, TextButton::RIGHT, type, this->window->scene, 0, TextButton::PANEL); + TextButton *button = new TextButton(label, TextButton::RIGHT, type, this->window->scene, this->window->mainSceneRoot, TextButton::PANEL); if (!menuString.isNull()) button->setMenuString(menuString); button->setRecursiveVisible(false); @@ -688,7 +776,7 @@ void MenuManager::createLowLeftButton(const QString &label, BUTTON_TYPE type, void MenuManager::createLowRightButton(const QString &label, BUTTON_TYPE type, Movie *movieIn, Movie *movieOut, Movie * /*movieShake*/) { - TextButton *item = new TextButton(label, TextButton::RIGHT, type, this->window->scene, 0, TextButton::PANEL); + TextButton *item = new TextButton(label, TextButton::RIGHT, type, this->window->scene, this->window->mainSceneRoot, TextButton::PANEL); item->setRecursiveVisible(false); item->setZValue(10); @@ -715,7 +803,7 @@ void MenuManager::createLowRightButton(const QString &label, BUTTON_TYPE type, M void MenuManager::createLowRightLeafButton(const QString &label, int xOffset, BUTTON_TYPE type, Movie *movieIn, Movie *movieOut, Movie * /*movieShake*/) { - TextButton *item = new TextButton(label, TextButton::RIGHT, type, this->window->scene, 0, TextButton::PANEL); + TextButton *item = new TextButton(label, TextButton::RIGHT, type, this->window->scene, this->window->mainSceneRoot, TextButton::PANEL); item->setRecursiveVisible(false); item->setZValue(10); @@ -831,12 +919,12 @@ void MenuManager::createUpnDownButtons() float xOffset = 15.0f; float yOffset = 450.0f; - this->upButton = new TextButton("", TextButton::LEFT, MenuManager::UP, this->window->scene, 0, TextButton::UP); + this->upButton = new TextButton("", TextButton::LEFT, MenuManager::UP, this->window->scene, this->window->mainSceneRoot, TextButton::UP); this->upButton->prepare(); this->upButton->setPos(xOffset, yOffset); this->upButton->setState(TextButton::DISABLED); - this->downButton = new TextButton("", TextButton::LEFT, MenuManager::DOWN, this->window->scene, 0, TextButton::DOWN); + this->downButton = new TextButton("", TextButton::LEFT, MenuManager::DOWN, this->window->scene, this->window->mainSceneRoot, TextButton::DOWN); this->downButton->prepare(); this->downButton->setPos(xOffset + 10 + this->downButton->sceneBoundingRect().width(), yOffset); diff --git a/demos/qtdemo/menumanager.h b/demos/qtdemo/menumanager.h index ff98341..3524081 100644 --- a/demos/qtdemo/menumanager.h +++ b/demos/qtdemo/menumanager.h @@ -61,7 +61,7 @@ class MenuManager : public QObject Q_OBJECT public: - enum BUTTON_TYPE {ROOT, MENU1, MENU2, LAUNCH, DOCUMENTATION, QUIT, FULLSCREEN, UP, DOWN, BACK}; + enum BUTTON_TYPE {ROOT, MENU1, MENU2, LAUNCH, DOCUMENTATION, QUIT, FULLSCREEN, UP, DOWN, BACK, LAUNCH_QML}; // singleton pattern: static MenuManager *instance(); @@ -83,6 +83,11 @@ public: Score *score; int currentMenuCode; + QDeclarativeEngine* declarativeEngine; + QDeclarativeItem *qmlRoot; + QGraphicsBlurEffect *mainSceneBlur; + QGraphicsDropShadowEffect *qmlShadow; + private slots: void exampleFinished(); void exampleError(QProcess::ProcessError error); @@ -100,6 +105,7 @@ private: void readInfoAboutExample(const QDomElement &example); void showDocInAssistant(const QString &docFile); void launchExample(const QString &uniqueName); + void launchQmlExample(const QString &uniqueName); void createMenu(const QDomElement &category, BUTTON_TYPE type); void createLowLeftButton(const QString &label, BUTTON_TYPE type, @@ -128,6 +134,7 @@ private: TextButton *upButton; TextButton *downButton; + }; #endif // MENU_MANAGER_H diff --git a/demos/qtdemo/qmlShell.qml b/demos/qtdemo/qmlShell.qml new file mode 100644 index 0000000..8c20cf4 --- /dev/null +++ b/demos/qtdemo/qmlShell.qml @@ -0,0 +1,117 @@ +import Qt 4.7 +import Effects 1.0 + +Item { + id: main + property alias source: loader.source + property bool show: false + x: 0 + y: -500 //height and width set by program + opacity: 0 + property QtObject blurEffect: realBlur == null ? dummyBlur : realBlur //Is there a better way to lose those error messages? + Loader{//Automatic FocusScope + focus: true + clip: true + id: loader //source set by program + anchors.centerIn: parent + onStatusChanged: if(status == Loader.Ready) { + if(loader.item.width > 640) + loader.item.width = 640; + if(loader.item.height > 480) + loader.item.height = 480; + } + + } + Rectangle{ + z: -1 + anchors.fill: loader.status == Loader.Ready ? loader : errorTxt + anchors.margins: -10 + radius: 12 + smooth: true + gradient: Gradient{ + GradientStop{ position: 0.0; color: "#14FFFFFF" } + GradientStop{ position: 1.0; color: "#5AFFFFFF" } + } + MouseArea{ + anchors.fill: parent + onClicked: loader.focus=true;/* and don't propogate to the 'exit' area*/ + } + + } + + MouseArea{ + z: -2 + hoverEnabled: true //To steal from the buttons + anchors.fill: parent + onClicked: main.show=false; + } + + Text{ + id: errorTxt + anchors.centerIn: parent + color: 'white' + smooth: true + visible: loader.status == Loader.Error + textFormat: Text.RichText //includes link for bugreport + //Note that if loader is Error, it is because the file was found but there was an error creating the component + //This means either we have a bug in our demos, or the required modules (which ship with Qt) did not deploy correctly + text: 'The example has failed to load. This is a bug!
    ' + +'Report it at http://bugreports.qt.nokia.com'; + onLinkActivated: Qt.openUrlExternally(link); + } + + + states: [ + State { + name: "show" + when: show == true + PropertyChanges { + target: main + opacity: 1 + y: 0 + } + PropertyChanges { + target: blurEffect + enabled: true + blurRadius: 8 + blurHints: Blur.AnimationHint | Blur.PerformanceHint + } + } + ] + MagicAnim{ id: magicAnim; target: main; from: -500; to: 0 } + transitions: [ + Transition { from: ""; to: "show" + SequentialAnimation{ + ScriptAction{ script: magicAnim.start() } + NumberAnimation{ properties: "opacity,blurRadius"; easing.type: Easing.OutCubic; duration: 1000} + PropertyAnimation{ target: main; property: "y"} + } + + }, + Transition { from: "show"; to: "" //Addtionally, unload the item + SequentialAnimation{ + NumberAnimation{ properties: "y,opacity,blurRadius";duration: 500 } + ScriptAction{ script: loader.source = ''; } + } + /*Attempt to copy the exeunt animation. Looks bad + SequentialAnimation{ + ParallelAnimation{ + NumberAnimation{ properties: "opacity,blurRadius"; easing.type: Easing.InCubic; duration: 1000 } + SequentialAnimation{ + NumberAnimation{ target: main; property: 'y'; to: 3.2*height/5; duration: 500} + ParallelAnimation{ + NumberAnimation{ target: main; property: 'y'; to: 3.0*height/5; duration: 100} + NumberAnimation{ target: main; property: 'x'; to: 3.0*width/5; duration: 100} + } + NumberAnimation{ target: main; property: 'x'; to: 700; duration: 400} + } + } + ScriptAction{ script: loader.source = ''; } + PropertyAction{ properties: "x,y";} + } + */ + } + ] + Item{ Blur{id: dummyBlur } } + +} diff --git a/demos/qtdemo/qtdemo.pro b/demos/qtdemo/qtdemo.pro index 2a776ac..5e64e1c 100644 --- a/demos/qtdemo/qtdemo.pro +++ b/demos/qtdemo/qtdemo.pro @@ -6,7 +6,7 @@ DESTDIR = $$DEMO_DESTDIR/bin INSTALLS += target sources -QT += xml network +QT += xml network declarative contains(QT_CONFIG, opengl) { DEFINES += QT_OPENGL_SUPPORT @@ -74,3 +74,6 @@ target.path = $$[QT_INSTALL_BINS] sources.files = $$SOURCES $$HEADERS $$FORMS $$RESOURCES qtdemo.pro images xml *.ico *.icns *.rc *.plist sources.path = $$[QT_INSTALL_DEMOS]/qtdemo +OTHER_FILES += \ + qmlShell.qml \ + MagicAnim.qml diff --git a/demos/qtdemo/qtdemo.qrc b/demos/qtdemo/qtdemo.qrc index b30dd58..7682ab5 100644 --- a/demos/qtdemo/qtdemo.qrc +++ b/demos/qtdemo/qtdemo.qrc @@ -1,8 +1,12 @@ - - - xml/examples.xml - images/qtlogo_small.png - images/trolltech-logo.png - images/demobg.png - + + + xml/examples.xml + images/qtlogo_small.png + images/trolltech-logo.png + images/demobg.png + + + qmlShell.qml + MagicAnim.qml + diff --git a/demos/qtdemo/xml/examples.xml b/demos/qtdemo/xml/examples.xml index 9121861..0ab048e 100644 --- a/demos/qtdemo/xml/examples.xml +++ b/demos/qtdemo/xml/examples.xml @@ -1,25 +1,32 @@ + + - - - - - - + + + + + + + + + + + @@ -35,6 +42,13 @@ + + + + + + + @@ -116,6 +130,16 @@ + + + + + + + + + + diff --git a/doc/src/examples/qml-examples.qdoc b/doc/src/examples/qml-examples.qdoc index c2237d6..56ba1c7 100644 --- a/doc/src/examples/qml-examples.qdoc +++ b/doc/src/examples/qml-examples.qdoc @@ -271,6 +271,8 @@ This example displays a set of clocks with different times for different cities. Each clock is created by combining \l Image elements with \l Rotation transforms and \l SpringFollow animations. + + \image qml-clocks-example.png */ /*! @@ -280,14 +282,8 @@ This example presents a flickable set of interactive corkboards. It is created through a combination of elements like \l ListModel, \l Repeater and \l TextEdit together with rotation and scaling transforms, animation and mouse interaction. -*/ - -/*! - \title Toys: Dial - \example declarative/toys/dial - This example presents an interactive speedometer-type dial by combining - \l Image elements with \l Rotation transforms and \l SpringFollow animations. + \image qml-corkboards-example.png */ /*! @@ -297,6 +293,8 @@ This example presents an interactive drag-and-drop scene. It demonstrates how to use QML's \l{Dynamic Object Creation} support to dynamically create and destroy objects. + + \image qml-dynamicscene-example.png */ /*! @@ -304,6 +302,8 @@ \example declarative/toys/tic-tac-toe This example presents a simple implementation of Tic Tac Toe. + + \image qml-tic-tac-toe-example.png */ /*! @@ -312,6 +312,8 @@ This example shows how to use animation components such as \l SpringFollow, \l SequentialAnimation and \l PropertyAction to create a game of TV tennis. + + \image qml-tvtennis-example.png */ /*! @@ -329,10 +331,23 @@ */ /*! + \title UI Components: Dial + \example declarative/ui-components/dialcontrol + + This example presents an interactive speedometer-type dial by combining + \l Image elements with \l Rotation transforms and \l SpringFollow animations. + + \image qml-dialcontrol-example.png +*/ + + +/*! \title UI Components: Flipable \example declarative/ui-components/flipable This example shows how to use the Flipable element. + + \image qml-flipable-example.png */ /*! @@ -340,6 +355,8 @@ \example declarative/ui-components/progressbar This example shows how to create a progress bar. + + \image qml-progressbar-example.png */ /*! @@ -349,6 +366,8 @@ This example shows how to create scroll bars for a Flickable element using the \l {Flickable::visibleArea.xPosition}{Flickable::visibleArea} properties. + + \image qml-scrollbar-example.png */ /*! @@ -356,6 +375,8 @@ \example declarative/ui-components/searchbox This example shows how to create a search box. + + \image qml-searchbox-example.png */ /*! @@ -363,6 +384,8 @@ \example declarative/ui-components/slideswitch This example shows how to create a slide switch. + + \image qml-slideswitch-example.png */ /*! @@ -370,6 +393,8 @@ \example declarative/ui-components/spinner This example shows how to create a spinner-type component. + + \image qml-spinner-example.png */ /*! @@ -377,6 +402,8 @@ \example declarative/ui-components/tabwidget This example shows how to create a tab widget. + + \image qml-tabwidget-example.png */ /*! diff --git a/doc/src/examples/qml-flickr.qdoc b/doc/src/examples/qml-flickr.qdoc index ebf3250..43fcf1f 100644 --- a/doc/src/examples/qml-flickr.qdoc +++ b/doc/src/examples/qml-flickr.qdoc @@ -45,5 +45,5 @@ This demo shows how to write a mobile Flickr browser application in QML. - \image qml-flickr-example.png + \image qml-flickr-demo.png */ diff --git a/doc/src/examples/qml-minehunt.qdoc b/doc/src/examples/qml-minehunt.qdoc index 773f216..b2c662d 100644 --- a/doc/src/examples/qml-minehunt.qdoc +++ b/doc/src/examples/qml-minehunt.qdoc @@ -43,7 +43,8 @@ \title Minehunt \example demos/declarative/minehunt - This demo shows how to create a simple Minehunt game with QML and C++. + This demo shows how to create a simple Minehunt game, using QML for the + UI and a C++ plugin for the game logic. - \image qml-minehunt-example.png + \image qml-minehunt-demo.png */ diff --git a/doc/src/examples/qml-photoviewer.qdoc b/doc/src/examples/qml-photoviewer.qdoc index d1c3da2..d2114b9 100644 --- a/doc/src/examples/qml-photoviewer.qdoc +++ b/doc/src/examples/qml-photoviewer.qdoc @@ -45,5 +45,5 @@ This demo shows how to write a Flickr photo viewer application in QML. - \image qml-photoviewer-example.png + \image qml-photoviewer-demo.png */ diff --git a/doc/src/examples/qml-rssnews.qdoc b/doc/src/examples/qml-rssnews.qdoc index 0e7bdef..801efd9 100644 --- a/doc/src/examples/qml-rssnews.qdoc +++ b/doc/src/examples/qml-rssnews.qdoc @@ -45,5 +45,5 @@ This demo shows how to write a RSS news reader in QML. - \image qml-rssnews-example.png + \image qml-rssnews-demo.png */ diff --git a/doc/src/examples/qml-samegame.qdoc b/doc/src/examples/qml-samegame.qdoc index d9a9c7c..5b78b0c 100644 --- a/doc/src/examples/qml-samegame.qdoc +++ b/doc/src/examples/qml-samegame.qdoc @@ -43,7 +43,8 @@ \title Same Game \example demos/declarative/samegame - This demo shows how to write a Same Game in QML. + This demo shows how to write a 'Same Game' game in QML, using Javascript + for all the game logic. - \image qml-samegame-example.png + \image qml-samegame-demo.png */ diff --git a/doc/src/examples/qml-snake.qdoc b/doc/src/examples/qml-snake.qdoc index 373ca13..3125f2d 100644 --- a/doc/src/examples/qml-snake.qdoc +++ b/doc/src/examples/qml-snake.qdoc @@ -43,7 +43,8 @@ \title Snake \example demos/declarative/snake - This demo shows how to write a Snake game in QML. + This demo shows how to write a Snake game in QML, controlled by the + keyboard as well as the mouse. - \image qml-snake-example.png + \image qml-snake-demo.png */ diff --git a/doc/src/examples/qml-twitter.qdoc b/doc/src/examples/qml-twitter.qdoc new file mode 100644 index 0000000..0e66360 --- /dev/null +++ b/doc/src/examples/qml-twitter.qdoc @@ -0,0 +1,50 @@ +/**************************************************************************** +** +** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the documentation of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** No Commercial Usage +** This file contains pre-release code and may not be distributed. +** You may use this file in accordance with the terms and conditions +** contained in the Technology Preview License Agreement accompanying +** this package. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Nokia gives you certain additional +** rights. These rights are described in the Nokia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +/*! + \title Twitter Mobile + \example demos/declarative/twitter + + This demo shows how to write a mobile Twitter client in QML. Use it to + tweet us(@qtbynokia) how much you like our demos! + + \image qml-twitter-demo.png +*/ diff --git a/doc/src/images/qml-clocks-example.png b/doc/src/images/qml-clocks-example.png new file mode 100644 index 0000000..1b352b5 Binary files /dev/null and b/doc/src/images/qml-clocks-example.png differ diff --git a/doc/src/images/qml-corkboards-example.png b/doc/src/images/qml-corkboards-example.png new file mode 100644 index 0000000..8acffa7 Binary files /dev/null and b/doc/src/images/qml-corkboards-example.png differ diff --git a/doc/src/images/qml-dialcontrol-example.png b/doc/src/images/qml-dialcontrol-example.png new file mode 100644 index 0000000..74cd645 Binary files /dev/null and b/doc/src/images/qml-dialcontrol-example.png differ diff --git a/doc/src/images/qml-dynamicscene-example.png b/doc/src/images/qml-dynamicscene-example.png new file mode 100644 index 0000000..1f725d1 Binary files /dev/null and b/doc/src/images/qml-dynamicscene-example.png differ diff --git a/doc/src/images/qml-flickr-demo.png b/doc/src/images/qml-flickr-demo.png new file mode 100644 index 0000000..71ea567 Binary files /dev/null and b/doc/src/images/qml-flickr-demo.png differ diff --git a/doc/src/images/qml-flickr-example.png b/doc/src/images/qml-flickr-example.png deleted file mode 100644 index 71ea567..0000000 Binary files a/doc/src/images/qml-flickr-example.png and /dev/null differ diff --git a/doc/src/images/qml-flipable-example.png b/doc/src/images/qml-flipable-example.png new file mode 100644 index 0000000..dd68a66 Binary files /dev/null and b/doc/src/images/qml-flipable-example.png differ diff --git a/doc/src/images/qml-minehunt-demo.png b/doc/src/images/qml-minehunt-demo.png new file mode 100644 index 0000000..3b69569 Binary files /dev/null and b/doc/src/images/qml-minehunt-demo.png differ diff --git a/doc/src/images/qml-minehunt-example.png b/doc/src/images/qml-minehunt-example.png deleted file mode 100644 index 3b69569..0000000 Binary files a/doc/src/images/qml-minehunt-example.png and /dev/null differ diff --git a/doc/src/images/qml-photoviewer-demo.png b/doc/src/images/qml-photoviewer-demo.png new file mode 100644 index 0000000..be6f1bf Binary files /dev/null and b/doc/src/images/qml-photoviewer-demo.png differ diff --git a/doc/src/images/qml-photoviewer-example.png b/doc/src/images/qml-photoviewer-example.png deleted file mode 100644 index be6f1bf..0000000 Binary files a/doc/src/images/qml-photoviewer-example.png and /dev/null differ diff --git a/doc/src/images/qml-progressbar-example.png b/doc/src/images/qml-progressbar-example.png new file mode 100644 index 0000000..3ddd6c6 Binary files /dev/null and b/doc/src/images/qml-progressbar-example.png differ diff --git a/doc/src/images/qml-rssnews-demo.png b/doc/src/images/qml-rssnews-demo.png new file mode 100644 index 0000000..948ef4d Binary files /dev/null and b/doc/src/images/qml-rssnews-demo.png differ diff --git a/doc/src/images/qml-rssnews-example.png b/doc/src/images/qml-rssnews-example.png deleted file mode 100644 index 948ef4d..0000000 Binary files a/doc/src/images/qml-rssnews-example.png and /dev/null differ diff --git a/doc/src/images/qml-samegame-demo.png b/doc/src/images/qml-samegame-demo.png new file mode 100644 index 0000000..c17b4e0 Binary files /dev/null and b/doc/src/images/qml-samegame-demo.png differ diff --git a/doc/src/images/qml-samegame-example.png b/doc/src/images/qml-samegame-example.png deleted file mode 100644 index c17b4e0..0000000 Binary files a/doc/src/images/qml-samegame-example.png and /dev/null differ diff --git a/doc/src/images/qml-searchbox-example.png b/doc/src/images/qml-searchbox-example.png new file mode 100644 index 0000000..97d12bb Binary files /dev/null and b/doc/src/images/qml-searchbox-example.png differ diff --git a/doc/src/images/qml-slideswitch-example.png b/doc/src/images/qml-slideswitch-example.png new file mode 100644 index 0000000..17cb3eb Binary files /dev/null and b/doc/src/images/qml-slideswitch-example.png differ diff --git a/doc/src/images/qml-snake-demo.png b/doc/src/images/qml-snake-demo.png new file mode 100644 index 0000000..d3c077d Binary files /dev/null and b/doc/src/images/qml-snake-demo.png differ diff --git a/doc/src/images/qml-snake-example.png b/doc/src/images/qml-snake-example.png deleted file mode 100644 index d3c077d..0000000 Binary files a/doc/src/images/qml-snake-example.png and /dev/null differ diff --git a/doc/src/images/qml-spinner-example.png b/doc/src/images/qml-spinner-example.png new file mode 100644 index 0000000..ed381f8 Binary files /dev/null and b/doc/src/images/qml-spinner-example.png differ diff --git a/doc/src/images/qml-tabwidget-example.png b/doc/src/images/qml-tabwidget-example.png new file mode 100644 index 0000000..05887f3 Binary files /dev/null and b/doc/src/images/qml-tabwidget-example.png differ diff --git a/doc/src/images/qml-tic-tac-toe-example.png b/doc/src/images/qml-tic-tac-toe-example.png new file mode 100644 index 0000000..5a5cc82 Binary files /dev/null and b/doc/src/images/qml-tic-tac-toe-example.png differ diff --git a/doc/src/images/qml-tvtennis-example.png b/doc/src/images/qml-tvtennis-example.png new file mode 100644 index 0000000..ac2b527 Binary files /dev/null and b/doc/src/images/qml-tvtennis-example.png differ diff --git a/doc/src/images/qml-twitter-demo.png b/doc/src/images/qml-twitter-demo.png new file mode 100644 index 0000000..63d6486 Binary files /dev/null and b/doc/src/images/qml-twitter-demo.png differ diff --git a/examples/declarative/toys/README b/examples/declarative/toys/README index 7fd7eb0..ff4d024 100644 --- a/examples/declarative/toys/README +++ b/examples/declarative/toys/README @@ -1,4 +1,4 @@ -These pure QML examples create complete components to demonstrate +These pure QML examples demonstrate some of what can be easily done using just a few QML files. The example launcher provided with Qt can be used to explore each of the diff --git a/examples/declarative/toys/dial-example/content/Dial.qml b/examples/declarative/toys/dial-example/content/Dial.qml deleted file mode 100644 index 2b421bf..0000000 --- a/examples/declarative/toys/dial-example/content/Dial.qml +++ /dev/null @@ -1,83 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). -** All rights reserved. -** Contact: Nokia Corporation (qt-info@nokia.com) -** -** This file is part of the QtDeclarative module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:BSD$ -** You may use this file under the terms of the BSD license as follows: -** -** "Redistribution and use in source and binary forms, with or without -** modification, are permitted provided that the following conditions are -** met: -** * Redistributions of source code must retain the above copyright -** notice, this list of conditions and the following disclaimer. -** * Redistributions in binary form must reproduce the above copyright -** notice, this list of conditions and the following disclaimer in -** the documentation and/or other materials provided with the -** distribution. -** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor -** the names of its contributors may be used to endorse or promote -** products derived from this software without specific prior written -** permission. -** -** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import Qt 4.7 - -Item { - id: root - property real value : 0 - - width: 210; height: 210 - - Image { source: "background.png" } - -//! [needle_shadow] - Image { - x: 93 - y: 35 - source: "needle_shadow.png" - transform: Rotation { - origin.x: 11; origin.y: 67 - angle: needleRotation.angle - } - } -//! [needle_shadow] -//! [needle] - Image { - id: needle - x: 95; y: 33 - smooth: true - source: "needle.png" - transform: Rotation { - id: needleRotation - origin.x: 7; origin.y: 65 - angle: -130 - SpringFollow on angle { - spring: 1.4 - damping: .15 - to: Math.min(Math.max(-130, root.value*2.6 - 130), 133) - } - } - } -//! [needle] -//! [overlay] - Image { x: 21; y: 18; source: "overlay.png" } -//! [overlay] -} diff --git a/examples/declarative/toys/dial-example/content/background.png b/examples/declarative/toys/dial-example/content/background.png deleted file mode 100644 index 75d555d..0000000 Binary files a/examples/declarative/toys/dial-example/content/background.png and /dev/null differ diff --git a/examples/declarative/toys/dial-example/content/needle.png b/examples/declarative/toys/dial-example/content/needle.png deleted file mode 100644 index 2d19f75..0000000 Binary files a/examples/declarative/toys/dial-example/content/needle.png and /dev/null differ diff --git a/examples/declarative/toys/dial-example/content/needle_shadow.png b/examples/declarative/toys/dial-example/content/needle_shadow.png deleted file mode 100644 index 8d8a928..0000000 Binary files a/examples/declarative/toys/dial-example/content/needle_shadow.png and /dev/null differ diff --git a/examples/declarative/toys/dial-example/content/overlay.png b/examples/declarative/toys/dial-example/content/overlay.png deleted file mode 100644 index 3860a7b..0000000 Binary files a/examples/declarative/toys/dial-example/content/overlay.png and /dev/null differ diff --git a/examples/declarative/toys/dial-example/dial-example.qml b/examples/declarative/toys/dial-example/dial-example.qml deleted file mode 100644 index 95df68c..0000000 --- a/examples/declarative/toys/dial-example/dial-example.qml +++ /dev/null @@ -1,90 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). -** All rights reserved. -** Contact: Nokia Corporation (qt-info@nokia.com) -** -** This file is part of the QtDeclarative module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:BSD$ -** You may use this file under the terms of the BSD license as follows: -** -** "Redistribution and use in source and binary forms, with or without -** modification, are permitted provided that the following conditions are -** met: -** * Redistributions of source code must retain the above copyright -** notice, this list of conditions and the following disclaimer. -** * Redistributions in binary form must reproduce the above copyright -** notice, this list of conditions and the following disclaimer in -** the documentation and/or other materials provided with the -** distribution. -** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor -** the names of its contributors may be used to endorse or promote -** products derived from this software without specific prior written -** permission. -** -** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import Qt 4.7 -import "content" - -//! [0] -Rectangle { - color: "#545454" - width: 300; height: 300 - - // Dial with a slider to adjust it - Dial { - id: dial - anchors.centerIn: parent - value: slider.x * 100 / (container.width - 34) - } - - Rectangle { - id: container - anchors { bottom: parent.bottom; left: parent.left - right: parent.right; leftMargin: 20; rightMargin: 20 - bottomMargin: 10 - } - height: 16 - - radius: 8 - opacity: 0.7 - smooth: true - gradient: Gradient { - GradientStop { position: 0.0; color: "gray" } - GradientStop { position: 1.0; color: "white" } - } - - Rectangle { - id: slider - x: 1; y: 1; width: 30; height: 14 - radius: 6 - smooth: true - gradient: Gradient { - GradientStop { position: 0.0; color: "#424242" } - GradientStop { position: 1.0; color: "black" } - } - - MouseArea { - anchors.fill: parent - drag.target: parent; drag.axis: Drag.XAxis - drag.minimumX: 2; drag.maximumX: container.width - 32 - } - } - } -} -//! [0] \ No newline at end of file diff --git a/examples/declarative/toys/dial-example/dial.qmlproject b/examples/declarative/toys/dial-example/dial.qmlproject deleted file mode 100644 index d4909f8..0000000 --- a/examples/declarative/toys/dial-example/dial.qmlproject +++ /dev/null @@ -1,16 +0,0 @@ -import QmlProject 1.0 - -Project { - /* Include .qml, .js, and image files from current directory and subdirectories */ - QmlFiles { - directory: "." - } - JavaScriptFiles { - directory: "." - } - ImageFiles { - directory: "." - } - /* List of plugin directories passed to QML runtime */ - // importPaths: [ " ../exampleplugin " ] -} diff --git a/examples/declarative/toys/tic-tac-toe/tic-tac-toe.qml b/examples/declarative/toys/tic-tac-toe/tic-tac-toe.qml index 707add7..76a6a3b 100644 --- a/examples/declarative/toys/tic-tac-toe/tic-tac-toe.qml +++ b/examples/declarative/toys/tic-tac-toe/tic-tac-toe.qml @@ -50,7 +50,6 @@ Item { width: 440 height: 480 - anchors.fill: parent Image { id: boardimage diff --git a/examples/declarative/ui-components/README b/examples/declarative/ui-components/README new file mode 100644 index 0000000..7eecec1 --- /dev/null +++ b/examples/declarative/ui-components/README @@ -0,0 +1,39 @@ +With Qt Declarative, it is easy to implement the UI components that you need +in exactly the way that you want. These examples demonstrate this by creating +a selection of user interface components where the look and feel has been +completely defined in a QML file. + +The example launcher provided with Qt can be used to explore each of the +examples in this directory. But most can also be viewed directly with the +QML viewer utility, without requiring compilation. + +Documentation for these examples can be found via the Tutorials and Examples +link in the main Qt documentation. + + +Finding the Qt Examples and Demos launcher +========================================== + +On Windows: + +The launcher can be accessed via the Windows Start menu. Select the menu +entry entitled "Qt Examples and Demos" entry in the submenu containing +the Qt tools. + +On Mac OS X: + +For the binary distribution, the qtdemo executable is installed in the +/Developer/Applications/Qt directory. For the source distribution, it is +installed alongside the other Qt tools on the path specified when Qt is +configured. + +On Unix/Linux: + +The qtdemo executable is installed alongside the other Qt tools on the path +specified when Qt is configured. + +On all platforms: + +The source code for the launcher can be found in the demos/qtdemo directory +in the Qt package. This example is built at the same time as the Qt libraries, +tools, examples, and demonstrations. diff --git a/examples/declarative/ui-components/dialcontrol/content/Dial.qml b/examples/declarative/ui-components/dialcontrol/content/Dial.qml new file mode 100644 index 0000000..2b421bf --- /dev/null +++ b/examples/declarative/ui-components/dialcontrol/content/Dial.qml @@ -0,0 +1,83 @@ +/**************************************************************************** +** +** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the QtDeclarative module of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:BSD$ +** You may use this file under the terms of the BSD license as follows: +** +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor +** the names of its contributors may be used to endorse or promote +** products derived from this software without specific prior written +** permission. +** +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import Qt 4.7 + +Item { + id: root + property real value : 0 + + width: 210; height: 210 + + Image { source: "background.png" } + +//! [needle_shadow] + Image { + x: 93 + y: 35 + source: "needle_shadow.png" + transform: Rotation { + origin.x: 11; origin.y: 67 + angle: needleRotation.angle + } + } +//! [needle_shadow] +//! [needle] + Image { + id: needle + x: 95; y: 33 + smooth: true + source: "needle.png" + transform: Rotation { + id: needleRotation + origin.x: 7; origin.y: 65 + angle: -130 + SpringFollow on angle { + spring: 1.4 + damping: .15 + to: Math.min(Math.max(-130, root.value*2.6 - 130), 133) + } + } + } +//! [needle] +//! [overlay] + Image { x: 21; y: 18; source: "overlay.png" } +//! [overlay] +} diff --git a/examples/declarative/ui-components/dialcontrol/content/background.png b/examples/declarative/ui-components/dialcontrol/content/background.png new file mode 100644 index 0000000..75d555d Binary files /dev/null and b/examples/declarative/ui-components/dialcontrol/content/background.png differ diff --git a/examples/declarative/ui-components/dialcontrol/content/needle.png b/examples/declarative/ui-components/dialcontrol/content/needle.png new file mode 100644 index 0000000..2d19f75 Binary files /dev/null and b/examples/declarative/ui-components/dialcontrol/content/needle.png differ diff --git a/examples/declarative/ui-components/dialcontrol/content/needle_shadow.png b/examples/declarative/ui-components/dialcontrol/content/needle_shadow.png new file mode 100644 index 0000000..8d8a928 Binary files /dev/null and b/examples/declarative/ui-components/dialcontrol/content/needle_shadow.png differ diff --git a/examples/declarative/ui-components/dialcontrol/content/overlay.png b/examples/declarative/ui-components/dialcontrol/content/overlay.png new file mode 100644 index 0000000..3860a7b Binary files /dev/null and b/examples/declarative/ui-components/dialcontrol/content/overlay.png differ diff --git a/examples/declarative/ui-components/dialcontrol/dial.qmlproject b/examples/declarative/ui-components/dialcontrol/dial.qmlproject new file mode 100644 index 0000000..d4909f8 --- /dev/null +++ b/examples/declarative/ui-components/dialcontrol/dial.qmlproject @@ -0,0 +1,16 @@ +import QmlProject 1.0 + +Project { + /* Include .qml, .js, and image files from current directory and subdirectories */ + QmlFiles { + directory: "." + } + JavaScriptFiles { + directory: "." + } + ImageFiles { + directory: "." + } + /* List of plugin directories passed to QML runtime */ + // importPaths: [ " ../exampleplugin " ] +} diff --git a/examples/declarative/ui-components/dialcontrol/dialcontrol.qml b/examples/declarative/ui-components/dialcontrol/dialcontrol.qml new file mode 100644 index 0000000..95df68c --- /dev/null +++ b/examples/declarative/ui-components/dialcontrol/dialcontrol.qml @@ -0,0 +1,90 @@ +/**************************************************************************** +** +** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the QtDeclarative module of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:BSD$ +** You may use this file under the terms of the BSD license as follows: +** +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor +** the names of its contributors may be used to endorse or promote +** products derived from this software without specific prior written +** permission. +** +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import Qt 4.7 +import "content" + +//! [0] +Rectangle { + color: "#545454" + width: 300; height: 300 + + // Dial with a slider to adjust it + Dial { + id: dial + anchors.centerIn: parent + value: slider.x * 100 / (container.width - 34) + } + + Rectangle { + id: container + anchors { bottom: parent.bottom; left: parent.left + right: parent.right; leftMargin: 20; rightMargin: 20 + bottomMargin: 10 + } + height: 16 + + radius: 8 + opacity: 0.7 + smooth: true + gradient: Gradient { + GradientStop { position: 0.0; color: "gray" } + GradientStop { position: 1.0; color: "white" } + } + + Rectangle { + id: slider + x: 1; y: 1; width: 30; height: 14 + radius: 6 + smooth: true + gradient: Gradient { + GradientStop { position: 0.0; color: "#424242" } + GradientStop { position: 1.0; color: "black" } + } + + MouseArea { + anchors.fill: parent + drag.target: parent; drag.axis: Drag.XAxis + drag.minimumX: 2; drag.maximumX: container.width - 32 + } + } + } +} +//! [0] \ No newline at end of file diff --git a/examples/declarative/ui-components/flipable/flipable-example.qml b/examples/declarative/ui-components/flipable/flipable-example.qml deleted file mode 100644 index 479e35b..0000000 --- a/examples/declarative/ui-components/flipable/flipable-example.qml +++ /dev/null @@ -1,55 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). -** All rights reserved. -** Contact: Nokia Corporation (qt-info@nokia.com) -** -** This file is part of the QtDeclarative module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:BSD$ -** You may use this file under the terms of the BSD license as follows: -** -** "Redistribution and use in source and binary forms, with or without -** modification, are permitted provided that the following conditions are -** met: -** * Redistributions of source code must retain the above copyright -** notice, this list of conditions and the following disclaimer. -** * Redistributions in binary form must reproduce the above copyright -** notice, this list of conditions and the following disclaimer in -** the documentation and/or other materials provided with the -** distribution. -** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor -** the names of its contributors may be used to endorse or promote -** products derived from this software without specific prior written -** permission. -** -** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import Qt 4.7 -import "content" - -Rectangle { - id: window - - width: 480; height: 320 - color: "darkgreen" - - Row { - anchors.centerIn: parent; spacing: 30 - Card { image: "content/9_club.png"; angle: 180; yAxis: 1 } - Card { image: "content/5_heart.png"; angle: 540; xAxis: 1 } - } -} diff --git a/examples/declarative/ui-components/flipable/flipable.qml b/examples/declarative/ui-components/flipable/flipable.qml new file mode 100644 index 0000000..479e35b --- /dev/null +++ b/examples/declarative/ui-components/flipable/flipable.qml @@ -0,0 +1,55 @@ +/**************************************************************************** +** +** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the QtDeclarative module of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:BSD$ +** You may use this file under the terms of the BSD license as follows: +** +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor +** the names of its contributors may be used to endorse or promote +** products derived from this software without specific prior written +** permission. +** +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import Qt 4.7 +import "content" + +Rectangle { + id: window + + width: 480; height: 320 + color: "darkgreen" + + Row { + anchors.centerIn: parent; spacing: 30 + Card { image: "content/9_club.png"; angle: 180; yAxis: 1 } + Card { image: "content/5_heart.png"; angle: 540; xAxis: 1 } + } +} diff --git a/examples/declarative/ui-components/progressbar/main.qml b/examples/declarative/ui-components/progressbar/main.qml new file mode 100644 index 0000000..22f8dbd --- /dev/null +++ b/examples/declarative/ui-components/progressbar/main.qml @@ -0,0 +1,73 @@ +/**************************************************************************** +** +** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the QtDeclarative module of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:BSD$ +** You may use this file under the terms of the BSD license as follows: +** +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor +** the names of its contributors may be used to endorse or promote +** products derived from this software without specific prior written +** permission. +** +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import Qt 4.7 +import "content" + +Rectangle { + id: main + + width: 600; height: 405 + color: "#edecec" + + Flickable { + anchors.fill: parent + contentHeight: column.height + 20 + + Column { + id: column + x: 10; y: 10 + spacing: 10 + + Repeater { + model: 25 + + ProgressBar { + property int r: Math.floor(Math.random() * 5000 + 1000) + width: main.width - 20 + + NumberAnimation on value { duration: r; from: 0; to: 100; loops: Animation.Infinite } + ColorAnimation on color { duration: r; from: "lightsteelblue"; to: "thistle"; loops: Animation.Infinite } + ColorAnimation on secondColor { duration: r; from: "steelblue"; to: "#CD96CD"; loops: Animation.Infinite } + } + } + } + } +} diff --git a/examples/declarative/ui-components/progressbar/progressbars.qml b/examples/declarative/ui-components/progressbar/progressbars.qml deleted file mode 100644 index 22f8dbd..0000000 --- a/examples/declarative/ui-components/progressbar/progressbars.qml +++ /dev/null @@ -1,73 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). -** All rights reserved. -** Contact: Nokia Corporation (qt-info@nokia.com) -** -** This file is part of the QtDeclarative module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:BSD$ -** You may use this file under the terms of the BSD license as follows: -** -** "Redistribution and use in source and binary forms, with or without -** modification, are permitted provided that the following conditions are -** met: -** * Redistributions of source code must retain the above copyright -** notice, this list of conditions and the following disclaimer. -** * Redistributions in binary form must reproduce the above copyright -** notice, this list of conditions and the following disclaimer in -** the documentation and/or other materials provided with the -** distribution. -** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor -** the names of its contributors may be used to endorse or promote -** products derived from this software without specific prior written -** permission. -** -** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import Qt 4.7 -import "content" - -Rectangle { - id: main - - width: 600; height: 405 - color: "#edecec" - - Flickable { - anchors.fill: parent - contentHeight: column.height + 20 - - Column { - id: column - x: 10; y: 10 - spacing: 10 - - Repeater { - model: 25 - - ProgressBar { - property int r: Math.floor(Math.random() * 5000 + 1000) - width: main.width - 20 - - NumberAnimation on value { duration: r; from: 0; to: 100; loops: Animation.Infinite } - ColorAnimation on color { duration: r; from: "lightsteelblue"; to: "thistle"; loops: Animation.Infinite } - ColorAnimation on secondColor { duration: r; from: "steelblue"; to: "#CD96CD"; loops: Animation.Infinite } - } - } - } - } -} diff --git a/examples/declarative/ui-components/scrollbar/display.qml b/examples/declarative/ui-components/scrollbar/display.qml deleted file mode 100644 index 1f7992b..0000000 --- a/examples/declarative/ui-components/scrollbar/display.qml +++ /dev/null @@ -1,94 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). -** All rights reserved. -** Contact: Nokia Corporation (qt-info@nokia.com) -** -** This file is part of the QtDeclarative module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:BSD$ -** You may use this file under the terms of the BSD license as follows: -** -** "Redistribution and use in source and binary forms, with or without -** modification, are permitted provided that the following conditions are -** met: -** * Redistributions of source code must retain the above copyright -** notice, this list of conditions and the following disclaimer. -** * Redistributions in binary form must reproduce the above copyright -** notice, this list of conditions and the following disclaimer in -** the documentation and/or other materials provided with the -** distribution. -** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor -** the names of its contributors may be used to endorse or promote -** products derived from this software without specific prior written -** permission. -** -** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import Qt 4.7 - -Rectangle { - width: 640 - height: 480 - - // Create a flickable to view a large image. - Flickable { - id: view - anchors.fill: parent - contentWidth: picture.width - contentHeight: picture.height - - Image { - id: picture - source: "pics/niagara_falls.jpg" - asynchronous: true - } - - // Only show the scrollbars when the view is moving. - states: State { - name: "ShowBars" - when: view.movingVertically || view.movingHorizontally - PropertyChanges { target: verticalScrollBar; opacity: 1 } - PropertyChanges { target: horizontalScrollBar; opacity: 1 } - } - - transitions: Transition { - from: "*"; to: "*" - NumberAnimation { properties: "opacity"; duration: 400 } - } - } - - // Attach scrollbars to the right and bottom edges of the view. - ScrollBar { - id: verticalScrollBar - width: 12; height: view.height-12 - anchors.right: view.right - opacity: 0 - orientation: Qt.Vertical - position: view.visibleArea.yPosition - pageSize: view.visibleArea.heightRatio - } - - ScrollBar { - id: horizontalScrollBar - width: view.width-12; height: 12 - anchors.bottom: view.bottom - opacity: 0 - orientation: Qt.Horizontal - position: view.visibleArea.xPosition - pageSize: view.visibleArea.widthRatio - } -} diff --git a/examples/declarative/ui-components/scrollbar/main.qml b/examples/declarative/ui-components/scrollbar/main.qml new file mode 100644 index 0000000..1f7992b --- /dev/null +++ b/examples/declarative/ui-components/scrollbar/main.qml @@ -0,0 +1,94 @@ +/**************************************************************************** +** +** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the QtDeclarative module of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:BSD$ +** You may use this file under the terms of the BSD license as follows: +** +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor +** the names of its contributors may be used to endorse or promote +** products derived from this software without specific prior written +** permission. +** +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import Qt 4.7 + +Rectangle { + width: 640 + height: 480 + + // Create a flickable to view a large image. + Flickable { + id: view + anchors.fill: parent + contentWidth: picture.width + contentHeight: picture.height + + Image { + id: picture + source: "pics/niagara_falls.jpg" + asynchronous: true + } + + // Only show the scrollbars when the view is moving. + states: State { + name: "ShowBars" + when: view.movingVertically || view.movingHorizontally + PropertyChanges { target: verticalScrollBar; opacity: 1 } + PropertyChanges { target: horizontalScrollBar; opacity: 1 } + } + + transitions: Transition { + from: "*"; to: "*" + NumberAnimation { properties: "opacity"; duration: 400 } + } + } + + // Attach scrollbars to the right and bottom edges of the view. + ScrollBar { + id: verticalScrollBar + width: 12; height: view.height-12 + anchors.right: view.right + opacity: 0 + orientation: Qt.Vertical + position: view.visibleArea.yPosition + pageSize: view.visibleArea.heightRatio + } + + ScrollBar { + id: horizontalScrollBar + width: view.width-12; height: 12 + anchors.bottom: view.bottom + opacity: 0 + orientation: Qt.Horizontal + position: view.visibleArea.xPosition + pageSize: view.visibleArea.widthRatio + } +} diff --git a/examples/declarative/ui-components/tabwidget/main.qml b/examples/declarative/ui-components/tabwidget/main.qml new file mode 100644 index 0000000..e11902a --- /dev/null +++ b/examples/declarative/ui-components/tabwidget/main.qml @@ -0,0 +1,99 @@ +/**************************************************************************** +** +** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the QtDeclarative module of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:BSD$ +** You may use this file under the terms of the BSD license as follows: +** +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor +** the names of its contributors may be used to endorse or promote +** products derived from this software without specific prior written +** permission. +** +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import Qt 4.7 + +TabWidget { + id: tabs + width: 640; height: 480 + + Rectangle { + property string title: "Red" + anchors.fill: parent + color: "#e3e3e3" + + Rectangle { + anchors { fill: parent; topMargin: 20; leftMargin: 20; rightMargin: 20; bottomMargin: 20 } + color: "#ff7f7f" + Text { + width: parent.width - 20 + anchors.centerIn: parent; horizontalAlignment: Qt.AlignHCenter + text: "Roses are red" + font.pixelSize: 20 + wrapMode: Text.WordWrap + } + } + } + + Rectangle { + property string title: "Green" + anchors.fill: parent + color: "#e3e3e3" + + Rectangle { + anchors { fill: parent; topMargin: 20; leftMargin: 20; rightMargin: 20; bottomMargin: 20 } + color: "#7fff7f" + Text { + width: parent.width - 20 + anchors.centerIn: parent; horizontalAlignment: Qt.AlignHCenter + text: "Flower stems are green" + font.pixelSize: 20 + wrapMode: Text.WordWrap + } + } + } + + Rectangle { + property string title: "Blue" + anchors.fill: parent; color: "#e3e3e3" + + Rectangle { + anchors { fill: parent; topMargin: 20; leftMargin: 20; rightMargin: 20; bottomMargin: 20 } + color: "#7f7fff" + Text { + width: parent.width - 20 + anchors.centerIn: parent; horizontalAlignment: Qt.AlignHCenter + text: "Violets are blue" + font.pixelSize: 20 + wrapMode: Text.WordWrap + } + } + } +} diff --git a/examples/declarative/ui-components/tabwidget/tabs.qml b/examples/declarative/ui-components/tabwidget/tabs.qml deleted file mode 100644 index e11902a..0000000 --- a/examples/declarative/ui-components/tabwidget/tabs.qml +++ /dev/null @@ -1,99 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). -** All rights reserved. -** Contact: Nokia Corporation (qt-info@nokia.com) -** -** This file is part of the QtDeclarative module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:BSD$ -** You may use this file under the terms of the BSD license as follows: -** -** "Redistribution and use in source and binary forms, with or without -** modification, are permitted provided that the following conditions are -** met: -** * Redistributions of source code must retain the above copyright -** notice, this list of conditions and the following disclaimer. -** * Redistributions in binary form must reproduce the above copyright -** notice, this list of conditions and the following disclaimer in -** the documentation and/or other materials provided with the -** distribution. -** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor -** the names of its contributors may be used to endorse or promote -** products derived from this software without specific prior written -** permission. -** -** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import Qt 4.7 - -TabWidget { - id: tabs - width: 640; height: 480 - - Rectangle { - property string title: "Red" - anchors.fill: parent - color: "#e3e3e3" - - Rectangle { - anchors { fill: parent; topMargin: 20; leftMargin: 20; rightMargin: 20; bottomMargin: 20 } - color: "#ff7f7f" - Text { - width: parent.width - 20 - anchors.centerIn: parent; horizontalAlignment: Qt.AlignHCenter - text: "Roses are red" - font.pixelSize: 20 - wrapMode: Text.WordWrap - } - } - } - - Rectangle { - property string title: "Green" - anchors.fill: parent - color: "#e3e3e3" - - Rectangle { - anchors { fill: parent; topMargin: 20; leftMargin: 20; rightMargin: 20; bottomMargin: 20 } - color: "#7fff7f" - Text { - width: parent.width - 20 - anchors.centerIn: parent; horizontalAlignment: Qt.AlignHCenter - text: "Flower stems are green" - font.pixelSize: 20 - wrapMode: Text.WordWrap - } - } - } - - Rectangle { - property string title: "Blue" - anchors.fill: parent; color: "#e3e3e3" - - Rectangle { - anchors { fill: parent; topMargin: 20; leftMargin: 20; rightMargin: 20; bottomMargin: 20 } - color: "#7f7fff" - Text { - width: parent.width - 20 - anchors.centerIn: parent; horizontalAlignment: Qt.AlignHCenter - text: "Violets are blue" - font.pixelSize: 20 - wrapMode: Text.WordWrap - } - } - } -} -- cgit v0.12 From b1fc72462f178d70d6eaae8b649c5dda2040fdd5 Mon Sep 17 00:00:00 2001 From: Warwick Allison Date: Tue, 25 May 2010 09:11:57 +1000 Subject: Fix TextEdit implicit height. --- src/declarative/graphicsitems/qdeclarativetextedit.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/declarative/graphicsitems/qdeclarativetextedit.cpp b/src/declarative/graphicsitems/qdeclarativetextedit.cpp index 7b00d2f..55843c1 100644 --- a/src/declarative/graphicsitems/qdeclarativetextedit.cpp +++ b/src/declarative/graphicsitems/qdeclarativetextedit.cpp @@ -1170,7 +1170,7 @@ void QDeclarativeTextEdit::updateSize() newWidth += 3;// ### Need a better way of accounting for space between char and cursor // ### Setting the implicitWidth triggers another updateSize(), and unless there are bindings nothing has changed. setImplicitWidth(newWidth); - setImplicitHeight(d->text.isEmpty() ? fm.height() : (int)d->document->size().height()); + setImplicitHeight(d->document->isEmpty() ? fm.height() : (int)d->document->size().height()); setContentsSize(QSize(width(), height())); } else { -- cgit v0.12 From 84c21a090765a4060ba84d1c6e9a3cb956535e81 Mon Sep 17 00:00:00 2001 From: Michael Brasser Date: Tue, 25 May 2010 09:29:26 +1000 Subject: Fix benchmark warnings on symbian. --- tests/benchmarks/declarative/binding/testtypes.h | 10 +++++----- tests/benchmarks/declarative/creation/tst_creation.cpp | 4 ++-- tests/benchmarks/declarative/qdeclarativecomponent/testtypes.h | 10 +++++----- tests/benchmarks/declarative/qmltime/qmltime.cpp | 2 +- 4 files changed, 13 insertions(+), 13 deletions(-) diff --git a/tests/benchmarks/declarative/binding/testtypes.h b/tests/benchmarks/declarative/binding/testtypes.h index 523f94d..0cbaa42 100644 --- a/tests/benchmarks/declarative/binding/testtypes.h +++ b/tests/benchmarks/declarative/binding/testtypes.h @@ -47,11 +47,11 @@ class MyQmlObject : public QObject { Q_OBJECT - Q_PROPERTY(int result READ result WRITE setResult); - Q_PROPERTY(int value READ value WRITE setValue NOTIFY valueChanged); - Q_PROPERTY(MyQmlObject *object READ object WRITE setObject NOTIFY objectChanged); - Q_PROPERTY(QDeclarativeListProperty data READ data); - Q_CLASSINFO("DefaultProperty", "data"); + Q_PROPERTY(int result READ result WRITE setResult) + Q_PROPERTY(int value READ value WRITE setValue NOTIFY valueChanged) + Q_PROPERTY(MyQmlObject *object READ object WRITE setObject NOTIFY objectChanged) + Q_PROPERTY(QDeclarativeListProperty data READ data) + Q_CLASSINFO("DefaultProperty", "data") public: MyQmlObject() : m_result(0), m_value(0), m_object(0) {} diff --git a/tests/benchmarks/declarative/creation/tst_creation.cpp b/tests/benchmarks/declarative/creation/tst_creation.cpp index 83f66de..94a67fd 100644 --- a/tests/benchmarks/declarative/creation/tst_creation.cpp +++ b/tests/benchmarks/declarative/creation/tst_creation.cpp @@ -91,8 +91,8 @@ private: class TestType : public QObject { Q_OBJECT -Q_PROPERTY(QDeclarativeListProperty resources READ resources); -Q_CLASSINFO("DefaultProperty", "resources"); +Q_PROPERTY(QDeclarativeListProperty resources READ resources) +Q_CLASSINFO("DefaultProperty", "resources") public: TestType(QObject *parent = 0) : QObject(parent) {} diff --git a/tests/benchmarks/declarative/qdeclarativecomponent/testtypes.h b/tests/benchmarks/declarative/qdeclarativecomponent/testtypes.h index 523f94d..0cbaa42 100644 --- a/tests/benchmarks/declarative/qdeclarativecomponent/testtypes.h +++ b/tests/benchmarks/declarative/qdeclarativecomponent/testtypes.h @@ -47,11 +47,11 @@ class MyQmlObject : public QObject { Q_OBJECT - Q_PROPERTY(int result READ result WRITE setResult); - Q_PROPERTY(int value READ value WRITE setValue NOTIFY valueChanged); - Q_PROPERTY(MyQmlObject *object READ object WRITE setObject NOTIFY objectChanged); - Q_PROPERTY(QDeclarativeListProperty data READ data); - Q_CLASSINFO("DefaultProperty", "data"); + Q_PROPERTY(int result READ result WRITE setResult) + Q_PROPERTY(int value READ value WRITE setValue NOTIFY valueChanged) + Q_PROPERTY(MyQmlObject *object READ object WRITE setObject NOTIFY objectChanged) + Q_PROPERTY(QDeclarativeListProperty data READ data) + Q_CLASSINFO("DefaultProperty", "data") public: MyQmlObject() : m_result(0), m_value(0), m_object(0) {} diff --git a/tests/benchmarks/declarative/qmltime/qmltime.cpp b/tests/benchmarks/declarative/qmltime/qmltime.cpp index 3932e01..e1b73ca 100644 --- a/tests/benchmarks/declarative/qmltime/qmltime.cpp +++ b/tests/benchmarks/declarative/qmltime/qmltime.cpp @@ -50,7 +50,7 @@ class Timer : public QObject { Q_OBJECT - Q_PROPERTY(QDeclarativeComponent *component READ component WRITE setComponent); + Q_PROPERTY(QDeclarativeComponent *component READ component WRITE setComponent) public: Timer(); -- cgit v0.12 From 956c9635d969d81ca954ea91aa4ccc1afbf3abcc Mon Sep 17 00:00:00 2001 From: Warwick Allison Date: Tue, 25 May 2010 10:13:23 +1000 Subject: Example of a simple TextEditor look-and-feel. Task-number: QTBUG-10940 --- doc/src/snippets/declarative/texteditor.qml | 71 ++++++++++++++++++++++ .../graphicsitems/qdeclarativetextedit.cpp | 21 +++++-- .../graphicsitems/qdeclarativetextedit_p.h | 4 +- 3 files changed, 90 insertions(+), 6 deletions(-) create mode 100644 doc/src/snippets/declarative/texteditor.qml diff --git a/doc/src/snippets/declarative/texteditor.qml b/doc/src/snippets/declarative/texteditor.qml new file mode 100644 index 0000000..0bd79b5 --- /dev/null +++ b/doc/src/snippets/declarative/texteditor.qml @@ -0,0 +1,71 @@ +/**************************************************************************** +** +** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the QtDeclarative module of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** No Commercial Usage +** This file contains pre-release code and may not be distributed. +** You may use this file in accordance with the terms and conditions +** contained in the Technology Preview License Agreement accompanying +** this package. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Nokia gives you certain additional +** rights. These rights are described in the Nokia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** +** +** $QT_END_LICENSE$ +** +****************************************************************************/ +import Qt 4.7 + +//![0] +Flickable { + id: flick + + width: 300; height: 200; + contentHeight: edit.height + clip: true + + function ensureVisible(r) + { + if (contentX >= r.x) + contentX = r.x; + else if (contentX+width <= r.x+r.width) + contentX = r.x+r.width-width; + if (contentY >= r.y) + contentY = r.y; + else if (contentY+height <= r.y+r.height) + contentY = r.y+r.height-height; + } + + TextEdit { + id: edit + width: parent.width + focus: true + wrapMode: TextEdit.WrapAtWordBoundaryOrAnywhere + onCursorRectangleChanged: flick.ensureVisible(cursorRectangle) + } +} +//![0] diff --git a/src/declarative/graphicsitems/qdeclarativetextedit.cpp b/src/declarative/graphicsitems/qdeclarativetextedit.cpp index 55843c1..e34bb3d 100644 --- a/src/declarative/graphicsitems/qdeclarativetextedit.cpp +++ b/src/declarative/graphicsitems/qdeclarativetextedit.cpp @@ -80,6 +80,14 @@ TextEdit { \image declarative-textedit.gif + Note that the TextEdit does not implement scrolling, following the cursor, or other behaviors specific + to a look-and-feel. For example, to add flickable scrolling that follows the cursor: + + \snippet snippets/declarative/texteditor.qml 0 + + A particular look-and-feel might use smooth scrolling (eg. using SmoothedFollow), might have a visible + scrollbar, or a scrollbar that fades in to show location, etc. + \sa Text */ @@ -574,7 +582,7 @@ void QDeclarativeTextEdit::setCursorDelegate(QDeclarativeComponent* c) disconnect(d->control, SIGNAL(cursorPositionChanged()), this, SLOT(moveCursorDelegate())); d->control->setCursorWidth(-1); - dirtyCache(cursorRect()); + dirtyCache(cursorRectangle()); delete d->cursor; d->cursor = 0; } @@ -601,7 +609,7 @@ void QDeclarativeTextEdit::loadCursorDelegate() connect(d->control, SIGNAL(cursorPositionChanged()), this, SLOT(moveCursorDelegate())); d->control->setCursorWidth(0); - dirtyCache(cursorRect()); + dirtyCache(cursorRectangle()); QDeclarative_setParent_noEvent(d->cursor, this); d->cursor->setParentItem(this); d->cursor->setHeight(QFontMetrics(d->font).height()); @@ -854,10 +862,12 @@ Qt::TextInteractionFlags QDeclarativeTextEdit::textInteractionFlags() const } /*! - Returns the rectangle where the text cursor is rendered - within the text edit. + \qmlproperty rectangle TextEdit::cursorRectangle + + The rectangle where the text cursor is rendered + within the text edit. Read-only. */ -QRect QDeclarativeTextEdit::cursorRect() const +QRect QDeclarativeTextEdit::cursorRectangle() const { Q_D(const QDeclarativeTextEdit); return d->control->cursorRect().toRect().translated(0,-d->yoff); @@ -1076,6 +1086,7 @@ void QDeclarativeTextEditPrivate::init() QObject::connect(control, SIGNAL(selectionChanged()), q, SLOT(updateSelectionMarkers())); QObject::connect(control, SIGNAL(cursorPositionChanged()), q, SLOT(updateSelectionMarkers())); QObject::connect(control, SIGNAL(cursorPositionChanged()), q, SIGNAL(cursorPositionChanged())); + QObject::connect(control, SIGNAL(cursorPositionChanged()), q, SIGNAL(cursorRectangleChanged())); document = control->document(); document->setDefaultFont(font); diff --git a/src/declarative/graphicsitems/qdeclarativetextedit_p.h b/src/declarative/graphicsitems/qdeclarativetextedit_p.h index 8848d47..891b868 100644 --- a/src/declarative/graphicsitems/qdeclarativetextedit_p.h +++ b/src/declarative/graphicsitems/qdeclarativetextedit_p.h @@ -78,6 +78,7 @@ class Q_DECLARATIVE_EXPORT QDeclarativeTextEdit : public QDeclarativePaintedItem Q_PROPERTY(bool readOnly READ isReadOnly WRITE setReadOnly NOTIFY readOnlyChanged) Q_PROPERTY(bool cursorVisible READ isCursorVisible WRITE setCursorVisible NOTIFY cursorVisibleChanged) Q_PROPERTY(int cursorPosition READ cursorPosition WRITE setCursorPosition NOTIFY cursorPositionChanged) + Q_PROPERTY(QRect cursorRectangle READ cursorRectangle NOTIFY cursorRectangleChanged) Q_PROPERTY(QDeclarativeComponent* cursorDelegate READ cursorDelegate WRITE setCursorDelegate NOTIFY cursorDelegateChanged) Q_PROPERTY(int selectionStart READ selectionStart WRITE setSelectionStart NOTIFY selectionStartChanged) Q_PROPERTY(int selectionEnd READ selectionEnd WRITE setSelectionEnd NOTIFY selectionEndChanged) @@ -180,13 +181,14 @@ public: void setTextInteractionFlags(Qt::TextInteractionFlags flags); Qt::TextInteractionFlags textInteractionFlags() const; - QRect cursorRect() const; + QRect cursorRectangle() const; QVariant inputMethodQuery(Qt::InputMethodQuery property) const; Q_SIGNALS: void textChanged(const QString &); void cursorPositionChanged(); + void cursorRectangleChanged(); void selectionStartChanged(); void selectionEndChanged(); void selectionChanged(); -- cgit v0.12 From 38b329ae7dd7471b08e75b2f0f4615c4b787ece4 Mon Sep 17 00:00:00 2001 From: Warwick Allison Date: Tue, 25 May 2010 10:16:19 +1000 Subject: License header. --- demos/qtdemo/MagicAnim.qml | 41 +++++++++++++++++++++++++++++++++++++++++ demos/qtdemo/qmlShell.qml | 41 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 82 insertions(+) diff --git a/demos/qtdemo/MagicAnim.qml b/demos/qtdemo/MagicAnim.qml index f2ee806..7ac3e1c 100644 --- a/demos/qtdemo/MagicAnim.qml +++ b/demos/qtdemo/MagicAnim.qml @@ -1,3 +1,44 @@ +/**************************************************************************** +** +** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the demonstration applications of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** No Commercial Usage +** This file contains pre-release code and may not be distributed. +** You may use this file in accordance with the terms and conditions +** contained in the Technology Preview License Agreement accompanying +** this package. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Nokia gives you certain additional +** rights. These rights are described in the Nokia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + import Qt 4.7 //Emulates the in animation of the menu elements diff --git a/demos/qtdemo/qmlShell.qml b/demos/qtdemo/qmlShell.qml index 8c20cf4..eb155c4 100644 --- a/demos/qtdemo/qmlShell.qml +++ b/demos/qtdemo/qmlShell.qml @@ -1,3 +1,44 @@ +/**************************************************************************** +** +** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the demonstration applications of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** No Commercial Usage +** This file contains pre-release code and may not be distributed. +** You may use this file in accordance with the terms and conditions +** contained in the Technology Preview License Agreement accompanying +** this package. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Nokia gives you certain additional +** rights. These rights are described in the Nokia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + import Qt 4.7 import Effects 1.0 -- cgit v0.12 From 468ed48e8a98b674c23c493968a421a6fc70f3c9 Mon Sep 17 00:00:00 2001 From: Aaron Kennedy Date: Tue, 25 May 2010 12:02:42 +1000 Subject: Doc --- src/declarative/util/qdeclarativestateoperations.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/declarative/util/qdeclarativestateoperations.cpp b/src/declarative/util/qdeclarativestateoperations.cpp index 80ae5f5..99f163e 100644 --- a/src/declarative/util/qdeclarativestateoperations.cpp +++ b/src/declarative/util/qdeclarativestateoperations.cpp @@ -1128,8 +1128,8 @@ void QDeclarativeAnchorChanges::setObject(QDeclarativeItem *target) \qml AnchorChanges { target: myItem - left: undefined //remove myItem's left anchor - right: otherItem.right + anchors.left: undefined //remove myItem's left anchor + anchors.right: otherItem.right } \endqml */ -- cgit v0.12 From 7a405bb1b318d69d70e3fe61b0e26714ad4748e2 Mon Sep 17 00:00:00 2001 From: Warwick Allison Date: Tue, 25 May 2010 12:09:54 +1000 Subject: geolocation (untested) --- examples/declarative/modelviews/webview/content/Mapping/map.html | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/examples/declarative/modelviews/webview/content/Mapping/map.html b/examples/declarative/modelviews/webview/content/Mapping/map.html index a8726fd..a98da54 100755 --- a/examples/declarative/modelviews/webview/content/Mapping/map.html +++ b/examples/declarative/modelviews/webview/content/Mapping/map.html @@ -25,6 +25,14 @@ } else { goToLatLng(new google.maps.LatLng(window.qml.lat,window.qml.lng)); } + if (navigator.geolocation) { + navigator.geolocation.getCurrentPosition(function(position) { + initialLocation = new google.maps.LatLng(position.coords.latitude,position.coords.longitude); + window.qml.lat = initialLocation.lat; + window.qml.lng = initialLocation.lng; + goToLatLng(initialLocation); + }); + } } function goToAddress() { if (geocoder) { -- cgit v0.12 From 9d8bf1b8b7eec4202d54dd472be625214ea9c6fc Mon Sep 17 00:00:00 2001 From: Warwick Allison Date: Tue, 25 May 2010 13:26:26 +1000 Subject: Fix --- .../declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp b/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp index 4befc4c..b07849d 100644 --- a/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp +++ b/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp @@ -676,12 +676,12 @@ void tst_qdeclarativetextedit::cursorDelegate() //Test Delegate gets moved for(int i=0; i<= textEditObject->text().length(); i++){ textEditObject->setCursorPosition(i); - QCOMPARE(textEditObject->cursorRect().x(), qRound(delegateObject->x())); - QCOMPARE(textEditObject->cursorRect().y(), qRound(delegateObject->y())); + QCOMPARE(textEditObject->cursorRectangle().x(), qRound(delegateObject->x())); + QCOMPARE(textEditObject->cursorRectangle().y(), qRound(delegateObject->y())); } textEditObject->setCursorPosition(0); - QCOMPARE(textEditObject->cursorRect().x(), qRound(delegateObject->x())); - QCOMPARE(textEditObject->cursorRect().y(), qRound(delegateObject->y())); + QCOMPARE(textEditObject->cursorRectangle().x(), qRound(delegateObject->x())); + QCOMPARE(textEditObject->cursorRectangle().y(), qRound(delegateObject->y())); //Test Delegate gets deleted textEditObject->setCursorDelegate(0); QVERIFY(!textEditObject->findChild("cursorInstance")); -- cgit v0.12 From 2b3e7706f4459569520c77b9fb3ff2bc006e60f1 Mon Sep 17 00:00:00 2001 From: Aaron Kennedy Date: Tue, 25 May 2010 14:31:40 +1000 Subject: Reading/writing a non-existent property throws an exception QTBUG-10659 --- .../qml/qdeclarativeglobalscriptclass.cpp | 23 +++------------------- .../qml/qdeclarativeglobalscriptclass_p.h | 2 -- .../qml/qdeclarativeobjectscriptclass.cpp | 14 +++++++++---- .../qml/qdeclarativeobjectscriptclass_p.h | 1 + .../qdeclarativeecmascript/data/eval.qml | 2 +- .../qdeclarativeecmascript/data/function.qml | 3 ++- .../data/libraryScriptAssert.js | 2 +- .../tst_qdeclarativeecmascript.cpp | 15 +++++++++----- 8 files changed, 28 insertions(+), 34 deletions(-) diff --git a/src/declarative/qml/qdeclarativeglobalscriptclass.cpp b/src/declarative/qml/qdeclarativeglobalscriptclass.cpp index 6e107fb..35cb2b4 100644 --- a/src/declarative/qml/qdeclarativeglobalscriptclass.cpp +++ b/src/declarative/qml/qdeclarativeglobalscriptclass.cpp @@ -98,7 +98,9 @@ QDeclarativeGlobalScriptClass::property(const QScriptValue &object, Q_UNUSED(object); Q_UNUSED(name); Q_UNUSED(id); - return engine()->undefinedValue(); + QString error = QLatin1String("Cannot access non-existent property \"") + + name.toString() + QLatin1Char('\"'); + return engine()->currentContext()->throwError(error); } void QDeclarativeGlobalScriptClass::setProperty(QScriptValue &object, @@ -113,24 +115,5 @@ void QDeclarativeGlobalScriptClass::setProperty(QScriptValue &object, engine()->currentContext()->throwError(error); } -/* This method is for the use of tst_qdeclarativeecmascript::callQtInvokables() only */ -void QDeclarativeGlobalScriptClass::explicitSetProperty(const QString &name, const QScriptValue &value) -{ - QScriptValue globalObject = engine()->globalObject(); - - QScriptValue v = engine()->newObject(); - - QScriptValueIterator iter(v); - while (iter.hasNext()) { - iter.next(); - v.setProperty(iter.scriptName(), iter.value()); - } - - v.setProperty(name, value); - v.setScriptClass(this); - - engine()->setGlobalObject(v); -} - QT_END_NAMESPACE diff --git a/src/declarative/qml/qdeclarativeglobalscriptclass_p.h b/src/declarative/qml/qdeclarativeglobalscriptclass_p.h index 7690edd..3fe766f 100644 --- a/src/declarative/qml/qdeclarativeglobalscriptclass_p.h +++ b/src/declarative/qml/qdeclarativeglobalscriptclass_p.h @@ -73,8 +73,6 @@ public: virtual void setProperty(QScriptValue &object, const QScriptString &name, uint id, const QScriptValue &value); - void explicitSetProperty(const QString &, const QScriptValue &); - const QScriptValue &globalObject() const { return m_globalObject; } const QSet &illegalNames() const { return m_illegalNames; } diff --git a/src/declarative/qml/qdeclarativeobjectscriptclass.cpp b/src/declarative/qml/qdeclarativeobjectscriptclass.cpp index aca01b2..be2be8b 100644 --- a/src/declarative/qml/qdeclarativeobjectscriptclass.cpp +++ b/src/declarative/qml/qdeclarativeobjectscriptclass.cpp @@ -93,6 +93,7 @@ QDeclarativeObjectScriptClass::QDeclarativeObjectScriptClass(QDeclarativeEngine m_destroyId = createPersistentIdentifier(QLatin1String("destroy")); m_toString = scriptEngine->newFunction(tostring); m_toStringId = createPersistentIdentifier(QLatin1String("toString")); + m_valueOfId = createPersistentIdentifier(QLatin1String("valueOf")); } QDeclarativeObjectScriptClass::~QDeclarativeObjectScriptClass() @@ -157,7 +158,8 @@ QDeclarativeObjectScriptClass::queryProperty(QObject *obj, const Identifier &nam lastTNData = 0; if (name == m_destroyId.identifier || - name == m_toStringId.identifier) + name == m_toStringId.identifier || + name == m_valueOfId.identifier) return QScriptClass::HandlesReadAccess; if (!obj) @@ -211,11 +213,15 @@ QDeclarativeObjectScriptClass::property(QObject *obj, const Identifier &name) if (name == m_destroyId.identifier) return Value(scriptEngine, m_destroy); - else if (name == m_toStringId.identifier) + else if (name == m_toStringId.identifier || + name == m_valueOfId.identifier) return Value(scriptEngine, m_toString); - if (lastData && !lastData->isValid()) - return Value(); + if (lastData && !lastData->isValid()) { + QString error = QLatin1String("Cannot access non-existent property \"") + + toString(name) + QLatin1Char('\"'); + return Value(scriptEngine, context()->throwError(error)); + } Q_ASSERT(obj); diff --git a/src/declarative/qml/qdeclarativeobjectscriptclass_p.h b/src/declarative/qml/qdeclarativeobjectscriptclass_p.h index 4b27e53..34c71a0 100644 --- a/src/declarative/qml/qdeclarativeobjectscriptclass_p.h +++ b/src/declarative/qml/qdeclarativeobjectscriptclass_p.h @@ -139,6 +139,7 @@ private: PersistentIdentifier m_destroyId; PersistentIdentifier m_toStringId; + PersistentIdentifier m_valueOfId; QScriptValue m_destroy; QScriptValue m_toString; diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/eval.qml b/tests/auto/declarative/qdeclarativeecmascript/data/eval.qml index bc2df98..faa5106 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/eval.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/eval.qml @@ -16,7 +16,7 @@ QtObject { test1 = (eval("a") == 7); test2 = (eval("b") == 9); - test3 = (eval("c") == undefined); + try { eval("c") } catch(e) { test3 = true; } test4 = (eval("console") == console); test5 = (eval("Qt") == Qt); } diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/function.qml b/tests/auto/declarative/qdeclarativeecmascript/data/function.qml index b435f58..e524189 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/function.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/function.qml @@ -14,6 +14,7 @@ QtObject { test1 = (func1(4) == 11); test2 = (func2("Hello World!") == Qt.atob("Hello World!")); - test3 = (func3() == undefined); + + try { func3(); } catch(e) { test3 = true; } } } diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/libraryScriptAssert.js b/tests/auto/declarative/qdeclarativeecmascript/data/libraryScriptAssert.js index 3ffdb33..a20fc28 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/libraryScriptAssert.js +++ b/tests/auto/declarative/qdeclarativeecmascript/data/libraryScriptAssert.js @@ -2,5 +2,5 @@ function test(target) { - var a = target.a; + try { var a = target.a; } catch(e) {} } diff --git a/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp b/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp index e75abac..217ed11 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp +++ b/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp @@ -997,11 +997,11 @@ void tst_qdeclarativeecmascript::scriptErrors() QString url = component.url().toString(); QString warning1 = url.left(url.length() - 3) + "js:2: Error: Invalid write to global property \"a\""; - QString warning2 = url + ":5: TypeError: Result of expression 'a' [undefined] is not an object."; + QString warning2 = url + ":5: Error: Cannot access non-existent property \"a\""; QString warning3 = url.left(url.length() - 3) + "js:4: Error: Invalid write to global property \"a\""; - QString warning4 = url + ":10: TypeError: Result of expression 'a' [undefined] is not an object."; - QString warning5 = url + ":8: TypeError: Result of expression 'a' [undefined] is not an object."; - QString warning6 = url + ":7: Unable to assign [undefined] to int x"; + QString warning4 = url + ":10: Error: Cannot access non-existent property \"a\""; + QString warning5 = url + ":8: Error: Cannot access non-existent property \"a\""; + QString warning6 = url + ":7: Error: Cannot access non-existent property \"undefinedObject\""; QString warning7 = url + ":12: Error: Cannot assign to read-only property \"trueProperty\""; QString warning8 = url + ":13: Error: Cannot assign to non-existent property \"fakeProperty\""; @@ -1317,7 +1317,12 @@ void tst_qdeclarativeecmascript::callQtInvokables() QDeclarativeEngine qmlengine; QDeclarativeEnginePrivate *ep = QDeclarativeEnginePrivate::get(&qmlengine); QScriptEngine *engine = &ep->scriptEngine; - ep->globalClass->explicitSetProperty("object", ep->objectClass->newQObject(&o)); + QScriptContext *scriptContext = QScriptDeclarativeClass::pushCleanContext(engine); + scriptContext->pushScope(ep->globalClass->globalObject()); + QScriptValue scope = engine->newObject(); + scope.setProperty("object", ep->objectClass->newQObject(&o)); + scriptContext->setActivationObject(scope); + scriptContext->pushScope(scope); // Non-existent methods o.reset(); -- cgit v0.12 From d982ded10a3dd5219ae40a5a3574b63ac7bdda3f Mon Sep 17 00:00:00 2001 From: Aaron Kennedy Date: Tue, 25 May 2010 14:47:02 +1000 Subject: Always pass context to QObject script class QTBUG-10659 --- src/declarative/qml/qdeclarativecontextscriptclass.cpp | 2 +- src/declarative/qml/qdeclarativeobjectscriptclass.cpp | 8 +++++--- src/declarative/qml/qdeclarativeobjectscriptclass_p.h | 3 ++- src/declarative/qml/qdeclarativetypenamescriptclass.cpp | 2 +- 4 files changed, 9 insertions(+), 6 deletions(-) diff --git a/src/declarative/qml/qdeclarativecontextscriptclass.cpp b/src/declarative/qml/qdeclarativecontextscriptclass.cpp index 1ebedbb..03a1f6a 100644 --- a/src/declarative/qml/qdeclarativecontextscriptclass.cpp +++ b/src/declarative/qml/qdeclarativecontextscriptclass.cpp @@ -270,7 +270,7 @@ QDeclarativeContextScriptClass::property(Object *object, const Identifier &name) if (lastScopeObject) { - return ep->objectClass->property(lastScopeObject, name); + return ep->objectClass->property(lastScopeObject, name, context()); } else if (lastData) { diff --git a/src/declarative/qml/qdeclarativeobjectscriptclass.cpp b/src/declarative/qml/qdeclarativeobjectscriptclass.cpp index be2be8b..7c818a6 100644 --- a/src/declarative/qml/qdeclarativeobjectscriptclass.cpp +++ b/src/declarative/qml/qdeclarativeobjectscriptclass.cpp @@ -203,12 +203,14 @@ QDeclarativeObjectScriptClass::queryProperty(QObject *obj, const Identifier &nam QDeclarativeObjectScriptClass::Value QDeclarativeObjectScriptClass::property(Object *object, const Identifier &name) { - return property(toQObject(object), name); + return property(toQObject(object), name, context()); } QDeclarativeObjectScriptClass::Value -QDeclarativeObjectScriptClass::property(QObject *obj, const Identifier &name) +QDeclarativeObjectScriptClass::property(QObject *obj, const Identifier &name, QScriptContext *context) { + Q_ASSERT(context); + QScriptEngine *scriptEngine = QDeclarativeEnginePrivate::getScriptEngine(engine); if (name == m_destroyId.identifier) @@ -220,7 +222,7 @@ QDeclarativeObjectScriptClass::property(QObject *obj, const Identifier &name) if (lastData && !lastData->isValid()) { QString error = QLatin1String("Cannot access non-existent property \"") + toString(name) + QLatin1Char('\"'); - return Value(scriptEngine, context()->throwError(error)); + return Value(scriptEngine, context->throwError(error)); } Q_ASSERT(obj); diff --git a/src/declarative/qml/qdeclarativeobjectscriptclass_p.h b/src/declarative/qml/qdeclarativeobjectscriptclass_p.h index 34c71a0..61fa586 100644 --- a/src/declarative/qml/qdeclarativeobjectscriptclass_p.h +++ b/src/declarative/qml/qdeclarativeobjectscriptclass_p.h @@ -113,10 +113,11 @@ public: QDeclarativeContextData *evalContext, QueryHints hints = 0); - Value property(QObject *, const Identifier &); + Value property(QObject *, const Identifier &, QScriptContext *context); void setProperty(QObject *, const Identifier &name, const QScriptValue &, QScriptContext *context, QDeclarativeContextData *evalContext = 0); + virtual QStringList propertyNames(Object *); virtual bool compare(Object *, Object *); diff --git a/src/declarative/qml/qdeclarativetypenamescriptclass.cpp b/src/declarative/qml/qdeclarativetypenamescriptclass.cpp index 2a3417a..b512387 100644 --- a/src/declarative/qml/qdeclarativetypenamescriptclass.cpp +++ b/src/declarative/qml/qdeclarativetypenamescriptclass.cpp @@ -147,7 +147,7 @@ QDeclarativeTypeNameScriptClass::property(Object *obj, const Identifier &name) if (type) { return Value(scriptEngine, newObject(((TypeNameData *)obj)->object, type, ((TypeNameData *)obj)->mode)); } else if (object) { - return ep->objectClass->property(object, name); + return ep->objectClass->property(object, name, context()); } else { return Value(scriptEngine, enumValue); } -- cgit v0.12 From a32987d32033a07e5a7440d7928cc8234db144bb Mon Sep 17 00:00:00 2001 From: Aaron Kennedy Date: Tue, 25 May 2010 16:23:27 +1000 Subject: Revert "Always pass context to QObject script class" This reverts commit d982ded10a3dd5219ae40a5a3574b63ac7bdda3f. --- src/declarative/qml/qdeclarativecontextscriptclass.cpp | 2 +- src/declarative/qml/qdeclarativeobjectscriptclass.cpp | 8 +++----- src/declarative/qml/qdeclarativeobjectscriptclass_p.h | 3 +-- src/declarative/qml/qdeclarativetypenamescriptclass.cpp | 2 +- 4 files changed, 6 insertions(+), 9 deletions(-) diff --git a/src/declarative/qml/qdeclarativecontextscriptclass.cpp b/src/declarative/qml/qdeclarativecontextscriptclass.cpp index 03a1f6a..1ebedbb 100644 --- a/src/declarative/qml/qdeclarativecontextscriptclass.cpp +++ b/src/declarative/qml/qdeclarativecontextscriptclass.cpp @@ -270,7 +270,7 @@ QDeclarativeContextScriptClass::property(Object *object, const Identifier &name) if (lastScopeObject) { - return ep->objectClass->property(lastScopeObject, name, context()); + return ep->objectClass->property(lastScopeObject, name); } else if (lastData) { diff --git a/src/declarative/qml/qdeclarativeobjectscriptclass.cpp b/src/declarative/qml/qdeclarativeobjectscriptclass.cpp index 7c818a6..be2be8b 100644 --- a/src/declarative/qml/qdeclarativeobjectscriptclass.cpp +++ b/src/declarative/qml/qdeclarativeobjectscriptclass.cpp @@ -203,14 +203,12 @@ QDeclarativeObjectScriptClass::queryProperty(QObject *obj, const Identifier &nam QDeclarativeObjectScriptClass::Value QDeclarativeObjectScriptClass::property(Object *object, const Identifier &name) { - return property(toQObject(object), name, context()); + return property(toQObject(object), name); } QDeclarativeObjectScriptClass::Value -QDeclarativeObjectScriptClass::property(QObject *obj, const Identifier &name, QScriptContext *context) +QDeclarativeObjectScriptClass::property(QObject *obj, const Identifier &name) { - Q_ASSERT(context); - QScriptEngine *scriptEngine = QDeclarativeEnginePrivate::getScriptEngine(engine); if (name == m_destroyId.identifier) @@ -222,7 +220,7 @@ QDeclarativeObjectScriptClass::property(QObject *obj, const Identifier &name, QS if (lastData && !lastData->isValid()) { QString error = QLatin1String("Cannot access non-existent property \"") + toString(name) + QLatin1Char('\"'); - return Value(scriptEngine, context->throwError(error)); + return Value(scriptEngine, context()->throwError(error)); } Q_ASSERT(obj); diff --git a/src/declarative/qml/qdeclarativeobjectscriptclass_p.h b/src/declarative/qml/qdeclarativeobjectscriptclass_p.h index 61fa586..34c71a0 100644 --- a/src/declarative/qml/qdeclarativeobjectscriptclass_p.h +++ b/src/declarative/qml/qdeclarativeobjectscriptclass_p.h @@ -113,11 +113,10 @@ public: QDeclarativeContextData *evalContext, QueryHints hints = 0); - Value property(QObject *, const Identifier &, QScriptContext *context); + Value property(QObject *, const Identifier &); void setProperty(QObject *, const Identifier &name, const QScriptValue &, QScriptContext *context, QDeclarativeContextData *evalContext = 0); - virtual QStringList propertyNames(Object *); virtual bool compare(Object *, Object *); diff --git a/src/declarative/qml/qdeclarativetypenamescriptclass.cpp b/src/declarative/qml/qdeclarativetypenamescriptclass.cpp index b512387..2a3417a 100644 --- a/src/declarative/qml/qdeclarativetypenamescriptclass.cpp +++ b/src/declarative/qml/qdeclarativetypenamescriptclass.cpp @@ -147,7 +147,7 @@ QDeclarativeTypeNameScriptClass::property(Object *obj, const Identifier &name) if (type) { return Value(scriptEngine, newObject(((TypeNameData *)obj)->object, type, ((TypeNameData *)obj)->mode)); } else if (object) { - return ep->objectClass->property(object, name, context()); + return ep->objectClass->property(object, name); } else { return Value(scriptEngine, enumValue); } -- cgit v0.12 From b02bf4ef805e33a763d86ec8ff496a27fddc8ad8 Mon Sep 17 00:00:00 2001 From: Aaron Kennedy Date: Tue, 25 May 2010 16:23:40 +1000 Subject: Revert "Reading/writing a non-existent property throws an exception" This reverts commit 2b3e7706f4459569520c77b9fb3ff2bc006e60f1. --- .../qml/qdeclarativeglobalscriptclass.cpp | 23 +++++++++++++++++++--- .../qml/qdeclarativeglobalscriptclass_p.h | 2 ++ .../qml/qdeclarativeobjectscriptclass.cpp | 14 ++++--------- .../qml/qdeclarativeobjectscriptclass_p.h | 1 - .../qdeclarativeecmascript/data/eval.qml | 2 +- .../qdeclarativeecmascript/data/function.qml | 3 +-- .../data/libraryScriptAssert.js | 2 +- .../tst_qdeclarativeecmascript.cpp | 15 +++++--------- 8 files changed, 34 insertions(+), 28 deletions(-) diff --git a/src/declarative/qml/qdeclarativeglobalscriptclass.cpp b/src/declarative/qml/qdeclarativeglobalscriptclass.cpp index 35cb2b4..6e107fb 100644 --- a/src/declarative/qml/qdeclarativeglobalscriptclass.cpp +++ b/src/declarative/qml/qdeclarativeglobalscriptclass.cpp @@ -98,9 +98,7 @@ QDeclarativeGlobalScriptClass::property(const QScriptValue &object, Q_UNUSED(object); Q_UNUSED(name); Q_UNUSED(id); - QString error = QLatin1String("Cannot access non-existent property \"") + - name.toString() + QLatin1Char('\"'); - return engine()->currentContext()->throwError(error); + return engine()->undefinedValue(); } void QDeclarativeGlobalScriptClass::setProperty(QScriptValue &object, @@ -115,5 +113,24 @@ void QDeclarativeGlobalScriptClass::setProperty(QScriptValue &object, engine()->currentContext()->throwError(error); } +/* This method is for the use of tst_qdeclarativeecmascript::callQtInvokables() only */ +void QDeclarativeGlobalScriptClass::explicitSetProperty(const QString &name, const QScriptValue &value) +{ + QScriptValue globalObject = engine()->globalObject(); + + QScriptValue v = engine()->newObject(); + + QScriptValueIterator iter(v); + while (iter.hasNext()) { + iter.next(); + v.setProperty(iter.scriptName(), iter.value()); + } + + v.setProperty(name, value); + v.setScriptClass(this); + + engine()->setGlobalObject(v); +} + QT_END_NAMESPACE diff --git a/src/declarative/qml/qdeclarativeglobalscriptclass_p.h b/src/declarative/qml/qdeclarativeglobalscriptclass_p.h index 3fe766f..7690edd 100644 --- a/src/declarative/qml/qdeclarativeglobalscriptclass_p.h +++ b/src/declarative/qml/qdeclarativeglobalscriptclass_p.h @@ -73,6 +73,8 @@ public: virtual void setProperty(QScriptValue &object, const QScriptString &name, uint id, const QScriptValue &value); + void explicitSetProperty(const QString &, const QScriptValue &); + const QScriptValue &globalObject() const { return m_globalObject; } const QSet &illegalNames() const { return m_illegalNames; } diff --git a/src/declarative/qml/qdeclarativeobjectscriptclass.cpp b/src/declarative/qml/qdeclarativeobjectscriptclass.cpp index be2be8b..aca01b2 100644 --- a/src/declarative/qml/qdeclarativeobjectscriptclass.cpp +++ b/src/declarative/qml/qdeclarativeobjectscriptclass.cpp @@ -93,7 +93,6 @@ QDeclarativeObjectScriptClass::QDeclarativeObjectScriptClass(QDeclarativeEngine m_destroyId = createPersistentIdentifier(QLatin1String("destroy")); m_toString = scriptEngine->newFunction(tostring); m_toStringId = createPersistentIdentifier(QLatin1String("toString")); - m_valueOfId = createPersistentIdentifier(QLatin1String("valueOf")); } QDeclarativeObjectScriptClass::~QDeclarativeObjectScriptClass() @@ -158,8 +157,7 @@ QDeclarativeObjectScriptClass::queryProperty(QObject *obj, const Identifier &nam lastTNData = 0; if (name == m_destroyId.identifier || - name == m_toStringId.identifier || - name == m_valueOfId.identifier) + name == m_toStringId.identifier) return QScriptClass::HandlesReadAccess; if (!obj) @@ -213,15 +211,11 @@ QDeclarativeObjectScriptClass::property(QObject *obj, const Identifier &name) if (name == m_destroyId.identifier) return Value(scriptEngine, m_destroy); - else if (name == m_toStringId.identifier || - name == m_valueOfId.identifier) + else if (name == m_toStringId.identifier) return Value(scriptEngine, m_toString); - if (lastData && !lastData->isValid()) { - QString error = QLatin1String("Cannot access non-existent property \"") + - toString(name) + QLatin1Char('\"'); - return Value(scriptEngine, context()->throwError(error)); - } + if (lastData && !lastData->isValid()) + return Value(); Q_ASSERT(obj); diff --git a/src/declarative/qml/qdeclarativeobjectscriptclass_p.h b/src/declarative/qml/qdeclarativeobjectscriptclass_p.h index 34c71a0..4b27e53 100644 --- a/src/declarative/qml/qdeclarativeobjectscriptclass_p.h +++ b/src/declarative/qml/qdeclarativeobjectscriptclass_p.h @@ -139,7 +139,6 @@ private: PersistentIdentifier m_destroyId; PersistentIdentifier m_toStringId; - PersistentIdentifier m_valueOfId; QScriptValue m_destroy; QScriptValue m_toString; diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/eval.qml b/tests/auto/declarative/qdeclarativeecmascript/data/eval.qml index faa5106..bc2df98 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/eval.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/eval.qml @@ -16,7 +16,7 @@ QtObject { test1 = (eval("a") == 7); test2 = (eval("b") == 9); - try { eval("c") } catch(e) { test3 = true; } + test3 = (eval("c") == undefined); test4 = (eval("console") == console); test5 = (eval("Qt") == Qt); } diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/function.qml b/tests/auto/declarative/qdeclarativeecmascript/data/function.qml index e524189..b435f58 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/function.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/function.qml @@ -14,7 +14,6 @@ QtObject { test1 = (func1(4) == 11); test2 = (func2("Hello World!") == Qt.atob("Hello World!")); - - try { func3(); } catch(e) { test3 = true; } + test3 = (func3() == undefined); } } diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/libraryScriptAssert.js b/tests/auto/declarative/qdeclarativeecmascript/data/libraryScriptAssert.js index a20fc28..3ffdb33 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/libraryScriptAssert.js +++ b/tests/auto/declarative/qdeclarativeecmascript/data/libraryScriptAssert.js @@ -2,5 +2,5 @@ function test(target) { - try { var a = target.a; } catch(e) {} + var a = target.a; } diff --git a/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp b/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp index 217ed11..e75abac 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp +++ b/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp @@ -997,11 +997,11 @@ void tst_qdeclarativeecmascript::scriptErrors() QString url = component.url().toString(); QString warning1 = url.left(url.length() - 3) + "js:2: Error: Invalid write to global property \"a\""; - QString warning2 = url + ":5: Error: Cannot access non-existent property \"a\""; + QString warning2 = url + ":5: TypeError: Result of expression 'a' [undefined] is not an object."; QString warning3 = url.left(url.length() - 3) + "js:4: Error: Invalid write to global property \"a\""; - QString warning4 = url + ":10: Error: Cannot access non-existent property \"a\""; - QString warning5 = url + ":8: Error: Cannot access non-existent property \"a\""; - QString warning6 = url + ":7: Error: Cannot access non-existent property \"undefinedObject\""; + QString warning4 = url + ":10: TypeError: Result of expression 'a' [undefined] is not an object."; + QString warning5 = url + ":8: TypeError: Result of expression 'a' [undefined] is not an object."; + QString warning6 = url + ":7: Unable to assign [undefined] to int x"; QString warning7 = url + ":12: Error: Cannot assign to read-only property \"trueProperty\""; QString warning8 = url + ":13: Error: Cannot assign to non-existent property \"fakeProperty\""; @@ -1317,12 +1317,7 @@ void tst_qdeclarativeecmascript::callQtInvokables() QDeclarativeEngine qmlengine; QDeclarativeEnginePrivate *ep = QDeclarativeEnginePrivate::get(&qmlengine); QScriptEngine *engine = &ep->scriptEngine; - QScriptContext *scriptContext = QScriptDeclarativeClass::pushCleanContext(engine); - scriptContext->pushScope(ep->globalClass->globalObject()); - QScriptValue scope = engine->newObject(); - scope.setProperty("object", ep->objectClass->newQObject(&o)); - scriptContext->setActivationObject(scope); - scriptContext->pushScope(scope); + ep->globalClass->explicitSetProperty("object", ep->objectClass->newQObject(&o)); // Non-existent methods o.reset(); -- cgit v0.12 From 10b28224afeabb388d21c32aac5f51f5ecea58ed Mon Sep 17 00:00:00 2001 From: Martin Jones Date: Tue, 25 May 2010 16:44:42 +1000 Subject: Remove old symbian specific IAP initialization. --- tools/qml/qml.pri | 5 ----- tools/qml/qmlruntime.cpp | 26 -------------------------- tools/qml/qmlruntime.h | 1 - 3 files changed, 32 deletions(-) diff --git a/tools/qml/qml.pri b/tools/qml/qml.pri index 5e3e74b..cff65be 100644 --- a/tools/qml/qml.pri +++ b/tools/qml/qml.pri @@ -23,10 +23,5 @@ maemo5 { SOURCES += $$PWD/deviceorientation.cpp } -symbian { - INCLUDEPATH += $$QT_SOURCE_TREE/examples/network/qftp/ - LIBS += -lesock -lcommdb -lconnmon -linsock -} - FORMS = $$PWD/recopts.ui \ $$PWD/proxysettings.ui diff --git a/tools/qml/qmlruntime.cpp b/tools/qml/qmlruntime.cpp index 8df250f..d00d7d9 100644 --- a/tools/qml/qmlruntime.cpp +++ b/tools/qml/qmlruntime.cpp @@ -92,19 +92,6 @@ #include -#if defined (Q_OS_SYMBIAN) -#define SYMBIAN_NETWORK_INIT -#endif - -#if defined (SYMBIAN_NETWORK_INIT) -#include -#include -#include -#include -#include -#include "sym_iap_util.h" -#endif - QT_BEGIN_NAMESPACE class Runtime : public QObject @@ -522,12 +509,6 @@ void QDeclarativeViewer::createMenu(QMenuBar *menu, QMenu *flatmenu) connect(reloadAction, SIGNAL(triggered()), this, SLOT(reload())); fileMenu->addAction(reloadAction); -#if defined(Q_OS_SYMBIAN) - QAction *networkAction = new QAction(tr("Start &Network"), parent); - connect(networkAction, SIGNAL(triggered()), this, SLOT(startNetwork())); - fileMenu->addAction(networkAction); -#endif - #if !defined(Q_OS_SYMBIAN) if (flatmenu) flatmenu->addSeparator(); @@ -930,13 +911,6 @@ bool QDeclarativeViewer::open(const QString& file_or_url) return true; } -void QDeclarativeViewer::startNetwork() -{ -#if defined(SYMBIAN_NETWORK_INIT) - qt_SetDefaultIap(); -#endif -} - void QDeclarativeViewer::setAutoRecord(int from, int to) { if (from==0) from=1; // ensure resized diff --git a/tools/qml/qmlruntime.h b/tools/qml/qmlruntime.h index 0416b32..5086e02 100644 --- a/tools/qml/qmlruntime.h +++ b/tools/qml/qmlruntime.h @@ -142,7 +142,6 @@ private slots: void pickRecordingFile(); void setPortrait(); void setLandscape(); - void startNetwork(); void toggleFullScreen(); void orientationChanged(); -- cgit v0.12 From 559f44abace0203a1930c71ec1040855dd1db573 Mon Sep 17 00:00:00 2001 From: Simon Hausmann Date: Tue, 25 May 2010 09:32:25 +0200 Subject: Updated WebKit to 807157e42add842605ec67d9363dd3f1861748ca * Changes integrated: || || [Qt] lacks clipToImageBuffer() || || || [Qt] Nested overflow div does not scroll || || || [Qt] tst_QWebHistory::serialize_2() fails || || || [Qt] Enable alternate HTML/JavaScript front-ends for Web Inspector || || || [Qt] Skipping popup focus test for maemo || || || Canvas's getContext() must return null when called with an invalid/unsupported parameter || || || Canvas's toDataURL() should be case insensitive wrt the mimeType argument || || || [Qt] Tiled backing store tiles sometimes flicker when exiting a zoom animation || || || [Qt] QtTestBrowser does not support websites which requires HTTP Authentication via dialogs || || || [Qt] Weekly binary builds on Mac OS X don't work when launched in the Finder || || || [Qt] QWebPage::inputMethodQuery() returns wrong values for Qt::ImCursorPosition, Qt::ImAnchorPosition || || || [Qt] REGRESSION: CoolClock isn't rendered properly || Plus def file fixes. --- src/3rdparty/webkit/.tag | 2 +- src/3rdparty/webkit/ChangeLog | 12 ++ src/3rdparty/webkit/VERSION | 2 +- src/3rdparty/webkit/WebCore/ChangeLog | 121 +++++++++++++++++++ .../bindings/js/JSHTMLCanvasElementCustom.cpp | 5 +- .../webkit/WebCore/html/HTMLCanvasElement.cpp | 6 +- src/3rdparty/webkit/WebCore/page/ChromeClient.h | 6 +- src/3rdparty/webkit/WebCore/page/Frame.cpp | 8 ++ src/3rdparty/webkit/WebCore/page/Frame.h | 1 + .../platform/graphics/TiledBackingStore.cpp | 28 ++--- .../WebCore/platform/graphics/TiledBackingStore.h | 4 +- .../platform/graphics/TiledBackingStoreClient.h | 1 + .../platform/graphics/qt/GraphicsContextQt.cpp | 57 +++++++-- .../WebCore/platform/graphics/qt/ImageBufferQt.cpp | 14 ++- .../webkit/WebCore/platform/graphics/qt/PathQt.cpp | 7 +- .../webkit/WebCore/platform/qt/QWebPageClient.h | 2 + src/3rdparty/webkit/WebKit.pri | 7 +- .../webkit/WebKit/qt/Api/qgraphicswebview.cpp | 9 +- src/3rdparty/webkit/WebKit/qt/Api/qwebframe.cpp | 32 +++-- src/3rdparty/webkit/WebKit/qt/Api/qwebhistory.cpp | 2 + src/3rdparty/webkit/WebKit/qt/Api/qwebpage.cpp | 4 +- src/3rdparty/webkit/WebKit/qt/Api/qwebsettings.cpp | 26 ----- src/3rdparty/webkit/WebKit/qt/Api/qwebsettings.h | 3 - src/3rdparty/webkit/WebKit/qt/ChangeLog | 129 +++++++++++++++++++++ .../WebKit/qt/WebCoreSupport/ChromeClientQt.cpp | 9 ++ .../WebKit/qt/WebCoreSupport/ChromeClientQt.h | 4 + .../WebKit/qt/WebCoreSupport/InspectorClientQt.cpp | 9 +- .../webkit/WebKit/qt/symbian/bwins/QtWebKitu.def | 5 +- .../webkit/WebKit/qt/symbian/eabi/QtWebKitu.def | 54 ++++++++- .../WebKit/qt/tests/qwebframe/tst_qwebframe.cpp | 35 ++++-- .../WebKit/qt/tests/qwebpage/tst_qwebpage.cpp | 92 +++++++++++++++ 31 files changed, 594 insertions(+), 102 deletions(-) diff --git a/src/3rdparty/webkit/.tag b/src/3rdparty/webkit/.tag index 1973377..c4a7dd7 100644 --- a/src/3rdparty/webkit/.tag +++ b/src/3rdparty/webkit/.tag @@ -1 +1 @@ -807157e42add842605ec67d9363dd3f1861748ca +eb07c6f9bd50d0d74e9ac19ade4a2fbd5cece7c7 diff --git a/src/3rdparty/webkit/ChangeLog b/src/3rdparty/webkit/ChangeLog index 8f9c7ac..c2862fd 100644 --- a/src/3rdparty/webkit/ChangeLog +++ b/src/3rdparty/webkit/ChangeLog @@ -1,3 +1,15 @@ +2010-05-04 Laszlo Gombos + + Unreviewed, build fix for Symbian. + + [Symbian] Symbian builds does not support shadow builds + + Revision r54715 broke the Symbian build. For Symbian + the include directory is generated in the root of the source tree. + This patch sets the INCLUDEPATH accordingly for Symbian. + + * WebKit.pri: + 2010-05-14 Simon Hausmann Rubber-stamped by Antti Koivisto. diff --git a/src/3rdparty/webkit/VERSION b/src/3rdparty/webkit/VERSION index 79581d1..0899e3c 100644 --- a/src/3rdparty/webkit/VERSION +++ b/src/3rdparty/webkit/VERSION @@ -4,4 +4,4 @@ This is a snapshot of the Qt port of WebKit from and has the sha1 checksum - cacbdf18fc917122834042d77a9164a490aafde4 + 807157e42add842605ec67d9363dd3f1861748ca diff --git a/src/3rdparty/webkit/WebCore/ChangeLog b/src/3rdparty/webkit/WebCore/ChangeLog index 481b416..625faa6 100644 --- a/src/3rdparty/webkit/WebCore/ChangeLog +++ b/src/3rdparty/webkit/WebCore/ChangeLog @@ -1,3 +1,124 @@ +2010-05-19 Kenneth Rohde Christiansen + + Reviewed by Simon Hausmann. + + Fix painting when using clipToImageBuffer() + + When we apply the transform of the parent painter to the painter of + the transparency layer, we adopt its coordinate system, thus offset + should not be in page coordinates, but in the coordinate system of + the parent painter. + + * platform/graphics/qt/GraphicsContextQt.cpp: + (WebCore::TransparencyLayer::TransparencyLayer): + +2010-05-19 Andreas Kling + + Reviewed by Simon Hausmann. + + [Qt] REGRESSION: CoolClock isn't rendered properly + + https://bugs.webkit.org/show_bug.cgi?id=38526 + + CanvasRenderingContext2D's arc() should connect to the previous point + with a straight line (HTML5 spec 4.8.11.1.8), but if the path is empty + to begin with, we don't want a line back to (0,0) + This also fixes the rendering artifact discussed in bug 36226. + + Spec link: + http://www.whatwg.org/specs/web-apps/current-work/#dom-context-2d-arc + + Test: fast/canvas/canvas-arc-connecting-line.html + + * platform/graphics/qt/PathQt.cpp: + (WebCore::Path::addArc): + +2010-05-18 Kenneth Rohde Christiansen + + Rubberstamped by Simon Hausmann. + + Return null when creating an ImageBuffer failed, due to for + instance a nulled pixmap. + + * platform/graphics/qt/ImageBufferQt.cpp: + (WebCore::ImageBufferData::ImageBufferData): + (WebCore::ImageBuffer::ImageBuffer): + +2010-05-17 Antti Koivisto + + Reviewed by Kenneth Rohde Christiansen. + + https://bugs.webkit.org/show_bug.cgi?id=39218 + [Qt] Tiled backing store tiles sometimes flicker when exiting a zoom animation + + Tiles sometimes flicker when exiting a zoom animation. This happens as a result + of the visible rectangle being momentarily out of sync. + + Instead of updating the visible rect by explicitly setting it, pull it through + the client and recompute in the WebKit level. + + * page/ChromeClient.h: + (WebCore::ChromeClient::visibleRectForTiledBackingStore): + * page/Frame.cpp: + (WebCore::Frame::tiledBackingStoreVisibleRect): + * page/Frame.h: + * platform/graphics/TiledBackingStore.cpp: + (WebCore::TiledBackingStore::checkVisibleRectChanged): + (WebCore::TiledBackingStore::createTiles): + * platform/graphics/TiledBackingStore.h: + * platform/graphics/TiledBackingStoreClient.h: + +2010-05-18 Zoltan Herczeg + + Reviewed by Kenneth Rohde Christiansen. + + [Qt] Implementing clipToImageBuffer for Qt port. + https://bugs.webkit.org/show_bug.cgi?id=24289 + + The implementation combines pixmap layers and destinationIn + composition mode. + + * platform/graphics/qt/GraphicsContextQt.cpp: + (WebCore::TransparencyLayer::TransparencyLayer): + (WebCore::GraphicsContextPlatformPrivate::GraphicsContextPlatformPrivate): + (WebCore::GraphicsContext::savePlatformState): + (WebCore::GraphicsContext::restorePlatformState): + (WebCore::GraphicsContext::inTransparencyLayer): + (WebCore::GraphicsContext::beginTransparencyLayer): + (WebCore::GraphicsContext::endTransparencyLayer): + (WebCore::GraphicsContext::clipToImageBuffer): + +2010-05-16 Andreas Kling + + Reviewed by Kenneth Rohde Christiansen. + + Canvas's toDataURL() should be case insensitive wrt the mimeType argument. + https://bugs.webkit.org/show_bug.cgi?id=39153 + + Spec link: + http://www.whatwg.org/specs/web-apps/current-work/#dom-canvas-todataurl + + Test: fast/canvas/canvas-toDataURL-case-insensitive-mimetype.html + + * dom/CanvasSurface.cpp: + (WebCore::CanvasSurface::toDataURL): + +2010-05-16 Andreas Kling + + Reviewed by Kenneth Rohde Christiansen. + + Canvas's getContext() must return null when called with an invalid/unsupported parameter. + (HTML5 spec 4.8.11): http://www.whatwg.org/specs/web-apps/current-work/multipage/the-canvas-element.html#dom-canvas-getcontext + + https://bugs.webkit.org/show_bug.cgi?id=39150 + + Test: fast/canvas/canvas-getContext-invalid.html + + * bindings/js/JSHTMLCanvasElementCustom.cpp: + (WebCore::JSHTMLCanvasElement::getContext): + * bindings/v8/custom/V8HTMLCanvasElementCustom.cpp: + (WebCore::V8HTMLCanvasElement::getContextCallback): + 2010-05-17 Kenneth Rohde Christiansen Reviewed by Laszlo Gombos. diff --git a/src/3rdparty/webkit/WebCore/bindings/js/JSHTMLCanvasElementCustom.cpp b/src/3rdparty/webkit/WebCore/bindings/js/JSHTMLCanvasElementCustom.cpp index 80634f7..8f241f9 100644 --- a/src/3rdparty/webkit/WebCore/bindings/js/JSHTMLCanvasElementCustom.cpp +++ b/src/3rdparty/webkit/WebCore/bindings/js/JSHTMLCanvasElementCustom.cpp @@ -78,7 +78,10 @@ JSValue JSHTMLCanvasElement::getContext(ExecState* exec, const ArgList& args) } } #endif - return toJS(exec, globalObject(), WTF::getPtr(canvas->getContext(contextId, attrs.get()))); + CanvasRenderingContext* context = canvas->getContext(contextId, attrs.get()); + if (!context) + return jsNull(); + return toJS(exec, globalObject(), WTF::getPtr(context)); } } // namespace WebCore diff --git a/src/3rdparty/webkit/WebCore/html/HTMLCanvasElement.cpp b/src/3rdparty/webkit/WebCore/html/HTMLCanvasElement.cpp index 30a620c..0c5159d 100644 --- a/src/3rdparty/webkit/WebCore/html/HTMLCanvasElement.cpp +++ b/src/3rdparty/webkit/WebCore/html/HTMLCanvasElement.cpp @@ -143,10 +143,12 @@ String HTMLCanvasElement::toDataURL(const String& mimeType, ExceptionCode& ec) if (m_size.isEmpty() || !buffer()) return String("data:,"); - if (mimeType.isNull() || !MIMETypeRegistry::isSupportedImageMIMETypeForEncoding(mimeType)) + String lowercaseMimeType = mimeType.lower(); + + if (mimeType.isNull() || !MIMETypeRegistry::isSupportedImageMIMETypeForEncoding(lowercaseMimeType)) return buffer()->toDataURL("image/png"); - return buffer()->toDataURL(mimeType); + return buffer()->toDataURL(lowercaseMimeType); } CanvasRenderingContext* HTMLCanvasElement::getContext(const String& type, CanvasContextAttributes* attrs) diff --git a/src/3rdparty/webkit/WebCore/page/ChromeClient.h b/src/3rdparty/webkit/WebCore/page/ChromeClient.h index 0bfdbaf..a01eef1 100644 --- a/src/3rdparty/webkit/WebCore/page/ChromeClient.h +++ b/src/3rdparty/webkit/WebCore/page/ChromeClient.h @@ -222,7 +222,11 @@ namespace WebCore { virtual bool supportsFullscreenForNode(const Node*) { return false; } virtual void enterFullscreenForNode(Node*) { } virtual void exitFullscreenForNode(Node*) { } - + +#if ENABLE(TILED_BACKING_STORE) + virtual IntRect visibleRectForTiledBackingStore() const { return IntRect(); } +#endif + #if PLATFORM(MAC) virtual KeyboardUIMode keyboardUIMode() { return KeyboardAccessDefault; } diff --git a/src/3rdparty/webkit/WebCore/page/Frame.cpp b/src/3rdparty/webkit/WebCore/page/Frame.cpp index 6dbca69..379bf7d 100644 --- a/src/3rdparty/webkit/WebCore/page/Frame.cpp +++ b/src/3rdparty/webkit/WebCore/page/Frame.cpp @@ -37,6 +37,7 @@ #include "CSSPropertyNames.h" #include "CachedCSSStyleSheet.h" #include "Chrome.h" +#include "ChromeClient.h" #include "DOMWindow.h" #include "DocLoader.h" #include "DocumentType.h" @@ -1853,6 +1854,13 @@ IntRect Frame::tiledBackingStoreContentsRect() return IntRect(); return IntRect(IntPoint(), m_view->contentsSize()); } + +IntRect Frame::tiledBackingStoreVisibleRect() +{ + if (!m_page) + return IntRect(); + return m_page->chrome()->client()->visibleRectForTiledBackingStore(); +} #endif } // namespace WebCore diff --git a/src/3rdparty/webkit/WebCore/page/Frame.h b/src/3rdparty/webkit/WebCore/page/Frame.h index 67761f9..a654cd7 100644 --- a/src/3rdparty/webkit/WebCore/page/Frame.h +++ b/src/3rdparty/webkit/WebCore/page/Frame.h @@ -288,6 +288,7 @@ namespace WebCore { virtual void tiledBackingStorePaint(GraphicsContext*, const IntRect&); virtual void tiledBackingStorePaintEnd(const Vector& paintedArea); virtual IntRect tiledBackingStoreContentsRect(); + virtual IntRect tiledBackingStoreVisibleRect(); #endif #if PLATFORM(MAC) diff --git a/src/3rdparty/webkit/WebCore/platform/graphics/TiledBackingStore.cpp b/src/3rdparty/webkit/WebCore/platform/graphics/TiledBackingStore.cpp index 6214f1b..f00e792 100644 --- a/src/3rdparty/webkit/WebCore/platform/graphics/TiledBackingStore.cpp +++ b/src/3rdparty/webkit/WebCore/platform/graphics/TiledBackingStore.cpp @@ -129,13 +129,12 @@ void TiledBackingStore::paint(GraphicsContext* context, const IntRect& rect) context->restore(); } -void TiledBackingStore::viewportChanged(const IntRect& contentsViewport) +void TiledBackingStore::adjustVisibleRect() { - IntRect viewport = mapFromContents(contentsViewport); - if (m_viewport == viewport) + IntRect visibleRect = mapFromContents(m_client->tiledBackingStoreVisibleRect()); + if (m_previousVisibleRect == visibleRect) return; - - m_viewport = viewport; + m_previousVisibleRect = visibleRect; startTileCreationTimer(); } @@ -177,24 +176,27 @@ void TiledBackingStore::createTiles() { if (m_contentsFrozen) return; + + IntRect visibleRect = mapFromContents(m_client->tiledBackingStoreVisibleRect()); + m_previousVisibleRect = visibleRect; - if (m_viewport.isEmpty()) + if (visibleRect.isEmpty()) return; // Remove tiles that extend outside the current contents rect. dropOverhangingTiles(); // FIXME: Make configurable/adapt to memory. - IntRect keepRect = m_viewport; - keepRect.inflateX(m_viewport.width()); - keepRect.inflateY(3 * m_viewport.height()); + IntRect keepRect = visibleRect; + keepRect.inflateX(visibleRect.width()); + keepRect.inflateY(3 * visibleRect.height()); keepRect.intersect(contentsRect()); dropTilesOutsideRect(keepRect); - IntRect coverRect = m_viewport; - coverRect.inflateX(m_viewport.width() / 2); - coverRect.inflateY(2 * m_viewport.height()); + IntRect coverRect = visibleRect; + coverRect.inflateX(visibleRect.width() / 2); + coverRect.inflateY(2 * visibleRect.height()); coverRect.intersect(contentsRect()); // Search for the tile position closest to the viewport center that does not yet contain a tile. @@ -211,7 +213,7 @@ void TiledBackingStore::createTiles() continue; ++requiredTileCount; // Distance is 0 for all currently visible tiles. - double distance = tileDistance(m_viewport, currentCoordinate); + double distance = tileDistance(visibleRect, currentCoordinate); if (distance > shortestDistance) continue; if (distance < shortestDistance) { diff --git a/src/3rdparty/webkit/WebCore/platform/graphics/TiledBackingStore.h b/src/3rdparty/webkit/WebCore/platform/graphics/TiledBackingStore.h index 8ed4336..d12f191 100644 --- a/src/3rdparty/webkit/WebCore/platform/graphics/TiledBackingStore.h +++ b/src/3rdparty/webkit/WebCore/platform/graphics/TiledBackingStore.h @@ -41,7 +41,7 @@ public: TiledBackingStore(TiledBackingStoreClient*); ~TiledBackingStore(); - void viewportChanged(const IntRect& viewportRect); + void adjustVisibleRect(); float contentsScale() { return m_contentsScale; } void setContentsScale(float); @@ -95,7 +95,7 @@ private: IntSize m_tileSize; - IntRect m_viewport; + IntRect m_previousVisibleRect; float m_contentsScale; float m_pendingScale; diff --git a/src/3rdparty/webkit/WebCore/platform/graphics/TiledBackingStoreClient.h b/src/3rdparty/webkit/WebCore/platform/graphics/TiledBackingStoreClient.h index 4adbbab..c5845b9 100644 --- a/src/3rdparty/webkit/WebCore/platform/graphics/TiledBackingStoreClient.h +++ b/src/3rdparty/webkit/WebCore/platform/graphics/TiledBackingStoreClient.h @@ -29,6 +29,7 @@ public: virtual void tiledBackingStorePaint(GraphicsContext*, const IntRect&) = 0; virtual void tiledBackingStorePaintEnd(const Vector& paintedArea) = 0; virtual IntRect tiledBackingStoreContentsRect() = 0; + virtual IntRect tiledBackingStoreVisibleRect() = 0; }; #else diff --git a/src/3rdparty/webkit/WebCore/platform/graphics/qt/GraphicsContextQt.cpp b/src/3rdparty/webkit/WebCore/platform/graphics/qt/GraphicsContextQt.cpp index 0100b72..69121c8 100644 --- a/src/3rdparty/webkit/WebCore/platform/graphics/qt/GraphicsContextQt.cpp +++ b/src/3rdparty/webkit/WebCore/platform/graphics/qt/GraphicsContextQt.cpp @@ -167,10 +167,13 @@ static inline Qt::FillRule toQtFillRule(WindRule rule) } struct TransparencyLayer : FastAllocBase { - TransparencyLayer(const QPainter* p, const QRect &rect) + TransparencyLayer(const QPainter* p, const QRect &rect, qreal opacity, QPixmap& alphaMask) : pixmap(rect.width(), rect.height()) + , opacity(opacity) + , alphaMask(alphaMask) + , saveCounter(1) // see the comment for saveCounter { - offset = rect.topLeft(); + offset = p->transform().mapRect(rect).topLeft(); pixmap.fill(Qt::transparent); painter.begin(&pixmap); painter.setRenderHint(QPainter::Antialiasing, p->testRenderHint(QPainter::Antialiasing)); @@ -182,7 +185,9 @@ struct TransparencyLayer : FastAllocBase { painter.setFont(p->font()); if (painter.paintEngine()->hasFeature(QPaintEngine::PorterDuff)) painter.setCompositionMode(p->compositionMode()); - painter.setClipPath(p->clipPath()); + // if the path is an empty region, this assignment disables all painting + if (!p->clipPath().isEmpty()) + painter.setClipPath(p->clipPath()); } TransparencyLayer() @@ -193,6 +198,11 @@ struct TransparencyLayer : FastAllocBase { QPoint offset; QPainter painter; qreal opacity; + // for clipToImageBuffer + QPixmap alphaMask; + // saveCounter is only used in combination with alphaMask + // otherwise, its value is unspecified + int saveCounter; private: TransparencyLayer(const TransparencyLayer &) {} TransparencyLayer & operator=(const TransparencyLayer &) { return *this; } @@ -217,6 +227,9 @@ public: bool antiAliasingForRectsAndLines; QStack layers; + // Counting real layers. Required by inTransparencyLayer() calls + // For example, layers with valid alphaMask are not real layers + int layerCount; QPainter* redirect; // reuse this brush for solid color (to prevent expensive QBrush construction) @@ -235,6 +248,7 @@ private: GraphicsContextPlatformPrivate::GraphicsContextPlatformPrivate(QPainter* p) { painter = p; + layerCount = 0; redirect = 0; solidColor = QBrush(Qt::black); @@ -289,11 +303,17 @@ AffineTransform GraphicsContext::getCTM() const void GraphicsContext::savePlatformState() { + if (!m_data->layers.isEmpty() && !m_data->layers.top()->alphaMask.isNull()) + ++m_data->layers.top()->saveCounter; m_data->p()->save(); } void GraphicsContext::restorePlatformState() { + if (!m_data->layers.isEmpty() && !m_data->layers.top()->alphaMask.isNull()) + if (!--m_data->layers.top()->saveCounter) + endTransparencyLayer(); + m_data->p()->restore(); if (!m_data->currentPath.isEmpty() && m_common->state.pathTransform.isInvertible()) { @@ -678,7 +698,7 @@ void GraphicsContext::addPath(const Path& path) bool GraphicsContext::inTransparencyLayer() const { - return !m_data->layers.isEmpty(); + return m_data->layerCount; } PlatformPath* GraphicsContext::currentPath() @@ -837,10 +857,9 @@ void GraphicsContext::beginTransparencyLayer(float opacity) w = int(qBound(qreal(0), deviceClip.width(), (qreal)w) + 2); h = int(qBound(qreal(0), deviceClip.height(), (qreal)h) + 2); - TransparencyLayer * layer = new TransparencyLayer(m_data->p(), QRect(x, y, w, h)); - - layer->opacity = opacity; - m_data->layers.push(layer); + QPixmap emptyAlphaMask; + m_data->layers.push(new TransparencyLayer(m_data->p(), QRect(x, y, w, h), opacity, emptyAlphaMask)); + ++m_data->layerCount; } void GraphicsContext::endTransparencyLayer() @@ -849,6 +868,12 @@ void GraphicsContext::endTransparencyLayer() return; TransparencyLayer* layer = m_data->layers.pop(); + if (!layer->alphaMask.isNull()) { + layer->painter.resetTransform(); + layer->painter.setCompositionMode(QPainter::CompositionMode_DestinationIn); + layer->painter.drawPixmap(QPoint(), layer->alphaMask); + } else + --m_data->layerCount; // see the comment for layerCount layer->painter.end(); QPainter* p = m_data->p(); @@ -1086,9 +1111,21 @@ void GraphicsContext::clipOutEllipseInRect(const IntRect& rect) } } -void GraphicsContext::clipToImageBuffer(const FloatRect&, const ImageBuffer*) +void GraphicsContext::clipToImageBuffer(const FloatRect& floatRect, const ImageBuffer* image) { - notImplemented(); + if (paintingDisabled()) + return; + + QPixmap* nativeImage = image->image()->nativeImageForCurrentFrame(); + if (!nativeImage) + return; + + IntRect rect(floatRect); + QPixmap alphaMask = *nativeImage; + if (alphaMask.width() != rect.width() || alphaMask.height() != rect.height()) + alphaMask = alphaMask.scaled(rect.width(), rect.height()); + + m_data->layers.push(new TransparencyLayer(m_data->p(), rect, 1.0, alphaMask)); } void GraphicsContext::addInnerRoundedRectClip(const IntRect& rect, diff --git a/src/3rdparty/webkit/WebCore/platform/graphics/qt/ImageBufferQt.cpp b/src/3rdparty/webkit/WebCore/platform/graphics/qt/ImageBufferQt.cpp index d831566..eafdcf0 100644 --- a/src/3rdparty/webkit/WebCore/platform/graphics/qt/ImageBufferQt.cpp +++ b/src/3rdparty/webkit/WebCore/platform/graphics/qt/ImageBufferQt.cpp @@ -46,12 +46,19 @@ namespace WebCore { ImageBufferData::ImageBufferData(const IntSize& size) : m_pixmap(size) + , m_painter(0) { + if (m_pixmap.isNull()) + return; + m_pixmap.fill(QColor(Qt::transparent)); - QPainter* painter = new QPainter(&m_pixmap); + QPainter* painter = new QPainter; m_painter.set(painter); + if (!painter->begin(&m_pixmap)) + return; + // Since ImageBuffer is used mainly for Canvas, explicitly initialize // its painter's pen and brush with the corresponding canvas defaults // NOTE: keep in sync with CanvasRenderingContext2D::State @@ -72,8 +79,11 @@ ImageBuffer::ImageBuffer(const IntSize& size, ImageColorSpace, bool& success) : m_data(size) , m_size(size) { + success = m_data.m_painter && m_data.m_painter->isActive(); + if (!success) + return; + m_context.set(new GraphicsContext(m_data.m_painter.get())); - success = true; } ImageBuffer::~ImageBuffer() diff --git a/src/3rdparty/webkit/WebCore/platform/graphics/qt/PathQt.cpp b/src/3rdparty/webkit/WebCore/platform/graphics/qt/PathQt.cpp index 4b0c21f..a7351a0 100644 --- a/src/3rdparty/webkit/WebCore/platform/graphics/qt/PathQt.cpp +++ b/src/3rdparty/webkit/WebCore/platform/graphics/qt/PathQt.cpp @@ -298,9 +298,10 @@ void Path::addArc(const FloatPoint& p, float r, float sar, float ear, bool antic span += ea - sa; } - // connect to the previous point by a straight line - m_path.lineTo(QPointF(xc + radius * cos(sar), - yc - radius * sin(sar))); + // If the path is empty, move to where the arc will start to avoid painting a line from (0,0) + // NOTE: QPainterPath::isEmpty() won't work here since it ignores a lone MoveToElement + if (!m_path.elementCount()) + m_path.arcMoveTo(xs, ys, width, height, sa); m_path.arcTo(xs, ys, width, height, sa, span); diff --git a/src/3rdparty/webkit/WebCore/platform/qt/QWebPageClient.h b/src/3rdparty/webkit/WebCore/platform/qt/QWebPageClient.h index 467941f..8e48d1f 100644 --- a/src/3rdparty/webkit/WebCore/platform/qt/QWebPageClient.h +++ b/src/3rdparty/webkit/WebCore/platform/qt/QWebPageClient.h @@ -89,6 +89,8 @@ public: virtual QStyle* style() const = 0; + virtual QRectF graphicsItemVisibleRect() const { return QRectF(); } + protected: #ifndef QT_NO_CURSOR virtual QCursor cursor() const = 0; diff --git a/src/3rdparty/webkit/WebKit.pri b/src/3rdparty/webkit/WebKit.pri index a3ccd9d..921a6e0 100644 --- a/src/3rdparty/webkit/WebKit.pri +++ b/src/3rdparty/webkit/WebKit.pri @@ -48,7 +48,12 @@ CONFIG(release, debug|release) { } BASE_DIR = $$PWD -INCLUDEPATH += $$OUTPUT_DIR/include/QtWebKit + +symbian { + INCLUDEPATH += $$PWD/include/QtWebKit +} else { + INCLUDEPATH += $$OUTPUT_DIR/include/QtWebKit +} CONFIG -= warn_on *-g++*:QMAKE_CXXFLAGS += -Wall -Wreturn-type -fno-strict-aliasing -Wcast-align -Wchar-subscripts -Wformat-security -Wreturn-type -Wno-unused-parameter -Wno-sign-compare -Wno-switch -Wno-switch-enum -Wundef -Wmissing-noreturn -Winit-self diff --git a/src/3rdparty/webkit/WebKit/qt/Api/qgraphicswebview.cpp b/src/3rdparty/webkit/WebKit/qt/Api/qgraphicswebview.cpp index 75a23d9..7a25646 100644 --- a/src/3rdparty/webkit/WebKit/qt/Api/qgraphicswebview.cpp +++ b/src/3rdparty/webkit/WebKit/qt/Api/qgraphicswebview.cpp @@ -127,7 +127,7 @@ public: #endif void updateResizesToContentsForPage(); - QRectF graphicsItemVisibleRect() const; + virtual QRectF graphicsItemVisibleRect() const; #if ENABLE(TILED_BACKING_STORE) void updateTiledBackingStoreScale(); #endif @@ -597,12 +597,7 @@ void QGraphicsWebView::paint(QPainter* painter, const QStyleOptionGraphicsItem* #if ENABLE(TILED_BACKING_STORE) if (WebCore::TiledBackingStore* backingStore = QWebFramePrivate::core(page()->mainFrame())->tiledBackingStore()) { // FIXME: We should set the backing store viewport earlier than in paint - if (d->resizesToContents) - backingStore->viewportChanged(WebCore::IntRect(d->graphicsItemVisibleRect())); - else { - QRectF visibleRect(d->page->mainFrame()->scrollPosition(), d->page->mainFrame()->geometry().size()); - backingStore->viewportChanged(WebCore::IntRect(visibleRect)); - } + backingStore->adjustVisibleRect(); // QWebFrame::render is a public API, bypass it for tiled rendering so behavior does not need to change. WebCore::GraphicsContext context(painter); page()->mainFrame()->d->renderFromTiledBackingStore(&context, option->exposedRect.toAlignedRect()); diff --git a/src/3rdparty/webkit/WebKit/qt/Api/qwebframe.cpp b/src/3rdparty/webkit/WebKit/qt/Api/qwebframe.cpp index 44cc3b5..721aaa6 100644 --- a/src/3rdparty/webkit/WebKit/qt/Api/qwebframe.cpp +++ b/src/3rdparty/webkit/WebKit/qt/Api/qwebframe.cpp @@ -275,8 +275,9 @@ void QWEBKIT_EXPORT qt_drt_evaluateScriptInIsolatedWorld(QWebFrame* qFrame, int JSC::JSValue result = frame->script()->executeScriptInWorld(mainThreadNormalWorld(), script, true).jsValue(); } -static bool webframe_scrollOverflow(WebCore::Frame* frame, int dx, int dy, const QPoint& pos) +bool QWEBKIT_EXPORT qtwebkit_webframe_scrollOverflow(QWebFrame* qFrame, int dx, int dy, const QPoint& pos) { + WebCore::Frame* frame = QWebFramePrivate::core(qFrame); if (!frame || !frame->document() || !frame->view() || !frame->eventHandler()) return false; @@ -299,17 +300,24 @@ static bool webframe_scrollOverflow(WebCore::Frame* frame, int dx, int dy, const bool scrolledHorizontal = false; bool scrolledVertical = false; - if (dx > 0) - scrolledHorizontal = renderLayer->scroll(ScrollRight, ScrollByPixel, dx); - else if (dx < 0) - scrolledHorizontal = renderLayer->scroll(ScrollLeft, ScrollByPixel, qAbs(dx)); + do { + if (dx > 0) + scrolledHorizontal = renderLayer->scroll(ScrollRight, ScrollByPixel, dx); + else if (dx < 0) + scrolledHorizontal = renderLayer->scroll(ScrollLeft, ScrollByPixel, qAbs(dx)); + + if (dy > 0) + scrolledVertical = renderLayer->scroll(ScrollDown, ScrollByPixel, dy); + else if (dy < 0) + scrolledVertical = renderLayer->scroll(ScrollUp, ScrollByPixel, qAbs(dy)); - if (dy > 0) - scrolledVertical = renderLayer->scroll(ScrollDown, ScrollByPixel, dy); - else if (dy < 0) - scrolledVertical = renderLayer->scroll(ScrollUp, ScrollByPixel, qAbs(dy)); + if (scrolledHorizontal || scrolledVertical) + return true; - return (scrolledHorizontal || scrolledVertical); + renderLayer = renderLayer->parent(); + } while (renderLayer); + + return false; } @@ -325,7 +333,7 @@ void QWEBKIT_EXPORT qtwebkit_webframe_scrollRecursively(QWebFrame* qFrame, int d if (!qFrame) return; - if (webframe_scrollOverflow(QWebFramePrivate::core(qFrame), dx, dy, pos)) + if (qtwebkit_webframe_scrollOverflow(qFrame, dx, dy, pos)) return; bool scrollHorizontal = false; @@ -339,7 +347,7 @@ void QWEBKIT_EXPORT qtwebkit_webframe_scrollRecursively(QWebFrame* qFrame, int d if (dy > 0) // scroll down scrollVertical = qFrame->scrollBarValue(Qt::Vertical) < qFrame->scrollBarMaximum(Qt::Vertical); - else if (dy < 0) //scroll up + else if (dy < 0) //scroll up scrollVertical = qFrame->scrollBarValue(Qt::Vertical) > qFrame->scrollBarMinimum(Qt::Vertical); if (scrollHorizontal || scrollVertical) { diff --git a/src/3rdparty/webkit/WebKit/qt/Api/qwebhistory.cpp b/src/3rdparty/webkit/WebKit/qt/Api/qwebhistory.cpp index d852012..06e6cfa 100644 --- a/src/3rdparty/webkit/WebKit/qt/Api/qwebhistory.cpp +++ b/src/3rdparty/webkit/WebKit/qt/Api/qwebhistory.cpp @@ -540,6 +540,8 @@ QDataStream& operator>>(QDataStream& source, QWebHistory& history) d->lst->addItem(item); } d->lst->removeItem(nullItem); + // Update the HistoryController. + history.d->lst->page()->mainFrame()->loader()->history()->setCurrentItem(history.d->lst->entries()[currentIndex].get()); history.goToItem(history.itemAt(currentIndex)); } } diff --git a/src/3rdparty/webkit/WebKit/qt/Api/qwebpage.cpp b/src/3rdparty/webkit/WebKit/qt/Api/qwebpage.cpp index c5f508f..44bd902 100644 --- a/src/3rdparty/webkit/WebKit/qt/Api/qwebpage.cpp +++ b/src/3rdparty/webkit/WebKit/qt/Api/qwebpage.cpp @@ -1518,7 +1518,7 @@ QVariant QWebPage::inputMethodQuery(Qt::InputMethodQuery property) const RefPtr range = editor->compositionRange(); return QVariant(renderTextControl->selectionEnd() - TextIterator::rangeLength(range.get())); } - return QVariant(renderTextControl->selectionEnd()); + return QVariant(frame->selection()->extent().offsetInContainerNode()); } return QVariant(); } @@ -1550,7 +1550,7 @@ QVariant QWebPage::inputMethodQuery(Qt::InputMethodQuery property) const RefPtr range = editor->compositionRange(); return QVariant(renderTextControl->selectionStart() - TextIterator::rangeLength(range.get())); } - return QVariant(renderTextControl->selectionStart()); + return QVariant(frame->selection()->base().offsetInContainerNode()); } return QVariant(); } diff --git a/src/3rdparty/webkit/WebKit/qt/Api/qwebsettings.cpp b/src/3rdparty/webkit/WebKit/qt/Api/qwebsettings.cpp index 115f9fc..81823f6 100644 --- a/src/3rdparty/webkit/WebKit/qt/Api/qwebsettings.cpp +++ b/src/3rdparty/webkit/WebKit/qt/Api/qwebsettings.cpp @@ -74,7 +74,6 @@ public: QString localStoragePath; QString offlineWebApplicationCachePath; qint64 offlineStorageDefaultQuota; - QUrl inspectorLocation; void apply(); WebCore::Settings* settings; @@ -1011,31 +1010,6 @@ void QWebSettings::setLocalStoragePath(const QString& path) } /*! - \since 4.7 - - Specifies the \a location of a frontend to load with each web page when using Web Inspector. - - \sa inspectorUrl() -*/ -void QWebSettings::setInspectorUrl(const QUrl& location) -{ - d->inspectorLocation = location; - d->apply(); -} - -/*! - \since 4.7 - - Returns the location of the Web Inspector frontend. - - \sa setInspectorUrl() -*/ -QUrl QWebSettings::inspectorUrl() const -{ - return d->inspectorLocation; -} - -/*! \since 4.6 Returns the path for HTML5 local storage. diff --git a/src/3rdparty/webkit/WebKit/qt/Api/qwebsettings.h b/src/3rdparty/webkit/WebKit/qt/Api/qwebsettings.h index 3592e2c..b978f5e 100644 --- a/src/3rdparty/webkit/WebKit/qt/Api/qwebsettings.h +++ b/src/3rdparty/webkit/WebKit/qt/Api/qwebsettings.h @@ -136,9 +136,6 @@ public: void setLocalStoragePath(const QString& path); QString localStoragePath() const; - void setInspectorUrl(const QUrl &location); - QUrl inspectorUrl() const; - static void clearMemoryCaches(); static void enablePersistentStorage(const QString& path = QString()); diff --git a/src/3rdparty/webkit/WebKit/qt/ChangeLog b/src/3rdparty/webkit/WebKit/qt/ChangeLog index efc8f27..2f87c7b 100644 --- a/src/3rdparty/webkit/WebKit/qt/ChangeLog +++ b/src/3rdparty/webkit/WebKit/qt/ChangeLog @@ -1,3 +1,132 @@ +2010-05-21 Simon Hausmann + + Symbian build fix. + + [Qt] Updated the wins def file with one new export. + + The DRT symbols are still missing, but I can't build DRT ;( + + * symbian/bwins/QtWebKitu.def: + +2010-05-12 Simon Hausmann + + Reviewed by Laszlo Gombos. + + Add a comment to explain the web inspector dynamic property url hook + and that it's there on purpose :) + + https://bugs.webkit.org/show_bug.cgi?id=35340 + + * WebCoreSupport/InspectorClientQt.cpp: + (WebCore::InspectorClientQt::openInspectorFrontend): + +2010-05-06 Simon Hausmann + + Reviewed by Kenneth Rohde Christiansen. + + [Qt] Replace public inspector url with private property for QtLauncher + https://bugs.webkit.org/show_bug.cgi?id=35340 + + Replace the public API with a private dynamic property until this feature + is ready. + + * Api/qwebsettings.cpp: + * Api/qwebsettings.h: + * WebCoreSupport/InspectorClientQt.cpp: + (WebCore::InspectorClientQt::openInspectorFrontend): + * symbian/bwins/QtWebKitu.def: + * symbian/eabi/QtWebKitu.def: + +2010-05-20 Luiz Agostini + + Reviewed by Kenneth Rohde Christiansen. + + [Qt] Skipping popup focus test for maemo + https://bugs.webkit.org/show_bug.cgi?id=39314 + + Skipping popup focus test for maemo in qwebframe auto test. + + The test method tst_QWebFrame::popupFocus() was testing popup focus AND input + field focus. The input field focus has been removed from the method popupFocus() + and a new test method named inputFieldFocus() has been added. Finally the test + method popupFocus() has been skipped for maemo. + + * tests/qwebframe/tst_qwebframe.cpp: + +2010-05-20 Rajiv Ramanasankaran + + Reviewed by Simon Hausmann. + + [Qt] QWebPage::inputMethodQuery() returns wrong values for Qt::ImCursorPosition, Qt::ImAnchorPosition + https://bugs.webkit.org/show_bug.cgi?id=38779 + + The earlier implementation was written with the assumption that in this scenario the + anchor position always corresponds to the START index and that the current cursor position + always corresponds to the END index in WebKit. + + Updated the implementation of QWebPage::inputMethodQuery(Qt::ImCursorPosition) and + QWebPage::inputMethodQuery(Qt::ImAnchorPosition) for the case where the Editor is not in + composition mode. In the non-composition mode, the Anchor and the Current cursor positions + correspond to the Base and Extent position offsets in WebKit. + + Also added the auto-tests for the RIGHT to LEFT and LEFT to RIGHT selections. + + * Api/qwebpage.cpp: + (QWebPage::inputMethodQuery): Now returning correct values for Qt::ImCursorPosition and + Qt::ImAnchorPosition when the Editor is not in composition mode. + * tests/qwebpage/tst_qwebpage.cpp: + (tst_QWebPage::inputMethods): Added auto-tests for RIGHT to LEFT and LEFT to RIGHT selections + +2010-05-12 Joe Ligman + + Reviewed by Laszlo Gombos. + + [Qt] Nested overflow div does not scroll + https://bugs.webkit.org/show_bug.cgi?id=38641 + + Modify qtwebkit_webframe_scrollOverflow, if the current node's render layer + does not scroll it will try and scroll the parent's render layer. Also export + qtwebkit_webframe_scrollOverflow so we can use it independently of + qtwebkit_webframe_scrollRecursively + + * Api/qwebframe.cpp: + (qtwebkit_webframe_scrollOverflow): + (qtwebkit_webframe_scrollRecursively): + +2010-05-17 Antti Koivisto + + Reviewed by Kenneth Rohde Christiansen. + + https://bugs.webkit.org/show_bug.cgi?id=39218 + [Qt] Tiled backing store tiles sometimes flicker when exiting a zoom animation + + Tiles sometimes flicker when exiting a zoom animation. This happens as a result + of the visible rectangle being momentarily out of sync. + + Instead of updating the visible rect by explicitly setting it, pull it through + the client and recompute in WebKit the level. + + * Api/qgraphicswebview.cpp: + (QGraphicsWebView::paint): + * WebCoreSupport/ChromeClientQt.cpp: + (WebCore::ChromeClientQt::visibleRectForTiledBackingStore): + * WebCoreSupport/ChromeClientQt.h: + +2010-05-18 Jedrzej Nowacki + + Reviewed by Simon Hausmann. + + Fix QWebHistory serialization. + + Regression was caused by bug 33224. The streaming function + should generate a documentSequenceNumber for all loaded values. + + [Qt] tst_QWebHistory::serialize_2() fails + https://bugs.webkit.org/show_bug.cgi?id=37322 + + * Api/qwebhistory.cpp: + (operator>>): + 2010-05-14 Kent Hansen , Jocelyn Turcotte , Tor Arne Vestbø , Henry Haverinen , Jedrzej Nowacki , Andreas Kling Reviewed by Simon Hausmann. diff --git a/src/3rdparty/webkit/WebKit/qt/WebCoreSupport/ChromeClientQt.cpp b/src/3rdparty/webkit/WebKit/qt/WebCoreSupport/ChromeClientQt.cpp index 9eb10d6..4e742fc 100644 --- a/src/3rdparty/webkit/WebKit/qt/WebCoreSupport/ChromeClientQt.cpp +++ b/src/3rdparty/webkit/WebKit/qt/WebCoreSupport/ChromeClientQt.cpp @@ -559,6 +559,15 @@ bool ChromeClientQt::allowsAcceleratedCompositing() const } #endif + +#if ENABLE(TILED_BACKING_STORE) +IntRect ChromeClientQt::visibleRectForTiledBackingStore() const +{ + if (!platformPageClient()) + return IntRect(); + return enclosingIntRect(FloatRect(platformPageClient()->graphicsItemVisibleRect())); +} +#endif QtAbstractWebPopup* ChromeClientQt::createSelectPopup() { diff --git a/src/3rdparty/webkit/WebKit/qt/WebCoreSupport/ChromeClientQt.h b/src/3rdparty/webkit/WebKit/qt/WebCoreSupport/ChromeClientQt.h index f0a7c8c..a47adf0 100644 --- a/src/3rdparty/webkit/WebKit/qt/WebCoreSupport/ChromeClientQt.h +++ b/src/3rdparty/webkit/WebKit/qt/WebCoreSupport/ChromeClientQt.h @@ -140,6 +140,10 @@ namespace WebCore { virtual bool allowsAcceleratedCompositing() const; #endif +#if ENABLE(TILED_BACKING_STORE) + virtual IntRect visibleRectForTiledBackingStore() const; +#endif + #if ENABLE(TOUCH_EVENTS) virtual void needTouchEvents(bool) { } #endif diff --git a/src/3rdparty/webkit/WebKit/qt/WebCoreSupport/InspectorClientQt.cpp b/src/3rdparty/webkit/WebKit/qt/WebCoreSupport/InspectorClientQt.cpp index 7fabbda..725c5fb 100644 --- a/src/3rdparty/webkit/WebKit/qt/WebCoreSupport/InspectorClientQt.cpp +++ b/src/3rdparty/webkit/WebKit/qt/WebCoreSupport/InspectorClientQt.cpp @@ -88,12 +88,17 @@ void InspectorClientQt::openInspectorFrontend(WebCore::InspectorController*) InspectorClientWebPage* inspectorPage = new InspectorClientWebPage(inspectorView); inspectorView->setPage(inspectorPage); - QUrl inspectorUrl = m_inspectedWebPage->settings()->inspectorUrl(); + QWebInspector* inspector = m_inspectedWebPage->d->getOrCreateInspector(); + // This is a known hook that allows changing the default URL for the + // Web inspector. This is used for SDK purposes. Please keep this hook + // around and don't remove it. + // https://bugs.webkit.org/show_bug.cgi?id=35340 + QUrl inspectorUrl = inspector->property("_q_inspectorUrl").toUrl(); if (!inspectorUrl.isValid()) inspectorUrl = QUrl("qrc:/webkit/inspector/inspector.html"); inspectorView->page()->mainFrame()->load(inspectorUrl); m_inspectedWebPage->d->inspectorFrontend = inspectorView; - m_inspectedWebPage->d->getOrCreateInspector()->d->setFrontend(inspectorView); + inspector->d->setFrontend(inspectorView); inspectorView->page()->d->page->inspectorController()->setInspectorFrontendClient(new InspectorFrontendClientQt(m_inspectedWebPage, inspectorView)); } diff --git a/src/3rdparty/webkit/WebKit/qt/symbian/bwins/QtWebKitu.def b/src/3rdparty/webkit/WebKit/qt/symbian/bwins/QtWebKitu.def index 910ba8f..969defe 100644 --- a/src/3rdparty/webkit/WebKit/qt/symbian/bwins/QtWebKitu.def +++ b/src/3rdparty/webkit/WebKit/qt/symbian/bwins/QtWebKitu.def @@ -625,7 +625,7 @@ EXPORTS ?qt_suspendActiveDOMObjects@@YAXPAVQWebFrame@@@Z @ 624 NONAME ; void qt_suspendActiveDOMObjects(class QWebFrame *) ?qtwebkit_webframe_scrollRecursively@@YA_NPAVQWebFrame@@HH@Z @ 625 NONAME ABSENT ; bool qtwebkit_webframe_scrollRecursively(class QWebFrame *, int, int) ?closeEvent@QWebInspector@@MAEXPAVQCloseEvent@@@Z @ 626 NONAME ; void QWebInspector::closeEvent(class QCloseEvent *) - ?inspectorUrl@QWebSettings@@QBE?AVQUrl@@XZ @ 627 NONAME ; class QUrl QWebSettings::inspectorUrl(void) const + ?inspectorUrl@QWebSettings@@QBE?AVQUrl@@XZ @ 627 NONAME ABSENT ; class QUrl QWebSettings::inspectorUrl(void) const ?isTiledBackingStoreFrozen@QGraphicsWebView@@QBE_NXZ @ 628 NONAME ; bool QGraphicsWebView::isTiledBackingStoreFrozen(void) const ?pageChanged@QWebFrame@@IAEXXZ @ 629 NONAME ; void QWebFrame::pageChanged(void) ?qt_drt_enableCaretBrowsing@@YAXPAVQWebPage@@_N@Z @ 630 NONAME ; void qt_drt_enableCaretBrowsing(class QWebPage *, bool) @@ -646,7 +646,8 @@ EXPORTS ?qtwebkit_webframe_scrollRecursively@@YAXPAVQWebFrame@@HHABVQPoint@@@Z @ 645 NONAME ; void qtwebkit_webframe_scrollRecursively(class QWebFrame *, int, int, class QPoint const &) ?resizesToContents@QGraphicsWebView@@QBE_NXZ @ 646 NONAME ; bool QGraphicsWebView::resizesToContents(void) const ?scrollToAnchor@QWebFrame@@QAEXABVQString@@@Z @ 647 NONAME ; void QWebFrame::scrollToAnchor(class QString const &) - ?setInspectorUrl@QWebSettings@@QAEXABVQUrl@@@Z @ 648 NONAME ; void QWebSettings::setInspectorUrl(class QUrl const &) + ?setInspectorUrl@QWebSettings@@QAEXABVQUrl@@@Z @ 648 NONAME ABSENT ; void QWebSettings::setInspectorUrl(class QUrl const &) ?setResizesToContents@QGraphicsWebView@@QAEX_N@Z @ 649 NONAME ; void QGraphicsWebView::setResizesToContents(bool) ?setTiledBackingStoreFrozen@QGraphicsWebView@@QAEX_N@Z @ 650 NONAME ; void QGraphicsWebView::setTiledBackingStoreFrozen(bool) + ?qtwebkit_webframe_scrollOverflow@@YA_NPAVQWebFrame@@HHABVQPoint@@@Z @ 651 NONAME ; bool qtwebkit_webframe_scrollOverflow(QWebFrame *, int, int, const QPoint&) diff --git a/src/3rdparty/webkit/WebKit/qt/symbian/eabi/QtWebKitu.def b/src/3rdparty/webkit/WebKit/qt/symbian/eabi/QtWebKitu.def index ca462d0..e0f2125 100644 --- a/src/3rdparty/webkit/WebKit/qt/symbian/eabi/QtWebKitu.def +++ b/src/3rdparty/webkit/WebKit/qt/symbian/eabi/QtWebKitu.def @@ -712,11 +712,61 @@ EXPORTS _Z47qt_drt_setDomainRelaxationForbiddenForURLSchemebRK7QString @ 711 NONAME _ZN9QWebFrame11pageChangedEv @ 712 NONAME _ZN9QWebFrame14scrollToAnchorERK7QString @ 713 NONAME - _ZN12QWebSettings15setInspectorUrlERK4QUrl @ 714 NONAME + _ZN12QWebSettings15setInspectorUrlERK4QUrl @ 714 NONAME ABSENT _ZN13QWebInspector10closeEventEP11QCloseEvent @ 715 NONAME _ZN16QGraphicsWebView26setTiledBackingStoreFrozenEb @ 716 NONAME _ZNK16QGraphicsWebView25isTiledBackingStoreFrozenEv @ 717 NONAME _Z18qt_wrt_setViewModeP8QWebPageRK7QString @ 718 NONAME ABSENT _Z19qt_drt_setMediaTypeP9QWebFrameRK7QString @ 719 NONAME _Z26qt_drt_enableCaretBrowsingP8QWebPageb @ 720 NONAME - _ZNK12QWebSettings12inspectorUrlEv @ 721 NONAME + _ZNK12QWebSettings12inspectorUrlEv @ 721 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt19webPageSetGroupNameEP8QWebPageRK7QString @ 722 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt16webPageGroupNameEP8QWebPage @ 723 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt23garbageCollectorCollectEv @ 724 NONAME ABSENT + _Z32qtwebkit_webframe_scrollOverflowP9QWebFrameiiRK6QPoint @ 725 NONAME + _ZN23DumpRenderTreeSupportQt12setMediaTypeEP9QWebFrameRK7QString @ 726 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt13numberOfPagesEP9QWebFrameff @ 727 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt13selectedRangeEP8QWebPage @ 728 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt14clearFrameNameEP9QWebFrame @ 729 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt14pauseAnimationEP9QWebFrameRK7QStringdS4_ @ 730 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt15dumpFrameLoaderEb @ 731 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt16dumpNotificationEb @ 732 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt16isCommandEnabledEP8QWebPageRK7QString @ 733 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt16webInspectorShowEP8QWebPage @ 734 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt17pauseSVGAnimationEP9QWebFrameRK7QStringdS4_ @ 735 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt17webInspectorCloseEP8QWebPage @ 736 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt17workerThreadCountEv @ 737 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt18hasDocumentElementEP9QWebFrame @ 738 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt20dumpEditingCallbacksEb @ 739 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt21markerTextForListItemERK11QWebElement @ 740 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt22javaScriptObjectsCountEv @ 741 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt23setCaretBrowsingEnabledEP8QWebPageb @ 742 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt24executeCoreCommandByNameEP8QWebPageRK7QStringS4_ @ 743 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt21dumpSetAcceptsEditingEb @744 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt22resumeActiveDOMObjectsEP9QWebFrame @745 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt23suspendActiveDOMObjectsEP9QWebFrame @746 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt24numberOfActiveAnimationsEP9QWebFrame @747 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt24pageNumberForElementByIdEP9QWebFrameRK7QStringff @748 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt25dumpResourceLoadCallbacksEb @749 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt25pauseTransitionOfPropertyEP9QWebFrameRK7QStringdS4_ @750 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt25setFrameFlatteningEnabledEP8QWebPageb @751 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt25webInspectorExecuteScriptEP8QWebPagelRK7QString @752 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt25whiteListAccessFromOriginERK7QStringS2_S2_b @753 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt26counterValueForElementByIdEP9QWebFrameRK7QString @754 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt26firstRectForCharacterRangeEP8QWebPageii @755 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt26overwritePluginDirectoriesEv @756 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt27resetOriginAccessWhiteListsEv @757 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt27setSmartInsertDeleteEnabledEP8QWebPageb @758 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt27setTimelineProfilingEnabledEP8QWebPageb @759 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt28setDumpRenderTreeModeEnabledEb @760 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt29dumpResourceLoadCallbacksPathERK7QString @761 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt29evaluateScriptInIsolatedWorldEP9QWebFrameiRK7QString @762 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt29setJavaScriptProfilingEnabledEP9QWebFrameb @763 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt29setWillSendRequestReturnsNullEb @764 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt30setWillSendRequestClearHeadersERK11QStringList @765 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt33computedStyleIncludingVisitedInfoERK11QWebElement @766 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt34setSelectTrailingWhitespaceEnabledEP8QWebPageb @767 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt39elementDoesAutoCompleteForElementWithIdEP9QWebFrameRK7QString @768 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt39setWillSendRequestReturnsNullOnRedirectEb @769 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt40garbageCollectorCollectOnAlternateThreadEb @770 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt40setDomainRelaxationForbiddenForURLSchemeEbRK7QString @771 NONAME ABSENT diff --git a/src/3rdparty/webkit/WebKit/qt/tests/qwebframe/tst_qwebframe.cpp b/src/3rdparty/webkit/WebKit/qt/tests/qwebframe/tst_qwebframe.cpp index bea7a67..c53a42d 100644 --- a/src/3rdparty/webkit/WebKit/qt/tests/qwebframe/tst_qwebframe.cpp +++ b/src/3rdparty/webkit/WebKit/qt/tests/qwebframe/tst_qwebframe.cpp @@ -600,7 +600,12 @@ private slots: void setHtmlWithBaseURL(); void ipv6HostEncoding(); void metaData(); +#if !defined(Q_WS_MAEMO_5) + // as maemo 5 does not use QComboBoxes to implement the popups + // this test does not make sense for it. void popupFocus(); +#endif + void inputFieldFocus(); void hitTestContent(); void jsByteArray(); void ownership(); @@ -686,13 +691,13 @@ private: QWebView* m_view; QWebPage* m_page; MyQObject* m_myObject; - QWebView* m_popupTestView; - int m_popupTestPaintCount; + QWebView* m_inputFieldsTestView; + int m_inputFieldTestPaintCount; }; tst_QWebFrame::tst_QWebFrame() : sTrue("true"), sFalse("false"), sUndefined("undefined"), sArray("array"), sFunction("function"), sError("error"), - sString("string"), sObject("object"), sNumber("number"), m_popupTestView(0), m_popupTestPaintCount(0) + sString("string"), sObject("object"), sNumber("number"), m_inputFieldsTestView(0), m_inputFieldTestPaintCount(0) { } @@ -702,10 +707,10 @@ tst_QWebFrame::~tst_QWebFrame() bool tst_QWebFrame::eventFilter(QObject* watched, QEvent* event) { - // used on the popupFocus test - if (watched == m_popupTestView) { + // used on the inputFieldFocus test + if (watched == m_inputFieldsTestView) { if (event->type() == QEvent::Paint) - m_popupTestPaintCount++; + m_inputFieldTestPaintCount++; } return QObject::eventFilter(watched, event); } @@ -2549,6 +2554,7 @@ void tst_QWebFrame::metaData() QCOMPARE(metaData.value("nonexistant"), QString()); } +#if !defined(Q_WS_MAEMO_5) void tst_QWebFrame::popupFocus() { QWebView view; @@ -2580,16 +2586,27 @@ void tst_QWebFrame::popupFocus() // hide the popup and check if focus is on the page combo->hidePopup(); QTRY_VERIFY(view.hasFocus() && !combo->view()->hasFocus()); // Focus should be back on the WebView +} +#endif + +void tst_QWebFrame::inputFieldFocus() +{ + QWebView view; + view.setHtml(""); + view.resize(400, 100); + view.show(); + view.setFocus(); + QTRY_VERIFY(view.hasFocus()); // double the flashing time, should at least blink once already int delay = qApp->cursorFlashTime() * 2; // focus the lineedit and check if it blinks - QTest::mouseClick(&view, Qt::LeftButton, 0, QPoint(200, 25)); - m_popupTestView = &view; + QTest::mouseClick(&view, Qt::LeftButton, 0, QPoint(25, 25)); + m_inputFieldsTestView = &view; view.installEventFilter( this ); QTest::qWait(delay); - QVERIFY2(m_popupTestPaintCount >= 3, + QVERIFY2(m_inputFieldTestPaintCount >= 3, "The input field should have a blinking caret"); } diff --git a/src/3rdparty/webkit/WebKit/qt/tests/qwebpage/tst_qwebpage.cpp b/src/3rdparty/webkit/WebKit/qt/tests/qwebpage/tst_qwebpage.cpp index 12fb9b3..52dc6bb 100644 --- a/src/3rdparty/webkit/WebKit/qt/tests/qwebpage/tst_qwebpage.cpp +++ b/src/3rdparty/webkit/WebKit/qt/tests/qwebpage/tst_qwebpage.cpp @@ -1492,6 +1492,98 @@ void tst_QWebPage::inputMethods() QCOMPARE(value, QString("QtWebKit")); #endif + // Cancel current composition first + inputAttributes << QInputMethodEvent::Attribute(QInputMethodEvent::Selection, 0, 0, QVariant()); + QInputMethodEvent eventSelection4("", inputAttributes); + page->event(&eventSelection4); + + // START - Tests for Selection when the Editor is NOT in Composition mode + + // LEFT to RIGHT selection + // Deselect the selection by sending MouseButtonPress events + // This moves the current cursor to the end of the text + page->event(&evpres); + page->event(&evrel); + + //Move to the start of the line + page->triggerAction(QWebPage::MoveToStartOfLine); + + QKeyEvent keyRightEventPress(QEvent::KeyPress, Qt::Key_Right, Qt::NoModifier); + QKeyEvent keyRightEventRelease(QEvent::KeyRelease, Qt::Key_Right, Qt::NoModifier); + + //Move 2 characters RIGHT + for (int j = 0; j < 2; ++j) { + page->event(&keyRightEventPress); + page->event(&keyRightEventRelease); + } + + //Select to the end of the line + page->triggerAction(QWebPage::SelectEndOfLine); + + //ImAnchorPosition QtWebKit + variant = page->inputMethodQuery(Qt::ImAnchorPosition); + anchorPosition = variant.toInt(); + QCOMPARE(anchorPosition, 2); + + //ImCursorPosition + variant = page->inputMethodQuery(Qt::ImCursorPosition); + cursorPosition = variant.toInt(); + QCOMPARE(cursorPosition, 8); + + //ImCurrentSelection + variant = page->inputMethodQuery(Qt::ImCurrentSelection); + selectionValue = variant.value(); + QCOMPARE(selectionValue, QString("WebKit")); + + //RIGHT to LEFT selection + //Deselect the selection (this moves the current cursor to the end of the text) + page->event(&evpres); + page->event(&evrel); + + //ImAnchorPosition + variant = page->inputMethodQuery(Qt::ImAnchorPosition); + anchorPosition = variant.toInt(); + QCOMPARE(anchorPosition, 8); + + //ImCursorPosition + variant = page->inputMethodQuery(Qt::ImCursorPosition); + cursorPosition = variant.toInt(); + QCOMPARE(cursorPosition, 8); + + //ImCurrentSelection + variant = page->inputMethodQuery(Qt::ImCurrentSelection); + selectionValue = variant.value(); + QCOMPARE(selectionValue, QString("")); + + QKeyEvent keyLeftEventPress(QEvent::KeyPress, Qt::Key_Left, Qt::NoModifier); + QKeyEvent keyLeftEventRelease(QEvent::KeyRelease, Qt::Key_Left, Qt::NoModifier); + + //Move 2 characters LEFT + for (int i = 0; i < 2; ++i) { + page->event(&keyLeftEventPress); + page->event(&keyLeftEventRelease); + } + + //Select to the start of the line + page->triggerAction(QWebPage::SelectStartOfLine); + + //ImAnchorPosition + variant = page->inputMethodQuery(Qt::ImAnchorPosition); + anchorPosition = variant.toInt(); + QCOMPARE(anchorPosition, 6); + + //ImCursorPosition + variant = page->inputMethodQuery(Qt::ImCursorPosition); + cursorPosition = variant.toInt(); + QCOMPARE(cursorPosition, 0); + + //ImCurrentSelection + variant = page->inputMethodQuery(Qt::ImCurrentSelection); + selectionValue = variant.value(); + QCOMPARE(selectionValue, QString("QtWebK")); + + //END - Tests for Selection when the Editor is not in Composition mode + //ImhHiddenText QMouseEvent evpresPassword(QEvent::MouseButtonPress, inputs.at(1).geometry().center(), Qt::LeftButton, Qt::NoButton, Qt::NoModifier); page->event(&evpresPassword); -- cgit v0.12 From 7c33aef69f59f92c9efbe43368aba33d6391be0c Mon Sep 17 00:00:00 2001 From: Thiago Macieira Date: Tue, 25 May 2010 10:03:00 +0200 Subject: Revert "tst_bic: make it possible to test for cross-compilation" This reverts commit b5f1a55c3112f46f27e2306fac7d93bde96152e6. --- tests/auto/bic/gen.sh | 2 +- tests/auto/bic/tst_bic.cpp | 12 +++--------- 2 files changed, 4 insertions(+), 10 deletions(-) diff --git a/tests/auto/bic/gen.sh b/tests/auto/bic/gen.sh index 7bcad24..8005880 100755 --- a/tests/auto/bic/gen.sh +++ b/tests/auto/bic/gen.sh @@ -56,7 +56,7 @@ fi for module in $modules; do echo "#include <$module/$module>" >test.cpp - ${CXX-g++} $CXXFLAGS -c -I$QTDIR/include -DQT_NO_STL -DQT3_SUPPORT -fdump-class-hierarchy test.cpp + g++ -c -I$QTDIR/include -DQT_NO_STL -DQT3_SUPPORT -fdump-class-hierarchy test.cpp mv test.cpp*.class $module.$2.txt # Remove template classes from the output perl -pi -e '$skip = 1 if (/^(Class|Vtable).* Date: Tue, 25 May 2010 10:46:39 +0200 Subject: Fix architecture detection on GNU/Hurd. On GNU/Hurd, `uname -m` returns a string like "i686-AT386", which is not recognized. Instead, do a specific mangling on "GNU" host, the same done by autotools' config.guess, so the architecture can be identified and the proper atomic primitives used. Merge-request: 638 Reviewed-by: Oswald Buddenhagen --- configure | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/configure b/configure index f2023b8..0111f51 100755 --- a/configure +++ b/configure @@ -2755,6 +2755,17 @@ fi if [ -z "${CFG_HOST_ARCH}" ]; then case "$UNAME_SYSTEM:$UNAME_RELEASE:$UNAME_MACHINE" in + GNU:*:*) + CFG_HOST_ARCH=`echo ${UNAME_MACHINE} | sed -e 's,[-/].*$,,'` + case "$CFG_HOST_ARCH" in + i?86) + CFG_HOST_ARCH=i386 + ;; + esac + if [ "$OPT_VERBOSE" = "yes" ]; then + echo " GNU/Hurd ($CFG_HOST_ARCH)" + fi + ;; IRIX*:*:*) CFG_HOST_ARCH=`uname -p` if [ "$OPT_VERBOSE" = "yes" ]; then -- cgit v0.12 From d9e41640dcbd7a5f5f9d7afb1024e1c4f6672f6e Mon Sep 17 00:00:00 2001 From: John Brooks Date: Tue, 25 May 2010 10:51:39 +0200 Subject: Added MSVC 2010 project files to .gitignore Merge-request: 2394 Reviewed-by: Oswald Buddenhagen --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 04f6e7e..4e3b130 100644 --- a/.gitignore +++ b/.gitignore @@ -131,6 +131,8 @@ qrc_*.cpp *.vcproj *vcproj.*.*.user *.ncb +*.vcxproj +*.vcxproj.filters # MinGW generated files *.Debug -- cgit v0.12 From d7d0aaf8bea4e6a5c4c0500a46417d7c788f489a Mon Sep 17 00:00:00 2001 From: Thiago Macieira Date: Tue, 25 May 2010 10:53:24 +0200 Subject: Fix compilation of qegl.cpp after the last merge --- src/gui/egl/qegl.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gui/egl/qegl.cpp b/src/gui/egl/qegl.cpp index 8b20a9e..671a568 100644 --- a/src/gui/egl/qegl.cpp +++ b/src/gui/egl/qegl.cpp @@ -64,7 +64,7 @@ public: static void ref() { contexts.ref(); } static void deref() { if (!contexts.deref()) { - eglTerminate(QEglContext::display()); + eglTerminate(QEgl::display()); displayOpen = 0; } } @@ -535,6 +535,7 @@ static _eglDestroyImageKHR qt_eglDestroyImageKHR = 0; EGLDisplay QEgl::display() { + static EGLDisplay dpy = EGL_NO_DISPLAY; if (!QEglContextTracker::displayOpened()) { dpy = eglGetDisplay(nativeDisplay()); QEglContextTracker::setDisplayOpened(); -- cgit v0.12 From 4fe5f175f07212194a8aa64c9d4622f8b8c44e71 Mon Sep 17 00:00:00 2001 From: Jani Hautakangas Date: Tue, 25 May 2010 11:54:28 +0300 Subject: Fix for QRuntimePixmapData serial number setting. Generate serial number in the same way as X11 and Mac. Fixes OSX x64 build problem. Reviewed-by: Jason Barron --- src/gui/painting/qgraphicssystem_runtime.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/gui/painting/qgraphicssystem_runtime.cpp b/src/gui/painting/qgraphicssystem_runtime.cpp index ceb16ed..1c5d944 100644 --- a/src/gui/painting/qgraphicssystem_runtime.cpp +++ b/src/gui/painting/qgraphicssystem_runtime.cpp @@ -50,6 +50,8 @@ QT_BEGIN_NAMESPACE +static int qt_pixmap_serial = 0; + #define READBACK(f) \ m_graphicsSystem->decreaseMemoryUsage(memoryUsage()); \ f \ @@ -89,7 +91,7 @@ private: QRuntimePixmapData::QRuntimePixmapData(const QRuntimeGraphicsSystem *gs, PixelType type) : QPixmapData(type, RuntimeClass), m_graphicsSystem(gs) { - setSerialNumber((int)this); + setSerialNumber(++qt_pixmap_serial); } QRuntimePixmapData::~QRuntimePixmapData() -- cgit v0.12 From 9a3d28dda6ddc1b275de3e3256462870d9078e21 Mon Sep 17 00:00:00 2001 From: Fathi Boudra Date: Tue, 25 May 2010 11:52:45 +0200 Subject: QTBUG-5955: Qt fails to build on alpha architecture - add alpha platform support based on JavaScriptCore from src/3rdparty/webkit copy. - fix invalid type conversions on alpha architecture. Merge-request: 640 Reviewed-by: Oswald Buddenhagen --- src/3rdparty/javascriptcore/JavaScriptCore/wtf/Platform.h | 7 ++++++- src/corelib/arch/qatomic_alpha.h | 12 ++++++------ 2 files changed, 12 insertions(+), 7 deletions(-) diff --git a/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Platform.h b/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Platform.h index be74e2a..5e15480 100644 --- a/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Platform.h +++ b/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Platform.h @@ -317,6 +317,11 @@ #define WTF_PLATFORM_X86_64 1 #endif +/* PLATFORM(ALPHA) */ +#if defined(__alpha__) +#define WTF_PLATFORM_ALPHA 1 +#endif + /* PLATFORM(SH4) */ #if defined(__SH4__) #define WTF_PLATFORM_SH4 1 @@ -720,7 +725,7 @@ #if !defined(WTF_USE_JSVALUE64) && !defined(WTF_USE_JSVALUE32) && !defined(WTF_USE_JSVALUE32_64) #if PLATFORM(X86_64) && (PLATFORM(DARWIN) || PLATFORM(LINUX) || PLATFORM(SOLARIS) || PLATFORM(HPUX)) #define WTF_USE_JSVALUE64 1 -#elif (PLATFORM(IA64) && !PLATFORM(IA64_32)) || PLATFORM(SPARC64) +#elif (PLATFORM(IA64) && !PLATFORM(IA64_32)) || PLATFORM(SPARC64) || PLATFORM(ALPHA) #define WTF_USE_JSVALUE64 1 #elif PLATFORM(AIX64) #define WTF_USE_JSVALUE64 1 diff --git a/src/corelib/arch/qatomic_alpha.h b/src/corelib/arch/qatomic_alpha.h index 5d0b2b6..6989c25 100644 --- a/src/corelib/arch/qatomic_alpha.h +++ b/src/corelib/arch/qatomic_alpha.h @@ -367,7 +367,7 @@ Q_INLINE_TEMPLATE bool QBasicAtomicPointer::testAndSetRelease(T *expectedValu template Q_INLINE_TEMPLATE T *QBasicAtomicPointer::fetchAndStoreRelaxed(T *newValue) { - register void *old, *tmp; + register T *old, *tmp; asm volatile("1:\n" "ldq_l %0,%2\n" /* old=*ptr; */ "mov %3,%1\n" /* tmp=newval; */ @@ -385,7 +385,7 @@ Q_INLINE_TEMPLATE T *QBasicAtomicPointer::fetchAndStoreRelaxed(T *newValue) template Q_INLINE_TEMPLATE T *QBasicAtomicPointer::fetchAndStoreAcquire(T *newValue) { - register void *old, *tmp; + register T *old, *tmp; asm volatile("1:\n" "ldq_l %0,%2\n" /* old=*ptr; */ "mov %3,%1\n" /* tmp=newval; */ @@ -404,7 +404,7 @@ Q_INLINE_TEMPLATE T *QBasicAtomicPointer::fetchAndStoreAcquire(T *newValue) template Q_INLINE_TEMPLATE T *QBasicAtomicPointer::fetchAndStoreRelease(T *newValue) { - register void *old, *tmp; + register T *old, *tmp; asm volatile("mb\n" "1:\n" "ldq_l %0,%2\n" /* old=*ptr; */ @@ -423,7 +423,7 @@ Q_INLINE_TEMPLATE T *QBasicAtomicPointer::fetchAndStoreRelease(T *newValue) template Q_INLINE_TEMPLATE T *QBasicAtomicPointer::fetchAndAddRelaxed(qptrdiff valueToAdd) { - register void *old, *tmp; + register T *old, *tmp; asm volatile("1:\n" "ldq_l %0,%2\n" /* old=*ptr; */ "addq %0,%3,%1\n"/* tmp=old+value; */ @@ -441,7 +441,7 @@ Q_INLINE_TEMPLATE T *QBasicAtomicPointer::fetchAndAddRelaxed(qptrdiff valueTo template Q_INLINE_TEMPLATE T *QBasicAtomicPointer::fetchAndAddAcquire(qptrdiff valueToAdd) { - register void *old, *tmp; + register T *old, *tmp; asm volatile("1:\n" "ldq_l %0,%2\n" /* old=*ptr; */ "addq %0,%3,%1\n"/* tmp=old+value; */ @@ -460,7 +460,7 @@ Q_INLINE_TEMPLATE T *QBasicAtomicPointer::fetchAndAddAcquire(qptrdiff valueTo template Q_INLINE_TEMPLATE T *QBasicAtomicPointer::fetchAndAddRelease(qptrdiff valueToAdd) { - register void *old, *tmp; + register T *old, *tmp; asm volatile("mb\n" "1:\n" "ldq_l %0,%2\n" /* old=*ptr; */ -- cgit v0.12 From c6d92ebe915e4ed857aca5130e514c6ec81dd33f Mon Sep 17 00:00:00 2001 From: Martin Smith Date: Tue, 25 May 2010 12:09:14 +0200 Subject: qdoc: Improved class index page. The classes.html page will look good with the correct css. --- doc/src/declarative/examples.qdoc | 5 +- doc/src/getting-started/examples.qdoc | 570 ++-------------------------------- tools/qdoc3/htmlgenerator.cpp | 193 ++++++------ 3 files changed, 120 insertions(+), 648 deletions(-) diff --git a/doc/src/declarative/examples.qdoc b/doc/src/declarative/examples.qdoc index 6e0426c..15d7652 100644 --- a/doc/src/declarative/examples.qdoc +++ b/doc/src/declarative/examples.qdoc @@ -42,12 +42,9 @@ /*! \page qdeclarativeexamples.html \title QML Examples and Demos + \brief Building UI's with QML \ingroup all-examples -\previouspage Graphics View Examples -\contentspage Qt Examples -\nextpage Painting Examples - \section1 Running the examples You can find many simple examples in the \c examples/declarative diff --git a/doc/src/getting-started/examples.qdoc b/doc/src/getting-started/examples.qdoc index 61fa1cd..a3393dd 100644 --- a/doc/src/getting-started/examples.qdoc +++ b/doc/src/getting-started/examples.qdoc @@ -76,423 +76,11 @@ */ /*! - \page examples.html - \title Qt Examples - \brief The example programs provided with Qt. - - \previouspage Tutorials - \contentspage How to Learn Qt - \nextpage Qt Demonstrations - - Qt is supplied with a variety of examples that cover almost every aspect - of development. They are not all designed to be impressive when you run - them, but their source code is carefully written to show good Qt - programming practices. You can launch any of these programs from the - \l{Examples and Demos Launcher} application. - - These examples are ordered by functional area, but many examples often - use features from many parts of Qt to highlight one area in particular. - If you are new to Qt, you should probably start by going through the - \l{Tutorials} before you have a look at the - \l{mainwindows/application}{Application} example. - - In addition to the examples and the tutorial, Qt includes a - \l{Qt Demonstrations}{selection of demos} that deliberately show off - Qt's features. You might want to look at these as well. - - \section1 \l{Widgets Examples}{Widgets} - \beginfloatleft - \l{Widgets Examples}{\inlineimage widget-examples.png - } - - \endfloat - Qt comes with a large range of standard widgets that users of modern - applications have come to expect. You can also develop your own custom - widgets and controls, and use them alongside standard widgets. - - It is even possible to provide custom styles and themes for widgets that can - be used to change the appearance of standard widgets and appropriately - written custom widgets. - - \clearfloat - \section1 \l{Dialog Examples}{Dialogs} - \beginfloatleft - \l{Dialog Examples}{\inlineimage dialog-examples.png - } - - \endfloat - Qt includes standard dialogs for many common operations, such as file - selection, printing, and color selection. - - Custom dialogs can also be created for specialized modal or modeless - interactions with users. - - \clearfloat - \section1 \l{Main Window Examples}{Main Windows} - \beginfloatleft - \l{Main Window Examples}{\inlineimage mainwindow-examples.png - } - - \endfloat - All the standard features of application main windows are provided by Qt. - - Main windows can have pull down menus, tool bars, and dock windows. These - separate forms of user input are unified in an integrated action system that - also supports keyboard shortcuts and accelerator keys in menu items. - - \clearfloat - \section1 \l{Layout Examples}{Layouts} - \beginfloatleft - \l{Layout Examples}{\inlineimage layout-examples.png - } - - \endfloat - Qt uses a layout-based approach to widget management. Widgets are arranged in - the optimal positions in windows based on simple layout rules, leading to a - consistent look and feel. - - Custom layouts can be used to provide more control over the positions and - sizes of child widgets. - - \clearfloat - \section1 \l{Item Views Examples}{Item Views} - \beginfloatleft - \l{Item Views Examples}{\inlineimage itemview-examples.png - } - - \endfloat - Item views are widgets that typically display data sets. Qt 4's model/view - framework lets you handle large data sets by separating the underlying data - from the way it is represented to the user, and provides support for - customized rendering through the use of delegates. - - \clearfloat - \section1 \l{Graphics View Examples}{Graphics View} - \beginfloatleft - \l{Graphics View Examples}{\inlineimage graphicsview-examples.png - } - - \endfloat - Qt is provided with a comprehensive canvas through the GraphicsView - classes. - - \clearfloat - \section1 \l{QML Examples and Demos}{Declarative} - \beginfloatleft - \l{QML Examples and Demos}{\inlineimage declarative-examples.png - } - - \endfloat - The Qt Declarative module provides a declarative framework for building - highly dynamic, custom user interfaces. - - \clearfloat - \section1 \l{Painting Examples}{Painting} - \beginfloatleft - \l{Painting Examples}{\inlineimage painting-examples.png - } - - \endfloat - Qt's painting system is able to render vector graphics, images, and outline - font-based text with sub-pixel accuracy accuracy using anti-aliasing to - improve rendering quality. - - \clearfloat - \section1 \l{Rich Text Examples}{Rich Text} - \beginfloatleft - \l{Rich Text Examples}{\inlineimage richtext-examples.png - } - - \endfloat - Qt provides powerful document-oriented rich text engine that supports Unicode - and right-to-left scripts. Documents can be manipulated using a cursor-based - API, and their contents can be imported and exported as both HTML and in a - custom XML format. - - \clearfloat - \section1 \l{Desktop Examples}{Desktop} - \beginfloatleft - \l{Desktop Examples}{\inlineimage desktop-examples.png - } - - \endfloat - Qt provides features to enable applications to integrate with the user's - preferred desktop environment. - - Features such as system tray icons, access to the desktop widget, and - support for desktop services can be used to improve the appearance of - applications and take advantage of underlying desktop facilities. - - \clearfloat - \section1 \l{Drag and Drop Examples}{Drag and Drop} - \beginfloatleft - \l{Drag and Drop Examples}{\inlineimage draganddrop-examples.png - } - - \endfloat - Qt supports native drag and drop on all platforms via an extensible - MIME-based system that enables applications to send data to each other in the - most appropriate formats. - - Drag and drop can also be implemented for internal use by applications. - - \clearfloat - \section1 \l{Threading and Concurrent Programming Examples}{Threading and Concurrent Programming} - \beginfloatleft - \l{Threading and Concurrent Programming Examples}{\inlineimage thread-examples.png - } - - \endfloat - Qt 4 makes it easier than ever to write multithreaded applications. More - classes have been made usable from non-GUI threads, and the signals and slots - mechanism can now be used to communicate between threads. - - The QtConcurrent namespace includes a collection of classes and functions - for straightforward concurrent programming. - - \clearfloat - \section1 \l{Tools Examples}{Tools} - \beginfloatleft - \l{Tools Examples}{\inlineimage tool-examples.png - } - - \endfloat - Qt is equipped with a range of capable tool classes, from containers and - iterators to classes for string handling and manipulation. - - Other classes provide application infrastructure support, handling plugin - loading and managing configuration files. - - \clearfloat - \section1 \l{Network Examples}{Network} - \beginfloatleft - \l{Network Examples}{\inlineimage network-examples.png - } - - \endfloat - Qt is provided with an extensive set of network classes to support both - client-based and server side network programming. - - \clearfloat - \section1 \l{Inter-Process Communication Examples}{Inter-Process Communication} - \beginfloatleft - \l{Inter-Process Communication Examples}{\inlineimage ipc-examples.png - } - - \endfloat - Simple, lightweight inter-process communication can be performed using shared - memory and local sockets. - - \clearfloat - \section1 \l{OpenGL Examples}{OpenGL} and \l{OpenVG Examples}{OpenVG} Examples - \beginfloatleft - \l{OpenGL Examples}{\inlineimage opengl-examples.png - } - - \endfloat - Qt provides support for integration with OpenGL implementations on all - platforms, giving developers the opportunity to display hardware accelerated - 3D graphics alongside a more conventional user interface. - - Qt provides support for integration with OpenVG implementations on - platforms with suitable drivers. - - \clearfloat - \section1 \l{Multimedia Examples}{Multimedia Framework} - \beginfloatleft - \l{Multimedia Examples}{\inlineimage phonon-examples.png - } - - \endfloat - Qt provides low-level audio support on linux,windows and mac platforms by default and - an audio plugin API to allow developers to implement there own audio support for - custom devices and platforms. - - The Phonon Multimedia Framework brings multimedia support to Qt applications. - - \clearfloat - \section1 \l{SQL Examples}{SQL} - \beginfloatleft - \l{SQL Examples}{\inlineimage sql-examples.png - } - - \endfloat - Qt provides extensive database interoperability, with support for products - from both open source and proprietary vendors. - - SQL support is integrated with Qt's model/view architecture, making it easier - to provide GUI integration for your database applications. - - \clearfloat - \section1 \l{XML Examples}{XML} - \beginfloatleft - \l{XML Examples}{\inlineimage xml-examples.png - } - - \endfloat - XML parsing and handling is supported through SAX and DOM compliant APIs - as well as streaming classes. - - The XQuery/XPath and XML Schema engines in the QtXmlPatterns modules - provide classes for querying XML files and custom data models. - - \clearfloat - \section1 \l{Qt Designer Examples}{Qt Designer} - \beginfloatleft - \l{Qt Designer Examples}{\inlineimage designer-examples.png - } - - \endfloat - Qt Designer is a capable graphical user interface designer that lets you - create and configure forms without writing code. GUIs created with - Qt Designer can be compiled into an application or created at run-time. - - \clearfloat - \section1 \l{UiTools Examples}{UiTools} - \beginfloatleft - \l{UiTools Examples}{\inlineimage uitools-examples.png - } - - \endfloat - User interfaces created with Qt Designer can be loaded and displayed at - run-time using the facilities of the QtUiTools module without the need - to generate code in advance. - - \clearfloat - \section1 \l{Qt Linguist Examples}{Qt Linguist} - \beginfloatleft - \l{Qt Linguist Examples}{\inlineimage linguist-examples.png - } - - \endfloat - Internationalization is a core feature of Qt. - - \clearfloat - \section1 \l{Qt Script Examples}{Qt Script} - \beginfloatleft - \l{Qt Script Examples}{\inlineimage qtscript-examples.png - } - - \endfloat - Qt is provided with a powerful embedded scripting environment through the QtScript - classes. - - \clearfloat - \section1 \l{WebKit Examples}{WebKit} - \beginfloatleft - \l{WebKit Examples}{\inlineimage webkit-examples.png - } - - \endfloat - Qt provides an integrated Web browser component based on WebKit, the popular - open source browser engine. - - \clearfloat - \section1 \l{Help System Examples}{Help System} - \beginfloatleft - \l{Help System Examples}{\inlineimage assistant-examples.png - } - - \endfloat - Support for interactive help is provided by the Qt Assistant application. - Developers can take advantages of the facilities it offers to display - specially-prepared documentation to users of their applications. - - \clearfloat - \section1 \l{State Machine Examples}{State Machine} - \beginfloatleft - \l{State Machine Examples}{\inlineimage statemachine-examples.png - } - - \endfloat - Qt provides a powerful hierarchical finite state machine through the Qt State - Machine classes. - - \clearfloat - \section1 \l{Animation Framework Examples}{Animation Framework} - \beginfloatleft - \l{Animation Framework Examples}{\inlineimage animation-examples.png - } - - \endfloat - These examples show to to use the \l{The Animation Framework}{animation framework} - to build highly animated, high-performance GUIs. - - \clearfloat - \section1 \l{Multi-Touch Examples}{Multi-Touch Framework} - \beginfloatleft - \l{Multi-Touch Examples}{\inlineimage multitouch-examples.png - } - - \endfloat - Support for multi-touch input makes it possible for developers to create - extensible and intuitive user interfaces. - - \clearfloat - \section1 \l{Gestures Examples}{Gestures} - \beginfloatleft - \l{Gestures Examples}{\inlineimage gestures-examples.png - } - - \endfloat - Applications can be written to respond to gestures as a natural input method. - These examples show how to enable support for standard and custom gestures in - applications. - - \clearfloat - \section1 \l{D-Bus Examples}{D-Bus} - \beginfloatleft - \l{D-Bus Examples}{\inlineimage dbus-examples.png - } - - \endfloat - Systems with limited resources, specialized hardware, and small - screens require special attention. - - \clearfloat - \section1 \l{Qt for Embedded Linux Examples}{Qt for Embedded Linux} - \beginfloatleft - \l{Qt for Embedded Linux Examples}{\inlineimage qt-embedded-examples.png - } - - \endfloat - D-Bus is an inter-process communication protocol for Unix/Linux systems. - These examples demonstrate how to write application that communicate with - each other. - - \clearfloat - \section1 \l{ActiveQt Examples}{ActiveQt} - \beginfloatleft - \l{ActiveQt Examples}{\inlineimage activeqt-examples.png - } - - \endfloat - These examples demonstrate how to write ActiveX controls and control servers - with Qt, and how to use ActiveX controls and COM objects in a Qt application. - - \clearfloat - \section1 \l{Qt Quarterly}{Qt Quarterly} - \beginfloatleft - \l{Qt Quarterly}{\inlineimage qq-thumbnail.png - } - - \endfloat - One more valuable source for examples and explanations of Qt - features is the archive of \l{Qt Quarterly}, a newsletter for - Qt developers. - - \clearfloat -*/ - -/*! \page examples-widgets.html - \title Widgets Examples + \title Widget Examples \ingroup all-examples \brief Lots of examples of how to use different kinds of widgets. - \contentspage Qt Examples - \nextpage Dialog Examples - \image widget-examples.png Qt comes with a large range of standard widgets that users of modern @@ -541,10 +129,6 @@ \title Dialog Examples \brief Using Qt's standard dialogs and building and using custom dialogs. - \previouspage Widgets Examples - \contentspage Qt Examples - \nextpage Main Window Examples - \image dialog-examples.png Qt includes standard dialogs for many common operations, such as file @@ -573,10 +157,6 @@ \title Main Window Examples \brief Building applications around a main window. - \previouspage Dialog Examples - \contentspage Qt Examples - \nextpage Layout Examples - \image mainwindow-examples.png All the standard features of application main windows are provided by Qt. @@ -601,11 +181,7 @@ \page examples-layouts.html \ingroup all-examples \title Layout Examples - Using Qt's layout-based approach to widget management. - - \previouspage Main Window Examples - \contentspage Qt Examples - \nextpage Item Views Examples + \brief Using Qt's layout-based approach to widget management. \image layout-examples.png @@ -632,10 +208,6 @@ \title Item Views Examples \brief Using the model/view design pattern to separate presentation from data. - \previouspage Layout Examples - \contentspage Qt Examples - \nextpage Graphics View Examples - \image itemview-examples.png Item views are widgets that typically display data sets. Qt 4's model/view @@ -672,10 +244,6 @@ \title Graphics View Examples \brief Using Qt to manage and interact with a large (potentially) number of graphics items. - \previouspage Item Views Examples - \contentspage Qt Examples - \nextpage QML Examples and Demos - \image graphicsview-examples.png Qt is provided with a comprehensive canvas through the GraphicsView @@ -718,10 +286,7 @@ \page examples-painting.html \ingroup all-examples \title Painting Examples - - \previouspage QML Examples and Demos - \contentspage Qt Examples - \nextpage Rich Text Examples + \brief How to use the Qt painting system \image painting-examples.png @@ -751,10 +316,7 @@ \page examples-richtext.html \ingroup all-examples \title Rich Text Examples - - \previouspage Painting Examples - \contentspage Qt Examples - \nextpage Desktop Examples + \brief Using the document-oriented rich text engine \image richtext-examples.png @@ -775,10 +337,7 @@ \page examples-desktop.html \ingroup all-examples \title Desktop Examples - - \previouspage Rich Text Examples - \contentspage Qt Examples - \nextpage Drag and Drop Examples + \brief Integrating your Qt application with your favorite desktop \image desktop-examples.png @@ -798,11 +357,8 @@ /*! \page examples-draganddrop.html \ingroup all-examples - \title Drag and Drop Examples - - \previouspage Desktop Examples - \contentspage Qt Examples - \nextpage Threading and Concurrent Programming Examples + \title Drag & Drop Examples + \brief How to access your platform's native darg & drop functionality \image draganddrop-examples.png @@ -828,10 +384,7 @@ \page examples-threadandconcurrent.html \ingroup all-examples \title Threading and Concurrent Programming Examples - - \previouspage Drag and Drop Examples - \contentspage Qt Examples - \nextpage Tools Examples + \brief Threading and concurrent programming in Qt \image thread-examples.png @@ -869,10 +422,7 @@ \page examples.tools.html \ingroup all-examples \title Tools Examples - - \previouspage Threading and Concurrent Programming Examples - \contentspage Qt Examples - \nextpage Network Examples + \brief Using Qt's containers, iterators, and other tool classes \image tool-examples.png @@ -908,10 +458,7 @@ \page examples-network.html \ingroup all-examples \title Network Examples - - \previouspage Tools Examples - \contentspage Qt Examples - \nextpage Inter-Process Communication Examples + \brief How to do network programming in Qt \image network-examples.png @@ -946,11 +493,8 @@ /*! \page examples-ipc.html \ingroup all-examples - \title Inter-Process Communication Examples - - \previouspage Network Examples - \contentspage Qt Examples - \nextpage OpenGL Examples + \title IPC Examples + \brief Inter-Process Communication with Qt \image ipc-examples.png @@ -965,10 +509,7 @@ \page examples-opengl.html \ingroup all-examples \title OpenGL Examples - - \previouspage Inter-Process Communication Examples - \contentspage Qt Examples - \nextpage OpenVG Examples + \brief Accessing OpenGL from Qt \image opengl-examples.png @@ -1000,10 +541,7 @@ \page examples-openvg.html \ingroup all-examples \title OpenVG Examples - - \previouspage OpenGL Examples - \contentspage Qt Examples - \nextpage Multimedia Examples + \brief Accessing OpenVG from Qt \image openvg-examples.png @@ -1022,10 +560,7 @@ \page examples-multimedia.html \ingroup all-examples \title Multimedia Examples - - \previouspage OpenGL Examples - \contentspage Qt Examples - \nextpage SQL Examples + \brief Accessing audio support from Qt \image phonon-examples.png @@ -1072,10 +607,7 @@ \page examples-sql.html \ingroup all-examples \title SQL Examples - - \previouspage Multimedia Examples - \contentspage Qt Examples - \nextpage XML Examples + \brief Accessing your SQL database from Qt \image sql-examples.png @@ -1102,10 +634,7 @@ \page examples-xml.html \ingroup all-examples \title XML Examples - - \previouspage SQL Examples - \contentspage Qt Examples - \nextpage Qt Designer Examples + \brief Using XML with Qt \image xml-examples.png XML @@ -1139,10 +668,7 @@ \page examples-designer.html \ingroup all-examples \title Qt Designer Examples - - \previouspage XML Examples - \contentspage Qt Examples - \nextpage UiTools Examples + \brief Using Qt Designer to build your UI \image designer-examples.png QtDesigner @@ -1165,10 +691,7 @@ \page examples-uitools.html \ingroup all-examples \title UiTools Examples - - \previouspage Qt Designer Examples - \contentspage Qt Examples - \nextpage Qt Linguist Examples + \brief Using the QtUiTools module \image uitools-examples.png UiTools @@ -1182,10 +705,7 @@ \page examples-linguist.html \ingroup all-examples \title Qt Linguist Examples - - \previouspage UiTools Examples - \contentspage Qt Examples - \nextpage Qt Script Examples + \brief Using Qt Linguist to internationalize your Qt application \image linguist-examples.png @@ -1203,10 +723,7 @@ \page examples-script.html \ingroup all-examples \title Qt Script Examples - - \previouspage Qt Linguist Examples - \contentspage Qt Examples - \nextpage WebKit Examples + \brief Using the Qt scripting environment \image qtscript-examples.png QtScript @@ -1233,10 +750,7 @@ \page examples-webkit.html \ingroup all-examples \title WebKit Examples - - \previouspage Qt Script Examples - \contentspage Qt Examples - \nextpage Help System Examples + \brief Using WebKit in your Qt application \image webkit-examples.png WebKit @@ -1275,10 +789,7 @@ \page examples-helpsystem.html \ingroup all-examples \title Help System Examples - - \previouspage WebKit Examples - \contentspage Qt Examples - \nextpage State Machine Examples + \brief Adding interactive help to your Qt application \image assistant-examples.png HelpSystem @@ -1299,10 +810,7 @@ \page examples-statemachine.html \ingroup all-examples \title State Machine Examples - - \previouspage Help System Examples - \contentspage Qt Examples - \nextpage Animation Framework Examples + \brief Using Qt's finite state machine classes \image statemachine-examples.png StateMachine @@ -1326,10 +834,7 @@ \page examples-animation.html \ingroup all-examples \title Animation Framework Examples - - \previouspage State Machine Examples - \contentspage Qt Examples - \nextpage Multi-Touch Examples + \brief Doing animations with Qt \image animation-examples.png Animation @@ -1349,10 +854,7 @@ \page examples-multitouch.html \ingroup all-examples \title Multi-Touch Examples - - \previouspage Animation Framework Examples - \contentspage Qt Examples - \nextpage Gestures Examples + \brief Using Qt's multi-touch input capability Support for multi-touch input makes it possible for developers to create extensible and intuitive user interfaces. @@ -1369,10 +871,7 @@ \page examples-gestures.html \ingroup all-examples \title Gestures Examples - - \previouspage Multi-Touch Examples - \contentspage Qt Examples - \nextpage D-Bus Examples + \brief Gesture programming examples The API of the gesture framework is not yet finalized and still subject to change. @@ -1386,10 +885,7 @@ \page examples-dbus.html \ingroup all-examples \title D-Bus Examples - - \previouspage Gestures Examples - \contentspage Qt Examples - \nextpage Qt for Embedded Linux Examples + \brief Using D-Bus from Qt applications \list \o \l{dbus/dbus-chat}{Chat} @@ -1406,10 +902,7 @@ \page examples-embeddedlinux.html \ingroup all-examples \title Qt for Embedded Linux Examples - - \previouspage D-Bus Examples - \contentspage Qt Examples - \nextpage ActiveQt Examples + \brief Using Qt in Embedded Linux \image qt-embedded-examples.png QtEmbedded @@ -1429,10 +922,7 @@ \page examples-activeqt.html \ingroup all-examples \title ActiveQt Examples - - \previouspage Qt for Embedded Linux Examples - \contentspage Qt Examples - \nextpage Qt Quarterly + \brief Using ActiveX from Qt applications \image activeqt-examples.png ActiveQt diff --git a/tools/qdoc3/htmlgenerator.cpp b/tools/qdoc3/htmlgenerator.cpp index cf8ea7c..42db4e8 100644 --- a/tools/qdoc3/htmlgenerator.cpp +++ b/tools/qdoc3/htmlgenerator.cpp @@ -434,6 +434,9 @@ void HtmlGenerator::startText(const Node * /* relative */, sectionNumber.clear(); } +/*! + Generate html from an instance of Atom. + */ int HtmlGenerator::generateAtom(const Atom *atom, const Node *relative, CodeMarker *marker) @@ -1217,6 +1220,9 @@ int HtmlGenerator::generateAtom(const Atom *atom, return skipAhead; } +/*! + Generate a reference page for a C++ class. + */ void HtmlGenerator::generateClassLikeNode(const InnerNode *inner, CodeMarker *marker) { @@ -1466,6 +1472,10 @@ void HtmlGenerator::generateClassLikeNode(const InnerNode *inner, appendDcfSubSection(&dcfClassesRoot, classSection); } +/*! + Generate the html page for a qdoc file that doesn't map + to an underlying c++ file. + */ void HtmlGenerator::generateFakeNode(const FakeNode *fake, CodeMarker *marker) { SubTitleSize subTitleSize = LargeSubTitle; @@ -1682,6 +1692,9 @@ void HtmlGenerator::generateFakeNode(const FakeNode *fake, CodeMarker *marker) } } +/*! + Returns "html" for this subclass of Generator. + */ QString HtmlGenerator::fileExtension(const Node * /* node */) const { return "html"; @@ -1735,10 +1748,10 @@ void HtmlGenerator::generateBreadCrumbs(const QString& title, } else if (node->subType() == Node::Page) { if (fn->name() == QString("examples.html")) { - out() << "
  • All Examples
  • "; + out() << "
  • Examples
  • "; } else if (fn->name().startsWith("examples-")) { - out() << "
  • All Examples
  • "; + out() << "
  • Examples
  • "; out() << "
  • name() << "\">" << title << "
  • "; } @@ -1756,7 +1769,7 @@ void HtmlGenerator::generateBreadCrumbs(const QString& title, << ""; } else if (node->subType() == Node::Example) { - out() << "
  • All Examples
  • "; + out() << "
  • Examples
  • "; QStringList sl = fn->name().split('/'); QString name = "examples-" + sl.at(0) + ".html"; QString t = CodeParser::titleFromName(name); @@ -2332,7 +2345,6 @@ void HtmlGenerator::generateCompactList(const Node *relative, QString commonPrefix) { const int NumParagraphs = 37; // '0' to '9', 'A' to 'Z', '_' - const int NumColumns = 1; // number of columns in the result if (classMap.isEmpty()) return; @@ -2415,18 +2427,18 @@ void HtmlGenerator::generateCompactList(const Node *relative, else key = pieces.last().toLower(); - int paragraphNo = NumParagraphs - 1; + int paragraphNr = NumParagraphs - 1; if (key[0].digitValue() != -1) { - paragraphNo = key[0].digitValue(); + paragraphNr = key[0].digitValue(); } else if (key[0] >= QLatin1Char('a') && key[0] <= QLatin1Char('z')) { - paragraphNo = 10 + key[0].unicode() - 'a'; + paragraphNr = 10 + key[0].unicode() - 'a'; } - paragraphName[paragraphNo] = key[0].toUpper(); + paragraphName[paragraphNr] = key[0].toUpper(); usedParagraphNames.insert(key[0].toLower().cell()); - paragraph[paragraphNo].insert(key, c.value()); + paragraph[paragraphNr].insert(key, c.value()); ++c; } @@ -2439,36 +2451,16 @@ void HtmlGenerator::generateCompactList(const Node *relative, start at offsets 0, 3, 4, 8, 9, 14, 23. */ int paragraphOffset[NumParagraphs + 1]; // 37 + 1 - int i, j, k; - paragraphOffset[0] = 0; - for (j = 0; j < NumParagraphs; j++) // j = 0..36 - paragraphOffset[j + 1] = paragraphOffset[j] + paragraph[j].count(); - - int firstOffset[NumColumns + 1]; - int currentOffset[NumColumns]; - int currentParagraphNo[NumColumns]; - int currentOffsetInParagraph[NumColumns]; + for (int i=0; i firstOffset[i]) - break; - if (paragraphOffset[j] <= firstOffset[i]) - curParagNo = j; - } - currentParagraphNo[i] = curParagNo; - currentOffsetInParagraph[i] = firstOffset[i] - - paragraphOffset[curParagNo]; - } - firstOffset[NumColumns] = classMap.count(); + int curParNr = 0; + int curParOffset = 0; + /* + Output the alphabet as a row of links. + */ if (includeAlphabet) { out() << "

    "; for (int i = 0; i < 26; i++) { @@ -2479,80 +2471,73 @@ void HtmlGenerator::generateCompactList(const Node *relative, out() << "

    \n"; } + /* + Output a
    element to contain all the
    elements. + */ out() << "
    \n"; - for (k = 0; k < numRows; k++) { - if (++numTableRows % 2 == 1) - out() << "
    "; - else - out() << "
    "; - //break; - -// out() << "\n"; - for (i = 0; i < NumColumns; i++) { - if (currentOffset[i] >= firstOffset[i + 1]) { - // this column is finished - out() << "
    \n
    \n"; // check why? + + for (int i=0; i. + */ + if (curParOffset == 0) { + if (i > 0) + out() << "
    \n"; + if (++numTableRows % 2 == 1) + out() << "
    "; + else + out() << "
    "; + out() << "

    "; + if (includeAlphabet) { + QChar c = paragraphName[curParNr][0].toLower(); + out() << QString("").arg(c); } - else { - while ((currentParagraphNo[i] < NumParagraphs) && - (currentOffsetInParagraph[i] == paragraph[currentParagraphNo[i]].count())) { - ++currentParagraphNo[i]; - currentOffsetInParagraph[i] = 0; - } -#if 0 - if (currentParagraphNo[i] >= NumParagraphs) { - qDebug() << "### Internal error ###" << __FILE__ << __LINE__ - << currentParagraphNo[i] << NumParagraphs; - currentParagraphNo[i] = NumParagraphs - 1; - } -#endif - out() << "

    "; - if (currentOffsetInParagraph[i] == 0) { - // start a new paragraph - if (includeAlphabet) { - QChar c = paragraphName[currentParagraphNo[i]][0].toLower(); - out() << QString("").arg(c); - } - out() << "" - << paragraphName[currentParagraphNo[i]] - << ""; - } - out() << "

    \n"; - - out() << "

    "; - if ((currentParagraphNo[i] < NumParagraphs) && - !paragraphName[currentParagraphNo[i]].isEmpty()) { - NodeMap::Iterator it; - it = paragraph[currentParagraphNo[i]].begin(); - for (j = 0; j < currentOffsetInParagraph[i]; j++) - ++it; - - // Previously, we used generateFullName() for this, but we - // require some special formatting. - out() << ""; - QStringList pieces; - if (it.value()->subType() == Node::QmlClass) - pieces << it.value()->name(); - else - pieces = fullName(it.value(), relative, marker).split("::"); - out() << protectEnc(pieces.last()); - out() << ""; - if (pieces.size() > 1) { - out() << " ("; - generateFullName(it.value()->parent(), relative, marker); - out() << ")"; - } - } - out() << "

    \n"; + out() << "" + << paragraphName[curParNr] + << ""; + out() << "

    \n"; + } - currentOffset[i]++; - currentOffsetInParagraph[i]++; + /* + Output a
    for the current offset in the current paragraph. + */ + out() << "

    "; + if ((curParNr < NumParagraphs) && + !paragraphName[curParNr].isEmpty()) { + NodeMap::Iterator it; + it = paragraph[curParNr].begin(); + for (int i=0; i"; + + QStringList pieces; + if (it.value()->subType() == Node::QmlClass) + pieces << it.value()->name(); + else + pieces = fullName(it.value(), relative, marker).split("::"); + out() << protectEnc(pieces.last()); + out() << ""; + if (pieces.size() > 1) { + out() << " ("; + generateFullName(it.value()->parent(), relative, marker); + out() << ")"; } } - out() << "

    \n"; + out() << "

    \n"; + curParOffset++; } + out() << "
    \n"; out() << "
    \n"; } -- cgit v0.12 From 4c612a53a0fb137ac3eacbea96284eca9f5f018e Mon Sep 17 00:00:00 2001 From: Thiago Macieira Date: Tue, 25 May 2010 10:24:41 +0200 Subject: Don't use QAtomicInt in statics because they are non-POD. Reviewed-By: Olivier Goffart --- src/gui/egl/qegl.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/gui/egl/qegl.cpp b/src/gui/egl/qegl.cpp index c16aeb1..776cdba 100644 --- a/src/gui/egl/qegl.cpp +++ b/src/gui/egl/qegl.cpp @@ -69,12 +69,12 @@ public: static bool displayOpened() { return displayOpen; } private: - static QAtomicInt contexts; - static QAtomicInt displayOpen; + static QBasicAtomicInt contexts; + static QBasicAtomicInt displayOpen; }; -QAtomicInt QEglContextTracker::contexts = 0; -QAtomicInt QEglContextTracker::displayOpen = 0; +QBasicAtomicInt QEglContextTracker::contexts = Q_BASIC_ATOMIC_INITIALIZER(0); +QBasicAtomicInt QEglContextTracker::displayOpen = Q_BASIC_ATOMIC_INITIALIZER(0); // Current GL and VG contexts. These are used to determine if // we can avoid an eglMakeCurrent() after a call to lazyDoneCurrent(). -- cgit v0.12 From 5579af0f12bb6bae1eaf03ed514dab8557b84954 Mon Sep 17 00:00:00 2001 From: Miikka Heikkinen Date: Tue, 25 May 2010 13:17:42 +0300 Subject: Fix double slashes on few data caging paths QT_PLUGINS_BASE_DIR and QT_IMPORTS_BASE_DIR paths had double slash in front of them. Reviewed-by: Janne Koskinen --- mkspecs/features/symbian/data_caging_paths.prf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mkspecs/features/symbian/data_caging_paths.prf b/mkspecs/features/symbian/data_caging_paths.prf index ae9bc09..6b709cc 100644 --- a/mkspecs/features/symbian/data_caging_paths.prf +++ b/mkspecs/features/symbian/data_caging_paths.prf @@ -74,8 +74,8 @@ exists($${EPOCROOT}epoc32/include/data_caging_paths.prf) { BOOTDATA_DIR = /resource/bootdata } -isEmpty(QT_PLUGINS_BASE_DIR): QT_PLUGINS_BASE_DIR = /$$RESOURCE_FILES_DIR/qt$${QT_LIBINFIX}/plugins -isEmpty(QT_IMPORTS_BASE_DIR): QT_IMPORTS_BASE_DIR = /$$RESOURCE_FILES_DIR/qt/imports +isEmpty(QT_PLUGINS_BASE_DIR): QT_PLUGINS_BASE_DIR = $$RESOURCE_FILES_DIR/qt$${QT_LIBINFIX}/plugins +isEmpty(QT_IMPORTS_BASE_DIR): QT_IMPORTS_BASE_DIR = $$RESOURCE_FILES_DIR/qt/imports isEmpty(HW_ZDIR): HW_ZDIR = epoc32/data/z isEmpty(REG_RESOURCE_DIR): REG_RESOURCE_DIR = /private/10003a3f/apps isEmpty(REG_RESOURCE_IMPORT_DIR): REG_RESOURCE_IMPORT_DIR = /private/10003a3f/import/apps \ No newline at end of file -- cgit v0.12 From b5702253a08e315b4db5620a1d4b0ffd4c8e0d0f Mon Sep 17 00:00:00 2001 From: Morten Engvoldsen Date: Tue, 25 May 2010 12:26:21 +0200 Subject: Doc: Correcting style to class lists --- doc/src/template/style/style.css | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/doc/src/template/style/style.css b/doc/src/template/style/style.css index ebc1607..c155d9b 100755 --- a/doc/src/template/style/style.css +++ b/doc/src/template/style/style.css @@ -989,6 +989,7 @@ border-width: 1px; border-style: solid; border-color: #E6E6E6; + width:100%; } .centerAlign @@ -1141,11 +1142,24 @@ /* end of screen media */ .flowList{ -display:inline-block; -width:260px; +vertical-align:top; } +.alphaChar{ +width:100%; +background-color:#F6F6F6; +border:1px solid #E6E6E6; +font-size:12pt; +padding-left:10px; +margin-top:10px; +margin-bottom:10px; +} + .flowList dl{ -padding:0px; +} +.flowList dd{ +display:inline-block; +margin-left:10px; +width:250px; } .wrap .content .flowList p{ padding:0px; -- cgit v0.12 From 7efefb3b0f651d66523dad8fe95c764d0024e687 Mon Sep 17 00:00:00 2001 From: Sami Merila Date: Tue, 25 May 2010 13:59:08 +0300 Subject: Qt app draws background incorrectly when animated wallpaper is used In Symbian^3 OS supports animated wallpapers. Unfortunately animation is drawn to separate surface underneath the application surface. To avoid fiddling with system surfaces, Qt apps indicate to the OS that application does not support animated wallpaper and thus, system draws a "regular" wallpaper for the application. This feature is supported only in Sym^3. Task-number: QT-3148 Reviewed-by: Shane Kearns --- src/gui/s60framework/qs60mainappui.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/gui/s60framework/qs60mainappui.cpp b/src/gui/s60framework/qs60mainappui.cpp index feffc9f..ce13de8 100644 --- a/src/gui/s60framework/qs60mainappui.cpp +++ b/src/gui/s60framework/qs60mainappui.cpp @@ -64,6 +64,9 @@ #include #include +//Animated wallpapers in Qt applications are not supported. +const TInt KAknDisableAnimationBackground = 0x02000000; + QT_BEGIN_NAMESPACE /*! @@ -115,6 +118,11 @@ void QS60MainAppUi::ConstructL() TInt flags = CAknAppUi::EAknEnableSkin | CAknAppUi::ENoScreenFurniture | CAknAppUi::ENonStandardResourceFile; + // After 5th Edition S60, native side supports animated wallpapers. + // However, there is no support for that feature on Qt side, so indicate to + // native UI framework that this application will not support background animations. + if (QSysInfo::s60Version() > QSysInfo::SV_S60_5_0) + flags |= KAknDisableAnimationBackground; BaseConstructL(flags); } -- cgit v0.12 From 88abca461b554628b3deb47f2b379f5a36c62f30 Mon Sep 17 00:00:00 2001 From: Thomas Zander Date: Tue, 25 May 2010 13:12:02 +0200 Subject: Make link on linux/symbian On systems where libs don't automagically go to the system dirs we need to add the build dir for using the lib. --- demos/spectrum/app/app.pro | 1 + 1 file changed, 1 insertion(+) diff --git a/demos/spectrum/app/app.pro b/demos/spectrum/app/app.pro index 8d7ce8e..257675c 100644 --- a/demos/spectrum/app/app.pro +++ b/demos/spectrum/app/app.pro @@ -57,6 +57,7 @@ symbian { symbian { # Must explicitly add the .dll suffix to ensure dynamic linkage LIBS += -lfftreal.dll + QMAKE_LIBDIR += $${fftreal_dir} } else { macx { # Link to fftreal framework -- cgit v0.12 From e3e814ece7a387b85dfe2f8becdfd444e2613f5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Nilsen?= Date: Tue, 25 May 2010 13:54:48 +0200 Subject: Updating 4.7.0 change log. --- dist/changes-4.7.0 | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dist/changes-4.7.0 b/dist/changes-4.7.0 index 31130e8..e7b1e84 100644 --- a/dist/changes-4.7.0 +++ b/dist/changes-4.7.0 @@ -88,6 +88,9 @@ QtGui - QGraphicsItem * [QTBUG-8112] itemChange() is now called when transformation properties change (setRotation, setScale, setTransformOriginPoint). + * [QTBUG-9024] Improved performance when calling update() on items that + are clipped by an ancestor (QGraphicsItem::ItemClipsChildrenToShape). + * [QTBUG-7703], [QTBUG-8378] Fixed scrolling issues - QGraphicsTextItem * [QTBUG-7333] Fixed keyboard shortcuts not being triggered when the @@ -96,6 +99,7 @@ QtGui - QGraphicsView * [QTBUG-7438] Fixed viewport cursor getting reset when releasing the mouse. + * [QTBUG-10338] Fixed drawing artifacts due to rounding errors. - QImage * [QTBUG-9640] Prevented unneccessary copy in QImage::setAlphaChannel(). -- cgit v0.12 From a014c8587918f8ead56fc915400fca037eeaf0b3 Mon Sep 17 00:00:00 2001 From: David Boddie Date: Tue, 25 May 2010 15:06:17 +0200 Subject: Doc: Removed a misleading sentence about signals. Reviewed-by: Stephen Kelly --- src/corelib/kernel/qabstractitemmodel.cpp | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/src/corelib/kernel/qabstractitemmodel.cpp b/src/corelib/kernel/qabstractitemmodel.cpp index 3660a3c..24c26b6 100644 --- a/src/corelib/kernel/qabstractitemmodel.cpp +++ b/src/corelib/kernel/qabstractitemmodel.cpp @@ -2501,6 +2501,8 @@ bool QAbstractItemModelPrivate::allowMove(const QModelIndex &srcParent, int star } /*! + \since 4.6 + Begins a row move operation. When reimplementing a subclass, this method simplifies moving @@ -2526,7 +2528,7 @@ bool QAbstractItemModelPrivate::allowMove(const QModelIndex &srcParent, int star same, in which case you must ensure that the \a destinationChild is not within the range of \a sourceFirst and \a sourceLast. You must also ensure that you do not attempt to move a row to one of - its own chilren or ancestors. This method returns false if either + its own children or ancestors. This method returns false if either condition is true, in which case you should abort your move operation. @@ -2582,13 +2584,7 @@ bool QAbstractItemModelPrivate::allowMove(const QModelIndex &srcParent, int star Note that other rows may be displaced accordingly. \endtable - \note This function emits the rowsAboutToBeInserted() signal which - connected views (or proxies) must handle before the data is inserted. - Otherwise, the views may end up in an invalid state. - \sa endMoveRows() - - \since 4.6 */ bool QAbstractItemModel::beginMoveRows(const QModelIndex &sourceParent, int sourceFirst, int sourceLast, const QModelIndex &destinationParent, int destinationChild) { -- cgit v0.12 From d0f2abcdd58af4afbb75763953fb2f14688360c4 Mon Sep 17 00:00:00 2001 From: Gareth Stockwell Date: Fri, 21 May 2010 13:55:26 +0100 Subject: Fixed license headers in spectrum demo Reviewed-by: Jason McDonald Task-number: QTBUG-10887 --- demos/spectrum/app/engine.cpp | 53 ++++++++++++++------------- demos/spectrum/app/engine.h | 47 ++++++++++++------------ demos/spectrum/app/frequencyspectrum.cpp | 53 ++++++++++++++------------- demos/spectrum/app/frequencyspectrum.h | 47 ++++++++++++------------ demos/spectrum/app/levelmeter.cpp | 53 ++++++++++++++------------- demos/spectrum/app/levelmeter.h | 47 ++++++++++++------------ demos/spectrum/app/main.cpp | 57 +++++++++++++++--------------- demos/spectrum/app/mainwidget.cpp | 53 ++++++++++++++------------- demos/spectrum/app/mainwidget.h | 47 ++++++++++++------------ demos/spectrum/app/progressbar.cpp | 53 ++++++++++++++------------- demos/spectrum/app/progressbar.h | 47 ++++++++++++------------ demos/spectrum/app/settingsdialog.cpp | 53 ++++++++++++++------------- demos/spectrum/app/settingsdialog.h | 47 ++++++++++++------------ demos/spectrum/app/spectrograph.cpp | 53 ++++++++++++++------------- demos/spectrum/app/spectrograph.h | 47 ++++++++++++------------ demos/spectrum/app/spectrum.h | 47 ++++++++++++------------ demos/spectrum/app/spectrumanalyser.cpp | 53 ++++++++++++++------------- demos/spectrum/app/spectrumanalyser.h | 47 ++++++++++++------------ demos/spectrum/app/tonegenerator.cpp | 53 ++++++++++++++------------- demos/spectrum/app/tonegenerator.h | 47 ++++++++++++------------ demos/spectrum/app/tonegeneratordialog.cpp | 53 ++++++++++++++------------- demos/spectrum/app/tonegeneratordialog.h | 47 ++++++++++++------------ demos/spectrum/app/utils.cpp | 53 ++++++++++++++------------- demos/spectrum/app/utils.h | 47 ++++++++++++------------ demos/spectrum/app/waveform.cpp | 53 ++++++++++++++------------- demos/spectrum/app/waveform.h | 47 ++++++++++++------------ demos/spectrum/app/wavfile.cpp | 53 ++++++++++++++------------- demos/spectrum/app/wavfile.h | 47 ++++++++++++------------ 28 files changed, 716 insertions(+), 688 deletions(-) diff --git a/demos/spectrum/app/engine.cpp b/demos/spectrum/app/engine.cpp index 5cdfb6d..119a0e3 100644 --- a/demos/spectrum/app/engine.cpp +++ b/demos/spectrum/app/engine.cpp @@ -6,35 +6,34 @@ ** ** This file is part of the examples of the Qt Toolkit. ** -** $QT_BEGIN_LICENSE:LGPL$ -** No Commercial Usage -** This file contains pre-release code and may not be distributed. -** You may use this file in accordance with the terms and conditions -** contained in the Technology Preview License Agreement accompanying -** this package. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Nokia gives you certain additional -** rights. These rights are described in the Nokia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -** If you have questions regarding the use of this file, please contact -** Nokia at qt-info@nokia.com. -** -** -** -** -** -** +** $QT_BEGIN_LICENSE:BSD$ +** You may use this file under the terms of the BSD license as follows: ** +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor +** the names of its contributors may be used to endorse or promote +** products derived from this software without specific prior written +** permission. ** +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/spectrum/app/engine.h b/demos/spectrum/app/engine.h index 16088b2..21867b3 100644 --- a/demos/spectrum/app/engine.h +++ b/demos/spectrum/app/engine.h @@ -9,31 +9,34 @@ ** $QT_BEGIN_LICENSE:BSD$ ** You may use this file under the terms of the BSD license as follows: ** -** Redistribution and use in source and binary forms, with or without -** modification, are permitted provided that the following conditions are met: -** - Redistributions of source code must retain the above copyright notice, -** this list of conditions and the following disclaimer. -** - Redistributions in binary form must reproduce the above copyright notice, -** this list of conditions and the following disclaimer in the documentation -** and/or other materials provided with the distribution. -** - Neither the name of Nokia Corporation and its Subsidiary(-ies) nor the -** names of its contributors may be used to endorse or promote products -** derived from this software without specific prior written permission. +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor +** the names of its contributors may be used to endorse or promote +** products derived from this software without specific prior written +** permission. ** -** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -** AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -** IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -** ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -** LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -** CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -** SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -** INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -** CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -** ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -** POSSIBILITY OF SUCH DAMAGE. +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." ** $QT_END_LICENSE$ ** -*****************************************************************************/ +****************************************************************************/ #ifndef ENGINE_H #define ENGINE_H diff --git a/demos/spectrum/app/frequencyspectrum.cpp b/demos/spectrum/app/frequencyspectrum.cpp index 6ab80c2..3057428 100644 --- a/demos/spectrum/app/frequencyspectrum.cpp +++ b/demos/spectrum/app/frequencyspectrum.cpp @@ -6,35 +6,34 @@ ** ** This file is part of the examples of the Qt Toolkit. ** -** $QT_BEGIN_LICENSE:LGPL$ -** No Commercial Usage -** This file contains pre-release code and may not be distributed. -** You may use this file in accordance with the terms and conditions -** contained in the Technology Preview License Agreement accompanying -** this package. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Nokia gives you certain additional -** rights. These rights are described in the Nokia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -** If you have questions regarding the use of this file, please contact -** Nokia at qt-info@nokia.com. -** -** -** -** -** -** +** $QT_BEGIN_LICENSE:BSD$ +** You may use this file under the terms of the BSD license as follows: ** +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor +** the names of its contributors may be used to endorse or promote +** products derived from this software without specific prior written +** permission. ** +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/spectrum/app/frequencyspectrum.h b/demos/spectrum/app/frequencyspectrum.h index 0dd814e..d974a44 100644 --- a/demos/spectrum/app/frequencyspectrum.h +++ b/demos/spectrum/app/frequencyspectrum.h @@ -9,31 +9,34 @@ ** $QT_BEGIN_LICENSE:BSD$ ** You may use this file under the terms of the BSD license as follows: ** -** Redistribution and use in source and binary forms, with or without -** modification, are permitted provided that the following conditions are met: -** - Redistributions of source code must retain the above copyright notice, -** this list of conditions and the following disclaimer. -** - Redistributions in binary form must reproduce the above copyright notice, -** this list of conditions and the following disclaimer in the documentation -** and/or other materials provided with the distribution. -** - Neither the name of Nokia Corporation and its Subsidiary(-ies) nor the -** names of its contributors may be used to endorse or promote products -** derived from this software without specific prior written permission. +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor +** the names of its contributors may be used to endorse or promote +** products derived from this software without specific prior written +** permission. ** -** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -** AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -** IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -** ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -** LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -** CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -** SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -** INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -** CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -** ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -** POSSIBILITY OF SUCH DAMAGE. +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." ** $QT_END_LICENSE$ ** -*****************************************************************************/ +****************************************************************************/ #ifndef FREQUENCYSPECTRUM_H #define FREQUENCYSPECTRUM_H diff --git a/demos/spectrum/app/levelmeter.cpp b/demos/spectrum/app/levelmeter.cpp index 39e43c9..819b98d 100644 --- a/demos/spectrum/app/levelmeter.cpp +++ b/demos/spectrum/app/levelmeter.cpp @@ -6,35 +6,34 @@ ** ** This file is part of the examples of the Qt Toolkit. ** -** $QT_BEGIN_LICENSE:LGPL$ -** No Commercial Usage -** This file contains pre-release code and may not be distributed. -** You may use this file in accordance with the terms and conditions -** contained in the Technology Preview License Agreement accompanying -** this package. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Nokia gives you certain additional -** rights. These rights are described in the Nokia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -** If you have questions regarding the use of this file, please contact -** Nokia at qt-info@nokia.com. -** -** -** -** -** -** +** $QT_BEGIN_LICENSE:BSD$ +** You may use this file under the terms of the BSD license as follows: ** +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor +** the names of its contributors may be used to endorse or promote +** products derived from this software without specific prior written +** permission. ** +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/spectrum/app/levelmeter.h b/demos/spectrum/app/levelmeter.h index ab8340b..38d13b1 100644 --- a/demos/spectrum/app/levelmeter.h +++ b/demos/spectrum/app/levelmeter.h @@ -9,31 +9,34 @@ ** $QT_BEGIN_LICENSE:BSD$ ** You may use this file under the terms of the BSD license as follows: ** -** Redistribution and use in source and binary forms, with or without -** modification, are permitted provided that the following conditions are met: -** - Redistributions of source code must retain the above copyright notice, -** this list of conditions and the following disclaimer. -** - Redistributions in binary form must reproduce the above copyright notice, -** this list of conditions and the following disclaimer in the documentation -** and/or other materials provided with the distribution. -** - Neither the name of Nokia Corporation and its Subsidiary(-ies) nor the -** names of its contributors may be used to endorse or promote products -** derived from this software without specific prior written permission. +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor +** the names of its contributors may be used to endorse or promote +** products derived from this software without specific prior written +** permission. ** -** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -** AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -** IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -** ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -** LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -** CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -** SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -** INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -** CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -** ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -** POSSIBILITY OF SUCH DAMAGE. +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." ** $QT_END_LICENSE$ ** -*****************************************************************************/ +****************************************************************************/ #ifndef LEVELMETER_H #define LEVELMETER_H diff --git a/demos/spectrum/app/main.cpp b/demos/spectrum/app/main.cpp index 6e2b6fc..3bdfb7d 100644 --- a/demos/spectrum/app/main.cpp +++ b/demos/spectrum/app/main.cpp @@ -6,35 +6,34 @@ ** ** This file is part of the examples of the Qt Toolkit. ** -** $QT_BEGIN_LICENSE:LGPL$ -** No Commercial Usage -** This file contains pre-release code and may not be distributed. -** You may use this file in accordance with the terms and conditions -** contained in the Technology Preview License Agreement accompanying -** this package. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Nokia gives you certain additional -** rights. These rights are described in the Nokia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -** If you have questions regarding the use of this file, please contact -** Nokia at qt-info@nokia.com. -** -** -** -** -** -** -** -** +** $QT_BEGIN_LICENSE:BSD$ +** You may use this file under the terms of the BSD license as follows: +** +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor +** the names of its contributors may be used to endorse or promote +** products derived from this software without specific prior written +** permission. +** +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/spectrum/app/mainwidget.cpp b/demos/spectrum/app/mainwidget.cpp index 3b7c306..dd51a91 100644 --- a/demos/spectrum/app/mainwidget.cpp +++ b/demos/spectrum/app/mainwidget.cpp @@ -6,35 +6,34 @@ ** ** This file is part of the examples of the Qt Toolkit. ** -** $QT_BEGIN_LICENSE:LGPL$ -** No Commercial Usage -** This file contains pre-release code and may not be distributed. -** You may use this file in accordance with the terms and conditions -** contained in the Technology Preview License Agreement accompanying -** this package. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Nokia gives you certain additional -** rights. These rights are described in the Nokia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -** If you have questions regarding the use of this file, please contact -** Nokia at qt-info@nokia.com. -** -** -** -** -** -** +** $QT_BEGIN_LICENSE:BSD$ +** You may use this file under the terms of the BSD license as follows: ** +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor +** the names of its contributors may be used to endorse or promote +** products derived from this software without specific prior written +** permission. ** +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/spectrum/app/mainwidget.h b/demos/spectrum/app/mainwidget.h index 846b97a..86a47e6 100644 --- a/demos/spectrum/app/mainwidget.h +++ b/demos/spectrum/app/mainwidget.h @@ -9,31 +9,34 @@ ** $QT_BEGIN_LICENSE:BSD$ ** You may use this file under the terms of the BSD license as follows: ** -** Redistribution and use in source and binary forms, with or without -** modification, are permitted provided that the following conditions are met: -** - Redistributions of source code must retain the above copyright notice, -** this list of conditions and the following disclaimer. -** - Redistributions in binary form must reproduce the above copyright notice, -** this list of conditions and the following disclaimer in the documentation -** and/or other materials provided with the distribution. -** - Neither the name of Nokia Corporation and its Subsidiary(-ies) nor the -** names of its contributors may be used to endorse or promote products -** derived from this software without specific prior written permission. +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor +** the names of its contributors may be used to endorse or promote +** products derived from this software without specific prior written +** permission. ** -** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -** AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -** IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -** ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -** LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -** CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -** SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -** INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -** CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -** ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -** POSSIBILITY OF SUCH DAMAGE. +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." ** $QT_END_LICENSE$ ** -*****************************************************************************/ +****************************************************************************/ #ifndef MAINWIDGET_H #define MAINWIDGET_H diff --git a/demos/spectrum/app/progressbar.cpp b/demos/spectrum/app/progressbar.cpp index 256acf0..6bfc690 100644 --- a/demos/spectrum/app/progressbar.cpp +++ b/demos/spectrum/app/progressbar.cpp @@ -6,35 +6,34 @@ ** ** This file is part of the examples of the Qt Toolkit. ** -** $QT_BEGIN_LICENSE:LGPL$ -** No Commercial Usage -** This file contains pre-release code and may not be distributed. -** You may use this file in accordance with the terms and conditions -** contained in the Technology Preview License Agreement accompanying -** this package. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Nokia gives you certain additional -** rights. These rights are described in the Nokia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -** If you have questions regarding the use of this file, please contact -** Nokia at qt-info@nokia.com. -** -** -** -** -** -** +** $QT_BEGIN_LICENSE:BSD$ +** You may use this file under the terms of the BSD license as follows: ** +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor +** the names of its contributors may be used to endorse or promote +** products derived from this software without specific prior written +** permission. ** +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/spectrum/app/progressbar.h b/demos/spectrum/app/progressbar.h index de9e5a9..8514adb 100644 --- a/demos/spectrum/app/progressbar.h +++ b/demos/spectrum/app/progressbar.h @@ -9,31 +9,34 @@ ** $QT_BEGIN_LICENSE:BSD$ ** You may use this file under the terms of the BSD license as follows: ** -** Redistribution and use in source and binary forms, with or without -** modification, are permitted provided that the following conditions are met: -** - Redistributions of source code must retain the above copyright notice, -** this list of conditions and the following disclaimer. -** - Redistributions in binary form must reproduce the above copyright notice, -** this list of conditions and the following disclaimer in the documentation -** and/or other materials provided with the distribution. -** - Neither the name of Nokia Corporation and its Subsidiary(-ies) nor the -** names of its contributors may be used to endorse or promote products -** derived from this software without specific prior written permission. +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor +** the names of its contributors may be used to endorse or promote +** products derived from this software without specific prior written +** permission. ** -** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -** AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -** IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -** ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -** LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -** CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -** SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -** INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -** CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -** ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -** POSSIBILITY OF SUCH DAMAGE. +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." ** $QT_END_LICENSE$ ** -*****************************************************************************/ +****************************************************************************/ #ifndef PROGRESSBAR_H #define PROGRESSBAR_H diff --git a/demos/spectrum/app/settingsdialog.cpp b/demos/spectrum/app/settingsdialog.cpp index 204b43f..b5e8459 100644 --- a/demos/spectrum/app/settingsdialog.cpp +++ b/demos/spectrum/app/settingsdialog.cpp @@ -6,35 +6,34 @@ ** ** This file is part of the examples of the Qt Toolkit. ** -** $QT_BEGIN_LICENSE:LGPL$ -** No Commercial Usage -** This file contains pre-release code and may not be distributed. -** You may use this file in accordance with the terms and conditions -** contained in the Technology Preview License Agreement accompanying -** this package. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Nokia gives you certain additional -** rights. These rights are described in the Nokia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -** If you have questions regarding the use of this file, please contact -** Nokia at qt-info@nokia.com. -** -** -** -** -** -** +** $QT_BEGIN_LICENSE:BSD$ +** You may use this file under the terms of the BSD license as follows: ** +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor +** the names of its contributors may be used to endorse or promote +** products derived from this software without specific prior written +** permission. ** +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/spectrum/app/settingsdialog.h b/demos/spectrum/app/settingsdialog.h index 7215a50..77b2b61 100644 --- a/demos/spectrum/app/settingsdialog.h +++ b/demos/spectrum/app/settingsdialog.h @@ -9,31 +9,34 @@ ** $QT_BEGIN_LICENSE:BSD$ ** You may use this file under the terms of the BSD license as follows: ** -** Redistribution and use in source and binary forms, with or without -** modification, are permitted provided that the following conditions are met: -** - Redistributions of source code must retain the above copyright notice, -** this list of conditions and the following disclaimer. -** - Redistributions in binary form must reproduce the above copyright notice, -** this list of conditions and the following disclaimer in the documentation -** and/or other materials provided with the distribution. -** - Neither the name of Nokia Corporation and its Subsidiary(-ies) nor the -** names of its contributors may be used to endorse or promote products -** derived from this software without specific prior written permission. +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor +** the names of its contributors may be used to endorse or promote +** products derived from this software without specific prior written +** permission. ** -** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -** AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -** IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -** ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -** LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -** CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -** SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -** INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -** CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -** ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -** POSSIBILITY OF SUCH DAMAGE. +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." ** $QT_END_LICENSE$ ** -*****************************************************************************/ +****************************************************************************/ #ifndef SETTINGSDIALOG_H #define SETTINGSDIALOG_H diff --git a/demos/spectrum/app/spectrograph.cpp b/demos/spectrum/app/spectrograph.cpp index 1fcf434..3ec0804 100644 --- a/demos/spectrum/app/spectrograph.cpp +++ b/demos/spectrum/app/spectrograph.cpp @@ -6,35 +6,34 @@ ** ** This file is part of the examples of the Qt Toolkit. ** -** $QT_BEGIN_LICENSE:LGPL$ -** No Commercial Usage -** This file contains pre-release code and may not be distributed. -** You may use this file in accordance with the terms and conditions -** contained in the Technology Preview License Agreement accompanying -** this package. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Nokia gives you certain additional -** rights. These rights are described in the Nokia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -** If you have questions regarding the use of this file, please contact -** Nokia at qt-info@nokia.com. -** -** -** -** -** -** +** $QT_BEGIN_LICENSE:BSD$ +** You may use this file under the terms of the BSD license as follows: ** +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor +** the names of its contributors may be used to endorse or promote +** products derived from this software without specific prior written +** permission. ** +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/spectrum/app/spectrograph.h b/demos/spectrum/app/spectrograph.h index 6bfef33..45db244 100644 --- a/demos/spectrum/app/spectrograph.h +++ b/demos/spectrum/app/spectrograph.h @@ -9,31 +9,34 @@ ** $QT_BEGIN_LICENSE:BSD$ ** You may use this file under the terms of the BSD license as follows: ** -** Redistribution and use in source and binary forms, with or without -** modification, are permitted provided that the following conditions are met: -** - Redistributions of source code must retain the above copyright notice, -** this list of conditions and the following disclaimer. -** - Redistributions in binary form must reproduce the above copyright notice, -** this list of conditions and the following disclaimer in the documentation -** and/or other materials provided with the distribution. -** - Neither the name of Nokia Corporation and its Subsidiary(-ies) nor the -** names of its contributors may be used to endorse or promote products -** derived from this software without specific prior written permission. +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor +** the names of its contributors may be used to endorse or promote +** products derived from this software without specific prior written +** permission. ** -** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -** AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -** IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -** ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -** LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -** CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -** SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -** INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -** CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -** ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -** POSSIBILITY OF SUCH DAMAGE. +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." ** $QT_END_LICENSE$ ** -*****************************************************************************/ +****************************************************************************/ #ifndef SPECTROGRAPH_H #define SPECTROGRAPH_H diff --git a/demos/spectrum/app/spectrum.h b/demos/spectrum/app/spectrum.h index 6cfe29f..cac320e 100644 --- a/demos/spectrum/app/spectrum.h +++ b/demos/spectrum/app/spectrum.h @@ -9,31 +9,34 @@ ** $QT_BEGIN_LICENSE:BSD$ ** You may use this file under the terms of the BSD license as follows: ** -** Redistribution and use in source and binary forms, with or without -** modification, are permitted provided that the following conditions are met: -** - Redistributions of source code must retain the above copyright notice, -** this list of conditions and the following disclaimer. -** - Redistributions in binary form must reproduce the above copyright notice, -** this list of conditions and the following disclaimer in the documentation -** and/or other materials provided with the distribution. -** - Neither the name of Nokia Corporation and its Subsidiary(-ies) nor the -** names of its contributors may be used to endorse or promote products -** derived from this software without specific prior written permission. +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor +** the names of its contributors may be used to endorse or promote +** products derived from this software without specific prior written +** permission. ** -** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -** AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -** IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -** ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -** LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -** CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -** SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -** INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -** CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -** ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -** POSSIBILITY OF SUCH DAMAGE. +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." ** $QT_END_LICENSE$ ** -*****************************************************************************/ +****************************************************************************/ #ifndef SPECTRUM_H #define SPECTRUM_H diff --git a/demos/spectrum/app/spectrumanalyser.cpp b/demos/spectrum/app/spectrumanalyser.cpp index 54d3f5e..c467f61 100644 --- a/demos/spectrum/app/spectrumanalyser.cpp +++ b/demos/spectrum/app/spectrumanalyser.cpp @@ -6,35 +6,34 @@ ** ** This file is part of the examples of the Qt Toolkit. ** -** $QT_BEGIN_LICENSE:LGPL$ -** No Commercial Usage -** This file contains pre-release code and may not be distributed. -** You may use this file in accordance with the terms and conditions -** contained in the Technology Preview License Agreement accompanying -** this package. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Nokia gives you certain additional -** rights. These rights are described in the Nokia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -** If you have questions regarding the use of this file, please contact -** Nokia at qt-info@nokia.com. -** -** -** -** -** -** +** $QT_BEGIN_LICENSE:BSD$ +** You may use this file under the terms of the BSD license as follows: ** +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor +** the names of its contributors may be used to endorse or promote +** products derived from this software without specific prior written +** permission. ** +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/spectrum/app/spectrumanalyser.h b/demos/spectrum/app/spectrumanalyser.h index caeb1c1..98d9d84 100644 --- a/demos/spectrum/app/spectrumanalyser.h +++ b/demos/spectrum/app/spectrumanalyser.h @@ -9,31 +9,34 @@ ** $QT_BEGIN_LICENSE:BSD$ ** You may use this file under the terms of the BSD license as follows: ** -** Redistribution and use in source and binary forms, with or without -** modification, are permitted provided that the following conditions are met: -** - Redistributions of source code must retain the above copyright notice, -** this list of conditions and the following disclaimer. -** - Redistributions in binary form must reproduce the above copyright notice, -** this list of conditions and the following disclaimer in the documentation -** and/or other materials provided with the distribution. -** - Neither the name of Nokia Corporation and its Subsidiary(-ies) nor the -** names of its contributors may be used to endorse or promote products -** derived from this software without specific prior written permission. +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor +** the names of its contributors may be used to endorse or promote +** products derived from this software without specific prior written +** permission. ** -** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -** AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -** IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -** ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -** LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -** CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -** SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -** INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -** CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -** ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -** POSSIBILITY OF SUCH DAMAGE. +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." ** $QT_END_LICENSE$ ** -*****************************************************************************/ +****************************************************************************/ #ifndef SPECTRUMANALYSER_H #define SPECTRUMANALYSER_H diff --git a/demos/spectrum/app/tonegenerator.cpp b/demos/spectrum/app/tonegenerator.cpp index 6458a7d..470eb4c 100644 --- a/demos/spectrum/app/tonegenerator.cpp +++ b/demos/spectrum/app/tonegenerator.cpp @@ -6,35 +6,34 @@ ** ** This file is part of the examples of the Qt Toolkit. ** -** $QT_BEGIN_LICENSE:LGPL$ -** No Commercial Usage -** This file contains pre-release code and may not be distributed. -** You may use this file in accordance with the terms and conditions -** contained in the Technology Preview License Agreement accompanying -** this package. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Nokia gives you certain additional -** rights. These rights are described in the Nokia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -** If you have questions regarding the use of this file, please contact -** Nokia at qt-info@nokia.com. -** -** -** -** -** -** +** $QT_BEGIN_LICENSE:BSD$ +** You may use this file under the terms of the BSD license as follows: ** +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor +** the names of its contributors may be used to endorse or promote +** products derived from this software without specific prior written +** permission. ** +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/spectrum/app/tonegenerator.h b/demos/spectrum/app/tonegenerator.h index 419f7e4..0c2f8fd 100644 --- a/demos/spectrum/app/tonegenerator.h +++ b/demos/spectrum/app/tonegenerator.h @@ -9,31 +9,34 @@ ** $QT_BEGIN_LICENSE:BSD$ ** You may use this file under the terms of the BSD license as follows: ** -** Redistribution and use in source and binary forms, with or without -** modification, are permitted provided that the following conditions are met: -** - Redistributions of source code must retain the above copyright notice, -** this list of conditions and the following disclaimer. -** - Redistributions in binary form must reproduce the above copyright notice, -** this list of conditions and the following disclaimer in the documentation -** and/or other materials provided with the distribution. -** - Neither the name of Nokia Corporation and its Subsidiary(-ies) nor the -** names of its contributors may be used to endorse or promote products -** derived from this software without specific prior written permission. +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor +** the names of its contributors may be used to endorse or promote +** products derived from this software without specific prior written +** permission. ** -** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -** AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -** IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -** ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -** LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -** CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -** SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -** INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -** CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -** ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -** POSSIBILITY OF SUCH DAMAGE. +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." ** $QT_END_LICENSE$ ** -*****************************************************************************/ +****************************************************************************/ #ifndef TONEGENERATOR_H #define TONEGENERATOR_H diff --git a/demos/spectrum/app/tonegeneratordialog.cpp b/demos/spectrum/app/tonegeneratordialog.cpp index 06e453c..01e1198 100644 --- a/demos/spectrum/app/tonegeneratordialog.cpp +++ b/demos/spectrum/app/tonegeneratordialog.cpp @@ -6,35 +6,34 @@ ** ** This file is part of the examples of the Qt Toolkit. ** -** $QT_BEGIN_LICENSE:LGPL$ -** No Commercial Usage -** This file contains pre-release code and may not be distributed. -** You may use this file in accordance with the terms and conditions -** contained in the Technology Preview License Agreement accompanying -** this package. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Nokia gives you certain additional -** rights. These rights are described in the Nokia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -** If you have questions regarding the use of this file, please contact -** Nokia at qt-info@nokia.com. -** -** -** -** -** -** +** $QT_BEGIN_LICENSE:BSD$ +** You may use this file under the terms of the BSD license as follows: ** +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor +** the names of its contributors may be used to endorse or promote +** products derived from this software without specific prior written +** permission. ** +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/spectrum/app/tonegeneratordialog.h b/demos/spectrum/app/tonegeneratordialog.h index 35d69c2..2e66706 100644 --- a/demos/spectrum/app/tonegeneratordialog.h +++ b/demos/spectrum/app/tonegeneratordialog.h @@ -9,31 +9,34 @@ ** $QT_BEGIN_LICENSE:BSD$ ** You may use this file under the terms of the BSD license as follows: ** -** Redistribution and use in source and binary forms, with or without -** modification, are permitted provided that the following conditions are met: -** - Redistributions of source code must retain the above copyright notice, -** this list of conditions and the following disclaimer. -** - Redistributions in binary form must reproduce the above copyright notice, -** this list of conditions and the following disclaimer in the documentation -** and/or other materials provided with the distribution. -** - Neither the name of Nokia Corporation and its Subsidiary(-ies) nor the -** names of its contributors may be used to endorse or promote products -** derived from this software without specific prior written permission. +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor +** the names of its contributors may be used to endorse or promote +** products derived from this software without specific prior written +** permission. ** -** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -** AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -** IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -** ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -** LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -** CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -** SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -** INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -** CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -** ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -** POSSIBILITY OF SUCH DAMAGE. +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." ** $QT_END_LICENSE$ ** -*****************************************************************************/ +****************************************************************************/ #ifndef TONEGENERATORDIALOG_H #define TONEGENERATORDIALOG_H diff --git a/demos/spectrum/app/utils.cpp b/demos/spectrum/app/utils.cpp index 97dc6e3..4ead6c2 100644 --- a/demos/spectrum/app/utils.cpp +++ b/demos/spectrum/app/utils.cpp @@ -6,35 +6,34 @@ ** ** This file is part of the examples of the Qt Toolkit. ** -** $QT_BEGIN_LICENSE:LGPL$ -** No Commercial Usage -** This file contains pre-release code and may not be distributed. -** You may use this file in accordance with the terms and conditions -** contained in the Technology Preview License Agreement accompanying -** this package. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Nokia gives you certain additional -** rights. These rights are described in the Nokia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -** If you have questions regarding the use of this file, please contact -** Nokia at qt-info@nokia.com. -** -** -** -** -** -** +** $QT_BEGIN_LICENSE:BSD$ +** You may use this file under the terms of the BSD license as follows: ** +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor +** the names of its contributors may be used to endorse or promote +** products derived from this software without specific prior written +** permission. ** +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/spectrum/app/utils.h b/demos/spectrum/app/utils.h index 83467cd..596533e 100644 --- a/demos/spectrum/app/utils.h +++ b/demos/spectrum/app/utils.h @@ -9,31 +9,34 @@ ** $QT_BEGIN_LICENSE:BSD$ ** You may use this file under the terms of the BSD license as follows: ** -** Redistribution and use in source and binary forms, with or without -** modification, are permitted provided that the following conditions are met: -** - Redistributions of source code must retain the above copyright notice, -** this list of conditions and the following disclaimer. -** - Redistributions in binary form must reproduce the above copyright notice, -** this list of conditions and the following disclaimer in the documentation -** and/or other materials provided with the distribution. -** - Neither the name of Nokia Corporation and its Subsidiary(-ies) nor the -** names of its contributors may be used to endorse or promote products -** derived from this software without specific prior written permission. +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor +** the names of its contributors may be used to endorse or promote +** products derived from this software without specific prior written +** permission. ** -** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -** AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -** IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -** ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -** LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -** CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -** SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -** INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -** CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -** ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -** POSSIBILITY OF SUCH DAMAGE. +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." ** $QT_END_LICENSE$ ** -*****************************************************************************/ +****************************************************************************/ #ifndef UTILS_H #define UTILS_H diff --git a/demos/spectrum/app/waveform.cpp b/demos/spectrum/app/waveform.cpp index 3fc4f76..1f7d315 100644 --- a/demos/spectrum/app/waveform.cpp +++ b/demos/spectrum/app/waveform.cpp @@ -6,35 +6,34 @@ ** ** This file is part of the examples of the Qt Toolkit. ** -** $QT_BEGIN_LICENSE:LGPL$ -** No Commercial Usage -** This file contains pre-release code and may not be distributed. -** You may use this file in accordance with the terms and conditions -** contained in the Technology Preview License Agreement accompanying -** this package. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Nokia gives you certain additional -** rights. These rights are described in the Nokia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -** If you have questions regarding the use of this file, please contact -** Nokia at qt-info@nokia.com. -** -** -** -** -** -** +** $QT_BEGIN_LICENSE:BSD$ +** You may use this file under the terms of the BSD license as follows: ** +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor +** the names of its contributors may be used to endorse or promote +** products derived from this software without specific prior written +** permission. ** +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/spectrum/app/waveform.h b/demos/spectrum/app/waveform.h index 4de527f..dce3c37 100644 --- a/demos/spectrum/app/waveform.h +++ b/demos/spectrum/app/waveform.h @@ -9,31 +9,34 @@ ** $QT_BEGIN_LICENSE:BSD$ ** You may use this file under the terms of the BSD license as follows: ** -** Redistribution and use in source and binary forms, with or without -** modification, are permitted provided that the following conditions are met: -** - Redistributions of source code must retain the above copyright notice, -** this list of conditions and the following disclaimer. -** - Redistributions in binary form must reproduce the above copyright notice, -** this list of conditions and the following disclaimer in the documentation -** and/or other materials provided with the distribution. -** - Neither the name of Nokia Corporation and its Subsidiary(-ies) nor the -** names of its contributors may be used to endorse or promote products -** derived from this software without specific prior written permission. +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor +** the names of its contributors may be used to endorse or promote +** products derived from this software without specific prior written +** permission. ** -** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -** AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -** IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -** ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -** LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -** CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -** SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -** INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -** CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -** ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -** POSSIBILITY OF SUCH DAMAGE. +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." ** $QT_END_LICENSE$ ** -*****************************************************************************/ +****************************************************************************/ #ifndef WAVEFORM_H #define WAVEFORM_H diff --git a/demos/spectrum/app/wavfile.cpp b/demos/spectrum/app/wavfile.cpp index ec911ad..b9467e3 100644 --- a/demos/spectrum/app/wavfile.cpp +++ b/demos/spectrum/app/wavfile.cpp @@ -6,35 +6,34 @@ ** ** This file is part of the examples of the Qt Toolkit. ** -** $QT_BEGIN_LICENSE:LGPL$ -** No Commercial Usage -** This file contains pre-release code and may not be distributed. -** You may use this file in accordance with the terms and conditions -** contained in the Technology Preview License Agreement accompanying -** this package. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Nokia gives you certain additional -** rights. These rights are described in the Nokia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -** If you have questions regarding the use of this file, please contact -** Nokia at qt-info@nokia.com. -** -** -** -** -** -** +** $QT_BEGIN_LICENSE:BSD$ +** You may use this file under the terms of the BSD license as follows: ** +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor +** the names of its contributors may be used to endorse or promote +** products derived from this software without specific prior written +** permission. ** +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/spectrum/app/wavfile.h b/demos/spectrum/app/wavfile.h index 05866f7..f2f3304 100644 --- a/demos/spectrum/app/wavfile.h +++ b/demos/spectrum/app/wavfile.h @@ -9,31 +9,34 @@ ** $QT_BEGIN_LICENSE:BSD$ ** You may use this file under the terms of the BSD license as follows: ** -** Redistribution and use in source and binary forms, with or without -** modification, are permitted provided that the following conditions are met: -** - Redistributions of source code must retain the above copyright notice, -** this list of conditions and the following disclaimer. -** - Redistributions in binary form must reproduce the above copyright notice, -** this list of conditions and the following disclaimer in the documentation -** and/or other materials provided with the distribution. -** - Neither the name of Nokia Corporation and its Subsidiary(-ies) nor the -** names of its contributors may be used to endorse or promote products -** derived from this software without specific prior written permission. +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor +** the names of its contributors may be used to endorse or promote +** products derived from this software without specific prior written +** permission. ** -** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -** AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -** IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -** ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -** LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -** CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -** SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -** INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -** CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -** ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -** POSSIBILITY OF SUCH DAMAGE. +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." ** $QT_END_LICENSE$ ** -*****************************************************************************/ +****************************************************************************/ #ifndef WAVFILE_H -- cgit v0.12 From 830067a683e9264bf075757fc2476e1e038ef7b3 Mon Sep 17 00:00:00 2001 From: Morten Engvoldsen Date: Tue, 25 May 2010 15:38:58 +0200 Subject: Doc: Fixing bugs in HTML generator --- tools/qdoc3/htmlgenerator.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/qdoc3/htmlgenerator.cpp b/tools/qdoc3/htmlgenerator.cpp index 42db4e8..16df0c0 100644 --- a/tools/qdoc3/htmlgenerator.cpp +++ b/tools/qdoc3/htmlgenerator.cpp @@ -2493,7 +2493,7 @@ void HtmlGenerator::generateCompactList(const Node *relative, out() << "
    "; else out() << "
    "; - out() << "

    "; + out() << "

    "; if (includeAlphabet) { QChar c = paragraphName[curParNr][0].toLower(); out() << QString("").arg(c); @@ -2501,13 +2501,13 @@ void HtmlGenerator::generateCompactList(const Node *relative, out() << "" << paragraphName[curParNr] << ""; - out() << "

    \n"; + out() << "\n"; } /* Output a
    for the current offset in the current paragraph. */ - out() << "

    "; + out() << "

    "; if ((curParNr < NumParagraphs) && !paragraphName[curParNr].isEmpty()) { NodeMap::Iterator it; @@ -2534,7 +2534,7 @@ void HtmlGenerator::generateCompactList(const Node *relative, out() << ")"; } } - out() << "

    \n"; + out() << "\n"; curParOffset++; } out() << "
    \n"; -- cgit v0.12 From 245892ac07dd4f104601f4c3502094f54fc9c06e Mon Sep 17 00:00:00 2001 From: Thiago Macieira Date: Tue, 25 May 2010 17:14:03 +0200 Subject: Remove unused function in QDBusConnectionPrivate --- src/dbus/qdbusconnection.cpp | 8 -------- src/dbus/qdbusconnection_p.h | 1 - 2 files changed, 9 deletions(-) diff --git a/src/dbus/qdbusconnection.cpp b/src/dbus/qdbusconnection.cpp index abb3224..4382032 100644 --- a/src/dbus/qdbusconnection.cpp +++ b/src/dbus/qdbusconnection.cpp @@ -1003,14 +1003,6 @@ void QDBusConnectionPrivate::setSender(const QDBusConnectionPrivate *s) /*! \internal */ -void QDBusConnectionPrivate::setConnection(const QString &name, QDBusConnectionPrivate *c) -{ - _q_manager()->setConnection(name, c); -} - -/*! - \internal -*/ void QDBusConnectionPrivate::setBusService(const QDBusConnection &connection) { busService = new QDBusConnectionInterface(connection, this); diff --git a/src/dbus/qdbusconnection_p.h b/src/dbus/qdbusconnection_p.h index 34bb6b3..81af2c7 100644 --- a/src/dbus/qdbusconnection_p.h +++ b/src/dbus/qdbusconnection_p.h @@ -309,7 +309,6 @@ public: static QDBusConnection q(QDBusConnectionPrivate *connection) { return QDBusConnection(connection); } static void setSender(const QDBusConnectionPrivate *s); - static void setConnection(const QString &name, QDBusConnectionPrivate *c); friend class QDBusActivateObjectEvent; friend class QDBusCallDeliveryEvent; -- cgit v0.12 From b105d39e12c22321e06a6c4d9e8e05aaf92036bd Mon Sep 17 00:00:00 2001 From: Gareth Stockwell Date: Tue, 25 May 2010 16:33:44 +0100 Subject: Build fix for spectrum demo when -qtnamespace is used Task-number: QTBUG-10881 Reviewed-by: Liang Qi --- demos/spectrum/app/engine.h | 7 ++++--- demos/spectrum/app/mainwidget.h | 11 ++++++----- demos/spectrum/app/settingsdialog.h | 10 +++++----- demos/spectrum/app/spectrograph.h | 2 +- demos/spectrum/app/spectrumanalyser.h | 5 +++-- demos/spectrum/app/tonegenerator.h | 4 ++-- demos/spectrum/app/tonegeneratordialog.h | 8 ++++---- demos/spectrum/app/utils.h | 2 +- demos/spectrum/app/waveform.h | 2 +- 9 files changed, 27 insertions(+), 24 deletions(-) diff --git a/demos/spectrum/app/engine.h b/demos/spectrum/app/engine.h index 21867b3..ab5ae0d 100644 --- a/demos/spectrum/app/engine.h +++ b/demos/spectrum/app/engine.h @@ -64,10 +64,11 @@ #include #endif -class QAudioInput; -class QAudioOutput; class FrequencySpectrum; -class QFile; + +QT_FORWARD_DECLARE_CLASS(QAudioInput) +QT_FORWARD_DECLARE_CLASS(QAudioOutput) +QT_FORWARD_DECLARE_CLASS(QFile) /** * This class interfaces with the QtMultimedia audio classes, and also with diff --git a/demos/spectrum/app/mainwidget.h b/demos/spectrum/app/mainwidget.h index 86a47e6..ddab8b7 100644 --- a/demos/spectrum/app/mainwidget.h +++ b/demos/spectrum/app/mainwidget.h @@ -53,11 +53,12 @@ class Waveform; class LevelMeter; class SettingsDialog; class ToneGeneratorDialog; -class QAudioFormat; -class QLabel; -class QPushButton; -class QMenu; -class QAction; + +QT_FORWARD_DECLARE_CLASS(QAudioFormat) +QT_FORWARD_DECLARE_CLASS(QLabel) +QT_FORWARD_DECLARE_CLASS(QPushButton) +QT_FORWARD_DECLARE_CLASS(QMenu) +QT_FORWARD_DECLARE_CLASS(QAction) /** * Main application widget, responsible for connecting the various UI diff --git a/demos/spectrum/app/settingsdialog.h b/demos/spectrum/app/settingsdialog.h index 77b2b61..796b4af 100644 --- a/demos/spectrum/app/settingsdialog.h +++ b/demos/spectrum/app/settingsdialog.h @@ -45,11 +45,11 @@ #include #include -class QComboBox; -class QCheckBox; -class QSlider; -class QSpinBox; -class QGridLayout; +QT_FORWARD_DECLARE_CLASS(QComboBox) +QT_FORWARD_DECLARE_CLASS(QCheckBox) +QT_FORWARD_DECLARE_CLASS(QSlider) +QT_FORWARD_DECLARE_CLASS(QSpinBox) +QT_FORWARD_DECLARE_CLASS(QGridLayout) /** * Dialog used to control settings such as the audio input / output device diff --git a/demos/spectrum/app/spectrograph.h b/demos/spectrum/app/spectrograph.h index 45db244..ce59d90 100644 --- a/demos/spectrum/app/spectrograph.h +++ b/demos/spectrum/app/spectrograph.h @@ -44,7 +44,7 @@ #include #include "frequencyspectrum.h" -class QMouseEvent; +QT_FORWARD_DECLARE_CLASS(QMouseEvent) /** * Widget which displays a spectrograph showing the frequency spectrum diff --git a/demos/spectrum/app/spectrumanalyser.h b/demos/spectrum/app/spectrumanalyser.h index 98d9d84..ab4abe1 100644 --- a/demos/spectrum/app/spectrumanalyser.h +++ b/demos/spectrum/app/spectrumanalyser.h @@ -58,8 +58,9 @@ #include "FFTRealFixLenParam.h" #endif -class QAudioFormat; -class QThread; +QT_FORWARD_DECLARE_CLASS(QAudioFormat) +QT_FORWARD_DECLARE_CLASS(QThread) + class FFTRealWrapper; class SpectrumAnalyserThreadPrivate; diff --git a/demos/spectrum/app/tonegenerator.h b/demos/spectrum/app/tonegenerator.h index 0c2f8fd..bf31179 100644 --- a/demos/spectrum/app/tonegenerator.h +++ b/demos/spectrum/app/tonegenerator.h @@ -44,8 +44,8 @@ #include #include "spectrum.h" -class QAudioFormat; -class QByteArray; +QT_FORWARD_DECLARE_CLASS(QAudioFormat) +QT_FORWARD_DECLARE_CLASS(QByteArray) /** * Generate a sine wave diff --git a/demos/spectrum/app/tonegeneratordialog.h b/demos/spectrum/app/tonegeneratordialog.h index 2e66706..c2aa892 100644 --- a/demos/spectrum/app/tonegeneratordialog.h +++ b/demos/spectrum/app/tonegeneratordialog.h @@ -45,10 +45,10 @@ #include #include -class QCheckBox; -class QSlider; -class QSpinBox; -class QGridLayout; +QT_FORWARD_DECLARE_CLASS(QCheckBox) +QT_FORWARD_DECLARE_CLASS(QSlider) +QT_FORWARD_DECLARE_CLASS(QSpinBox) +QT_FORWARD_DECLARE_CLASS(QGridLayout) /** * Dialog which controls the parameters of the tone generator. diff --git a/demos/spectrum/app/utils.h b/demos/spectrum/app/utils.h index 596533e..4e29030 100644 --- a/demos/spectrum/app/utils.h +++ b/demos/spectrum/app/utils.h @@ -44,7 +44,7 @@ #include #include -class QAudioFormat; +QT_FORWARD_DECLARE_CLASS(QAudioFormat) //----------------------------------------------------------------------------- // Miscellaneous utility functions diff --git a/demos/spectrum/app/waveform.h b/demos/spectrum/app/waveform.h index dce3c37..57c9eec 100644 --- a/demos/spectrum/app/waveform.h +++ b/demos/spectrum/app/waveform.h @@ -46,7 +46,7 @@ #include #include -class QByteArray; +QT_FORWARD_DECLARE_CLASS(QByteArray) /** * Widget which displays a section of the audio waveform. -- cgit v0.12 From ce05a9a2a4480344e6939f3c63620715c950f903 Mon Sep 17 00:00:00 2001 From: Denis Dzyubenko Date: Tue, 25 May 2010 12:55:00 +0200 Subject: Fix for Norwegian and Korean languages on symbian. Last commits added Norwegian Nynorsk and Korean locales support, however the array that contains the mapping between symbian locale constant and locale string should be sorted to work. Task-number: QT-3368 Task-number: QT-3370 Reviewed-by: trustme --- src/corelib/tools/qlocale.cpp | 1 + src/corelib/tools/qlocale_symbian.cpp | 121 +++++++++++++++++----------------- 2 files changed, 62 insertions(+), 60 deletions(-) diff --git a/src/corelib/tools/qlocale.cpp b/src/corelib/tools/qlocale.cpp index 519ff3d..c000dc8 100644 --- a/src/corelib/tools/qlocale.cpp +++ b/src/corelib/tools/qlocale.cpp @@ -754,6 +754,7 @@ struct WindowsToISOListElt { char iso_name[6]; }; +/* NOTE: This array should be sorted by the first column! */ static const WindowsToISOListElt windows_to_iso_list[] = { { 0x0401, "ar_SA" }, { 0x0402, "bg\0 " }, diff --git a/src/corelib/tools/qlocale_symbian.cpp b/src/corelib/tools/qlocale_symbian.cpp index b6afa12..1e674af 100644 --- a/src/corelib/tools/qlocale_symbian.cpp +++ b/src/corelib/tools/qlocale_symbian.cpp @@ -93,72 +93,73 @@ struct symbianToISO { /* - Mapping from Symbian to ISO locale + Mapping from Symbian to ISO locale. + NOTE: This array should be sorted by the first column! */ static const symbianToISO symbian_to_iso_list[] = { - { ELangEnglish, "en_GB" }, - { ELangFrench, "fr_FR" }, - { ELangGerman, "de_DE" }, - { ELangSpanish, "es_ES" }, - { ELangItalian, "it_IT" }, - { ELangSwedish, "sv_SE" }, - { ELangDanish, "da_DK" }, - { ELangNorwegian, "no_NO" }, - { ELangNorwegianNynorsk, "nn_NO" }, - { ELangFinnish, "fi_FI" }, - { ELangAmerican, "en_US" }, - { ELangPortuguese, "pt_PT" }, - { ELangTurkish, "tr_TR" }, - { ELangIcelandic, "is_IS" }, - { ELangRussian, "ru_RU" }, - { ELangHungarian, "hu_HU" }, - { ELangDutch, "nl_NL" }, - { ELangBelgianFlemish, "nl_BE" }, - { ELangCzech, "cs_CZ" }, - { ELangSlovak, "sk_SK" }, - { ELangPolish, "pl_PL" }, - { ELangSlovenian, "sl_SI" }, - { ELangTaiwanChinese, "zh_TW" }, - { ELangHongKongChinese, "zh_HK" }, - { ELangPrcChinese, "zh_CN" }, - { ELangJapanese, "ja_JP" }, - { ELangThai, "th_TH" }, - { ELangArabic, "ar_AE" }, - { ELangTagalog, "tl_PH" }, - { ELangBulgarian, "bg_BG" }, - { ELangCatalan, "ca_ES" }, - { ELangCroatian, "hr_HR" }, - { ELangEstonian, "et_EE" }, - { ELangFarsi, "fa_IR" }, - { ELangCanadianFrench, "fr_CA" }, - { ELangGreek, "el_GR" }, - { ELangHebrew, "he_IL" }, - { ELangHindi, "hi_IN" }, - { ELangIndonesian, "id_ID" }, - { ELangLatvian, "lv_LV" }, - { ELangLithuanian, "lt_LT" }, - { ELangMalay, "ms_MY" }, - { ELangBrazilianPortuguese, "pt_BR" }, - { ELangRomanian, "ro_RO" }, - { ELangSerbian, "sr_RS" }, - { ELangLatinAmericanSpanish,"es_419" }, - { ELangUkrainian, "uk_UA" }, - { ELangUrdu, "ur_PK" }, // India/Pakistan - { ELangVietnamese, "vi_VN" }, - { ELangKorean, "ko_KO" }, + { ELangEnglish, "en_GB" }, // 1 + { ELangFrench, "fr_FR" }, // 2 + { ELangGerman, "de_DE" }, // 3 + { ELangSpanish, "es_ES" }, // 4 + { ELangItalian, "it_IT" }, // 5 + { ELangSwedish, "sv_SE" }, // 6 + { ELangDanish, "da_DK" }, // 7 + { ELangNorwegian, "no_NO" }, // 8 + { ELangFinnish, "fi_FI" }, // 9 + { ELangAmerican, "en_US" }, // 10 + { ELangPortuguese, "pt_PT" }, // 13 + { ELangTurkish, "tr_TR" }, // 14 + { ELangIcelandic, "is_IS" }, // 15 + { ELangRussian, "ru_RU" }, // 16 + { ELangHungarian, "hu_HU" }, // 17 + { ELangDutch, "nl_NL" }, // 18 + { ELangBelgianFlemish, "nl_BE" }, // 19 + { ELangCzech, "cs_CZ" }, // 25 + { ELangSlovak, "sk_SK" }, // 26 + { ELangPolish, "pl_PL" }, // 27 + { ELangSlovenian, "sl_SI" }, // 28 + { ELangTaiwanChinese, "zh_TW" }, // 29 + { ELangHongKongChinese, "zh_HK" }, // 30 + { ELangPrcChinese, "zh_CN" }, // 31 + { ELangJapanese, "ja_JP" }, // 32 + { ELangThai, "th_TH" }, // 33 + { ELangArabic, "ar_AE" }, // 37 + { ELangTagalog, "tl_PH" }, // 39 + { ELangBulgarian, "bg_BG" }, // 42 + { ELangCatalan, "ca_ES" }, // 44 + { ELangCroatian, "hr_HR" }, // 45 + { ELangEstonian, "et_EE" }, // 49 + { ELangFarsi, "fa_IR" }, // 50 + { ELangCanadianFrench, "fr_CA" }, // 51 + { ELangGreek, "el_GR" }, // 54 + { ELangHebrew, "he_IL" }, // 57 + { ELangHindi, "hi_IN" }, // 58 + { ELangIndonesian, "id_ID" }, // 59 + { ELangKorean, "ko_KO" }, // 65 + { ELangLatvian, "lv_LV" }, // 67 + { ELangLithuanian, "lt_LT" }, // 68 + { ELangMalay, "ms_MY" }, // 70 + { ELangNorwegianNynorsk, "nn_NO" }, // 75 + { ELangBrazilianPortuguese, "pt_BR" }, // 76 + { ELangRomanian, "ro_RO" }, // 78 + { ELangSerbian, "sr_RS" }, // 79 + { ELangLatinAmericanSpanish,"es_419" }, // 83 + { ELangUkrainian, "uk_UA" }, // 93 + { ELangUrdu, "ur_PK" }, // 94 - India/Pakistan + { ELangVietnamese, "vi_VN" }, // 96 #ifdef __E32LANG_H__ // 5.0 - { ELangBasque, "eu_ES" }, - { ELangGalician, "gl_ES" }, + { ELangBasque, "eu_ES" }, // 102 + { ELangGalician, "gl_ES" }, // 103 #endif #if !defined(__SERIES60_31__) - { ELangEnglish_Apac, "en" }, - { ELangEnglish_Taiwan, "en_TW" }, - { ELangEnglish_HongKong, "en_HK" }, - { ELangEnglish_Prc, "en_CN" }, - { ELangEnglish_Japan, "en_JP"}, - { ELangEnglish_Thailand, "en_TH" }, - { ELangMalay_Apac, "ms" } + { ELangEnglish_Apac, "en" }, // 129 + { ELangEnglish_Taiwan, "en_TW" }, // 157 ### Not supported by CLDR + { ELangEnglish_HongKong, "en_HK" }, // 158 + { ELangEnglish_Prc, "en_CN" }, // 159 ### Not supported by CLDR + { ELangEnglish_Japan, "en_JP"}, // 160 ### Not supported by CLDR + { ELangEnglish_Thailand, "en_TH" }, // 161 ### Not supported by CLDR + { ELangMalay_Apac, "ms" } // 326 #endif }; -- cgit v0.12 From 132933df69b355695dd9401d81b7bc2ac5f5684f Mon Sep 17 00:00:00 2001 From: Denis Dzyubenko Date: Tue, 25 May 2010 17:14:09 +0200 Subject: Fixed a typo in variable name in qlocale data generator. Reviewed-by: trustme --- util/local_database/cldr2qlocalexml.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/local_database/cldr2qlocalexml.py b/util/local_database/cldr2qlocalexml.py index 20a7d34..1d9ccda 100755 --- a/util/local_database/cldr2qlocalexml.py +++ b/util/local_database/cldr2qlocalexml.py @@ -123,7 +123,7 @@ def generateLocaleInfo(path): result['language_id'] = language_id result['country_id'] = country_id - numberingSystem = None + numbering_system = None try: numbering_system = findEntry(path, "numbers/defaultNumberingSystem") except: -- cgit v0.12 From a32c96e753c2f5a123e518a92762ec9c9ff3b0b7 Mon Sep 17 00:00:00 2001 From: Denis Dzyubenko Date: Tue, 25 May 2010 17:27:38 +0200 Subject: Dont crash when assigning the same input context twice. Added a guard check to return if the given input context is the same is we already have. Explicitly mention in the doc that we take ownership of the given input context object. Task-number: QTBUG-10780 Reviewed-by: Thomas Zander --- src/gui/kernel/qapplication.cpp | 10 ++++++---- src/gui/kernel/qwidget.cpp | 4 ++++ 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/src/gui/kernel/qapplication.cpp b/src/gui/kernel/qapplication.cpp index b805a72..57c4c99 100644 --- a/src/gui/kernel/qapplication.cpp +++ b/src/gui/kernel/qapplication.cpp @@ -5270,18 +5270,20 @@ bool QApplication::keypadNavigationEnabled() This function replaces the QInputContext instance used by the application with \a inputContext. + Qt takes ownership of the given \a inputContext. + \sa inputContext() */ void QApplication::setInputContext(QInputContext *inputContext) { - Q_D(QApplication); - Q_UNUSED(d);// only static members being used. + if (inputContext == QApplicationPrivate::inputContext) + return; if (!inputContext) { qWarning("QApplication::setInputContext: called with 0 input context"); return; } - delete d->inputContext; - d->inputContext = inputContext; + delete QApplicationPrivate::inputContext; + QApplicationPrivate::inputContext = inputContext; } /*! diff --git a/src/gui/kernel/qwidget.cpp b/src/gui/kernel/qwidget.cpp index 1c7f6ac..569af42 100644 --- a/src/gui/kernel/qwidget.cpp +++ b/src/gui/kernel/qwidget.cpp @@ -312,6 +312,8 @@ QInputContext *QWidget::inputContext() This function sets the input context \a context on this widget. + Qt takes ownership of the given input \a context. + \sa inputContext() */ void QWidget::setInputContext(QInputContext *context) @@ -320,6 +322,8 @@ void QWidget::setInputContext(QInputContext *context) if (!testAttribute(Qt::WA_InputMethodEnabled)) return; #ifndef QT_NO_IM + if (context == d->ic) + return; if (d->ic) delete d->ic; d->ic = context; -- cgit v0.12 From afe3c2e741b372f88bf37c1df95ad30b468931e8 Mon Sep 17 00:00:00 2001 From: Liang Qi Date: Tue, 25 May 2010 17:49:43 +0200 Subject: Fix the compilation for tst_qabstractprintdialog and tst_qprinter on symbian. --- tests/auto/qabstractprintdialog/tst_qabstractprintdialog.cpp | 8 ++++++++ tests/auto/qprinter/tst_qprinter.cpp | 11 +++++++++-- 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/tests/auto/qabstractprintdialog/tst_qabstractprintdialog.cpp b/tests/auto/qabstractprintdialog/tst_qabstractprintdialog.cpp index 15f427c..0700e9e 100644 --- a/tests/auto/qabstractprintdialog/tst_qabstractprintdialog.cpp +++ b/tests/auto/qabstractprintdialog/tst_qabstractprintdialog.cpp @@ -50,6 +50,8 @@ //TESTED_CLASS= //TESTED_FILES= +#if !defined(QT_NO_PRINTER) && !defined(QT_NO_PRINTDIALOG) + class tst_QAbstractPrintDialog : public QObject { Q_OBJECT @@ -141,3 +143,9 @@ void tst_QAbstractPrintDialog::setFromTo() QTEST_MAIN(tst_QAbstractPrintDialog) #include "tst_qabstractprintdialog.moc" + +#else + +QTEST_NOOP_MAIN + +#endif diff --git a/tests/auto/qprinter/tst_qprinter.cpp b/tests/auto/qprinter/tst_qprinter.cpp index b1ff425..e52e1b5 100644 --- a/tests/auto/qprinter/tst_qprinter.cpp +++ b/tests/auto/qprinter/tst_qprinter.cpp @@ -64,11 +64,13 @@ Q_DECLARE_METATYPE(QRect) - +QT_FORWARD_DECLARE_CLASS(QPrinter) //TESTED_CLASS= //TESTED_FILES= +#ifndef QT_NO_PRINTER + class tst_QPrinter : public QObject { Q_OBJECT @@ -215,7 +217,6 @@ tst_QPrinter::tst_QPrinter() tst_QPrinter::~tst_QPrinter() { - } // initTestCase will be executed once before the first testfunction is executed. @@ -1007,3 +1008,9 @@ void tst_QPrinter::taskQTBUG4497_reusePrinterOnDifferentFiles() QTEST_MAIN(tst_QPrinter) #include "tst_qprinter.moc" + +#else //QT_NO_PRINTER + +QTEST_NOOP_MAIN + +#endif //QT_NO_PRINTER -- cgit v0.12 From 70ae881499ec329e6fdf96d56a6189f77641b3b0 Mon Sep 17 00:00:00 2001 From: Liang Qi Date: Tue, 25 May 2010 17:49:43 +0200 Subject: Fix the compilation for tst_qabstractprintdialog and tst_qprinter on symbian. --- tests/auto/qabstractprintdialog/tst_qabstractprintdialog.cpp | 8 ++++++++ tests/auto/qprinter/tst_qprinter.cpp | 11 +++++++++-- 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/tests/auto/qabstractprintdialog/tst_qabstractprintdialog.cpp b/tests/auto/qabstractprintdialog/tst_qabstractprintdialog.cpp index 15f427c..0700e9e 100644 --- a/tests/auto/qabstractprintdialog/tst_qabstractprintdialog.cpp +++ b/tests/auto/qabstractprintdialog/tst_qabstractprintdialog.cpp @@ -50,6 +50,8 @@ //TESTED_CLASS= //TESTED_FILES= +#if !defined(QT_NO_PRINTER) && !defined(QT_NO_PRINTDIALOG) + class tst_QAbstractPrintDialog : public QObject { Q_OBJECT @@ -141,3 +143,9 @@ void tst_QAbstractPrintDialog::setFromTo() QTEST_MAIN(tst_QAbstractPrintDialog) #include "tst_qabstractprintdialog.moc" + +#else + +QTEST_NOOP_MAIN + +#endif diff --git a/tests/auto/qprinter/tst_qprinter.cpp b/tests/auto/qprinter/tst_qprinter.cpp index 8b79533..e908961 100644 --- a/tests/auto/qprinter/tst_qprinter.cpp +++ b/tests/auto/qprinter/tst_qprinter.cpp @@ -64,11 +64,13 @@ Q_DECLARE_METATYPE(QRect) - +QT_FORWARD_DECLARE_CLASS(QPrinter) //TESTED_CLASS= //TESTED_FILES= +#ifndef QT_NO_PRINTER + class tst_QPrinter : public QObject { Q_OBJECT @@ -217,7 +219,6 @@ tst_QPrinter::tst_QPrinter() tst_QPrinter::~tst_QPrinter() { - } // initTestCase will be executed once before the first testfunction is executed. @@ -1056,3 +1057,9 @@ void tst_QPrinter::testPdfTitle() QTEST_MAIN(tst_QPrinter) #include "tst_qprinter.moc" + +#else //QT_NO_PRINTER + +QTEST_NOOP_MAIN + +#endif //QT_NO_PRINTER -- cgit v0.12 From 3955a8d51f951b3c8cc7a6ceb565370391f83294 Mon Sep 17 00:00:00 2001 From: Gareth Stockwell Date: Tue, 25 May 2010 16:58:10 +0100 Subject: My 4.6.3 changes --- dist/changes-4.6.3 | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dist/changes-4.6.3 b/dist/changes-4.6.3 index 6a81f6a..c1ace7b 100644 --- a/dist/changes-4.6.3 +++ b/dist/changes-4.6.3 @@ -233,6 +233,12 @@ Third party components - Updated bar to the latest version from baz.org. +Demos +----- + + - QtMultimedia + * Spectrum analyzer application + **************************************************************************** * Platform Specific Changes * -- cgit v0.12 From 5c8017e0880cc5f71854ebb71a38b944e58260b1 Mon Sep 17 00:00:00 2001 From: Tasuku Suzuki Date: Wed, 26 May 2010 03:32:11 +0900 Subject: Fix QT_NO_TEXTDATE --- src/declarative/qml/qdeclarativecompiler.cpp | 4 ++++ src/declarative/qml/qdeclarativeengine.cpp | 4 ++++ src/declarative/qml/qdeclarativeengine_p.h | 3 ++- src/declarative/qml/qdeclarativestringconverters.cpp | 4 ++++ src/declarative/qml/qdeclarativestringconverters_p.h | 2 ++ 5 files changed, 16 insertions(+), 1 deletion(-) diff --git a/src/declarative/qml/qdeclarativecompiler.cpp b/src/declarative/qml/qdeclarativecompiler.cpp index b5bf972..b74d640 100644 --- a/src/declarative/qml/qdeclarativecompiler.cpp +++ b/src/declarative/qml/qdeclarativecompiler.cpp @@ -240,6 +240,7 @@ bool QDeclarativeCompiler::testLiteralAssignment(const QMetaProperty &prop, if (!ok) COMPILE_EXCEPTION(v, tr("Invalid property assignment: color expected")); } break; +#ifndef QT_NO_TEXTDATE case QVariant::Date: { bool ok; @@ -261,6 +262,7 @@ bool QDeclarativeCompiler::testLiteralAssignment(const QMetaProperty &prop, if (!ok) COMPILE_EXCEPTION(v, tr("Invalid property assignment: datetime expected")); } break; +#endif // QT_NO_TEXTDATE case QVariant::Point: case QVariant::PointF: { @@ -414,6 +416,7 @@ void QDeclarativeCompiler::genLiteralAssignment(const QMetaProperty &prop, instr.storeColor.value = c.rgba(); } break; +#ifndef QT_NO_TEXTDATE case QVariant::Date: { QDate d = QDeclarativeStringConverters::dateFromString(string); @@ -447,6 +450,7 @@ void QDeclarativeCompiler::genLiteralAssignment(const QMetaProperty &prop, instr.storeDateTime.valueIndex = index; } break; +#endif // QT_NO_TEXTDATE case QVariant::Point: case QVariant::PointF: { diff --git a/src/declarative/qml/qdeclarativeengine.cpp b/src/declarative/qml/qdeclarativeengine.cpp index 0a75532..452ed3d 100644 --- a/src/declarative/qml/qdeclarativeengine.cpp +++ b/src/declarative/qml/qdeclarativeengine.cpp @@ -225,10 +225,12 @@ QDeclarativeScriptEngine::QDeclarativeScriptEngine(QDeclarativeEnginePrivate *pr qtObject.setProperty(QLatin1String("tint"), newFunction(QDeclarativeEnginePrivate::tint, 2)); } +#ifndef QT_NO_TEXTDATE //date/time formatting qtObject.setProperty(QLatin1String("formatDate"),newFunction(QDeclarativeEnginePrivate::formatDate, 2)); qtObject.setProperty(QLatin1String("formatTime"),newFunction(QDeclarativeEnginePrivate::formatTime, 2)); qtObject.setProperty(QLatin1String("formatDateTime"),newFunction(QDeclarativeEnginePrivate::formatDateTime, 2)); +#endif //misc methods qtObject.setProperty(QLatin1String("openUrlExternally"),newFunction(QDeclarativeEnginePrivate::desktopOpenUrl, 1)); @@ -1092,6 +1094,7 @@ QScriptValue QDeclarativeEnginePrivate::vector(QScriptContext *ctxt, QScriptEngi return QDeclarativeEnginePrivate::get(engine)->scriptValueFromVariant(qVariantFromValue(QVector3D(x, y, z))); } +#ifndef QT_NO_TEXTDATE QScriptValue QDeclarativeEnginePrivate::formatDate(QScriptContext*ctxt, QScriptEngine*engine) { int argCount = ctxt->argumentCount(); @@ -1154,6 +1157,7 @@ QScriptValue QDeclarativeEnginePrivate::formatDateTime(QScriptContext*ctxt, QScr } return engine->newVariant(qVariantFromValue(date.toString(enumFormat))); } +#endif // QT_NO_TEXTDATE QScriptValue QDeclarativeEnginePrivate::rgba(QScriptContext *ctxt, QScriptEngine *engine) { diff --git a/src/declarative/qml/qdeclarativeengine_p.h b/src/declarative/qml/qdeclarativeengine_p.h index 0b1c17d..296885f 100644 --- a/src/declarative/qml/qdeclarativeengine_p.h +++ b/src/declarative/qml/qdeclarativeengine_p.h @@ -302,10 +302,11 @@ public: static QScriptValue consoleLog(QScriptContext*, QScriptEngine*); static QScriptValue quit(QScriptContext*, QScriptEngine*); +#ifndef QT_NO_TEXTDATE static QScriptValue formatDate(QScriptContext*, QScriptEngine*); static QScriptValue formatTime(QScriptContext*, QScriptEngine*); static QScriptValue formatDateTime(QScriptContext*, QScriptEngine*); - +#endif static QScriptEngine *getScriptEngine(QDeclarativeEngine *e) { return &e->d_func()->scriptEngine; } static QDeclarativeEngine *getEngine(QScriptEngine *e) { return static_cast(e)->p->q_func(); } static QDeclarativeEnginePrivate *get(QDeclarativeEngine *e) { return e->d_func(); } diff --git a/src/declarative/qml/qdeclarativestringconverters.cpp b/src/declarative/qml/qdeclarativestringconverters.cpp index bbcc00b..8bd2cf1 100644 --- a/src/declarative/qml/qdeclarativestringconverters.cpp +++ b/src/declarative/qml/qdeclarativestringconverters.cpp @@ -106,12 +106,14 @@ QVariant QDeclarativeStringConverters::variantFromString(const QString &s, int p return QVariant(uint(qRound(s.toDouble(ok)))); case QMetaType::QColor: return QVariant::fromValue(colorFromString(s, ok)); +#ifndef QT_NO_TEXTDATE case QMetaType::QDate: return QVariant::fromValue(dateFromString(s, ok)); case QMetaType::QTime: return QVariant::fromValue(timeFromString(s, ok)); case QMetaType::QDateTime: return QVariant::fromValue(dateTimeFromString(s, ok)); +#endif // QT_NO_TEXTDATE case QMetaType::QPointF: return QVariant::fromValue(pointFFromString(s, ok)); case QMetaType::QPoint: @@ -150,6 +152,7 @@ QColor QDeclarativeStringConverters::colorFromString(const QString &s, bool *ok) } } +#ifndef QT_NO_TEXTDATE QDate QDeclarativeStringConverters::dateFromString(const QString &s, bool *ok) { QDate d = QDate::fromString(s, Qt::ISODate); @@ -170,6 +173,7 @@ QDateTime QDeclarativeStringConverters::dateTimeFromString(const QString &s, boo if (ok) *ok = d.isValid(); return d; } +#endif // QT_NO_TEXTDATE //expects input of "x,y" QPointF QDeclarativeStringConverters::pointFFromString(const QString &s, bool *ok) diff --git a/src/declarative/qml/qdeclarativestringconverters_p.h b/src/declarative/qml/qdeclarativestringconverters_p.h index 97f72fc..842d1b3 100644 --- a/src/declarative/qml/qdeclarativestringconverters_p.h +++ b/src/declarative/qml/qdeclarativestringconverters_p.h @@ -73,9 +73,11 @@ namespace QDeclarativeStringConverters QVariant Q_DECLARATIVE_EXPORT variantFromString(const QString &, int preferredType, bool *ok = 0); QColor Q_DECLARATIVE_EXPORT colorFromString(const QString &, bool *ok = 0); +#ifndef QT_NO_TEXTDATE QDate Q_DECLARATIVE_EXPORT dateFromString(const QString &, bool *ok = 0); QTime Q_DECLARATIVE_EXPORT timeFromString(const QString &, bool *ok = 0); QDateTime Q_DECLARATIVE_EXPORT dateTimeFromString(const QString &, bool *ok = 0); +#endif QPointF Q_DECLARATIVE_EXPORT pointFFromString(const QString &, bool *ok = 0); QSizeF Q_DECLARATIVE_EXPORT sizeFFromString(const QString &, bool *ok = 0); QRectF Q_DECLARATIVE_EXPORT rectFFromString(const QString &, bool *ok = 0); -- cgit v0.12 From 3501614b3797272dcbd683adcca4fdacc5b319e9 Mon Sep 17 00:00:00 2001 From: Martin Jones Date: Wed, 26 May 2010 09:19:10 +1000 Subject: Add inherits Item to TextEdit and TextInput docs. Task-number: QTBUG-10969 --- src/declarative/graphicsitems/qdeclarativetextedit.cpp | 3 ++- src/declarative/graphicsitems/qdeclarativetextinput.cpp | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/declarative/graphicsitems/qdeclarativetextedit.cpp b/src/declarative/graphicsitems/qdeclarativetextedit.cpp index e34bb3d..f41cdd0 100644 --- a/src/declarative/graphicsitems/qdeclarativetextedit.cpp +++ b/src/declarative/graphicsitems/qdeclarativetextedit.cpp @@ -61,8 +61,9 @@ QT_BEGIN_NAMESPACE /*! \qmlclass TextEdit QDeclarativeTextEdit - \since 4.7 + \since 4.7 \brief The TextEdit item allows you to add editable formatted text to a scene. + \inherits Item It can display both plain and rich text. For example: diff --git a/src/declarative/graphicsitems/qdeclarativetextinput.cpp b/src/declarative/graphicsitems/qdeclarativetextinput.cpp index 2e7715f..b624c5b 100644 --- a/src/declarative/graphicsitems/qdeclarativetextinput.cpp +++ b/src/declarative/graphicsitems/qdeclarativetextinput.cpp @@ -54,8 +54,9 @@ QT_BEGIN_NAMESPACE /*! \qmlclass TextInput QDeclarativeTextInput - \since 4.7 + \since 4.7 \brief The TextInput item allows you to add an editable line of text to a scene. + \inherits Item TextInput can only display a single line of text, and can only display plain text. However it can provide addition input constraints on the text. -- cgit v0.12 From 291dce4ceba88a6cada0415524e3466621ac1612 Mon Sep 17 00:00:00 2001 From: Martin Jones Date: Wed, 26 May 2010 09:24:07 +1000 Subject: Mention TextInput/Edit::selectByMouse property in QmlChanges. --- src/declarative/QmlChanges.txt | 1 + src/declarative/graphicsitems/qdeclarativetextedit.cpp | 2 +- src/declarative/graphicsitems/qdeclarativetextinput.cpp | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/declarative/QmlChanges.txt b/src/declarative/QmlChanges.txt index 25c2417..3eed8d6 100644 --- a/src/declarative/QmlChanges.txt +++ b/src/declarative/QmlChanges.txt @@ -15,6 +15,7 @@ QList models no longer provide properties in model object. The properties are now updated when the object changes. An object's property "foo" may now be accessed as "foo", modelData.foo" or model.modelData.foo" component.createObject has gained a mandatory "parent" argument +TextEdit and TextInput now have a "selectByMouse" property that defaults to false. C++ API ------- diff --git a/src/declarative/graphicsitems/qdeclarativetextedit.cpp b/src/declarative/graphicsitems/qdeclarativetextedit.cpp index f41cdd0..a154d53 100644 --- a/src/declarative/graphicsitems/qdeclarativetextedit.cpp +++ b/src/declarative/graphicsitems/qdeclarativetextedit.cpp @@ -782,7 +782,7 @@ void QDeclarativeTextEdit::componentComplete() } /*! - \qmlproperty string TextEdit::selectByMouse + \qmlproperty bool TextEdit::selectByMouse Defaults to false. diff --git a/src/declarative/graphicsitems/qdeclarativetextinput.cpp b/src/declarative/graphicsitems/qdeclarativetextinput.cpp index b624c5b..1ac1b4e 100644 --- a/src/declarative/graphicsitems/qdeclarativetextinput.cpp +++ b/src/declarative/graphicsitems/qdeclarativetextinput.cpp @@ -1121,7 +1121,7 @@ QString QDeclarativeTextInput::displayText() const } /*! - \qmlproperty string TextInput::selectByMouse + \qmlproperty bool TextInput::selectByMouse Defaults to false. -- cgit v0.12 From d0e1e7c1249348eeba128c71681cfa916c9e5ae1 Mon Sep 17 00:00:00 2001 From: Aaron McCarthy Date: Wed, 26 May 2010 09:43:11 +1000 Subject: Fix build when snap functionality is not available. --- src/plugins/bearer/symbian/qnetworksession_impl.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/bearer/symbian/qnetworksession_impl.h b/src/plugins/bearer/symbian/qnetworksession_impl.h index 9767293..b045ff1 100644 --- a/src/plugins/bearer/symbian/qnetworksession_impl.h +++ b/src/plugins/bearer/symbian/qnetworksession_impl.h @@ -73,9 +73,9 @@ QT_BEGIN_NAMESPACE class ConnectionProgressNotifier; class SymbianEngine; -class QNetworkSessionPrivateImpl : public QNetworkSessionPrivate, public CActive, +class QNetworkSessionPrivateImpl : public QNetworkSessionPrivate, public CActive #ifdef SNAP_FUNCTIONALITY_AVAILABLE - public MMobilityProtocolResp + , public MMobilityProtocolResp #endif { Q_OBJECT -- cgit v0.12 From 5613693326eaa272d6fab5819072c52b743d7785 Mon Sep 17 00:00:00 2001 From: Martin Jones Date: Wed, 26 May 2010 10:26:42 +1000 Subject: Don't display unnecessary copyright headers in doc --- doc/src/declarative/extending-tutorial.qdoc | 8 ++++---- doc/src/declarative/globalobject.qdoc | 2 +- examples/declarative/sqllocalstorage/hello.qml | 2 +- examples/declarative/tutorials/extending/chapter1-basics/app.qml | 2 +- examples/declarative/tutorials/extending/chapter2-methods/app.qml | 2 +- .../declarative/tutorials/extending/chapter3-bindings/app.qml | 2 +- .../tutorials/extending/chapter4-customPropertyTypes/app.qml | 2 +- 7 files changed, 10 insertions(+), 10 deletions(-) diff --git a/doc/src/declarative/extending-tutorial.qdoc b/doc/src/declarative/extending-tutorial.qdoc index f00b858..7ec9087 100644 --- a/doc/src/declarative/extending-tutorial.qdoc +++ b/doc/src/declarative/extending-tutorial.qdoc @@ -107,7 +107,7 @@ The class implementation in \c musician.cpp simply sets and returns the \c m_nam Our QML file, \c app.qml, creates a \c Musician item and display the musician's details using a standard QML \l Text item: -\quotefile declarative/tutorials/extending/chapter1-basics/app.qml +\snippet declarative/tutorials/extending/chapter1-basics/app.qml 0 We'll also create a C++ application that uses a QDeclarativeView to run and display \c app.qml. The application must register the \c Musician type @@ -147,7 +147,7 @@ to the console and then emits a "performanceEnded" signal. Other elements would be able to call \c perform() and receive \c performanceEnded() signals like this: -\quotefile declarative/tutorials/extending/chapter2-methods/app.qml +\snippet declarative/tutorials/extending/chapter2-methods/app.qml 0 To do this, we add a \c perform() method and a \c performanceEnded() signal to our C++ class: @@ -193,7 +193,7 @@ other elements' values when property values change. Let's enable property bindings for the \c instrument property. That means if we have code like this: -\quotefile declarative/tutorials/extending/chapter3-bindings/app.qml +\snippet declarative/tutorials/extending/chapter3-bindings/app.qml 0 The "instrument: reddy.instrument" statement binds the \c instrument value of \c craig to the \c instrument of \c reddy. @@ -275,7 +275,7 @@ For example, let's change the type of the \c instrument property from a string t new type called "Instrument". Instead of assigning a string value to \c instrument, we assign an \c Instrument value: -\quotefile declarative/tutorials/extending/chapter4-customPropertyTypes/app.qml +\snippet declarative/tutorials/extending/chapter4-customPropertyTypes/app.qml 0 Like \c Musician, this new \c Instrument type has to inherit from QObject and declare its properties with Q_PROPERTY(): diff --git a/doc/src/declarative/globalobject.qdoc b/doc/src/declarative/globalobject.qdoc index 2885dd5..fcd227d 100644 --- a/doc/src/declarative/globalobject.qdoc +++ b/doc/src/declarative/globalobject.qdoc @@ -141,7 +141,7 @@ of QDeclarativeEngine::offlineStoragePath(), currently as SQLite databases. The API can be used from JavaScript functions in your QML: -\quotefile declarative/sqllocalstorage/hello.qml +\snippet declarative/sqllocalstorage/hello.qml 0 The API conforms to the Synchronous API of the HTML5 Web Database API, \link http://www.w3.org/TR/2009/WD-webdatabase-20091029/ W3C Working Draft 29 October 2009\endlink. diff --git a/examples/declarative/sqllocalstorage/hello.qml b/examples/declarative/sqllocalstorage/hello.qml index 67f542e..0913d42 100644 --- a/examples/declarative/sqllocalstorage/hello.qml +++ b/examples/declarative/sqllocalstorage/hello.qml @@ -37,7 +37,7 @@ ** $QT_END_LICENSE$ ** ****************************************************************************/ - +//![0] import Qt 4.7 Text { diff --git a/examples/declarative/tutorials/extending/chapter1-basics/app.qml b/examples/declarative/tutorials/extending/chapter1-basics/app.qml index 96c543e..7de32f2 100644 --- a/examples/declarative/tutorials/extending/chapter1-basics/app.qml +++ b/examples/declarative/tutorials/extending/chapter1-basics/app.qml @@ -37,7 +37,7 @@ ** $QT_END_LICENSE$ ** ****************************************************************************/ - +//![0] import Music 1.0 import Qt 4.7 diff --git a/examples/declarative/tutorials/extending/chapter2-methods/app.qml b/examples/declarative/tutorials/extending/chapter2-methods/app.qml index 82740d2..495413f 100644 --- a/examples/declarative/tutorials/extending/chapter2-methods/app.qml +++ b/examples/declarative/tutorials/extending/chapter2-methods/app.qml @@ -37,7 +37,7 @@ ** $QT_END_LICENSE$ ** ****************************************************************************/ - +//![0] import Music 1.0 import Qt 4.7 diff --git a/examples/declarative/tutorials/extending/chapter3-bindings/app.qml b/examples/declarative/tutorials/extending/chapter3-bindings/app.qml index 138d504..46408cb 100644 --- a/examples/declarative/tutorials/extending/chapter3-bindings/app.qml +++ b/examples/declarative/tutorials/extending/chapter3-bindings/app.qml @@ -37,7 +37,7 @@ ** $QT_END_LICENSE$ ** ****************************************************************************/ - +//![0] import Music 1.0 import Qt 4.7 diff --git a/examples/declarative/tutorials/extending/chapter4-customPropertyTypes/app.qml b/examples/declarative/tutorials/extending/chapter4-customPropertyTypes/app.qml index e238ec4..09662d6 100644 --- a/examples/declarative/tutorials/extending/chapter4-customPropertyTypes/app.qml +++ b/examples/declarative/tutorials/extending/chapter4-customPropertyTypes/app.qml @@ -37,7 +37,7 @@ ** $QT_END_LICENSE$ ** ****************************************************************************/ - +//![0] import Music 1.0 import Qt 4.7 -- cgit v0.12 From 113d7a6a1eab75ad5673f9b50ccf8df456b5d628 Mon Sep 17 00:00:00 2001 From: Yann Bodson Date: Wed, 26 May 2010 11:24:37 +1000 Subject: Fix Gradient doc snippet. --- doc/src/snippets/declarative/gradient.qml | 2 ++ src/declarative/graphicsitems/qdeclarativerectangle.cpp | 6 +----- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/doc/src/snippets/declarative/gradient.qml b/doc/src/snippets/declarative/gradient.qml index d25352b..7a68233 100644 --- a/doc/src/snippets/declarative/gradient.qml +++ b/doc/src/snippets/declarative/gradient.qml @@ -41,6 +41,7 @@ import Qt 4.7 +//![code] Rectangle { width: 100; height: 100 gradient: Gradient { @@ -49,3 +50,4 @@ Rectangle { GradientStop { position: 1.0; color: "green" } } } +//![code] diff --git a/src/declarative/graphicsitems/qdeclarativerectangle.cpp b/src/declarative/graphicsitems/qdeclarativerectangle.cpp index d098aa0..4f7a722 100644 --- a/src/declarative/graphicsitems/qdeclarativerectangle.cpp +++ b/src/declarative/graphicsitems/qdeclarativerectangle.cpp @@ -114,11 +114,7 @@ void QDeclarativeGradientStop::updateGradient() rectangle with a gradient starting with red, blending to yellow at 1/3 of the size of the rectangle, and ending with Green: - \table - \row - \o \image gradient.png - \o \quotefile doc/src/snippets/declarative/gradient.qml - \endtable + \snippet doc/src/snippets/declarative/gradient.qml code \sa GradientStop */ -- cgit v0.12 From 5a6a5b1b83e2196b4cad11fbb0f175682b6f7e8e Mon Sep 17 00:00:00 2001 From: Aaron Kennedy Date: Wed, 26 May 2010 11:30:20 +1000 Subject: Replace QTime with QElapsedTimer --- src/declarative/util/qdeclarativeview.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/declarative/util/qdeclarativeview.cpp b/src/declarative/util/qdeclarativeview.cpp index e68ef94..b7ce9c9 100644 --- a/src/declarative/util/qdeclarativeview.cpp +++ b/src/declarative/util/qdeclarativeview.cpp @@ -116,7 +116,7 @@ public: void frameBreak() { ++breaks; } private: - QTime timer; + QElapsedTimer timer; int breaks; }; @@ -152,7 +152,7 @@ public: QBasicTimer resizetimer; QDeclarativeView::ResizeMode resizeMode; - QTime frameTimer; + QElapsedTimer frameTimer; void init(); -- cgit v0.12 From 4fe568ffb7a59909b0c72bed7da959fd36702f19 Mon Sep 17 00:00:00 2001 From: Joona Petrell Date: Wed, 26 May 2010 12:42:36 +1000 Subject: Add a way to control when software input panels are shown in TextInput and TextEdit elements Task-number: QTBUG-10841 Reviewed-by: Warwick Allison --- .../graphicsitems/qdeclarativetextedit.cpp | 131 +++++++++++++++++++-- .../graphicsitems/qdeclarativetextedit_p.h | 10 ++ .../graphicsitems/qdeclarativetextedit_p_p.h | 8 +- .../graphicsitems/qdeclarativetextinput.cpp | 131 +++++++++++++++++++-- .../graphicsitems/qdeclarativetextinput_p.h | 10 ++ .../graphicsitems/qdeclarativetextinput_p_p.h | 4 +- .../tst_qdeclarativetextedit.cpp | 85 ++++++++++--- .../tst_qdeclarativetextinput.cpp | 86 +++++++++++--- 8 files changed, 413 insertions(+), 52 deletions(-) diff --git a/src/declarative/graphicsitems/qdeclarativetextedit.cpp b/src/declarative/graphicsitems/qdeclarativetextedit.cpp index a154d53..d4fbb8b 100644 --- a/src/declarative/graphicsitems/qdeclarativetextedit.cpp +++ b/src/declarative/graphicsitems/qdeclarativetextedit.cpp @@ -940,7 +940,6 @@ Handles the given mouse \a event. void QDeclarativeTextEdit::mousePressEvent(QGraphicsSceneMouseEvent *event) { Q_D(QDeclarativeTextEdit); - bool hadFocus = hasFocus(); if (d->focusOnPress){ QGraphicsItem *p = parentItem();//###Is there a better way to find my focus scope? while(p) { @@ -950,8 +949,6 @@ void QDeclarativeTextEdit::mousePressEvent(QGraphicsSceneMouseEvent *event) } setFocus(true); } - if (!hadFocus && hasFocus()) - d->clickCausedFocus = true; if (event->type() != QEvent::GraphicsSceneMouseDoubleClick || d->selectByMouse) d->control->processEvent(event, QPointF(0, -d->yoff)); if (!event->isAccepted()) @@ -965,11 +962,6 @@ Handles the given mouse \a event. void QDeclarativeTextEdit::mouseReleaseEvent(QGraphicsSceneMouseEvent *event) { Q_D(QDeclarativeTextEdit); - QWidget *widget = event->widget(); - if (widget && (d->control->textInteractionFlags() & Qt::TextEditable) && boundingRect().contains(event->pos())) - qt_widget_private(widget)->handleSoftwareInputPanel(event->button(), d->clickCausedFocus); - d->clickCausedFocus = false; - d->control->processEvent(event, QPointF(0, -d->yoff)); if (!event->isAccepted()) QDeclarativePaintedItem::mouseReleaseEvent(event); @@ -1205,4 +1197,127 @@ void QDeclarativeTextEditPrivate::updateDefaultTextOption() document->setDefaultTextOption(opt); } + +/*! + \qmlmethod void TextEdit::openSoftwareInputPanel() + + Opens software input panels like virtual keyboards for typing, useful for + customizing when you want the input keyboard to be shown and hidden in + your application. + + By default input panels are shown when TextEdit element gains focus and hidden + when the focus is lost. You can disable the automatic behavior by setting the + property showInputPanelOnFocus to false and use functions openSoftwareInputPanel() + and closeSoftwareInputPanel() to implement the behavior you want. + + Only relevant on platforms, which provide virtual keyboards. + + \code + import Qt 4.7 + TextEdit { + id: textEdit + text: "Hello world!" + showInputPanelOnFocus: false + MouseArea { + anchors.fill: parent + onClicked: textEdit.openSoftwareInputPanel() + } + onFocusChanged: if (!focus) closeSoftwareInputpanel() + } + \endcode +*/ +void QDeclarativeTextEdit::openSoftwareInputPanel() +{ + QEvent event(QEvent::RequestSoftwareInputPanel); + if (qApp) { + if (QGraphicsView * view = qobject_cast(qApp->focusWidget())) { + if (view->scene() && view->scene() == scene()) { + QApplication::sendEvent(view, &event); + } + } + } +} + +/*! + \qmlmethod void TextEdit::closeSoftwareInputPanel() + + Closes a software input panel like a virtual keyboard shown on the screen, useful + for customizing when you want the input keyboard to be shown and hidden in + your application. + + By default input panels are shown when TextEdit element gains focus and hidden + when the focus is lost. You can disable the automatic behavior by setting the + property showInputPanelOnFocus to false and use functions openSoftwareInputPanel() + and closeSoftwareInputPanel() to implement the behavior you want. + + Only relevant on platforms, which provide virtual keyboards. + + \code + import Qt 4.7 + TextEdit { + id: textEdit + text: "Hello world!" + showInputPanelOnFocus: false + MouseArea { + anchors.fill: parent + onClicked: textEdit.openSoftwareInputPanel() + } + onFocusChanged: if (!focus) closeSoftwareInputpanel() + } + \endcode +*/ +void QDeclarativeTextEdit::closeSoftwareInputPanel() +{ + QEvent event(QEvent::CloseSoftwareInputPanel); + if (qApp) { + if (QGraphicsView * view = qobject_cast(qApp->focusWidget())) { + if (view->scene() && view->scene() == scene()) { + QApplication::sendEvent(view, &event); + } + } + } +} + +/*! + \qmlproperty bool TextEdit::showInputPanelOnFocus + Whether input panels are automatically shown when TextEdit element gains + focus and hidden when focus is lost. By default this is set to true. + + Only relevant on platforms, which provide virtual keyboards. +*/ +bool QDeclarativeTextEdit::showInputPanelOnFocus() const +{ + Q_D(const QDeclarativeTextEdit); + return d->showInputPanelOnFocus; +} + +void QDeclarativeTextEdit::setShowInputPanelOnFocus(bool showOnFocus) +{ + Q_D(QDeclarativeTextEdit); + if (d->showInputPanelOnFocus == showOnFocus) + return; + + d->showInputPanelOnFocus = showOnFocus; + + emit showInputPanelOnFocusChanged(d->showInputPanelOnFocus); +} + +void QDeclarativeTextEdit::focusInEvent(QFocusEvent *event) +{ + Q_D(const QDeclarativeTextEdit); + if (d->showInputPanelOnFocus && !isReadOnly()) { + openSoftwareInputPanel(); + } + QDeclarativePaintedItem::focusInEvent(event); +} + +void QDeclarativeTextEdit::focusOutEvent(QFocusEvent *event) +{ + Q_D(const QDeclarativeTextEdit); + if (d->showInputPanelOnFocus && !isReadOnly()) { + closeSoftwareInputPanel(); + } + QDeclarativePaintedItem::focusOutEvent(event); +} + QT_END_NAMESPACE diff --git a/src/declarative/graphicsitems/qdeclarativetextedit_p.h b/src/declarative/graphicsitems/qdeclarativetextedit_p.h index 891b868..fdac5cf 100644 --- a/src/declarative/graphicsitems/qdeclarativetextedit_p.h +++ b/src/declarative/graphicsitems/qdeclarativetextedit_p.h @@ -84,6 +84,7 @@ class Q_DECLARATIVE_EXPORT QDeclarativeTextEdit : public QDeclarativePaintedItem Q_PROPERTY(int selectionEnd READ selectionEnd WRITE setSelectionEnd NOTIFY selectionEndChanged) Q_PROPERTY(QString selectedText READ selectedText NOTIFY selectionChanged) Q_PROPERTY(bool focusOnPress READ focusOnPress WRITE setFocusOnPress NOTIFY focusOnPressChanged) + Q_PROPERTY(bool showInputPanelOnFocus READ showInputPanelOnFocus WRITE setShowInputPanelOnFocus NOTIFY showInputPanelOnFocusChanged) Q_PROPERTY(bool persistentSelection READ persistentSelection WRITE setPersistentSelection NOTIFY persistentSelectionChanged) Q_PROPERTY(qreal textMargin READ textMargin WRITE setTextMargin NOTIFY textMarginChanged) Q_PROPERTY(Qt::InputMethodHints inputMethodHints READ inputMethodHints WRITE setInputMethodHints) @@ -116,6 +117,9 @@ public: WrapAtWordBoundaryOrAnywhere = QTextOption::WrapAtWordBoundaryOrAnywhere }; + Q_INVOKABLE void openSoftwareInputPanel(); + Q_INVOKABLE void closeSoftwareInputPanel(); + QString text() const; void setText(const QString &); @@ -163,6 +167,9 @@ public: bool focusOnPress() const; void setFocusOnPress(bool on); + bool showInputPanelOnFocus() const; + void setShowInputPanelOnFocus(bool showOnFocus); + bool persistentSelection() const; void setPersistentSelection(bool on); @@ -207,6 +214,7 @@ Q_SIGNALS: void persistentSelectionChanged(bool isPersistentSelection); void textMarginChanged(qreal textMargin); void selectByMouseChanged(bool selectByMouse); + void showInputPanelOnFocusChanged(bool showOnFocus); public Q_SLOTS: void selectAll(); @@ -228,6 +236,8 @@ protected: bool event(QEvent *); void keyPressEvent(QKeyEvent *); void keyReleaseEvent(QKeyEvent *); + void focusInEvent(QFocusEvent *event); + void focusOutEvent(QFocusEvent *event); // mouse filter? void mousePressEvent(QGraphicsSceneMouseEvent *event); diff --git a/src/declarative/graphicsitems/qdeclarativetextedit_p_p.h b/src/declarative/graphicsitems/qdeclarativetextedit_p_p.h index d96796c..8e1d630 100644 --- a/src/declarative/graphicsitems/qdeclarativetextedit_p_p.h +++ b/src/declarative/graphicsitems/qdeclarativetextedit_p_p.h @@ -70,9 +70,9 @@ public: QDeclarativeTextEditPrivate() : color("black"), hAlign(QDeclarativeTextEdit::AlignLeft), vAlign(QDeclarativeTextEdit::AlignTop), imgDirty(true), dirty(false), richText(false), cursorVisible(false), focusOnPress(true), - persistentSelection(true), clickCausedFocus(false), textMargin(0.0), lastSelectionStart(0), lastSelectionEnd(0), - cursorComponent(0), cursor(0), format(QDeclarativeTextEdit::AutoText), document(0), - wrapMode(QDeclarativeTextEdit::NoWrap), + showInputPanelOnFocus(true), persistentSelection(true), textMargin(0.0), lastSelectionStart(0), + lastSelectionEnd(0), cursorComponent(0), cursor(0), format(QDeclarativeTextEdit::AutoText), + document(0), wrapMode(QDeclarativeTextEdit::NoWrap), selectByMouse(false), yoff(0) { @@ -101,8 +101,8 @@ public: bool richText : 1; bool cursorVisible : 1; bool focusOnPress : 1; + bool showInputPanelOnFocus : 1; bool persistentSelection : 1; - bool clickCausedFocus : 1; qreal textMargin; int lastSelectionStart; int lastSelectionEnd; diff --git a/src/declarative/graphicsitems/qdeclarativetextinput.cpp b/src/declarative/graphicsitems/qdeclarativetextinput.cpp index 1ac1b4e..47cd110 100644 --- a/src/declarative/graphicsitems/qdeclarativetextinput.cpp +++ b/src/declarative/graphicsitems/qdeclarativetextinput.cpp @@ -886,7 +886,6 @@ void QDeclarativeTextInput::keyPressEvent(QKeyEvent* ev) void QDeclarativeTextInput::mousePressEvent(QGraphicsSceneMouseEvent *event) { Q_D(QDeclarativeTextInput); - bool hadFocus = hasFocus(); if(d->focusOnPress){ QGraphicsItem *p = parentItem();//###Is there a better way to find my focus scope? while(p) { @@ -896,8 +895,6 @@ void QDeclarativeTextInput::mousePressEvent(QGraphicsSceneMouseEvent *event) } setFocus(true); } - if (!hadFocus && hasFocus()) - d->clickCausedFocus = true; bool mark = event->modifiers() & Qt::ShiftModifier; int cursor = d->xToPos(event->pos().x()); @@ -923,10 +920,7 @@ Handles the given mouse \a event. void QDeclarativeTextInput::mouseReleaseEvent(QGraphicsSceneMouseEvent *event) { Q_D(QDeclarativeTextInput); - QWidget *widget = event->widget(); - if (widget && !d->control->isReadOnly() && boundingRect().contains(event->pos())) - qt_widget_private(widget)->handleSoftwareInputPanel(event->button(), d->clickCausedFocus); - d->clickCausedFocus = false; + d->control->processEvent(event); if (!event->isAccepted()) QDeclarativePaintedItem::mouseReleaseEvent(event); } @@ -1175,6 +1169,129 @@ void QDeclarativeTextInput::moveCursorSelection(int position) d->control->moveCursor(position, true); } +/*! + \qmlmethod void TextInput::openSoftwareInputPanel() + + Opens software input panels like virtual keyboards for typing, useful for + customizing when you want the input keyboard to be shown and hidden in + your application. + + By default input panels are shown when TextInput element gains focus and hidden + when the focus is lost. You can disable the automatic behavior by setting the + property showInputPanelOnFocus to false and use functions openSoftwareInputPanel() + and closeSoftwareInputPanel() to implement the behavior you want. + + Only relevant on platforms, which provide virtual keyboards. + + \code + import Qt 4.7 + TextInput { + id: textInput + text: "Hello world!" + showInputPanelOnFocus: false + MouseArea { + anchors.fill: parent + onClicked: textInput.openSoftwareInputPanel() + } + onFocusChanged: if (!focus) closeSoftwareInputPanel() + } + \endcode +*/ +void QDeclarativeTextInput::openSoftwareInputPanel() +{ + QEvent event(QEvent::RequestSoftwareInputPanel); + if (qApp) { + if (QGraphicsView * view = qobject_cast(qApp->focusWidget())) { + if (view->scene() && view->scene() == scene()) { + QApplication::sendEvent(view, &event); + } + } + } +} + +/*! + \qmlmethod void TextInput::closeSoftwareInputPanel() + + Closes a software input panel like a virtual keyboard shown on the screen, useful + for customizing when you want the input keyboard to be shown and hidden in + your application. + + By default input panels are shown when TextInput element gains focus and hidden + when the focus is lost. You can disable the automatic behavior by setting the + property showInputPanelOnFocus to false and use functions openSoftwareInputPanel() + and closeSoftwareInputPanel() to implement the behavior you want. + + Only relevant on platforms, which provide virtual keyboards. + + \code + import Qt 4.7 + TextInput { + id: textInput + text: "Hello world!" + showInputPanelOnFocus: false + MouseArea { + anchors.fill: parent + onClicked: textInput.openSoftwareInputPanel() + } + onFocusChanged: if (!focus) closeSoftwareInputPanel() + } + \endcode +*/ +void QDeclarativeTextInput::closeSoftwareInputPanel() +{ + QEvent event(QEvent::CloseSoftwareInputPanel); + if (qApp) { + QEvent event(QEvent::CloseSoftwareInputPanel); + if (QGraphicsView * view = qobject_cast(qApp->focusWidget())) { + if (view->scene() && view->scene() == scene()) { + QApplication::sendEvent(view, &event); + } + } + } +} + +/*! + \qmlproperty bool TextInput::showInputPanelOnFocus + Whether input panels are automatically shown when TextInput element gains + focus and hidden when focus is lost. By default this is set to true. + + Only relevant on platforms, which provide virtual keyboards. +*/ +bool QDeclarativeTextInput::showInputPanelOnFocus() const +{ + Q_D(const QDeclarativeTextInput); + return d->showInputPanelOnFocus; +} + +void QDeclarativeTextInput::setShowInputPanelOnFocus(bool showOnFocus) +{ + Q_D(QDeclarativeTextInput); + if (d->showInputPanelOnFocus == showOnFocus) + return; + + d->showInputPanelOnFocus = showOnFocus; + + emit showInputPanelOnFocusChanged(d->showInputPanelOnFocus); +} + +void QDeclarativeTextInput::focusInEvent(QFocusEvent *event) +{ + Q_D(const QDeclarativeTextInput); + if (d->showInputPanelOnFocus && !isReadOnly()) { + openSoftwareInputPanel(); + } + QDeclarativePaintedItem::focusInEvent(event); +} + +void QDeclarativeTextInput::focusOutEvent(QFocusEvent *event) +{ + Q_D(const QDeclarativeTextInput); + if (d->showInputPanelOnFocus && !isReadOnly()) { + closeSoftwareInputPanel(); + } + QDeclarativePaintedItem::focusOutEvent(event); +} + void QDeclarativeTextInputPrivate::init() { Q_Q(QDeclarativeTextInput); diff --git a/src/declarative/graphicsitems/qdeclarativetextinput_p.h b/src/declarative/graphicsitems/qdeclarativetextinput_p.h index b2fd057..438293a 100644 --- a/src/declarative/graphicsitems/qdeclarativetextinput_p.h +++ b/src/declarative/graphicsitems/qdeclarativetextinput_p.h @@ -86,6 +86,7 @@ class Q_DECLARATIVE_EXPORT QDeclarativeTextInput : public QDeclarativePaintedIte Q_PROPERTY(bool acceptableInput READ hasAcceptableInput NOTIFY acceptableInputChanged) Q_PROPERTY(EchoMode echoMode READ echoMode WRITE setEchoMode NOTIFY echoModeChanged) Q_PROPERTY(bool focusOnPress READ focusOnPress WRITE setFocusOnPress NOTIFY focusOnPressChanged) + Q_PROPERTY(bool showInputPanelOnFocus READ showInputPanelOnFocus WRITE setShowInputPanelOnFocus NOTIFY showInputPanelOnFocusChanged) Q_PROPERTY(QString passwordCharacter READ passwordCharacter WRITE setPasswordCharacter NOTIFY passwordCharacterChanged) Q_PROPERTY(QString displayText READ displayText NOTIFY displayTextChanged) Q_PROPERTY(bool autoScroll READ autoScroll WRITE setAutoScroll NOTIFY autoScrollChanged) @@ -112,6 +113,9 @@ public: Q_INVOKABLE int xToPosition(int x); Q_INVOKABLE void moveCursorSelection(int pos); + Q_INVOKABLE void openSoftwareInputPanel(); + Q_INVOKABLE void closeSoftwareInputPanel(); + QString text() const; void setText(const QString &); @@ -172,6 +176,9 @@ public: bool focusOnPress() const; void setFocusOnPress(bool); + bool showInputPanelOnFocus() const; + void setShowInputPanelOnFocus(bool showOnFocus); + bool autoScroll() const; void setAutoScroll(bool); @@ -208,6 +215,7 @@ Q_SIGNALS: void focusOnPressChanged(bool focusOnPress); void autoScrollChanged(bool autoScroll); void selectByMouseChanged(bool selectByMouse); + void showInputPanelOnFocusChanged(bool showOnFocus); protected: virtual void geometryChanged(const QRectF &newGeometry, @@ -218,6 +226,8 @@ protected: void mouseReleaseEvent(QGraphicsSceneMouseEvent *event); void keyPressEvent(QKeyEvent* ev); bool event(QEvent *e); + void focusInEvent(QFocusEvent *event); + void focusOutEvent(QFocusEvent *event); public Q_SLOTS: void selectAll(); diff --git a/src/declarative/graphicsitems/qdeclarativetextinput_p_p.h b/src/declarative/graphicsitems/qdeclarativetextinput_p_p.h index 1d8e0f7..f44d014 100644 --- a/src/declarative/graphicsitems/qdeclarativetextinput_p_p.h +++ b/src/declarative/graphicsitems/qdeclarativetextinput_p_p.h @@ -72,7 +72,7 @@ public: color((QRgb)0), style(QDeclarativeText::Normal), styleColor((QRgb)0), hAlign(QDeclarativeTextInput::AlignLeft), hscroll(0), oldScroll(0), focused(false), focusOnPress(true), - cursorVisible(false), autoScroll(true), clickCausedFocus(false), + showInputPanelOnFocus(true), cursorVisible(false), autoScroll(true), selectByMouse(false) { } @@ -115,9 +115,9 @@ public: int oldScroll; bool focused; bool focusOnPress; + bool showInputPanelOnFocus; bool cursorVisible; bool autoScroll; - bool clickCausedFocus; bool selectByMouse; }; diff --git a/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp b/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp index b07849d..2b6f2aa 100644 --- a/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp +++ b/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp @@ -39,6 +39,7 @@ ** ****************************************************************************/ #include +#include #include "../../../shared/util.h" #include "../shared/testhttpserver.h" #include @@ -811,7 +812,7 @@ QDeclarativeView *tst_qdeclarativetextedit::createView(const QString &filename) class MyInputContext : public QInputContext { public: - MyInputContext() : softwareInputPanelEventReceived(false) {} + MyInputContext() : openInputPanelReceived(false), closeInputPanelReceived(false) {} ~MyInputContext() {} QString identifierName() { return QString(); } @@ -824,10 +825,13 @@ public: bool filterEvent( const QEvent *event ) { if (event->type() == QEvent::RequestSoftwareInputPanel) - softwareInputPanelEventReceived = true; + openInputPanelReceived = true; + if (event->type() == QEvent::CloseSoftwareInputPanel) + closeInputPanelReceived = true; return QInputContext::filterEvent(event); } - bool softwareInputPanelEventReceived; + bool openInputPanelReceived; + bool closeInputPanelReceived; }; void tst_qdeclarativetextedit::sendRequestSoftwareInputPanelEvent() @@ -835,10 +839,9 @@ void tst_qdeclarativetextedit::sendRequestSoftwareInputPanelEvent() QGraphicsScene scene; QGraphicsView view(&scene); MyInputContext ic; - view.viewport()->setInputContext(&ic); - QStyle::RequestSoftwareInputPanel behavior = QStyle::RequestSoftwareInputPanel( - view.style()->styleHint(QStyle::SH_RequestSoftwareInputPanel)); + view.setInputContext(&ic); QDeclarativeTextEdit edit; + QSignalSpy inputPanelonFocusSpy(&edit, SIGNAL(showInputPanelOnFocusChanged(bool))); edit.setText("Hello world"); edit.setPos(0, 0); scene.addItem(&edit); @@ -847,16 +850,68 @@ void tst_qdeclarativetextedit::sendRequestSoftwareInputPanelEvent() QApplication::setActiveWindow(&view); QTest::qWaitForWindowShown(&view); QTRY_COMPARE(QApplication::activeWindow(), static_cast(&view)); - QTest::mouseClick(view.viewport(), Qt::LeftButton, 0, view.mapFromScene(edit.scenePos())); + + QVERIFY(edit.showInputPanelOnFocus()); + QCOMPARE(ic.openInputPanelReceived, false); + QCOMPARE(ic.closeInputPanelReceived, false); + + // focus on press, input panel on focus + QTest::mousePress(view.viewport(), Qt::LeftButton, 0, view.mapFromScene(edit.scenePos())); QApplication::processEvents(); - if (behavior == QStyle::RSIP_OnMouseClickAndAlreadyFocused) { - QCOMPARE(ic.softwareInputPanelEventReceived, false); - QTest::mouseClick(view.viewport(), Qt::LeftButton, 0, view.mapFromScene(edit.scenePos())); - QApplication::processEvents(); - QCOMPARE(ic.softwareInputPanelEventReceived, true); - } else if (behavior == QStyle::RSIP_OnMouseClick) { - QCOMPARE(ic.softwareInputPanelEventReceived, true); - } + QCOMPARE(ic.openInputPanelReceived, true); + QCOMPARE(ic.closeInputPanelReceived, false); + ic.openInputPanelReceived = false; + + // no events on release + QTest::mouseRelease(view.viewport(), Qt::LeftButton, 0, view.mapFromScene(edit.scenePos())); + QCOMPARE(ic.openInputPanelReceived, false); + QCOMPARE(ic.closeInputPanelReceived, false); + ic.openInputPanelReceived = false; + + // input panel closed on focus lost + edit.setFocus(false); + QApplication::processEvents(); + QCOMPARE(ic.openInputPanelReceived, false); + QCOMPARE(ic.closeInputPanelReceived, true); + ic.closeInputPanelReceived = false; + + // no input panel events if showInputPanelOnFocus is false + edit.setShowInputPanelOnFocus(false); + QCOMPARE(inputPanelonFocusSpy.count(),1); + QTest::mousePress(view.viewport(), Qt::LeftButton, 0, view.mapFromScene(edit.scenePos())); + QTest::mouseRelease(view.viewport(), Qt::LeftButton, 0, view.mapFromScene(edit.scenePos())); + edit.setFocus(false); + edit.setFocus(true); + QCOMPARE(ic.openInputPanelReceived, false); + QCOMPARE(ic.closeInputPanelReceived, false); + + edit.setShowInputPanelOnFocus(false); + QCOMPARE(inputPanelonFocusSpy.count(),1); + + // one show input panel event when openSoftwareInputPanel is called + edit.openSoftwareInputPanel(); + QCOMPARE(ic.openInputPanelReceived, true); + QCOMPARE(ic.closeInputPanelReceived, false); + ic.openInputPanelReceived = false; + + // one close input panel event when closeSoftwareInputPanel is called + edit.closeSoftwareInputPanel(); + QCOMPARE(ic.openInputPanelReceived, false); + QCOMPARE(ic.closeInputPanelReceived, true); + ic.openInputPanelReceived = false; + + // set showInputPanelOnFocus back to true + edit.setShowInputPanelOnFocus(true); + QCOMPARE(inputPanelonFocusSpy.count(),2); + edit.setFocus(false); + QCOMPARE(ic.openInputPanelReceived, false); + QCOMPARE(ic.closeInputPanelReceived, true); + edit.setFocus(true); + QCOMPARE(ic.openInputPanelReceived, true); + QCOMPARE(ic.closeInputPanelReceived, true); + + edit.setShowInputPanelOnFocus(true); + QCOMPARE(inputPanelonFocusSpy.count(),2); } void tst_qdeclarativetextedit::geometrySignals() diff --git a/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp b/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp index ac80edb..b3e16c4 100644 --- a/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp +++ b/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp @@ -39,6 +39,7 @@ ** ****************************************************************************/ #include +#include #include "../../../shared/util.h" #include #include @@ -712,11 +713,10 @@ QDeclarativeView *tst_qdeclarativetextinput::createView(const QString &filename) return canvas; } - class MyInputContext : public QInputContext { public: - MyInputContext() : softwareInputPanelEventReceived(false) {} + MyInputContext() : openInputPanelReceived(false), closeInputPanelReceived(false) {} ~MyInputContext() {} QString identifierName() { return QString(); } @@ -729,10 +729,13 @@ public: bool filterEvent( const QEvent *event ) { if (event->type() == QEvent::RequestSoftwareInputPanel) - softwareInputPanelEventReceived = true; + openInputPanelReceived = true; + if (event->type() == QEvent::CloseSoftwareInputPanel) + closeInputPanelReceived = true; return QInputContext::filterEvent(event); } - bool softwareInputPanelEventReceived; + bool openInputPanelReceived; + bool closeInputPanelReceived; }; void tst_qdeclarativetextinput::sendRequestSoftwareInputPanelEvent() @@ -740,10 +743,9 @@ void tst_qdeclarativetextinput::sendRequestSoftwareInputPanelEvent() QGraphicsScene scene; QGraphicsView view(&scene); MyInputContext ic; - view.viewport()->setInputContext(&ic); - QStyle::RequestSoftwareInputPanel behavior = QStyle::RequestSoftwareInputPanel( - view.style()->styleHint(QStyle::SH_RequestSoftwareInputPanel)); + view.setInputContext(&ic); QDeclarativeTextInput input; + QSignalSpy inputPanelonFocusSpy(&input, SIGNAL(showInputPanelOnFocusChanged(bool))); input.setText("Hello world"); input.setPos(0, 0); scene.addItem(&input); @@ -752,16 +754,68 @@ void tst_qdeclarativetextinput::sendRequestSoftwareInputPanelEvent() QApplication::setActiveWindow(&view); QTest::qWaitForWindowShown(&view); QTRY_COMPARE(QApplication::activeWindow(), static_cast(&view)); - QTest::mouseClick(view.viewport(), Qt::LeftButton, 0, view.mapFromScene(input.scenePos())); + + QVERIFY(input.showInputPanelOnFocus()); + QCOMPARE(ic.openInputPanelReceived, false); + QCOMPARE(ic.closeInputPanelReceived, false); + + // focus on press, input panel on focus + QTest::mousePress(view.viewport(), Qt::LeftButton, 0, view.mapFromScene(input.scenePos())); QApplication::processEvents(); - if (behavior == QStyle::RSIP_OnMouseClickAndAlreadyFocused) { - QCOMPARE(ic.softwareInputPanelEventReceived, false); - QTest::mouseClick(view.viewport(), Qt::LeftButton, 0, view.mapFromScene(input.scenePos())); - QApplication::processEvents(); - QCOMPARE(ic.softwareInputPanelEventReceived, true); - } else if (behavior == QStyle::RSIP_OnMouseClick) { - QCOMPARE(ic.softwareInputPanelEventReceived, true); - } + QCOMPARE(ic.openInputPanelReceived, true); + QCOMPARE(ic.closeInputPanelReceived, false); + ic.openInputPanelReceived = false; + + // no events on release + QTest::mouseRelease(view.viewport(), Qt::LeftButton, 0, view.mapFromScene(input.scenePos())); + QCOMPARE(ic.openInputPanelReceived, false); + QCOMPARE(ic.closeInputPanelReceived, false); + ic.openInputPanelReceived = false; + + // input panel closed on focus lost + input.setFocus(false); + QApplication::processEvents(); + QCOMPARE(ic.openInputPanelReceived, false); + QCOMPARE(ic.closeInputPanelReceived, true); + ic.closeInputPanelReceived = false; + + // no input panel events if showInputPanelOnFocus is false + input.setShowInputPanelOnFocus(false); + QCOMPARE(inputPanelonFocusSpy.count(),1); + QTest::mousePress(view.viewport(), Qt::LeftButton, 0, view.mapFromScene(input.scenePos())); + QTest::mouseRelease(view.viewport(), Qt::LeftButton, 0, view.mapFromScene(input.scenePos())); + input.setFocus(false); + input.setFocus(true); + QCOMPARE(ic.openInputPanelReceived, false); + QCOMPARE(ic.closeInputPanelReceived, false); + + input.setShowInputPanelOnFocus(false); + QCOMPARE(inputPanelonFocusSpy.count(),1); + + // one show input panel event when openSoftwareInputPanel is called + input.openSoftwareInputPanel(); + QCOMPARE(ic.openInputPanelReceived, true); + QCOMPARE(ic.closeInputPanelReceived, false); + ic.openInputPanelReceived = false; + + // one close input panel event when closeSoftwareInputPanel is called + input.closeSoftwareInputPanel(); + QCOMPARE(ic.openInputPanelReceived, false); + QCOMPARE(ic.closeInputPanelReceived, true); + ic.openInputPanelReceived = false; + + // set showInputPanelOnFocus back to true + input.setShowInputPanelOnFocus(true); + QCOMPARE(inputPanelonFocusSpy.count(),2); + input.setFocus(false); + QCOMPARE(ic.openInputPanelReceived, false); + QCOMPARE(ic.closeInputPanelReceived, true); + input.setFocus(true); + QCOMPARE(ic.openInputPanelReceived, true); + QCOMPARE(ic.closeInputPanelReceived, true); + + input.setShowInputPanelOnFocus(true); + QCOMPARE(inputPanelonFocusSpy.count(),2); } class MyTextInput : public QDeclarativeTextInput -- cgit v0.12 From 3e3a5a2a2eece6e0eff934c34f25c41699a45b78 Mon Sep 17 00:00:00 2001 From: Joona Petrell Date: Wed, 26 May 2010 13:35:53 +1000 Subject: Unify naming of import plugin targets Task-number: QTBUG-10834 Reviewed-by: Warwick Allison --- demos/declarative/minehunt/MinehuntCore/qmldir | 2 +- demos/declarative/minehunt/minehunt.pro | 6 +++--- .../cppextensions/imageprovider/ImageProviderCore/qmldir | 2 +- .../declarative/cppextensions/imageprovider/imageprovider.pro | 9 +++++++-- .../cppextensions/plugins/com/nokia/TimeExample/qmldir | 2 +- examples/declarative/cppextensions/plugins/plugin.cpp | 2 +- examples/declarative/cppextensions/plugins/plugins.pro | 2 +- examples/declarative/cppextensions/qwidgets/QWidgets/qmldir | 2 +- examples/declarative/cppextensions/qwidgets/qwidgets.cpp | 2 +- examples/declarative/cppextensions/qwidgets/qwidgets.pro | 10 ++++++++-- src/imports/gestures/gestures.pro | 4 ++-- src/imports/gestures/plugin.cpp | 2 +- src/imports/gestures/qmldir | 2 +- src/imports/particles/particles.cpp | 2 +- src/imports/particles/particles.pro | 4 ++-- src/imports/particles/qmldir | 2 +- src/imports/webkit/plugin.cpp | 2 +- src/imports/webkit/qmldir | 2 +- src/imports/webkit/webkit.pro | 4 ++-- 19 files changed, 37 insertions(+), 26 deletions(-) diff --git a/demos/declarative/minehunt/MinehuntCore/qmldir b/demos/declarative/minehunt/MinehuntCore/qmldir index 95bccc8..2beccf9 100644 --- a/demos/declarative/minehunt/MinehuntCore/qmldir +++ b/demos/declarative/minehunt/MinehuntCore/qmldir @@ -1,3 +1,3 @@ -plugin minehunt +plugin qmlminehuntplugin Explosion 1.0 Explosion.qml Tile 1.0 Tile.qml diff --git a/demos/declarative/minehunt/minehunt.pro b/demos/declarative/minehunt/minehunt.pro index 41640f5..91d02cf 100644 --- a/demos/declarative/minehunt/minehunt.pro +++ b/demos/declarative/minehunt/minehunt.pro @@ -1,5 +1,5 @@ TEMPLATE = lib -TARGET = minehunt +TARGET = qmlminehuntplugin QT += declarative CONFIG += qt plugin @@ -28,11 +28,11 @@ symbian:{ TARGET.EPOCALLOWDLLDATA = 1 include($$QT_SOURCE_TREE/demos/symbianpkgrules.pri) TARGET.CAPABILITY = NetworkServices ReadUserData - importFiles.sources = minehunt.dll \ + importFiles.sources = qmlminehuntplugin.dll \ MinehuntCore/Explosion.qml \ MinehuntCore/pics \ MinehuntCore/qmldir - importFiles.path = $$QT_IMPORTS_BASE_DIR/MinehuntCore + importFiles.path = MinehuntCore DEPLOYMENT = importFiles } diff --git a/examples/declarative/cppextensions/imageprovider/ImageProviderCore/qmldir b/examples/declarative/cppextensions/imageprovider/ImageProviderCore/qmldir index 1028590..6be88bc 100644 --- a/examples/declarative/cppextensions/imageprovider/ImageProviderCore/qmldir +++ b/examples/declarative/cppextensions/imageprovider/ImageProviderCore/qmldir @@ -1,2 +1,2 @@ -plugin imageprovider +plugin qmlimageproviderplugin diff --git a/examples/declarative/cppextensions/imageprovider/imageprovider.pro b/examples/declarative/cppextensions/imageprovider/imageprovider.pro index 462f7d9d..f218c30 100644 --- a/examples/declarative/cppextensions/imageprovider/imageprovider.pro +++ b/examples/declarative/cppextensions/imageprovider/imageprovider.pro @@ -3,7 +3,7 @@ CONFIG += qt plugin QT += declarative DESTDIR = ImageProviderCore -TARGET = imageprovider +TARGET = qmlimageproviderplugin SOURCES += imageprovider.cpp @@ -18,7 +18,12 @@ ImageProviderCore_sources.path = $$[QT_INSTALL_EXAMPLES]/declarative/imageprovid INSTALLS = sources ImageProviderCore_sources target -symbian { +symbian:{ + load(data_caging_paths) include($$QT_SOURCE_TREE/examples/symbianpkgrules.pri) TARGET.EPOCALLOWDLLDATA = 1 + + importFiles.sources = qmlimageproviderplugin.dll ImageProviderCore/qmldir + importFiles.path = ImageProviderCore + DEPLOYMENT = importFiles } diff --git a/examples/declarative/cppextensions/plugins/com/nokia/TimeExample/qmldir b/examples/declarative/cppextensions/plugins/com/nokia/TimeExample/qmldir index e9ef115..e1288cf 100644 --- a/examples/declarative/cppextensions/plugins/com/nokia/TimeExample/qmldir +++ b/examples/declarative/cppextensions/plugins/com/nokia/TimeExample/qmldir @@ -1,2 +1,2 @@ Clock 1.0 Clock.qml -plugin qtimeexampleqmlplugin +plugin qmlqtimeexampleplugin diff --git a/examples/declarative/cppextensions/plugins/plugin.cpp b/examples/declarative/cppextensions/plugins/plugin.cpp index 2b1b320..355ca3f 100644 --- a/examples/declarative/cppextensions/plugins/plugin.cpp +++ b/examples/declarative/cppextensions/plugins/plugin.cpp @@ -148,4 +148,4 @@ public: #include "plugin.moc" -Q_EXPORT_PLUGIN2(qtimeexampleqmlplugin, QExampleQmlPlugin); +Q_EXPORT_PLUGIN2(qmlqtimeexampleplugin, QExampleQmlPlugin); diff --git a/examples/declarative/cppextensions/plugins/plugins.pro b/examples/declarative/cppextensions/plugins/plugins.pro index d37ff40..b7610a8 100644 --- a/examples/declarative/cppextensions/plugins/plugins.pro +++ b/examples/declarative/cppextensions/plugins/plugins.pro @@ -3,7 +3,7 @@ CONFIG += qt plugin QT += declarative DESTDIR = com/nokia/TimeExample -TARGET = qtimeexampleqmlplugin +TARGET = qmlqtimeexampleplugin SOURCES += plugin.cpp diff --git a/examples/declarative/cppextensions/qwidgets/QWidgets/qmldir b/examples/declarative/cppextensions/qwidgets/QWidgets/qmldir index e55267c..a7c1d95 100644 --- a/examples/declarative/cppextensions/qwidgets/QWidgets/qmldir +++ b/examples/declarative/cppextensions/qwidgets/QWidgets/qmldir @@ -1 +1 @@ -plugin proxywidgetsplugin +plugin qmlqwidgetsplugin diff --git a/examples/declarative/cppextensions/qwidgets/qwidgets.cpp b/examples/declarative/cppextensions/qwidgets/qwidgets.cpp index 228f9f1..47d3932 100644 --- a/examples/declarative/cppextensions/qwidgets/qwidgets.cpp +++ b/examples/declarative/cppextensions/qwidgets/qwidgets.cpp @@ -94,4 +94,4 @@ public: #include "qwidgets.moc" -Q_EXPORT_PLUGIN2(qwidgetsplugin, QWidgetsPlugin); +Q_EXPORT_PLUGIN2(qmlqwidgetsplugin, QWidgetsPlugin); diff --git a/examples/declarative/cppextensions/qwidgets/qwidgets.pro b/examples/declarative/cppextensions/qwidgets/qwidgets.pro index c5f8bcf..8d87804 100644 --- a/examples/declarative/cppextensions/qwidgets/qwidgets.pro +++ b/examples/declarative/cppextensions/qwidgets/qwidgets.pro @@ -3,7 +3,7 @@ CONFIG += qt plugin QT += declarative DESTDIR = QWidgets -TARGET = qwidgetsplugin +TARGET = qmlqwidgetsplugin SOURCES += qwidgets.cpp @@ -13,7 +13,13 @@ target.path += $$[QT_INSTALL_EXAMPLES]/declarative/plugins INSTALLS += sources target -symbian { +symbian:{ + load(data_caging_paths) include($$QT_SOURCE_TREE/examples/symbianpkgrules.pri) TARGET.EPOCALLOWDLLDATA = 1 + + importFiles.sources = qmlqwidgetsplugin.dll QWidgets/qmldir + importFiles.path = QWidgets + + DEPLOYMENT = importFiles } diff --git a/src/imports/gestures/gestures.pro b/src/imports/gestures/gestures.pro index f55c00e..4ef7931 100644 --- a/src/imports/gestures/gestures.pro +++ b/src/imports/gestures/gestures.pro @@ -1,4 +1,4 @@ -TARGET = gesturesqmlplugin +TARGET = qmlgesturesplugin TARGETPATH = Qt/labs/gestures include(../qimportbase.pri) @@ -17,7 +17,7 @@ symbian:{ load(data_caging_paths) include($$QT_SOURCE_TREE/demos/symbianpkgrules.pri) - importFiles.sources = gesturesqmlplugin.dll qmldir + importFiles.sources = qmlgesturesplugin.dll qmldir importFiles.path = $$QT_IMPORTS_BASE_DIR/$$TARGETPATH DEPLOYMENT = importFiles diff --git a/src/imports/gestures/plugin.cpp b/src/imports/gestures/plugin.cpp index b8a9751..11f2392 100644 --- a/src/imports/gestures/plugin.cpp +++ b/src/imports/gestures/plugin.cpp @@ -61,5 +61,5 @@ QT_END_NAMESPACE #include "plugin.moc" -Q_EXPORT_PLUGIN2(gesturesqmlplugin, QT_PREPEND_NAMESPACE(GestureAreaQmlPlugin)); +Q_EXPORT_PLUGIN2(qmlgesturesplugin, QT_PREPEND_NAMESPACE(GestureAreaQmlPlugin)); diff --git a/src/imports/gestures/qmldir b/src/imports/gestures/qmldir index 9d9d587..2a31920 100644 --- a/src/imports/gestures/qmldir +++ b/src/imports/gestures/qmldir @@ -1 +1 @@ -plugin gesturesqmlplugin +plugin qmlgesturesplugin diff --git a/src/imports/particles/particles.cpp b/src/imports/particles/particles.cpp index ae3f318..ca2b060 100644 --- a/src/imports/particles/particles.cpp +++ b/src/imports/particles/particles.cpp @@ -65,5 +65,5 @@ QT_END_NAMESPACE #include "particles.moc" -Q_EXPORT_PLUGIN2(particlesqmlmodule, QT_PREPEND_NAMESPACE(QParticlesQmlModule)); +Q_EXPORT_PLUGIN2(qmlparticlesplugin, QT_PREPEND_NAMESPACE(QParticlesQmlModule)); diff --git a/src/imports/particles/particles.pro b/src/imports/particles/particles.pro index 79ac543..9fd4db5 100644 --- a/src/imports/particles/particles.pro +++ b/src/imports/particles/particles.pro @@ -1,4 +1,4 @@ -TARGET = particles +TARGET = qmlparticlesplugin TARGETPATH = Qt/labs/particles include(../qimportbase.pri) @@ -21,7 +21,7 @@ symbian:{ load(data_caging_paths) include($$QT_SOURCE_TREE/demos/symbianpkgrules.pri) - importFiles.sources = particles.dll qmldir + importFiles.sources = qmlparticlesplugin.dll qmldir importFiles.path = $$QT_IMPORTS_BASE_DIR/$$TARGETPATH DEPLOYMENT = importFiles diff --git a/src/imports/particles/qmldir b/src/imports/particles/qmldir index 15456bb..aeebd2c 100644 --- a/src/imports/particles/qmldir +++ b/src/imports/particles/qmldir @@ -1 +1 @@ -plugin particles +plugin qmlparticlesplugin diff --git a/src/imports/webkit/plugin.cpp b/src/imports/webkit/plugin.cpp index e3d73ec..c8e56ba 100644 --- a/src/imports/webkit/plugin.cpp +++ b/src/imports/webkit/plugin.cpp @@ -63,5 +63,5 @@ QT_END_NAMESPACE #include "plugin.moc" -Q_EXPORT_PLUGIN2(webkitqmlplugin, QT_PREPEND_NAMESPACE(WebKitQmlPlugin)); +Q_EXPORT_PLUGIN2(qmlwebkitplugin, QT_PREPEND_NAMESPACE(WebKitQmlPlugin)); diff --git a/src/imports/webkit/qmldir b/src/imports/webkit/qmldir index 258aa2c..dcfdd06 100644 --- a/src/imports/webkit/qmldir +++ b/src/imports/webkit/qmldir @@ -1 +1 @@ -plugin webkitqmlplugin +plugin qmlwebkitplugin diff --git a/src/imports/webkit/webkit.pro b/src/imports/webkit/webkit.pro index 77cbc4d..7b2ac66 100644 --- a/src/imports/webkit/webkit.pro +++ b/src/imports/webkit/webkit.pro @@ -1,4 +1,4 @@ -TARGET = webkitqmlplugin +TARGET = qmlwebkitplugin TARGETPATH = org/webkit include(../qimportbase.pri) @@ -18,7 +18,7 @@ symbian:{ load(data_caging_paths) include($$QT_SOURCE_TREE/demos/symbianpkgrules.pri) - importFiles.sources = webkitqmlplugin.dll qmldir + importFiles.sources = qmlwebkitplugin.dll qmldir importFiles.path = $$QT_IMPORTS_BASE_DIR/$$TARGETPATH DEPLOYMENT = importFiles -- cgit v0.12 From dc08c8bc7aba55ff4762d70b193a053ad210fb60 Mon Sep 17 00:00:00 2001 From: Joona Petrell Date: Wed, 26 May 2010 14:31:08 +1000 Subject: Fix for qml reloaded in qml viewer not being maximized properly on a device Task-number: Reviewed-by: Martin Jones --- tools/qml/qmlruntime.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/qml/qmlruntime.cpp b/tools/qml/qmlruntime.cpp index 5308e98..fe323c1 100644 --- a/tools/qml/qmlruntime.cpp +++ b/tools/qml/qmlruntime.cpp @@ -808,7 +808,9 @@ void QDeclarativeViewer::statusChanged() initialSize = canvas->sizeHint(); if (canvas->resizeMode() == QDeclarativeView::SizeRootObjectToView) { updateSizeHints(); - resize(QSize(initialSize.width(), initialSize.height()+menuBarHeight())); + if (!isFullScreen() && !isMaximized()) { + resize(QSize(initialSize.width(), initialSize.height()+menuBarHeight())); + } } } } -- cgit v0.12 From e9a25332df933227c6b71a1654260d8421f56415 Mon Sep 17 00:00:00 2001 From: Warwick Allison Date: Wed, 26 May 2010 15:15:45 +1000 Subject: Fix TextEdit clipping when not wrapped. Rename most-useful-wrap-mode to "Wrap". --- .../twitter/TwitterCore/HomeTitleBar.qml | 2 +- doc/src/snippets/declarative/texteditor.qml | 8 ++-- .../graphicsitems/qdeclarativepainteditem.cpp | 17 ++++++-- .../graphicsitems/qdeclarativepainteditem_p.h | 1 + src/declarative/graphicsitems/qdeclarativetext.cpp | 37 ++++++++++++++---- src/declarative/graphicsitems/qdeclarativetext_p.h | 9 ++++- .../graphicsitems/qdeclarativetextedit.cpp | 45 +++++++++++++++++----- .../graphicsitems/qdeclarativetextedit_p.h | 9 ++++- .../qmlvisual/qdeclarativetext/font/plaintext.qml | 2 +- .../qmlvisual/qdeclarativetext/font/richtext.qml | 2 +- .../qmlvisual/qdeclarativetextedit/wrap.qml | 2 +- 11 files changed, 104 insertions(+), 30 deletions(-) diff --git a/demos/declarative/twitter/TwitterCore/HomeTitleBar.qml b/demos/declarative/twitter/TwitterCore/HomeTitleBar.qml index 2eaa40c..3828a40 100644 --- a/demos/declarative/twitter/TwitterCore/HomeTitleBar.qml +++ b/demos/declarative/twitter/TwitterCore/HomeTitleBar.qml @@ -129,7 +129,7 @@ Item { width: parent.width - 12 height: parent.height - 8 font.pointSize: 10 - wrapMode: TextEdit.WrapAtWordBoundaryOrAnywhere + wrapMode: TextEdit.Wrap color: "#151515"; selectionColor: "green" } Keys.forwardTo: [(returnKey), (editor)] diff --git a/doc/src/snippets/declarative/texteditor.qml b/doc/src/snippets/declarative/texteditor.qml index 0bd79b5..6735c6c 100644 --- a/doc/src/snippets/declarative/texteditor.qml +++ b/doc/src/snippets/declarative/texteditor.qml @@ -45,7 +45,8 @@ Flickable { id: flick width: 300; height: 200; - contentHeight: edit.height + contentWidth: edit.paintedWidth + contentHeight: edit.paintedHeight clip: true function ensureVisible(r) @@ -62,9 +63,10 @@ Flickable { TextEdit { id: edit - width: parent.width + width: flick.width + height: flick.height focus: true - wrapMode: TextEdit.WrapAtWordBoundaryOrAnywhere + wrapMode: TextEdit.Wrap onCursorRectangleChanged: flick.ensureVisible(cursorRectangle) } } diff --git a/src/declarative/graphicsitems/qdeclarativepainteditem.cpp b/src/declarative/graphicsitems/qdeclarativepainteditem.cpp index c4f0b86..13d1b61 100644 --- a/src/declarative/graphicsitems/qdeclarativepainteditem.cpp +++ b/src/declarative/graphicsitems/qdeclarativepainteditem.cpp @@ -152,8 +152,6 @@ void QDeclarativePaintedItem::setContentsSize(const QSize &size) Q_D(QDeclarativePaintedItem); if (d->contentsSize == size) return; d->contentsSize = size; - setImplicitWidth(size.width()*d->contentsScale); - setImplicitHeight(size.height()*d->contentsScale); clearCache(); update(); emit contentsSizeChanged(); @@ -170,8 +168,6 @@ void QDeclarativePaintedItem::setContentsScale(qreal scale) Q_D(QDeclarativePaintedItem); if (d->contentsScale == scale) return; d->contentsScale = scale; - setImplicitWidth(d->contentsSize.width()*scale); - setImplicitHeight(d->contentsSize.height()*scale); clearCache(); update(); emit contentsScaleChanged(); @@ -232,6 +228,19 @@ void QDeclarativePaintedItem::setCacheFrozen(bool frozen) // XXX clear cache? } +QRectF QDeclarativePaintedItem::boundingRect() const +{ + Q_D(const QDeclarativePaintedItem); + qreal w = d->mWidth; + QSizeF sz = d->contentsSize * d->contentsScale; + if (w < sz.width()) + w = sz.width(); + qreal h = d->mHeight; + if (h < sz.height()) + h = sz.height(); + return QRectF(0.0,0.0,w,h); +} + /*! \internal */ diff --git a/src/declarative/graphicsitems/qdeclarativepainteditem_p.h b/src/declarative/graphicsitems/qdeclarativepainteditem_p.h index 8d08ba2..86f065a 100644 --- a/src/declarative/graphicsitems/qdeclarativepainteditem_p.h +++ b/src/declarative/graphicsitems/qdeclarativepainteditem_p.h @@ -93,6 +93,7 @@ protected: const QVariant &value); void setCacheFrozen(bool); + QRectF boundingRect() const; Q_SIGNALS: void fillColorChanged(); diff --git a/src/declarative/graphicsitems/qdeclarativetext.cpp b/src/declarative/graphicsitems/qdeclarativetext.cpp index 4e7e0fd..2c1eb67 100644 --- a/src/declarative/graphicsitems/qdeclarativetext.cpp +++ b/src/declarative/graphicsitems/qdeclarativetext.cpp @@ -499,13 +499,10 @@ void QDeclarativeText::setVAlign(VAlignment align) wrap if an explicit width has been set. wrapMode can be one of: \list - \o Text.NoWrap - no wrapping will be performed. - \o Text.WordWrap - wrapping is done on word boundaries. If the text cannot be - word-wrapped to the specified width it will be partially drawn outside of the item's bounds. - If this is undesirable then enable clipping on the item (Item::clip). - \o Text.WrapAnywhere - Text can be wrapped at any point on a line, even if it occurs in the middle of a word. - \o Text.WrapAtWordBoundaryOrAnywhere - If possible, wrapping occurs at a word boundary; otherwise it - will occur at the appropriate point on the line, even in the middle of a word. + \o Text.NoWrap - no wrapping will be performed. If the text contains insufficient newlines, then implicitWidth will exceed a set width. + \o Text.WordWrap - wrapping is done on word boundaries only. If a word is too long, implicitWidth will exceed a set width. + \o Text.WrapAnywhere - wrapping is done at any point on a line, even if it occurs in the middle of a word. + \o Text.Wrap - if possible, wrapping occurs at a word boundary; otherwise it will occur at the appropriate point on the line, even in the middle of a word. \endlist The default is Text.NoWrap. @@ -715,6 +712,7 @@ void QDeclarativeTextPrivate::updateSize() QFontMetrics fm(font); if (text.isEmpty()) { q->setImplicitHeight(fm.height()); + emit q->paintedSizeChanged(); return; } @@ -753,11 +751,36 @@ void QDeclarativeTextPrivate::updateSize() //### need to comfirm cost of always setting these for richText q->setImplicitWidth(richText ? (int)doc->idealWidth() : size.width()); q->setImplicitHeight(richText ? (int)doc->size().height() : size.height()); + emit q->paintedSizeChanged(); } else { dirty = true; } } +/*! + \qmlproperty real Text::paintedWidth + + Returns the width of the text, including width past the width + which is covered due to insufficient wrapping if WrapMode is set. +*/ +qreal QDeclarativeText::paintedWidth() const +{ + return implicitWidth(); +} + +/*! + \qmlproperty real Text::paintedHeight + + Returns the height of the text, including height past the height + which is covered due to there being more text than fits in the set height. +*/ +qreal QDeclarativeText::paintedHeight() const +{ + return implicitHeight(); +} + + + // ### text layout handling should be profiled and optimized as needed // what about QStackTextEngine engine(tmp, d->font.font()); QTextLayout textLayout(&engine); diff --git a/src/declarative/graphicsitems/qdeclarativetext_p.h b/src/declarative/graphicsitems/qdeclarativetext_p.h index 00ce126..db21140 100644 --- a/src/declarative/graphicsitems/qdeclarativetext_p.h +++ b/src/declarative/graphicsitems/qdeclarativetext_p.h @@ -71,6 +71,8 @@ class Q_DECLARATIVE_EXPORT QDeclarativeText : public QDeclarativeItem Q_PROPERTY(WrapMode wrapMode READ wrapMode WRITE setWrapMode NOTIFY wrapModeChanged) Q_PROPERTY(TextFormat textFormat READ textFormat WRITE setTextFormat NOTIFY textFormatChanged) Q_PROPERTY(TextElideMode elide READ elideMode WRITE setElideMode NOTIFY elideModeChanged) //### elideMode? + Q_PROPERTY(qreal paintedWidth READ paintedWidth NOTIFY paintedSizeChanged) + Q_PROPERTY(qreal paintedHeight READ paintedHeight NOTIFY paintedSizeChanged) public: QDeclarativeText(QDeclarativeItem *parent=0); @@ -98,7 +100,8 @@ public: enum WrapMode { NoWrap = QTextOption::NoWrap, WordWrap = QTextOption::WordWrap, WrapAnywhere = QTextOption::WrapAnywhere, - WrapAtWordBoundaryOrAnywhere = QTextOption::WrapAtWordBoundaryOrAnywhere + WrapAtWordBoundaryOrAnywhere = QTextOption::WrapAtWordBoundaryOrAnywhere, // COMPAT + Wrap = QTextOption::WrapAtWordBoundaryOrAnywhere }; QString text() const; @@ -137,6 +140,9 @@ public: int resourcesLoading() const; // mainly for testing + qreal paintedWidth() const; + qreal paintedHeight() const; + Q_SIGNALS: void textChanged(const QString &text); void linkActivated(const QString &link); @@ -149,6 +155,7 @@ Q_SIGNALS: void wrapModeChanged(); void textFormatChanged(TextFormat textFormat); void elideModeChanged(TextElideMode mode); + void paintedSizeChanged(); protected: void mousePressEvent(QGraphicsSceneMouseEvent *event); diff --git a/src/declarative/graphicsitems/qdeclarativetextedit.cpp b/src/declarative/graphicsitems/qdeclarativetextedit.cpp index a154d53..f105171 100644 --- a/src/declarative/graphicsitems/qdeclarativetextedit.cpp +++ b/src/declarative/graphicsitems/qdeclarativetextedit.cpp @@ -484,14 +484,13 @@ void QDeclarativeTextEdit::setVAlign(QDeclarativeTextEdit::VAlignment alignment) The text will only wrap if an explicit width has been set. \list - \o TextEdit.NoWrap - no wrapping will be performed. - \o TextEdit.WordWrap - wrapping is done on word boundaries. - \o TextEdit.WrapAnywhere - Text can be wrapped at any point on a line, even if it occurs in the middle of a word. - \o TextEdit.WrapAtWordBoundaryOrAnywhere - If possible, wrapping occurs at a word boundary; otherwise it - will occur at the appropriate point on the line, even in the middle of a word. + \o TextEdit.NoWrap - no wrapping will be performed. If the text contains insufficient newlines, then implicitWidth will exceed a set width. + \o TextEdit.WordWrap - wrapping is done on word boundaries only. If a word is too long, implicitWidth will exceed a set width. + \o TextEdit.WrapAnywhere - wrapping is done at any point on a line, even if it occurs in the middle of a word. + \o TextEdit.Wrap - if possible, wrapping occurs at a word boundary; otherwise it will occur at the appropriate point on the line, even in the middle of a word. \endlist - The default is TextEdit.NoWrap. + The default is TextEdit.NoWrap. If you set a width, consider using TextEdit.Wrap. */ QDeclarativeTextEdit::WrapMode QDeclarativeTextEdit::wrapMode() const { @@ -511,6 +510,29 @@ void QDeclarativeTextEdit::setWrapMode(WrapMode mode) } /*! + \qmlproperty real TextEdit::paintedWidth + + Returns the width of the text, including width past the width + which is covered due to insufficient wrapping if WrapMode is set. +*/ +qreal QDeclarativeTextEdit::paintedWidth() const +{ + return implicitWidth(); +} + +/*! + \qmlproperty real TextEdit::paintedHeight + + Returns the height of the text, including height past the height + which is covered due to there being more text than fits in the set height. +*/ +qreal QDeclarativeTextEdit::paintedHeight() const +{ + return implicitHeight(); +} + + +/*! \qmlproperty bool TextEdit::cursorVisible If true the text edit shows a cursor. @@ -1156,7 +1178,7 @@ void QDeclarativeTextEdit::updateSize() int dy = height(); // ### assumes that if the width is set, the text will fill to edges // ### (unless wrap is false, then clipping will occur) - if (widthValid()) + if (widthValid() && d->document->textWidth() != width()) d->document->setTextWidth(width()); dy -= (int)d->document->size().height(); @@ -1172,7 +1194,7 @@ void QDeclarativeTextEdit::updateSize() //### need to comfirm cost of always setting these int newWidth = qCeil(d->document->idealWidth()); - if (!widthValid()) + if (!widthValid() && d->document->textWidth() != newWidth) d->document->setTextWidth(newWidth); // ### Text does not align if width is not set (QTextDoc bug) int cursorWidth = 1; if(d->cursor) @@ -1182,9 +1204,12 @@ void QDeclarativeTextEdit::updateSize() newWidth += 3;// ### Need a better way of accounting for space between char and cursor // ### Setting the implicitWidth triggers another updateSize(), and unless there are bindings nothing has changed. setImplicitWidth(newWidth); - setImplicitHeight(d->document->isEmpty() ? fm.height() : (int)d->document->size().height()); + qreal newHeight = d->document->isEmpty() ? fm.height() : (int)d->document->size().height(); + setImplicitHeight(newHeight); + + setContentsSize(QSize(newWidth, newHeight)); - setContentsSize(QSize(width(), height())); + emit paintedSizeChanged(); } else { d->dirty = true; } diff --git a/src/declarative/graphicsitems/qdeclarativetextedit_p.h b/src/declarative/graphicsitems/qdeclarativetextedit_p.h index 891b868..51bb974 100644 --- a/src/declarative/graphicsitems/qdeclarativetextedit_p.h +++ b/src/declarative/graphicsitems/qdeclarativetextedit_p.h @@ -74,6 +74,8 @@ class Q_DECLARATIVE_EXPORT QDeclarativeTextEdit : public QDeclarativePaintedItem Q_PROPERTY(HAlignment horizontalAlignment READ hAlign WRITE setHAlign NOTIFY horizontalAlignmentChanged) Q_PROPERTY(VAlignment verticalAlignment READ vAlign WRITE setVAlign NOTIFY verticalAlignmentChanged) Q_PROPERTY(WrapMode wrapMode READ wrapMode WRITE setWrapMode NOTIFY wrapModeChanged) + Q_PROPERTY(qreal paintedWidth READ paintedWidth NOTIFY paintedSizeChanged) + Q_PROPERTY(qreal paintedHeight READ paintedHeight NOTIFY paintedSizeChanged) Q_PROPERTY(TextFormat textFormat READ textFormat WRITE setTextFormat NOTIFY textFormatChanged) Q_PROPERTY(bool readOnly READ isReadOnly WRITE setReadOnly NOTIFY readOnlyChanged) Q_PROPERTY(bool cursorVisible READ isCursorVisible WRITE setCursorVisible NOTIFY cursorVisibleChanged) @@ -113,7 +115,8 @@ public: enum WrapMode { NoWrap = QTextOption::NoWrap, WordWrap = QTextOption::WordWrap, WrapAnywhere = QTextOption::WrapAnywhere, - WrapAtWordBoundaryOrAnywhere = QTextOption::WrapAtWordBoundaryOrAnywhere + WrapAtWordBoundaryOrAnywhere = QTextOption::WrapAtWordBoundaryOrAnywhere, // COMPAT + Wrap = QTextOption::WrapAtWordBoundaryOrAnywhere }; QString text() const; @@ -185,8 +188,12 @@ public: QVariant inputMethodQuery(Qt::InputMethodQuery property) const; + qreal paintedWidth() const; + qreal paintedHeight() const; + Q_SIGNALS: void textChanged(const QString &); + void paintedSizeChanged(); void cursorPositionChanged(); void cursorRectangleChanged(); void selectionStartChanged(); diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/plaintext.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/plaintext.qml index d948e4a..73dd4d7 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/plaintext.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/plaintext.qml @@ -85,7 +85,7 @@ Rectangle { text: s.text + " thisisaverylongstringwithnospaces"; width: 150; wrapMode: Text.WrapAnywhere } Text { - text: s.text + " thisisaverylongstringwithnospaces"; width: 150; wrapMode: Text.WrapAtWordBoundaryOrAnywhere + text: s.text + " thisisaverylongstringwithnospaces"; width: 150; wrapMode: Text.Wrap } } } diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/richtext.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/richtext.qml index d10cfd3..b41b93a 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/richtext.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/richtext.qml @@ -85,7 +85,7 @@ Rectangle { text: s.text + " thisisaverylongstringwithnospaces"; width: 150; wrapMode: Text.WrapAnywhere } Text { - text: s.text + " thisisaverylongstringwithnospaces"; width: 150; wrapMode: Text.WrapAtWordBoundaryOrAnywhere + text: s.text + " thisisaverylongstringwithnospaces"; width: 150; wrapMode: Text.Wrap } } } diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/wrap.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/wrap.qml index abb4464..a1dc5bf 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/wrap.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/wrap.qml @@ -27,7 +27,7 @@ Item { TextEdit { width: 150 height: 100 - wrapMode: TextEdit.WrapAtWordBoundaryOrAnywhere + wrapMode: TextEdit.Wrap text: "This is a test that text edit wraps correctly. thisisaverylongstringwithnospaces" y:300 } -- cgit v0.12 From ef2bc487ab9b66e052920b671e947abc4a6d8ef4 Mon Sep 17 00:00:00 2001 From: Yann Bodson Date: Wed, 26 May 2010 14:28:23 +1000 Subject: Fix horizontal/verticalCenter anchors bug. Task-number: QTBUG-10999 Reviewed-by: Michael Brasser --- .../graphicsitems/qdeclarativeanchors.cpp | 34 +++++++++++----------- .../graphicsitems/qdeclarativeanchors_p_p.h | 2 +- .../qdeclarativeanchors/data/hvCenter.qml | 11 +++++++ .../tst_qdeclarativeanchors.cpp | 14 +++++++++ 4 files changed, 43 insertions(+), 18 deletions(-) create mode 100644 tests/auto/declarative/qdeclarativeanchors/data/hvCenter.qml diff --git a/src/declarative/graphicsitems/qdeclarativeanchors.cpp b/src/declarative/graphicsitems/qdeclarativeanchors.cpp index ef07cbb..aa53aba 100644 --- a/src/declarative/graphicsitems/qdeclarativeanchors.cpp +++ b/src/declarative/graphicsitems/qdeclarativeanchors.cpp @@ -92,17 +92,17 @@ static qreal position(QGraphicsObject *item, QDeclarativeAnchorLine::AnchorLine //position when origin is 0,0 static qreal adjustedPosition(QGraphicsObject *item, QDeclarativeAnchorLine::AnchorLine anchorLine) { - int ret = 0; + qreal ret = 0.0; QGraphicsItemPrivate *d = QGraphicsItemPrivate::get(item); switch(anchorLine) { case QDeclarativeAnchorLine::Left: - ret = 0; + ret = 0.0; break; case QDeclarativeAnchorLine::Right: ret = d->width(); break; case QDeclarativeAnchorLine::Top: - ret = 0; + ret = 0.0; break; case QDeclarativeAnchorLine::Bottom: ret = d->height(); @@ -459,10 +459,10 @@ void QDeclarativeAnchors::resetCenterIn() bool QDeclarativeAnchorsPrivate::calcStretch(const QDeclarativeAnchorLine &edge1, const QDeclarativeAnchorLine &edge2, - int offset1, - int offset2, + qreal offset1, + qreal offset2, QDeclarativeAnchorLine::AnchorLine line, - int &stretch) + qreal &stretch) { bool edge1IsParent = (edge1.item == item->parentItem()); bool edge2IsParent = (edge2.item == item->parentItem()); @@ -471,15 +471,15 @@ bool QDeclarativeAnchorsPrivate::calcStretch(const QDeclarativeAnchorLine &edge1 bool invalid = false; if ((edge2IsParent && edge1IsParent) || (edge2IsSibling && edge1IsSibling)) { - stretch = ((int)position(edge2.item, edge2.anchorLine) + offset2) - - ((int)position(edge1.item, edge1.anchorLine) + offset1); + stretch = (position(edge2.item, edge2.anchorLine) + offset2) + - (position(edge1.item, edge1.anchorLine) + offset1); } else if (edge2IsParent && edge1IsSibling) { - stretch = ((int)position(edge2.item, edge2.anchorLine) + offset2) - - ((int)position(item->parentObject(), line) - + (int)position(edge1.item, edge1.anchorLine) + offset1); + stretch = (position(edge2.item, edge2.anchorLine) + offset2) + - (position(item->parentObject(), line) + + position(edge1.item, edge1.anchorLine) + offset1); } else if (edge2IsSibling && edge1IsParent) { - stretch = ((int)position(item->parentObject(), line) + (int)position(edge2.item, edge2.anchorLine) + offset2) - - ((int)position(edge1.item, edge1.anchorLine) + offset1); + stretch = (position(item->parentObject(), line) + position(edge2.item, edge2.anchorLine) + offset2) + - (position(edge1.item, edge1.anchorLine) + offset1); } else invalid = true; @@ -497,7 +497,7 @@ void QDeclarativeAnchorsPrivate::updateVerticalAnchors() if (usedAnchors & QDeclarativeAnchors::TopAnchor) { //Handle stretching bool invalid = true; - int height = 0; + qreal height = 0.0; if (usedAnchors & QDeclarativeAnchors::BottomAnchor) { invalid = calcStretch(top, bottom, topMargin, -bottomMargin, QDeclarativeAnchorLine::Top, height); } else if (usedAnchors & QDeclarativeAnchors::VCenterAnchor) { @@ -516,7 +516,7 @@ void QDeclarativeAnchorsPrivate::updateVerticalAnchors() } else if (usedAnchors & QDeclarativeAnchors::BottomAnchor) { //Handle stretching (top + bottom case is handled above) if (usedAnchors & QDeclarativeAnchors::VCenterAnchor) { - int height = 0; + qreal height = 0.0; bool invalid = calcStretch(vCenter, bottom, vCenterOffset, -bottomMargin, QDeclarativeAnchorLine::Top, height); if (!invalid) @@ -569,7 +569,7 @@ void QDeclarativeAnchorsPrivate::updateHorizontalAnchors() if (usedAnchors & QDeclarativeAnchors::LeftAnchor) { //Handle stretching bool invalid = true; - int width = 0; + qreal width = 0.0; if (usedAnchors & QDeclarativeAnchors::RightAnchor) { invalid = calcStretch(left, right, leftMargin, -rightMargin, QDeclarativeAnchorLine::Left, width); } else if (usedAnchors & QDeclarativeAnchors::HCenterAnchor) { @@ -588,7 +588,7 @@ void QDeclarativeAnchorsPrivate::updateHorizontalAnchors() } else if (usedAnchors & QDeclarativeAnchors::RightAnchor) { //Handle stretching (left + right case is handled in updateLeftAnchor) if (usedAnchors & QDeclarativeAnchors::HCenterAnchor) { - int width = 0; + qreal width = 0.0; bool invalid = calcStretch(hCenter, right, hCenterOffset, -rightMargin, QDeclarativeAnchorLine::Left, width); if (!invalid) diff --git a/src/declarative/graphicsitems/qdeclarativeanchors_p_p.h b/src/declarative/graphicsitems/qdeclarativeanchors_p_p.h index 05be6c5..1bbea36 100644 --- a/src/declarative/graphicsitems/qdeclarativeanchors_p_p.h +++ b/src/declarative/graphicsitems/qdeclarativeanchors_p_p.h @@ -131,7 +131,7 @@ public: bool checkVValid() const; bool checkHAnchorValid(QDeclarativeAnchorLine anchor) const; bool checkVAnchorValid(QDeclarativeAnchorLine anchor) const; - bool calcStretch(const QDeclarativeAnchorLine &edge1, const QDeclarativeAnchorLine &edge2, int offset1, int offset2, QDeclarativeAnchorLine::AnchorLine line, int &stretch); + bool calcStretch(const QDeclarativeAnchorLine &edge1, const QDeclarativeAnchorLine &edge2, qreal offset1, qreal offset2, QDeclarativeAnchorLine::AnchorLine line, qreal &stretch); void updateHorizontalAnchors(); void updateVerticalAnchors(); diff --git a/tests/auto/declarative/qdeclarativeanchors/data/hvCenter.qml b/tests/auto/declarative/qdeclarativeanchors/data/hvCenter.qml new file mode 100644 index 0000000..7cd4f26 --- /dev/null +++ b/tests/auto/declarative/qdeclarativeanchors/data/hvCenter.qml @@ -0,0 +1,11 @@ +import Qt 4.7 + +Rectangle { + width: 77; height: 95 + Rectangle { + objectName: "centered" + width: 57; height: 57; color: "blue" + anchors.verticalCenter: parent.verticalCenter + anchors.horizontalCenter: parent.horizontalCenter + } +} diff --git a/tests/auto/declarative/qdeclarativeanchors/tst_qdeclarativeanchors.cpp b/tests/auto/declarative/qdeclarativeanchors/tst_qdeclarativeanchors.cpp index e169fa2..22f7966 100644 --- a/tests/auto/declarative/qdeclarativeanchors/tst_qdeclarativeanchors.cpp +++ b/tests/auto/declarative/qdeclarativeanchors/tst_qdeclarativeanchors.cpp @@ -77,6 +77,7 @@ private slots: void nullItem_data(); void crash1(); void centerIn(); + void hvCenter(); void fill(); void margins(); }; @@ -526,6 +527,19 @@ void tst_qdeclarativeanchors::centerIn() delete view; } +void tst_qdeclarativeanchors::hvCenter() +{ + QDeclarativeView *view = new QDeclarativeView(QUrl::fromLocalFile(SRCDIR "/data/hvCenter.qml")); + + qApp->processEvents(); + QDeclarativeRectangle* rect = findItem(view->rootObject(), QLatin1String("centered")); + QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect); + // test QTBUG-10999 + QCOMPARE(rect->x(), 10.0); + QCOMPARE(rect->y(), 19.0); + delete view; +} + void tst_qdeclarativeanchors::margins() { QDeclarativeView *view = new QDeclarativeView(QUrl::fromLocalFile(SRCDIR "/data/margins.qml")); -- cgit v0.12 From 1256a212460438462367b48de086ab690f722be5 Mon Sep 17 00:00:00 2001 From: Joona Petrell Date: Wed, 26 May 2010 16:26:19 +1000 Subject: Open input panel on press if TextInput or TextEdit are already focused but panel has been closed Task-number: Reviewed-by: Martin Jones --- src/declarative/graphicsitems/qdeclarativetextedit.cpp | 5 +++++ src/declarative/graphicsitems/qdeclarativetextinput.cpp | 5 +++++ .../qdeclarativetextedit/tst_qdeclarativetextedit.cpp | 9 +++++++++ .../qdeclarativetextinput/tst_qdeclarativetextinput.cpp | 9 +++++++++ 4 files changed, 28 insertions(+) diff --git a/src/declarative/graphicsitems/qdeclarativetextedit.cpp b/src/declarative/graphicsitems/qdeclarativetextedit.cpp index 348a8bd..167db77 100644 --- a/src/declarative/graphicsitems/qdeclarativetextedit.cpp +++ b/src/declarative/graphicsitems/qdeclarativetextedit.cpp @@ -963,6 +963,7 @@ void QDeclarativeTextEdit::mousePressEvent(QGraphicsSceneMouseEvent *event) { Q_D(QDeclarativeTextEdit); if (d->focusOnPress){ + bool hadFocus = hasFocus(); QGraphicsItem *p = parentItem();//###Is there a better way to find my focus scope? while(p) { if (p->flags() & QGraphicsItem::ItemIsFocusScope) @@ -970,6 +971,10 @@ void QDeclarativeTextEdit::mousePressEvent(QGraphicsSceneMouseEvent *event) p = p->parentItem(); } setFocus(true); + if (hasFocus() == hadFocus && d->showInputPanelOnFocus && !isReadOnly()) { + // re-open input panel on press if already focused + openSoftwareInputPanel(); + } } if (event->type() != QEvent::GraphicsSceneMouseDoubleClick || d->selectByMouse) d->control->processEvent(event, QPointF(0, -d->yoff)); diff --git a/src/declarative/graphicsitems/qdeclarativetextinput.cpp b/src/declarative/graphicsitems/qdeclarativetextinput.cpp index 47cd110..18e3595 100644 --- a/src/declarative/graphicsitems/qdeclarativetextinput.cpp +++ b/src/declarative/graphicsitems/qdeclarativetextinput.cpp @@ -887,6 +887,7 @@ void QDeclarativeTextInput::mousePressEvent(QGraphicsSceneMouseEvent *event) { Q_D(QDeclarativeTextInput); if(d->focusOnPress){ + bool hadFocus = hasFocus(); QGraphicsItem *p = parentItem();//###Is there a better way to find my focus scope? while(p) { if (p->flags() & QGraphicsItem::ItemIsFocusScope) @@ -894,6 +895,10 @@ void QDeclarativeTextInput::mousePressEvent(QGraphicsSceneMouseEvent *event) p = p->parentItem(); } setFocus(true); + if (hasFocus() == hadFocus && d->showInputPanelOnFocus && !isReadOnly()) { + // re-open input panel on press w already focused + openSoftwareInputPanel(); + } } bool mark = event->modifiers() & Qt::ShiftModifier; diff --git a/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp b/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp index 2b6f2aa..0df28d0 100644 --- a/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp +++ b/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp @@ -858,6 +858,7 @@ void tst_qdeclarativetextedit::sendRequestSoftwareInputPanelEvent() // focus on press, input panel on focus QTest::mousePress(view.viewport(), Qt::LeftButton, 0, view.mapFromScene(edit.scenePos())); QApplication::processEvents(); + QVERIFY(edit.hasFocus()); QCOMPARE(ic.openInputPanelReceived, true); QCOMPARE(ic.closeInputPanelReceived, false); ic.openInputPanelReceived = false; @@ -868,6 +869,14 @@ void tst_qdeclarativetextedit::sendRequestSoftwareInputPanelEvent() QCOMPARE(ic.closeInputPanelReceived, false); ic.openInputPanelReceived = false; + // Even with focus already gained, user needs + // to be able to open panel by pressing on the editor + QTest::mousePress(view.viewport(), Qt::LeftButton, 0, view.mapFromScene(edit.scenePos())); + QApplication::processEvents(); + QCOMPARE(ic.openInputPanelReceived, true); + QCOMPARE(ic.closeInputPanelReceived, false); + ic.openInputPanelReceived = false; + // input panel closed on focus lost edit.setFocus(false); QApplication::processEvents(); diff --git a/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp b/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp index b3e16c4..155223d 100644 --- a/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp +++ b/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp @@ -762,6 +762,7 @@ void tst_qdeclarativetextinput::sendRequestSoftwareInputPanelEvent() // focus on press, input panel on focus QTest::mousePress(view.viewport(), Qt::LeftButton, 0, view.mapFromScene(input.scenePos())); QApplication::processEvents(); + QVERIFY(input.hasFocus()); QCOMPARE(ic.openInputPanelReceived, true); QCOMPARE(ic.closeInputPanelReceived, false); ic.openInputPanelReceived = false; @@ -772,6 +773,14 @@ void tst_qdeclarativetextinput::sendRequestSoftwareInputPanelEvent() QCOMPARE(ic.closeInputPanelReceived, false); ic.openInputPanelReceived = false; + // Even with focus already gained, user needs + // to be able to open panel by pressing on the editor + QTest::mousePress(view.viewport(), Qt::LeftButton, 0, view.mapFromScene(input.scenePos())); + QApplication::processEvents(); + QCOMPARE(ic.openInputPanelReceived, true); + QCOMPARE(ic.closeInputPanelReceived, false); + ic.openInputPanelReceived = false; + // input panel closed on focus lost input.setFocus(false); QApplication::processEvents(); -- cgit v0.12 From aa936799f1fad4d51fee84b320943de6dff49380 Mon Sep 17 00:00:00 2001 From: Miikka Heikkinen Date: Tue, 25 May 2010 16:52:47 +0300 Subject: My 4.6.3 changes Reviewed-by: TrustMe --- dist/changes-4.6.3 | 88 +++++++++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 84 insertions(+), 4 deletions(-) diff --git a/dist/changes-4.6.3 b/dist/changes-4.6.3 index c1ace7b..05cb6ea 100644 --- a/dist/changes-4.6.3 +++ b/dist/changes-4.6.3 @@ -226,6 +226,15 @@ Qt Plugins - foo * bar +Examples & demos +---------------- + - Added exit softkey to Wiggly example + - Added close button to Anomaly demo + - [QTBUG-10635]: Fixed Anomaly demo controlstrip icon placement for very + small screens + + + Third party components ---------------------- @@ -301,10 +310,77 @@ Qt for Windows CE Qt for Symbian -------------- - - [QT-567] Implementation of QtMultimedia QAudio* APIs - - [QTBUG-8919] Modified Phonon MMF backend to support video playback on - platforms which use graphics surfaces (i.e. platforms using the - New Graphics Architecture a.k.a. ScreenPlay) + - multimedia + * [QT-567] Implementation of QtMultimedia QAudio* APIs + * [QTBUG-8919] Modified Phonon MMF backend to support video playback on + platforms which use graphics surfaces (i.e. platforms using the + New Graphics Architecture a.k.a. ScreenPlay) + + - mkspecs + * Changed pkg_prerules to not use default_deployment for vendor ID + * Added forwarding headers for qplatformdefs.h in Symbian mkspecs + * Added some missing IBY export paths to platform_path.prf + * Fixed libstdcpp.dll version autodetection for Symbian + * [QTBUG-7836]: Removed unnecessary dependency to moc.exe from Symbian + builds. + * [QT-1171]: Fixed libstdcpp.dll version autodetection + * [QTBUG-8513]: Fixed misc FLM issues + * [QT-2909]: Support for adding conditional MMP_RULES + * [QT-3253]: Export .flm files always if they are different + * [QTBUG-9279]: Made it possible to define more than one language using + pkg_prerules + * [QTBUG-6795]: Made sure target path exists in + qmake_extra_pre_targetdep.flm + * [QTBUG-7883]: Only use unix-like tools when not building for Symbian + in Windows + + - configure + * [QTBUG-7942]: Fix QT_BUILD_KEY for Symbian in Windows builds. + + IMPORTANT NOTE: The build key change causes all Qt for Symbian plugins + made with Qt 4.6.2 or earlier version incompatible with + Qt 4.6.3 and later. + + * [QTBUG-9065]: Support for -qtlibinfix parameter in Symbian + + - qmake + * Changed canonical paths to absolute paths in symmake. + * Basic deployment support for ROM in Symbian. + * Add '.' dir as the first include directory in Symbian + * [QT-3017]: Support for conditional subdirs + * [QT-3083]: Expanded support for RSS_RULES + * [QTBUG-8685]: RVCT 4 support to Symbian builds + * [QT-3147]: Changed Symbian pkg files to deploy from under epoc32 + * [QT-2985]: Fix extensions section in bld.inf when CONFIG contains + symbian_test + + - S60installs + * Export qtdemoapps.iby to proper location + * [QT-3163]: Removed QtDeclarative.dll deployment from qt.iby + + - QProcess + * [QTBUG-7735]: Fixed crash at application exit when QProcess was used in + Symbian + * [QTBUG-8906]: Removed extra space from the command line passed to + QProcess in Symbian + + - QtGui + * QUnixPrintWidget is no longer declared in Symbian + * [QTBUG-10207]: Fixed long menu item texts causing crash + + - Examples & demos: + * Enabled more examples by default in Symbian builds + + - Documentation + * [QTBUG-9277]: Clarified pkg_prerules usage documentation + + - Plugins: + * Fixed sqlite3_v9.2.zip to export sqlite3.iby to correct location. + + - General + * [QT-3055]: Fixed filename cases to support building Qt for Symbian in + Linux + **************************************************************************** * Tools * @@ -319,6 +395,10 @@ Qt for Symbian - Linguist * baz + - qmake + * Fixed qmake.pro for using with mingw + + **************************************************************************** * Important Behavior Changes * **************************************************************************** -- cgit v0.12 From b930d1a26b0c5999c205f224d75d7de6fa40699c Mon Sep 17 00:00:00 2001 From: Bea Lam Date: Wed, 26 May 2010 13:35:11 +1000 Subject: Add more examples of XPath expressions to XmlRole. Task-number: QTBUG-10852 --- doc/src/snippets/declarative/xmlrole.qml | 81 +++++++++++++++++++++++ doc/src/snippets/declarative/xmlrole.xml | 14 ++++ src/declarative/util/qdeclarativexmllistmodel.cpp | 33 ++++++--- 3 files changed, 118 insertions(+), 10 deletions(-) create mode 100644 doc/src/snippets/declarative/xmlrole.qml create mode 100644 doc/src/snippets/declarative/xmlrole.xml diff --git a/doc/src/snippets/declarative/xmlrole.qml b/doc/src/snippets/declarative/xmlrole.qml new file mode 100644 index 0000000..6d04daf --- /dev/null +++ b/doc/src/snippets/declarative/xmlrole.qml @@ -0,0 +1,81 @@ +/**************************************************************************** +** +** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the QtDeclarative module of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** No Commercial Usage +** This file contains pre-release code and may not be distributed. +** You may use this file in accordance with the terms and conditions +** contained in the Technology Preview License Agreement accompanying +** this package. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Nokia gives you certain additional +** rights. These rights are described in the Nokia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import Qt 4.7 + +Rectangle { + width: 300; height: 200 + +//![0] +XmlListModel { + id: model +//![0] + source: "xmlrole.xml" + +//![1] + // XmlRole queries will be made on elements + query: "/catalogue/book" + + // query the book title + XmlRole { name: "title"; query: "title/string()" } + + // query the book's year + XmlRole { name: "year"; query: "year/number()" } + + // query the book's type (the '@' indicates 'type' is an attribute, not an element) + XmlRole { name: "type"; query: "@type/string()" } + + // query the book's first listed author (note in XPath the first index is 1, not 0) + XmlRole { name: "first_author"; query: "author[1]/string()" } +} +//![1] + +ListView { + width: 300; height: 200 + model: model + delegate: Column { + Text { text: title + " (" + type + ")"; font.bold: true } + Text { text: first_author } + Text { text: year } + } +} + +} diff --git a/doc/src/snippets/declarative/xmlrole.xml b/doc/src/snippets/declarative/xmlrole.xml new file mode 100644 index 0000000..c9f999e --- /dev/null +++ b/doc/src/snippets/declarative/xmlrole.xml @@ -0,0 +1,14 @@ + + + + C++ GUI Programming with Qt 4 + 2006 + Jasmin Blanchette + Mark Summerfield + + + Programming with Qt + 2002 + Matthias Kalle Dalheimer + + diff --git a/src/declarative/util/qdeclarativexmllistmodel.cpp b/src/declarative/util/qdeclarativexmllistmodel.cpp index d08e37b..4f9355b 100644 --- a/src/declarative/util/qdeclarativexmllistmodel.cpp +++ b/src/declarative/util/qdeclarativexmllistmodel.cpp @@ -80,7 +80,11 @@ typedef QPair QDeclarativeXmlListRange; /*! \qmlproperty string XmlRole::name - The name for the role. This name is used to access the model data for this role from Qml. + + The name for the role. This name is used to access the model data for this role. + + For example, the following model has a role named "title", which can be accessed + from the view's delegate: \qml XmlListModel { @@ -91,19 +95,27 @@ typedef QPair QDeclarativeXmlListRange; ListView { model: xmlModel - Text { text: title } + delegate: Text { text: title } } \endqml */ /*! \qmlproperty string XmlRole::query - The relative XPath query for this role. The query should not start with a '/' (i.e. it must be - relative). + The relative XPath expression query for this role. The query must be relative; it cannot start + with a '/'. - \qml - XmlRole { name: "title"; query: "title/string()" } - \endqml + For example, if there is an XML document like this: + + \quotefile doc/src/snippets/declarative/xmlrole.xml + + Here are some valid XPath expressions for XmlRole queries on this document: + + \snippet doc/src/snippets/declarative/xmlrole.qml 0 + \dots 4 + \snippet doc/src/snippets/declarative/xmlrole.qml 1 + + See the \l{http://www.w3.org/TR/xpath20/}{W3C XPath 2.0 specification} for more information. */ /*! @@ -521,9 +533,12 @@ void QDeclarativeXmlListModelPrivate::clear_role(QDeclarativeListProperty in the XML document. The XmlRole objects define the + a model item for each \c in the XML document. + + The XmlRole objects define the model item attributes; here, each model item will have \c title and \c pubDate attributes that match the \c title and \c pubDate values of its corresponding \c . + (See \l XmlRole::query for more examples of valid XPath expressions for XmlRole.) The model could be used in a ListView, like this: @@ -559,8 +574,6 @@ void QDeclarativeXmlListModelPrivate::clear_role(QDeclarativeListProperty Date: Wed, 26 May 2010 14:47:11 +1000 Subject: Allow js files with '.pragma library' to be used from WorkerScript --- src/declarative/qml/qdeclarativeworkerscript.cpp | 1 + .../qdeclarativeworkerscript/data/BaseWorker.qml | 24 ++++++++++++ .../qdeclarativeworkerscript/data/script.js | 1 - .../data/script_fixed_return.js | 4 ++ .../qdeclarativeworkerscript/data/script_pragma.js | 6 +++ .../qdeclarativeworkerscript/data/worker.qml | 21 +---------- .../data/worker_pragma.qml | 6 +++ .../tst_qdeclarativeworkerscript.cpp | 43 ++++++++++++++++++---- 8 files changed, 77 insertions(+), 29 deletions(-) create mode 100644 tests/auto/declarative/qdeclarativeworkerscript/data/BaseWorker.qml create mode 100644 tests/auto/declarative/qdeclarativeworkerscript/data/script_fixed_return.js create mode 100644 tests/auto/declarative/qdeclarativeworkerscript/data/script_pragma.js create mode 100644 tests/auto/declarative/qdeclarativeworkerscript/data/worker_pragma.qml diff --git a/src/declarative/qml/qdeclarativeworkerscript.cpp b/src/declarative/qml/qdeclarativeworkerscript.cpp index 1550351..2ca030e 100644 --- a/src/declarative/qml/qdeclarativeworkerscript.cpp +++ b/src/declarative/qml/qdeclarativeworkerscript.cpp @@ -295,6 +295,7 @@ void QDeclarativeWorkerScriptEnginePrivate::processLoad(int id, const QUrl &url) ctxt->pushScope(urlContext); ctxt->pushScope(activation); ctxt->setActivationObject(activation); + QDeclarativeScriptParser::extractPragmas(script); workerEngine->baseUrl = url; workerEngine->evaluate(script); diff --git a/tests/auto/declarative/qdeclarativeworkerscript/data/BaseWorker.qml b/tests/auto/declarative/qdeclarativeworkerscript/data/BaseWorker.qml new file mode 100644 index 0000000..d275ca8 --- /dev/null +++ b/tests/auto/declarative/qdeclarativeworkerscript/data/BaseWorker.qml @@ -0,0 +1,24 @@ +import Qt 4.7 + +WorkerScript { + id: worker + + property variant response + + signal done() + + function testSend(value) { + worker.sendMessage(value) + } + + function compareLiteralResponse(expected) { + var e = eval('(' + expected + ')') + return worker.response == e + } + + onMessage: { + worker.response = messageObject + worker.done() + } +} + diff --git a/tests/auto/declarative/qdeclarativeworkerscript/data/script.js b/tests/auto/declarative/qdeclarativeworkerscript/data/script.js index 09199de..90aae26 100644 --- a/tests/auto/declarative/qdeclarativeworkerscript/data/script.js +++ b/tests/auto/declarative/qdeclarativeworkerscript/data/script.js @@ -2,4 +2,3 @@ WorkerScript.onMessage = function(msg) { WorkerScript.sendMessage(msg) } - diff --git a/tests/auto/declarative/qdeclarativeworkerscript/data/script_fixed_return.js b/tests/auto/declarative/qdeclarativeworkerscript/data/script_fixed_return.js new file mode 100644 index 0000000..14f6f17 --- /dev/null +++ b/tests/auto/declarative/qdeclarativeworkerscript/data/script_fixed_return.js @@ -0,0 +1,4 @@ +WorkerScript.onMessage = function(msg) { + WorkerScript.sendMessage('Hello_World') +} + diff --git a/tests/auto/declarative/qdeclarativeworkerscript/data/script_pragma.js b/tests/auto/declarative/qdeclarativeworkerscript/data/script_pragma.js new file mode 100644 index 0000000..cb3b6d3 --- /dev/null +++ b/tests/auto/declarative/qdeclarativeworkerscript/data/script_pragma.js @@ -0,0 +1,6 @@ +.pragma library + +WorkerScript.onMessage = function(msg) { + WorkerScript.sendMessage(msg) +} + diff --git a/tests/auto/declarative/qdeclarativeworkerscript/data/worker.qml b/tests/auto/declarative/qdeclarativeworkerscript/data/worker.qml index 5c7a5ff..1a20098 100644 --- a/tests/auto/declarative/qdeclarativeworkerscript/data/worker.qml +++ b/tests/auto/declarative/qdeclarativeworkerscript/data/worker.qml @@ -1,24 +1,5 @@ import Qt 4.7 -WorkerScript { - id: worker +BaseWorker { source: "script.js" - - property variant response - - signal done() - - function testSend(value) { - worker.sendMessage(value) - } - - function compareLiteralResponse(expected) { - var e = eval('(' + expected + ')') - return worker.response == e - } - - onMessage: { - worker.response = messageObject - worker.done() - } } diff --git a/tests/auto/declarative/qdeclarativeworkerscript/data/worker_pragma.qml b/tests/auto/declarative/qdeclarativeworkerscript/data/worker_pragma.qml new file mode 100644 index 0000000..3b720ef --- /dev/null +++ b/tests/auto/declarative/qdeclarativeworkerscript/data/worker_pragma.qml @@ -0,0 +1,6 @@ +import Qt 4.7 + +BaseWorker { + source: "script_pragma.js" +} + diff --git a/tests/auto/declarative/qdeclarativeworkerscript/tst_qdeclarativeworkerscript.cpp b/tests/auto/declarative/qdeclarativeworkerscript/tst_qdeclarativeworkerscript.cpp index a1dae24..7a4315a 100644 --- a/tests/auto/declarative/qdeclarativeworkerscript/tst_qdeclarativeworkerscript.cpp +++ b/tests/auto/declarative/qdeclarativeworkerscript/tst_qdeclarativeworkerscript.cpp @@ -64,6 +64,7 @@ private slots: void messaging_data(); void messaging_sendQObjectList(); void messaging_sendJsObject(); + void script_with_pragma(); private: void waitForEchoMessage(QDeclarativeWorkerScript *worker) { @@ -82,18 +83,25 @@ private: void tst_QDeclarativeWorkerScript::source() { - QUrl source = QUrl::fromLocalFile(SRCDIR "/data/worker.qml"); - - QDeclarativeComponent component(&m_engine); - component.setData("import Qt 4.7\nWorkerScript { source: '" + source.toString().toUtf8() + "'; }", QUrl()); + QDeclarativeComponent component(&m_engine, SRCDIR "/data/worker.qml"); + QDeclarativeWorkerScript *worker = qobject_cast(component.create()); + QVERIFY(worker != 0); + const QMetaObject *mo = worker->metaObject(); - QDeclarativeWorkerScript *item = qobject_cast(component.create()); - QVERIFY(item != 0); + QVariant value(100); + QVERIFY(QMetaObject::invokeMethod(worker, "testSend", Q_ARG(QVariant, value))); + waitForEchoMessage(worker); + QCOMPARE(mo->property(mo->indexOfProperty("response")).read(worker).value(), value); - QCOMPARE(item->source(), source); + QUrl source = QUrl::fromLocalFile(SRCDIR "/data/script_fixed_return.js"); + worker->setSource(source); + QCOMPARE(worker->source(), source); + QVERIFY(QMetaObject::invokeMethod(worker, "testSend", Q_ARG(QVariant, value))); + waitForEchoMessage(worker); + QCOMPARE(mo->property(mo->indexOfProperty("response")).read(worker).value(), qVariantFromValue(QString("Hello_World"))); qApp->processEvents(); - delete item; + delete worker; } void tst_QDeclarativeWorkerScript::messaging() @@ -177,6 +185,25 @@ void tst_QDeclarativeWorkerScript::messaging_sendJsObject() delete worker; } +void tst_QDeclarativeWorkerScript::script_with_pragma() +{ + QVariant value(100); + + QDeclarativeComponent component(&m_engine, SRCDIR "/data/worker_pragma.qml"); + QDeclarativeWorkerScript *worker = qobject_cast(component.create()); + QVERIFY(worker != 0); + + QVERIFY(QMetaObject::invokeMethod(worker, "testSend", Q_ARG(QVariant, value))); + waitForEchoMessage(worker); + + const QMetaObject *mo = worker->metaObject(); + QCOMPARE(mo->property(mo->indexOfProperty("response")).read(worker).value(), value); + + qApp->processEvents(); + delete worker; +} + + QTEST_MAIN(tst_QDeclarativeWorkerScript) #include "tst_qdeclarativeworkerscript.moc" -- cgit v0.12 From b08165d372e60c0c61b25dbaf5d0340ce8f985bc Mon Sep 17 00:00:00 2001 From: Bea Lam Date: Wed, 26 May 2010 17:23:41 +1000 Subject: Doc fixes, improvements --- doc/src/declarative/advtutorial.qdoc | 4 +- doc/src/declarative/dynamicobjects.qdoc | 14 +-- doc/src/declarative/examples.qdoc | 23 +++-- doc/src/declarative/globalobject.qdoc | 2 +- doc/src/declarative/qtdeclarative.qdoc | 4 +- .../ui-components/dialcontrol/dial.qmlproject | 16 ---- .../dialcontrol/dialcontrol.qmlproject | 16 ++++ src/declarative/qml/qdeclarativeengine.cpp | 102 +++++++++------------ 8 files changed, 88 insertions(+), 93 deletions(-) delete mode 100644 examples/declarative/ui-components/dialcontrol/dial.qmlproject create mode 100644 examples/declarative/ui-components/dialcontrol/dialcontrol.qmlproject diff --git a/doc/src/declarative/advtutorial.qdoc b/doc/src/declarative/advtutorial.qdoc index 47504ae..abfeadb 100644 --- a/doc/src/declarative/advtutorial.qdoc +++ b/doc/src/declarative/advtutorial.qdoc @@ -178,7 +178,7 @@ The \c createBlock() function creates a block from the \c Block.qml file and moves the new block to its position on the game canvas. This involves several steps: \list -\o \l {Qt.createComponent(url file)}{Qt.createComponent()} is called to generate an element from \c Block.qml. +\o \l {Qt::createComponent()}{Qt.createComponent()} is called to generate an element from \c Block.qml. If the component is ready, we can call \c createObject() to create an instance of the \c Block item. \o If \c createObject() returned null (i.e. if there was an error while loading the object), print the error information. @@ -468,6 +468,6 @@ By following this tutorial you've seen how you can write a fully functional appl \endlist There is so much more to learn about QML that we haven't been able to cover in this tutorial. Check out all the -demos and examples and the \l {Declarative UI Using QML}{documentation} to find out all the things you can do with QML! +demos and examples and the \l {Qt Quick}{documentation} to find out all the things you can do with QML! */ diff --git a/doc/src/declarative/dynamicobjects.qdoc b/doc/src/declarative/dynamicobjects.qdoc index 633489b..5e606f4 100644 --- a/doc/src/declarative/dynamicobjects.qdoc +++ b/doc/src/declarative/dynamicobjects.qdoc @@ -56,15 +56,15 @@ application, and there are no C++ components involved. \section1 Creating Objects Dynamically There are two ways to create objects dynamically from JavaScript. You can either call -\l {Qt.createComponent(url file)}{Qt.createComponent()} to create -a component which instantiates items, or use \l{Qt.createQmlObject(string qml, object parent, string filepath)}{Qt.createQmlObject()} +\l {Qt::createComponent()}{Qt.createComponent()} to create +a component which instantiates items, or use \l{Qt::createQmlObject()}{Qt.createQmlObject()} to create an item from a string of QML. Creating a component is better if you have a predefined item, and you want to create dynamic instances of that item; creating an item from a string of QML is useful when the item QML itself is generated at runtime. If you have a component specified in a QML file, you can dynamically load it with -the \l {Qt.createComponent(url file)}{Qt.createComponent()} function on the \l{QML Global Object}. +the \l {Qt::createComponent()}{Qt.createComponent()} function on the \l{QML Global Object}. This function takes the URL of the QML file as its only argument and returns a component object which can be used to create and load that QML file. @@ -98,10 +98,10 @@ in \c main.qml). After creating an item, you must set its parent to an item with Otherwise your dynamically created item will not appear in the scene. When using files with relative paths, the path should -be relative to the file where \l {Qt.createComponent(url file)}{Qt.createComponent()} is executed. +be relative to the file where \l {Qt::createComponent()}{Qt.createComponent()} is executed. If the QML component does not exist until runtime, you can create a QML item from -a string of QML using the \l{Qt.createQmlObject(string qml, object parent, string filepath)}{Qt.createQmlObject()} function, as in the following example: +a string of QML using the \l{Qt::createQmlObject()}{Qt.createQmlObject()} function, as in the following example: \snippet doc/src/snippets/declarative/createQmlObject.qml 0 @@ -121,9 +121,9 @@ the bindings in the dynamic item will no longer work. The actual creation context depends on how an item is created: \list -\o If \l {Qt.createComponent(url file)}{Qt.createComponent()} is used, the creation context +\o If \l {Qt::createComponent()}{Qt.createComponent()} is used, the creation context is the QDeclarativeContext in which this method is called -\o If \l{Qt.createQmlObject(string qml, object parent, string filepath)}{Qt.createQmlObject()} +\o If \l{Qt::createQmlObject()}{Qt.createQmlObject()} if called, it is the context of the item used as the second argument to this method \o If a \c {Component{}} item is defined and \l {Component::createObject()}{createObject()} is called on that item, it is the context in which the \c Component is defined diff --git a/doc/src/declarative/examples.qdoc b/doc/src/declarative/examples.qdoc index 6e0426c..5cb83fa 100644 --- a/doc/src/declarative/examples.qdoc +++ b/doc/src/declarative/examples.qdoc @@ -84,7 +84,10 @@ For example, from your build directory, run: \o \l{declarative/imageelements/borderimage}{BorderImage} \endlist -\section2 \l{declarative/positioners}{Positioners} +\section2 Positioners +\list +\o \l{declarative/positioners}{Example} +\endlist \section2 Key Interaction \list @@ -99,6 +102,7 @@ For example, from your build directory, run: \section2 UI Components \list +\o \l{declarative/ui-components/dialcontrol}{Dial control} \o \l{declarative/ui-components/flipable}{Flipable} \o \l{declarative/ui-components/progressbar}{Progress bar} \o \l{declarative/ui-components/scrollbar}{Scroll bar} @@ -112,10 +116,10 @@ For example, from your build directory, run: \list \o \l{declarative/modelviews/gridview}{GridView} \o \l{declarative/modelviews/listview}{ListView} -\o \l{declarative/modelviews/objectlistmodel}{Object list model} +\o \l{declarative/modelviews/objectlistmodel}{Object ListModel} \o \l{declarative/modelviews/package}{Package} \o \l{declarative/modelviews/parallax}{Parallax} -\o \l{declarative/modelviews/stringlistmodel}{String list model} +\o \l{declarative/modelviews/stringlistmodel}{String ListModel} \o \l{declarative/modelviews/webview}{WebView} \endlist @@ -124,7 +128,10 @@ For example, from your build directory, run: \o \l{declarative/xml/xmlhttprequest}{XmlHttpRequest} \endlist -\section2 \l{declarative/i18n}{Internationalization (i18n)} +\section2 Internationalization (i18n) +\list +\o \l{declarative/i18n}{Example} +\endlist \section2 Threading \list @@ -132,11 +139,14 @@ For example, from your build directory, run: \o \l{declarative/threading/workerscript}{WorkerScript} \endlist -\section2 \l{declarative/sqllocalstorage}{SQL Local Storage} +\section2 SQL Local Storage +\list +\o \l{declarative/sqllocalstorage}{Example} +\endlist \section2 C++ Extensions \list -\o \l{declarative-cppextensions-reference.html}{Reference examples} (discussed in \l {Extending QML in C++}) +\o \l{declarative-cppextensions-reference.html}{Reference examples} \o \l{declarative/cppextensions/plugins}{Plugins} \o \l{declarative-cppextensions-qgraphicslayouts.html}{QGraphicsLayouts} \o \l{declarative/cppextensions/qwidgets}{QWidgets} @@ -148,7 +158,6 @@ For example, from your build directory, run: \list \o \l{declarative/toys/clocks}{Clocks} \o \l{declarative/toys/corkboards}{Corkboards} -\o \l{declarative/toys/dial}{Dial} \o \l{declarative/toys/dynamicscene}{Dynamic Scene} \o \l{declarative/toys/tic-tac-toe}{Tic Tac Toe} \o \l{declarative/toys/tvtennis}{TV Tennis} diff --git a/doc/src/declarative/globalobject.qdoc b/doc/src/declarative/globalobject.qdoc index 2885dd5..3a2ad81 100644 --- a/doc/src/declarative/globalobject.qdoc +++ b/doc/src/declarative/globalobject.qdoc @@ -49,7 +49,7 @@ Contains all the properties of the JavaScript global object, plus: \section1 Qt Object -The \l{qt-qml.html}{Qt object} provides useful enums and functions from Qt, for use in all QML +The \l{qml-qt.html}{Qt object} provides useful enums and functions from Qt, for use in all QML files. \section1 XMLHttpRequest diff --git a/doc/src/declarative/qtdeclarative.qdoc b/doc/src/declarative/qtdeclarative.qdoc index c47ab23..f7cb722 100644 --- a/doc/src/declarative/qtdeclarative.qdoc +++ b/doc/src/declarative/qtdeclarative.qdoc @@ -112,7 +112,7 @@ Returns the QML type id. - \sa qmlRegisterTypeNotAvailable + \sa qmlRegisterTypeNotAvailable() */ /*! @@ -147,7 +147,7 @@ fun.qml: Get back to work, slacker! Without this, a generic "Game is not a type" message would be given. - \sa qmlRegisterUncreatableType + \sa qmlRegisterUncreatableType() */ /*! diff --git a/examples/declarative/ui-components/dialcontrol/dial.qmlproject b/examples/declarative/ui-components/dialcontrol/dial.qmlproject deleted file mode 100644 index d4909f8..0000000 --- a/examples/declarative/ui-components/dialcontrol/dial.qmlproject +++ /dev/null @@ -1,16 +0,0 @@ -import QmlProject 1.0 - -Project { - /* Include .qml, .js, and image files from current directory and subdirectories */ - QmlFiles { - directory: "." - } - JavaScriptFiles { - directory: "." - } - ImageFiles { - directory: "." - } - /* List of plugin directories passed to QML runtime */ - // importPaths: [ " ../exampleplugin " ] -} diff --git a/examples/declarative/ui-components/dialcontrol/dialcontrol.qmlproject b/examples/declarative/ui-components/dialcontrol/dialcontrol.qmlproject new file mode 100644 index 0000000..d4909f8 --- /dev/null +++ b/examples/declarative/ui-components/dialcontrol/dialcontrol.qmlproject @@ -0,0 +1,16 @@ +import QmlProject 1.0 + +Project { + /* Include .qml, .js, and image files from current directory and subdirectories */ + QmlFiles { + directory: "." + } + JavaScriptFiles { + directory: "." + } + ImageFiles { + directory: "." + } + /* List of plugin directories passed to QML runtime */ + // importPaths: [ " ../exampleplugin " ] +} diff --git a/src/declarative/qml/qdeclarativeengine.cpp b/src/declarative/qml/qdeclarativeengine.cpp index a7384a9..8679e76 100644 --- a/src/declarative/qml/qdeclarativeengine.cpp +++ b/src/declarative/qml/qdeclarativeengine.cpp @@ -153,11 +153,11 @@ void QDeclarativeEnginePrivate::defineModule() /*! \qmlclass Qt QDeclarativeEnginePrivate -\brief The QML Global Qt Object +\brief The QML global Qt object provides useful enums and functions from Qt. -The Qt object provides useful enums and functions from Qt, for use in all QML -files. Note that you do note create instances of this type, but instead use -the members of the global "Qt" object. +The Qt object provides useful enums and functions from Qt, for use in all QML files. + +You do not create instances of this type, but instead use the members of the global "Qt" object. \section1 Enums @@ -172,23 +172,23 @@ data types. This is primarily useful when setting the properties of an item when the property has one of the following types: \list -\o Color -\o Rect -\o Point -\o Size -\o Vector3D +\o \c color - use \l{Qt::rgba()}{Qt.rgba()}, \l{Qt::darker()}{Qt.darker()}, \l{Qt::lighter()}{Qt.lighter()} or \l{Qt::tint()}{Qt.tint()} +\o \c rect - use \l{Qt::rect()}{Qt.rect()} +\o \c point - use \l{Qt::point()}{Qt.point()} +\o \c size - use \l{Qt::size()}{Qt.size()} +\o \c vector3d - use \l{Qt::vector3d()}{Qt.vector3d()} \endlist -There are also string based constructors for these types, see \l{qdeclarativebasictypes.html}{Qml Types}. +There are also string based constructors for these types, see \l{qdeclarativebasictypes.html}{QML Basic Types}. \section1 Date/Time Formatters The Qt object contains several functions for formatting dates and times. \list - \o \l{Qt::formatDateTime}{string Qt.formatDateTime(datetime date, variant format) - \o \l{Qt::formatDate}{string Qt.formatDate(datetime date, variant format) - \o \l{Qt::formatTime}{string Qt.formatTime(datetime date, variant format) + \o \l{Qt::formatDateTime}{string Qt.formatDateTime(datetime date, variant format)} + \o \l{Qt::formatDate}{string Qt.formatDate(datetime date, variant format)} + \o \l{Qt::formatTime}{string Qt.formatTime(datetime date, variant format)} \endlist The format specification is described at \l{Qt::formatDateTime}{Qt.formatDateTime}. @@ -226,8 +226,7 @@ QDeclarativeEnginePrivate::QDeclarativeEnginePrivate(QDeclarativeEngine *e) /*! \qmlmethod url Qt::resolvedUrl(url) -This function returns \c url resolved relative to the URL of the -caller. +Returns \c url resolved relative to the URL of the caller. */ QUrl QDeclarativeScriptEngine::resolvedUrl(QScriptContext *context, const QUrl& url) { @@ -1035,8 +1034,11 @@ QString QDeclarativeEnginePrivate::urlToLocalFileOrQrc(const QUrl& url) /*! \qmlmethod object Qt::createComponent(url) -This function takes the URL of a QML file as its only argument. It returns -a component object which can be used to create and load that QML file. +Returns a \l Component object created from the QML file at the specified \a url, +or \c null if there was an error in creating the component. + +Call \l {Component::createObject()}{Component.createObject()} on the returned +component to create an object instance of the component. Here is an example. Remember that QML files that might be loaded over the network cannot be expected to be ready immediately. @@ -1049,17 +1051,8 @@ If you are certain the files will be local, you could simplify to: \snippet doc/src/snippets/declarative/componentCreation.js 2 -The methods and properties of the \l {Component} element are defined in its own -page, but when using it dynamically only two methods are usually used. - \l {Component::createObject()}{Component.createObject()} returns the created object or \c null if there is an error. -If there is an error, \l {Component::errorString()}{Component.errorString()} describes -the error that occurred. Note that createObject() takes exactly one argument, which is set -to the parent of the created object. Graphical objects without a parent will not appear -on the scene, but if you do not wish to parent the item at this point you can safely pass -in null. - -If you want to just create an arbitrary string of QML, instead of -loading a QML file, consider the \l{Qt.createQmlObject(string qml, object parent, string filepath)}{Qt.createQmlObject()} function. +To create a QML object from an arbitrary string of QML (instead of a file), +use \l{Qt::createQmlObject()}{Qt.createQmlObject()}. */ QScriptValue QDeclarativeEnginePrivate::createComponent(QScriptContext *ctxt, QScriptEngine *engine) @@ -1088,29 +1081,22 @@ QScriptValue QDeclarativeEnginePrivate::createComponent(QScriptContext *ctxt, QS /*! \qmlmethod object Qt::createQmlObject(string qml, object parent, string filepath) -Creates a new object from the specified string of QML. It requires a -second argument, which is the id of an existing QML object to use as -the new object's parent. If a third argument is provided, this is used -for error reporting as the filepath that the QML came from. +Returns a new object created from the given \a string of QML with the specified \a parent, +or \c null if there was an error in creating the object. + +If \a filepath is specified, it will be used for error reporting for the created object. Example (where \c targetItem is the id of an existing QML item): \snippet doc/src/snippets/declarative/createQmlObject.qml 0 -This function is intended for use inside QML only. It is intended to behave -similarly to eval, but for creating QML elements. - -Returns the created object, \c or null if there is an error. In the case of an -error, a QtScript Error object is thrown. This object has the additional property, -qmlErrors, which is an array of all the errors encountered when trying to execute the -QML. Each object in the array has the members \c lineNumber, \c columnNumber, \c fileName and \c message. +In the case of an error, a QtScript Error object is thrown. This object has an additional property, +\c qmlErrors, which is an array of the errors encountered. +Each object in this array has the members \c lineNumber, \c columnNumber, \c fileName and \c message. Note that this function returns immediately, and therefore may not work if -the QML loads new components. If you are trying to load a new component, -for example from a QML file, consider the \l{Qt.createComponent(url file)}{Qt.createComponent()} function -instead. 'New components' refers to external QML files that have not yet -been loaded, and so it is safe to use \c Qt.createQmlObject() to load built-in -components. +the \a qml string loads new components (that is, external QML files that have not yet been loaded). +If this is the case, consider using \l{Qt::createComponent()}{Qt.createComponent()} instead. */ QScriptValue QDeclarativeEnginePrivate::createQmlObject(QScriptContext *ctxt, QScriptEngine *engine) @@ -1217,7 +1203,7 @@ QScriptValue QDeclarativeEnginePrivate::isQtObject(QScriptContext *ctxt, QScript /*! \qmlmethod Qt::vector3d(real x, real y, real z) -This function returns a Vector3D with the specified \c x, \c y and \c z. +Returns a Vector3D with the specified \c x, \c y and \c z. */ QScriptValue QDeclarativeEnginePrivate::vector3d(QScriptContext *ctxt, QScriptEngine *engine) { @@ -1231,7 +1217,7 @@ QScriptValue QDeclarativeEnginePrivate::vector3d(QScriptContext *ctxt, QScriptEn /*! \qmlmethod string Qt::formatDate(datetime date, variant format) -This function returns the string representation of \c date, formatted according to \c format. +Returns the string representation of \c date, formatted according to \c format. */ QScriptValue QDeclarativeEnginePrivate::formatDate(QScriptContext*ctxt, QScriptEngine*engine) { @@ -1256,7 +1242,7 @@ QScriptValue QDeclarativeEnginePrivate::formatDate(QScriptContext*ctxt, QScriptE /*! \qmlmethod string Qt::formatTime(datetime time, variant format) -This function returns the string representation of \c time, formatted according to \c format. +Returns the string representation of \c time, formatted according to \c format. See Qt::formatDateTime for how to define \c format. */ @@ -1283,7 +1269,7 @@ QScriptValue QDeclarativeEnginePrivate::formatTime(QScriptContext*ctxt, QScriptE /*! \qmlmethod string Qt::formatDateTime(datetime dateTime, variant format) -This function returns the string representation of \c dateTime, formatted according to \c format. +Returns the string representation of \c dateTime, formatted according to \c format. \c format for the date/time formatting functions is be specified as follows. @@ -1374,7 +1360,7 @@ QScriptValue QDeclarativeEnginePrivate::formatDateTime(QScriptContext*ctxt, QScr /*! \qmlmethod color Qt::rgba(real red, real green, real blue, real alpha) -This function returns a Color with the specified \c red, \c green, \c blue and \c alpha components. +Returns a Color with the specified \c red, \c green, \c blue and \c alpha components. All components should be in the range 0-1 inclusive. */ QScriptValue QDeclarativeEnginePrivate::rgba(QScriptContext *ctxt, QScriptEngine *engine) @@ -1402,7 +1388,7 @@ QScriptValue QDeclarativeEnginePrivate::rgba(QScriptContext *ctxt, QScriptEngine /*! \qmlmethod color Qt::hsla(real hue, real saturation, real lightness, real alpha) -This function returns a Color with the specified \c hue, \c saturation, \c lightness and \c alpha components. +Returns a Color with the specified \c hue, \c saturation, \c lightness and \c alpha components. All components should be in the range 0-1 inclusive. */ QScriptValue QDeclarativeEnginePrivate::hsla(QScriptContext *ctxt, QScriptEngine *engine) @@ -1430,7 +1416,7 @@ QScriptValue QDeclarativeEnginePrivate::hsla(QScriptContext *ctxt, QScriptEngine /*! \qmlmethod rect Qt::rect(int x, int y, int width, int height) -This function returns a Rect with the top-left corner at \c x, \c y and the specified \c width and \c height. +Returns a Rect with the top-left corner at \c x, \c y and the specified \c width and \c height. */ QScriptValue QDeclarativeEnginePrivate::rect(QScriptContext *ctxt, QScriptEngine *engine) { @@ -1450,7 +1436,7 @@ QScriptValue QDeclarativeEnginePrivate::rect(QScriptContext *ctxt, QScriptEngine /*! \qmlmethod point Qt::point(int x, int y) -This function returns a Point with the specified \c x and \c y coordinates. +Returns a Point with the specified \c x and \c y coordinates. */ QScriptValue QDeclarativeEnginePrivate::point(QScriptContext *ctxt, QScriptEngine *engine) { @@ -1463,7 +1449,7 @@ QScriptValue QDeclarativeEnginePrivate::point(QScriptContext *ctxt, QScriptEngin /*! \qmlmethod Qt::size(int width, int height) -This function returns as Size with the specified \c width and \c height. +Returns a Size with the specified \c width and \c height. */ QScriptValue QDeclarativeEnginePrivate::size(QScriptContext *ctxt, QScriptEngine *engine) { @@ -1476,7 +1462,7 @@ QScriptValue QDeclarativeEnginePrivate::size(QScriptContext *ctxt, QScriptEngine /*! \qmlmethod color Qt::lighter(color baseColor, real factor) -This function returns a color lighter than \c baseColor by the \c factor provided. +Returns a color lighter than \c baseColor by the \c factor provided. If the factor is greater than 1.0, this functions returns a lighter color. Setting factor to 1.5 returns a color that is 50% brighter. If the factor is less than 1.0, @@ -1512,7 +1498,7 @@ QScriptValue QDeclarativeEnginePrivate::lighter(QScriptContext *ctxt, QScriptEng /*! \qmlmethod color Qt::darker(color baseColor, real factor) -This function returns a color darker than \c baseColor by the \c factor provided. +Returns a color darker than \c baseColor by the \c factor provided. If the factor is greater than 1.0, this function returns a darker color. Setting factor to 3.0 returns a color that has one-third the brightness. @@ -1549,7 +1535,7 @@ QScriptValue QDeclarativeEnginePrivate::darker(QScriptContext *ctxt, QScriptEngi /*! \qmlmethod bool Qt::openUrlExternally(url target) -This function attempts to open the specified \c target url in an external application, based on the user's desktop preferences. It will return true if it succeeds, and false otherwise. +Attempts to open the specified \c target url in an external application, based on the user's desktop preferences. Returns true if it succeeds, and false otherwise. */ QScriptValue QDeclarativeEnginePrivate::desktopOpenUrl(QScriptContext *ctxt, QScriptEngine *e) { @@ -1564,7 +1550,7 @@ QScriptValue QDeclarativeEnginePrivate::desktopOpenUrl(QScriptContext *ctxt, QSc /*! \qmlmethod list Qt::fontFamilies() -This function returns a list of the font families available to the application. +Returns a list of the font families available to the application. */ QScriptValue QDeclarativeEnginePrivate::fontFamilies(QScriptContext *ctxt, QScriptEngine *e) @@ -1579,7 +1565,7 @@ QScriptValue QDeclarativeEnginePrivate::fontFamilies(QScriptContext *ctxt, QScri /*! \qmlmethod string Qt::md5(data) -This function returns a hex string of the md5 hash of \c data. +Returns a hex string of the md5 hash of \c data. */ QScriptValue QDeclarativeEnginePrivate::md5(QScriptContext *ctxt, QScriptEngine *) { -- cgit v0.12 From 155734c796c99fefa7106b89c9af79eb408ce4d2 Mon Sep 17 00:00:00 2001 From: Jason McDonald Date: Wed, 26 May 2010 17:37:38 +1000 Subject: Tidy changes file for 4.6.3. Reviewed-by: Trust Me --- dist/changes-4.6.3 | 356 +++++++++++++++++++++-------------------------------- 1 file changed, 137 insertions(+), 219 deletions(-) diff --git a/dist/changes-4.6.3 b/dist/changes-4.6.3 index 05cb6ea..6ac0c7e 100644 --- a/dist/changes-4.6.3 +++ b/dist/changes-4.6.3 @@ -20,17 +20,14 @@ Merge Request: http://qt.gitorious.org * General * **************************************************************************** -New features ------------- +Examples and Demos +------------------ - - SomeClass, SomeOtherClass - * New classes for foo, bar and baz - -Optimizations -------------- - - - Optimized foo in QSomeClass - * See list of Important Behavior Changes below + - Added Spectrum analyzer demo application. + - Added exit softkey to Wiggly example. + - Added close button to Anomaly demo. + - [QTBUG-10635]: Fixed Anomaly demo controlstrip icon placement for very + small screens. **************************************************************************** @@ -42,43 +39,94 @@ QtCore - QStateMachine * [QTBUG-8842] Ensure history configuration is cleared when a state - machine is restarted + machine is restarted. + - QXmlStreamReader - * [QTBUG-9196] fixed crash when parsing + * [QTBUG-9196] Fixed crash when parsing. QtGui ----- + - QCommonStyle + * [QTBUG-7137] Fixed a bug that led to missing text pixels in QTabBar when + using small font sizes. + + - QCUPSSupport + * [QTBUG-10512] Fixed a potential crash with misconfigured CUPS printers. + * [QTBUG-6419] Make QCUPSSupport::printerHasPPD() release temporary file + handles. + + - qDrawPixmaps() + * [QTBUG-8455] Fixed qDrawPixmaps() to draw on integer coordinates under + Mac OS X. + + - QFontEngine + * [QTBUG-3976] Fixed a leak for QFont objects used in threads. + + - QGifHandler + * [QTBUG-7037] Fixed QGifHandler::loopCount(). + * [QTBUG-6696] Cache the sizes of images in an animated GIF. + - QGraphicsEffect - * [QTBUG-5358] Fixed warnings and crash when painting graphics effects outside scene. + * [QTBUG-5358] Fixed warnings and crash when painting graphics effects + outside scene. - QGraphicsItem * [QTBUG-9391] Avoid a useless repaint when setting the cache mode to DeviceCoordinateMode while already using that mode. - * [QTBUG-8475] Fixed crash and loss of focus when deleting a child of a focus scope. + * [QTBUG-8475] Fixed crash and loss of focus when deleting a child of a + focus scope. - QGraphicsProxyWidget * [QTBUG-5349] Fixed tooltips not being shown for QGraphicsProxyWidget. * [QTBUG-2883] Fixed tooltips appearing at wrong location. - * [QTBUG-7296] Fixed painting artifacts on a scaled proxy when the view is scrolled. + * [QTBUG-7296] Fixed painting artifacts on a scaled proxy when the view + is scrolled. - QGraphicsScene - * [QTBUG-7863] Fixed incorrect blending when using QGraphicsItem:DeviceCoordinateCache - and when the item is semi-transparent. If the item is transformed, the cache is now - always fully repainted to avoid artifacts. + * [QTBUG-7863] Fixed incorrect blending when using + QGraphicsItem::DeviceCoordinateCache and when the item is semi- + transparent. If the item is transformed, the cache is now always fully + repainted to avoid artifacts. - QGraphicsView * Item tooltips are not clipped by the view anymore. + - QImageReader + * [QTBUG-7980] Fixed QImageReader::setAutoDetectImageFormat() to work with + plugins. + - QPainter - * [QTBUG-10421] Fixed WebKit-specific justification bug for text containing - more than one script. + * [QTBUG-8140] Speed up custom bitmap brushes under X11 without Xrender + support. + * [QTBUG-8032] Fixed drawing pixmaps onto bitmaps on X11 without Xrender + support. + * [QTBUG-10421] Fixed WebKit-specific justification bug for text containing + more than one script. + + - QPDFBaseEngine + * [QTBUG-8451] Fixed line and point drawing in the PS and PDF generators. + + - QPixmap + * [QTBUG-8606] Fixed QPixmap::load() to not modify referenced copies. + + - QPSPrintEngine + * [QTBUG-10121] Fixed incorrect version setting for EPS files. + * [QTBUG-10140] Fixed generation of the %%BoundingBox operator to output + integer values instead of floating point values. + + - QRasterPaintEngine + * [QTBUG-9036] Fixed ClearType text rendering on translucent surfaces under + Windows. - QRegion * [QTBUG-7699] Prevented crash on large x-coordinates. + - QTextDocument + * [QTBUG-10301] Fixed a leak in QTextDocument::print(). + - QTextEdit - * [QTBUG-9599] Fixed crash when copying the current text cursor as a result + * [QTBUG-9599] Fixed crash when copying the current text cursor as a result of deleting a character. - QTextEngine @@ -92,82 +140,35 @@ QtGui * [QTBUG-8557] Fixed bug in QTransform::type() potentially occuring after using operator/ or operator* or their overloads. - - Improved scrolling horizontally with a mouse wheel over sliders. - - [QTBUG-7451] Gestures respect panels on QGraphicsView. - - - QCUPSSupport - * [QTBUG-10512] Fixed a potential crash with misconfigured CUPS printers. - * [QTBUG-6419] Make QCUPSSupport::printerHasPPD() release temporary file - handles. - - - QPDFBaseEngine - * [QTBUG-8451] Fixed line and point drawing in the PS and PDF generators. - - - QTextDocument - * [QTBUG-10301] Fixed a leak in QTextDocument::print(). - - - QFontEngine - * [QTBUG-3976] Fixed a leak for QFont objects used in threads. - - - QPSPrintEngine - * [QTBUG-10121] Fixed incorrect version setting for EPS files. - * [QTBUG-10140] Fixed generation of the %%BoundingBox operator to output - integer values instead of floating point values. + - QTriangulatingStroker + * [QTBUG-9548] Fixed possible data corruption when certain paths were + triangulated. - QWin32PrintEngine * [QTBUG-9938] Fixed a crash on Windows 7 systems with invalid PrinterPorts registry entries. - - QTriangulatingStroker - * [QTBUG-9548] Fixed possible data corruption when certain paths were triangulated. - - - QRasterPaintEngine - * [QTBUG-9036] Fixed ClearType text rendering on translucent surfaces under Windows. - - - QPixmap - * [QTBUG-8606] Fixed QPixmap::load() to not modify referenced copies. - - - QPainter - * [QTBUG-8140] Speed up custom bitmap brushes under X11 without Xrender support. - * [QTBUG-8032] Fixed drawing pixmaps onto bitmaps on X11 without Xrender support. - - - QImageReader - * [QTBUG-7980] Fixed QImageReader::setAutoDetectImageFormat() to work with plugins. - - - QGifHandler - * [QTBUG-7037] Fixed QGifHandler::loopCount(). - * [QTBUG-6696] Cache the sizes of images in an animated GIF. - - - qDrawPixmaps() - * [QTBUG-8455] Fixed qDrawPixmaps() to draw on integer coordinates under Mac OS X. - - - QCommonStyle - * [QTBUG-7137] Fixed a bug that led to missing text pixels in QTabBar when using - small font sizes. - - -QtDBus ------- - - - foo - * bar - -QtNetwork ---------- - - - foo - * bar + - Improved scrolling horizontally with a mouse wheel over sliders. + - [QTBUG-7451] Gestures respect panels on QGraphicsView. QtOpenGL -------- - QOpenGLPaintEngine - * [QTBUG-10529] Fixed an issue where bound pixmaps were not released correctly - in the GL 1 engine. + * [QTBUG-10529] Fixed an issue where bound pixmaps were not released + correctly in the GL 1 engine. - QGL2PaintEngineEx - * [QTBUG-8681] Fixed an application exit crash that could occur in - the GL2 engine under X11. + * [QTBUG-8681] Fixed an application exit crash that could occur in the GL2 + engine under X11. + + - QGLContext + * [QTBUG-5732] Fixed a GLX warning that occured with some Intel chipsets + under X11. + + - QGLPixelBuffer + * [QTBUG-8047] Fixed usage of QGLPixelBuffer with share widgets on other + X11 screens. - QGLWidget * [QTBUG-7545] Fixed QGLWidget::grabFrameBuffer() to honor the 'withAlpha' flag. @@ -177,87 +178,38 @@ QtOpenGL * [QTBUG-8753] Worked around driver bug causing clipping errors on the N900. * [QTBUG-10510] Workaround ATI driver bug when using QGraphicsEffect with GL. - - QGLContext - * [QTBUG-5732] Fixed a GLX warning that occured with some Intel chipsets under X11. - - - QGLPixelBuffer - * [QTBUG-8047] Fixed usage of QGLPixelBuffer with share widgets on other X11 screens. - QtScript -------- - - [QTBUG-7066] Fixed regression introduced in 4.6.0 that made it not - possible to change the prototype of the global object - - [QTBUG-8366] Fixed regression introduced in 4.6.0 that caused the - instanceof operator to throw an error when the right-hand-side is - generated by QScriptEngine::newQMetaObject() - - [QTBUG-8400] Fixed memory leak when lazily binding QScriptValue to an - engine - - [QTBUG-9775] Fixed regression introduced in 4.6.0 that caused the - qsTr() function not to resolve the translation context correctly when - invoked in the global scope - - QScriptClass - * [QTBUG-8364] Fixed regression introduced in 4.6.0 that could cause - the Callable extension to crash - - QScriptEngine - * [QTBUG-6437] Fixed regression introduced in 4.6.0 that made - installTranslatorFunctions() not work with custom global object - -QtSql ------ - - - foo - * bar + - [QTBUG-7066] Fixed regression introduced in 4.6.0 that made it impossible to + change the prototype of the global object. + - [QTBUG-8366] Fixed regression introduced in 4.6.0 that caused the instanceof + operator to throw an error when the right-hand-side is generated by + QScriptEngine::newQMetaObject(). + - [QTBUG-8400] Fixed memory leak when lazily binding QScriptValue to an engine. + - [QTBUG-9775] Fixed regression introduced in 4.6.0 that caused the qsTr() + function not to resolve the translation context correctly when invoked in + the global scope. + - [QTBUG-8364] Fixed regression introduced in QScriptclass in 4.6.0 that could + cause the Callable extension to crash. + - [QTBUG-6437] Fixed regression introduced in QScriptEngine in 4.6.0 that made + installTranslatorFunctions() not work with custom global object. QtXml ----- - - [QTBUG-8398] QDom: prevent infinite loop when cloning a DTD + - [QTBUG-8398] QDom: prevent infinite loop when cloning a DTD. QtXmlPatterns ------------- -- [QTBUG-8920] fixed crash with anonymous types in XsdSchemaChecker -- [QTBUG-8394] include/import/redefine schemas only once -- QXmlSchema: fix crash with referencing elements - -Qt Plugins ----------- - - - foo - * bar - -Examples & demos ----------------- - - Added exit softkey to Wiggly example - - Added close button to Anomaly demo - - [QTBUG-10635]: Fixed Anomaly demo controlstrip icon placement for very - small screens - - - -Third party components ----------------------- - - - Updated foo to version 2.3.9. - - - Updated bar to the latest version from baz.org. - -Demos ------ - - - QtMultimedia - * Spectrum analyzer application - + - [QTBUG-8920] fixed crash with anonymous types in XsdSchemaChecker. + - [QTBUG-8394] include/import/redefine schemas only once. + - QXmlSchema: fix crash with referencing elements. **************************************************************************** * Platform Specific Changes * **************************************************************************** -Qt for Unix (X11 and Mac OS X) ------------------------------- - - - - Qt for Linux/X11 ---------------- @@ -272,26 +224,10 @@ Qt for Windows - [QTBUG-6007] On Windows we query if there is a touch screen and do not try to enable gestures otherwise. - QLocalSocket - * [QTBUG-7815] Pipe handle leak fixed, when closing a QLocalSocket that still has - unwritten data. + * [QTBUG-7815] Pipe handle leak fixed, when closing a QLocalSocket that + still has unwritten data. * [QTBUG-9681] Fixed closing state for local sockets with unwritten data. - * [QTBUG-8418] Detection of Windows mobile 6.5 fixed. - - -Qt for Mac OS X ---------------- - - - - -Qt for Embedded Linux ---------------------- - - - - -DirectFB --------- - - - + * [QTBUG-8418] Detection of Windows Mobile 6.5 fixed. Qt for Windows CE ----------------- @@ -303,36 +239,34 @@ Qt for Windows CE - QWindowsMobileStyle * [QTBUG-8419] Huge performance penalty for QTabWidget fixed for - Windows mobile 6.5. + Windows Mobile 6.5. * [QTBUG-8757] QTabBar scroll button size has been fixed. - Qt for Symbian -------------- - - multimedia - * [QT-567] Implementation of QtMultimedia QAudio* APIs + - Multimedia + * [QT-567] Implementation of QtMultimedia QAudio* APIs. * [QTBUG-8919] Modified Phonon MMF backend to support video playback on platforms which use graphics surfaces (i.e. platforms using the - New Graphics Architecture a.k.a. ScreenPlay) + New Graphics Architecture a.k.a. ScreenPlay). - mkspecs - * Changed pkg_prerules to not use default_deployment for vendor ID - * Added forwarding headers for qplatformdefs.h in Symbian mkspecs - * Added some missing IBY export paths to platform_path.prf - * Fixed libstdcpp.dll version autodetection for Symbian + * Changed pkg_prerules to not use default_deployment for vendor ID. + * Added forwarding headers for qplatformdefs.h in Symbian mkspecs. + * Added some missing IBY export paths to platform_path.prf. + * Fixed libstdcpp.dll version autodetection for Symbian. * [QTBUG-7836]: Removed unnecessary dependency to moc.exe from Symbian builds. - * [QT-1171]: Fixed libstdcpp.dll version autodetection - * [QTBUG-8513]: Fixed misc FLM issues - * [QT-2909]: Support for adding conditional MMP_RULES - * [QT-3253]: Export .flm files always if they are different + * [QT-1171]: Fixed libstdcpp.dll version autodetection. + * [QTBUG-8513]: Fixed misc FLM issues. + * [QT-2909]: Support for adding conditional MMP_RULES. + * [QT-3253]: Export .flm files always if they are different. * [QTBUG-9279]: Made it possible to define more than one language using - pkg_prerules - * [QTBUG-6795]: Made sure target path exists in - qmake_extra_pre_targetdep.flm + pkg_prerules. + * [QTBUG-6795]: Made sure target path exists in qmake_extra_pre_targetdep.flm. * [QTBUG-7883]: Only use unix-like tools when not building for Symbian - in Windows + in Windows. - configure * [QTBUG-7942]: Fix QT_BUILD_KEY for Symbian in Windows builds. @@ -341,67 +275,51 @@ Qt for Symbian made with Qt 4.6.2 or earlier version incompatible with Qt 4.6.3 and later. - * [QTBUG-9065]: Support for -qtlibinfix parameter in Symbian + * [QTBUG-9065]: Support for -qtlibinfix parameter in Symbian. - qmake * Changed canonical paths to absolute paths in symmake. * Basic deployment support for ROM in Symbian. - * Add '.' dir as the first include directory in Symbian - * [QT-3017]: Support for conditional subdirs - * [QT-3083]: Expanded support for RSS_RULES - * [QTBUG-8685]: RVCT 4 support to Symbian builds - * [QT-3147]: Changed Symbian pkg files to deploy from under epoc32 + * Add '.' dir as the first include directory in Symbian. + * [QT-3017]: Support for conditional subdirs. + * [QT-3083]: Expanded support for RSS_RULES. + * [QTBUG-8685]: RVCT 4 support to Symbian builds. + * [QT-3147]: Changed Symbian pkg files to deploy from under epoc32. * [QT-2985]: Fix extensions section in bld.inf when CONFIG contains - symbian_test + symbian_test. - S60installs - * Export qtdemoapps.iby to proper location - * [QT-3163]: Removed QtDeclarative.dll deployment from qt.iby + * Export qtdemoapps.iby to proper location. + * [QT-3163]: Removed QtDeclarative.dll deployment from qt.iby. - QProcess * [QTBUG-7735]: Fixed crash at application exit when QProcess was used in - Symbian + Symbian. * [QTBUG-8906]: Removed extra space from the command line passed to - QProcess in Symbian + QProcess in Symbian. - QtGui - * QUnixPrintWidget is no longer declared in Symbian - * [QTBUG-10207]: Fixed long menu item texts causing crash + * QUnixPrintWidget is no longer declared in Symbian. + * [QTBUG-10207]: Fixed long menu item texts causing crash. - Examples & demos: - * Enabled more examples by default in Symbian builds + * Enabled more examples by default in Symbian builds. - Documentation - * [QTBUG-9277]: Clarified pkg_prerules usage documentation + * [QTBUG-9277]: Clarified pkg_prerules usage documentation. - Plugins: * Fixed sqlite3_v9.2.zip to export sqlite3.iby to correct location. - General * [QT-3055]: Fixed filename cases to support building Qt for Symbian in - Linux + Linux. **************************************************************************** * Tools * **************************************************************************** - - Designer - * foo - - - qdoc3 - * bar - - - Linguist - * baz - - qmake * Fixed qmake.pro for using with mingw - -**************************************************************************** -* Important Behavior Changes * -**************************************************************************** - - - - -- cgit v0.12 From 1829a8e4ef69ba7c155b72bc9c5622a864265891 Mon Sep 17 00:00:00 2001 From: Sami Merila Date: Wed, 26 May 2010 11:34:14 +0300 Subject: My 4.6.3 changes --- dist/changes-4.6.3 | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/dist/changes-4.6.3 b/dist/changes-4.6.3 index 6ac0c7e..a332580 100644 --- a/dist/changes-4.6.3 +++ b/dist/changes-4.6.3 @@ -301,6 +301,51 @@ Qt for Symbian - QtGui * QUnixPrintWidget is no longer declared in Symbian. * [QTBUG-10207]: Fixed long menu item texts causing crash. + * [QTBUG-9910] Fixed incorrect dialog position when native AVKON combined + status-and-control pane is in use. + * [QTBUG-4875] Made QMessageBox match size with native Symbian messageBox. + * [QTBUG-5539] Fixed QMessageBox to stretch to screen width with very small + content. + * [QTBUG-7828] Fixed Virtual keyboard closing issue with Sym^3. + * [QTBUG-9480] Use focus widget palette colors to show T9 suggested or + autocompletion words in QCoeFepInputContext. + * [QTBUG-10006] Changed default supported text modes to all, instead of just + lower and upper cases in QCoeFepInputContext. + * [QT-3277] Support text selection in QCoeFepInputContext for Sym^3. + * [QT-3008] Fixed crash in QGraphicsScenePrivate::setFocusItemHelper. + + - QS60Style + * [QTBUG-10697] Support native-like selection in item views. + * [QTBUG-10454] Made styled sliders match in size to native sliders. + * [QTBUG-10073] Fixed QMenu with a lot of menu items. + * [QTBUG-3102] Fixed QTabWidget icon size issue. + * [QTBUG-5001] Show combobox list as a popup instead of dropdown list. + * [QTBUG-7258] Fixed calculations of PM_FocusFrameVMargin and + PM_FocusFrameHMargin pixel metrics. + * [QTBUG-7996] Fixed squeezed scrollbar handle and groove ends. + * [QTBUG-8193] Fixed drag-n-drop drop area drawing issue. + * [QTBUG-8194] Removed scrollbar context menu support. + * [QTBUG-8704] Fixed palette issues when drawing highlighted text. + * [QTBUG-9212] Fixed itemview multiselection issues. + * [QTBUG-9321] Fixed very large spinboxes drawing issues. + * [QTBUG-9837] Fixed text cutting issues with narrow QComboBoxes. + * [QTBUG-9844] Fixed QTreeView branch drawing issues in right to left + UI layout. + * [QTBUG-9927] Fixed transparent list higlight to show up correctly for + S60 3rd edition FP1 devices. + * [QTBUG-10064] Removed focus frame drawing for context menus and popups. + * [QTBUG-10487] Fixed QToolButton to be drawn pressed when context menu + for that button is open. + * [QTBUG-10549] Fixed style to honor stylesheet when drawing focus frame + for QPushButtons. + * [QT-3295] Made QMenu to look more native-like. + * [QT-3185] Fixed border frames to be drawn transparent for Sym^3 devices. + * [QT-3148] Draw application background correctly when animated wallpaper + is used in Sym^3 device. + * [QT-3137] Launch virtual keyboard with single tap. + * [QT-3104] Re-locate QTabWidget's scrollbuttons to either side of widget. + * [QT-2179] Fixed QPushButton with text and QPushButton with standard icon + to be of same size. - Examples & demos: * Enabled more examples by default in Symbian builds. -- cgit v0.12 From 058fa44c7aba859c3383f912da4f976c896f921d Mon Sep 17 00:00:00 2001 From: David Faure Date: Wed, 26 May 2010 11:43:39 +0200 Subject: Update the state of the keyboard modifiers on drop events. In the case of drag-n-drop between processes we do not get key events for the pressed modifiers, so we need to update the state of the modifiers (using XQueryPointer) to get a correct value of QApplication::keyboardModifiers() and QDropEvent::keyboardModifiers() at drop time. This is necessary for fixing KDE bug 178679. Merge-request: 590 Reviewed-by: Bradley T. Hughes Reviewed-by: Andreas Aardal Hanssen --- src/gui/kernel/qdnd_x11.cpp | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/src/gui/kernel/qdnd_x11.cpp b/src/gui/kernel/qdnd_x11.cpp index 2b12317..92dd0a1 100644 --- a/src/gui/kernel/qdnd_x11.cpp +++ b/src/gui/kernel/qdnd_x11.cpp @@ -64,6 +64,7 @@ #include "qtextcodec.h" #include "qdnd_p.h" +#include "qapplication_p.h" #include "qt_x11_p.h" #include "qx11info_x11.h" @@ -1111,7 +1112,20 @@ void qt_xdnd_send_leave() waiting_for_status = false; } - +// TODO: remove and use QApplication::currentKeyboardModifiers() in Qt 4.8. +static Qt::KeyboardModifiers currentKeyboardModifiers() +{ + Window root; + Window child; + int root_x, root_y, win_x, win_y; + uint keybstate; + for (int i = 0; i < ScreenCount(X11->display); ++i) { + if (XQueryPointer(X11->display, QX11Info::appRootWindow(i), &root, &child, + &root_x, &root_y, &win_x, &win_y, &keybstate)) + return X11->translateModifiers(keybstate & 0x00ff); + } + return 0; +} void QX11Data::xdndHandleDrop(QWidget *, const XEvent * xe, bool passive) { @@ -1159,6 +1173,11 @@ void QX11Data::xdndHandleDrop(QWidget *, const XEvent * xe, bool passive) if (!dropData) dropData = (manager->object) ? manager->dragPrivate()->data : manager->dropData; + // Drop coming from another app? Update keyboard modifiers. + if (!qt_xdnd_dragging) { + QApplicationPrivate::modifier_buttons = currentKeyboardModifiers(); + } + QDropEvent de(qt_xdnd_current_position, possible_actions, dropData, QApplication::mouseButtons(), QApplication::keyboardModifiers()); QApplication::sendEvent(qt_xdnd_current_widget, &de); -- cgit v0.12 From e0dc3b88abc9c4bcd6c3710c458c4948e5b8a912 Mon Sep 17 00:00:00 2001 From: Jakub Wieczorek Date: Wed, 26 May 2010 11:50:57 +0200 Subject: QXmlStreamWriter: Auto-formatting does not behave properly with processing instructions. When writing a processing instruction with auto-formatting enabled, it should put it in a new line for readability and apply the indentation properly. Merge-request: 620 Reviewed-by: Olivier Goffart --- src/corelib/xml/qxmlstream.cpp | 3 ++- tests/auto/qxmlstream/tst_qxmlstream.cpp | 17 +++++++++++++++++ 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/src/corelib/xml/qxmlstream.cpp b/src/corelib/xml/qxmlstream.cpp index 1bf00b8..ae12007 100644 --- a/src/corelib/xml/qxmlstream.cpp +++ b/src/corelib/xml/qxmlstream.cpp @@ -3716,7 +3716,8 @@ void QXmlStreamWriter::writeProcessingInstruction(const QString &target, const Q { Q_D(QXmlStreamWriter); Q_ASSERT(!data.contains(QLatin1String("?>"))); - d->finishStartElement(); + if (!d->finishStartElement(false) && d->autoFormatting) + d->indent(d->tagStack.size()); d->write("write(target); if (!data.isNull()) { diff --git a/tests/auto/qxmlstream/tst_qxmlstream.cpp b/tests/auto/qxmlstream/tst_qxmlstream.cpp index 3c5358c..f93d4fc 100644 --- a/tests/auto/qxmlstream/tst_qxmlstream.cpp +++ b/tests/auto/qxmlstream/tst_qxmlstream.cpp @@ -546,6 +546,7 @@ private slots: void writerHangs() const; void writerAutoFormattingWithComments() const; void writerAutoFormattingWithTabs() const; + void writerAutoFormattingWithProcessingInstructions() const; void writerAutoEmptyTags() const; void writeAttributesWithSpace() const; void addExtraNamespaceDeclarations(); @@ -1030,6 +1031,22 @@ void tst_QXmlStream::writerAutoFormattingWithTabs() const QCOMPARE(buffer.buffer().data(), str); } +void tst_QXmlStream::writerAutoFormattingWithProcessingInstructions() const +{ + QBuffer buffer; + buffer.open(QIODevice::WriteOnly); + + QXmlStreamWriter writer(&buffer); + writer.setAutoFormatting(true); + writer.writeStartDocument(); + writer.writeProcessingInstruction("B", "C"); + writer.writeStartElement("A"); + writer.writeEndElement(); + writer.writeEndDocument(); + const char *str = "\n\n\n"; + QCOMPARE(buffer.buffer().data(), str); +} + /*! Task 204822 */ -- cgit v0.12 From 2eedb392048fdebbb29615345ea3716cebabd451 Mon Sep 17 00:00:00 2001 From: Olivier Goffart Date: Wed, 26 May 2010 11:59:48 +0200 Subject: tst_qxmlstream: fix in shadowbuild --- tests/auto/qxmlstream/qxmlstream.pro | 5 ++++- tests/auto/qxmlstream/tst_qxmlstream.cpp | 9 ++++----- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/tests/auto/qxmlstream/qxmlstream.pro b/tests/auto/qxmlstream/qxmlstream.pro index ac03d42..f82a7b3 100644 --- a/tests/auto/qxmlstream/qxmlstream.pro +++ b/tests/auto/qxmlstream/qxmlstream.pro @@ -1,5 +1,5 @@ load(qttest_p4) -SOURCES += tst_qxmlstream.cpp +SOURCES += tst_qxmlstream.cpp QT = core xml network @@ -8,4 +8,7 @@ wince*|symbian*: { addFiles.sources = data XML-Test-Suite addFiles.path = . DEPLOYMENT += addFiles + DEFINES += SRCDIR=\\\"\\\" +} else { + DEFINES += SRCDIR=\\\"$$PWD/\\\" } diff --git a/tests/auto/qxmlstream/tst_qxmlstream.cpp b/tests/auto/qxmlstream/tst_qxmlstream.cpp index f93d4fc..7d5e3b7 100644 --- a/tests/auto/qxmlstream/tst_qxmlstream.cpp +++ b/tests/auto/qxmlstream/tst_qxmlstream.cpp @@ -57,7 +57,7 @@ Q_DECLARE_METATYPE(QXmlStreamReader::ReadElementTextBehaviour) -static const char *const catalogFile = "XML-Test-Suite/xmlconf/finalCatalog.xml"; +static const char *const catalogFile = SRCDIR "XML-Test-Suite/xmlconf/finalCatalog.xml"; static const int expectedRunCount = 1646; static const int expectedSkipCount = 532; @@ -527,8 +527,7 @@ class tst_QXmlStream: public QObject { Q_OBJECT public: - tst_QXmlStream() : m_handler(QUrl::fromLocalFile(QDir::currentPath() + QLatin1Char('/')) - .resolved(QUrl(QLatin1String(catalogFile)))) + tst_QXmlStream() : m_handler(QUrl::fromLocalFile(QLatin1String(catalogFile))) { } @@ -806,7 +805,7 @@ void tst_QXmlStream::testReader_data() const QTest::addColumn("xml"); QTest::addColumn("ref"); QDir dir; - dir.cd("data/"); + dir.cd(SRCDIR "data/"); foreach(QString filename , dir.entryList(QStringList() << "*.xml")) { QString reference = QFileInfo(filename).baseName() + ".ref"; QTest::newRow(dir.filePath(filename).toLatin1().data()) << dir.filePath(filename) << dir.filePath(reference); @@ -1201,7 +1200,7 @@ void tst_QXmlStream::crashInUTF16Codec() const QEventLoop eventLoop; QNetworkAccessManager networkManager; - QNetworkRequest request(QUrl::fromLocalFile(QLatin1String("data/051reduced.xml"))); + QNetworkRequest request(QUrl::fromLocalFile(QLatin1String(SRCDIR "data/051reduced.xml"))); QNetworkReply *const reply = networkManager.get(request); eventLoop.connect(reply, SIGNAL(finished()), SLOT(quit())); -- cgit v0.12 From f777fccd2db2d2dccd32fe42d0a0cd5c65c6347c Mon Sep 17 00:00:00 2001 From: Alan Alpert Date: Wed, 26 May 2010 12:09:53 +0200 Subject: Improve gradient docs --- src/declarative/graphicsitems/qdeclarativerectangle.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/declarative/graphicsitems/qdeclarativerectangle.cpp b/src/declarative/graphicsitems/qdeclarativerectangle.cpp index 4f7a722..301ca00 100644 --- a/src/declarative/graphicsitems/qdeclarativerectangle.cpp +++ b/src/declarative/graphicsitems/qdeclarativerectangle.cpp @@ -116,6 +116,10 @@ void QDeclarativeGradientStop::updateGradient() \snippet doc/src/snippets/declarative/gradient.qml code + Note that this item is not a visual representation of a gradient. To display a + gradient use a visual item (like rectangle) which supports having a gradient set + on it for display. + \sa GradientStop */ -- cgit v0.12 From fb9a87d80a3a1418195ae3c5258d894d9217e83b Mon Sep 17 00:00:00 2001 From: Gareth Stockwell Date: Wed, 26 May 2010 11:50:53 +0100 Subject: Added missing PlatSec capabilities to spectrum demo DLL On Symbian, spectrum.exe has UserEnvironment capability in order to allow it to use QAudioInput. This means that the capabilities of any DLL which it loads must include UserEnvironment. Prior to this patch, fftreal.dll was built without any capabilities, causing startup of the application to fail. Although granting only UserEnvironment to fftreal.dll would fix the bug, the usual pattern on Symbian OS is to grant 'all -tcb' capabilities to DLLs. The capabilities with which the DLL actually runs are inherited from its parent process. Task-number: QTBUG-10964 Reviewed-by: Liang Qi --- demos/spectrum/3rdparty/fftreal/fftreal.pro | 1 + 1 file changed, 1 insertion(+) diff --git a/demos/spectrum/3rdparty/fftreal/fftreal.pro b/demos/spectrum/3rdparty/fftreal/fftreal.pro index 5dd02a4..75b5519 100644 --- a/demos/spectrum/3rdparty/fftreal/fftreal.pro +++ b/demos/spectrum/3rdparty/fftreal/fftreal.pro @@ -30,6 +30,7 @@ DEFINES += FFTREAL_LIBRARY symbian { # Provide unique ID for the generated binary, required by Symbian OS TARGET.UID3 = 0xA000E3FB + TARGET.CAPABILITY = All -Tcb } else { macx { CONFIG += lib_bundle -- cgit v0.12 From f835a5bcdd75ed8d18dac4de3e68983725c7ea83 Mon Sep 17 00:00:00 2001 From: Andreas Aardal Hanssen Date: Wed, 26 May 2010 13:09:49 +0200 Subject: Make test work with shadow builds again. Broken by 0cdf33e9acb00b8f3654e8268253a3fb7c5db92c, which assumes the binary and sources are in the same directory. The fix reverts the code back to how it was in 4.5 (where it still works with shadow builds). Reviewed-by: Denis Dzyubenko --- tests/auto/qtipc/qsharedmemory/tst_qsharedmemory.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/auto/qtipc/qsharedmemory/tst_qsharedmemory.cpp b/tests/auto/qtipc/qsharedmemory/tst_qsharedmemory.cpp index dac631b..1f65ae7 100644 --- a/tests/auto/qtipc/qsharedmemory/tst_qsharedmemory.cpp +++ b/tests/auto/qtipc/qsharedmemory/tst_qsharedmemory.cpp @@ -56,7 +56,7 @@ #elif defined(Q_OS_WINCE) #define LACKEYDIR SRCDIR #else -#define LACKEYDIR SRCDIR "../lackey" +#define LACKEYDIR "../lackey" #endif Q_DECLARE_METATYPE(QSharedMemory::SharedMemoryError) @@ -421,7 +421,7 @@ void tst_QSharedMemory::readOnly() QString program = LACKEYDIR "/lackey"; QStringList arguments; rememberKey("readonly_segfault"); - arguments << LACKEYDIR "/scripts/readonly_segfault.js"; + arguments << SRCDIR "../lackey/scripts/readonly_segfault.js"; // ### on windows disable the popup somehow QProcess p; @@ -734,7 +734,7 @@ void tst_QSharedMemory::simpleProcessProducerConsumer() rememberKey("market"); - QStringList arguments = QStringList() << LACKEYDIR "/scripts/producer.js"; + QStringList arguments = QStringList() << SRCDIR "../lackey/scripts/producer.js"; QProcess producer; producer.setProcessChannelMode(QProcess::ForwardedChannels); producer.start( LACKEYDIR "/lackey", arguments); @@ -744,7 +744,7 @@ void tst_QSharedMemory::simpleProcessProducerConsumer() QList consumers; unsigned int failedProcesses = 0; for (int i = 0; i < processes; ++i) { - QStringList arguments = QStringList() << LACKEYDIR "/scripts/consumer.js"; + QStringList arguments = QStringList() << SRCDIR "../lackey/scripts/consumer.js"; QProcess *p = new QProcess; p->setProcessChannelMode(QProcess::ForwardedChannels); #ifdef Q_OS_WINCE -- cgit v0.12 From ccc37850ddedba6f70b02919074097b3a716a243 Mon Sep 17 00:00:00 2001 From: Martin Smith Date: Wed, 26 May 2010 13:49:44 +0200 Subject: qdoc: Improved the address book tutorial I think this is not the final solution, but I need to decide how to handle \example commands. --- doc/src/getting-started/examples.qdoc | 2 +- doc/src/tutorials/addressbook.qdoc | 235 +++++++++++++++----------------- doc/src/tutorials/widgets-tutorial.qdoc | 2 +- 3 files changed, 112 insertions(+), 127 deletions(-) diff --git a/doc/src/getting-started/examples.qdoc b/doc/src/getting-started/examples.qdoc index a3393dd..643e42b 100644 --- a/doc/src/getting-started/examples.qdoc +++ b/doc/src/getting-started/examples.qdoc @@ -560,7 +560,7 @@ \page examples-multimedia.html \ingroup all-examples \title Multimedia Examples - \brief Accessing audio support from Qt + \brief Audio, video, and Phonon with Qt \image phonon-examples.png diff --git a/doc/src/tutorials/addressbook.qdoc b/doc/src/tutorials/addressbook.qdoc index 04410eb..e5cb448a 100644 --- a/doc/src/tutorials/addressbook.qdoc +++ b/doc/src/tutorials/addressbook.qdoc @@ -42,15 +42,11 @@ /*! \page tutorials-addressbook.html - \startpage {index.html}{Qt Reference Documentation} - \contentspage Tutorials - \nextpage {tutorials/addressbook/part1}{Chapter 1} - \title Address Book Tutorial \brief An introduction to GUI programming, showing how to put together a simple yet fully-functioning application. - This tutorial gives an introduction to GUI programming using the Qt + This tutorial is an introduction to GUI programming with the Qt cross-platform framework. \image addressbook-tutorial-screenshot.png @@ -61,8 +57,8 @@ Some commonly used features are never used in this tutorial. \endomit - In the process, we will learn about some basic technologies provided by Qt, - such as + In this tutorial, you will learn about some of the basic + components of Qt, including: \list \o Widgets and layout managers @@ -71,13 +67,9 @@ \o Input and output devices \endlist - If you are completely new to Qt, please read \l{How to Learn Qt} if you - have not already done so. - - The tutorial's source code is located in Qt's \c examples/tutorials/addressbook - directory. + If you are new to Qt, we recommend reading \l{How to Learn Qt} first. - Tutorial chapters: + Tutorial contents: \list 1 \o \l{tutorials/addressbook/part1}{Designing the User Interface} @@ -89,28 +81,30 @@ \o \l{tutorials/addressbook/part7}{Additional Features} \endlist - Although this little application does not look much like a fully-fledged - modern GUI application, it uses many of the basic techniques that are used - in more complex applications. After you have worked through it, we - recommend checking out the \l{mainwindows/application}{Application} - example, which presents a small GUI application, with menus, toolbars, a - status bar, and so on. + The tutorial source code is located in \c{examples/tutorials/addressbook}. + + Although this little application does not look much like a + fully-fledged modern GUI application, it uses many of the basic + elements that are used in more complex applications. After you + have worked through this tutorial, we recommend reading the + \l{mainwindows/application}{Application} example, which presents a + small GUI application, with menus, toolbars, a status bar, and so + on. */ /*! \page tutorials-addressbook-part1.html - \contentspage {Address Book Tutorial}{Contents} - \nextpage {tutorials/addressbook/part2}{Chapter 2} + \example tutorials/addressbook/part1 - \title Address Book 1 - Designing the User Interface + \title Part 1 - Designing the User Interface - The first part of this tutorial covers the design of the basic graphical - user interface (GUI) we use for the Address Book application. + This first part covers the design of the basic graphical user + interface (GUI) for our address book application. - The first step to creating a GUI program is to design the user interface. - In this chapter, our goal is to set up the labels and input fields needed - to implement a basic address book application. The figure below is a - screenshot of our expected output. + The first step in creating a GUI program is to design the user + interface. Here the our goal is to set up the labels and input + fields to implement a basic address book. The figure below is a + screenshot of the expected output. \image addressbook-tutorial-part1-screenshot.png @@ -169,14 +163,15 @@ \snippet tutorials/addressbook/part1/addressbook.h class definition - The class holds declarations of \c nameLine and \c addressText, the - private instances of QLineEdit and QTextEdit mentioned earlier. - You will see, in the coming chapters, that data stored in \c nameLine and - \c addressText is needed for many of the address book's functions. + The class holds declarations of \c nameLine and \c addressText, + the private instances of QLineEdit and QTextEdit mentioned + earlier. The data stored in \c nameLine and \c addressText will + be needed for many of the address book functions. - We do not need to include declarations of the QLabel objects we will use - because we will not need to reference them once they have been created. - The way Qt tracks the ownership of objects is explained in the next section. + We don't include declarations of the QLabel objects we will use + because we will not need to reference them once they have been + created. The way Qt tracks the ownership of objects is explained + in the next section. The Q_OBJECT macro itself implements some of the more advanced features of Qt. For now, it is useful to think of the Q_OBJECT macro as a shortcut which allows @@ -195,15 +190,14 @@ \snippet tutorials/addressbook/part1/addressbook.cpp constructor and input fields - Within this constructor, we declare and instantiate two local QLabel objects, - \c nameLabel and \c addressLabel, as well as instantiate \c nameLine and - \c addressText. The - \l{QObject::tr()}{tr()} function returns a translated version of the - string, if there is one available; otherwise, it returns the string itself. - Think of this function as an \c{} marker to mark - QString objects for translation. You will notice, in the coming chapters as - well as in the \l{Qt Examples}, that we include it whenever we use a - translatable string. + In this constructor, the QLabel objects \c nameLabel and \c + addressLabel are instantiated, as well as \c nameLine and \c + addressText. The \l{QObject::tr()}{tr()} function returns a + translated version of the string, if there is one + available. Otherwise it returns the string itself. This function + marks its QString parameter as one that should be translated into + other languages. It should be used wherever a translatable string + appears. When programming with Qt, it is useful to know how layouts work. Qt provides three main layout classes: QHBoxLayout, QVBoxLayout @@ -254,14 +248,12 @@ /*! \page tutorials-addressbook-part2.html - \previouspage Address Book 1 - Designing the User Interface - \contentspage {Address Book Tutorial}{Contents} - \nextpage {tutorials/addressbook/part3}{Chapter 3} + \example tutorials/addressbook/part2 - \title Address Book 2 - Adding Addresses + \title Part 2 - Adding Addresses - The next step to creating our basic address book application is to allow - a little bit of user interaction. + The next step in creating the address book is to implement some + user interactions. \image addressbook-tutorial-part2-add-contact.png @@ -283,9 +275,9 @@ However, for an overview of Qt's signals and slots concept, you can refer to the \l{Signals and Slots} document. - Three QPushButton objects: \c addButton, \c submitButton and - \c cancelButton, are now included in our private variable declarations, - along with \c nameLine and \c addressText from the last chapter. + Three QPushButton objects (\c addButton, \c submitButton, and + \c cancelButton) are now included in our private variable declarations, + along with \c nameLine and \c addressText. \snippet tutorials/addressbook/part2/addressbook.h pushbutton declaration @@ -407,20 +399,20 @@ /*! \page tutorials-addressbook-part3.html - \previouspage Address Book 2 - Adding Addresses - \contentspage {Address Book Tutorial}{Contents} - \nextpage {tutorials/addressbook/part4}{Chapter 4} + \example tutorials/addressbook/part3 - \title Address Book 3 - Navigating between Entries + \title Part 3 - Navigating between Entries - The address book application is now half complete. We need to add some - functions to navigate between contacts. But first, we have to decide - what sort of a data structure we would like to use to hold these contacts. + The address book is now about half complete. We should add the + capability to navigate among the contacts, but first we must + decide what sort of a data structure we need for containing these + contacts. - In Chapter 2, we used a QMap of key-value pairs with the contact's name - as the \e key, and the contact's address as the \e value. This works well - for our case. However, in order to navigate and display each entry, a - little bit of enhancement is needed. + In the previous section, we used a QMap of key-value pairs with + the contact's name as the \e key, and the contact's address as the + \e value. This works well for our case. However, in order to + navigate and display each entry, a little bit of enhancement is + needed. We enhance the QMap by making it replicate a data structure similar to a circularly-linked list, where all elements are connected, including the @@ -431,9 +423,9 @@ \section1 Defining the AddressBook Class - In order to add navigation functions to the address book application, we - need to add two more slots to our \c AddressBook class: \c next() and - \c previous(). These are added to our \c addressbook.h file: + To add navigation functions to the address book, we must add two + more slots to the \c AddressBook class: \c next() and \c + previous() to the \c addressbook.h file: \snippet tutorials/addressbook/part3/addressbook.h navigation functions @@ -455,8 +447,7 @@ \snippet tutorials/addressbook/part3/addressbook.cpp connecting navigation signals - The image below is our expected graphical user interface. Notice that it - is getting closer to our final application. + The image below is the expected graphical user interface. \image addressbook-tutorial-part3-screenshot.png @@ -525,27 +516,26 @@ /*! \page tutorials-addressbook-part4.html - \previouspage Address Book 3 - Navigating between Entries - \contentspage {Address Book Tutorial}{Contents} - \nextpage {tutorials/addressbook/part5}{Chapter 5} + \example tutorials/addressbook/part4 - \title Address Book 4 - Editing and Removing Addresses + \title Part 4 - Editing and Removing Addresses - In this chapter, we look at ways to modify the contents of contacts stored - in the address book application. + Now we look at ways to modify the contents of contacts stored in + the address book. \image addressbook-tutorial-screenshot.png - We now have an address book that not only holds contacts in an organized - manner, but also allows navigation. It would be convenient to include - edit and remove functions so that a contact's details can be changed - when needed. However, this requires a little improvement, in the form of - enums. In our previous chapters, we had two modes: \c{AddingMode} and - \c{NavigationMode} - but they were not defined as enums. Instead, we - enabled and disabled the corresponding buttons manually, resulting in - multiple lines of repeated code. + We now have an address book that not only holds contacts in an + organized manner, but also allows navigation. It would be + convenient to include edit and remove functions so that a + contact's details can be changed when needed. However, this + requires a little improvement, in the form of enums. We defined + two modes: \c{AddingMode} and \c{NavigationMode}, but they were + not defined as enum values. Instead, we enabled and disabled the + corresponding buttons manually, resulting in multiple lines of + repeated code. - In this chapter, we define the \c Mode enum with three different values: + Here we define the \c Mode enum with three different values: \list \o \c{NavigationMode}, @@ -579,10 +569,10 @@ \section1 Implementing the AddressBook Class - We now have to implement the mode-changing features of the address book - application. The \c editButton and \c removeButton are instantiated and - disabled by default, as the address book starts up with zero contacts in - memory. + We now implement the mode-changing features of the address + book. The \c editButton and \c removeButton are instantiated and + disabled by default. The address book starts with zero contacts + in memory. \snippet tutorials/addressbook/part4/addressbook.cpp edit and remove buttons @@ -653,33 +643,31 @@ \snippet tutorials/addressbook/part4/addressbook.cpp update interface() part 2 - By performing the task of setting the mode and updating the user interface in - the same function, we avoid the possibility of the user interface getting "out - of sync" with the internal state of the application. -*/ + By setting the mode and updating the user interface in the same + function, we avoid the possibility of the user interface getting + out of sync with the internal state of the application. + */ /*! \page tutorials-addressbook-part5.html - \previouspage Address Book 4 - Editing and Removing Addresses - \contentspage {Address Book Tutorial}{Contents} - \nextpage {tutorials/addressbook/part6}{Chapter 6} + \example tutorials/addressbook/part5 - \title Address Book 5 - Adding a Find Function + \title Part 5 - Adding a Find Function - In this chapter, we look at ways to locate contacts and addresses in - the address book application. + Here we look at ways to locate contacts and addresses in the + address book. \image addressbook-tutorial-part5-screenshot.png - As we keep adding contacts to our address book application, it becomes - tedious to navigate them with the \e Next and \e Previous buttons. In this - case, a \e Find function would be more efficient in looking up contacts. - The screenshot above shows the \e Find button and its position on the panel - of buttons. + As we add contacts to our address book, it becomes tedious to + navigate the list with the \e Next and \e Previous buttons. A \e + Find function would be more efficient. The screenshot above shows + the \e Find button and its position on the panel of buttons. - When the user clicks on the \e Find button, it is useful to display a - dialog that can prompt the user for a contact's name. Qt provides QDialog, - which we subclass in this chapter, to implement a \c FindDialog class. + When the user clicks on the \e Find button, it is useful to + display a dialog that prompts for a contact's name. Qt provides + QDialog, which we subclass here to implement a \c FindDialog + class. \section1 Defining the FindDialog Class @@ -806,20 +794,18 @@ /*! \page tutorials-addressbook-part6.html - \previouspage Address Book 5 - Adding a Find Function - \contentspage {Address Book Tutorial}{Contents} - \nextpage {tutorials/addressbook/part7}{Chapter 7} + \example tutorials/addressbook/part6 - \title Address Book 6 - Loading and Saving + \title Part 6 - Loading and Saving - This chapter covers the file handling features of Qt that we use to write - loading and saving routines for the address book application. + This part covers the Qt file handling features we use to write + loading and saving routines for the address book. \image addressbook-tutorial-part6-screenshot.png - Although browsing and searching for contacts are useful features, our - address book is not ready for use until we can save existing contacts and - load them again at a later time. + Although browsing and searching the contact list are useful + features, our address book is not complete until we can save + existing contacts and load them again at a later time. Qt provides a number of classes for \l{Input/Output and Networking} {input and output}, but we have chosen to use two which are simple to use @@ -930,21 +916,20 @@ /*! \page tutorials-addressbook-part7.html - \previouspage Address Book 6 - Loading and Saving - \contentspage {Address Book Tutorial}{Contents} + \example tutorials/addressbook/part7 - \title Address Book 7 - Additional Features + \title Part 7 - Additional Features - This chapter covers some additional features that make the address book - application more convenient for everyday use. + This part covers some additional features that make the address + book more convenient for the frequent user. \image addressbook-tutorial-part7-screenshot.png - Although our address book application is useful in its own right, it would - be useful if we could exchange contact data with other applications. - The vCard format is a popular file format that can be used for this purpose. - In this chapter, we extend our address book client to allow contacts to - be exported to vCard \c{.vcf} files. + Although our address book is useful in isolation, it would be + better if we could exchange contact data with other applications. + The vCard format is a popular file format that can be used for + this purpose. Here we extend our address book client to allow + contacts to be exported to vCard \c{.vcf} files. \section1 Defining the AddressBook Class diff --git a/doc/src/tutorials/widgets-tutorial.qdoc b/doc/src/tutorials/widgets-tutorial.qdoc index 0422e1a..2b5f8cc 100644 --- a/doc/src/tutorials/widgets-tutorial.qdoc +++ b/doc/src/tutorials/widgets-tutorial.qdoc @@ -102,7 +102,7 @@ \section1 Real world widget examples - In these \l{Widgets examples} {more advanced examples}, the code + In these \l{Widget examples} {more advanced examples}, the code that creates the widgets and layouts is stored in other files. For example, the GUI for a main window may be created in the constructor of a QMainWindow subclass. -- cgit v0.12 From 80dcdd160e5468e38558d2df570df38235b18e71 Mon Sep 17 00:00:00 2001 From: Gareth Stockwell Date: Wed, 26 May 2010 12:59:03 +0100 Subject: Removed unnecessary PlatSec capabilities from spectrum demo DLL Task-number: QTBUG-10964 Reviewed-by: Miikka Heikkinen --- demos/spectrum/3rdparty/fftreal/fftreal.pro | 2 +- demos/spectrum/app/app.pro | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/demos/spectrum/3rdparty/fftreal/fftreal.pro b/demos/spectrum/3rdparty/fftreal/fftreal.pro index 75b5519..8d9f46e 100644 --- a/demos/spectrum/3rdparty/fftreal/fftreal.pro +++ b/demos/spectrum/3rdparty/fftreal/fftreal.pro @@ -30,7 +30,7 @@ DEFINES += FFTREAL_LIBRARY symbian { # Provide unique ID for the generated binary, required by Symbian OS TARGET.UID3 = 0xA000E3FB - TARGET.CAPABILITY = All -Tcb + TARGET.CAPABILITY = UserEnvironment } else { macx { CONFIG += lib_bundle diff --git a/demos/spectrum/app/app.pro b/demos/spectrum/app/app.pro index 92398ac..db9a144 100644 --- a/demos/spectrum/app/app.pro +++ b/demos/spectrum/app/app.pro @@ -45,7 +45,7 @@ RESOURCES = spectrum.qrc symbian { # Platform security capability required to record audio on Symbian - TARGET.CAPABILITY += UserEnvironment + TARGET.CAPABILITY = UserEnvironment # Provide unique ID for the generated binary, required by Symbian OS TARGET.UID3 = 0xA000E3FA -- cgit v0.12 From 01483b3d921eea7c4e3c8fa159ab60a3ca32f1ee Mon Sep 17 00:00:00 2001 From: Martin Smith Date: Wed, 26 May 2010 14:18:31 +0200 Subject: qdoc: Fixed the French version of the address book tutorial --- doc/src/tutorials/addressbook-fr.qdoc | 30 +++++++----------------------- 1 file changed, 7 insertions(+), 23 deletions(-) diff --git a/doc/src/tutorials/addressbook-fr.qdoc b/doc/src/tutorials/addressbook-fr.qdoc index 98c44a3..85a9acf 100644 --- a/doc/src/tutorials/addressbook-fr.qdoc +++ b/doc/src/tutorials/addressbook-fr.qdoc @@ -42,10 +42,6 @@ /*! \page tutorials-addressbook-fr.html - \startpage {index.html}{Qt Reference Documentation} - \contentspage Tutorials - \nextpage {tutorials/addressbook-fr/part1}{Chapitre 1} - \title Tutoriel "Carnet d'adresses" \brief Une introduction à la programation d'interface graphique montrant comment construire une application simple avec Qt. @@ -93,8 +89,7 @@ /*! \page tutorials-addressbook-fr-part1.html - \contentspage {Tutoriel "Carnet d'adresses"}{Sommaire} - \nextpage {tutorials/addressbook-fr/part2}{Chapitre 2} + \example tutorials/addressbook-fr/part1 \title Carnet d'adresses 1 - Conception de l'interface utilisateur @@ -252,9 +247,7 @@ /*! \page tutorials-addressbook-fr-part2.html - \previouspage {tutorials/addressbook-fr/part1}{Chapitre 1} - \contentspage {Tutoriel "Carnet d'adresses"}{Sommaire} - \nextpage {tutorials/addressbook-fr/part3}{Chapitre 3} + \example tutorials/addressbook-fr/part2 \title Carnet d'adresses 2 - Ajouter des adresses @@ -414,9 +407,7 @@ /*! \page tutorials-addressbook-fr-part3.html - \previouspage {tutorials/addressbook-fr/part2}{Chapitre 2} - \contentspage {Tutoriel "Carnet d'adresses"}{Sommaire} - \nextpage {tutorials/addressbook-fr/part4}{Chapitre 4} + \example tutorials/addressbook-fr/part3 \title Carnet d'adresses 3 - Navigation entre les éléments @@ -536,9 +527,7 @@ /*! \page tutorials-addressbook-fr-part4.html - \previouspage {tutorials/addressbook-fr/part3}{Chapitre 3} - \contentspage {Tutoriel "Carnet d'adresses"}{Sommaire} - \nextpage {tutorials/addressbook-fr/part5}{Chapitre 5} + \example tutorials/addressbook-fr/part4 \title Carnet d'Adresses 4 - éditer et supprimer des adresses @@ -688,9 +677,7 @@ /*! \page tutorials-addressbook-fr-part5.html - \previouspage {tutorials/addressbook-fr/part4}{Chapitre 4} - \contentspage {Tutoriel "Carnet d'adresses"}{Sommaire} - \nextpage {tutorials/addressbook-fr/part6}{Chapitre 6} + \example tutorials/addressbook-fr/part5 \title Carnet d'adresse 5 - Ajout d'une fonction de recherche @@ -839,9 +826,7 @@ /*! \page tutorials-addressbook-part6.html - \previouspage {tutorials/addressbook-fr/part5}{Chapitre 5} - \contentspage {Tutoriel "Carnet d'adresses"}{Sommaire} - \nextpage {tutorials/addressbook-fr/part7}{Chapitre 7} + \example tutorials/addressbook-fr/part6 \title Carnet d'Adresses 6 - Sauvegarde et chargement @@ -978,8 +963,7 @@ /*! \page tutorials-addressbook-fr-part7.html - \previouspage {tutorials/addressbook-fr/part6}{Chapitre 6} - \contentspage {Tutoriel "Carnet d'adresses"}{Sommaire} + \example tutorials/addressbook-fr/part7 \title Carnet d'adresse 7 - Fonctionnalités avancées -- cgit v0.12 From 44e33b3c8d776b66b2122eb3757177dfbd7baa4c Mon Sep 17 00:00:00 2001 From: Carlos Manuel Duclos Vergara Date: Wed, 26 May 2010 14:29:40 +0200 Subject: qaccessibility::eventTest(...) was failing. The problem here is the fact that to test the mouse click the test depended on some "magical" coordinates which are not valid anymore. But since QTest::mouseClick(...) will target the center of the button, there is no need to calculate coordinates. Reviewed-by: Richard Moe Gustavsen --- tests/auto/qaccessibility/tst_qaccessibility.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/auto/qaccessibility/tst_qaccessibility.cpp b/tests/auto/qaccessibility/tst_qaccessibility.cpp index e5a332a..cea259c 100644 --- a/tests/auto/qaccessibility/tst_qaccessibility.cpp +++ b/tests/auto/qaccessibility/tst_qaccessibility.cpp @@ -475,7 +475,7 @@ void tst_QAccessibility::eventTest() QVERIFY_EVENT(button, 0, QAccessible::ObjectShow); button->setFocus(Qt::MouseFocusReason); QTestAccessibility::clearEvents(); - QTest::mouseClick(button, Qt::LeftButton, 0, QPoint(button->width()-7,button->height()-5)); + QTest::mouseClick(button, Qt::LeftButton, 0); QVERIFY_EVENT(button, 0, QAccessible::StateChanged); QVERIFY_EVENT(button, 0, QAccessible::StateChanged); -- cgit v0.12 From cf1e3150247d6694e8c00b924627c66e798f2382 Mon Sep 17 00:00:00 2001 From: Pierre Rossi Date: Tue, 6 Apr 2010 19:59:08 +0200 Subject: Fixes a proxymodel sorting odity. Sort order was modified when sorted according to an empty column always in the same order Reviewed-by: Thierry --- src/gui/itemviews/qsortfilterproxymodel.cpp | 2 +- .../tst_qsortfilterproxymodel.cpp | 36 ++++++++++++++++++++++ 2 files changed, 37 insertions(+), 1 deletion(-) diff --git a/src/gui/itemviews/qsortfilterproxymodel.cpp b/src/gui/itemviews/qsortfilterproxymodel.cpp index b12cd45..f9b6b94 100644 --- a/src/gui/itemviews/qsortfilterproxymodel.cpp +++ b/src/gui/itemviews/qsortfilterproxymodel.cpp @@ -2392,7 +2392,7 @@ bool QSortFilterProxyModel::lessThan(const QModelIndex &left, const QModelIndex QVariant r = (right.model() ? right.model()->data(right, d->sort_role) : QVariant()); switch (l.userType()) { case QVariant::Invalid: - return (r.type() == QVariant::Invalid); + return (r.type() != QVariant::Invalid); case QVariant::Int: return l.toInt() < r.toInt(); case QVariant::UInt: diff --git a/tests/auto/qsortfilterproxymodel/tst_qsortfilterproxymodel.cpp b/tests/auto/qsortfilterproxymodel/tst_qsortfilterproxymodel.cpp index 992c95e..53fefee 100644 --- a/tests/auto/qsortfilterproxymodel/tst_qsortfilterproxymodel.cpp +++ b/tests/auto/qsortfilterproxymodel/tst_qsortfilterproxymodel.cpp @@ -127,6 +127,8 @@ private slots: void sortColumnTracking1(); void sortColumnTracking2(); + void sortStable(); + void task236755_hiddenColumns(); void task247867_insertRowsSort(); void task248868_staticSorting(); @@ -2442,6 +2444,40 @@ void tst_QSortFilterProxyModel::sortColumnTracking2() QCOMPARE(proxyModel.data(proxyModel.index(strings.count()-1,0)).toString(),QString::fromLatin1("zz")); } +void tst_QSortFilterProxyModel::sortStable() +{ + QStandardItemModel* model = new QStandardItemModel(5, 2); + for (int r=0; r<5; r++) { + for (int c=0; c<2; c++) { + QStandardItem* item = new QStandardItem( + QString("Row:%0, Column:%1").arg(r).arg(c) ); + for( int i=0; i<3; i++ ) { + QStandardItem* child = new QStandardItem( + QString("Item %0").arg(i) ); + item->appendRow( child ); + } + model->setItem(r, c, item); + } + } + model->setHorizontalHeaderItem( 0, new QStandardItem( "Name" )); + model->setHorizontalHeaderItem( 1, new QStandardItem( "Value" ) ); + + + QSortFilterProxyModel *filterModel = new QSortFilterProxyModel(model); + filterModel->setSourceModel(model); + + QTreeView *view = new QTreeView; + view->setModel(filterModel); + QModelIndex firstRoot = filterModel->index(0,0); + view->expand(firstRoot); + view->setSortingEnabled(true); + + view->model()->sort(1, Qt::DescendingOrder); + QVariant lastItemData =filterModel->index(2,0, firstRoot).data(); + view->model()->sort(1, Qt::DescendingOrder); + QCOMPARE(lastItemData, filterModel->index(2,0, firstRoot).data()); +} + void tst_QSortFilterProxyModel::task236755_hiddenColumns() { class MyStandardItemModel : public QStandardItemModel -- cgit v0.12 From ad8047dbca22e2c3c8af3ec60ba97939abf91315 Mon Sep 17 00:00:00 2001 From: David Boddie Date: Wed, 26 May 2010 16:38:41 +0200 Subject: Doc: Corrected the documentation about the compression threshold. Reviewed-by: Trust Me --- doc/src/development/rcc.qdoc | 40 +++++++++++++++++++++------------------- 1 file changed, 21 insertions(+), 19 deletions(-) diff --git a/doc/src/development/rcc.qdoc b/doc/src/development/rcc.qdoc index 1541e11..999408b 100644 --- a/doc/src/development/rcc.qdoc +++ b/doc/src/development/rcc.qdoc @@ -60,28 +60,30 @@ \row \o \c{-o} \o \c{file} \o Write output to \c{file} rather than to stdout. \row \o \c{-name} \o \c{name} \o Create an external initialization - function with \c{name}. - - \row \o \c{-threshold} \o \c{level} \o Specifies a threshold \c{level} (in - bytes) to use when deciding whether - to compress a file. If the file is - smaller than the threshold \c{level}, - it is not compressed. The default - threshold level is 70 bytes. - + function with \c{name}. + + \row \o \c{-threshold} \o \c{level} \o Specifies a threshold \c{level} (as a + percentage) to use when deciding whether to compress + a file. If the reduction in the file size is greater than + the threshold \c{level}, it is compressed; otherwise, + the uncompressed data is stored instead. The default + threshold level is 70%, meaning that compressed files + which are 30% or less of their original size are + stored as compressed data. + \row \o \c{-compress} \o \c{level} \o Compress input files to the given - compression \c{level}, which is an - integer in the range 1 to 9. Level 1 - does the least compression but is - fastest. Level 9 does the most - compression but is slowest. To turn - off compression, use \c{-no-compress}. - The default value for \c{level} is -1, - which means use zlib's default - compression level. + compression \c{level}, which is an + integer in the range 1 to 9. Level 1 + does the least compression but is + fastest. Level 9 does the most + compression but is slowest. To turn + off compression, use \c{-no-compress}. + The default value for \c{level} is -1, + which means use zlib's default + compression level. \row \o \c{-root} \o \c{path} \o Prefix the resource access path with \c{path}. - The default is no prefix. + The default is no prefix. \row \o \c{-no-compress} \o \o Disable compression. -- cgit v0.12 From 11a8c52498e8dc74fdfef48e953055338c8f18d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Nilsen?= Date: Wed, 26 May 2010 15:53:06 +0200 Subject: Redraw issues when removing a fully transparent QGraphicsItem from the scene. This only happened with fully transparent ancestors (item's effectiveOpacity() == 0.0). Problem was that we didn't take into account the ancestors' opacity when removing an item from the scene. More specifically: The calculated effective opacity for the item was zero and we ignored update requests. We have to ignore the opacity if any of the ancestors' ignoreOpacity bit is 1, which means the opacity is set to 0 and the update request has not yet been processed. Auto test included. Task-number: QTBUG-10778 --- src/gui/graphicsview/qgraphicsscene.cpp | 18 ++++++++++ tests/auto/qgraphicsscene/tst_qgraphicsscene.cpp | 43 ++++++++++++++++++++++++ 2 files changed, 61 insertions(+) diff --git a/src/gui/graphicsview/qgraphicsscene.cpp b/src/gui/graphicsview/qgraphicsscene.cpp index ae0abf9..22c3f92 100644 --- a/src/gui/graphicsview/qgraphicsscene.cpp +++ b/src/gui/graphicsview/qgraphicsscene.cpp @@ -4889,6 +4889,24 @@ void QGraphicsScenePrivate::markDirty(QGraphicsItem *item, const QRectF &rect, b if (updateAll) return; + if (removingItemFromScene && !ignoreOpacity && !item->d_ptr->ignoreOpacity) { + // If any of the item's ancestors ignore opacity, it means that the opacity + // was set to 0 (and the update request has not yet been processed). That + // also means that we have to ignore the opacity for the item itself; otherwise + // things like: parent->setOpacity(0); scene->removeItem(child) won't work. + // Note that we only do this when removing items from the scene. In all other + // cases the ignoreOpacity bit propagates properly in processDirtyItems, but + // since the item is removed immediately it won't be processed there. + QGraphicsItem *p = item->d_ptr->parent; + while (p) { + if (p->d_ptr->ignoreOpacity) { + item->d_ptr->ignoreOpacity = true; + break; + } + p = p->d_ptr->parent; + } + } + if (item->d_ptr->discardUpdateRequest(/*ignoreVisibleBit=*/force, /*ignoreDirtyBit=*/removingItemFromScene || invalidateChildren, /*ignoreOpacity=*/ignoreOpacity)) { diff --git a/tests/auto/qgraphicsscene/tst_qgraphicsscene.cpp b/tests/auto/qgraphicsscene/tst_qgraphicsscene.cpp index a155222..67a41ca 100644 --- a/tests/auto/qgraphicsscene/tst_qgraphicsscene.cpp +++ b/tests/auto/qgraphicsscene/tst_qgraphicsscene.cpp @@ -275,6 +275,7 @@ private slots: void polishItems2(); void isActive(); void siblingIndexAlwaysValid(); + void removeFullyTransparentItem(); // task specific tests below me void task139710_bspTreeCrash(); @@ -4333,6 +4334,48 @@ void tst_QGraphicsScene::siblingIndexAlwaysValid() } +void tst_QGraphicsScene::removeFullyTransparentItem() +{ + QGraphicsScene scene; + + QGraphicsItem *parent = scene.addRect(0, 0, 100, 100); + parent->setFlag(QGraphicsItem::ItemHasNoContents); + + QGraphicsItem *child = scene.addRect(0, 0, 100, 100); + child->setParentItem(parent); + + CustomView view; + view.setScene(&scene); + view.show(); + QTest::qWaitForWindowShown(&view); + + // NB! The parent has the ItemHasNoContents flag set, which means + // the parent itself doesn't generate any update requests, only the + // child can possibly trigger an update. Also note that the child + // is removed before processing events. + view.repaints = 0; + parent->setOpacity(0); + QVERIFY(qFuzzyIsNull(child->effectiveOpacity())); + scene.removeItem(child); + QVERIFY(!scene.items().contains(child)); + QTRY_VERIFY(view.repaints > 0); + + // Re-add child. There's nothing new to display (child is still + // effectively hidden), so it shouldn't trigger an update. + view.repaints = 0; + child->setParentItem(parent); + QVERIFY(scene.items().contains(child)); + QVERIFY(qFuzzyIsNull(child->effectiveOpacity())); + QApplication::processEvents(); + QCOMPARE(view.repaints, 0); + + // Nothing is visible on the screen, removing child item shouldn't trigger an update. + scene.removeItem(child); + QApplication::processEvents(); + QCOMPARE(view.repaints, 0); + delete child; +} + void tst_QGraphicsScene::taskQTBUG_5904_crashWithDeviceCoordinateCache() { QGraphicsScene scene; -- cgit v0.12 From f1ba0329a90fe62a850e4b00bf3bd13011dbe4fa Mon Sep 17 00:00:00 2001 From: Alan Alpert Date: Wed, 26 May 2010 17:54:35 +0200 Subject: Add key event handling to the declarative web view This is a very simple approach, I don't know if a more nuanced system would be appropriate. Task-number: QTBUG-11025 --- src/imports/webkit/qdeclarativewebview.cpp | 21 ++++++++------------- 1 file changed, 8 insertions(+), 13 deletions(-) diff --git a/src/imports/webkit/qdeclarativewebview.cpp b/src/imports/webkit/qdeclarativewebview.cpp index 36a25f6..050e2b7 100644 --- a/src/imports/webkit/qdeclarativewebview.cpp +++ b/src/imports/webkit/qdeclarativewebview.cpp @@ -150,6 +150,9 @@ public: The item includes no scrolling, scaling, toolbars, etc., those must be implemented around WebView. See the WebBrowser example for a demonstration of this. + + When this item has keyboard focus, all keyboard input will be sent directly to the + web page within. */ /*! @@ -701,20 +704,12 @@ void QDeclarativeWebView::hoverMoveEvent (QGraphicsSceneHoverEvent * event) QDeclarativeItem::hoverMoveEvent(event); } -bool QDeclarativeWebView::sceneEvent(QEvent *event) -{ - if (event->type() == QEvent::KeyPress) { - QKeyEvent *k = static_cast(event); - if (k->key() == Qt::Key_Tab || k->key() == Qt::Key_Backtab) { - if (!(k->modifiers() & (Qt::ControlModifier | Qt::AltModifier))) { //### Add MetaModifier? - page()->event(event); - if (event->isAccepted()) - return true; - } - } - } +bool QDeclarativeWebView::sceneEvent(QEvent *event) +{ + if (event->type() == QEvent::KeyPress || event->type() == QEvent::KeyRelease)//Key events go to the page + return page()->event(event); return QDeclarativeItem::sceneEvent(event); -} +} /*! -- cgit v0.12 From c22dc63d5333c85afd167944675bfebec6b5c9a3 Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen Date: Wed, 26 May 2010 13:54:40 +0200 Subject: complain about unescaped backslashes --- qmake/project.cpp | 6 ++++++ qmake/project.h | 1 + 2 files changed, 7 insertions(+) diff --git a/qmake/project.cpp b/qmake/project.cpp index 2be68be..9cf6a6f 100644 --- a/qmake/project.cpp +++ b/qmake/project.cpp @@ -671,6 +671,7 @@ QMakeProject::reset() scope_blocks.push(ScopeBlock()); iterator = 0; function = 0; + backslashWarned = false; } bool @@ -2933,6 +2934,11 @@ QMakeProject::doVariableReplaceExpand(const QString &str, QMap Date: Wed, 26 May 2010 14:05:58 +0200 Subject: escape backslashes this makes windows-style path specs *ugly*. that's intentional. :-P --- demos/embedded/desktopservices/desktopservices.pro | 4 +-- examples/painting/svgviewer/svgviewer.pro | 6 ++-- examples/xml/dombookmarks/dombookmarks.pro | 2 +- examples/xml/saxbookmarks/saxbookmarks.pro | 2 +- mkspecs/common/symbian/symbian-makefile.conf | 2 +- mkspecs/common/wince/qmake.conf | 6 ++-- mkspecs/features/dbusadaptors.prf | 2 +- mkspecs/features/dbusinterfaces.prf | 2 +- mkspecs/features/incredibuild_xge.prf | 4 +-- mkspecs/features/lex.prf | 6 ++-- mkspecs/features/moc.prf | 6 ++-- mkspecs/features/sis_targets.prf | 2 +- mkspecs/features/symbian/add_mmp_rules.prf | 2 +- mkspecs/features/symbian/application_icon.prf | 4 +-- mkspecs/features/symbian/def_files.prf | 2 +- mkspecs/features/symbian/moc.prf | 6 ++-- mkspecs/features/symbian/symbian_building.prf | 14 ++++----- mkspecs/features/uic.prf | 8 ++--- mkspecs/features/win32/embed_manifest_dll.prf | 6 ++-- mkspecs/features/win32/embed_manifest_exe.prf | 6 ++-- mkspecs/features/win32/qaxserver.prf | 6 ++-- mkspecs/features/yacc.prf | 10 +++--- mkspecs/win32-borland/qmake.conf | 8 ++--- mkspecs/win32-icc/qmake.conf | 6 ++-- mkspecs/win32-msvc2003/qmake.conf | 6 ++-- mkspecs/win32-msvc2005/qmake.conf | 6 ++-- mkspecs/win32-msvc2008/qmake.conf | 6 ++-- mkspecs/win32-msvc2010/qmake.conf | 6 ++-- projects.pro | 36 +++++++++++----------- src/3rdparty/webkit/WebCore/WebCore.pro | 2 +- .../webkit/WebKit/qt/Api/DerivedSources.pro | 6 ++-- src/3rdparty/webkit/WebKit/qt/docs/docs.pri | 2 +- src/activeqt/control/control.pro | 2 +- .../auto/declarative/parserstress/parserstress.pro | 2 +- .../lupdate/testdata/good/backslashes/project.pro | 4 +-- .../auto/patternistexamples/patternistexamples.pro | 2 +- tests/auto/qaccessibility/qaccessibility.pro | 2 +- tests/auto/qdesktopservices/qdesktopservices.pro | 22 ++++++------- tests/auto/qdirmodel/qdirmodel.pro | 6 ++-- tests/auto/qfile/test/test.pro | 8 ++--- tests/auto/qfileinfo/qfileinfo.pro | 2 +- tests/auto/qgraphicsscene/qgraphicsscene.pro | 4 +-- tests/auto/qimagewriter/qimagewriter.pro | 4 +-- tests/auto/qlibrary/lib2/lib2.pro | 6 ++-- tests/auto/qlocale/test/test.pro | 2 +- tests/auto/qlocalsocket/test/test.pro | 2 +- tests/auto/qmainwindow/qmainwindow.pro | 2 +- tests/auto/qmake/testdata/functions/functions.pro | 2 +- tests/auto/qmovie/qmovie.pro | 4 +-- tests/auto/qnetworkreply/test/test.pro | 2 +- tests/auto/qobject/tst_qobject.pro | 2 +- tests/auto/qprocess/test/test.pro | 2 +- .../qsocks5socketengine/qsocks5socketengine.pro | 2 +- tests/auto/solutions.pri | 4 +-- tests/auto/windowsmobile/test/test.pro | 2 +- .../lib/fulltextsearch/fulltextsearch.pro | 2 +- 56 files changed, 142 insertions(+), 142 deletions(-) diff --git a/demos/embedded/desktopservices/desktopservices.pro b/demos/embedded/desktopservices/desktopservices.pro index bff7c46..94ddedd 100644 --- a/demos/embedded/desktopservices/desktopservices.pro +++ b/demos/embedded/desktopservices/desktopservices.pro @@ -24,8 +24,8 @@ symbian { } wince*{ - music.path = "\My Documents\My Music" - image.path = "\My Documents\My Pictures" + music.path = "\\My Documents\\My Music" + image.path = "\\My Documents\\My Pictures" DEPLOYMENT += music image } diff --git a/examples/painting/svgviewer/svgviewer.pro b/examples/painting/svgviewer/svgviewer.pro index 5af8731..4809b91 100644 --- a/examples/painting/svgviewer/svgviewer.pro +++ b/examples/painting/svgviewer/svgviewer.pro @@ -17,15 +17,15 @@ sources.path = $$[QT_INSTALL_EXAMPLES]/painting/svgviewer INSTALLS += target sources wince*: { - addFiles.sources = files\*.svg - addFiles.path = \My Documents + addFiles.sources = files\\*.svg + addFiles.path = "\\My Documents" DEPLOYMENT += addFiles } symbian: { TARGET.UID3 = 0xA000A64E include($$QT_SOURCE_TREE/examples/symbianpkgrules.pri) - addFiles.sources = files\*.svg + addFiles.sources = files\\*.svg addFiles.path = . DEPLOYMENT += addFiles } diff --git a/examples/xml/dombookmarks/dombookmarks.pro b/examples/xml/dombookmarks/dombookmarks.pro index 25e21cd..f906d2f 100644 --- a/examples/xml/dombookmarks/dombookmarks.pro +++ b/examples/xml/dombookmarks/dombookmarks.pro @@ -15,6 +15,6 @@ symbian: include($$QT_SOURCE_TREE/examples/symbianpkgrules.pri) wince*: { addFiles.sources = frank.xbel jennifer.xbel - addFiles.path = \My Documents + addFiles.path = "\\My Documents" DEPLOYMENT += addFiles } diff --git a/examples/xml/saxbookmarks/saxbookmarks.pro b/examples/xml/saxbookmarks/saxbookmarks.pro index 4af3ddd..7293bd1 100644 --- a/examples/xml/saxbookmarks/saxbookmarks.pro +++ b/examples/xml/saxbookmarks/saxbookmarks.pro @@ -15,7 +15,7 @@ INSTALLS += target sources wince*: { addFiles.sources = frank.xbel jennifer.xbel - addFiles.path = \My Documents + addFiles.path = "\\My Documents" DEPLOYMENT += addFiles } diff --git a/mkspecs/common/symbian/symbian-makefile.conf b/mkspecs/common/symbian/symbian-makefile.conf index 66b3d7f..a3aade7 100644 --- a/mkspecs/common/symbian/symbian-makefile.conf +++ b/mkspecs/common/symbian/symbian-makefile.conf @@ -32,7 +32,7 @@ QMAKE_PREFIX_STATICLIB = QMAKE_EXTENSION_STATICLIB = lib QMAKE_SYMBIAN_SHLIB = 1 -DEFINES *= __PRODUCT_INCLUDE__=\<$${EPOCROOT}epoc32/include/variant/symbian_os.hrh\> \ +DEFINES *= __PRODUCT_INCLUDE__=\\<$${EPOCROOT}epoc32/include/variant/symbian_os.hrh\\> \ __SYMBIAN32__ \ __MARM_INTERWORK__ \ _UNICODE \ diff --git a/mkspecs/common/wince/qmake.conf b/mkspecs/common/wince/qmake.conf index 705cdc3..57b89b9 100644 --- a/mkspecs/common/wince/qmake.conf +++ b/mkspecs/common/wince/qmake.conf @@ -70,9 +70,9 @@ QMAKE_LIBS_OPENGL_ES2 = libGLESv2.lib QMAKE_LIBS_QT_ENTRY = -lqtmain -QMAKE_MOC = $$[QT_INSTALL_BINS]\moc.exe -QMAKE_UIC = $$[QT_INSTALL_BINS]\uic.exe -QMAKE_IDC = $$[QT_INSTALL_BINS]\idc.exe +QMAKE_MOC = $$[QT_INSTALL_BINS]\\moc.exe +QMAKE_UIC = $$[QT_INSTALL_BINS]\\uic.exe +QMAKE_IDC = $$[QT_INSTALL_BINS]\\idc.exe QMAKE_IDL = midl QMAKE_LIB = lib diff --git a/mkspecs/features/dbusadaptors.prf b/mkspecs/features/dbusadaptors.prf index 17dffa5..3463d58 100644 --- a/mkspecs/features/dbusadaptors.prf +++ b/mkspecs/features/dbusadaptors.prf @@ -2,7 +2,7 @@ qtPrepareTool(QMAKE_QDBUSXML2CPP, qdbusxml2cpp) for(DBUS_ADAPTOR, $$list($$unique(DBUS_ADAPTORS))) { - !contains(DBUS_ADAPTOR, .*\w\.xml$) { + !contains(DBUS_ADAPTOR, .*\\w\\.xml$) { warning("Invalid D-BUS adaptor: '$${DBUS_ADAPTOR}', please use 'com.mydomain.myinterface.xml' instead.") next() } diff --git a/mkspecs/features/dbusinterfaces.prf b/mkspecs/features/dbusinterfaces.prf index 412e80f..1828802 100644 --- a/mkspecs/features/dbusinterfaces.prf +++ b/mkspecs/features/dbusinterfaces.prf @@ -4,7 +4,7 @@ qtPrepareTool(QMAKE_QDBUSXML2CPP, qdbusxml2cpp) for(DBUS_INTERFACE, $$list($$unique(DBUS_INTERFACES))) { - !contains(DBUS_INTERFACE, .*\w\.xml$) { + !contains(DBUS_INTERFACE, .*\\w\\.xml$) { warning("Invalid D-BUS interface : '$${DBUS_INTERFACE}', please use 'com.mydomain.myinterface.xml' instead.") next() } diff --git a/mkspecs/features/incredibuild_xge.prf b/mkspecs/features/incredibuild_xge.prf index e241ca4..b8ca571 100644 --- a/mkspecs/features/incredibuild_xge.prf +++ b/mkspecs/features/incredibuild_xge.prf @@ -1,9 +1,9 @@ contains(TEMPLATE, "vc.*")|contains(TEMPLATE_PREFIX, "vc") { - EOC = \$\$escape_expand(\n\t) + EOC = \$\$escape_expand(\\\\n\\\\t) # The VCPROJ generator will replace the \r\h with the coded \r\n: # No other generator understands the \h - win32-msvc2*|wince*msvc*: EOC = \$\$escape_expand(\r\h) + win32-msvc2*|wince*msvc*: EOC = \$\$escape_expand(\\\\r\\\\h) for(xge, INCREDIBUILD_XGE) { eval($${xge}.commands = Rem IncrediBuild_AllowRemote $$EOC Rem IncrediBuild_OutputFile $$replace($${xge}.output,/,\\) $$EOC $$eval($${xge}.commands)) diff --git a/mkspecs/features/lex.prf b/mkspecs/features/lex.prf index df76a68..43d8fbd 100644 --- a/mkspecs/features/lex.prf +++ b/mkspecs/features/lex.prf @@ -14,9 +14,9 @@ QMAKE_LEXEXTRAFLAGS = $$QMAKE_LEXFLAGS !yacc_no_name_mangle:QMAKE_LEXEXTRAFLAGS += $$QMAKE_LEXFLAGS_MANGLE - lex.commands = $$QMAKE_LEX $$QMAKE_LEXEXTRAFLAGS ${QMAKE_FILE_IN}$$escape_expand(\n\t) \ - $$QMAKE_DEL_FILE $${QMAKE_CPP_MOD_MOC}${QMAKE_FILE_BASE}_lex$${first(QMAKE_EXT_CPP)}$$escape_expand(\n\t) \ - $$QMAKE_MOVE lex.${QMAKE_FILE_BASE}.c $${QMAKE_CPP_MOD_MOC}${QMAKE_FILE_BASE}_lex$${first(QMAKE_EXT_CPP)}$$escape_expand(\n\t) + lex.commands = $$QMAKE_LEX $$QMAKE_LEXEXTRAFLAGS ${QMAKE_FILE_IN}$$escape_expand(\\n\\t) \ + $$QMAKE_DEL_FILE $${QMAKE_CPP_MOD_MOC}${QMAKE_FILE_BASE}_lex$${first(QMAKE_EXT_CPP)}$$escape_expand(\\n\\t) \ + $$QMAKE_MOVE lex.${QMAKE_FILE_BASE}.c $${QMAKE_CPP_MOD_MOC}${QMAKE_FILE_BASE}_lex$${first(QMAKE_EXT_CPP)}$$escape_expand(\\n\\t) lex.output = $${QMAKE_CPP_MOD_MOC}${QMAKE_FILE_BASE}_lex$${first(QMAKE_EXT_CPP)} silent:lex.commands = @echo Lex ${QMAKE_FILE_IN} && $$lex.commands diff --git a/mkspecs/features/moc.prf b/mkspecs/features/moc.prf index e1032fd..abda78f 100644 --- a/mkspecs/features/moc.prf +++ b/mkspecs/features/moc.prf @@ -14,13 +14,13 @@ win32:count($$list($$INCLUDEPATH), 40, >) { WIN_INCLUDETEMP=$$INCLUDETEMP - EOC = $$escape_expand(\n\t) + EOC = $$escape_expand(\\n\\t) if(contains(TEMPLATE, "vc.*")|contains(TEMPLATE_PREFIX, "vc")) { # the VCPROJ generator will replace the \r\h with the coded \r\n: # No other generator understands the \h - if(win32-msvc2*|wince*msvc*): EOC = $$escape_expand(\r\h) - else: EOC = $$escape_expand(\\)$$escape_expand(\n\t) + if(win32-msvc2*|wince*msvc*): EOC = $$escape_expand(\\r\\h) + else: EOC = $$escape_expand(\\\\\\n\\t) } unset(INCFILELIST) diff --git a/mkspecs/features/sis_targets.prf b/mkspecs/features/sis_targets.prf index da2d250..13ee1ad 100644 --- a/mkspecs/features/sis_targets.prf +++ b/mkspecs/features/sis_targets.prf @@ -96,7 +96,7 @@ contains(TEMPLATE, app)|!count(DEPLOYMENT, 1) { } } else { sis_destdir = $$DESTDIR - !isEmpty(sis_destdir):!contains(sis_destdir, "[/\\]$"):sis_destdir = $${sis_destdir}/ + !isEmpty(sis_destdir):!contains(sis_destdir, "[/\\\\]$"):sis_destdir = $${sis_destdir}/ contains(QMAKE_HOST.os, "Windows"):sis_destdir = $$replace(sis_destdir, "/", "\\") sis_target.target = sis diff --git a/mkspecs/features/symbian/add_mmp_rules.prf b/mkspecs/features/symbian/add_mmp_rules.prf index 5384dbe..7f96b81 100644 --- a/mkspecs/features/symbian/add_mmp_rules.prf +++ b/mkspecs/features/symbian/add_mmp_rules.prf @@ -23,7 +23,7 @@ defineTest(addMMPRules) { # No value defined for current condition, so use default varVal = $$eval($${var}.default) } - !isEmpty(varVal): libBlock += "$$join(varVal,$$escape_expand(\n))" + !isEmpty(varVal): libBlock += "$$join(varVal,$$escape_expand(\\n))" } MMP_RULES += $$libBlock diff --git a/mkspecs/features/symbian/application_icon.prf b/mkspecs/features/symbian/application_icon.prf index 76f9ba1..c5654d9 100644 --- a/mkspecs/features/symbian/application_icon.prf +++ b/mkspecs/features/symbian/application_icon.prf @@ -21,11 +21,11 @@ contains( CONFIG, no_icon ) { # only uses filename from RSS_RULES.icon_file when referring to icon file name. baseTarget = $$basename(TARGET) baseTarget = $$replace(baseTarget, /,_) - baseTarget = $$replace(baseTarget, \\,_) + baseTarget = $$replace(baseTarget, \\\\,_) baseTarget = $$replace(baseTarget, " ",_) symbian-abld|symbian-sbsv2 { baseTarget = $$replace(baseTarget, -,_) - baseTarget = $$replace(baseTarget, \.,_) + baseTarget = $$replace(baseTarget, \\.,_) baseTarget = $$replace(baseTarget, :,_) } diff --git a/mkspecs/features/symbian/def_files.prf b/mkspecs/features/symbian/def_files.prf index 8bcd096..eb17402 100644 --- a/mkspecs/features/symbian/def_files.prf +++ b/mkspecs/features/symbian/def_files.prf @@ -63,7 +63,7 @@ symbian-abld|symbian-sbsv2 { freeze_target.target = freeze freeze_target.depends = first # The perl part is to convert to unix line endings and remove comments, which the s60 tools refuse to do. - freeze_target.commands = perl -n -e \'next if (/; NEW/); s/\r//g; if (/MISSING:(.*)/x) { print(\"\$\$1 ABSENT\\n\"); } else { print; }\' < $$symbianObjdir/$${TARGET}.def > $$elf2e32FileToAdd + freeze_target.commands = perl -n -e \'next if (/; NEW/); s/\\r//g; if (/MISSING:(.*)/x) { print(\"\$\$1 ABSENT\\n\"); } else { print; }\' < $$symbianObjdir/$${TARGET}.def > $$elf2e32FileToAdd QMAKE_EXTRA_TARGETS += freeze_target } else:contains(TEMPLATE, subdirs) { freeze_target.target = freeze diff --git a/mkspecs/features/symbian/moc.prf b/mkspecs/features/symbian/moc.prf index 29e0d8d..6030944 100644 --- a/mkspecs/features/symbian/moc.prf +++ b/mkspecs/features/symbian/moc.prf @@ -1,17 +1,17 @@ load(moc) symbian-abld|symbian-sbsv2 { - RET = $$find(MOC_DIR, "(/|^)\.[^/]+/?$") + RET = $$find(MOC_DIR, "(/|^)\\.[^/]+/?$") !isEmpty(RET):{ error("Symbian does not support directories starting with a dot. Please set MOC_DIR to a different value in your profile. MOC_DIR: $$MOC_DIR") } - RET = $$find(RCC_DIR, "(/|^)\.[^/]+/?$") + RET = $$find(RCC_DIR, "(/|^)\\.[^/]+/?$") !isEmpty(RET):{ error("Symbian does not support directories starting with a dot. Please set RCC_DIR to a different value in your profile. RCC_DIR: $$RCC_DIR") } - RET = $$find(OBJECTS_DIR, "(/|^)\.[^/]+/?$") + RET = $$find(OBJECTS_DIR, "(/|^)\\.[^/]+/?$") !isEmpty(RET):{ error("Symbian does not support directories starting with a dot. Please set OBJECTS_DIR to a different value in your profile. OBJECTS_DIR: $$OBJECTS_DIR") } diff --git a/mkspecs/features/symbian/symbian_building.prf b/mkspecs/features/symbian/symbian_building.prf index 802adde..c230272 100644 --- a/mkspecs/features/symbian/symbian_building.prf +++ b/mkspecs/features/symbian/symbian_building.prf @@ -22,16 +22,16 @@ contains(QMAKE_CFLAGS, "--thumb")|contains(QMAKE_CXXFLAGS, "--thumb")|contains(Q } defineReplace(processSymbianLibraries) { - library = $$replace(1, "\.dll$", ".dso") + library = $$replace(1, "\\.dll$", ".dso") library = $$replace(library, "^-l", "") - isFullName = $$find(library, \.) + isFullName = $$find(library, \\.) isEmpty(isFullName):library="$${library}.dso" linux-gcce { newLIB = "-l:$${library}" } else { newLIB = "$${library}" } - contains(library, "\.dso$")|contains(library, ".lib$"):PRE_TARGETDEPS += $$library + contains(library, "\\.dso$")|contains(library, "\\.lib$"):PRE_TARGETDEPS += $$library return($$newLIB) } @@ -55,7 +55,7 @@ isEmpty(VERSION) { } # Check for version validity. -!isEmpty(VERSION):!contains(VERSION, "[0-9]+"):!contains(VERSION, "[0-9]+\.[0-9]+")!contains(VERSION, "[0-9]+(\.[0-9]+){2}") { +!isEmpty(VERSION):!contains(VERSION, "[0-9]+"):!contains(VERSION, "[0-9]+\\.[0-9]+")!contains(VERSION, "[0-9]+(\\.[0-9]+){2}") { error("Invalid VERSION for Symbian: $$VERSION") } @@ -86,7 +86,7 @@ isEmpty(TARGET.UID2):TARGET.UID2 = 0x00000000 capability = $$replace(TARGET.CAPABILITY, " ", "+") capability = $$join(capability, "+") -capability = $$replace(capability, "\+-", "-") +capability = $$replace(capability, "\\+-", "-") isEmpty(capability): capability = "None" capability = "--capability=$$capability" @@ -214,9 +214,9 @@ symbian_resources_INCLUDES += "-I $$symbian_resources_RCC_DIR" for(symbian_resource, SYMBIAN_RESOURCES) { symbian_resource = $$basename(symbian_resource) - symbian_resource_clean = $$replace(symbian_resource, "\.rss$", ".rsc") + symbian_resource_clean = $$replace(symbian_resource, "\\.rss$", ".rsc") QMAKE_DISTCLEAN += $${symbianDestdir}/$${symbian_resource_clean} - symbian_resource_clean = $$replace(symbian_resource, "\.rss$", ".rpp") + symbian_resource_clean = $$replace(symbian_resource, "\\.rss$", ".rpp") QMAKE_CLEAN += $${symbian_resources_RCC_DIR}/$${symbian_resource_clean} } diff --git a/mkspecs/features/uic.prf b/mkspecs/features/uic.prf index c87372d..5324e65 100644 --- a/mkspecs/features/uic.prf +++ b/mkspecs/features/uic.prf @@ -86,14 +86,14 @@ defineReplace(imageCollectionCmd) { for(image, $$list($$split(1))) { EMBEDDED_IMAGES += $$image count(EMBEDDED_IMAGES, 5) { - isEmpty(RET): RET += echo $$EMBEDDED_IMAGES > images.tmp $$escape_expand(\n\t) - else: RET += echo $$EMBEDDED_IMAGES >> images.tmp $$escape_expand(\n\t) + isEmpty(RET): RET += echo $$EMBEDDED_IMAGES > images.tmp $$escape_expand(\\n\\t) + else: RET += echo $$EMBEDDED_IMAGES >> images.tmp $$escape_expand(\\n\\t) unset(EMBEDDED_IMAGES) } } - !isEmpty(EMBEDDED_IMAGES):RET += echo $$EMBEDDED_IMAGES >> images.tmp $$escape_expand(\n\t) + !isEmpty(EMBEDDED_IMAGES):RET += echo $$EMBEDDED_IMAGES >> images.tmp $$escape_expand(\\n\\t) !isEmpty(RET) { - RET += $$QMAKE_UIC3 -embed $$TARGET -f images.tmp -o $$2 $$escape_expand(\n\t) + RET += $$QMAKE_UIC3 -embed $$TARGET -f images.tmp -o $$2 $$escape_expand(\\n\\t) return($$RET) } return($$QMAKE_UIC3 -embed $$TARGET $$1 -o $$2) diff --git a/mkspecs/features/win32/embed_manifest_dll.prf b/mkspecs/features/win32/embed_manifest_dll.prf index 60a55ce..7305c04 100644 --- a/mkspecs/features/win32/embed_manifest_dll.prf +++ b/mkspecs/features/win32/embed_manifest_dll.prf @@ -2,12 +2,12 @@ MANIFEST_DIR = $$OBJECTS_DIR isEmpty(MANIFEST_DIR):MANIFEST_DIR = . !if(plugin:no_plugin_manifest):if(win32-msvc2005*|win32-msvc2008*|win32-msvc2010*):!static:!equals(TEMPLATE_PREFIX, "vc"):equals(TEMPLATE, "lib") { NOPATH_TARGET = $$TARGET - NOPATH_TARGET ~= s,\\ , ,q # Remove space escaping (NOPATH_TARGET is quoted) - NOPATH_TARGET ~= s,\\,/,g # Change to single type separators + NOPATH_TARGET ~= s,\\\\ , ,q # Remove space escaping (NOPATH_TARGET is quoted) + NOPATH_TARGET ~= s,\\\\,/,g # Change to single type separators NOPATH_TARGET ~= s,^(.*/)+,, # Remove all paths QMAKE_LFLAGS += /MANIFEST $$quote(/MANIFESTFILE:\"$${MANIFEST_DIR}\\$${NOPATH_TARGET}.intermediate.manifest\") QMAKE_PREV_POST_LINK = $$QMAKE_POST_LINK - QMAKE_POST_LINK = $$quote(mt.exe -nologo -manifest \"$$replace(MANIFEST_DIR,/,\\)\\$${NOPATH_TARGET}.intermediate.manifest\" -outputresource:$(DESTDIR_TARGET);2$$escape_expand(\n\t)) + QMAKE_POST_LINK = $$quote(mt.exe -nologo -manifest \"$$replace(MANIFEST_DIR,/,\\)\\$${NOPATH_TARGET}.intermediate.manifest\" -outputresource:$(DESTDIR_TARGET);2$$escape_expand(\\n\\t)) QMAKE_POST_LINK += $$QMAKE_PREV_POST_LINK QMAKE_CLEAN += \"$$replace(MANIFEST_DIR,/,\\)\\$${NOPATH_TARGET}.intermediate.manifest\" } diff --git a/mkspecs/features/win32/embed_manifest_exe.prf b/mkspecs/features/win32/embed_manifest_exe.prf index 169134d..5b37a6d 100644 --- a/mkspecs/features/win32/embed_manifest_exe.prf +++ b/mkspecs/features/win32/embed_manifest_exe.prf @@ -2,12 +2,12 @@ MANIFEST_DIR = $$OBJECTS_DIR isEmpty(MANIFEST_DIR):MANIFEST_DIR = . if(win32-msvc2005*|win32-msvc2008*|win32-msvc2010*):!equals(TEMPLATE_PREFIX, "vc"):equals(TEMPLATE, "app") { NOPATH_TARGET = $$TARGET - NOPATH_TARGET ~= s,\\ , ,q # Remove space escaping (NOPATH_TARGET is quoted) - NOPATH_TARGET ~= s,\\,/,g # Change to single type separators + NOPATH_TARGET ~= s,\\\\ , ,q # Remove space escaping (NOPATH_TARGET is quoted) + NOPATH_TARGET ~= s,\\\\,/,g # Change to single type separators NOPATH_TARGET ~= s,^(.*/)+,, # Remove all paths QMAKE_LFLAGS += /MANIFEST $$quote(/MANIFESTFILE:\"$${MANIFEST_DIR}\\$${NOPATH_TARGET}.intermediate.manifest\") QMAKE_PREV_POST_LINK = $$QMAKE_POST_LINK - QMAKE_POST_LINK = $$quote(mt.exe -nologo -manifest \"$$replace(MANIFEST_DIR,/,\\)\\$${NOPATH_TARGET}.intermediate.manifest\" -outputresource:$(DESTDIR_TARGET);1$$escape_expand(\n\t)) + QMAKE_POST_LINK = $$quote(mt.exe -nologo -manifest \"$$replace(MANIFEST_DIR,/,\\)\\$${NOPATH_TARGET}.intermediate.manifest\" -outputresource:$(DESTDIR_TARGET);1$$escape_expand(\\n\\t)) QMAKE_POST_LINK += $$QMAKE_PREV_POST_LINK QMAKE_CLEAN += \"$$replace(MANIFEST_DIR,/,\\)\\$${NOPATH_TARGET}.intermediate.manifest\" } diff --git a/mkspecs/features/win32/qaxserver.prf b/mkspecs/features/win32/qaxserver.prf index 1ff6825..2899976 100644 --- a/mkspecs/features/win32/qaxserver.prf +++ b/mkspecs/features/win32/qaxserver.prf @@ -19,10 +19,10 @@ equals(ACTIVEQT_IDE, "VisualStudio") { ACTIVEQT_IDL = $${QMAKE_IDL} ACTIVEQT_TARGET = "$(TargetPath)" win32-msvc { - ACTIVEQT_NEWLINE = $$escape_expand(\t) + ACTIVEQT_NEWLINE = $$escape_expand(\\t) ACTIVEQT_OUTPUT = $(IntDir)/$${TARGET} } else { - ACTIVEQT_NEWLINE = $$escape_expand(\n\t) + ACTIVEQT_NEWLINE = $$escape_expand(\\n\\t) ACTIVEQT_OUTPUT = $(IntDir)$${TARGET} } ACTIVEQT_TLBOUT = "$(TargetDir)/$${TARGET}.tlb" @@ -31,7 +31,7 @@ equals(ACTIVEQT_IDE, "VisualStudio") { equals(ACTIVEQT_IDE, "makefile") { ACTIVEQT_IDC = -$(IDC) ACTIVEQT_IDL = -$(IDL) - ACTIVEQT_NEWLINE = $$escape_expand(\n\t) + ACTIVEQT_NEWLINE = $$escape_expand(\\n\\t) ACTIVEQT_TARGET = $(DESTDIR_TARGET) ACTIVEQT_OUTPUT = $(OBJECTS_DIR)/$${TARGET} isEmpty(DESTDIR) { diff --git a/mkspecs/features/yacc.prf b/mkspecs/features/yacc.prf index c078e09..4d7e0a3 100644 --- a/mkspecs/features/yacc.prf +++ b/mkspecs/features/yacc.prf @@ -21,10 +21,10 @@ !yacc_no_name_mangle:QMAKE_YACCDECLFLAGS += $$QMAKE_YACCFLAGS_MANGLE yacc_decl.commands = \ - $$QMAKE_YACC $$QMAKE_YACCDECLFLAGS ${QMAKE_FILE_IN}$$escape_expand(\n\t) \ - $$QMAKE_DEL_FILE $${QMAKE_CPP_MOD_MOC}${QMAKE_FILE_BASE}_yacc$${first(QMAKE_EXT_H)} $${QMAKE_CPP_MOD_MOC}${QMAKE_FILE_BASE}_yacc$${first(QMAKE_EXT_CPP)}$$escape_expand(\n\t) \ - $$QMAKE_MOVE $${QMAKE_YACC_HEADER} $${QMAKE_CPP_MOD_MOC}${QMAKE_FILE_BASE}_yacc$${first(QMAKE_EXT_H)}$$escape_expand(\n\t) \ - $$QMAKE_MOVE $${QMAKE_YACC_SOURCE} $${QMAKE_CPP_MOD_MOC}${QMAKE_FILE_BASE}_yacc$${first(QMAKE_EXT_CPP)}$$escape_expand(\n\t) + $$QMAKE_YACC $$QMAKE_YACCDECLFLAGS ${QMAKE_FILE_IN}$$escape_expand(\\n\\t) \ + $$QMAKE_DEL_FILE $${QMAKE_CPP_MOD_MOC}${QMAKE_FILE_BASE}_yacc$${first(QMAKE_EXT_H)} $${QMAKE_CPP_MOD_MOC}${QMAKE_FILE_BASE}_yacc$${first(QMAKE_EXT_CPP)}$$escape_expand(\\n\\t) \ + $$QMAKE_MOVE $${QMAKE_YACC_HEADER} $${QMAKE_CPP_MOD_MOC}${QMAKE_FILE_BASE}_yacc$${first(QMAKE_EXT_H)}$$escape_expand(\\n\\t) \ + $$QMAKE_MOVE $${QMAKE_YACC_SOURCE} $${QMAKE_CPP_MOD_MOC}${QMAKE_FILE_BASE}_yacc$${first(QMAKE_EXT_CPP)}$$escape_expand(\\n\\t) yacc_decl.output = $${QMAKE_CPP_MOD_MOC}${QMAKE_FILE_BASE}_yacc$${first(QMAKE_EXT_H)} silent:yacc_decl.commands = @echo Yacc ${QMAKE_FILE_IN} && $$yacc_decl.commands @@ -35,7 +35,7 @@ yacc_impl.name = source for ${QMAKE_FILE_IN} yacc_impl.input = YACCSOURCES yacc_impl.variable_out = GENERATED_SOURCES - yacc_impl.commands = $$escape_expand(\n) # We don't want any commands where, but if command is empty no rules are created + yacc_impl.commands = $$escape_expand(\\n) # We don't want any commands where, but if command is empty no rules are created yacc_impl.depends = $${QMAKE_CPP_MOD_MOC}${QMAKE_FILE_BASE}_yacc$${first(QMAKE_EXT_H)} # Make sure we depend on the step above yacc_impl.output = $${QMAKE_CPP_MOD_MOC}${QMAKE_FILE_BASE}_yacc$${first(QMAKE_EXT_CPP)} # Faked output from this step, output really created in step above QMAKE_EXTRA_COMPILERS += yacc_impl diff --git a/mkspecs/win32-borland/qmake.conf b/mkspecs/win32-borland/qmake.conf index 63bf07a..2ba742c 100644 --- a/mkspecs/win32-borland/qmake.conf +++ b/mkspecs/win32-borland/qmake.conf @@ -41,7 +41,7 @@ QMAKE_CXXFLAGS_EXCEPTIONS_ON = QMAKE_CXXFLAGS_EXCEPTIONS_OFF = -x- QMAKE_INCDIR = -QMAKE_LIBDIR = $(BCB)\lib +QMAKE_LIBDIR = $(BCB)\\lib QMAKE_INCDIR_QT = $$[QT_INSTALL_HEADERS] QMAKE_LIBDIR_QT = $$[QT_INSTALL_LIBS] @@ -69,9 +69,9 @@ QMAKE_LIBS_QT_ENTRY = -lqtmain #QMAKE_LIBS_OPENGL = #QMAKE_LFLAGS_OPENGL = /dopengl32.dll -QMAKE_MOC = $$[QT_INSTALL_BINS]\moc.exe -QMAKE_UIC = $$[QT_INSTALL_BINS]\uic.exe -QMAKE_IDC = $$[QT_INSTALL_BINS]\idc.exe +QMAKE_MOC = $$[QT_INSTALL_BINS]\\moc.exe +QMAKE_UIC = $$[QT_INSTALL_BINS]\\uic.exe +QMAKE_IDC = $$[QT_INSTALL_BINS]\\idc.exe QMAKE_IDL = midl QMAKE_LIB = tlib /C /P256 diff --git a/mkspecs/win32-icc/qmake.conf b/mkspecs/win32-icc/qmake.conf index fcc7691..acff5e1 100644 --- a/mkspecs/win32-icc/qmake.conf +++ b/mkspecs/win32-icc/qmake.conf @@ -67,9 +67,9 @@ QMAKE_LIBS_OPENGL = opengl32.lib glu32.lib gdi32.lib user32.lib delayimp.l QMAKE_LIBS_COMPAT = advapi32.lib shell32.lib comdlg32.lib user32.lib gdi32.lib ws2_32.lib QMAKE_LIBS_QT_ENTRY = -lqtmain -QMAKE_MOC = $$[QT_INSTALL_BINS]\moc.exe -QMAKE_UIC = $$[QT_INSTALL_BINS]\uic.exe -QMAKE_IDC = $$[QT_INSTALL_BINS]\idc.exe +QMAKE_MOC = $$[QT_INSTALL_BINS]\\moc.exe +QMAKE_UIC = $$[QT_INSTALL_BINS]\\uic.exe +QMAKE_IDC = $$[QT_INSTALL_BINS]\\idc.exe QMAKE_IDL = midl QMAKE_LIB = lib /NOLOGO diff --git a/mkspecs/win32-msvc2003/qmake.conf b/mkspecs/win32-msvc2003/qmake.conf index e92df12..5344331 100644 --- a/mkspecs/win32-msvc2003/qmake.conf +++ b/mkspecs/win32-msvc2003/qmake.conf @@ -64,9 +64,9 @@ QMAKE_LIBS_COMPAT = advapi32.lib shell32.lib comdlg32.lib user32.lib gdi32 QMAKE_LIBS_QT_ENTRY = -lqtmain -QMAKE_MOC = $$[QT_INSTALL_BINS]\moc.exe -QMAKE_UIC = $$[QT_INSTALL_BINS]\uic.exe -QMAKE_IDC = $$[QT_INSTALL_BINS]\idc.exe +QMAKE_MOC = $$[QT_INSTALL_BINS]\\moc.exe +QMAKE_UIC = $$[QT_INSTALL_BINS]\\uic.exe +QMAKE_IDC = $$[QT_INSTALL_BINS]\\idc.exe QMAKE_IDL = midl QMAKE_LIB = lib /NOLOGO diff --git a/mkspecs/win32-msvc2005/qmake.conf b/mkspecs/win32-msvc2005/qmake.conf index 5ed8e01..84e831f 100644 --- a/mkspecs/win32-msvc2005/qmake.conf +++ b/mkspecs/win32-msvc2005/qmake.conf @@ -67,9 +67,9 @@ QMAKE_LIBS_COMPAT = advapi32.lib shell32.lib comdlg32.lib user32.lib gdi32 QMAKE_LIBS_QT_ENTRY = -lqtmain -QMAKE_MOC = $$[QT_INSTALL_BINS]\moc.exe -QMAKE_UIC = $$[QT_INSTALL_BINS]\uic.exe -QMAKE_IDC = $$[QT_INSTALL_BINS]\idc.exe +QMAKE_MOC = $$[QT_INSTALL_BINS]\\moc.exe +QMAKE_UIC = $$[QT_INSTALL_BINS]\\uic.exe +QMAKE_IDC = $$[QT_INSTALL_BINS]\\idc.exe QMAKE_IDL = midl QMAKE_LIB = lib /NOLOGO diff --git a/mkspecs/win32-msvc2008/qmake.conf b/mkspecs/win32-msvc2008/qmake.conf index 373a36d..3e0bfb5 100644 --- a/mkspecs/win32-msvc2008/qmake.conf +++ b/mkspecs/win32-msvc2008/qmake.conf @@ -67,9 +67,9 @@ QMAKE_LIBS_COMPAT = advapi32.lib shell32.lib comdlg32.lib user32.lib gdi32 QMAKE_LIBS_QT_ENTRY = -lqtmain -QMAKE_MOC = $$[QT_INSTALL_BINS]\moc.exe -QMAKE_UIC = $$[QT_INSTALL_BINS]\uic.exe -QMAKE_IDC = $$[QT_INSTALL_BINS]\idc.exe +QMAKE_MOC = $$[QT_INSTALL_BINS]\\moc.exe +QMAKE_UIC = $$[QT_INSTALL_BINS]\\uic.exe +QMAKE_IDC = $$[QT_INSTALL_BINS]\\idc.exe QMAKE_IDL = midl QMAKE_LIB = lib /NOLOGO diff --git a/mkspecs/win32-msvc2010/qmake.conf b/mkspecs/win32-msvc2010/qmake.conf index 2a48938..d9fe711 100644 --- a/mkspecs/win32-msvc2010/qmake.conf +++ b/mkspecs/win32-msvc2010/qmake.conf @@ -67,9 +67,9 @@ QMAKE_LIBS_COMPAT = advapi32.lib shell32.lib comdlg32.lib user32.lib gdi32 QMAKE_LIBS_QT_ENTRY = -lqtmain -QMAKE_MOC = $$[QT_INSTALL_BINS]\moc.exe -QMAKE_UIC = $$[QT_INSTALL_BINS]\uic.exe -QMAKE_IDC = $$[QT_INSTALL_BINS]\idc.exe +QMAKE_MOC = $$[QT_INSTALL_BINS]\\moc.exe +QMAKE_UIC = $$[QT_INSTALL_BINS]\\uic.exe +QMAKE_IDC = $$[QT_INSTALL_BINS]\\idc.exe QMAKE_IDL = midl QMAKE_LIB = lib /NOLOGO diff --git a/projects.pro b/projects.pro index 45fb8da..373b049 100644 --- a/projects.pro +++ b/projects.pro @@ -104,33 +104,33 @@ unix:!symbian { (cd qmake && $(MAKE) distclean); } win32 { - confclean.commands += -$(DEL_FILE) src\core\global\qconfig.h $$escape_expand(\n\t) \ - -$(DEL_FILE) src\core\global\qconfig.cpp $$escape_expand(\n\t) \ - -$(DEL_FILE) mkspecs\qconfig.pri $$escape_expand(\n\t) \ - -$(DEL_FILE) .qmake.cache $$escape_expand(\n\t) \ + confclean.commands += -$(DEL_FILE) src\\core\\global\\qconfig.h $$escape_expand(\\n\\t) \ + -$(DEL_FILE) src\\core\\global\\qconfig.cpp $$escape_expand(\\n\\t) \ + -$(DEL_FILE) mkspecs\\qconfig.pri $$escape_expand(\\n\\t) \ + -$(DEL_FILE) .qmake.cache $$escape_expand(\\n\\t) \ (cd qmake && $(MAKE) distclean) } symbian { confclean.depends += distclean contains(QMAKE_HOST.os, "Windows") { confclean.commands += \ - (cd src\tools\moc && $(MAKE) distclean) $$escape_expand(\n\t) \ - (cd src\tools\rcc && $(MAKE) distclean) $$escape_expand(\n\t) \ - (cd src\tools\uic && $(MAKE) distclean) $$escape_expand(\n\t) \ - -$(DEL_FILE) src\corelib\global\qconfig.h $$escape_expand(\n\t) \ - -$(DEL_FILE) src\corelib\global\qconfig.cpp $$escape_expand(\n\t) \ - -$(DEL_FILE) mkspecs\qconfig.pri $$escape_expand(\n\t) \ - -$(DEL_FILE) .qmake.cache $$escape_expand(\n\t) \ + (cd src\\tools\\moc && $(MAKE) distclean) $$escape_expand(\\n\\t) \ + (cd src\\tools\\rcc && $(MAKE) distclean) $$escape_expand(\\n\\t) \ + (cd src\\tools\\uic && $(MAKE) distclean) $$escape_expand(\\n\\t) \ + -$(DEL_FILE) src\\corelib\\global\\qconfig.h $$escape_expand(\\n\\t) \ + -$(DEL_FILE) src\\corelib\\global\\qconfig.cpp $$escape_expand(\\n\\t) \ + -$(DEL_FILE) mkspecs\\qconfig.pri $$escape_expand(\\n\\t) \ + -$(DEL_FILE) .qmake.cache $$escape_expand(\\n\\t) \ (cd qmake && $(MAKE) distclean) } else { confclean.commands += \ - (cd src/tools/moc && $(MAKE) distclean) $$escape_expand(\n\t) \ - (cd src/tools/rcc && $(MAKE) distclean) $$escape_expand(\n\t) \ - (cd src/tools/uic && $(MAKE) distclean) $$escape_expand(\n\t) \ - -$(DEL_FILE) src/corelib/global/qconfig.h $$escape_expand(\n\t) \ - -$(DEL_FILE) src/corelib/global/qconfig.cpp $$escape_expand(\n\t) \ - -$(DEL_FILE) mkspecs/qconfig.pri $$escape_expand(\n\t) \ - -$(DEL_FILE) .qmake.cache $$escape_expand(\n\t) \ + (cd src/tools/moc && $(MAKE) distclean) $$escape_expand(\\n\\t) \ + (cd src/tools/rcc && $(MAKE) distclean) $$escape_expand(\\n\\t) \ + (cd src/tools/uic && $(MAKE) distclean) $$escape_expand(\\n\\t) \ + -$(DEL_FILE) src/corelib/global/qconfig.h $$escape_expand(\\n\\t) \ + -$(DEL_FILE) src/corelib/global/qconfig.cpp $$escape_expand(\\n\\t) \ + -$(DEL_FILE) mkspecs/qconfig.pri $$escape_expand(\\n\\t) \ + -$(DEL_FILE) .qmake.cache $$escape_expand(\\n\\t) \ (cd qmake && $(MAKE) distclean) } } diff --git a/src/3rdparty/webkit/WebCore/WebCore.pro b/src/3rdparty/webkit/WebCore/WebCore.pro index 5def728..63e78a7 100644 --- a/src/3rdparty/webkit/WebCore/WebCore.pro +++ b/src/3rdparty/webkit/WebCore/WebCore.pro @@ -159,7 +159,7 @@ defineTest(addExtraCompiler) { for(file,input) { base = $$basename(file) - base ~= s/\..+// + base ~= s/\\..+// newfile=$$replace(outputRule,\\$\\{QMAKE_FILE_BASE\\},$$base) SOURCES += $$newfile } diff --git a/src/3rdparty/webkit/WebKit/qt/Api/DerivedSources.pro b/src/3rdparty/webkit/WebKit/qt/Api/DerivedSources.pro index 389fb5f..22d4c8d 100644 --- a/src/3rdparty/webkit/WebKit/qt/Api/DerivedSources.pro +++ b/src/3rdparty/webkit/WebKit/qt/Api/DerivedSources.pro @@ -28,7 +28,7 @@ qtheader_module.commands += echo $${QUOTE}$${LITERAL_HASH}define QT_QTWEBKIT_MOD qtheader_module.commands += echo $${QUOTE}$${LITERAL_HASH}include $${ESCAPE}$${QUOTE} >> $${qtheader_module.target} && WEBKIT_CLASS_HEADERS = $${LITERAL_DOLLAR}$${LITERAL_DOLLAR}$${LITERAL_DOLLAR}$${LITERAL_DOLLAR}PWD/QtWebKit -regex = ".*\sclass\sQWEBKIT_EXPORT\s(\w+)\s(.*)" +regex = ".*\\sclass\\sQWEBKIT_EXPORT\\s(\\w+)\\s(.*)" for(HEADER, WEBKIT_API_HEADERS) { # 1. Append to QtWebKit header that includes all other header files @@ -70,7 +70,7 @@ for(HEADER, WEBKIT_API_HEADERS) { res = $$find(src, $$regex) isEmpty(res):break() - exp = $$replace(src, $$regex, "EXPORTED_CLASS = \1") + exp = $$replace(src, $$regex, "EXPORTED_CLASS = \\1") eval($$exp) CLASS_TARGET = "qtheader_$${EXPORTED_CLASS}" @@ -87,7 +87,7 @@ for(HEADER, WEBKIT_API_HEADERS) { # Qt's QRegExp does not support inline non-greedy matching, # so we'll have to work around it by updating the haystack - src = $$replace(src, $$regex, "\2") + src = $$replace(src, $$regex, "\\2") src_words = $$join(src, $${LITERAL_WHITESPACE}) } } diff --git a/src/3rdparty/webkit/WebKit/qt/docs/docs.pri b/src/3rdparty/webkit/WebKit/qt/docs/docs.pri index 804817b..a56ddb4 100644 --- a/src/3rdparty/webkit/WebKit/qt/docs/docs.pri +++ b/src/3rdparty/webkit/WebKit/qt/docs/docs.pri @@ -3,7 +3,7 @@ include(../../../WebKit.pri) unix { QDOC = SRCDIR=$$PWD/../../.. OUTPUT_DIR=$$OUTPUT_DIR $$(QTDIR)/bin/qdoc3 } else { - QDOC = $$(QTDIR)\bin\qdoc3.exe + QDOC = $$(QTDIR)\\bin\\qdoc3.exe } unix { diff --git a/src/activeqt/control/control.pro b/src/activeqt/control/control.pro index bf3647e..44eb928 100644 --- a/src/activeqt/control/control.pro +++ b/src/activeqt/control/control.pro @@ -15,7 +15,7 @@ TARGET = QAxServer } CONFIG += qt warn_off staticlib -QTDIR_build:DESTDIR = $$QT_BUILD_TREE\lib +QTDIR_build:DESTDIR = $$QT_BUILD_TREE\\lib DEFINES += QAX_SERVER win32-g++:DEFINES += QT_NEEDS_QMAIN diff --git a/tests/auto/declarative/parserstress/parserstress.pro b/tests/auto/declarative/parserstress/parserstress.pro index a95a855..3a675e4 100644 --- a/tests/auto/declarative/parserstress/parserstress.pro +++ b/tests/auto/declarative/parserstress/parserstress.pro @@ -6,7 +6,7 @@ SOURCES += tst_parserstress.cpp symbian: { DEFINES += SRCDIR=\".\" - importFiles.sources = ..\..\qscriptjstestsuite\tests + importFiles.sources = ..\\..\\qscriptjstestsuite\\tests importFiles.path = DEPLOYMENT = importFiles } else { diff --git a/tests/auto/linguist/lupdate/testdata/good/backslashes/project.pro b/tests/auto/linguist/lupdate/testdata/good/backslashes/project.pro index 4698b2b..d4dcda8 100644 --- a/tests/auto/linguist/lupdate/testdata/good/backslashes/project.pro +++ b/tests/auto/linguist/lupdate/testdata/good/backslashes/project.pro @@ -1,3 +1,3 @@ -SOURCES += src\main.cpp +SOURCES += src\\main.cpp -TRANSLATIONS = ts\project.ts +TRANSLATIONS = ts\\project.ts diff --git a/tests/auto/patternistexamples/patternistexamples.pro b/tests/auto/patternistexamples/patternistexamples.pro index 4092fc8..c528c93 100644 --- a/tests/auto/patternistexamples/patternistexamples.pro +++ b/tests/auto/patternistexamples/patternistexamples.pro @@ -13,7 +13,7 @@ wince*|symbian*: { recipes.sources = $$QT_SOURCE_TREE/examples/xmlpatterns/recipes/* recipes.path = recipes files.sources = $$QT_SOURCE_TREE/examples/xmlpatterns/recipes/files/* - files.path = recipes\files + files.path = recipes\\files DEPLOYMENT += snippets widgetRen globVar filetree recipes files # take care of dependency diff --git a/tests/auto/qaccessibility/qaccessibility.pro b/tests/auto/qaccessibility/qaccessibility.pro index e33c04d..1b30beb 100644 --- a/tests/auto/qaccessibility/qaccessibility.pro +++ b/tests/auto/qaccessibility/qaccessibility.pro @@ -5,7 +5,7 @@ unix:!mac:LIBS+=-lm contains(QT_CONFIG, qt3support): QT += qt3support wince*: { - accessneeded.sources = $$QT_BUILD_TREE\plugins\accessible\*.dll + accessneeded.sources = $$QT_BUILD_TREE\\plugins\\accessible\\*.dll accessneeded.path = accessible DEPLOYMENT += accessneeded } \ No newline at end of file diff --git a/tests/auto/qdesktopservices/qdesktopservices.pro b/tests/auto/qdesktopservices/qdesktopservices.pro index 9ef557d..d32ed4c 100644 --- a/tests/auto/qdesktopservices/qdesktopservices.pro +++ b/tests/auto/qdesktopservices/qdesktopservices.pro @@ -3,23 +3,23 @@ CONFIG += qttest_p4 SOURCES += tst_qdesktopservices.cpp TARGET = tst_qdesktopservices symbian: { - dummy.sources = text\testfile.txt + dummy.sources = text\\testfile.txt dummy.path = . - text.sources = text\* - text.path = \data\others\ + text.sources = text\\* + text.path = \\data\\others - image.sources = image\* - image.path = \data\images\ + image.sources = image\\* + image.path = \\data\\images - audio.sources = audio\* - audio.path = \data\sounds\ + audio.sources = audio\\* + audio.path = \\data\\sounds - video.sources = video\* - video.path = \data\videos\ + video.sources = video\\* + video.path = \\data\\videos - install.sources = install\* - install.path = \data\installs\ + install.sources = install\\* + install.path = \\data\\installs DEPLOYMENT += image audio video install diff --git a/tests/auto/qdirmodel/qdirmodel.pro b/tests/auto/qdirmodel/qdirmodel.pro index 5a66883..36929b9 100644 --- a/tests/auto/qdirmodel/qdirmodel.pro +++ b/tests/auto/qdirmodel/qdirmodel.pro @@ -2,9 +2,9 @@ load(qttest_p4) SOURCES += tst_qdirmodel.cpp wince*|symbian { - addit.sources = dirtest\test1\* - addit.path = dirtest\test1 - tests.sources = test\* + addit.sources = dirtest\\test1\\* + addit.path = dirtest\\test1 + tests.sources = test\\* tests.path = test sourceFile.sources = tst_qdirmodel.cpp sourceFile.path = . diff --git a/tests/auto/qfile/test/test.pro b/tests/auto/qfile/test/test.pro index faaa927..70c93ce 100644 --- a/tests/auto/qfile/test/test.pro +++ b/tests/auto/qfile/test/test.pro @@ -3,11 +3,11 @@ SOURCES += ../tst_qfile.cpp wince*|symbian { QT = core gui - files.sources += ..\dosfile.txt ..\noendofline.txt ..\testfile.txt \ - ..\testlog.txt ..\two.dots.file ..\tst_qfile.cpp \ - ..\Makefile ..\forCopying.txt ..\forRenaming.txt + files.sources += ..\\dosfile.txt ..\\noendofline.txt ..\\testfile.txt \ + ..\\testlog.txt ..\\two.dots.file ..\\tst_qfile.cpp \ + ..\\Makefile ..\\forCopying.txt ..\\forRenaming.txt files.path = . - resour.sources += ..\resources\file1.ext1 + resour.sources += ..\\resources\\file1.ext1 resour.path = resources DEPLOYMENT = files resour diff --git a/tests/auto/qfileinfo/qfileinfo.pro b/tests/auto/qfileinfo/qfileinfo.pro index 93599f4..2038514 100644 --- a/tests/auto/qfileinfo/qfileinfo.pro +++ b/tests/auto/qfileinfo/qfileinfo.pro @@ -8,7 +8,7 @@ RESOURCES += qfileinfo.qrc wince*:|symbian*: { deploy.sources += qfileinfo.qrc tst_qfileinfo.cpp - res.sources = resources\file1 resources\file1.ext1 resources\file1.ext1.ext2 + res.sources = resources\\file1 resources\\file1.ext1 resources\\file1.ext1.ext2 res.path = resources DEPLOYMENT = deploy res } diff --git a/tests/auto/qgraphicsscene/qgraphicsscene.pro b/tests/auto/qgraphicsscene/qgraphicsscene.pro index 31bb769..401c9eb 100644 --- a/tests/auto/qgraphicsscene/qgraphicsscene.pro +++ b/tests/auto/qgraphicsscene/qgraphicsscene.pro @@ -9,8 +9,8 @@ DEFINES += QT_NO_CAST_TO_ASCII wince*|symbian*: { rootFiles.sources = Ash_European.jpg graphicsScene_selection.data rootFiles.path = . - renderFiles.sources = testData\render\* - renderFiles.path = testData\render + renderFiles.sources = testData\\render\\* + renderFiles.path = testData\\render DEPLOYMENT += rootFiles renderFiles } wince*:{ diff --git a/tests/auto/qimagewriter/qimagewriter.pro b/tests/auto/qimagewriter/qimagewriter.pro index 8da2942..2171c3e 100644 --- a/tests/auto/qimagewriter/qimagewriter.pro +++ b/tests/auto/qimagewriter/qimagewriter.pro @@ -6,12 +6,12 @@ win32-msvc:QMAKE_CXXFLAGS -= -Zm200 win32-msvc:QMAKE_CXXFLAGS += -Zm800 wince*: { - addFiles.sources = images\*.* + addFiles.sources = images\\*.* addFiles.path = images DEPLOYMENT += addFiles DEFINES += SRCDIR=\\\".\\\" } else:symbian* { - addFiles.sources = images\*.* + addFiles.sources = images\\*.* addFiles.path = images DEPLOYMENT += addFiles qt_not_deployed { diff --git a/tests/auto/qlibrary/lib2/lib2.pro b/tests/auto/qlibrary/lib2/lib2.pro index 4654f4d..b441569 100644 --- a/tests/auto/qlibrary/lib2/lib2.pro +++ b/tests/auto/qlibrary/lib2/lib2.pro @@ -38,9 +38,9 @@ symbian-abld: { TARGET.CAPABILITY=ALL -TCB FIXEDROOT = $$replace(EPOCROOT,/,\\) QMAKE_POST_LINK = \ - copy /Y $${FIXEDROOT}epoc32\release\\$(PLATFORM)\\$(CFG)\mylib.dll $${FIXEDROOT}epoc32\release\\$(PLATFORM)\\$(CFG)\mylib.dl2 && \ - copy /Y $${FIXEDROOT}epoc32\release\\$(PLATFORM)\\$(CFG)\mylib.dll $${FIXEDROOT}epoc32\release\\$(PLATFORM)\\$(CFG)\system.trolltech.test.mylib.dll && \ - IF NOT "$(PLATFORM)==WINSCW" copy /Y $${FIXEDROOT}epoc32\release\\$(PLATFORM)\\$(CFG)\mylib.dll ..\tst\mylib.dl2 + copy /Y $${FIXEDROOT}epoc32\\release\\$(PLATFORM)\\$(CFG)\\mylib.dll $${FIXEDROOT}epoc32\\release\\$(PLATFORM)\\$(CFG)\\mylib.dl2 && \ + copy /Y $${FIXEDROOT}epoc32\\release\\$(PLATFORM)\\$(CFG)\\mylib.dll $${FIXEDROOT}epoc32\\release\\$(PLATFORM)\\$(CFG)\\system.trolltech.test.mylib.dll && \ + IF NOT "$(PLATFORM)==WINSCW" copy /Y $${FIXEDROOT}epoc32\\release\\$(PLATFORM)\\$(CFG)\\mylib.dll ..\\tst\\mylib.dl2 } symbian-sbsv2: { diff --git a/tests/auto/qlocale/test/test.pro b/tests/auto/qlocale/test/test.pro index 7bc9f59..d57f2d1 100644 --- a/tests/auto/qlocale/test/test.pro +++ b/tests/auto/qlocale/test/test.pro @@ -25,7 +25,7 @@ wince*: { addFiles.sources = \ ../syslocaleapp - addFiles.path = \Program Files\tst_qlocale + addFiles.path = "\\Program Files\\tst_qlocale" DEPLOYMENT += addFiles } diff --git a/tests/auto/qlocalsocket/test/test.pro b/tests/auto/qlocalsocket/test/test.pro index cfdc89b..687aae2 100644 --- a/tests/auto/qlocalsocket/test/test.pro +++ b/tests/auto/qlocalsocket/test/test.pro @@ -34,7 +34,7 @@ wince* { symbian { additionalFiles.sources = lackey.exe - additionalFiles.path = \sys\bin + additionalFiles.path = \\sys\\bin TARGET.UID3 = 0xE0340005 DEFINES += SYMBIAN_SRCDIR_UID=$$lower($$replace(TARGET.UID3,"0x","")) } diff --git a/tests/auto/qmainwindow/qmainwindow.pro b/tests/auto/qmainwindow/qmainwindow.pro index 43d73ae..e015f95 100644 --- a/tests/auto/qmainwindow/qmainwindow.pro +++ b/tests/auto/qmainwindow/qmainwindow.pro @@ -2,5 +2,5 @@ load(qttest_p4) SOURCES += tst_qmainwindow.cpp # Symbian toolchain does not support correct include semantics -symbian:INCPATH+=..\..\..\include\QtGui\private +symbian:INCPATH+=..\\..\\..\\include\\QtGui\\private diff --git a/tests/auto/qmake/testdata/functions/functions.pro b/tests/auto/qmake/testdata/functions/functions.pro index 5e089e4..ad66ee8 100644 --- a/tests/auto/qmake/testdata/functions/functions.pro +++ b/tests/auto/qmake/testdata/functions/functions.pro @@ -53,7 +53,7 @@ include( infiletest.pro, "", true ) #replace VERSION=1.0.0 -VERSION_replaced=$$replace(VERSION,\.,_) +VERSION_replaced=$$replace(VERSION,\\.,_) !isEqual(VERSION_replaced, 1_0_0) { message( "FAILED: replace function: $$VERSION_replaced" ) } diff --git a/tests/auto/qmovie/qmovie.pro b/tests/auto/qmovie/qmovie.pro index 30e5901..a8ec478 100644 --- a/tests/auto/qmovie/qmovie.pro +++ b/tests/auto/qmovie/qmovie.pro @@ -7,14 +7,14 @@ MOC_DIR=tmp !contains(QT_CONFIG, no-mng):DEFINES += QTEST_HAVE_MNG wince*: { - addFiles.sources = animations\* + addFiles.sources = animations\\* addFiles.path = animations DEPLOYMENT += addFiles } symbian*: { - addFiles.sources = animations\* + addFiles.sources = animations\\* addFiles.path = animations DEPLOYMENT += addFiles diff --git a/tests/auto/qnetworkreply/test/test.pro b/tests/auto/qnetworkreply/test/test.pro index 7bf3852..b9ece38 100644 --- a/tests/auto/qnetworkreply/test/test.pro +++ b/tests/auto/qnetworkreply/test/test.pro @@ -31,7 +31,7 @@ symbian:{ DEPLOYMENT += certFiles # Symbian toolchain does not support correct include semantics - INCPATH+=..\..\..\..\include\QtNetwork\private + INCPATH+=..\\..\\..\\..\\include\\QtNetwork\\private # bigfile test case requires more heap TARGET.EPOCHEAPSIZE="0x100 0x1000000" TARGET.CAPABILITY="ALL -TCB" diff --git a/tests/auto/qobject/tst_qobject.pro b/tests/auto/qobject/tst_qobject.pro index 0200f3e..1d6993a 100644 --- a/tests/auto/qobject/tst_qobject.pro +++ b/tests/auto/qobject/tst_qobject.pro @@ -16,6 +16,6 @@ wince*: { } symbian: { addFiles.sources = signalbug.exe - addFiles.path = \sys\bin + addFiles.path = \\sys\\bin DEPLOYMENT += addFiles } diff --git a/tests/auto/qprocess/test/test.pro b/tests/auto/qprocess/test/test.pro index e1afd22..d555067 100644 --- a/tests/auto/qprocess/test/test.pro +++ b/tests/auto/qprocess/test/test.pro @@ -118,7 +118,7 @@ symbian: { testProcessOutput.exe \ nospace.exe \ testSpaceInName.exe - binDep.path = \sys\bin + binDep.path = \\sys\\bin DEPLOYMENT += binDep } diff --git a/tests/auto/qsocks5socketengine/qsocks5socketengine.pro b/tests/auto/qsocks5socketengine/qsocks5socketengine.pro index cd5e6e7..62c0c87 100644 --- a/tests/auto/qsocks5socketengine/qsocks5socketengine.pro +++ b/tests/auto/qsocks5socketengine/qsocks5socketengine.pro @@ -10,7 +10,7 @@ MOC_DIR=tmp QT = core network # Symbian toolchain does not support correct include semantics -symbian:INCPATH+=..\..\..\include\QtNetwork\private +symbian:INCPATH+=..\\..\\..\\include\\QtNetwork\\private symbian: TARGET.CAPABILITY = NetworkServices diff --git a/tests/auto/solutions.pri b/tests/auto/solutions.pri index bcffb64..5c069c5 100644 --- a/tests/auto/solutions.pri +++ b/tests/auto/solutions.pri @@ -7,10 +7,10 @@ SOLUTIONBASEDIR = $$(SOLUTIONBASEDIR) # strip the trailing "..." -# SOLUTIONBASEDIR ~= s/\.\.\.$// +# SOLUTIONBASEDIR ~= s/\\.\\.\\.$// # replace \ with / -# win32:SOLUTIONBASEDIR ~= s.\\./.g +# win32:SOLUTIONBASEDIR ~= s.\\\\./.g isEmpty(SOLUTIONBASEDIR):DEFINES += QT_NO_SOLUTIONS diff --git a/tests/auto/windowsmobile/test/test.pro b/tests/auto/windowsmobile/test/test.pro index 61e275d..f3124a3 100644 --- a/tests/auto/windowsmobile/test/test.pro +++ b/tests/auto/windowsmobile/test/test.pro @@ -11,7 +11,7 @@ wincewm*: { addFiles.sources = $$OUT_PWD/../testQMenuBar/*.exe - addFiles.path = "\Program Files\tst_windowsmobile" + addFiles.path = "\\Program Files\\tst_windowsmobile" DEPLOYMENT += addFiles } diff --git a/tools/assistant/lib/fulltextsearch/fulltextsearch.pro b/tools/assistant/lib/fulltextsearch/fulltextsearch.pro index e0cd13a..fb1a0dd 100644 --- a/tools/assistant/lib/fulltextsearch/fulltextsearch.pro +++ b/tools/assistant/lib/fulltextsearch/fulltextsearch.pro @@ -46,5 +46,5 @@ win32-msvc.net | win32-msvc2* { # the following define could be set globally in case we need it elsewhere solaris* { - DEFINES += Q_SOLARIS_VERSION=$$system(uname -r | sed -e 's/5\.//') + DEFINES += Q_SOLARIS_VERSION=$$system(uname -r | sed -e 's/5\\.//') } -- cgit v0.12 From 487c05895751985a695f117fd984d1ecfe7b1252 Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen Date: Wed, 26 May 2010 14:06:27 +0200 Subject: escape quotes meant for the shell --- mkspecs/features/unix/separate_debug_info.prf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mkspecs/features/unix/separate_debug_info.prf b/mkspecs/features/unix/separate_debug_info.prf index c675828..40d52cb 100644 --- a/mkspecs/features/unix/separate_debug_info.prf +++ b/mkspecs/features/unix/separate_debug_info.prf @@ -1,7 +1,7 @@ !separate_debug_info_nocopy:!staticlib:!static:!contains(TEMPLATE, subdirs):!isEmpty(QMAKE_OBJCOPY) { QMAKE_SEPARATE_DEBUG_INFO = (test -z \"$(DESTDIR)\" || cd \"$(DESTDIR)\" ; targ=`basename $(TARGET)`; $$QMAKE_OBJCOPY --only-keep-debug \"\$\$targ\" \"\$\$targ.debug\" && $$QMAKE_OBJCOPY --strip-debug \"\$\$targ\" && $$QMAKE_OBJCOPY --add-gnu-debuglink=\"\$\$targ.debug\" \"\$\$targ\" && chmod -x \"\$\$targ.debug\" ) ; - QMAKE_INSTALL_SEPARATE_DEBUG_INFO = test -z "$(DESTDIR)" || cd \"$(DESTDIR)\" ; $(INSTALL_FILE) `basename $(TARGET)`.debug $(INSTALL_ROOT)/\$\$target_path/ + QMAKE_INSTALL_SEPARATE_DEBUG_INFO = test -z \"$(DESTDIR)\" || cd \"$(DESTDIR)\" ; $(INSTALL_FILE) `basename $(TARGET)`.debug $(INSTALL_ROOT)/\$\$target_path/ QMAKE_POST_LINK = $$QMAKE_SEPARATE_DEBUG_INFO $$QMAKE_POST_LINK silent:QMAKE_POST_LINK = @echo creating $@.debug && $$QMAKE_POST_LINK -- cgit v0.12 From 8060094144d6104659b8ce3b88d6f8b1e53cfb59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Abecasis?= Date: Wed, 26 May 2010 20:04:57 +0200 Subject: Fix regression in QVarLengthArray::operator= There was a serious regression wherei, under certain conditions, assignment would be treated as an append. This was due to poor tracking of container invariants inside realloc. From now on, after the allocation decision, s shall contain the number of elements in the array to be kept. Deleting extra elements in the old array needn't update this value. Instead, it needs to be updated once and if new elements are created afterwards. Auto-test greatly expanded to avoid future embarassments. Task-number: QTBUG-10978 Reviewed-by: Olivier Goffart Reviewed-by: Fabien Freling Olivier reviewed the patch, Fabien the auto-test. --- src/corelib/tools/qvarlengtharray.h | 15 +- tests/auto/qvarlengtharray/tst_qvarlengtharray.cpp | 297 +++++++++++++++++++++ 2 files changed, 304 insertions(+), 8 deletions(-) diff --git a/src/corelib/tools/qvarlengtharray.h b/src/corelib/tools/qvarlengtharray.h index aecb66e..a70488f 100644 --- a/src/corelib/tools/qvarlengtharray.h +++ b/src/corelib/tools/qvarlengtharray.h @@ -128,9 +128,9 @@ private: friend class QPodList; void realloc(int size, int alloc); - int a; - int s; - T *ptr; + int a; // capacity + int s; // size + T *ptr; // data union { // ### Qt 5: Use 'Prealloc * sizeof(T)' as array size char array[sizeof(qint64) * (((Prealloc * sizeof(T)) / sizeof(qint64)) + 1)]; @@ -193,8 +193,8 @@ Q_OUTOFLINE_TEMPLATE void QVarLengthArray::realloc(int asize, int a Q_ASSERT(aalloc >= asize); T *oldPtr = ptr; int osize = s; - // s = asize; + const int copySize = qMin(asize, osize); if (aalloc != a) { ptr = reinterpret_cast(qMalloc(aalloc * sizeof(T))); Q_CHECK_PTR(ptr); @@ -205,7 +205,6 @@ Q_OUTOFLINE_TEMPLATE void QVarLengthArray::realloc(int asize, int a if (QTypeInfo::isStatic) { QT_TRY { // copy all the old elements - const int copySize = qMin(asize, osize); while (s < copySize) { new (ptr+s) T(*(oldPtr+s)); (oldPtr+s)->~T(); @@ -221,19 +220,19 @@ Q_OUTOFLINE_TEMPLATE void QVarLengthArray::realloc(int asize, int a QT_RETHROW; } } else { - qMemCopy(ptr, oldPtr, qMin(asize, osize) * sizeof(T)); + qMemCopy(ptr, oldPtr, copySize * sizeof(T)); } } else { ptr = oldPtr; return; } } + s = copySize; if (QTypeInfo::isComplex) { + // destroy remaining old objects while (osize > asize) (oldPtr+(--osize))->~T(); - if (!QTypeInfo::isStatic) - s = osize; } if (oldPtr != reinterpret_cast(array) && oldPtr != ptr) diff --git a/tests/auto/qvarlengtharray/tst_qvarlengtharray.cpp b/tests/auto/qvarlengtharray/tst_qvarlengtharray.cpp index 1c43069..0b7dc13 100644 --- a/tests/auto/qvarlengtharray/tst_qvarlengtharray.cpp +++ b/tests/auto/qvarlengtharray/tst_qvarlengtharray.cpp @@ -63,6 +63,7 @@ private slots: void oldTests(); void task214223(); void QTBUG6718_resize(); + void QTBUG10978_realloc(); }; int fooCtor = 0; @@ -291,5 +292,301 @@ void tst_QVarLengthArray::QTBUG6718_resize() } } +struct MyBase +{ + MyBase() + : data(this) + , isCopy(false) + { + ++liveCount; + } + + MyBase(MyBase const &) + : data(this) + , isCopy(true) + { + ++copyCount; + ++liveCount; + } + + MyBase & operator=(MyBase const &) + { + if (!isCopy) { + isCopy = true; + ++copyCount; + } else { + ++errorCount; + } + + return *this; + } + + ~MyBase() + { + if (isCopy) { + if (!copyCount) + ++errorCount; + else + --copyCount; + } + + if (!liveCount) + ++errorCount; + else + --liveCount; + } + + bool hasMoved() const + { + return this != data; + } + +protected: + MyBase const * const data; + bool isCopy; + +public: + static int errorCount; + static int liveCount; + static int copyCount; +}; + +int MyBase::errorCount = 0; +int MyBase::liveCount = 0; +int MyBase::copyCount = 0; + +struct MyPrimitive + : MyBase +{ + MyPrimitive() + { + ++errorCount; + } + + ~MyPrimitive() + { + ++errorCount; + } + + MyPrimitive(MyPrimitive const &other) + : MyBase(other) + { + ++errorCount; + } +}; + +Q_DECLARE_TYPEINFO(MyPrimitive, Q_PRIMITIVE_TYPE); + +struct MyMovable + : MyBase +{ +}; + +Q_DECLARE_TYPEINFO(MyMovable, Q_MOVABLE_TYPE); + +struct MyComplex + : MyBase +{ +}; + +Q_DECLARE_TYPEINFO(MyComplex, Q_COMPLEX_TYPE); + + +bool QTBUG10978_proceed = true; + +template +int countMoved(QVarLengthArray const &c) +{ + int result = 0; + for (int i = 0; i < c.size(); ++i) + if (c[i].hasMoved()) + ++result; + + return result; +} + +template +void QTBUG10978_test() +{ + QTBUG10978_proceed = false; + + typedef QVarLengthArray Container; + enum { + isStatic = QTypeInfo::isStatic, + isComplex = QTypeInfo::isComplex, + + isPrimitive = !isComplex && !isStatic, + isMovable = !isStatic + }; + + // Constructors + Container a; + QCOMPARE( MyBase::liveCount, 0 ); + QCOMPARE( MyBase::copyCount, 0 ); + + QVERIFY( a.capacity() >= 16 ); + QCOMPARE( a.size(), 0 ); + + Container b_real(8); + Container const &b = b_real; + QCOMPARE( MyBase::liveCount, isPrimitive ? 0 : 8 ); + QCOMPARE( MyBase::copyCount, 0 ); + + QVERIFY( b.capacity() >= 16 ); + QCOMPARE( b.size(), 8 ); + + // Assignment + a = b; + QCOMPARE( MyBase::liveCount, isPrimitive ? 0 : 16 ); + QCOMPARE( MyBase::copyCount, isComplex ? 8 : 0 ); + QVERIFY( a.capacity() >= 16 ); + QCOMPARE( a.size(), 8 ); + + QVERIFY( b.capacity() >= 16 ); + QCOMPARE( b.size(), 8 ); + + // append + a.append(b.data(), b.size()); + QCOMPARE( MyBase::liveCount, isPrimitive ? 0 : 24 ); + QCOMPARE( MyBase::copyCount, isComplex ? 16 : 0 ); + + QVERIFY( a.capacity() >= 16 ); + QCOMPARE( a.size(), 16 ); + + QVERIFY( b.capacity() >= 16 ); + QCOMPARE( b.size(), 8 ); + + // removeLast + a.removeLast(); + QCOMPARE( MyBase::liveCount, isPrimitive ? 0 : 23 ); + QCOMPARE( MyBase::copyCount, isComplex ? 15 : 0 ); + + QVERIFY( a.capacity() >= 16 ); + QCOMPARE( a.size(), 15 ); + + QVERIFY( b.capacity() >= 16 ); + QCOMPARE( b.size(), 8 ); + + // Movable types + const int capacity = a.capacity(); + if (!isPrimitive) + QCOMPARE( countMoved(a), 0 ); + + // Reserve, no re-allocation + a.reserve(capacity); + if (!isPrimitive) + QCOMPARE( countMoved(a), 0 ); + QCOMPARE( MyBase::liveCount, isPrimitive ? 0 : 23 ); + QCOMPARE( MyBase::copyCount, isComplex ? 15 : 0 ); + + QCOMPARE( a.capacity(), capacity ); + QCOMPARE( a.size(), 15 ); + + QVERIFY( b.capacity() >= 16 ); + QCOMPARE( b.size(), 8 ); + + // Reserve, force re-allocation + a.reserve(capacity * 2); + if (!isPrimitive) + QCOMPARE( countMoved(a), isMovable ? 15 : 0 ); + QCOMPARE( MyBase::liveCount, isPrimitive ? 0 : 23 ); + QCOMPARE( MyBase::copyCount, isComplex ? 15 : 0 ); + + QVERIFY( a.capacity() >= capacity * 2 ); + QCOMPARE( a.size(), 15 ); + + QVERIFY( b.capacity() >= 16 ); + QCOMPARE( b.size(), 8 ); + + // resize, grow + a.resize(40); + if (!isPrimitive) + QCOMPARE( countMoved(a), isMovable ? 15 : 0 ); + QCOMPARE( MyBase::liveCount, isPrimitive ? 0 : 48 ); + QCOMPARE( MyBase::copyCount, isComplex ? 15 : 0 ); + + QVERIFY( a.capacity() >= a.size() ); + QCOMPARE( a.size(), 40 ); + + QVERIFY( b.capacity() >= 16 ); + QCOMPARE( b.size(), 8 ); + + // Copy constructor, allocate + { + Container c(a); + if (!isPrimitive) + QCOMPARE( countMoved(c), 0 ); + QCOMPARE( MyBase::liveCount, isPrimitive ? 0 : 88 ); + QCOMPARE( MyBase::copyCount, isComplex ? 55 : 0 ); + + QVERIFY( a.capacity() >= a.size() ); + QCOMPARE( a.size(), 40 ); + + QVERIFY( b.capacity() >= 16 ); + QCOMPARE( b.size(), 8 ); + + QVERIFY( c.capacity() >= 40 ); + QCOMPARE( c.size(), 40 ); + } + + // resize, shrink + a.resize(10); + if (!isPrimitive) + QCOMPARE( countMoved(a), isMovable ? 10 : 0 ); + QCOMPARE( MyBase::liveCount, isPrimitive ? 0 : 18 ); + QCOMPARE( MyBase::copyCount, isComplex ? 10 : 0 ); + + QVERIFY( a.capacity() >= a.size() ); + QCOMPARE( a.size(), 10 ); + + QVERIFY( b.capacity() >= 16 ); + QCOMPARE( b.size(), 8 ); + + // Copy constructor, don't allocate + { + Container c(a); + if (!isPrimitive) + QCOMPARE( countMoved(c), 0 ); + QCOMPARE( MyBase::liveCount, isPrimitive ? 0 : 28 ); + QCOMPARE( MyBase::copyCount, isComplex ? 20 : 0 ); + + QVERIFY( a.capacity() >= a.size() ); + QCOMPARE( a.size(), 10 ); + + QVERIFY( b.capacity() >= 16 ); + QCOMPARE( b.size(), 8 ); + + QVERIFY( c.capacity() >= 16 ); + QCOMPARE( c.size(), 10 ); + } + + a.clear(); + QCOMPARE( a.size(), 0 ); + + b_real.clear(); + QCOMPARE( b.size(), 0 ); + + QCOMPARE(MyBase::errorCount, 0); + QCOMPARE(MyBase::liveCount, 0); + + // All done + QTBUG10978_proceed = true; +} + +void tst_QVarLengthArray::QTBUG10978_realloc() +{ + QTBUG10978_test(); + QVERIFY(QTBUG10978_proceed); + + QTBUG10978_test(); + QVERIFY(QTBUG10978_proceed); + + QTBUG10978_test(); + QVERIFY(QTBUG10978_proceed); + + QTBUG10978_test(); + QVERIFY(QTBUG10978_proceed); +} + QTEST_APPLESS_MAIN(tst_QVarLengthArray) #include "tst_qvarlengtharray.moc" -- cgit v0.12 From 7249e71c722739f35641df35c70a1a5fc5e24a41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Abecasis?= Date: Thu, 27 May 2010 00:39:48 +0200 Subject: Allow auto-test to compile when using namespaces Auto-test added in 8060094144d6104659b8ce3b88d6f8b1e53cfb59 does not compile when using Qt in namespace, because Q_DECLARE_TYPEINFO needs to be used from inside QT_NAMESPACE. Wrapper macros added. Task-number: QTBUG-10978 --- tests/auto/qvarlengtharray/tst_qvarlengtharray.cpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/tests/auto/qvarlengtharray/tst_qvarlengtharray.cpp b/tests/auto/qvarlengtharray/tst_qvarlengtharray.cpp index 0b7dc13..39805e1 100644 --- a/tests/auto/qvarlengtharray/tst_qvarlengtharray.cpp +++ b/tests/auto/qvarlengtharray/tst_qvarlengtharray.cpp @@ -375,22 +375,23 @@ struct MyPrimitive } }; -Q_DECLARE_TYPEINFO(MyPrimitive, Q_PRIMITIVE_TYPE); - struct MyMovable : MyBase { }; -Q_DECLARE_TYPEINFO(MyMovable, Q_MOVABLE_TYPE); - struct MyComplex : MyBase { }; +QT_BEGIN_NAMESPACE + +Q_DECLARE_TYPEINFO(MyPrimitive, Q_PRIMITIVE_TYPE); +Q_DECLARE_TYPEINFO(MyMovable, Q_MOVABLE_TYPE); Q_DECLARE_TYPEINFO(MyComplex, Q_COMPLEX_TYPE); +QT_END_NAMESPACE bool QTBUG10978_proceed = true; -- cgit v0.12 From a5391f187b91aaf9d6932f2ad1e81701e6cd0352 Mon Sep 17 00:00:00 2001 From: Martin Jones Date: Thu, 27 May 2010 08:59:03 +1000 Subject: Remove deprecated Flickable::overshoot property. --- .../graphicsitems/qdeclarativeflickable.cpp | 19 ------------------- .../graphicsitems/qdeclarativeflickable_p.h | 5 ----- 2 files changed, 24 deletions(-) diff --git a/src/declarative/graphicsitems/qdeclarativeflickable.cpp b/src/declarative/graphicsitems/qdeclarativeflickable.cpp index 560d586..1dde510 100644 --- a/src/declarative/graphicsitems/qdeclarativeflickable.cpp +++ b/src/declarative/graphicsitems/qdeclarativeflickable.cpp @@ -1026,24 +1026,6 @@ QDeclarativeListProperty QDeclarativeFlickable::flickableChildr return QGraphicsItemPrivate::get(d->viewport)->childrenList(); } -bool QDeclarativeFlickable::overShoot() const -{ - Q_D(const QDeclarativeFlickable); - return d->boundsBehavior == DragAndOvershootBounds; -} - -void QDeclarativeFlickable::setOverShoot(bool o) -{ - Q_D(QDeclarativeFlickable); - if ((o && d->boundsBehavior == DragAndOvershootBounds) - || (!o && d->boundsBehavior == StopAtBounds)) - return; - qmlInfo(this) << "overshoot is deprecated and will be removed imminently - use boundsBehavior."; - d->boundsBehavior = o ? DragAndOvershootBounds : StopAtBounds; - emit boundsBehaviorChanged(); - emit overShootChanged(); -} - /*! \qmlproperty enumeration Flickable::boundsBehavior This property holds whether the surface may be dragged @@ -1078,7 +1060,6 @@ void QDeclarativeFlickable::setBoundsBehavior(BoundsBehavior b) return; d->boundsBehavior = b; emit boundsBehaviorChanged(); - emit overShootChanged(); } /*! diff --git a/src/declarative/graphicsitems/qdeclarativeflickable_p.h b/src/declarative/graphicsitems/qdeclarativeflickable_p.h index 05887b8..d40a0dc 100644 --- a/src/declarative/graphicsitems/qdeclarativeflickable_p.h +++ b/src/declarative/graphicsitems/qdeclarativeflickable_p.h @@ -64,7 +64,6 @@ class Q_DECLARATIVE_EXPORT QDeclarativeFlickable : public QDeclarativeItem Q_PROPERTY(qreal horizontalVelocity READ horizontalVelocity NOTIFY horizontalVelocityChanged) Q_PROPERTY(qreal verticalVelocity READ verticalVelocity NOTIFY verticalVelocityChanged) - Q_PROPERTY(bool overShoot READ overShoot WRITE setOverShoot NOTIFY overShootChanged) // deprecated Q_PROPERTY(BoundsBehavior boundsBehavior READ boundsBehavior WRITE setBoundsBehavior NOTIFY boundsBehaviorChanged) Q_PROPERTY(qreal maximumFlickVelocity READ maximumFlickVelocity WRITE setMaximumFlickVelocity NOTIFY maximumFlickVelocityChanged) Q_PROPERTY(qreal flickDeceleration READ flickDeceleration WRITE setFlickDeceleration NOTIFY flickDecelerationChanged) @@ -101,9 +100,6 @@ public: QDeclarativeListProperty flickableData(); QDeclarativeListProperty flickableChildren(); - bool overShoot() const; - void setOverShoot(bool); - enum BoundsBehavior { StopAtBounds, DragOverBounds, DragAndOvershootBounds }; BoundsBehavior boundsBehavior() const; void setBoundsBehavior(BoundsBehavior); @@ -172,7 +168,6 @@ Q_SIGNALS: void pageChanged(); void flickableDirectionChanged(); void interactiveChanged(); - void overShootChanged(); void boundsBehaviorChanged(); void maximumFlickVelocityChanged(); void flickDecelerationChanged(); -- cgit v0.12 From 0da1b076bf4e33f239ebe9dc4d8f5363ee24110b Mon Sep 17 00:00:00 2001 From: Martin Jones Date: Thu, 27 May 2010 14:30:23 +1000 Subject: If a pathview delegate changes size, reposition center on path Task-number: QTBUG-11006 --- .../graphicsitems/qdeclarativepathview.cpp | 15 ++++++++++++++ .../graphicsitems/qdeclarativepathview_p.h | 1 + .../graphicsitems/qdeclarativepathview_p_p.h | 24 ++++++++++++++++++---- .../qdeclarativepathview/data/pathview0.qml | 6 ++++-- .../tst_qdeclarativepathview.cpp | 6 ++++++ 5 files changed, 46 insertions(+), 6 deletions(-) diff --git a/src/declarative/graphicsitems/qdeclarativepathview.cpp b/src/declarative/graphicsitems/qdeclarativepathview.cpp index 207cc25..3a69f44 100644 --- a/src/declarative/graphicsitems/qdeclarativepathview.cpp +++ b/src/declarative/graphicsitems/qdeclarativepathview.cpp @@ -110,6 +110,8 @@ QDeclarativeItem *QDeclarativePathViewPrivate::getItem(int modelIndex) att->setOnPath(true); } item->setParentItem(q); + QDeclarativeItemPrivate *itemPrivate = static_cast(QGraphicsItemPrivate::get(item)); + itemPrivate->addItemChangeListener(this, QDeclarativeItemPrivate::Geometry); } requestedIndex = -1; return item; @@ -121,6 +123,8 @@ void QDeclarativePathViewPrivate::releaseItem(QDeclarativeItem *item) return; if (QDeclarativePathViewAttached *att = attached(item)) att->setOnPath(false); + QDeclarativeItemPrivate *itemPrivate = static_cast(QGraphicsItemPrivate::get(item)); + itemPrivate->removeItemChangeListener(this, QDeclarativeItemPrivate::Geometry); model->release(item); } @@ -1084,6 +1088,16 @@ bool QDeclarativePathView::sceneEventFilter(QGraphicsItem *i, QEvent *e) return QDeclarativeItem::sceneEventFilter(i, e); } +bool QDeclarativePathView::event(QEvent *event) +{ + if (event->type() == QEvent::User) { + refill(); + return true; + } + + return QDeclarativeItem::event(event); +} + void QDeclarativePathView::componentComplete() { Q_D(QDeclarativePathView); @@ -1103,6 +1117,7 @@ void QDeclarativePathView::refill() if (!d->isValid() || !isComponentComplete()) return; + d->layoutScheduled = false; bool currentVisible = false; // first move existing items and remove items off path diff --git a/src/declarative/graphicsitems/qdeclarativepathview_p.h b/src/declarative/graphicsitems/qdeclarativepathview_p.h index 349a01c..8a6f53f 100644 --- a/src/declarative/graphicsitems/qdeclarativepathview_p.h +++ b/src/declarative/graphicsitems/qdeclarativepathview_p.h @@ -161,6 +161,7 @@ protected: void mouseReleaseEvent(QGraphicsSceneMouseEvent *); bool sendMouseEvent(QGraphicsSceneMouseEvent *event); bool sceneEventFilter(QGraphicsItem *, QEvent *); + bool event(QEvent *event); void componentComplete(); private Q_SLOTS: diff --git a/src/declarative/graphicsitems/qdeclarativepathview_p_p.h b/src/declarative/graphicsitems/qdeclarativepathview_p_p.h index 303486f..3abb2f4 100644 --- a/src/declarative/graphicsitems/qdeclarativepathview_p_p.h +++ b/src/declarative/graphicsitems/qdeclarativepathview_p_p.h @@ -68,7 +68,7 @@ QT_BEGIN_NAMESPACE class QDeclarativeOpenMetaObjectType; class QDeclarativePathViewAttached; -class QDeclarativePathViewPrivate : public QDeclarativeItemPrivate +class QDeclarativePathViewPrivate : public QDeclarativeItemPrivate, public QDeclarativeItemChangeListener { Q_DECLARE_PUBLIC(QDeclarativePathView) @@ -77,7 +77,8 @@ public: : path(0), currentIndex(0), currentItemOffset(0.0), startPc(0), lastDist(0) , lastElapsed(0), mappedRange(1.0) , stealMouse(false), ownModel(false), interactive(true), haveHighlightRange(true) - , autoHighlight(true), highlightUp(false), dragMargin(0), deceleration(100) + , autoHighlight(true), highlightUp(false), layoutScheduled(false) + , dragMargin(0), deceleration(100) , moveOffset(this, &QDeclarativePathViewPrivate::setOffset) , firstIndex(-1), pathItems(-1), requestedIndex(-1) , moveReason(Other), attType(0), highlightComponent(0), highlightItem(0) @@ -89,8 +90,7 @@ public: { } - void init() - { + void init() { Q_Q(QDeclarativePathView); offset = 0; q->setAcceptedMouseButtons(Qt::LeftButton); @@ -99,6 +99,21 @@ public: q->connect(&tl, SIGNAL(updated()), q, SLOT(ticked())); } + void itemGeometryChanged(QDeclarativeItem *item, const QRectF &newGeometry, const QRectF &oldGeometry) { + if ((newGeometry.size() != oldGeometry.size()) + && (!highlightItem || item != highlightItem)) { + scheduleLayout(); + } + } + + void scheduleLayout() { + Q_Q(QDeclarativePathView); + if (!layoutScheduled) { + layoutScheduled = true; + QCoreApplication::postEvent(q, new QEvent(QEvent::User), Qt::HighEventPriority); + } + } + QDeclarativeItem *getItem(int modelIndex); void releaseItem(QDeclarativeItem *item); QDeclarativePathViewAttached *attached(QDeclarativeItem *item); @@ -138,6 +153,7 @@ public: bool haveHighlightRange : 1; bool autoHighlight : 1; bool highlightUp : 1; + bool layoutScheduled : 1; QTime lastPosTime; QPointF lastPos; qreal dragMargin; diff --git a/tests/auto/declarative/qdeclarativepathview/data/pathview0.qml b/tests/auto/declarative/qdeclarativepathview/data/pathview0.qml index a3afd38..8956205 100644 --- a/tests/auto/declarative/qdeclarativepathview/data/pathview0.qml +++ b/tests/auto/declarative/qdeclarativepathview/data/pathview0.qml @@ -4,6 +4,8 @@ Rectangle { id: root property int currentA: -1 property int currentB: -1 + property real delegateWidth: 60 + property real delegateHeight: 20 width: 240 height: 320 color: "#ffffff" @@ -13,8 +15,8 @@ Rectangle { Rectangle { id: wrapper objectName: "wrapper" - height: 20 - width: 60 + height: root.delegateHeight + width: root.delegateWidth color: PathView.isCurrentItem ? "lightsteelblue" : "white" border.color: "black" Text { diff --git a/tests/auto/declarative/qdeclarativepathview/tst_qdeclarativepathview.cpp b/tests/auto/declarative/qdeclarativepathview/tst_qdeclarativepathview.cpp index f32a6c7..dffc7ac 100644 --- a/tests/auto/declarative/qdeclarativepathview/tst_qdeclarativepathview.cpp +++ b/tests/auto/declarative/qdeclarativepathview/tst_qdeclarativepathview.cpp @@ -445,6 +445,12 @@ void tst_QDeclarativePathView::pathMoved() pathview->setOffset(0.0); QCOMPARE(firstItem->pos() + offset, start); + // Change delegate size + canvas->rootObject()->setProperty("delegateWidth", 30); + QCOMPARE(firstItem->width(), 30.0); + offset.setX(firstItem->width()/2); + QTRY_COMPARE(firstItem->pos() + offset, start); + delete canvas; } -- cgit v0.12 From f1603f8a4bd3027be201920fa99c9370264bee03 Mon Sep 17 00:00:00 2001 From: Aaron Kennedy Date: Thu, 27 May 2010 15:21:28 +1000 Subject: Improve QML framerate debugging --- src/declarative/debugger/debugger.pri | 6 +- .../debugger/qdeclarativedebugservice.cpp | 11 +++ .../debugger/qdeclarativedebugtiming.cpp | 95 +++++++++++++++++++++ .../debugger/qdeclarativedebugtiming_p.h | 96 +++++++++++++++++++++ src/declarative/qml/qdeclarativecomponent.cpp | 8 ++ src/declarative/util/qdeclarativeview.cpp | 98 +++++++++++----------- 6 files changed, 265 insertions(+), 49 deletions(-) create mode 100644 src/declarative/debugger/qdeclarativedebugtiming.cpp create mode 100644 src/declarative/debugger/qdeclarativedebugtiming_p.h diff --git a/src/declarative/debugger/debugger.pri b/src/declarative/debugger/debugger.pri index dedea55..6777868 100644 --- a/src/declarative/debugger/debugger.pri +++ b/src/declarative/debugger/debugger.pri @@ -5,11 +5,13 @@ SOURCES += \ $$PWD/qpacketprotocol.cpp \ $$PWD/qdeclarativedebugservice.cpp \ $$PWD/qdeclarativedebugclient.cpp \ - $$PWD/qdeclarativedebug.cpp + $$PWD/qdeclarativedebug.cpp \ + $$PWD/qdeclarativedebugtiming.cpp HEADERS += \ $$PWD/qdeclarativedebuggerstatus_p.h \ $$PWD/qpacketprotocol_p.h \ $$PWD/qdeclarativedebugservice_p.h \ $$PWD/qdeclarativedebugclient_p.h \ - $$PWD/qdeclarativedebug_p.h + $$PWD/qdeclarativedebug_p.h \ + $$PWD/qdeclarativedebugtiming_p.h diff --git a/src/declarative/debugger/qdeclarativedebugservice.cpp b/src/declarative/debugger/qdeclarativedebugservice.cpp index 34e73fd..dca2695 100644 --- a/src/declarative/debugger/qdeclarativedebugservice.cpp +++ b/src/declarative/debugger/qdeclarativedebugservice.cpp @@ -61,6 +61,7 @@ class QDeclarativeDebugServer : public QObject public: static QDeclarativeDebugServer *instance(); void listen(); + void waitForConnection(); bool hasDebuggingClient() const; private Q_SLOTS: @@ -115,6 +116,12 @@ void QDeclarativeDebugServer::listen() qWarning("QDeclarativeDebugServer: Unable to listen on port %d", d->port); } +void QDeclarativeDebugServer::waitForConnection() +{ + Q_D(QDeclarativeDebugServer); + d->tcpServer->waitForNewConnection(-1); +} + void QDeclarativeDebugServer::newConnection() { Q_D(QDeclarativeDebugServer); @@ -144,6 +151,7 @@ QDeclarativeDebugServer *QDeclarativeDebugServer::instance() if (!envTested) { envTested = true; QByteArray env = qgetenv("QML_DEBUG_SERVER_PORT"); + QByteArray block = qgetenv("QML_DEBUG_SERVER_BLOCK"); bool ok = false; int port = env.toInt(&ok); @@ -151,6 +159,9 @@ QDeclarativeDebugServer *QDeclarativeDebugServer::instance() if (ok && port > 1024) { server = new QDeclarativeDebugServer(port); server->listen(); + if (!block.isEmpty()) { + server->waitForConnection(); + } } } diff --git a/src/declarative/debugger/qdeclarativedebugtiming.cpp b/src/declarative/debugger/qdeclarativedebugtiming.cpp new file mode 100644 index 0000000..5b93852 --- /dev/null +++ b/src/declarative/debugger/qdeclarativedebugtiming.cpp @@ -0,0 +1,95 @@ +/**************************************************************************** +** +** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the QtDeclarative module of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** No Commercial Usage +** This file contains pre-release code and may not be distributed. +** You may use this file in accordance with the terms and conditions +** contained in the Technology Preview License Agreement accompanying +** this package. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Nokia gives you certain additional +** rights. These rights are described in the Nokia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +#include "qdeclarativedebugtiming_p.h" + +#include + +Q_GLOBAL_STATIC(QDeclarativeDebugTiming, timerInstance); + +QDeclarativeDebugTiming::QDeclarativeDebugTiming() +: QDeclarativeDebugService(QLatin1String("CanvasFrameRate")) +{ + m_timer.start(); +} + +void QDeclarativeDebugTiming::addEvent(EventType t) +{ + if (QDeclarativeDebugService::isDebuggingEnabled()) + timerInstance()->addEventImpl(t); +} + +void QDeclarativeDebugTiming::startRange(RangeType t) +{ + if (QDeclarativeDebugService::isDebuggingEnabled()) + timerInstance()->startRangeImpl(t); +} + +void QDeclarativeDebugTiming::endRange(RangeType t) +{ + if (QDeclarativeDebugService::isDebuggingEnabled()) + timerInstance()->endRangeImpl(t); +} + +void QDeclarativeDebugTiming::addEventImpl(EventType event) +{ + QByteArray data; + QDataStream ds(&data, QIODevice::WriteOnly); + ds << m_timer.elapsed() << (int)Event << (int)event; + sendMessage(data); +} + +void QDeclarativeDebugTiming::startRangeImpl(RangeType range) +{ + QByteArray data; + QDataStream ds(&data, QIODevice::WriteOnly); + ds << m_timer.elapsed() << (int)RangeStart << (int)range; + sendMessage(data); +} + +void QDeclarativeDebugTiming::endRangeImpl(RangeType range) +{ + QByteArray data; + QDataStream ds(&data, QIODevice::WriteOnly); + ds << m_timer.elapsed() << (int)RangeEnd << (int)range; + sendMessage(data); +} + diff --git a/src/declarative/debugger/qdeclarativedebugtiming_p.h b/src/declarative/debugger/qdeclarativedebugtiming_p.h new file mode 100644 index 0000000..d9ed67c --- /dev/null +++ b/src/declarative/debugger/qdeclarativedebugtiming_p.h @@ -0,0 +1,96 @@ +/**************************************************************************** +** +** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the QtDeclarative module of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** No Commercial Usage +** This file contains pre-release code and may not be distributed. +** You may use this file in accordance with the terms and conditions +** contained in the Technology Preview License Agreement accompanying +** this package. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Nokia gives you certain additional +** rights. These rights are described in the Nokia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +#ifndef QDECLARATIVEDEBUGTIMING_P_H +#define QDECLARATIVEDEBUGTIMING_P_H + +#include +#include + +QT_BEGIN_HEADER + +QT_BEGIN_NAMESPACE + +class QDeclarativeDebugTiming : public QDeclarativeDebugService +{ +public: + enum EventType { + FramePaint, + Mouse, + Key, + + MaximumEventType + }; + + enum Message { + Event, + RangeStart, + RangeEnd, + + MaximumMessage + }; + + enum RangeType { + Painting, + Compiling, + Creating, + + MaximumRangeType + }; + + static void addEvent(EventType); + static void startRange(RangeType); + static void endRange(RangeType); + + QDeclarativeDebugTiming(); +private: + void addEventImpl(EventType); + void startRangeImpl(RangeType); + void endRangeImpl(RangeType); + QElapsedTimer m_timer; +}; + +QT_END_NAMESPACE + +QT_END_HEADER + +#endif // QDECLARATIVEDEBUGTIMING_P_H + diff --git a/src/declarative/qml/qdeclarativecomponent.cpp b/src/declarative/qml/qdeclarativecomponent.cpp index 7aa17e8..2dc2d2d 100644 --- a/src/declarative/qml/qdeclarativecomponent.cpp +++ b/src/declarative/qml/qdeclarativecomponent.cpp @@ -53,6 +53,7 @@ #include "private/qdeclarativebinding_p_p.h" #include "private/qdeclarativeglobal_p.h" #include "private/qdeclarativescriptparser_p.h" +#include "private/qdeclarativedebugtiming_p.h" #include #include @@ -693,6 +694,10 @@ QDeclarativeComponentPrivate::beginCreate(QDeclarativeContextData *context, cons QDeclarativeEnginePrivate *ep = QDeclarativeEnginePrivate::get(engine); + bool isRoot = !ep->inBeginCreate; + if (isRoot) + QDeclarativeDebugTiming::startRange(QDeclarativeDebugTiming::Creating); + QDeclarativeContextData *ctxt = new QDeclarativeContextData; ctxt->isInternal = true; ctxt->url = cc->url; @@ -839,6 +844,7 @@ void QDeclarativeComponentPrivate::complete(QDeclarativeEnginePrivate *enginePri enginePriv->erroredBindings->removeError(); } } + } } @@ -860,6 +866,8 @@ void QDeclarativeComponentPrivate::completeCreate() if (state.completePending) { QDeclarativeEnginePrivate *ep = QDeclarativeEnginePrivate::get(engine); complete(ep, &state); + + QDeclarativeDebugTiming::endRange(QDeclarativeDebugTiming::Creating); } } diff --git a/src/declarative/util/qdeclarativeview.cpp b/src/declarative/util/qdeclarativeview.cpp index b7ce9c9..d2dab76 100644 --- a/src/declarative/util/qdeclarativeview.cpp +++ b/src/declarative/util/qdeclarativeview.cpp @@ -45,11 +45,11 @@ #include #include #include -#include -#include #include #include +#include + #include #include #include @@ -66,66 +66,64 @@ #include #include #include +#include #include QT_BEGIN_NAMESPACE DEFINE_BOOL_CONFIG_OPTION(frameRateDebug, QML_SHOW_FRAMERATE) -class QDeclarativeViewDebugServer; -class FrameBreakAnimation : public QAbstractAnimation +class QDeclarativeScene : public QGraphicsScene { public: - FrameBreakAnimation(QDeclarativeViewDebugServer *s) - : QAbstractAnimation((QObject*)s), server(s) - { - start(); - } + QDeclarativeScene(); - virtual int duration() const { return -1; } - virtual void updateCurrentTime(int msecs); +protected: + virtual void keyPressEvent(QKeyEvent *); + virtual void keyReleaseEvent(QKeyEvent *); -private: - QDeclarativeViewDebugServer *server; + virtual void mouseMoveEvent(QGraphicsSceneMouseEvent *); + virtual void mousePressEvent(QGraphicsSceneMouseEvent *); + virtual void mouseReleaseEvent(QGraphicsSceneMouseEvent *); }; -class QDeclarativeViewDebugServer : public QDeclarativeDebugService +QDeclarativeScene::QDeclarativeScene() { -public: - QDeclarativeViewDebugServer(QObject *parent = 0) : QDeclarativeDebugService(QLatin1String("CanvasFrameRate"), parent), breaks(0) - { - timer.start(); - new FrameBreakAnimation(this); - } +} - void addTiming(int pe, int tbf) - { - if (!isEnabled()) - return; - - bool isFrameBreak = breaks > 1; - breaks = 0; - int e = timer.elapsed(); - QByteArray data; - QDataStream ds(&data, QIODevice::WriteOnly); - ds << (int)pe << (int)tbf << (int)e - << (bool)isFrameBreak; - sendMessage(data); - } +void QDeclarativeScene::keyPressEvent(QKeyEvent *e) +{ + QDeclarativeDebugTiming::addEvent(QDeclarativeDebugTiming::Key); - void frameBreak() { ++breaks; } + QGraphicsScene::keyPressEvent(e); +} -private: - QElapsedTimer timer; - int breaks; -}; +void QDeclarativeScene::keyReleaseEvent(QKeyEvent *e) +{ + QDeclarativeDebugTiming::addEvent(QDeclarativeDebugTiming::Key); -Q_GLOBAL_STATIC(QDeclarativeViewDebugServer, qfxViewDebugServer); + QGraphicsScene::keyReleaseEvent(e); +} -void FrameBreakAnimation::updateCurrentTime(int msecs) +void QDeclarativeScene::mouseMoveEvent(QGraphicsSceneMouseEvent *e) { - Q_UNUSED(msecs); - server->frameBreak(); + QDeclarativeDebugTiming::addEvent(QDeclarativeDebugTiming::Mouse); + + QGraphicsScene::mouseMoveEvent(e); +} + +void QDeclarativeScene::mousePressEvent(QGraphicsSceneMouseEvent *e) +{ + QDeclarativeDebugTiming::addEvent(QDeclarativeDebugTiming::Mouse); + + QGraphicsScene::mousePressEvent(e); +} + +void QDeclarativeScene::mouseReleaseEvent(QGraphicsSceneMouseEvent *e) +{ + QDeclarativeDebugTiming::addEvent(QDeclarativeDebugTiming::Mouse); + + QGraphicsScene::mouseReleaseEvent(e); } class QDeclarativeViewPrivate : public QGraphicsViewPrivate, public QDeclarativeItemChangeListener @@ -156,7 +154,7 @@ public: void init(); - QGraphicsScene scene; + QDeclarativeScene scene; }; void QDeclarativeViewPrivate::execute() @@ -676,12 +674,18 @@ void QDeclarativeView::resizeEvent(QResizeEvent *e) void QDeclarativeView::paintEvent(QPaintEvent *event) { Q_D(QDeclarativeView); + + QDeclarativeDebugTiming::addEvent(QDeclarativeDebugTiming::FramePaint); + QDeclarativeDebugTiming::startRange(QDeclarativeDebugTiming::Painting); + int time = 0; - if (frameRateDebug() || QDeclarativeViewDebugServer::isDebuggingEnabled()) + if (frameRateDebug()) time = d->frameTimer.restart(); + QGraphicsView::paintEvent(event); - if (QDeclarativeViewDebugServer::isDebuggingEnabled()) - qfxViewDebugServer()->addTiming(d->frameTimer.elapsed(), time); + + QDeclarativeDebugTiming::endRange(QDeclarativeDebugTiming::Painting); + if (frameRateDebug()) qDebug() << "paintEvent:" << d->frameTimer.elapsed() << "time since last frame:" << time; } -- cgit v0.12 From 7cc8e62f74f66f20c216a8bc8c3187c989a3dcb4 Mon Sep 17 00:00:00 2001 From: Eskil Abrahamsen Blomfeldt Date: Thu, 27 May 2010 09:08:14 +0200 Subject: Optimize initialization of QStaticText Since QStaticText would be created once and used often, not much thought was put into optimizing its initialization. For simplicity, the code would do two drawText() passes. Since this was an unnecessary overhead, the extra pass has been removed and replaced by memmoves instead. Initialization is now twice as fast. Reviewed-by: Samuel --- src/gui/text/qstatictext.cpp | 163 +++++++++++++++++++++++-------------------- src/gui/text/qstatictext_p.h | 19 +++-- 2 files changed, 101 insertions(+), 81 deletions(-) diff --git a/src/gui/text/qstatictext.cpp b/src/gui/text/qstatictext.cpp index c7817c6..2889a96 100644 --- a/src/gui/text/qstatictext.cpp +++ b/src/gui/text/qstatictext.cpp @@ -363,23 +363,24 @@ QSizeF QStaticText::size() const } QStaticTextPrivate::QStaticTextPrivate() - : textWidth(-1.0), items(0), itemCount(0), glyphPool(0), positionPool(0), + : textWidth(-1.0), items(0), itemCount(0), glyphPool(0), positionPool(0), charPool(0), needsRelayout(true), useBackendOptimizations(false), textFormat(Qt::AutoText) { } QStaticTextPrivate::QStaticTextPrivate(const QStaticTextPrivate &other) : text(other.text), font(other.font), textWidth(other.textWidth), matrix(other.matrix), - items(0), itemCount(0), glyphPool(0), positionPool(0), needsRelayout(true), + items(0), itemCount(0), glyphPool(0), positionPool(0), charPool(0), needsRelayout(true), useBackendOptimizations(other.useBackendOptimizations), textFormat(other.textFormat) { } QStaticTextPrivate::~QStaticTextPrivate() { - delete[] items; + delete[] items; delete[] glyphPool; delete[] positionPool; + delete[] charPool; } QStaticTextPrivate *QStaticTextPrivate::get(const QStaticText *q) @@ -395,15 +396,8 @@ namespace { class DrawTextItemRecorder: public QPaintEngine { public: - DrawTextItemRecorder(int expectedItemCount, QStaticTextItem *items, - int expectedGlyphCount, QFixedPoint *positionPool, glyph_t *glyphPool) - : m_items(items), - m_itemCount(0), m_glyphCount(0), - m_expectedItemCount(expectedItemCount), - m_expectedGlyphCount(expectedGlyphCount), - m_glyphPool(glyphPool), - m_positionPool(positionPool), - m_dirtyPen(false) + DrawTextItemRecorder(bool useBackendOptimizations, int numChars) + : m_dirtyPen(false), m_useBackendOptimizations(useBackendOptimizations) { } @@ -415,26 +409,19 @@ namespace { virtual void drawTextItem(const QPointF &position, const QTextItem &textItem) { - const QTextItemInt &ti = static_cast(textItem); - - m_itemCount++; - m_glyphCount += ti.glyphs.numGlyphs; - if (m_items == 0) - return; - - Q_ASSERT(m_itemCount <= m_expectedItemCount); - Q_ASSERT(m_glyphCount <= m_expectedGlyphCount); - - QStaticTextItem *currentItem = (m_items + (m_itemCount - 1)); - currentItem->fontEngine = ti.fontEngine; - currentItem->font = ti.font(); - currentItem->chars = ti.chars; - currentItem->numChars = ti.num_chars; - currentItem->numGlyphs = ti.glyphs.numGlyphs; - currentItem->glyphs = m_glyphPool; - currentItem->glyphPositions = m_positionPool; + const QTextItemInt &ti = static_cast(textItem); + + QStaticTextItem currentItem; + currentItem.fontEngine = ti.fontEngine; + currentItem.font = ti.font(); + currentItem.charOffset = m_chars.size(); + currentItem.numChars = ti.num_chars; + currentItem.numGlyphs = ti.glyphs.numGlyphs; + currentItem.glyphOffset = m_glyphs.size(); // Store offset into glyph pool + currentItem.positionOffset = m_glyphs.size(); // Offset into position pool + currentItem.useBackendOptimizations = m_useBackendOptimizations; if (m_dirtyPen) - currentItem->color = state->pen().color(); + currentItem.color = state->pen().color(); QTransform matrix = state->transform(); matrix.translate(position.x(), position.y()); @@ -447,13 +434,21 @@ namespace { Q_ASSERT(size == ti.glyphs.numGlyphs); Q_ASSERT(size == positions.size()); - memmove(currentItem->glyphs, glyphs.constData(), sizeof(glyph_t) * size); - memmove(currentItem->glyphPositions, positions.constData(), sizeof(QFixedPoint) * size); + m_glyphs.resize(m_glyphs.size() + size); + m_positions.resize(m_glyphs.size()); + m_chars.resize(m_chars.size() + ti.num_chars); - m_glyphPool += size; - m_positionPool += size; - } + glyph_t *glyphsDestination = m_glyphs.data() + currentItem.glyphOffset; + memmove(glyphsDestination, glyphs.constData(), sizeof(glyph_t) * currentItem.numGlyphs); + QFixedPoint *positionsDestination = m_positions.data() + currentItem.positionOffset; + memmove(positionsDestination, positions.constData(), sizeof(QFixedPoint) * currentItem.numGlyphs); + + QChar *charsDestination = m_chars.data() + currentItem.charOffset; + memmove(charsDestination, ti.chars, sizeof(QChar) * currentItem.numChars); + + m_items.append(currentItem); + } virtual bool begin(QPaintDevice *) { return true; } virtual bool end() { return true; } @@ -463,38 +458,42 @@ namespace { return User; } - int itemCount() const + QVector items() const { - return m_itemCount; + return m_items; } - int glyphCount() const + QVector positions() const { - return m_glyphCount; + return m_positions; } - private: - QStaticTextItem *m_items; - int m_itemCount; - int m_glyphCount; - int m_expectedItemCount; - int m_expectedGlyphCount; + QVector glyphs() const + { + return m_glyphs; + } + + QVector chars() const + { + return m_chars; + } - glyph_t *m_glyphPool; - QFixedPoint *m_positionPool; + private: + QVector m_items; + QVector m_positions; + QVector m_glyphs; + QVector m_chars; bool m_dirtyPen; + bool m_useBackendOptimizations; }; class DrawTextItemDevice: public QPaintDevice { public: - DrawTextItemDevice(int expectedItemCount = -1, QStaticTextItem *items = 0, - int expectedGlyphCount = -1, QFixedPoint *positionPool = 0, - glyph_t *glyphPool = 0) + DrawTextItemDevice(bool useBackendOptimizations, int numChars) { - m_paintEngine = new DrawTextItemRecorder(expectedItemCount, items, - expectedGlyphCount, positionPool, glyphPool); + m_paintEngine = new DrawTextItemRecorder(useBackendOptimizations, numChars); } ~DrawTextItemDevice() @@ -538,14 +537,24 @@ namespace { return m_paintEngine; } - int itemCount() const + QVector glyphs() const { - return m_paintEngine->itemCount(); + return m_paintEngine->glyphs(); } - int glyphCount() const + QVector positions() const { - return m_paintEngine->glyphCount(); + return m_paintEngine->positions(); + } + + QVector items() const + { + return m_paintEngine->items(); + } + + QVector chars() const + { + return m_paintEngine->chars(); } private: @@ -616,42 +625,42 @@ void QStaticTextPrivate::init() delete[] items; delete[] glyphPool; delete[] positionPool; + delete[] charPool; position = QPointF(0, 0); - // Draw once to count number of items and glyphs, so that we can use as little memory - // as possible to store the data - DrawTextItemDevice counterDevice; + DrawTextItemDevice device(useBackendOptimizations, text.size()); { - QPainter painter(&counterDevice); + QPainter painter(&device); painter.setFont(font); painter.setTransform(matrix); paintText(QPointF(0, 0), &painter); - } - itemCount = counterDevice.itemCount(); + QVector deviceItems = device.items(); + QVector positions = device.positions(); + QVector glyphs = device.glyphs(); + QVector chars = device.chars(); + + itemCount = deviceItems.size(); items = new QStaticTextItem[itemCount]; - if (useBackendOptimizations) { - for (int i=0; i Date: Thu, 27 May 2010 09:52:25 +0200 Subject: Fixed compilation of QtOpenGL. Reviewed-by: Eskil --- src/opengl/gl2paintengineex/qpaintengineex_opengl2.cpp | 2 +- src/opengl/qpaintengine_opengl.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/opengl/gl2paintengineex/qpaintengineex_opengl2.cpp b/src/opengl/gl2paintengineex/qpaintengineex_opengl2.cpp index 4461358..5758b25 100644 --- a/src/opengl/gl2paintengineex/qpaintengineex_opengl2.cpp +++ b/src/opengl/gl2paintengineex/qpaintengineex_opengl2.cpp @@ -1401,7 +1401,7 @@ void QGL2PaintEngineEx::drawTextItem(const QPointF &p, const QTextItem &textItem { QStaticTextItem staticTextItem; - staticTextItem.chars = ti.chars; + staticTextItem.chars = const_cast(ti.chars); staticTextItem.fontEngine = ti.fontEngine; staticTextItem.glyphs = glyphs.data(); staticTextItem.numChars = ti.num_chars; diff --git a/src/opengl/qpaintengine_opengl.cpp b/src/opengl/qpaintengine_opengl.cpp index 28d37bc..12c487d 100644 --- a/src/opengl/qpaintengine_opengl.cpp +++ b/src/opengl/qpaintengine_opengl.cpp @@ -4999,7 +4999,7 @@ void QOpenGLPaintEngine::drawTextItem(const QPointF &p, const QTextItem &textIte { QStaticTextItem staticTextItem; - staticTextItem.chars = ti.chars; + staticTextItem.chars = const_cast(ti.chars); staticTextItem.fontEngine = ti.fontEngine; staticTextItem.glyphs = glyphs.data(); staticTextItem.numChars = ti.num_chars; -- cgit v0.12 From 1f40fe507e6b6c74144cbb998cc91f88f9e33168 Mon Sep 17 00:00:00 2001 From: Kent Hansen Date: Wed, 26 May 2010 15:11:34 +0200 Subject: Ensure that activation object has been created before popping scope of native context One shouldn't have to call activationObject() or scopeChain() before calling popScope(); the scope chain should always have 2 items (activation and global object) before we start popping anything from the internal chain. Task-number: QTBUG-11020 Reviewed-by: Olivier Goffart --- src/script/api/qscriptcontext.cpp | 1 + tests/auto/qscriptcontext/tst_qscriptcontext.cpp | 45 ++++++++++++++++++++++++ 2 files changed, 46 insertions(+) diff --git a/src/script/api/qscriptcontext.cpp b/src/script/api/qscriptcontext.cpp index 639af80..3f08e74 100644 --- a/src/script/api/qscriptcontext.cpp +++ b/src/script/api/qscriptcontext.cpp @@ -742,6 +742,7 @@ void QScriptContext::pushScope(const QScriptValue &object) */ QScriptValue QScriptContext::popScope() { + activationObject(); //ensure the creation of the normal scope for native context JSC::CallFrame *frame = QScriptEnginePrivate::frameForContext(this); JSC::ScopeChainNode *scope = frame->scopeChain(); Q_ASSERT(scope != 0); diff --git a/tests/auto/qscriptcontext/tst_qscriptcontext.cpp b/tests/auto/qscriptcontext/tst_qscriptcontext.cpp index 100e195..617c183 100644 --- a/tests/auto/qscriptcontext/tst_qscriptcontext.cpp +++ b/tests/auto/qscriptcontext/tst_qscriptcontext.cpp @@ -84,6 +84,7 @@ private slots: void jsActivationObject(); void qobjectAsActivationObject(); void parentContextCallee_QT2270(); + void popNativeContextScope(); }; tst_QScriptContext::tst_QScriptContext() @@ -539,6 +540,50 @@ void tst_QScriptContext::pushAndPopContext() } } +void tst_QScriptContext::popNativeContextScope() +{ + QScriptEngine eng; + QScriptContext *ctx = eng.pushContext(); + QVERIFY(ctx->popScope().isObject()); // the activation object + + QCOMPARE(ctx->scopeChain().size(), 1); + QVERIFY(ctx->scopeChain().at(0).strictlyEquals(eng.globalObject())); + // This was different in 4.5: scope and activation were decoupled + QVERIFY(ctx->activationObject().strictlyEquals(eng.globalObject())); + + QVERIFY(!eng.evaluate("var foo = 123; function bar() {}").isError()); + QVERIFY(eng.globalObject().property("foo").isNumber()); + QVERIFY(eng.globalObject().property("bar").isFunction()); + + QScriptValue customScope = eng.newObject(); + ctx->pushScope(customScope); + QCOMPARE(ctx->scopeChain().size(), 2); + QVERIFY(ctx->scopeChain().at(0).strictlyEquals(customScope)); + QVERIFY(ctx->scopeChain().at(1).strictlyEquals(eng.globalObject())); + QVERIFY(ctx->activationObject().strictlyEquals(eng.globalObject())); + ctx->setActivationObject(customScope); + QVERIFY(ctx->activationObject().strictlyEquals(customScope)); + QCOMPARE(ctx->scopeChain().size(), 2); + QVERIFY(ctx->scopeChain().at(0).strictlyEquals(customScope)); + QEXPECT_FAIL("", "QTBUG-11012", Continue); + QVERIFY(ctx->scopeChain().at(1).strictlyEquals(eng.globalObject())); + + QVERIFY(!eng.evaluate("baz = 456; var foo = 789; function barbar() {}").isError()); + QEXPECT_FAIL("", "QTBUG-11012", Continue); + QVERIFY(eng.globalObject().property("baz").isNumber()); + QVERIFY(customScope.property("foo").isNumber()); + QVERIFY(customScope.property("barbar").isFunction()); + + QVERIFY(ctx->popScope().strictlyEquals(customScope)); + QCOMPARE(ctx->scopeChain().size(), 1); + QEXPECT_FAIL("", "QTBUG-11012", Continue); + QVERIFY(ctx->scopeChain().at(0).strictlyEquals(eng.globalObject())); + + // Need to push another object, otherwise we crash in popContext() (QTBUG-11012) + ctx->pushScope(customScope); + eng.popContext(); +} + void tst_QScriptContext::lineNumber() { QScriptEngine eng; -- cgit v0.12 From ea68e4ddcf903bde74ded9d588a09863491d1d56 Mon Sep 17 00:00:00 2001 From: Eskil Abrahamsen Blomfeldt Date: Thu, 27 May 2010 10:28:52 +0200 Subject: Replace memmove with memcpy qMemCopy is faster than memmove, and there's no chance of overlapping source and destination memory in these cases. Reviewed-by: Samuel --- src/gui/text/qstatictext.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/gui/text/qstatictext.cpp b/src/gui/text/qstatictext.cpp index 2889a96..84c1d96 100644 --- a/src/gui/text/qstatictext.cpp +++ b/src/gui/text/qstatictext.cpp @@ -439,13 +439,13 @@ namespace { m_chars.resize(m_chars.size() + ti.num_chars); glyph_t *glyphsDestination = m_glyphs.data() + currentItem.glyphOffset; - memmove(glyphsDestination, glyphs.constData(), sizeof(glyph_t) * currentItem.numGlyphs); + qMemCopy(glyphsDestination, glyphs.constData(), sizeof(glyph_t) * currentItem.numGlyphs); QFixedPoint *positionsDestination = m_positions.data() + currentItem.positionOffset; - memmove(positionsDestination, positions.constData(), sizeof(QFixedPoint) * currentItem.numGlyphs); + qMemCopy(positionsDestination, positions.constData(), sizeof(QFixedPoint) * currentItem.numGlyphs); QChar *charsDestination = m_chars.data() + currentItem.charOffset; - memmove(charsDestination, ti.chars, sizeof(QChar) * currentItem.numChars); + qMemCopy(charsDestination, ti.chars, sizeof(QChar) * currentItem.numChars); m_items.append(currentItem); } @@ -647,13 +647,13 @@ void QStaticTextPrivate::init() items = new QStaticTextItem[itemCount]; glyphPool = new glyph_t[glyphs.size()]; - memmove(glyphPool, glyphs.constData(), glyphs.size() * sizeof(glyph_t)); + qMemCopy(glyphPool, glyphs.constData(), glyphs.size() * sizeof(glyph_t)); positionPool = new QFixedPoint[positions.size()]; - memmove(positionPool, positions.constData(), positions.size() * sizeof(QFixedPoint)); + qMemCopy(positionPool, positions.constData(), positions.size() * sizeof(QFixedPoint)); charPool = new QChar[chars.size()]; - memmove(charPool, chars.constData(), chars.size() * sizeof(QChar)); + qMemCopy(charPool, chars.constData(), chars.size() * sizeof(QChar)); for (int i=0; i Date: Thu, 27 May 2010 10:40:23 +0200 Subject: Fix compilation for tst_qtextcodec with QT_NO_CONCURRENT defined. --- tests/auto/qtextcodec/tst_qtextcodec.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/auto/qtextcodec/tst_qtextcodec.cpp b/tests/auto/qtextcodec/tst_qtextcodec.cpp index aa97e87..149efae 100644 --- a/tests/auto/qtextcodec/tst_qtextcodec.cpp +++ b/tests/auto/qtextcodec/tst_qtextcodec.cpp @@ -1938,6 +1938,7 @@ static int loadAndConvertMIB(int mib) void tst_QTextCodec::threadSafety() { +#ifndef QT_NO_CONCURRENT QThreadPool::globalInstance()->setMaxThreadCount(12); QList codecList = QTextCodec::availableCodecs(); @@ -1948,6 +1949,9 @@ void tst_QTextCodec::threadSafety() QCOMPARE(res.results(), codecList); QCOMPARE(res2.results(), mibList); +#else + QSKIP("This function is not yet supported with QT_NO_CONCURRENT defined.", SkipAll); +#endif } QTEST_MAIN(tst_QTextCodec) -- cgit v0.12 From fe824f6175ebbeb1940872275b31f9894d056ad0 Mon Sep 17 00:00:00 2001 From: Denis Dzyubenko Date: Wed, 26 May 2010 16:09:49 +0200 Subject: Added support for Indonesian language on Symbian. We have support for ELangIndonesian, but we also need to support new ELangIndonesian_Apac which has appeared in Symbian^3. Task-number: QT-3369 Reviewed-by: trustme --- src/corelib/tools/qlocale_symbian.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/corelib/tools/qlocale_symbian.cpp b/src/corelib/tools/qlocale_symbian.cpp index 1e674af..458bb2a 100644 --- a/src/corelib/tools/qlocale_symbian.cpp +++ b/src/corelib/tools/qlocale_symbian.cpp @@ -159,8 +159,9 @@ static const symbianToISO symbian_to_iso_list[] = { { ELangEnglish_Prc, "en_CN" }, // 159 ### Not supported by CLDR { ELangEnglish_Japan, "en_JP"}, // 160 ### Not supported by CLDR { ELangEnglish_Thailand, "en_TH" }, // 161 ### Not supported by CLDR - { ELangMalay_Apac, "ms" } // 326 + { ELangMalay_Apac, "ms" }, // 326 #endif + { 327/*ELangIndonesian_Apac*/,"id_ID" } // 327 - appeared in Symbian^3 }; /*! -- cgit v0.12 From ddf119a57001edd71eb6b84dffc7cda4a8ca2c0e Mon Sep 17 00:00:00 2001 From: Anders Bakken Date: Thu, 27 May 2010 10:50:40 +0200 Subject: Fix a bug in QDirectFBPixmapData::fromImage MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Every image that was converted with flags & Qt::NoOpaqueDetection would be considered to have an alpha channel. This patch fixes that and simplifies the code a little. Merge-request: 637 Reviewed-by: Samuel Rødal --- .../gfxdrivers/directfb/qdirectfbpixmap.cpp | 25 +++++++++------------- src/plugins/gfxdrivers/directfb/qdirectfbpixmap.h | 2 +- 2 files changed, 11 insertions(+), 16 deletions(-) diff --git a/src/plugins/gfxdrivers/directfb/qdirectfbpixmap.cpp b/src/plugins/gfxdrivers/directfb/qdirectfbpixmap.cpp index 80366d1..f704432 100644 --- a/src/plugins/gfxdrivers/directfb/qdirectfbpixmap.cpp +++ b/src/plugins/gfxdrivers/directfb/qdirectfbpixmap.cpp @@ -91,6 +91,7 @@ void QDirectFBPixmapData::resize(int width, int height) setSerialNumber(++global_ser_no); } +#ifdef QT_DIRECTFB_OPAQUE_DETECTION // mostly duplicated from qimage.cpp (QImageData::checkForAlphaPixels) static bool checkForAlphaPixels(const QImage &img) { @@ -160,12 +161,16 @@ static bool checkForAlphaPixels(const QImage &img) return false; } +#endif // QT_DIRECTFB_OPAQUE_DETECTION -bool QDirectFBPixmapData::hasAlphaChannel(const QImage &img) +bool QDirectFBPixmapData::hasAlphaChannel(const QImage &img, Qt::ImageConversionFlags flags) { -#ifndef QT_NO_DIRECTFB_OPAQUE_DETECTION - return checkForAlphaPixels(img); + if (img.depth() == 1) + return true; +#ifdef QT_DIRECTFB_OPAQUE_DETECTION + return ((flags & Qt::NoOpaqueDetection) ? img.hasAlphaChannel() : checkForAlphaPixels(img)); #else + Q_UNUSED(flags); return img.hasAlphaChannel(); #endif } @@ -287,19 +292,9 @@ bool QDirectFBPixmapData::fromDataBufferDescription(const DFBDataBufferDescripti #endif -void QDirectFBPixmapData::fromImage(const QImage &img, - Qt::ImageConversionFlags flags) +void QDirectFBPixmapData::fromImage(const QImage &img, Qt::ImageConversionFlags flags) { - if (img.depth() == 1) { - alpha = true; -#ifndef QT_NO_DIRECTFB_OPAQUE_DETECTION - } else if (flags & Qt::NoOpaqueDetection || QDirectFBPixmapData::hasAlphaChannel(img)) { - alpha = true; -#else - } else if (img.hasAlphaChannel()) { - alpha = true; -#endif - } + alpha = QDirectFBPixmapData::hasAlphaChannel(img, flags); imageFormat = alpha ? screen->alphaPixmapFormat() : screen->pixelFormat(); QImage image; if ((flags & ~Qt::NoOpaqueDetection) != Qt::AutoColor) { diff --git a/src/plugins/gfxdrivers/directfb/qdirectfbpixmap.h b/src/plugins/gfxdrivers/directfb/qdirectfbpixmap.h index da6edc6..343b26e 100644 --- a/src/plugins/gfxdrivers/directfb/qdirectfbpixmap.h +++ b/src/plugins/gfxdrivers/directfb/qdirectfbpixmap.h @@ -86,8 +86,8 @@ public: virtual int metric(QPaintDevice::PaintDeviceMetric m) const { return QDirectFBPaintDevice::metric(m); } inline QImage::Format pixelFormat() const { return imageFormat; } - static bool hasAlphaChannel(const QImage &img); inline bool hasAlphaChannel() const { return alpha; } + static bool hasAlphaChannel(const QImage &img, Qt::ImageConversionFlags flags = Qt::AutoColor); private: #ifdef QT_DIRECTFB_IMAGEPROVIDER bool fromDataBufferDescription(const DFBDataBufferDescription &dataBuffer); -- cgit v0.12 From 6a650220f6cf3159bcce3f754e94ea5241c67ea4 Mon Sep 17 00:00:00 2001 From: Jens Bache-Wiig Date: Thu, 27 May 2010 10:53:11 +0200 Subject: Added some changes for 4.6.3 --- dist/changes-4.6.3 | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/dist/changes-4.6.3 b/dist/changes-4.6.3 index a332580..3695f14 100644 --- a/dist/changes-4.6.3 +++ b/dist/changes-4.6.3 @@ -47,6 +47,10 @@ QtCore QtGui ----- + - QComboBox + * [QTBUG-10403] Fixed QComboBox ignoring the item data background role + for some styles. + - QCommonStyle * [QTBUG-7137] Fixed a bug that led to missing text pixels in QTabBar when using small font sizes. @@ -217,6 +221,15 @@ Qt for Linux/X11 - [QTBUG-7063] Changed key bindings (XF86XK_MyComputer, Qt::Key_Launch0, Key_Calculator) on X11 back to how it was in Qt 4.5 before MR 1742 accidentally changed it. + - [QTBUG-8666] Fixed a crash when using QIcon::fromTheme with icons declared + static. + - QGtkStyle + * [QTBUG-9240] Fixed a potensial crash in QGtkStyle when the gtk + theme engine is not unavaliable. + * [QTBUG-8537] Fixed a Glib-GObject-WARNING on application startup with + certain versions of GTK+. + * [QTBUG-8226] Fixed an atk_object_set_name assertion warning with certain + versions of GTK+. Qt for Windows -------------- @@ -229,6 +242,11 @@ Qt for Windows * [QTBUG-9681] Fixed closing state for local sockets with unwritten data. * [QTBUG-8418] Detection of Windows Mobile 6.5 fixed. + - [QTBUG-7662] Fixed an issue with clipped icon text. + - [QTBUG-7663] QFileIconProvider now show overlays when fetching native + filesystem icons. + - [QTBUG-8324] Fixed a potential crash when fetching native icons. + Qt for Windows CE ----------------- @@ -242,6 +260,12 @@ Qt for Windows CE Windows Mobile 6.5. * [QTBUG-8757] QTabBar scroll button size has been fixed. +Qt for Mac +----------------- + + - [QTBUG-8461] Fixed incorrect text rendering with document mode tabs. + + Qt for Symbian -------------- -- cgit v0.12 From 7184c41453c64f177f337b173f4ca82afead731d Mon Sep 17 00:00:00 2001 From: Aaron Kennedy Date: Thu, 27 May 2010 19:16:08 +1000 Subject: Rename QDeclarativeDebugTiming -> QDeclarativeDebugTrace --- src/declarative/debugger/debugger.pri | 4 +- .../debugger/qdeclarativedebugtiming.cpp | 95 ------------------ .../debugger/qdeclarativedebugtiming_p.h | 96 ------------------ .../debugger/qdeclarativedebugtrace.cpp | 110 +++++++++++++++++++++ .../debugger/qdeclarativedebugtrace_p.h | 101 +++++++++++++++++++ src/declarative/qml/qdeclarativecomponent.cpp | 7 +- src/declarative/util/qdeclarativeview.cpp | 18 ++-- 7 files changed, 226 insertions(+), 205 deletions(-) delete mode 100644 src/declarative/debugger/qdeclarativedebugtiming.cpp delete mode 100644 src/declarative/debugger/qdeclarativedebugtiming_p.h create mode 100644 src/declarative/debugger/qdeclarativedebugtrace.cpp create mode 100644 src/declarative/debugger/qdeclarativedebugtrace_p.h diff --git a/src/declarative/debugger/debugger.pri b/src/declarative/debugger/debugger.pri index 6777868..33d0843 100644 --- a/src/declarative/debugger/debugger.pri +++ b/src/declarative/debugger/debugger.pri @@ -6,7 +6,7 @@ SOURCES += \ $$PWD/qdeclarativedebugservice.cpp \ $$PWD/qdeclarativedebugclient.cpp \ $$PWD/qdeclarativedebug.cpp \ - $$PWD/qdeclarativedebugtiming.cpp + $$PWD/qdeclarativedebugtrace.cpp HEADERS += \ $$PWD/qdeclarativedebuggerstatus_p.h \ @@ -14,4 +14,4 @@ HEADERS += \ $$PWD/qdeclarativedebugservice_p.h \ $$PWD/qdeclarativedebugclient_p.h \ $$PWD/qdeclarativedebug_p.h \ - $$PWD/qdeclarativedebugtiming_p.h + $$PWD/qdeclarativedebugtrace_p.h diff --git a/src/declarative/debugger/qdeclarativedebugtiming.cpp b/src/declarative/debugger/qdeclarativedebugtiming.cpp deleted file mode 100644 index 5b93852..0000000 --- a/src/declarative/debugger/qdeclarativedebugtiming.cpp +++ /dev/null @@ -1,95 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). -** All rights reserved. -** Contact: Nokia Corporation (qt-info@nokia.com) -** -** This file is part of the QtDeclarative module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL$ -** No Commercial Usage -** This file contains pre-release code and may not be distributed. -** You may use this file in accordance with the terms and conditions -** contained in the Technology Preview License Agreement accompanying -** this package. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Nokia gives you certain additional -** rights. These rights are described in the Nokia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -** If you have questions regarding the use of this file, please contact -** Nokia at qt-info@nokia.com. -** -** -** -** -** -** -** -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -#include "qdeclarativedebugtiming_p.h" - -#include - -Q_GLOBAL_STATIC(QDeclarativeDebugTiming, timerInstance); - -QDeclarativeDebugTiming::QDeclarativeDebugTiming() -: QDeclarativeDebugService(QLatin1String("CanvasFrameRate")) -{ - m_timer.start(); -} - -void QDeclarativeDebugTiming::addEvent(EventType t) -{ - if (QDeclarativeDebugService::isDebuggingEnabled()) - timerInstance()->addEventImpl(t); -} - -void QDeclarativeDebugTiming::startRange(RangeType t) -{ - if (QDeclarativeDebugService::isDebuggingEnabled()) - timerInstance()->startRangeImpl(t); -} - -void QDeclarativeDebugTiming::endRange(RangeType t) -{ - if (QDeclarativeDebugService::isDebuggingEnabled()) - timerInstance()->endRangeImpl(t); -} - -void QDeclarativeDebugTiming::addEventImpl(EventType event) -{ - QByteArray data; - QDataStream ds(&data, QIODevice::WriteOnly); - ds << m_timer.elapsed() << (int)Event << (int)event; - sendMessage(data); -} - -void QDeclarativeDebugTiming::startRangeImpl(RangeType range) -{ - QByteArray data; - QDataStream ds(&data, QIODevice::WriteOnly); - ds << m_timer.elapsed() << (int)RangeStart << (int)range; - sendMessage(data); -} - -void QDeclarativeDebugTiming::endRangeImpl(RangeType range) -{ - QByteArray data; - QDataStream ds(&data, QIODevice::WriteOnly); - ds << m_timer.elapsed() << (int)RangeEnd << (int)range; - sendMessage(data); -} - diff --git a/src/declarative/debugger/qdeclarativedebugtiming_p.h b/src/declarative/debugger/qdeclarativedebugtiming_p.h deleted file mode 100644 index d9ed67c..0000000 --- a/src/declarative/debugger/qdeclarativedebugtiming_p.h +++ /dev/null @@ -1,96 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). -** All rights reserved. -** Contact: Nokia Corporation (qt-info@nokia.com) -** -** This file is part of the QtDeclarative module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL$ -** No Commercial Usage -** This file contains pre-release code and may not be distributed. -** You may use this file in accordance with the terms and conditions -** contained in the Technology Preview License Agreement accompanying -** this package. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Nokia gives you certain additional -** rights. These rights are described in the Nokia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -** If you have questions regarding the use of this file, please contact -** Nokia at qt-info@nokia.com. -** -** -** -** -** -** -** -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -#ifndef QDECLARATIVEDEBUGTIMING_P_H -#define QDECLARATIVEDEBUGTIMING_P_H - -#include -#include - -QT_BEGIN_HEADER - -QT_BEGIN_NAMESPACE - -class QDeclarativeDebugTiming : public QDeclarativeDebugService -{ -public: - enum EventType { - FramePaint, - Mouse, - Key, - - MaximumEventType - }; - - enum Message { - Event, - RangeStart, - RangeEnd, - - MaximumMessage - }; - - enum RangeType { - Painting, - Compiling, - Creating, - - MaximumRangeType - }; - - static void addEvent(EventType); - static void startRange(RangeType); - static void endRange(RangeType); - - QDeclarativeDebugTiming(); -private: - void addEventImpl(EventType); - void startRangeImpl(RangeType); - void endRangeImpl(RangeType); - QElapsedTimer m_timer; -}; - -QT_END_NAMESPACE - -QT_END_HEADER - -#endif // QDECLARATIVEDEBUGTIMING_P_H - diff --git a/src/declarative/debugger/qdeclarativedebugtrace.cpp b/src/declarative/debugger/qdeclarativedebugtrace.cpp new file mode 100644 index 0000000..5e6d5e7 --- /dev/null +++ b/src/declarative/debugger/qdeclarativedebugtrace.cpp @@ -0,0 +1,110 @@ +/**************************************************************************** +** +** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the QtDeclarative module of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** No Commercial Usage +** This file contains pre-release code and may not be distributed. +** You may use this file in accordance with the terms and conditions +** contained in the Technology Preview License Agreement accompanying +** this package. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Nokia gives you certain additional +** rights. These rights are described in the Nokia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +#include "qdeclarativedebugtrace_p.h" + +#include +#include + +Q_GLOBAL_STATIC(QDeclarativeDebugTrace, traceInstance); + +QDeclarativeDebugTrace::QDeclarativeDebugTrace() +: QDeclarativeDebugService(QLatin1String("CanvasFrameRate")) +{ + m_timer.start(); +} + +void QDeclarativeDebugTrace::addEvent(EventType t) +{ + if (QDeclarativeDebugService::isDebuggingEnabled()) + traceInstance()->addEventImpl(t); +} + +void QDeclarativeDebugTrace::startRange(RangeType t) +{ + if (QDeclarativeDebugService::isDebuggingEnabled()) + traceInstance()->startRangeImpl(t); +} + +void QDeclarativeDebugTrace::rangeData(RangeType t, const QUrl &url) +{ + if (QDeclarativeDebugService::isDebuggingEnabled()) + traceInstance()->rangeDataImpl(t, url); +} + +void QDeclarativeDebugTrace::endRange(RangeType t) +{ + if (QDeclarativeDebugService::isDebuggingEnabled()) + traceInstance()->endRangeImpl(t); +} + +void QDeclarativeDebugTrace::addEventImpl(EventType event) +{ + QByteArray data; + QDataStream ds(&data, QIODevice::WriteOnly); + ds << m_timer.elapsed() << (int)Event << (int)event; + sendMessage(data); +} + +void QDeclarativeDebugTrace::startRangeImpl(RangeType range) +{ + QByteArray data; + QDataStream ds(&data, QIODevice::WriteOnly); + ds << m_timer.elapsed() << (int)RangeStart << (int)range; + sendMessage(data); +} + +void QDeclarativeDebugTrace::rangeDataImpl(RangeType range, const QUrl &u) +{ + QByteArray data; + QDataStream ds(&data, QIODevice::WriteOnly); + ds << m_timer.elapsed() << (int)RangeData << (int)range << (QString)u.toString(); + sendMessage(data); +} + +void QDeclarativeDebugTrace::endRangeImpl(RangeType range) +{ + QByteArray data; + QDataStream ds(&data, QIODevice::WriteOnly); + ds << m_timer.elapsed() << (int)RangeEnd << (int)range; + sendMessage(data); +} + diff --git a/src/declarative/debugger/qdeclarativedebugtrace_p.h b/src/declarative/debugger/qdeclarativedebugtrace_p.h new file mode 100644 index 0000000..5ba49a8 --- /dev/null +++ b/src/declarative/debugger/qdeclarativedebugtrace_p.h @@ -0,0 +1,101 @@ +/**************************************************************************** +** +** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the QtDeclarative module of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** No Commercial Usage +** This file contains pre-release code and may not be distributed. +** You may use this file in accordance with the terms and conditions +** contained in the Technology Preview License Agreement accompanying +** this package. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Nokia gives you certain additional +** rights. These rights are described in the Nokia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +#ifndef QDECLARATIVEDEBUGTRACE_P_H +#define QDECLARATIVEDEBUGTRACE_P_H + +#include +#include + +QT_BEGIN_HEADER + +QT_BEGIN_NAMESPACE + +class QUrl; +class QDeclarativeDebugTrace : public QDeclarativeDebugService +{ +public: + enum EventType { + FramePaint, + Mouse, + Key, + + MaximumEventType + }; + + enum Message { + Event, + RangeStart, + RangeData, + RangeEnd, + + MaximumMessage + }; + + enum RangeType { + Painting, + Compiling, + Creating, + + MaximumRangeType + }; + + static void addEvent(EventType); + + static void startRange(RangeType); + static void rangeData(RangeType, const QUrl &); + static void endRange(RangeType); + + QDeclarativeDebugTrace(); +private: + void addEventImpl(EventType); + void startRangeImpl(RangeType); + void rangeDataImpl(RangeType, const QUrl &); + void endRangeImpl(RangeType); + QElapsedTimer m_timer; +}; + +QT_END_NAMESPACE + +QT_END_HEADER + +#endif // QDECLARATIVEDEBUGTRACE_P_H + diff --git a/src/declarative/qml/qdeclarativecomponent.cpp b/src/declarative/qml/qdeclarativecomponent.cpp index 2dc2d2d..9847079 100644 --- a/src/declarative/qml/qdeclarativecomponent.cpp +++ b/src/declarative/qml/qdeclarativecomponent.cpp @@ -53,7 +53,7 @@ #include "private/qdeclarativebinding_p_p.h" #include "private/qdeclarativeglobal_p.h" #include "private/qdeclarativescriptparser_p.h" -#include "private/qdeclarativedebugtiming_p.h" +#include "private/qdeclarativedebugtrace_p.h" #include #include @@ -696,7 +696,8 @@ QDeclarativeComponentPrivate::beginCreate(QDeclarativeContextData *context, cons bool isRoot = !ep->inBeginCreate; if (isRoot) - QDeclarativeDebugTiming::startRange(QDeclarativeDebugTiming::Creating); + QDeclarativeDebugTrace::startRange(QDeclarativeDebugTrace::Creating); + QDeclarativeDebugTrace::rangeData(QDeclarativeDebugTrace::Creating, cc->url); QDeclarativeContextData *ctxt = new QDeclarativeContextData; ctxt->isInternal = true; @@ -867,7 +868,7 @@ void QDeclarativeComponentPrivate::completeCreate() QDeclarativeEnginePrivate *ep = QDeclarativeEnginePrivate::get(engine); complete(ep, &state); - QDeclarativeDebugTiming::endRange(QDeclarativeDebugTiming::Creating); + QDeclarativeDebugTrace::endRange(QDeclarativeDebugTrace::Creating); } } diff --git a/src/declarative/util/qdeclarativeview.cpp b/src/declarative/util/qdeclarativeview.cpp index d2dab76..6059ad6 100644 --- a/src/declarative/util/qdeclarativeview.cpp +++ b/src/declarative/util/qdeclarativeview.cpp @@ -48,7 +48,7 @@ #include #include -#include +#include #include #include @@ -93,35 +93,35 @@ QDeclarativeScene::QDeclarativeScene() void QDeclarativeScene::keyPressEvent(QKeyEvent *e) { - QDeclarativeDebugTiming::addEvent(QDeclarativeDebugTiming::Key); + QDeclarativeDebugTrace::addEvent(QDeclarativeDebugTrace::Key); QGraphicsScene::keyPressEvent(e); } void QDeclarativeScene::keyReleaseEvent(QKeyEvent *e) { - QDeclarativeDebugTiming::addEvent(QDeclarativeDebugTiming::Key); + QDeclarativeDebugTrace::addEvent(QDeclarativeDebugTrace::Key); QGraphicsScene::keyReleaseEvent(e); } void QDeclarativeScene::mouseMoveEvent(QGraphicsSceneMouseEvent *e) { - QDeclarativeDebugTiming::addEvent(QDeclarativeDebugTiming::Mouse); + QDeclarativeDebugTrace::addEvent(QDeclarativeDebugTrace::Mouse); QGraphicsScene::mouseMoveEvent(e); } void QDeclarativeScene::mousePressEvent(QGraphicsSceneMouseEvent *e) { - QDeclarativeDebugTiming::addEvent(QDeclarativeDebugTiming::Mouse); + QDeclarativeDebugTrace::addEvent(QDeclarativeDebugTrace::Mouse); QGraphicsScene::mousePressEvent(e); } void QDeclarativeScene::mouseReleaseEvent(QGraphicsSceneMouseEvent *e) { - QDeclarativeDebugTiming::addEvent(QDeclarativeDebugTiming::Mouse); + QDeclarativeDebugTrace::addEvent(QDeclarativeDebugTrace::Mouse); QGraphicsScene::mouseReleaseEvent(e); } @@ -675,8 +675,8 @@ void QDeclarativeView::paintEvent(QPaintEvent *event) { Q_D(QDeclarativeView); - QDeclarativeDebugTiming::addEvent(QDeclarativeDebugTiming::FramePaint); - QDeclarativeDebugTiming::startRange(QDeclarativeDebugTiming::Painting); + QDeclarativeDebugTrace::addEvent(QDeclarativeDebugTrace::FramePaint); + QDeclarativeDebugTrace::startRange(QDeclarativeDebugTrace::Painting); int time = 0; if (frameRateDebug()) @@ -684,7 +684,7 @@ void QDeclarativeView::paintEvent(QPaintEvent *event) QGraphicsView::paintEvent(event); - QDeclarativeDebugTiming::endRange(QDeclarativeDebugTiming::Painting); + QDeclarativeDebugTrace::endRange(QDeclarativeDebugTrace::Painting); if (frameRateDebug()) qDebug() << "paintEvent:" << d->frameTimer.elapsed() << "time since last frame:" << time; -- cgit v0.12 From bc5e4da28c1ffbc0da1cbfcaa1e6236ff4c2d4e3 Mon Sep 17 00:00:00 2001 From: Jens Bache-Wiig Date: Thu, 27 May 2010 12:15:54 +0200 Subject: Fixed a crash when creating QGtkStyle before QApplication Task-number: QTBUG-10758 Reviewed-by: ogoffart --- src/gui/styles/qgtkstyle.cpp | 2 ++ src/gui/styles/qgtkstyle_p.cpp | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/styles/qgtkstyle.cpp b/src/gui/styles/qgtkstyle.cpp index 6c8d561..9d6dc9a 100644 --- a/src/gui/styles/qgtkstyle.cpp +++ b/src/gui/styles/qgtkstyle.cpp @@ -325,6 +325,7 @@ void QGtkStyle::polish(QApplication *app) qt_filedialog_save_filename_hook = &QGtkStylePrivate::saveFilename; qt_filedialog_open_filenames_hook = &QGtkStylePrivate::openFilenames; qt_filedialog_existing_directory_hook = &QGtkStylePrivate::openDirectory; + qApp->installEventFilter(&d->filter); } } } @@ -345,6 +346,7 @@ void QGtkStyle::unpolish(QApplication *app) qt_filedialog_save_filename_hook = 0; qt_filedialog_open_filenames_hook = 0; qt_filedialog_existing_directory_hook = 0; + qApp->removeEventFilter(&d->filter); } } diff --git a/src/gui/styles/qgtkstyle_p.cpp b/src/gui/styles/qgtkstyle_p.cpp index 3c6a1ef..4ed0fab 100644 --- a/src/gui/styles/qgtkstyle_p.cpp +++ b/src/gui/styles/qgtkstyle_p.cpp @@ -285,8 +285,6 @@ void QGtkStylePrivate::init() { resolveGtk(); initGtkWidgets(); - if (isThemeAvailable()) - qApp->installEventFilter(&filter); } GtkWidget* QGtkStylePrivate::gtkWidget(const QHashableLatin1Literal &path) -- cgit v0.12 From 975dbe047590253e9d4433030d76ab26969f621f Mon Sep 17 00:00:00 2001 From: "Bradley T. Hughes" Date: Thu, 27 May 2010 13:37:58 +0200 Subject: Update documentation for the -font command line option This option is ignored when Qt is built with fontconfig support, make sure it is documented. Task-number: QTBUG-3671 --- src/gui/kernel/qapplication.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gui/kernel/qapplication.cpp b/src/gui/kernel/qapplication.cpp index 57c4c99..0d11b27 100644 --- a/src/gui/kernel/qapplication.cpp +++ b/src/gui/kernel/qapplication.cpp @@ -666,7 +666,8 @@ void QApplicationPrivate::process_cmdline() \o -geometry \e geometry, sets the client geometry of the first window that is shown. \o -fn or \c -font \e font, defines the application font. The font - should be specified using an X logical font description. + should be specified using an X logical font description. Note that + this option is ignored when Qt is built with fontconfig support enabled. \o -bg or \c -background \e color, sets the default background color and an application palette (light and dark shades are calculated). \o -fg or \c -foreground \e color, sets the default foreground color. -- cgit v0.12 From 773cfe5b87e8f92aba1e5648dc57f559c6e43741 Mon Sep 17 00:00:00 2001 From: kh1 Date: Thu, 27 May 2010 14:41:12 +0200 Subject: Remove superfluous forward declaration. Task-number: QTBUG-11049 Reviewed-by: ck --- tools/assistant/lib/qhelpsearchindexreader_default_p.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/tools/assistant/lib/qhelpsearchindexreader_default_p.h b/tools/assistant/lib/qhelpsearchindexreader_default_p.h index b30fa4b..27764db 100644 --- a/tools/assistant/lib/qhelpsearchindexreader_default_p.h +++ b/tools/assistant/lib/qhelpsearchindexreader_default_p.h @@ -61,9 +61,6 @@ QT_BEGIN_NAMESPACE -struct Entry; -struct PosEntry; - namespace fulltextsearch { namespace std { -- cgit v0.12 From 5f66639e069f276a20f27373a0c2e7dd9d94f390 Mon Sep 17 00:00:00 2001 From: Alan Alpert Date: Thu, 27 May 2010 15:35:17 +0200 Subject: Tweak aesthetics of QML viewer inside QtDemo Make the UX more controlled from QML, and tweak the frame to be better. Blur mechanism has been reworked, but still disabled by default. --- demos/qtdemo/MagicAnim.qml | 60 --------------- demos/qtdemo/colors.cpp | 2 +- demos/qtdemo/mainwindow.cpp | 12 +-- demos/qtdemo/menumanager.cpp | 35 ++++----- demos/qtdemo/menumanager.h | 3 +- demos/qtdemo/qmlShell.qml | 177 +++++++++++++++++++++++-------------------- demos/qtdemo/qtdemo.pro | 3 +- demos/qtdemo/qtdemo.qrc | 1 - 8 files changed, 118 insertions(+), 175 deletions(-) delete mode 100644 demos/qtdemo/MagicAnim.qml diff --git a/demos/qtdemo/MagicAnim.qml b/demos/qtdemo/MagicAnim.qml deleted file mode 100644 index 7ac3e1c..0000000 --- a/demos/qtdemo/MagicAnim.qml +++ /dev/null @@ -1,60 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). -** All rights reserved. -** Contact: Nokia Corporation (qt-info@nokia.com) -** -** This file is part of the demonstration applications of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL$ -** No Commercial Usage -** This file contains pre-release code and may not be distributed. -** You may use this file in accordance with the terms and conditions -** contained in the Technology Preview License Agreement accompanying -** this package. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Nokia gives you certain additional -** rights. These rights are described in the Nokia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -** If you have questions regarding the use of this file, please contact -** Nokia at qt-info@nokia.com. -** -** -** -** -** -** -** -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import Qt 4.7 - -//Emulates the in animation of the menu elements -SequentialAnimation{ - id: main; - property Item target - property int from: 0 - property int to: 100 - property int duration: 1000 - property string properties: "y" - PauseAnimation { duration: main.duration*0.20 } - NumberAnimation { target: main.target; properties: main.properties; from: main.from; to: main.to + 40; duration: main.duration*0.30 } - NumberAnimation { target: main.target; properties: main.properties; from: main.to + 40; to: main.to; duration: main.duration*0.10 } - NumberAnimation { target: main.target; properties: main.properties; from: main.to; to: main.to + 20; duration: main.duration*0.10 } - NumberAnimation { target: main.target; properties: main.properties; from: main.to + 20; to: main.to; duration: main.duration*0.10 } - NumberAnimation { target: main.target; properties: main.properties; from: main.to; to: main.to + 8; duration: main.duration*0.10 } - NumberAnimation { target: main.target; properties: main.properties; from: main.to + 8; to: main.to; duration: main.duration*0.10 } -} - diff --git a/demos/qtdemo/colors.cpp b/demos/qtdemo/colors.cpp index 07cf162..b352e3d 100644 --- a/demos/qtdemo/colors.cpp +++ b/demos/qtdemo/colors.cpp @@ -270,7 +270,7 @@ void Colors::parseArgs(int argc, char *argv[]) else if (s.startsWith("-h") || s.startsWith("-help")){ QMessageBox::warning(0, "Arguments", QString("Usage: qtdemo [-verbose] [-no-adapt] [-opengl] [-software] [-fullscreen] [-ticker[0|1]] ") - + "[-animations[0|1]] [-no-blending] [-no-sync] [-use-timer-update[0|1]] [-pause[0|1]] " + + "[-animations[0|1]] [-no-blending] [-use-blur] [-no-sync] [-use-timer-update[0|1]] [-pause[0|1]] " + "[-use-window-mask] [-no-rescale] " + "[-use-pixmaps] [-show-fps] [-show-br] [-8bit[0|1]] [-menu] [-use-loop] [-use-balls] " + "[-animation-speed] [-fps] " diff --git a/demos/qtdemo/mainwindow.cpp b/demos/qtdemo/mainwindow.cpp index 45ec9a6..753014a 100644 --- a/demos/qtdemo/mainwindow.cpp +++ b/demos/qtdemo/mainwindow.cpp @@ -266,7 +266,7 @@ void MainWindow::setupSceneItems() { if (Colors::showFps){ this->fpsLabel = new DemoTextItem(QString("FPS: --"), Colors::buttonFont(), Qt::white, -1, this->scene, 0, DemoTextItem::DYNAMIC_TEXT); - this->fpsLabel->setZValue(100); + this->fpsLabel->setZValue(1000); this->fpsLabel->setPos(Colors::stageStartX, 600 - QFontMetricsF(Colors::buttonFont()).height() - 5); } @@ -311,15 +311,9 @@ void MainWindow::checkAdapt() } //Note: Because we don't adapt later in the program, if blur makes FPS plummet then we won't catch it - if (!Colors::noBlur && MenuManager::instance()->mainSceneBlur && this->mainSceneRoot){ + if (!Colors::noBlur && MenuManager::instance()->declarativeEngine && this->mainSceneRoot){ Colors::noBlur = true; - this->mainSceneRoot->setGraphicsEffect(0); - MenuManager::instance()->mainSceneBlur = 0; - if(MenuManager::instance()->qmlRoot){ - MenuManager::instance()->qmlRoot->setGraphicsEffect(0); - MenuManager::instance()->declarativeEngine->rootContext()->setContextProperty("realBlur", 0); - } - MenuManager::instance()->qmlShadow = 0; + MenuManager::instance()->declarativeEngine->rootContext()->setContextProperty("useBlur", false); if (Colors::verbose) qDebug() << "- benchmark adaption: removed blur (fps < 30)"; } diff --git a/demos/qtdemo/menumanager.cpp b/demos/qtdemo/menumanager.cpp index 9eb5664..9e2ba6b 100644 --- a/demos/qtdemo/menumanager.cpp +++ b/demos/qtdemo/menumanager.cpp @@ -59,8 +59,6 @@ MenuManager::MenuManager() this->tickerInAnim = 0; this->upButton = 0; this->downButton = 0; - this->mainSceneBlur = 0; - this->qmlShadow = 0; this->helpEngine = 0; this->score = new Score(); this->currentMenu = QLatin1String("[no menu visible]"); @@ -381,8 +379,14 @@ void MenuManager::launchQmlExample(const QString &name) } } + QPainter painter(qmlBgImage); + this->window->fpsLabel->setOpacity(0); + this->window->render(&painter); + this->window->fpsLabel->setOpacity(1.0); + Qt::ImageConversionFlags convFlags = Qt::AvoidDither | Qt::NoOpaqueDetection; + this->declarativeEngine->rootContext()->setContextProperty("bgAppPixmap", QVariant(QPixmap::fromImage(*qmlBgImage, convFlags))); qmlRoot->setProperty("show", QVariant(true)); - qmlRoot->setProperty("source", file.fileName()); + qmlRoot->setProperty("qmlFile", QUrl::fromLocalFile(file.fileName())); } void MenuManager::exampleFinished() @@ -401,15 +405,6 @@ void MenuManager::init(MainWindow *window) { this->window = window; - //Create blur for later use - // Note that blur is DISABLED by default because it's too slow, even on Desktop machines - if(!Colors::noBlur){ - this->mainSceneBlur = new QGraphicsBlurEffect(this); - this->mainSceneBlur->setEnabled(false); - this->mainSceneBlur->setBlurRadius(0); - this->window->mainSceneRoot->setGraphicsEffect(mainSceneBlur); - } - // Create div: this->createTicker(); this->createUpnDownButtons(); @@ -439,8 +434,15 @@ void MenuManager::init(MainWindow *window) // Create QML Loader qmlRegisterType("Effects", 1, 0, "Blur"); + qmlRegisterType("Effects", 1, 0, "DropShadow"); declarativeEngine = new QDeclarativeEngine(this); - MenuManager::instance()->declarativeEngine->rootContext()->setContextProperty("realBlur", this->mainSceneBlur); + + // Note that we paint the background into a static image for a theorized performance improvement when blurring + // It has not yet been determined what, if any, speed up this gives (but is left in 'cause the QML expects it now) + this->qmlBgImage = new QImage(window->sceneRect().size().toSize(), QImage::Format_ARGB32); + this->qmlBgImage->fill(0); + declarativeEngine->rootContext()->setContextProperty("useBlur", !Colors::noBlur); + declarativeEngine->rootContext()->setContextProperty("bgAppPixmap", QVariant(QPixmap::fromImage(*qmlBgImage))); QDeclarativeComponent component(declarativeEngine, QUrl("qrc:qml/qmlShell.qml"), this); qmlRoot = 0; if(component.isReady()) @@ -450,14 +452,9 @@ void MenuManager::init(MainWindow *window) if(qmlRoot){ qmlRoot->setHeight(this->window->scene->sceneRect().height()); qmlRoot->setWidth(this->window->scene->sceneRect().width()); - qmlRoot->setZValue(1000);//Above other items + qmlRoot->setZValue(101);//Above other items qmlRoot->setCursor(Qt::ArrowCursor); window->scene->addItem(qmlRoot); - if(!Colors::noBlur){ - qmlShadow = new QGraphicsDropShadowEffect(this); - qmlShadow->setOffset(4); - qmlRoot->setGraphicsEffect(qmlShadow); - } //Note that QML adds key handling to the app. window->viewport()->setFocusPolicy(Qt::NoFocus);//Correct keyboard focus handling diff --git a/demos/qtdemo/menumanager.h b/demos/qtdemo/menumanager.h index 3524081..e90e02c 100644 --- a/demos/qtdemo/menumanager.h +++ b/demos/qtdemo/menumanager.h @@ -85,8 +85,7 @@ public: QDeclarativeEngine* declarativeEngine; QDeclarativeItem *qmlRoot; - QGraphicsBlurEffect *mainSceneBlur; - QGraphicsDropShadowEffect *qmlShadow; + QImage *qmlBgImage; private slots: void exampleFinished(); diff --git a/demos/qtdemo/qmlShell.qml b/demos/qtdemo/qmlShell.qml index eb155c4..b9021e8 100644 --- a/demos/qtdemo/qmlShell.qml +++ b/demos/qtdemo/qmlShell.qml @@ -42,117 +42,132 @@ import Qt 4.7 import Effects 1.0 +/* Vars exposed from C++ + pixmap bgAppPixmap + bool useBlur (to turn on, pass -use-blur on the cmd line. Off by default 'cause it's too slow) +*/ Item { id: main - property alias source: loader.source + //height and width set by program to fill window + //below properties are sometimes set from C++ + property url qmlFile: '' property bool show: false - x: 0 - y: -500 //height and width set by program - opacity: 0 - property QtObject blurEffect: realBlur == null ? dummyBlur : realBlur //Is there a better way to lose those error messages? - Loader{//Automatic FocusScope - focus: true - clip: true - id: loader //source set by program - anchors.centerIn: parent - onStatusChanged: if(status == Loader.Ready) { + Image{ + id: bg + opacity: 0 + anchors.fill: parent + z: -1 + pixmap: bgAppPixmap + effect: Blur { id: blurEffect; enabled: useBlur; blurRadius: 8;} + } + + Item{ id:embeddedViewer + width: parent.width + height: parent.height + opacity: 0; + z: 10 + Loader{ + id: loader + z: 10 + focus: true //Automatic FocusScope + clip: true + source: qmlFile + anchors.centerIn: parent + onStatusChanged: if(status == Loader.Ready) { if(loader.item.width > 640) loader.item.width = 640; if(loader.item.height > 480) loader.item.height = 480; - } + } - } - Rectangle{ - z: -1 - anchors.fill: loader.status == Loader.Ready ? loader : errorTxt - anchors.margins: -10 - radius: 12 - smooth: true - gradient: Gradient{ - GradientStop{ position: 0.0; color: "#14FFFFFF" } - GradientStop{ position: 1.0; color: "#5AFFFFFF" } } - MouseArea{ - anchors.fill: parent - onClicked: loader.focus=true;/* and don't propogate to the 'exit' area*/ + Rectangle{ id: frame + z: 9 + anchors.fill: loader.status == Loader.Ready ? loader : errorTxt + anchors.margins: -8 + radius: 4 + smooth: true + border.color: "#88aaaaaa" + gradient: Gradient{ + GradientStop{ position: 0.0; color: "#14FFFFFF" } + GradientStop{ position: 1.0; color: "#5AFFFFFF" } + } + MouseArea{ + anchors.fill: parent + onClicked: loader.focus=true;/* and don't propogate to the 'exit' area*/ + } + + Rectangle{ id: innerFrame + anchors.margins: 7 + anchors.bottomMargin: 8 + anchors.rightMargin: 8 + color: "black" + border.color: "#44000000" + anchors.fill:parent + } + + effect: DropShadow { + enabled: useBlur; + blurRadius: 9; + color: "#88000000"; + xOffset:0 + yOffset:0 + } } + Text{ + id: errorTxt + z: 10 + anchors.centerIn: parent + color: 'white' + smooth: true + visible: loader.status == Loader.Error + textFormat: Text.RichText + //Note that if loader is Error, it is because the file was found but there was an error creating the component + //This means either we have a bug in our demos, or the required modules (which ship with Qt) did not deploy correctly + text: "The example has failed to load.
    If you installed Qt's QML modules this is a bug!
    " + + 'Report it at
    http://bugreports.qt.nokia.com'; + onLinkActivated: Qt.openUrlExternally(link); + } + } + Rectangle{ id: blackout //Maybe use a colorize effect instead? + z: 8 + anchors.fill: parent + color: "#000000" + opacity: 0 } - MouseArea{ - z: -2 - hoverEnabled: true //To steal from the buttons + z: 8 + enabled: main.show + hoverEnabled: true //To steal focus from the buttons anchors.fill: parent onClicked: main.show=false; } - Text{ - id: errorTxt - anchors.centerIn: parent - color: 'white' - smooth: true - visible: loader.status == Loader.Error - textFormat: Text.RichText //includes link for bugreport - //Note that if loader is Error, it is because the file was found but there was an error creating the component - //This means either we have a bug in our demos, or the required modules (which ship with Qt) did not deploy correctly - text: 'The example has failed to load. This is a bug!
    ' - +'Report it at http://bugreports.qt.nokia.com'; - onLinkActivated: Qt.openUrlExternally(link); - } - - states: [ State { name: "show" when: show == true PropertyChanges { - target: main + target: embeddedViewer + opacity: 1 + } + PropertyChanges { + target: bg opacity: 1 - y: 0 } PropertyChanges { - target: blurEffect - enabled: true - blurRadius: 8 - blurHints: Blur.AnimationHint | Blur.PerformanceHint + target: blackout + opacity: 0.5 } } ] - MagicAnim{ id: magicAnim; target: main; from: -500; to: 0 } - transitions: [ - Transition { from: ""; to: "show" - SequentialAnimation{ - ScriptAction{ script: magicAnim.start() } - NumberAnimation{ properties: "opacity,blurRadius"; easing.type: Easing.OutCubic; duration: 1000} - PropertyAnimation{ target: main; property: "y"} - } - - }, - Transition { from: "show"; to: "" //Addtionally, unload the item + transitions: [//Should not be too long, because the component has already started running + Transition { from: ''; to: "show"; reversible: true SequentialAnimation{ - NumberAnimation{ properties: "y,opacity,blurRadius";duration: 500 } - ScriptAction{ script: loader.source = ''; } + PropertyAction { target: bg; property: useBlur?"y":"opacity";}//fade in blurred background only if blurred + NumberAnimation{ properties: "opacity"; easing.type: Easing.InQuad; duration: 500} } - /*Attempt to copy the exeunt animation. Looks bad - SequentialAnimation{ - ParallelAnimation{ - NumberAnimation{ properties: "opacity,blurRadius"; easing.type: Easing.InCubic; duration: 1000 } - SequentialAnimation{ - NumberAnimation{ target: main; property: 'y'; to: 3.2*height/5; duration: 500} - ParallelAnimation{ - NumberAnimation{ target: main; property: 'y'; to: 3.0*height/5; duration: 100} - NumberAnimation{ target: main; property: 'x'; to: 3.0*width/5; duration: 100} - } - NumberAnimation{ target: main; property: 'x'; to: 700; duration: 400} - } - } - ScriptAction{ script: loader.source = ''; } - PropertyAction{ properties: "x,y";} - } - */ } ] - Item{ Blur{id: dummyBlur } } - } diff --git a/demos/qtdemo/qtdemo.pro b/demos/qtdemo/qtdemo.pro index 5e64e1c..4d4177e 100644 --- a/demos/qtdemo/qtdemo.pro +++ b/demos/qtdemo/qtdemo.pro @@ -75,5 +75,4 @@ sources.files = $$SOURCES $$HEADERS $$FORMS $$RESOURCES qtdemo.pro images xml *. sources.path = $$[QT_INSTALL_DEMOS]/qtdemo OTHER_FILES += \ - qmlShell.qml \ - MagicAnim.qml + qmlShell.qml diff --git a/demos/qtdemo/qtdemo.qrc b/demos/qtdemo/qtdemo.qrc index 7682ab5..c18420f 100644 --- a/demos/qtdemo/qtdemo.qrc +++ b/demos/qtdemo/qtdemo.qrc @@ -7,6 +7,5 @@ qmlShell.qml - MagicAnim.qml -- cgit v0.12 From 2c54f49584023633c5992579d23dc6819ec79c9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Nilsen?= Date: Thu, 27 May 2010 15:28:26 +0200 Subject: Wrong QGraphicsItem::childrenBoundingRect() when applying effects. Problem was that we used the children's raw bounding rect instead of using their effective bounding rect when calculating the bounds. Auto test included. Task-number: QTBUG-10756 --- src/gui/graphicsview/qgraphicsitem.cpp | 6 +++--- tests/auto/qgraphicsitem/tst_qgraphicsitem.cpp | 29 ++++++++++++++++++++++++++ 2 files changed, 32 insertions(+), 3 deletions(-) diff --git a/src/gui/graphicsview/qgraphicsitem.cpp b/src/gui/graphicsview/qgraphicsitem.cpp index db6c4c5..36d21a6 100644 --- a/src/gui/graphicsview/qgraphicsitem.cpp +++ b/src/gui/graphicsview/qgraphicsitem.cpp @@ -1275,14 +1275,14 @@ void QGraphicsItemPrivate::childrenBoundingRectHelper(QTransform *x, QRectF *rec QTransform matrix = childd->transformToParent(); if (x) matrix *= *x; - *rect |= matrix.mapRect(child->boundingRect()); + *rect |= matrix.mapRect(child->d_ptr->effectiveBoundingRect()); if (!childd->children.isEmpty()) childd->childrenBoundingRectHelper(&matrix, rect); } else { if (x) - *rect |= x->mapRect(child->boundingRect()); + *rect |= x->mapRect(child->d_ptr->effectiveBoundingRect()); else - *rect |= child->boundingRect(); + *rect |= child->d_ptr->effectiveBoundingRect(); if (!childd->children.isEmpty()) childd->childrenBoundingRectHelper(x, rect); } diff --git a/tests/auto/qgraphicsitem/tst_qgraphicsitem.cpp b/tests/auto/qgraphicsitem/tst_qgraphicsitem.cpp index 300afc3..5547b02 100644 --- a/tests/auto/qgraphicsitem/tst_qgraphicsitem.cpp +++ b/tests/auto/qgraphicsitem/tst_qgraphicsitem.cpp @@ -348,6 +348,7 @@ private slots: void childrenBoundingRect2(); void childrenBoundingRect3(); void childrenBoundingRect4(); + void childrenBoundingRect5(); void group(); void setGroup(); void setGroup2(); @@ -3369,6 +3370,34 @@ void tst_QGraphicsItem::childrenBoundingRect4() QCOMPARE(rect2->childrenBoundingRect(), rect3->boundingRect()); } +void tst_QGraphicsItem::childrenBoundingRect5() +{ + QGraphicsScene scene; + + QGraphicsRectItem *parent = scene.addRect(QRectF(0, 0, 100, 100)); + QGraphicsRectItem *child = scene.addRect(QRectF(0, 0, 100, 100)); + child->setParentItem(parent); + + QGraphicsView view(&scene); + view.show(); + + QTest::qWaitForWindowShown(&view); + + // Try to mess up the cached bounding rect. + QRectF expectedChildrenBoundingRect = parent->boundingRect(); + QCOMPARE(parent->childrenBoundingRect(), expectedChildrenBoundingRect); + + // Apply some effects. + QGraphicsDropShadowEffect *dropShadow = new QGraphicsDropShadowEffect; + dropShadow->setOffset(25, 25); + child->setGraphicsEffect(dropShadow); + parent->setGraphicsEffect(new QGraphicsOpacityEffect); + + QVERIFY(parent->childrenBoundingRect() != expectedChildrenBoundingRect); + expectedChildrenBoundingRect |= dropShadow->boundingRect(); + QCOMPARE(parent->childrenBoundingRect(), expectedChildrenBoundingRect); +} + void tst_QGraphicsItem::group() { QGraphicsScene scene; -- cgit v0.12 From 7fbd0a170a90f8fba8e81abb964ec06702f25448 Mon Sep 17 00:00:00 2001 From: Lars Knoll Date: Thu, 27 May 2010 16:35:28 +0200 Subject: Upgrade harfbuzz to the latest version Merge the folling changes from harfbuzz: commit 85ad0ddd092522b4cff251f324128662f100991f Author: Lars Knoll Date: Thu May 27 16:05:00 2010 +0200 use unsigned char instead of unsigned in the bitfield. This saves significant memory, as the HB_CharAttributes and HB_GlyphAttributes structures are not 4 byte aligned anymore, by aligned to 1 resp. 2 bytes. The change is not compliant with ISO C, but accepted by almost all compilers. commit 30f0e6c3d0aa67ab9ff95c60903fe28c4df80fbc Author: Behdad Esfahbod Date: Mon May 17 15:43:46 2010 -0400 [hangul] Fix typo Reviewed-By: Thiago Macieira --- src/3rdparty/harfbuzz/src/harfbuzz-hangul.c | 2 +- src/3rdparty/harfbuzz/src/harfbuzz-shaper.h | 36 +++++++++++++++++++---------- 2 files changed, 25 insertions(+), 13 deletions(-) diff --git a/src/3rdparty/harfbuzz/src/harfbuzz-hangul.c b/src/3rdparty/harfbuzz/src/harfbuzz-hangul.c index a819dac..6f89ed6 100644 --- a/src/3rdparty/harfbuzz/src/harfbuzz-hangul.c +++ b/src/3rdparty/harfbuzz/src/harfbuzz-hangul.c @@ -130,7 +130,7 @@ static int hangul_nextSyllableBoundary(const HB_UChar16 *s, int start, int end) static const HB_OpenTypeFeature hangul_features [] = { { HB_MAKE_TAG('c', 'c', 'm', 'p'), CcmpProperty }, { HB_MAKE_TAG('l', 'j', 'm', 'o'), CcmpProperty }, - { HB_MAKE_TAG('j', 'j', 'm', 'o'), CcmpProperty }, + { HB_MAKE_TAG('v', 'j', 'm', 'o'), CcmpProperty }, { HB_MAKE_TAG('t', 'j', 'm', 'o'), CcmpProperty }, { 0, 0 } }; diff --git a/src/3rdparty/harfbuzz/src/harfbuzz-shaper.h b/src/3rdparty/harfbuzz/src/harfbuzz-shaper.h index f7c7714..470e27b 100644 --- a/src/3rdparty/harfbuzz/src/harfbuzz-shaper.h +++ b/src/3rdparty/harfbuzz/src/harfbuzz-shaper.h @@ -34,6 +34,18 @@ HB_BEGIN_HEADER +/* + using anything else than signed or unsigned for bitfields in C is non standard, + but accepted by almost all compilers. And it gives a significant reduction in + memory consumption as HB_CharAttributes and HB_GlyphAttributes will not have + a 4 byte alignment +*/ +#ifdef __xlC__ +typedef unsigned hb_bitfield; +#else +typedef hb_uint8 hb_bitfield; +#endif + typedef enum { HB_Script_Common, HB_Script_Greek, @@ -123,12 +135,12 @@ typedef enum { typedef struct { - /*HB_LineBreakType*/ unsigned lineBreakType :2; - /*HB_Bool*/ unsigned whiteSpace :1; /* A unicode whitespace character, except NBSP, ZWNBSP */ - /*HB_Bool*/ unsigned charStop :1; /* Valid cursor position (for left/right arrow) */ - /*HB_Bool*/ unsigned wordBoundary :1; - /*HB_Bool*/ unsigned sentenceBoundary :1; - unsigned unused :2; + /*HB_LineBreakType*/ hb_bitfield lineBreakType :2; + /*HB_Bool*/ hb_bitfield whiteSpace :1; /* A unicode whitespace character, except NBSP, ZWNBSP */ + /*HB_Bool*/ hb_bitfield charStop :1; /* Valid cursor position (for left/right arrow) */ + /*HB_Bool*/ hb_bitfield wordBoundary :1; + /*HB_Bool*/ hb_bitfield sentenceBoundary :1; + hb_bitfield unused :2; } HB_CharAttributes; void HB_GetCharAttributes(const HB_UChar16 *string, hb_uint32 stringLength, @@ -181,12 +193,12 @@ typedef enum { * it like that. If this is a problem please tell Trolltech :) */ typedef struct { - unsigned justification :4; /* Justification class */ - unsigned clusterStart :1; /* First glyph of representation of cluster */ - unsigned mark :1; /* needs to be positioned around base char */ - unsigned zeroWidth :1; /* ZWJ, ZWNJ etc, with no width */ - unsigned dontPrint :1; - unsigned combiningClass :8; + hb_bitfield justification :4; /* Justification class */ + hb_bitfield clusterStart :1; /* First glyph of representation of cluster */ + hb_bitfield mark :1; /* needs to be positioned around base char */ + hb_bitfield zeroWidth :1; /* ZWJ, ZWNJ etc, with no width */ + hb_bitfield dontPrint :1; + hb_bitfield combiningClass :8; } HB_GlyphAttributes; typedef struct HB_FaceRec_ { -- cgit v0.12 From 19c2aef89f7a8748c11161ffab9765313d0e2e7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thorbj=C3=B8rn=20Lindeijer?= Date: Thu, 27 May 2010 16:36:19 +0200 Subject: Removed unused variable Reviewed-by: Olivier Goffart --- src/gui/itemviews/qitemdelegate.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/gui/itemviews/qitemdelegate.cpp b/src/gui/itemviews/qitemdelegate.cpp index d5f6fd2..9bbfc23 100644 --- a/src/gui/itemviews/qitemdelegate.cpp +++ b/src/gui/itemviews/qitemdelegate.cpp @@ -667,7 +667,6 @@ void QItemDelegate::drawDisplay(QPainter *painter, const QStyleOptionViewItem &o { Q_D(const QItemDelegate); - QPen pen = painter->pen(); QPalette::ColorGroup cg = option.state & QStyle::State_Enabled ? QPalette::Normal : QPalette::Disabled; if (cg == QPalette::Normal && !(option.state & QStyle::State_Active)) -- cgit v0.12 From c3d652967c313cdc1853e9d905440ddf645c49f4 Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen Date: Thu, 27 May 2010 15:42:10 +0200 Subject: fix & unify path separator escaping Reviewed-by: mauricek --- configure.exe | Bin 1316864 -> 1317888 bytes tools/configure/configureapp.cpp | 104 +++++++++++++++++++++------------------ tools/configure/configureapp.h | 3 +- 3 files changed, 58 insertions(+), 49 deletions(-) diff --git a/configure.exe b/configure.exe index a19f515..1fddc81 100755 Binary files a/configure.exe and b/configure.exe differ diff --git a/tools/configure/configureapp.cpp b/tools/configure/configureapp.cpp index ee49bbf..c2b3a57 100644 --- a/tools/configure/configureapp.cpp +++ b/tools/configure/configureapp.cpp @@ -392,11 +392,19 @@ Configure::~Configure() } } -QString Configure::fixSeparators(QString somePath) +QString Configure::fixSeparators(const QString &somePath, bool escape) { - return useUnixSeparators ? - QDir::fromNativeSeparators(somePath) : - QDir::toNativeSeparators(somePath); + if (useUnixSeparators) + return QDir::fromNativeSeparators(somePath); + QString ret = QDir::toNativeSeparators(somePath); + return escape ? escapeSeparators(ret) : ret; +} + +QString Configure::escapeSeparators(const QString &somePath) +{ + QString out = somePath; + out.replace(QLatin1Char('\\'), QLatin1String("\\\\")); + return out; } // We could use QDir::homePath() + "/.qt-license", but @@ -2573,10 +2581,10 @@ void Configure::generateOutputVars() qtConfig += "accessibility"; if( !qmakeLibs.isEmpty() ) - qmakeVars += "LIBS += " + qmakeLibs.join( " " ); + qmakeVars += "LIBS += " + escapeSeparators(qmakeLibs.join( " " )); if( !dictionary["QT_LFLAGS_SQLITE"].isEmpty() ) - qmakeVars += "QT_LFLAGS_SQLITE += " + dictionary["QT_LFLAGS_SQLITE"]; + qmakeVars += "QT_LFLAGS_SQLITE += " + escapeSeparators(dictionary["QT_LFLAGS_SQLITE"]); if (dictionary[ "QT3SUPPORT" ] == "yes") qtConfig += "qt3support"; @@ -2721,14 +2729,14 @@ void Configure::generateOutputVars() if(dictionary.contains("XQMAKESPEC") && dictionary[ "XQMAKESPEC" ].startsWith("linux")) dictionary[ "QMAKE_RPATHDIR" ] = dictionary[ "QT_INSTALL_LIBS" ]; - qmakeVars += QString("OBJECTS_DIR = ") + fixSeparators( "tmp/obj/" + dictionary[ "QMAKE_OUTDIR" ] ); - qmakeVars += QString("MOC_DIR = ") + fixSeparators( "tmp/moc/" + dictionary[ "QMAKE_OUTDIR" ] ); - qmakeVars += QString("RCC_DIR = ") + fixSeparators("tmp/rcc/" + dictionary["QMAKE_OUTDIR"]); + qmakeVars += QString("OBJECTS_DIR = ") + fixSeparators("tmp/obj/" + dictionary[ "QMAKE_OUTDIR" ], true); + qmakeVars += QString("MOC_DIR = ") + fixSeparators("tmp/moc/" + dictionary[ "QMAKE_OUTDIR" ], true); + qmakeVars += QString("RCC_DIR = ") + fixSeparators("tmp/rcc/" + dictionary["QMAKE_OUTDIR"], true); if (!qmakeDefines.isEmpty()) qmakeVars += QString("DEFINES += ") + qmakeDefines.join( " " ); if (!qmakeIncludes.isEmpty()) - qmakeVars += QString("INCLUDEPATH += ") + qmakeIncludes.join( " " ); + qmakeVars += QString("INCLUDEPATH += ") + escapeSeparators(qmakeIncludes.join( " " )); if (!opensslLibs.isEmpty()) qmakeVars += opensslLibs; else if (dictionary[ "OPENSSL" ] == "linked") { @@ -2800,27 +2808,27 @@ void Configure::generateCachefile() QString targetSpec = dictionary.contains("XQMAKESPEC") ? dictionary[ "XQMAKESPEC" ] : dictionary[ "QMAKESPEC" ]; QString mkspec_path = fixSeparators(sourcePath + "/mkspecs/" + targetSpec); if(QFile::exists(mkspec_path)) - cacheStream << "QMAKESPEC = " << mkspec_path << endl; + cacheStream << "QMAKESPEC = " << escapeSeparators(mkspec_path) << endl; else - cacheStream << "QMAKESPEC = " << fixSeparators(targetSpec) << endl; - cacheStream << "ARCH = " << fixSeparators(dictionary[ "ARCHITECTURE" ]) << endl; - cacheStream << "QT_BUILD_TREE = " << fixSeparators(dictionary[ "QT_BUILD_TREE" ]) << endl; - cacheStream << "QT_SOURCE_TREE = " << fixSeparators(dictionary[ "QT_SOURCE_TREE" ]) << endl; + cacheStream << "QMAKESPEC = " << fixSeparators(targetSpec, true) << endl; + cacheStream << "ARCH = " << dictionary[ "ARCHITECTURE" ] << endl; + cacheStream << "QT_BUILD_TREE = " << fixSeparators(dictionary[ "QT_BUILD_TREE" ], true) << endl; + cacheStream << "QT_SOURCE_TREE = " << fixSeparators(dictionary[ "QT_SOURCE_TREE" ], true) << endl; if (dictionary["QT_EDITION"] != "QT_EDITION_OPENSOURCE") cacheStream << "DEFINES *= QT_EDITION=QT_EDITION_DESKTOP" << endl; //so that we can build without an install first (which would be impossible) - cacheStream << "QMAKE_MOC = $$QT_BUILD_TREE" << fixSeparators("/bin/moc.exe") << endl; - cacheStream << "QMAKE_UIC = $$QT_BUILD_TREE" << fixSeparators("/bin/uic.exe") << endl; - cacheStream << "QMAKE_UIC3 = $$QT_BUILD_TREE" << fixSeparators("/bin/uic3.exe") << endl; - cacheStream << "QMAKE_RCC = $$QT_BUILD_TREE" << fixSeparators("/bin/rcc.exe") << endl; - cacheStream << "QMAKE_DUMPCPP = $$QT_BUILD_TREE" << fixSeparators("/bin/dumpcpp.exe") << endl; - cacheStream << "QMAKE_INCDIR_QT = $$QT_BUILD_TREE" << fixSeparators("/include") << endl; - cacheStream << "QMAKE_LIBDIR_QT = $$QT_BUILD_TREE" << fixSeparators("/lib") << endl; + cacheStream << "QMAKE_MOC = $$QT_BUILD_TREE" << fixSeparators("/bin/moc.exe", true) << endl; + cacheStream << "QMAKE_UIC = $$QT_BUILD_TREE" << fixSeparators("/bin/uic.exe", true) << endl; + cacheStream << "QMAKE_UIC3 = $$QT_BUILD_TREE" << fixSeparators("/bin/uic3.exe", true) << endl; + cacheStream << "QMAKE_RCC = $$QT_BUILD_TREE" << fixSeparators("/bin/rcc.exe", true) << endl; + cacheStream << "QMAKE_DUMPCPP = $$QT_BUILD_TREE" << fixSeparators("/bin/dumpcpp.exe", true) << endl; + cacheStream << "QMAKE_INCDIR_QT = $$QT_BUILD_TREE" << fixSeparators("/include", true) << endl; + cacheStream << "QMAKE_LIBDIR_QT = $$QT_BUILD_TREE" << fixSeparators("/lib", true) << endl; if (dictionary["CETEST"] == "yes") { - cacheStream << "QT_CE_RAPI_INC = " << fixSeparators(dictionary[ "QT_CE_RAPI_INC" ]) << endl; - cacheStream << "QT_CE_RAPI_LIB = " << fixSeparators(dictionary[ "QT_CE_RAPI_LIB" ]) << endl; + cacheStream << "QT_CE_RAPI_INC = " << fixSeparators(dictionary[ "QT_CE_RAPI_INC" ], true) << endl; + cacheStream << "QT_CE_RAPI_LIB = " << fixSeparators(dictionary[ "QT_CE_RAPI_LIB" ], true) << endl; } // embedded @@ -2896,7 +2904,7 @@ void Configure::generateCachefile() << "QT_PATCH_VERSION = " << dictionary["VERSION_PATCH"] << endl; configStream << "#Qt for Windows CE c-runtime deployment" << endl - << "QT_CE_C_RUNTIME = " << fixSeparators(dictionary[ "CE_CRT" ]) << endl; + << "QT_CE_C_RUNTIME = " << fixSeparators(dictionary[ "CE_CRT" ], true) << endl; if(dictionary["CE_SIGNATURE"] != QLatin1String("no")) configStream << "DEFAULT_SIGNATURE=" << dictionary["CE_SIGNATURE"] << endl; @@ -3213,32 +3221,32 @@ void Configure::generateConfigfiles() << endl; if(!dictionary[ "QT_HOST_PREFIX" ].isNull()) tmpStream << "#if !defined(QT_BOOTSTRAPPED) && !defined(QT_BUILD_QMAKE)" << endl; - tmpStream << "static const char qt_configure_prefix_path_str [512 + 12] = \"qt_prfxpath=" << QString(dictionary["QT_INSTALL_PREFIX"]).replace( "\\", "\\\\" ) << "\";" << endl - << "static const char qt_configure_documentation_path_str[512 + 12] = \"qt_docspath=" << QString(dictionary["QT_INSTALL_DOCS"]).replace( "\\", "\\\\" ) << "\";" << endl - << "static const char qt_configure_headers_path_str [512 + 12] = \"qt_hdrspath=" << QString(dictionary["QT_INSTALL_HEADERS"]).replace( "\\", "\\\\" ) << "\";" << endl - << "static const char qt_configure_libraries_path_str [512 + 12] = \"qt_libspath=" << QString(dictionary["QT_INSTALL_LIBS"]).replace( "\\", "\\\\" ) << "\";" << endl - << "static const char qt_configure_binaries_path_str [512 + 12] = \"qt_binspath=" << QString(dictionary["QT_INSTALL_BINS"]).replace( "\\", "\\\\" ) << "\";" << endl - << "static const char qt_configure_plugins_path_str [512 + 12] = \"qt_plugpath=" << QString(dictionary["QT_INSTALL_PLUGINS"]).replace( "\\", "\\\\" ) << "\";" << endl - << "static const char qt_configure_imports_path_str [512 + 12] = \"qt_impspath=" << QString(dictionary["QT_INSTALL_IMPORTS"]).replace( "\\", "\\\\" ) << "\";" << endl - << "static const char qt_configure_data_path_str [512 + 12] = \"qt_datapath=" << QString(dictionary["QT_INSTALL_DATA"]).replace( "\\", "\\\\" ) << "\";" << endl - << "static const char qt_configure_translations_path_str [512 + 12] = \"qt_trnspath=" << QString(dictionary["QT_INSTALL_TRANSLATIONS"]).replace( "\\", "\\\\" ) << "\";" << endl - << "static const char qt_configure_examples_path_str [512 + 12] = \"qt_xmplpath=" << QString(dictionary["QT_INSTALL_EXAMPLES"]).replace( "\\", "\\\\" ) << "\";" << endl - << "static const char qt_configure_demos_path_str [512 + 12] = \"qt_demopath=" << QString(dictionary["QT_INSTALL_DEMOS"]).replace( "\\", "\\\\" ) << "\";" << endl - //<< "static const char qt_configure_settings_path_str [256] = \"qt_stngpath=" << QString(dictionary["QT_INSTALL_SETTINGS"]).replace( "\\", "\\\\" ) << "\";" << endl + tmpStream << "static const char qt_configure_prefix_path_str [512 + 12] = \"qt_prfxpath=" << escapeSeparators(dictionary["QT_INSTALL_PREFIX"]) << "\";" << endl + << "static const char qt_configure_documentation_path_str[512 + 12] = \"qt_docspath=" << escapeSeparators(dictionary["QT_INSTALL_DOCS"]) << "\";" << endl + << "static const char qt_configure_headers_path_str [512 + 12] = \"qt_hdrspath=" << escapeSeparators(dictionary["QT_INSTALL_HEADERS"]) << "\";" << endl + << "static const char qt_configure_libraries_path_str [512 + 12] = \"qt_libspath=" << escapeSeparators(dictionary["QT_INSTALL_LIBS"]) << "\";" << endl + << "static const char qt_configure_binaries_path_str [512 + 12] = \"qt_binspath=" << escapeSeparators(dictionary["QT_INSTALL_BINS"]) << "\";" << endl + << "static const char qt_configure_plugins_path_str [512 + 12] = \"qt_plugpath=" << escapeSeparators(dictionary["QT_INSTALL_PLUGINS"]) << "\";" << endl + << "static const char qt_configure_imports_path_str [512 + 12] = \"qt_impspath=" << escapeSeparators(dictionary["QT_INSTALL_IMPORTS"]) << "\";" << endl + << "static const char qt_configure_data_path_str [512 + 12] = \"qt_datapath=" << escapeSeparators(dictionary["QT_INSTALL_DATA"]) << "\";" << endl + << "static const char qt_configure_translations_path_str [512 + 12] = \"qt_trnspath=" << escapeSeparators(dictionary["QT_INSTALL_TRANSLATIONS"]) << "\";" << endl + << "static const char qt_configure_examples_path_str [512 + 12] = \"qt_xmplpath=" << escapeSeparators(dictionary["QT_INSTALL_EXAMPLES"]) << "\";" << endl + << "static const char qt_configure_demos_path_str [512 + 12] = \"qt_demopath=" << escapeSeparators(dictionary["QT_INSTALL_DEMOS"]) << "\";" << endl + //<< "static const char qt_configure_settings_path_str [256] = \"qt_stngpath=" << escapeSeparators(dictionary["QT_INSTALL_SETTINGS"]) << "\";" << endl ; if(!dictionary[ "QT_HOST_PREFIX" ].isNull()) { tmpStream << "#else" << endl - << "static const char qt_configure_prefix_path_str [512 + 12] = \"qt_prfxpath=" << QString(dictionary[ "QT_HOST_PREFIX" ]).replace( "\\", "\\\\" ) << "\";" << endl - << "static const char qt_configure_documentation_path_str[512 + 12] = \"qt_docspath=" << fixSeparators(dictionary[ "QT_HOST_PREFIX" ] + "/doc").replace( "\\", "\\\\" ) <<"\";" << endl - << "static const char qt_configure_headers_path_str [512 + 12] = \"qt_hdrspath=" << fixSeparators(dictionary[ "QT_HOST_PREFIX" ] + "/include").replace( "\\", "\\\\" ) <<"\";" << endl - << "static const char qt_configure_libraries_path_str [512 + 12] = \"qt_libspath=" << fixSeparators(dictionary[ "QT_HOST_PREFIX" ] + "/lib").replace( "\\", "\\\\" ) <<"\";" << endl - << "static const char qt_configure_binaries_path_str [512 + 12] = \"qt_binspath=" << fixSeparators(dictionary[ "QT_HOST_PREFIX" ] + "/bin").replace( "\\", "\\\\" ) <<"\";" << endl - << "static const char qt_configure_plugins_path_str [512 + 12] = \"qt_plugpath=" << fixSeparators(dictionary[ "QT_HOST_PREFIX" ] + "/plugins").replace( "\\", "\\\\" ) <<"\";" << endl - << "static const char qt_configure_imports_path_str [512 + 12] = \"qt_impspath=" << fixSeparators(dictionary[ "QT_HOST_PREFIX" ] + "/imports").replace( "\\", "\\\\" ) <<"\";" << endl - << "static const char qt_configure_data_path_str [512 + 12] = \"qt_datapath=" << fixSeparators(dictionary[ "QT_HOST_PREFIX" ]).replace( "\\", "\\\\" ) <<"\";" << endl - << "static const char qt_configure_translations_path_str [512 + 12] = \"qt_trnspath=" << fixSeparators(dictionary[ "QT_HOST_PREFIX" ] + "/translations").replace( "\\", "\\\\" ) <<"\";" << endl - << "static const char qt_configure_examples_path_str [512 + 12] = \"qt_xmplpath=" << fixSeparators(dictionary[ "QT_HOST_PREFIX" ] + "/example").replace( "\\", "\\\\" ) <<"\";" << endl - << "static const char qt_configure_demos_path_str [512 + 12] = \"qt_demopath=" << fixSeparators(dictionary[ "QT_HOST_PREFIX" ] + "/demos").replace( "\\", "\\\\" ) <<"\";" << endl + << "static const char qt_configure_prefix_path_str [512 + 12] = \"qt_prfxpath=" << escapeSeparators(dictionary[ "QT_HOST_PREFIX" ]) << "\";" << endl + << "static const char qt_configure_documentation_path_str[512 + 12] = \"qt_docspath=" << fixSeparators(dictionary[ "QT_HOST_PREFIX" ] + "/doc", true) <<"\";" << endl + << "static const char qt_configure_headers_path_str [512 + 12] = \"qt_hdrspath=" << fixSeparators(dictionary[ "QT_HOST_PREFIX" ] + "/include", true) <<"\";" << endl + << "static const char qt_configure_libraries_path_str [512 + 12] = \"qt_libspath=" << fixSeparators(dictionary[ "QT_HOST_PREFIX" ] + "/lib", true) <<"\";" << endl + << "static const char qt_configure_binaries_path_str [512 + 12] = \"qt_binspath=" << fixSeparators(dictionary[ "QT_HOST_PREFIX" ] + "/bin", true) <<"\";" << endl + << "static const char qt_configure_plugins_path_str [512 + 12] = \"qt_plugpath=" << fixSeparators(dictionary[ "QT_HOST_PREFIX" ] + "/plugins", true) <<"\";" << endl + << "static const char qt_configure_imports_path_str [512 + 12] = \"qt_impspath=" << fixSeparators(dictionary[ "QT_HOST_PREFIX" ] + "/imports", true) <<"\";" << endl + << "static const char qt_configure_data_path_str [512 + 12] = \"qt_datapath=" << fixSeparators(dictionary[ "QT_HOST_PREFIX" ], true) <<"\";" << endl + << "static const char qt_configure_translations_path_str [512 + 12] = \"qt_trnspath=" << fixSeparators(dictionary[ "QT_HOST_PREFIX" ] + "/translations", true) <<"\";" << endl + << "static const char qt_configure_examples_path_str [512 + 12] = \"qt_xmplpath=" << fixSeparators(dictionary[ "QT_HOST_PREFIX" ] + "/example", true) <<"\";" << endl + << "static const char qt_configure_demos_path_str [512 + 12] = \"qt_demopath=" << fixSeparators(dictionary[ "QT_HOST_PREFIX" ] + "/demos", true) <<"\";" << endl << "#endif //QT_BOOTSTRAPPED" << endl; } tmpStream << "/* strlen( \"qt_lcnsxxxx\" ) == 12 */" << endl diff --git a/tools/configure/configureapp.h b/tools/configure/configureapp.h index c441129..6c10dd8 100644 --- a/tools/configure/configureapp.h +++ b/tools/configure/configureapp.h @@ -147,7 +147,8 @@ private: int outputWidth; bool useUnixSeparators; - QString fixSeparators(QString somePath); + QString fixSeparators(const QString &somePath, bool escape = false); + QString escapeSeparators(const QString &somePath); bool filesDiffer(const QString &file1, const QString &file2); bool findFile(const QString &fileName); -- cgit v0.12 From c86bb735e9b783b03010bc830c2a7a2fbcdb71b7 Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen Date: Thu, 27 May 2010 16:31:57 +0200 Subject: escape backslashes in QMAKE_PRL_LIBS they may contain (absolute) windows paths, which need escaping now. Reviewed-by: mauricek --- qmake/generators/makefile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qmake/generators/makefile.cpp b/qmake/generators/makefile.cpp index 4c4f5bc..d6b3e09 100644 --- a/qmake/generators/makefile.cpp +++ b/qmake/generators/makefile.cpp @@ -972,7 +972,7 @@ MakefileGenerator::writePrlFile(QTextStream &t) libs << "QMAKE_LIBS_PRIVATE"; t << "QMAKE_PRL_LIBS = "; for(QStringList::Iterator it = libs.begin(); it != libs.end(); ++it) - t << project->values((*it)).join(" ") << " "; + t << project->values((*it)).join(" ").replace('\\', "\\\\") << " "; t << endl; } } -- cgit v0.12 From f399b0deede15c7c5cb1108db261b77452afb394 Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen Date: Thu, 27 May 2010 16:39:11 +0200 Subject: fix escaping - by not using eval the left-hand-side of qmake assignments is expanded, so there is no need to use eval. --- mkspecs/features/incredibuild_xge.prf | 6 +++--- src/src.pro | 16 ++++++++-------- src/tools/tools.pro | 16 ++++++++-------- 3 files changed, 19 insertions(+), 19 deletions(-) diff --git a/mkspecs/features/incredibuild_xge.prf b/mkspecs/features/incredibuild_xge.prf index b8ca571..a81a0cc 100644 --- a/mkspecs/features/incredibuild_xge.prf +++ b/mkspecs/features/incredibuild_xge.prf @@ -1,11 +1,11 @@ contains(TEMPLATE, "vc.*")|contains(TEMPLATE_PREFIX, "vc") { - EOC = \$\$escape_expand(\\\\n\\\\t) + EOC = $$escape_expand(\\n\\t) # The VCPROJ generator will replace the \r\h with the coded \r\n: # No other generator understands the \h - win32-msvc2*|wince*msvc*: EOC = \$\$escape_expand(\\\\r\\\\h) + win32-msvc2*|wince*msvc*: EOC = $$escape_expand(\\r\\h) for(xge, INCREDIBUILD_XGE) { - eval($${xge}.commands = Rem IncrediBuild_AllowRemote $$EOC Rem IncrediBuild_OutputFile $$replace($${xge}.output,/,\\) $$EOC $$eval($${xge}.commands)) + $${xge}.commands = Rem IncrediBuild_AllowRemote $$EOC Rem IncrediBuild_OutputFile $$replace($${xge}.output,/,\\) $$EOC $$eval($${xge}.commands) } } diff --git a/src/src.pro b/src/src.pro index 7574796..5436c4a 100644 --- a/src/src.pro +++ b/src/src.pro @@ -157,24 +157,24 @@ for(subname, SRC_SUBDIRS) { SUB_TEMPLATE = $$list($$fromfile($$subpro, TEMPLATE)) !isEqual(subname, src_tools_bootstrap):if(isEqual($$SUB_TEMPLATE, lib) | isEqual($$SUB_TEMPLATE, subdirs) | isEqual(subname, src_tools_idc) | isEqual(subname, src_tools_uic3)):!separate_debug_info { #debug - eval(debug-$${subtarget}.depends = $${subdir}\$${QMAKE_DIR_SEP}$(MAKEFILE) $$EXTRA_DEBUG_TARGETS) - eval(debug-$${subtarget}.commands = (cd $$subdir && $(MAKE) -f $(MAKEFILE) debug)) + debug-$${subtarget}.depends = $${subdir}$${QMAKE_DIR_SEP}$(MAKEFILE) $$EXTRA_DEBUG_TARGETS + debug-$${subtarget}.commands = (cd $$subdir && $(MAKE) -f $(MAKEFILE) debug) EXTRA_DEBUG_TARGETS += debug-$${subtarget} QMAKE_EXTRA_TARGETS += debug-$${subtarget} #release - eval(release-$${subtarget}.depends = $${subdir}\$${QMAKE_DIR_SEP}$(MAKEFILE) $$EXTRA_RELEASE_TARGETS) - eval(release-$${subtarget}.commands = (cd $$subdir && $(MAKE) -f $(MAKEFILE) release)) + release-$${subtarget}.depends = $${subdir}$${QMAKE_DIR_SEP}$(MAKEFILE) $$EXTRA_RELEASE_TARGETS + release-$${subtarget}.commands = (cd $$subdir && $(MAKE) -f $(MAKEFILE) release) EXTRA_RELEASE_TARGETS += release-$${subtarget} QMAKE_EXTRA_TARGETS += release-$${subtarget} } else { #do not have a real debug target/release #debug - eval(debug-$${subtarget}.depends = $${subdir}\$${QMAKE_DIR_SEP}$(MAKEFILE) $$EXTRA_DEBUG_TARGETS) - eval(debug-$${subtarget}.commands = (cd $$subdir && $(MAKE) -f $(MAKEFILE) first)) + debug-$${subtarget}.depends = $${subdir}$${QMAKE_DIR_SEP}$(MAKEFILE) $$EXTRA_DEBUG_TARGETS + debug-$${subtarget}.commands = (cd $$subdir && $(MAKE) -f $(MAKEFILE) first) EXTRA_DEBUG_TARGETS += debug-$${subtarget} QMAKE_EXTRA_TARGETS += debug-$${subtarget} #release - eval(release-$${subtarget}.depends = $${subdir}\$${QMAKE_DIR_SEP}$(MAKEFILE) $$EXTRA_RELEASE_TARGETS) - eval(release-$${subtarget}.commands = (cd $$subdir && $(MAKE) -f $(MAKEFILE) first)) + release-$${subtarget}.depends = $${subdir}$${QMAKE_DIR_SEP}$(MAKEFILE) $$EXTRA_RELEASE_TARGETS + release-$${subtarget}.commands = (cd $$subdir && $(MAKE) -f $(MAKEFILE) first) EXTRA_RELEASE_TARGETS += release-$${subtarget} QMAKE_EXTRA_TARGETS += release-$${subtarget} } diff --git a/src/tools/tools.pro b/src/tools/tools.pro index 1ecb944..4736d09 100644 --- a/src/tools/tools.pro +++ b/src/tools/tools.pro @@ -45,24 +45,24 @@ EXTRA_RELEASE_TARGETS = SUB_TEMPLATE = $$list($$fromfile($$subpro, TEMPLATE)) !isEqual(subname, src_tools_bootstrap):if(isEqual($$SUB_TEMPLATE, lib) | isEqual($$SUB_TEMPLATE, subdirs) | isEqual(subname, src_tools_idc) | isEqual(subname, src_tools_uic3)):!separate_debug_info { #debug - eval(debug-$${subtarget}.depends = $${subdir}\$${QMAKE_DIR_SEP}$(MAKEFILE) $$EXTRA_DEBUG_TARGETS) - eval(debug-$${subtarget}.commands = (cd $$subdir && $(MAKE) -f $(MAKEFILE) debug)) + debug-$${subtarget}.depends = $${subdir}$${QMAKE_DIR_SEP}$(MAKEFILE) $$EXTRA_DEBUG_TARGETS + debug-$${subtarget}.commands = (cd $$subdir && $(MAKE) -f $(MAKEFILE) debug) EXTRA_DEBUG_TARGETS += debug-$${subtarget} QMAKE_EXTRA_TARGETS += debug-$${subtarget} #release - eval(release-$${subtarget}.depends = $${subdir}\$${QMAKE_DIR_SEP}$(MAKEFILE) $$EXTRA_RELEASE_TARGETS) - eval(release-$${subtarget}.commands = (cd $$subdir && $(MAKE) -f $(MAKEFILE) release)) + release-$${subtarget}.depends = $${subdir}$${QMAKE_DIR_SEP}$(MAKEFILE) $$EXTRA_RELEASE_TARGETS + release-$${subtarget}.commands = (cd $$subdir && $(MAKE) -f $(MAKEFILE) release) EXTRA_RELEASE_TARGETS += release-$${subtarget} QMAKE_EXTRA_TARGETS += release-$${subtarget} } else { #do not have a real debug target/release #debug - eval(debug-$${subtarget}.depends = $${subdir}\$${QMAKE_DIR_SEP}$(MAKEFILE) $$EXTRA_DEBUG_TARGETS) - eval(debug-$${subtarget}.commands = (cd $$subdir && $(MAKE) -f $(MAKEFILE) first)) + debug-$${subtarget}.depends = $${subdir}$${QMAKE_DIR_SEP}$(MAKEFILE) $$EXTRA_DEBUG_TARGETS + debug-$${subtarget}.commands = (cd $$subdir && $(MAKE) -f $(MAKEFILE) first) EXTRA_DEBUG_TARGETS += debug-$${subtarget} QMAKE_EXTRA_TARGETS += debug-$${subtarget} #release - eval(release-$${subtarget}.depends = $${subdir}\$${QMAKE_DIR_SEP}$(MAKEFILE) $$EXTRA_RELEASE_TARGETS) - eval(release-$${subtarget}.commands = (cd $$subdir && $(MAKE) -f $(MAKEFILE) first)) + release-$${subtarget}.depends = $${subdir}$${QMAKE_DIR_SEP}$(MAKEFILE) $$EXTRA_RELEASE_TARGETS + release-$${subtarget}.commands = (cd $$subdir && $(MAKE) -f $(MAKEFILE) first) EXTRA_RELEASE_TARGETS += release-$${subtarget} QMAKE_EXTRA_TARGETS += release-$${subtarget} } -- cgit v0.12 From 5f8312f82ac9ef77c89ef363d9c2e0246b398d20 Mon Sep 17 00:00:00 2001 From: Martin Jones Date: Fri, 28 May 2010 12:53:39 +1000 Subject: Use QElapsedTimer rather than QTime::elapsed() --- .../graphicsitems/qdeclarativeflickable.cpp | 11 ++-- .../graphicsitems/qdeclarativeflickable_p_p.h | 6 +-- src/declarative/graphicsitems/qdeclarativeitem.cpp | 59 ++++++++++++++-------- src/declarative/graphicsitems/qdeclarativeitem_p.h | 11 ++-- .../graphicsitems/qdeclarativepathview.cpp | 10 ++-- .../graphicsitems/qdeclarativepathview_p_p.h | 3 +- 6 files changed, 58 insertions(+), 42 deletions(-) diff --git a/src/declarative/graphicsitems/qdeclarativeflickable.cpp b/src/declarative/graphicsitems/qdeclarativeflickable.cpp index 1dde510..10dc0f8 100644 --- a/src/declarative/graphicsitems/qdeclarativeflickable.cpp +++ b/src/declarative/graphicsitems/qdeclarativeflickable.cpp @@ -160,6 +160,7 @@ void QDeclarativeFlickablePrivate::init() q->setFiltersChildEvents(true); QDeclarativeItemPrivate *viewportPrivate = static_cast(QGraphicsItemPrivate::get(viewport)); viewportPrivate->addItemChangeListener(this, QDeclarativeItemPrivate::Geometry); + lastPosTime.invalidate(); } /* @@ -656,7 +657,7 @@ void QDeclarativeFlickablePrivate::handleMousePressEvent(QGraphicsSceneMouseEven void QDeclarativeFlickablePrivate::handleMouseMoveEvent(QGraphicsSceneMouseEvent *event) { Q_Q(QDeclarativeFlickable); - if (!interactive || lastPosTime.isNull()) + if (!interactive || !lastPosTime.isValid()) return; bool rejectY = false; bool rejectX = false; @@ -752,7 +753,7 @@ void QDeclarativeFlickablePrivate::handleMouseReleaseEvent(QGraphicsSceneMouseEv stealMouse = false; q->setKeepMouseGrab(false); pressed = false; - if (lastPosTime.isNull()) + if (!lastPosTime.isValid()) return; if (QDeclarativeItemPrivate::elapsed(lastPosTime) > 100) { @@ -780,7 +781,7 @@ void QDeclarativeFlickablePrivate::handleMouseReleaseEvent(QGraphicsSceneMouseEv fixupX(); } - lastPosTime = QTime(); + lastPosTime.invalidate(); if (!timeline.isActive()) q->movementEnding(); @@ -1218,8 +1219,8 @@ bool QDeclarativeFlickable::sendMouseEvent(QGraphicsSceneMouseEvent *event) } return stealThisEvent || d->delayedPressEvent; - } else if (!d->lastPosTime.isNull()) { - d->lastPosTime = QTime(); + } else if (d->lastPosTime.isValid()) { + d->lastPosTime.invalidate(); } if (mouseEvent.type() == QEvent::GraphicsSceneMouseRelease) { d->clearDelayedPress(); diff --git a/src/declarative/graphicsitems/qdeclarativeflickable_p_p.h b/src/declarative/graphicsitems/qdeclarativeflickable_p_p.h index b467ed2..66d2678 100644 --- a/src/declarative/graphicsitems/qdeclarativeflickable_p_p.h +++ b/src/declarative/graphicsitems/qdeclarativeflickable_p_p.h @@ -140,13 +140,13 @@ public: bool stealMouse : 1; bool pressed : 1; bool interactive : 1; - QTime lastPosTime; + QElapsedTimer lastPosTime; QPointF lastPos; QPointF pressPos; - QTime pressTime; + QElapsedTimer pressTime; qreal deceleration; qreal maxVelocity; - QTime velocityTime; + QElapsedTimer velocityTime; QPointF lastFlickablePosition; qreal reportedVelocitySmoothing; QGraphicsSceneMouseEvent *delayedPressEvent; diff --git a/src/declarative/graphicsitems/qdeclarativeitem.cpp b/src/declarative/graphicsitems/qdeclarativeitem.cpp index 2841ac3..7bd08ce 100644 --- a/src/declarative/graphicsitems/qdeclarativeitem.cpp +++ b/src/declarative/graphicsitems/qdeclarativeitem.cpp @@ -3145,41 +3145,56 @@ QDebug operator<<(QDebug debug, QDeclarativeItem *item) return debug; } -int QDeclarativeItemPrivate::consistentTime = -1; -void QDeclarativeItemPrivate::setConsistentTime(int t) +qint64 QDeclarativeItemPrivate::consistentTime = -1; +void QDeclarativeItemPrivate::setConsistentTime(qint64 t) { consistentTime = t; } -QTime QDeclarativeItemPrivate::currentTime() +class QElapsedTimerConsistentTimeHack { - if (consistentTime == -1) - return QTime::currentTime(); - else - return QTime(0, 0).addMSecs(consistentTime); -} +public: + void start() { + t1 = QDeclarativeItemPrivate::consistentTime; + t2 = 0; + } + qint64 elapsed() { + return QDeclarativeItemPrivate::consistentTime - t1; + } + qint64 restart() { + qint64 val = QDeclarativeItemPrivate::consistentTime - t1; + t1 = QDeclarativeItemPrivate::consistentTime; + t2 = 0; + return val; + } -void QDeclarativeItemPrivate::start(QTime &t) +private: + qint64 t1; + qint64 t2; +}; + +void QDeclarativeItemPrivate::start(QElapsedTimer &t) { - t = currentTime(); + if (QDeclarativeItemPrivate::consistentTime == -1) + t.start(); + else + ((QElapsedTimerConsistentTimeHack*)&t)->start(); } -int QDeclarativeItemPrivate::elapsed(QTime &t) +qint64 QDeclarativeItemPrivate::elapsed(QElapsedTimer &t) { - int n = t.msecsTo(currentTime()); - if (n < 0) // passed midnight - n += 86400 * 1000; - return n; + if (QDeclarativeItemPrivate::consistentTime == -1) + return t.elapsed(); + else + return ((QElapsedTimerConsistentTimeHack*)&t)->elapsed(); } -int QDeclarativeItemPrivate::restart(QTime &t) +qint64 QDeclarativeItemPrivate::restart(QElapsedTimer &t) { - QTime time = currentTime(); - int n = t.msecsTo(time); - if (n < 0) // passed midnight - n += 86400*1000; - t = time; - return n; + if (QDeclarativeItemPrivate::consistentTime == -1) + return t.restart(); + else + return ((QElapsedTimerConsistentTimeHack*)&t)->restart(); } QT_END_NAMESPACE diff --git a/src/declarative/graphicsitems/qdeclarativeitem_p.h b/src/declarative/graphicsitems/qdeclarativeitem_p.h index 15b34f0..184d6f1 100644 --- a/src/declarative/graphicsitems/qdeclarativeitem_p.h +++ b/src/declarative/graphicsitems/qdeclarativeitem_p.h @@ -305,12 +305,11 @@ public: virtual void focusChanged(bool); - static int consistentTime; - static QTime currentTime(); - static void setConsistentTime(int t); - static void start(QTime &); - static int elapsed(QTime &); - static int restart(QTime &); + static qint64 consistentTime; + static void setConsistentTime(qint64 t); + static void start(QElapsedTimer &); + static qint64 elapsed(QElapsedTimer &); + static qint64 restart(QElapsedTimer &); }; /* diff --git a/src/declarative/graphicsitems/qdeclarativepathview.cpp b/src/declarative/graphicsitems/qdeclarativepathview.cpp index 3a69f44..448ec06 100644 --- a/src/declarative/graphicsitems/qdeclarativepathview.cpp +++ b/src/declarative/graphicsitems/qdeclarativepathview.cpp @@ -948,7 +948,7 @@ void QDeclarativePathView::mousePressEvent(QGraphicsSceneMouseEvent *event) void QDeclarativePathView::mouseMoveEvent(QGraphicsSceneMouseEvent *event) { Q_D(QDeclarativePathView); - if (!d->interactive || d->lastPosTime.isNull()) + if (!d->interactive || !d->lastPosTime.isValid()) return; if (!d->stealMouse) { @@ -982,7 +982,7 @@ void QDeclarativePathView::mouseReleaseEvent(QGraphicsSceneMouseEvent *) Q_D(QDeclarativePathView); d->stealMouse = false; setKeepMouseGrab(false); - if (!d->interactive || d->lastPosTime.isNull()) + if (!d->interactive || !d->lastPosTime.isValid()) return; qreal elapsed = qreal(d->lastElapsed + QDeclarativeItemPrivate::elapsed(d->lastPosTime)) / 1000.; @@ -1017,7 +1017,7 @@ void QDeclarativePathView::mouseReleaseEvent(QGraphicsSceneMouseEvent *) d->fixOffset(); } - d->lastPosTime = QTime(); + d->lastPosTime.invalidate(); ungrabMouse(); } @@ -1059,8 +1059,8 @@ bool QDeclarativePathView::sendMouseEvent(QGraphicsSceneMouseEvent *event) grabMouse(); return d->stealMouse; - } else if (!d->lastPosTime.isNull()) { - d->lastPosTime = QTime(); + } else if (d->lastPosTime.isValid()) { + d->lastPosTime.invalidate(); } return false; } diff --git a/src/declarative/graphicsitems/qdeclarativepathview_p_p.h b/src/declarative/graphicsitems/qdeclarativepathview_p_p.h index 3abb2f4..a0d2610 100644 --- a/src/declarative/graphicsitems/qdeclarativepathview_p_p.h +++ b/src/declarative/graphicsitems/qdeclarativepathview_p_p.h @@ -97,6 +97,7 @@ public: q->setFlag(QGraphicsItem::ItemIsFocusScope); q->setFiltersChildEvents(true); q->connect(&tl, SIGNAL(updated()), q, SLOT(ticked())); + lastPosTime.invalidate(); } void itemGeometryChanged(QDeclarativeItem *item, const QRectF &newGeometry, const QRectF &oldGeometry) { @@ -154,7 +155,7 @@ public: bool autoHighlight : 1; bool highlightUp : 1; bool layoutScheduled : 1; - QTime lastPosTime; + QElapsedTimer lastPosTime; QPointF lastPos; qreal dragMargin; qreal deceleration; -- cgit v0.12 From 0da153d47da2dcc59b33bc47ea949ceaf3189579 Mon Sep 17 00:00:00 2001 From: Joona Petrell Date: Fri, 28 May 2010 14:06:41 +1000 Subject: Active window focus gain should not open virtual keypad Task-number: Reviewed-by: Martin Jones --- src/declarative/QmlChanges.txt | 3 +++ src/declarative/graphicsitems/qdeclarativetextedit.cpp | 2 +- src/declarative/graphicsitems/qdeclarativetextinput.cpp | 2 +- .../qdeclarativetextedit/tst_qdeclarativetextedit.cpp | 13 +++++++++++-- .../qdeclarativetextinput/tst_qdeclarativetextinput.cpp | 13 +++++++++++-- 5 files changed, 27 insertions(+), 6 deletions(-) diff --git a/src/declarative/QmlChanges.txt b/src/declarative/QmlChanges.txt index 3eed8d6..142920c 100644 --- a/src/declarative/QmlChanges.txt +++ b/src/declarative/QmlChanges.txt @@ -1,6 +1,9 @@ ============================================================================= The changes below are pre Qt 4.7.0 RC +TextInput and TextEdit: + - showInputPanelOnFocus property added + - openSoftwareInputPanel() and closeSoftwareInputPanel() functions added Flickable: - overShoot is replaced by boundsBehavior enumeration - flickingHorizontally and flickingVertically properties added diff --git a/src/declarative/graphicsitems/qdeclarativetextedit.cpp b/src/declarative/graphicsitems/qdeclarativetextedit.cpp index 167db77..9ccb8d2 100644 --- a/src/declarative/graphicsitems/qdeclarativetextedit.cpp +++ b/src/declarative/graphicsitems/qdeclarativetextedit.cpp @@ -1335,7 +1335,7 @@ void QDeclarativeTextEdit::setShowInputPanelOnFocus(bool showOnFocus) void QDeclarativeTextEdit::focusInEvent(QFocusEvent *event) { Q_D(const QDeclarativeTextEdit); - if (d->showInputPanelOnFocus && !isReadOnly()) { + if (d->showInputPanelOnFocus && !isReadOnly() && event->reason() != Qt::ActiveWindowFocusReason) { openSoftwareInputPanel(); } QDeclarativePaintedItem::focusInEvent(event); diff --git a/src/declarative/graphicsitems/qdeclarativetextinput.cpp b/src/declarative/graphicsitems/qdeclarativetextinput.cpp index 18e3595..9c70ea9 100644 --- a/src/declarative/graphicsitems/qdeclarativetextinput.cpp +++ b/src/declarative/graphicsitems/qdeclarativetextinput.cpp @@ -1282,7 +1282,7 @@ void QDeclarativeTextInput::setShowInputPanelOnFocus(bool showOnFocus) void QDeclarativeTextInput::focusInEvent(QFocusEvent *event) { Q_D(const QDeclarativeTextInput); - if (d->showInputPanelOnFocus && !isReadOnly()) { + if (d->showInputPanelOnFocus && !isReadOnly() && event->reason() != Qt::ActiveWindowFocusReason) { openSoftwareInputPanel(); } QDeclarativePaintedItem::focusInEvent(event); diff --git a/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp b/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp index 0df28d0..d3e3c3a 100644 --- a/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp +++ b/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp @@ -915,9 +915,18 @@ void tst_qdeclarativetextedit::sendRequestSoftwareInputPanelEvent() edit.setFocus(false); QCOMPARE(ic.openInputPanelReceived, false); QCOMPARE(ic.closeInputPanelReceived, true); + ic.closeInputPanelReceived = false; + + // active window focus reason should not cause input panel to open + QGraphicsObject * editObject = qobject_cast(&edit); + editObject->setFocus(Qt::ActiveWindowFocusReason); + QCOMPARE(ic.openInputPanelReceived, false); + QCOMPARE(ic.closeInputPanelReceived, false); + + // and input panel should not open if focus has already been set edit.setFocus(true); - QCOMPARE(ic.openInputPanelReceived, true); - QCOMPARE(ic.closeInputPanelReceived, true); + QCOMPARE(ic.openInputPanelReceived, false); + QCOMPARE(ic.closeInputPanelReceived, false); edit.setShowInputPanelOnFocus(true); QCOMPARE(inputPanelonFocusSpy.count(),2); diff --git a/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp b/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp index 155223d..c01cfa5 100644 --- a/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp +++ b/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp @@ -819,9 +819,18 @@ void tst_qdeclarativetextinput::sendRequestSoftwareInputPanelEvent() input.setFocus(false); QCOMPARE(ic.openInputPanelReceived, false); QCOMPARE(ic.closeInputPanelReceived, true); + ic.closeInputPanelReceived = false; + + // active window focus reason should not cause input panel to open + QGraphicsObject * inputObject = qobject_cast(&input); + inputObject->setFocus(Qt::ActiveWindowFocusReason); + QCOMPARE(ic.openInputPanelReceived, false); + QCOMPARE(ic.closeInputPanelReceived, false); + + // and input panel should not open if focus has already been set input.setFocus(true); - QCOMPARE(ic.openInputPanelReceived, true); - QCOMPARE(ic.closeInputPanelReceived, true); + QCOMPARE(ic.openInputPanelReceived, false); + QCOMPARE(ic.closeInputPanelReceived, false); input.setShowInputPanelOnFocus(true); QCOMPARE(inputPanelonFocusSpy.count(),2); -- cgit v0.12 From f5ff803e09ffbc73a1167d3f5a202af4a9767564 Mon Sep 17 00:00:00 2001 From: Jason McDonald Date: Fri, 28 May 2010 16:03:30 +1000 Subject: Add missign license headers. Reviewed-by: Trust Me --- mkspecs/symbian/linux-armcc/qplatformdefs.h | 41 +++++++++++++++++++++++++++++ mkspecs/symbian/linux-gcce/qplatformdefs.h | 41 +++++++++++++++++++++++++++++ 2 files changed, 82 insertions(+) diff --git a/mkspecs/symbian/linux-armcc/qplatformdefs.h b/mkspecs/symbian/linux-armcc/qplatformdefs.h index db67648..3b7d023 100644 --- a/mkspecs/symbian/linux-armcc/qplatformdefs.h +++ b/mkspecs/symbian/linux-armcc/qplatformdefs.h @@ -1 +1,42 @@ +/**************************************************************************** +** +** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the mkspecs of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** No Commercial Usage +** This file contains pre-release code and may not be distributed. +** You may use this file in accordance with the terms and conditions +** contained in the Technology Preview License Agreement accompanying +** this package. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Nokia gives you certain additional +** rights. These rights are described in the Nokia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + #include "../../common/symbian/qplatformdefs.h" diff --git a/mkspecs/symbian/linux-gcce/qplatformdefs.h b/mkspecs/symbian/linux-gcce/qplatformdefs.h index 4a658c5..fcbd9ea 100644 --- a/mkspecs/symbian/linux-gcce/qplatformdefs.h +++ b/mkspecs/symbian/linux-gcce/qplatformdefs.h @@ -1,2 +1,43 @@ +/**************************************************************************** +** +** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the mkspecs of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** No Commercial Usage +** This file contains pre-release code and may not be distributed. +** You may use this file in accordance with the terms and conditions +** contained in the Technology Preview License Agreement accompanying +** this package. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Nokia gives you certain additional +** rights. These rights are described in the Nokia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + #include "../../common/symbian/qplatformdefs.h" -- cgit v0.12 From aaf3e8013d21b7f9247da7751a340b75d1deedc2 Mon Sep 17 00:00:00 2001 From: Rhys Weatherley Date: Fri, 28 May 2010 17:40:08 +1000 Subject: Make QGLBuffer copiable Reviewed-by: Gunnar --- src/opengl/qglbuffer.cpp | 92 +++++++++++++++++++++++++++++++++++++++++++----- src/opengl/qglbuffer.h | 9 +++-- 2 files changed, 90 insertions(+), 11 deletions(-) diff --git a/src/opengl/qglbuffer.cpp b/src/opengl/qglbuffer.cpp index 223243c..d6e0109 100644 --- a/src/opengl/qglbuffer.cpp +++ b/src/opengl/qglbuffer.cpp @@ -42,6 +42,7 @@ #include #include #include +#include #include "qglbuffer.h" QT_BEGIN_NAMESPACE @@ -55,6 +56,20 @@ QT_BEGIN_NAMESPACE Buffer objects are created in the GL server so that the client application can avoid uploading vertices, indices, texture image data, etc every time they are needed. + + QGLBuffer objects can be copied around as a reference to the + underlying GL buffer object: + + \code + QGLBuffer buffer1(QGLBuffer::IndexBuffer); + buffer1.create(); + + QGLBuffer buffer2 = buffer1; + \endcode + + QGLBuffer performs a shallow copy when objects are copied in this + manner, but does not implement copy-on-write semantics. The original + object will be affected whenever the copy is modified. */ /*! @@ -116,13 +131,15 @@ class QGLBufferPrivate { public: QGLBufferPrivate(QGLBuffer::Type t) - : type(t), + : ref(1), + type(t), guard(0), usagePattern(QGLBuffer::StaticDraw), actualUsagePattern(QGLBuffer::StaticDraw) { } + QAtomicInt ref; QGLBuffer::Type type; QGLSharedResourceGuard guard; QGLBuffer::UsagePattern usagePattern; @@ -130,6 +147,19 @@ public: }; /*! + Constructs a new buffer object of type QGLBuffer::VertexBuffer. + + Note: this constructor just creates the QGLBuffer instance. The actual + buffer object in the GL server is not created until create() is called. + + \sa create() +*/ +QGLBuffer::QGLBuffer() + : d_ptr(new QGLBufferPrivate(QGLBuffer::VertexBuffer)) +{ +} + +/*! Constructs a new buffer object of \a type. Note: this constructor just creates the QGLBuffer instance. The actual @@ -142,6 +172,18 @@ QGLBuffer::QGLBuffer(QGLBuffer::Type type) { } +/*! + Constructs a shallow copy of \a other. + + Note: QGLBuffer does not implement copy-on-write semantics, + so \a other will be affected whenever the copy is modified. +*/ +QGLBuffer::QGLBuffer(const QGLBuffer &other) + : d_ptr(other.d_ptr) +{ + d_ptr->ref.ref(); +} + #define ctx d->guard.context() /*! @@ -150,13 +192,27 @@ QGLBuffer::QGLBuffer(QGLBuffer::Type type) */ QGLBuffer::~QGLBuffer() { - Q_D(QGLBuffer); - GLuint bufferId = d->guard.id(); - if (bufferId) { - // Switch to the original creating context to destroy it. - QGLShareContextScope scope(d->guard.context()); - glDeleteBuffers(1, &bufferId); + if (!d_ptr->ref.deref()) { + destroy(); + delete d_ptr; + } +} + +/*! + Assigns a shallow copy of \a other to this object. + + Note: QGLBuffer does not implement copy-on-write semantics, + so \a other will be affected whenever the copy is modified. +*/ +QGLBuffer &QGLBuffer::operator=(const QGLBuffer &other) +{ + if (d_ptr != other.d_ptr) { + other.d_ptr->ref.ref(); + if (!d_ptr->ref.deref()) + destroy(); + d_ptr = other.d_ptr; } + return *this; } /*! @@ -215,7 +271,7 @@ void QGLBuffer::setUsagePattern(QGLBuffer::UsagePattern value) This function will return false if the GL implementation does not support buffers, or there is no current QGLContext. - \sa isCreated(), allocate(), write() + \sa isCreated(), allocate(), write(), destroy() */ bool QGLBuffer::create() { @@ -242,7 +298,7 @@ bool QGLBuffer::create() /*! Returns true if this buffer has been created; false otherwise. - \sa create() + \sa create(), destroy() */ bool QGLBuffer::isCreated() const { @@ -251,6 +307,24 @@ bool QGLBuffer::isCreated() const } /*! + Destroys this buffer object, including the storage being + used in the GL server. All references to the buffer will + become invalid. +*/ +void QGLBuffer::destroy() +{ + Q_D(QGLBuffer); + GLuint bufferId = d->guard.id(); + if (bufferId) { + // Switch to the original creating context to destroy it. + QGLShareContextScope scope(d->guard.context()); + glDeleteBuffers(1, &bufferId); + } + d->guard.setId(0); + d->guard.setContext(0); +} + +/*! Reads the \a count bytes in this buffer starting at \a offset into \a data. Returns true on success; false if reading from the buffer is not supported. Buffer reading is not supported diff --git a/src/opengl/qglbuffer.h b/src/opengl/qglbuffer.h index 2fe1f1f..a1b45ff 100644 --- a/src/opengl/qglbuffer.h +++ b/src/opengl/qglbuffer.h @@ -64,9 +64,13 @@ public: PixelUnpackBuffer = 0x88EC // GL_PIXEL_UNPACK_BUFFER }; + QGLBuffer(); explicit QGLBuffer(QGLBuffer::Type type); + QGLBuffer(const QGLBuffer &other); ~QGLBuffer(); + QGLBuffer &operator=(const QGLBuffer &other); + enum UsagePattern { StreamDraw = 0x88E0, // GL_STREAM_DRAW @@ -95,6 +99,8 @@ public: bool create(); bool isCreated() const; + void destroy(); + bool bind() const; void release() const; @@ -114,9 +120,8 @@ public: bool unmap(); private: - QScopedPointer d_ptr; + QGLBufferPrivate *d_ptr; - Q_DISABLE_COPY(QGLBuffer) Q_DECLARE_PRIVATE(QGLBuffer) }; -- cgit v0.12 From b9d899339118f24b34182e7dbe7aed5956d927e7 Mon Sep 17 00:00:00 2001 From: Olivier Goffart Date: Tue, 25 May 2010 15:16:38 +0200 Subject: add test for QMetaMethod::invoke --- tests/auto/qmetaobject/tst_qmetaobject.cpp | 51 ++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) diff --git a/tests/auto/qmetaobject/tst_qmetaobject.cpp b/tests/auto/qmetaobject/tst_qmetaobject.cpp index c0b1303..b6d4558 100644 --- a/tests/auto/qmetaobject/tst_qmetaobject.cpp +++ b/tests/auto/qmetaobject/tst_qmetaobject.cpp @@ -172,6 +172,8 @@ private slots: void stdSet(); void classInfo(); + void metaMethod(); + signals: void value6Changed(); void value7Changed(const QString &); @@ -886,5 +888,54 @@ void tst_QMetaObject::classInfo() QCOMPARE(QLatin1String(b.metaObject()->classInfo(index).value()), QLatin1String("Christopher Pike")); } +void tst_QMetaObject::metaMethod() +{ + QString str("foo"); + QString ret("bar"); + QMetaMethod method; + QVERIFY(!method.invoke(this)); + QVERIFY(!method.invoke(this, Q_ARG(QString, str))); + QVERIFY(!method.invoke(this, Q_RETURN_ARG(QString, ret), Q_ARG(QString, str))); + QCOMPARE(str, QString("foo")); + QCOMPARE(ret, QString("bar")); + + + QtTestObject obj; + QString t1("1"); QString t2("2"); QString t3("3"); QString t4("4"); QString t5("5"); + QString t6("6"); QString t7("7"); QString t8("8"); QString t9("9"); QString t10("X"); + + int index = QtTestObject::staticMetaObject.indexOfMethod("sl5(QString,QString,QString,QString,QString)"); + QVERIFY(index > 0); + method = QtTestObject::staticMetaObject.method(index); + //wrong args + QVERIFY(!method.invoke(&obj, Q_ARG(QString, "1"), Q_ARG(QString, "2"), Q_ARG(QString, "3"), Q_ARG(QString, "4"))); + //QVERIFY(!method.invoke(&obj, Q_ARG(QString, "1"), Q_ARG(QString, "2"), Q_ARG(QString, "3"), Q_ARG(QString, "4"), Q_ARG(QString, "5"), Q_ARG(QString, "6"))); + //QVERIFY(!method.invoke(&obj, Q_ARG(QString, "1"), Q_ARG(QString, "2"), Q_ARG(QString, "3"), Q_ARG(QString, "4"), Q_ARG(int, 5))); + QVERIFY(!method.invoke(&obj, Q_RETURN_ARG(QString, ret), Q_ARG(QString, "1"), Q_ARG(QString, "2"), Q_ARG(QString, "3"), Q_ARG(QString, "4"), Q_ARG(QString, "5"))); + + //wrong object + //QVERIFY(!method.invoke(this, Q_ARG(QString, "1"), Q_ARG(QString, "2"), Q_ARG(QString, "3"), Q_ARG(QString, "4"), Q_ARG(QString, "5"))); + QVERIFY(!method.invoke(0, Q_ARG(QString, "1"), Q_ARG(QString, "2"), Q_ARG(QString, "3"), Q_ARG(QString, "4"), Q_ARG(QString, "5"))); + QCOMPARE(ret, QString("bar")); + QCOMPARE(obj.slotResult, QString()); + + QVERIFY(method.invoke(&obj, Q_ARG(QString, "1"), Q_ARG(QString, "2"), Q_ARG(QString, "3"), Q_ARG(QString, "4"), Q_ARG(QString, "5"))); + QCOMPARE(obj.slotResult, QString("sl5:12345")); + + index = QtTestObject::staticMetaObject.indexOfMethod("sl13(QList)"); + QVERIFY(index > 0); + QMetaMethod sl13 = QtTestObject::staticMetaObject.method(index); + QList returnValue, argument; + argument << QString("one") << QString("two") << QString("three"); + //wrong object + //QVERIFY(!sl13.invoke(this, Q_RETURN_ARG(QList, returnValue), Q_ARG(QList, argument))); + QVERIFY(!sl13.invoke(0, Q_RETURN_ARG(QList, returnValue), Q_ARG(QList, argument))); + QCOMPARE(returnValue, QList()); + + QVERIFY(sl13.invoke(&obj, Q_RETURN_ARG(QList, returnValue), Q_ARG(QList, argument))); + QCOMPARE(returnValue, argument); + QCOMPARE(obj.slotResult, QString("sl13")); +} + QTEST_MAIN(tst_QMetaObject) #include "tst_qmetaobject.moc" -- cgit v0.12 From 49a5cf7cd44584e04d1f54f3fbd0d5c86fe55c83 Mon Sep 17 00:00:00 2001 From: Olivier Goffart Date: Fri, 28 May 2010 11:49:20 +0200 Subject: QMetaMethod::invoke: Document that the function does not check the arguments And added an assert to ease debugging Task-number: QTBUG-10945 --- src/corelib/kernel/qmetaobject.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/corelib/kernel/qmetaobject.cpp b/src/corelib/kernel/qmetaobject.cpp index 4ad78fd..79a38cd 100644 --- a/src/corelib/kernel/qmetaobject.cpp +++ b/src/corelib/kernel/qmetaobject.cpp @@ -1454,6 +1454,11 @@ QMetaMethod::MethodType QMetaMethod::methodType() const If the "compute" slot does not take exactly one QString, one int and one double in the specified order, the call will fail. + \warning this method will not test the validity of the arguments: \a object + must be an instance of the class of the QMetaObject of which this QMetaMethod + has been constructed with. The arguments must have the same type as the ones + expected by the method, else, the behaviour is undefined. + \sa Q_ARG(), Q_RETURN_ARG(), qRegisterMetaType(), QMetaObject::invokeMethod() */ bool QMetaMethod::invoke(QObject *object, @@ -1473,6 +1478,8 @@ bool QMetaMethod::invoke(QObject *object, if (!object || !mobj) return false; + Q_ASSERT(mobj->cast(object)); + // check return type if (returnValue.data()) { const char *retType = typeName(); -- cgit v0.12 From fa7dfb24c2d165cad438eb28c83ac2fd60831b29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20R=C3=B8dal?= Date: Thu, 27 May 2010 16:07:46 +0200 Subject: Improve precision of testlib benchmarking. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 20 ms is a bit too to get a precise measurement due to limited timer resolution. We increase the limit to 50 ms and introduce a warm-up iteration to prevent any state or cache-related issues which can be hard to account for in the tests. On the N900 this seems to decrease the variance of test results by 30 %, and fixes some cases where the results were way off due to hidden state. Task-number: QT-3390 Reviewed-by: Morten Sørvig --- src/testlib/qbenchmarkmeasurement.cpp | 7 ++++++- src/testlib/qbenchmarkmeasurement_p.h | 1 + 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/testlib/qbenchmarkmeasurement.cpp b/src/testlib/qbenchmarkmeasurement.cpp index c03cbff..0a84792 100644 --- a/src/testlib/qbenchmarkmeasurement.cpp +++ b/src/testlib/qbenchmarkmeasurement.cpp @@ -66,7 +66,7 @@ qint64 QBenchmarkTimeMeasurer::stop() bool QBenchmarkTimeMeasurer::isMeasurementAccepted(qint64 measurement) { - return (measurement > 20); + return (measurement > 50); } int QBenchmarkTimeMeasurer::adjustIterationCount(int suggestion) @@ -74,6 +74,11 @@ int QBenchmarkTimeMeasurer::adjustIterationCount(int suggestion) return suggestion; } +bool QBenchmarkTimeMeasurer::needsWarmupIteration() +{ + return true; +} + int QBenchmarkTimeMeasurer::adjustMedianCount(int) { return 1; diff --git a/src/testlib/qbenchmarkmeasurement_p.h b/src/testlib/qbenchmarkmeasurement_p.h index 8ad3613..932852c 100644 --- a/src/testlib/qbenchmarkmeasurement_p.h +++ b/src/testlib/qbenchmarkmeasurement_p.h @@ -84,6 +84,7 @@ public: bool isMeasurementAccepted(qint64 measurement); int adjustIterationCount(int sugestion); int adjustMedianCount(int suggestion); + bool needsWarmupIteration(); QTest::QBenchmarkMetric metricType(); private: QTime time; -- cgit v0.12 From 60c12264b0ff01bb4888323b3acda0bc581021a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20R=C3=B8dal?= Date: Fri, 28 May 2010 11:55:47 +0200 Subject: Fixed bug where testlib would not respect the -iterations option. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reviewed-by: Morten Sørvig --- src/testlib/qbenchmark.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/testlib/qbenchmark.cpp b/src/testlib/qbenchmark.cpp index 23c5639..c88ecb0 100644 --- a/src/testlib/qbenchmark.cpp +++ b/src/testlib/qbenchmark.cpp @@ -159,7 +159,7 @@ void QBenchmarkTestMethodData::setResult( if (QBenchmarkGlobalData::current->iterationCount != -1) accepted = true; - if (QBenchmarkTestMethodData::current->runOnce || !setByMacro) { + else if (QBenchmarkTestMethodData::current->runOnce || !setByMacro) { iterationCount = 1; accepted = true; } -- cgit v0.12 From 71425f24893fecb15cd4d01e6dc3d391051e9d6b Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen Date: Fri, 28 May 2010 11:27:27 +0200 Subject: fix visibility detection for g++ with a qualified binary name it may be called g++-4.4 (versioned) or x86_64-pc-linux-gnu-g++ (cross-compiler), so make the pattern just match anything with g++. it may also be aliased to "c++", so catch that as well. otoh, "gcc" would be a poor choice for QMAKE_CXX, so don't recognize that. Reviewed-by: thiago Task-number: QTBUG-11065 --- config.tests/unix/fvisibility.test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.tests/unix/fvisibility.test b/config.tests/unix/fvisibility.test index 99e6fbe..27c6841 100755 --- a/config.tests/unix/fvisibility.test +++ b/config.tests/unix/fvisibility.test @@ -34,7 +34,7 @@ EOF case "$COMPILER" in -gcc|g++) +*g++*|*c++*) CMDLINE="-fvisibility=hidden" RunCompileTest ;; -- cgit v0.12 From df17b26b40717e35a534e373b2070d37817cb4a3 Mon Sep 17 00:00:00 2001 From: Thiago Macieira Date: Fri, 28 May 2010 13:50:28 +0200 Subject: tst_qtextcodec: Fix broken merge conflict resolution --- config.tests/unix/fvisibility.test | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.tests/unix/fvisibility.test b/config.tests/unix/fvisibility.test index 99e6fbe..5bc4b93 100755 --- a/config.tests/unix/fvisibility.test +++ b/config.tests/unix/fvisibility.test @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/sh -x FVISIBILITY_SUPPORT=no COMPILER=$1 @@ -34,7 +34,7 @@ EOF case "$COMPILER" in -gcc|g++) +*g++*|*c++*) CMDLINE="-fvisibility=hidden" RunCompileTest ;; -- cgit v0.12 From f9ca637a41ae2f8f5a5439766073bf19cbc7d9e2 Mon Sep 17 00:00:00 2001 From: Olivier Goffart Date: Fri, 28 May 2010 14:06:05 +0200 Subject: tst_qtextcodec: Fix broken merge conflict resolution --- tests/auto/qtextcodec/tst_qtextcodec.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/auto/qtextcodec/tst_qtextcodec.cpp b/tests/auto/qtextcodec/tst_qtextcodec.cpp index c91201e..0946c93 100644 --- a/tests/auto/qtextcodec/tst_qtextcodec.cpp +++ b/tests/auto/qtextcodec/tst_qtextcodec.cpp @@ -2001,7 +2001,7 @@ void tst_QTextCodec::threadSafety() QCOMPARE(res.results(), codecList); QCOMPARE(res2.results(), mibList); -#endif +#else QSKIP("This function is not yet supported with QT_NO_CONCURRENT defined.", SkipAll); #endif } -- cgit v0.12 From b0b4ca6547807fc602176c1ad262f15f6858116a Mon Sep 17 00:00:00 2001 From: Martin Smith Date: Fri, 28 May 2010 15:17:04 +0200 Subject: qdoc: Fixed the model/view programming page; tried a style change. --- .../model-view-programming.qdoc | 463 +++++++-------------- doc/src/template/style/style.css | 7 +- tools/qdoc3/doc.cpp | 12 - tools/qdoc3/htmlgenerator.cpp | 3 + 4 files changed, 166 insertions(+), 319 deletions(-) diff --git a/doc/src/frameworks-technologies/model-view-programming.qdoc b/doc/src/frameworks-technologies/model-view-programming.qdoc index 7568981..3bac8ce 100644 --- a/doc/src/frameworks-technologies/model-view-programming.qdoc +++ b/doc/src/frameworks-technologies/model-view-programming.qdoc @@ -46,71 +46,13 @@ /*! \page model-view-programming.html - \nextpage An Introduction to Model/View Programming - \startpage index.html Qt Reference Documentation \title Model/View Programming - \brief A guide to the extensible model/view architecture used by Qt's - item view classes. + \brief A guide to Qt's extensible model/view architecture. - \ingroup frameworks-technologies + \section1 Introduction to Model/View Programming - \list - \o \l{An Introduction to Model/View Programming} - \tableofcontents{1 An Introduction to Model/View Programming} - \o \l{Using Models and Views} - \tableofcontents{1 Using Models and Views} - \o \l{Model Classes} - \tableofcontents{1 Model Classes} - \o \l{Creating New Models} - \tableofcontents{1 Creating New Models} - \o \l{View Classes} - \tableofcontents{1 View Classes} - \o \l{Handling Selections in Item Views} - \tableofcontents{1 Handling Selections in Item Views} - \o \l{Delegate Classes} - \tableofcontents{1 Delegate Classes} - \o \l{Item View Convenience Classes} - \tableofcontents{1 Item View Convenience Classes} - \o \l{Using Drag and Drop with Item Views} - \tableofcontents{1 Using Drag and Drop with Item Views} - \o \l{Proxy Models} - \tableofcontents{1 Proxy Models} - \o \l{Model Subclassing Reference} - \tableofcontents{1 Model Subclassing Reference} - \endlist - - \keyword Model/View Classes - \section1 All Model/View Classes - - These classes use the model/view design pattern in which the - underlying data (in the model) is kept separate from the way the data - is presented and manipulated by the user (in the view). - - \annotatedlist model-view - - \section1 Related Examples - - \list - \o \l{itemviews/dirview}{Dir View} - \o \l{itemviews/spinboxdelegate}{Spin Box Delegate} - \o \l{itemviews/pixelator}{Pixelator} - \o \l{itemviews/simpletreemodel}{Simple Tree Model} - \o \l{itemviews/chart}{Chart} - \endlist -*/ - -/*! - \page model-view-introduction.html - \previouspage Model/View Programming - \nextpage Using Models and Views - \startpage index.html Qt Reference Documentation - - \title An Introduction to Model/View Programming - - \tableofcontents - - Qt 4 introduces a new set of item view classes that use a model/view + Qt 4 introduced a new set of item view classes that use a model/view architecture to manage the relationship between data and the way it is presented to the user. The separation of functionality introduced by this architecture gives developers greater flexibility to customize the @@ -121,7 +63,7 @@ view system. Each of the components in the architecture is explained, and examples are given that show how to use the classes provided. - \section1 The Model/View Architecture + \section2 The model/view architecture Model-View-Controller (MVC) is a design pattern originating from Smalltalk that is often used when building user interfaces. @@ -185,7 +127,7 @@ model and view about the state of the editor. \endlist - \section2 Models + \section3 Models All item models are based on the QAbstractItemModel class. This class defines an interface that is used by views and delegates to access data. @@ -225,7 +167,7 @@ QAbstractItemModel, QAbstractListModel, or QAbstractTableModel to create your own custom models. - \section2 Views + \section3 Views Complete implementations are provided for different kinds of views: QListView displays a list of items, QTableView displays data @@ -237,7 +179,7 @@ The available views are examined in the section on \l{View Classes}. - \section2 Delegates + \section3 Delegates QAbstractItemDelegate is the abstract base class for delegates in the model/view framework. Since Qt 4.4, the default delegate implementation is @@ -251,7 +193,7 @@ Delegates are described in the section on \l{Delegate Classes}. - \section2 Sorting + \section3 Sorting There are two ways of approaching sorting in the model/view architecture; which approach to choose depends on your underlying @@ -272,7 +214,7 @@ before presenting the data in the view. This is covered in detail in the section on \l {Proxy Models}. - \section2 Convenience Classes + \section3 Convenience classes A number of \e convenience classes are derived from the standard view classes for the benefit of applications that rely on Qt's item-based @@ -293,24 +235,13 @@ classes, such as QListView, QTableView, and QTreeView with QStandardItemModel. - \section1 The Model/View Components + \section1 Using models and views - The following sections describe the way in which the model/view pattern - is used in Qt. Each section provides an example of use, and is followed - by a section showing how you can create new components. -*/ - -/*! - \page model-view-using.html - \contentspage model-view-programming.html Contents - \previouspage An Introduction to Model/View Programming - \nextpage Model Classes + The following sections explain how to use the model/view pattern + in Qt. Each section includes an an example and is followed by a + section showing how to create new components. - \title Using Models and Views - - \tableofcontents - - \section1 Introduction + \section2 Two models included in Qt Two of the standard models provided by Qt are QStandardItemModel and QFileSystemModel. QStandardItemModel is a multi-purpose model that can be @@ -325,7 +256,7 @@ to set up a model for use with ready-made views, and explore how to manipulate data using model indexes. - \section1 Using Views with an Existing Model + \section2 Using views with an existing model The QListView and QTreeView classes are the most suitable views to use with QFileSystemModel. The example presented below displays the @@ -361,7 +292,7 @@ The \c index() function used in this case is unique to QFileSystemModel; we supply it with a directory and it returns a model index. Model indexes are - discussed in the \l{Model Classes} chapter. + discussed in \l{Model Classes}. The rest of the function just displays the views within a splitter widget, and runs the application's event loop: @@ -369,23 +300,15 @@ \snippet doc/src/snippets/shareddirmodel/main.cpp 8 In the above example, we neglected to mention how to handle selections - of items. This subject is covered in more detail in the chapter on - \l{Handling Selections in Item Views}. Before examining how selections - are handled, you may find it useful to read the \l{Model Classes} chapter - which describes the concepts used in the model/view framework. -*/ + of items. This subject is covered in more detail in the section about + \l{Handling Selections in Item Views}. -/*! - \page model-view-model.html - \contentspage model-view-programming.html Contents - \previouspage Using Models and Views - \nextpage Creating New Models - - \title Model Classes + \section1 Model classes - \tableofcontents + Before examining how selections are handled, you may find it + useful to examine the concepts used in the model/view framework. - \section1 Basic Concepts + \section2 Basic concepts In the model/view architecture, the model provides a standard interface that views and delegates use to access data. In Qt, the standard @@ -401,11 +324,11 @@ Models also notify any attached views about changes to data through the signals and slots mechanism. - This chapter describes some basic concepts that are central to the way + This section describes some basic concepts that are central to the way item of data are accessed by other components via a model class. More - advanced concepts are discussed in later chapters. + advanced concepts are discussed in later sections. - \section2 Model Indexes + \section3 Model indexes To ensure that the representation of the data is kept separate from the way it is accessed, the concept of a \e{model index} is introduced. Each @@ -435,7 +358,7 @@ and the model index of a parent item. The following sections describe and explain these properties in detail. - \section2 Rows and Columns + \section3 Rows and columns In its most basic form, a model can be accessed as a simple table in which items are located by their row and column numbers. \e{This does not mean @@ -468,7 +391,7 @@ section. \endtable - \section2 Parents of Items + \section3 Parents of items The table-like interface to item data provided by models is ideal when using data in a table or list view; the row and column number system maps @@ -501,7 +424,7 @@ \snippet doc/src/snippets/code/doc_src_model-view-programming.qdoc 5 \endtable - \section2 Item Roles + \section3 Item roles Items in a model can perform various \e roles for other components, allowing different kinds of data to be supplied for different situations. @@ -534,7 +457,7 @@ interpret or ignore this information as required. It is also possible to define additional roles for application-specific purposes. - \section2 Summary of Concepts + \section3 Summary \list \o Model indexes give views and delegates information about the location @@ -546,17 +469,16 @@ components, such as views and delegates. \o If a valid model index is specified for the parent item when an index is requested using \l{QAbstractItemModel::index()}{index()}, the index - returned will refer to an item beneath that parent item in the - model. + returned refers to an item beneath that parent item in the model. The index obtained refers to a child of that item. \o If an invalid model index is specified for the parent item when an index is requested using \l{QAbstractItemModel::index()}{index()}, the index - returned will refer to a top-level item in the model. + returned refers to a top-level item in the model. \o The \l{Qt::ItemDataRole}{role} distinguishes between the different kinds of data associated with an item. \endlist - \section2 Using Model Indexes + \section2 Using model indexes To demonstrate how data can be retrieved from a model, using model indexes, we set up a QFileSystemModel without a view and display the @@ -610,26 +532,16 @@ to the model. \endlist + \section2 Further reading - \section1 Further Reading - - New models can be created by implementing the standard interface provided - by QAbstractItemModel. In the \l{Creating New Models} chapter, we will - demonstrate this by creating a convenient ready-to-use model for holding - lists of strings. -*/ - -/*! - \page model-view-view.html - \contentspage model-view-programming.html Contents - \previouspage Creating New Models - \nextpage Handling Selections in Item Views + New models can be created by implementing the standard interface + provided by QAbstractItemModel. In the \l{Creating New Models} + section, we demonstrate this by creating a convenient ready-to-use + model for holding lists of strings. - \title View Classes + \section1 View classes - \tableofcontents - - \section1 Concepts + \section2 Concepts In the model/view architecture, the view obtains items of data from the model and presents them to the user. The way that the data is @@ -668,7 +580,7 @@ subclassed from the QHeaderView class to provide more specialized labels for views. - \section1 Using an Existing View + \section2 Using an existing view Qt provides three ready-to-use view classes that present data from models in ways that are familiar to most users. @@ -686,7 +598,7 @@ facilities, and can be customized to suit the needs of more specialized user interfaces. - \section2 Using a Model + \section3 Using a model We take the string list model that \l{Creating New Models}{we created as an example model}, set it up with some data, and construct a view to @@ -697,8 +609,8 @@ Note that the \c StringListModel is declared as a \l QAbstractItemModel. This allows us to use the abstract interface to the model, and - ensures that the code will still work even if we replace the string list - model with a different model in the future. + ensures that the code still works, even if we replace the string list + model with a different model. The list view provided by \l QListView is sufficient for presenting the items in the string list model. We construct the view, and set up @@ -721,7 +633,7 @@ list model. Since the model is editable, the view automatically allows each item in the list to be edited using the default delegate. - \section2 Using Multiple Views onto the Same Model + \section3 Using multiple views of a model Providing multiple views onto the same model is simply a matter of setting the same model for each view. In the following code we create @@ -745,7 +657,7 @@ selection model. This can be useful in certain situations but, for many applications, a shared selection model is desirable. - \section1 Handling Selections of Items + \section2 Handling selections of items The mechanism for handling selections of items within views is provided by the \l QItemSelectionModel class. All of the standard views construct @@ -758,13 +670,12 @@ when we want to provide multiple consistent views onto the same model data. - Generally, unless you are subclassing a model or view, you will not - need to manipulate the contents of selections directly. However, the - interface to the selection model can be accessed, if required, and - this is explored in the chapter on - \l{Handling Selections in Item Views}. + Generally, unless you are subclassing a model or view, you don't + need to manipulate the contents of selections directly. However, + the interface to the selection model can be accessed, if required, + and this is explored in \l{Handling Selections in Item Views}. - \section2 Sharing Selections Between Views + \section3 Sharing selections among views Although it is convenient that the view classes provide their own selection models by default, when we use more than one view onto the @@ -788,19 +699,9 @@ each view; for example, a contiguous selection in a table view can be represented as a fragmented set of highlighted items in a tree view. -*/ - -/*! - \page model-view-delegate.html - \contentspage model-view-programming.html Contents - \previouspage Handling Selections in Item Views - \nextpage Item View Convenience Classes - - \title Delegate Classes - - \tableofcontents + \section1 Delegate classes - \section1 Concepts + \section2 Concepts Unlike the Model-View-Controller pattern, the model/view design does not include a completely separate component for managing interaction with @@ -821,13 +722,13 @@ Editors for delegates can be implemented either by using widgets to manage the editing process or by handling events directly. - The first approach is covered later in this chapter, and it is also + The first approach is covered later in this section, and it is also shown in the \l{Spin Box Delegate Example}{Spin Box Delegate} example. The \l{Pixelator Example}{Pixelator} example shows how to create a custom delegate that performs specialized rendering for a table view. - \section1 Using an Existing Delegate + \section2 Using an existing delegate The standard views provided with Qt use instances of \l QItemDelegate to provide editing facilities. This default implementation of the @@ -845,15 +746,15 @@ necessary to use this function when setting the delegate for a custom view. - \section1 A Simple Delegate + \section2 A simple delegate - The delegate implemented here uses a \l QSpinBox to provide editing - facilities, and is mainly intended for use with models that display - integers. Although we set up a custom integer-based table model for - this purpose, we could easily have used \l QStandardItemModel instead - since the custom delegate will control data entry. We construct a - table view to display the contents of the model, and this will use - the custom delegate for editing. + The delegate implemented here uses a \l QSpinBox to provide + editing facilities, and is mainly intended for use with models + that display integers. Although we set up a custom integer-based + table model for this purpose, we could easily have used \l + QStandardItemModel instead, since the custom delegate controls + data entry. We construct a table view to display the contents of + the model, and this will use the custom delegate for editing. \img spinboxdelegate-example.png @@ -866,7 +767,7 @@ Note that no editor widgets are set up when the delegate is constructed. We only construct an editor widget when it is needed. - \section2 Providing an Editor + \section3 Providing an editor In this example, when the table view needs to provide an editor, it asks the delegate to provide an editor widget that is appropriate @@ -906,7 +807,7 @@ the model, in which case we would need to cast the widget to the appropriate type before accessing its member functions. - \section2 Submitting Data to the Model + \section3 Submitting data to the model When the user has finished editing the value in the spin box, the view asks the delegate to store the edited value in the model by calling the @@ -935,7 +836,7 @@ delegate with different kinds of models because \l{QVariant} provides sensible default values for unexpected data. - \section2 Updating the Editor's Geometry + \section3 Updating the editor's geometry It is the responsibility of the delegate to manage the editor's geometry. The geometry must be set when the editor is created, and @@ -951,7 +852,7 @@ position the editor in relation to the other elements in the item. \target EditingHints - \section2 Editing Hints + \section3 Editing hints After editing, delegates should provide hints to the other components about the result of the editing process, and provide hints that will @@ -982,19 +883,10 @@ Delegates do not have to emit these hints, but those that do not will be less integrated into applications, and will be less usable than those that emit hints to support common editing actions. -*/ - -/*! - \page model-view-selection.html - \contentspage model-view-programming.html Contents - \previouspage View Classes - \nextpage Delegate Classes - \title Handling Selections in Item Views + \section1 Handling selections in item views - \tableofcontents - - \section1 Concepts + \section2 Concepts The selection model used in the item view classes offers many improvements over the selection model used in Qt 3. It provides a more general @@ -1022,8 +914,7 @@ after its application through the use of certain types of selection commands. These are discussed later in this section. - - \section2 Current Item and Selected Items + \section3 Current item & selected items In a view, there is always a current item and a selected item - two independent states. An item can be the current item and selected at the @@ -1068,8 +959,7 @@ be informed of changes to the selection model via the signals and slots mechanism. - - \section1 Using a Selection Model + \section2 Using a selection model The standard view classes provide default selection models that can be used in most applications. A selection model belonging to one view @@ -1088,8 +978,7 @@ each having a different effect on the selections already present in the selection model. - - \section2 Selecting Items + \section3 Selecting items To demonstrate some of the principal features of selections, we construct an instance of a custom table model with 32 items in total, and open a @@ -1122,12 +1011,12 @@ The selection of items can be modified using various operations that are defined by the selection flags. The selection that results from - these operations may have a complex structure, but will be represented + these operations may have a complex structure, but it is represented efficiently by the selection model. The use of different selection flags to manipulate the selected items is described when we examine how to update a selection. - \section2 Reading the Selection State + \section3 Reading the selection state The model indexes stored in the selection model can be read using the \l{QItemSelectionModel::selectedIndexes()}{selectedIndexes()} @@ -1176,7 +1065,7 @@ Monitoring selections made by the user is straightforward with these signals, but we can also update the selection model directly. - \section2 Updating a Selection + \section3 Updating a selection Selection commands are provided by a combination of selection flags, defined by \l{QItemSelectionModel::SelectionFlag}. @@ -1215,7 +1104,7 @@ with a command that is a combination of \l{QItemSelectionModel::SelectionFlag}{Select} and \l{QItemSelectionModel::SelectionFlag}{Rows}, the - entire row containing the item referred to will be selected. + entire row containing the item referred to is selected. The following code demonstrates the use of the \l{QItemSelectionModel::SelectionFlag}{Rows} and \l{QItemSelectionModel::SelectionFlag}{Columns} flags: @@ -1248,7 +1137,7 @@ has the effect of resetting the selection model's collection of model indexes. - \section2 Selecting All Items in a Model + \section3 Selecting all items in a model To select all items in a model, it is necessary to create a selection for each level of the model that covers all items in that @@ -1271,19 +1160,8 @@ \l{QAbstractItemModel::hasChildren()}{hasChildren()} function is used to determine whether any given item is the parent of another level of items. -*/ - -/*! - \page model-view-creating-models.html - \contentspage model-view-programming.html Contents - \previouspage Model Classes - \nextpage View Classes - - \title Creating New Models - \tableofcontents - - \section1 Introduction + \section1 Creating new models The separation of functionality between the model/view components allows models to be created that can take advantage of existing views. This @@ -1301,9 +1179,9 @@ for interfaces to simpler non-hierarchical data structures, and are easier to use as a starting point for simple list and table models. - In this chapter, we create a simple read-only model to explore + In this section, we create a simple read-only model to explore the basic principles of the model/view architecture. Later in this - chapter, we will adapt this simple model so that items can be modified + section, we adapt this simple model so that items can be modified by the user. For an example of a more complex model, see the @@ -1312,21 +1190,21 @@ The requirements of QAbstractItemModel subclasses is described in more detail in the \l{Model Subclassing Reference} document. - \section1 Designing a Model + \section2 Designing a model - When creating a new model for an existing data structure, it is important - to consider which type of model should be used to provide an interface - onto the data. If the data structure can be represented as a - list or table of items, you can subclass QAbstractListModel or - QAbstractTableModel since these classes provide suitable default - implementations for many functions. + When creating a new model for an existing data structure, it is + important to consider which type of model should be used to + provide an interface onto the data. If the data structure can be + represented as a list or table of items, you can subclass + QAbstractListModel or QAbstractTableModel since these classes + provide suitable default implementations for many functions. - However, if the underlying data structure can only be represented by a - hierarchical tree structure, it is necessary to subclass + However, if the underlying data structure can only be represented + by a hierarchical tree structure, it is necessary to subclass QAbstractItemModel. This approach is taken in the \l{itemviews/simpletreemodel}{Simple Tree Model} example. - In this chapter, we will implement a simple model based on a list of + In this section, we implement a simple model based on a list of strings, so the QAbstractListModel provides an ideal base class on which to build. @@ -1338,7 +1216,7 @@ interact with it using the standard API. The model described below provides a custom constructor for just this purpose. - \section1 A Read-Only Example Model + \section2 A read-only example model The model implemented here is a simple, non-hierarchical, read-only data model based on the standard QStringListModel class. It has a \l QStringList @@ -1355,7 +1233,6 @@ functions as there are default implementations for most of the interface. The class declaration is as follows: - \snippet doc/src/snippets/stringlistmodel/model.h 0 \snippet doc/src/snippets/stringlistmodel/model.h 1 \codeline @@ -1379,7 +1256,7 @@ The list of strings is stored internally in the \c stringList private member variable. - \section2 Dimensions of The Model + \section3 Dimensions of the model We want the number of rows in the model to be the same as the number of strings in the string list. We implement the @@ -1394,7 +1271,7 @@ reimplement the \l{QAbstractItemModel::columnCount()}{columnCount()} function. - \section2 Model Headers and Data + \section3 Model headers & data For items in the view, we want to return the strings in the string list. The \l{QAbstractItemModel::data()}{data()} function is responsible for @@ -1433,7 +1310,7 @@ \l{Qt::ItemDataRole}{ToolTipRole} that views can use to display information about items in a tooltip. - \section1 An Editable Model + \section2 An editable model The read-only model shows how simple choices could be presented to the user but, for many applications, an editable list model is much more @@ -1447,7 +1324,7 @@ \snippet doc/src/snippets/stringlistmodel/model.h 2 \snippet doc/src/snippets/stringlistmodel/model.h 3 - \section2 Making the Model Editable + \section3 Making the model editable A delegate checks whether an item is editable before creating an editor. The model must let the delegate know that its items are @@ -1473,7 +1350,7 @@ \l{Qt::ItemDataRole}{EditRole} since this is the role used by the standard item delegate. For boolean values, however, you can use Qt::CheckStateRole and set the Qt::ItemIsUserCheckable flag; a - checkbox will then be used for editing the value. The underlying + checkbox is then used for editing the value. The underlying data in this model is the same for all roles, so this detail just makes it easier to integrate the model with standard components. @@ -1487,7 +1364,7 @@ \snippet doc/src/snippets/stringlistmodel/model.cpp 1 - \section2 Inserting and Removing Rows + \section3 Inserting & removing rows It is possible to change the number of rows and columns in a model. In the string list model it only makes sense to change the number of rows, so we @@ -1536,39 +1413,29 @@ operation and let other components know that the dimensions of the model have changed. - \section1 Next Steps + \section2 Next steps We can display the data provided by this model, or any other model, using the \l QListView class to present the model's items in the form of a vertical list. For the string list model, this view also provides a default editor so that the items can be manipulated. We examine the possibilities made available by - the standard view classes in the chapter on \l{View Classes}. + the standard view classes in \l{View Classes}. The \l{Model Subclassing Reference} document discusses the requirements of QAbstractItemModel subclasses in more detail, and provides a guide to the virtual functions that must be implemented to enable various features in different types of models. -*/ - -/*! - \page model-view-convenience.html - \contentspage model-view-programming.html Contents - \previouspage Delegate Classes - \nextpage Using Drag and Drop with Item Views - - \title Item View Convenience Classes - \tableofcontents + \section1 Item view convenience classes - \section1 Overview - - Alongside the model/view classes, Qt 4 also includes standard widgets to - provide classic item-based container widgets. These behave in a similar - way to the item view classes in Qt 3, but have been rewritten to use the - underlying model/view framework for performance and maintainability. The - old item view classes are still available in the compatibility library - (see the \l{porting4.html}{Porting Guide} for more information). + Qt 4 also introduced some standard widgets to provide classic + item-based container widgets. These behave in a similar way to the + item view classes in Qt 3, but have been rewritten to use the + underlying model/view framework for performance and + maintainability. The old item view classes are still available in + the compatibility library (see the \l{porting4.html}{Porting + Guide} for more information). The item-based widgets have been given names which reflect their uses: \c QListWidget provides a list of items, \c QTreeWidget displays a @@ -1577,7 +1444,7 @@ class which implements common behavior for item selection and header management. - \section1 List Widgets + \section2 List widgets Single level lists of items are typically displayed using a \c QListWidget and a number of \c{QListWidgetItem}s. A list widget is constructed in the @@ -1612,8 +1479,7 @@ \snippet doc/src/snippets/qlistwidget-using/mainwindow.cpp 4 \snippet doc/src/snippets/qlistwidget-using/mainwindow.cpp 5 - - \section1 Tree Widgets + \section2 Tree widgets Trees or hierarchical lists of items are provided by the \c QTreeWidget and \c QTreeWidgetItem classes. Each item in the tree widget can have @@ -1668,8 +1534,7 @@ \snippet doc/src/snippets/qtreewidget-using/mainwindow.cpp 8 \snippet doc/src/snippets/qtreewidget-using/mainwindow.cpp 9 - - \section1 Table Widgets + \section2 Table widgets Tables of items similar to those found in spreadsheet applications are constructed with the \c QTableWidget and \c QTableWidgetItem. These @@ -1693,7 +1558,7 @@ Note that the rows and columns in the table begin at zero. - \section1 Common Features + \section2 Common features There are a number of item-based features common to each of the convenience classes that are available through the same interfaces @@ -1702,7 +1567,7 @@ Look at the list of \l{Model/View Classes} for each of the widgets for more details about the use of each function used. - \section2 Hidden Items + \section3 Hidden items It is sometimes useful to be able to hide items in an item view widget rather than remove them. Items for all of the above widgets can be @@ -1713,7 +1578,7 @@ Since this operation is item-based, the same function is available for all three convenience classes. - \section2 Selections + \section3 Selections The way items are selected is controlled by the widget's selection mode (\l{QAbstractItemView::SelectionMode}). @@ -1764,7 +1629,7 @@ current item may not lie within the selection, depending on the way the user formed the selection. - \section2 Searching + \section3 Searching It is often useful to be able to find items within an item view widget, either as a developer or as a service to present to users. All three @@ -1782,19 +1647,8 @@ The above code causes items in a tree widget to be selected if they contain the text given in the search string. This pattern can also be used in the list and table widgets. -*/ - -/*! - \page model-view-dnd.html - \contentspage model-view-programming.html Contents - \previouspage Item View Convenience Classes - \nextpage Proxy Models - \title Using Drag and Drop with Item Views - - \tableofcontents - - \section1 Overview + \section1 Using drag & drop with item views Qt's drag and drop infrastructure is fully supported by the model/view framework. Items in lists, tables, and trees can be dragged within the views, and data can be @@ -1813,7 +1667,7 @@ See also the \l{Model Subclassing Reference} for more information about enabling drag and drop support in new models. - \section1 Using Convenience Views + \section2 Using convenience views Each of the types of item used with QListWidget, QTableWidget, and QTreeWidget is configured to use a different set of flags by default. For example, each @@ -1852,7 +1706,7 @@ \snippet doc/src/snippets/qlistwidget-dnd/mainwindow.cpp 1 - \section1 Using Model/View Classes + \section2 Using model/view classes Setting up a view for drag and drop follows the same pattern used with the convenience views. For example, a QListView can be set up in the same way as a @@ -1874,7 +1728,7 @@ of QAbstractItemModel::removeRows(), either directly or by inheriting the implementation from its base class. - \section2 Enabling Drag and Drop for Items + \section3 Enabling drag & drop for items Models indicate to views which items can be dragged, and which will accept drops, by reimplementing the QAbstractItemModel::flags() function to provide suitable @@ -1894,7 +1748,7 @@ obtain a default set of flags by calling its implementation of the flags() function. - \section2 Encoding Exported Data + \section3 Encoding exported data When items of data are exported from a model in a drag and drop operation, they are encoded into an appropriate format corresponding to one or more MIME types. @@ -1923,7 +1777,7 @@ and that stream operators must be implemented for them. See the QMetaObject class description for details. - \section2 Inserting Dropped Data into a Model + \section3 Inserting dropped data into a model The way that any given model handles dropped data depends on both its type (list, table, or tree) and the way its contents is likely to be presented to @@ -1988,7 +1842,7 @@ example shown here, the model only has one level, so this approach is not appropriate. - \section2 Decoding Imported Data + \section3 Decoding imported data Each implementation of \l{QAbstractItemModel::dropMimeData()}{dropMimeData()} must also decode the data and insert it into the model's underlying data structure. @@ -2007,19 +1861,8 @@ QAbstractItemModel::insertRows() and QAbstractItemModel::setData() functions. \sa {Item Views Puzzle Example} -*/ - -/*! - \page model-view-proxy-models.html - \contentspage model-view-programming.html Contents - \previouspage Using Drag and Drop with Item Views - \nextpage Model Subclassing Reference - \title Proxy Models - - \tableofcontents - - \section1 Overview + \section1 Proxy models In the model/view framework, items of data supplied by a single model can be shared by any number of views, and each of these can possibly represent the same information @@ -2042,7 +1885,7 @@ framework ensure that each view is updated appropriately no matter how many proxy models are placed between itself and the source model. - \section1 Using Proxy Models + \section2 Using proxy models Proxy models can be inserted between an existing model and any number of views. Qt is supplied with a standard proxy model, QSortFilterProxyModel, that is usually @@ -2061,7 +1904,7 @@ in applications. More specialized proxy models can be created by subclassing this classes and implementing the required comparison operations. - \section1 Customizing Proxy Models + \section2 Customizing proxy models Generally, the type of processing used in a proxy model involves mapping each item of data from its original location in the source model to either a different location in @@ -2074,7 +1917,7 @@ being supplied to views, and also allows the contents of a source model to be supplied to views as pre-sorted data. - \section2 Custom Filtering Models + \section3 Custom filtering models The QSortFilterProxyModel class provides a filtering model that is fairly versatile, and which can be used in a variety of common situations. For advanced users, @@ -2095,7 +1938,7 @@ return true to ensure that all items are passed through to views; reimplementations of these functions should return false to filter out individual rows and columns. - \section2 Custom Sorting Models + \section3 Custom sorting models QSortFilterProxyModel instances use Qt's built-in qStableSort() function to set up mappings between items in the source model and those in the proxy model, allowing a @@ -2103,18 +1946,8 @@ source model. To provide custom sorting behavior, reimplement the \l{QSortFilterProxyModel::lessThan()}{lessThan()} function to perform custom comparisons. -*/ - -/*! - \page model-view-model-subclassing.html - \contentspage model-view-programming.html Contents - \previouspage Proxy Models - - \title Model Subclassing Reference - \tableofcontents - - \section1 Introduction + \section1 Model subclassing reference Model subclasses need to provide implementations of many of the virtual functions defined in the QAbstractItemModel base class. The number of these functions that need @@ -2143,13 +1976,13 @@ For more information, see the \l {"Item View Classes" Chapter of C++ GUI Programming with Qt 4}. - \section1 Item Data Handling + \section2 Item data handling Models can provide varying levels of access to the data they provide: They can be simple read-only components, some models may support resizing operations, and others may allow items to be edited. - \section2 Read-Only Access + \section2 Read-Only access To provide read-only access to data provided by a model, the following functions \e{must} be implemented in the model's subclass: @@ -2185,7 +2018,7 @@ provide this function because it is already implemented in QAbstractListModel. \endtable - \section2 Editable Items + \section3 Editable items Editable models allow items of data to be modified, and may also provide functions to allow rows and columns to be inserted and removed. To enable @@ -2211,7 +2044,7 @@ signal to inform other components of the change. \endtable - \section2 Resizable Models + \section3 Resizable models All types of model can support the insertion and removal of rows. Table models and hierarchical models can also support the insertion and removal of columns. @@ -2271,7 +2104,7 @@ it is necessary to emit the \l{QAbstractItemModel::layoutChanged()}{layoutChanged()} signal to cause any attached views to be updated. - \section2 Lazy Population of Model Data + \section3 Lazy population of model data Lazy population of model data effectively allows requests for information about the model to be deferred until it is actually needed by views. @@ -2305,13 +2138,12 @@ children may be displayed incorrectly in some views until the user attempts to view the non-existent child items. - - \section1 Navigation and Model Index Creation + \section2 Navigation & model index creation Hierarchical models need to provide functions that views can call to navigate the tree-like structures they expose, and obtain model indexes for items. - \section2 Parents and Children + \section3 Parents & children Since the structure exposed to views is determined by the underlying data structure, it is up to each model subclass to create its own model indexes @@ -2335,7 +2167,7 @@ models to supply some unique identifier to this function to ensure that the model index can be re-associated with its corresponding item later on. - \section1 Drag and Drop Support and MIME Type Handling + \section2 Drag & drop support and MIME type handling The model/view classes support drag and drop operations, providing default behavior that is sufficient for many applications. However, it is also possible to customize @@ -2347,7 +2179,7 @@ The \l{#Convenience Views}{Convenience Views} section provides an overview of this behavior. - \section2 MIME Data + \section3 MIME data By default, the built-in models and views use an internal MIME type (\c{application/x-qabstractitemmodeldatalist}) to pass around information about @@ -2394,7 +2226,7 @@ the QMimeData::setImageData(), QMimeData::setColorData(), and QMimeData::setHtml() functions. - \section2 Accepting Dropped Data + \section3 Accepting dropped data When a drag and drop operation is performed over a view, the underlying model is queried to determine which types of operation it supports and the MIME types @@ -2466,7 +2298,7 @@ For more information about drag and drop with item views, refer to \l{Using Drag and Drop with Item Views}. - \section2 Convenience Views + \section3 Convenience views The convenience views (QListWidget, QTableWidget, and QTreeWidget) override the default drag and drop functionality to provide less flexible, but more @@ -2477,7 +2309,7 @@ into the model. For more information on drag and drop in convenience views, you can see \l{Using Drag and Drop with Item Views}. - \section1 Performance Optimization for Large Amounts of Data + \section2 Performance optimization for large amounts of data The \l{QAbstractItemModel::}{canFetchMore()} function checks if the parent has more data available and returns true or false accordingly. The @@ -2498,4 +2330,23 @@ \l{QAbstractItemModel::}{canFetchMore()} and \l{QAbstractItemModel::} {fetchMore()} must be reimplemented as their default implementation returns false and does nothing. + + \keyword Model/View Classes + \section1 The model/view classes + + These classes use the model/view design pattern in which the + underlying data (in the model) is kept separate from the way the + data is presented and manipulated by the user (in the view). + + \annotatedlist model-view + + \section1 Related examples + + \list + \o \l{itemviews/dirview}{Dir View} + \o \l{itemviews/spinboxdelegate}{Spin Box Delegate} + \o \l{itemviews/pixelator}{Pixelator} + \o \l{itemviews/simpletreemodel}{Simple Tree Model} + \o \l{itemviews/chart}{Chart} + \endlist */ diff --git a/doc/src/template/style/style.css b/doc/src/template/style/style.css index c155d9b..47fe2e0 100755 --- a/doc/src/template/style/style.css +++ b/doc/src/template/style/style.css @@ -39,7 +39,7 @@ h1, h2, h3, h4, h5, h6 { font-size: 100%; - font-weight: normal; +/* font-weight: normal; */ } q:before, q:after { @@ -949,6 +949,11 @@ margin-left: 15px; } + .wrap .content .toc .level3 + { + margin-left: 30px; + } + .content .toc li { font: normal 10px/1.2 Verdana; diff --git a/tools/qdoc3/doc.cpp b/tools/qdoc3/doc.cpp index 5716626..280f055 100644 --- a/tools/qdoc3/doc.cpp +++ b/tools/qdoc3/doc.cpp @@ -2746,18 +2746,6 @@ Doc::SectioningUnit Doc::granularity() const } } -#if notyet // ### -Doc::SectioningUnit Doc::sectioningUnit() const -{ - if (priv == 0 || priv->extra == 0) { - return DocPrivateExtra().sectioningUnit; - } - else { - return priv->extra->sectioningUnit; - } -} -#endif - const QSet &Doc::parameterNames() const { return priv == 0 ? *null_Set_QString() : priv->params; diff --git a/tools/qdoc3/htmlgenerator.cpp b/tools/qdoc3/htmlgenerator.cpp index 16df0c0..b103981 100644 --- a/tools/qdoc3/htmlgenerator.cpp +++ b/tools/qdoc3/htmlgenerator.cpp @@ -4060,10 +4060,13 @@ int HtmlGenerator::hOffset(const Node *node) case Node::Class: return 2; case Node::Fake: + return 1; +#if 0 if (node->doc().briefText().isEmpty()) return 1; else return 2; +#endif case Node::Enum: case Node::Typedef: case Node::Function: -- cgit v0.12 From b42315c1d7811a0997181e188fc39a368ac9175f Mon Sep 17 00:00:00 2001 From: Jani Hautakangas Date: Fri, 28 May 2010 17:30:26 +0300 Subject: Add runtime_graphics_system flag to QApplicationPrivate. This flag can be internally used to detect if QRuntimeGraphicsSystem is used. In some cases Qt needs to know if runtime graphics system is used and it's better to have a flag than relsolving graphics system name every time. Reviewed-by: Jason Barron --- src/gui/kernel/qapplication.cpp | 1 + src/gui/kernel/qapplication_p.h | 1 + src/gui/kernel/qapplication_s60.cpp | 7 +++---- src/gui/painting/qgraphicssystem_runtime.cpp | 1 + src/gui/painting/qwindowsurface.cpp | 5 +++++ src/gui/painting/qwindowsurface_s60.cpp | 2 +- 6 files changed, 12 insertions(+), 5 deletions(-) diff --git a/src/gui/kernel/qapplication.cpp b/src/gui/kernel/qapplication.cpp index 3d4bf5d..a2c058a 100644 --- a/src/gui/kernel/qapplication.cpp +++ b/src/gui/kernel/qapplication.cpp @@ -446,6 +446,7 @@ QPalette *QApplicationPrivate::set_pal = 0; // default palette set by pro QGraphicsSystem *QApplicationPrivate::graphics_system = 0; // default graphics system QString QApplicationPrivate::graphics_system_name; // graphics system id - for delayed initialization +bool QApplicationPrivate::runtime_graphics_system = false; Q_GLOBAL_STATIC(QMutex, applicationFontMutex) QFont *QApplicationPrivate::app_font = 0; // default application font diff --git a/src/gui/kernel/qapplication_p.h b/src/gui/kernel/qapplication_p.h index e30b6be..e83cd71 100644 --- a/src/gui/kernel/qapplication_p.h +++ b/src/gui/kernel/qapplication_p.h @@ -412,6 +412,7 @@ public: static QPalette *set_pal; static QGraphicsSystem *graphics_system; static QString graphics_system_name; + static bool runtime_graphics_system; private: static QFont *app_font; // private for a reason! Always use QApplication::font() instead! diff --git a/src/gui/kernel/qapplication_s60.cpp b/src/gui/kernel/qapplication_s60.cpp index 7e270aa..8ab82c9 100644 --- a/src/gui/kernel/qapplication_s60.cpp +++ b/src/gui/kernel/qapplication_s60.cpp @@ -66,7 +66,6 @@ #include "private/qgraphicssystem_runtime_p.h" #endif - #include "apgwgnam.h" // For CApaWindowGroupName #include // For CMdaAudioToneUtility @@ -958,7 +957,7 @@ void QSymbianControl::Draw(const TRect& controlRect) const if (engine->type() == QPaintEngine::Raster) { QS60WindowSurface *s60Surface; #ifdef QT_GRAPHICSSYSTEM_RUNTIME - if (QApplicationPrivate::graphics_system_name == QLatin1String("runtime")) { + if (QApplicationPrivate::runtime_graphics_system) { QRuntimeWindowSurface *rtSurface = static_cast(qwidget->windowSurface()); s60Surface = static_cast(rtSurface->m_windowSurface); @@ -1855,7 +1854,7 @@ int QApplicationPrivate::symbianProcessWsEvent(const QSymbianEvent *symbianEvent if (callSymbianEventFilters(symbianEvent)) return 1; #ifdef QT_GRAPHICSSYSTEM_RUNTIME - if(QApplicationPrivate::graphics_system_name == QLatin1String("runtime")) { + if(QApplicationPrivate::runtime_graphics_system) { bool switchToSwRendering(false); foreach (QWidget *w, QApplication::topLevelWidgets()) { @@ -1887,7 +1886,7 @@ int QApplicationPrivate::symbianProcessWsEvent(const QSymbianEvent *symbianEvent if (callSymbianEventFilters(symbianEvent)) return 1; #ifdef QT_GRAPHICSSYSTEM_RUNTIME - if(QApplicationPrivate::graphics_system_name == QLatin1String("runtime")) { + if(QApplicationPrivate::runtime_graphics_system) { QRuntimeGraphicsSystem *gs = static_cast(QApplicationPrivate::graphics_system); gs->setGraphicsSystem(QLatin1String("openvg"), S60->memoryLimitForHwRendering); diff --git a/src/gui/painting/qgraphicssystem_runtime.cpp b/src/gui/painting/qgraphicssystem_runtime.cpp index 1c5d944..32a8578 100644 --- a/src/gui/painting/qgraphicssystem_runtime.cpp +++ b/src/gui/painting/qgraphicssystem_runtime.cpp @@ -344,6 +344,7 @@ QRuntimeGraphicsSystem::QRuntimeGraphicsSystem() m_graphicsSystem(0), m_graphicsSystemChangeMemoryLimit(0) { QApplicationPrivate::graphics_system_name = QLatin1String("runtime"); + QApplicationPrivate::runtime_graphics_system = true; #ifdef Q_OS_SYMBIAN m_graphicsSystemName = QLatin1String("openvg"); diff --git a/src/gui/painting/qwindowsurface.cpp b/src/gui/painting/qwindowsurface.cpp index 2fe9036..02a8b80 100644 --- a/src/gui/painting/qwindowsurface.cpp +++ b/src/gui/painting/qwindowsurface.cpp @@ -43,6 +43,7 @@ #include #include #include +#include QT_BEGIN_NAMESPACE @@ -116,6 +117,10 @@ public: QWindowSurface::QWindowSurface(QWidget *window) : d_ptr(new QWindowSurfacePrivate(window)) { + if (!QApplicationPrivate::runtime_graphics_system) { + if(window) + window->setWindowSurface(this); + } } /*! diff --git a/src/gui/painting/qwindowsurface_s60.cpp b/src/gui/painting/qwindowsurface_s60.cpp index 93d4d18..477bd93 100644 --- a/src/gui/painting/qwindowsurface_s60.cpp +++ b/src/gui/painting/qwindowsurface_s60.cpp @@ -88,7 +88,7 @@ QS60WindowSurface::QS60WindowSurface(QWidget* widget) QS60WindowSurface::~QS60WindowSurface() { #if defined(QT_GRAPHICSSYSTEM_RUNTIME) && defined(Q_SYMBIAN_SUPPORTS_SURFACES) - if(QApplicationPrivate::graphics_system_name == QLatin1String("runtime")) { + if(QApplicationPrivate::runtime_graphics_system) { QRuntimeGraphicsSystem *runtimeGraphicsSystem = static_cast(QApplicationPrivate::graphics_system); if(runtimeGraphicsSystem->graphicsSystemName() == QLatin1String("openvg")) { -- cgit v0.12 From 9012fc33e135c82360ca34bc955349be93d5635f Mon Sep 17 00:00:00 2001 From: Shane Kearns Date: Fri, 28 May 2010 14:34:08 +0100 Subject: Update def files for 4.6.3 Frozen 4.6.3 branch on top of 4.6.2 def files. Task-number: QTBUG-8769 Reviewed-by: Trust Me --- src/s60installs/bwins/QtGuiu.def | 351 ++++++++---------------------------- src/s60installs/eabi/QtCoreu.def | 71 +------- src/s60installs/eabi/QtGuiu.def | 266 ++++----------------------- src/s60installs/eabi/QtNetworku.def | 177 +----------------- src/s60installs/eabi/QtOpenVGu.def | 9 +- 5 files changed, 122 insertions(+), 752 deletions(-) diff --git a/src/s60installs/bwins/QtGuiu.def b/src/s60installs/bwins/QtGuiu.def index 15addf6..3368e4c 100644 --- a/src/s60installs/bwins/QtGuiu.def +++ b/src/s60installs/bwins/QtGuiu.def @@ -2125,9 +2125,9 @@ EXPORTS ?addText@QPainterPath@@QAEXMMABVQFont@@ABVQString@@@Z @ 2124 NONAME ; void QPainterPath::addText(float, float, class QFont const &, class QString const &) ?addToGroup@QGraphicsItemGroup@@QAEXPAVQGraphicsItem@@@Z @ 2125 NONAME ; void QGraphicsItemGroup::addToGroup(class QGraphicsItem *) ?addToIndex@QGraphicsItem@@IAEXXZ @ 2126 NONAME ; void QGraphicsItem::addToIndex(void) - ?addToPolygon@QBezier@@QBEXPAVQPolygonF@@@Z @ 2127 NONAME ABSENT ; void QBezier::addToPolygon(class QPolygonF *) const - ?addToPolygonIterative@QBezier@@QBEXPAVQPolygonF@@@Z @ 2128 NONAME ABSENT ; void QBezier::addToPolygonIterative(class QPolygonF *) const - ?addToPolygonMixed@QBezier@@QBEXPAVQPolygonF@@@Z @ 2129 NONAME ABSENT ; void QBezier::addToPolygonMixed(class QPolygonF *) const + ?addToPolygon@QBezier@@QBEXPAVQPolygonF@@@Z @ 2127 NONAME ; void QBezier::addToPolygon(class QPolygonF *) const + ?addToPolygonIterative@QBezier@@QBEXPAVQPolygonF@@@Z @ 2128 NONAME ; void QBezier::addToPolygonIterative(class QPolygonF *) const + ?addToPolygonMixed@QBezier@@QBEXPAVQPolygonF@@@Z @ 2129 NONAME ; void QBezier::addToPolygonMixed(class QPolygonF *) const ?addToolBar@QMainWindow@@QAEPAVQToolBar@@ABVQString@@@Z @ 2130 NONAME ; class QToolBar * QMainWindow::addToolBar(class QString const &) ?addToolBar@QMainWindow@@QAEXPAVQToolBar@@@Z @ 2131 NONAME ; void QMainWindow::addToolBar(class QToolBar *) ?addToolBar@QMainWindow@@QAEXW4ToolBarArea@Qt@@PAVQToolBar@@@Z @ 2132 NONAME ; void QMainWindow::addToolBar(enum Qt::ToolBarArea, class QToolBar *) @@ -3207,7 +3207,7 @@ EXPORTS ?cursorWordForward@QLineControl@@QAEX_N@Z @ 3206 NONAME ; void QLineControl::cursorWordForward(bool) ?cursorWordForward@QLineEdit@@QAEX_N@Z @ 3207 NONAME ; void QLineEdit::cursorWordForward(bool) ?curveThreshold@QPainterPathStroker@@QBEMXZ @ 3208 NONAME ; float QPainterPathStroker::curveThreshold(void) const - ?curveThreshold@QStroker@@QBEMXZ @ 3209 NONAME ABSENT ; float QStroker::curveThreshold(void) const + ?curveThreshold@QStroker@@QBEMXZ @ 3209 NONAME ; float QStroker::curveThreshold(void) const ?customButtonClicked@QWizard@@IAEXH@Z @ 3210 NONAME ; void QWizard::customButtonClicked(int) ?customColor@QColorDialog@@SAIH@Z @ 3211 NONAME ; unsigned int QColorDialog::customColor(int) ?customContextMenuRequested@QWidget@@IAEXABVQPoint@@@Z @ 3212 NONAME ; void QWidget::customContextMenuRequested(class QPoint const &) @@ -3853,7 +3853,7 @@ EXPORTS ?draw@QLineControl@@QAEXPAVQPainter@@ABVQPoint@@ABVQRect@@H@Z @ 3852 NONAME ; void QLineControl::draw(class QPainter *, class QPoint const &, class QRect const &, int) ?draw@QPaintBuffer@@QBEXPAVQPainter@@H@Z @ 3853 NONAME ; void QPaintBuffer::draw(class QPainter *, int) const ?draw@QPaintEngineEx@@UAEXABVQVectorPath@@@Z @ 3854 NONAME ; void QPaintEngineEx::draw(class QVectorPath const &) - ?draw@QPainterReplayer@@QAEXABVQPaintBuffer@@PAVQPainter@@H@Z @ 3855 NONAME ABSENT ; void QPainterReplayer::draw(class QPaintBuffer const &, class QPainter *, int) + ?draw@QPainterReplayer@@QAEXABVQPaintBuffer@@PAVQPainter@@H@Z @ 3855 NONAME ; void QPainterReplayer::draw(class QPaintBuffer const &, class QPainter *, int) ?draw@QPixmapBlurFilter@@UBEXPAVQPainter@@ABVQPointF@@ABVQPixmap@@ABVQRectF@@@Z @ 3856 NONAME ; void QPixmapBlurFilter::draw(class QPainter *, class QPointF const &, class QPixmap const &, class QRectF const &) const ?draw@QPixmapColorizeFilter@@UBEXPAVQPainter@@ABVQPointF@@ABVQPixmap@@ABVQRectF@@@Z @ 3857 NONAME ; void QPixmapColorizeFilter::draw(class QPainter *, class QPointF const &, class QPixmap const &, class QRectF const &) const ?draw@QPixmapConvolutionFilter@@UBEXPAVQPainter@@ABVQPointF@@ABVQPixmap@@ABVQRectF@@@Z @ 3858 NONAME ; void QPixmapConvolutionFilter::draw(class QPainter *, class QPointF const &, class QPixmap const &, class QRectF const &) const @@ -3961,7 +3961,7 @@ EXPORTS ?drawPixmap@QPainter@@QAEXHHABVQPixmap@@HHHH@Z @ 3960 NONAME ; void QPainter::drawPixmap(int, int, class QPixmap const &, int, int, int, int) ?drawPixmap@QPainter@@QAEXHHHHABVQPixmap@@@Z @ 3961 NONAME ; void QPainter::drawPixmap(int, int, int, int, class QPixmap const &) ?drawPixmap@QPainter@@QAEXHHHHABVQPixmap@@HHHH@Z @ 3962 NONAME ; void QPainter::drawPixmap(int, int, int, int, class QPixmap const &, int, int, int, int) - ?drawPixmaps@QPaintEngineEx@@UAEXPBUData@QDrawPixmaps@@HABVQPixmap@@V?$QFlags@W4DrawingHint@QDrawPixmaps@@@@@Z @ 3963 NONAME ABSENT ; void QPaintEngineEx::drawPixmaps(struct QDrawPixmaps::Data const *, int, class QPixmap const &, class QFlags) + ?drawPixmaps@QPaintEngineEx@@UAEXPBUData@QDrawPixmaps@@HABVQPixmap@@V?$QFlags@W4DrawingHint@QDrawPixmaps@@@@@Z @ 3963 NONAME ; void QPaintEngineEx::drawPixmaps(struct QDrawPixmaps::Data const *, int, class QPixmap const &, class QFlags) ?drawPoint@QPainter@@QAEXABVQPoint@@@Z @ 3964 NONAME ; void QPainter::drawPoint(class QPoint const &) ?drawPoint@QPainter@@QAEXABVQPointF@@@Z @ 3965 NONAME ; void QPainter::drawPoint(class QPointF const &) ?drawPoint@QPainter@@QAEXHH@Z @ 3966 NONAME ; void QPainter::drawPoint(int, int) @@ -4417,8 +4417,8 @@ EXPORTS ?findData@QComboBox@@QBEHABVQVariant@@HV?$QFlags@W4MatchFlag@Qt@@@@@Z @ 4416 NONAME ; int QComboBox::findData(class QVariant const &, int, class QFlags) const ?findFont@QFontDatabase@@CAPAVQFontEngine@@HPBVQFontPrivate@@ABUQFontDef@@@Z @ 4417 NONAME ; class QFontEngine * QFontDatabase::findFont(int, class QFontPrivate const *, struct QFontDef const &) ?findInMask@QLineControl@@ABEHH_N0VQChar@@@Z @ 4418 NONAME ; int QLineControl::findInMask(int, bool, bool, class QChar) const - ?findIntersections@QBezier@@SA?AV?$QVector@U?$QPair@MM@@@@ABV1@0@Z @ 4419 NONAME ABSENT ; class QVector > QBezier::findIntersections(class QBezier const &, class QBezier const &) - ?findIntersections@QBezier@@SA_NABV1@0PAV?$QVector@U?$QPair@MM@@@@@Z @ 4420 NONAME ABSENT ; bool QBezier::findIntersections(class QBezier const &, class QBezier const &, class QVector > *) + ?findIntersections@QBezier@@SA?AV?$QVector@U?$QPair@MM@@@@ABV1@0@Z @ 4419 NONAME ; class QVector > QBezier::findIntersections(class QBezier const &, class QBezier const &) + ?findIntersections@QBezier@@SA_NABV1@0PAV?$QVector@U?$QPair@MM@@@@@Z @ 4420 NONAME ; bool QBezier::findIntersections(class QBezier const &, class QBezier const &, class QVector > *) ?findItem@QTextEngine@@QBEHH@Z @ 4421 NONAME ; int QTextEngine::findItem(int) const ?findItems@QListWidget@@QBE?AV?$QList@PAVQListWidgetItem@@@@ABVQString@@V?$QFlags@W4MatchFlag@Qt@@@@@Z @ 4422 NONAME ; class QList QListWidget::findItems(class QString const &, class QFlags) const ?findItems@QStandardItemModel@@QBE?AV?$QList@PAVQStandardItem@@@@ABVQString@@V?$QFlags@W4MatchFlag@Qt@@@@H@Z @ 4423 NONAME ; class QList QStandardItemModel::findItems(class QString const &, class QFlags, int) const @@ -7206,10 +7206,10 @@ EXPORTS ?parseTerm@Parser@QCss@@QAE_NPAUValue@2@@Z @ 7205 NONAME ; bool QCss::Parser::parseTerm(struct QCss::Value *) ?passwordCharacter@QLineControl@@QBE?AVQChar@@XZ @ 7206 NONAME ; class QChar QLineControl::passwordCharacter(void) const ?passwordEchoEditing@QLineControl@@QBE_NXZ @ 7207 NONAME ; bool QLineControl::passwordEchoEditing(void) const - ?paste@QLineControl@@QAEXXZ @ 7208 NONAME ABSENT ; void QLineControl::paste(void) + ?paste@QLineControl@@QAEXXZ @ 7208 NONAME ; void QLineControl::paste(void) ?paste@QLineEdit@@QAEXXZ @ 7209 NONAME ; void QLineEdit::paste(void) ?paste@QPlainTextEdit@@QAEXXZ @ 7210 NONAME ; void QPlainTextEdit::paste(void) - ?paste@QTextControl@@QAEXXZ @ 7211 NONAME ABSENT ; void QTextControl::paste(void) + ?paste@QTextControl@@QAEXXZ @ 7211 NONAME ; void QTextControl::paste(void) ?paste@QTextEdit@@QAEXXZ @ 7212 NONAME ; void QTextEdit::paste(void) ?path@QGraphicsPathItem@@QBE?AVQPainterPath@@XZ @ 7213 NONAME ; class QPainterPath QGraphicsPathItem::path(void) const ?pathFromIndex@QCompleter@@UBE?AVQString@@ABVQModelIndex@@@Z @ 7214 NONAME ; class QString QCompleter::pathFromIndex(class QModelIndex const &) const @@ -7291,7 +7291,7 @@ EXPORTS ?polishEvent@QGraphicsWidget@@MAEXXZ @ 7290 NONAME ; void QGraphicsWidget::polishEvent(void) ?polygon@QGraphicsPolygonItem@@QBE?AVQPolygonF@@XZ @ 7291 NONAME ; class QPolygonF QGraphicsPolygonItem::polygon(void) const ?polygonFlags@QVectorPath@@SAIW4PolygonDrawMode@QPaintEngine@@@Z @ 7292 NONAME ; unsigned int QVectorPath::polygonFlags(enum QPaintEngine::PolygonDrawMode) - ?populate@QTextureGlyphCache@@QAEXABVQTextItemInt@@ABV?$QVarLengthArray@I$0BAA@@@ABV?$QVarLengthArray@UQFixedPoint@@$0BAA@@@@Z @ 7293 NONAME ABSENT ; void QTextureGlyphCache::populate(class QTextItemInt const &, class QVarLengthArray const &, class QVarLengthArray const &) + ?populate@QTextureGlyphCache@@QAEXABVQTextItemInt@@ABV?$QVarLengthArray@I$0BAA@@@ABV?$QVarLengthArray@UQFixedPoint@@$0BAA@@@@Z @ 7293 NONAME ; void QTextureGlyphCache::populate(class QTextItemInt const &, class QVarLengthArray const &, class QVarLengthArray const &) ?popup@QCompleter@@QBEPAVQAbstractItemView@@XZ @ 7294 NONAME ; class QAbstractItemView * QCompleter::popup(void) const ?popup@QMenu@@QAEXABVQPoint@@PAVQAction@@@Z @ 7295 NONAME ; void QMenu::popup(class QPoint const &, class QAction *) ?popupMode@QToolButton@@QBE?AW4ToolButtonPopupMode@1@XZ @ 7296 NONAME ; enum QToolButton::ToolButtonPopupMode QToolButton::popupMode(void) const @@ -7389,7 +7389,7 @@ EXPORTS ?qAlpha@@YAHI@Z @ 7388 NONAME ; int qAlpha(unsigned int) ?qBlue@@YAHI@Z @ 7389 NONAME ; int qBlue(unsigned int) ?qDrawBorderPixmap@@YAXPAVQPainter@@ABVQRect@@ABVQMargins@@ABVQPixmap@@12ABUQTileRules@@V?$QFlags@W4DrawingHint@QDrawBorderPixmap@@@@@Z @ 7390 NONAME ; void qDrawBorderPixmap(class QPainter *, class QRect const &, class QMargins const &, class QPixmap const &, class QRect const &, class QMargins const &, struct QTileRules const &, class QFlags) - ?qDrawPixmaps@@YAXPAVQPainter@@PBUData@QDrawPixmaps@@HABVQPixmap@@V?$QFlags@W4DrawingHint@QDrawPixmaps@@@@@Z @ 7391 NONAME ABSENT ; void qDrawPixmaps(class QPainter *, struct QDrawPixmaps::Data const *, int, class QPixmap const &, class QFlags) + ?qDrawPixmaps@@YAXPAVQPainter@@PBUData@QDrawPixmaps@@HABVQPixmap@@V?$QFlags@W4DrawingHint@QDrawPixmaps@@@@@Z @ 7391 NONAME ; void qDrawPixmaps(class QPainter *, struct QDrawPixmaps::Data const *, int, class QPixmap const &, class QFlags) ?qDrawPlainRect@@YAXPAVQPainter@@ABVQRect@@ABVQColor@@HPBVQBrush@@@Z @ 7392 NONAME ; void qDrawPlainRect(class QPainter *, class QRect const &, class QColor const &, int, class QBrush const *) ?qDrawPlainRect@@YAXPAVQPainter@@HHHHABVQColor@@HPBVQBrush@@@Z @ 7393 NONAME ; void qDrawPlainRect(class QPainter *, int, int, int, int, class QColor const &, int, class QBrush const *) ?qDrawShadeLine@@YAXPAVQPainter@@ABVQPoint@@1ABVQPalette@@_NHH@Z @ 7394 NONAME ; void qDrawShadeLine(class QPainter *, class QPoint const &, class QPoint const &, class QPalette const &, bool, int, int) @@ -8769,7 +8769,7 @@ EXPORTS ?setCursorWidth@QTextEdit@@QAEXH@Z @ 8768 NONAME ; void QTextEdit::setCursorWidth(int) ?setCursor_sys@QWidgetPrivate@@QAEXABVQCursor@@@Z @ 8769 NONAME ; void QWidgetPrivate::setCursor_sys(class QCursor const &) ?setCurveThreshold@QPainterPathStroker@@QAEXM@Z @ 8770 NONAME ; void QPainterPathStroker::setCurveThreshold(float) - ?setCurveThreshold@QStroker@@QAEXM@Z @ 8771 NONAME ABSENT ; void QStroker::setCurveThreshold(float) + ?setCurveThreshold@QStroker@@QAEXM@Z @ 8771 NONAME ; void QStroker::setCurveThreshold(float) ?setCustomColor@QColorDialog@@SAXHI@Z @ 8772 NONAME ; void QColorDialog::setCustomColor(int, unsigned int) ?setDashOffset@QDashStroker@@QAEXM@Z @ 8773 NONAME ; void QDashStroker::setDashOffset(float) ?setDashOffset@QPainterPathStroker@@QAEXM@Z @ 8774 NONAME ; void QPainterPathStroker::setDashOffset(float) @@ -10501,7 +10501,7 @@ EXPORTS ?speed@QMovie@@QBEHXZ @ 10500 NONAME ; int QMovie::speed(void) const ?split@QBezier@@QBEXPAV1@0@Z @ 10501 NONAME ; void QBezier::split(class QBezier *, class QBezier *) const ?split@QItemSelection@@SAXABVQItemSelectionRange@@0PAV1@@Z @ 10502 NONAME ; void QItemSelection::split(class QItemSelectionRange const &, class QItemSelectionRange const &, class QItemSelection *) - ?splitAtIntersections@QBezier@@QAE?AV?$QVector@V?$QList@VQBezier@@@@@@AAV1@@Z @ 10503 NONAME ABSENT ; class QVector > QBezier::splitAtIntersections(class QBezier &) + ?splitAtIntersections@QBezier@@QAE?AV?$QVector@V?$QList@VQBezier@@@@@@AAV1@@Z @ 10503 NONAME ; class QVector > QBezier::splitAtIntersections(class QBezier &) ?splitCell@QTextTable@@QAEXHHHH@Z @ 10504 NONAME ; void QTextTable::splitCell(int, int, int, int) ?splitDockWidget@QMainWindow@@QAEXPAVQDockWidget@@0W4Orientation@Qt@@@Z @ 10505 NONAME ; void QMainWindow::splitDockWidget(class QDockWidget *, class QDockWidget *, enum Qt::Orientation) ?splitItem@QTextEngine@@ABEXHH@Z @ 10506 NONAME ; void QTextEngine::splitItem(int, int) const @@ -10990,7 +10990,7 @@ EXPORTS ?toPointF@QVector2D@@QBE?AVQPointF@@XZ @ 10989 NONAME ; class QPointF QVector2D::toPointF(void) const ?toPointF@QVector3D@@QBE?AVQPointF@@XZ @ 10990 NONAME ; class QPointF QVector3D::toPointF(void) const ?toPointF@QVector4D@@QBE?AVQPointF@@XZ @ 10991 NONAME ; class QPointF QVector4D::toPointF(void) const - ?toPolygon@QBezier@@QBE?AVQPolygonF@@XZ @ 10992 NONAME ABSENT ; class QPolygonF QBezier::toPolygon(void) const + ?toPolygon@QBezier@@QBE?AVQPolygonF@@XZ @ 10992 NONAME ; class QPolygonF QBezier::toPolygon(void) const ?toPolygon@QPolygonF@@QBE?AVQPolygon@@XZ @ 10993 NONAME ; class QPolygon QPolygonF::toPolygon(void) const ?toPrevious@QDataWidgetMapper@@QAEXXZ @ 10994 NONAME ; void QDataWidgetMapper::toPrevious(void) ?toReversed@QPainterPath@@QBE?AV1@XZ @ 10995 NONAME ; class QPainterPath QPainterPath::toReversed(void) const @@ -12548,274 +12548,65 @@ EXPORTS ?timerEvent@QS60Style@@MAEXPAVQTimerEvent@@@Z @ 12547 NONAME ; void QS60Style::timerEvent(class QTimerEvent *) ?updateAncestorFlags@QGraphicsItemPrivate@@QAEXXZ @ 12548 NONAME ; void QGraphicsItemPrivate::updateAncestorFlags(void) ?updateChildWithGraphicsEffectFlagRecursively@QGraphicsItemPrivate@@QAEXXZ @ 12549 NONAME ; void QGraphicsItemPrivate::updateChildWithGraphicsEffectFlagRecursively(void) - ?isOpacityNull@QGraphicsItemPrivate@@SA_NM@Z @ 12550 NONAME ; bool QGraphicsItemPrivate::isOpacityNull(float) - ?isOpacityNull@QGraphicsItemPrivate@@QBE_NXZ @ 12551 NONAME ; bool QGraphicsItemPrivate::isOpacityNull(void) const - ?api@QEglContext@@QBE?AW4API@QEgl@@XZ @ 12552 NONAME ABSENT ; enum QEgl::API QEglContext::api(void) const + ?api@QEglContext@@QBE?AW4API@QEgl@@XZ @ 12550 NONAME ; enum QEgl::API QEglContext::api(void) const + ?display@QEglContext@@SAHXZ @ 12551 NONAME ; int QEglContext::display(void) + ?isOpacityNull@QGraphicsItemPrivate@@SA_NM@Z @ 12552 NONAME ; bool QGraphicsItemPrivate::isOpacityNull(float) ?chooseConfig@QEglContext@@QAE_NABVQEglProperties@@W4PixelFormatMatch@QEgl@@@Z @ 12553 NONAME ; bool QEglContext::chooseConfig(class QEglProperties const &, enum QEgl::PixelFormatMatch) ?destroySurface@QEglContext@@QAEXH@Z @ 12554 NONAME ; void QEglContext::destroySurface(int) ?lazyDoneCurrent@QEglContext@@QAE_NXZ @ 12555 NONAME ; bool QEglContext::lazyDoneCurrent(void) - ?waitNative@QEglContext@@QAEXXZ @ 12556 NONAME ABSENT ; void QEglContext::waitNative(void) - ?context@QEglContext@@QBEHXZ @ 12557 NONAME ABSENT ; int QEglContext::context(void) const - ?configAttrib@QEglContext@@QBE_NHPAH@Z @ 12558 NONAME ABSENT ; bool QEglContext::configAttrib(int, int *) const + ?waitNative@QEglContext@@QAEXXZ @ 12556 NONAME ; void QEglContext::waitNative(void) + ?context@QEglContext@@QBEHXZ @ 12557 NONAME ; int QEglContext::context(void) const + ?configAttrib@QEglContext@@QBE_NHPAH@Z @ 12558 NONAME ; bool QEglContext::configAttrib(int, int *) const ??0QEglProperties@@QAE@ABV0@@Z @ 12559 NONAME ; QEglProperties::QEglProperties(class QEglProperties const &) - ?config@QEglContext@@QBEHXZ @ 12560 NONAME ABSENT ; int QEglContext::config(void) const - ?openDisplay@QEglContext@@QAE_NPAVQPaintDevice@@@Z @ 12561 NONAME ABSENT ; bool QEglContext::openDisplay(class QPaintDevice *) - ?error@QEglContext@@SAHXZ @ 12562 NONAME ABSENT ; int QEglContext::error(void) + ?config@QEglContext@@QBEHXZ @ 12560 NONAME ; int QEglContext::config(void) const + ?clearFocusHelper@QGraphicsItemPrivate@@QAEX_N@Z @ 12561 NONAME ; void QGraphicsItemPrivate::clearFocusHelper(bool) + ?error@QEglContext@@SAHXZ @ 12562 NONAME ; int QEglContext::error(void) ?swapBuffers@QEglContext@@QAE_NH@Z @ 12563 NONAME ; bool QEglContext::swapBuffers(int) - ?setApi@QEglContext@@QAEXW4API@QEgl@@@Z @ 12564 NONAME ; void QEglContext::setApi(enum QEgl::API) - ?makeCurrent@QEglContext@@QAE_NH@Z @ 12565 NONAME ; bool QEglContext::makeCurrent(int) - ?createSurface@QEglContext@@QAEHPAVQPaintDevice@@PBVQEglProperties@@@Z @ 12566 NONAME ; int QEglContext::createSurface(class QPaintDevice *, class QEglProperties const *) - ?dumpAllConfigs@QEglContext@@QAEXXZ @ 12567 NONAME ABSENT ; void QEglContext::dumpAllConfigs(void) - ?reduceConfiguration@QEglProperties@@QAE_NXZ @ 12568 NONAME ; bool QEglProperties::reduceConfiguration(void) - ?removeValue@QEglProperties@@QAE_NH@Z @ 12569 NONAME ; bool QEglProperties::removeValue(int) - ?toString@QEglProperties@@QBE?AVQString@@XZ @ 12570 NONAME ; class QString QEglProperties::toString(void) const - ?dumpAllConfigs@QEglProperties@@SAXXZ @ 12571 NONAME ABSENT ; void QEglProperties::dumpAllConfigs(void) - ?defaultDisplay@QEglContext@@SAHPAVQPaintDevice@@@Z @ 12572 NONAME ABSENT ; int QEglContext::defaultDisplay(class QPaintDevice *) - ?configProperties@QEglContext@@QBE?AVQEglProperties@@H@Z @ 12573 NONAME ABSENT ; class QEglProperties QEglContext::configProperties(int) const - ?properties@QEglProperties@@QBEPBHXZ @ 12574 NONAME ; int const * QEglProperties::properties(void) const - ??0QEglContext@@QAE@XZ @ 12575 NONAME ; QEglContext::QEglContext(void) - ??1QEglContext@@QAE@XZ @ 12576 NONAME ; QEglContext::~QEglContext(void) - ?isValid@QEglContext@@QBE_NXZ @ 12577 NONAME ; bool QEglContext::isValid(void) const - ?value@QEglProperties@@QBEHH@Z @ 12578 NONAME ; int QEglProperties::value(int) const - ?clearError@QEglContext@@SAXXZ @ 12579 NONAME ABSENT ; void QEglContext::clearError(void) - ??0QEglProperties@@QAE@H@Z @ 12580 NONAME ; QEglProperties::QEglProperties(int) - ?setValue@QEglProperties@@QAEXHH@Z @ 12581 NONAME ; void QEglProperties::setValue(int, int) - ?setPaintDeviceFormat@QEglProperties@@QAEXPAVQPaintDevice@@@Z @ 12582 NONAME ; void QEglProperties::setPaintDeviceFormat(class QPaintDevice *) - ?destroy@QEglContext@@QAEXXZ @ 12583 NONAME ABSENT ; void QEglContext::destroy(void) - ?setRenderableType@QEglProperties@@QAEXW4API@QEgl@@@Z @ 12584 NONAME ; void QEglProperties::setRenderableType(enum QEgl::API) - ?setContext@QEglContext@@QAEXH@Z @ 12585 NONAME ; void QEglContext::setContext(int) - ?waitClient@QEglContext@@QAEXXZ @ 12586 NONAME ABSENT ; void QEglContext::waitClient(void) - ?isEmpty@QEglProperties@@QBE_NXZ @ 12587 NONAME ; bool QEglProperties::isEmpty(void) const - ?getDisplay@QEglContext@@CAHPAVQPaintDevice@@@Z @ 12588 NONAME ABSENT ; int QEglContext::getDisplay(class QPaintDevice *) - ?isSharing@QEglContext@@QBE_NXZ @ 12589 NONAME ; bool QEglContext::isSharing(void) const - ?isCurrent@QEglContext@@QBE_NXZ @ 12590 NONAME ; bool QEglContext::isCurrent(void) const - ??0QEglProperties@@QAE@XZ @ 12591 NONAME ; QEglProperties::QEglProperties(void) - ?extensions@QEglContext@@SA?AVQString@@XZ @ 12592 NONAME ABSENT ; class QString QEglContext::extensions(void) - ?setCurrentContext@QEglContext@@CAXW4API@QEgl@@PAV1@@Z @ 12593 NONAME ; void QEglContext::setCurrentContext(enum QEgl::API, class QEglContext *) - ??1QEglProperties@@QAE@XZ @ 12594 NONAME ; QEglProperties::~QEglProperties(void) - ?createContext@QEglContext@@QAE_NPAV1@PBVQEglProperties@@@Z @ 12595 NONAME ; bool QEglContext::createContext(class QEglContext *, class QEglProperties const *) - ?setConfig@QEglContext@@QAEXH@Z @ 12596 NONAME ; void QEglContext::setConfig(int) - ?hasExtension@QEglContext@@SA_NPBD@Z @ 12597 NONAME ABSENT ; bool QEglContext::hasExtension(char const *) - ?doneCurrent@QEglContext@@QAE_NXZ @ 12598 NONAME ; bool QEglContext::doneCurrent(void) - ?display@QEglContext@@QBEHXZ @ 12599 NONAME ABSENT ; int QEglContext::display(void) const - ?setPixelFormat@QEglProperties@@QAEXW4Format@QImage@@@Z @ 12600 NONAME ; void QEglProperties::setPixelFormat(enum QImage::Format) - ?currentContext@QEglContext@@CAPAV1@W4API@QEgl@@@Z @ 12601 NONAME ; class QEglContext * QEglContext::currentContext(enum QEgl::API) - ?errorString@QEglContext@@SA?AVQString@@H@Z @ 12602 NONAME ABSENT ; class QString QEglContext::errorString(int) - ?removeAllApplicationFonts@QFontDatabase@@SA_NXZ @ 12603 NONAME ; bool QFontDatabase::removeAllApplicationFonts() - ??0FileInfo@QZipReader@@QAE@XZ @ 12604 NONAME ; QZipReader::FileInfo::FileInfo(void) - ??0QAbstractScrollAreaPrivate@@QAE@XZ @ 12605 NONAME ; QAbstractScrollAreaPrivate::QAbstractScrollAreaPrivate(void) - ??0QGraphicsViewPrivate@@QAE@XZ @ 12606 NONAME ; QGraphicsViewPrivate::QGraphicsViewPrivate(void) - ??0QKeySequence@@QAE@ABVQString@@W4SequenceFormat@0@@Z @ 12607 NONAME ; QKeySequence::QKeySequence(class QString const &, enum QKeySequence::SequenceFormat) - ??0QStaticText@@QAE@ABV0@@Z @ 12608 NONAME ; QStaticText::QStaticText(class QStaticText const &) - ??0QStaticText@@QAE@ABVQString@@ABVQSizeF@@@Z @ 12609 NONAME ABSENT ; QStaticText::QStaticText(class QString const &, class QSizeF const &) - ??0QStaticText@@QAE@XZ @ 12610 NONAME ; QStaticText::QStaticText(void) - ??0QStaticTextItem@@QAE@XZ @ 12611 NONAME ; QStaticTextItem::QStaticTextItem(void) - ??0QZipReader@@QAE@ABVQString@@V?$QFlags@W4OpenModeFlag@QIODevice@@@@@Z @ 12612 NONAME ; QZipReader::QZipReader(class QString const &, class QFlags) - ??0QZipReader@@QAE@PAVQIODevice@@@Z @ 12613 NONAME ; QZipReader::QZipReader(class QIODevice *) - ??1FileInfo@QZipReader@@QAE@XZ @ 12614 NONAME ; QZipReader::FileInfo::~FileInfo(void) - ??1QAbstractScrollAreaPrivate@@UAE@XZ @ 12615 NONAME ; QAbstractScrollAreaPrivate::~QAbstractScrollAreaPrivate(void) - ??1QGraphicsViewPrivate@@UAE@XZ @ 12616 NONAME ; QGraphicsViewPrivate::~QGraphicsViewPrivate(void) - ??1QStaticText@@QAE@XZ @ 12617 NONAME ; QStaticText::~QStaticText(void) - ??1QStaticTextItem@@QAE@XZ @ 12618 NONAME ; QStaticTextItem::~QStaticTextItem(void) - ??1QZipReader@@QAE@XZ @ 12619 NONAME ; QZipReader::~QZipReader(void) - ??4FileInfo@QZipReader@@QAEAAU01@ABU01@@Z @ 12620 NONAME ; struct QZipReader::FileInfo & QZipReader::FileInfo::operator=(struct QZipReader::FileInfo const &) - ??4QStaticText@@QAEAAV0@ABV0@@Z @ 12621 NONAME ; class QStaticText & QStaticText::operator=(class QStaticText const &) - ??8QStaticText@@QBE_NABV0@@Z @ 12622 NONAME ; bool QStaticText::operator==(class QStaticText const &) const - ??9QStaticText@@QBE_NABV0@@Z @ 12623 NONAME ; bool QStaticText::operator!=(class QStaticText const &) const - ??_EQAbstractScrollAreaPrivate@@UAE@I@Z @ 12624 NONAME ; QAbstractScrollAreaPrivate::~QAbstractScrollAreaPrivate(unsigned int) - ??_EQGraphicsViewPrivate@@UAE@I@Z @ 12625 NONAME ; QGraphicsViewPrivate::~QGraphicsViewPrivate(unsigned int) - ?_q_hslide@QAbstractScrollAreaPrivate@@QAEXH@Z @ 12626 NONAME ; void QAbstractScrollAreaPrivate::_q_hslide(int) - ?_q_setViewportCursor@QGraphicsViewPrivate@@QAEXABVQCursor@@@Z @ 12627 NONAME ; void QGraphicsViewPrivate::_q_setViewportCursor(class QCursor const &) - ?_q_showOrHideScrollBars@QAbstractScrollAreaPrivate@@QAEXXZ @ 12628 NONAME ; void QAbstractScrollAreaPrivate::_q_showOrHideScrollBars(void) - ?_q_unsetViewportCursor@QGraphicsViewPrivate@@QAEXXZ @ 12629 NONAME ; void QGraphicsViewPrivate::_q_unsetViewportCursor(void) - ?_q_vslide@QAbstractScrollAreaPrivate@@QAEXH@Z @ 12630 NONAME ; void QAbstractScrollAreaPrivate::_q_vslide(int) - ?allocStyleOptionsArray@QGraphicsViewPrivate@@QAEPAVQStyleOptionGraphicsItem@@H@Z @ 12631 NONAME ; class QStyleOptionGraphicsItem * QGraphicsViewPrivate::allocStyleOptionsArray(int) - ?anchorAt@QPlainTextEdit@@QBE?AVQString@@ABVQPoint@@@Z @ 12632 NONAME ; class QString QPlainTextEdit::anchorAt(class QPoint const &) const - ?assign@QKeySequence@@AAEHABVQString@@W4SequenceFormat@1@@Z @ 12633 NONAME ; int QKeySequence::assign(class QString const &, enum QKeySequence::SequenceFormat) - ?autoFillBackground@QGraphicsWidget@@QBE_NXZ @ 12634 NONAME ; bool QGraphicsWidget::autoFillBackground(void) const - ?canKeypadNavigate@QWidgetPrivate@@SA_NW4Orientation@Qt@@@Z @ 12635 NONAME ; bool QWidgetPrivate::canKeypadNavigate(enum Qt::Orientation) - ?centerView@QGraphicsViewPrivate@@QAEXW4ViewportAnchor@QGraphicsView@@@Z @ 12636 NONAME ; void QGraphicsViewPrivate::centerView(enum QGraphicsView::ViewportAnchor) - ?clearUndoRedoStacks@QTextDocument@@QAEXW4Stacks@1@@Z @ 12637 NONAME ; void QTextDocument::clearUndoRedoStacks(enum QTextDocument::Stacks) - ?close@QZipReader@@QAEXXZ @ 12638 NONAME ; void QZipReader::close(void) - ?constBits@QImage@@QBEPBEXZ @ 12639 NONAME ; unsigned char const * QImage::constBits(void) const - ?constScanLine@QImage@@QBEPBEH@Z @ 12640 NONAME ; unsigned char const * QImage::constScanLine(int) const - ?contentsOffset@QAbstractScrollAreaPrivate@@UBE?AVQPoint@@XZ @ 12641 NONAME ; class QPoint QAbstractScrollAreaPrivate::contentsOffset(void) const - ?convertFromImage@QPixmap@@QAE_NABVQImage@@V?$QFlags@W4ImageConversionFlag@Qt@@@@@Z @ 12642 NONAME ; bool QPixmap::convertFromImage(class QImage const &, class QFlags) - ?count@QZipReader@@QBEHXZ @ 12643 NONAME ; int QZipReader::count(void) const - ?create@Fragment@QPainter@@SA?AV12@ABVQPointF@@ABVQRectF@@MMMM@Z @ 12644 NONAME ABSENT ; class QPainter::Fragment QPainter::Fragment::create(class QPointF const &, class QRectF const &, float, float, float, float) - ?detach@QStaticText@@AAEXXZ @ 12645 NONAME ; void QStaticText::detach(void) - ?directoryLoaded@QFileSystemModel@@IAEXABVQString@@@Z @ 12646 NONAME ; void QFileSystemModel::directoryLoaded(class QString const &) - ?dispatchPendingUpdateRequests@QGraphicsViewPrivate@@QAEXXZ @ 12647 NONAME ; void QGraphicsViewPrivate::dispatchPendingUpdateRequests(void) - ?drawPixmapFragments@QPaintEngineEx@@UAEXPBVFragment@QPainter@@HABVQPixmap@@V?$QFlags@W4FragmentHint@QPainter@@@@@Z @ 12648 NONAME ABSENT ; void QPaintEngineEx::drawPixmapFragments(class QPainter::Fragment const *, int, class QPixmap const &, class QFlags) - ?drawPixmapFragments@QPainter@@QAEXPBVFragment@1@HABVQPixmap@@V?$QFlags@W4FragmentHint@QPainter@@@@@Z @ 12649 NONAME ABSENT ; void QPainter::drawPixmapFragments(class QPainter::Fragment const *, int, class QPixmap const &, class QFlags) - ?drawStaticText@QPainter@@QAEXABVQPoint@@ABVQStaticText@@@Z @ 12650 NONAME ; void QPainter::drawStaticText(class QPoint const &, class QStaticText const &) - ?drawStaticText@QPainter@@QAEXABVQPointF@@ABVQStaticText@@@Z @ 12651 NONAME ; void QPainter::drawStaticText(class QPointF const &, class QStaticText const &) - ?drawStaticText@QPainter@@QAEXHHABVQStaticText@@@Z @ 12652 NONAME ; void QPainter::drawStaticText(int, int, class QStaticText const &) - ?entryInfoAt@QZipReader@@QBE?AUFileInfo@1@H@Z @ 12653 NONAME ; struct QZipReader::FileInfo QZipReader::entryInfoAt(int) const - ?exists@QZipReader@@QBE_NXZ @ 12654 NONAME ; bool QZipReader::exists(void) const - ?extractAll@QZipReader@@QBE_NABVQString@@@Z @ 12655 NONAME ; bool QZipReader::extractAll(class QString const &) const - ?fileData@QZipReader@@QBE?AVQByteArray@@ABVQString@@@Z @ 12656 NONAME ; class QByteArray QZipReader::fileData(class QString const &) const - ?fileInfoList@QZipReader@@QBE?AV?$QList@UFileInfo@QZipReader@@@@XZ @ 12657 NONAME ; class QList QZipReader::fileInfoList(void) const - ?findItems@QGraphicsViewPrivate@@QBE?AV?$QList@PAVQGraphicsItem@@@@ABVQRegion@@PA_NABVQTransform@@@Z @ 12658 NONAME ; class QList QGraphicsViewPrivate::findItems(class QRegion const &, bool *, class QTransform const &) const - ?fixup@QIntValidator@@UBEXAAVQString@@@Z @ 12659 NONAME ; void QIntValidator::fixup(class QString &) const - ?freeStyleOptionsArray@QGraphicsViewPrivate@@QAEXPAVQStyleOptionGraphicsItem@@@Z @ 12660 NONAME ; void QGraphicsViewPrivate::freeStyleOptionsArray(class QStyleOptionGraphicsItem *) - ?getPixmapCursor@QApplicationPrivate@@QAE?AVQPixmap@@W4CursorShape@Qt@@@Z @ 12661 NONAME ; class QPixmap QApplicationPrivate::getPixmapCursor(enum Qt::CursorShape) - ?getSubRange@QBezier@@QBE?AV1@MM@Z @ 12662 NONAME ; class QBezier QBezier::getSubRange(float, float) const - ?hasSelectedText@QLabel@@QBE_NXZ @ 12663 NONAME ; bool QLabel::hasSelectedText(void) const - ?horizontalScroll@QGraphicsViewPrivate@@QBE_JXZ @ 12664 NONAME ; long long QGraphicsViewPrivate::horizontalScroll(void) const - ?inTabWidget@QWidgetPrivate@@SA_NPAVQWidget@@@Z @ 12665 NONAME ; bool QWidgetPrivate::inTabWidget(class QWidget *) - ?init@QAbstractScrollAreaPrivate@@QAEXXZ @ 12666 NONAME ; void QAbstractScrollAreaPrivate::init(void) - ?isImageCached@QImagePixmapCleanupHooks@@SA_NABVQImage@@@Z @ 12667 NONAME ; bool QImagePixmapCleanupHooks::isImageCached(class QImage const &) - ?isPixmapCached@QImagePixmapCleanupHooks@@SA_NABVQPixmap@@@Z @ 12668 NONAME ; bool QImagePixmapCleanupHooks::isPixmapCached(class QPixmap const &) - ?isReadable@QZipReader@@QBE_NXZ @ 12669 NONAME ; bool QZipReader::isReadable(void) const - ?isValidColor@QColor@@SA_NABVQString@@@Z @ 12670 NONAME ; bool QColor::isValidColor(class QString const &) - ?layoutChildren@QAbstractScrollAreaPrivate@@QAEXXZ @ 12671 NONAME ; void QAbstractScrollAreaPrivate::layoutChildren(void) - ?mapBy@QBezier@@QBE?AV1@ABVQTransform@@@Z @ 12672 NONAME ; class QBezier QBezier::mapBy(class QTransform const &) const - ?mapRectFromScene@QGraphicsViewPrivate@@QBE?AVQRectF@@ABV2@@Z @ 12673 NONAME ; class QRectF QGraphicsViewPrivate::mapRectFromScene(class QRectF const &) const - ?mapRectToScene@QGraphicsViewPrivate@@QBE?AVQRectF@@ABVQRect@@@Z @ 12674 NONAME ; class QRectF QGraphicsViewPrivate::mapRectToScene(class QRect const &) const - ?mapToScene@QGraphicsViewPrivate@@QBE?AVQPointF@@ABV2@@Z @ 12675 NONAME ; class QPointF QGraphicsViewPrivate::mapToScene(class QPointF const &) const - ?mapToScene@QGraphicsViewPrivate@@QBE?AVQRectF@@ABV2@@Z @ 12676 NONAME ; class QRectF QGraphicsViewPrivate::mapToScene(class QRectF const &) const - ?mapToViewRect@QGraphicsViewPrivate@@QBE?AVQRect@@PBVQGraphicsItem@@ABVQRectF@@@Z @ 12677 NONAME ; class QRect QGraphicsViewPrivate::mapToViewRect(class QGraphicsItem const *, class QRectF const &) const - ?mapToViewRegion@QGraphicsViewPrivate@@QBE?AVQRegion@@PBVQGraphicsItem@@ABVQRectF@@@Z @ 12678 NONAME ; class QRegion QGraphicsViewPrivate::mapToViewRegion(class QGraphicsItem const *, class QRectF const &) const - ?maximumSize@QStaticText@@QBE?AVQSizeF@@XZ @ 12679 NONAME ABSENT ; class QSizeF QStaticText::maximumSize(void) const - ?mouseMoveEventHandler@QGraphicsViewPrivate@@QAEXPAVQMouseEvent@@@Z @ 12680 NONAME ; void QGraphicsViewPrivate::mouseMoveEventHandler(class QMouseEvent *) - ?performanceHint@QStaticText@@QBE?AW4PerformanceHint@1@XZ @ 12681 NONAME ; enum QStaticText::PerformanceHint QStaticText::performanceHint(void) const - ?populate@QTextureGlyphCache@@QAEXPAVQFontEngine@@HPBIPBUQFixedPoint@@@Z @ 12682 NONAME ; void QTextureGlyphCache::populate(class QFontEngine *, int, unsigned int const *, struct QFixedPoint const *) - ?populateSceneDragDropEvent@QGraphicsViewPrivate@@QAEXPAVQGraphicsSceneDragDropEvent@@PAVQDropEvent@@@Z @ 12683 NONAME ; void QGraphicsViewPrivate::populateSceneDragDropEvent(class QGraphicsSceneDragDropEvent *, class QDropEvent *) - ?positionInBlock@QTextCursor@@QBEHXZ @ 12684 NONAME ; int QTextCursor::positionInBlock(void) const - ?prepare@QStaticText@@QAEXABVQTransform@@ABVQFont@@@Z @ 12685 NONAME ; void QStaticText::prepare(class QTransform const &, class QFont const &) - ?processPendingUpdates@QGraphicsViewPrivate@@QAEXXZ @ 12686 NONAME ; void QGraphicsViewPrivate::processPendingUpdates(void) - ?q_func@QAbstractScrollAreaPrivate@@AAEPAVQAbstractScrollArea@@XZ @ 12687 NONAME ; class QAbstractScrollArea * QAbstractScrollAreaPrivate::q_func(void) - ?q_func@QAbstractScrollAreaPrivate@@ABEPBVQAbstractScrollArea@@XZ @ 12688 NONAME ; class QAbstractScrollArea const * QAbstractScrollAreaPrivate::q_func(void) const - ?q_func@QGraphicsViewPrivate@@AAEPAVQGraphicsView@@XZ @ 12689 NONAME ; class QGraphicsView * QGraphicsViewPrivate::q_func(void) - ?q_func@QGraphicsViewPrivate@@ABEPBVQGraphicsView@@XZ @ 12690 NONAME ; class QGraphicsView const * QGraphicsViewPrivate::q_func(void) const - ?qt_draw_glyphs@@YAXPAVQPainter@@PBIPBVQPointF@@H@Z @ 12691 NONAME ; void qt_draw_glyphs(class QPainter *, unsigned int const *, class QPointF const *, int) - ?recalculateContentSize@QGraphicsViewPrivate@@QAEXXZ @ 12692 NONAME ; void QGraphicsViewPrivate::recalculateContentSize(void) - ?render@QWidgetPrivate@@QAEXPAVQPaintDevice@@ABVQPoint@@ABVQRegion@@V?$QFlags@W4RenderFlag@QWidget@@@@_N@Z @ 12693 NONAME ; void QWidgetPrivate::render(class QPaintDevice *, class QPoint const &, class QRegion const &, class QFlags, bool) - ?replaceScrollBar@QAbstractScrollAreaPrivate@@QAEXPAVQScrollBar@@W4Orientation@Qt@@@Z @ 12694 NONAME ; void QAbstractScrollAreaPrivate::replaceScrollBar(class QScrollBar *, enum Qt::Orientation) - ?replayLastMouseEvent@QGraphicsViewPrivate@@QAEXXZ @ 12695 NONAME ; void QGraphicsViewPrivate::replayLastMouseEvent(void) - ?rubberBandRegion@QGraphicsViewPrivate@@QBE?AVQRegion@@PBVQWidget@@ABVQRect@@@Z @ 12696 NONAME ; class QRegion QGraphicsViewPrivate::rubberBandRegion(class QWidget const *, class QRect const &) const - ?scrollBarPolicyChanged@QAbstractScrollAreaPrivate@@UAEXW4Orientation@Qt@@W4ScrollBarPolicy@3@@Z @ 12697 NONAME ; void QAbstractScrollAreaPrivate::scrollBarPolicyChanged(enum Qt::Orientation, enum Qt::ScrollBarPolicy) - ?selectedText@QLabel@@QBE?AVQString@@XZ @ 12698 NONAME ; class QString QLabel::selectedText(void) const - ?selectionStart@QLabel@@QBEHXZ @ 12699 NONAME ; int QLabel::selectionStart(void) const - ?setAutoFillBackground@QGraphicsWidget@@QAEX_N@Z @ 12700 NONAME ; void QGraphicsWidget::setAutoFillBackground(bool) - ?setColorFromString@QColor@@AAE_NABVQString@@@Z @ 12701 NONAME ; bool QColor::setColorFromString(class QString const &) - ?setMaximumSize@QStaticText@@QAEXABVQSizeF@@@Z @ 12702 NONAME ABSENT ; void QStaticText::setMaximumSize(class QSizeF const &) - ?setPerformanceHint@QStaticText@@QAEXW4PerformanceHint@1@@Z @ 12703 NONAME ; void QStaticText::setPerformanceHint(enum QStaticText::PerformanceHint) - ?setSelection@QLabel@@QAEXHH@Z @ 12704 NONAME ; void QLabel::setSelection(int, int) - ?setText@QStaticText@@QAEXABVQString@@@Z @ 12705 NONAME ; void QStaticText::setText(class QString const &) - ?setTextFormat@QStaticText@@QAEXW4TextFormat@Qt@@@Z @ 12706 NONAME ; void QStaticText::setTextFormat(enum Qt::TextFormat) - ?setUserData@QStaticTextItem@@QAEXPAVQStaticTextUserData@@@Z @ 12707 NONAME ; void QStaticTextItem::setUserData(class QStaticTextUserData *) - ?size@QStaticText@@QBE?AVQSizeF@@XZ @ 12708 NONAME ; class QSizeF QStaticText::size(void) const - ?status@QZipReader@@QBE?AW4Status@1@XZ @ 12709 NONAME ; enum QZipReader::Status QZipReader::status(void) const - ?storeDragDropEvent@QGraphicsViewPrivate@@QAEXPBVQGraphicsSceneDragDropEvent@@@Z @ 12710 NONAME ; void QGraphicsViewPrivate::storeDragDropEvent(class QGraphicsSceneDragDropEvent const *) - ?storeMouseEvent@QGraphicsViewPrivate@@QAEXPAVQMouseEvent@@@Z @ 12711 NONAME ; void QGraphicsViewPrivate::storeMouseEvent(class QMouseEvent *) - ?text@QStaticText@@QBE?AVQString@@XZ @ 12712 NONAME ; class QString QStaticText::text(void) const - ?textFormat@QStaticText@@QBE?AW4TextFormat@Qt@@XZ @ 12713 NONAME ; enum Qt::TextFormat QStaticText::textFormat(void) const - ?translateTouchEvent@QGraphicsViewPrivate@@SAXPAV1@PAVQTouchEvent@@@Z @ 12714 NONAME ; void QGraphicsViewPrivate::translateTouchEvent(class QGraphicsViewPrivate *, class QTouchEvent *) - ?updateAll@QGraphicsViewPrivate@@QAEXXZ @ 12715 NONAME ; void QGraphicsViewPrivate::updateAll(void) - ?updateInputMethodSensitivity@QGraphicsViewPrivate@@QAEXXZ @ 12716 NONAME ; void QGraphicsViewPrivate::updateInputMethodSensitivity(void) - ?updateLastCenterPoint@QGraphicsViewPrivate@@QAEXXZ @ 12717 NONAME ; void QGraphicsViewPrivate::updateLastCenterPoint(void) - ?updateRect@QGraphicsViewPrivate@@QAE_NABVQRect@@@Z @ 12718 NONAME ; bool QGraphicsViewPrivate::updateRect(class QRect const &) - ?updateRegion@QGraphicsViewPrivate@@QAE_NABVQRegion@@@Z @ 12719 NONAME ABSENT ; bool QGraphicsViewPrivate::updateRegion(class QRegion const &) - ?updateScroll@QGraphicsViewPrivate@@QAEXXZ @ 12720 NONAME ; void QGraphicsViewPrivate::updateScroll(void) - ?verticalScroll@QGraphicsViewPrivate@@QBE_JXZ @ 12721 NONAME ; long long QGraphicsViewPrivate::verticalScroll(void) const - ?viewportEvent@QAbstractScrollAreaPrivate@@QAE_NPAVQEvent@@@Z @ 12722 NONAME ; bool QAbstractScrollAreaPrivate::viewportEvent(class QEvent *) - ?visibilityChanged@QToolBar@@IAEX_N@Z @ 12723 NONAME ; void QToolBar::visibilityChanged(bool) - ??0FileInfo@QZipReader@@QAE@ABU01@@Z @ 12724 NONAME ; QZipReader::FileInfo::FileInfo(struct QZipReader::FileInfo const &) - ??0QStaticText@@QAE@ABVQString@@@Z @ 12725 NONAME ; QStaticText::QStaticText(class QString const &) - ?append@QGraphicsItemPrivate@@SAXPAV?$QDeclarativeListProperty@VQGraphicsObject@@@@PAVQGraphicsObject@@@Z @ 12726 NONAME ABSENT ; void QGraphicsItemPrivate::append(class QDeclarativeListProperty *, class QGraphicsObject *) - ?bitPlaneCount@QImage@@QBEHXZ @ 12727 NONAME ; int QImage::bitPlaneCount(void) const - ?childrenChanged@QGraphicsObject@@IAEXXZ @ 12728 NONAME ; void QGraphicsObject::childrenChanged(void) - ?childrenList@QGraphicsItemPrivate@@QAE?AV?$QDeclarativeListProperty@VQGraphicsObject@@@@XZ @ 12729 NONAME ; class QDeclarativeListProperty QGraphicsItemPrivate::childrenList(void) - ?clearFocusHelper@QGraphicsItemPrivate@@QAEX_N@Z @ 12730 NONAME ; void QGraphicsItemPrivate::clearFocusHelper(bool) - ?commandDescription@QPaintBuffer@@QBE?AVQString@@H@Z @ 12731 NONAME ; class QString QPaintBuffer::commandDescription(int) const - ?create@PixmapFragment@QPainter@@SA?AV12@ABVQPointF@@ABVQRectF@@MMMM@Z @ 12732 NONAME ; class QPainter::PixmapFragment QPainter::PixmapFragment::create(class QPointF const &, class QRectF const &, float, float, float, float) - ?device@QZipReader@@QBEPAVQIODevice@@XZ @ 12733 NONAME ; class QIODevice * QZipReader::device(void) const - ?drawPixmapFragments@QPaintEngineEx@@UAEXPBVPixmapFragment@QPainter@@HABVQPixmap@@V?$QFlags@W4PixmapFragmentHint@QPainter@@@@@Z @ 12734 NONAME ; void QPaintEngineEx::drawPixmapFragments(class QPainter::PixmapFragment const *, int, class QPixmap const &, class QFlags) - ?drawPixmapFragments@QPainter@@QAEXPBVPixmapFragment@1@HABVQPixmap@@V?$QFlags@W4PixmapFragmentHint@QPainter@@@@@Z @ 12735 NONAME ; void QPainter::drawPixmapFragments(class QPainter::PixmapFragment const *, int, class QPixmap const &, class QFlags) - ?frameEndIndex@QPaintBuffer@@QBEHH@Z @ 12736 NONAME ; int QPaintBuffer::frameEndIndex(int) const - ?frameStartIndex@QPaintBuffer@@QBEHH@Z @ 12737 NONAME ; int QPaintBuffer::frameStartIndex(int) const - ?geometryChanged@QGraphicsWidget@@IAEXXZ @ 12738 NONAME ; void QGraphicsWidget::geometryChanged(void) - ?getGlyphBearings@QFontEngine@@UAEXIPAM0@Z @ 12739 NONAME ; void QFontEngine::getGlyphBearings(unsigned int, float *, float *) - ?height@QGraphicsItemPrivate@@UBEMXZ @ 12740 NONAME ; float QGraphicsItemPrivate::height(void) const - ?heightChanged@QGraphicsObject@@IAEXXZ @ 12741 NONAME ; void QGraphicsObject::heightChanged(void) - ?horizontalAdvance@QTextLine@@QBEMXZ @ 12742 NONAME ; float QTextLine::horizontalAdvance(void) const - ?isValid@FileInfo@QZipReader@@QBE_NXZ @ 12743 NONAME ; bool QZipReader::FileInfo::isValid(void) const - ?layoutChanged@QGraphicsWidget@@IAEXXZ @ 12744 NONAME ; void QGraphicsWidget::layoutChanged(void) - ?pageAdded@QWizard@@IAEXH@Z @ 12745 NONAME ; void QWizard::pageAdded(int) - ?pageRemoved@QWizard@@IAEXH@Z @ 12746 NONAME ; void QWizard::pageRemoved(int) - ?paste@QLineControl@@QAEXW4Mode@QClipboard@@@Z @ 12747 NONAME ; void QLineControl::paste(enum QClipboard::Mode) - ?paste@QTextControl@@QAEXW4Mode@QClipboard@@@Z @ 12748 NONAME ; void QTextControl::paste(enum QClipboard::Mode) - ?placeholderText@QLineEdit@@QBE?AVQString@@XZ @ 12749 NONAME ; class QString QLineEdit::placeholderText(void) const - ?prependGraphicsTransform@QGraphicsItemPrivate@@QAEXPAVQGraphicsTransform@@@Z @ 12750 NONAME ; void QGraphicsItemPrivate::prependGraphicsTransform(class QGraphicsTransform *) - ?processCommands@QPaintBuffer@@QBEHPAVQPainter@@HH@Z @ 12751 NONAME ; int QPaintBuffer::processCommands(class QPainter *, int, int) const - ?processCommands@QPainterReplayer@@QAEXABVQPaintBuffer@@PAVQPainter@@HH@Z @ 12752 NONAME ; void QPainterReplayer::processCommands(class QPaintBuffer const &, class QPainter *, int, int) - ?resetHeight@QGraphicsItemPrivate@@UAEXXZ @ 12753 NONAME ; void QGraphicsItemPrivate::resetHeight(void) - ?resetWidth@QGraphicsItemPrivate@@UAEXXZ @ 12754 NONAME ; void QGraphicsItemPrivate::resetWidth(void) - ?resizeEvent@QSplitterHandle@@MAEXPAVQResizeEvent@@@Z @ 12755 NONAME ; void QSplitterHandle::resizeEvent(class QResizeEvent *) - ?setFocusHelper@QGraphicsItemPrivate@@QAEXW4FocusReason@Qt@@_N1@Z @ 12756 NONAME ; void QGraphicsItemPrivate::setFocusHelper(enum Qt::FocusReason, bool, bool) - ?setHeight@QGraphicsItemPrivate@@UAEXM@Z @ 12757 NONAME ; void QGraphicsItemPrivate::setHeight(float) - ?setPlaceholderText@QLineEdit@@QAEXABVQString@@@Z @ 12758 NONAME ; void QLineEdit::setPlaceholderText(class QString const &) - ?setSideWidget@QWizard@@QAEXPAVQWidget@@@Z @ 12759 NONAME ; void QWizard::setSideWidget(class QWidget *) - ?setTextWidth@QStaticText@@QAEXM@Z @ 12760 NONAME ; void QStaticText::setTextWidth(float) - ?setWidth@QGraphicsItemPrivate@@UAEXM@Z @ 12761 NONAME ; void QGraphicsItemPrivate::setWidth(float) - ?sideWidget@QWizard@@QBEPAVQWidget@@XZ @ 12762 NONAME ; class QWidget * QWizard::sideWidget(void) const - ?textWidth@QStaticText@@QBEMXZ @ 12763 NONAME ; float QStaticText::textWidth(void) const - ?updateDisplayText@QLineControl@@AAEX_N@Z @ 12764 NONAME ; void QLineControl::updateDisplayText(bool) - ?updateMicroFocus@QGraphicsItem@@IAEXXZ @ 12765 NONAME ; void QGraphicsItem::updateMicroFocus(void) - ?updateMicroFocus@QGraphicsObject@@IAEXXZ @ 12766 NONAME ; void QGraphicsObject::updateMicroFocus(void) - ?width@QGraphicsItemPrivate@@UBEMXZ @ 12767 NONAME ; float QGraphicsItemPrivate::width(void) const - ?widthChanged@QGraphicsObject@@IAEXXZ @ 12768 NONAME ; void QGraphicsObject::widthChanged(void) - ?children_append@QGraphicsItemPrivate@@SAXPAV?$QDeclarativeListProperty@VQGraphicsObject@@@@PAVQGraphicsObject@@@Z @ 12769 NONAME ; void QGraphicsItemPrivate::children_append(class QDeclarativeListProperty *, class QGraphicsObject *) - ?children_at@QGraphicsItemPrivate@@SAPAVQGraphicsObject@@PAV?$QDeclarativeListProperty@VQGraphicsObject@@@@H@Z @ 12770 NONAME ; class QGraphicsObject * QGraphicsItemPrivate::children_at(class QDeclarativeListProperty *, int) - ?children_count@QGraphicsItemPrivate@@SAHPAV?$QDeclarativeListProperty@VQGraphicsObject@@@@@Z @ 12771 NONAME ; int QGraphicsItemPrivate::children_count(class QDeclarativeListProperty *) - ?display@QEglContext@@QAEHXZ @ 12772 NONAME ; int QEglContext::display(void) - ?defaultConfig@QEgl@@YAHHW4API@1@V?$QFlags@W4ConfigOption@QEgl@@@@@Z @ 12773 NONAME ; int QEgl::defaultConfig(int, enum QEgl::API, class QFlags) - ?configAttrib@QEglContext@@QBEHH@Z @ 12774 NONAME ; int QEglContext::configAttrib(int) const - ?error@QEgl@@YAHXZ @ 12775 NONAME ABSENT ; int QEgl::error(void) - ?errorString@QEgl@@YA?AVQString@@XZ @ 12776 NONAME ABSENT ; class QString QEgl::errorString(void) - ?configProperties@QEglContext@@QBE?AVQEglProperties@@XZ @ 12777 NONAME ABSENT ; class QEglProperties QEglContext::configProperties(void) const - ?extensions@QEgl@@YA?AVQString@@XZ @ 12778 NONAME ; class QString QEgl::extensions(void) - ?nativePixmap@QEgl@@YAPAXPAVQPixmap@@@Z @ 12779 NONAME ; void * QEgl::nativePixmap(class QPixmap *) - ?display@QEgl@@YAHXZ @ 12780 NONAME ; int QEgl::display(void) - ?eglCreateImageKHR@QEgl@@YAHHHHHPBH@Z @ 12781 NONAME ; int QEgl::eglCreateImageKHR(int, int, int, int, int const *) - ?hasExtension@QEgl@@YA_NPBD@Z @ 12782 NONAME ; bool QEgl::hasExtension(char const *) - ?destroyContext@QEglContext@@QAEXXZ @ 12783 NONAME ; void QEglContext::destroyContext(void) - ?nativeWindow@QEgl@@YAPAXPAVQWidget@@@Z @ 12784 NONAME ; void * QEgl::nativeWindow(class QWidget *) - ?errorString@QEgl@@YA?AVQString@@H@Z @ 12785 NONAME ; class QString QEgl::errorString(int) - ?chooseConfig@QEgl@@YAHPBVQEglProperties@@W4PixelFormatMatch@1@@Z @ 12786 NONAME ; int QEgl::chooseConfig(class QEglProperties const *, enum QEgl::PixelFormatMatch) - ?eglDestroyImageKHR@QEgl@@YAHHH@Z @ 12787 NONAME ; int QEgl::eglDestroyImageKHR(int, int) - ?isEmpty@QItemSelectionRange@@QBE_NXZ @ 12788 NONAME ; bool QItemSelectionRange::isEmpty(void) const - ?clearError@QEgl@@YAXXZ @ 12789 NONAME ABSENT ; void QEgl::clearError(void) - ?nativeDisplay@QEgl@@YAHXZ @ 12790 NONAME ; int QEgl::nativeDisplay(void) - ?dumpAllConfigs@QEgl@@YAXXZ @ 12791 NONAME ; void QEgl::dumpAllConfigs(void) - ?setDeviceType@QEglProperties@@QAEXH@Z @ 12792 NONAME ; void QEglProperties::setDeviceType(int) - ?glyphPadding@QTextureGlyphCache@@UBEHXZ @ 12793 NONAME ; int QTextureGlyphCache::glyphPadding(void) const - ?createSurface@QEgl@@YAHPAVQPaintDevice@@HPBVQEglProperties@@@Z @ 12794 NONAME ; int QEgl::createSurface(class QPaintDevice *, int, class QEglProperties const *) - ?setPartialUpdateSupport@QWindowSurface@@IAEX_N@Z @ 12795 NONAME ; void QWindowSurface::setPartialUpdateSupport(bool) - ?transformChanged@QGraphicsItemPrivate@@UAEXXZ @ 12796 NONAME ; void QGraphicsItemPrivate::transformChanged(void) - ?hasPartialUpdateSupport@QWindowSurface@@QBE_NXZ @ 12797 NONAME ; bool QWindowSurface::hasPartialUpdateSupport(void) const - ?name@QIcon@@QBE?AVQString@@XZ @ 12798 NONAME ; class QString QIcon::name(void) const - ?iconName@QIconEngineV2@@QAE?AVQString@@XZ @ 12799 NONAME ; class QString QIconEngineV2::iconName(void) - ?updateRectF@QGraphicsViewPrivate@@QAE_NABVQRectF@@@Z @ 12800 NONAME ; bool QGraphicsViewPrivate::updateRectF(class QRectF const &) - ?updateRegion@QGraphicsViewPrivate@@QAE_NABVQRectF@@ABVQTransform@@@Z @ 12801 NONAME ; bool QGraphicsViewPrivate::updateRegion(class QRectF const &, class QTransform const &) - ?totalUsed@QPixmapCache@@SAHXZ @ 12802 NONAME ; int QPixmapCache::totalUsed(void) - ?allPixmaps@QPixmapCache@@SA?AV?$QList@U?$QPair@VQString@@VQPixmap@@@@@@XZ @ 12803 NONAME ; class QList > QPixmapCache::allPixmaps(void) - ?flushDetachedPixmaps@QPixmapCache@@SAXXZ @ 12804 NONAME ; void QPixmapCache::flushDetachedPixmaps(void) - ??0QImageTextureGlyphCache@@QAE@W4Type@QFontEngineGlyphCache@@ABVQTransform@@@Z @ 12805 NONAME ; QImageTextureGlyphCache::QImageTextureGlyphCache(enum QFontEngineGlyphCache::Type, class QTransform const &) - ??1QImageTextureGlyphCache@@UAE@XZ @ 12806 NONAME ; QImageTextureGlyphCache::~QImageTextureGlyphCache(void) - ??_EQImageTextureGlyphCache@@UAE@I@Z @ 12807 NONAME ; QImageTextureGlyphCache::~QImageTextureGlyphCache(unsigned int) - ?addToPolygon@QBezier@@QBEXPAVQPolygonF@@M@Z @ 12808 NONAME ; void QBezier::addToPolygon(class QPolygonF *, float) const - ?createTextureData@QImageTextureGlyphCache@@UAEXHH@Z @ 12809 NONAME ; void QImageTextureGlyphCache::createTextureData(int, int) - ?curveThreshold@QStrokerOps@@QBEMXZ @ 12810 NONAME ; float QStrokerOps::curveThreshold(void) const - ?fillTexture@QImageTextureGlyphCache@@UAEXABUCoord@QTextureGlyphCache@@I@Z @ 12811 NONAME ; void QImageTextureGlyphCache::fillTexture(struct QTextureGlyphCache::Coord const &, unsigned int) - ?glyphMargin@QImageTextureGlyphCache@@UBEHXZ @ 12812 NONAME ; int QImageTextureGlyphCache::glyphMargin(void) const - ?image@QImageTextureGlyphCache@@QBEABVQImage@@XZ @ 12813 NONAME ; class QImage const & QImageTextureGlyphCache::image(void) const - ?resizeTextureData@QImageTextureGlyphCache@@UAEXHH@Z @ 12814 NONAME ; void QImageTextureGlyphCache::resizeTextureData(int, int) - ?setCurveThreshold@QStrokerOps@@QAEXM@Z @ 12815 NONAME ; void QStrokerOps::setCurveThreshold(float) - ?setCurveThresholdFromTransform@QStrokerOps@@QAEXABVQTransform@@@Z @ 12816 NONAME ; void QStrokerOps::setCurveThresholdFromTransform(class QTransform const &) - ?setUpdateClip@QGraphicsViewPrivate@@QAEXPAVQGraphicsItem@@@Z @ 12817 NONAME ; void QGraphicsViewPrivate::setUpdateClip(class QGraphicsItem *) - ?toPolygon@QBezier@@QBE?AVQPolygonF@@M@Z @ 12818 NONAME ; class QPolygonF QBezier::toPolygon(float) const - ?updatePaintedViewBoundingRects@QGraphicsItemPrivate@@QAEX_N@Z @ 12819 NONAME ; void QGraphicsItemPrivate::updatePaintedViewBoundingRects(bool) + ?canKeypadNavigate@QWidgetPrivate@@SA_NW4Orientation@Qt@@@Z @ 12564 NONAME ; bool QWidgetPrivate::canKeypadNavigate(enum Qt::Orientation) + ?removeAllApplicationFonts@QFontDatabase@@SA_NXZ @ 12565 NONAME ; bool QFontDatabase::removeAllApplicationFonts(void) + ?setApi@QEglContext@@QAEXW4API@QEgl@@@Z @ 12566 NONAME ; void QEglContext::setApi(enum QEgl::API) + ?updateDisplayText@QLineControl@@AAEX_N@Z @ 12567 NONAME ; void QLineControl::updateDisplayText(bool) + ?makeCurrent@QEglContext@@QAE_NH@Z @ 12568 NONAME ; bool QEglContext::makeCurrent(int) + ?isPixmapCached@QImagePixmapCleanupHooks@@SA_NABVQPixmap@@@Z @ 12569 NONAME ; bool QImagePixmapCleanupHooks::isPixmapCached(class QPixmap const &) + ?createSurface@QEglContext@@QAEHPAVQPaintDevice@@PBVQEglProperties@@@Z @ 12570 NONAME ; int QEglContext::createSurface(class QPaintDevice *, class QEglProperties const *) + ?dumpAllConfigs@QEglContext@@QAEXXZ @ 12571 NONAME ; void QEglContext::dumpAllConfigs(void) + ?reduceConfiguration@QEglProperties@@QAE_NXZ @ 12572 NONAME ; bool QEglProperties::reduceConfiguration(void) + ?nativeDisplay@QEglContext@@CAHXZ @ 12573 NONAME ; int QEglContext::nativeDisplay(void) + ?getGlyphBearings@QFontEngine@@UAEXIPAM0@Z @ 12574 NONAME ; void QFontEngine::getGlyphBearings(unsigned int, float *, float *) + ?removeValue@QEglProperties@@QAE_NH@Z @ 12575 NONAME ; bool QEglProperties::removeValue(int) + ?toString@QEglProperties@@QBE?AVQString@@XZ @ 12576 NONAME ; class QString QEglProperties::toString(void) const + ?isOpacityNull@QGraphicsItemPrivate@@QBE_NXZ @ 12577 NONAME ; bool QGraphicsItemPrivate::isOpacityNull(void) const + ?dumpAllConfigs@QEglProperties@@SAXXZ @ 12578 NONAME ; void QEglProperties::dumpAllConfigs(void) + ?inTabWidget@QWidgetPrivate@@SA_NPAVQWidget@@@Z @ 12579 NONAME ; bool QWidgetPrivate::inTabWidget(class QWidget *) + ?configProperties@QEglContext@@QBE?AVQEglProperties@@H@Z @ 12580 NONAME ; class QEglProperties QEglContext::configProperties(int) const + ?properties@QEglProperties@@QBEPBHXZ @ 12581 NONAME ; int const * QEglProperties::properties(void) const + ?destroyContext@QEglContext@@QAEXXZ @ 12582 NONAME ; void QEglContext::destroyContext(void) + ??0QEglContext@@QAE@XZ @ 12583 NONAME ; QEglContext::QEglContext(void) + ??1QEglContext@@QAE@XZ @ 12584 NONAME ; QEglContext::~QEglContext(void) + ?isValid@QEglContext@@QBE_NXZ @ 12585 NONAME ; bool QEglContext::isValid(void) const + ?value@QEglProperties@@QBEHH@Z @ 12586 NONAME ; int QEglProperties::value(int) const + ?clearError@QEglContext@@SAXXZ @ 12587 NONAME ; void QEglContext::clearError(void) + ??0QEglProperties@@QAE@H@Z @ 12588 NONAME ; QEglProperties::QEglProperties(int) + ?setValue@QEglProperties@@QAEXHH@Z @ 12589 NONAME ; void QEglProperties::setValue(int, int) + ?setPaintDeviceFormat@QEglProperties@@QAEXPAVQPaintDevice@@@Z @ 12590 NONAME ; void QEglProperties::setPaintDeviceFormat(class QPaintDevice *) + ?isImageCached@QImagePixmapCleanupHooks@@SA_NABVQImage@@@Z @ 12591 NONAME ; bool QImagePixmapCleanupHooks::isImageCached(class QImage const &) + ?setRenderableType@QEglProperties@@QAEXW4API@QEgl@@@Z @ 12592 NONAME ; void QEglProperties::setRenderableType(enum QEgl::API) + ?setContext@QEglContext@@QAEXH@Z @ 12593 NONAME ; void QEglContext::setContext(int) + ?waitClient@QEglContext@@QAEXXZ @ 12594 NONAME ; void QEglContext::waitClient(void) + ?isEmpty@QEglProperties@@QBE_NXZ @ 12595 NONAME ; bool QEglProperties::isEmpty(void) const + ?dpy@QEglContext@@0HA @ 12596 NONAME ; int QEglContext::dpy + ?isSharing@QEglContext@@QBE_NXZ @ 12597 NONAME ; bool QEglContext::isSharing(void) const + ?isCurrent@QEglContext@@QBE_NXZ @ 12598 NONAME ; bool QEglContext::isCurrent(void) const + ??0QEglProperties@@QAE@XZ @ 12599 NONAME ; QEglProperties::QEglProperties(void) + ?extensions@QEglContext@@SA?AVQString@@XZ @ 12600 NONAME ; class QString QEglContext::extensions(void) + ?setCurrentContext@QEglContext@@CAXW4API@QEgl@@PAV1@@Z @ 12601 NONAME ; void QEglContext::setCurrentContext(enum QEgl::API, class QEglContext *) + ??1QEglProperties@@QAE@XZ @ 12602 NONAME ; QEglProperties::~QEglProperties(void) + ?createContext@QEglContext@@QAE_NPAV1@PBVQEglProperties@@@Z @ 12603 NONAME ; bool QEglContext::createContext(class QEglContext *, class QEglProperties const *) + ?setConfig@QEglContext@@QAEXH@Z @ 12604 NONAME ; void QEglContext::setConfig(int) + ?hasExtension@QEglContext@@SA_NPBD@Z @ 12605 NONAME ; bool QEglContext::hasExtension(char const *) + ?doneCurrent@QEglContext@@QAE_NXZ @ 12606 NONAME ; bool QEglContext::doneCurrent(void) + ?setPixelFormat@QEglProperties@@QAEXW4Format@QImage@@@Z @ 12607 NONAME ; void QEglProperties::setPixelFormat(enum QImage::Format) + ?currentContext@QEglContext@@CAPAV1@W4API@QEgl@@@Z @ 12608 NONAME ; class QEglContext * QEglContext::currentContext(enum QEgl::API) + ?setFocusHelper@QGraphicsItemPrivate@@QAEXW4FocusReason@Qt@@_N1@Z @ 12609 NONAME ; void QGraphicsItemPrivate::setFocusHelper(enum Qt::FocusReason, bool, bool) + ?errorString@QEglContext@@SA?AVQString@@H@Z @ 12610 NONAME ; class QString QEglContext::errorString(int) diff --git a/src/s60installs/eabi/QtCoreu.def b/src/s60installs/eabi/QtCoreu.def index 48ba8d2..5dc282c 100644 --- a/src/s60installs/eabi/QtCoreu.def +++ b/src/s60installs/eabi/QtCoreu.def @@ -622,9 +622,9 @@ EXPORTS _ZN14QObjectPrivate14deleteChildrenEv @ 621 NONAME _ZN14QObjectPrivate14setDeleteWatchEPS_Pi @ 622 NONAME _ZN14QObjectPrivate16resetDeleteWatchEPS_Pii @ 623 NONAME - _ZN14QObjectPrivate16setCurrentSenderEP7QObjectPNS_6SenderE @ 624 NONAME ABSENT + _ZN14QObjectPrivate16setCurrentSenderEP7QObjectPNS_6SenderE @ 624 NONAME _ZN14QObjectPrivate16setParent_helperEP7QObject @ 625 NONAME - _ZN14QObjectPrivate18resetCurrentSenderEP7QObjectPNS_6SenderES3_ @ 626 NONAME ABSENT + _ZN14QObjectPrivate18resetCurrentSenderEP7QObjectPNS_6SenderES3_ @ 626 NONAME _ZN14QObjectPrivate19_q_reregisterTimersEPv @ 627 NONAME _ZN14QObjectPrivate19moveToThread_helperEv @ 628 NONAME _ZN14QObjectPrivate20cleanConnectionListsEv @ 629 NONAME @@ -803,9 +803,9 @@ EXPORTS _ZN16QCoreApplicationD0Ev @ 802 NONAME _ZN16QCoreApplicationD1Ev @ 803 NONAME _ZN16QCoreApplicationD2Ev @ 804 NONAME - _ZN16QDeclarativeDataD0Ev @ 805 NONAME ABSENT - _ZN16QDeclarativeDataD1Ev @ 806 NONAME ABSENT - _ZN16QDeclarativeDataD2Ev @ 807 NONAME ABSENT + _ZN16QDeclarativeDataD0Ev @ 805 NONAME + _ZN16QDeclarativeDataD1Ev @ 806 NONAME + _ZN16QDeclarativeDataD2Ev @ 807 NONAME _ZN16QEventTransition11qt_metacallEN11QMetaObject4CallEiPPv @ 808 NONAME _ZN16QEventTransition11qt_metacastEPKc @ 809 NONAME _ZN16QEventTransition12onTransitionEP6QEvent @ 810 NONAME @@ -3332,7 +3332,7 @@ EXPORTS _ZTI15QPauseAnimation @ 3331 NONAME _ZTI15QSocketNotifier @ 3332 NONAME _ZTI16QCoreApplication @ 3333 NONAME - _ZTI16QDeclarativeData @ 3334 NONAME ABSENT + _ZTI16QDeclarativeData @ 3334 NONAME _ZTI16QEventTransition @ 3335 NONAME _ZTI16QIODevicePrivate @ 3336 NONAME _ZTI16QTextCodecPlugin @ 3337 NONAME @@ -3407,7 +3407,7 @@ EXPORTS _ZTV15QPauseAnimation @ 3406 NONAME _ZTV15QSocketNotifier @ 3407 NONAME _ZTV16QCoreApplication @ 3408 NONAME - _ZTV16QDeclarativeData @ 3409 NONAME ABSENT + _ZTV16QDeclarativeData @ 3409 NONAME _ZTV16QEventTransition @ 3410 NONAME _ZTV16QIODevicePrivate @ 3411 NONAME _ZTV16QTextCodecPlugin @ 3412 NONAME @@ -3652,59 +3652,6 @@ EXPORTS _Z40QBasicAtomicPointer_fetchAndStoreAcquirePVPvS_ @ 3651 NONAME _Z40QBasicAtomicPointer_fetchAndStoreRelaxedPVPvS_ @ 3652 NONAME _Z40QBasicAtomicPointer_fetchAndStoreReleasePVPvS_ @ 3653 NONAME - _Z14qDecodeDataUrlRK4QUrl @ 3654 NONAME - _Z18qDetectCPUFeaturesv @ 3655 NONAME - _ZN10QByteArray7replaceEiiPKci @ 3656 NONAME - _ZN12QTextDecoderC1EPK10QTextCodec6QFlagsINS0_14ConversionFlagEE @ 3657 NONAME - _ZN12QTextDecoderC2EPK10QTextCodec6QFlagsINS0_14ConversionFlagEE @ 3658 NONAME - _ZN12QTextEncoderC1EPK10QTextCodec6QFlagsINS0_14ConversionFlagEE @ 3659 NONAME - _ZN12QTextEncoderC2EPK10QTextCodec6QFlagsINS0_14ConversionFlagEE @ 3660 NONAME - _ZN13QElapsedTimer10invalidateEv @ 3661 NONAME - _ZN13QElapsedTimer11isMonotonicEv @ 3662 NONAME - _ZN13QElapsedTimer5startEv @ 3663 NONAME - _ZN13QElapsedTimer7restartEv @ 3664 NONAME - _ZN13QElapsedTimer9clockTypeEv @ 3665 NONAME - _ZN20QStateMachinePrivate12clearHistoryEv @ 3666 NONAME - _ZN7QStringC1EPK5QChar @ 3667 NONAME - _ZN7QStringC2EPK5QChar @ 3668 NONAME - _ZN8QVariantC1ERK12QEasingCurve @ 3669 NONAME - _ZN8QVariantC2ERK12QEasingCurve @ 3670 NONAME - _ZN9QDateTime18currentDateTimeUtcEv @ 3671 NONAME - _ZN9QDateTime22currentMSecsSinceEpochEv @ 3672 NONAME - _ZN9QListData11detach_growEPii @ 3673 NONAME - _ZN9QListData6appendEi @ 3674 NONAME - _ZN9QListData6detachEi @ 3675 NONAME - _ZN9QMetaType15registerTypedefEPKci @ 3676 NONAME - _ZN9QMetaType23registerStreamOperatorsEiPFvR11QDataStreamPKvEPFvS1_PvE @ 3677 NONAME - _ZNK10QTextCodec11makeDecoderE6QFlagsINS_14ConversionFlagEE @ 3678 NONAME - _ZNK10QTextCodec11makeEncoderE6QFlagsINS_14ConversionFlagEE @ 3679 NONAME - _ZNK13QElapsedTimer10hasExpiredEx @ 3680 NONAME - _ZNK13QElapsedTimer19msecsSinceReferenceEv @ 3681 NONAME - _ZNK13QElapsedTimer6secsToERKS_ @ 3682 NONAME - _ZNK13QElapsedTimer7elapsedEv @ 3683 NONAME - _ZNK13QElapsedTimer7isValidEv @ 3684 NONAME - _ZNK13QElapsedTimer7msecsToERKS_ @ 3685 NONAME - _ZNK6QState11transitionsEv @ 3686 NONAME - _ZNK8QVariant13toEasingCurveEv @ 3687 NONAME - _ZlsR11QDataStreamRK12QEasingCurve @ 3688 NONAME - _ZltRK13QElapsedTimerS1_ @ 3689 NONAME - _ZrsR11QDataStreamR12QEasingCurve @ 3690 NONAME - _ZN9QDateTime18setMSecsSinceEpochEx @ 3691 NONAME - _ZN9QDateTime19fromMSecsSinceEpochEx @ 3692 NONAME - _ZNK9QDateTime17toMSecsSinceEpochEv @ 3693 NONAME - _ZN10QTextCodec11validCodecsEv @ 3694 NONAME - _ZN16QDeclarativeData13parentChangedE @ 3695 NONAME DATA 4 ABSENT - _ZN16QDeclarativeData9destroyedE @ 3696 NONAME DATA 4 ABSENT - _ZN24QAbstractDeclarativeData13parentChangedE @ 3697 NONAME DATA 4 - _ZN24QAbstractDeclarativeData9destroyedE @ 3698 NONAME DATA 4 - _ZN23QEventDispatcherSymbian12selectThreadEv @ 3699 NONAME - _ZN10QByteArray10setRawDataEPKcj @ 3700 NONAME - _ZN7QString10setRawDataEPK5QChari @ 3701 NONAME - _ZN23QCoreApplicationPrivate11symbianInitEv @ 3702 NONAME - _ZN23QEventDispatcherSymbian11qt_metacallEN11QMetaObject4CallEiPPv @ 3703 NONAME - _ZN23QEventDispatcherSymbian11qt_metacastEPKc @ 3704 NONAME - _ZN23QEventDispatcherSymbian16staticMetaObjectE @ 3705 NONAME DATA 16 - _ZN23QEventDispatcherSymbian19getStaticMetaObjectEv @ 3706 NONAME - _ZNK23QEventDispatcherSymbian10metaObjectEv @ 3707 NONAME - _ZNK9QDateTime7msecsToERKS_ @ 3708 NONAME + _ZN10QTextCodec11validCodecsEv @ 3654 NONAME + _ZN20QStateMachinePrivate12clearHistoryEv @ 3655 NONAME diff --git a/src/s60installs/eabi/QtGuiu.def b/src/s60installs/eabi/QtGuiu.def index 6b05e9b..cfe2630 100644 --- a/src/s60installs/eabi/QtGuiu.def +++ b/src/s60installs/eabi/QtGuiu.def @@ -1,7 +1,7 @@ EXPORTS _Z11qFadeEffectP7QWidgeti @ 1 NONAME _Z11qt_image_idRK6QImage @ 2 NONAME - _Z12qDrawPixmapsP8QPainterPKN12QDrawPixmaps4DataEiRK7QPixmap6QFlagsINS1_11DrawingHintEE @ 3 NONAME ABSENT + _Z12qDrawPixmapsP8QPainterPKN12QDrawPixmaps4DataEiRK7QPixmap6QFlagsINS1_11DrawingHintEE @ 3 NONAME _Z12qt_pixmap_idRK7QPixmap @ 4 NONAME _Z13qDrawWinPanelP8QPainterRK5QRectRK8QPalettebPK6QBrush @ 5 NONAME _Z13qDrawWinPanelP8QPainteriiiiRK8QPalettebPK6QBrush @ 6 NONAME @@ -1834,7 +1834,7 @@ EXPORTS _ZN12QLineControl4initERK7QString @ 1833 NONAME _ZN12QLineControl5clearEv @ 1834 NONAME _ZN12QLineControl5fixupEv @ 1835 NONAME - _ZN12QLineControl5pasteEv @ 1836 NONAME ABSENT + _ZN12QLineControl5pasteEv @ 1836 NONAME _ZN12QLineControl6insertERK7QString @ 1837 NONAME _ZN12QLineControl8acceptedEv @ 1838 NONAME _ZN12QLineControl8completeEi @ 1839 NONAME @@ -2148,7 +2148,7 @@ EXPORTS _ZN12QTextControl4undoEv @ 2147 NONAME _ZN12QTextControl5clearEv @ 2148 NONAME _ZN12QTextControl5eventEP6QEvent @ 2149 NONAME - _ZN12QTextControl5pasteEv @ 2150 NONAME ABSENT + _ZN12QTextControl5pasteEv @ 2150 NONAME _ZN12QTextControl6appendERK7QString @ 2151 NONAME _ZN12QTextControl7setHtmlERK7QString @ 2152 NONAME _ZN12QTextControl8setFocusEbN2Qt11FocusReasonE @ 2153 NONAME @@ -2906,7 +2906,7 @@ EXPORTS _ZN14QPaintEngineEx10drawPointsEPK7QPointFi @ 2905 NONAME _ZN14QPaintEngineEx11drawEllipseERK5QRect @ 2906 NONAME _ZN14QPaintEngineEx11drawEllipseERK6QRectF @ 2907 NONAME - _ZN14QPaintEngineEx11drawPixmapsEPKN12QDrawPixmaps4DataEiRK7QPixmap6QFlagsINS0_11DrawingHintEE @ 2908 NONAME ABSENT + _ZN14QPaintEngineEx11drawPixmapsEPKN12QDrawPixmaps4DataEiRK7QPixmap6QFlagsINS0_11DrawingHintEE @ 2908 NONAME _ZN14QPaintEngineEx11drawPolygonEPK6QPointiN12QPaintEngine15PolygonDrawModeE @ 2909 NONAME _ZN14QPaintEngineEx11drawPolygonEPK7QPointFiN12QPaintEngine15PolygonDrawModeE @ 2910 NONAME _ZN14QPaintEngineEx11updateStateERK17QPaintEngineState @ 2911 NONAME @@ -3726,7 +3726,7 @@ EXPORTS _ZN16QFileSystemModelD1Ev @ 3725 NONAME _ZN16QFileSystemModelD2Ev @ 3726 NONAME _ZN16QPainterReplayer14setupTransformEP8QPainter @ 3727 NONAME - _ZN16QPainterReplayer4drawERK12QPaintBufferP8QPainteri @ 3728 NONAME ABSENT + _ZN16QPainterReplayer4drawERK12QPaintBufferP8QPainteri @ 3728 NONAME _ZN16QPainterReplayer7processERK19QPaintBufferCommand @ 3729 NONAME _ZN16QRegExpValidator11qt_metacallEN11QMetaObject4CallEiPPv @ 3730 NONAME _ZN16QRegExpValidator11qt_metacastEPKc @ 3731 NONAME @@ -4223,7 +4223,7 @@ EXPORTS _ZN18QTextBlockUserDataD0Ev @ 4222 NONAME _ZN18QTextBlockUserDataD1Ev @ 4223 NONAME _ZN18QTextBlockUserDataD2Ev @ 4224 NONAME - _ZN18QTextureGlyphCache8populateERK12QTextItemIntRK15QVarLengthArrayIjLi256EERKS3_I11QFixedPointLi256EE @ 4225 NONAME ABSENT + _ZN18QTextureGlyphCache8populateERK12QTextItemIntRK15QVarLengthArrayIjLi256EERKS3_I11QFixedPointLi256EE @ 4225 NONAME _ZN19QAbstractProxyModel11qt_metacallEN11QMetaObject4CallEiPPv @ 4226 NONAME _ZN19QAbstractProxyModel11qt_metacastEPKc @ 4227 NONAME _ZN19QAbstractProxyModel13setHeaderDataEiN2Qt11OrientationERK8QVarianti @ 4228 NONAME @@ -5907,9 +5907,9 @@ EXPORTS _ZN7QActionD1Ev @ 5906 NONAME _ZN7QActionD2Ev @ 5907 NONAME _ZN7QBezier10fromPointsERK7QPointFS2_S2_S2_ @ 5908 NONAME - _ZN7QBezier17findIntersectionsERKS_S1_ @ 5909 NONAME ABSENT - _ZN7QBezier17findIntersectionsERKS_S1_P7QVectorI5QPairIffEE @ 5910 NONAME ABSENT - _ZN7QBezier20splitAtIntersectionsERS_ @ 5911 NONAME ABSENT + _ZN7QBezier17findIntersectionsERKS_S1_ @ 5909 NONAME + _ZN7QBezier17findIntersectionsERKS_S1_P7QVectorI5QPairIffEE @ 5910 NONAME + _ZN7QBezier20splitAtIntersectionsERS_ @ 5911 NONAME _ZN7QBitmap8fromDataERK5QSizePKhN6QImage6FormatE @ 5912 NONAME _ZN7QBitmap9fromImageERK6QImage6QFlagsIN2Qt19ImageConversionFlagEE @ 5913 NONAME _ZN7QBitmapC1ERK5QSize @ 5914 NONAME @@ -9899,17 +9899,17 @@ EXPORTS _ZNK7QAction9statusTipEv @ 9898 NONAME _ZNK7QAction9whatsThisEv @ 9899 NONAME _ZNK7QBezier10addIfCloseEPff @ 9900 NONAME - _ZNK7QBezier12addToPolygonEP9QPolygonF @ 9901 NONAME ABSENT + _ZNK7QBezier12addToPolygonEP9QPolygonF @ 9901 NONAME _ZNK7QBezier16bezierOnIntervalEff @ 9902 NONAME - _ZNK7QBezier17addToPolygonMixedEP9QPolygonF @ 9903 NONAME ABSENT + _ZNK7QBezier17addToPolygonMixedEP9QPolygonF @ 9903 NONAME _ZNK7QBezier17stationaryYPointsERfS0_ @ 9904 NONAME - _ZNK7QBezier21addToPolygonIterativeEP9QPolygonF @ 9905 NONAME ABSENT + _ZNK7QBezier21addToPolygonIterativeEP9QPolygonF @ 9905 NONAME _ZNK7QBezier5tForYEfff @ 9906 NONAME _ZNK7QBezier6boundsEv @ 9907 NONAME _ZNK7QBezier6lengthEf @ 9908 NONAME _ZNK7QBezier7shiftedEPS_iff @ 9909 NONAME _ZNK7QBezier9tAtLengthEf @ 9910 NONAME - _ZNK7QBezier9toPolygonEv @ 9911 NONAME ABSENT + _ZNK7QBezier9toPolygonEv @ 9911 NONAME _ZNK7QBitmap11transformedERK10QTransform @ 9912 NONAME _ZNK7QBitmap11transformedERK7QMatrix @ 9913 NONAME _ZNK7QBitmapcv8QVariantEv @ 9914 NONAME @@ -11741,23 +11741,23 @@ EXPORTS _ZN11QVectorPathD2Ev @ 11740 NONAME _ZNK11QVectorPath12addCacheDataEP14QPaintEngineExPvPFvS1_S2_E @ 11741 NONAME _ZNK20QGraphicsItemPrivate20discardUpdateRequestEbbb @ 11742 NONAME - _ZN11QEglContext10extensionsEv @ 11743 NONAME ABSENT + _ZN11QEglContext10extensionsEv @ 11743 NONAME _ZN11QEglContext10getDisplayEP12QPaintDevice @ 11744 NONAME ABSENT - _ZN11QEglContext10waitClientEv @ 11745 NONAME ABSENT - _ZN11QEglContext10waitNativeEv @ 11746 NONAME ABSENT + _ZN11QEglContext10waitClientEv @ 11745 NONAME + _ZN11QEglContext10waitNativeEv @ 11746 NONAME _ZN11QEglContext11doneCurrentEv @ 11747 NONAME - _ZN11QEglContext11errorStringEi @ 11748 NONAME ABSENT + _ZN11QEglContext11errorStringEi @ 11748 NONAME _ZN11QEglContext11makeCurrentEi @ 11749 NONAME _ZN11QEglContext11openDisplayEP12QPaintDevice @ 11750 NONAME ABSENT _ZN11QEglContext11swapBuffersEi @ 11751 NONAME _ZN11QEglContext12chooseConfigERK14QEglPropertiesN4QEgl16PixelFormatMatchE @ 11752 NONAME - _ZN11QEglContext12hasExtensionEPKc @ 11753 NONAME ABSENT + _ZN11QEglContext12hasExtensionEPKc @ 11753 NONAME _ZN11QEglContext13createContextEPS_PK14QEglProperties @ 11754 NONAME _ZN11QEglContext13createSurfaceEP12QPaintDevicePK14QEglProperties @ 11755 NONAME _ZN11QEglContext14currentContextEN4QEgl3APIE @ 11756 NONAME _ZN11QEglContext14defaultDisplayEP12QPaintDevice @ 11757 NONAME ABSENT _ZN11QEglContext14destroySurfaceEi @ 11758 NONAME - _ZN11QEglContext14dumpAllConfigsEv @ 11759 NONAME ABSENT + _ZN11QEglContext14dumpAllConfigsEv @ 11759 NONAME _ZN11QEglContext15lazyDoneCurrentEv @ 11760 NONAME _ZN11QEglContext17setCurrentContextEN4QEgl3APIEPS_ @ 11761 NONAME _ZN11QEglContext7destroyEv @ 11762 NONAME ABSENT @@ -11766,7 +11766,7 @@ EXPORTS _ZN11QEglContextD1Ev @ 11765 NONAME _ZN11QEglContextD2Ev @ 11766 NONAME _ZN14QEglProperties11removeValueEi @ 11767 NONAME - _ZN14QEglProperties14dumpAllConfigsEv @ 11768 NONAME ABSENT + _ZN14QEglProperties14dumpAllConfigsEv @ 11768 NONAME _ZN14QEglProperties14setPixelFormatEN6QImage6FormatE @ 11769 NONAME _ZN14QEglProperties17setRenderableTypeEN4QEgl3APIE @ 11770 NONAME _ZN14QEglProperties19reduceConfigurationEv @ 11771 NONAME @@ -11776,8 +11776,8 @@ EXPORTS _ZN14QEglPropertiesC1Ev @ 11775 NONAME _ZN14QEglPropertiesC2Ei @ 11776 NONAME _ZN14QEglPropertiesC2Ev @ 11777 NONAME - _ZNK11QEglContext12configAttribEiPi @ 11778 NONAME ABSENT - _ZNK11QEglContext16configPropertiesEi @ 11779 NONAME ABSENT + _ZNK11QEglContext12configAttribEiPi @ 11778 NONAME + _ZNK11QEglContext16configPropertiesEi @ 11779 NONAME _ZNK11QEglContext7isValidEv @ 11780 NONAME _ZNK11QEglContext9isCurrentEv @ 11781 NONAME _ZNK14QEglProperties5valueEi @ 11782 NONAME @@ -11805,211 +11805,19 @@ EXPORTS _ZN24QImagePixmapCleanupHooks34executePixmapDataModificationHooksEP11QPixmapData @ 11804 NONAME _ZN9QS60Style10timerEventEP11QTimerEvent @ 11805 NONAME _ZN9QS60Style11eventFilterEP7QObjectP6QEvent @ 11806 NONAME - _ZN13QFontDatabase25removeAllApplicationFontsEv @ 11807 NONAME - _ZN10QZipReader5closeEv @ 11808 NONAME - _ZN10QZipReader8FileInfoC1ERKS0_ @ 11809 NONAME - _ZN10QZipReader8FileInfoC1Ev @ 11810 NONAME - _ZN10QZipReader8FileInfoC2ERKS0_ @ 11811 NONAME - _ZN10QZipReader8FileInfoC2Ev @ 11812 NONAME - _ZN10QZipReader8FileInfoD1Ev @ 11813 NONAME - _ZN10QZipReader8FileInfoD2Ev @ 11814 NONAME - _ZN10QZipReader8FileInfoaSERKS0_ @ 11815 NONAME - _ZN10QZipReaderC1EP9QIODevice @ 11816 NONAME - _ZN10QZipReaderC1ERK7QString6QFlagsIN9QIODevice12OpenModeFlagEE @ 11817 NONAME - _ZN10QZipReaderC2EP9QIODevice @ 11818 NONAME - _ZN10QZipReaderC2ERK7QString6QFlagsIN9QIODevice12OpenModeFlagEE @ 11819 NONAME - _ZN10QZipReaderD1Ev @ 11820 NONAME - _ZN10QZipReaderD2Ev @ 11821 NONAME - _ZN11QStaticText13setTextFormatEN2Qt10TextFormatE @ 11822 NONAME - _ZN11QStaticText14setMaximumSizeERK6QSizeF @ 11823 NONAME ABSENT - _ZN11QStaticText18setPerformanceHintENS_15PerformanceHintE @ 11824 NONAME - _ZN11QStaticText6detachEv @ 11825 NONAME - _ZN11QStaticText7prepareERK10QTransformRK5QFont @ 11826 NONAME - _ZN11QStaticText7setTextERK7QString @ 11827 NONAME - _ZN11QStaticTextC1ERK7QString @ 11828 NONAME - _ZN11QStaticTextC1ERKS_ @ 11829 NONAME - _ZN11QStaticTextC1Ev @ 11830 NONAME - _ZN11QStaticTextC2ERK7QString @ 11831 NONAME - _ZN11QStaticTextC2ERKS_ @ 11832 NONAME - _ZN11QStaticTextC2Ev @ 11833 NONAME - _ZN11QStaticTextD1Ev @ 11834 NONAME - _ZN11QStaticTextD2Ev @ 11835 NONAME - _ZN11QStaticTextaSERKS_ @ 11836 NONAME - _ZN12QKeySequence6assignERK7QStringNS_14SequenceFormatE @ 11837 NONAME - _ZN12QKeySequenceC1ERK7QStringNS_14SequenceFormatE @ 11838 NONAME - _ZN12QKeySequenceC2ERK7QStringNS_14SequenceFormatE @ 11839 NONAME - _ZN13QTextDocument19clearUndoRedoStacksENS_6StacksE @ 11840 NONAME - _ZN14QPaintEngineEx19drawPixmapFragmentsEPKN8QPainter8FragmentEiRK7QPixmap6QFlagsINS0_12FragmentHintEE @ 11841 NONAME ABSENT - _ZN14QWidgetPrivate11inTabWidgetEP7QWidget @ 11842 NONAME - _ZN14QWidgetPrivate17canKeypadNavigateEN2Qt11OrientationE @ 11843 NONAME - _ZN14QWidgetPrivate6renderEP12QPaintDeviceRK6QPointRK7QRegion6QFlagsIN7QWidget10RenderFlagEEb @ 11844 NONAME - _ZN15QGraphicsWidget21setAutoFillBackgroundEb @ 11845 NONAME - _ZN16QFileSystemModel15directoryLoadedERK7QString @ 11846 NONAME - _ZN18QTextureGlyphCache8populateEP11QFontEngineiPKjPK11QFixedPoint @ 11847 NONAME - _ZN19QApplicationPrivate15getPixmapCursorEN2Qt11CursorShapeE @ 11848 NONAME - _ZN20QGraphicsViewPrivate10centerViewEN13QGraphicsView14ViewportAnchorE @ 11849 NONAME - _ZN20QGraphicsViewPrivate10updateRectERK5QRect @ 11850 NONAME - _ZN20QGraphicsViewPrivate12updateRegionERK7QRegion @ 11851 NONAME ABSENT - _ZN20QGraphicsViewPrivate12updateScrollEv @ 11852 NONAME - _ZN20QGraphicsViewPrivate15storeMouseEventEP11QMouseEvent @ 11853 NONAME - _ZN20QGraphicsViewPrivate18storeDragDropEventEPK27QGraphicsSceneDragDropEvent @ 11854 NONAME - _ZN20QGraphicsViewPrivate19translateTouchEventEPS_P11QTouchEvent @ 11855 NONAME - _ZN20QGraphicsViewPrivate20_q_setViewportCursorERK7QCursor @ 11856 NONAME - _ZN20QGraphicsViewPrivate20replayLastMouseEventEv @ 11857 NONAME - _ZN20QGraphicsViewPrivate21freeStyleOptionsArrayEP24QStyleOptionGraphicsItem @ 11858 NONAME - _ZN20QGraphicsViewPrivate21mouseMoveEventHandlerEP11QMouseEvent @ 11859 NONAME - _ZN20QGraphicsViewPrivate21processPendingUpdatesEv @ 11860 NONAME - _ZN20QGraphicsViewPrivate21updateLastCenterPointEv @ 11861 NONAME - _ZN20QGraphicsViewPrivate22_q_unsetViewportCursorEv @ 11862 NONAME - _ZN20QGraphicsViewPrivate22allocStyleOptionsArrayEi @ 11863 NONAME - _ZN20QGraphicsViewPrivate22recalculateContentSizeEv @ 11864 NONAME - _ZN20QGraphicsViewPrivate26populateSceneDragDropEventEP27QGraphicsSceneDragDropEventP10QDropEvent @ 11865 NONAME - _ZN20QGraphicsViewPrivate28updateInputMethodSensitivityEv @ 11866 NONAME - _ZN20QGraphicsViewPrivateC1Ev @ 11867 NONAME - _ZN20QGraphicsViewPrivateC2Ev @ 11868 NONAME - _ZN24QImagePixmapCleanupHooks13isImageCachedERK6QImage @ 11869 NONAME - _ZN24QImagePixmapCleanupHooks14isPixmapCachedERK7QPixmap @ 11870 NONAME - _ZN26QAbstractScrollAreaPrivate14layoutChildrenEv @ 11871 NONAME - _ZN26QAbstractScrollAreaPrivate16replaceScrollBarEP10QScrollBarN2Qt11OrientationE @ 11872 NONAME - _ZN26QAbstractScrollAreaPrivate23_q_showOrHideScrollBarsEv @ 11873 NONAME - _ZN26QAbstractScrollAreaPrivate4initEv @ 11874 NONAME - _ZN26QAbstractScrollAreaPrivate9_q_hslideEi @ 11875 NONAME - _ZN26QAbstractScrollAreaPrivate9_q_vslideEi @ 11876 NONAME - _ZN26QAbstractScrollAreaPrivateC1Ev @ 11877 NONAME - _ZN26QAbstractScrollAreaPrivateC2Ev @ 11878 NONAME - _ZN6QColor12isValidColorERK7QString @ 11879 NONAME - _ZN6QColor18setColorFromStringERK7QString @ 11880 NONAME - _ZN6QLabel12setSelectionEii @ 11881 NONAME - _ZN7QPixmap16convertFromImageERK6QImage6QFlagsIN2Qt19ImageConversionFlagEE @ 11882 NONAME - _ZN8QPainter14drawStaticTextERK7QPointFRK11QStaticText @ 11883 NONAME - _ZN8QPainter19drawPixmapFragmentsEPKNS_8FragmentEiRK7QPixmap6QFlagsINS_12FragmentHintEE @ 11884 NONAME ABSENT - _ZN8QPainter8Fragment6createERK7QPointFRK6QRectFffff @ 11885 NONAME ABSENT - _ZN8QToolBar17visibilityChangedEb @ 11886 NONAME - _ZNK10QZipReader10extractAllERK7QString @ 11887 NONAME - _ZNK10QZipReader10isReadableEv @ 11888 NONAME - _ZNK10QZipReader11entryInfoAtEi @ 11889 NONAME - _ZNK10QZipReader12fileInfoListEv @ 11890 NONAME - _ZNK10QZipReader5countEv @ 11891 NONAME - _ZNK10QZipReader6existsEv @ 11892 NONAME - _ZNK10QZipReader6statusEv @ 11893 NONAME - _ZNK10QZipReader8fileDataERK7QString @ 11894 NONAME - _ZNK11QStaticText10textFormatEv @ 11895 NONAME - _ZNK11QStaticText11maximumSizeEv @ 11896 NONAME ABSENT - _ZNK11QStaticText15performanceHintEv @ 11897 NONAME - _ZNK11QStaticText4sizeEv @ 11898 NONAME - _ZNK11QStaticText4textEv @ 11899 NONAME - _ZNK11QStaticTexteqERKS_ @ 11900 NONAME - _ZNK11QStaticTextneERKS_ @ 11901 NONAME - _ZNK11QTextCursor15positionInBlockEv @ 11902 NONAME - _ZNK13QIntValidator5fixupER7QString @ 11903 NONAME - _ZNK14QPlainTextEdit8anchorAtERK6QPoint @ 11904 NONAME - _ZNK15QGraphicsWidget18autoFillBackgroundEv @ 11905 NONAME - _ZNK20QGraphicsViewPrivate10mapToSceneERK6QRectF @ 11906 NONAME - _ZNK20QGraphicsViewPrivate10mapToSceneERK7QPointF @ 11907 NONAME - _ZNK20QGraphicsViewPrivate13mapToViewRectEPK13QGraphicsItemRK6QRectF @ 11908 NONAME - _ZNK20QGraphicsViewPrivate14mapRectToSceneERK5QRect @ 11909 NONAME - _ZNK20QGraphicsViewPrivate14verticalScrollEv @ 11910 NONAME - _ZNK20QGraphicsViewPrivate15mapToViewRegionEPK13QGraphicsItemRK6QRectF @ 11911 NONAME - _ZNK20QGraphicsViewPrivate16horizontalScrollEv @ 11912 NONAME - _ZNK20QGraphicsViewPrivate16mapRectFromSceneERK6QRectF @ 11913 NONAME - _ZNK20QGraphicsViewPrivate16rubberBandRegionEPK7QWidgetRK5QRect @ 11914 NONAME - _ZNK20QGraphicsViewPrivate9findItemsERK7QRegionPbRK10QTransform @ 11915 NONAME - _ZNK26QAbstractScrollAreaPrivate14contentsOffsetEv @ 11916 NONAME - _ZNK6QImage13constScanLineEi @ 11917 NONAME - _ZNK6QImage9constBitsEv @ 11918 NONAME - _ZNK6QLabel12selectedTextEv @ 11919 NONAME - _ZNK6QLabel14selectionStartEv @ 11920 NONAME - _ZNK6QLabel15hasSelectedTextEv @ 11921 NONAME - _ZNK7QBezier11getSubRangeEff @ 11922 NONAME - _ZNK7QBezier5mapByERK10QTransform @ 11923 NONAME - _ZTI20QGraphicsViewPrivate @ 11924 NONAME - _ZTI26QAbstractScrollAreaPrivate @ 11925 NONAME - _ZTV20QGraphicsViewPrivate @ 11926 NONAME - _ZTV26QAbstractScrollAreaPrivate @ 11927 NONAME - _Z14qt_draw_glyphsP8QPainterPKjPK7QPointFi @ 11928 NONAME - _ZN11QFontEngine16getGlyphBearingsEjPfS0_ @ 11929 NONAME - _ZN12QLineControl17updateDisplayTextEb @ 11930 NONAME - _ZN12QLineControl5pasteEN10QClipboard4ModeE @ 11931 NONAME - _ZN12QTextControl5pasteEN10QClipboard4ModeE @ 11932 NONAME - _ZN14QPaintEngineEx19drawPixmapFragmentsEPKN8QPainter14PixmapFragmentEiRK7QPixmap6QFlagsINS0_18PixmapFragmentHintEE @ 11933 NONAME - _ZN15QGraphicsObject12widthChangedEv @ 11934 NONAME - _ZN15QGraphicsObject13heightChangedEv @ 11935 NONAME - _ZN15QGraphicsObject15childrenChangedEv @ 11936 NONAME - _ZN15QGraphicsWidget15geometryChangedEv @ 11937 NONAME - _ZN15QSplitterHandle11resizeEventEP12QResizeEvent @ 11938 NONAME - _ZN20QGraphicsItemPrivate10resetWidthEv @ 11939 NONAME - _ZN20QGraphicsItemPrivate11resetHeightEv @ 11940 NONAME - _ZN20QGraphicsItemPrivate12childrenListEv @ 11941 NONAME - _ZN20QGraphicsItemPrivate14setFocusHelperEN2Qt11FocusReasonEbb @ 11942 NONAME - _ZN20QGraphicsItemPrivate16clearFocusHelperEb @ 11943 NONAME - _ZN20QGraphicsItemPrivate24prependGraphicsTransformEP18QGraphicsTransform @ 11944 NONAME - _ZN20QGraphicsItemPrivate6appendEP24QDeclarativeListPropertyI15QGraphicsObjectEPS1_ @ 11945 NONAME ABSENT - _ZN20QGraphicsItemPrivate8setWidthEf @ 11946 NONAME - _ZN20QGraphicsItemPrivate9setHeightEf @ 11947 NONAME - _ZN7QWizard11pageRemovedEi @ 11948 NONAME - _ZN7QWizard13setSideWidgetEP7QWidget @ 11949 NONAME - _ZN7QWizard9pageAddedEi @ 11950 NONAME - _ZN8QPainter14PixmapFragment6createERK7QPointFRK6QRectFffff @ 11951 NONAME - _ZN8QPainter19drawPixmapFragmentsEPKNS_14PixmapFragmentEiRK7QPixmap6QFlagsINS_18PixmapFragmentHintEE @ 11952 NONAME - _ZN9QLineEdit18setPlaceholderTextERK7QString @ 11953 NONAME - _ZNK10QZipReader6deviceEv @ 11954 NONAME - _ZNK10QZipReader8FileInfo7isValidEv @ 11955 NONAME - _ZNK20QGraphicsItemPrivate5widthEv @ 11956 NONAME - _ZNK20QGraphicsItemPrivate6heightEv @ 11957 NONAME - _ZNK6QImage13bitPlaneCountEv @ 11958 NONAME - _ZNK7QWizard10sideWidgetEv @ 11959 NONAME - _ZNK9QLineEdit15placeholderTextEv @ 11960 NONAME - _ZNK9QTextLine17horizontalAdvanceEv @ 11961 NONAME - _ZN11QStaticText12setTextWidthEf @ 11962 NONAME - _ZN13QGraphicsItem16updateMicroFocusEv @ 11963 NONAME - _ZN15QGraphicsObject16updateMicroFocusEv @ 11964 NONAME - _ZN15QGraphicsWidget13layoutChangedEv @ 11965 NONAME - _ZN16QPainterReplayer15processCommandsERK12QPaintBufferP8QPainterii @ 11966 NONAME - _ZNK11QStaticText9textWidthEv @ 11967 NONAME - _ZNK12QPaintBuffer13frameEndIndexEi @ 11968 NONAME - _ZNK12QPaintBuffer15frameStartIndexEi @ 11969 NONAME - _ZNK12QPaintBuffer15processCommandsEP8QPainterii @ 11970 NONAME - _ZNK12QPaintBuffer18commandDescriptionEi @ 11971 NONAME - _ZN20QGraphicsItemPrivate11children_atEP24QDeclarativeListPropertyI15QGraphicsObjectEi @ 11972 NONAME - _ZN20QGraphicsItemPrivate14children_countEP24QDeclarativeListPropertyI15QGraphicsObjectE @ 11973 NONAME - _ZN20QGraphicsItemPrivate15children_appendEP24QDeclarativeListPropertyI15QGraphicsObjectEPS1_ @ 11974 NONAME - _ZN11QEglContext14destroyContextEv @ 11975 NONAME - _ZN14QEglProperties13setDeviceTypeEi @ 11976 NONAME - _ZN4QEgl10clearErrorEv @ 11977 NONAME ABSENT - _ZN4QEgl10extensionsEv @ 11978 NONAME - _ZN4QEgl11errorStringEi @ 11979 NONAME - _ZN4QEgl11errorStringEv @ 11980 NONAME ABSENT - _ZN4QEgl12chooseConfigEPK14QEglPropertiesNS_16PixelFormatMatchE @ 11981 NONAME - _ZN4QEgl12hasExtensionEPKc @ 11982 NONAME - _ZN4QEgl12nativePixmapEP7QPixmap @ 11983 NONAME - _ZN4QEgl12nativeWindowEP7QWidget @ 11984 NONAME - _ZN4QEgl13createSurfaceEP12QPaintDeviceiPK14QEglProperties @ 11985 NONAME - _ZN4QEgl13defaultConfigEiNS_3APIE6QFlagsINS_12ConfigOptionEE @ 11986 NONAME - _ZN4QEgl13nativeDisplayEv @ 11987 NONAME - _ZN4QEgl14dumpAllConfigsEv @ 11988 NONAME - _ZN4QEgl17eglCreateImageKHREiiiiPKi @ 11989 NONAME - _ZN4QEgl18eglDestroyImageKHREii @ 11990 NONAME - _ZN4QEgl5errorEv @ 11991 NONAME ABSENT - _ZN4QEgl7displayEv @ 11992 NONAME - _ZNK11QEglContext12configAttribEi @ 11993 NONAME - _ZNK11QEglContext16configPropertiesEv @ 11994 NONAME ABSENT - _ZNK19QItemSelectionRange7isEmptyEv @ 11995 NONAME - _ZN13QIconEngineV28iconNameEv @ 11996 NONAME - _ZN14QWindowSurface23setPartialUpdateSupportEb @ 11997 NONAME - _ZNK14QWindowSurface23hasPartialUpdateSupportEv @ 11998 NONAME - _ZNK5QIcon4nameEv @ 11999 NONAME - _ZN20QGraphicsViewPrivate12updateRegionERK6QRectFRK10QTransform @ 12000 NONAME - _ZN12QPixmapCache10allPixmapsEv @ 12001 NONAME - _ZN12QPixmapCache20flushDetachedPixmapsEv @ 12002 NONAME - _ZN12QPixmapCache9totalUsedEv @ 12003 NONAME - _ZN20QGraphicsItemPrivate30updatePaintedViewBoundingRectsEb @ 12004 NONAME - _ZN20QGraphicsViewPrivate13setUpdateClipEP13QGraphicsItem @ 12005 NONAME - _ZN23QImageTextureGlyphCache11fillTextureERKN18QTextureGlyphCache5CoordEj @ 12006 NONAME - _ZN23QImageTextureGlyphCache17createTextureDataEii @ 12007 NONAME - _ZN23QImageTextureGlyphCache17resizeTextureDataEii @ 12008 NONAME - _ZNK23QImageTextureGlyphCache11glyphMarginEv @ 12009 NONAME - _ZNK7QBezier12addToPolygonEP9QPolygonFf @ 12010 NONAME - _ZNK7QBezier9toPolygonEf @ 12011 NONAME - _ZTI23QImageTextureGlyphCache @ 12012 NONAME - _ZTV23QImageTextureGlyphCache @ 12013 NONAME + _ZN11QEglContext10clearErrorEv @ 11807 NONAME + _ZN11QEglContext13nativeDisplayEv @ 11808 NONAME + _ZN11QEglContext14destroyContextEv @ 11809 NONAME + _ZN11QEglContext3dpyE @ 11810 NONAME DATA 4 + _ZN11QEglContext5errorEv @ 11811 NONAME + _ZN11QEglContext7displayEv @ 11812 NONAME + _ZN11QFontEngine16getGlyphBearingsEjPfS0_ @ 11813 NONAME + _ZN12QLineControl17updateDisplayTextEb @ 11814 NONAME + _ZN13QFontDatabase25removeAllApplicationFontsEv @ 11815 NONAME + _ZN14QWidgetPrivate11inTabWidgetEP7QWidget @ 11816 NONAME + _ZN14QWidgetPrivate17canKeypadNavigateEN2Qt11OrientationE @ 11817 NONAME + _ZN20QGraphicsItemPrivate14setFocusHelperEN2Qt11FocusReasonEbb @ 11818 NONAME + _ZN20QGraphicsItemPrivate16clearFocusHelperEb @ 11819 NONAME + _ZN24QImagePixmapCleanupHooks13isImageCachedERK6QImage @ 11820 NONAME + _ZN24QImagePixmapCleanupHooks14isPixmapCachedERK7QPixmap @ 11821 NONAME diff --git a/src/s60installs/eabi/QtNetworku.def b/src/s60installs/eabi/QtNetworku.def index 87e0805..77c36b4 100644 --- a/src/s60installs/eabi/QtNetworku.def +++ b/src/s60installs/eabi/QtNetworku.def @@ -993,179 +993,6 @@ EXPORTS _ZN10QSslSocket15setSocketOptionEN15QAbstractSocket12SocketOptionERK8QVariant @ 992 NONAME _ZN15QNetworkRequest20setOriginatingObjectEP7QObject @ 993 NONAME _ZNK15QNetworkRequest17originatingObjectEv @ 994 NONAME - _Z35qNetworkConfigurationManagerPrivatev @ 995 NONAME - _ZN13QBearerEngine11qt_metacallEN11QMetaObject4CallEiPPv @ 996 NONAME - _ZN13QBearerEngine11qt_metacastEPKc @ 997 NONAME - _ZN13QBearerEngine15updateCompletedEv @ 998 NONAME - _ZN13QBearerEngine16staticMetaObjectE @ 999 NONAME DATA 16 - _ZN13QBearerEngine18configurationAddedE28QExplicitlySharedDataPointerI28QNetworkConfigurationPrivateE @ 1000 NONAME - _ZN13QBearerEngine19getStaticMetaObjectEv @ 1001 NONAME - _ZN13QBearerEngine20configurationChangedE28QExplicitlySharedDataPointerI28QNetworkConfigurationPrivateE @ 1002 NONAME - _ZN13QBearerEngine20configurationRemovedE28QExplicitlySharedDataPointerI28QNetworkConfigurationPrivateE @ 1003 NONAME - _ZN13QBearerEngineC2EP7QObject @ 1004 NONAME - _ZN13QBearerEngineD0Ev @ 1005 NONAME - _ZN13QBearerEngineD1Ev @ 1006 NONAME - _ZN13QBearerEngineD2Ev @ 1007 NONAME - _ZN15QNetworkRequest11setPriorityENS_8PriorityE @ 1008 NONAME - _ZN15QNetworkSession11qt_metacallEN11QMetaObject4CallEiPPv @ 1009 NONAME - _ZN15QNetworkSession11qt_metacastEPKc @ 1010 NONAME - _ZN15QNetworkSession12stateChangedENS_5StateE @ 1011 NONAME - _ZN15QNetworkSession13connectNotifyEPKc @ 1012 NONAME - _ZN15QNetworkSession13waitForOpenedEi @ 1013 NONAME - _ZN15QNetworkSession16disconnectNotifyEPKc @ 1014 NONAME - _ZN15QNetworkSession16staticMetaObjectE @ 1015 NONAME DATA 16 - _ZN15QNetworkSession18setSessionPropertyERK7QStringRK8QVariant @ 1016 NONAME - _ZN15QNetworkSession19getStaticMetaObjectEv @ 1017 NONAME - _ZN15QNetworkSession25newConfigurationActivatedEv @ 1018 NONAME - _ZN15QNetworkSession29preferredConfigurationChangedERK21QNetworkConfigurationb @ 1019 NONAME - _ZN15QNetworkSession4openEv @ 1020 NONAME - _ZN15QNetworkSession4stopEv @ 1021 NONAME - _ZN15QNetworkSession5closeEv @ 1022 NONAME - _ZN15QNetworkSession5errorENS_12SessionErrorE @ 1023 NONAME - _ZN15QNetworkSession6acceptEv @ 1024 NONAME - _ZN15QNetworkSession6closedEv @ 1025 NONAME - _ZN15QNetworkSession6ignoreEv @ 1026 NONAME - _ZN15QNetworkSession6openedEv @ 1027 NONAME - _ZN15QNetworkSession6rejectEv @ 1028 NONAME - _ZN15QNetworkSession7migrateEv @ 1029 NONAME - _ZN15QNetworkSessionC1ERK21QNetworkConfigurationP7QObject @ 1030 NONAME - _ZN15QNetworkSessionC2ERK21QNetworkConfigurationP7QObject @ 1031 NONAME - _ZN15QNetworkSessionD0Ev @ 1032 NONAME - _ZN15QNetworkSessionD1Ev @ 1033 NONAME - _ZN15QNetworkSessionD2Ev @ 1034 NONAME - _ZN19QBearerEnginePlugin11qt_metacallEN11QMetaObject4CallEiPPv @ 1035 NONAME - _ZN19QBearerEnginePlugin11qt_metacastEPKc @ 1036 NONAME - _ZN19QBearerEnginePlugin16staticMetaObjectE @ 1037 NONAME DATA 16 - _ZN19QBearerEnginePlugin19getStaticMetaObjectEv @ 1038 NONAME - _ZN19QBearerEnginePluginC2EP7QObject @ 1039 NONAME - _ZN19QBearerEnginePluginD0Ev @ 1040 NONAME - _ZN19QBearerEnginePluginD1Ev @ 1041 NONAME - _ZN19QBearerEnginePluginD2Ev @ 1042 NONAME - _ZN21QNetworkAccessManager16setConfigurationERK21QNetworkConfiguration @ 1043 NONAME - _ZN21QNetworkAccessManager17sendCustomRequestERK15QNetworkRequestRK10QByteArrayP9QIODevice @ 1044 NONAME - _ZN21QNetworkAccessManager20networkAccessChangedEb @ 1045 NONAME ABSENT - _ZN21QNetworkAccessManager20networkSessionOnlineEv @ 1046 NONAME ABSENT - _ZN21QNetworkAccessManager23setNetworkAccessEnabledEb @ 1047 NONAME ABSENT - _ZN21QNetworkConfigurationC1ERKS_ @ 1048 NONAME - _ZN21QNetworkConfigurationC1Ev @ 1049 NONAME - _ZN21QNetworkConfigurationC2ERKS_ @ 1050 NONAME - _ZN21QNetworkConfigurationC2Ev @ 1051 NONAME - _ZN21QNetworkConfigurationD1Ev @ 1052 NONAME - _ZN21QNetworkConfigurationD2Ev @ 1053 NONAME - _ZN21QNetworkConfigurationaSERKS_ @ 1054 NONAME - _ZN22QNetworkSessionPrivate11qt_metacallEN11QMetaObject4CallEiPPv @ 1055 NONAME - _ZN22QNetworkSessionPrivate11qt_metacastEPKc @ 1056 NONAME - _ZN22QNetworkSessionPrivate12stateChangedEN15QNetworkSession5StateE @ 1057 NONAME - _ZN22QNetworkSessionPrivate16staticMetaObjectE @ 1058 NONAME DATA 16 - _ZN22QNetworkSessionPrivate19getStaticMetaObjectEv @ 1059 NONAME - _ZN22QNetworkSessionPrivate25newConfigurationActivatedEv @ 1060 NONAME - _ZN22QNetworkSessionPrivate25quitPendingWaitsForOpenedEv @ 1061 NONAME - _ZN22QNetworkSessionPrivate29preferredConfigurationChangedERK21QNetworkConfigurationb @ 1062 NONAME - _ZN22QNetworkSessionPrivate5errorEN15QNetworkSession12SessionErrorE @ 1063 NONAME - _ZN22QNetworkSessionPrivate6closedEv @ 1064 NONAME - _ZN28QNetworkConfigurationManager11qt_metacallEN11QMetaObject4CallEiPPv @ 1065 NONAME - _ZN28QNetworkConfigurationManager11qt_metacastEPKc @ 1066 NONAME - _ZN28QNetworkConfigurationManager15updateCompletedEv @ 1067 NONAME - _ZN28QNetworkConfigurationManager16staticMetaObjectE @ 1068 NONAME DATA 16 - _ZN28QNetworkConfigurationManager18configurationAddedERK21QNetworkConfiguration @ 1069 NONAME - _ZN28QNetworkConfigurationManager18onlineStateChangedEb @ 1070 NONAME - _ZN28QNetworkConfigurationManager19getStaticMetaObjectEv @ 1071 NONAME - _ZN28QNetworkConfigurationManager20configurationChangedERK21QNetworkConfiguration @ 1072 NONAME - _ZN28QNetworkConfigurationManager20configurationRemovedERK21QNetworkConfiguration @ 1073 NONAME - _ZN28QNetworkConfigurationManager20updateConfigurationsEv @ 1074 NONAME - _ZN28QNetworkConfigurationManagerC1EP7QObject @ 1075 NONAME - _ZN28QNetworkConfigurationManagerC2EP7QObject @ 1076 NONAME - _ZN28QNetworkConfigurationManagerD0Ev @ 1077 NONAME - _ZN28QNetworkConfigurationManagerD1Ev @ 1078 NONAME - _ZN28QNetworkConfigurationManagerD2Ev @ 1079 NONAME - _ZN35QNetworkConfigurationManagerPrivate11qt_metacallEN11QMetaObject4CallEiPPv @ 1080 NONAME - _ZN35QNetworkConfigurationManagerPrivate11qt_metacastEPKc @ 1081 NONAME - _ZN35QNetworkConfigurationManagerPrivate16staticMetaObjectE @ 1082 NONAME DATA 16 - _ZN35QNetworkConfigurationManagerPrivate18configurationAddedE28QExplicitlySharedDataPointerI28QNetworkConfigurationPrivateE @ 1083 NONAME - _ZN35QNetworkConfigurationManagerPrivate18configurationAddedERK21QNetworkConfiguration @ 1084 NONAME - _ZN35QNetworkConfigurationManagerPrivate18onlineStateChangedEb @ 1085 NONAME - _ZN35QNetworkConfigurationManagerPrivate19getStaticMetaObjectEv @ 1086 NONAME - _ZN35QNetworkConfigurationManagerPrivate20configurationChangedE28QExplicitlySharedDataPointerI28QNetworkConfigurationPrivateE @ 1087 NONAME - _ZN35QNetworkConfigurationManagerPrivate20configurationChangedERK21QNetworkConfiguration @ 1088 NONAME - _ZN35QNetworkConfigurationManagerPrivate20configurationRemovedE28QExplicitlySharedDataPointerI28QNetworkConfigurationPrivateE @ 1089 NONAME - _ZN35QNetworkConfigurationManagerPrivate20configurationRemovedERK21QNetworkConfiguration @ 1090 NONAME - _ZN35QNetworkConfigurationManagerPrivate20updateConfigurationsEv @ 1091 NONAME - _ZN35QNetworkConfigurationManagerPrivate27configurationUpdateCompleteEv @ 1092 NONAME - _ZN35QNetworkConfigurationManagerPrivate31performAsyncConfigurationUpdateEv @ 1093 NONAME - _ZN35QNetworkConfigurationManagerPrivate5abortEv @ 1094 NONAME - _ZN35QNetworkConfigurationManagerPrivate7enginesEv @ 1095 NONAME - _ZN35QNetworkConfigurationManagerPrivateC1Ev @ 1096 NONAME - _ZN35QNetworkConfigurationManagerPrivateC2Ev @ 1097 NONAME - _ZN35QNetworkConfigurationManagerPrivateD0Ev @ 1098 NONAME - _ZN35QNetworkConfigurationManagerPrivateD1Ev @ 1099 NONAME - _ZN35QNetworkConfigurationManagerPrivateD2Ev @ 1100 NONAME - _ZNK13QBearerEngine10metaObjectEv @ 1101 NONAME - _ZNK13QNetworkReply14rawHeaderPairsEv @ 1102 NONAME - _ZNK15QNetworkRequest8priorityEv @ 1103 NONAME - _ZNK15QNetworkSession10activeTimeEv @ 1104 NONAME - _ZNK15QNetworkSession10metaObjectEv @ 1105 NONAME - _ZNK15QNetworkSession11errorStringEv @ 1106 NONAME - _ZNK15QNetworkSession12bytesWrittenEv @ 1107 NONAME - _ZNK15QNetworkSession13bytesReceivedEv @ 1108 NONAME - _ZNK15QNetworkSession13configurationEv @ 1109 NONAME - _ZNK15QNetworkSession15sessionPropertyERK7QString @ 1110 NONAME - _ZNK15QNetworkSession5errorEv @ 1111 NONAME - _ZNK15QNetworkSession5stateEv @ 1112 NONAME - _ZNK15QNetworkSession6isOpenEv @ 1113 NONAME - _ZNK15QNetworkSession9interfaceEv @ 1114 NONAME - _ZNK19QBearerEnginePlugin10metaObjectEv @ 1115 NONAME - _ZNK21QNetworkAccessManager13configurationEv @ 1116 NONAME - _ZNK21QNetworkAccessManager19activeConfigurationEv @ 1117 NONAME - _ZNK21QNetworkAccessManager20networkAccessEnabledEv @ 1118 NONAME ABSENT - _ZNK21QNetworkConfiguration10bearerNameEv @ 1119 NONAME - _ZNK21QNetworkConfiguration10identifierEv @ 1120 NONAME - _ZNK21QNetworkConfiguration18isRoamingAvailableEv @ 1121 NONAME - _ZNK21QNetworkConfiguration4nameEv @ 1122 NONAME - _ZNK21QNetworkConfiguration4typeEv @ 1123 NONAME - _ZNK21QNetworkConfiguration5stateEv @ 1124 NONAME - _ZNK21QNetworkConfiguration7isValidEv @ 1125 NONAME - _ZNK21QNetworkConfiguration7purposeEv @ 1126 NONAME - _ZNK21QNetworkConfiguration8childrenEv @ 1127 NONAME - _ZNK21QNetworkConfigurationeqERKS_ @ 1128 NONAME - _ZNK22QNetworkSessionPrivate10metaObjectEv @ 1129 NONAME - _ZNK28QNetworkConfigurationManager10metaObjectEv @ 1130 NONAME - _ZNK28QNetworkConfigurationManager12capabilitiesEv @ 1131 NONAME - _ZNK28QNetworkConfigurationManager17allConfigurationsE6QFlagsIN21QNetworkConfiguration9StateFlagEE @ 1132 NONAME - _ZNK28QNetworkConfigurationManager20defaultConfigurationEv @ 1133 NONAME - _ZNK28QNetworkConfigurationManager27configurationFromIdentifierERK7QString @ 1134 NONAME - _ZNK28QNetworkConfigurationManager8isOnlineEv @ 1135 NONAME - _ZNK35QNetworkConfigurationManagerPrivate10metaObjectEv @ 1136 NONAME - _ZTI13QBearerEngine @ 1137 NONAME - _ZTI15QNetworkSession @ 1138 NONAME - _ZTI19QBearerEnginePlugin @ 1139 NONAME - _ZTI22QNetworkSessionPrivate @ 1140 NONAME - _ZTI28QNetworkConfigurationManager @ 1141 NONAME - _ZTI29QBearerEngineFactoryInterface @ 1142 NONAME - _ZTI35QNetworkConfigurationManagerPrivate @ 1143 NONAME - _ZTV13QBearerEngine @ 1144 NONAME - _ZTV15QNetworkSession @ 1145 NONAME - _ZTV19QBearerEnginePlugin @ 1146 NONAME - _ZTV22QNetworkSessionPrivate @ 1147 NONAME - _ZTV28QNetworkConfigurationManager @ 1148 NONAME - _ZTV35QNetworkConfigurationManagerPrivate @ 1149 NONAME - _ZThn8_N19QBearerEnginePluginD0Ev @ 1150 NONAME - _ZThn8_N19QBearerEnginePluginD1Ev @ 1151 NONAME - _Z19qt_qhostinfo_lookupRK7QStringP7QObjectPKcPbPi @ 1152 NONAME - _Z24qt_qhostinfo_clear_cachev @ 1153 NONAME ABSENT - _ZN21QNetworkAccessManager20setNetworkAccessibleENS_20NetworkAccessibilityE @ 1154 NONAME - _ZN21QNetworkAccessManager23networkSessionConnectedEv @ 1155 NONAME - _ZN21QNetworkAccessManager24networkAccessibleChangedENS_20NetworkAccessibilityE @ 1156 NONAME - _ZN35QNetworkConfigurationManagerPrivate11pollEnginesEv @ 1157 NONAME - _ZN35QNetworkConfigurationManagerPrivate12startPollingEv @ 1158 NONAME - _ZN35QNetworkConfigurationManagerPrivate13enablePollingEv @ 1159 NONAME - _ZN35QNetworkConfigurationManagerPrivate14disablePollingEv @ 1160 NONAME - _ZN35QNetworkConfigurationManagerPrivate17allConfigurationsE6QFlagsIN21QNetworkConfiguration9StateFlagEE @ 1161 NONAME - _ZN35QNetworkConfigurationManagerPrivate20defaultConfigurationEv @ 1162 NONAME - _ZN35QNetworkConfigurationManagerPrivate27configurationFromIdentifierERK7QString @ 1163 NONAME - _ZN35QNetworkConfigurationManagerPrivate8isOnlineEv @ 1164 NONAME - _ZNK13QBearerEngine15requiresPollingEv @ 1165 NONAME - _ZNK13QBearerEngine19configurationsInUseEv @ 1166 NONAME - _ZNK21QNetworkAccessManager17networkAccessibleEv @ 1167 NONAME - _ZN35QNetworkConfigurationManagerPrivate12capabilitiesEv @ 1168 NONAME - _ZN10QTcpServer20addPendingConnectionEP10QTcpSocket @ 1169 NONAME + _Z19qt_qhostinfo_lookupRK7QStringP7QObjectPKcPbPi @ 995 NONAME + _Z24qt_qhostinfo_clear_cachev @ 996 NONAME diff --git a/src/s60installs/eabi/QtOpenVGu.def b/src/s60installs/eabi/QtOpenVGu.def index 04f7876..cf226c5 100644 --- a/src/s60installs/eabi/QtOpenVGu.def +++ b/src/s60installs/eabi/QtOpenVGu.def @@ -31,7 +31,7 @@ EXPORTS _ZN14QVGPaintEngine10penChangedEv @ 30 NONAME _ZN14QVGPaintEngine11drawEllipseERK5QRect @ 31 NONAME _ZN14QVGPaintEngine11drawEllipseERK6QRectF @ 32 NONAME - _ZN14QVGPaintEngine11drawPixmapsEPKN12QDrawPixmaps4DataEiRK7QPixmap6QFlagsINS0_11DrawingHintEE @ 33 NONAME ABSENT + _ZN14QVGPaintEngine11drawPixmapsEPKN12QDrawPixmaps4DataEiRK7QPixmap6QFlagsINS0_11DrawingHintEE @ 33 NONAME _ZN14QVGPaintEngine11drawPolygonEPK6QPointiN12QPaintEngine15PolygonDrawModeE @ 34 NONAME _ZN14QVGPaintEngine11drawPolygonEPK7QPointFiN12QPaintEngine15PolygonDrawModeE @ 35 NONAME _ZN14QVGPaintEngine12brushChangedEv @ 36 NONAME @@ -196,9 +196,6 @@ EXPORTS _ZN13QVGPixmapData19detachImageFromPoolEv @ 195 NONAME _ZTI12QVGImagePool @ 196 NONAME _ZTV12QVGImagePool @ 197 NONAME - _ZN14QVGPaintEngine16drawCachedGlyphsEiPKjRK5QFontP11QFontEngineRK7QPointF @ 198 NONAME ABSENT - _ZN14QVGPaintEngine18drawStaticTextItemEP15QStaticTextItem @ 199 NONAME - _ZN14QVGPaintEngine19drawPixmapFragmentsEPKN8QPainter14PixmapFragmentEiRK7QPixmap6QFlagsINS0_18PixmapFragmentHintEE @ 200 NONAME - _ZN25QVGEGLWindowSurfaceDirect6scrollEP7QWidgetRK7QRegionii @ 201 NONAME - _ZNK25QVGEGLWindowSurfaceDirect22supportsStaticContentsEv @ 202 NONAME + _ZN25QVGEGLWindowSurfaceDirect6scrollEP7QWidgetRK7QRegionii @ 198 NONAME + _ZNK25QVGEGLWindowSurfaceDirect22supportsStaticContentsEv @ 199 NONAME -- cgit v0.12 From 7fcd827e6b7c6c7fa7539a503c5e526d7a4921b3 Mon Sep 17 00:00:00 2001 From: Shane Kearns Date: Fri, 28 May 2010 16:53:29 +0100 Subject: Freeze 4.7 def files on top of 4.6.3 Task-number: QTBUG-8769 Reviewed-by: Trust Me --- src/s60installs/bwins/QtDeclarativeu.def | 106 +++++++++---- src/s60installs/bwins/QtGuiu.def | 254 +++++++++++++++++++++++++++---- src/s60installs/eabi/QtCoreu.def | 65 +++++++- src/s60installs/eabi/QtDeclarativeu.def | 99 +++++++++--- src/s60installs/eabi/QtGuiu.def | 240 +++++++++++++++++++++++++---- src/s60installs/eabi/QtNetworku.def | 171 ++++++++++++++++++++- src/s60installs/eabi/QtOpenVGu.def | 5 +- 7 files changed, 827 insertions(+), 113 deletions(-) diff --git a/src/s60installs/bwins/QtDeclarativeu.def b/src/s60installs/bwins/QtDeclarativeu.def index c960614..3df0f47 100644 --- a/src/s60installs/bwins/QtDeclarativeu.def +++ b/src/s60installs/bwins/QtDeclarativeu.def @@ -86,7 +86,7 @@ EXPORTS ??0QDeclarativeError@@QAE@XZ @ 85 NONAME ; QDeclarativeError::QDeclarativeError(void) ??0QDeclarativeExpression@@IAE@PAVQDeclarativeContext@@ABVQString@@PAVQObject@@AAVQDeclarativeExpressionPrivate@@@Z @ 86 NONAME ABSENT ; QDeclarativeExpression::QDeclarativeExpression(class QDeclarativeContext *, class QString const &, class QObject *, class QDeclarativeExpressionPrivate &) ??0QDeclarativeExpression@@IAE@PAVQDeclarativeContext@@PAXPAVQDeclarativeRefCount@@PAVQObject@@ABVQString@@HAAVQDeclarativeExpressionPrivate@@@Z @ 87 NONAME ABSENT ; QDeclarativeExpression::QDeclarativeExpression(class QDeclarativeContext *, void *, class QDeclarativeRefCount *, class QObject *, class QString const &, int, class QDeclarativeExpressionPrivate &) - ??0QDeclarativeExpression@@QAE@PAVQDeclarativeContext@@ABVQString@@PAVQObject@@@Z @ 88 NONAME ; QDeclarativeExpression::QDeclarativeExpression(class QDeclarativeContext *, class QString const &, class QObject *) + ??0QDeclarativeExpression@@QAE@PAVQDeclarativeContext@@ABVQString@@PAVQObject@@@Z @ 88 NONAME ABSENT ; QDeclarativeExpression::QDeclarativeExpression(class QDeclarativeContext *, class QString const &, class QObject *) ??0QDeclarativeExpression@@QAE@XZ @ 89 NONAME ; QDeclarativeExpression::QDeclarativeExpression(void) ??0QDeclarativeExtensionPlugin@@QAE@PAVQObject@@@Z @ 90 NONAME ; QDeclarativeExtensionPlugin::QDeclarativeExtensionPlugin(class QObject *) ??0QDeclarativeFlickable@@IAE@AAVQDeclarativeFlickablePrivate@@PAVQDeclarativeItem@@@Z @ 91 NONAME ; QDeclarativeFlickable::QDeclarativeFlickable(class QDeclarativeFlickablePrivate &, class QDeclarativeItem *) @@ -861,7 +861,7 @@ EXPORTS ?cursorPosition@QDeclarativeTextInput@@QBEHXZ @ 860 NONAME ; int QDeclarativeTextInput::cursorPosition(void) const ?cursorPositionChanged@QDeclarativeTextEdit@@IAEXXZ @ 861 NONAME ; void QDeclarativeTextEdit::cursorPositionChanged(void) ?cursorPositionChanged@QDeclarativeTextInput@@IAEXXZ @ 862 NONAME ; void QDeclarativeTextInput::cursorPositionChanged(void) - ?cursorRect@QDeclarativeTextEdit@@QBE?AVQRect@@XZ @ 863 NONAME ; class QRect QDeclarativeTextEdit::cursorRect(void) const + ?cursorRect@QDeclarativeTextEdit@@QBE?AVQRect@@XZ @ 863 NONAME ABSENT ; class QRect QDeclarativeTextEdit::cursorRect(void) const ?cursorRect@QDeclarativeTextInput@@QBE?AVQRect@@XZ @ 864 NONAME ; class QRect QDeclarativeTextInput::cursorRect(void) const ?cursorVisibleChanged@QDeclarativeTextEdit@@IAEX_N@Z @ 865 NONAME ; void QDeclarativeTextEdit::cursorVisibleChanged(bool) ?cursorVisibleChanged@QDeclarativeTextInput@@IAEX_N@Z @ 866 NONAME ; void QDeclarativeTextInput::cursorVisibleChanged(bool) @@ -1086,7 +1086,7 @@ EXPORTS ?errors@QDeclarativeCustomParser@@QBE?AV?$QList@VQDeclarativeError@@@@XZ @ 1085 NONAME ; class QList QDeclarativeCustomParser::errors(void) const ?errors@QDeclarativeDomDocument@@QBE?AV?$QList@VQDeclarativeError@@@@XZ @ 1086 NONAME ; class QList QDeclarativeDomDocument::errors(void) const ?errors@QDeclarativeView@@QBE?AV?$QList@VQDeclarativeError@@@@XZ @ 1087 NONAME ; class QList QDeclarativeView::errors(void) const - ?errorsString@QDeclarativeComponent@@QBE?AVQString@@XZ @ 1088 NONAME ; class QString QDeclarativeComponent::errorsString(void) const + ?errorsString@QDeclarativeComponent@@QBE?AVQString@@XZ @ 1088 NONAME ABSENT ; class QString QDeclarativeComponent::errorsString(void) const ?eval@QDeclarativeBind@@AAEXXZ @ 1089 NONAME ; void QDeclarativeBind::eval(void) ?evaluate@QDeclarativeVisualDataModel@@UAE?AVQVariant@@HABVQString@@PAVQObject@@@Z @ 1090 NONAME ; class QVariant QDeclarativeVisualDataModel::evaluate(int, class QString const &, class QObject *) ?evaluate@QDeclarativeVisualItemModel@@UAE?AVQVariant@@HABVQString@@PAVQObject@@@Z @ 1091 NONAME ; class QVariant QDeclarativeVisualItemModel::evaluate(int, class QString const &, class QObject *) @@ -1299,7 +1299,7 @@ EXPORTS ?hasStdCppSet@QMetaPropertyBuilder@@QBE_NXZ @ 1298 NONAME ; bool QMetaPropertyBuilder::hasStdCppSet(void) const ?header@QDeclarativeListView@@QBEPAVQDeclarativeComponent@@XZ @ 1299 NONAME ; class QDeclarativeComponent * QDeclarativeListView::header(void) const ?height@QDeclarativeItem@@QBEMXZ @ 1300 NONAME ; float QDeclarativeItem::height(void) const - ?height@QDeclarativeParentChange@@QBEMXZ @ 1301 NONAME ; float QDeclarativeParentChange::height(void) const + ?height@QDeclarativeParentChange@@QBEMXZ @ 1301 NONAME ABSENT ; float QDeclarativeParentChange::height(void) const ?heightChange@QDeclarativeFlickable@@IAEXXZ @ 1302 NONAME ABSENT ; void QDeclarativeFlickable::heightChange(void) ?heightChanged@QDeclarativeItem@@IAEXXZ @ 1303 NONAME ABSENT ; void QDeclarativeItem::heightChanged(void) ?heightIsSet@QDeclarativeParentChange@@QBE_NXZ @ 1304 NONAME ; bool QDeclarativeParentChange::heightIsSet(void) const @@ -1813,8 +1813,8 @@ EXPORTS ?orientation@QDeclarativeListView@@QBE?AW4Orientation@1@XZ @ 1812 NONAME ; enum QDeclarativeListView::Orientation QDeclarativeListView::orientation(void) const ?orientationChanged@QDeclarativeListView@@IAEXXZ @ 1813 NONAME ; void QDeclarativeListView::orientationChanged(void) ?originalParent@QDeclarativeParentChange@@QBEPAVQDeclarativeItem@@XZ @ 1814 NONAME ; class QDeclarativeItem * QDeclarativeParentChange::originalParent(void) const - ?overShoot@QDeclarativeFlickable@@QBE_NXZ @ 1815 NONAME ; bool QDeclarativeFlickable::overShoot(void) const - ?overShootChanged@QDeclarativeFlickable@@IAEXXZ @ 1816 NONAME ; void QDeclarativeFlickable::overShootChanged(void) + ?overShoot@QDeclarativeFlickable@@QBE_NXZ @ 1815 NONAME ABSENT ; bool QDeclarativeFlickable::overShoot(void) const + ?overShootChanged@QDeclarativeFlickable@@IAEXXZ @ 1816 NONAME ABSENT ; void QDeclarativeFlickable::overShootChanged(void) ?override@QDeclarativeAnchorChanges@@UAE_NPAVQDeclarativeActionEvent@@@Z @ 1817 NONAME ; bool QDeclarativeAnchorChanges::override(class QDeclarativeActionEvent *) ?override@QDeclarativeParentChange@@UAE_NPAVQDeclarativeActionEvent@@@Z @ 1818 NONAME ; bool QDeclarativeParentChange::override(class QDeclarativeActionEvent *) ?pace@QDeclarativeParticleMotionWander@@QBEMXZ @ 1819 NONAME ABSENT ; float QDeclarativeParticleMotionWander::pace(void) const @@ -2247,7 +2247,7 @@ EXPORTS ?rootIndexChanged@QDeclarativeVisualDataModel@@IAEXXZ @ 2246 NONAME ; void QDeclarativeVisualDataModel::rootIndexChanged(void) ?rootObject@QDeclarativeDomDocument@@QBE?AVQDeclarativeDomObject@@XZ @ 2247 NONAME ; class QDeclarativeDomObject QDeclarativeDomDocument::rootObject(void) const ?rootObject@QDeclarativeView@@QBEPAVQGraphicsObject@@XZ @ 2248 NONAME ; class QGraphicsObject * QDeclarativeView::rootObject(void) const - ?rotation@QDeclarativeParentChange@@QBEMXZ @ 2249 NONAME ; float QDeclarativeParentChange::rotation(void) const + ?rotation@QDeclarativeParentChange@@QBEMXZ @ 2249 NONAME ABSENT ; float QDeclarativeParentChange::rotation(void) const ?rotationIsSet@QDeclarativeParentChange@@QBE_NXZ @ 2250 NONAME ; bool QDeclarativeParentChange::rotationIsSet(void) const ?rows@QDeclarativeGrid@@QBEHXZ @ 2251 NONAME ; int QDeclarativeGrid::rows(void) const ?rowsChanged@QDeclarativeGrid@@IAEXXZ @ 2252 NONAME ; void QDeclarativeGrid::rowsChanged(void) @@ -2257,7 +2257,7 @@ EXPORTS ?saveCurrentValues@QDeclarativeParentChange@@UAEXXZ @ 2256 NONAME ; void QDeclarativeParentChange::saveCurrentValues(void) ?saveOriginals@QDeclarativeAnchorChanges@@UAEXXZ @ 2257 NONAME ; void QDeclarativeAnchorChanges::saveOriginals(void) ?saveOriginals@QDeclarativeParentChange@@UAEXXZ @ 2258 NONAME ; void QDeclarativeParentChange::saveOriginals(void) - ?scale@QDeclarativeParentChange@@QBEMXZ @ 2259 NONAME ; float QDeclarativeParentChange::scale(void) const + ?scale@QDeclarativeParentChange@@QBEMXZ @ 2259 NONAME ABSENT ; float QDeclarativeParentChange::scale(void) const ?scaleIsSet@QDeclarativeParentChange@@QBE_NXZ @ 2260 NONAME ; bool QDeclarativeParentChange::scaleIsSet(void) const ?sceneEvent@QDeclarativeFocusPanel@@MAE_NPAVQEvent@@@Z @ 2261 NONAME ; bool QDeclarativeFocusPanel::sceneEvent(class QEvent *) ?sceneEvent@QDeclarativeItem@@MAE_NPAVQEvent@@@Z @ 2262 NONAME ; bool QDeclarativeItem::sceneEvent(class QEvent *) @@ -2346,7 +2346,7 @@ EXPORTS ?setColumn@QDeclarativeError@@QAEXH@Z @ 2345 NONAME ; void QDeclarativeError::setColumn(int) ?setColumnNumber@QDeclarativeDebugFileReference@@QAEXH@Z @ 2346 NONAME ; void QDeclarativeDebugFileReference::setColumnNumber(int) ?setColumns@QDeclarativeGrid@@QAEXH@Z @ 2347 NONAME ; void QDeclarativeGrid::setColumns(int) - ?setConsistentTime@QDeclarativeItemPrivate@@SAXH@Z @ 2348 NONAME ; void QDeclarativeItemPrivate::setConsistentTime(int) + ?setConsistentTime@QDeclarativeItemPrivate@@SAXH@Z @ 2348 NONAME ABSENT ; void QDeclarativeItemPrivate::setConsistentTime(int) ?setContent@QDeclarativeWebView@@QAEXABVQByteArray@@ABVQString@@ABVQUrl@@@Z @ 2349 NONAME ABSENT ; void QDeclarativeWebView::setContent(class QByteArray const &, class QString const &, class QUrl const &) ?setContentHeight@QDeclarativeFlickable@@QAEXM@Z @ 2350 NONAME ; void QDeclarativeFlickable::setContentHeight(float) ?setContentWidth@QDeclarativeFlickable@@QAEXM@Z @ 2351 NONAME ; void QDeclarativeFlickable::setContentWidth(float) @@ -2437,7 +2437,7 @@ EXPORTS ?setHAlign@QDeclarativeTextInput@@QAEXW4HAlignment@1@@Z @ 2436 NONAME ; void QDeclarativeTextInput::setHAlign(enum QDeclarativeTextInput::HAlignment) ?setHeader@QDeclarativeListView@@QAEXPAVQDeclarativeComponent@@@Z @ 2437 NONAME ; void QDeclarativeListView::setHeader(class QDeclarativeComponent *) ?setHeight@QDeclarativeItem@@QAEXM@Z @ 2438 NONAME ; void QDeclarativeItem::setHeight(float) - ?setHeight@QDeclarativeParentChange@@QAEXM@Z @ 2439 NONAME ; void QDeclarativeParentChange::setHeight(float) + ?setHeight@QDeclarativeParentChange@@QAEXM@Z @ 2439 NONAME ABSENT ; void QDeclarativeParentChange::setHeight(float) ?setHighlight@QDeclarativeGridView@@QAEXPAVQDeclarativeComponent@@@Z @ 2440 NONAME ; void QDeclarativeGridView::setHighlight(class QDeclarativeComponent *) ?setHighlight@QDeclarativeListView@@QAEXPAVQDeclarativeComponent@@@Z @ 2441 NONAME ; void QDeclarativeListView::setHighlight(class QDeclarativeComponent *) ?setHighlightFollowsCurrentItem@QDeclarativeGridView@@QAEX_N@Z @ 2442 NONAME ; void QDeclarativeGridView::setHighlightFollowsCurrentItem(bool) @@ -2506,7 +2506,7 @@ EXPORTS ?setOfflineStoragePath@QDeclarativeEngine@@QAEXABVQString@@@Z @ 2505 NONAME ; void QDeclarativeEngine::setOfflineStoragePath(class QString const &) ?setOffset@QDeclarativePathView@@QAEXM@Z @ 2506 NONAME ; void QDeclarativePathView::setOffset(float) ?setOrientation@QDeclarativeListView@@QAEXW4Orientation@1@@Z @ 2507 NONAME ; void QDeclarativeListView::setOrientation(enum QDeclarativeListView::Orientation) - ?setOverShoot@QDeclarativeFlickable@@QAEX_N@Z @ 2508 NONAME ; void QDeclarativeFlickable::setOverShoot(bool) + ?setOverShoot@QDeclarativeFlickable@@QAEX_N@Z @ 2508 NONAME ABSENT ; void QDeclarativeFlickable::setOverShoot(bool) ?setPace@QDeclarativeParticleMotionWander@@QAEXM@Z @ 2509 NONAME ABSENT ; void QDeclarativeParticleMotionWander::setPace(float) ?setPage@QDeclarativeWebView@@QAEXPAVQWebPage@@@Z @ 2510 NONAME ABSENT ; void QDeclarativeWebView::setPage(class QWebPage *) ?setParameterNames@QMetaMethodBuilder@@QAEXABV?$QList@VQByteArray@@@@@Z @ 2511 NONAME ; void QMetaMethodBuilder::setParameterNames(class QList const &) @@ -2555,10 +2555,10 @@ EXPORTS ?setRightMargin@QDeclarativeAnchors@@QAEXM@Z @ 2554 NONAME ; void QDeclarativeAnchors::setRightMargin(float) ?setRootIndex@QDeclarativeVisualDataModel@@QAEXABVQModelIndex@@@Z @ 2555 NONAME ABSENT ; void QDeclarativeVisualDataModel::setRootIndex(class QModelIndex const &) ?setRootObject@QDeclarativeView@@MAEXPAVQObject@@@Z @ 2556 NONAME ; void QDeclarativeView::setRootObject(class QObject *) - ?setRotation@QDeclarativeParentChange@@QAEXM@Z @ 2557 NONAME ; void QDeclarativeParentChange::setRotation(float) + ?setRotation@QDeclarativeParentChange@@QAEXM@Z @ 2557 NONAME ABSENT ; void QDeclarativeParentChange::setRotation(float) ?setRows@QDeclarativeGrid@@QAEXH@Z @ 2558 NONAME ; void QDeclarativeGrid::setRows(int) ?setRunning@QDeclarativeTimer@@QAEX_N@Z @ 2559 NONAME ; void QDeclarativeTimer::setRunning(bool) - ?setScale@QDeclarativeParentChange@@QAEXM@Z @ 2560 NONAME ; void QDeclarativeParentChange::setScale(float) + ?setScale@QDeclarativeParentChange@@QAEXM@Z @ 2560 NONAME ABSENT ; void QDeclarativeParentChange::setScale(float) ?setScopeObject@QDeclarativeScriptString@@QAEXPAVQObject@@@Z @ 2561 NONAME ; void QDeclarativeScriptString::setScopeObject(class QObject *) ?setScript@QDeclarativeScriptString@@QAEXABVQString@@@Z @ 2562 NONAME ; void QDeclarativeScriptString::setScript(class QString const &) ?setScript@QDeclarativeStateChangeScript@@QAEXABVQDeclarativeScriptString@@@Z @ 2563 NONAME ; void QDeclarativeStateChangeScript::setScript(class QDeclarativeScriptString const &) @@ -2651,7 +2651,7 @@ EXPORTS ?setWhen@QDeclarativeBind@@QAEX_N@Z @ 2650 NONAME ; void QDeclarativeBind::setWhen(bool) ?setWhen@QDeclarativeState@@QAEXPAVQDeclarativeBinding@@@Z @ 2651 NONAME ; void QDeclarativeState::setWhen(class QDeclarativeBinding *) ?setWidth@QDeclarativeItem@@QAEXM@Z @ 2652 NONAME ; void QDeclarativeItem::setWidth(float) - ?setWidth@QDeclarativeParentChange@@QAEXM@Z @ 2653 NONAME ; void QDeclarativeParentChange::setWidth(float) + ?setWidth@QDeclarativeParentChange@@QAEXM@Z @ 2653 NONAME ABSENT ; void QDeclarativeParentChange::setWidth(float) ?setWidth@QDeclarativePen@@QAEXH@Z @ 2654 NONAME ; void QDeclarativePen::setWidth(int) ?setWrap@QDeclarativeText@@QAEX_N@Z @ 2655 NONAME ABSENT ; void QDeclarativeText::setWrap(bool) ?setWrap@QDeclarativeTextEdit@@QAEX_N@Z @ 2656 NONAME ABSENT ; void QDeclarativeTextEdit::setWrap(bool) @@ -2659,14 +2659,14 @@ EXPORTS ?setWrapEnabled@QDeclarativeListView@@QAEX_N@Z @ 2658 NONAME ; void QDeclarativeListView::setWrapEnabled(bool) ?setWritable@QMetaPropertyBuilder@@QAEX_N@Z @ 2659 NONAME ; void QMetaPropertyBuilder::setWritable(bool) ?setX@QDeclarativeCurve@@QAEXM@Z @ 2660 NONAME ; void QDeclarativeCurve::setX(float) - ?setX@QDeclarativeParentChange@@QAEXM@Z @ 2661 NONAME ; void QDeclarativeParentChange::setX(float) + ?setX@QDeclarativeParentChange@@QAEXM@Z @ 2661 NONAME ABSENT ; void QDeclarativeParentChange::setX(float) ?setXAttractor@QDeclarativeParticleMotionGravity@@QAEXM@Z @ 2662 NONAME ABSENT ; void QDeclarativeParticleMotionGravity::setXAttractor(float) ?setXVariance@QDeclarativeParticleMotionWander@@QAEXM@Z @ 2663 NONAME ABSENT ; void QDeclarativeParticleMotionWander::setXVariance(float) ?setXmax@QDeclarativeDrag@@QAEXM@Z @ 2664 NONAME ; void QDeclarativeDrag::setXmax(float) ?setXmin@QDeclarativeDrag@@QAEXM@Z @ 2665 NONAME ; void QDeclarativeDrag::setXmin(float) ?setXml@QDeclarativeXmlListModel@@QAEXABVQString@@@Z @ 2666 NONAME ; void QDeclarativeXmlListModel::setXml(class QString const &) ?setY@QDeclarativeCurve@@QAEXM@Z @ 2667 NONAME ; void QDeclarativeCurve::setY(float) - ?setY@QDeclarativeParentChange@@QAEXM@Z @ 2668 NONAME ; void QDeclarativeParentChange::setY(float) + ?setY@QDeclarativeParentChange@@QAEXM@Z @ 2668 NONAME ABSENT ; void QDeclarativeParentChange::setY(float) ?setYAttractor@QDeclarativeParticleMotionGravity@@QAEXM@Z @ 2669 NONAME ABSENT ; void QDeclarativeParticleMotionGravity::setYAttractor(float) ?setYVariance@QDeclarativeParticleMotionWander@@QAEXM@Z @ 2670 NONAME ABSENT ; void QDeclarativeParticleMotionWander::setYVariance(float) ?setYmax@QDeclarativeDrag@@QAEXM@Z @ 2671 NONAME ; void QDeclarativeDrag::setYmax(float) @@ -3298,7 +3298,7 @@ EXPORTS ?when@QDeclarativeBind@@QBE_NXZ @ 3297 NONAME ; bool QDeclarativeBind::when(void) const ?when@QDeclarativeState@@QBEPAVQDeclarativeBinding@@XZ @ 3298 NONAME ; class QDeclarativeBinding * QDeclarativeState::when(void) const ?width@QDeclarativeItem@@QBEMXZ @ 3299 NONAME ; float QDeclarativeItem::width(void) const - ?width@QDeclarativeParentChange@@QBEMXZ @ 3300 NONAME ; float QDeclarativeParentChange::width(void) const + ?width@QDeclarativeParentChange@@QBEMXZ @ 3300 NONAME ABSENT ; float QDeclarativeParentChange::width(void) const ?width@QDeclarativePen@@QBEHXZ @ 3301 NONAME ; int QDeclarativePen::width(void) const ?widthChange@QDeclarativeFlickable@@IAEXXZ @ 3302 NONAME ABSENT ; void QDeclarativeFlickable::widthChange(void) ?widthChanged@QDeclarativeItem@@IAEXXZ @ 3303 NONAME ABSENT ; void QDeclarativeItem::widthChanged(void) @@ -3317,7 +3317,7 @@ EXPORTS ?write@QDeclarativeProperty@@SA_NPAVQObject@@ABVQString@@ABVQVariant@@PAVQDeclarativeContext@@@Z @ 3316 NONAME ; bool QDeclarativeProperty::write(class QObject *, class QString const &, class QVariant const &, class QDeclarativeContext *) ?write@QDeclarativeProperty@@SA_NPAVQObject@@ABVQString@@ABVQVariant@@PAVQDeclarativeEngine@@@Z @ 3317 NONAME ; bool QDeclarativeProperty::write(class QObject *, class QString const &, class QVariant const &, class QDeclarativeEngine *) ?x@QDeclarativeCurve@@QBEMXZ @ 3318 NONAME ; float QDeclarativeCurve::x(void) const - ?x@QDeclarativeParentChange@@QBEMXZ @ 3319 NONAME ; float QDeclarativeParentChange::x(void) const + ?x@QDeclarativeParentChange@@QBEMXZ @ 3319 NONAME ABSENT ; float QDeclarativeParentChange::x(void) const ?xAttractor@QDeclarativeParticleMotionGravity@@QBEMXZ @ 3320 NONAME ABSENT ; float QDeclarativeParticleMotionGravity::xAttractor(void) const ?xIsSet@QDeclarativeParentChange@@QBE_NXZ @ 3321 NONAME ; bool QDeclarativeParentChange::xIsSet(void) const ?xToPos@QDeclarativeTextInput@@QAEHH@Z @ 3322 NONAME ABSENT ; int QDeclarativeTextInput::xToPos(int) @@ -3329,7 +3329,7 @@ EXPORTS ?xml@QDeclarativeXmlListModel@@QBE?AVQString@@XZ @ 3328 NONAME ; class QString QDeclarativeXmlListModel::xml(void) const ?xvarianceChanged@QDeclarativeParticleMotionWander@@IAEXXZ @ 3329 NONAME ABSENT ; void QDeclarativeParticleMotionWander::xvarianceChanged(void) ?y@QDeclarativeCurve@@QBEMXZ @ 3330 NONAME ; float QDeclarativeCurve::y(void) const - ?y@QDeclarativeParentChange@@QBEMXZ @ 3331 NONAME ; float QDeclarativeParentChange::y(void) const + ?y@QDeclarativeParentChange@@QBEMXZ @ 3331 NONAME ABSENT ; float QDeclarativeParentChange::y(void) const ?yAttractor@QDeclarativeParticleMotionGravity@@QBEMXZ @ 3332 NONAME ABSENT ; float QDeclarativeParticleMotionGravity::yAttractor(void) const ?yIsSet@QDeclarativeParentChange@@QBE_NXZ @ 3333 NONAME ; bool QDeclarativeParentChange::yIsSet(void) const ?yVariance@QDeclarativeParticleMotionWander@@QBEMXZ @ 3334 NONAME ABSENT ; float QDeclarativeParticleMotionWander::yVariance(void) const @@ -3500,8 +3500,8 @@ EXPORTS ??0QDeclarativeBinding@@QAE@PAXPAVQDeclarativeRefCount@@PAVQObject@@PAVQDeclarativeContextData@@ABVQString@@H2@Z @ 3499 NONAME ; QDeclarativeBinding::QDeclarativeBinding(void *, class QDeclarativeRefCount *, class QObject *, class QDeclarativeContextData *, class QString const &, int, class QObject *) ??0QDeclarativeContext@@AAE@PAVQDeclarativeContextData@@@Z @ 3500 NONAME ; QDeclarativeContext::QDeclarativeContext(class QDeclarativeContextData *) ??0QDeclarativeCustomParser@@QAE@XZ @ 3501 NONAME ; QDeclarativeCustomParser::QDeclarativeCustomParser(void) - ??0QDeclarativeExpression@@AAE@PAVQDeclarativeContextData@@ABVQString@@PAVQObject@@@Z @ 3502 NONAME ; QDeclarativeExpression::QDeclarativeExpression(class QDeclarativeContextData *, class QString const &, class QObject *) - ??0QDeclarativeExpression@@IAE@PAVQDeclarativeContextData@@ABVQString@@PAVQObject@@AAVQDeclarativeExpressionPrivate@@@Z @ 3503 NONAME ; QDeclarativeExpression::QDeclarativeExpression(class QDeclarativeContextData *, class QString const &, class QObject *, class QDeclarativeExpressionPrivate &) + ??0QDeclarativeExpression@@AAE@PAVQDeclarativeContextData@@ABVQString@@PAVQObject@@@Z @ 3502 NONAME ABSENT ; QDeclarativeExpression::QDeclarativeExpression(class QDeclarativeContextData *, class QString const &, class QObject *) + ??0QDeclarativeExpression@@IAE@PAVQDeclarativeContextData@@ABVQString@@PAVQObject@@AAVQDeclarativeExpressionPrivate@@@Z @ 3503 NONAME ABSENT ; QDeclarativeExpression::QDeclarativeExpression(class QDeclarativeContextData *, class QString const &, class QObject *, class QDeclarativeExpressionPrivate &) ??0QDeclarativeExpression@@IAE@PAVQDeclarativeContextData@@PAXPAVQDeclarativeRefCount@@PAVQObject@@ABVQString@@HAAVQDeclarativeExpressionPrivate@@@Z @ 3504 NONAME ; QDeclarativeExpression::QDeclarativeExpression(class QDeclarativeContextData *, void *, class QDeclarativeRefCount *, class QObject *, class QString const &, int, class QDeclarativeExpressionPrivate &) ??0QDeclarativeItemPrivate@@QAE@XZ @ 3505 NONAME ; QDeclarativeItemPrivate::QDeclarativeItemPrivate(void) ??0QDeclarativeListModel@@AAE@_NPAVQObject@@@Z @ 3506 NONAME ; QDeclarativeListModel::QDeclarativeListModel(bool, class QObject *) @@ -3567,7 +3567,7 @@ EXPORTS ?countChanged@QDeclarativeListModel@@IAEXXZ @ 3566 NONAME ; void QDeclarativeListModel::countChanged(void) ?countChanged@QDeclarativePathView@@IAEXXZ @ 3567 NONAME ; void QDeclarativePathView::countChanged(void) ?create@QDeclarativeType@@QBEXPAPAVQObject@@PAPAXI@Z @ 3568 NONAME ; void QDeclarativeType::create(class QObject * *, void * *, unsigned int) const - ?currentTime@QDeclarativeItemPrivate@@SA?AVQTime@@XZ @ 3569 NONAME ; class QTime QDeclarativeItemPrivate::currentTime(void) + ?currentTime@QDeclarativeItemPrivate@@SA?AVQTime@@XZ @ 3569 NONAME ABSENT ; class QTime QDeclarativeItemPrivate::currentTime(void) ?d_func@QDeclarativeFocusPanel@@AAEPAVQDeclarativeItemPrivate@@XZ @ 3570 NONAME ; class QDeclarativeItemPrivate * QDeclarativeFocusPanel::d_func(void) ?d_func@QDeclarativeFocusPanel@@ABEPBVQDeclarativeItemPrivate@@XZ @ 3571 NONAME ; class QDeclarativeItemPrivate const * QDeclarativeFocusPanel::d_func(void) const ?d_func@QDeclarativeFocusScope@@AAEPAVQDeclarativeItemPrivate@@XZ @ 3572 NONAME ; class QDeclarativeItemPrivate * QDeclarativeFocusScope::d_func(void) @@ -3588,7 +3588,7 @@ EXPORTS ?doPositioning@QDeclarativeRow@@MAEXPAVQSizeF@@@Z @ 3587 NONAME ; void QDeclarativeRow::doPositioning(class QSizeF *) ?dragMarginChanged@QDeclarativePathView@@IAEXXZ @ 3588 NONAME ; void QDeclarativePathView::dragMarginChanged(void) ?duration@QDeclarativeSmoothedAnimation@@UBEHXZ @ 3589 NONAME ; int QDeclarativeSmoothedAnimation::duration(void) const - ?elapsed@QDeclarativeItemPrivate@@SAHAAVQTime@@@Z @ 3590 NONAME ; int QDeclarativeItemPrivate::elapsed(class QTime &) + ?elapsed@QDeclarativeItemPrivate@@SAHAAVQTime@@@Z @ 3590 NONAME ABSENT ; int QDeclarativeItemPrivate::elapsed(class QTime &) ?evaluateEnum@QDeclarativeCompiler@@QBEHABVQByteArray@@@Z @ 3591 NONAME ; int QDeclarativeCompiler::evaluateEnum(class QByteArray const &) const ?evaluateEnum@QDeclarativeCustomParser@@IBEHABVQByteArray@@@Z @ 3592 NONAME ; int QDeclarativeCustomParser::evaluateEnum(class QByteArray const &) const ?event@QDeclarativeGridView@@MAE_NPAVQEvent@@@Z @ 3593 NONAME ; bool QDeclarativeGridView::event(class QEvent *) @@ -3711,7 +3711,7 @@ EXPORTS ?resources_append@QDeclarativeItemPrivate@@SAXPAV?$QDeclarativeListProperty@VQObject@@@@PAVQObject@@@Z @ 3710 NONAME ; void QDeclarativeItemPrivate::resources_append(class QDeclarativeListProperty *, class QObject *) ?resources_at@QDeclarativeItemPrivate@@SAPAVQObject@@PAV?$QDeclarativeListProperty@VQObject@@@@H@Z @ 3711 NONAME ; class QObject * QDeclarativeItemPrivate::resources_at(class QDeclarativeListProperty *, int) ?resources_count@QDeclarativeItemPrivate@@SAHPAV?$QDeclarativeListProperty@VQObject@@@@@Z @ 3712 NONAME ; int QDeclarativeItemPrivate::resources_count(class QDeclarativeListProperty *) - ?restart@QDeclarativeItemPrivate@@SAHAAVQTime@@@Z @ 3713 NONAME ; int QDeclarativeItemPrivate::restart(class QTime &) + ?restart@QDeclarativeItemPrivate@@SAHAAVQTime@@@Z @ 3713 NONAME ABSENT ; int QDeclarativeItemPrivate::restart(class QTime &) ?restore@QDeclarativePropertyPrivate@@SA?AVQDeclarativeProperty@@ABVQByteArray@@PAVQObject@@PAVQDeclarativeContextData@@@Z @ 3714 NONAME ; class QDeclarativeProperty QDeclarativePropertyPrivate::restore(class QByteArray const &, class QObject *, class QDeclarativeContextData *) ?reversibleChanged@QDeclarativeTransition@@IAEXXZ @ 3715 NONAME ; void QDeclarativeTransition::reversibleChanged(void) ?reversingMode@QDeclarativeSmoothedAnimation@@QBE?AW4ReversingMode@1@XZ @ 3716 NONAME ; enum QDeclarativeSmoothedAnimation::ReversingMode QDeclarativeSmoothedAnimation::reversingMode(void) const @@ -3768,7 +3768,7 @@ EXPORTS ?sourceChanged@QDeclarativeXmlListModel@@IAEXXZ @ 3767 NONAME ; void QDeclarativeXmlListModel::sourceChanged(void) ?sourceSize@QDeclarativeImageBase@@QBE?AVQSize@@XZ @ 3768 NONAME ; class QSize QDeclarativeImageBase::sourceSize(void) const ?sourceSizeChanged@QDeclarativeImageBase@@IAEXXZ @ 3769 NONAME ; void QDeclarativeImageBase::sourceSizeChanged(void) - ?start@QDeclarativeItemPrivate@@SAXAAVQTime@@@Z @ 3770 NONAME ; void QDeclarativeItemPrivate::start(class QTime &) + ?start@QDeclarativeItemPrivate@@SAXAAVQTime@@@Z @ 3770 NONAME ABSENT ; void QDeclarativeItemPrivate::start(class QTime &) ?startXChanged@QDeclarativePath@@IAEXXZ @ 3771 NONAME ; void QDeclarativePath::startXChanged(void) ?startYChanged@QDeclarativePath@@IAEXXZ @ 3772 NONAME ; void QDeclarativePath::startYChanged(void) ?states@QDeclarativeItem@@QAE?AV?$QDeclarativeListProperty@VQDeclarativeState@@@@XZ @ 3773 NONAME ABSENT ; class QDeclarativeListProperty QDeclarativeItem::states(void) @@ -3817,7 +3817,7 @@ EXPORTS ?staticMetaObject@QDeclarativeWorkerScript@@2UQMetaObject@@B @ 3816 NONAME ; struct QMetaObject const QDeclarativeWorkerScript::staticMetaObject ?staticMetaObject@QDeclarativeSmoothedAnimation@@2UQMetaObject@@B @ 3817 NONAME ; struct QMetaObject const QDeclarativeSmoothedAnimation::staticMetaObject ?staticMetaObject@QDeclarativeTranslate@@2UQMetaObject@@B @ 3818 NONAME ; struct QMetaObject const QDeclarativeTranslate::staticMetaObject - ?consistentTime@QDeclarativeItemPrivate@@2HA @ 3819 NONAME ; int QDeclarativeItemPrivate::consistentTime + ?consistentTime@QDeclarativeItemPrivate@@2HA @ 3819 NONAME ABSENT ; int QDeclarativeItemPrivate::consistentTime ??0QDeclarativeAction@@QAE@PAVQObject@@ABVQString@@PAVQDeclarativeContext@@ABVQVariant@@@Z @ 3820 NONAME ; QDeclarativeAction::QDeclarativeAction(class QObject *, class QString const &, class QDeclarativeContext *, class QVariant const &) ??0QDeclarativeSmoothedFollow@@QAE@PAVQObject@@@Z @ 3821 NONAME ; QDeclarativeSmoothedFollow::QDeclarativeSmoothedFollow(class QObject *) ??1QDeclarativeSmoothedFollow@@UAE@XZ @ 3822 NONAME ; QDeclarativeSmoothedFollow::~QDeclarativeSmoothedFollow(void) @@ -4020,4 +4020,58 @@ EXPORTS ?keyReleasePreHandler@QDeclarativeItem@@IAEXPAVQKeyEvent@@@Z @ 4019 NONAME ; void QDeclarativeItem::keyReleasePreHandler(class QKeyEvent *) ?loaded@QDeclarativeLoader@@IAEXXZ @ 4020 NONAME ; void QDeclarativeLoader::loaded(void) ?needsCopy@QDeclarativeAnchorChanges@@UAE_NXZ @ 4021 NONAME ; bool QDeclarativeAnchorChanges::needsCopy(void) + ?closeSoftwareInputPanel@QDeclarativeTextEdit@@QAEXXZ @ 4022 NONAME ; void QDeclarativeTextEdit::closeSoftwareInputPanel(void) + ?restart@QDeclarativeItemPrivate@@SA_JAAVQElapsedTimer@@@Z @ 4023 NONAME ; long long QDeclarativeItemPrivate::restart(class QElapsedTimer &) + ?get@QDeclarativeXmlListModel@@QBE?AVQScriptValue@@H@Z @ 4024 NONAME ; class QScriptValue QDeclarativeXmlListModel::get(int) const + ?setScale@QDeclarativeParentChange@@QAEXVQDeclarativeScriptString@@@Z @ 4025 NONAME ; void QDeclarativeParentChange::setScale(class QDeclarativeScriptString) + ?showInputPanelOnFocusChanged@QDeclarativeTextEdit@@IAEX_N@Z @ 4026 NONAME ; void QDeclarativeTextEdit::showInputPanelOnFocusChanged(bool) + ?focusOutEvent@QDeclarativeTextInput@@MAEXPAVQFocusEvent@@@Z @ 4027 NONAME ; void QDeclarativeTextInput::focusOutEvent(class QFocusEvent *) + ?height@QDeclarativeParentChange@@QBE?AVQDeclarativeScriptString@@XZ @ 4028 NONAME ; class QDeclarativeScriptString QDeclarativeParentChange::height(void) const + ?showInputPanelOnFocus@QDeclarativeTextEdit@@QBE_NXZ @ 4029 NONAME ; bool QDeclarativeTextEdit::showInputPanelOnFocus(void) const + ?errorString@QDeclarativeComponent@@QBE?AVQString@@XZ @ 4030 NONAME ; class QString QDeclarativeComponent::errorString(void) const + ?elapsed@QDeclarativeItemPrivate@@SA_JAAVQElapsedTimer@@@Z @ 4031 NONAME ; long long QDeclarativeItemPrivate::elapsed(class QElapsedTimer &) + ?focusInEvent@QDeclarativeTextInput@@MAEXPAVQFocusEvent@@@Z @ 4032 NONAME ; void QDeclarativeTextInput::focusInEvent(class QFocusEvent *) + ?setX@QDeclarativeParentChange@@QAEXVQDeclarativeScriptString@@@Z @ 4033 NONAME ; void QDeclarativeParentChange::setX(class QDeclarativeScriptString) + ?rotation@QDeclarativeParentChange@@QBE?AVQDeclarativeScriptString@@XZ @ 4034 NONAME ; class QDeclarativeScriptString QDeclarativeParentChange::rotation(void) const + ?paintedHeight@QDeclarativeTextEdit@@QBEMXZ @ 4035 NONAME ; float QDeclarativeTextEdit::paintedHeight(void) const + ?paintedWidth@QDeclarativeTextEdit@@QBEMXZ @ 4036 NONAME ; float QDeclarativeTextEdit::paintedWidth(void) const + ?focusOutEvent@QDeclarativeTextEdit@@MAEXPAVQFocusEvent@@@Z @ 4037 NONAME ; void QDeclarativeTextEdit::focusOutEvent(class QFocusEvent *) + ??0QDeclarativeExpression@@IAE@PAVQDeclarativeContextData@@PAVQObject@@ABVQString@@AAVQDeclarativeExpressionPrivate@@@Z @ 4038 NONAME ; QDeclarativeExpression::QDeclarativeExpression(class QDeclarativeContextData *, class QObject *, class QString const &, class QDeclarativeExpressionPrivate &) + ??0QDeclarativeExpression@@QAE@PAVQDeclarativeContext@@PAVQObject@@ABVQString@@1@Z @ 4039 NONAME ; QDeclarativeExpression::QDeclarativeExpression(class QDeclarativeContext *, class QObject *, class QString const &, class QObject *) + ?queryError@QDeclarativeXmlListModel@@AAEXPAXABVQString@@@Z @ 4040 NONAME ; void QDeclarativeXmlListModel::queryError(void *, class QString const &) + ?errorString@QDeclarativeXmlListModel@@QBE?AVQString@@XZ @ 4041 NONAME ; class QString QDeclarativeXmlListModel::errorString(void) const + ?consistentTime@QDeclarativeItemPrivate@@2_JA @ 4042 NONAME ; long long QDeclarativeItemPrivate::consistentTime + ?scale@QDeclarativeParentChange@@QBE?AVQDeclarativeScriptString@@XZ @ 4043 NONAME ; class QDeclarativeScriptString QDeclarativeParentChange::scale(void) const + ?showInputPanelOnFocus@QDeclarativeTextInput@@QBE_NXZ @ 4044 NONAME ; bool QDeclarativeTextInput::showInputPanelOnFocus(void) const + ?focusInEvent@QDeclarativeTextEdit@@MAEXPAVQFocusEvent@@@Z @ 4045 NONAME ; void QDeclarativeTextEdit::focusInEvent(class QFocusEvent *) + ?y@QDeclarativeParentChange@@QBE?AVQDeclarativeScriptString@@XZ @ 4046 NONAME ; class QDeclarativeScriptString QDeclarativeParentChange::y(void) const + ?setY@QDeclarativeParentChange@@QAEXVQDeclarativeScriptString@@@Z @ 4047 NONAME ; void QDeclarativeParentChange::setY(class QDeclarativeScriptString) + ?setShowInputPanelOnFocus@QDeclarativeTextEdit@@QAEX_N@Z @ 4048 NONAME ; void QDeclarativeTextEdit::setShowInputPanelOnFocus(bool) + ?paintedSizeChanged@QDeclarativeText@@IAEXXZ @ 4049 NONAME ; void QDeclarativeText::paintedSizeChanged(void) + ?selectByMouseChanged@QDeclarativeTextEdit@@IAEX_N@Z @ 4050 NONAME ; void QDeclarativeTextEdit::selectByMouseChanged(bool) + ?openSoftwareInputPanel@QDeclarativeTextInput@@QAEXXZ @ 4051 NONAME ; void QDeclarativeTextInput::openSoftwareInputPanel(void) + ?setShowInputPanelOnFocus@QDeclarativeTextInput@@QAEX_N@Z @ 4052 NONAME ; void QDeclarativeTextInput::setShowInputPanelOnFocus(bool) + ?boundingRect@QDeclarativePaintedItem@@MBE?AVQRectF@@XZ @ 4053 NONAME ; class QRectF QDeclarativePaintedItem::boundingRect(void) const + ?closeSoftwareInputPanel@QDeclarativeTextInput@@QAEXXZ @ 4054 NONAME ; void QDeclarativeTextInput::closeSoftwareInputPanel(void) + ?setWidth@QDeclarativeParentChange@@QAEXVQDeclarativeScriptString@@@Z @ 4055 NONAME ; void QDeclarativeParentChange::setWidth(class QDeclarativeScriptString) + ?selectByMouse@QDeclarativeTextInput@@QBE_NXZ @ 4056 NONAME ; bool QDeclarativeTextInput::selectByMouse(void) const + ?setRotation@QDeclarativeParentChange@@QAEXVQDeclarativeScriptString@@@Z @ 4057 NONAME ; void QDeclarativeParentChange::setRotation(class QDeclarativeScriptString) + ?paintedWidth@QDeclarativeText@@QBEMXZ @ 4058 NONAME ; float QDeclarativeText::paintedWidth(void) const + ?paintedSizeChanged@QDeclarativeTextEdit@@IAEXXZ @ 4059 NONAME ; void QDeclarativeTextEdit::paintedSizeChanged(void) + ?setConsistentTime@QDeclarativeItemPrivate@@SAX_J@Z @ 4060 NONAME ; void QDeclarativeItemPrivate::setConsistentTime(long long) + ??0QDeclarativeExpression@@AAE@PAVQDeclarativeContextData@@PAVQObject@@ABVQString@@@Z @ 4061 NONAME ; QDeclarativeExpression::QDeclarativeExpression(class QDeclarativeContextData *, class QObject *, class QString const &) + ?event@QDeclarativePathView@@MAE_NPAVQEvent@@@Z @ 4062 NONAME ; bool QDeclarativePathView::event(class QEvent *) + ?paintedHeight@QDeclarativeText@@QBEMXZ @ 4063 NONAME ; float QDeclarativeText::paintedHeight(void) const + ?setSelectByMouse@QDeclarativeTextInput@@QAEX_N@Z @ 4064 NONAME ; void QDeclarativeTextInput::setSelectByMouse(bool) + ?setSelectByMouse@QDeclarativeTextEdit@@QAEX_N@Z @ 4065 NONAME ; void QDeclarativeTextEdit::setSelectByMouse(bool) + ?selectByMouse@QDeclarativeTextEdit@@QBE_NXZ @ 4066 NONAME ; bool QDeclarativeTextEdit::selectByMouse(void) const + ?setHeight@QDeclarativeParentChange@@QAEXVQDeclarativeScriptString@@@Z @ 4067 NONAME ; void QDeclarativeParentChange::setHeight(class QDeclarativeScriptString) + ?start@QDeclarativeItemPrivate@@SAXAAVQElapsedTimer@@@Z @ 4068 NONAME ; void QDeclarativeItemPrivate::start(class QElapsedTimer &) + ?showInputPanelOnFocusChanged@QDeclarativeTextInput@@IAEX_N@Z @ 4069 NONAME ; void QDeclarativeTextInput::showInputPanelOnFocusChanged(bool) + ?x@QDeclarativeParentChange@@QBE?AVQDeclarativeScriptString@@XZ @ 4070 NONAME ; class QDeclarativeScriptString QDeclarativeParentChange::x(void) const + ?selectByMouseChanged@QDeclarativeTextInput@@IAEX_N@Z @ 4071 NONAME ; void QDeclarativeTextInput::selectByMouseChanged(bool) + ?width@QDeclarativeParentChange@@QBE?AVQDeclarativeScriptString@@XZ @ 4072 NONAME ; class QDeclarativeScriptString QDeclarativeParentChange::width(void) const + ?openSoftwareInputPanel@QDeclarativeTextEdit@@QAEXXZ @ 4073 NONAME ; void QDeclarativeTextEdit::openSoftwareInputPanel(void) + ?cursorRectangleChanged@QDeclarativeTextEdit@@IAEXXZ @ 4074 NONAME ; void QDeclarativeTextEdit::cursorRectangleChanged(void) + ?cursorRectangle@QDeclarativeTextEdit@@QBE?AVQRect@@XZ @ 4075 NONAME ; class QRect QDeclarativeTextEdit::cursorRectangle(void) const diff --git a/src/s60installs/bwins/QtGuiu.def b/src/s60installs/bwins/QtGuiu.def index 3368e4c..a1e05e2 100644 --- a/src/s60installs/bwins/QtGuiu.def +++ b/src/s60installs/bwins/QtGuiu.def @@ -2125,9 +2125,9 @@ EXPORTS ?addText@QPainterPath@@QAEXMMABVQFont@@ABVQString@@@Z @ 2124 NONAME ; void QPainterPath::addText(float, float, class QFont const &, class QString const &) ?addToGroup@QGraphicsItemGroup@@QAEXPAVQGraphicsItem@@@Z @ 2125 NONAME ; void QGraphicsItemGroup::addToGroup(class QGraphicsItem *) ?addToIndex@QGraphicsItem@@IAEXXZ @ 2126 NONAME ; void QGraphicsItem::addToIndex(void) - ?addToPolygon@QBezier@@QBEXPAVQPolygonF@@@Z @ 2127 NONAME ; void QBezier::addToPolygon(class QPolygonF *) const - ?addToPolygonIterative@QBezier@@QBEXPAVQPolygonF@@@Z @ 2128 NONAME ; void QBezier::addToPolygonIterative(class QPolygonF *) const - ?addToPolygonMixed@QBezier@@QBEXPAVQPolygonF@@@Z @ 2129 NONAME ; void QBezier::addToPolygonMixed(class QPolygonF *) const + ?addToPolygon@QBezier@@QBEXPAVQPolygonF@@@Z @ 2127 NONAME ABSENT ; void QBezier::addToPolygon(class QPolygonF *) const + ?addToPolygonIterative@QBezier@@QBEXPAVQPolygonF@@@Z @ 2128 NONAME ABSENT ; void QBezier::addToPolygonIterative(class QPolygonF *) const + ?addToPolygonMixed@QBezier@@QBEXPAVQPolygonF@@@Z @ 2129 NONAME ABSENT ; void QBezier::addToPolygonMixed(class QPolygonF *) const ?addToolBar@QMainWindow@@QAEPAVQToolBar@@ABVQString@@@Z @ 2130 NONAME ; class QToolBar * QMainWindow::addToolBar(class QString const &) ?addToolBar@QMainWindow@@QAEXPAVQToolBar@@@Z @ 2131 NONAME ; void QMainWindow::addToolBar(class QToolBar *) ?addToolBar@QMainWindow@@QAEXW4ToolBarArea@Qt@@PAVQToolBar@@@Z @ 2132 NONAME ; void QMainWindow::addToolBar(enum Qt::ToolBarArea, class QToolBar *) @@ -3207,7 +3207,7 @@ EXPORTS ?cursorWordForward@QLineControl@@QAEX_N@Z @ 3206 NONAME ; void QLineControl::cursorWordForward(bool) ?cursorWordForward@QLineEdit@@QAEX_N@Z @ 3207 NONAME ; void QLineEdit::cursorWordForward(bool) ?curveThreshold@QPainterPathStroker@@QBEMXZ @ 3208 NONAME ; float QPainterPathStroker::curveThreshold(void) const - ?curveThreshold@QStroker@@QBEMXZ @ 3209 NONAME ; float QStroker::curveThreshold(void) const + ?curveThreshold@QStroker@@QBEMXZ @ 3209 NONAME ABSENT ; float QStroker::curveThreshold(void) const ?customButtonClicked@QWizard@@IAEXH@Z @ 3210 NONAME ; void QWizard::customButtonClicked(int) ?customColor@QColorDialog@@SAIH@Z @ 3211 NONAME ; unsigned int QColorDialog::customColor(int) ?customContextMenuRequested@QWidget@@IAEXABVQPoint@@@Z @ 3212 NONAME ; void QWidget::customContextMenuRequested(class QPoint const &) @@ -3853,7 +3853,7 @@ EXPORTS ?draw@QLineControl@@QAEXPAVQPainter@@ABVQPoint@@ABVQRect@@H@Z @ 3852 NONAME ; void QLineControl::draw(class QPainter *, class QPoint const &, class QRect const &, int) ?draw@QPaintBuffer@@QBEXPAVQPainter@@H@Z @ 3853 NONAME ; void QPaintBuffer::draw(class QPainter *, int) const ?draw@QPaintEngineEx@@UAEXABVQVectorPath@@@Z @ 3854 NONAME ; void QPaintEngineEx::draw(class QVectorPath const &) - ?draw@QPainterReplayer@@QAEXABVQPaintBuffer@@PAVQPainter@@H@Z @ 3855 NONAME ; void QPainterReplayer::draw(class QPaintBuffer const &, class QPainter *, int) + ?draw@QPainterReplayer@@QAEXABVQPaintBuffer@@PAVQPainter@@H@Z @ 3855 NONAME ABSENT ; void QPainterReplayer::draw(class QPaintBuffer const &, class QPainter *, int) ?draw@QPixmapBlurFilter@@UBEXPAVQPainter@@ABVQPointF@@ABVQPixmap@@ABVQRectF@@@Z @ 3856 NONAME ; void QPixmapBlurFilter::draw(class QPainter *, class QPointF const &, class QPixmap const &, class QRectF const &) const ?draw@QPixmapColorizeFilter@@UBEXPAVQPainter@@ABVQPointF@@ABVQPixmap@@ABVQRectF@@@Z @ 3857 NONAME ; void QPixmapColorizeFilter::draw(class QPainter *, class QPointF const &, class QPixmap const &, class QRectF const &) const ?draw@QPixmapConvolutionFilter@@UBEXPAVQPainter@@ABVQPointF@@ABVQPixmap@@ABVQRectF@@@Z @ 3858 NONAME ; void QPixmapConvolutionFilter::draw(class QPainter *, class QPointF const &, class QPixmap const &, class QRectF const &) const @@ -3961,7 +3961,7 @@ EXPORTS ?drawPixmap@QPainter@@QAEXHHABVQPixmap@@HHHH@Z @ 3960 NONAME ; void QPainter::drawPixmap(int, int, class QPixmap const &, int, int, int, int) ?drawPixmap@QPainter@@QAEXHHHHABVQPixmap@@@Z @ 3961 NONAME ; void QPainter::drawPixmap(int, int, int, int, class QPixmap const &) ?drawPixmap@QPainter@@QAEXHHHHABVQPixmap@@HHHH@Z @ 3962 NONAME ; void QPainter::drawPixmap(int, int, int, int, class QPixmap const &, int, int, int, int) - ?drawPixmaps@QPaintEngineEx@@UAEXPBUData@QDrawPixmaps@@HABVQPixmap@@V?$QFlags@W4DrawingHint@QDrawPixmaps@@@@@Z @ 3963 NONAME ; void QPaintEngineEx::drawPixmaps(struct QDrawPixmaps::Data const *, int, class QPixmap const &, class QFlags) + ?drawPixmaps@QPaintEngineEx@@UAEXPBUData@QDrawPixmaps@@HABVQPixmap@@V?$QFlags@W4DrawingHint@QDrawPixmaps@@@@@Z @ 3963 NONAME ABSENT ; void QPaintEngineEx::drawPixmaps(struct QDrawPixmaps::Data const *, int, class QPixmap const &, class QFlags) ?drawPoint@QPainter@@QAEXABVQPoint@@@Z @ 3964 NONAME ; void QPainter::drawPoint(class QPoint const &) ?drawPoint@QPainter@@QAEXABVQPointF@@@Z @ 3965 NONAME ; void QPainter::drawPoint(class QPointF const &) ?drawPoint@QPainter@@QAEXHH@Z @ 3966 NONAME ; void QPainter::drawPoint(int, int) @@ -4417,8 +4417,8 @@ EXPORTS ?findData@QComboBox@@QBEHABVQVariant@@HV?$QFlags@W4MatchFlag@Qt@@@@@Z @ 4416 NONAME ; int QComboBox::findData(class QVariant const &, int, class QFlags) const ?findFont@QFontDatabase@@CAPAVQFontEngine@@HPBVQFontPrivate@@ABUQFontDef@@@Z @ 4417 NONAME ; class QFontEngine * QFontDatabase::findFont(int, class QFontPrivate const *, struct QFontDef const &) ?findInMask@QLineControl@@ABEHH_N0VQChar@@@Z @ 4418 NONAME ; int QLineControl::findInMask(int, bool, bool, class QChar) const - ?findIntersections@QBezier@@SA?AV?$QVector@U?$QPair@MM@@@@ABV1@0@Z @ 4419 NONAME ; class QVector > QBezier::findIntersections(class QBezier const &, class QBezier const &) - ?findIntersections@QBezier@@SA_NABV1@0PAV?$QVector@U?$QPair@MM@@@@@Z @ 4420 NONAME ; bool QBezier::findIntersections(class QBezier const &, class QBezier const &, class QVector > *) + ?findIntersections@QBezier@@SA?AV?$QVector@U?$QPair@MM@@@@ABV1@0@Z @ 4419 NONAME ABSENT ; class QVector > QBezier::findIntersections(class QBezier const &, class QBezier const &) + ?findIntersections@QBezier@@SA_NABV1@0PAV?$QVector@U?$QPair@MM@@@@@Z @ 4420 NONAME ABSENT ; bool QBezier::findIntersections(class QBezier const &, class QBezier const &, class QVector > *) ?findItem@QTextEngine@@QBEHH@Z @ 4421 NONAME ; int QTextEngine::findItem(int) const ?findItems@QListWidget@@QBE?AV?$QList@PAVQListWidgetItem@@@@ABVQString@@V?$QFlags@W4MatchFlag@Qt@@@@@Z @ 4422 NONAME ; class QList QListWidget::findItems(class QString const &, class QFlags) const ?findItems@QStandardItemModel@@QBE?AV?$QList@PAVQStandardItem@@@@ABVQString@@V?$QFlags@W4MatchFlag@Qt@@@@H@Z @ 4423 NONAME ; class QList QStandardItemModel::findItems(class QString const &, class QFlags, int) const @@ -7206,10 +7206,10 @@ EXPORTS ?parseTerm@Parser@QCss@@QAE_NPAUValue@2@@Z @ 7205 NONAME ; bool QCss::Parser::parseTerm(struct QCss::Value *) ?passwordCharacter@QLineControl@@QBE?AVQChar@@XZ @ 7206 NONAME ; class QChar QLineControl::passwordCharacter(void) const ?passwordEchoEditing@QLineControl@@QBE_NXZ @ 7207 NONAME ; bool QLineControl::passwordEchoEditing(void) const - ?paste@QLineControl@@QAEXXZ @ 7208 NONAME ; void QLineControl::paste(void) + ?paste@QLineControl@@QAEXXZ @ 7208 NONAME ABSENT ; void QLineControl::paste(void) ?paste@QLineEdit@@QAEXXZ @ 7209 NONAME ; void QLineEdit::paste(void) ?paste@QPlainTextEdit@@QAEXXZ @ 7210 NONAME ; void QPlainTextEdit::paste(void) - ?paste@QTextControl@@QAEXXZ @ 7211 NONAME ; void QTextControl::paste(void) + ?paste@QTextControl@@QAEXXZ @ 7211 NONAME ABSENT ; void QTextControl::paste(void) ?paste@QTextEdit@@QAEXXZ @ 7212 NONAME ; void QTextEdit::paste(void) ?path@QGraphicsPathItem@@QBE?AVQPainterPath@@XZ @ 7213 NONAME ; class QPainterPath QGraphicsPathItem::path(void) const ?pathFromIndex@QCompleter@@UBE?AVQString@@ABVQModelIndex@@@Z @ 7214 NONAME ; class QString QCompleter::pathFromIndex(class QModelIndex const &) const @@ -7291,7 +7291,7 @@ EXPORTS ?polishEvent@QGraphicsWidget@@MAEXXZ @ 7290 NONAME ; void QGraphicsWidget::polishEvent(void) ?polygon@QGraphicsPolygonItem@@QBE?AVQPolygonF@@XZ @ 7291 NONAME ; class QPolygonF QGraphicsPolygonItem::polygon(void) const ?polygonFlags@QVectorPath@@SAIW4PolygonDrawMode@QPaintEngine@@@Z @ 7292 NONAME ; unsigned int QVectorPath::polygonFlags(enum QPaintEngine::PolygonDrawMode) - ?populate@QTextureGlyphCache@@QAEXABVQTextItemInt@@ABV?$QVarLengthArray@I$0BAA@@@ABV?$QVarLengthArray@UQFixedPoint@@$0BAA@@@@Z @ 7293 NONAME ; void QTextureGlyphCache::populate(class QTextItemInt const &, class QVarLengthArray const &, class QVarLengthArray const &) + ?populate@QTextureGlyphCache@@QAEXABVQTextItemInt@@ABV?$QVarLengthArray@I$0BAA@@@ABV?$QVarLengthArray@UQFixedPoint@@$0BAA@@@@Z @ 7293 NONAME ABSENT ; void QTextureGlyphCache::populate(class QTextItemInt const &, class QVarLengthArray const &, class QVarLengthArray const &) ?popup@QCompleter@@QBEPAVQAbstractItemView@@XZ @ 7294 NONAME ; class QAbstractItemView * QCompleter::popup(void) const ?popup@QMenu@@QAEXABVQPoint@@PAVQAction@@@Z @ 7295 NONAME ; void QMenu::popup(class QPoint const &, class QAction *) ?popupMode@QToolButton@@QBE?AW4ToolButtonPopupMode@1@XZ @ 7296 NONAME ; enum QToolButton::ToolButtonPopupMode QToolButton::popupMode(void) const @@ -7389,7 +7389,7 @@ EXPORTS ?qAlpha@@YAHI@Z @ 7388 NONAME ; int qAlpha(unsigned int) ?qBlue@@YAHI@Z @ 7389 NONAME ; int qBlue(unsigned int) ?qDrawBorderPixmap@@YAXPAVQPainter@@ABVQRect@@ABVQMargins@@ABVQPixmap@@12ABUQTileRules@@V?$QFlags@W4DrawingHint@QDrawBorderPixmap@@@@@Z @ 7390 NONAME ; void qDrawBorderPixmap(class QPainter *, class QRect const &, class QMargins const &, class QPixmap const &, class QRect const &, class QMargins const &, struct QTileRules const &, class QFlags) - ?qDrawPixmaps@@YAXPAVQPainter@@PBUData@QDrawPixmaps@@HABVQPixmap@@V?$QFlags@W4DrawingHint@QDrawPixmaps@@@@@Z @ 7391 NONAME ; void qDrawPixmaps(class QPainter *, struct QDrawPixmaps::Data const *, int, class QPixmap const &, class QFlags) + ?qDrawPixmaps@@YAXPAVQPainter@@PBUData@QDrawPixmaps@@HABVQPixmap@@V?$QFlags@W4DrawingHint@QDrawPixmaps@@@@@Z @ 7391 NONAME ABSENT ; void qDrawPixmaps(class QPainter *, struct QDrawPixmaps::Data const *, int, class QPixmap const &, class QFlags) ?qDrawPlainRect@@YAXPAVQPainter@@ABVQRect@@ABVQColor@@HPBVQBrush@@@Z @ 7392 NONAME ; void qDrawPlainRect(class QPainter *, class QRect const &, class QColor const &, int, class QBrush const *) ?qDrawPlainRect@@YAXPAVQPainter@@HHHHABVQColor@@HPBVQBrush@@@Z @ 7393 NONAME ; void qDrawPlainRect(class QPainter *, int, int, int, int, class QColor const &, int, class QBrush const *) ?qDrawShadeLine@@YAXPAVQPainter@@ABVQPoint@@1ABVQPalette@@_NHH@Z @ 7394 NONAME ; void qDrawShadeLine(class QPainter *, class QPoint const &, class QPoint const &, class QPalette const &, bool, int, int) @@ -8769,7 +8769,7 @@ EXPORTS ?setCursorWidth@QTextEdit@@QAEXH@Z @ 8768 NONAME ; void QTextEdit::setCursorWidth(int) ?setCursor_sys@QWidgetPrivate@@QAEXABVQCursor@@@Z @ 8769 NONAME ; void QWidgetPrivate::setCursor_sys(class QCursor const &) ?setCurveThreshold@QPainterPathStroker@@QAEXM@Z @ 8770 NONAME ; void QPainterPathStroker::setCurveThreshold(float) - ?setCurveThreshold@QStroker@@QAEXM@Z @ 8771 NONAME ; void QStroker::setCurveThreshold(float) + ?setCurveThreshold@QStroker@@QAEXM@Z @ 8771 NONAME ABSENT ; void QStroker::setCurveThreshold(float) ?setCustomColor@QColorDialog@@SAXHI@Z @ 8772 NONAME ; void QColorDialog::setCustomColor(int, unsigned int) ?setDashOffset@QDashStroker@@QAEXM@Z @ 8773 NONAME ; void QDashStroker::setDashOffset(float) ?setDashOffset@QPainterPathStroker@@QAEXM@Z @ 8774 NONAME ; void QPainterPathStroker::setDashOffset(float) @@ -10501,7 +10501,7 @@ EXPORTS ?speed@QMovie@@QBEHXZ @ 10500 NONAME ; int QMovie::speed(void) const ?split@QBezier@@QBEXPAV1@0@Z @ 10501 NONAME ; void QBezier::split(class QBezier *, class QBezier *) const ?split@QItemSelection@@SAXABVQItemSelectionRange@@0PAV1@@Z @ 10502 NONAME ; void QItemSelection::split(class QItemSelectionRange const &, class QItemSelectionRange const &, class QItemSelection *) - ?splitAtIntersections@QBezier@@QAE?AV?$QVector@V?$QList@VQBezier@@@@@@AAV1@@Z @ 10503 NONAME ; class QVector > QBezier::splitAtIntersections(class QBezier &) + ?splitAtIntersections@QBezier@@QAE?AV?$QVector@V?$QList@VQBezier@@@@@@AAV1@@Z @ 10503 NONAME ABSENT ; class QVector > QBezier::splitAtIntersections(class QBezier &) ?splitCell@QTextTable@@QAEXHHHH@Z @ 10504 NONAME ; void QTextTable::splitCell(int, int, int, int) ?splitDockWidget@QMainWindow@@QAEXPAVQDockWidget@@0W4Orientation@Qt@@@Z @ 10505 NONAME ; void QMainWindow::splitDockWidget(class QDockWidget *, class QDockWidget *, enum Qt::Orientation) ?splitItem@QTextEngine@@ABEXHH@Z @ 10506 NONAME ; void QTextEngine::splitItem(int, int) const @@ -10990,7 +10990,7 @@ EXPORTS ?toPointF@QVector2D@@QBE?AVQPointF@@XZ @ 10989 NONAME ; class QPointF QVector2D::toPointF(void) const ?toPointF@QVector3D@@QBE?AVQPointF@@XZ @ 10990 NONAME ; class QPointF QVector3D::toPointF(void) const ?toPointF@QVector4D@@QBE?AVQPointF@@XZ @ 10991 NONAME ; class QPointF QVector4D::toPointF(void) const - ?toPolygon@QBezier@@QBE?AVQPolygonF@@XZ @ 10992 NONAME ; class QPolygonF QBezier::toPolygon(void) const + ?toPolygon@QBezier@@QBE?AVQPolygonF@@XZ @ 10992 NONAME ABSENT ; class QPolygonF QBezier::toPolygon(void) const ?toPolygon@QPolygonF@@QBE?AVQPolygon@@XZ @ 10993 NONAME ; class QPolygon QPolygonF::toPolygon(void) const ?toPrevious@QDataWidgetMapper@@QAEXXZ @ 10994 NONAME ; void QDataWidgetMapper::toPrevious(void) ?toReversed@QPainterPath@@QBE?AV1@XZ @ 10995 NONAME ; class QPainterPath QPainterPath::toReversed(void) const @@ -12549,18 +12549,18 @@ EXPORTS ?updateAncestorFlags@QGraphicsItemPrivate@@QAEXXZ @ 12548 NONAME ; void QGraphicsItemPrivate::updateAncestorFlags(void) ?updateChildWithGraphicsEffectFlagRecursively@QGraphicsItemPrivate@@QAEXXZ @ 12549 NONAME ; void QGraphicsItemPrivate::updateChildWithGraphicsEffectFlagRecursively(void) ?api@QEglContext@@QBE?AW4API@QEgl@@XZ @ 12550 NONAME ; enum QEgl::API QEglContext::api(void) const - ?display@QEglContext@@SAHXZ @ 12551 NONAME ; int QEglContext::display(void) + ?display@QEglContext@@SAHXZ @ 12551 NONAME ABSENT ; int QEglContext::display(void) ?isOpacityNull@QGraphicsItemPrivate@@SA_NM@Z @ 12552 NONAME ; bool QGraphicsItemPrivate::isOpacityNull(float) ?chooseConfig@QEglContext@@QAE_NABVQEglProperties@@W4PixelFormatMatch@QEgl@@@Z @ 12553 NONAME ; bool QEglContext::chooseConfig(class QEglProperties const &, enum QEgl::PixelFormatMatch) ?destroySurface@QEglContext@@QAEXH@Z @ 12554 NONAME ; void QEglContext::destroySurface(int) ?lazyDoneCurrent@QEglContext@@QAE_NXZ @ 12555 NONAME ; bool QEglContext::lazyDoneCurrent(void) - ?waitNative@QEglContext@@QAEXXZ @ 12556 NONAME ; void QEglContext::waitNative(void) + ?waitNative@QEglContext@@QAEXXZ @ 12556 NONAME ABSENT ; void QEglContext::waitNative(void) ?context@QEglContext@@QBEHXZ @ 12557 NONAME ; int QEglContext::context(void) const - ?configAttrib@QEglContext@@QBE_NHPAH@Z @ 12558 NONAME ; bool QEglContext::configAttrib(int, int *) const + ?configAttrib@QEglContext@@QBE_NHPAH@Z @ 12558 NONAME ABSENT ; bool QEglContext::configAttrib(int, int *) const ??0QEglProperties@@QAE@ABV0@@Z @ 12559 NONAME ; QEglProperties::QEglProperties(class QEglProperties const &) ?config@QEglContext@@QBEHXZ @ 12560 NONAME ; int QEglContext::config(void) const ?clearFocusHelper@QGraphicsItemPrivate@@QAEX_N@Z @ 12561 NONAME ; void QGraphicsItemPrivate::clearFocusHelper(bool) - ?error@QEglContext@@SAHXZ @ 12562 NONAME ; int QEglContext::error(void) + ?error@QEglContext@@SAHXZ @ 12562 NONAME ABSENT ; int QEglContext::error(void) ?swapBuffers@QEglContext@@QAE_NH@Z @ 12563 NONAME ; bool QEglContext::swapBuffers(int) ?canKeypadNavigate@QWidgetPrivate@@SA_NW4Orientation@Qt@@@Z @ 12564 NONAME ; bool QWidgetPrivate::canKeypadNavigate(enum Qt::Orientation) ?removeAllApplicationFonts@QFontDatabase@@SA_NXZ @ 12565 NONAME ; bool QFontDatabase::removeAllApplicationFonts(void) @@ -12569,44 +12569,240 @@ EXPORTS ?makeCurrent@QEglContext@@QAE_NH@Z @ 12568 NONAME ; bool QEglContext::makeCurrent(int) ?isPixmapCached@QImagePixmapCleanupHooks@@SA_NABVQPixmap@@@Z @ 12569 NONAME ; bool QImagePixmapCleanupHooks::isPixmapCached(class QPixmap const &) ?createSurface@QEglContext@@QAEHPAVQPaintDevice@@PBVQEglProperties@@@Z @ 12570 NONAME ; int QEglContext::createSurface(class QPaintDevice *, class QEglProperties const *) - ?dumpAllConfigs@QEglContext@@QAEXXZ @ 12571 NONAME ; void QEglContext::dumpAllConfigs(void) + ?dumpAllConfigs@QEglContext@@QAEXXZ @ 12571 NONAME ABSENT ; void QEglContext::dumpAllConfigs(void) ?reduceConfiguration@QEglProperties@@QAE_NXZ @ 12572 NONAME ; bool QEglProperties::reduceConfiguration(void) - ?nativeDisplay@QEglContext@@CAHXZ @ 12573 NONAME ; int QEglContext::nativeDisplay(void) + ?nativeDisplay@QEglContext@@CAHXZ @ 12573 NONAME ABSENT ; int QEglContext::nativeDisplay(void) ?getGlyphBearings@QFontEngine@@UAEXIPAM0@Z @ 12574 NONAME ; void QFontEngine::getGlyphBearings(unsigned int, float *, float *) ?removeValue@QEglProperties@@QAE_NH@Z @ 12575 NONAME ; bool QEglProperties::removeValue(int) ?toString@QEglProperties@@QBE?AVQString@@XZ @ 12576 NONAME ; class QString QEglProperties::toString(void) const ?isOpacityNull@QGraphicsItemPrivate@@QBE_NXZ @ 12577 NONAME ; bool QGraphicsItemPrivate::isOpacityNull(void) const - ?dumpAllConfigs@QEglProperties@@SAXXZ @ 12578 NONAME ; void QEglProperties::dumpAllConfigs(void) + ?dumpAllConfigs@QEglProperties@@SAXXZ @ 12578 NONAME ABSENT ; void QEglProperties::dumpAllConfigs(void) ?inTabWidget@QWidgetPrivate@@SA_NPAVQWidget@@@Z @ 12579 NONAME ; bool QWidgetPrivate::inTabWidget(class QWidget *) - ?configProperties@QEglContext@@QBE?AVQEglProperties@@H@Z @ 12580 NONAME ; class QEglProperties QEglContext::configProperties(int) const + ?configProperties@QEglContext@@QBE?AVQEglProperties@@H@Z @ 12580 NONAME ABSENT ; class QEglProperties QEglContext::configProperties(int) const ?properties@QEglProperties@@QBEPBHXZ @ 12581 NONAME ; int const * QEglProperties::properties(void) const ?destroyContext@QEglContext@@QAEXXZ @ 12582 NONAME ; void QEglContext::destroyContext(void) ??0QEglContext@@QAE@XZ @ 12583 NONAME ; QEglContext::QEglContext(void) ??1QEglContext@@QAE@XZ @ 12584 NONAME ; QEglContext::~QEglContext(void) ?isValid@QEglContext@@QBE_NXZ @ 12585 NONAME ; bool QEglContext::isValid(void) const ?value@QEglProperties@@QBEHH@Z @ 12586 NONAME ; int QEglProperties::value(int) const - ?clearError@QEglContext@@SAXXZ @ 12587 NONAME ; void QEglContext::clearError(void) + ?clearError@QEglContext@@SAXXZ @ 12587 NONAME ABSENT ; void QEglContext::clearError(void) ??0QEglProperties@@QAE@H@Z @ 12588 NONAME ; QEglProperties::QEglProperties(int) ?setValue@QEglProperties@@QAEXHH@Z @ 12589 NONAME ; void QEglProperties::setValue(int, int) ?setPaintDeviceFormat@QEglProperties@@QAEXPAVQPaintDevice@@@Z @ 12590 NONAME ; void QEglProperties::setPaintDeviceFormat(class QPaintDevice *) ?isImageCached@QImagePixmapCleanupHooks@@SA_NABVQImage@@@Z @ 12591 NONAME ; bool QImagePixmapCleanupHooks::isImageCached(class QImage const &) ?setRenderableType@QEglProperties@@QAEXW4API@QEgl@@@Z @ 12592 NONAME ; void QEglProperties::setRenderableType(enum QEgl::API) ?setContext@QEglContext@@QAEXH@Z @ 12593 NONAME ; void QEglContext::setContext(int) - ?waitClient@QEglContext@@QAEXXZ @ 12594 NONAME ; void QEglContext::waitClient(void) + ?waitClient@QEglContext@@QAEXXZ @ 12594 NONAME ABSENT ; void QEglContext::waitClient(void) ?isEmpty@QEglProperties@@QBE_NXZ @ 12595 NONAME ; bool QEglProperties::isEmpty(void) const - ?dpy@QEglContext@@0HA @ 12596 NONAME ; int QEglContext::dpy + ?dpy@QEglContext@@0HA @ 12596 NONAME ABSENT ; int QEglContext::dpy ?isSharing@QEglContext@@QBE_NXZ @ 12597 NONAME ; bool QEglContext::isSharing(void) const ?isCurrent@QEglContext@@QBE_NXZ @ 12598 NONAME ; bool QEglContext::isCurrent(void) const ??0QEglProperties@@QAE@XZ @ 12599 NONAME ; QEglProperties::QEglProperties(void) - ?extensions@QEglContext@@SA?AVQString@@XZ @ 12600 NONAME ; class QString QEglContext::extensions(void) + ?extensions@QEglContext@@SA?AVQString@@XZ @ 12600 NONAME ABSENT ; class QString QEglContext::extensions(void) ?setCurrentContext@QEglContext@@CAXW4API@QEgl@@PAV1@@Z @ 12601 NONAME ; void QEglContext::setCurrentContext(enum QEgl::API, class QEglContext *) ??1QEglProperties@@QAE@XZ @ 12602 NONAME ; QEglProperties::~QEglProperties(void) ?createContext@QEglContext@@QAE_NPAV1@PBVQEglProperties@@@Z @ 12603 NONAME ; bool QEglContext::createContext(class QEglContext *, class QEglProperties const *) ?setConfig@QEglContext@@QAEXH@Z @ 12604 NONAME ; void QEglContext::setConfig(int) - ?hasExtension@QEglContext@@SA_NPBD@Z @ 12605 NONAME ; bool QEglContext::hasExtension(char const *) + ?hasExtension@QEglContext@@SA_NPBD@Z @ 12605 NONAME ABSENT ; bool QEglContext::hasExtension(char const *) ?doneCurrent@QEglContext@@QAE_NXZ @ 12606 NONAME ; bool QEglContext::doneCurrent(void) ?setPixelFormat@QEglProperties@@QAEXW4Format@QImage@@@Z @ 12607 NONAME ; void QEglProperties::setPixelFormat(enum QImage::Format) ?currentContext@QEglContext@@CAPAV1@W4API@QEgl@@@Z @ 12608 NONAME ; class QEglContext * QEglContext::currentContext(enum QEgl::API) ?setFocusHelper@QGraphicsItemPrivate@@QAEXW4FocusReason@Qt@@_N1@Z @ 12609 NONAME ; void QGraphicsItemPrivate::setFocusHelper(enum Qt::FocusReason, bool, bool) - ?errorString@QEglContext@@SA?AVQString@@H@Z @ 12610 NONAME ; class QString QEglContext::errorString(int) + ?errorString@QEglContext@@SA?AVQString@@H@Z @ 12610 NONAME ABSENT ; class QString QEglContext::errorString(int) + ?positionInBlock@QTextCursor@@QBEHXZ @ 12611 NONAME ; int QTextCursor::positionInBlock(void) const + ?height@QGraphicsItemPrivate@@UBEMXZ @ 12612 NONAME ; float QGraphicsItemPrivate::height(void) const + ?clearUndoRedoStacks@QTextDocument@@QAEXW4Stacks@1@@Z @ 12613 NONAME ; void QTextDocument::clearUndoRedoStacks(enum QTextDocument::Stacks) + ?mapToViewRect@QGraphicsViewPrivate@@QBE?AVQRect@@PBVQGraphicsItem@@ABVQRectF@@@Z @ 12614 NONAME ; class QRect QGraphicsViewPrivate::mapToViewRect(class QGraphicsItem const *, class QRectF const &) const + ?findItems@QGraphicsViewPrivate@@QBE?AV?$QList@PAVQGraphicsItem@@@@ABVQRegion@@PA_NABVQTransform@@@Z @ 12615 NONAME ; class QList QGraphicsViewPrivate::findItems(class QRegion const &, bool *, class QTransform const &) const + ?constScanLine@QImage@@QBEPBEH@Z @ 12616 NONAME ; unsigned char const * QImage::constScanLine(int) const + ?text@QStaticText@@QBE?AVQString@@XZ @ 12617 NONAME ; class QString QStaticText::text(void) const + ?updateLastCenterPoint@QGraphicsViewPrivate@@QAEXXZ @ 12618 NONAME ; void QGraphicsViewPrivate::updateLastCenterPoint(void) + ?sideWidget@QWizard@@QBEPAVQWidget@@XZ @ 12619 NONAME ; class QWidget * QWizard::sideWidget(void) const + ?verticalScroll@QGraphicsViewPrivate@@QBE_JXZ @ 12620 NONAME ; long long QGraphicsViewPrivate::verticalScroll(void) const + ?fileInfoList@QZipReader@@QBE?AV?$QList@UFileInfo@QZipReader@@@@XZ @ 12621 NONAME ; class QList QZipReader::fileInfoList(void) const + ?setSideWidget@QWizard@@QAEXPAVQWidget@@@Z @ 12622 NONAME ; void QWizard::setSideWidget(class QWidget *) + ?paste@QLineControl@@QAEXW4Mode@QClipboard@@@Z @ 12623 NONAME ; void QLineControl::paste(enum QClipboard::Mode) + ?performanceHint@QStaticText@@QBE?AW4PerformanceHint@1@XZ @ 12624 NONAME ; enum QStaticText::PerformanceHint QStaticText::performanceHint(void) const + ?frameStartIndex@QPaintBuffer@@QBEHH@Z @ 12625 NONAME ; int QPaintBuffer::frameStartIndex(int) const + ??0QAbstractScrollAreaPrivate@@QAE@XZ @ 12626 NONAME ; QAbstractScrollAreaPrivate::QAbstractScrollAreaPrivate(void) + ?_q_setViewportCursor@QGraphicsViewPrivate@@QAEXABVQCursor@@@Z @ 12627 NONAME ; void QGraphicsViewPrivate::_q_setViewportCursor(class QCursor const &) + ?display@QEglContext@@QAEHXZ @ 12628 NONAME ; int QEglContext::display(void) + ?setPartialUpdateSupport@QWindowSurface@@IAEX_N@Z @ 12629 NONAME ; void QWindowSurface::setPartialUpdateSupport(bool) + ?transformChanged@QGraphicsItemPrivate@@UAEXXZ @ 12630 NONAME ; void QGraphicsItemPrivate::transformChanged(void) + ?setUserData@QStaticTextItem@@QAEXPAVQStaticTextUserData@@@Z @ 12631 NONAME ; void QStaticTextItem::setUserData(class QStaticTextUserData *) + ?isValid@FileInfo@QZipReader@@QBE_NXZ @ 12632 NONAME ; bool QZipReader::FileInfo::isValid(void) const + ?hasSelectedText@QLabel@@QBE_NXZ @ 12633 NONAME ; bool QLabel::hasSelectedText(void) const + ?size@QStaticText@@QBE?AVQSizeF@@XZ @ 12634 NONAME ; class QSizeF QStaticText::size(void) const + ?processCommands@QPainterReplayer@@QAEXABVQPaintBuffer@@PAVQPainter@@HH@Z @ 12635 NONAME ; void QPainterReplayer::processCommands(class QPaintBuffer const &, class QPainter *, int, int) + ?defaultConfig@QEgl@@YAHHW4API@1@V?$QFlags@W4ConfigOption@QEgl@@@@@Z @ 12636 NONAME ; int QEgl::defaultConfig(int, enum QEgl::API, class QFlags) + ??0QZipReader@@QAE@PAVQIODevice@@@Z @ 12637 NONAME ; QZipReader::QZipReader(class QIODevice *) + ?configAttrib@QEglContext@@QBEHH@Z @ 12638 NONAME ; int QEglContext::configAttrib(int) const + ?setAutoFillBackground@QGraphicsWidget@@QAEX_N@Z @ 12639 NONAME ; void QGraphicsWidget::setAutoFillBackground(bool) + ??4QStaticText@@QAEAAV0@ABV0@@Z @ 12640 NONAME ; class QStaticText & QStaticText::operator=(class QStaticText const &) + ?updateRegion@QGraphicsViewPrivate@@QAE_NABVQRectF@@ABVQTransform@@@Z @ 12641 NONAME ; bool QGraphicsViewPrivate::updateRegion(class QRectF const &, class QTransform const &) + ??9QStaticText@@QBE_NABV0@@Z @ 12642 NONAME ; bool QStaticText::operator!=(class QStaticText const &) const + ??_EQGraphicsViewPrivate@@UAE@I@Z @ 12643 NONAME ; QGraphicsViewPrivate::~QGraphicsViewPrivate(unsigned int) + ?status@QZipReader@@QBE?AW4Status@1@XZ @ 12644 NONAME ; enum QZipReader::Status QZipReader::status(void) const + ?autoFillBackground@QGraphicsWidget@@QBE_NXZ @ 12645 NONAME ; bool QGraphicsWidget::autoFillBackground(void) const + ?createTextureData@QImageTextureGlyphCache@@UAEXHH@Z @ 12646 NONAME ; void QImageTextureGlyphCache::createTextureData(int, int) + ?image@QImageTextureGlyphCache@@QBEABVQImage@@XZ @ 12647 NONAME ; class QImage const & QImageTextureGlyphCache::image(void) const + ?extensions@QEgl@@YA?AVQString@@XZ @ 12648 NONAME ; class QString QEgl::extensions(void) + ?pageRemoved@QWizard@@IAEXH@Z @ 12649 NONAME ; void QWizard::pageRemoved(int) + ?init@QAbstractScrollAreaPrivate@@QAEXXZ @ 12650 NONAME ; void QAbstractScrollAreaPrivate::init(void) + ?mapRectToScene@QGraphicsViewPrivate@@QBE?AVQRectF@@ABVQRect@@@Z @ 12651 NONAME ; class QRectF QGraphicsViewPrivate::mapRectToScene(class QRect const &) const + ?width@QGraphicsItemPrivate@@UBEMXZ @ 12652 NONAME ; float QGraphicsItemPrivate::width(void) const + ?toPolygon@QBezier@@QBE?AVQPolygonF@@M@Z @ 12653 NONAME ; class QPolygonF QBezier::toPolygon(float) const + ?freeStyleOptionsArray@QGraphicsViewPrivate@@QAEXPAVQStyleOptionGraphicsItem@@@Z @ 12654 NONAME ; void QGraphicsViewPrivate::freeStyleOptionsArray(class QStyleOptionGraphicsItem *) + ?visibilityChanged@QToolBar@@IAEX_N@Z @ 12655 NONAME ; void QToolBar::visibilityChanged(bool) + ?updateInputMethodSensitivity@QGraphicsViewPrivate@@QAEXXZ @ 12656 NONAME ; void QGraphicsViewPrivate::updateInputMethodSensitivity(void) + ?glyphMargin@QImageTextureGlyphCache@@UBEHXZ @ 12657 NONAME ; int QImageTextureGlyphCache::glyphMargin(void) const + ?setTextFormat@QStaticText@@QAEXW4TextFormat@Qt@@@Z @ 12658 NONAME ; void QStaticText::setTextFormat(enum Qt::TextFormat) + ?storeDragDropEvent@QGraphicsViewPrivate@@QAEXPBVQGraphicsSceneDragDropEvent@@@Z @ 12659 NONAME ; void QGraphicsViewPrivate::storeDragDropEvent(class QGraphicsSceneDragDropEvent const *) + ?updateRect@QGraphicsViewPrivate@@QAE_NABVQRect@@@Z @ 12660 NONAME ; bool QGraphicsViewPrivate::updateRect(class QRect const &) + ?fileData@QZipReader@@QBE?AVQByteArray@@ABVQString@@@Z @ 12661 NONAME ; class QByteArray QZipReader::fileData(class QString const &) const + ?translateTouchEvent@QGraphicsViewPrivate@@SAXPAV1@PAVQTouchEvent@@@Z @ 12662 NONAME ; void QGraphicsViewPrivate::translateTouchEvent(class QGraphicsViewPrivate *, class QTouchEvent *) + ?dispatchPendingUpdateRequests@QGraphicsViewPrivate@@QAEXXZ @ 12663 NONAME ; void QGraphicsViewPrivate::dispatchPendingUpdateRequests(void) + ?updatePaintedViewBoundingRects@QGraphicsItemPrivate@@QAEX_N@Z @ 12664 NONAME ; void QGraphicsItemPrivate::updatePaintedViewBoundingRects(bool) + ?setHeight@QGraphicsItemPrivate@@UAEXM@Z @ 12665 NONAME ; void QGraphicsItemPrivate::setHeight(float) + ?isValidColor@QColor@@SA_NABVQString@@@Z @ 12666 NONAME ; bool QColor::isValidColor(class QString const &) + ??0QStaticTextItem@@QAE@XZ @ 12667 NONAME ; QStaticTextItem::QStaticTextItem(void) + ?updateMicroFocus@QGraphicsItem@@IAEXXZ @ 12668 NONAME ; void QGraphicsItem::updateMicroFocus(void) + ??1QStaticText@@QAE@XZ @ 12669 NONAME ; QStaticText::~QStaticText(void) + ?nativePixmap@QEgl@@YAPAXPAVQPixmap@@@Z @ 12670 NONAME ; void * QEgl::nativePixmap(class QPixmap *) + ?render@QWidgetPrivate@@QAEXPAVQPaintDevice@@ABVQPoint@@ABVQRegion@@V?$QFlags@W4RenderFlag@QWidget@@@@_N@Z @ 12671 NONAME ; void QWidgetPrivate::render(class QPaintDevice *, class QPoint const &, class QRegion const &, class QFlags, bool) + ?constBits@QImage@@QBEPBEXZ @ 12672 NONAME ; unsigned char const * QImage::constBits(void) const + ??8QStaticText@@QBE_NABV0@@Z @ 12673 NONAME ; bool QStaticText::operator==(class QStaticText const &) const + ??0FileInfo@QZipReader@@QAE@XZ @ 12674 NONAME ; QZipReader::FileInfo::FileInfo(void) + ?q_func@QGraphicsViewPrivate@@ABEPBVQGraphicsView@@XZ @ 12675 NONAME ; class QGraphicsView const * QGraphicsViewPrivate::q_func(void) const + ?textFormat@QStaticText@@QBE?AW4TextFormat@Qt@@XZ @ 12676 NONAME ; enum Qt::TextFormat QStaticText::textFormat(void) const + ?isReadable@QZipReader@@QBE_NXZ @ 12677 NONAME ; bool QZipReader::isReadable(void) const + ?getPixmapCursor@QApplicationPrivate@@QAE?AVQPixmap@@W4CursorShape@Qt@@@Z @ 12678 NONAME ; class QPixmap QApplicationPrivate::getPixmapCursor(enum Qt::CursorShape) + ?entryInfoAt@QZipReader@@QBE?AUFileInfo@1@H@Z @ 12679 NONAME ; struct QZipReader::FileInfo QZipReader::entryInfoAt(int) const + ?children_append@QGraphicsItemPrivate@@SAXPAV?$QDeclarativeListProperty@VQGraphicsObject@@@@PAVQGraphicsObject@@@Z @ 12680 NONAME ; void QGraphicsItemPrivate::children_append(class QDeclarativeListProperty *, class QGraphicsObject *) + ?hasPartialUpdateSupport@QWindowSurface@@QBE_NXZ @ 12681 NONAME ; bool QWindowSurface::hasPartialUpdateSupport(void) const + ?storeMouseEvent@QGraphicsViewPrivate@@QAEXPAVQMouseEvent@@@Z @ 12682 NONAME ; void QGraphicsViewPrivate::storeMouseEvent(class QMouseEvent *) + ?mapToScene@QGraphicsViewPrivate@@QBE?AVQPointF@@ABV2@@Z @ 12683 NONAME ; class QPointF QGraphicsViewPrivate::mapToScene(class QPointF const &) const + ?display@QEgl@@YAHXZ @ 12684 NONAME ; int QEgl::display(void) + ?drawStaticText@QPainter@@QAEXABVQPoint@@ABVQStaticText@@@Z @ 12685 NONAME ; void QPainter::drawStaticText(class QPoint const &, class QStaticText const &) + ?fillTexture@QImageTextureGlyphCache@@UAEXABUCoord@QTextureGlyphCache@@I@Z @ 12686 NONAME ; void QImageTextureGlyphCache::fillTexture(struct QTextureGlyphCache::Coord const &, unsigned int) + ?addToPolygon@QBezier@@QBEXPAVQPolygonF@@M@Z @ 12687 NONAME ; void QBezier::addToPolygon(class QPolygonF *, float) const + ?eglCreateImageKHR@QEgl@@YAHHHHHPBH@Z @ 12688 NONAME ; int QEgl::eglCreateImageKHR(int, int, int, int, int const *) + ?resetWidth@QGraphicsItemPrivate@@UAEXXZ @ 12689 NONAME ; void QGraphicsItemPrivate::resetWidth(void) + ?detach@QStaticText@@AAEXXZ @ 12690 NONAME ; void QStaticText::detach(void) + ?totalUsed@QPixmapCache@@SAHXZ @ 12691 NONAME ; int QPixmapCache::totalUsed(void) + ??0QKeySequence@@QAE@ABVQString@@W4SequenceFormat@0@@Z @ 12692 NONAME ; QKeySequence::QKeySequence(class QString const &, enum QKeySequence::SequenceFormat) + ?device@QZipReader@@QBEPAVQIODevice@@XZ @ 12693 NONAME ; class QIODevice * QZipReader::device(void) const + ?hasExtension@QEgl@@YA_NPBD@Z @ 12694 NONAME ; bool QEgl::hasExtension(char const *) + ?mapRectFromScene@QGraphicsViewPrivate@@QBE?AVQRectF@@ABV2@@Z @ 12695 NONAME ; class QRectF QGraphicsViewPrivate::mapRectFromScene(class QRectF const &) const + ?commandDescription@QPaintBuffer@@QBE?AVQString@@H@Z @ 12696 NONAME ; class QString QPaintBuffer::commandDescription(int) const + ?layoutChanged@QGraphicsWidget@@IAEXXZ @ 12697 NONAME ; void QGraphicsWidget::layoutChanged(void) + ??0QGraphicsViewPrivate@@QAE@XZ @ 12698 NONAME ; QGraphicsViewPrivate::QGraphicsViewPrivate(void) + ?anchorAt@QPlainTextEdit@@QBE?AVQString@@ABVQPoint@@@Z @ 12699 NONAME ; class QString QPlainTextEdit::anchorAt(class QPoint const &) const + ?getSubRange@QBezier@@QBE?AV1@MM@Z @ 12700 NONAME ; class QBezier QBezier::getSubRange(float, float) const + ?replaceScrollBar@QAbstractScrollAreaPrivate@@QAEXPAVQScrollBar@@W4Orientation@Qt@@@Z @ 12701 NONAME ; void QAbstractScrollAreaPrivate::replaceScrollBar(class QScrollBar *, enum Qt::Orientation) + ?mapToViewRegion@QGraphicsViewPrivate@@QBE?AVQRegion@@PBVQGraphicsItem@@ABVQRectF@@@Z @ 12702 NONAME ; class QRegion QGraphicsViewPrivate::mapToViewRegion(class QGraphicsItem const *, class QRectF const &) const + ?allPixmaps@QPixmapCache@@SA?AV?$QList@U?$QPair@VQString@@VQPixmap@@@@@@XZ @ 12703 NONAME ; class QList > QPixmapCache::allPixmaps(void) + ??_EQAbstractScrollAreaPrivate@@UAE@I@Z @ 12704 NONAME ; QAbstractScrollAreaPrivate::~QAbstractScrollAreaPrivate(unsigned int) + ?pageAdded@QWizard@@IAEXH@Z @ 12705 NONAME ; void QWizard::pageAdded(int) + ?populate@QTextureGlyphCache@@QAEXPAVQFontEngine@@HPBIPBUQFixedPoint@@@Z @ 12706 NONAME ; void QTextureGlyphCache::populate(class QFontEngine *, int, unsigned int const *, struct QFixedPoint const *) + ??1QStaticTextItem@@QAE@XZ @ 12707 NONAME ; QStaticTextItem::~QStaticTextItem(void) + ?populateSceneDragDropEvent@QGraphicsViewPrivate@@QAEXPAVQGraphicsSceneDragDropEvent@@PAVQDropEvent@@@Z @ 12708 NONAME ; void QGraphicsViewPrivate::populateSceneDragDropEvent(class QGraphicsSceneDragDropEvent *, class QDropEvent *) + ?updateAll@QGraphicsViewPrivate@@QAEXXZ @ 12709 NONAME ; void QGraphicsViewPrivate::updateAll(void) + ?nativeWindow@QEgl@@YAPAXPAVQWidget@@@Z @ 12710 NONAME ; void * QEgl::nativeWindow(class QWidget *) + ?children_count@QGraphicsItemPrivate@@SAHPAV?$QDeclarativeListProperty@VQGraphicsObject@@@@@Z @ 12711 NONAME ; int QGraphicsItemPrivate::children_count(class QDeclarativeListProperty *) + ?allocStyleOptionsArray@QGraphicsViewPrivate@@QAEPAVQStyleOptionGraphicsItem@@H@Z @ 12712 NONAME ; class QStyleOptionGraphicsItem * QGraphicsViewPrivate::allocStyleOptionsArray(int) + ?resizeTextureData@QImageTextureGlyphCache@@UAEXHH@Z @ 12713 NONAME ; void QImageTextureGlyphCache::resizeTextureData(int, int) + ?drawPixmapFragments@QPainter@@QAEXPBVPixmapFragment@1@HABVQPixmap@@V?$QFlags@W4PixmapFragmentHint@QPainter@@@@@Z @ 12714 NONAME ; void QPainter::drawPixmapFragments(class QPainter::PixmapFragment const *, int, class QPixmap const &, class QFlags) + ?setColorFromString@QColor@@AAE_NABVQString@@@Z @ 12715 NONAME ; bool QColor::setColorFromString(class QString const &) + ??1QAbstractScrollAreaPrivate@@UAE@XZ @ 12716 NONAME ; QAbstractScrollAreaPrivate::~QAbstractScrollAreaPrivate(void) + ?setText@QStaticText@@QAEXABVQString@@@Z @ 12717 NONAME ; void QStaticText::setText(class QString const &) + ?bitPlaneCount@QImage@@QBEHXZ @ 12718 NONAME ; int QImage::bitPlaneCount(void) const + ?_q_unsetViewportCursor@QGraphicsViewPrivate@@QAEXXZ @ 12719 NONAME ; void QGraphicsViewPrivate::_q_unsetViewportCursor(void) + ?setUpdateClip@QGraphicsViewPrivate@@QAEXPAVQGraphicsItem@@@Z @ 12720 NONAME ; void QGraphicsViewPrivate::setUpdateClip(class QGraphicsItem *) + ?resetHeight@QGraphicsItemPrivate@@UAEXXZ @ 12721 NONAME ; void QGraphicsItemPrivate::resetHeight(void) + ?runtimeData@QPixmapData@@UBEPAV1@XZ @ 12722 NONAME ; class QPixmapData * QPixmapData::runtimeData(void) const + ?selectedText@QLabel@@QBE?AVQString@@XZ @ 12723 NONAME ; class QString QLabel::selectedText(void) const + ?childrenList@QGraphicsItemPrivate@@QAE?AV?$QDeclarativeListProperty@VQGraphicsObject@@@@XZ @ 12724 NONAME ; class QDeclarativeListProperty QGraphicsItemPrivate::childrenList(void) + ?childrenChanged@QGraphicsObject@@IAEXXZ @ 12725 NONAME ; void QGraphicsObject::childrenChanged(void) + ?recalculateContentSize@QGraphicsViewPrivate@@QAEXXZ @ 12726 NONAME ; void QGraphicsViewPrivate::recalculateContentSize(void) + ?heightChanged@QGraphicsObject@@IAEXXZ @ 12727 NONAME ; void QGraphicsObject::heightChanged(void) + ?name@QIcon@@QBE?AVQString@@XZ @ 12728 NONAME ; class QString QIcon::name(void) const + ?errorString@QEgl@@YA?AVQString@@H@Z @ 12729 NONAME ; class QString QEgl::errorString(int) + ??4FileInfo@QZipReader@@QAEAAU01@ABU01@@Z @ 12730 NONAME ; struct QZipReader::FileInfo & QZipReader::FileInfo::operator=(struct QZipReader::FileInfo const &) + ??1QGraphicsViewPrivate@@UAE@XZ @ 12731 NONAME ; QGraphicsViewPrivate::~QGraphicsViewPrivate(void) + ?chooseConfig@QEgl@@YAHPBVQEglProperties@@W4PixelFormatMatch@1@@Z @ 12732 NONAME ; int QEgl::chooseConfig(class QEglProperties const *, enum QEgl::PixelFormatMatch) + ?prependGraphicsTransform@QGraphicsItemPrivate@@QAEXPAVQGraphicsTransform@@@Z @ 12733 NONAME ; void QGraphicsItemPrivate::prependGraphicsTransform(class QGraphicsTransform *) + ?eglDestroyImageKHR@QEgl@@YAHHH@Z @ 12734 NONAME ; int QEgl::eglDestroyImageKHR(int, int) + ?qt_draw_glyphs@@YAXPAVQPainter@@PBIPBVQPointF@@H@Z @ 12735 NONAME ; void qt_draw_glyphs(class QPainter *, unsigned int const *, class QPointF const *, int) + ?isEmpty@QItemSelectionRange@@QBE_NXZ @ 12736 NONAME ; bool QItemSelectionRange::isEmpty(void) const + ?count@QZipReader@@QBEHXZ @ 12737 NONAME ; int QZipReader::count(void) const + ?centerView@QGraphicsViewPrivate@@QAEXW4ViewportAnchor@QGraphicsView@@@Z @ 12738 NONAME ; void QGraphicsViewPrivate::centerView(enum QGraphicsView::ViewportAnchor) + ?contentsOffset@QAbstractScrollAreaPrivate@@UBE?AVQPoint@@XZ @ 12739 NONAME ; class QPoint QAbstractScrollAreaPrivate::contentsOffset(void) const + ?_q_vslide@QAbstractScrollAreaPrivate@@QAEXH@Z @ 12740 NONAME ; void QAbstractScrollAreaPrivate::_q_vslide(int) + ??1QZipReader@@QAE@XZ @ 12741 NONAME ; QZipReader::~QZipReader(void) + ??_EQImageTextureGlyphCache@@UAE@I@Z @ 12742 NONAME ; QImageTextureGlyphCache::~QImageTextureGlyphCache(unsigned int) + ?drawPixmapFragments@QPaintEngineEx@@UAEXPBVPixmapFragment@QPainter@@HABVQPixmap@@V?$QFlags@W4PixmapFragmentHint@QPainter@@@@@Z @ 12743 NONAME ; void QPaintEngineEx::drawPixmapFragments(class QPainter::PixmapFragment const *, int, class QPixmap const &, class QFlags) + ?nativeDisplay@QEgl@@YAHXZ @ 12744 NONAME ; int QEgl::nativeDisplay(void) + ?layoutChildren@QAbstractScrollAreaPrivate@@QAEXXZ @ 12745 NONAME ; void QAbstractScrollAreaPrivate::layoutChildren(void) + ?horizontalScroll@QGraphicsViewPrivate@@QBE_JXZ @ 12746 NONAME ; long long QGraphicsViewPrivate::horizontalScroll(void) const + ?updateRectF@QGraphicsViewPrivate@@QAE_NABVQRectF@@@Z @ 12747 NONAME ; bool QGraphicsViewPrivate::updateRectF(class QRectF const &) + ?setPlaceholderText@QLineEdit@@QAEXABVQString@@@Z @ 12748 NONAME ; void QLineEdit::setPlaceholderText(class QString const &) + ?resizeEvent@QSplitterHandle@@MAEXPAVQResizeEvent@@@Z @ 12749 NONAME ; void QSplitterHandle::resizeEvent(class QResizeEvent *) + ?drawStaticText@QPainter@@QAEXHHABVQStaticText@@@Z @ 12750 NONAME ; void QPainter::drawStaticText(int, int, class QStaticText const &) + ?setSelection@QLabel@@QAEXHH@Z @ 12751 NONAME ; void QLabel::setSelection(int, int) + ?q_func@QAbstractScrollAreaPrivate@@AAEPAVQAbstractScrollArea@@XZ @ 12752 NONAME ; class QAbstractScrollArea * QAbstractScrollAreaPrivate::q_func(void) + ?updateMicroFocus@QGraphicsObject@@IAEXXZ @ 12753 NONAME ; void QGraphicsObject::updateMicroFocus(void) + ?drawStaticText@QPainter@@QAEXABVQPointF@@ABVQStaticText@@@Z @ 12754 NONAME ; void QPainter::drawStaticText(class QPointF const &, class QStaticText const &) + ?processPendingUpdates@QGraphicsViewPrivate@@QAEXXZ @ 12755 NONAME ; void QGraphicsViewPrivate::processPendingUpdates(void) + ?rubberBandRegion@QGraphicsViewPrivate@@QBE?AVQRegion@@PBVQWidget@@ABVQRect@@@Z @ 12756 NONAME ; class QRegion QGraphicsViewPrivate::rubberBandRegion(class QWidget const *, class QRect const &) const + ?children_at@QGraphicsItemPrivate@@SAPAVQGraphicsObject@@PAV?$QDeclarativeListProperty@VQGraphicsObject@@@@H@Z @ 12757 NONAME ; class QGraphicsObject * QGraphicsItemPrivate::children_at(class QDeclarativeListProperty *, int) + ?widthChanged@QGraphicsObject@@IAEXXZ @ 12758 NONAME ; void QGraphicsObject::widthChanged(void) + ?_q_showOrHideScrollBars@QAbstractScrollAreaPrivate@@QAEXXZ @ 12759 NONAME ; void QAbstractScrollAreaPrivate::_q_showOrHideScrollBars(void) + ?mouseMoveEventHandler@QGraphicsViewPrivate@@QAEXPAVQMouseEvent@@@Z @ 12760 NONAME ; void QGraphicsViewPrivate::mouseMoveEventHandler(class QMouseEvent *) + ?replayLastMouseEvent@QGraphicsViewPrivate@@QAEXXZ @ 12761 NONAME ; void QGraphicsViewPrivate::replayLastMouseEvent(void) + ??0QStaticText@@QAE@ABVQString@@@Z @ 12762 NONAME ; QStaticText::QStaticText(class QString const &) + ?close@QZipReader@@QAEXXZ @ 12763 NONAME ; void QZipReader::close(void) + ?geometryChanged@QGraphicsWidget@@IAEXXZ @ 12764 NONAME ; void QGraphicsWidget::geometryChanged(void) + ?setCurveThreshold@QStrokerOps@@QAEXM@Z @ 12765 NONAME ; void QStrokerOps::setCurveThreshold(float) + ?_q_hslide@QAbstractScrollAreaPrivate@@QAEXH@Z @ 12766 NONAME ; void QAbstractScrollAreaPrivate::_q_hslide(int) + ?selectionStart@QLabel@@QBEHXZ @ 12767 NONAME ; int QLabel::selectionStart(void) const + ??0QStaticText@@QAE@XZ @ 12768 NONAME ; QStaticText::QStaticText(void) + ?curveThreshold@QStrokerOps@@QBEMXZ @ 12769 NONAME ; float QStrokerOps::curveThreshold(void) const + ?iconName@QIconEngineV2@@QAE?AVQString@@XZ @ 12770 NONAME ; class QString QIconEngineV2::iconName(void) + ?mapBy@QBezier@@QBE?AV1@ABVQTransform@@@Z @ 12771 NONAME ; class QBezier QBezier::mapBy(class QTransform const &) const + ??0QZipReader@@QAE@ABVQString@@V?$QFlags@W4OpenModeFlag@QIODevice@@@@@Z @ 12772 NONAME ; QZipReader::QZipReader(class QString const &, class QFlags) + ?flushDetachedPixmaps@QPixmapCache@@SAXXZ @ 12773 NONAME ; void QPixmapCache::flushDetachedPixmaps(void) + ?exists@QZipReader@@QBE_NXZ @ 12774 NONAME ; bool QZipReader::exists(void) const + ?prepare@QStaticText@@QAEXABVQTransform@@ABVQFont@@@Z @ 12775 NONAME ; void QStaticText::prepare(class QTransform const &, class QFont const &) + ?paste@QTextControl@@QAEXW4Mode@QClipboard@@@Z @ 12776 NONAME ; void QTextControl::paste(enum QClipboard::Mode) + ?horizontalAdvance@QTextLine@@QBEMXZ @ 12777 NONAME ; float QTextLine::horizontalAdvance(void) const + ?setCurveThresholdFromTransform@QStrokerOps@@QAEXABVQTransform@@@Z @ 12778 NONAME ; void QStrokerOps::setCurveThresholdFromTransform(class QTransform const &) + ?textWidth@QStaticText@@QBEMXZ @ 12779 NONAME ; float QStaticText::textWidth(void) const + ?create@PixmapFragment@QPainter@@SA?AV12@ABVQPointF@@ABVQRectF@@MMMM@Z @ 12780 NONAME ; class QPainter::PixmapFragment QPainter::PixmapFragment::create(class QPointF const &, class QRectF const &, float, float, float, float) + ?extractAll@QZipReader@@QBE_NABVQString@@@Z @ 12781 NONAME ; bool QZipReader::extractAll(class QString const &) const + ??0FileInfo@QZipReader@@QAE@ABU01@@Z @ 12782 NONAME ; QZipReader::FileInfo::FileInfo(struct QZipReader::FileInfo const &) + ?setTextWidth@QStaticText@@QAEXM@Z @ 12783 NONAME ; void QStaticText::setTextWidth(float) + ?fixup@QIntValidator@@UBEXAAVQString@@@Z @ 12784 NONAME ; void QIntValidator::fixup(class QString &) const + ?dumpAllConfigs@QEgl@@YAXXZ @ 12785 NONAME ; void QEgl::dumpAllConfigs(void) + ?assign@QKeySequence@@AAEHABVQString@@W4SequenceFormat@1@@Z @ 12786 NONAME ; int QKeySequence::assign(class QString const &, enum QKeySequence::SequenceFormat) + ?q_func@QAbstractScrollAreaPrivate@@ABEPBVQAbstractScrollArea@@XZ @ 12787 NONAME ; class QAbstractScrollArea const * QAbstractScrollAreaPrivate::q_func(void) const + ?mapToScene@QGraphicsViewPrivate@@QBE?AVQRectF@@ABV2@@Z @ 12788 NONAME ; class QRectF QGraphicsViewPrivate::mapToScene(class QRectF const &) const + ?updateScroll@QGraphicsViewPrivate@@QAEXXZ @ 12789 NONAME ; void QGraphicsViewPrivate::updateScroll(void) + ?directoryLoaded@QFileSystemModel@@IAEXABVQString@@@Z @ 12790 NONAME ; void QFileSystemModel::directoryLoaded(class QString const &) + ?placeholderText@QLineEdit@@QBE?AVQString@@XZ @ 12791 NONAME ; class QString QLineEdit::placeholderText(void) const + ?setWidth@QGraphicsItemPrivate@@UAEXM@Z @ 12792 NONAME ; void QGraphicsItemPrivate::setWidth(float) + ?q_func@QGraphicsViewPrivate@@AAEPAVQGraphicsView@@XZ @ 12793 NONAME ; class QGraphicsView * QGraphicsViewPrivate::q_func(void) + ?setDeviceType@QEglProperties@@QAEXH@Z @ 12794 NONAME ; void QEglProperties::setDeviceType(int) + ?convertFromImage@QPixmap@@QAE_NABVQImage@@V?$QFlags@W4ImageConversionFlag@Qt@@@@@Z @ 12795 NONAME ; bool QPixmap::convertFromImage(class QImage const &, class QFlags) + ?processCommands@QPaintBuffer@@QBEHPAVQPainter@@HH@Z @ 12796 NONAME ; int QPaintBuffer::processCommands(class QPainter *, int, int) const + ?glyphPadding@QTextureGlyphCache@@UBEHXZ @ 12797 NONAME ; int QTextureGlyphCache::glyphPadding(void) const + ??1FileInfo@QZipReader@@QAE@XZ @ 12798 NONAME ; QZipReader::FileInfo::~FileInfo(void) + ?scrollBarPolicyChanged@QAbstractScrollAreaPrivate@@UAEXW4Orientation@Qt@@W4ScrollBarPolicy@3@@Z @ 12799 NONAME ; void QAbstractScrollAreaPrivate::scrollBarPolicyChanged(enum Qt::Orientation, enum Qt::ScrollBarPolicy) + ?createSurface@QEgl@@YAHPAVQPaintDevice@@HPBVQEglProperties@@@Z @ 12800 NONAME ; int QEgl::createSurface(class QPaintDevice *, int, class QEglProperties const *) + ?viewportEvent@QAbstractScrollAreaPrivate@@QAE_NPAVQEvent@@@Z @ 12801 NONAME ; bool QAbstractScrollAreaPrivate::viewportEvent(class QEvent *) + ?frameEndIndex@QPaintBuffer@@QBEHH@Z @ 12802 NONAME ; int QPaintBuffer::frameEndIndex(int) const + ??1QImageTextureGlyphCache@@UAE@XZ @ 12803 NONAME ; QImageTextureGlyphCache::~QImageTextureGlyphCache(void) + ?setPerformanceHint@QStaticText@@QAEXW4PerformanceHint@1@@Z @ 12804 NONAME ; void QStaticText::setPerformanceHint(enum QStaticText::PerformanceHint) + ??0QStaticText@@QAE@ABV0@@Z @ 12805 NONAME ; QStaticText::QStaticText(class QStaticText const &) + ??0QImageTextureGlyphCache@@QAE@W4Type@QFontEngineGlyphCache@@ABVQTransform@@@Z @ 12806 NONAME ; QImageTextureGlyphCache::QImageTextureGlyphCache(enum QFontEngineGlyphCache::Type, class QTransform const &) diff --git a/src/s60installs/eabi/QtCoreu.def b/src/s60installs/eabi/QtCoreu.def index 5dc282c..0590d39 100644 --- a/src/s60installs/eabi/QtCoreu.def +++ b/src/s60installs/eabi/QtCoreu.def @@ -622,9 +622,9 @@ EXPORTS _ZN14QObjectPrivate14deleteChildrenEv @ 621 NONAME _ZN14QObjectPrivate14setDeleteWatchEPS_Pi @ 622 NONAME _ZN14QObjectPrivate16resetDeleteWatchEPS_Pii @ 623 NONAME - _ZN14QObjectPrivate16setCurrentSenderEP7QObjectPNS_6SenderE @ 624 NONAME + _ZN14QObjectPrivate16setCurrentSenderEP7QObjectPNS_6SenderE @ 624 NONAME ABSENT _ZN14QObjectPrivate16setParent_helperEP7QObject @ 625 NONAME - _ZN14QObjectPrivate18resetCurrentSenderEP7QObjectPNS_6SenderES3_ @ 626 NONAME + _ZN14QObjectPrivate18resetCurrentSenderEP7QObjectPNS_6SenderES3_ @ 626 NONAME ABSENT _ZN14QObjectPrivate19_q_reregisterTimersEPv @ 627 NONAME _ZN14QObjectPrivate19moveToThread_helperEv @ 628 NONAME _ZN14QObjectPrivate20cleanConnectionListsEv @ 629 NONAME @@ -803,9 +803,9 @@ EXPORTS _ZN16QCoreApplicationD0Ev @ 802 NONAME _ZN16QCoreApplicationD1Ev @ 803 NONAME _ZN16QCoreApplicationD2Ev @ 804 NONAME - _ZN16QDeclarativeDataD0Ev @ 805 NONAME - _ZN16QDeclarativeDataD1Ev @ 806 NONAME - _ZN16QDeclarativeDataD2Ev @ 807 NONAME + _ZN16QDeclarativeDataD0Ev @ 805 NONAME ABSENT + _ZN16QDeclarativeDataD1Ev @ 806 NONAME ABSENT + _ZN16QDeclarativeDataD2Ev @ 807 NONAME ABSENT _ZN16QEventTransition11qt_metacallEN11QMetaObject4CallEiPPv @ 808 NONAME _ZN16QEventTransition11qt_metacastEPKc @ 809 NONAME _ZN16QEventTransition12onTransitionEP6QEvent @ 810 NONAME @@ -3332,7 +3332,7 @@ EXPORTS _ZTI15QPauseAnimation @ 3331 NONAME _ZTI15QSocketNotifier @ 3332 NONAME _ZTI16QCoreApplication @ 3333 NONAME - _ZTI16QDeclarativeData @ 3334 NONAME + _ZTI16QDeclarativeData @ 3334 NONAME ABSENT _ZTI16QEventTransition @ 3335 NONAME _ZTI16QIODevicePrivate @ 3336 NONAME _ZTI16QTextCodecPlugin @ 3337 NONAME @@ -3407,7 +3407,7 @@ EXPORTS _ZTV15QPauseAnimation @ 3406 NONAME _ZTV15QSocketNotifier @ 3407 NONAME _ZTV16QCoreApplication @ 3408 NONAME - _ZTV16QDeclarativeData @ 3409 NONAME + _ZTV16QDeclarativeData @ 3409 NONAME ABSENT _ZTV16QEventTransition @ 3410 NONAME _ZTV16QIODevicePrivate @ 3411 NONAME _ZTV16QTextCodecPlugin @ 3412 NONAME @@ -3654,4 +3654,55 @@ EXPORTS _Z40QBasicAtomicPointer_fetchAndStoreReleasePVPvS_ @ 3653 NONAME _ZN10QTextCodec11validCodecsEv @ 3654 NONAME _ZN20QStateMachinePrivate12clearHistoryEv @ 3655 NONAME + _Z14qDecodeDataUrlRK4QUrl @ 3656 NONAME + _Z18qDetectCPUFeaturesv @ 3657 NONAME + _ZN10QByteArray10setRawDataEPKcj @ 3658 NONAME + _ZN10QByteArray7replaceEiiPKci @ 3659 NONAME + _ZN12QTextDecoderC1EPK10QTextCodec6QFlagsINS0_14ConversionFlagEE @ 3660 NONAME + _ZN12QTextDecoderC2EPK10QTextCodec6QFlagsINS0_14ConversionFlagEE @ 3661 NONAME + _ZN12QTextEncoderC1EPK10QTextCodec6QFlagsINS0_14ConversionFlagEE @ 3662 NONAME + _ZN12QTextEncoderC2EPK10QTextCodec6QFlagsINS0_14ConversionFlagEE @ 3663 NONAME + _ZN13QElapsedTimer10invalidateEv @ 3664 NONAME + _ZN13QElapsedTimer11isMonotonicEv @ 3665 NONAME + _ZN13QElapsedTimer5startEv @ 3666 NONAME + _ZN13QElapsedTimer7restartEv @ 3667 NONAME + _ZN13QElapsedTimer9clockTypeEv @ 3668 NONAME + _ZN23QCoreApplicationPrivate11symbianInitEv @ 3669 NONAME + _ZN23QEventDispatcherSymbian11qt_metacallEN11QMetaObject4CallEiPPv @ 3670 NONAME + _ZN23QEventDispatcherSymbian11qt_metacastEPKc @ 3671 NONAME + _ZN23QEventDispatcherSymbian12selectThreadEv @ 3672 NONAME + _ZN23QEventDispatcherSymbian16staticMetaObjectE @ 3673 NONAME DATA 16 + _ZN23QEventDispatcherSymbian19getStaticMetaObjectEv @ 3674 NONAME + _ZN24QAbstractDeclarativeData13parentChangedE @ 3675 NONAME DATA 4 + _ZN24QAbstractDeclarativeData9destroyedE @ 3676 NONAME DATA 4 + _ZN7QString10setRawDataEPK5QChari @ 3677 NONAME + _ZN7QStringC1EPK5QChar @ 3678 NONAME + _ZN7QStringC2EPK5QChar @ 3679 NONAME + _ZN8QVariantC1ERK12QEasingCurve @ 3680 NONAME + _ZN8QVariantC2ERK12QEasingCurve @ 3681 NONAME + _ZN9QDateTime18currentDateTimeUtcEv @ 3682 NONAME + _ZN9QDateTime18setMSecsSinceEpochEx @ 3683 NONAME + _ZN9QDateTime19fromMSecsSinceEpochEx @ 3684 NONAME + _ZN9QDateTime22currentMSecsSinceEpochEv @ 3685 NONAME + _ZN9QListData11detach_growEPii @ 3686 NONAME + _ZN9QListData6appendEi @ 3687 NONAME + _ZN9QListData6detachEi @ 3688 NONAME + _ZN9QMetaType15registerTypedefEPKci @ 3689 NONAME + _ZN9QMetaType23registerStreamOperatorsEiPFvR11QDataStreamPKvEPFvS1_PvE @ 3690 NONAME + _ZNK10QTextCodec11makeDecoderE6QFlagsINS_14ConversionFlagEE @ 3691 NONAME + _ZNK10QTextCodec11makeEncoderE6QFlagsINS_14ConversionFlagEE @ 3692 NONAME + _ZNK13QElapsedTimer10hasExpiredEx @ 3693 NONAME + _ZNK13QElapsedTimer19msecsSinceReferenceEv @ 3694 NONAME + _ZNK13QElapsedTimer6secsToERKS_ @ 3695 NONAME + _ZNK13QElapsedTimer7elapsedEv @ 3696 NONAME + _ZNK13QElapsedTimer7isValidEv @ 3697 NONAME + _ZNK13QElapsedTimer7msecsToERKS_ @ 3698 NONAME + _ZNK23QEventDispatcherSymbian10metaObjectEv @ 3699 NONAME + _ZNK6QState11transitionsEv @ 3700 NONAME + _ZNK8QVariant13toEasingCurveEv @ 3701 NONAME + _ZNK9QDateTime17toMSecsSinceEpochEv @ 3702 NONAME + _ZNK9QDateTime7msecsToERKS_ @ 3703 NONAME + _ZlsR11QDataStreamRK12QEasingCurve @ 3704 NONAME + _ZltRK13QElapsedTimerS1_ @ 3705 NONAME + _ZrsR11QDataStreamR12QEasingCurve @ 3706 NONAME diff --git a/src/s60installs/eabi/QtDeclarativeu.def b/src/s60installs/eabi/QtDeclarativeu.def index a26e193..320a780 100644 --- a/src/s60installs/eabi/QtDeclarativeu.def +++ b/src/s60installs/eabi/QtDeclarativeu.def @@ -1019,7 +1019,7 @@ EXPORTS _ZN21QDeclarativeFlickable11setContentYEf @ 1018 NONAME _ZN21QDeclarativeFlickable11visibleAreaEv @ 1019 NONAME _ZN21QDeclarativeFlickable12flickStartedEv @ 1020 NONAME - _ZN21QDeclarativeFlickable12setOverShootEb @ 1021 NONAME + _ZN21QDeclarativeFlickable12setOverShootEb @ 1021 NONAME ABSENT _ZN21QDeclarativeFlickable13flickableDataEv @ 1022 NONAME _ZN21QDeclarativeFlickable13movementEndedEv @ 1023 NONAME _ZN21QDeclarativeFlickable13movingChangedEv @ 1024 NONAME @@ -1037,7 +1037,7 @@ EXPORTS _ZN21QDeclarativeFlickable15movementStartedEv @ 1036 NONAME _ZN21QDeclarativeFlickable15setContentWidthEf @ 1037 NONAME _ZN21QDeclarativeFlickable16movementStartingEv @ 1038 NONAME - _ZN21QDeclarativeFlickable16overShootChangedEv @ 1039 NONAME + _ZN21QDeclarativeFlickable16overShootChangedEv @ 1039 NONAME ABSENT _ZN21QDeclarativeFlickable16sceneEventFilterEP13QGraphicsItemP6QEvent @ 1040 NONAME _ZN21QDeclarativeFlickable16setContentHeightEf @ 1041 NONAME _ZN21QDeclarativeFlickable16staticMetaObjectE @ 1042 NONAME DATA 16 @@ -1294,15 +1294,15 @@ EXPORTS _ZN22QDeclarativeExpression19getStaticMetaObjectEv @ 1293 NONAME _ZN22QDeclarativeExpression23setNotifyOnValueChangedEb @ 1294 NONAME _ZN22QDeclarativeExpression5valueEPb @ 1295 NONAME ABSENT - _ZN22QDeclarativeExpressionC1EP19QDeclarativeContextRK7QStringP7QObject @ 1296 NONAME + _ZN22QDeclarativeExpressionC1EP19QDeclarativeContextRK7QStringP7QObject @ 1296 NONAME ABSENT _ZN22QDeclarativeExpressionC1EP23QDeclarativeContextDataPvP20QDeclarativeRefCountP7QObjectRK7QStringiR29QDeclarativeExpressionPrivate @ 1297 NONAME - _ZN22QDeclarativeExpressionC1EP23QDeclarativeContextDataRK7QStringP7QObject @ 1298 NONAME - _ZN22QDeclarativeExpressionC1EP23QDeclarativeContextDataRK7QStringP7QObjectR29QDeclarativeExpressionPrivate @ 1299 NONAME + _ZN22QDeclarativeExpressionC1EP23QDeclarativeContextDataRK7QStringP7QObject @ 1298 NONAME ABSENT + _ZN22QDeclarativeExpressionC1EP23QDeclarativeContextDataRK7QStringP7QObjectR29QDeclarativeExpressionPrivate @ 1299 NONAME ABSENT _ZN22QDeclarativeExpressionC1Ev @ 1300 NONAME - _ZN22QDeclarativeExpressionC2EP19QDeclarativeContextRK7QStringP7QObject @ 1301 NONAME + _ZN22QDeclarativeExpressionC2EP19QDeclarativeContextRK7QStringP7QObject @ 1301 NONAME ABSENT _ZN22QDeclarativeExpressionC2EP23QDeclarativeContextDataPvP20QDeclarativeRefCountP7QObjectRK7QStringiR29QDeclarativeExpressionPrivate @ 1302 NONAME - _ZN22QDeclarativeExpressionC2EP23QDeclarativeContextDataRK7QStringP7QObject @ 1303 NONAME - _ZN22QDeclarativeExpressionC2EP23QDeclarativeContextDataRK7QStringP7QObjectR29QDeclarativeExpressionPrivate @ 1304 NONAME + _ZN22QDeclarativeExpressionC2EP23QDeclarativeContextDataRK7QStringP7QObject @ 1303 NONAME ABSENT + _ZN22QDeclarativeExpressionC2EP23QDeclarativeContextDataRK7QStringP7QObjectR29QDeclarativeExpressionPrivate @ 1304 NONAME ABSENT _ZN22QDeclarativeExpressionC2Ev @ 1305 NONAME _ZN22QDeclarativeExpressionD0Ev @ 1306 NONAME _ZN22QDeclarativeExpressionD1Ev @ 1307 NONAME @@ -1457,7 +1457,7 @@ EXPORTS _ZN23QDeclarativeEngineDebugC1EP27QDeclarativeDebugConnectionP7QObject @ 1456 NONAME _ZN23QDeclarativeEngineDebugC2EP27QDeclarativeDebugConnectionP7QObject @ 1457 NONAME _ZN23QDeclarativeItemPrivate10resetWidthEv @ 1458 NONAME - _ZN23QDeclarativeItemPrivate11currentTimeEv @ 1459 NONAME + _ZN23QDeclarativeItemPrivate11currentTimeEv @ 1459 NONAME ABSENT _ZN23QDeclarativeItemPrivate11data_appendEP24QDeclarativeListPropertyI7QObjectEPS1_ @ 1460 NONAME _ZN23QDeclarativeItemPrivate11resetHeightEv @ 1461 NONAME _ZN23QDeclarativeItemPrivate12focusChangedEb @ 1462 NONAME @@ -1470,12 +1470,12 @@ EXPORTS _ZN23QDeclarativeItemPrivate15transform_countEP24QDeclarativeListPropertyI18QGraphicsTransformE @ 1469 NONAME _ZN23QDeclarativeItemPrivate16resources_appendEP24QDeclarativeListPropertyI7QObjectEPS1_ @ 1470 NONAME _ZN23QDeclarativeItemPrivate16transform_appendEP24QDeclarativeListPropertyI18QGraphicsTransformEPS1_ @ 1471 NONAME - _ZN23QDeclarativeItemPrivate17setConsistentTimeEi @ 1472 NONAME + _ZN23QDeclarativeItemPrivate17setConsistentTimeEi @ 1472 NONAME ABSENT _ZN23QDeclarativeItemPrivate24removeItemChangeListenerEP30QDeclarativeItemChangeListener6QFlagsINS_10ChangeTypeEE @ 1473 NONAME - _ZN23QDeclarativeItemPrivate5startER5QTime @ 1474 NONAME + _ZN23QDeclarativeItemPrivate5startER5QTime @ 1474 NONAME ABSENT _ZN23QDeclarativeItemPrivate6statesEv @ 1475 NONAME - _ZN23QDeclarativeItemPrivate7elapsedER5QTime @ 1476 NONAME - _ZN23QDeclarativeItemPrivate7restartER5QTime @ 1477 NONAME + _ZN23QDeclarativeItemPrivate7elapsedER5QTime @ 1476 NONAME ABSENT + _ZN23QDeclarativeItemPrivate7restartER5QTime @ 1477 NONAME ABSENT _ZN23QDeclarativeItemPrivate8setWidthEf @ 1478 NONAME _ZN23QDeclarativeItemPrivate9setHeightEf @ 1479 NONAME _ZN23QDeclarativePaintedItem10clearCacheEv @ 1480 NONAME @@ -1600,23 +1600,23 @@ EXPORTS _ZN24QDeclarativeListAccessorD2Ev @ 1599 NONAME _ZN24QDeclarativeParentChange11qt_metacallEN11QMetaObject4CallEiPPv @ 1600 NONAME _ZN24QDeclarativeParentChange11qt_metacastEPKc @ 1601 NONAME - _ZN24QDeclarativeParentChange11setRotationEf @ 1602 NONAME + _ZN24QDeclarativeParentChange11setRotationEf @ 1602 NONAME ABSENT _ZN24QDeclarativeParentChange12isReversableEv @ 1603 NONAME _ZN24QDeclarativeParentChange13copyOriginalsEP23QDeclarativeActionEvent @ 1604 NONAME ABSENT _ZN24QDeclarativeParentChange13saveOriginalsEv @ 1605 NONAME _ZN24QDeclarativeParentChange16staticMetaObjectE @ 1606 NONAME DATA 16 _ZN24QDeclarativeParentChange17saveCurrentValuesEv @ 1607 NONAME _ZN24QDeclarativeParentChange19getStaticMetaObjectEv @ 1608 NONAME - _ZN24QDeclarativeParentChange4setXEf @ 1609 NONAME - _ZN24QDeclarativeParentChange4setYEf @ 1610 NONAME + _ZN24QDeclarativeParentChange4setXEf @ 1609 NONAME ABSENT + _ZN24QDeclarativeParentChange4setYEf @ 1610 NONAME ABSENT _ZN24QDeclarativeParentChange6rewindEv @ 1611 NONAME _ZN24QDeclarativeParentChange7actionsEv @ 1612 NONAME _ZN24QDeclarativeParentChange7executeEv @ 1613 NONAME ABSENT _ZN24QDeclarativeParentChange7reverseEv @ 1614 NONAME ABSENT _ZN24QDeclarativeParentChange8overrideEP23QDeclarativeActionEvent @ 1615 NONAME - _ZN24QDeclarativeParentChange8setScaleEf @ 1616 NONAME - _ZN24QDeclarativeParentChange8setWidthEf @ 1617 NONAME - _ZN24QDeclarativeParentChange9setHeightEf @ 1618 NONAME + _ZN24QDeclarativeParentChange8setScaleEf @ 1616 NONAME ABSENT + _ZN24QDeclarativeParentChange8setWidthEf @ 1617 NONAME ABSENT + _ZN24QDeclarativeParentChange9setHeightEf @ 1618 NONAME ABSENT _ZN24QDeclarativeParentChange9setObjectEP16QDeclarativeItem @ 1619 NONAME _ZN24QDeclarativeParentChange9setParentEP16QDeclarativeItem @ 1620 NONAME _ZN24QDeclarativeParentChangeC1EP7QObject @ 1621 NONAME @@ -2496,7 +2496,7 @@ EXPORTS _ZNK20QDeclarativeRepeater5countEv @ 2495 NONAME _ZNK20QDeclarativeRepeater5modelEv @ 2496 NONAME _ZNK20QDeclarativeRepeater8delegateEv @ 2497 NONAME - _ZNK20QDeclarativeTextEdit10cursorRectEv @ 2498 NONAME + _ZNK20QDeclarativeTextEdit10cursorRectEv @ 2498 NONAME ABSENT _ZNK20QDeclarativeTextEdit10isReadOnlyEv @ 2499 NONAME _ZNK20QDeclarativeTextEdit10metaObjectEv @ 2500 NONAME _ZNK20QDeclarativeTextEdit10textFormatEv @ 2501 NONAME @@ -2536,7 +2536,7 @@ EXPORTS _ZNK20QMetaPropertyBuilder8isStoredEv @ 2535 NONAME _ZNK20QMetaPropertyBuilder9isDynamicEv @ 2536 NONAME _ZNK21QDeclarativeComponent10metaObjectEv @ 2537 NONAME - _ZNK21QDeclarativeComponent12errorsStringEv @ 2538 NONAME + _ZNK21QDeclarativeComponent12errorsStringEv @ 2538 NONAME ABSENT _ZNK21QDeclarativeComponent15creationContextEv @ 2539 NONAME _ZNK21QDeclarativeComponent3urlEv @ 2540 NONAME _ZNK21QDeclarativeComponent6errorsEv @ 2541 NONAME @@ -2593,7 +2593,7 @@ EXPORTS _ZNK21QDeclarativeFlickable8isAtXEndEv @ 2592 NONAME _ZNK21QDeclarativeFlickable8isAtYEndEv @ 2593 NONAME _ZNK21QDeclarativeFlickable8isMovingEv @ 2594 NONAME - _ZNK21QDeclarativeFlickable9overShootEv @ 2595 NONAME + _ZNK21QDeclarativeFlickable9overShootEv @ 2595 NONAME ABSENT _ZNK21QDeclarativeImageBase10metaObjectEv @ 2596 NONAME _ZNK21QDeclarativeImageBase10sourceSizeEv @ 2597 NONAME _ZNK21QDeclarativeImageBase12asynchronousEv @ 2598 NONAME @@ -3602,4 +3602,59 @@ EXPORTS _ZNK21QDeclarativeFlickable20isMovingHorizontallyEv @ 3601 NONAME _ZNK21QDeclarativeFlickable22isFlickingHorizontallyEv @ 3602 NONAME _ZThn16_N18QDeclarativeLoader17componentCompleteEv @ 3603 NONAME + _ZN16QDeclarativeText18paintedSizeChangedEv @ 3604 NONAME + _ZN20QDeclarativePathView5eventEP6QEvent @ 3605 NONAME + _ZN20QDeclarativeTextEdit12focusInEventEP11QFocusEvent @ 3606 NONAME + _ZN20QDeclarativeTextEdit13focusOutEventEP11QFocusEvent @ 3607 NONAME + _ZN20QDeclarativeTextEdit16setSelectByMouseEb @ 3608 NONAME + _ZN20QDeclarativeTextEdit18paintedSizeChangedEv @ 3609 NONAME + _ZN20QDeclarativeTextEdit20selectByMouseChangedEb @ 3610 NONAME + _ZN20QDeclarativeTextEdit22cursorRectangleChangedEv @ 3611 NONAME + _ZN20QDeclarativeTextEdit22openSoftwareInputPanelEv @ 3612 NONAME + _ZN20QDeclarativeTextEdit23closeSoftwareInputPanelEv @ 3613 NONAME + _ZN20QDeclarativeTextEdit24setShowInputPanelOnFocusEb @ 3614 NONAME + _ZN20QDeclarativeTextEdit28showInputPanelOnFocusChangedEb @ 3615 NONAME + _ZN21QDeclarativeTextInput12focusInEventEP11QFocusEvent @ 3616 NONAME + _ZN21QDeclarativeTextInput13focusOutEventEP11QFocusEvent @ 3617 NONAME + _ZN21QDeclarativeTextInput16setSelectByMouseEb @ 3618 NONAME + _ZN21QDeclarativeTextInput20selectByMouseChangedEb @ 3619 NONAME + _ZN21QDeclarativeTextInput22openSoftwareInputPanelEv @ 3620 NONAME + _ZN21QDeclarativeTextInput23closeSoftwareInputPanelEv @ 3621 NONAME + _ZN21QDeclarativeTextInput24setShowInputPanelOnFocusEb @ 3622 NONAME + _ZN21QDeclarativeTextInput28showInputPanelOnFocusChangedEb @ 3623 NONAME + _ZN22QDeclarativeExpressionC1EP19QDeclarativeContextP7QObjectRK7QStringS3_ @ 3624 NONAME + _ZN22QDeclarativeExpressionC1EP23QDeclarativeContextDataP7QObjectRK7QString @ 3625 NONAME + _ZN22QDeclarativeExpressionC1EP23QDeclarativeContextDataP7QObjectRK7QStringR29QDeclarativeExpressionPrivate @ 3626 NONAME + _ZN22QDeclarativeExpressionC2EP19QDeclarativeContextP7QObjectRK7QStringS3_ @ 3627 NONAME + _ZN22QDeclarativeExpressionC2EP23QDeclarativeContextDataP7QObjectRK7QString @ 3628 NONAME + _ZN22QDeclarativeExpressionC2EP23QDeclarativeContextDataP7QObjectRK7QStringR29QDeclarativeExpressionPrivate @ 3629 NONAME + _ZN23QDeclarativeItemPrivate17setConsistentTimeEx @ 3630 NONAME + _ZN23QDeclarativeItemPrivate5startER13QElapsedTimer @ 3631 NONAME + _ZN23QDeclarativeItemPrivate7elapsedER13QElapsedTimer @ 3632 NONAME + _ZN23QDeclarativeItemPrivate7restartER13QElapsedTimer @ 3633 NONAME + _ZN24QDeclarativeParentChange11setRotationE24QDeclarativeScriptString @ 3634 NONAME + _ZN24QDeclarativeParentChange4setXE24QDeclarativeScriptString @ 3635 NONAME + _ZN24QDeclarativeParentChange4setYE24QDeclarativeScriptString @ 3636 NONAME + _ZN24QDeclarativeParentChange8setScaleE24QDeclarativeScriptString @ 3637 NONAME + _ZN24QDeclarativeParentChange8setWidthE24QDeclarativeScriptString @ 3638 NONAME + _ZN24QDeclarativeParentChange9setHeightE24QDeclarativeScriptString @ 3639 NONAME + _ZN24QDeclarativeXmlListModel10queryErrorEPvRK7QString @ 3640 NONAME + _ZNK16QDeclarativeText12paintedWidthEv @ 3641 NONAME + _ZNK16QDeclarativeText13paintedHeightEv @ 3642 NONAME + _ZNK20QDeclarativeTextEdit12paintedWidthEv @ 3643 NONAME + _ZNK20QDeclarativeTextEdit13paintedHeightEv @ 3644 NONAME + _ZNK20QDeclarativeTextEdit13selectByMouseEv @ 3645 NONAME + _ZNK20QDeclarativeTextEdit15cursorRectangleEv @ 3646 NONAME + _ZNK20QDeclarativeTextEdit21showInputPanelOnFocusEv @ 3647 NONAME + _ZNK21QDeclarativeComponent11errorStringEv @ 3648 NONAME + _ZNK21QDeclarativeTextInput13selectByMouseEv @ 3649 NONAME + _ZNK21QDeclarativeTextInput21showInputPanelOnFocusEv @ 3650 NONAME + _ZNK23QDeclarativePaintedItem12boundingRectEv @ 3651 NONAME + _ZNK24QDeclarativeXmlListModel11errorStringEv @ 3652 NONAME + _ZNK24QDeclarativeXmlListModel3getEi @ 3653 NONAME + _ZThn8_N20QDeclarativeTextEdit12focusInEventEP11QFocusEvent @ 3654 NONAME + _ZThn8_N20QDeclarativeTextEdit13focusOutEventEP11QFocusEvent @ 3655 NONAME + _ZThn8_N21QDeclarativeTextInput12focusInEventEP11QFocusEvent @ 3656 NONAME + _ZThn8_N21QDeclarativeTextInput13focusOutEventEP11QFocusEvent @ 3657 NONAME + _ZThn8_NK23QDeclarativePaintedItem12boundingRectEv @ 3658 NONAME diff --git a/src/s60installs/eabi/QtGuiu.def b/src/s60installs/eabi/QtGuiu.def index cfe2630..8aafde9 100644 --- a/src/s60installs/eabi/QtGuiu.def +++ b/src/s60installs/eabi/QtGuiu.def @@ -1,7 +1,7 @@ EXPORTS _Z11qFadeEffectP7QWidgeti @ 1 NONAME _Z11qt_image_idRK6QImage @ 2 NONAME - _Z12qDrawPixmapsP8QPainterPKN12QDrawPixmaps4DataEiRK7QPixmap6QFlagsINS1_11DrawingHintEE @ 3 NONAME + _Z12qDrawPixmapsP8QPainterPKN12QDrawPixmaps4DataEiRK7QPixmap6QFlagsINS1_11DrawingHintEE @ 3 NONAME ABSENT _Z12qt_pixmap_idRK7QPixmap @ 4 NONAME _Z13qDrawWinPanelP8QPainterRK5QRectRK8QPalettebPK6QBrush @ 5 NONAME _Z13qDrawWinPanelP8QPainteriiiiRK8QPalettebPK6QBrush @ 6 NONAME @@ -1834,7 +1834,7 @@ EXPORTS _ZN12QLineControl4initERK7QString @ 1833 NONAME _ZN12QLineControl5clearEv @ 1834 NONAME _ZN12QLineControl5fixupEv @ 1835 NONAME - _ZN12QLineControl5pasteEv @ 1836 NONAME + _ZN12QLineControl5pasteEv @ 1836 NONAME ABSENT _ZN12QLineControl6insertERK7QString @ 1837 NONAME _ZN12QLineControl8acceptedEv @ 1838 NONAME _ZN12QLineControl8completeEi @ 1839 NONAME @@ -2148,7 +2148,7 @@ EXPORTS _ZN12QTextControl4undoEv @ 2147 NONAME _ZN12QTextControl5clearEv @ 2148 NONAME _ZN12QTextControl5eventEP6QEvent @ 2149 NONAME - _ZN12QTextControl5pasteEv @ 2150 NONAME + _ZN12QTextControl5pasteEv @ 2150 NONAME ABSENT _ZN12QTextControl6appendERK7QString @ 2151 NONAME _ZN12QTextControl7setHtmlERK7QString @ 2152 NONAME _ZN12QTextControl8setFocusEbN2Qt11FocusReasonE @ 2153 NONAME @@ -2906,7 +2906,7 @@ EXPORTS _ZN14QPaintEngineEx10drawPointsEPK7QPointFi @ 2905 NONAME _ZN14QPaintEngineEx11drawEllipseERK5QRect @ 2906 NONAME _ZN14QPaintEngineEx11drawEllipseERK6QRectF @ 2907 NONAME - _ZN14QPaintEngineEx11drawPixmapsEPKN12QDrawPixmaps4DataEiRK7QPixmap6QFlagsINS0_11DrawingHintEE @ 2908 NONAME + _ZN14QPaintEngineEx11drawPixmapsEPKN12QDrawPixmaps4DataEiRK7QPixmap6QFlagsINS0_11DrawingHintEE @ 2908 NONAME ABSENT _ZN14QPaintEngineEx11drawPolygonEPK6QPointiN12QPaintEngine15PolygonDrawModeE @ 2909 NONAME _ZN14QPaintEngineEx11drawPolygonEPK7QPointFiN12QPaintEngine15PolygonDrawModeE @ 2910 NONAME _ZN14QPaintEngineEx11updateStateERK17QPaintEngineState @ 2911 NONAME @@ -3726,7 +3726,7 @@ EXPORTS _ZN16QFileSystemModelD1Ev @ 3725 NONAME _ZN16QFileSystemModelD2Ev @ 3726 NONAME _ZN16QPainterReplayer14setupTransformEP8QPainter @ 3727 NONAME - _ZN16QPainterReplayer4drawERK12QPaintBufferP8QPainteri @ 3728 NONAME + _ZN16QPainterReplayer4drawERK12QPaintBufferP8QPainteri @ 3728 NONAME ABSENT _ZN16QPainterReplayer7processERK19QPaintBufferCommand @ 3729 NONAME _ZN16QRegExpValidator11qt_metacallEN11QMetaObject4CallEiPPv @ 3730 NONAME _ZN16QRegExpValidator11qt_metacastEPKc @ 3731 NONAME @@ -4223,7 +4223,7 @@ EXPORTS _ZN18QTextBlockUserDataD0Ev @ 4222 NONAME _ZN18QTextBlockUserDataD1Ev @ 4223 NONAME _ZN18QTextBlockUserDataD2Ev @ 4224 NONAME - _ZN18QTextureGlyphCache8populateERK12QTextItemIntRK15QVarLengthArrayIjLi256EERKS3_I11QFixedPointLi256EE @ 4225 NONAME + _ZN18QTextureGlyphCache8populateERK12QTextItemIntRK15QVarLengthArrayIjLi256EERKS3_I11QFixedPointLi256EE @ 4225 NONAME ABSENT _ZN19QAbstractProxyModel11qt_metacallEN11QMetaObject4CallEiPPv @ 4226 NONAME _ZN19QAbstractProxyModel11qt_metacastEPKc @ 4227 NONAME _ZN19QAbstractProxyModel13setHeaderDataEiN2Qt11OrientationERK8QVarianti @ 4228 NONAME @@ -5907,9 +5907,9 @@ EXPORTS _ZN7QActionD1Ev @ 5906 NONAME _ZN7QActionD2Ev @ 5907 NONAME _ZN7QBezier10fromPointsERK7QPointFS2_S2_S2_ @ 5908 NONAME - _ZN7QBezier17findIntersectionsERKS_S1_ @ 5909 NONAME - _ZN7QBezier17findIntersectionsERKS_S1_P7QVectorI5QPairIffEE @ 5910 NONAME - _ZN7QBezier20splitAtIntersectionsERS_ @ 5911 NONAME + _ZN7QBezier17findIntersectionsERKS_S1_ @ 5909 NONAME ABSENT + _ZN7QBezier17findIntersectionsERKS_S1_P7QVectorI5QPairIffEE @ 5910 NONAME ABSENT + _ZN7QBezier20splitAtIntersectionsERS_ @ 5911 NONAME ABSENT _ZN7QBitmap8fromDataERK5QSizePKhN6QImage6FormatE @ 5912 NONAME _ZN7QBitmap9fromImageERK6QImage6QFlagsIN2Qt19ImageConversionFlagEE @ 5913 NONAME _ZN7QBitmapC1ERK5QSize @ 5914 NONAME @@ -9899,17 +9899,17 @@ EXPORTS _ZNK7QAction9statusTipEv @ 9898 NONAME _ZNK7QAction9whatsThisEv @ 9899 NONAME _ZNK7QBezier10addIfCloseEPff @ 9900 NONAME - _ZNK7QBezier12addToPolygonEP9QPolygonF @ 9901 NONAME + _ZNK7QBezier12addToPolygonEP9QPolygonF @ 9901 NONAME ABSENT _ZNK7QBezier16bezierOnIntervalEff @ 9902 NONAME - _ZNK7QBezier17addToPolygonMixedEP9QPolygonF @ 9903 NONAME + _ZNK7QBezier17addToPolygonMixedEP9QPolygonF @ 9903 NONAME ABSENT _ZNK7QBezier17stationaryYPointsERfS0_ @ 9904 NONAME - _ZNK7QBezier21addToPolygonIterativeEP9QPolygonF @ 9905 NONAME + _ZNK7QBezier21addToPolygonIterativeEP9QPolygonF @ 9905 NONAME ABSENT _ZNK7QBezier5tForYEfff @ 9906 NONAME _ZNK7QBezier6boundsEv @ 9907 NONAME _ZNK7QBezier6lengthEf @ 9908 NONAME _ZNK7QBezier7shiftedEPS_iff @ 9909 NONAME _ZNK7QBezier9tAtLengthEf @ 9910 NONAME - _ZNK7QBezier9toPolygonEv @ 9911 NONAME + _ZNK7QBezier9toPolygonEv @ 9911 NONAME ABSENT _ZNK7QBitmap11transformedERK10QTransform @ 9912 NONAME _ZNK7QBitmap11transformedERK7QMatrix @ 9913 NONAME _ZNK7QBitmapcv8QVariantEv @ 9914 NONAME @@ -11741,23 +11741,23 @@ EXPORTS _ZN11QVectorPathD2Ev @ 11740 NONAME _ZNK11QVectorPath12addCacheDataEP14QPaintEngineExPvPFvS1_S2_E @ 11741 NONAME _ZNK20QGraphicsItemPrivate20discardUpdateRequestEbbb @ 11742 NONAME - _ZN11QEglContext10extensionsEv @ 11743 NONAME + _ZN11QEglContext10extensionsEv @ 11743 NONAME ABSENT _ZN11QEglContext10getDisplayEP12QPaintDevice @ 11744 NONAME ABSENT - _ZN11QEglContext10waitClientEv @ 11745 NONAME - _ZN11QEglContext10waitNativeEv @ 11746 NONAME + _ZN11QEglContext10waitClientEv @ 11745 NONAME ABSENT + _ZN11QEglContext10waitNativeEv @ 11746 NONAME ABSENT _ZN11QEglContext11doneCurrentEv @ 11747 NONAME - _ZN11QEglContext11errorStringEi @ 11748 NONAME + _ZN11QEglContext11errorStringEi @ 11748 NONAME ABSENT _ZN11QEglContext11makeCurrentEi @ 11749 NONAME _ZN11QEglContext11openDisplayEP12QPaintDevice @ 11750 NONAME ABSENT _ZN11QEglContext11swapBuffersEi @ 11751 NONAME _ZN11QEglContext12chooseConfigERK14QEglPropertiesN4QEgl16PixelFormatMatchE @ 11752 NONAME - _ZN11QEglContext12hasExtensionEPKc @ 11753 NONAME + _ZN11QEglContext12hasExtensionEPKc @ 11753 NONAME ABSENT _ZN11QEglContext13createContextEPS_PK14QEglProperties @ 11754 NONAME _ZN11QEglContext13createSurfaceEP12QPaintDevicePK14QEglProperties @ 11755 NONAME _ZN11QEglContext14currentContextEN4QEgl3APIE @ 11756 NONAME _ZN11QEglContext14defaultDisplayEP12QPaintDevice @ 11757 NONAME ABSENT _ZN11QEglContext14destroySurfaceEi @ 11758 NONAME - _ZN11QEglContext14dumpAllConfigsEv @ 11759 NONAME + _ZN11QEglContext14dumpAllConfigsEv @ 11759 NONAME ABSENT _ZN11QEglContext15lazyDoneCurrentEv @ 11760 NONAME _ZN11QEglContext17setCurrentContextEN4QEgl3APIEPS_ @ 11761 NONAME _ZN11QEglContext7destroyEv @ 11762 NONAME ABSENT @@ -11766,7 +11766,7 @@ EXPORTS _ZN11QEglContextD1Ev @ 11765 NONAME _ZN11QEglContextD2Ev @ 11766 NONAME _ZN14QEglProperties11removeValueEi @ 11767 NONAME - _ZN14QEglProperties14dumpAllConfigsEv @ 11768 NONAME + _ZN14QEglProperties14dumpAllConfigsEv @ 11768 NONAME ABSENT _ZN14QEglProperties14setPixelFormatEN6QImage6FormatE @ 11769 NONAME _ZN14QEglProperties17setRenderableTypeEN4QEgl3APIE @ 11770 NONAME _ZN14QEglProperties19reduceConfigurationEv @ 11771 NONAME @@ -11776,8 +11776,8 @@ EXPORTS _ZN14QEglPropertiesC1Ev @ 11775 NONAME _ZN14QEglPropertiesC2Ei @ 11776 NONAME _ZN14QEglPropertiesC2Ev @ 11777 NONAME - _ZNK11QEglContext12configAttribEiPi @ 11778 NONAME - _ZNK11QEglContext16configPropertiesEi @ 11779 NONAME + _ZNK11QEglContext12configAttribEiPi @ 11778 NONAME ABSENT + _ZNK11QEglContext16configPropertiesEi @ 11779 NONAME ABSENT _ZNK11QEglContext7isValidEv @ 11780 NONAME _ZNK11QEglContext9isCurrentEv @ 11781 NONAME _ZNK14QEglProperties5valueEi @ 11782 NONAME @@ -11805,12 +11805,12 @@ EXPORTS _ZN24QImagePixmapCleanupHooks34executePixmapDataModificationHooksEP11QPixmapData @ 11804 NONAME _ZN9QS60Style10timerEventEP11QTimerEvent @ 11805 NONAME _ZN9QS60Style11eventFilterEP7QObjectP6QEvent @ 11806 NONAME - _ZN11QEglContext10clearErrorEv @ 11807 NONAME - _ZN11QEglContext13nativeDisplayEv @ 11808 NONAME + _ZN11QEglContext10clearErrorEv @ 11807 NONAME ABSENT + _ZN11QEglContext13nativeDisplayEv @ 11808 NONAME ABSENT _ZN11QEglContext14destroyContextEv @ 11809 NONAME - _ZN11QEglContext3dpyE @ 11810 NONAME DATA 4 - _ZN11QEglContext5errorEv @ 11811 NONAME - _ZN11QEglContext7displayEv @ 11812 NONAME + _ZN11QEglContext3dpyE @ 11810 NONAME DATA 4 ABSENT + _ZN11QEglContext5errorEv @ 11811 NONAME ABSENT + _ZN11QEglContext7displayEv @ 11812 NONAME ABSENT _ZN11QFontEngine16getGlyphBearingsEjPfS0_ @ 11813 NONAME _ZN12QLineControl17updateDisplayTextEb @ 11814 NONAME _ZN13QFontDatabase25removeAllApplicationFontsEv @ 11815 NONAME @@ -11820,4 +11820,190 @@ EXPORTS _ZN20QGraphicsItemPrivate16clearFocusHelperEb @ 11819 NONAME _ZN24QImagePixmapCleanupHooks13isImageCachedERK6QImage @ 11820 NONAME _ZN24QImagePixmapCleanupHooks14isPixmapCachedERK7QPixmap @ 11821 NONAME + _Z14qt_draw_glyphsP8QPainterPKjPK7QPointFi @ 11822 NONAME + _ZN10QZipReader5closeEv @ 11823 NONAME + _ZN10QZipReader8FileInfoC1ERKS0_ @ 11824 NONAME + _ZN10QZipReader8FileInfoC1Ev @ 11825 NONAME + _ZN10QZipReader8FileInfoC2ERKS0_ @ 11826 NONAME + _ZN10QZipReader8FileInfoC2Ev @ 11827 NONAME + _ZN10QZipReader8FileInfoD1Ev @ 11828 NONAME + _ZN10QZipReader8FileInfoD2Ev @ 11829 NONAME + _ZN10QZipReader8FileInfoaSERKS0_ @ 11830 NONAME + _ZN10QZipReaderC1EP9QIODevice @ 11831 NONAME + _ZN10QZipReaderC1ERK7QString6QFlagsIN9QIODevice12OpenModeFlagEE @ 11832 NONAME + _ZN10QZipReaderC2EP9QIODevice @ 11833 NONAME + _ZN10QZipReaderC2ERK7QString6QFlagsIN9QIODevice12OpenModeFlagEE @ 11834 NONAME + _ZN10QZipReaderD1Ev @ 11835 NONAME + _ZN10QZipReaderD2Ev @ 11836 NONAME + _ZN11QStaticText12setTextWidthEf @ 11837 NONAME + _ZN11QStaticText13setTextFormatEN2Qt10TextFormatE @ 11838 NONAME + _ZN11QStaticText18setPerformanceHintENS_15PerformanceHintE @ 11839 NONAME + _ZN11QStaticText6detachEv @ 11840 NONAME + _ZN11QStaticText7prepareERK10QTransformRK5QFont @ 11841 NONAME + _ZN11QStaticText7setTextERK7QString @ 11842 NONAME + _ZN11QStaticTextC1ERK7QString @ 11843 NONAME + _ZN11QStaticTextC1ERKS_ @ 11844 NONAME + _ZN11QStaticTextC1Ev @ 11845 NONAME + _ZN11QStaticTextC2ERK7QString @ 11846 NONAME + _ZN11QStaticTextC2ERKS_ @ 11847 NONAME + _ZN11QStaticTextC2Ev @ 11848 NONAME + _ZN11QStaticTextD1Ev @ 11849 NONAME + _ZN11QStaticTextD2Ev @ 11850 NONAME + _ZN11QStaticTextaSERKS_ @ 11851 NONAME + _ZN12QKeySequence6assignERK7QStringNS_14SequenceFormatE @ 11852 NONAME + _ZN12QKeySequenceC1ERK7QStringNS_14SequenceFormatE @ 11853 NONAME + _ZN12QKeySequenceC2ERK7QStringNS_14SequenceFormatE @ 11854 NONAME + _ZN12QLineControl5pasteEN10QClipboard4ModeE @ 11855 NONAME + _ZN12QPixmapCache10allPixmapsEv @ 11856 NONAME + _ZN12QPixmapCache20flushDetachedPixmapsEv @ 11857 NONAME + _ZN12QPixmapCache9totalUsedEv @ 11858 NONAME + _ZN12QTextControl5pasteEN10QClipboard4ModeE @ 11859 NONAME + _ZN13QGraphicsItem16updateMicroFocusEv @ 11860 NONAME + _ZN13QIconEngineV28iconNameEv @ 11861 NONAME + _ZN13QTextDocument19clearUndoRedoStacksENS_6StacksE @ 11862 NONAME + _ZN14QEglProperties13setDeviceTypeEi @ 11863 NONAME + _ZN14QPaintEngineEx19drawPixmapFragmentsEPKN8QPainter14PixmapFragmentEiRK7QPixmap6QFlagsINS0_18PixmapFragmentHintEE @ 11864 NONAME + _ZN14QWidgetPrivate6renderEP12QPaintDeviceRK6QPointRK7QRegion6QFlagsIN7QWidget10RenderFlagEEb @ 11865 NONAME + _ZN14QWindowSurface23setPartialUpdateSupportEb @ 11866 NONAME + _ZN15QGraphicsObject12widthChangedEv @ 11867 NONAME + _ZN15QGraphicsObject13heightChangedEv @ 11868 NONAME + _ZN15QGraphicsObject15childrenChangedEv @ 11869 NONAME + _ZN15QGraphicsObject16updateMicroFocusEv @ 11870 NONAME + _ZN15QGraphicsWidget13layoutChangedEv @ 11871 NONAME + _ZN15QGraphicsWidget15geometryChangedEv @ 11872 NONAME + _ZN15QGraphicsWidget21setAutoFillBackgroundEb @ 11873 NONAME + _ZN15QSplitterHandle11resizeEventEP12QResizeEvent @ 11874 NONAME + _ZN16QFileSystemModel15directoryLoadedERK7QString @ 11875 NONAME + _ZN16QPainterReplayer15processCommandsERK12QPaintBufferP8QPainterii @ 11876 NONAME + _ZN18QTextureGlyphCache8populateEP11QFontEngineiPKjPK11QFixedPoint @ 11877 NONAME + _ZN19QApplicationPrivate15getPixmapCursorEN2Qt11CursorShapeE @ 11878 NONAME + _ZN20QGraphicsItemPrivate10resetWidthEv @ 11879 NONAME + _ZN20QGraphicsItemPrivate11children_atEP24QDeclarativeListPropertyI15QGraphicsObjectEi @ 11880 NONAME + _ZN20QGraphicsItemPrivate11resetHeightEv @ 11881 NONAME + _ZN20QGraphicsItemPrivate12childrenListEv @ 11882 NONAME + _ZN20QGraphicsItemPrivate14children_countEP24QDeclarativeListPropertyI15QGraphicsObjectE @ 11883 NONAME + _ZN20QGraphicsItemPrivate15children_appendEP24QDeclarativeListPropertyI15QGraphicsObjectEPS1_ @ 11884 NONAME + _ZN20QGraphicsItemPrivate24prependGraphicsTransformEP18QGraphicsTransform @ 11885 NONAME + _ZN20QGraphicsItemPrivate30updatePaintedViewBoundingRectsEb @ 11886 NONAME + _ZN20QGraphicsItemPrivate8setWidthEf @ 11887 NONAME + _ZN20QGraphicsItemPrivate9setHeightEf @ 11888 NONAME + _ZN20QGraphicsViewPrivate10centerViewEN13QGraphicsView14ViewportAnchorE @ 11889 NONAME + _ZN20QGraphicsViewPrivate10updateRectERK5QRect @ 11890 NONAME + _ZN20QGraphicsViewPrivate12updateRegionERK6QRectFRK10QTransform @ 11891 NONAME + _ZN20QGraphicsViewPrivate12updateScrollEv @ 11892 NONAME + _ZN20QGraphicsViewPrivate13setUpdateClipEP13QGraphicsItem @ 11893 NONAME + _ZN20QGraphicsViewPrivate15storeMouseEventEP11QMouseEvent @ 11894 NONAME + _ZN20QGraphicsViewPrivate18storeDragDropEventEPK27QGraphicsSceneDragDropEvent @ 11895 NONAME + _ZN20QGraphicsViewPrivate19translateTouchEventEPS_P11QTouchEvent @ 11896 NONAME + _ZN20QGraphicsViewPrivate20_q_setViewportCursorERK7QCursor @ 11897 NONAME + _ZN20QGraphicsViewPrivate20replayLastMouseEventEv @ 11898 NONAME + _ZN20QGraphicsViewPrivate21freeStyleOptionsArrayEP24QStyleOptionGraphicsItem @ 11899 NONAME + _ZN20QGraphicsViewPrivate21mouseMoveEventHandlerEP11QMouseEvent @ 11900 NONAME + _ZN20QGraphicsViewPrivate21processPendingUpdatesEv @ 11901 NONAME + _ZN20QGraphicsViewPrivate21updateLastCenterPointEv @ 11902 NONAME + _ZN20QGraphicsViewPrivate22_q_unsetViewportCursorEv @ 11903 NONAME + _ZN20QGraphicsViewPrivate22allocStyleOptionsArrayEi @ 11904 NONAME + _ZN20QGraphicsViewPrivate22recalculateContentSizeEv @ 11905 NONAME + _ZN20QGraphicsViewPrivate26populateSceneDragDropEventEP27QGraphicsSceneDragDropEventP10QDropEvent @ 11906 NONAME + _ZN20QGraphicsViewPrivate28updateInputMethodSensitivityEv @ 11907 NONAME + _ZN20QGraphicsViewPrivateC1Ev @ 11908 NONAME + _ZN20QGraphicsViewPrivateC2Ev @ 11909 NONAME + _ZN23QImageTextureGlyphCache11fillTextureERKN18QTextureGlyphCache5CoordEj @ 11910 NONAME + _ZN23QImageTextureGlyphCache17createTextureDataEii @ 11911 NONAME + _ZN23QImageTextureGlyphCache17resizeTextureDataEii @ 11912 NONAME + _ZN26QAbstractScrollAreaPrivate14layoutChildrenEv @ 11913 NONAME + _ZN26QAbstractScrollAreaPrivate16replaceScrollBarEP10QScrollBarN2Qt11OrientationE @ 11914 NONAME + _ZN26QAbstractScrollAreaPrivate23_q_showOrHideScrollBarsEv @ 11915 NONAME + _ZN26QAbstractScrollAreaPrivate4initEv @ 11916 NONAME + _ZN26QAbstractScrollAreaPrivate9_q_hslideEi @ 11917 NONAME + _ZN26QAbstractScrollAreaPrivate9_q_vslideEi @ 11918 NONAME + _ZN26QAbstractScrollAreaPrivateC1Ev @ 11919 NONAME + _ZN26QAbstractScrollAreaPrivateC2Ev @ 11920 NONAME + _ZN4QEgl10extensionsEv @ 11921 NONAME + _ZN4QEgl11errorStringEi @ 11922 NONAME + _ZN4QEgl12chooseConfigEPK14QEglPropertiesNS_16PixelFormatMatchE @ 11923 NONAME + _ZN4QEgl12hasExtensionEPKc @ 11924 NONAME + _ZN4QEgl12nativePixmapEP7QPixmap @ 11925 NONAME + _ZN4QEgl12nativeWindowEP7QWidget @ 11926 NONAME + _ZN4QEgl13createSurfaceEP12QPaintDeviceiPK14QEglProperties @ 11927 NONAME + _ZN4QEgl13defaultConfigEiNS_3APIE6QFlagsINS_12ConfigOptionEE @ 11928 NONAME + _ZN4QEgl13nativeDisplayEv @ 11929 NONAME + _ZN4QEgl14dumpAllConfigsEv @ 11930 NONAME + _ZN4QEgl17eglCreateImageKHREiiiiPKi @ 11931 NONAME + _ZN4QEgl18eglDestroyImageKHREii @ 11932 NONAME + _ZN4QEgl7displayEv @ 11933 NONAME + _ZN6QColor12isValidColorERK7QString @ 11934 NONAME + _ZN6QColor18setColorFromStringERK7QString @ 11935 NONAME + _ZN6QLabel12setSelectionEii @ 11936 NONAME + _ZN7QPixmap16convertFromImageERK6QImage6QFlagsIN2Qt19ImageConversionFlagEE @ 11937 NONAME + _ZN7QWizard11pageRemovedEi @ 11938 NONAME + _ZN7QWizard13setSideWidgetEP7QWidget @ 11939 NONAME + _ZN7QWizard9pageAddedEi @ 11940 NONAME + _ZN8QPainter14PixmapFragment6createERK7QPointFRK6QRectFffff @ 11941 NONAME + _ZN8QPainter14drawStaticTextERK7QPointFRK11QStaticText @ 11942 NONAME + _ZN8QPainter19drawPixmapFragmentsEPKNS_14PixmapFragmentEiRK7QPixmap6QFlagsINS_18PixmapFragmentHintEE @ 11943 NONAME + _ZN8QToolBar17visibilityChangedEb @ 11944 NONAME + _ZN9QLineEdit18setPlaceholderTextERK7QString @ 11945 NONAME + _ZNK10QZipReader10extractAllERK7QString @ 11946 NONAME + _ZNK10QZipReader10isReadableEv @ 11947 NONAME + _ZNK10QZipReader11entryInfoAtEi @ 11948 NONAME + _ZNK10QZipReader12fileInfoListEv @ 11949 NONAME + _ZNK10QZipReader5countEv @ 11950 NONAME + _ZNK10QZipReader6deviceEv @ 11951 NONAME + _ZNK10QZipReader6existsEv @ 11952 NONAME + _ZNK10QZipReader6statusEv @ 11953 NONAME + _ZNK10QZipReader8FileInfo7isValidEv @ 11954 NONAME + _ZNK10QZipReader8fileDataERK7QString @ 11955 NONAME + _ZNK11QEglContext12configAttribEi @ 11956 NONAME + _ZNK11QStaticText10textFormatEv @ 11957 NONAME + _ZNK11QStaticText15performanceHintEv @ 11958 NONAME + _ZNK11QStaticText4sizeEv @ 11959 NONAME + _ZNK11QStaticText4textEv @ 11960 NONAME + _ZNK11QStaticText9textWidthEv @ 11961 NONAME + _ZNK11QStaticTexteqERKS_ @ 11962 NONAME + _ZNK11QStaticTextneERKS_ @ 11963 NONAME + _ZNK11QTextCursor15positionInBlockEv @ 11964 NONAME + _ZNK12QPaintBuffer13frameEndIndexEi @ 11965 NONAME + _ZNK12QPaintBuffer15frameStartIndexEi @ 11966 NONAME + _ZNK12QPaintBuffer15processCommandsEP8QPainterii @ 11967 NONAME + _ZNK12QPaintBuffer18commandDescriptionEi @ 11968 NONAME + _ZNK13QIntValidator5fixupER7QString @ 11969 NONAME + _ZNK14QPlainTextEdit8anchorAtERK6QPoint @ 11970 NONAME + _ZNK14QWindowSurface23hasPartialUpdateSupportEv @ 11971 NONAME + _ZNK15QGraphicsWidget18autoFillBackgroundEv @ 11972 NONAME + _ZNK19QItemSelectionRange7isEmptyEv @ 11973 NONAME + _ZNK20QGraphicsItemPrivate5widthEv @ 11974 NONAME + _ZNK20QGraphicsItemPrivate6heightEv @ 11975 NONAME + _ZNK20QGraphicsViewPrivate10mapToSceneERK6QRectF @ 11976 NONAME + _ZNK20QGraphicsViewPrivate10mapToSceneERK7QPointF @ 11977 NONAME + _ZNK20QGraphicsViewPrivate13mapToViewRectEPK13QGraphicsItemRK6QRectF @ 11978 NONAME + _ZNK20QGraphicsViewPrivate14mapRectToSceneERK5QRect @ 11979 NONAME + _ZNK20QGraphicsViewPrivate14verticalScrollEv @ 11980 NONAME + _ZNK20QGraphicsViewPrivate15mapToViewRegionEPK13QGraphicsItemRK6QRectF @ 11981 NONAME + _ZNK20QGraphicsViewPrivate16horizontalScrollEv @ 11982 NONAME + _ZNK20QGraphicsViewPrivate16mapRectFromSceneERK6QRectF @ 11983 NONAME + _ZNK20QGraphicsViewPrivate16rubberBandRegionEPK7QWidgetRK5QRect @ 11984 NONAME + _ZNK20QGraphicsViewPrivate9findItemsERK7QRegionPbRK10QTransform @ 11985 NONAME + _ZNK23QImageTextureGlyphCache11glyphMarginEv @ 11986 NONAME + _ZNK26QAbstractScrollAreaPrivate14contentsOffsetEv @ 11987 NONAME + _ZNK5QIcon4nameEv @ 11988 NONAME + _ZNK6QImage13bitPlaneCountEv @ 11989 NONAME + _ZNK6QImage13constScanLineEi @ 11990 NONAME + _ZNK6QImage9constBitsEv @ 11991 NONAME + _ZNK6QLabel12selectedTextEv @ 11992 NONAME + _ZNK6QLabel14selectionStartEv @ 11993 NONAME + _ZNK6QLabel15hasSelectedTextEv @ 11994 NONAME + _ZNK7QBezier11getSubRangeEff @ 11995 NONAME + _ZNK7QBezier12addToPolygonEP9QPolygonFf @ 11996 NONAME + _ZNK7QBezier5mapByERK10QTransform @ 11997 NONAME + _ZNK7QBezier9toPolygonEf @ 11998 NONAME + _ZNK7QWizard10sideWidgetEv @ 11999 NONAME + _ZNK9QLineEdit15placeholderTextEv @ 12000 NONAME + _ZNK9QTextLine17horizontalAdvanceEv @ 12001 NONAME + _ZTI20QGraphicsViewPrivate @ 12002 NONAME + _ZTI23QImageTextureGlyphCache @ 12003 NONAME + _ZTI26QAbstractScrollAreaPrivate @ 12004 NONAME + _ZTV20QGraphicsViewPrivate @ 12005 NONAME + _ZTV23QImageTextureGlyphCache @ 12006 NONAME + _ZTV26QAbstractScrollAreaPrivate @ 12007 NONAME diff --git a/src/s60installs/eabi/QtNetworku.def b/src/s60installs/eabi/QtNetworku.def index 77c36b4..3cc3644 100644 --- a/src/s60installs/eabi/QtNetworku.def +++ b/src/s60installs/eabi/QtNetworku.def @@ -994,5 +994,174 @@ EXPORTS _ZN15QNetworkRequest20setOriginatingObjectEP7QObject @ 993 NONAME _ZNK15QNetworkRequest17originatingObjectEv @ 994 NONAME _Z19qt_qhostinfo_lookupRK7QStringP7QObjectPKcPbPi @ 995 NONAME - _Z24qt_qhostinfo_clear_cachev @ 996 NONAME + _Z24qt_qhostinfo_clear_cachev @ 996 NONAME ABSENT + _Z35qNetworkConfigurationManagerPrivatev @ 997 NONAME + _ZN10QTcpServer20addPendingConnectionEP10QTcpSocket @ 998 NONAME + _ZN13QBearerEngine11qt_metacallEN11QMetaObject4CallEiPPv @ 999 NONAME + _ZN13QBearerEngine11qt_metacastEPKc @ 1000 NONAME + _ZN13QBearerEngine15updateCompletedEv @ 1001 NONAME + _ZN13QBearerEngine16staticMetaObjectE @ 1002 NONAME DATA 16 + _ZN13QBearerEngine18configurationAddedE28QExplicitlySharedDataPointerI28QNetworkConfigurationPrivateE @ 1003 NONAME + _ZN13QBearerEngine19getStaticMetaObjectEv @ 1004 NONAME + _ZN13QBearerEngine20configurationChangedE28QExplicitlySharedDataPointerI28QNetworkConfigurationPrivateE @ 1005 NONAME + _ZN13QBearerEngine20configurationRemovedE28QExplicitlySharedDataPointerI28QNetworkConfigurationPrivateE @ 1006 NONAME + _ZN13QBearerEngineC2EP7QObject @ 1007 NONAME + _ZN13QBearerEngineD0Ev @ 1008 NONAME + _ZN13QBearerEngineD1Ev @ 1009 NONAME + _ZN13QBearerEngineD2Ev @ 1010 NONAME + _ZN15QNetworkRequest11setPriorityENS_8PriorityE @ 1011 NONAME + _ZN15QNetworkSession11qt_metacallEN11QMetaObject4CallEiPPv @ 1012 NONAME + _ZN15QNetworkSession11qt_metacastEPKc @ 1013 NONAME + _ZN15QNetworkSession12stateChangedENS_5StateE @ 1014 NONAME + _ZN15QNetworkSession13connectNotifyEPKc @ 1015 NONAME + _ZN15QNetworkSession13waitForOpenedEi @ 1016 NONAME + _ZN15QNetworkSession16disconnectNotifyEPKc @ 1017 NONAME + _ZN15QNetworkSession16staticMetaObjectE @ 1018 NONAME DATA 16 + _ZN15QNetworkSession18setSessionPropertyERK7QStringRK8QVariant @ 1019 NONAME + _ZN15QNetworkSession19getStaticMetaObjectEv @ 1020 NONAME + _ZN15QNetworkSession25newConfigurationActivatedEv @ 1021 NONAME + _ZN15QNetworkSession29preferredConfigurationChangedERK21QNetworkConfigurationb @ 1022 NONAME + _ZN15QNetworkSession4openEv @ 1023 NONAME + _ZN15QNetworkSession4stopEv @ 1024 NONAME + _ZN15QNetworkSession5closeEv @ 1025 NONAME + _ZN15QNetworkSession5errorENS_12SessionErrorE @ 1026 NONAME + _ZN15QNetworkSession6acceptEv @ 1027 NONAME + _ZN15QNetworkSession6closedEv @ 1028 NONAME + _ZN15QNetworkSession6ignoreEv @ 1029 NONAME + _ZN15QNetworkSession6openedEv @ 1030 NONAME + _ZN15QNetworkSession6rejectEv @ 1031 NONAME + _ZN15QNetworkSession7migrateEv @ 1032 NONAME + _ZN15QNetworkSessionC1ERK21QNetworkConfigurationP7QObject @ 1033 NONAME + _ZN15QNetworkSessionC2ERK21QNetworkConfigurationP7QObject @ 1034 NONAME + _ZN15QNetworkSessionD0Ev @ 1035 NONAME + _ZN15QNetworkSessionD1Ev @ 1036 NONAME + _ZN15QNetworkSessionD2Ev @ 1037 NONAME + _ZN19QBearerEnginePlugin11qt_metacallEN11QMetaObject4CallEiPPv @ 1038 NONAME + _ZN19QBearerEnginePlugin11qt_metacastEPKc @ 1039 NONAME + _ZN19QBearerEnginePlugin16staticMetaObjectE @ 1040 NONAME DATA 16 + _ZN19QBearerEnginePlugin19getStaticMetaObjectEv @ 1041 NONAME + _ZN19QBearerEnginePluginC2EP7QObject @ 1042 NONAME + _ZN19QBearerEnginePluginD0Ev @ 1043 NONAME + _ZN19QBearerEnginePluginD1Ev @ 1044 NONAME + _ZN19QBearerEnginePluginD2Ev @ 1045 NONAME + _ZN21QNetworkAccessManager16setConfigurationERK21QNetworkConfiguration @ 1046 NONAME + _ZN21QNetworkAccessManager17sendCustomRequestERK15QNetworkRequestRK10QByteArrayP9QIODevice @ 1047 NONAME + _ZN21QNetworkAccessManager20setNetworkAccessibleENS_20NetworkAccessibilityE @ 1048 NONAME + _ZN21QNetworkAccessManager23networkSessionConnectedEv @ 1049 NONAME + _ZN21QNetworkAccessManager24networkAccessibleChangedENS_20NetworkAccessibilityE @ 1050 NONAME + _ZN21QNetworkConfigurationC1ERKS_ @ 1051 NONAME + _ZN21QNetworkConfigurationC1Ev @ 1052 NONAME + _ZN21QNetworkConfigurationC2ERKS_ @ 1053 NONAME + _ZN21QNetworkConfigurationC2Ev @ 1054 NONAME + _ZN21QNetworkConfigurationD1Ev @ 1055 NONAME + _ZN21QNetworkConfigurationD2Ev @ 1056 NONAME + _ZN21QNetworkConfigurationaSERKS_ @ 1057 NONAME + _ZN22QNetworkSessionPrivate11qt_metacallEN11QMetaObject4CallEiPPv @ 1058 NONAME + _ZN22QNetworkSessionPrivate11qt_metacastEPKc @ 1059 NONAME + _ZN22QNetworkSessionPrivate12stateChangedEN15QNetworkSession5StateE @ 1060 NONAME + _ZN22QNetworkSessionPrivate16staticMetaObjectE @ 1061 NONAME DATA 16 + _ZN22QNetworkSessionPrivate19getStaticMetaObjectEv @ 1062 NONAME + _ZN22QNetworkSessionPrivate25newConfigurationActivatedEv @ 1063 NONAME + _ZN22QNetworkSessionPrivate25quitPendingWaitsForOpenedEv @ 1064 NONAME + _ZN22QNetworkSessionPrivate29preferredConfigurationChangedERK21QNetworkConfigurationb @ 1065 NONAME + _ZN22QNetworkSessionPrivate5errorEN15QNetworkSession12SessionErrorE @ 1066 NONAME + _ZN22QNetworkSessionPrivate6closedEv @ 1067 NONAME + _ZN28QNetworkConfigurationManager11qt_metacallEN11QMetaObject4CallEiPPv @ 1068 NONAME + _ZN28QNetworkConfigurationManager11qt_metacastEPKc @ 1069 NONAME + _ZN28QNetworkConfigurationManager15updateCompletedEv @ 1070 NONAME + _ZN28QNetworkConfigurationManager16staticMetaObjectE @ 1071 NONAME DATA 16 + _ZN28QNetworkConfigurationManager18configurationAddedERK21QNetworkConfiguration @ 1072 NONAME + _ZN28QNetworkConfigurationManager18onlineStateChangedEb @ 1073 NONAME + _ZN28QNetworkConfigurationManager19getStaticMetaObjectEv @ 1074 NONAME + _ZN28QNetworkConfigurationManager20configurationChangedERK21QNetworkConfiguration @ 1075 NONAME + _ZN28QNetworkConfigurationManager20configurationRemovedERK21QNetworkConfiguration @ 1076 NONAME + _ZN28QNetworkConfigurationManager20updateConfigurationsEv @ 1077 NONAME + _ZN28QNetworkConfigurationManagerC1EP7QObject @ 1078 NONAME + _ZN28QNetworkConfigurationManagerC2EP7QObject @ 1079 NONAME + _ZN28QNetworkConfigurationManagerD0Ev @ 1080 NONAME + _ZN28QNetworkConfigurationManagerD1Ev @ 1081 NONAME + _ZN28QNetworkConfigurationManagerD2Ev @ 1082 NONAME + _ZN35QNetworkConfigurationManagerPrivate11pollEnginesEv @ 1083 NONAME + _ZN35QNetworkConfigurationManagerPrivate11qt_metacallEN11QMetaObject4CallEiPPv @ 1084 NONAME + _ZN35QNetworkConfigurationManagerPrivate11qt_metacastEPKc @ 1085 NONAME + _ZN35QNetworkConfigurationManagerPrivate12capabilitiesEv @ 1086 NONAME + _ZN35QNetworkConfigurationManagerPrivate12startPollingEv @ 1087 NONAME + _ZN35QNetworkConfigurationManagerPrivate13enablePollingEv @ 1088 NONAME + _ZN35QNetworkConfigurationManagerPrivate14disablePollingEv @ 1089 NONAME + _ZN35QNetworkConfigurationManagerPrivate16staticMetaObjectE @ 1090 NONAME DATA 16 + _ZN35QNetworkConfigurationManagerPrivate17allConfigurationsE6QFlagsIN21QNetworkConfiguration9StateFlagEE @ 1091 NONAME + _ZN35QNetworkConfigurationManagerPrivate18configurationAddedE28QExplicitlySharedDataPointerI28QNetworkConfigurationPrivateE @ 1092 NONAME + _ZN35QNetworkConfigurationManagerPrivate18configurationAddedERK21QNetworkConfiguration @ 1093 NONAME + _ZN35QNetworkConfigurationManagerPrivate18onlineStateChangedEb @ 1094 NONAME + _ZN35QNetworkConfigurationManagerPrivate19getStaticMetaObjectEv @ 1095 NONAME + _ZN35QNetworkConfigurationManagerPrivate20configurationChangedE28QExplicitlySharedDataPointerI28QNetworkConfigurationPrivateE @ 1096 NONAME + _ZN35QNetworkConfigurationManagerPrivate20configurationChangedERK21QNetworkConfiguration @ 1097 NONAME + _ZN35QNetworkConfigurationManagerPrivate20configurationRemovedE28QExplicitlySharedDataPointerI28QNetworkConfigurationPrivateE @ 1098 NONAME + _ZN35QNetworkConfigurationManagerPrivate20configurationRemovedERK21QNetworkConfiguration @ 1099 NONAME + _ZN35QNetworkConfigurationManagerPrivate20defaultConfigurationEv @ 1100 NONAME + _ZN35QNetworkConfigurationManagerPrivate20updateConfigurationsEv @ 1101 NONAME + _ZN35QNetworkConfigurationManagerPrivate27configurationFromIdentifierERK7QString @ 1102 NONAME + _ZN35QNetworkConfigurationManagerPrivate27configurationUpdateCompleteEv @ 1103 NONAME + _ZN35QNetworkConfigurationManagerPrivate31performAsyncConfigurationUpdateEv @ 1104 NONAME + _ZN35QNetworkConfigurationManagerPrivate5abortEv @ 1105 NONAME + _ZN35QNetworkConfigurationManagerPrivate7enginesEv @ 1106 NONAME + _ZN35QNetworkConfigurationManagerPrivate8isOnlineEv @ 1107 NONAME + _ZN35QNetworkConfigurationManagerPrivateC1Ev @ 1108 NONAME + _ZN35QNetworkConfigurationManagerPrivateC2Ev @ 1109 NONAME + _ZN35QNetworkConfigurationManagerPrivateD0Ev @ 1110 NONAME + _ZN35QNetworkConfigurationManagerPrivateD1Ev @ 1111 NONAME + _ZN35QNetworkConfigurationManagerPrivateD2Ev @ 1112 NONAME + _ZNK13QBearerEngine10metaObjectEv @ 1113 NONAME + _ZNK13QBearerEngine15requiresPollingEv @ 1114 NONAME + _ZNK13QBearerEngine19configurationsInUseEv @ 1115 NONAME + _ZNK13QNetworkReply14rawHeaderPairsEv @ 1116 NONAME + _ZNK15QNetworkRequest8priorityEv @ 1117 NONAME + _ZNK15QNetworkSession10activeTimeEv @ 1118 NONAME + _ZNK15QNetworkSession10metaObjectEv @ 1119 NONAME + _ZNK15QNetworkSession11errorStringEv @ 1120 NONAME + _ZNK15QNetworkSession12bytesWrittenEv @ 1121 NONAME + _ZNK15QNetworkSession13bytesReceivedEv @ 1122 NONAME + _ZNK15QNetworkSession13configurationEv @ 1123 NONAME + _ZNK15QNetworkSession15sessionPropertyERK7QString @ 1124 NONAME + _ZNK15QNetworkSession5errorEv @ 1125 NONAME + _ZNK15QNetworkSession5stateEv @ 1126 NONAME + _ZNK15QNetworkSession6isOpenEv @ 1127 NONAME + _ZNK15QNetworkSession9interfaceEv @ 1128 NONAME + _ZNK19QBearerEnginePlugin10metaObjectEv @ 1129 NONAME + _ZNK21QNetworkAccessManager13configurationEv @ 1130 NONAME + _ZNK21QNetworkAccessManager17networkAccessibleEv @ 1131 NONAME + _ZNK21QNetworkAccessManager19activeConfigurationEv @ 1132 NONAME + _ZNK21QNetworkConfiguration10bearerNameEv @ 1133 NONAME + _ZNK21QNetworkConfiguration10identifierEv @ 1134 NONAME + _ZNK21QNetworkConfiguration18isRoamingAvailableEv @ 1135 NONAME + _ZNK21QNetworkConfiguration4nameEv @ 1136 NONAME + _ZNK21QNetworkConfiguration4typeEv @ 1137 NONAME + _ZNK21QNetworkConfiguration5stateEv @ 1138 NONAME + _ZNK21QNetworkConfiguration7isValidEv @ 1139 NONAME + _ZNK21QNetworkConfiguration7purposeEv @ 1140 NONAME + _ZNK21QNetworkConfiguration8childrenEv @ 1141 NONAME + _ZNK21QNetworkConfigurationeqERKS_ @ 1142 NONAME + _ZNK22QNetworkSessionPrivate10metaObjectEv @ 1143 NONAME + _ZNK28QNetworkConfigurationManager10metaObjectEv @ 1144 NONAME + _ZNK28QNetworkConfigurationManager12capabilitiesEv @ 1145 NONAME + _ZNK28QNetworkConfigurationManager17allConfigurationsE6QFlagsIN21QNetworkConfiguration9StateFlagEE @ 1146 NONAME + _ZNK28QNetworkConfigurationManager20defaultConfigurationEv @ 1147 NONAME + _ZNK28QNetworkConfigurationManager27configurationFromIdentifierERK7QString @ 1148 NONAME + _ZNK28QNetworkConfigurationManager8isOnlineEv @ 1149 NONAME + _ZNK35QNetworkConfigurationManagerPrivate10metaObjectEv @ 1150 NONAME + _ZTI13QBearerEngine @ 1151 NONAME + _ZTI15QNetworkSession @ 1152 NONAME + _ZTI19QBearerEnginePlugin @ 1153 NONAME + _ZTI22QNetworkSessionPrivate @ 1154 NONAME + _ZTI28QNetworkConfigurationManager @ 1155 NONAME + _ZTI29QBearerEngineFactoryInterface @ 1156 NONAME + _ZTI35QNetworkConfigurationManagerPrivate @ 1157 NONAME + _ZTV13QBearerEngine @ 1158 NONAME + _ZTV15QNetworkSession @ 1159 NONAME + _ZTV19QBearerEnginePlugin @ 1160 NONAME + _ZTV22QNetworkSessionPrivate @ 1161 NONAME + _ZTV28QNetworkConfigurationManager @ 1162 NONAME + _ZTV35QNetworkConfigurationManagerPrivate @ 1163 NONAME + _ZThn8_N19QBearerEnginePluginD0Ev @ 1164 NONAME + _ZThn8_N19QBearerEnginePluginD1Ev @ 1165 NONAME diff --git a/src/s60installs/eabi/QtOpenVGu.def b/src/s60installs/eabi/QtOpenVGu.def index cf226c5..15fda9a 100644 --- a/src/s60installs/eabi/QtOpenVGu.def +++ b/src/s60installs/eabi/QtOpenVGu.def @@ -31,7 +31,7 @@ EXPORTS _ZN14QVGPaintEngine10penChangedEv @ 30 NONAME _ZN14QVGPaintEngine11drawEllipseERK5QRect @ 31 NONAME _ZN14QVGPaintEngine11drawEllipseERK6QRectF @ 32 NONAME - _ZN14QVGPaintEngine11drawPixmapsEPKN12QDrawPixmaps4DataEiRK7QPixmap6QFlagsINS0_11DrawingHintEE @ 33 NONAME + _ZN14QVGPaintEngine11drawPixmapsEPKN12QDrawPixmaps4DataEiRK7QPixmap6QFlagsINS0_11DrawingHintEE @ 33 NONAME ABSENT _ZN14QVGPaintEngine11drawPolygonEPK6QPointiN12QPaintEngine15PolygonDrawModeE @ 34 NONAME _ZN14QVGPaintEngine11drawPolygonEPK7QPointFiN12QPaintEngine15PolygonDrawModeE @ 35 NONAME _ZN14QVGPaintEngine12brushChangedEv @ 36 NONAME @@ -198,4 +198,7 @@ EXPORTS _ZTV12QVGImagePool @ 197 NONAME _ZN25QVGEGLWindowSurfaceDirect6scrollEP7QWidgetRK7QRegionii @ 198 NONAME _ZNK25QVGEGLWindowSurfaceDirect22supportsStaticContentsEv @ 199 NONAME + _ZN14QVGPaintEngine16drawCachedGlyphsEiPKjRK5QFontP11QFontEngineRK7QPointFPK11QFixedPoint @ 200 NONAME + _ZN14QVGPaintEngine18drawStaticTextItemEP15QStaticTextItem @ 201 NONAME + _ZN14QVGPaintEngine19drawPixmapFragmentsEPKN8QPainter14PixmapFragmentEiRK7QPixmap6QFlagsINS0_18PixmapFragmentHintEE @ 202 NONAME -- cgit v0.12 From 63c46022ca82ee76e4abf60952cf1379f50333c0 Mon Sep 17 00:00:00 2001 From: Shane Kearns Date: Fri, 28 May 2010 16:55:11 +0100 Subject: Fix location of QtMultimedia def files With the removal of QMediaServices, the multimedia sources were moved up one level. Therefore they don't need a special case location for the def files anymore, as the standard rule of ../s60installs used for Qt libraries is sufficient. Reviewed-by: Trust Me --- src/multimedia/multimedia.pro | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/multimedia/multimedia.pro b/src/multimedia/multimedia.pro index 93da612..852322d 100644 --- a/src/multimedia/multimedia.pro +++ b/src/multimedia/multimedia.pro @@ -13,7 +13,4 @@ include(video/video.pri) symbian: { TARGET.UID3 = 0x2001E627 - contains(CONFIG, def_files) { - DEF_FILE=../../s60installs - } } -- cgit v0.12 From e27032a8c5e759a0f7132dfbded5d5eeb9d0bbd3 Mon Sep 17 00:00:00 2001 From: Simon Hausmann Date: Sat, 29 May 2010 16:02:22 +0200 Subject: Updated WebKit to eb07c6f9bd50d0d74e9ac19ade4a2fbd5cece7c7 Changes integrated: || || [Qt] QtTestBrowser is still called QtLauncher in the code || || || [Qt] qwebframe auto test doesn't compile || || || [Qt] QtTestBrowser has two graphicsview options that aren't enabled correctly || || || [Qt] Tiled backing store checker pattern does not paint correctly when scaling factor is not 1 || || || Add an optional "starting node' parameter to scrollRecursively and scrollOverflow of EventHandler || || || [Qt] Update the Symbian version for the user agent || || || [Qt] Add more support for InputTextController || || || [Qt] Using Accelerated Composing the rocket back animation on http://www.the-art-of-web.com/css/css-animation/ works differently as when not using AC. || || || [Qt] Running with accelerated compositing enabled sometimes result in a crash || Plus autotest fix. --- src/3rdparty/webkit/.tag | 2 +- src/3rdparty/webkit/VERSION | 2 +- src/3rdparty/webkit/WebCore/ChangeLog | 72 ++++++++++++++++ src/3rdparty/webkit/WebCore/WebCore.pro | 2 +- src/3rdparty/webkit/WebCore/page/EventHandler.cpp | 12 ++- src/3rdparty/webkit/WebCore/page/EventHandler.h | 4 +- .../platform/graphics/TiledBackingStore.cpp | 8 +- .../webkit/WebCore/platform/graphics/qt/FontQt.cpp | 20 +++-- .../platform/graphics/qt/GraphicsLayerQt.cpp | 11 +-- .../webkit/WebKit/qt/Api/DerivedSources.pro | 6 +- src/3rdparty/webkit/WebKit/qt/Api/qwebpage.cpp | 99 ++++++++++++---------- src/3rdparty/webkit/WebKit/qt/ChangeLog | 44 ++++++++++ src/3rdparty/webkit/WebKit/qt/docs/docs.pri | 2 +- .../WebKit/qt/tests/qwebframe/tst_qwebframe.cpp | 2 +- .../WebKit/qt/tests/qwebpage/tst_qwebpage.cpp | 9 +- 15 files changed, 221 insertions(+), 74 deletions(-) diff --git a/src/3rdparty/webkit/.tag b/src/3rdparty/webkit/.tag index c4a7dd7..a8729b7 100644 --- a/src/3rdparty/webkit/.tag +++ b/src/3rdparty/webkit/.tag @@ -1 +1 @@ -eb07c6f9bd50d0d74e9ac19ade4a2fbd5cece7c7 +531b0d7cd2af830f0d17b83b6e4a489794481539 diff --git a/src/3rdparty/webkit/VERSION b/src/3rdparty/webkit/VERSION index 0899e3c..53687cf 100644 --- a/src/3rdparty/webkit/VERSION +++ b/src/3rdparty/webkit/VERSION @@ -4,4 +4,4 @@ This is a snapshot of the Qt port of WebKit from and has the sha1 checksum - 807157e42add842605ec67d9363dd3f1861748ca + eb07c6f9bd50d0d74e9ac19ade4a2fbd5cece7c7 diff --git a/src/3rdparty/webkit/WebCore/ChangeLog b/src/3rdparty/webkit/WebCore/ChangeLog index 625faa6..e5ae24f 100644 --- a/src/3rdparty/webkit/WebCore/ChangeLog +++ b/src/3rdparty/webkit/WebCore/ChangeLog @@ -1,3 +1,75 @@ +2010-05-13 Antti Koivisto + + Reviewed by Kenneth Rohde Christiansen. + + https://bugs.webkit.org/show_bug.cgi?id=39063 + [Qt] Tiled backing store checker pattern does not paint correctly when scaling factor is not 1 + + Use the dirty rect that has been adjusted for scaling instead of the original one. + + * platform/graphics/TiledBackingStore.cpp: + (WebCore::TiledBackingStore::paint): + +2010-05-24 Kenneth Rohde Christiansen + + Reviewed by Simon Hausmann. + + [Qt] Make text filling work together with text stroke. + + When the text has stroke a new QPen was set, overriding the pen + set for text filling. This patch fixes that by storing the two + pens and using where appropriate. + + * platform/graphics/qt/FontQt.cpp: + (WebCore::Font::drawComplexText): + +2010-05-17 Antonio Gomes + + Reviewed by Darin Adler. + + Add an optional "starting node' parameter to scrollRecursively and scrollOverflow of EventHandler + https://bugs.webkit.org/show_bug.cgi?id=39217 + + It would be usefull if scrollOverflow and scrollRecursively methods of EventHandler + could receive a parameter to specify where to start scrolling from. Currently they + start scrolling from either the current focused node or the node where mouse last + pressed on. Patch proposes an aditional starting point as an optional parameter. + Since it is optional, all call sites can remain as are, and if a Null node is passed + in, both methods work as previously. + + * page/EventHandler.cpp: + (WebCore::EventHandler::scrollOverflow): + (WebCore::EventHandler::scrollRecursively): + * page/EventHandler.h: + +2010-05-23 Noam Rosenthal + + Reviewed by Kenneth Rohde Christiansen. + + [Qt] Using Accelerated Composing the rocket back animation on http://www.the-art-of-web.com/css/css-animation/ works differently as when not using AC. + https://bugs.webkit.org/show_bug.cgi?id=39513 + + The value of GraphicsLayer->transform() needs to be changed during the animation, regardless of m_fillsForward. + m_fillsForward should only apply at the end of the animation. Based on previous patch by Kenneth Christiansen. + + * platform/graphics/qt/GraphicsLayerQt.cpp: + (WebCore::TransformAnimationQt::applyFrame): + (WebCore::OpacityAnimationQt::applyFrame): + +2010-05-25 Kenneth Rohde Christiansen + + Reviewed by Laszlo Gombos. + + [Qt] Running with accelerated compositing enabled sometimes result in a crash + https://bugs.webkit.org/show_bug.cgi?id=39609 + + Check if we have a scene before applying the workaround for + the QGraphicsScene bug where opacity change doesn't always have + immediate effect. + + * platform/graphics/qt/GraphicsLayerQt.cpp: + (WebCore::OpacityAnimationQt::applyFrame): + 2010-05-19 Kenneth Rohde Christiansen Reviewed by Simon Hausmann. diff --git a/src/3rdparty/webkit/WebCore/WebCore.pro b/src/3rdparty/webkit/WebCore/WebCore.pro index 63e78a7..5def728 100644 --- a/src/3rdparty/webkit/WebCore/WebCore.pro +++ b/src/3rdparty/webkit/WebCore/WebCore.pro @@ -159,7 +159,7 @@ defineTest(addExtraCompiler) { for(file,input) { base = $$basename(file) - base ~= s/\\..+// + base ~= s/\..+// newfile=$$replace(outputRule,\\$\\{QMAKE_FILE_BASE\\},$$base) SOURCES += $$newfile } diff --git a/src/3rdparty/webkit/WebCore/page/EventHandler.cpp b/src/3rdparty/webkit/WebCore/page/EventHandler.cpp index 46dd7ae..c40299c 100644 --- a/src/3rdparty/webkit/WebCore/page/EventHandler.cpp +++ b/src/3rdparty/webkit/WebCore/page/EventHandler.cpp @@ -929,9 +929,13 @@ void EventHandler::setMousePressNode(PassRefPtr node) m_mousePressNode = node; } -bool EventHandler::scrollOverflow(ScrollDirection direction, ScrollGranularity granularity) +bool EventHandler::scrollOverflow(ScrollDirection direction, ScrollGranularity granularity, Node* startingNode) { - Node* node = m_frame->document()->focusedNode(); + Node* node = startingNode; + + if (!node) + node = m_frame->document()->focusedNode(); + if (!node) node = m_mousePressNode.get(); @@ -946,9 +950,9 @@ bool EventHandler::scrollOverflow(ScrollDirection direction, ScrollGranularity g return false; } -bool EventHandler::scrollRecursively(ScrollDirection direction, ScrollGranularity granularity) +bool EventHandler::scrollRecursively(ScrollDirection direction, ScrollGranularity granularity, Node* startingNode) { - bool handled = scrollOverflow(direction, granularity); + bool handled = scrollOverflow(direction, granularity, startingNode); if (!handled) { Frame* frame = m_frame; do { diff --git a/src/3rdparty/webkit/WebCore/page/EventHandler.h b/src/3rdparty/webkit/WebCore/page/EventHandler.h index 282100d..a94e7bf 100644 --- a/src/3rdparty/webkit/WebCore/page/EventHandler.h +++ b/src/3rdparty/webkit/WebCore/page/EventHandler.h @@ -130,9 +130,9 @@ public: static Frame* subframeForTargetNode(Node*); - bool scrollOverflow(ScrollDirection, ScrollGranularity); + bool scrollOverflow(ScrollDirection, ScrollGranularity, Node* startingNode = 0); - bool scrollRecursively(ScrollDirection, ScrollGranularity); + bool scrollRecursively(ScrollDirection, ScrollGranularity, Node* startingNode = 0); #if ENABLE(DRAG_SUPPORT) bool shouldDragAutoNode(Node*, const IntPoint&) const; // -webkit-user-drag == auto diff --git a/src/3rdparty/webkit/WebCore/platform/graphics/TiledBackingStore.cpp b/src/3rdparty/webkit/WebCore/platform/graphics/TiledBackingStore.cpp index f00e792..0250061 100644 --- a/src/3rdparty/webkit/WebCore/platform/graphics/TiledBackingStore.cpp +++ b/src/3rdparty/webkit/WebCore/platform/graphics/TiledBackingStore.cpp @@ -120,9 +120,11 @@ void TiledBackingStore::paint(GraphicsContext* context, const IntRect& rect) if (currentTile && currentTile->isReadyToPaint()) currentTile->paint(context, dirtyRect); else { - FloatRect tileRect = tileRectForCoordinate(currentCoordinate); - FloatRect target = intersection(tileRect, FloatRect(rect)); - Tile::paintCheckerPattern(context, target); + IntRect tileRect = tileRectForCoordinate(currentCoordinate); + IntRect target = intersection(tileRect, dirtyRect); + if (target.isEmpty()) + continue; + Tile::paintCheckerPattern(context, FloatRect(target)); } } } diff --git a/src/3rdparty/webkit/WebCore/platform/graphics/qt/FontQt.cpp b/src/3rdparty/webkit/WebCore/platform/graphics/qt/FontQt.cpp index 1e92dcc..b707f9d 100644 --- a/src/3rdparty/webkit/WebCore/platform/graphics/qt/FontQt.cpp +++ b/src/3rdparty/webkit/WebCore/platform/graphics/qt/FontQt.cpp @@ -73,28 +73,31 @@ void Font::drawComplexText(GraphicsContext* ctx, const TextRun& run, const Float QPainter *p = ctx->platformContext(); + QPen textFillPen; if (ctx->textDrawingMode() & cTextFill) { if (ctx->fillGradient()) { QBrush brush(*ctx->fillGradient()->platformGradient()); brush.setTransform(ctx->fillGradient()->gradientSpaceTransform()); - p->setPen(QPen(brush, 0)); + textFillPen = QPen(brush, 0); } else if (ctx->fillPattern()) { AffineTransform affine; - p->setPen(QPen(QBrush(ctx->fillPattern()->createPlatformPattern(affine)), 0)); + textFillPen = QPen(QBrush(ctx->fillPattern()->createPlatformPattern(affine)), 0); } else - p->setPen(QColor(ctx->fillColor())); + textFillPen = QPen(QColor(ctx->fillColor())); } + QPen textStrokePen; if (ctx->textDrawingMode() & cTextStroke) { if (ctx->strokeGradient()) { QBrush brush(*ctx->strokeGradient()->platformGradient()); brush.setTransform(ctx->strokeGradient()->gradientSpaceTransform()); - p->setPen(QPen(brush, ctx->strokeThickness())); + textStrokePen = QPen(brush, ctx->strokeThickness()); } else if (ctx->strokePattern()) { AffineTransform affine; - p->setPen(QPen(QBrush(ctx->strokePattern()->createPlatformPattern(affine)), ctx->strokeThickness())); + QBrush brush(ctx->strokePattern()->createPlatformPattern(affine)); + textStrokePen = QPen(brush, ctx->strokeThickness()); } else - p->setPen(QPen(QColor(ctx->strokeColor()), ctx->strokeThickness())); + textStrokePen = QPen(QColor(ctx->strokeColor()), ctx->strokeThickness()); } String sanitized = Font::normalizeSpaces(String(run.characters(), run.length())); @@ -163,10 +166,13 @@ void Font::drawComplexText(GraphicsContext* ctx, const TextRun& run, const Float if (ctx->textDrawingMode() & cTextStroke) { QPainterPath path; path.addText(pt, font(), string); + p->setPen(textStrokePen); p->strokePath(path, p->pen()); } - if (ctx->textDrawingMode() & cTextFill) + if (ctx->textDrawingMode() & cTextFill) { + p->setPen(textFillPen); p->drawText(pt, string, flags, run.padding()); + } } float Font::floatWidthForComplexText(const TextRun& run, HashSet*) const diff --git a/src/3rdparty/webkit/WebCore/platform/graphics/qt/GraphicsLayerQt.cpp b/src/3rdparty/webkit/WebCore/platform/graphics/qt/GraphicsLayerQt.cpp index 969e00a..02bf25e 100644 --- a/src/3rdparty/webkit/WebCore/platform/graphics/qt/GraphicsLayerQt.cpp +++ b/src/3rdparty/webkit/WebCore/platform/graphics/qt/GraphicsLayerQt.cpp @@ -1191,9 +1191,9 @@ public: transformMatrix.blend(m_sourceMatrix, progress); } + m_layer.data()->m_layer->setTransform(transformMatrix); + // We force the actual opacity change, otherwise it would be ignored because of the animation. m_layer.data()->setBaseTransform(transformMatrix); - if (m_fillsForwards) - m_layer.data()->m_layer->setTransform(m_layer.data()->m_baseTransform); } virtual void updateState(QAbstractAnimation::State newState, QAbstractAnimation::State oldState) @@ -1231,18 +1231,19 @@ public: if (m_fillsForwards) setCurrentTime(1); } + virtual void applyFrame(const qreal& fromValue, const qreal& toValue, qreal progress) { qreal opacity = qBound(qreal(0), fromValue + (toValue-fromValue)*progress, qreal(1)); // FIXME: this is a hack, due to a probable QGraphicsScene bug. // Without this the opacity change doesn't always have immediate effect. - if (!m_layer.data()->opacity() && opacity) + if (m_layer.data()->scene() && !m_layer.data()->opacity() && opacity) m_layer.data()->scene()->update(); + m_layer.data()->m_layer->setOpacity(opacity); + // We force the actual opacity change, otherwise it would be ignored because of the animation. m_layer.data()->setOpacity(opacity); - if (m_fillsForwards) - m_layer.data()->m_layer->setOpacity(opacity); } virtual void updateState(QAbstractAnimation::State newState, QAbstractAnimation::State oldState) diff --git a/src/3rdparty/webkit/WebKit/qt/Api/DerivedSources.pro b/src/3rdparty/webkit/WebKit/qt/Api/DerivedSources.pro index 22d4c8d..389fb5f 100644 --- a/src/3rdparty/webkit/WebKit/qt/Api/DerivedSources.pro +++ b/src/3rdparty/webkit/WebKit/qt/Api/DerivedSources.pro @@ -28,7 +28,7 @@ qtheader_module.commands += echo $${QUOTE}$${LITERAL_HASH}define QT_QTWEBKIT_MOD qtheader_module.commands += echo $${QUOTE}$${LITERAL_HASH}include $${ESCAPE}$${QUOTE} >> $${qtheader_module.target} && WEBKIT_CLASS_HEADERS = $${LITERAL_DOLLAR}$${LITERAL_DOLLAR}$${LITERAL_DOLLAR}$${LITERAL_DOLLAR}PWD/QtWebKit -regex = ".*\\sclass\\sQWEBKIT_EXPORT\\s(\\w+)\\s(.*)" +regex = ".*\sclass\sQWEBKIT_EXPORT\s(\w+)\s(.*)" for(HEADER, WEBKIT_API_HEADERS) { # 1. Append to QtWebKit header that includes all other header files @@ -70,7 +70,7 @@ for(HEADER, WEBKIT_API_HEADERS) { res = $$find(src, $$regex) isEmpty(res):break() - exp = $$replace(src, $$regex, "EXPORTED_CLASS = \\1") + exp = $$replace(src, $$regex, "EXPORTED_CLASS = \1") eval($$exp) CLASS_TARGET = "qtheader_$${EXPORTED_CLASS}" @@ -87,7 +87,7 @@ for(HEADER, WEBKIT_API_HEADERS) { # Qt's QRegExp does not support inline non-greedy matching, # so we'll have to work around it by updating the haystack - src = $$replace(src, $$regex, "\\2") + src = $$replace(src, $$regex, "\2") src_words = $$join(src, $${LITERAL_WHITESPACE}) } } diff --git a/src/3rdparty/webkit/WebKit/qt/Api/qwebpage.cpp b/src/3rdparty/webkit/WebKit/qt/Api/qwebpage.cpp index 44bd902..b7182b4 100644 --- a/src/3rdparty/webkit/WebKit/qt/Api/qwebpage.cpp +++ b/src/3rdparty/webkit/WebKit/qt/Api/qwebpage.cpp @@ -1294,6 +1294,9 @@ void QWebPagePrivate::inputMethodEvent(QInputMethodEvent *ev) { WebCore::Frame *frame = page->focusController()->focusedOrMainFrame(); WebCore::Editor *editor = frame->editor(); +#if QT_VERSION >= 0x040600 + QInputMethodEvent::Attribute selection(QInputMethodEvent::Selection, 0, 0, QVariant()); +#endif if (!editor->canEdit()) { ev->ignore(); @@ -1310,6 +1313,7 @@ void QWebPagePrivate::inputMethodEvent(QInputMethodEvent *ev) renderTextControl = toRenderTextControl(renderer); Vector underlines; + bool hasSelection = false; for (int i = 0; i < ev->attributes().size(); ++i) { const QInputMethodEvent::Attribute& a = ev->attributes().at(i); @@ -1333,10 +1337,8 @@ void QWebPagePrivate::inputMethodEvent(QInputMethodEvent *ev) } #if QT_VERSION >= 0x040600 case QInputMethodEvent::Selection: { - if (renderTextControl) { - renderTextControl->setSelectionStart(qMin(a.start, (a.start + a.length))); - renderTextControl->setSelectionEnd(qMax(a.start, (a.start + a.length))); - } + selection = a; + hasSelection = true; break; } #endif @@ -1345,10 +1347,25 @@ void QWebPagePrivate::inputMethodEvent(QInputMethodEvent *ev) if (!ev->commitString().isEmpty()) editor->confirmComposition(ev->commitString()); - else if (!ev->preeditString().isEmpty()) { + else { + // 1. empty preedit with a selection attribute, and start/end of 0 cancels composition + // 2. empty preedit with a selection attribute, and start/end of non-0 updates selection of current preedit text + // 3. populated preedit with a selection attribute, and start/end of 0 or non-0 updates selection of supplied preedit text + // 4. otherwise event is updating supplied pre-edit text QString preedit = ev->preeditString(); - editor->setComposition(preedit, underlines, preedit.length(), 0); +#if QT_VERSION >= 0x040600 + if (hasSelection) { + QString text = (renderTextControl) ? QString(renderTextControl->text()) : QString(); + if (preedit.isEmpty() && selection.start + selection.length > 0) + preedit = text; + editor->setComposition(preedit, underlines, + (selection.length < 0) ? selection.start + selection.length : selection.start, + (selection.length < 0) ? selection.start : selection.start + selection.length); + } else +#endif + editor->setComposition(preedit, underlines, preedit.length(), 0); } + ev->accept(); } @@ -3329,12 +3346,37 @@ QString QWebPage::userAgentForUrl(const QUrl&) const #elif defined Q_WS_X11 "X11" #elif defined Q_OS_SYMBIAN - "SymbianOS" + "Symbian" #else "Unknown" #endif ); +#if defined Q_OS_SYMBIAN + QSysInfo::SymbianVersion symbianVersion = QSysInfo::symbianVersion(); + switch (symbianVersion) { + case QSysInfo::SV_9_2: + firstPartTemp += QString::fromLatin1("OS/9.2"); + break; + case QSysInfo::SV_9_3: + firstPartTemp += QString::fromLatin1("OS/9.3"); + break; + case QSysInfo::SV_9_4: + firstPartTemp += QString::fromLatin1("OS/9.4"); + break; + case QSysInfo::SV_SF_2: + firstPartTemp += QString::fromLatin1("/2"); + break; + case QSysInfo::SV_SF_3: + firstPartTemp += QString::fromLatin1("/3"); + break; + case QSysInfo::SV_SF_4: + firstPartTemp += QString::fromLatin1("/4"); + default: + break; + } +#endif + firstPartTemp += QString::fromLatin1("; "); // SSL support @@ -3458,51 +3500,22 @@ QString QWebPage::userAgentForUrl(const QUrl&) const firstPartTemp += QString::fromLatin1("Sun Solaris"); #elif defined Q_OS_ULTRIX firstPartTemp += QString::fromLatin1("DEC Ultrix"); -#elif defined Q_OS_SYMBIAN - firstPartTemp += QString::fromLatin1("SymbianOS"); - QSysInfo::SymbianVersion symbianVersion = QSysInfo::symbianVersion(); - switch (symbianVersion) { - case QSysInfo::SV_9_2: - firstPartTemp += QString::fromLatin1("/9.2"); - break; - case QSysInfo::SV_9_3: - firstPartTemp += QString::fromLatin1("/9.3"); - break; - case QSysInfo::SV_9_4: - firstPartTemp += QString::fromLatin1("/9.4"); - break; - case QSysInfo::SV_SF_2: - firstPartTemp += QString::fromLatin1("^2"); - break; - case QSysInfo::SV_SF_3: - firstPartTemp += QString::fromLatin1("^3"); - break; - case QSysInfo::SV_SF_4: - firstPartTemp += QString::fromLatin1("^4"); - break; - default: - firstPartTemp += QString::fromLatin1("/Unknown"); - } - -#if defined Q_WS_S60 +#elif defined Q_WS_S60 firstPartTemp += QLatin1Char(' '); - firstPartTemp += QString::fromLatin1("Series60"); QSysInfo::S60Version s60Version = QSysInfo::s60Version(); switch (s60Version) { case QSysInfo::SV_S60_3_1: - firstPartTemp += QString::fromLatin1("/3.1"); + firstPartTemp += QString::fromLatin1("Series60/3.1"); break; case QSysInfo::SV_S60_3_2: - firstPartTemp += QString::fromLatin1("/3.2"); + firstPartTemp += QString::fromLatin1("Series60/3.2"); break; case QSysInfo::SV_S60_5_0: - firstPartTemp += QString::fromLatin1("/5.0"); + firstPartTemp += QString::fromLatin1("Series60/5.0"); break; default: - firstPartTemp += QString::fromLatin1("/Unknown"); + break; } -#endif - #elif defined Q_OS_UNIX firstPartTemp += QString::fromLatin1("UNIX BSD/SYSV system"); #elif defined Q_OS_UNIXWARE @@ -3532,8 +3545,8 @@ QString QWebPage::userAgentForUrl(const QUrl&) const QString thirdPartTemp; thirdPartTemp.reserve(150); -#if defined(Q_WS_S60) || defined(Q_WS_MAEMO_5) - thirdPartTemp + QLatin1String(" Mobile Safari/"); +#if defined(Q_OS_SYMBIAN) || defined(Q_WS_MAEMO_5) + thirdPartTemp += QLatin1String(" Mobile Safari/"); #else thirdPartTemp += QLatin1String(" Safari/"); #endif diff --git a/src/3rdparty/webkit/WebKit/qt/ChangeLog b/src/3rdparty/webkit/WebKit/qt/ChangeLog index 2f87c7b..79c1ef3 100644 --- a/src/3rdparty/webkit/WebKit/qt/ChangeLog +++ b/src/3rdparty/webkit/WebKit/qt/ChangeLog @@ -1,3 +1,47 @@ +2010-04-20 Robert Hogan + + Reviewed by Simon Hausmann. + + [Qt] Add more support for textInputController + + Add support for selectedRange(), setMarkedText(), insertText(), + and firstRectForCharacterRange(). + + https://bugs.webkit.org/show_bug.cgi?id=35702 + + * Api/qwebpage.cpp: + (QWebPagePrivate::inputMethodEvent): + * tests/qwebpage/tst_qwebpage.cpp: + (tst_QWebPage::inputMethods): + +2010-05-20 Janne Koskinen + + Reviewed by Kenneth Rohde Christiansen. + + [Qt] WINSCW compile fix for qwebframe test + https://bugs.webkit.org/show_bug.cgi?id=38722 + + WINSCW cannot determine template type up the hierarchy + to common base class. + + * tests/qwebframe/tst_qwebframe.cpp: + +2010-05-23 Laszlo Gombos + + Reviewed by Kenneth Rohde Christiansen. + + [Qt] Update the Symbian version for the user agent + https://bugs.webkit.org/show_bug.cgi?id=38389 + + Fixes a regression introduced by r58648. Ensure that the "Symbian" string + is only listed one time in the User Agent string. + + In addition make an effort to align the User Agent string to already + released WebKit based products for Symbian. + + * Api/qwebpage.cpp: + (QWebPage::userAgentForUrl): + 2010-05-21 Simon Hausmann Symbian build fix. diff --git a/src/3rdparty/webkit/WebKit/qt/docs/docs.pri b/src/3rdparty/webkit/WebKit/qt/docs/docs.pri index a56ddb4..804817b 100644 --- a/src/3rdparty/webkit/WebKit/qt/docs/docs.pri +++ b/src/3rdparty/webkit/WebKit/qt/docs/docs.pri @@ -3,7 +3,7 @@ include(../../../WebKit.pri) unix { QDOC = SRCDIR=$$PWD/../../.. OUTPUT_DIR=$$OUTPUT_DIR $$(QTDIR)/bin/qdoc3 } else { - QDOC = $$(QTDIR)\\bin\\qdoc3.exe + QDOC = $$(QTDIR)\bin\qdoc3.exe } unix { diff --git a/src/3rdparty/webkit/WebKit/qt/tests/qwebframe/tst_qwebframe.cpp b/src/3rdparty/webkit/WebKit/qt/tests/qwebframe/tst_qwebframe.cpp index c53a42d..76fdba3 100644 --- a/src/3rdparty/webkit/WebKit/qt/tests/qwebframe/tst_qwebframe.cpp +++ b/src/3rdparty/webkit/WebKit/qt/tests/qwebframe/tst_qwebframe.cpp @@ -785,7 +785,7 @@ void tst_QWebFrame::getSetStaticProperty() QCOMPARE(vm.size(), 3); QCOMPARE(vm.value("a").toInt(), 123); QCOMPARE(vm.value("b").toString(), QLatin1String("foo")); - QCOMPARE(vm.value("c").value(), m_myObject); + QCOMPARE(vm.value("c").value(), static_cast(m_myObject)); } QCOMPARE(evalJS("myObject.variantMapProperty.a === 123"), sTrue); QCOMPARE(evalJS("myObject.variantMapProperty.b === 'foo'"), sTrue); diff --git a/src/3rdparty/webkit/WebKit/qt/tests/qwebpage/tst_qwebpage.cpp b/src/3rdparty/webkit/WebKit/qt/tests/qwebpage/tst_qwebpage.cpp index 52dc6bb..19c6bde 100644 --- a/src/3rdparty/webkit/WebKit/qt/tests/qwebpage/tst_qwebpage.cpp +++ b/src/3rdparty/webkit/WebKit/qt/tests/qwebpage/tst_qwebpage.cpp @@ -1450,11 +1450,16 @@ void tst_QWebPage::inputMethods() QString selectionValue = variant.value(); QCOMPARE(selectionValue, QString("eb")); - //Set selection with negative length - inputAttributes << QInputMethodEvent::Attribute(QInputMethodEvent::Selection, 6, -5, QVariant()); + //Cancel current composition first + inputAttributes << QInputMethodEvent::Attribute(QInputMethodEvent::Selection, 0, 0, QVariant()); QInputMethodEvent eventSelection2("",inputAttributes); page->event(&eventSelection2); + //Set selection with negative length + inputAttributes << QInputMethodEvent::Attribute(QInputMethodEvent::Selection, 6, -5, QVariant()); + QInputMethodEvent eventSelection3("",inputAttributes); + page->event(&eventSelection3); + //ImAnchorPosition variant = page->inputMethodQuery(Qt::ImAnchorPosition); anchorPosition = variant.toInt(); -- cgit v0.12 From 130cf33cdc1a1f7c2a0b33fcef0ac63b8163306d Mon Sep 17 00:00:00 2001 From: Alan Alpert Date: Sun, 30 May 2010 10:52:42 +1000 Subject: Some tweaks on the QML-enhanced QtDemo -don't crash if we aren't showing the FPS -different method of unloading the QML example when hidden -fix screwed up background when scaled. --- demos/qtdemo/menumanager.cpp | 25 ++++++++++++++++--------- demos/qtdemo/menumanager.h | 1 - demos/qtdemo/qmlShell.qml | 1 + 3 files changed, 17 insertions(+), 10 deletions(-) diff --git a/demos/qtdemo/menumanager.cpp b/demos/qtdemo/menumanager.cpp index 9e2ba6b..a2ceb0e 100644 --- a/demos/qtdemo/menumanager.cpp +++ b/demos/qtdemo/menumanager.cpp @@ -378,13 +378,19 @@ void MenuManager::launchQmlExample(const QString &name) return; } } + if(!Colors::noBlur){ + QImage qmlBgImage(this->window->rect().size(), QImage::Format_ARGB32_Premultiplied); + QPainter painter(&qmlBgImage); + if(Colors::showFps) + this->window->fpsLabel->setOpacity(0); + this->window->render(&painter); + if(Colors::showFps) + this->window->fpsLabel->setOpacity(1.0); + Qt::ImageConversionFlags convFlags = Qt::AvoidDither | Qt::NoOpaqueDetection; + this->declarativeEngine->rootContext()->setContextProperty("bgAppPixmap", QVariant(QPixmap::fromImage(qmlBgImage, convFlags))); + } - QPainter painter(qmlBgImage); - this->window->fpsLabel->setOpacity(0); - this->window->render(&painter); - this->window->fpsLabel->setOpacity(1.0); - Qt::ImageConversionFlags convFlags = Qt::AvoidDither | Qt::NoOpaqueDetection; - this->declarativeEngine->rootContext()->setContextProperty("bgAppPixmap", QVariant(QPixmap::fromImage(*qmlBgImage, convFlags))); + qmlRoot->setProperty("qmlFile", QVariant(""));//unload component qmlRoot->setProperty("show", QVariant(true)); qmlRoot->setProperty("qmlFile", QUrl::fromLocalFile(file.fileName())); } @@ -439,10 +445,11 @@ void MenuManager::init(MainWindow *window) // Note that we paint the background into a static image for a theorized performance improvement when blurring // It has not yet been determined what, if any, speed up this gives (but is left in 'cause the QML expects it now) - this->qmlBgImage = new QImage(window->sceneRect().size().toSize(), QImage::Format_ARGB32); - this->qmlBgImage->fill(0); declarativeEngine->rootContext()->setContextProperty("useBlur", !Colors::noBlur); - declarativeEngine->rootContext()->setContextProperty("bgAppPixmap", QVariant(QPixmap::fromImage(*qmlBgImage))); + QImage qmlBgImage(this->window->rect().size(), QImage::Format_ARGB32_Premultiplied); + qmlBgImage.fill(0); + this->declarativeEngine->rootContext()->setContextProperty("bgAppPixmap", QVariant(QPixmap::fromImage(qmlBgImage))); + QDeclarativeComponent component(declarativeEngine, QUrl("qrc:qml/qmlShell.qml"), this); qmlRoot = 0; if(component.isReady()) diff --git a/demos/qtdemo/menumanager.h b/demos/qtdemo/menumanager.h index e90e02c..5e14204 100644 --- a/demos/qtdemo/menumanager.h +++ b/demos/qtdemo/menumanager.h @@ -85,7 +85,6 @@ public: QDeclarativeEngine* declarativeEngine; QDeclarativeItem *qmlRoot; - QImage *qmlBgImage; private slots: void exampleFinished(); diff --git a/demos/qtdemo/qmlShell.qml b/demos/qtdemo/qmlShell.qml index b9021e8..b1ee79a 100644 --- a/demos/qtdemo/qmlShell.qml +++ b/demos/qtdemo/qmlShell.qml @@ -167,6 +167,7 @@ Item { SequentialAnimation{ PropertyAction { target: bg; property: useBlur?"y":"opacity";}//fade in blurred background only if blurred NumberAnimation{ properties: "opacity"; easing.type: Easing.InQuad; duration: 500} + PropertyAction { target: loader; property: "focus"; value: true}//Might be needed to ensure the focus stays with us } } ] -- cgit v0.12 From 8a3eee2e2717f2f6ab3ee3223bf798450b9ef39c Mon Sep 17 00:00:00 2001 From: Simon Hausmann Date: Sun, 30 May 2010 18:39:10 +0200 Subject: Updated WebKit to 531b0d7cd2af830f0d17b83b6e4a489794481539 Fixes integrated: || || [Qt] REGRESSION(r59837): Incorrect clipping of TransparencyLayers || || || [Qt] Make tiled backing store more configurable || || || [Qt] Add a way to stop delayed redirect requests || --- src/3rdparty/webkit/.tag | 2 +- src/3rdparty/webkit/VERSION | 2 +- src/3rdparty/webkit/WebCore/ChangeLog | 33 +++++++++++++ .../platform/graphics/TiledBackingStore.cpp | 33 ++++++++++--- .../WebCore/platform/graphics/TiledBackingStore.h | 17 +++++++ .../platform/graphics/qt/GraphicsContextQt.cpp | 4 +- src/3rdparty/webkit/WebKit/qt/Api/qwebpage.cpp | 56 ++++++++++++++++++++++ src/3rdparty/webkit/WebKit/qt/Api/qwebpage.h | 2 + src/3rdparty/webkit/WebKit/qt/ChangeLog | 36 ++++++++++++++ .../WebKit/qt/tests/qwebpage/tst_qwebpage.cpp | 28 ++++++++++- 10 files changed, 202 insertions(+), 11 deletions(-) diff --git a/src/3rdparty/webkit/.tag b/src/3rdparty/webkit/.tag index a8729b7..49b1cbe 100644 --- a/src/3rdparty/webkit/.tag +++ b/src/3rdparty/webkit/.tag @@ -1 +1 @@ -531b0d7cd2af830f0d17b83b6e4a489794481539 +c58dc2f491a824ac56e31c440fcf7fe16dab09c4 diff --git a/src/3rdparty/webkit/VERSION b/src/3rdparty/webkit/VERSION index 53687cf..1db0c55 100644 --- a/src/3rdparty/webkit/VERSION +++ b/src/3rdparty/webkit/VERSION @@ -4,4 +4,4 @@ This is a snapshot of the Qt port of WebKit from and has the sha1 checksum - eb07c6f9bd50d0d74e9ac19ade4a2fbd5cece7c7 + 531b0d7cd2af830f0d17b83b6e4a489794481539 diff --git a/src/3rdparty/webkit/WebCore/ChangeLog b/src/3rdparty/webkit/WebCore/ChangeLog index e5ae24f..daf10fa 100644 --- a/src/3rdparty/webkit/WebCore/ChangeLog +++ b/src/3rdparty/webkit/WebCore/ChangeLog @@ -1,3 +1,36 @@ +2010-05-28 Antti Koivisto + + Reviewed by Kenneth Rohde Christiansen. + + https://bugs.webkit.org/show_bug.cgi?id=39874 + [Qt] Make tiled backing store more configurable + + Make tile size, tile creation delay and tiling area dynamically configurable. + + * platform/graphics/TiledBackingStore.cpp: + (WebCore::TiledBackingStore::TiledBackingStore): + (WebCore::TiledBackingStore::setTileSize): + (WebCore::TiledBackingStore::setTileCreationDelay): + (WebCore::TiledBackingStore::setKeepAndCoverAreaMultipliers): + (WebCore::TiledBackingStore::createTiles): + * platform/graphics/TiledBackingStore.h: + (WebCore::TiledBackingStore::tileSize): + (WebCore::TiledBackingStore::tileCreationDelay): + (WebCore::TiledBackingStore::getKeepAndCoverAreaMultipliers): + +2010-05-28 Andreas Kling + + Reviewed by Kenneth Rohde Christiansen. + + [Qt] REGRESSION(r59837): Incorrect clipping of TransparencyLayers + https://bugs.webkit.org/show_bug.cgi?id=39784 + + Move coordinate transformation from TransparencyLayer to clipToImageBuffer() + + * platform/graphics/qt/GraphicsContextQt.cpp: + (WebCore::TransparencyLayer::TransparencyLayer): + (WebCore::GraphicsContext::clipToImageBuffer): + 2010-05-13 Antti Koivisto Reviewed by Kenneth Rohde Christiansen. diff --git a/src/3rdparty/webkit/WebCore/platform/graphics/TiledBackingStore.cpp b/src/3rdparty/webkit/WebCore/platform/graphics/TiledBackingStore.cpp index 0250061..1d6f237 100644 --- a/src/3rdparty/webkit/WebCore/platform/graphics/TiledBackingStore.cpp +++ b/src/3rdparty/webkit/WebCore/platform/graphics/TiledBackingStore.cpp @@ -35,6 +35,9 @@ TiledBackingStore::TiledBackingStore(TiledBackingStoreClient* client) , m_tileBufferUpdateTimer(new TileTimer(this, &TiledBackingStore::tileBufferUpdateTimerFired)) , m_tileCreationTimer(new TileTimer(this, &TiledBackingStore::tileCreationTimerFired)) , m_tileSize(defaultTileWidth, defaultTileHeight) + , m_tileCreationDelay(0.01) + , m_keepAreaMultiplier(2.f, 3.5f) + , m_coverAreaMultiplier(1.5f, 2.5f) , m_contentsScale(1.f) , m_pendingScale(0) , m_contentsFrozen(false) @@ -46,6 +49,25 @@ TiledBackingStore::~TiledBackingStore() delete m_tileBufferUpdateTimer; delete m_tileCreationTimer; } + +void TiledBackingStore::setTileSize(const IntSize& size) +{ + m_tileSize = size; + m_tiles.clear(); + startTileCreationTimer(); +} + +void TiledBackingStore::setTileCreationDelay(double delay) +{ + m_tileCreationDelay = delay; +} + +void TiledBackingStore::setKeepAndCoverAreaMultipliers(const FloatSize& keepMultiplier, const FloatSize& coverMultiplier) +{ + m_keepAreaMultiplier = keepMultiplier; + m_coverAreaMultiplier = coverMultiplier; + startTileCreationTimer(); +} void TiledBackingStore::invalidate(const IntRect& contentsDirtyRect) { @@ -188,17 +210,16 @@ void TiledBackingStore::createTiles() // Remove tiles that extend outside the current contents rect. dropOverhangingTiles(); - // FIXME: Make configurable/adapt to memory. IntRect keepRect = visibleRect; - keepRect.inflateX(visibleRect.width()); - keepRect.inflateY(3 * visibleRect.height()); + keepRect.inflateX(visibleRect.width() * (m_keepAreaMultiplier.width() - 1.f)); + keepRect.inflateY(visibleRect.height() * (m_keepAreaMultiplier.height() - 1.f)); keepRect.intersect(contentsRect()); dropTilesOutsideRect(keepRect); IntRect coverRect = visibleRect; - coverRect.inflateX(visibleRect.width() / 2); - coverRect.inflateY(2 * visibleRect.height()); + coverRect.inflateX(visibleRect.width() * (m_coverAreaMultiplier.width() - 1.f)); + coverRect.inflateY(visibleRect.height() * (m_coverAreaMultiplier.height() - 1.f)); coverRect.intersect(contentsRect()); // Search for the tile position closest to the viewport center that does not yet contain a tile. @@ -240,7 +261,7 @@ void TiledBackingStore::createTiles() // Keep creating tiles until the whole coverRect is covered. if (requiredTileCount) - m_tileCreationTimer->startOneShot(0); + m_tileCreationTimer->startOneShot(m_tileCreationDelay); } void TiledBackingStore::dropOverhangingTiles() diff --git a/src/3rdparty/webkit/WebCore/platform/graphics/TiledBackingStore.h b/src/3rdparty/webkit/WebCore/platform/graphics/TiledBackingStore.h index d12f191..58477db 100644 --- a/src/3rdparty/webkit/WebCore/platform/graphics/TiledBackingStore.h +++ b/src/3rdparty/webkit/WebCore/platform/graphics/TiledBackingStore.h @@ -51,6 +51,20 @@ public: void invalidate(const IntRect& dirtyRect); void paint(GraphicsContext*, const IntRect&); + + IntSize tileSize() { return m_tileSize; } + void setTileSize(const IntSize&); + + double tileCreationDelay() const { return m_tileCreationDelay; } + void setTileCreationDelay(double delay); + + // Tiled are dropped outside the keep area, and created for cover area. The values a relative to the viewport size. + void getKeepAndCoverAreaMultipliers(FloatSize& keepMultiplier, FloatSize& coverMultiplier) + { + keepMultiplier = m_keepAreaMultiplier; + coverMultiplier = m_coverAreaMultiplier; + } + void setKeepAndCoverAreaMultipliers(const FloatSize& keepMultiplier, const FloatSize& coverMultiplier); private: void startTileBufferUpdateTimer(); @@ -94,6 +108,9 @@ private: TileTimer* m_tileCreationTimer; IntSize m_tileSize; + double m_tileCreationDelay; + FloatSize m_keepAreaMultiplier; + FloatSize m_coverAreaMultiplier; IntRect m_previousVisibleRect; float m_contentsScale; diff --git a/src/3rdparty/webkit/WebCore/platform/graphics/qt/GraphicsContextQt.cpp b/src/3rdparty/webkit/WebCore/platform/graphics/qt/GraphicsContextQt.cpp index 69121c8..bdb810a 100644 --- a/src/3rdparty/webkit/WebCore/platform/graphics/qt/GraphicsContextQt.cpp +++ b/src/3rdparty/webkit/WebCore/platform/graphics/qt/GraphicsContextQt.cpp @@ -173,7 +173,7 @@ struct TransparencyLayer : FastAllocBase { , alphaMask(alphaMask) , saveCounter(1) // see the comment for saveCounter { - offset = p->transform().mapRect(rect).topLeft(); + offset = rect.topLeft(); pixmap.fill(Qt::transparent); painter.begin(&pixmap); painter.setRenderHint(QPainter::Antialiasing, p->testRenderHint(QPainter::Antialiasing)); @@ -1125,7 +1125,7 @@ void GraphicsContext::clipToImageBuffer(const FloatRect& floatRect, const ImageB if (alphaMask.width() != rect.width() || alphaMask.height() != rect.height()) alphaMask = alphaMask.scaled(rect.width(), rect.height()); - m_data->layers.push(new TransparencyLayer(m_data->p(), rect, 1.0, alphaMask)); + m_data->layers.push(new TransparencyLayer(m_data->p(), m_data->p()->transform().mapRect(rect), 1.0, alphaMask)); } void GraphicsContext::addInnerRoundedRectClip(const IntRect& rect, diff --git a/src/3rdparty/webkit/WebKit/qt/Api/qwebpage.cpp b/src/3rdparty/webkit/WebKit/qt/Api/qwebpage.cpp index b7182b4..a61ca2e 100644 --- a/src/3rdparty/webkit/WebKit/qt/Api/qwebpage.cpp +++ b/src/3rdparty/webkit/WebKit/qt/Api/qwebpage.cpp @@ -51,6 +51,7 @@ #include "EditorClientQt.h" #include "SecurityOrigin.h" #include "Settings.h" +#include "TiledBackingStore.h" #include "Page.h" #include "Pasteboard.h" #include "FrameLoader.h" @@ -1386,7 +1387,42 @@ void QWebPagePrivate::dynamicPropertyChangeEvent(QDynamicPropertyChangeEvent* ev } else if (event->propertyName() == "_q_HTMLTokenizerTimeDelay") { double timeDelay = q->property("_q_HTMLTokenizerTimeDelay").toDouble(); q->handle()->page->setCustomHTMLTokenizerTimeDelay(timeDelay); + } +#if ENABLE(TILED_BACKING_STORE) + else if (event->propertyName() == "_q_TiledBackingStoreTileSize") { + WebCore::Frame* frame = QWebFramePrivate::core(q->mainFrame()); + if (!frame->tiledBackingStore()) + return; + QSize tileSize = q->property("_q_TiledBackingStoreTileSize").toSize(); + frame->tiledBackingStore()->setTileSize(tileSize); + } else if (event->propertyName() == "_q_TiledBackingStoreTileCreationDelay") { + WebCore::Frame* frame = QWebFramePrivate::core(q->mainFrame()); + if (!frame->tiledBackingStore()) + return; + int tileCreationDelay = q->property("_q_TiledBackingStoreTileCreationDelay").toInt(); + frame->tiledBackingStore()->setTileCreationDelay(static_cast(tileCreationDelay) / 1000.); + } else if (event->propertyName() == "_q_TiledBackingStoreKeepAreaMultiplier") { + WebCore::Frame* frame = QWebFramePrivate::core(q->mainFrame()); + if (!frame->tiledBackingStore()) + return; + FloatSize keepMultiplier; + FloatSize coverMultiplier; + frame->tiledBackingStore()->getKeepAndCoverAreaMultipliers(keepMultiplier, coverMultiplier); + QSizeF qSize = q->property("_q_TiledBackingStoreKeepAreaMultiplier").toSizeF(); + keepMultiplier = FloatSize(qSize.width(), qSize.height()); + frame->tiledBackingStore()->setKeepAndCoverAreaMultipliers(keepMultiplier, coverMultiplier); + } else if (event->propertyName() == "_q_TiledBackingStoreCoverAreaMultiplier") { + WebCore::Frame* frame = QWebFramePrivate::core(q->mainFrame()); + if (!frame->tiledBackingStore()) + return; + FloatSize keepMultiplier; + FloatSize coverMultiplier; + frame->tiledBackingStore()->getKeepAndCoverAreaMultipliers(keepMultiplier, coverMultiplier); + QSizeF qSize = q->property("_q_TiledBackingStoreCoverAreaMultiplier").toSizeF(); + coverMultiplier = FloatSize(qSize.width(), qSize.height()); + frame->tiledBackingStore()->setKeepAndCoverAreaMultipliers(keepMultiplier, coverMultiplier); } +#endif } void QWebPagePrivate::shortcutOverrideEvent(QKeyEvent* event) @@ -1709,6 +1745,7 @@ InspectorController* QWebPagePrivate::inspectorController() \value Back Navigate back in the history of navigated links. \value Forward Navigate forward in the history of navigated links. \value Stop Stop loading the current page. + \value StopScheduledPageRefresh Stop all pending page refresh/redirect requests. \value Reload Reload the current page. \value ReloadAndBypassCache Reload the current page, but do not use any local cache. (Added in Qt 4.6) \value Cut Cut the content currently selected into the clipboard. @@ -2114,6 +2151,15 @@ static void openNewWindow(const QUrl& url, WebCore::Frame* frame) } } +static void collectChildFrames(QWebFrame* frame, QList& list) +{ + list << frame->childFrames(); + QListIterator it(frame->childFrames()); + while (it.hasNext()) { + collectChildFrames(it.next(), list); + } +} + /*! This function can be called to trigger the specified \a action. It is also called by QtWebKit if the user triggers the action, for example @@ -2210,6 +2256,16 @@ void QWebPage::triggerAction(WebAction action, bool) #endif break; } + case StopScheduledPageRefresh: { + QWebFrame* topFrame = mainFrame(); + topFrame->d->frame->redirectScheduler()->cancel(); + QList childFrames; + collectChildFrames(topFrame, childFrames); + QListIterator it(childFrames); + while (it.hasNext()) + it.next()->d->frame->redirectScheduler()->cancel(); + break; + } default: command = QWebPagePrivate::editorCommandForWebActions(action); break; diff --git a/src/3rdparty/webkit/WebKit/qt/Api/qwebpage.h b/src/3rdparty/webkit/WebKit/qt/Api/qwebpage.h index 1adde06..34f675b 100644 --- a/src/3rdparty/webkit/WebKit/qt/Api/qwebpage.h +++ b/src/3rdparty/webkit/WebKit/qt/Api/qwebpage.h @@ -169,6 +169,8 @@ public: AlignLeft, AlignRight, + StopScheduledPageRefresh, + WebActionCount }; diff --git a/src/3rdparty/webkit/WebKit/qt/ChangeLog b/src/3rdparty/webkit/WebKit/qt/ChangeLog index 79c1ef3..cc2d39a 100644 --- a/src/3rdparty/webkit/WebKit/qt/ChangeLog +++ b/src/3rdparty/webkit/WebKit/qt/ChangeLog @@ -1,3 +1,39 @@ +2010-05-28 Antti Koivisto + + Reviewed by Kenneth Rohde Christiansen. + + Add a missing #if ENABLE(), some null checking. + + * Api/qwebpage.cpp: + (QWebPagePrivate::dynamicPropertyChangeEvent): + +2010-05-28 Antti Koivisto + + Reviewed by Kenneth Rohde Christiansen. + + https://bugs.webkit.org/show_bug.cgi?id=39874 + [Qt] Make tiled backing store more configurable + + Make tile size, tile creation delay and tiling area dynamically configurable. + + * Api/qwebpage.cpp: + (QWebPagePrivate::dynamicPropertyChangeEvent): + +2010-05-29 Dawit Alemayehu + + Reviewed by Kenneth Rohde Christiansen. + + Added a WebAction to stop all pending page refresh/redirect + requests set through the tag. + + https://bugs.webkit.org/show_bug.cgi?id=29899 + + * Api/qwebpage.cpp: + (QWebPage::triggerAction): + * Api/qwebpage.h: + * tests/qwebpage/tst_qwebpage.cpp: + (tst_QWebPage::testStopScheduledPageRefresh): + 2010-04-20 Robert Hogan Reviewed by Simon Hausmann. diff --git a/src/3rdparty/webkit/WebKit/qt/tests/qwebpage/tst_qwebpage.cpp b/src/3rdparty/webkit/WebKit/qt/tests/qwebpage/tst_qwebpage.cpp index 19c6bde..27f4b27 100644 --- a/src/3rdparty/webkit/WebKit/qt/tests/qwebpage/tst_qwebpage.cpp +++ b/src/3rdparty/webkit/WebKit/qt/tests/qwebpage/tst_qwebpage.cpp @@ -121,7 +121,8 @@ private slots: void originatingObjectInNetworkRequests(); void testJSPrompt(); void showModalDialog(); - + void testStopScheduledPageRefresh(); + private: QWebView* m_view; QWebPage* m_page; @@ -2095,5 +2096,30 @@ void tst_QWebPage::showModalDialog() QCOMPARE(res, QString("This is a test")); } +void tst_QWebPage::testStopScheduledPageRefresh() +{ + // Without QWebPage::StopScheduledPageRefresh + QWebPage page1; + page1.setNetworkAccessManager(new TestNetworkManager(&page1)); + page1.mainFrame()->setHtml("" + "" + "

    Page redirects immediately...

    " + ""); + QVERIFY(::waitForSignal(&page1, SIGNAL(loadFinished(bool)))); + QTest::qWait(500); + QCOMPARE(page1.mainFrame()->url().toString(), QString("http://qt.nokia.com/favicon.ico")); + + // With QWebPage::StopScheduledPageRefresh + QWebPage page2; + page2.setNetworkAccessManager(new TestNetworkManager(&page2)); + page2.mainFrame()->setHtml("" + "" + "

    Page redirect test with 1 sec timeout...

    " + ""); + page2.triggerAction(QWebPage::StopScheduledPageRefresh); + QTest::qWait(1500); + QCOMPARE(page2.mainFrame()->url().toString(), QString("about:blank")); +} + QTEST_MAIN(tst_QWebPage) #include "tst_qwebpage.moc" -- cgit v0.12 From e66fe7ea65b218dd320cb553bf6669d2a2021657 Mon Sep 17 00:00:00 2001 From: Warwick Allison Date: Fri, 28 May 2010 11:55:11 +1000 Subject: Add selection methods to TextEdit Sufficient to allow different selection look and feel (see whacky example) Task-number: QTBUG-10968 Reviewed-by: Michael Brasser Reviewed-by: Alan Alpert --- examples/declarative/text/edit/edit.qml | 248 +++++++++++++++++++++ examples/declarative/text/edit/pics/endHandle.png | Bin 0 -> 185 bytes examples/declarative/text/edit/pics/endHandle.sci | 5 + .../declarative/text/edit/pics/startHandle.png | Bin 0 -> 178 bytes .../declarative/text/edit/pics/startHandle.sci | 5 + src/declarative/QmlChanges.txt | 2 + .../graphicsitems/qdeclarativetextedit.cpp | 116 ++++++++++ .../graphicsitems/qdeclarativetextedit_p.h | 8 + .../graphicsitems/qdeclarativetextinput.cpp | 4 +- .../graphicsitems/qdeclarativetextinput_p.h | 2 +- .../qdeclarativetextedit/MultilineEdit.qml | 74 ++++++ .../qdeclarativetextedit/usingMultilineEdit.qml | 13 ++ .../qmlvisual/qdeclarativetextinput/LineEdit.qml | 4 +- 13 files changed, 476 insertions(+), 5 deletions(-) create mode 100644 examples/declarative/text/edit/edit.qml create mode 100644 examples/declarative/text/edit/pics/endHandle.png create mode 100644 examples/declarative/text/edit/pics/endHandle.sci create mode 100644 examples/declarative/text/edit/pics/startHandle.png create mode 100644 examples/declarative/text/edit/pics/startHandle.sci create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextedit/MultilineEdit.qml create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextedit/usingMultilineEdit.qml diff --git a/examples/declarative/text/edit/edit.qml b/examples/declarative/text/edit/edit.qml new file mode 100644 index 0000000..2774739 --- /dev/null +++ b/examples/declarative/text/edit/edit.qml @@ -0,0 +1,248 @@ +/**************************************************************************** +** +** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the QtDeclarative module of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** No Commercial Usage +** This file contains pre-release code and may not be distributed. +** You may use this file in accordance with the terms and conditions +** contained in the Technology Preview License Agreement accompanying +** this package. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Nokia gives you certain additional +** rights. These rights are described in the Nokia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** +** +** $QT_END_LICENSE$ +** +****************************************************************************/ +import Qt 4.7 + +Rectangle { + id: editor + color: "lightGrey" + width: 640; height: 480 + + Rectangle { + color: "white" + anchors.fill: parent + anchors.margins: 20 + + BorderImage { + id: startHandle + source: "pics/startHandle.sci" + opacity: 0.0 + width: 10 + x: edit.positionToRectangle(edit.selectionStart).x-flick.contentX-width + y: edit.positionToRectangle(edit.selectionStart).y-flick.contentY + height: edit.positionToRectangle(edit.selectionStart).height + } + + BorderImage { + id: endHandle + source: "pics/endHandle.sci" + opacity: 0.0 + width: 10 + x: edit.positionToRectangle(edit.selectionEnd).x-flick.contentX + y: edit.positionToRectangle(edit.selectionEnd).y-flick.contentY + height: edit.positionToRectangle(edit.selectionEnd).height + } + + Flickable { + id: flick + + anchors.fill: parent + contentWidth: edit.paintedWidth + contentHeight: edit.paintedHeight + interactive: true + clip: true + + function ensureVisible(r) + { + if (contentX >= r.x) + contentX = r.x; + else if (contentX+width <= r.x+r.width) + contentX = r.x+r.width-width; + if (contentY >= r.y) + contentY = r.y; + else if (contentY+height <= r.y+r.height) + contentY = r.y+r.height-height; + } + + TextEdit { + id: edit + width: flick.width + height: flick.height + focus: true + wrapMode: TextEdit.Wrap + onCursorRectangleChanged: flick.ensureVisible(cursorRectangle) + text: "

    Text Selection

    " + +"

    This example is a whacky text selection mechanisms, showing how these can be implemented in the TextEdit element, to cater for whatever style is appropriate for the target platform." + +"

    Press-and-hold to select a word, then drag the selection handles." + +"

    Drag outside the selection to scroll the text." + +"

    Click inside the selection to cut/copy/paste/cancel selection." + +"

    It's too whacky to let you paste if there is no current selection." + MouseArea { + x: -startHandle.width + y: 0 + width: parent.width+startHandle.width+endHandle.width + height: parent.height + property string drag: ""; + property int pressPos; + onPressAndHold: { + if (editor.state == "") { + edit.cursorPosition = edit.positionAt(mouse.x+x,mouse.y+y); + edit.selectWord(); + editor.state = "selection" + } + } + onClicked: { + if (editor.state == "") { + edit.cursorPosition = edit.positionAt(mouse.x+x,mouse.y+y); + } + } + function hitHandle(h,x,y) { return x>=h.x+flick.contentX && x=h.y+flick.contentY && y= edit.selectionStart && pos <= edit.selectionEnd) { + drag = "selection" + flick.interactive = false + } else { + drag = "" + flick.interactive = true + } + } + } + } + onReleased: { + if (editor.state == "selection") { + if (drag == "selection") { + editor.state = "menu" + } + drag = "" + } + flick.interactive = true + } + onPositionChanged: { + if (editor.state == "selection" && drag != "") { + if (drag == "start") { + var pos = edit.positionAt(mouse.x+x+startHandle.width/2,mouse.y+y); + if (edit.selectionEnd < pos) + edit.selectionEnd = pos; + edit.selectionStart = pos; + } else if (drag == "end") { + var pos = edit.positionAt(mouse.x+x-endHandle.width/2,mouse.y+y); + if (edit.selectionStart > pos) + edit.selectionStart = pos; + edit.selectionEnd = pos; + } + } + } + } + } + } + + Item { + id: menu + opacity: 0.0 + width: 100 + height: 120 + anchors.centerIn: parent + Rectangle { + border.width: 1 + border.color: "darkBlue" + radius: 15 + color: "#806080FF" + anchors.fill: parent + } + Column { + anchors.centerIn: parent + spacing: 8 + Rectangle { + border.width: 1 + border.color: "darkBlue" + color: "#ff7090FF" + width: 60 + height: 16 + Text { anchors.centerIn: parent; text: "Cut" } + MouseArea { anchors.fill: parent; + onClicked: { edit.cut(); editor.state = "" } } + } + Rectangle { + border.width: 1 + border.color: "darkBlue" + color: "#ff7090FF" + width: 60 + height: 16 + Text { anchors.centerIn: parent; text: "Copy" } + MouseArea { anchors.fill: parent; + onClicked: { edit.copy(); editor.state = "selection" } } + } + Rectangle { + border.width: 1 + border.color: "darkBlue" + color: "#ff7090FF" + width: 60 + height: 16 + Text { anchors.centerIn: parent; text: "Paste" } + MouseArea { anchors.fill: parent; + onClicked: { edit.paste(); edit.cursorPosition = edit.selectionEnd; editor.state = "" } } + } + Rectangle { + border.width: 1 + border.color: "darkBlue" + color: "#ff7090FF" + width: 60 + height: 16 + Text { anchors.centerIn: parent; text: "Deselect" } + MouseArea { anchors.fill: parent; + onClicked: { edit.cursorPosition = edit.selectionEnd; edit.selectionStart = edit.selectionEnd; editor.state = "" } } + } + } + } + } + + states: [ + State { + name: "selection" + PropertyChanges { target: startHandle; opacity: 1.0 } + PropertyChanges { target: endHandle; opacity: 1.0 } + }, + State { + name: "menu" + PropertyChanges { target: startHandle; opacity: 0.5 } + PropertyChanges { target: endHandle; opacity: 0.5 } + PropertyChanges { target: menu; opacity: 1.0 } + } + ] +} diff --git a/examples/declarative/text/edit/pics/endHandle.png b/examples/declarative/text/edit/pics/endHandle.png new file mode 100644 index 0000000..1a4bc5d Binary files /dev/null and b/examples/declarative/text/edit/pics/endHandle.png differ diff --git a/examples/declarative/text/edit/pics/endHandle.sci b/examples/declarative/text/edit/pics/endHandle.sci new file mode 100644 index 0000000..4f51f24 --- /dev/null +++ b/examples/declarative/text/edit/pics/endHandle.sci @@ -0,0 +1,5 @@ +border.left: 0 +border.top: 6 +border.bottom: 6 +border.right: 6 +source: endHandle.png diff --git a/examples/declarative/text/edit/pics/startHandle.png b/examples/declarative/text/edit/pics/startHandle.png new file mode 100644 index 0000000..deedcd5 Binary files /dev/null and b/examples/declarative/text/edit/pics/startHandle.png differ diff --git a/examples/declarative/text/edit/pics/startHandle.sci b/examples/declarative/text/edit/pics/startHandle.sci new file mode 100644 index 0000000..f9eae20 --- /dev/null +++ b/examples/declarative/text/edit/pics/startHandle.sci @@ -0,0 +1,5 @@ +border.left: 6 +border.top: 6 +border.bottom: 6 +border.right: 0 +source: startHandle.png diff --git a/src/declarative/QmlChanges.txt b/src/declarative/QmlChanges.txt index 142920c..0df5f10 100644 --- a/src/declarative/QmlChanges.txt +++ b/src/declarative/QmlChanges.txt @@ -14,6 +14,8 @@ Component: status property instead - errorsString() renamed to errorString() +TextInput xToPosition -> positionAt (to match TextEdit.positionAt) + QList models no longer provide properties in model object. The properties are now updated when the object changes. An object's property "foo" may now be accessed as "foo", modelData.foo" or model.modelData.foo" diff --git a/src/declarative/graphicsitems/qdeclarativetextedit.cpp b/src/declarative/graphicsitems/qdeclarativetextedit.cpp index 9ccb8d2..f8876f2 100644 --- a/src/declarative/graphicsitems/qdeclarativetextedit.cpp +++ b/src/declarative/graphicsitems/qdeclarativetextedit.cpp @@ -89,6 +89,13 @@ TextEdit { A particular look-and-feel might use smooth scrolling (eg. using SmoothedFollow), might have a visible scrollbar, or a scrollbar that fades in to show location, etc. + Clipboard support is provided by the cut(), copy(), and paste() functions, and the selection can + be handled in a traditional "mouse" mechanism by setting selectByMouse, or handled completely + from QML by manipulating selectionStart and selectionEnd, or using selectAll() or selectWord(). + + You can translate between cursor positions (characters from the start of the document) and pixel + points using positionAt() and positionToRectangle(). + \sa Text */ @@ -531,6 +538,70 @@ qreal QDeclarativeTextEdit::paintedHeight() const return implicitHeight(); } +/*! + \qmlmethod rectangle TextEdit::positionToRectangle(position) + + Returns the rectangle at the given \a position in the text. The x, y, + and height properties correspond to the cursor that would describe + that position. +*/ +QRectF QDeclarativeTextEdit::positionToRectangle(int pos) const +{ + Q_D(const QDeclarativeTextEdit); + QTextCursor c(d->document); + c.setPosition(pos); + return d->control->cursorRect(c); + +} + +/*! + \qmlmethod int TextEdit::positionAt(x,y) + + Returns the text position closest to pixel position (\a x,\a y). + + Position 0 is before the first character, position 1 is after the first character + but before the second, and so on until position text.length, which is after all characters. +*/ +int QDeclarativeTextEdit::positionAt(int x, int y) const +{ + Q_D(const QDeclarativeTextEdit); + int r = d->document->documentLayout()->hitTest(QPoint(x,y-d->yoff), Qt::FuzzyHit); + return r; +} + +/*! + \qmlmethod int TextEdit::moveCursorSeletion(int pos) + + Moves the cursor to \a position and updates the selection accordingly. + (To only move the cursor, set the \l cursorPosition property.) + + When this method is called it additionally sets either the + selectionStart or the selectionEnd (whichever was at the previous cursor position) + to the specified position. This allows you to easily extend and contract the selected + text range. + + For example, take this sequence of calls: + + \code + cursorPosition = 5 + moveCursorSelection(9) + moveCursorSelection(7) + \endcode + + This moves the cursor to position 5, extend the selection end from 5 to 9 + and then retract the selection end from 9 to 7, leaving the text from position 5 to 7 + selected (the 6th and 7th characters). +*/ +void QDeclarativeTextEdit::moveCursorSelection(int pos) +{ + //Note that this is the same as setCursorPosition but with the KeepAnchor flag set + Q_D(QDeclarativeTextEdit); + QTextCursor cursor = d->control->textCursor(); + if (cursor.position() == pos) + return; + cursor.setPosition(pos, QTextCursor::KeepAnchor); + d->control->setTextCursor(cursor); +} /*! \qmlproperty bool TextEdit::cursorVisible @@ -956,6 +1027,51 @@ void QDeclarativeTextEdit::selectAll() } /*! + Causes the word closest to the current cursor position to be selected. +*/ +void QDeclarativeTextEdit::selectWord() +{ + Q_D(QDeclarativeTextEdit); + QTextCursor c = d->control->textCursor(); + c.select(QTextCursor::WordUnderCursor); + d->control->setTextCursor(c); +} + +/*! + \qmlmethod TextEdit::cut() + + Moves the currently selected text to the system clipboard. +*/ +void QDeclarativeTextEdit::cut() +{ + Q_D(QDeclarativeTextEdit); + d->control->cut(); +} + +/*! + \qmlmethod TextEdit::copy() + + Copies the currently selected text to the system clipboard. +*/ +void QDeclarativeTextEdit::copy() +{ + Q_D(QDeclarativeTextEdit); + d->control->copy(); +} + +/*! + \qmlmethod TextEdit::paste() + + Relaces the currently selected text by the contents of the system clipboard. +*/ +void QDeclarativeTextEdit::paste() +{ + Q_D(QDeclarativeTextEdit); + d->control->paste(); +} + + +/*! \overload Handles the given mouse \a event. */ diff --git a/src/declarative/graphicsitems/qdeclarativetextedit_p.h b/src/declarative/graphicsitems/qdeclarativetextedit_p.h index 47174f4..a83b3db 100644 --- a/src/declarative/graphicsitems/qdeclarativetextedit_p.h +++ b/src/declarative/graphicsitems/qdeclarativetextedit_p.h @@ -198,6 +198,10 @@ public: qreal paintedWidth() const; qreal paintedHeight() const; + Q_INVOKABLE QRectF positionToRectangle(int) const; + Q_INVOKABLE int positionAt(int x, int y) const; + Q_INVOKABLE void moveCursorSelection(int pos); + Q_SIGNALS: void textChanged(const QString &); void paintedSizeChanged(); @@ -225,6 +229,10 @@ Q_SIGNALS: public Q_SLOTS: void selectAll(); + void selectWord(); + void cut(); + void copy(); + void paste(); private Q_SLOTS: void updateImgCache(const QRectF &rect); diff --git a/src/declarative/graphicsitems/qdeclarativetextinput.cpp b/src/declarative/graphicsitems/qdeclarativetextinput.cpp index 9c70ea9..9a6a070 100644 --- a/src/declarative/graphicsitems/qdeclarativetextinput.cpp +++ b/src/declarative/graphicsitems/qdeclarativetextinput.cpp @@ -833,7 +833,7 @@ void QDeclarativeTextInput::moveCursor() } /*! - \qmlmethod int TextInput::xToPosition(int x) + \qmlmethod int TextInput::positionAt(int x) This function returns the character position at x pixels from the left of the textInput. Position 0 is before the @@ -843,7 +843,7 @@ void QDeclarativeTextInput::moveCursor() This means that for all x values before the first character this function returns 0, and for all x values after the last character this function returns text.length. */ -int QDeclarativeTextInput::xToPosition(int x) +int QDeclarativeTextInput::positionAt(int x) { Q_D(const QDeclarativeTextInput); return d->control->xToPos(x - d->hscroll); diff --git a/src/declarative/graphicsitems/qdeclarativetextinput_p.h b/src/declarative/graphicsitems/qdeclarativetextinput_p.h index 438293a..6bb94c2 100644 --- a/src/declarative/graphicsitems/qdeclarativetextinput_p.h +++ b/src/declarative/graphicsitems/qdeclarativetextinput_p.h @@ -110,7 +110,7 @@ public: }; //Auxilliary functions needed to control the TextInput from QML - Q_INVOKABLE int xToPosition(int x); + Q_INVOKABLE int positionAt(int x); Q_INVOKABLE void moveCursorSelection(int pos); Q_INVOKABLE void openSoftwareInputPanel(); diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/MultilineEdit.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/MultilineEdit.qml new file mode 100644 index 0000000..0273282 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/MultilineEdit.qml @@ -0,0 +1,74 @@ +import Qt 4.7 + +Item { + id:lineedit + property alias text: textEdit.text + + width: 240 + 11 //Should be set manually in most cases + height: textEdit.height + 11 + + Rectangle{ + color: 'lightsteelblue' + anchors.fill: parent + } + clip: true + Component.onCompleted: textEdit.cursorPosition = 0; + TextEdit{ + id:textEdit + cursorDelegate: Item{ + Rectangle{ + visible: parent.parent.focus + color: "#009BCE" + height: 13 + width: 2 + y: 1 + } + } + property int leftMargin: 6 + property int topMargin: 6 + property int rightMargin: 6 + property int bottomMargin: 6 + x: leftMargin + width: parent.width - leftMargin - rightMargin; + y: 5 + //Below function implements all scrolling logic + onCursorPositionChanged: { + if(cursorRectangle.y < topMargin - textEdit.y){//Cursor went off the front + textEdit.y = topMargin - Math.max(0, cursorRectangle.y); + }else if(cursorRectangle.y > parent.height - topMargin - bottomMargin - textEdit.y){//Cursor went off the end + textEdit.y = topMargin - Math.max(0, cursorRectangle.y - (parent.height - topMargin - bottomMargin)) - cursorRectangle.height; + } + } + + text:"" + horizontalAlignment: TextInput.AlignLeft + wrapMode: TextEdit.WordWrap + font.pixelSize:15 + } + MouseArea{ + //Implements all line edit mouse handling + id: mainMouseArea + anchors.fill: parent; + function translateY(y){ + return y - textEdit.y + } + function translateX(x){ + return x - textEdit.x + } + onPressed: { + textEdit.focus = true; + textEdit.cursorPosition = textEdit.positionAt(translateX(mouse.x), translateY(mouse.y)); + } + onPositionChanged: { + textEdit.moveCursorSelection(textEdit.positionAt(translateX(mouse.x), translateY(mouse.y))); + } + onReleased: { + } + onDoubleClicked: { + textEdit.selectionStart=0; + textEdit.selectionEnd=textEdit.text.length; + } + z: textEdit.z + 1 + } + +} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/usingMultilineEdit.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/usingMultilineEdit.qml new file mode 100644 index 0000000..47b48d8 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/usingMultilineEdit.qml @@ -0,0 +1,13 @@ +import Qt 4.7 + +Rectangle{ + width: 600 + height: 200 + Column{ + MultilineEdit{ + text: 'I am the very model of a modern major general. I\'ve information vegetable, animal and mineral. I know the kings of england and I quote the fights historical - from Marathon to Waterloo in order categorical.'; + width: 182; height: 60; + } + MultilineEdit{text: 'Hello world'} + } +} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/LineEdit.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/LineEdit.qml index 31f24ec..cc0ad3c 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/LineEdit.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/LineEdit.qml @@ -50,10 +50,10 @@ Item { } onPressed: { textInp.focus = true; - textInp.cursorPosition = textInp.xToPosition(translateX(mouse.x)); + textInp.cursorPosition = textInp.positionAt(translateX(mouse.x)); } onPositionChanged: { - textInp.moveCursorSelection(textInp.xToPosition(translateX(mouse.x))); + textInp.moveCursorSelection(textInp.positionAt(translateX(mouse.x))); } onReleased: { } -- cgit v0.12 From bc1d00de820abc0697e51315d8231cadbce9f9dd Mon Sep 17 00:00:00 2001 From: Bea Lam Date: Fri, 28 May 2010 11:20:38 +1000 Subject: Rename example layoutItem -> layoutitem and improve docs --- doc/src/examples/qml-examples.qdoc | 8 +-- .../qgraphicslayouts/layoutItem/layoutItem.pro | 8 --- .../qgraphicslayouts/layoutItem/layoutItem.qml | 57 ----------------- .../layoutItem/layoutItem.qmlproject | 16 ----- .../qgraphicslayouts/layoutItem/layoutItem.qrc | 5 -- .../qgraphicslayouts/layoutItem/main.cpp | 74 ---------------------- .../qgraphicslayouts/layoutitem/layoutitem.pro | 8 +++ .../qgraphicslayouts/layoutitem/layoutitem.qml | 57 +++++++++++++++++ .../layoutitem/layoutitem.qmlproject | 16 +++++ .../qgraphicslayouts/layoutitem/layoutitem.qrc | 5 ++ .../qgraphicslayouts/layoutitem/main.cpp | 74 ++++++++++++++++++++++ .../graphicsitems/qdeclarativelayoutitem.cpp | 11 ++-- 12 files changed, 170 insertions(+), 169 deletions(-) delete mode 100644 examples/declarative/cppextensions/qgraphicslayouts/layoutItem/layoutItem.pro delete mode 100644 examples/declarative/cppextensions/qgraphicslayouts/layoutItem/layoutItem.qml delete mode 100644 examples/declarative/cppextensions/qgraphicslayouts/layoutItem/layoutItem.qmlproject delete mode 100644 examples/declarative/cppextensions/qgraphicslayouts/layoutItem/layoutItem.qrc delete mode 100644 examples/declarative/cppextensions/qgraphicslayouts/layoutItem/main.cpp create mode 100644 examples/declarative/cppextensions/qgraphicslayouts/layoutitem/layoutitem.pro create mode 100644 examples/declarative/cppextensions/qgraphicslayouts/layoutitem/layoutitem.qml create mode 100644 examples/declarative/cppextensions/qgraphicslayouts/layoutitem/layoutitem.qmlproject create mode 100644 examples/declarative/cppextensions/qgraphicslayouts/layoutitem/layoutitem.qrc create mode 100644 examples/declarative/cppextensions/qgraphicslayouts/layoutitem/main.cpp diff --git a/doc/src/examples/qml-examples.qdoc b/doc/src/examples/qml-examples.qdoc index 56ba1c7..9f69bbf 100644 --- a/doc/src/examples/qml-examples.qdoc +++ b/doc/src/examples/qml-examples.qdoc @@ -117,10 +117,10 @@ like QGraphicsLayoutItem, QGraphicsLinearLayout and QGraphicsGridLayout into QML. */ /*! - \title Layout Item - \example declarative/cppextensions/qgraphicslayouts/layoutItem + \title LayoutItem + \example declarative/cppextensions/qgraphicslayouts/layoutitem - This example show how to integrate QML into an existing + This example show how to use the LayoutItem element to integrate QML items into an existing \l{Graphics View Framework}{Graphics View}-based application. */ /*! @@ -132,7 +132,7 @@ \list \o \l{declarative/cppextensions/qgraphicslayouts/graphicsLayouts}{Graphics Layouts} - \o \l{declarative/cppextensions/qgraphicslayouts/layoutItem}{Layout Item} + \o \l{declarative/cppextensions/qgraphicslayouts/layoutitem}{LayoutItem} \endlist */ diff --git a/examples/declarative/cppextensions/qgraphicslayouts/layoutItem/layoutItem.pro b/examples/declarative/cppextensions/qgraphicslayouts/layoutItem/layoutItem.pro deleted file mode 100644 index c85a400..0000000 --- a/examples/declarative/cppextensions/qgraphicslayouts/layoutItem/layoutItem.pro +++ /dev/null @@ -1,8 +0,0 @@ -TEMPLATE = app -TARGET = -DEPENDPATH += . -INCLUDEPATH += . -QT += declarative - -SOURCES += main.cpp -RESOURCES += layoutItem.qrc diff --git a/examples/declarative/cppextensions/qgraphicslayouts/layoutItem/layoutItem.qml b/examples/declarative/cppextensions/qgraphicslayouts/layoutItem/layoutItem.qml deleted file mode 100644 index 6f377c5..0000000 --- a/examples/declarative/cppextensions/qgraphicslayouts/layoutItem/layoutItem.qml +++ /dev/null @@ -1,57 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). -** All rights reserved. -** Contact: Nokia Corporation (qt-info@nokia.com) -** -** This file is part of the QtDeclarative module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:BSD$ -** You may use this file under the terms of the BSD license as follows: -** -** "Redistribution and use in source and binary forms, with or without -** modification, are permitted provided that the following conditions are -** met: -** * Redistributions of source code must retain the above copyright -** notice, this list of conditions and the following disclaimer. -** * Redistributions in binary form must reproduce the above copyright -** notice, this list of conditions and the following disclaimer in -** the documentation and/or other materials provided with the -** distribution. -** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor -** the names of its contributors may be used to endorse or promote -** products derived from this software without specific prior written -** permission. -** -** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import Qt 4.7 - -LayoutItem { //Sized by the layout - id: resizable - - minimumSize: "100x100" - maximumSize: "300x300" - preferredSize: "100x100" - - Rectangle { color: "yellow"; anchors.fill: parent } - - Rectangle { - width: 100; height: 100 - anchors.top: parent.top; anchors.right: parent.right - color: "green" - } -} diff --git a/examples/declarative/cppextensions/qgraphicslayouts/layoutItem/layoutItem.qmlproject b/examples/declarative/cppextensions/qgraphicslayouts/layoutItem/layoutItem.qmlproject deleted file mode 100644 index d4909f8..0000000 --- a/examples/declarative/cppextensions/qgraphicslayouts/layoutItem/layoutItem.qmlproject +++ /dev/null @@ -1,16 +0,0 @@ -import QmlProject 1.0 - -Project { - /* Include .qml, .js, and image files from current directory and subdirectories */ - QmlFiles { - directory: "." - } - JavaScriptFiles { - directory: "." - } - ImageFiles { - directory: "." - } - /* List of plugin directories passed to QML runtime */ - // importPaths: [ " ../exampleplugin " ] -} diff --git a/examples/declarative/cppextensions/qgraphicslayouts/layoutItem/layoutItem.qrc b/examples/declarative/cppextensions/qgraphicslayouts/layoutItem/layoutItem.qrc deleted file mode 100644 index deb0fba..0000000 --- a/examples/declarative/cppextensions/qgraphicslayouts/layoutItem/layoutItem.qrc +++ /dev/null @@ -1,5 +0,0 @@ - - - layoutItem.qml - - diff --git a/examples/declarative/cppextensions/qgraphicslayouts/layoutItem/main.cpp b/examples/declarative/cppextensions/qgraphicslayouts/layoutItem/main.cpp deleted file mode 100644 index ef927d1..0000000 --- a/examples/declarative/cppextensions/qgraphicslayouts/layoutItem/main.cpp +++ /dev/null @@ -1,74 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). -** All rights reserved. -** Contact: Nokia Corporation (qt-info@nokia.com) -** -** This file is part of the examples of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:BSD$ -** You may use this file under the terms of the BSD license as follows: -** -** "Redistribution and use in source and binary forms, with or without -** modification, are permitted provided that the following conditions are -** met: -** * Redistributions of source code must retain the above copyright -** notice, this list of conditions and the following disclaimer. -** * Redistributions in binary form must reproduce the above copyright -** notice, this list of conditions and the following disclaimer in -** the documentation and/or other materials provided with the -** distribution. -** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor -** the names of its contributors may be used to endorse or promote -** products derived from this software without specific prior written -** permission. -** -** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." -** $QT_END_LICENSE$ -** -****************************************************************************/ - -#include -#include -#include -#include -#include -#include -#include - -/* This example demonstrates using a LayoutItem to let QML snippets integrate - nicely with existing QGraphicsView applications designed with GraphicsLayouts -*/ -int main(int argc, char* argv[]) -{ - QApplication app(argc, argv); - - //Set up a graphics scene with a QGraphicsWidget and Layout - QGraphicsView view; - QGraphicsScene scene; - QGraphicsWidget *widget = new QGraphicsWidget(); - QGraphicsLinearLayout *layout = new QGraphicsLinearLayout(); - widget->setLayout(layout); - scene.addItem(widget); - view.setScene(&scene); - - //Add the QML snippet into the layout - QDeclarativeEngine engine; - QDeclarativeComponent c(&engine, QUrl(":layoutItem.qml")); - QGraphicsLayoutItem* obj = qobject_cast(c.create()); - layout->addItem(obj); - - widget->setGeometry(QRectF(0,0, 400,400)); - view.show(); - return app.exec(); -} diff --git a/examples/declarative/cppextensions/qgraphicslayouts/layoutitem/layoutitem.pro b/examples/declarative/cppextensions/qgraphicslayouts/layoutitem/layoutitem.pro new file mode 100644 index 0000000..77c6b2a --- /dev/null +++ b/examples/declarative/cppextensions/qgraphicslayouts/layoutitem/layoutitem.pro @@ -0,0 +1,8 @@ +TEMPLATE = app +TARGET = +DEPENDPATH += . +INCLUDEPATH += . +QT += declarative + +SOURCES += main.cpp +RESOURCES += layoutitem.qrc diff --git a/examples/declarative/cppextensions/qgraphicslayouts/layoutitem/layoutitem.qml b/examples/declarative/cppextensions/qgraphicslayouts/layoutitem/layoutitem.qml new file mode 100644 index 0000000..6f377c5 --- /dev/null +++ b/examples/declarative/cppextensions/qgraphicslayouts/layoutitem/layoutitem.qml @@ -0,0 +1,57 @@ +/**************************************************************************** +** +** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the QtDeclarative module of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:BSD$ +** You may use this file under the terms of the BSD license as follows: +** +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor +** the names of its contributors may be used to endorse or promote +** products derived from this software without specific prior written +** permission. +** +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import Qt 4.7 + +LayoutItem { //Sized by the layout + id: resizable + + minimumSize: "100x100" + maximumSize: "300x300" + preferredSize: "100x100" + + Rectangle { color: "yellow"; anchors.fill: parent } + + Rectangle { + width: 100; height: 100 + anchors.top: parent.top; anchors.right: parent.right + color: "green" + } +} diff --git a/examples/declarative/cppextensions/qgraphicslayouts/layoutitem/layoutitem.qmlproject b/examples/declarative/cppextensions/qgraphicslayouts/layoutitem/layoutitem.qmlproject new file mode 100644 index 0000000..d4909f8 --- /dev/null +++ b/examples/declarative/cppextensions/qgraphicslayouts/layoutitem/layoutitem.qmlproject @@ -0,0 +1,16 @@ +import QmlProject 1.0 + +Project { + /* Include .qml, .js, and image files from current directory and subdirectories */ + QmlFiles { + directory: "." + } + JavaScriptFiles { + directory: "." + } + ImageFiles { + directory: "." + } + /* List of plugin directories passed to QML runtime */ + // importPaths: [ " ../exampleplugin " ] +} diff --git a/examples/declarative/cppextensions/qgraphicslayouts/layoutitem/layoutitem.qrc b/examples/declarative/cppextensions/qgraphicslayouts/layoutitem/layoutitem.qrc new file mode 100644 index 0000000..2e52578 --- /dev/null +++ b/examples/declarative/cppextensions/qgraphicslayouts/layoutitem/layoutitem.qrc @@ -0,0 +1,5 @@ + + + layoutitem.qml + + diff --git a/examples/declarative/cppextensions/qgraphicslayouts/layoutitem/main.cpp b/examples/declarative/cppextensions/qgraphicslayouts/layoutitem/main.cpp new file mode 100644 index 0000000..ef927d1 --- /dev/null +++ b/examples/declarative/cppextensions/qgraphicslayouts/layoutitem/main.cpp @@ -0,0 +1,74 @@ +/**************************************************************************** +** +** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the examples of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:BSD$ +** You may use this file under the terms of the BSD license as follows: +** +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor +** the names of its contributors may be used to endorse or promote +** products derived from this software without specific prior written +** permission. +** +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." +** $QT_END_LICENSE$ +** +****************************************************************************/ + +#include +#include +#include +#include +#include +#include +#include + +/* This example demonstrates using a LayoutItem to let QML snippets integrate + nicely with existing QGraphicsView applications designed with GraphicsLayouts +*/ +int main(int argc, char* argv[]) +{ + QApplication app(argc, argv); + + //Set up a graphics scene with a QGraphicsWidget and Layout + QGraphicsView view; + QGraphicsScene scene; + QGraphicsWidget *widget = new QGraphicsWidget(); + QGraphicsLinearLayout *layout = new QGraphicsLinearLayout(); + widget->setLayout(layout); + scene.addItem(widget); + view.setScene(&scene); + + //Add the QML snippet into the layout + QDeclarativeEngine engine; + QDeclarativeComponent c(&engine, QUrl(":layoutItem.qml")); + QGraphicsLayoutItem* obj = qobject_cast(c.create()); + layout->addItem(obj); + + widget->setGeometry(QRectF(0,0, 400,400)); + view.show(); + return app.exec(); +} diff --git a/src/declarative/graphicsitems/qdeclarativelayoutitem.cpp b/src/declarative/graphicsitems/qdeclarativelayoutitem.cpp index c8ecbb6..4add66d 100644 --- a/src/declarative/graphicsitems/qdeclarativelayoutitem.cpp +++ b/src/declarative/graphicsitems/qdeclarativelayoutitem.cpp @@ -50,20 +50,21 @@ QT_BEGIN_NAMESPACE /*! \qmlclass LayoutItem QDeclarativeLayoutItem \since 4.7 - \brief The LayoutItem element allows you to place your declarative UI elements inside a classical Qt layout. + \brief The LayoutItem element allows declarative UI elements to be placed inside Qt's Graphics View layouts. - LayoutItem is a variant of Item with a couple of additional properties. These properties provide the size hints - needed for items to work in conjunction with Qt Layouts. The Qt Layout will resize the LayoutItem as appropriate, + LayoutItem is a variant of \l Item with additional size hint properties. These properties provide the size hints + necessary for items to work in conjunction with Qt \l{Graphics View Framework}{Graphics View} layout classes + such as QGraphicsLinearLayout and QGraphicsGridLayout. The Qt layout mechanisms will resize the LayoutItem as appropriate, taking its size hints into account, and you can propagate this to the other elements in your UI via anchors and bindings. - This is a QGraphicsLayoutItem subclass, and the properties merely expose the QGraphicsLayoutItem functionality to QML. + This is a QGraphicsLayoutItem subclass, and its properties merely expose the QGraphicsLayoutItem functionality to QML. See the QGraphicsLayoutItem documentation for further details. */ /*! \internal \class QDeclarativeLayoutItem - \brief The QDeclarativeLayoutItem class allows you to place your Fluid UI elements inside a classical Qt layout. + \brief The QDeclarativeLayoutItem class allows you to place your QML UI elements inside Qt's Graphics View layouts. */ -- cgit v0.12 From b64f49b7c97aa905cde93a943f56eca20475678e Mon Sep 17 00:00:00 2001 From: Bea Lam Date: Fri, 28 May 2010 17:24:32 +1000 Subject: Split graphicsLayouts example into qgraphicslinearlayout and qgraphicsgridlayout and clean up --- doc/src/examples/qml-examples.qdoc | 26 +- .../graphicsLayouts/graphicsLayouts.pro | 13 - .../graphicsLayouts/graphicsLayouts.qmlproject | 16 - .../graphicsLayouts/graphicslayouts.cpp | 365 --------------------- .../graphicsLayouts/graphicslayouts.qml | 117 ------- .../graphicsLayouts/graphicslayouts.qrc | 5 - .../graphicsLayouts/graphicslayouts_p.h | 302 ----------------- .../qgraphicslayouts/graphicsLayouts/main.cpp | 59 ---- .../qgraphicsgridlayout/.main.cpp.swo | Bin 0 -> 12288 bytes .../qgraphicsgridlayout/gridlayout.cpp | 180 ++++++++++ .../qgraphicsgridlayout/gridlayout.h | 215 ++++++++++++ .../qgraphicsgridlayout/gridlayout.qrc | 6 + .../qgraphicslayouts/qgraphicsgridlayout/main.cpp | 63 ++++ .../qgraphicsgridlayout/qgraphicsgridlayout.pro | 15 + .../qgraphicsgridlayout/qgraphicsgridlayout.qml | 98 ++++++ .../qgraphicslinearlayout/linearlayout.cpp | 167 ++++++++++ .../qgraphicslinearlayout/linearlayout.h | 150 +++++++++ .../qgraphicslinearlayout/linearlayout.qrc | 6 + .../qgraphicslinearlayout/main.cpp | 64 ++++ .../qgraphicslinearlayout.pro | 15 + .../qgraphicslinearlayout.qml | 68 ++++ 21 files changed, 1065 insertions(+), 885 deletions(-) delete mode 100644 examples/declarative/cppextensions/qgraphicslayouts/graphicsLayouts/graphicsLayouts.pro delete mode 100644 examples/declarative/cppextensions/qgraphicslayouts/graphicsLayouts/graphicsLayouts.qmlproject delete mode 100644 examples/declarative/cppextensions/qgraphicslayouts/graphicsLayouts/graphicslayouts.cpp delete mode 100644 examples/declarative/cppextensions/qgraphicslayouts/graphicsLayouts/graphicslayouts.qml delete mode 100644 examples/declarative/cppextensions/qgraphicslayouts/graphicsLayouts/graphicslayouts.qrc delete mode 100644 examples/declarative/cppextensions/qgraphicslayouts/graphicsLayouts/graphicslayouts_p.h delete mode 100644 examples/declarative/cppextensions/qgraphicslayouts/graphicsLayouts/main.cpp create mode 100644 examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/.main.cpp.swo create mode 100644 examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/gridlayout.cpp create mode 100644 examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/gridlayout.h create mode 100644 examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/gridlayout.qrc create mode 100644 examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/main.cpp create mode 100644 examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/qgraphicsgridlayout.pro create mode 100644 examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/qgraphicsgridlayout.qml create mode 100644 examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/linearlayout.cpp create mode 100644 examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/linearlayout.h create mode 100644 examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/linearlayout.qrc create mode 100644 examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/main.cpp create mode 100644 examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/qgraphicslinearlayout.pro create mode 100644 examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/qgraphicslinearlayout.qml diff --git a/doc/src/examples/qml-examples.qdoc b/doc/src/examples/qml-examples.qdoc index 9f69bbf..035628e 100644 --- a/doc/src/examples/qml-examples.qdoc +++ b/doc/src/examples/qml-examples.qdoc @@ -110,13 +110,6 @@ */ /*! - \title Graphics Layouts - \example declarative/cppextensions/qgraphicslayouts/graphicsLayouts - - This example show how to integrate Qt \l{Graphics View Framework}{Graphics View} components - like QGraphicsLayoutItem, QGraphicsLinearLayout and QGraphicsGridLayout into QML. -*/ -/*! \title LayoutItem \example declarative/cppextensions/qgraphicslayouts/layoutitem @@ -124,6 +117,22 @@ \l{Graphics View Framework}{Graphics View}-based application. */ /*! + \title QGraphicsGridLayout + \example declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout + + This example shows how to use QGraphicsGridLayout to lay out QML items. This is + useful if you need to integrate Qt \l{Graphics View Framework}{Graphics View} layouts with + QML. +*/ +/*! + \title QGraphicsLinearLayout + \example declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout + + This example shows how to use QGraphicsLinearLayout to lay out QML items. This is + useful if you need to integrate Qt \l{Graphics View Framework}{Graphics View} layouts with + QML. +*/ +/*! \page declarative-cppextensions-qgraphicslayouts.html \title C++ Extensions: QGraphicsLayouts @@ -131,8 +140,9 @@ layout components with QML: \list - \o \l{declarative/cppextensions/qgraphicslayouts/graphicsLayouts}{Graphics Layouts} \o \l{declarative/cppextensions/qgraphicslayouts/layoutitem}{LayoutItem} + \o \l{declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout}{QGraphicsGridLayout} + \o \l{declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout}{QGraphicsLinearLayout} \endlist */ diff --git a/examples/declarative/cppextensions/qgraphicslayouts/graphicsLayouts/graphicsLayouts.pro b/examples/declarative/cppextensions/qgraphicslayouts/graphicsLayouts/graphicsLayouts.pro deleted file mode 100644 index e5d91b2..0000000 --- a/examples/declarative/cppextensions/qgraphicslayouts/graphicsLayouts/graphicsLayouts.pro +++ /dev/null @@ -1,13 +0,0 @@ -TEMPLATE = app -TARGET = graphicslayouts -QT += declarative - -SOURCES += \ - graphicslayouts.cpp \ - main.cpp - -HEADERS += \ - graphicslayouts_p.h - -RESOURCES += \ - graphicslayouts.qrc diff --git a/examples/declarative/cppextensions/qgraphicslayouts/graphicsLayouts/graphicsLayouts.qmlproject b/examples/declarative/cppextensions/qgraphicslayouts/graphicsLayouts/graphicsLayouts.qmlproject deleted file mode 100644 index d4909f8..0000000 --- a/examples/declarative/cppextensions/qgraphicslayouts/graphicsLayouts/graphicsLayouts.qmlproject +++ /dev/null @@ -1,16 +0,0 @@ -import QmlProject 1.0 - -Project { - /* Include .qml, .js, and image files from current directory and subdirectories */ - QmlFiles { - directory: "." - } - JavaScriptFiles { - directory: "." - } - ImageFiles { - directory: "." - } - /* List of plugin directories passed to QML runtime */ - // importPaths: [ " ../exampleplugin " ] -} diff --git a/examples/declarative/cppextensions/qgraphicslayouts/graphicsLayouts/graphicslayouts.cpp b/examples/declarative/cppextensions/qgraphicslayouts/graphicsLayouts/graphicslayouts.cpp deleted file mode 100644 index 40e286d..0000000 --- a/examples/declarative/cppextensions/qgraphicslayouts/graphicsLayouts/graphicslayouts.cpp +++ /dev/null @@ -1,365 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). -** All rights reserved. -** Contact: Nokia Corporation (qt-info@nokia.com) -** -** This file is part of the QtDeclarative module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:BSD$ -** You may use this file under the terms of the BSD license as follows: -** -** "Redistribution and use in source and binary forms, with or without -** modification, are permitted provided that the following conditions are -** met: -** * Redistributions of source code must retain the above copyright -** notice, this list of conditions and the following disclaimer. -** * Redistributions in binary form must reproduce the above copyright -** notice, this list of conditions and the following disclaimer in -** the documentation and/or other materials provided with the -** distribution. -** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor -** the names of its contributors may be used to endorse or promote -** products derived from this software without specific prior written -** permission. -** -** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." -** $QT_END_LICENSE$ -** -****************************************************************************/ - -#include "graphicslayouts_p.h" - -#include -#include - -QT_BEGIN_NAMESPACE - -LinearLayoutAttached::LinearLayoutAttached(QObject *parent) -: QObject(parent), _stretch(1), _alignment(Qt::AlignCenter), _spacing(0) -{ -} - -void LinearLayoutAttached::setStretchFactor(int f) -{ - if (_stretch == f) - return; - - _stretch = f; - emit stretchChanged(reinterpret_cast(parent()), _stretch); -} - -void LinearLayoutAttached::setSpacing(int s) -{ - if (_spacing == s) - return; - - _spacing = s; - emit spacingChanged(reinterpret_cast(parent()), _spacing); -} - -void LinearLayoutAttached::setAlignment(Qt::Alignment a) -{ - if (_alignment == a) - return; - - _alignment = a; - emit alignmentChanged(reinterpret_cast(parent()), _alignment); -} - -QGraphicsLinearLayoutStretchItemObject::QGraphicsLinearLayoutStretchItemObject(QObject *parent) - : QObject(parent) -{ -} - -QSizeF QGraphicsLinearLayoutStretchItemObject::sizeHint(Qt::SizeHint which, const QSizeF &constraint) const -{ -Q_UNUSED(which); -Q_UNUSED(constraint); -return QSizeF(); -} - - -QGraphicsLinearLayoutObject::QGraphicsLinearLayoutObject(QObject *parent) -: QObject(parent) -{ -} - -QGraphicsLinearLayoutObject::~QGraphicsLinearLayoutObject() -{ -} - -void QGraphicsLinearLayoutObject::insertLayoutItem(int index, QGraphicsLayoutItem *item) -{ -insertItem(index, item); - -//connect attached properties -if (LinearLayoutAttached *obj = attachedProperties.value(item)) { - setStretchFactor(item, obj->stretchFactor()); - setAlignment(item, obj->alignment()); - updateSpacing(item, obj->spacing()); - QObject::connect(obj, SIGNAL(stretchChanged(QGraphicsLayoutItem*,int)), - this, SLOT(updateStretch(QGraphicsLayoutItem*,int))); - QObject::connect(obj, SIGNAL(alignmentChanged(QGraphicsLayoutItem*,Qt::Alignment)), - this, SLOT(updateAlignment(QGraphicsLayoutItem*,Qt::Alignment))); - QObject::connect(obj, SIGNAL(spacingChanged(QGraphicsLayoutItem*,int)), - this, SLOT(updateSpacing(QGraphicsLayoutItem*,int))); - //### need to disconnect when widget is removed? -} -} - -//### is there a better way to do this? -void QGraphicsLinearLayoutObject::clearChildren() -{ -for (int i = 0; i < count(); ++i) - removeAt(i); -} - -qreal QGraphicsLinearLayoutObject::contentsMargin() const -{ - qreal a,b,c,d; - getContentsMargins(&a, &b, &c, &d); - if(a==b && a==c && a==d) - return a; - return -1; -} - -void QGraphicsLinearLayoutObject::setContentsMargin(qreal m) -{ - setContentsMargins(m,m,m,m); -} - -void QGraphicsLinearLayoutObject::updateStretch(QGraphicsLayoutItem *item, int stretch) -{ -QGraphicsLinearLayout::setStretchFactor(item, stretch); -} - -void QGraphicsLinearLayoutObject::updateSpacing(QGraphicsLayoutItem* item, int spacing) -{ - for(int i=0; i < count(); i++){ - if(itemAt(i) == item){ //I do not see the reverse function, which is why we must loop over all items - QGraphicsLinearLayout::setItemSpacing(i, spacing); - return; - } - } -} - -void QGraphicsLinearLayoutObject::updateAlignment(QGraphicsLayoutItem *item, Qt::Alignment alignment) -{ -QGraphicsLinearLayout::setAlignment(item, alignment); -} - -QHash QGraphicsLinearLayoutObject::attachedProperties; -LinearLayoutAttached *QGraphicsLinearLayoutObject::qmlAttachedProperties(QObject *obj) -{ -// ### This is not allowed - you must attach to any object -if (!qobject_cast(obj)) - return 0; -LinearLayoutAttached *rv = new LinearLayoutAttached(obj); -attachedProperties.insert(qobject_cast(obj), rv); -return rv; -} - -////////////////////////////////////////////////////////////////////////////////////////////////////// -// QGraphicsGridLayout-related classes -////////////////////////////////////////////////////////////////////////////////////////////////////// -GridLayoutAttached::GridLayoutAttached(QObject *parent) -: QObject(parent), _row(-1), _column(-1), _rowspan(1), _colspan(1), _alignment(-1), _rowstretch(-1), - _colstretch(-1), _rowspacing(-1), _colspacing(-1), _rowprefheight(-1), _rowmaxheight(-1), _rowminheight(-1), - _rowfixheight(-1), _colprefwidth(-1), _colmaxwidth(-1), _colminwidth(-1), _colfixwidth(-1) -{ -} - -void GridLayoutAttached::setRow(int r) -{ - if (_row == r) - return; - - _row = r; - //emit rowChanged(reinterpret_cast(parent()), _row); -} - -void GridLayoutAttached::setColumn(int c) -{ - if (_column == c) - return; - - _column = c; - //emit columnChanged(reinterpret_cast(parent()), _column); -} - -void GridLayoutAttached::setRowSpan(int rs) -{ - if (_rowspan == rs) - return; - - _rowspan = rs; - //emit rowSpanChanged(reinterpret_cast(parent()), _rowSpan); -} - -void GridLayoutAttached::setColumnSpan(int cs) -{ - if (_colspan == cs) - return; - - _colspan = cs; - //emit columnSpanChanged(reinterpret_cast(parent()), _columnSpan); -} - -void GridLayoutAttached::setAlignment(Qt::Alignment a) -{ - if (_alignment == a) - return; - - _alignment = a; - emit alignmentChanged(reinterpret_cast(parent()), _alignment); -} - -void GridLayoutAttached::setRowStretchFactor(int f) -{ - _rowstretch = f; -} - -void GridLayoutAttached::setColumnStretchFactor(int f) -{ - _colstretch = f; -} - -void GridLayoutAttached::setRowSpacing(int s) -{ - _rowspacing = s; -} - -void GridLayoutAttached::setColumnSpacing(int s) -{ - _colspacing = s; -} - - -QGraphicsGridLayoutObject::QGraphicsGridLayoutObject(QObject *parent) -: QObject(parent) -{ -} - -QGraphicsGridLayoutObject::~QGraphicsGridLayoutObject() -{ -} - -void QGraphicsGridLayoutObject::addWidget(QGraphicsWidget *wid) -{ -//use attached properties -if (QObject *obj = attachedProperties.value(qobject_cast(wid))) { - int row = static_cast(obj)->row(); - int column = static_cast(obj)->column(); - int rowSpan = static_cast(obj)->rowSpan(); - int columnSpan = static_cast(obj)->columnSpan(); - if (row == -1 || column == -1) { - qWarning() << "Must set row and column for an item in a grid layout"; - return; - } - addItem(wid, row, column, rowSpan, columnSpan); -} -} - -void QGraphicsGridLayoutObject::addLayoutItem(QGraphicsLayoutItem *item) -{ -//use attached properties -if (GridLayoutAttached *obj = attachedProperties.value(item)) { - int row = obj->row(); - int column = obj->column(); - int rowSpan = obj->rowSpan(); - int columnSpan = obj->columnSpan(); - Qt::Alignment alignment = obj->alignment(); - if (row == -1 || column == -1) { - qWarning() << "Must set row and column for an item in a grid layout"; - return; - } - if(obj->rowSpacing() != -1) - setRowSpacing(row, obj->rowSpacing()); - if(obj->columnSpacing() != -1) - setColumnSpacing(column, obj->columnSpacing()); - if(obj->rowStretchFactor() != -1) - setRowStretchFactor(row, obj->rowStretchFactor()); - if(obj->columnStretchFactor() != -1) - setColumnStretchFactor(column, obj->columnStretchFactor()); - if(obj->rowPreferredHeight() != -1) - setRowPreferredHeight(row, obj->rowPreferredHeight()); - if(obj->rowMaximumHeight() != -1) - setRowMaximumHeight(row, obj->rowMaximumHeight()); - if(obj->rowMinimumHeight() != -1) - setRowMinimumHeight(row, obj->rowMinimumHeight()); - if(obj->rowFixedHeight() != -1) - setRowFixedHeight(row, obj->rowFixedHeight()); - if(obj->columnPreferredWidth() != -1) - setColumnPreferredWidth(row, obj->columnPreferredWidth()); - if(obj->columnMaximumWidth() != -1) - setColumnMaximumWidth(row, obj->columnMaximumWidth()); - if(obj->columnMinimumWidth() != -1) - setColumnMinimumWidth(row, obj->columnMinimumWidth()); - if(obj->columnFixedWidth() != -1) - setColumnFixedWidth(row, obj->columnFixedWidth()); - addItem(item, row, column, rowSpan, columnSpan); - if (alignment != -1) - setAlignment(item,alignment); - QObject::connect(obj, SIGNAL(alignmentChanged(QGraphicsLayoutItem*,Qt::Alignment)), - this, SLOT(updateAlignment(QGraphicsLayoutItem*,Qt::Alignment))); - //### need to disconnect when widget is removed? -} -} - -//### is there a better way to do this? -void QGraphicsGridLayoutObject::clearChildren() -{ -for (int i = 0; i < count(); ++i) - removeAt(i); -} - -qreal QGraphicsGridLayoutObject::spacing() const -{ -if (verticalSpacing() == horizontalSpacing()) - return verticalSpacing(); -return -1; //### -} - -qreal QGraphicsGridLayoutObject::contentsMargin() const -{ - qreal a,b,c,d; - getContentsMargins(&a, &b, &c, &d); - if(a==b && a==c && a==d) - return a; - return -1; -} - -void QGraphicsGridLayoutObject::setContentsMargin(qreal m) -{ - setContentsMargins(m,m,m,m); -} - - -void QGraphicsGridLayoutObject::updateAlignment(QGraphicsLayoutItem *item, Qt::Alignment alignment) -{ -QGraphicsGridLayout::setAlignment(item, alignment); -} - -QHash QGraphicsGridLayoutObject::attachedProperties; -GridLayoutAttached *QGraphicsGridLayoutObject::qmlAttachedProperties(QObject *obj) -{ -// ### This is not allowed - you must attach to any object -if (!qobject_cast(obj)) - return 0; -GridLayoutAttached *rv = new GridLayoutAttached(obj); -attachedProperties.insert(qobject_cast(obj), rv); -return rv; -} - -QT_END_NAMESPACE diff --git a/examples/declarative/cppextensions/qgraphicslayouts/graphicsLayouts/graphicslayouts.qml b/examples/declarative/cppextensions/qgraphicslayouts/graphicsLayouts/graphicslayouts.qml deleted file mode 100644 index 586f7f9..0000000 --- a/examples/declarative/cppextensions/qgraphicslayouts/graphicsLayouts/graphicslayouts.qml +++ /dev/null @@ -1,117 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). -** All rights reserved. -** Contact: Nokia Corporation (qt-info@nokia.com) -** -** This file is part of the QtDeclarative module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:BSD$ -** You may use this file under the terms of the BSD license as follows: -** -** "Redistribution and use in source and binary forms, with or without -** modification, are permitted provided that the following conditions are -** met: -** * Redistributions of source code must retain the above copyright -** notice, this list of conditions and the following disclaimer. -** * Redistributions in binary form must reproduce the above copyright -** notice, this list of conditions and the following disclaimer in -** the documentation and/or other materials provided with the -** distribution. -** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor -** the names of its contributors may be used to endorse or promote -** products derived from this software without specific prior written -** permission. -** -** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import Qt 4.7 -import GraphicsLayouts 4.7 - -Item { - id: resizable - - width: 800 - height: 400 - - QGraphicsWidget { - size.width: parent.width/2 - size.height: parent.height - - layout: QGraphicsLinearLayout { - LayoutItem { - minimumSize: "100x100" - maximumSize: "300x300" - preferredSize: "100x100" - Rectangle { color: "yellow"; anchors.fill: parent } - } - LayoutItem { - minimumSize: "100x100" - maximumSize: "400x400" - preferredSize: "200x200" - Rectangle { color: "green"; anchors.fill: parent } - } - } - } - QGraphicsWidget { - x: parent.width/2 - size.width: parent.width/2 - size.height: parent.height - - layout: QGraphicsGridLayout { - LayoutItem { - QGraphicsGridLayout.row: 0 - QGraphicsGridLayout.column: 0 - minimumSize: "100x100" - maximumSize: "300x300" - preferredSize: "100x100" - Rectangle { color: "red"; anchors.fill: parent } - } - LayoutItem { - QGraphicsGridLayout.row: 1 - QGraphicsGridLayout.column: 0 - minimumSize: "100x100" - maximumSize: "200x200" - preferredSize: "100x100" - Rectangle { color: "orange"; anchors.fill: parent } - } - LayoutItem { - QGraphicsGridLayout.row: 2 - QGraphicsGridLayout.column: 0 - minimumSize: "100x100" - maximumSize: "300x300" - preferredSize: "200x200" - Rectangle { color: "yellow"; anchors.fill: parent } - } - LayoutItem { - QGraphicsGridLayout.row: 0 - QGraphicsGridLayout.column: 1 - minimumSize: "100x100" - maximumSize: "200x200" - preferredSize: "200x200" - Rectangle { color: "green"; anchors.fill: parent } - } - LayoutItem { - QGraphicsGridLayout.row: 1 - QGraphicsGridLayout.column: 1 - minimumSize: "100x100" - maximumSize: "400x400" - preferredSize: "200x200" - Rectangle { color: "blue"; anchors.fill: parent } - } - } - } -} diff --git a/examples/declarative/cppextensions/qgraphicslayouts/graphicsLayouts/graphicslayouts.qrc b/examples/declarative/cppextensions/qgraphicslayouts/graphicsLayouts/graphicslayouts.qrc deleted file mode 100644 index a199f8d..0000000 --- a/examples/declarative/cppextensions/qgraphicslayouts/graphicsLayouts/graphicslayouts.qrc +++ /dev/null @@ -1,5 +0,0 @@ - - - graphicslayouts.qml - - diff --git a/examples/declarative/cppextensions/qgraphicslayouts/graphicsLayouts/graphicslayouts_p.h b/examples/declarative/cppextensions/qgraphicslayouts/graphicsLayouts/graphicslayouts_p.h deleted file mode 100644 index 7aa98df..0000000 --- a/examples/declarative/cppextensions/qgraphicslayouts/graphicsLayouts/graphicslayouts_p.h +++ /dev/null @@ -1,302 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). -** All rights reserved. -** Contact: Nokia Corporation (qt-info@nokia.com) -** -** This file is part of the QtDeclarative module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:BSD$ -** You may use this file under the terms of the BSD license as follows: -** -** "Redistribution and use in source and binary forms, with or without -** modification, are permitted provided that the following conditions are -** met: -** * Redistributions of source code must retain the above copyright -** notice, this list of conditions and the following disclaimer. -** * Redistributions in binary form must reproduce the above copyright -** notice, this list of conditions and the following disclaimer in -** the documentation and/or other materials provided with the -** distribution. -** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor -** the names of its contributors may be used to endorse or promote -** products derived from this software without specific prior written -** permission. -** -** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." -** $QT_END_LICENSE$ -** -****************************************************************************/ - -#ifndef GRAPHICSLAYOUTS_H -#define GRAPHICSLAYOUTS_H - -#include -#include -#include - -QT_BEGIN_HEADER - -QT_BEGIN_NAMESPACE - -QT_MODULE(Declarative) - -class QGraphicsLinearLayoutStretchItemObject : public QObject, public QGraphicsLayoutItem -{ - Q_OBJECT - Q_INTERFACES(QGraphicsLayoutItem) -public: - QGraphicsLinearLayoutStretchItemObject(QObject *parent = 0); - - virtual QSizeF sizeHint(Qt::SizeHint, const QSizeF &) const; -}; - -class LinearLayoutAttached; -class QGraphicsLinearLayoutObject : public QObject, public QGraphicsLinearLayout -{ - Q_OBJECT - Q_INTERFACES(QGraphicsLayout QGraphicsLayoutItem) - - Q_PROPERTY(QDeclarativeListProperty children READ children) - Q_PROPERTY(Qt::Orientation orientation READ orientation WRITE setOrientation) - Q_PROPERTY(qreal spacing READ spacing WRITE setSpacing) - Q_PROPERTY(qreal contentsMargin READ contentsMargin WRITE setContentsMargin) - Q_CLASSINFO("DefaultProperty", "children") -public: - QGraphicsLinearLayoutObject(QObject * = 0); - ~QGraphicsLinearLayoutObject(); - - QDeclarativeListProperty children() { return QDeclarativeListProperty(this, 0, children_append, children_count, children_at, children_clear); } - - static LinearLayoutAttached *qmlAttachedProperties(QObject *); - - qreal contentsMargin() const; - void setContentsMargin(qreal); - -private Q_SLOTS: - void updateStretch(QGraphicsLayoutItem*,int); - void updateSpacing(QGraphicsLayoutItem*,int); - void updateAlignment(QGraphicsLayoutItem*,Qt::Alignment); - -private: - friend class LinearLayoutAttached; - void clearChildren(); - void insertLayoutItem(int, QGraphicsLayoutItem *); - static QHash attachedProperties; - - static void children_append(QDeclarativeListProperty *prop, QGraphicsLayoutItem *item) { - static_cast(prop->object)->insertLayoutItem(-1, item); - } - - static void children_clear(QDeclarativeListProperty *prop) { - static_cast(prop->object)->clearChildren(); - } - - static int children_count(QDeclarativeListProperty *prop) { - return static_cast(prop->object)->count(); - } - - static QGraphicsLayoutItem *children_at(QDeclarativeListProperty *prop, int index) { - return static_cast(prop->object)->itemAt(index); - } -}; - -class GridLayoutAttached; -class QGraphicsGridLayoutObject : public QObject, public QGraphicsGridLayout -{ - Q_OBJECT - Q_INTERFACES(QGraphicsLayout QGraphicsLayoutItem) - - Q_PROPERTY(QDeclarativeListProperty children READ children) - Q_PROPERTY(qreal spacing READ spacing WRITE setSpacing) - Q_PROPERTY(qreal contentsMargin READ contentsMargin WRITE setContentsMargin) - Q_PROPERTY(qreal verticalSpacing READ verticalSpacing WRITE setVerticalSpacing) - Q_PROPERTY(qreal horizontalSpacing READ horizontalSpacing WRITE setHorizontalSpacing) - Q_CLASSINFO("DefaultProperty", "children") -public: - QGraphicsGridLayoutObject(QObject * = 0); - ~QGraphicsGridLayoutObject(); - - QDeclarativeListProperty children() { return QDeclarativeListProperty(this, 0, children_append, children_count, children_at, children_clear); } - - qreal spacing() const; - qreal contentsMargin() const; - void setContentsMargin(qreal); - - static GridLayoutAttached *qmlAttachedProperties(QObject *); - -private Q_SLOTS: - void updateAlignment(QGraphicsLayoutItem*,Qt::Alignment); - -private: - friend class GraphicsLayoutAttached; - void addWidget(QGraphicsWidget *); - void clearChildren(); - void addLayoutItem(QGraphicsLayoutItem *); - static QHash attachedProperties; - - static void children_append(QDeclarativeListProperty *prop, QGraphicsLayoutItem *item) { - static_cast(prop->object)->addLayoutItem(item); - } - - static void children_clear(QDeclarativeListProperty *prop) { - static_cast(prop->object)->clearChildren(); - } - - static int children_count(QDeclarativeListProperty *prop) { - return static_cast(prop->object)->count(); - } - - static QGraphicsLayoutItem *children_at(QDeclarativeListProperty *prop, int index) { - return static_cast(prop->object)->itemAt(index); - } -}; - -class LinearLayoutAttached : public QObject -{ - Q_OBJECT - - Q_PROPERTY(int stretchFactor READ stretchFactor WRITE setStretchFactor NOTIFY stretchChanged) - Q_PROPERTY(Qt::Alignment alignment READ alignment WRITE setAlignment NOTIFY alignmentChanged) - Q_PROPERTY(int spacing READ spacing WRITE setSpacing NOTIFY spacingChanged) -public: - LinearLayoutAttached(QObject *parent); - - int stretchFactor() const { return _stretch; } - void setStretchFactor(int f); - Qt::Alignment alignment() const { return _alignment; } - void setAlignment(Qt::Alignment a); - int spacing() const { return _spacing; } - void setSpacing(int s); - -Q_SIGNALS: - void stretchChanged(QGraphicsLayoutItem*,int); - void alignmentChanged(QGraphicsLayoutItem*,Qt::Alignment); - void spacingChanged(QGraphicsLayoutItem*,int); - -private: - int _stretch; - Qt::Alignment _alignment; - int _spacing; -}; - -class GridLayoutAttached : public QObject -{ - Q_OBJECT - - Q_PROPERTY(int row READ row WRITE setRow) - Q_PROPERTY(int column READ column WRITE setColumn) - Q_PROPERTY(int rowSpan READ rowSpan WRITE setRowSpan) - Q_PROPERTY(int columnSpan READ columnSpan WRITE setColumnSpan) - Q_PROPERTY(Qt::Alignment alignment READ alignment WRITE setAlignment) - Q_PROPERTY(int rowStretchFactor READ rowStretchFactor WRITE setRowStretchFactor) - Q_PROPERTY(int columnStretchFactor READ columnStretchFactor WRITE setColumnStretchFactor) - Q_PROPERTY(int rowSpacing READ rowSpacing WRITE setRowSpacing) - Q_PROPERTY(int columnSpacing READ columnSpacing WRITE setColumnSpacing) - Q_PROPERTY(int rowPreferredHeight READ rowPreferredHeight WRITE setRowPreferredHeight) - Q_PROPERTY(int rowMinimumHeight READ rowMinimumHeight WRITE setRowMinimumHeight) - Q_PROPERTY(int rowMaximumHeight READ rowMaximumHeight WRITE setRowMaximumHeight) - Q_PROPERTY(int rowFixedHeight READ rowFixedHeight WRITE setRowFixedHeight) - Q_PROPERTY(int columnPreferredWidth READ columnPreferredWidth WRITE setColumnPreferredWidth) - Q_PROPERTY(int columnMaximumWidth READ columnMaximumWidth WRITE setColumnMaximumWidth) - Q_PROPERTY(int columnMinimumWidth READ columnMinimumWidth WRITE setColumnMinimumWidth) - Q_PROPERTY(int columnFixedWidth READ columnFixedWidth WRITE setColumnFixedWidth) - -public: - GridLayoutAttached(QObject *parent); - - int row() const { return _row; } - void setRow(int r); - - int column() const { return _column; } - void setColumn(int c); - - int rowSpan() const { return _rowspan; } - void setRowSpan(int rs); - - int columnSpan() const { return _colspan; } - void setColumnSpan(int cs); - - Qt::Alignment alignment() const { return _alignment; } - void setAlignment(Qt::Alignment a); - - int rowStretchFactor() const { return _rowstretch; } - void setRowStretchFactor(int f); - int columnStretchFactor() const { return _colstretch; } - void setColumnStretchFactor(int f); - - int rowSpacing() const { return _rowspacing; } - void setRowSpacing(int s); - int columnSpacing() const { return _colspacing; } - void setColumnSpacing(int s); - - int rowPreferredHeight() const { return _rowprefheight; } - void setRowPreferredHeight(int s) { _rowprefheight = s; } - - int rowMaximumHeight() const { return _rowmaxheight; } - void setRowMaximumHeight(int s) { _rowmaxheight = s; } - - int rowMinimumHeight() const { return _rowminheight; } - void setRowMinimumHeight(int s) { _rowminheight = s; } - - int rowFixedHeight() const { return _rowfixheight; } - void setRowFixedHeight(int s) { _rowfixheight = s; } - - int columnPreferredWidth() const { return _colprefwidth; } - void setColumnPreferredWidth(int s) { _colprefwidth = s; } - - int columnMaximumWidth() const { return _colmaxwidth; } - void setColumnMaximumWidth(int s) { _colmaxwidth = s; } - - int columnMinimumWidth() const { return _colminwidth; } - void setColumnMinimumWidth(int s) { _colminwidth = s; } - - int columnFixedWidth() const { return _colfixwidth; } - void setColumnFixedWidth(int s) { _colfixwidth = s; } - -Q_SIGNALS: - void alignmentChanged(QGraphicsLayoutItem*,Qt::Alignment); - -private: - int _row; - int _column; - int _rowspan; - int _colspan; - Qt::Alignment _alignment; - int _rowstretch; - int _colstretch; - int _rowspacing; - int _colspacing; - int _rowprefheight; - int _rowmaxheight; - int _rowminheight; - int _rowfixheight; - int _colprefwidth; - int _colmaxwidth; - int _colminwidth; - int _colfixwidth; -}; - -QT_END_NAMESPACE - -QML_DECLARE_INTERFACE(QGraphicsLayoutItem) -QML_DECLARE_INTERFACE(QGraphicsLayout) -QML_DECLARE_TYPE(QGraphicsLinearLayoutStretchItemObject) -QML_DECLARE_TYPE(QGraphicsLinearLayoutObject) -QML_DECLARE_TYPEINFO(QGraphicsLinearLayoutObject, QML_HAS_ATTACHED_PROPERTIES) -QML_DECLARE_TYPE(QGraphicsGridLayoutObject) -QML_DECLARE_TYPEINFO(QGraphicsGridLayoutObject, QML_HAS_ATTACHED_PROPERTIES) - -QT_END_HEADER - -#endif // GRAPHICSLAYOUTS_H diff --git a/examples/declarative/cppextensions/qgraphicslayouts/graphicsLayouts/main.cpp b/examples/declarative/cppextensions/qgraphicslayouts/graphicsLayouts/main.cpp deleted file mode 100644 index b0a15fc..0000000 --- a/examples/declarative/cppextensions/qgraphicslayouts/graphicsLayouts/main.cpp +++ /dev/null @@ -1,59 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** All rights reserved. -** Contact: Nokia Corporation (qt-info@nokia.com) -** -** This file is part of the plugins of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:BSD$ -** You may use this file under the terms of the BSD license as follows: -** -** "Redistribution and use in source and binary forms, with or without -** modification, are permitted provided that the following conditions are -** met: -** * Redistributions of source code must retain the above copyright -** notice, this list of conditions and the following disclaimer. -** * Redistributions in binary form must reproduce the above copyright -** notice, this list of conditions and the following disclaimer in -** the documentation and/or other materials provided with the -** distribution. -** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor -** the names of its contributors may be used to endorse or promote -** products derived from this software without specific prior written -** permission. -** -** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." -** $QT_END_LICENSE$ -** -****************************************************************************/ - -#include -#include -#include "graphicslayouts_p.h" -#include - -int main(int argc, char* argv[]) -{ - QApplication app(argc, argv); - QDeclarativeView view; - qmlRegisterInterface("QGraphicsLayoutItem"); - qmlRegisterInterface("QGraphicsLayout"); - qmlRegisterType("GraphicsLayouts",4,7,"QGraphicsLinearLayoutStretchItem"); - qmlRegisterType("GraphicsLayouts",4,7,"QGraphicsLinearLayout"); - qmlRegisterType("GraphicsLayouts",4,7,"QGraphicsGridLayout"); - view.setSource(QUrl(":graphicslayouts.qml")); - view.show(); - return app.exec(); -}; - diff --git a/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/.main.cpp.swo b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/.main.cpp.swo new file mode 100644 index 0000000..c742274 Binary files /dev/null and b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/.main.cpp.swo differ diff --git a/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/gridlayout.cpp b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/gridlayout.cpp new file mode 100644 index 0000000..728c225 --- /dev/null +++ b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/gridlayout.cpp @@ -0,0 +1,180 @@ +/**************************************************************************** +** +** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the QtDeclarative module of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:BSD$ +** You may use this file under the terms of the BSD license as follows: +** +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor +** the names of its contributors may be used to endorse or promote +** products derived from this software without specific prior written +** permission. +** +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." +** $QT_END_LICENSE$ +** +****************************************************************************/ + +#include "gridlayout.h" + +#include +#include + +GridLayoutAttached::GridLayoutAttached(QObject *parent) +: QObject(parent), m_row(-1), m_column(-1), m_rowspan(1), m_colspan(1), m_alignment(-1), m_rowStretch(-1), + m_colStretch(-1), m_rowSpacing(-1), m_colSpacing(-1), m_rowPrefHeight(-1), m_rowMaxHeight(-1), m_rowMinHeight(-1), + m_rowFixHeight(-1), m_colPrefwidth(-1), m_colMaxwidth(-1), m_colMinwidth(-1), m_colFixwidth(-1) +{ +} + +void GridLayoutAttached::setAlignment(Qt::Alignment a) +{ + if (m_alignment != a) { + m_alignment = a; + emit alignmentChanged(reinterpret_cast(parent()), m_alignment); + } +} + +QHash QGraphicsGridLayoutObject::attachedProperties; + +QGraphicsGridLayoutObject::QGraphicsGridLayoutObject(QObject *parent) +: QObject(parent) +{ +} + +QGraphicsGridLayoutObject::~QGraphicsGridLayoutObject() +{ +} + +void QGraphicsGridLayoutObject::addWidget(QGraphicsWidget *widget) +{ + //use attached properties + if (QObject *obj = attachedProperties.value(qobject_cast(widget))) { + int row = static_cast(obj)->row(); + int column = static_cast(obj)->column(); + int rowSpan = static_cast(obj)->rowSpan(); + int columnSpan = static_cast(obj)->columnSpan(); + if (row == -1 || column == -1) { + qWarning() << "Must set row and column for an item in a grid layout"; + return; + } + addItem(widget, row, column, rowSpan, columnSpan); + } +} + +void QGraphicsGridLayoutObject::addLayoutItem(QGraphicsLayoutItem *item) +{ + //use attached properties + if (GridLayoutAttached *obj = attachedProperties.value(item)) { + int row = obj->row(); + int column = obj->column(); + int rowSpan = obj->rowSpan(); + int columnSpan = obj->columnSpan(); + Qt::Alignment alignment = obj->alignment(); + + if (row == -1 || column == -1) { + qWarning() << "Must set row and column for an item in a grid layout"; + return; + } + + if (obj->rowSpacing() != -1) + setRowSpacing(row, obj->rowSpacing()); + if (obj->columnSpacing() != -1) + setColumnSpacing(column, obj->columnSpacing()); + if (obj->rowStretchFactor() != -1) + setRowStretchFactor(row, obj->rowStretchFactor()); + if (obj->columnStretchFactor() != -1) + setColumnStretchFactor(column, obj->columnStretchFactor()); + if (obj->rowPreferredHeight() != -1) + setRowPreferredHeight(row, obj->rowPreferredHeight()); + if (obj->rowMaximumHeight() != -1) + setRowMaximumHeight(row, obj->rowMaximumHeight()); + if (obj->rowMinimumHeight() != -1) + setRowMinimumHeight(row, obj->rowMinimumHeight()); + if (obj->rowFixedHeight() != -1) + setRowFixedHeight(row, obj->rowFixedHeight()); + if (obj->columnPreferredWidth() != -1) + setColumnPreferredWidth(row, obj->columnPreferredWidth()); + if (obj->columnMaximumWidth() != -1) + setColumnMaximumWidth(row, obj->columnMaximumWidth()); + if (obj->columnMinimumWidth() != -1) + setColumnMinimumWidth(row, obj->columnMinimumWidth()); + if (obj->columnFixedWidth() != -1) + setColumnFixedWidth(row, obj->columnFixedWidth()); + + addItem(item, row, column, rowSpan, columnSpan); + + if (alignment != -1) + setAlignment(item, alignment); + QObject::connect(obj, SIGNAL(alignmentChanged(QGraphicsLayoutItem*, Qt::Alignment)), + this, SLOT(updateAlignment(QGraphicsLayoutItem*, Qt::Alignment))); + //### need to disconnect when widget is removed? Re-implement removeAt()? + } +} + +void QGraphicsGridLayoutObject::clearChildren() +{ + //### do I need to delete the removed items? And/or removed them from attachedProperties? + while (count() > 0) + removeAt(count()-1); +} + +qreal QGraphicsGridLayoutObject::spacing() const +{ + if (verticalSpacing() == horizontalSpacing()) + return verticalSpacing(); + return -1; //### +} + +qreal QGraphicsGridLayoutObject::contentsMargin() const +{ + qreal a, b, c, d; + getContentsMargins(&a, &b, &c, &d); + if (a == b && a == c && a == d) + return a; + return -1; +} + +void QGraphicsGridLayoutObject::setContentsMargin(qreal m) +{ + setContentsMargins(m, m, m, m); +} + +void QGraphicsGridLayoutObject::updateAlignment(QGraphicsLayoutItem *item, Qt::Alignment alignment) +{ + QGraphicsGridLayout::setAlignment(item, alignment); +} + +GridLayoutAttached *QGraphicsGridLayoutObject::qmlAttachedProperties(QObject *obj) +{ + // ### This is not allowed - you must attach to any object + if (!qobject_cast(obj)) + return 0; + GridLayoutAttached *rv = new GridLayoutAttached(obj); + attachedProperties.insert(qobject_cast(obj), rv); + return rv; +} + diff --git a/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/gridlayout.h b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/gridlayout.h new file mode 100644 index 0000000..04f0148 --- /dev/null +++ b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/gridlayout.h @@ -0,0 +1,215 @@ +/**************************************************************************** +** +** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the QtDeclarative module of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:BSD$ +** You may use this file under the terms of the BSD license as follows: +** +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor +** the names of its contributors may be used to endorse or promote +** products derived from this software without specific prior written +** permission. +** +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." +** $QT_END_LICENSE$ +** +****************************************************************************/ + +#ifndef GRIDLAYOUT_H +#define GRIDLAYOUT_H + +#include + +#include +#include + +class GridLayoutAttached; +class QGraphicsGridLayoutObject : public QObject, public QGraphicsGridLayout +{ + Q_OBJECT + Q_INTERFACES(QGraphicsLayout QGraphicsLayoutItem) + + Q_PROPERTY(QDeclarativeListProperty children READ children) + Q_PROPERTY(qreal spacing READ spacing WRITE setSpacing) + Q_PROPERTY(qreal contentsMargin READ contentsMargin WRITE setContentsMargin) + Q_PROPERTY(qreal verticalSpacing READ verticalSpacing WRITE setVerticalSpacing) + Q_PROPERTY(qreal horizontalSpacing READ horizontalSpacing WRITE setHorizontalSpacing) + Q_CLASSINFO("DefaultProperty", "children") + +public: + QGraphicsGridLayoutObject(QObject * = 0); + ~QGraphicsGridLayoutObject(); + + QDeclarativeListProperty children() { return QDeclarativeListProperty(this, 0, children_append, children_count, children_at, children_clear); } + + qreal spacing() const; + qreal contentsMargin() const; + void setContentsMargin(qreal); + + static GridLayoutAttached *qmlAttachedProperties(QObject *); + +private slots: + void updateAlignment(QGraphicsLayoutItem*,Qt::Alignment); + +private: + friend class GraphicsLayoutAttached; + + void addWidget(QGraphicsWidget *); + void clearChildren(); + void addLayoutItem(QGraphicsLayoutItem *); + + static void children_append(QDeclarativeListProperty *prop, QGraphicsLayoutItem *item) { + static_cast(prop->object)->addLayoutItem(item); + } + + static void children_clear(QDeclarativeListProperty *prop) { + static_cast(prop->object)->clearChildren(); + } + + static int children_count(QDeclarativeListProperty *prop) { + return static_cast(prop->object)->count(); + } + + static QGraphicsLayoutItem *children_at(QDeclarativeListProperty *prop, int index) { + return static_cast(prop->object)->itemAt(index); + } + + static QHash attachedProperties; +}; + + +class GridLayoutAttached : public QObject +{ + Q_OBJECT + + Q_PROPERTY(int row READ row WRITE setRow) + Q_PROPERTY(int column READ column WRITE setColumn) + + Q_PROPERTY(int rowSpan READ rowSpan WRITE setRowSpan) + Q_PROPERTY(int columnSpan READ columnSpan WRITE setColumnSpan) + Q_PROPERTY(Qt::Alignment alignment READ alignment WRITE setAlignment) + + Q_PROPERTY(int rowStretchFactor READ rowStretchFactor WRITE setRowStretchFactor) + Q_PROPERTY(int columnStretchFactor READ columnStretchFactor WRITE setColumnStretchFactor) + Q_PROPERTY(int rowSpacing READ rowSpacing WRITE setRowSpacing) + Q_PROPERTY(int columnSpacing READ columnSpacing WRITE setColumnSpacing) + + Q_PROPERTY(int rowPreferredHeight READ rowPreferredHeight WRITE setRowPreferredHeight) + Q_PROPERTY(int rowMinimumHeight READ rowMinimumHeight WRITE setRowMinimumHeight) + Q_PROPERTY(int rowMaximumHeight READ rowMaximumHeight WRITE setRowMaximumHeight) + Q_PROPERTY(int rowFixedHeight READ rowFixedHeight WRITE setRowFixedHeight) + + Q_PROPERTY(int columnPreferredWidth READ columnPreferredWidth WRITE setColumnPreferredWidth) + Q_PROPERTY(int columnMaximumWidth READ columnMaximumWidth WRITE setColumnMaximumWidth) + Q_PROPERTY(int columnMinimumWidth READ columnMinimumWidth WRITE setColumnMinimumWidth) + Q_PROPERTY(int columnFixedWidth READ columnFixedWidth WRITE setColumnFixedWidth) + +public: + GridLayoutAttached(QObject *parent); + + int row() const { return m_row; } + void setRow(int r) { m_row = r; } + + int column() const { return m_column; } + void setColumn(int c) { m_column = c; } + + int rowSpan() const { return m_rowspan; } + void setRowSpan(int rs) { m_rowspan = rs; } + + int columnSpan() const { return m_colspan; } + void setColumnSpan(int cs) { m_colspan = cs; } + + Qt::Alignment alignment() const { return m_alignment; } + void setAlignment(Qt::Alignment a); + + int rowStretchFactor() const { return m_rowStretch; } + void setRowStretchFactor(int f) { m_rowStretch = f; } + int columnStretchFactor() const { return m_colStretch; } + void setColumnStretchFactor(int f) { m_colStretch = f; } + + int rowSpacing() const { return m_rowSpacing; } + void setRowSpacing(int s) { m_rowSpacing = s; } + int columnSpacing() const { return m_colSpacing; } + void setColumnSpacing(int s) { m_colSpacing = s; } + + int rowPreferredHeight() const { return m_rowPrefHeight; } + void setRowPreferredHeight(int s) { m_rowPrefHeight = s; } + + int rowMaximumHeight() const { return m_rowMaxHeight; } + void setRowMaximumHeight(int s) { m_rowMaxHeight = s; } + + int rowMinimumHeight() const { return m_rowMinHeight; } + void setRowMinimumHeight(int s) { m_rowMinHeight = s; } + + int rowFixedHeight() const { return m_rowFixHeight; } + void setRowFixedHeight(int s) { m_rowFixHeight = s; } + + int columnPreferredWidth() const { return m_colPrefwidth; } + void setColumnPreferredWidth(int s) { m_colPrefwidth = s; } + + int columnMaximumWidth() const { return m_colMaxwidth; } + void setColumnMaximumWidth(int s) { m_colMaxwidth = s; } + + int columnMinimumWidth() const { return m_colMinwidth; } + void setColumnMinimumWidth(int s) { m_colMinwidth = s; } + + int columnFixedWidth() const { return m_colFixwidth; } + void setColumnFixedWidth(int s) { m_colFixwidth = s; } + +signals: + void alignmentChanged(QGraphicsLayoutItem*, Qt::Alignment); + +private: + int m_row; + int m_column; + + int m_rowspan; + int m_colspan; + Qt::Alignment m_alignment; + + int m_rowStretch; + int m_colStretch; + int m_rowSpacing; + int m_colSpacing; + + int m_rowPrefHeight; + int m_rowMaxHeight; + int m_rowMinHeight; + int m_rowFixHeight; + + int m_colPrefwidth; + int m_colMaxwidth; + int m_colMinwidth; + int m_colFixwidth; +}; + +QML_DECLARE_INTERFACE(QGraphicsLayoutItem) +QML_DECLARE_INTERFACE(QGraphicsLayout) +QML_DECLARE_TYPE(QGraphicsGridLayoutObject) +QML_DECLARE_TYPEINFO(QGraphicsGridLayoutObject, QML_HAS_ATTACHED_PROPERTIES) + +#endif + diff --git a/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/gridlayout.qrc b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/gridlayout.qrc new file mode 100644 index 0000000..bdf8312 --- /dev/null +++ b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/gridlayout.qrc @@ -0,0 +1,6 @@ + + + qgraphicsgridlayout.qml + + + diff --git a/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/main.cpp b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/main.cpp new file mode 100644 index 0000000..7585b23 --- /dev/null +++ b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/main.cpp @@ -0,0 +1,63 @@ +/**************************************************************************** +** +** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the plugins of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:BSD$ +** You may use this file under the terms of the BSD license as follows: +** +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor +** the names of its contributors may be used to endorse or promote +** products derived from this software without specific prior written +** permission. +** +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." +** $QT_END_LICENSE$ +** +****************************************************************************/ + +#include "gridlayout.h" + +#include +#include + +#include + +int main(int argc, char* argv[]) +{ + QApplication app(argc, argv); + + qmlRegisterInterface("QGraphicsLayoutItem"); + qmlRegisterInterface("QGraphicsLayout"); + qmlRegisterType("GridLayouts",4,7,"QGraphicsGridLayout"); + + QDeclarativeView view; + view.setSource(QUrl(":qgraphicsgridlayout.qml")); + view.show(); + + return app.exec(); +}; + + diff --git a/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/qgraphicsgridlayout.pro b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/qgraphicsgridlayout.pro new file mode 100644 index 0000000..ae6373d --- /dev/null +++ b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/qgraphicsgridlayout.pro @@ -0,0 +1,15 @@ +TEMPLATE = app +TARGET = qgraphicsgridlayout +QT += declarative + +SOURCES += \ + gridlayout.cpp \ + main.cpp + +HEADERS += \ + gridlayout.h + +RESOURCES += \ + gridlayout.qrc + + diff --git a/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/qgraphicsgridlayout.qml b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/qgraphicsgridlayout.qml new file mode 100644 index 0000000..c3edf1d --- /dev/null +++ b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/qgraphicsgridlayout.qml @@ -0,0 +1,98 @@ +/**************************************************************************** +** +** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the QtDeclarative module of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:BSD$ +** You may use this file under the terms of the BSD license as follows: +** +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor +** the names of its contributors may be used to endorse or promote +** products derived from this software without specific prior written +** permission. +** +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import Qt 4.7 +import GridLayouts 4.7 + +Item { + width: 400 + height: 400 + + QGraphicsWidget { + size.width: parent.width + size.height: parent.height + + layout: QGraphicsGridLayout { + objectName: "layout" + LayoutItem { + QGraphicsGridLayout.row: 0 + QGraphicsGridLayout.column: 0 + QGraphicsGridLayout.alignment: Qt.AlignLeft + minimumSize: "100x100" + maximumSize: "300x300" + preferredSize: "100x100" + Rectangle { color: "red"; anchors.fill: parent } + } + LayoutItem { + QGraphicsGridLayout.row: 1 + QGraphicsGridLayout.column: 0 + minimumSize: "100x100" + maximumSize: "200x200" + preferredSize: "100x100" + Rectangle { color: "orange"; anchors.fill: parent } + } + LayoutItem { + QGraphicsGridLayout.row: 2 + QGraphicsGridLayout.column: 0 + minimumSize: "100x100" + maximumSize: "300x300" + preferredSize: "200x200" + Rectangle { color: "yellow"; anchors.fill: parent } + } + LayoutItem { + QGraphicsGridLayout.row: 0 + QGraphicsGridLayout.column: 1 + minimumSize: "100x100" + maximumSize: "200x200" + preferredSize: "200x200" + Rectangle { color: "green"; anchors.fill: parent } + } + LayoutItem { + QGraphicsGridLayout.row: 1 + QGraphicsGridLayout.column: 1 + minimumSize: "100x100" + maximumSize: "400x400" + preferredSize: "200x200" + Rectangle { color: "blue"; anchors.fill: parent } + } + } + } +} + diff --git a/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/linearlayout.cpp b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/linearlayout.cpp new file mode 100644 index 0000000..5cd35cb --- /dev/null +++ b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/linearlayout.cpp @@ -0,0 +1,167 @@ +/**************************************************************************** +** +** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the QtDeclarative module of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:BSD$ +** You may use this file under the terms of the BSD license as follows: +** +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor +** the names of its contributors may be used to endorse or promote +** products derived from this software without specific prior written +** permission. +** +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." +** $QT_END_LICENSE$ +** +****************************************************************************/ + +#include "linearlayout.h" + +#include +#include + +LinearLayoutAttached::LinearLayoutAttached(QObject *parent) +: QObject(parent), m_stretch(1), m_alignment(Qt::AlignCenter), m_spacing(0) +{ +} + +void LinearLayoutAttached::setStretchFactor(int f) +{ + if (m_stretch != f) { + m_stretch = f; + emit stretchChanged(reinterpret_cast(parent()), m_stretch); + } +} + +void LinearLayoutAttached::setSpacing(int s) +{ + if (m_spacing != s) { + m_spacing = s; + emit spacingChanged(reinterpret_cast(parent()), m_spacing); + } +} + +void LinearLayoutAttached::setAlignment(Qt::Alignment a) +{ + if (m_alignment != a) { + m_alignment = a; + emit alignmentChanged(reinterpret_cast(parent()), m_alignment); + } +} + +QGraphicsLinearLayoutStretchItemObject::QGraphicsLinearLayoutStretchItemObject(QObject *parent) + : QObject(parent) +{ +} + +QSizeF QGraphicsLinearLayoutStretchItemObject::sizeHint(Qt::SizeHint which, const QSizeF &constraint) const +{ + Q_UNUSED(which); + Q_UNUSED(constraint); + return QSizeF(); +} + + +QGraphicsLinearLayoutObject::QGraphicsLinearLayoutObject(QObject *parent) +: QObject(parent) +{ +} + +QGraphicsLinearLayoutObject::~QGraphicsLinearLayoutObject() +{ +} + +void QGraphicsLinearLayoutObject::insertLayoutItem(int index, QGraphicsLayoutItem *item) +{ + insertItem(index, item); + + //connect attached properties + if (LinearLayoutAttached *obj = attachedProperties.value(item)) { + setStretchFactor(item, obj->stretchFactor()); + setAlignment(item, obj->alignment()); + updateSpacing(item, obj->spacing()); + QObject::connect(obj, SIGNAL(stretchChanged(QGraphicsLayoutItem*,int)), + this, SLOT(updateStretch(QGraphicsLayoutItem*,int))); + QObject::connect(obj, SIGNAL(alignmentChanged(QGraphicsLayoutItem*,Qt::Alignment)), + this, SLOT(updateAlignment(QGraphicsLayoutItem*,Qt::Alignment))); + QObject::connect(obj, SIGNAL(spacingChanged(QGraphicsLayoutItem*,int)), + this, SLOT(updateSpacing(QGraphicsLayoutItem*,int))); + //### need to disconnect when widget is removed? + } +} + +void QGraphicsLinearLayoutObject::clearChildren() +{ + while (count() > 0) + removeAt(count()-1); +} + +qreal QGraphicsLinearLayoutObject::contentsMargin() const +{ + qreal a, b, c, d; + getContentsMargins(&a, &b, &c, &d); + if (a == b && a == c && a == d) + return a; + return -1; +} + +void QGraphicsLinearLayoutObject::setContentsMargin(qreal m) +{ + setContentsMargins(m, m, m, m); +} + +void QGraphicsLinearLayoutObject::updateStretch(QGraphicsLayoutItem *item, int stretch) +{ + QGraphicsLinearLayout::setStretchFactor(item, stretch); +} + +void QGraphicsLinearLayoutObject::updateSpacing(QGraphicsLayoutItem* item, int spacing) +{ + for (int i=0; i < count(); i++){ + if (itemAt(i) == item) { + QGraphicsLinearLayout::setItemSpacing(i, spacing); + return; + } + } +} + +void QGraphicsLinearLayoutObject::updateAlignment(QGraphicsLayoutItem *item, Qt::Alignment alignment) +{ + QGraphicsLinearLayout::setAlignment(item, alignment); +} + +QHash QGraphicsLinearLayoutObject::attachedProperties; +LinearLayoutAttached *QGraphicsLinearLayoutObject::qmlAttachedProperties(QObject *obj) +{ + // ### This is not allowed - you must attach to any object + if (!qobject_cast(obj)) + return 0; + LinearLayoutAttached *rv = new LinearLayoutAttached(obj); + attachedProperties.insert(qobject_cast(obj), rv); + return rv; +} + + diff --git a/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/linearlayout.h b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/linearlayout.h new file mode 100644 index 0000000..392f3f8 --- /dev/null +++ b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/linearlayout.h @@ -0,0 +1,150 @@ +/**************************************************************************** +** +** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the QtDeclarative module of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:BSD$ +** You may use this file under the terms of the BSD license as follows: +** +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor +** the names of its contributors may be used to endorse or promote +** products derived from this software without specific prior written +** permission. +** +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." +** $QT_END_LICENSE$ +** +****************************************************************************/ + +#ifndef LINEARLAYOUT_H +#define LINEARLAYOUT_H + +#include + +#include +#include + +class QGraphicsLinearLayoutStretchItemObject : public QObject, public QGraphicsLayoutItem +{ + Q_OBJECT + Q_INTERFACES(QGraphicsLayoutItem) +public: + QGraphicsLinearLayoutStretchItemObject(QObject *parent = 0); + + virtual QSizeF sizeHint(Qt::SizeHint, const QSizeF &) const; +}; + + +class LinearLayoutAttached; +class QGraphicsLinearLayoutObject : public QObject, public QGraphicsLinearLayout +{ + Q_OBJECT + Q_INTERFACES(QGraphicsLayout QGraphicsLayoutItem) + + Q_PROPERTY(QDeclarativeListProperty children READ children) + Q_PROPERTY(Qt::Orientation orientation READ orientation WRITE setOrientation) + Q_PROPERTY(qreal spacing READ spacing WRITE setSpacing) + Q_PROPERTY(qreal contentsMargin READ contentsMargin WRITE setContentsMargin) + Q_CLASSINFO("DefaultProperty", "children") +public: + QGraphicsLinearLayoutObject(QObject * = 0); + ~QGraphicsLinearLayoutObject(); + + QDeclarativeListProperty children() { return QDeclarativeListProperty(this, 0, children_append, children_count, children_at, children_clear); } + + static LinearLayoutAttached *qmlAttachedProperties(QObject *); + + qreal contentsMargin() const; + void setContentsMargin(qreal); + +private slots: + void updateStretch(QGraphicsLayoutItem*,int); + void updateSpacing(QGraphicsLayoutItem*,int); + void updateAlignment(QGraphicsLayoutItem*,Qt::Alignment); + +private: + friend class LinearLayoutAttached; + + void clearChildren(); + void insertLayoutItem(int, QGraphicsLayoutItem *); + + static void children_append(QDeclarativeListProperty *prop, QGraphicsLayoutItem *item) { + static_cast(prop->object)->insertLayoutItem(-1, item); + } + + static void children_clear(QDeclarativeListProperty *prop) { + static_cast(prop->object)->clearChildren(); + } + + static int children_count(QDeclarativeListProperty *prop) { + return static_cast(prop->object)->count(); + } + + static QGraphicsLayoutItem *children_at(QDeclarativeListProperty *prop, int index) { + return static_cast(prop->object)->itemAt(index); + } + + static QHash attachedProperties; +}; + + +class LinearLayoutAttached : public QObject +{ + Q_OBJECT + + Q_PROPERTY(int stretchFactor READ stretchFactor WRITE setStretchFactor NOTIFY stretchChanged) + Q_PROPERTY(Qt::Alignment alignment READ alignment WRITE setAlignment NOTIFY alignmentChanged) + Q_PROPERTY(int spacing READ spacing WRITE setSpacing NOTIFY spacingChanged) + +public: + LinearLayoutAttached(QObject *parent); + + int stretchFactor() const { return m_stretch; } + void setStretchFactor(int f); + Qt::Alignment alignment() const { return m_alignment; } + void setAlignment(Qt::Alignment a); + int spacing() const { return m_spacing; } + void setSpacing(int s); + +signals: + void stretchChanged(QGraphicsLayoutItem*, int); + void alignmentChanged(QGraphicsLayoutItem*, Qt::Alignment); + void spacingChanged(QGraphicsLayoutItem*, int); + +private: + int m_stretch; + Qt::Alignment m_alignment; + int m_spacing; +}; + +QML_DECLARE_INTERFACE(QGraphicsLayoutItem) +QML_DECLARE_INTERFACE(QGraphicsLayout) +QML_DECLARE_TYPE(QGraphicsLinearLayoutStretchItemObject) +QML_DECLARE_TYPE(QGraphicsLinearLayoutObject) +QML_DECLARE_TYPEINFO(QGraphicsLinearLayoutObject, QML_HAS_ATTACHED_PROPERTIES) + +#endif + + diff --git a/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/linearlayout.qrc b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/linearlayout.qrc new file mode 100644 index 0000000..93a3533 --- /dev/null +++ b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/linearlayout.qrc @@ -0,0 +1,6 @@ + + + qgraphicslinearlayout.qml + + + diff --git a/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/main.cpp b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/main.cpp new file mode 100644 index 0000000..c76e403 --- /dev/null +++ b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/main.cpp @@ -0,0 +1,64 @@ +/**************************************************************************** +** +** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the plugins of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:BSD$ +** You may use this file under the terms of the BSD license as follows: +** +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor +** the names of its contributors may be used to endorse or promote +** products derived from this software without specific prior written +** permission. +** +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." +** $QT_END_LICENSE$ +** +****************************************************************************/ + +#include "linearlayout.h" + +#include +#include + +#include + +int main(int argc, char* argv[]) +{ + QApplication app(argc, argv); + + qmlRegisterInterface("QGraphicsLayoutItem"); + qmlRegisterInterface("QGraphicsLayout"); + qmlRegisterType("LinearLayouts",4,7,"QGraphicsLinearLayoutStretchItem"); + qmlRegisterType("LinearLayouts",4,7,"QGraphicsLinearLayout"); + + QDeclarativeView view; + view.setSource(QUrl(":qgraphicslinearlayout.qml")); + view.show(); + + return app.exec(); +}; + + diff --git a/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/qgraphicslinearlayout.pro b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/qgraphicslinearlayout.pro new file mode 100644 index 0000000..79eb6ff --- /dev/null +++ b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/qgraphicslinearlayout.pro @@ -0,0 +1,15 @@ +TEMPLATE = app +TARGET = qgraphicslinearlayout +QT += declarative + +SOURCES += \ + linearlayout.cpp \ + main.cpp + +HEADERS += \ + linearlayout.h + +RESOURCES += \ + linearlayout.qrc + + diff --git a/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/qgraphicslinearlayout.qml b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/qgraphicslinearlayout.qml new file mode 100644 index 0000000..da77921 --- /dev/null +++ b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/qgraphicslinearlayout.qml @@ -0,0 +1,68 @@ +/**************************************************************************** +** +** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the QtDeclarative module of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:BSD$ +** You may use this file under the terms of the BSD license as follows: +** +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor +** the names of its contributors may be used to endorse or promote +** products derived from this software without specific prior written +** permission. +** +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import Qt 4.7 +import LinearLayouts 4.7 + +Item { + width: 400 + height: 400 + + QGraphicsWidget { + size.width: parent.width + size.height: parent.height + + layout: QGraphicsLinearLayout { + LayoutItem { + minimumSize: "100x100" + maximumSize: "300x300" + preferredSize: "100x100" + Rectangle { color: "yellow"; anchors.fill: parent } + } + LayoutItem { + minimumSize: "100x100" + maximumSize: "400x400" + preferredSize: "200x200" + Rectangle { color: "green"; anchors.fill: parent } + } + } + } +} + -- cgit v0.12 From 10dba5b02c6226bce186c0308d40fdedb4ecd9b8 Mon Sep 17 00:00:00 2001 From: Bea Lam Date: Mon, 31 May 2010 11:42:36 +1000 Subject: Implement removeAt() for layout classes to clean up item removal. Also clean up qmlAttachedProperties() implementation and improve QML example --- .../qgraphicsgridlayout/.main.cpp.swo | Bin 12288 -> 12288 bytes .../qgraphicsgridlayout/gridlayout.cpp | 22 ++++++++----- .../qgraphicsgridlayout/gridlayout.h | 2 ++ .../qgraphicsgridlayout/qgraphicsgridlayout.qml | 34 +++++++++++---------- .../qgraphicslayouts/qgraphicslayouts.pro | 5 +-- .../qgraphicslinearlayout/linearlayout.cpp | 22 ++++++++----- .../qgraphicslinearlayout/linearlayout.h | 6 ++-- .../qgraphicslinearlayout.qml | 15 +++++++-- 8 files changed, 70 insertions(+), 36 deletions(-) diff --git a/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/.main.cpp.swo b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/.main.cpp.swo index c742274..cbd3b3e 100644 Binary files a/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/.main.cpp.swo and b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/.main.cpp.swo differ diff --git a/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/gridlayout.cpp b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/gridlayout.cpp index 728c225..1792696 100644 --- a/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/gridlayout.cpp +++ b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/gridlayout.cpp @@ -131,13 +131,23 @@ void QGraphicsGridLayoutObject::addLayoutItem(QGraphicsLayoutItem *item) setAlignment(item, alignment); QObject::connect(obj, SIGNAL(alignmentChanged(QGraphicsLayoutItem*, Qt::Alignment)), this, SLOT(updateAlignment(QGraphicsLayoutItem*, Qt::Alignment))); - //### need to disconnect when widget is removed? Re-implement removeAt()? } } +void QGraphicsGridLayoutObject::removeAt(int index) +{ + QGraphicsLayoutItem *item = itemAt(index); + if (item) { + GridLayoutAttached *obj = attachedProperties.value(item); + obj->disconnect(this); + attachedProperties.remove(item); + } + QGraphicsGridLayout::removeAt(index); +} + void QGraphicsGridLayoutObject::clearChildren() { - //### do I need to delete the removed items? And/or removed them from attachedProperties? + // do not delete the removed items; they will be deleted by the QML engine while (count() > 0) removeAt(count()-1); } @@ -146,7 +156,7 @@ qreal QGraphicsGridLayoutObject::spacing() const { if (verticalSpacing() == horizontalSpacing()) return verticalSpacing(); - return -1; //### + return -1; } qreal QGraphicsGridLayoutObject::contentsMargin() const @@ -170,11 +180,9 @@ void QGraphicsGridLayoutObject::updateAlignment(QGraphicsLayoutItem *item, Qt::A GridLayoutAttached *QGraphicsGridLayoutObject::qmlAttachedProperties(QObject *obj) { - // ### This is not allowed - you must attach to any object - if (!qobject_cast(obj)) - return 0; GridLayoutAttached *rv = new GridLayoutAttached(obj); - attachedProperties.insert(qobject_cast(obj), rv); + if (qobject_cast(obj)) + attachedProperties.insert(qobject_cast(obj), rv); return rv; } diff --git a/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/gridlayout.h b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/gridlayout.h index 04f0148..cb8d9b7 100644 --- a/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/gridlayout.h +++ b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/gridlayout.h @@ -69,6 +69,8 @@ public: qreal contentsMargin() const; void setContentsMargin(qreal); + void removeAt(int index); + static GridLayoutAttached *qmlAttachedProperties(QObject *); private slots: diff --git a/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/qgraphicsgridlayout.qml b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/qgraphicsgridlayout.qml index c3edf1d..5cb011f 100644 --- a/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/qgraphicsgridlayout.qml +++ b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/qgraphicsgridlayout.qml @@ -49,46 +49,48 @@ Item { size.width: parent.width size.height: parent.height + /* + Below we create a grid layout using the GraphicsGridLayout item + (defined by the GraphicsGridLayoutObject class in gridlayout.h). + + The row, column etc. are set through attached properties on + GraphicsGridLayout, using the properties defined in the + GridLayoutAttached class (also defined in gridlayout.h). + */ + layout: QGraphicsGridLayout { - objectName: "layout" LayoutItem { QGraphicsGridLayout.row: 0 QGraphicsGridLayout.column: 0 - QGraphicsGridLayout.alignment: Qt.AlignLeft minimumSize: "100x100" maximumSize: "300x300" - preferredSize: "100x100" + preferredSize: "200x200" Rectangle { color: "red"; anchors.fill: parent } } LayoutItem { - QGraphicsGridLayout.row: 1 - QGraphicsGridLayout.column: 0 + QGraphicsGridLayout.row: 0 + QGraphicsGridLayout.column: 1 minimumSize: "100x100" maximumSize: "200x200" - preferredSize: "100x100" + preferredSize: "200x200" Rectangle { color: "orange"; anchors.fill: parent } } LayoutItem { - QGraphicsGridLayout.row: 2 + QGraphicsGridLayout.row: 1 QGraphicsGridLayout.column: 0 + QGraphicsGridLayout.columnSpan: 2 minimumSize: "100x100" - maximumSize: "300x300" - preferredSize: "200x200" Rectangle { color: "yellow"; anchors.fill: parent } } LayoutItem { - QGraphicsGridLayout.row: 0 - QGraphicsGridLayout.column: 1 - minimumSize: "100x100" - maximumSize: "200x200" + QGraphicsGridLayout.row: 2 + QGraphicsGridLayout.column: 0 preferredSize: "200x200" Rectangle { color: "green"; anchors.fill: parent } } LayoutItem { - QGraphicsGridLayout.row: 1 + QGraphicsGridLayout.row: 2 QGraphicsGridLayout.column: 1 - minimumSize: "100x100" - maximumSize: "400x400" preferredSize: "200x200" Rectangle { color: "blue"; anchors.fill: parent } } diff --git a/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslayouts.pro b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslayouts.pro index d92a6f4..672120a 100644 --- a/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslayouts.pro +++ b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslayouts.pro @@ -1,5 +1,6 @@ TEMPLATE = subdirs SUBDIRS += \ - graphicsLayouts \ - layoutItem + layoutitem \ + qgraphicsgridlayout \ + qgraphicslinearlayout diff --git a/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/linearlayout.cpp b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/linearlayout.cpp index 5cd35cb..080b6ce 100644 --- a/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/linearlayout.cpp +++ b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/linearlayout.cpp @@ -44,7 +44,7 @@ #include LinearLayoutAttached::LinearLayoutAttached(QObject *parent) -: QObject(parent), m_stretch(1), m_alignment(Qt::AlignCenter), m_spacing(0) +: QObject(parent), m_stretch(1), m_alignment(Qt::AlignTop), m_spacing(0) { } @@ -98,7 +98,6 @@ void QGraphicsLinearLayoutObject::insertLayoutItem(int index, QGraphicsLayoutIte { insertItem(index, item); - //connect attached properties if (LinearLayoutAttached *obj = attachedProperties.value(item)) { setStretchFactor(item, obj->stretchFactor()); setAlignment(item, obj->alignment()); @@ -109,12 +108,23 @@ void QGraphicsLinearLayoutObject::insertLayoutItem(int index, QGraphicsLayoutIte this, SLOT(updateAlignment(QGraphicsLayoutItem*,Qt::Alignment))); QObject::connect(obj, SIGNAL(spacingChanged(QGraphicsLayoutItem*,int)), this, SLOT(updateSpacing(QGraphicsLayoutItem*,int))); - //### need to disconnect when widget is removed? } } +void QGraphicsLinearLayoutObject::removeAt(int index) +{ + QGraphicsLayoutItem *item = itemAt(index); + if (item) { + LinearLayoutAttached *obj = attachedProperties.value(item); + obj->disconnect(this); + attachedProperties.remove(item); + } + QGraphicsLinearLayout::removeAt(index); +} + void QGraphicsLinearLayoutObject::clearChildren() { + // do not delete the removed items; they will be deleted by the QML engine while (count() > 0) removeAt(count()-1); } @@ -156,11 +166,9 @@ void QGraphicsLinearLayoutObject::updateAlignment(QGraphicsLayoutItem *item, Qt: QHash QGraphicsLinearLayoutObject::attachedProperties; LinearLayoutAttached *QGraphicsLinearLayoutObject::qmlAttachedProperties(QObject *obj) { - // ### This is not allowed - you must attach to any object - if (!qobject_cast(obj)) - return 0; LinearLayoutAttached *rv = new LinearLayoutAttached(obj); - attachedProperties.insert(qobject_cast(obj), rv); + if (qobject_cast(obj)) + attachedProperties.insert(qobject_cast(obj), rv); return rv; } diff --git a/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/linearlayout.h b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/linearlayout.h index 392f3f8..e6daf4d 100644 --- a/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/linearlayout.h +++ b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/linearlayout.h @@ -74,11 +74,13 @@ public: QDeclarativeListProperty children() { return QDeclarativeListProperty(this, 0, children_append, children_count, children_at, children_clear); } - static LinearLayoutAttached *qmlAttachedProperties(QObject *); - qreal contentsMargin() const; void setContentsMargin(qreal); + void removeAt(int index); + + static LinearLayoutAttached *qmlAttachedProperties(QObject *); + private slots: void updateStretch(QGraphicsLayoutItem*,int); void updateSpacing(QGraphicsLayoutItem*,int); diff --git a/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/qgraphicslinearlayout.qml b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/qgraphicslinearlayout.qml index da77921..72cdeb6 100644 --- a/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/qgraphicslinearlayout.qml +++ b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/qgraphicslinearlayout.qml @@ -49,17 +49,28 @@ Item { size.width: parent.width size.height: parent.height + /* + Below we create a linear layout using the GraphicsLinearLayout item + (defined by the GraphicsLinearLayoutObject class in linearlayout.h). + + The first LayoutItem uses 'GraphicsLinearLayout.spacing' to set the + item's spacing: this is an attached property, set using the + properties defined in the LinearLayoutAttached class (also defined + in linearlayout.h). + */ + layout: QGraphicsLinearLayout { LayoutItem { + QGraphicsLinearLayout.spacing: 50 minimumSize: "100x100" - maximumSize: "300x300" + maximumSize: "200x200" preferredSize: "100x100" Rectangle { color: "yellow"; anchors.fill: parent } } LayoutItem { minimumSize: "100x100" maximumSize: "400x400" - preferredSize: "200x200" + preferredSize: "300x300" Rectangle { color: "green"; anchors.fill: parent } } } -- cgit v0.12 From 33bf5e9941d4c1c257d22280cd0e8fb64382c782 Mon Sep 17 00:00:00 2001 From: Bea Lam Date: Mon, 31 May 2010 11:45:39 +1000 Subject: File shouldn't be in repository --- .../qgraphicslayouts/qgraphicsgridlayout/.main.cpp.swo | Bin 12288 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/.main.cpp.swo diff --git a/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/.main.cpp.swo b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/.main.cpp.swo deleted file mode 100644 index cbd3b3e..0000000 Binary files a/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/.main.cpp.swo and /dev/null differ -- cgit v0.12 From 1e60f5fb1c1ad9289247ef3bc47a94434b27dbea Mon Sep 17 00:00:00 2001 From: Bea Lam Date: Mon, 31 May 2010 11:50:46 +1000 Subject: Rename QGraphics...Layout classes/QML items to Graphics...Layout to make it clear they are custom classes/items (not built-in) --- .../qgraphicsgridlayout/gridlayout.cpp | 24 +++++++++---------- .../qgraphicsgridlayout/gridlayout.h | 18 +++++++------- .../qgraphicslayouts/qgraphicsgridlayout/main.cpp | 2 +- .../qgraphicsgridlayout/qgraphicsgridlayout.qml | 24 +++++++++---------- .../qgraphicslinearlayout/linearlayout.cpp | 28 +++++++++++----------- .../qgraphicslinearlayout/linearlayout.h | 24 +++++++++---------- .../qgraphicslinearlayout/main.cpp | 4 ++-- .../qgraphicslinearlayout.qml | 4 ++-- 8 files changed, 64 insertions(+), 64 deletions(-) diff --git a/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/gridlayout.cpp b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/gridlayout.cpp index 1792696..b52305e 100644 --- a/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/gridlayout.cpp +++ b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/gridlayout.cpp @@ -58,18 +58,18 @@ void GridLayoutAttached::setAlignment(Qt::Alignment a) } } -QHash QGraphicsGridLayoutObject::attachedProperties; +QHash GraphicsGridLayoutObject::attachedProperties; -QGraphicsGridLayoutObject::QGraphicsGridLayoutObject(QObject *parent) +GraphicsGridLayoutObject::GraphicsGridLayoutObject(QObject *parent) : QObject(parent) { } -QGraphicsGridLayoutObject::~QGraphicsGridLayoutObject() +GraphicsGridLayoutObject::~GraphicsGridLayoutObject() { } -void QGraphicsGridLayoutObject::addWidget(QGraphicsWidget *widget) +void GraphicsGridLayoutObject::addWidget(QGraphicsWidget *widget) { //use attached properties if (QObject *obj = attachedProperties.value(qobject_cast(widget))) { @@ -85,7 +85,7 @@ void QGraphicsGridLayoutObject::addWidget(QGraphicsWidget *widget) } } -void QGraphicsGridLayoutObject::addLayoutItem(QGraphicsLayoutItem *item) +void GraphicsGridLayoutObject::addLayoutItem(QGraphicsLayoutItem *item) { //use attached properties if (GridLayoutAttached *obj = attachedProperties.value(item)) { @@ -134,7 +134,7 @@ void QGraphicsGridLayoutObject::addLayoutItem(QGraphicsLayoutItem *item) } } -void QGraphicsGridLayoutObject::removeAt(int index) +void GraphicsGridLayoutObject::removeAt(int index) { QGraphicsLayoutItem *item = itemAt(index); if (item) { @@ -145,21 +145,21 @@ void QGraphicsGridLayoutObject::removeAt(int index) QGraphicsGridLayout::removeAt(index); } -void QGraphicsGridLayoutObject::clearChildren() +void GraphicsGridLayoutObject::clearChildren() { // do not delete the removed items; they will be deleted by the QML engine while (count() > 0) removeAt(count()-1); } -qreal QGraphicsGridLayoutObject::spacing() const +qreal GraphicsGridLayoutObject::spacing() const { if (verticalSpacing() == horizontalSpacing()) return verticalSpacing(); return -1; } -qreal QGraphicsGridLayoutObject::contentsMargin() const +qreal GraphicsGridLayoutObject::contentsMargin() const { qreal a, b, c, d; getContentsMargins(&a, &b, &c, &d); @@ -168,17 +168,17 @@ qreal QGraphicsGridLayoutObject::contentsMargin() const return -1; } -void QGraphicsGridLayoutObject::setContentsMargin(qreal m) +void GraphicsGridLayoutObject::setContentsMargin(qreal m) { setContentsMargins(m, m, m, m); } -void QGraphicsGridLayoutObject::updateAlignment(QGraphicsLayoutItem *item, Qt::Alignment alignment) +void GraphicsGridLayoutObject::updateAlignment(QGraphicsLayoutItem *item, Qt::Alignment alignment) { QGraphicsGridLayout::setAlignment(item, alignment); } -GridLayoutAttached *QGraphicsGridLayoutObject::qmlAttachedProperties(QObject *obj) +GridLayoutAttached *GraphicsGridLayoutObject::qmlAttachedProperties(QObject *obj) { GridLayoutAttached *rv = new GridLayoutAttached(obj); if (qobject_cast(obj)) diff --git a/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/gridlayout.h b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/gridlayout.h index cb8d9b7..ca2cedc 100644 --- a/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/gridlayout.h +++ b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/gridlayout.h @@ -47,7 +47,7 @@ #include class GridLayoutAttached; -class QGraphicsGridLayoutObject : public QObject, public QGraphicsGridLayout +class GraphicsGridLayoutObject : public QObject, public QGraphicsGridLayout { Q_OBJECT Q_INTERFACES(QGraphicsLayout QGraphicsLayoutItem) @@ -60,8 +60,8 @@ class QGraphicsGridLayoutObject : public QObject, public QGraphicsGridLayout Q_CLASSINFO("DefaultProperty", "children") public: - QGraphicsGridLayoutObject(QObject * = 0); - ~QGraphicsGridLayoutObject(); + GraphicsGridLayoutObject(QObject * = 0); + ~GraphicsGridLayoutObject(); QDeclarativeListProperty children() { return QDeclarativeListProperty(this, 0, children_append, children_count, children_at, children_clear); } @@ -84,19 +84,19 @@ private: void addLayoutItem(QGraphicsLayoutItem *); static void children_append(QDeclarativeListProperty *prop, QGraphicsLayoutItem *item) { - static_cast(prop->object)->addLayoutItem(item); + static_cast(prop->object)->addLayoutItem(item); } static void children_clear(QDeclarativeListProperty *prop) { - static_cast(prop->object)->clearChildren(); + static_cast(prop->object)->clearChildren(); } static int children_count(QDeclarativeListProperty *prop) { - return static_cast(prop->object)->count(); + return static_cast(prop->object)->count(); } static QGraphicsLayoutItem *children_at(QDeclarativeListProperty *prop, int index) { - return static_cast(prop->object)->itemAt(index); + return static_cast(prop->object)->itemAt(index); } static QHash attachedProperties; @@ -210,8 +210,8 @@ private: QML_DECLARE_INTERFACE(QGraphicsLayoutItem) QML_DECLARE_INTERFACE(QGraphicsLayout) -QML_DECLARE_TYPE(QGraphicsGridLayoutObject) -QML_DECLARE_TYPEINFO(QGraphicsGridLayoutObject, QML_HAS_ATTACHED_PROPERTIES) +QML_DECLARE_TYPE(GraphicsGridLayoutObject) +QML_DECLARE_TYPEINFO(GraphicsGridLayoutObject, QML_HAS_ATTACHED_PROPERTIES) #endif diff --git a/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/main.cpp b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/main.cpp index 7585b23..6525cb3 100644 --- a/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/main.cpp +++ b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/main.cpp @@ -51,7 +51,7 @@ int main(int argc, char* argv[]) qmlRegisterInterface("QGraphicsLayoutItem"); qmlRegisterInterface("QGraphicsLayout"); - qmlRegisterType("GridLayouts",4,7,"QGraphicsGridLayout"); + qmlRegisterType("GridLayouts", 4, 7, "GraphicsGridLayout"); QDeclarativeView view; view.setSource(QUrl(":qgraphicsgridlayout.qml")); diff --git a/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/qgraphicsgridlayout.qml b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/qgraphicsgridlayout.qml index 5cb011f..50026f1 100644 --- a/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/qgraphicsgridlayout.qml +++ b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/qgraphicsgridlayout.qml @@ -58,39 +58,39 @@ Item { GridLayoutAttached class (also defined in gridlayout.h). */ - layout: QGraphicsGridLayout { + layout: GraphicsGridLayout { LayoutItem { - QGraphicsGridLayout.row: 0 - QGraphicsGridLayout.column: 0 + GraphicsGridLayout.row: 0 + GraphicsGridLayout.column: 0 minimumSize: "100x100" maximumSize: "300x300" preferredSize: "200x200" Rectangle { color: "red"; anchors.fill: parent } } LayoutItem { - QGraphicsGridLayout.row: 0 - QGraphicsGridLayout.column: 1 + GraphicsGridLayout.row: 0 + GraphicsGridLayout.column: 1 minimumSize: "100x100" maximumSize: "200x200" preferredSize: "200x200" Rectangle { color: "orange"; anchors.fill: parent } } LayoutItem { - QGraphicsGridLayout.row: 1 - QGraphicsGridLayout.column: 0 - QGraphicsGridLayout.columnSpan: 2 + GraphicsGridLayout.row: 1 + GraphicsGridLayout.column: 0 + GraphicsGridLayout.columnSpan: 2 minimumSize: "100x100" Rectangle { color: "yellow"; anchors.fill: parent } } LayoutItem { - QGraphicsGridLayout.row: 2 - QGraphicsGridLayout.column: 0 + GraphicsGridLayout.row: 2 + GraphicsGridLayout.column: 0 preferredSize: "200x200" Rectangle { color: "green"; anchors.fill: parent } } LayoutItem { - QGraphicsGridLayout.row: 2 - QGraphicsGridLayout.column: 1 + GraphicsGridLayout.row: 2 + GraphicsGridLayout.column: 1 preferredSize: "200x200" Rectangle { color: "blue"; anchors.fill: parent } } diff --git a/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/linearlayout.cpp b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/linearlayout.cpp index 080b6ce..d0e9783 100644 --- a/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/linearlayout.cpp +++ b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/linearlayout.cpp @@ -72,12 +72,12 @@ void LinearLayoutAttached::setAlignment(Qt::Alignment a) } } -QGraphicsLinearLayoutStretchItemObject::QGraphicsLinearLayoutStretchItemObject(QObject *parent) +GraphicsLinearLayoutStretchItemObject::GraphicsLinearLayoutStretchItemObject(QObject *parent) : QObject(parent) { } -QSizeF QGraphicsLinearLayoutStretchItemObject::sizeHint(Qt::SizeHint which, const QSizeF &constraint) const +QSizeF GraphicsLinearLayoutStretchItemObject::sizeHint(Qt::SizeHint which, const QSizeF &constraint) const { Q_UNUSED(which); Q_UNUSED(constraint); @@ -85,16 +85,16 @@ QSizeF QGraphicsLinearLayoutStretchItemObject::sizeHint(Qt::SizeHint which, cons } -QGraphicsLinearLayoutObject::QGraphicsLinearLayoutObject(QObject *parent) +GraphicsLinearLayoutObject::GraphicsLinearLayoutObject(QObject *parent) : QObject(parent) { } -QGraphicsLinearLayoutObject::~QGraphicsLinearLayoutObject() +GraphicsLinearLayoutObject::~GraphicsLinearLayoutObject() { } -void QGraphicsLinearLayoutObject::insertLayoutItem(int index, QGraphicsLayoutItem *item) +void GraphicsLinearLayoutObject::insertLayoutItem(int index, QGraphicsLayoutItem *item) { insertItem(index, item); @@ -111,7 +111,7 @@ void QGraphicsLinearLayoutObject::insertLayoutItem(int index, QGraphicsLayoutIte } } -void QGraphicsLinearLayoutObject::removeAt(int index) +void GraphicsLinearLayoutObject::removeAt(int index) { QGraphicsLayoutItem *item = itemAt(index); if (item) { @@ -122,14 +122,14 @@ void QGraphicsLinearLayoutObject::removeAt(int index) QGraphicsLinearLayout::removeAt(index); } -void QGraphicsLinearLayoutObject::clearChildren() +void GraphicsLinearLayoutObject::clearChildren() { // do not delete the removed items; they will be deleted by the QML engine while (count() > 0) removeAt(count()-1); } -qreal QGraphicsLinearLayoutObject::contentsMargin() const +qreal GraphicsLinearLayoutObject::contentsMargin() const { qreal a, b, c, d; getContentsMargins(&a, &b, &c, &d); @@ -138,17 +138,17 @@ qreal QGraphicsLinearLayoutObject::contentsMargin() const return -1; } -void QGraphicsLinearLayoutObject::setContentsMargin(qreal m) +void GraphicsLinearLayoutObject::setContentsMargin(qreal m) { setContentsMargins(m, m, m, m); } -void QGraphicsLinearLayoutObject::updateStretch(QGraphicsLayoutItem *item, int stretch) +void GraphicsLinearLayoutObject::updateStretch(QGraphicsLayoutItem *item, int stretch) { QGraphicsLinearLayout::setStretchFactor(item, stretch); } -void QGraphicsLinearLayoutObject::updateSpacing(QGraphicsLayoutItem* item, int spacing) +void GraphicsLinearLayoutObject::updateSpacing(QGraphicsLayoutItem* item, int spacing) { for (int i=0; i < count(); i++){ if (itemAt(i) == item) { @@ -158,13 +158,13 @@ void QGraphicsLinearLayoutObject::updateSpacing(QGraphicsLayoutItem* item, int s } } -void QGraphicsLinearLayoutObject::updateAlignment(QGraphicsLayoutItem *item, Qt::Alignment alignment) +void GraphicsLinearLayoutObject::updateAlignment(QGraphicsLayoutItem *item, Qt::Alignment alignment) { QGraphicsLinearLayout::setAlignment(item, alignment); } -QHash QGraphicsLinearLayoutObject::attachedProperties; -LinearLayoutAttached *QGraphicsLinearLayoutObject::qmlAttachedProperties(QObject *obj) +QHash GraphicsLinearLayoutObject::attachedProperties; +LinearLayoutAttached *GraphicsLinearLayoutObject::qmlAttachedProperties(QObject *obj) { LinearLayoutAttached *rv = new LinearLayoutAttached(obj); if (qobject_cast(obj)) diff --git a/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/linearlayout.h b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/linearlayout.h index e6daf4d..d9391ca 100644 --- a/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/linearlayout.h +++ b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/linearlayout.h @@ -46,19 +46,19 @@ #include #include -class QGraphicsLinearLayoutStretchItemObject : public QObject, public QGraphicsLayoutItem +class GraphicsLinearLayoutStretchItemObject : public QObject, public QGraphicsLayoutItem { Q_OBJECT Q_INTERFACES(QGraphicsLayoutItem) public: - QGraphicsLinearLayoutStretchItemObject(QObject *parent = 0); + GraphicsLinearLayoutStretchItemObject(QObject *parent = 0); virtual QSizeF sizeHint(Qt::SizeHint, const QSizeF &) const; }; class LinearLayoutAttached; -class QGraphicsLinearLayoutObject : public QObject, public QGraphicsLinearLayout +class GraphicsLinearLayoutObject : public QObject, public QGraphicsLinearLayout { Q_OBJECT Q_INTERFACES(QGraphicsLayout QGraphicsLayoutItem) @@ -69,8 +69,8 @@ class QGraphicsLinearLayoutObject : public QObject, public QGraphicsLinearLayout Q_PROPERTY(qreal contentsMargin READ contentsMargin WRITE setContentsMargin) Q_CLASSINFO("DefaultProperty", "children") public: - QGraphicsLinearLayoutObject(QObject * = 0); - ~QGraphicsLinearLayoutObject(); + GraphicsLinearLayoutObject(QObject * = 0); + ~GraphicsLinearLayoutObject(); QDeclarativeListProperty children() { return QDeclarativeListProperty(this, 0, children_append, children_count, children_at, children_clear); } @@ -93,19 +93,19 @@ private: void insertLayoutItem(int, QGraphicsLayoutItem *); static void children_append(QDeclarativeListProperty *prop, QGraphicsLayoutItem *item) { - static_cast(prop->object)->insertLayoutItem(-1, item); + static_cast(prop->object)->insertLayoutItem(-1, item); } static void children_clear(QDeclarativeListProperty *prop) { - static_cast(prop->object)->clearChildren(); + static_cast(prop->object)->clearChildren(); } static int children_count(QDeclarativeListProperty *prop) { - return static_cast(prop->object)->count(); + return static_cast(prop->object)->count(); } static QGraphicsLayoutItem *children_at(QDeclarativeListProperty *prop, int index) { - return static_cast(prop->object)->itemAt(index); + return static_cast(prop->object)->itemAt(index); } static QHash attachedProperties; @@ -143,9 +143,9 @@ private: QML_DECLARE_INTERFACE(QGraphicsLayoutItem) QML_DECLARE_INTERFACE(QGraphicsLayout) -QML_DECLARE_TYPE(QGraphicsLinearLayoutStretchItemObject) -QML_DECLARE_TYPE(QGraphicsLinearLayoutObject) -QML_DECLARE_TYPEINFO(QGraphicsLinearLayoutObject, QML_HAS_ATTACHED_PROPERTIES) +QML_DECLARE_TYPE(GraphicsLinearLayoutStretchItemObject) +QML_DECLARE_TYPE(GraphicsLinearLayoutObject) +QML_DECLARE_TYPEINFO(GraphicsLinearLayoutObject, QML_HAS_ATTACHED_PROPERTIES) #endif diff --git a/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/main.cpp b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/main.cpp index c76e403..f8d08c2 100644 --- a/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/main.cpp +++ b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/main.cpp @@ -51,8 +51,8 @@ int main(int argc, char* argv[]) qmlRegisterInterface("QGraphicsLayoutItem"); qmlRegisterInterface("QGraphicsLayout"); - qmlRegisterType("LinearLayouts",4,7,"QGraphicsLinearLayoutStretchItem"); - qmlRegisterType("LinearLayouts",4,7,"QGraphicsLinearLayout"); + qmlRegisterType("LinearLayouts", 4, 7, "GraphicsLinearLayoutStretchItem"); + qmlRegisterType("LinearLayouts", 4, 7, "GraphicsLinearLayout"); QDeclarativeView view; view.setSource(QUrl(":qgraphicslinearlayout.qml")); diff --git a/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/qgraphicslinearlayout.qml b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/qgraphicslinearlayout.qml index 72cdeb6..9a0bd55 100644 --- a/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/qgraphicslinearlayout.qml +++ b/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/qgraphicslinearlayout.qml @@ -59,9 +59,9 @@ Item { in linearlayout.h). */ - layout: QGraphicsLinearLayout { + layout: GraphicsLinearLayout { LayoutItem { - QGraphicsLinearLayout.spacing: 50 + GraphicsLinearLayout.spacing: 50 minimumSize: "100x100" maximumSize: "200x200" preferredSize: "100x100" -- cgit v0.12 From 57d25d03f0a53be4cca6d20dcce0e5f2f9eecc45 Mon Sep 17 00:00:00 2001 From: Bea Lam Date: Mon, 31 May 2010 13:37:23 +1000 Subject: Fix example --- examples/declarative/cppextensions/qgraphicslayouts/layoutitem/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/declarative/cppextensions/qgraphicslayouts/layoutitem/main.cpp b/examples/declarative/cppextensions/qgraphicslayouts/layoutitem/main.cpp index ef927d1..20a83e7 100644 --- a/examples/declarative/cppextensions/qgraphicslayouts/layoutitem/main.cpp +++ b/examples/declarative/cppextensions/qgraphicslayouts/layoutitem/main.cpp @@ -64,7 +64,7 @@ int main(int argc, char* argv[]) //Add the QML snippet into the layout QDeclarativeEngine engine; - QDeclarativeComponent c(&engine, QUrl(":layoutItem.qml")); + QDeclarativeComponent c(&engine, QUrl(":layoutitem.qml")); QGraphicsLayoutItem* obj = qobject_cast(c.create()); layout->addItem(obj); -- cgit v0.12 From 51aed62ef08f1ffacce71d44612abe46b8344923 Mon Sep 17 00:00:00 2001 From: Yann Bodson Date: Mon, 31 May 2010 13:35:48 +1000 Subject: Add notifier for PathPercent.value --- src/declarative/graphicsitems/qdeclarativepath.cpp | 5 ++++- src/declarative/graphicsitems/qdeclarativepath_p.h | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/declarative/graphicsitems/qdeclarativepath.cpp b/src/declarative/graphicsitems/qdeclarativepath.cpp index 2d08c7c..141a938 100644 --- a/src/declarative/graphicsitems/qdeclarativepath.cpp +++ b/src/declarative/graphicsitems/qdeclarativepath.cpp @@ -867,6 +867,9 @@ qreal QDeclarativePathPercent::value() const void QDeclarativePathPercent::setValue(qreal value) { - _value = value; + if (_value != value) { + _value = value; + emit changed(); + } } QT_END_NAMESPACE diff --git a/src/declarative/graphicsitems/qdeclarativepath_p.h b/src/declarative/graphicsitems/qdeclarativepath_p.h index 17a2ea3..dad43e6 100644 --- a/src/declarative/graphicsitems/qdeclarativepath_p.h +++ b/src/declarative/graphicsitems/qdeclarativepath_p.h @@ -175,7 +175,7 @@ private: class Q_DECLARATIVE_EXPORT QDeclarativePathPercent : public QDeclarativePathElement { Q_OBJECT - Q_PROPERTY(qreal value READ value WRITE setValue) + Q_PROPERTY(qreal value READ value WRITE setValue NOTIFY changed) public: QDeclarativePathPercent(QObject *parent=0) : QDeclarativePathElement(parent) {} -- cgit v0.12 From 745e276f6802f0f7fb2d548d04bf120c5516d7c6 Mon Sep 17 00:00:00 2001 From: Aaron McCarthy Date: Wed, 26 May 2010 14:24:26 +1000 Subject: Fix locking after merge from Qt Mobility. Simplify locking by using inline getter functions. Task-number: QTBUG-10296 --- .../bearer/symbian/qnetworksession_impl.cpp | 102 ++++++--------------- src/plugins/bearer/symbian/symbianengine.cpp | 70 ++++++++------ src/plugins/bearer/symbian/symbianengine.h | 18 +++- 3 files changed, 88 insertions(+), 102 deletions(-) diff --git a/src/plugins/bearer/symbian/qnetworksession_impl.cpp b/src/plugins/bearer/symbian/qnetworksession_impl.cpp index 3cd18fb..e08d135 100644 --- a/src/plugins/bearer/symbian/qnetworksession_impl.cpp +++ b/src/plugins/bearer/symbian/qnetworksession_impl.cpp @@ -122,19 +122,10 @@ void QNetworkSessionPrivateImpl::configurationRemoved(QNetworkConfigurationPriva if (!publicConfig.isValid()) return; - SymbianNetworkConfigurationPrivate *symbianConfig = toSymbianConfig(config); - - symbianConfig->mutex.lock(); - TUint32 configNumericId = symbianConfig->numericId; - symbianConfig->mutex.unlock(); - - symbianConfig = toSymbianConfig(privateConfiguration(publicConfig)); - - symbianConfig->mutex.lock(); - TUint32 publicNumericId = symbianConfig->numericId; - symbianConfig->mutex.unlock(); + TUint32 publicNumericId = + toSymbianConfig(privateConfiguration(publicConfig))->numericIdentifier(); - if (configNumericId == publicNumericId) { + if (toSymbianConfig(config)->numericIdentifier() == publicNumericId) { #ifdef QT_BEARERMGMT_SYMBIAN_DEBUG qDebug() << "QNS this : " << QString::number((uint)this) << " - " << "configurationRemoved IAP: " << QString::number(publicNumericId) << " : going to State: Invalid"; @@ -380,13 +371,11 @@ void QNetworkSessionPrivateImpl::open() SymbianNetworkConfigurationPrivate *symbianConfig = toSymbianConfig(privateConfiguration(publicConfig)); - QMutexLocker configLocker(&symbianConfig->mutex); - - if (connInfo().iIapId == symbianConfig->numericId) { + if (connInfo().iIapId == symbianConfig->numericIdentifier()) { if (iConnection.Attach(connInfo, RConnection::EAttachTypeNormal) == KErrNone) { activeConfig = publicConfig; #ifndef QT_NO_NETWORKINTERFACE - activeInterface = interface(symbianConfig->numericId); + activeInterface = interface(symbianConfig->numericIdentifier()); #endif connected = ETrue; startTime = QDateTime::currentDateTime(); @@ -416,9 +405,7 @@ void QNetworkSessionPrivateImpl::open() TConnPrefList pref; TExtendedConnPref prefs; - symbianConfig->mutex.lock(); - prefs.SetIapId(symbianConfig->numericId); - symbianConfig->mutex.unlock(); + prefs.SetIapId(symbianConfig->numericIdentifier()); if (iConnectInBackground) { prefs.SetNoteBehaviour( TExtendedConnPref::ENoteBehaviourConnSilent ); } @@ -427,9 +414,7 @@ void QNetworkSessionPrivateImpl::open() TCommDbConnPref pref; pref.SetDialogPreference(ECommDbDialogPrefDoNotPrompt); - symbianConfig->mutex.lock(); - pref.SetIapId(symbianConfig->numericId); - symbianConfig->mutex.unlock(); + pref.SetIapId(symbianConfig->numericIdentifier()); #endif iConnection.Start(pref, iStatus); if (!IsActive()) { @@ -444,17 +429,13 @@ void QNetworkSessionPrivateImpl::open() #ifdef OCC_FUNCTIONALITY_AVAILABLE TConnPrefList snapPref; TExtendedConnPref prefs; - symbianConfig->mutex.lock(); - prefs.SetSnapId(symbianConfig->numericId); - symbianConfig->mutex.unlock(); + prefs.SetSnapId(symbianConfig->numericIdentifier()); if (iConnectInBackground) { prefs.SetNoteBehaviour( TExtendedConnPref::ENoteBehaviourConnSilent ); } snapPref.AppendL(&prefs); #else - symbianConfig->mutex.lock(); - TConnSnapPref snapPref(symbianConfig->numericId); - symbianConfig->mutex.unlock(); + TConnSnapPref snapPref(symbianConfig->numericIdentifier()); #endif iConnection.Start(snapPref, iStatus); if (!IsActive()) { @@ -592,10 +573,8 @@ void QNetworkSessionPrivateImpl::stop() SymbianNetworkConfigurationPrivate *symbianConfig = toSymbianConfig(privateConfiguration(publicConfig)); - QMutexLocker configLocker(&symbianConfig->mutex); - // See if connection Id matches with our Id. If so, stop() it. - if (symbianConfig->connectionId == connectionId) { + if (symbianConfig->connectionIdentifier() == connectionId) { ret = iConnectionMonitor.SetBoolAttribute(connectionId, 0, // subConnectionId don't care KConnectionStop, @@ -715,12 +694,8 @@ void QNetworkSessionPrivateImpl::PreferredCarrierAvailable(TAccessPointInfo aOld SymbianNetworkConfigurationPrivate *symbianConfig = toSymbianConfig(privateConfiguration(configs[i])); - QMutexLocker configLocker(&symbianConfig->mutex); - - if (symbianConfig->numericId == aNewAPInfo.AccessPoint()) { - configLocker.unlock(); + if (symbianConfig->numericIdentifier() == aNewAPInfo.AccessPoint()) emit preferredConfigurationChanged(configs[i], aIsSeamless); - } } } else { migrate(); @@ -854,9 +829,7 @@ quint64 QNetworkSessionPrivateImpl::transferredData(TUint dataType) const SymbianNetworkConfigurationPrivate *symbianConfig = toSymbianConfig(privateConfiguration(configs[i])); - QMutexLocker configLocker(&symbianConfig->mutex); - - if (symbianConfig->numericId == apId) { + if (symbianConfig->numericIdentifier() == apId) { configFound = true; break; } @@ -865,10 +838,8 @@ quint64 QNetworkSessionPrivateImpl::transferredData(TUint dataType) const SymbianNetworkConfigurationPrivate *symbianConfig = toSymbianConfig(privateConfiguration(config)); - symbianConfig->mutex.lock(); - if (symbianConfig->numericId == apId) + if (symbianConfig->numericIdentifier() == apId) configFound = true; - symbianConfig->mutex.unlock(); } if (configFound) { TUint tData; @@ -908,8 +879,7 @@ QNetworkConfiguration QNetworkSessionPrivateImpl::activeConfiguration(TUint32 ia SymbianNetworkConfigurationPrivate *childConfig = toSymbianConfig(privateConfiguration(children[i])); - QMutexLocker childLocker(&childConfig->mutex); - if (childConfig->numericId == iapId) + if (childConfig->numericIdentifier() == iapId) return children[i]; } @@ -928,15 +898,11 @@ QNetworkConfiguration QNetworkSessionPrivateImpl::activeConfiguration(TUint32 ia SymbianNetworkConfigurationPrivate *symbianConfig = toSymbianConfig(privateConfiguration(pt)); if (symbianConfig) { - QMutexLocker configLocker(&symbianConfig->mutex); - for (int i=0; i < children.count(); i++) { SymbianNetworkConfigurationPrivate *childConfig = toSymbianConfig(privateConfiguration(children[i])); - QMutexLocker childLocker(&childConfig->mutex); - - if (childConfig->mappingName == symbianConfig->mappingName) { + if (childConfig->configMappingName() == symbianConfig->configMappingName()) { return children[i]; } } @@ -1034,15 +1000,13 @@ void QNetworkSessionPrivateImpl::RunL() SymbianNetworkConfigurationPrivate *symbianConfig = toSymbianConfig(privateConfiguration(activeConfig)); - symbianConfig->mutex.lock(); #ifndef QT_NO_NETWORKINTERFACE - activeInterface = interface(symbianConfig->numericId); + activeInterface = interface(symbianConfig->numericIdentifier()); #endif if (publicConfig.type() == QNetworkConfiguration::UserChoice) { serviceConfig = QNetworkConfigurationManager() - .configurationFromIdentifier(symbianConfig->id); + .configurationFromIdentifier(activeConfig.identifier()); } - symbianConfig->mutex.unlock(); startTime = QDateTime::currentDateTime(); @@ -1105,13 +1069,11 @@ bool QNetworkSessionPrivateImpl::newState(QNetworkSession::State newState, TUint newState == QNetworkSession::Connected) { activeConfig = activeConfiguration(accessPointId); +#ifndef QT_NO_NETWORKINTERFACE SymbianNetworkConfigurationPrivate *symbianConfig = toSymbianConfig(privateConfiguration(activeConfig)); -#ifndef QT_NO_NETWORKINTERFACE - symbianConfig->mutex.lock(); - activeInterface = interface(symbianConfig->numericId); - symbianConfig->mutex.unlock(); + activeInterface = interface(symbianConfig->numericIdentifier()); #endif #ifdef SNAP_FUNCTIONALITY_AVAILABLE @@ -1187,10 +1149,7 @@ bool QNetworkSessionPrivateImpl::newState(QNetworkSession::State newState, TUint SymbianNetworkConfigurationPrivate *symbianConfig = toSymbianConfig(privateConfiguration(publicConfig)); - QMutexLocker configLocker(&symbianConfig->mutex); - if (symbianConfig->numericId == accessPointId) { - configLocker.unlock(); - + if (symbianConfig->numericIdentifier() == accessPointId) { state = newState; #ifdef QT_BEARERMGMT_SYMBIAN_DEBUG qDebug() << "QNS this : " << QString::number((uint)this) << " - " << "===> EMIT State changed B to: " << state; @@ -1202,10 +1161,7 @@ bool QNetworkSessionPrivateImpl::newState(QNetworkSession::State newState, TUint SymbianNetworkConfigurationPrivate *symbianConfig = toSymbianConfig(privateConfiguration(activeConfig)); - QMutexLocker configLocker(&symbianConfig->mutex); - if (symbianConfig->numericId == accessPointId) { - configLocker.unlock(); - + if (symbianConfig->numericIdentifier() == accessPointId) { state = newState; #ifdef QT_BEARERMGMT_SYMBIAN_DEBUG qDebug() << "QNS this : " << QString::number((uint)this) << " - " << "===> EMIT State changed C to: " << state; @@ -1219,9 +1175,7 @@ bool QNetworkSessionPrivateImpl::newState(QNetworkSession::State newState, TUint SymbianNetworkConfigurationPrivate *symbianConfig = toSymbianConfig(privateConfiguration(subConfigurations[i])); - QMutexLocker configLocker(&symbianConfig->mutex); - - if (symbianConfig->numericId == accessPointId) { + if (symbianConfig->numericIdentifier() == accessPointId) { if (newState != QNetworkSession::Disconnected) { state = newState; #ifdef QT_BEARERMGMT_SYMBIAN_DEBUG @@ -1234,8 +1188,6 @@ bool QNetworkSessionPrivateImpl::newState(QNetworkSession::State newState, TUint if ((config.state() == QNetworkConfiguration::Defined) || (config.state() == QNetworkConfiguration::Discovered)) { - configLocker.unlock(); - state = newState; #ifdef QT_BEARERMGMT_SYMBIAN_DEBUG qDebug() << "QNS this : " << QString::number((uint)this) << " - " << "===> EMIT State changed E to: " << state; @@ -1271,9 +1223,7 @@ bool QNetworkSessionPrivateImpl::newState(QNetworkSession::State newState, TUint SymbianNetworkConfigurationPrivate *symbianConfig = toSymbianConfig(privateConfiguration(publicConfig)); - symbianConfig->mutex.lock(); - iDeprecatedConnectionId = symbianConfig->connectionId; - symbianConfig->mutex.unlock(); + iDeprecatedConnectionId = symbianConfig->connectionIdentifier(); } return retVal; @@ -1369,7 +1319,11 @@ void QNetworkSessionPrivateImpl::handleSymbianConnectionStatusChange(TInt aConne qDebug() << "QNS this : " << QString::number((uint)this) << " - " << "reporting disconnection to manager."; #endif if (publicConfig.isValid()) { - engine->configurationStateChangeReport(toSymbianConfig(privateConfiguration(publicConfig))->numericId, QNetworkSession::Disconnected); + SymbianNetworkConfigurationPrivate *symbianConfig = + toSymbianConfig(privateConfiguration(publicConfig)); + + engine->configurationStateChangeReport(symbianConfig->numericIdentifier(), + QNetworkSession::Disconnected); } break; // Unhandled state diff --git a/src/plugins/bearer/symbian/symbianengine.cpp b/src/plugins/bearer/symbian/symbianengine.cpp index cea8b67..ed6aee6 100644 --- a/src/plugins/bearer/symbian/symbianengine.cpp +++ b/src/plugins/bearer/symbian/symbianengine.cpp @@ -338,34 +338,35 @@ void SymbianEngine::updateConfigurationsL() TRAP(error, cpPriv = configFromConnectionMethodL(connectionMethod)); if (error == KErrNone) { QNetworkConfigurationPrivatePointer ptr(cpPriv); - toSymbianConfig(ptr)->serviceNetworkPtr = privSNAP; accessPointConfigurations.insert(ptr->id, ptr); locker.unlock(); emit configurationAdded(ptr); locker.relock(); + QMutexLocker configLocker(&privSNAP->mutex); privSNAP->serviceNetworkMembers.append(ptr); } } else { knownConfigs.removeOne(iface); // Check that IAP can be found from related SNAP's configuration list bool iapFound = false; + QMutexLocker snapConfigLocker(&privSNAP->mutex); for (int i = 0; i < privSNAP->serviceNetworkMembers.count(); i++) { - if (toSymbianConfig(privSNAP->serviceNetworkMembers[i])->numericId == iapId) { + if (toSymbianConfig(privSNAP->serviceNetworkMembers[i])->numericIdentifier() == + iapId) { iapFound = true; break; } } - if (!iapFound) { - toSymbianConfig(priv)->serviceNetworkPtr = privSNAP; + if (!iapFound) privSNAP->serviceNetworkMembers.append(priv); - } } CleanupStack::PopAndDestroy(&connectionMethod); } + QMutexLocker snapConfigLocker(&privSNAP->mutex); if (privSNAP->serviceNetworkMembers.count() > 1) { // Roaming is supported only if SNAP contains more than one IAP privSNAP->roamingSupported = true; @@ -418,9 +419,10 @@ void SymbianEngine::updateConfigurationsL() foreach (const QString &iface, snapConfigurations.keys()) { QNetworkConfigurationPrivatePointer ptr2 = snapConfigurations.value(iface); // => Check if one of the IAPs of the SNAP is active + QMutexLocker snapConfigLocker(&ptr2->mutex); for (int i = 0; i < ptr2->serviceNetworkMembers.count(); ++i) { - if (toSymbianConfig(ptr2->serviceNetworkMembers[i])->numericId == - toSymbianConfig(ptr)->numericId) { + if (toSymbianConfig(ptr2->serviceNetworkMembers[i])->numericIdentifier() == + toSymbianConfig(ptr)->numericIdentifier()) { ptr2->serviceNetworkMembers.removeAt(i); break; } @@ -639,12 +641,14 @@ QNetworkConfigurationPrivatePointer SymbianEngine::defaultConfigurationL() } #endif - if (!ptr || !ptr->isValid) { - QString iface = QString::number(qHash(KUserChoiceIAPId)); - ptr = userChoiceConfigurations.value(iface); + if (ptr) { + QMutexLocker configLocker(&ptr->mutex); + if (ptr->isValid) + return ptr; } - - return ptr; + + QString iface = QString::number(qHash(KUserChoiceIAPId)); + return userChoiceConfigurations.value(iface); } void SymbianEngine::updateActiveAccessPoints() @@ -681,8 +685,9 @@ void SymbianEngine::updateActiveAccessPoints() online = true; inactiveConfigs.removeOne(ident); - QMutexLocker configLocker(&ptr->mutex); + ptr->mutex.lock(); toSymbianConfig(ptr)->connectionId = connectionId; + ptr->mutex.unlock(); // Configuration is Active changeConfigurationStateTo(ptr, QNetworkConfiguration::Active); @@ -736,6 +741,8 @@ void SymbianEngine::accessPointScanningReady(TBool scanSuccessful, TConnMonIapIn QNetworkConfigurationPrivatePointer ptr = accessPointConfigurations.value(ident); if (ptr) { unavailableConfigs.removeOne(ident); + + QMutexLocker configLocker(&ptr->mutex); if (ptr->state < QNetworkConfiguration::Active) { // Configuration is either Discovered or Active changeConfigurationStateAtMinTo(ptr, QNetworkConfiguration::Discovered); @@ -772,10 +779,15 @@ void SymbianEngine::updateStatesToSnaps() bool discovered = false; bool active = false; QNetworkConfigurationPrivatePointer ptr = snapConfigurations.value(iface); + + QMutexLocker snapConfigLocker(&ptr->mutex); + // => Check if one of the IAPs of the SNAP is discovered or active // => If one of IAPs is active, also SNAP is active // => If one of IAPs is discovered but none of the IAPs is active, SNAP is discovered for (int i=0; iserviceNetworkMembers.count(); i++) { + QMutexLocker configLocker(&ptr->serviceNetworkMembers[i]->mutex); + if ((ptr->serviceNetworkMembers[i]->state & QNetworkConfiguration::Active) == QNetworkConfiguration::Active) { active = true; @@ -991,9 +1003,11 @@ void SymbianEngine::EventL(const CConnMonEventBase& aEvent) QString ident = QString::number(qHash(apId)); QNetworkConfigurationPrivatePointer ptr = accessPointConfigurations.value(ident); if (ptr) { - QMutexLocker configLocker(&ptr->mutex); + ptr->mutex.lock(); toSymbianConfig(ptr)->connectionId = connectionId; - emit this->configurationStateChanged(toSymbianConfig(ptr)->numericId, connectionId, QNetworkSession::Connecting); + ptr->mutex.unlock(); + emit configurationStateChanged(toSymbianConfig(ptr)->numericIdentifier(), + connectionId, QNetworkSession::Connecting); } } else if (connectionStatus == KLinkLayerOpen) { // Connection has been successfully opened @@ -1006,13 +1020,17 @@ void SymbianEngine::EventL(const CConnMonEventBase& aEvent) QString ident = QString::number(qHash(apId)); QNetworkConfigurationPrivatePointer ptr = accessPointConfigurations.value(ident); if (ptr) { - QMutexLocker configLocker(&ptr->mutex); + ptr->mutex.lock(); toSymbianConfig(ptr)->connectionId = connectionId; + ptr->mutex.unlock(); + // Configuration is Active if (changeConfigurationStateTo(ptr, QNetworkConfiguration::Active)) { updateStatesToSnaps(); } - emit this->configurationStateChanged(toSymbianConfig(ptr)->numericId, connectionId, QNetworkSession::Connected); + emit configurationStateChanged(toSymbianConfig(ptr)->numericIdentifier(), + connectionId, QNetworkSession::Connected); + if (!iOnline) { iOnline = true; emit this->onlineStateChanged(iOnline); @@ -1022,8 +1040,8 @@ void SymbianEngine::EventL(const CConnMonEventBase& aEvent) TUint connectionId = realEvent->ConnectionId(); QNetworkConfigurationPrivatePointer ptr = dataByConnectionId(connectionId); if (ptr) { - QMutexLocker configLocker(&ptr->mutex); - emit this->configurationStateChanged(toSymbianConfig(ptr)->numericId, connectionId, QNetworkSession::Closing); + emit configurationStateChanged(toSymbianConfig(ptr)->numericIdentifier(), + connectionId, QNetworkSession::Closing); } } else if (connectionStatus == KLinkLayerClosed || connectionStatus == KConnectionClosed) { @@ -1037,8 +1055,8 @@ void SymbianEngine::EventL(const CConnMonEventBase& aEvent) updateStatesToSnaps(); } - QMutexLocker configLocker(&ptr->mutex); - emit this->configurationStateChanged(toSymbianConfig(ptr)->numericId, connectionId, QNetworkSession::Disconnected); + emit configurationStateChanged(toSymbianConfig(ptr)->numericIdentifier(), + connectionId, QNetworkSession::Disconnected); } bool online = false; @@ -1135,10 +1153,9 @@ void SymbianEngine::configurationStateChangeReport(TUint32 accessPointId, QNetwo updateStatesToSnaps(); } - QMutexLocker configLocker(&ptr->mutex); - emit this->configurationStateChanged(toSymbianConfig(ptr)->numericId, - toSymbianConfig(ptr)->connectionId, - QNetworkSession::Disconnected); + emit configurationStateChanged(toSymbianConfig(ptr)->numericIdentifier(), + toSymbianConfig(ptr)->connectionIdentifier(), + QNetworkSession::Disconnected); } } break; @@ -1170,8 +1187,7 @@ QNetworkConfigurationPrivatePointer SymbianEngine::dataByConnectionId(TUint aCon accessPointConfigurations.constBegin(); while (i != accessPointConfigurations.constEnd()) { QNetworkConfigurationPrivatePointer ptr = i.value(); - QMutexLocker configLocker(&ptr->mutex); - if (toSymbianConfig(ptr)->connectionId == aConnectionId) + if (toSymbianConfig(ptr)->connectionIdentifier() == aConnectionId) return ptr; ++i; diff --git a/src/plugins/bearer/symbian/symbianengine.h b/src/plugins/bearer/symbian/symbianengine.h index 7d565db..841d79d 100644 --- a/src/plugins/bearer/symbian/symbianengine.h +++ b/src/plugins/bearer/symbian/symbianengine.h @@ -87,7 +87,23 @@ public: QString bearerName() const; - QNetworkConfigurationPrivatePointer serviceNetworkPtr; + inline TUint32 numericIdentifier() const + { + QMutexLocker locker(&mutex); + return numericId; + } + + inline TUint connectionIdentifier() const + { + QMutexLocker locker(&mutex); + return connectionId; + } + + inline QString configMappingName() const + { + QMutexLocker locker(&mutex); + return mappingName; + } QString mappingName; -- cgit v0.12 From 2666e68f49c4a8185de796438fd3f672fcec0365 Mon Sep 17 00:00:00 2001 From: Aaron McCarthy Date: Fri, 28 May 2010 09:30:54 +1000 Subject: Fix up cancelling of active object. Task-number: QTBUG-10296 --- src/plugins/bearer/symbian/symbianengine.cpp | 78 ++++++++++++---------------- 1 file changed, 34 insertions(+), 44 deletions(-) diff --git a/src/plugins/bearer/symbian/symbianengine.cpp b/src/plugins/bearer/symbian/symbianengine.cpp index ed6aee6..bc93d0e 100644 --- a/src/plugins/bearer/symbian/symbianengine.cpp +++ b/src/plugins/bearer/symbian/symbianengine.cpp @@ -899,15 +899,7 @@ void SymbianEngine::stopCommsDatabaseNotifications() if (iWaitingCommsDatabaseNotifications) { iWaitingCommsDatabaseNotifications = EFalse; - if (!IsActive()) { - SetActive(); - // Make sure that notifier recorded events will not be returned - // as soon as the client issues the next RequestNotification() request. - ipCommsDB->RequestNotification(iStatus); - ipCommsDB->CancelRequestNotification(); - } else { - ipCommsDB->CancelRequestNotification(); - } + Cancel(); } } @@ -922,46 +914,44 @@ void SymbianEngine::RunL() return; } - if (iStatus != KErrCancel) { - RDbNotifier::TEvent event = STATIC_CAST(RDbNotifier::TEvent, iStatus.Int()); + RDbNotifier::TEvent event = STATIC_CAST(RDbNotifier::TEvent, iStatus.Int()); - switch (event) { - case RDbNotifier::EUnlock: /** All read locks have been removed. */ - case RDbNotifier::ECommit: /** A transaction has been committed. */ - case RDbNotifier::ERollback: /** A transaction has been rolled back */ - case RDbNotifier::ERecover: /** The database has been recovered */ + switch (event) { + case RDbNotifier::EUnlock: /** All read locks have been removed. */ + case RDbNotifier::ECommit: /** A transaction has been committed. */ + case RDbNotifier::ERollback: /** A transaction has been rolled back */ + case RDbNotifier::ERecover: /** The database has been recovered */ #ifdef QT_BEARERMGMT_SYMBIAN_DEBUG - qDebug("QNCM CommsDB event (of type RDbNotifier::TEvent) received: %d", iStatus.Int()); + qDebug("QNCM CommsDB event (of type RDbNotifier::TEvent) received: %d", iStatus.Int()); #endif - iIgnoringUpdates = true; - // Other events than ECommit get lower priority. In practice with those events, - // we delay_before_updating methods, whereas - // with ECommit we _update_before_delaying the reaction to next event. - // Few important notes: 1) listening to only ECommit does not seem to be adequate, - // but updates will be missed. Hence other events are reacted upon too. - // 2) RDbNotifier records the most significant event, and that will be returned once - // we issue new RequestNotification, and hence updates will not be missed even - // when we are 'not reacting to them' for few seconds. - if (event == RDbNotifier::ECommit) { - TRAPD(error, updateConfigurationsL()); - if (error == KErrNone) { - updateStatesToSnaps(); - } - waitRandomTime(); - } else { - waitRandomTime(); - TRAPD(error, updateConfigurationsL()); - if (error == KErrNone) { - updateStatesToSnaps(); - } + iIgnoringUpdates = true; + // Other events than ECommit get lower priority. In practice with those events, + // we delay_before_updating methods, whereas + // with ECommit we _update_before_delaying the reaction to next event. + // Few important notes: 1) listening to only ECommit does not seem to be adequate, + // but updates will be missed. Hence other events are reacted upon too. + // 2) RDbNotifier records the most significant event, and that will be returned once + // we issue new RequestNotification, and hence updates will not be missed even + // when we are 'not reacting to them' for few seconds. + if (event == RDbNotifier::ECommit) { + TRAPD(error, updateConfigurationsL()); + if (error == KErrNone) { + updateStatesToSnaps(); + } + waitRandomTime(); + } else { + waitRandomTime(); + TRAPD(error, updateConfigurationsL()); + if (error == KErrNone) { + updateStatesToSnaps(); } - iIgnoringUpdates = false; // Wait time done, allow updating again - iWaitingCommsDatabaseNotifications = true; - break; - default: - // Do nothing - break; } + iIgnoringUpdates = false; // Wait time done, allow updating again + iWaitingCommsDatabaseNotifications = true; + break; + default: + // Do nothing + break; } if (iWaitingCommsDatabaseNotifications) { -- cgit v0.12 From feb9949a11abbf244e0bfcdc128981596758de40 Mon Sep 17 00:00:00 2001 From: Aaron McCarthy Date: Fri, 28 May 2010 10:07:00 +1000 Subject: Fix multithreaded use of bearer management on Symbian. Move more initialization code into initialize() function. The constructor for the SymbianEngine class can be called from any thread. Move all initialization into initialize() function which is guarinteed to be run in the main thread. This is required as some Symbian resources are not shared between thread in the same process. The implementation of the defaultConfiguration() function could only be called from the main thread. Cache a copy of the default network configuration when the configurations are updated and just return this when the defaultConfiguration() function is called. Only lock the engine mutex from external entry points. Remove need for locking in waitRandomTime() function. Prevents dead lock due to nested event loop. Task-number: QTBUG-10296 --- src/plugins/bearer/symbian/symbianengine.cpp | 126 +++++++++++---------------- src/plugins/bearer/symbian/symbianengine.h | 6 +- 2 files changed, 52 insertions(+), 80 deletions(-) diff --git a/src/plugins/bearer/symbian/symbianengine.cpp b/src/plugins/bearer/symbian/symbianengine.cpp index bc93d0e..8c26cf0 100644 --- a/src/plugins/bearer/symbian/symbianengine.cpp +++ b/src/plugins/bearer/symbian/symbianengine.cpp @@ -115,13 +115,18 @@ QString SymbianNetworkConfigurationPrivate::bearerName() const SymbianEngine::SymbianEngine(QObject *parent) : QBearerEngine(parent), CActive(CActive::EPriorityIdle), iFirstUpdate(true), iInitOk(true), - iIgnoringUpdates(false), iTimeToWait(0), iIgnoreEventLoop(0) + iIgnoringUpdates(false) { +} + +void SymbianEngine::initialize() +{ + QMutexLocker locker(&mutex); + CActiveScheduler::Add(this); // Seed the randomgenerator qsrand(QTime(0,0,0).secsTo(QTime::currentTime()) + QCoreApplication::applicationPid()); - iIgnoreEventLoop = new QEventLoop(this); TRAPD(error, ipCommsDB = CCommsDatabase::NewL(EDatabaseTypeIAP)); if (error != KErrNone) { @@ -132,18 +137,13 @@ SymbianEngine::SymbianEngine(QObject *parent) TRAP_IGNORE(iConnectionMonitor.ConnectL()); TRAP_IGNORE(iConnectionMonitor.NotifyEventL(*this)); -#ifdef SNAP_FUNCTIONALITY_AVAILABLE +#ifdef SNAP_FUNCTIONALITY_AVAILABLE TRAP(error, iCmManager.OpenL()); if (error != KErrNone) { iInitOk = false; return; } #endif -} - -void SymbianEngine::initialize() -{ - QMutexLocker locker(&mutex); SymbianNetworkConfigurationPrivate *cpPriv = new SymbianNetworkConfigurationPrivate; cpPriv->name = "UserChoice"; @@ -238,19 +238,14 @@ void SymbianEngine::requestUpdate() void SymbianEngine::updateConfigurations() { - QMutexLocker locker(&mutex); - - if (!iInitOk) { + if (!iInitOk) return; - } TRAP_IGNORE(updateConfigurationsL()); } void SymbianEngine::updateConfigurationsL() { - QMutexLocker locker(&mutex); - QList knownConfigs = accessPointConfigurations.keys(); QList knownSnapConfigs = snapConfigurations.keys(); @@ -276,9 +271,9 @@ void SymbianEngine::updateConfigurationsL() QNetworkConfigurationPrivatePointer ptr(cpPriv); accessPointConfigurations.insert(ptr->id, ptr); - locker.unlock(); + mutex.unlock(); emit configurationAdded(ptr); - locker.relock(); + mutex.lock(); } } CleanupStack::PopAndDestroy(&connectionMethod); @@ -317,9 +312,9 @@ void SymbianEngine::updateConfigurationsL() QNetworkConfigurationPrivatePointer ptr(cpPriv); snapConfigurations.insert(ident, ptr); - locker.unlock(); + mutex.unlock(); emit configurationAdded(ptr); - locker.relock(); + mutex.lock(); CleanupStack::Pop(cpPriv); } @@ -340,9 +335,9 @@ void SymbianEngine::updateConfigurationsL() QNetworkConfigurationPrivatePointer ptr(cpPriv); accessPointConfigurations.insert(ptr->id, ptr); - locker.unlock(); + mutex.unlock(); emit configurationAdded(ptr); - locker.relock(); + mutex.lock(); QMutexLocker configLocker(&privSNAP->mutex); privSNAP->serviceNetworkMembers.append(ptr); @@ -411,9 +406,9 @@ void SymbianEngine::updateConfigurationsL() //remove non existing IAP QNetworkConfigurationPrivatePointer ptr = accessPointConfigurations.take(oldIface); - locker.unlock(); + mutex.unlock(); emit configurationRemoved(ptr); - locker.relock(); + mutex.lock(); // Remove non existing IAP from SNAPs foreach (const QString &iface, snapConfigurations.keys()) { @@ -434,18 +429,21 @@ void SymbianEngine::updateConfigurationsL() //remove non existing SNAPs QNetworkConfigurationPrivatePointer ptr = snapConfigurations.take(oldIface); - locker.unlock(); + mutex.unlock(); emit configurationRemoved(ptr); - locker.relock(); + mutex.lock(); } + + // find default configuration. + stopCommsDatabaseNotifications(); + TRAP_IGNORE(defaultConfig = defaultConfigurationL()); + startCommsDatabaseNotifications(); } #ifdef SNAP_FUNCTIONALITY_AVAILABLE SymbianNetworkConfigurationPrivate *SymbianEngine::configFromConnectionMethodL( RCmConnectionMethod& connectionMethod) { - QMutexLocker locker(&mutex); - SymbianNetworkConfigurationPrivate *cpPriv = new SymbianNetworkConfigurationPrivate; CleanupStack::PushL(cpPriv); @@ -528,8 +526,6 @@ SymbianNetworkConfigurationPrivate *SymbianEngine::configFromConnectionMethodL( bool SymbianEngine::readNetworkConfigurationValuesFromCommsDb( TUint32 aApId, SymbianNetworkConfigurationPrivate *apNetworkConfiguration) { - QMutexLocker locker(&mutex); - TRAPD(error, readNetworkConfigurationValuesFromCommsDbL(aApId,apNetworkConfiguration)); if (error != KErrNone) { return false; @@ -540,8 +536,6 @@ bool SymbianEngine::readNetworkConfigurationValuesFromCommsDb( void SymbianEngine::readNetworkConfigurationValuesFromCommsDbL( TUint32 aApId, SymbianNetworkConfigurationPrivate *apNetworkConfiguration) { - QMutexLocker locker(&mutex); - CApDataHandler* pDataHandler = CApDataHandler::NewLC(*ipCommsDB); CApAccessPointItem* pAPItem = CApAccessPointItem::NewLC(); TBuf name; @@ -604,15 +598,7 @@ QNetworkConfigurationPrivatePointer SymbianEngine::defaultConfiguration() { QMutexLocker locker(&mutex); - QNetworkConfigurationPrivatePointer ptr; - - if (iInitOk) { - stopCommsDatabaseNotifications(); - TRAP_IGNORE(ptr = defaultConfigurationL()); - startCommsDatabaseNotifications(); - } - - return ptr; + return defaultConfig; } QStringList SymbianEngine::accessPointConfigurationIdentifiers() @@ -624,8 +610,6 @@ QStringList SymbianEngine::accessPointConfigurationIdentifiers() QNetworkConfigurationPrivatePointer SymbianEngine::defaultConfigurationL() { - QMutexLocker locker(&mutex); - QNetworkConfigurationPrivatePointer ptr; #ifdef SNAP_FUNCTIONALITY_AVAILABLE @@ -653,8 +637,6 @@ QNetworkConfigurationPrivatePointer SymbianEngine::defaultConfigurationL() void SymbianEngine::updateActiveAccessPoints() { - QMutexLocker locker(&mutex); - bool online = false; QList inactiveConfigs = accessPointConfigurations.keys(); @@ -707,16 +689,14 @@ void SymbianEngine::updateActiveAccessPoints() if (iOnline != online) { iOnline = online; - locker.unlock(); + mutex.unlock(); emit this->onlineStateChanged(iOnline); - locker.relock(); + mutex.lock(); } } void SymbianEngine::updateAvailableAccessPoints() { - QMutexLocker locker(&mutex); - if (!ipAccessPointsAvailabilityScanner) { ipAccessPointsAvailabilityScanner = new AccessPointsAvailabilityScanner(*this, iConnectionMonitor); } @@ -728,8 +708,6 @@ void SymbianEngine::updateAvailableAccessPoints() void SymbianEngine::accessPointScanningReady(TBool scanSuccessful, TConnMonIapInfo iapInfo) { - QMutexLocker locker(&mutex); - iUpdateGoingOn = false; if (scanSuccessful) { QList unavailableConfigs = accessPointConfigurations.keys(); @@ -764,16 +742,14 @@ void SymbianEngine::accessPointScanningReady(TBool scanSuccessful, TConnMonIapIn if (!iFirstUpdate) { startCommsDatabaseNotifications(); - locker.unlock(); + mutex.unlock(); emit updateCompleted(); - locker.relock(); + mutex.lock(); } } void SymbianEngine::updateStatesToSnaps() { - QMutexLocker locker(&mutex); - // Go through SNAPs and set correct state to SNAPs foreach (const QString &iface, snapConfigurations.keys()) { bool discovered = false; @@ -810,16 +786,14 @@ void SymbianEngine::updateStatesToSnaps() bool SymbianEngine::changeConfigurationStateTo(QNetworkConfigurationPrivatePointer ptr, QNetworkConfiguration::StateFlags newState) { - QMutexLocker locker(&mutex); - ptr->mutex.lock(); if (newState != ptr->state) { ptr->state = newState; ptr->mutex.unlock(); - locker.unlock(); + mutex.unlock(); emit configurationChanged(ptr); - locker.relock(); + mutex.lock(); return true; } else { @@ -835,16 +809,14 @@ bool SymbianEngine::changeConfigurationStateTo(QNetworkConfigurationPrivatePoint bool SymbianEngine::changeConfigurationStateAtMinTo(QNetworkConfigurationPrivatePointer ptr, QNetworkConfiguration::StateFlags newState) { - QMutexLocker locker(&mutex); - ptr->mutex.lock(); if ((newState | ptr->state) != ptr->state) { ptr->state = (ptr->state | newState); ptr->mutex.unlock(); - locker.unlock(); + mutex.unlock(); emit configurationChanged(ptr); - locker.relock(); + mutex.lock(); return true; } else { @@ -861,16 +833,14 @@ bool SymbianEngine::changeConfigurationStateAtMinTo(QNetworkConfigurationPrivate bool SymbianEngine::changeConfigurationStateAtMaxTo(QNetworkConfigurationPrivatePointer ptr, QNetworkConfiguration::StateFlags newState) { - QMutexLocker locker(&mutex); - ptr->mutex.lock(); if ((newState & ptr->state) != ptr->state) { ptr->state = (newState & ptr->state); ptr->mutex.unlock(); - locker.unlock(); + mutex.unlock(); emit configurationChanged(ptr); - locker.relock(); + mutex.lock(); return true; } else { @@ -881,8 +851,6 @@ bool SymbianEngine::changeConfigurationStateAtMaxTo(QNetworkConfigurationPrivate void SymbianEngine::startCommsDatabaseNotifications() { - QMutexLocker locker(&mutex); - if (!iWaitingCommsDatabaseNotifications) { iWaitingCommsDatabaseNotifications = ETrue; if (!IsActive()) { @@ -895,8 +863,6 @@ void SymbianEngine::startCommsDatabaseNotifications() void SymbianEngine::stopCommsDatabaseNotifications() { - QMutexLocker locker(&mutex); - if (iWaitingCommsDatabaseNotifications) { iWaitingCommsDatabaseNotifications = EFalse; Cancel(); @@ -938,9 +904,13 @@ void SymbianEngine::RunL() if (error == KErrNone) { updateStatesToSnaps(); } + locker.unlock(); waitRandomTime(); + locker.relock(); } else { + locker.unlock(); waitRandomTime(); + locker.relock(); TRAPD(error, updateConfigurationsL()); if (error == KErrNone) { updateStatesToSnaps(); @@ -1129,6 +1099,8 @@ void SymbianEngine::EventL(const CConnMonEventBase& aEvent) // manager). Currently only 'Disconnected' state is of interest because it has proven to be troublesome. void SymbianEngine::configurationStateChangeReport(TUint32 accessPointId, QNetworkSession::State newState) { + QMutexLocker locker(&mutex); + #ifdef QT_BEARERMGMT_SYMBIAN_DEBUG qDebug() << "QNCM A session reported state change for IAP ID: " << accessPointId << " whose new state is: " << newState; #endif @@ -1143,9 +1115,11 @@ void SymbianEngine::configurationStateChangeReport(TUint32 accessPointId, QNetwo updateStatesToSnaps(); } + locker.unlock(); emit configurationStateChanged(toSymbianConfig(ptr)->numericIdentifier(), toSymbianConfig(ptr)->connectionIdentifier(), QNetworkSession::Disconnected); + locker.relock(); } } break; @@ -1157,21 +1131,17 @@ void SymbianEngine::configurationStateChangeReport(TUint32 accessPointId, QNetwo // Waits for 2..6 seconds. void SymbianEngine::waitRandomTime() { - iTimeToWait = (qAbs(qrand()) % 7) * 1000; - if (iTimeToWait < 2000) { - iTimeToWait = 2000; - } + int iTimeToWait = qMax(2000, (qAbs(qrand()) % 7) * 1000); #ifdef QT_BEARERMGMT_SYMBIAN_DEBUG qDebug("QNCM waiting random time: %d ms", iTimeToWait); #endif - QTimer::singleShot(iTimeToWait, iIgnoreEventLoop, SLOT(quit())); - iIgnoreEventLoop->exec(); + QEventLoop loop; + QTimer::singleShot(iTimeToWait, &loop, SLOT(quit())); + loop.exec(); } QNetworkConfigurationPrivatePointer SymbianEngine::dataByConnectionId(TUint aConnectionId) { - QMutexLocker locker(&mutex); - QNetworkConfiguration item; QHash::const_iterator i = accessPointConfigurations.constBegin(); @@ -1224,6 +1194,8 @@ void AccessPointsAvailabilityScanner::StartScanning() void AccessPointsAvailabilityScanner::RunL() { + QMutexLocker locker(&iOwner.mutex); + if (iStatus.Int() != KErrNone) { iIapBuf().iCount = 0; iOwner.accessPointScanningReady(false,iIapBuf()); diff --git a/src/plugins/bearer/symbian/symbianengine.h b/src/plugins/bearer/symbian/symbianengine.h index 841d79d..18fd249 100644 --- a/src/plugins/bearer/symbian/symbianengine.h +++ b/src/plugins/bearer/symbian/symbianengine.h @@ -212,11 +212,11 @@ private: // Data TBool iInitOk; TBool iUpdateGoingOn; TBool iIgnoringUpdates; - TUint iTimeToWait; - QEventLoop* iIgnoreEventLoop; AccessPointsAvailabilityScanner* ipAccessPointsAvailabilityScanner; - + + QNetworkConfigurationPrivatePointer defaultConfig; + friend class QNetworkSessionPrivate; friend class AccessPointsAvailabilityScanner; friend class QNetworkSessionPrivateImpl; -- cgit v0.12 From a0b725d916ec794c1a0f02b37525a15ad27d145d Mon Sep 17 00:00:00 2001 From: Martin Jones Date: Mon, 31 May 2010 15:38:45 +1000 Subject: Repaint all text when Ctrl+A is pressed in TextEdit QTextControl::updateRequest() with empty rect means update all. Task-number: QTBUG-11013 --- src/declarative/graphicsitems/qdeclarativetextedit.cpp | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/src/declarative/graphicsitems/qdeclarativetextedit.cpp b/src/declarative/graphicsitems/qdeclarativetextedit.cpp index 167db77..f02b7d1 100644 --- a/src/declarative/graphicsitems/qdeclarativetextedit.cpp +++ b/src/declarative/graphicsitems/qdeclarativetextedit.cpp @@ -1066,9 +1066,14 @@ void QDeclarativeTextEdit::drawContents(QPainter *painter, const QRect &bounds) void QDeclarativeTextEdit::updateImgCache(const QRectF &rf) { Q_D(const QDeclarativeTextEdit); - QRect r = rf.toRect(); - if (r != QRect(0,0,INT_MAX,INT_MAX)) // Don't translate "everything" - r = r.translated(0,d->yoff); + QRect r; + if (!rf.isValid()) { + r = QRect(0,0,INT_MAX,INT_MAX); + } else { + r = rf.toRect(); + if (r != QRect(0,0,INT_MAX,INT_MAX)) // Don't translate "everything" + r = r.translated(0,d->yoff); + } dirtyCache(r); emit update(); } -- cgit v0.12 From b8b1e9784583e3b5960b1966328299f8a1bec440 Mon Sep 17 00:00:00 2001 From: Warwick Allison Date: Mon, 31 May 2010 15:45:01 +1000 Subject: Simplify selection setting. Make TextInput more like TextEdit. By making selectionStart/End read-only, and adding adding select(). Task-number: QTBUG-11056 --- .../modelviews/webview/content/FieldText.qml | 2 - examples/declarative/text/edit/edit.qml | 16 ++--- .../graphicsitems/qdeclarativetextedit.cpp | 68 ++++++++++++---------- .../graphicsitems/qdeclarativetextedit_p.h | 8 +-- .../graphicsitems/qdeclarativetextinput.cpp | 54 +++++++++++------ .../graphicsitems/qdeclarativetextinput_p.h | 16 ++--- .../tst_qdeclarativetextedit.cpp | 39 ++++--------- .../tst_qdeclarativetextinput.cpp | 55 ++++++----------- .../qdeclarativetextedit/MultilineEdit.qml | 3 +- .../qmlvisual/qdeclarativetextinput/LineEdit.qml | 3 +- 10 files changed, 125 insertions(+), 139 deletions(-) diff --git a/examples/declarative/modelviews/webview/content/FieldText.qml b/examples/declarative/modelviews/webview/content/FieldText.qml index c9adde5..17fa4cd 100644 --- a/examples/declarative/modelviews/webview/content/FieldText.qml +++ b/examples/declarative/modelviews/webview/content/FieldText.qml @@ -161,8 +161,6 @@ Item { color: "black" readOnly: false focus: true - selectionStart: 0 - selectionEnd: -1 } PropertyChanges { target: editRegion diff --git a/examples/declarative/text/edit/edit.qml b/examples/declarative/text/edit/edit.qml index 2774739..0be42e9 100644 --- a/examples/declarative/text/edit/edit.qml +++ b/examples/declarative/text/edit/edit.qml @@ -157,14 +157,16 @@ Rectangle { if (editor.state == "selection" && drag != "") { if (drag == "start") { var pos = edit.positionAt(mouse.x+x+startHandle.width/2,mouse.y+y); - if (edit.selectionEnd < pos) - edit.selectionEnd = pos; - edit.selectionStart = pos; + var e = edit.selectionEnd; + if (e < pos) + e = pos; + edit.select(pos,e); } else if (drag == "end") { var pos = edit.positionAt(mouse.x+x-endHandle.width/2,mouse.y+y); - if (edit.selectionStart > pos) - edit.selectionStart = pos; - edit.selectionEnd = pos; + var s = edit.selectionStart; + if (s > pos) + s = pos; + edit.select(s,pos); } } } @@ -226,7 +228,7 @@ Rectangle { height: 16 Text { anchors.centerIn: parent; text: "Deselect" } MouseArea { anchors.fill: parent; - onClicked: { edit.cursorPosition = edit.selectionEnd; edit.selectionStart = edit.selectionEnd; editor.state = "" } } + onClicked: { edit.cursorPosition = edit.selectionEnd; edit.select(edit.cursorPosition,edit.cursorPosition); editor.state = "" } } } } } diff --git a/src/declarative/graphicsitems/qdeclarativetextedit.cpp b/src/declarative/graphicsitems/qdeclarativetextedit.cpp index f8876f2..935b431 100644 --- a/src/declarative/graphicsitems/qdeclarativetextedit.cpp +++ b/src/declarative/graphicsitems/qdeclarativetextedit.cpp @@ -717,12 +717,9 @@ void QDeclarativeTextEdit::loadCursorDelegate() \qmlproperty int TextEdit::selectionStart The cursor position before the first character in the current selection. - Setting this and selectionEnd allows you to specify a selection in the - text edit. - Note that if selectionStart == selectionEnd then there is no current - selection. If you attempt to set selectionStart to a value outside of - the current text, selectionStart will not be changed. + This property is read-only. To change the selection, use select(start,end), + selectAll(), or selectWord(). \sa selectionEnd, cursorPosition, selectedText */ @@ -732,25 +729,13 @@ int QDeclarativeTextEdit::selectionStart() const return d->control->textCursor().selectionStart(); } -void QDeclarativeTextEdit::setSelectionStart(int s) -{ - Q_D(QDeclarativeTextEdit); - if(d->lastSelectionStart == s || s < 0 || s > text().length()) - return; - d->lastSelectionStart = s; - d->updateSelection();// Will emit the relevant signals -} - /*! \qmlproperty int TextEdit::selectionEnd The cursor position after the last character in the current selection. - Setting this and selectionStart allows you to specify a selection in the - text edit. - Note that if selectionStart == selectionEnd then there is no current - selection. If you attempt to set selectionEnd to a value outside of - the current text, selectionEnd will not be changed. + This property is read-only. To change the selection, use select(start,end), + selectAll(), or selectWord(). \sa selectionStart, cursorPosition, selectedText */ @@ -760,15 +745,6 @@ int QDeclarativeTextEdit::selectionEnd() const return d->control->textCursor().selectionEnd(); } -void QDeclarativeTextEdit::setSelectionEnd(int s) -{ - Q_D(QDeclarativeTextEdit); - if(d->lastSelectionEnd == s || s < 0 || s > text().length()) - return; - d->lastSelectionEnd = s; - d->updateSelection();// Will emit the relevant signals -} - /*! \qmlproperty string TextEdit::selectedText @@ -1018,6 +994,8 @@ void QDeclarativeTextEditPrivate::focusChanged(bool hasFocus) } /*! + \qmlmethod void TextEdit::selectAll() + Causes all text to be selected. */ void QDeclarativeTextEdit::selectAll() @@ -1027,6 +1005,8 @@ void QDeclarativeTextEdit::selectAll() } /*! + \qmlmethod void TextEdit::selectWord() + Causes the word closest to the current cursor position to be selected. */ void QDeclarativeTextEdit::selectWord() @@ -1038,6 +1018,35 @@ void QDeclarativeTextEdit::selectWord() } /*! + \qmlmethod void TextEdit::select(start,end) + + Causes the text from \a start to \a end to be selected. + + If either start or end is out of range, the selection is not changed. + + After calling this, selectionStart will become the lesser + and selectionEnd will become the greater (regardless of the order passed + to this method). + + \sa selectionStart, selectionEnd +*/ +void QDeclarativeTextEdit::select(int start, int end) +{ + Q_D(QDeclarativeTextEdit); + if (start < 0 || end < 0 || start > d->text.length() || end > d->text.length()) + return; + QTextCursor cursor = d->control->textCursor(); + cursor.beginEditBlock(); + cursor.setPosition(start, QTextCursor::MoveAnchor); + cursor.setPosition(end, QTextCursor::KeepAnchor); + cursor.endEditBlock(); + d->control->setTextCursor(cursor); + + // QTBUG-11100 + updateSelectionMarkers(); +} + +/*! \qmlmethod TextEdit::cut() Moves the currently selected text to the system clipboard. @@ -1254,7 +1263,6 @@ void QDeclarativeTextEditPrivate::updateSelection() QTextCursor cursor = control->textCursor(); bool startChange = (lastSelectionStart != cursor.selectionStart()); bool endChange = (lastSelectionEnd != cursor.selectionEnd()); - //### Is it worth calculating a more minimal set of movements? cursor.beginEditBlock(); cursor.setPosition(lastSelectionStart, QTextCursor::MoveAnchor); cursor.setPosition(lastSelectionEnd, QTextCursor::KeepAnchor); @@ -1264,8 +1272,6 @@ void QDeclarativeTextEditPrivate::updateSelection() q->selectionStartChanged(); if(endChange) q->selectionEndChanged(); - startChange = (lastSelectionStart != control->textCursor().selectionStart()); - endChange = (lastSelectionEnd != control->textCursor().selectionEnd()); } void QDeclarativeTextEdit::updateSelectionMarkers() diff --git a/src/declarative/graphicsitems/qdeclarativetextedit_p.h b/src/declarative/graphicsitems/qdeclarativetextedit_p.h index a83b3db..3abfc35 100644 --- a/src/declarative/graphicsitems/qdeclarativetextedit_p.h +++ b/src/declarative/graphicsitems/qdeclarativetextedit_p.h @@ -82,8 +82,8 @@ class Q_DECLARATIVE_EXPORT QDeclarativeTextEdit : public QDeclarativePaintedItem Q_PROPERTY(int cursorPosition READ cursorPosition WRITE setCursorPosition NOTIFY cursorPositionChanged) Q_PROPERTY(QRect cursorRectangle READ cursorRectangle NOTIFY cursorRectangleChanged) Q_PROPERTY(QDeclarativeComponent* cursorDelegate READ cursorDelegate WRITE setCursorDelegate NOTIFY cursorDelegateChanged) - Q_PROPERTY(int selectionStart READ selectionStart WRITE setSelectionStart NOTIFY selectionStartChanged) - Q_PROPERTY(int selectionEnd READ selectionEnd WRITE setSelectionEnd NOTIFY selectionEndChanged) + Q_PROPERTY(int selectionStart READ selectionStart NOTIFY selectionStartChanged) + Q_PROPERTY(int selectionEnd READ selectionEnd NOTIFY selectionEndChanged) Q_PROPERTY(QString selectedText READ selectedText NOTIFY selectionChanged) Q_PROPERTY(bool focusOnPress READ focusOnPress WRITE setFocusOnPress NOTIFY focusOnPressChanged) Q_PROPERTY(bool showInputPanelOnFocus READ showInputPanelOnFocus WRITE setShowInputPanelOnFocus NOTIFY showInputPanelOnFocusChanged) @@ -160,10 +160,7 @@ public: void setCursorDelegate(QDeclarativeComponent*); int selectionStart() const; - void setSelectionStart(int); - int selectionEnd() const; - void setSelectionEnd(int); QString selectedText() const; @@ -230,6 +227,7 @@ Q_SIGNALS: public Q_SLOTS: void selectAll(); void selectWord(); + void select(int start, int end); void cut(); void copy(); void paste(); diff --git a/src/declarative/graphicsitems/qdeclarativetextinput.cpp b/src/declarative/graphicsitems/qdeclarativetextinput.cpp index 9a6a070..25a2b49 100644 --- a/src/declarative/graphicsitems/qdeclarativetextinput.cpp +++ b/src/declarative/graphicsitems/qdeclarativetextinput.cpp @@ -46,6 +46,7 @@ #include #include +#include #include #include #include @@ -429,10 +430,12 @@ void QDeclarativeTextInput::setCursorPosition(int cp) Returns a Rect which encompasses the cursor, but which may be larger than is required. Ignores custom cursor delegates. */ -QRect QDeclarativeTextInput::cursorRect() const +QRect QDeclarativeTextInput::cursorRectangle() const { Q_D(const QDeclarativeTextInput); - return d->control->cursorRect(); + QRect r = d->control->cursorRect(); + r.setHeight(r.height()-1); // Make consistent with TextEdit (QLineControl inexplicably adds 1) + return r; } /*! @@ -454,15 +457,6 @@ int QDeclarativeTextInput::selectionStart() const return d->lastSelectionStart; } -void QDeclarativeTextInput::setSelectionStart(int s) -{ - Q_D(QDeclarativeTextInput); - if(d->lastSelectionStart == s || s < 0 || s > text().length()) - return; - d->lastSelectionStart = s; - d->control->setSelection(s, d->lastSelectionEnd - s); -} - /*! \qmlproperty int TextInput::selectionEnd @@ -482,13 +476,12 @@ int QDeclarativeTextInput::selectionEnd() const return d->lastSelectionEnd; } -void QDeclarativeTextInput::setSelectionEnd(int s) +void QDeclarativeTextInput::select(int start, int end) { Q_D(QDeclarativeTextInput); - if(d->lastSelectionEnd == s || s < 0 || s > text().length()) + if (start < 0 || end < 0 || start > d->control->text().length() || end > d->control->text().length()) return; - d->lastSelectionEnd = s; - d->control->setSelection(d->lastSelectionStart, s - d->lastSelectionStart); + d->control->setSelection(start, end-start); } /*! @@ -833,6 +826,19 @@ void QDeclarativeTextInput::moveCursor() } /*! + \qmlmethod rect TextInput::positionToRectangle(int x) +*/ +QRectF QDeclarativeTextInput::positionToRectangle(int x) const +{ + Q_D(const QDeclarativeTextInput); + QFontMetrics fm = QFontMetrics(d->font); + return QRectF(d->control->cursorToX(x)-d->hscroll, + 0.0, + d->control->cursorWidth(), + cursorRectangle().height()); +} + +/*! \qmlmethod int TextInput::positionAt(int x) This function returns the character position at @@ -843,7 +849,7 @@ void QDeclarativeTextInput::moveCursor() This means that for all x values before the first character this function returns 0, and for all x values after the last character this function returns text.length. */ -int QDeclarativeTextInput::positionAt(int x) +int QDeclarativeTextInput::positionAt(int x) const { Q_D(const QDeclarativeTextInput); return d->control->xToPos(x - d->hscroll); @@ -1019,7 +1025,6 @@ void QDeclarativeTextInput::drawContents(QPainter *p, const QRect &r) d->hscroll -= minLB; offset = QPoint(d->hscroll, 0); } - d->control->draw(p, offset, r, flags); p->restore(); @@ -1057,12 +1062,27 @@ QVariant QDeclarativeTextInput::inputMethodQuery(Qt::InputMethodQuery property) } } +/*! + \qmlmethod void TextInput::selectAll() + + Causes all text to be selected. +*/ void QDeclarativeTextInput::selectAll() { Q_D(QDeclarativeTextInput); d->control->setSelection(0, d->control->text().length()); } +/*! + \qmlmethod void TextInput::selectWord() + + Causes the word closest to the current cursor position to be selected. +*/ +void QDeclarativeTextInput::selectWord() +{ + Q_D(QDeclarativeTextInput); + d->control->selectWordAtPos(d->control->cursor()); +} /*! \qmlproperty bool TextInput::smooth diff --git a/src/declarative/graphicsitems/qdeclarativetextinput_p.h b/src/declarative/graphicsitems/qdeclarativetextinput_p.h index 6bb94c2..0b7ddd5 100644 --- a/src/declarative/graphicsitems/qdeclarativetextinput_p.h +++ b/src/declarative/graphicsitems/qdeclarativetextinput_p.h @@ -72,10 +72,10 @@ class Q_DECLARATIVE_EXPORT QDeclarativeTextInput : public QDeclarativePaintedIte Q_PROPERTY(bool readOnly READ isReadOnly WRITE setReadOnly NOTIFY readOnlyChanged) Q_PROPERTY(bool cursorVisible READ isCursorVisible WRITE setCursorVisible NOTIFY cursorVisibleChanged) Q_PROPERTY(int cursorPosition READ cursorPosition WRITE setCursorPosition NOTIFY cursorPositionChanged) - Q_PROPERTY(QRect cursorRect READ cursorRect NOTIFY cursorPositionChanged) + Q_PROPERTY(QRect cursorRectangle READ cursorRectangle NOTIFY cursorPositionChanged) Q_PROPERTY(QDeclarativeComponent *cursorDelegate READ cursorDelegate WRITE setCursorDelegate NOTIFY cursorDelegateChanged) - Q_PROPERTY(int selectionStart READ selectionStart WRITE setSelectionStart NOTIFY selectionStartChanged) - Q_PROPERTY(int selectionEnd READ selectionEnd WRITE setSelectionEnd NOTIFY selectionEndChanged) + Q_PROPERTY(int selectionStart READ selectionStart NOTIFY selectionStartChanged) + Q_PROPERTY(int selectionEnd READ selectionEnd NOTIFY selectionEndChanged) Q_PROPERTY(QString selectedText READ selectedText NOTIFY selectedTextChanged) Q_PROPERTY(int maximumLength READ maxLength WRITE setMaxLength NOTIFY maximumLengthChanged) @@ -110,7 +110,8 @@ public: }; //Auxilliary functions needed to control the TextInput from QML - Q_INVOKABLE int positionAt(int x); + Q_INVOKABLE int positionAt(int x) const; + Q_INVOKABLE QRectF positionToRectangle(int x) const; Q_INVOKABLE void moveCursorSelection(int pos); Q_INVOKABLE void openSoftwareInputPanel(); @@ -143,13 +144,10 @@ public: int cursorPosition() const; void setCursorPosition(int cp); - QRect cursorRect() const; + QRect cursorRectangle() const; int selectionStart() const; - void setSelectionStart(int); - int selectionEnd() const; - void setSelectionEnd(int); QString selectedText() const; @@ -231,6 +229,8 @@ protected: public Q_SLOTS: void selectAll(); + void selectWord(); + void select(int start, int end); private Q_SLOTS: void updateSize(bool needsRedraw = true); diff --git a/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp b/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp index d3e3c3a..47c5b63 100644 --- a/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp +++ b/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp @@ -551,11 +551,11 @@ void tst_qdeclarativetextedit::selection() //Test selection for(int i=0; i<= testStr.size(); i++) { - textEditObject->setSelectionEnd(i); + textEditObject->select(0,i); QCOMPARE(testStr.mid(0,i), textEditObject->selectedText()); } for(int i=0; i<= testStr.size(); i++) { - textEditObject->setSelectionStart(i); + textEditObject->select(i,testStr.size()); QCOMPARE(testStr.mid(i,testStr.size()-i), textEditObject->selectedText()); } @@ -565,43 +565,26 @@ void tst_qdeclarativetextedit::selection() QVERIFY(textEditObject->selectionEnd() == 0); QVERIFY(textEditObject->selectedText().isNull()); - for(int i=0; i< testStr.size(); i++) { - textEditObject->setSelectionStart(i); - QCOMPARE(textEditObject->selectionEnd(), i); - QCOMPARE(testStr.mid(i,0), textEditObject->selectedText()); - textEditObject->setSelectionEnd(i+1); - QCOMPARE(textEditObject->selectionStart(), i); - QCOMPARE(testStr.mid(i,1), textEditObject->selectedText()); - } - - for(int i= testStr.size() - 1; i>0; i--) { - textEditObject->setSelectionEnd(i); - QCOMPARE(testStr.mid(i,0), textEditObject->selectedText()); - textEditObject->setSelectionStart(i-1); - QCOMPARE(testStr.mid(i-1,1), textEditObject->selectedText()); - } - //Test Error Ignoring behaviour textEditObject->setCursorPosition(0); QVERIFY(textEditObject->selectedText().isNull()); - textEditObject->setSelectionStart(-10); + textEditObject->select(-10,0); QVERIFY(textEditObject->selectedText().isNull()); - textEditObject->setSelectionStart(100); + textEditObject->select(100,101); QVERIFY(textEditObject->selectedText().isNull()); - textEditObject->setSelectionEnd(-10); + textEditObject->select(0,-10); QVERIFY(textEditObject->selectedText().isNull()); - textEditObject->setSelectionEnd(100); + textEditObject->select(0,100); QVERIFY(textEditObject->selectedText().isNull()); - textEditObject->setSelectionStart(0); - textEditObject->setSelectionEnd(10); + textEditObject->select(0,10); QVERIFY(textEditObject->selectedText().size() == 10); - textEditObject->setSelectionStart(-10); + textEditObject->select(-10,0); QVERIFY(textEditObject->selectedText().size() == 10); - textEditObject->setSelectionStart(100); + textEditObject->select(100,101); QVERIFY(textEditObject->selectedText().size() == 10); - textEditObject->setSelectionEnd(-10); + textEditObject->select(0,-10); QVERIFY(textEditObject->selectedText().size() == 10); - textEditObject->setSelectionEnd(100); + textEditObject->select(0,100); QVERIFY(textEditObject->selectedText().size() == 10); } diff --git a/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp b/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp index c01cfa5..54bb9c1 100644 --- a/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp +++ b/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp @@ -322,11 +322,11 @@ void tst_qdeclarativetextinput::selection() //Test selection for(int i=0; i<= testStr.size(); i++) { - textinputObject->setSelectionEnd(i); + textinputObject->select(0,i); QCOMPARE(testStr.mid(0,i), textinputObject->selectedText()); } for(int i=0; i<= testStr.size(); i++) { - textinputObject->setSelectionStart(i); + textinputObject->select(i,testStr.size()); QCOMPARE(testStr.mid(i,testStr.size()-i), textinputObject->selectedText()); } @@ -336,43 +336,26 @@ void tst_qdeclarativetextinput::selection() QVERIFY(textinputObject->selectionEnd() == 0); QVERIFY(textinputObject->selectedText().isNull()); - for(int i=0; i< testStr.size(); i++) { - textinputObject->setSelectionStart(i); - QCOMPARE(textinputObject->selectionEnd(), i); - QCOMPARE(testStr.mid(i,0), textinputObject->selectedText()); - textinputObject->setSelectionEnd(i+1); - QCOMPARE(textinputObject->selectionStart(), i); - QCOMPARE(testStr.mid(i,1), textinputObject->selectedText()); - } - - for(int i= testStr.size() - 1; i>0; i--) { - textinputObject->setSelectionEnd(i); - QCOMPARE(testStr.mid(i,0), textinputObject->selectedText()); - textinputObject->setSelectionStart(i-1); - QCOMPARE(testStr.mid(i-1,1), textinputObject->selectedText()); - } - //Test Error Ignoring behaviour textinputObject->setCursorPosition(0); QVERIFY(textinputObject->selectedText().isNull()); - textinputObject->setSelectionStart(-10); + textinputObject->select(-10,0); QVERIFY(textinputObject->selectedText().isNull()); - textinputObject->setSelectionStart(100); + textinputObject->select(100,110); QVERIFY(textinputObject->selectedText().isNull()); - textinputObject->setSelectionEnd(-10); + textinputObject->select(0,-10); QVERIFY(textinputObject->selectedText().isNull()); - textinputObject->setSelectionEnd(100); + textinputObject->select(0,100); QVERIFY(textinputObject->selectedText().isNull()); - textinputObject->setSelectionStart(0); - textinputObject->setSelectionEnd(10); + textinputObject->select(0,10); QVERIFY(textinputObject->selectedText().size() == 10); - textinputObject->setSelectionStart(-10); + textinputObject->select(-10,10); QVERIFY(textinputObject->selectedText().size() == 10); - textinputObject->setSelectionStart(100); + textinputObject->select(100,101); QVERIFY(textinputObject->selectedText().size() == 10); - textinputObject->setSelectionEnd(-10); + textinputObject->select(0,-10); QVERIFY(textinputObject->selectedText().size() == 10); - textinputObject->setSelectionEnd(100); + textinputObject->select(0,100); QVERIFY(textinputObject->selectedText().size() == 10); delete textinputObject; @@ -565,8 +548,7 @@ void tst_qdeclarativetextinput::navigation() QVERIFY(input->hasFocus() == true); //QT-2944: If text is selected, ensure we deselect upon cursor motion input->setCursorPosition(input->text().length()); - input->setSelectionStart(0); - input->setSelectionEnd(input->text().length()); + input->select(0,input->text().length()); QVERIFY(input->selectionStart() != input->selectionEnd()); simulateKey(canvas, Qt::Key_Right); QVERIFY(input->selectionStart() == input->selectionEnd()); @@ -603,13 +585,13 @@ void tst_qdeclarativetextinput::cursorDelegate() //Test Delegate gets moved for(int i=0; i<= textInputObject->text().length(); i++){ textInputObject->setCursorPosition(i); - //+5 is because the TextInput cursorRect is just a 10xHeight area centered on cursor position - QCOMPARE(textInputObject->cursorRect().x() + 5, qRound(delegateObject->x())); - QCOMPARE(textInputObject->cursorRect().y(), qRound(delegateObject->y())); + //+5 is because the TextInput cursorRectangle is just a 10xHeight area centered on cursor position + QCOMPARE(textInputObject->cursorRectangle().x() + 5, qRound(delegateObject->x())); + QCOMPARE(textInputObject->cursorRectangle().y(), qRound(delegateObject->y())); } textInputObject->setCursorPosition(0); - QCOMPARE(textInputObject->cursorRect().x()+5, qRound(delegateObject->x())); - QCOMPARE(textInputObject->cursorRect().y(), qRound(delegateObject->y())); + QCOMPARE(textInputObject->cursorRectangle().x()+5, qRound(delegateObject->x())); + QCOMPARE(textInputObject->cursorRectangle().y(), qRound(delegateObject->y())); //Test Delegate gets deleted textInputObject->setCursorDelegate(0); QVERIFY(!textInputObject->findChild("cursorInstance")); @@ -881,8 +863,7 @@ void tst_qdeclarativetextinput::focusOutClearSelection() view.show(); QApplication::setActiveWindow(&view); QTest::qWaitForWindowShown(&view); - input.setSelectionStart(2); - input.setSelectionEnd(5); + input.select(2,5); //The selection should work QTRY_COMPARE(input.selectedText(), QLatin1String("llo")); input2.setFocus(true); diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/MultilineEdit.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/MultilineEdit.qml index 0273282..53538cb 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/MultilineEdit.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/MultilineEdit.qml @@ -65,8 +65,7 @@ Item { onReleased: { } onDoubleClicked: { - textEdit.selectionStart=0; - textEdit.selectionEnd=textEdit.text.length; + textEdit.selectAll() } z: textEdit.z + 1 } diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/LineEdit.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/LineEdit.qml index cc0ad3c..69f57c6 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/LineEdit.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/LineEdit.qml @@ -58,8 +58,7 @@ Item { onReleased: { } onDoubleClicked: { - textInp.selectionStart=0; - textInp.selectionEnd=textInp.text.length; + textInp.selectAll() } z: textInp.z + 1 } -- cgit v0.12 From e5cc765d2fa1ff68f1592ad475d6b8f4e5a6f667 Mon Sep 17 00:00:00 2001 From: Bea Lam Date: Mon, 31 May 2010 14:45:43 +1000 Subject: Document issues with rectangle border width of 1 where clipping is used --- doc/src/declarative/pics/rect-border-width.png | Bin 0 -> 356 bytes doc/src/snippets/declarative/rect-border-width.qml | 19 +++++++++++++++++++ .../graphicsitems/qdeclarativerectangle.cpp | 16 ++++++++++++++-- 3 files changed, 33 insertions(+), 2 deletions(-) create mode 100644 doc/src/declarative/pics/rect-border-width.png create mode 100644 doc/src/snippets/declarative/rect-border-width.qml diff --git a/doc/src/declarative/pics/rect-border-width.png b/doc/src/declarative/pics/rect-border-width.png new file mode 100644 index 0000000..c3c6c2c Binary files /dev/null and b/doc/src/declarative/pics/rect-border-width.png differ diff --git a/doc/src/snippets/declarative/rect-border-width.qml b/doc/src/snippets/declarative/rect-border-width.qml new file mode 100644 index 0000000..27a241d --- /dev/null +++ b/doc/src/snippets/declarative/rect-border-width.qml @@ -0,0 +1,19 @@ +import Qt 4.7 + +//![0] +Rectangle { + width: 100; height: 100 + color: "yellow" + + Rectangle { + anchor.fill: parent + anchors.margins: 10 + clip: true + + Rectangle { + anchors.fill: parent + border.width: 1 + } + } +} +//![0] diff --git a/src/declarative/graphicsitems/qdeclarativerectangle.cpp b/src/declarative/graphicsitems/qdeclarativerectangle.cpp index 301ca00..de3dbcd 100644 --- a/src/declarative/graphicsitems/qdeclarativerectangle.cpp +++ b/src/declarative/graphicsitems/qdeclarativerectangle.cpp @@ -202,8 +202,20 @@ void QDeclarativeRectangle::doUpdate() A width of 1 creates a thin line. For no line, use a width of 0 or a transparent color. - To keep the border smooth (rather than blurry), odd widths cause the rectangle to be painted at - a half-pixel offset; + If \c border.width is an odd number, the rectangle is painted at a half-pixel offset to retain + border smoothness. Also, the border is rendered evenly on either side of the + rectangle's boundaries, and the spare pixel is rendered to the right and below the + rectangle (as documented for QRect rendering). This can cause unintended effects if + \c border.width is 1 and the rectangle is \l{clip}{clipped} by a parent item: + + \table + \row + \o \snippet doc/src/snippets/declarative/rect-border-width.qml 0 + \o \image rect-border-width.png + \endtable + + Here, the innermost rectangle's border is clipped on the bottom and right edges by its + parent. To avoid this, the border width can be set to two instead of one. */ QDeclarativePen *QDeclarativeRectangle::border() { -- cgit v0.12 From 4759e47a2444d481156ad1a789e5affbc92e1b58 Mon Sep 17 00:00:00 2001 From: Bea Lam Date: Mon, 31 May 2010 16:59:48 +1000 Subject: Various doc fixes and improvements --- doc/src/declarative/basictypes.qdoc | 67 +++++++++++++++++---- doc/src/declarative/globalobject.qdoc | 2 +- doc/src/declarative/pics/repeater-modeldata.png | Bin 0 -> 2600 bytes doc/src/declarative/qml-intro.qdoc | 26 ++++---- .../snippets/declarative/repeater-modeldata.qml | 52 ++++++++++++++++ examples/declarative/sqllocalstorage/hello.qml | 2 +- .../tutorials/extending/chapter1-basics/app.qml | 1 + .../tutorials/extending/chapter2-methods/app.qml | 1 + .../tutorials/extending/chapter3-bindings/app.qml | 1 + .../extending/chapter4-customPropertyTypes/app.qml | 1 + .../graphicsitems/qdeclarativerepeater.cpp | 14 +++-- src/declarative/qml/qdeclarativeengine.cpp | 34 ++++++++--- 12 files changed, 159 insertions(+), 42 deletions(-) create mode 100644 doc/src/declarative/pics/repeater-modeldata.png create mode 100644 doc/src/snippets/declarative/repeater-modeldata.qml diff --git a/doc/src/declarative/basictypes.qdoc b/doc/src/declarative/basictypes.qdoc index 8db1c35..43ae214 100644 --- a/doc/src/declarative/basictypes.qdoc +++ b/doc/src/declarative/basictypes.qdoc @@ -46,9 +46,9 @@ QML has a set of primitive types, as listed below, that are used throughout the \l {QML Elements}. - The simpler types in this list can also be used for defining a new - \c property in a component. See \l{Extending types from QML} for the - list of types that can be used for custom properties. + Some of these types can also be used for defining + \c property values in QML. See \l{Extending types from QML} for the + list of types that can be used for \c property values. \annotatedlist qmlbasictypes */ @@ -171,6 +171,13 @@ Rectangle { color: "#800000FF" } \endqml + Or with the \l{Qt::rgba()}{Qt.rgba()}, \l{Qt::hsla()}{Qt.hsla()}, \l{Qt::darker()}{Qt.darker()}, + \l{Qt::lighter()}{Qt.lighter()} or \l{Qt::tint()}{Qt.tint()} functions: + + \qml + Rectangle { color: Qt.rgba(255, 0, 0, 1) } + \endqml + \sa {QML Basic Types} */ @@ -184,9 +191,17 @@ Example: \qml - Widget { pos: "0,20" } + MyItem { position: "0,20" } \endqml + Or with the \l{Qt::point()}{Qt.point()} function: + + \qml + MyItem { position: Qt.point(0, 20) } + \endqml + + A point object has \c x and \c y attributes that contain the \c x and \c y values. + \sa {QML Basic Types} */ @@ -200,9 +215,17 @@ Example: \qml - Widget { size: "150x50" } + LayoutItem { preferredSize: "150x50" } + \endqml + + Or with the \l{Qt::size()}{Qt.size()} function: + + \qml + MyItem { position: Qt.size(150, 50) } \endqml + A size object has \c width and \c height attributes that contain the \c width and \c height values. + \sa {QML Basic Types} */ @@ -216,9 +239,18 @@ Example: \qml - Widget { geometry: "50,50,100x100" } + MyItem { geometry: "50,50,100x100" } \endqml + Or with the \l{Qt::rect()}{Qt.rect()} function: + + \qml + MyItem { position: Qt.rect(50, 50, 100, 100) } + \endqml + + A rect object has \c x, \c, y, \c width and \c height attributes that contain the + \c x, \c y, \c width and \c height values. + \sa {QML Basic Types} */ @@ -232,9 +264,12 @@ Example: \qml - DatePicker { minDate: "2000-01-01"; maxDate: "2020-12-31" } + MyDatePicker { minDate: "2000-01-01"; maxDate: "2020-12-31" } \endqml + To read a date value returned from a C++ extension class, use + \l{Qt::formatDate()}{Qt.formatDate()} and \l{Qt::formatDateTime()}{Qt.formatDateTime()}. + \sa {QML Basic Types} */ @@ -248,9 +283,12 @@ Example: \qml - TimePicker { time: "14:22:15" } + MyTimePicker { time: "14:22:15" } \endqml + To read a time value returned from a C++ extension class, use + \l{Qt::formatTime()}{Qt.formatTime()} and \l{Qt::formatDateTime()}{Qt.formatDateTime()}. + \sa {QML Basic Types} */ @@ -297,9 +335,9 @@ Actions are used like this: \qml - MouseArea { onClicked: MyItem.myaction.trigger() } - State { name: "enabled"; when: MyItem.myaction.enabled == true } - Text { text: MyItem.someaction.text } + MouseArea { onClicked: myaction.trigger() } + State { name: "enabled"; when: myaction.enabled == true } + Text { text: someaction.text } \endqml \sa {QML Basic Types} @@ -327,7 +365,7 @@ ] } \endqml - \c Child1, \c Child2 and \c Child3 will all be added to the children list + \c child1, \c child2 and \c child3 will all be added to the children list in the order in which they appear. \sa {QML Basic Types} @@ -345,7 +383,7 @@ Rotation { angle: 60; axis: "0,1,0" } \endqml - or with the \c{Qt.vector3d()} helper function: + or with the \c{Qt.vector3d()} function: \qml Rotation { angle: 60; axis: Qt.vector3d(0, 1, 0) } @@ -357,5 +395,8 @@ Rotation { angle: 60; axis.x: 0; axis.y: 1; axis.z: 0 } \endqml + A vector3d object has \c x, \c, y, and \c z attributes that contain the + \c x, \c y, \c z values. + \sa {QML Basic Types} */ diff --git a/doc/src/declarative/globalobject.qdoc b/doc/src/declarative/globalobject.qdoc index 7d4f9b9..3121e95 100644 --- a/doc/src/declarative/globalobject.qdoc +++ b/doc/src/declarative/globalobject.qdoc @@ -49,7 +49,7 @@ Contains all the properties of the JavaScript global object, plus: \section1 Qt Object -The \l{qml-qt.html}{Qt object} provides useful enums and functions from Qt, for use in all QML +The \l{Qt}{Qt object} provides useful enums and functions from Qt, for use in all QML files. \section1 XMLHttpRequest diff --git a/doc/src/declarative/pics/repeater-modeldata.png b/doc/src/declarative/pics/repeater-modeldata.png new file mode 100644 index 0000000..817f35b Binary files /dev/null and b/doc/src/declarative/pics/repeater-modeldata.png differ diff --git a/doc/src/declarative/qml-intro.qdoc b/doc/src/declarative/qml-intro.qdoc index 64a4949..848e094 100644 --- a/doc/src/declarative/qml-intro.qdoc +++ b/doc/src/declarative/qml-intro.qdoc @@ -864,49 +864,49 @@ paused, and reaching the end of the media. They allow the developer to connect, some QML that will handle this event. -\section1 Analyzing An Example: Dial +\section1 Analyzing An Example: Dial Control -In the Qt \e {examples/declarative/toys} folder you will find a folder -\e {dial} which contains the \e dial example. +In the Qt \e {examples/declarative/ui-components} folder you will find a folder +\e {dialcontrol} which contains the \e dialcontrol example. \image qml-dial.png "QML Dial example with Slider" In essence this small application has a sliding bar that you can slide using a mouse, and a graphical dial that responds to the position of the slider. -The code for the example is in two parts: Dial.qml and dial-example.qml. +The code for the example is in two parts: Dial.qml and dialcontrol.qml. -\e {Dial.qml} can be found in the \e content sub-directory. It defines a Dial +\e {Dial.qml} can be found in the \e content sub-directory. It defines a \c Dial component similar to an odometer. Eventually, the example will hook up a slider component so that moving the slider will change the position of a needle on the dial. -The code for the Dial, identified by the name of the file, contains four images +The code for the \c Dial, identified by the name of the file, contains four images in overlapping order: the background (numbers and divisions), the shadow of the needle, the needle itself, and finally the 'glass' overlay (containing transparent layers). -The needle_shadow.png image has a Rotation assigned to the \e transform +The \c needle_shadow.png image has a \l Rotation assigned to the \e transform attribute of the \l Image. The rotation is set to match the angle of the needle image angle value \e {needleRotation.angle}. Both the needle and the needle_shadow have the same default \e x and \e y values but the rotation origin for the needle is slightly different so that a shadow will be evident as the needle moves. -\snippet ../../examples/declarative/toys/dial/content/Dial.qml needle_shadow +\snippet ../../examples/declarative/ui-components/dialcontrol/content/Dial.qml needle_shadow And the needle -\snippet ../../examples/declarative/toys/dial/content/Dial.qml needle +\snippet ../../examples/declarative/ui-components/dialcontrol/content/Dial.qml needle The final image is the overlay which simply has a position defined. -\snippet ../../examples/declarative/toys/dial/content/Dial.qml overlay +\snippet ../../examples/declarative/ui-components/dialcontrol/content/Dial.qml overlay -\e {dial-example.qml} in the \e {examples/declarative/toys/dial} directory is the +\e {dialcontrol.qml} in the \e {examples/declarative/ui-components/dialcontrol} directory is the main file of the example. It defines the visual environment that the Dial will fit into. Because the \e Dial component and the images live in the \e -content sub-directory we will have to import this into \e dial-example. So the +content sub-directory we will have to import this into \e dialcontrol.qml. So the start of the file looks like \code @@ -919,7 +919,7 @@ a gray color. Inside this rectangle is our component \e Dial and a \l Rectangle. Inside the rectangle called 'container' is another rectangle with the interesting name 'slider'. -\snippet ../../examples/declarative/toys/dial/dial-example.qml 0 +\snippet ../../examples/declarative/ui-components/dialcontrol/dialcontrol.qml 0 The Dial component, named 'dial, is \e anchored to the center of the main rectangle. The \c value attribute of 'dial' is set to a value based on the diff --git a/doc/src/snippets/declarative/repeater-modeldata.qml b/doc/src/snippets/declarative/repeater-modeldata.qml new file mode 100644 index 0000000..3b4cc6d --- /dev/null +++ b/doc/src/snippets/declarative/repeater-modeldata.qml @@ -0,0 +1,52 @@ +/**************************************************************************** +** +** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the QtDeclarative module of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** No Commercial Usage +** This file contains pre-release code and may not be distributed. +** You may use this file in accordance with the terms and conditions +** contained in the Technology Preview License Agreement accompanying +** this package. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Nokia gives you certain additional +** rights. These rights are described in the Nokia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import Qt 4.7 + +//! [0] +Column { + Repeater { + model: ["apples", "oranges", "pears"] + Text { text: "Data: " + modelData } + } +} +//! [0] + diff --git a/examples/declarative/sqllocalstorage/hello.qml b/examples/declarative/sqllocalstorage/hello.qml index 0913d42..421a74c 100644 --- a/examples/declarative/sqllocalstorage/hello.qml +++ b/examples/declarative/sqllocalstorage/hello.qml @@ -68,4 +68,4 @@ Text { Component.onCompleted: findGreetings() } - +//![0] diff --git a/examples/declarative/tutorials/extending/chapter1-basics/app.qml b/examples/declarative/tutorials/extending/chapter1-basics/app.qml index 7de32f2..9af155c 100644 --- a/examples/declarative/tutorials/extending/chapter1-basics/app.qml +++ b/examples/declarative/tutorials/extending/chapter1-basics/app.qml @@ -55,3 +55,4 @@ Rectangle { text: aMusician.name + " plays the " + aMusician.instrument } } +//![0] diff --git a/examples/declarative/tutorials/extending/chapter2-methods/app.qml b/examples/declarative/tutorials/extending/chapter2-methods/app.qml index 495413f..02d33c2 100644 --- a/examples/declarative/tutorials/extending/chapter2-methods/app.qml +++ b/examples/declarative/tutorials/extending/chapter2-methods/app.qml @@ -57,3 +57,4 @@ Rectangle { onClicked: aMusician.perform() } } +//![0] diff --git a/examples/declarative/tutorials/extending/chapter3-bindings/app.qml b/examples/declarative/tutorials/extending/chapter3-bindings/app.qml index 46408cb..8bf6ecf 100644 --- a/examples/declarative/tutorials/extending/chapter3-bindings/app.qml +++ b/examples/declarative/tutorials/extending/chapter3-bindings/app.qml @@ -69,3 +69,4 @@ Rectangle { } } } +//![0] diff --git a/examples/declarative/tutorials/extending/chapter4-customPropertyTypes/app.qml b/examples/declarative/tutorials/extending/chapter4-customPropertyTypes/app.qml index 09662d6..d76f801 100644 --- a/examples/declarative/tutorials/extending/chapter4-customPropertyTypes/app.qml +++ b/examples/declarative/tutorials/extending/chapter4-customPropertyTypes/app.qml @@ -51,3 +51,4 @@ Item { Component.onCompleted: console.log("Reddy plays the " + reddy.instrument.type) } +//![0] diff --git a/src/declarative/graphicsitems/qdeclarativerepeater.cpp b/src/declarative/graphicsitems/qdeclarativerepeater.cpp index 04076f8..691cfa2 100644 --- a/src/declarative/graphicsitems/qdeclarativerepeater.cpp +++ b/src/declarative/graphicsitems/qdeclarativerepeater.cpp @@ -80,14 +80,20 @@ QDeclarativeRepeaterPrivate::~QDeclarativeRepeaterPrivate() The index is always exposed as an accessible \c index property. In the case of an object or string list, the data element (of type string or object) is available as the \c modelData property. In the case of a Qt model, - all roles are available as named properties just like in the view classes. The - following example shows how to use the index property inside the instantiated - items. + all roles are available as named properties just like in the view classes. - \snippet doc/src/snippets/declarative/repeater-index.qml 0 + The following example shows how to use the \c index property inside the instantiated + items: + \snippet doc/src/snippets/declarative/repeater-index.qml 0 \image repeater-index.png + The repeater could also use the \c modelData property to reference the data for a + particular index: + + \snippet doc/src/snippets/declarative/repeater-modeldata.qml 0 + \image repeater-modeldata.png + Items instantiated by the Repeater are inserted, in order, as children of the Repeater's parent. The insertion starts immediately after the repeater's position in its parent stacking list. This is to allow diff --git a/src/declarative/qml/qdeclarativeengine.cpp b/src/declarative/qml/qdeclarativeengine.cpp index 8679e76..d8c842b 100644 --- a/src/declarative/qml/qdeclarativeengine.cpp +++ b/src/declarative/qml/qdeclarativeengine.cpp @@ -155,14 +155,26 @@ void QDeclarativeEnginePrivate::defineModule() \qmlclass Qt QDeclarativeEnginePrivate \brief The QML global Qt object provides useful enums and functions from Qt. -The Qt object provides useful enums and functions from Qt, for use in all QML files. +The \c Qt object provides useful enums and functions from Qt, for use in all QML files. + +The \c Qt object is not a QML element; it cannot be instantiated. It is a global object +with enums and functions. To use it, call the members of the global \c Qt object directly. +For example: + +\qml +import Qt 4.7 + +Text { + color: Qt.rgba(255, 0, 0, 1) + text: Qt.md5("hello, world") +} +\endqml -You do not create instances of this type, but instead use the members of the global "Qt" object. \section1 Enums The Qt object contains all enums in the Qt namespace. For example, you can -access the AlignLeft member of the Qt::AlignmentFlag enum with \c Qt.AlignLeft. +access the \c AlignLeft member of the \c Qt::AlignmentFlag enum with \c Qt.AlignLeft. For a full list of enums, see the \l{Qt Namespace} documentation. @@ -172,7 +184,7 @@ data types. This is primarily useful when setting the properties of an item when the property has one of the following types: \list -\o \c color - use \l{Qt::rgba()}{Qt.rgba()}, \l{Qt::darker()}{Qt.darker()}, \l{Qt::lighter()}{Qt.lighter()} or \l{Qt::tint()}{Qt.tint()} +\o \c color - use \l{Qt::rgba()}{Qt.rgba()}, \l{Qt::hsla()}{Qt.hsla()}, \l{Qt::darker()}{Qt.darker()}, \l{Qt::lighter()}{Qt.lighter()} or \l{Qt::tint()}{Qt.tint()} \o \c rect - use \l{Qt::rect()}{Qt.rect()} \o \c point - use \l{Qt::point()}{Qt.point()} \o \c size - use \l{Qt::size()}{Qt.size()} @@ -200,8 +212,8 @@ items from files or strings. See \l{Dynamic Object Management} for an overview of their use. \list - \o \l{Qt::createComponent}{object Qt.createComponent(url)} - \o \l{Qt::createQmlObject}{object Qt.createQmlObject(string qml, object parent, string filepath)} + \o \l{Qt::createComponent()}{object Qt.createComponent(url)} + \o \l{Qt::createQmlObject()}{object Qt.createQmlObject(string qml, object parent, string filepath)} \endlist */ @@ -1034,7 +1046,7 @@ QString QDeclarativeEnginePrivate::urlToLocalFileOrQrc(const QUrl& url) /*! \qmlmethod object Qt::createComponent(url) -Returns a \l Component object created from the QML file at the specified \a url, +Returns a \l Component object created using the QML file at the specified \a url, or \c null if there was an error in creating the component. Call \l {Component::createObject()}{Component.createObject()} on the returned @@ -1360,7 +1372,7 @@ QScriptValue QDeclarativeEnginePrivate::formatDateTime(QScriptContext*ctxt, QScr /*! \qmlmethod color Qt::rgba(real red, real green, real blue, real alpha) -Returns a Color with the specified \c red, \c green, \c blue and \c alpha components. +Returns a color with the specified \c red, \c green, \c blue and \c alpha components. All components should be in the range 0-1 inclusive. */ QScriptValue QDeclarativeEnginePrivate::rgba(QScriptContext *ctxt, QScriptEngine *engine) @@ -1388,7 +1400,7 @@ QScriptValue QDeclarativeEnginePrivate::rgba(QScriptContext *ctxt, QScriptEngine /*! \qmlmethod color Qt::hsla(real hue, real saturation, real lightness, real alpha) -Returns a Color with the specified \c hue, \c saturation, \c lightness and \c alpha components. +Returns a color with the specified \c hue, \c saturation, \c lightness and \c alpha components. All components should be in the range 0-1 inclusive. */ QScriptValue QDeclarativeEnginePrivate::hsla(QScriptContext *ctxt, QScriptEngine *engine) @@ -1416,7 +1428,9 @@ QScriptValue QDeclarativeEnginePrivate::hsla(QScriptContext *ctxt, QScriptEngine /*! \qmlmethod rect Qt::rect(int x, int y, int width, int height) -Returns a Rect with the top-left corner at \c x, \c y and the specified \c width and \c height. +Returns a \c rect with the top-left corner at \c x, \c y and the specified \c width and \c height. + +The returned object has \c x, \c y, \c width and \c height attributes with the given values. */ QScriptValue QDeclarativeEnginePrivate::rect(QScriptContext *ctxt, QScriptEngine *engine) { -- cgit v0.12 From 90abe364b7e9b0aa201a3e0ed0b043643519e21b Mon Sep 17 00:00:00 2001 From: Andreas Aardal Hanssen Date: Wed, 26 May 2010 13:09:49 +0200 Subject: Make test work with shadow builds again. Broken by 0cdf33e9acb00b8f3654e8268253a3fb7c5db92c, which assumes the binary and sources are in the same directory. The fix reverts the code back to how it was in 4.5 (where it still works with shadow builds). Reviewed-by: Denis Dzyubenko --- tests/auto/qtipc/qsharedmemory/tst_qsharedmemory.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/auto/qtipc/qsharedmemory/tst_qsharedmemory.cpp b/tests/auto/qtipc/qsharedmemory/tst_qsharedmemory.cpp index dac631b..1f65ae7 100644 --- a/tests/auto/qtipc/qsharedmemory/tst_qsharedmemory.cpp +++ b/tests/auto/qtipc/qsharedmemory/tst_qsharedmemory.cpp @@ -56,7 +56,7 @@ #elif defined(Q_OS_WINCE) #define LACKEYDIR SRCDIR #else -#define LACKEYDIR SRCDIR "../lackey" +#define LACKEYDIR "../lackey" #endif Q_DECLARE_METATYPE(QSharedMemory::SharedMemoryError) @@ -421,7 +421,7 @@ void tst_QSharedMemory::readOnly() QString program = LACKEYDIR "/lackey"; QStringList arguments; rememberKey("readonly_segfault"); - arguments << LACKEYDIR "/scripts/readonly_segfault.js"; + arguments << SRCDIR "../lackey/scripts/readonly_segfault.js"; // ### on windows disable the popup somehow QProcess p; @@ -734,7 +734,7 @@ void tst_QSharedMemory::simpleProcessProducerConsumer() rememberKey("market"); - QStringList arguments = QStringList() << LACKEYDIR "/scripts/producer.js"; + QStringList arguments = QStringList() << SRCDIR "../lackey/scripts/producer.js"; QProcess producer; producer.setProcessChannelMode(QProcess::ForwardedChannels); producer.start( LACKEYDIR "/lackey", arguments); @@ -744,7 +744,7 @@ void tst_QSharedMemory::simpleProcessProducerConsumer() QList consumers; unsigned int failedProcesses = 0; for (int i = 0; i < processes; ++i) { - QStringList arguments = QStringList() << LACKEYDIR "/scripts/consumer.js"; + QStringList arguments = QStringList() << SRCDIR "../lackey/scripts/consumer.js"; QProcess *p = new QProcess; p->setProcessChannelMode(QProcess::ForwardedChannels); #ifdef Q_OS_WINCE -- cgit v0.12 From 9b4ff3deb28b3d642dc4480207f2f23841cf26e9 Mon Sep 17 00:00:00 2001 From: Mirko Damiani Date: Mon, 8 Feb 2010 16:09:24 +0100 Subject: Added native key support to QSharedMemory API. Methods setNativeKey() and nativeKey() were added to QSharedMemory API. Shared memory's native key is returned by nativeKey() and it is set with either setKey() or setNativeKey(). setKey() leads to a native key that is platform independent while setNativeKey() directly sets the native key without any mangling. When using setNativeKey(), key() returns a null string and shared memory's system semaphore is not set. This means that is up to the user to define a such protection mechanism (i.e. lock() can't be used on native keys). QSharedMemory tests were updated. Merge-request: 1497 Reviewed-by: Benjamin Poulain Reviewed-by: Andreas Aardal Hanssen --- src/corelib/kernel/qsharedmemory.cpp | 120 +++++++++++++++------ src/corelib/kernel/qsharedmemory.h | 2 + src/corelib/kernel/qsharedmemory_p.h | 1 + src/corelib/kernel/qsharedmemory_symbian.cpp | 11 +- src/corelib/kernel/qsharedmemory_unix.cpp | 15 ++- src/corelib/kernel/qsharedmemory_win.cpp | 13 +-- .../auto/qtipc/qsharedmemory/tst_qsharedmemory.cpp | 26 +++-- 7 files changed, 123 insertions(+), 65 deletions(-) diff --git a/src/corelib/kernel/qsharedmemory.cpp b/src/corelib/kernel/qsharedmemory.cpp index fe93ebc..d5f4052 100644 --- a/src/corelib/kernel/qsharedmemory.cpp +++ b/src/corelib/kernel/qsharedmemory.cpp @@ -142,9 +142,12 @@ QSharedMemoryPrivate::makePlatformSafeKey(const QString &key, remain. Do not mix using QtSharedMemory and QSharedMemory. Port everything to QSharedMemory. - \warning QSharedMemory changes the key in a Qt-specific way. - It is therefore currently not possible to use the shared memory of - non-Qt applications with QSharedMemory. + \warning QSharedMemory changes the key in a Qt-specific way, unless otherwise + specified. Interoperation with non-Qt applications is achieved by first creating + a default shared memory with QSharedMemory() and then setting a native key with + setNativeKey(). When using native keys, shared memory is not protected against + multiple accesses on it (e.g. unable to lock()) and a user-defined mechanism + should be used to achieve a such protection. */ /*! @@ -153,8 +156,8 @@ QSharedMemoryPrivate::makePlatformSafeKey(const QString &key, Constructs a shared memory object with the given \a parent. The shared memory object's key is not set by the constructor, so the shared memory object does not have an underlying shared memory - segment attached. The key must be set with setKey() before create() - or attach() can be used. + segment attached. The key must be set with setKey() or setNativeKey() + before create() or attach() can be used. \sa setKey() */ @@ -191,24 +194,52 @@ QSharedMemory::~QSharedMemory() } /*! - Sets a new \a key for this shared memory object. If \a key and the - current key are the same, the function returns without doing - anything. If the shared memory object is attached to an underlying - shared memory segment, it will \l {detach()} {detach} from it before - setting the new key. This function does not do an attach(). - - \sa key() isAttached() - */ + Sets a new \a key for this shared memory object. + The \a key is first converted to a unicode string accepted by all supported platforms, + (see nativeKey()). If \a key and the current key are the same, the function returns + without doing anything. If the shared memory object is attached to an underlying + shared memory segment, it will \l {detach()} {detach} from it before setting the new key. + This function does not do an attach(). + + \sa key() nativeKey() isAttached() +*/ void QSharedMemory::setKey(const QString &key) { Q_D(QSharedMemory); - if (key == d->key) + if (key == d->key && d->makePlatformSafeKey(key) == d->nativeKey) return; if (isAttached()) detach(); d->cleanHandle(); d->key = key; + d->nativeKey = d->makePlatformSafeKey(key); +} + +/*! + \since 4.7 + Sets a new native \a key for this shared memory object. + The specified \a key is used as-is, without any conversion. The \a key has to be + in a valid format for the current operating system (e.g. under Unix a valid \a key + corresponds to a filename). Be aware that the application might not be portable. + This function returns without doing anything if the \a key equals the current + native key. If the shared memory object is attached to an underlying shared memory + segment, it will \l {detach()} {detach} from it before setting the new key. + This function does not do an attach(). + + \sa nativeKey() key() isAttached() +*/ +void QSharedMemory::setNativeKey(const QString &key) +{ + Q_D(QSharedMemory); + if (key == d->nativeKey && d->key.isNull()) + return; + + if (isAttached()) + detach(); + d->cleanHandle(); + d->key = QString(); + d->nativeKey = key; } bool QSharedMemoryPrivate::initKey() @@ -251,13 +282,14 @@ bool QSharedMemoryPrivate::initKey() } /*! - Returns the key assigned to this shared memory. The key is the - identifier used by the operating system to identify the shared - memory segment. When QSharedMemory is used for interprocess - communication, the key is how each process attaches to the shared - memory segment through which the IPC occurs. - - \sa setKey() + Returns the key assigned with setKey() to this shared memory. + The key is the identifier used by Qt applications to identify the shared + memory segment. The actual native key used by the operating system is returned + by nativeKey(). A null string is returned if the key was specified using setNativeKey(). + When QSharedMemory is used for interprocess communication, the key is how each + process attaches to the shared memory segment through which the IPC occurs. + + \sa setKey() setNativeKey() */ QString QSharedMemory::key() const { @@ -266,13 +298,31 @@ QString QSharedMemory::key() const } /*! - Creates a shared memory segment of \a size bytes with the key passed - to the constructor or set with setKey(), attaches to the new shared - memory segment with the given access \a mode, and returns \tt true. - If a shared memory segment identified by the key already exists, the - attach operation is not performed, and \tt false is returned. When - the return value is \tt false, call error() to determine which error - occurred. + \since 4.7 + Returns the native key assigned with setKey() or setNativeKey() to this shared memory. + The native key is the identifier used by the operating system to identify the + shared memory segment. When using setKey(), the native key is obtained by + converting the specified key into a format accepted by all supported platforms. + When using setNativeKey(), the native key actually corresponds to the specified key + without any conversion. When QSharedMemory is used for interprocess communication, + the key is how each process attaches to the shared memory segment through which + the IPC occurs. + + \sa setKey() setNativeKey() +*/ +QString QSharedMemory::nativeKey() const +{ + Q_D(const QSharedMemory); + return d->nativeKey; +} + +/*! + Creates a shared memory segment of \a size bytes with the key passed to the + constructor, set with setKey() or set with setNativeKey(), then attaches to + the new shared memory segment with the given access \a mode and returns + \tt true. If a shared memory segment identified by the key already exists, + the attach operation is not performed and \tt false is returned. When the + return value is \tt false, call error() to determine which error occurred. \sa error() */ @@ -294,7 +344,7 @@ bool QSharedMemory::create(int size, AccessMode mode) QString function = QLatin1String("QSharedMemory::create"); #ifndef QT_NO_SYSTEMSEMAPHORE QSharedMemoryLocker lock(this); - if (!d->tryLocker(&lock, function)) + if (!d->key.isNull() && !d->tryLocker(&lock, function)) return false; #endif @@ -338,7 +388,7 @@ int QSharedMemory::size() const /*! Attempts to attach the process to the shared memory segment identified by the key that was passed to the constructor or to a - call to setKey(). The access \a mode is \l {QSharedMemory::} + call to setKey() or setNativeKey(). The access \a mode is \l {QSharedMemory::} {ReadWrite} by default. It can also be \l {QSharedMemory::} {ReadOnly}. Returns true if the attach operation is successful. If false is returned, call error() to determine which error occurred. @@ -355,7 +405,7 @@ bool QSharedMemory::attach(AccessMode mode) return false; #ifndef QT_NO_SYSTEMSEMAPHORE QSharedMemoryLocker lock(this); - if (!d->tryLocker(&lock, QLatin1String("QSharedMemory::attach"))) + if (!d->key.isNull() && !d->tryLocker(&lock, QLatin1String("QSharedMemory::attach"))) return false; #endif @@ -395,7 +445,7 @@ bool QSharedMemory::detach() #ifndef QT_NO_SYSTEMSEMAPHORE QSharedMemoryLocker lock(this); - if (!d->tryLocker(&lock, QLatin1String("QSharedMemory::detach"))) + if (!d->key.isNull() && !d->tryLocker(&lock, QLatin1String("QSharedMemory::detach"))) return false; #endif @@ -451,9 +501,9 @@ const void *QSharedMemory::data() const by this process and returns true. If another process has locked the segment, this function blocks until the lock is released. Then it acquires the lock and returns true. If this function returns false, - it means either that you have ignored a false return from create() - or attach(), or that QSystemSemaphore::acquire() failed due to an - unknown system error. + it means that you have ignored a false return from create() or attach(), + that you have set the key with setNativeKey() or that + QSystemSemaphore::acquire() failed due to an unknown system error. \sa unlock(), data(), QSystemSemaphore::acquire() */ diff --git a/src/corelib/kernel/qsharedmemory.h b/src/corelib/kernel/qsharedmemory.h index fba939c..5673f43 100644 --- a/src/corelib/kernel/qsharedmemory.h +++ b/src/corelib/kernel/qsharedmemory.h @@ -85,6 +85,8 @@ public: void setKey(const QString &key); QString key() const; + void setNativeKey(const QString &key); + QString nativeKey() const; bool create(int size, AccessMode mode = ReadWrite); int size() const; diff --git a/src/corelib/kernel/qsharedmemory_p.h b/src/corelib/kernel/qsharedmemory_p.h index a52f8b3..632a6e9 100644 --- a/src/corelib/kernel/qsharedmemory_p.h +++ b/src/corelib/kernel/qsharedmemory_p.h @@ -122,6 +122,7 @@ public: void *memory; int size; QString key; + QString nativeKey; QSharedMemory::SharedMemoryError error; QString errorString; #ifndef QT_NO_SYSTEMSEMAPHORE diff --git a/src/corelib/kernel/qsharedmemory_symbian.cpp b/src/corelib/kernel/qsharedmemory_symbian.cpp index 9b84eb56..091c2b5 100644 --- a/src/corelib/kernel/qsharedmemory_symbian.cpp +++ b/src/corelib/kernel/qsharedmemory_symbian.cpp @@ -107,16 +107,14 @@ bool QSharedMemoryPrivate::cleanHandle() bool QSharedMemoryPrivate::create(int size) { - // Get a windows acceptable key - QString safeKey = makePlatformSafeKey(key); QString function = QLatin1String("QSharedMemory::create"); - if (safeKey.isEmpty()) { + if (nativeKey.isEmpty()) { error = QSharedMemory::KeyError; errorString = QSharedMemory::tr("%1: key error").arg(function); return false; } - TPtrC ptr(qt_QString2TPtrC(safeKey)); + TPtrC ptr(qt_QString2TPtrC(nativeKey)); TInt err = chunk.CreateGlobal(ptr, size, size); @@ -136,14 +134,13 @@ bool QSharedMemoryPrivate::attach(QSharedMemory::AccessMode /* mode */) // Grab a pointer to the memory block if (!chunk.Handle()) { QString function = QLatin1String("QSharedMemory::handle"); - QString safeKey = makePlatformSafeKey(key); - if (safeKey.isEmpty()) { + if (nativeKey.isEmpty()) { error = QSharedMemory::KeyError; errorString = QSharedMemory::tr("%1: unable to make key").arg(function); return false; } - TPtrC ptr(qt_QString2TPtrC(safeKey)); + TPtrC ptr(qt_QString2TPtrC(nativeKey)); TInt err = KErrNoMemory; diff --git a/src/corelib/kernel/qsharedmemory_unix.cpp b/src/corelib/kernel/qsharedmemory_unix.cpp index a5f79c2..064979b 100644 --- a/src/corelib/kernel/qsharedmemory_unix.cpp +++ b/src/corelib/kernel/qsharedmemory_unix.cpp @@ -116,21 +116,20 @@ key_t QSharedMemoryPrivate::handle() return unix_key; // don't allow making handles on empty keys - if (key.isEmpty()) { + if (nativeKey.isEmpty()) { errorString = QSharedMemory::tr("%1: key is empty").arg(QLatin1String("QSharedMemory::handle:")); error = QSharedMemory::KeyError; return 0; } // ftok requires that an actual file exists somewhere - QString fileName = makePlatformSafeKey(key); - if (!QFile::exists(fileName)) { + if (!QFile::exists(nativeKey)) { errorString = QSharedMemory::tr("%1: UNIX key file doesn't exist").arg(QLatin1String("QSharedMemory::handle:")); error = QSharedMemory::NotFound; return 0; } - unix_key = ftok(QFile::encodeName(fileName).constData(), 'Q'); + unix_key = ftok(QFile::encodeName(nativeKey).constData(), 'Q'); if (-1 == unix_key) { errorString = QSharedMemory::tr("%1: ftok failed").arg(QLatin1String("QSharedMemory::handle:")); error = QSharedMemory::KeyError; @@ -181,7 +180,7 @@ bool QSharedMemoryPrivate::create(int size) { // build file if needed bool createdFile = false; - int built = createUnixKeyFile(makePlatformSafeKey(key)); + int built = createUnixKeyFile(nativeKey); if (built == -1) { errorString = QSharedMemory::tr("%1: unable to make key").arg(QLatin1String("QSharedMemory::handle:")); error = QSharedMemory::KeyError; @@ -194,7 +193,7 @@ bool QSharedMemoryPrivate::create(int size) // get handle if (!handle()) { if (createdFile) - QFile::remove(makePlatformSafeKey(key)); + QFile::remove(nativeKey); return false; } @@ -210,7 +209,7 @@ bool QSharedMemoryPrivate::create(int size) setErrorString(function); } if (createdFile && error != QSharedMemory::AlreadyExists) - QFile::remove(makePlatformSafeKey(key)); + QFile::remove(nativeKey); return false; } @@ -295,7 +294,7 @@ bool QSharedMemoryPrivate::detach() } // remove file - if (!QFile::remove(makePlatformSafeKey(key))) + if (!QFile::remove(nativeKey)) return false; } return true; diff --git a/src/corelib/kernel/qsharedmemory_win.cpp b/src/corelib/kernel/qsharedmemory_win.cpp index 0f5fdc7..0cdb123 100644 --- a/src/corelib/kernel/qsharedmemory_win.cpp +++ b/src/corelib/kernel/qsharedmemory_win.cpp @@ -99,18 +99,17 @@ HANDLE QSharedMemoryPrivate::handle() { if (!hand) { QString function = QLatin1String("QSharedMemory::handle"); - QString safeKey = makePlatformSafeKey(key); - if (safeKey.isEmpty()) { + if (nativeKey.isEmpty()) { error = QSharedMemory::KeyError; errorString = QSharedMemory::tr("%1: unable to make key").arg(function); return false; } #ifndef Q_OS_WINCE - hand = OpenFileMapping(FILE_MAP_ALL_ACCESS, false, (wchar_t*)safeKey.utf16()); + hand = OpenFileMapping(FILE_MAP_ALL_ACCESS, false, (wchar_t*)nativeKey.utf16()); #else // This works for opening a mapping too, but always opens it with read/write access in // attach as it seems. - hand = CreateFileMapping(INVALID_HANDLE_VALUE, 0, PAGE_READWRITE, 0, 0, (wchar_t*)safeKey.utf16()); + hand = CreateFileMapping(INVALID_HANDLE_VALUE, 0, PAGE_READWRITE, 0, 0, (wchar_t*)nativeKey.utf16()); #endif if (!hand) { setErrorString(function); @@ -133,17 +132,15 @@ bool QSharedMemoryPrivate::cleanHandle() bool QSharedMemoryPrivate::create(int size) { - // Get a windows acceptable key - QString safeKey = makePlatformSafeKey(key); QString function = QLatin1String("QSharedMemory::create"); - if (safeKey.isEmpty()) { + if (nativeKey.isEmpty()) { error = QSharedMemory::KeyError; errorString = QSharedMemory::tr("%1: key error").arg(function); return false; } // Create the file mapping. - hand = CreateFileMapping(INVALID_HANDLE_VALUE, 0, PAGE_READWRITE, 0, size, (wchar_t*)safeKey.utf16()); + hand = CreateFileMapping(INVALID_HANDLE_VALUE, 0, PAGE_READWRITE, 0, size, (wchar_t*)nativeKey.utf16()); setErrorString(function); // hand is valid when it already exists unlike unix so explicitly check diff --git a/tests/auto/qtipc/qsharedmemory/tst_qsharedmemory.cpp b/tests/auto/qtipc/qsharedmemory/tst_qsharedmemory.cpp index 1f65ae7..dc071ab 100644 --- a/tests/auto/qtipc/qsharedmemory/tst_qsharedmemory.cpp +++ b/tests/auto/qtipc/qsharedmemory/tst_qsharedmemory.cpp @@ -225,11 +225,17 @@ void tst_QSharedMemory::key_data() { QTest::addColumn("constructorKey"); QTest::addColumn("setKey"); - - QTest::newRow("null, null") << QString() << QString(); - QTest::newRow("null, one") << QString() << QString("one"); - QTest::newRow("one, two") << QString("one") << QString("two"); - QTest::newRow("invalid") << QString("o/e") << QString("t/o"); + QTest::addColumn("setNativeKey"); + + QTest::newRow("null, null, null") << QString() << QString() << QString(); + QTest::newRow("one, null, null") << QString("one") << QString() << QString(); + QTest::newRow("null, one, null") << QString() << QString("one") << QString(); + QTest::newRow("null, null, one") << QString() << QString() << QString("one"); + QTest::newRow("one, two, null") << QString("one") << QString("two") << QString(); + QTest::newRow("one, null, two") << QString("one") << QString() << QString("two"); + QTest::newRow("null, one, two") << QString() << QString("one") << QString("two"); + QTest::newRow("one, two, three") << QString("one") << QString("two") << QString("three"); + QTest::newRow("invalid") << QString("o/e") << QString("t/o") << QString("|x"); } /*! @@ -239,11 +245,17 @@ void tst_QSharedMemory::key() { QFETCH(QString, constructorKey); QFETCH(QString, setKey); + QFETCH(QString, setNativeKey); QSharedMemory sm(constructorKey); QCOMPARE(sm.key(), constructorKey); + QCOMPARE(sm.nativeKey().isEmpty(), constructorKey.isEmpty()); sm.setKey(setKey); QCOMPARE(sm.key(), setKey); + QCOMPARE(sm.nativeKey().isEmpty(), setKey.isEmpty()); + sm.setNativeKey(setNativeKey); + QVERIFY(sm.key().isNull()); + QCOMPARE(sm.nativeKey(), setNativeKey); QCOMPARE(sm.isAttached(), false); QCOMPARE(sm.error(), QSharedMemory::NoError); @@ -262,7 +274,7 @@ void tst_QSharedMemory::create_data() QTest::addColumn("error"); QTest::newRow("null key") << QString() << 1024 - << false << QSharedMemory::LockError; + << false << QSharedMemory::KeyError; QTest::newRow("-1 size") << QString("negsize") << -1 << false << QSharedMemory::InvalidSize; QTest::newRow("nor size") << QString("norsize") << 1024 @@ -302,7 +314,7 @@ void tst_QSharedMemory::attach_data() QTest::addColumn("exists"); QTest::addColumn("error"); - QTest::newRow("null key") << QString() << false << QSharedMemory::LockError; + QTest::newRow("null key") << QString() << false << QSharedMemory::KeyError; QTest::newRow("doesn't exists") << QString("doesntexists") << false << QSharedMemory::NotFound; QTest::newRow("already exists") << QString(EXISTING_SHARE) << true << QSharedMemory::NoError; } -- cgit v0.12 From 26f3dbf0e20dbaf131bbbb35440b1ecb40b3f405 Mon Sep 17 00:00:00 2001 From: Andreas Aardal Hanssen Date: Wed, 26 May 2010 14:00:15 +0200 Subject: Improved documentation for QSharedMemory's key/setKey functions. --- src/corelib/kernel/qsharedmemory.cpp | 64 +++++++++++++++++++++--------------- 1 file changed, 37 insertions(+), 27 deletions(-) diff --git a/src/corelib/kernel/qsharedmemory.cpp b/src/corelib/kernel/qsharedmemory.cpp index d5f4052..0782ffe 100644 --- a/src/corelib/kernel/qsharedmemory.cpp +++ b/src/corelib/kernel/qsharedmemory.cpp @@ -194,11 +194,15 @@ QSharedMemory::~QSharedMemory() } /*! - Sets a new \a key for this shared memory object. - The \a key is first converted to a unicode string accepted by all supported platforms, - (see nativeKey()). If \a key and the current key are the same, the function returns - without doing anything. If the shared memory object is attached to an underlying - shared memory segment, it will \l {detach()} {detach} from it before setting the new key. + Sets the platform independent \a key for this shared memory object. If \a key + is the same as the current key, the function returns without doing anything. + + You can call key() to retrieve the platform independent key. Internally, + QSharedMemory converts this key into a platform specific key. If you instead + call nativeKey(), you will get the platform specific, converted key. + + If the shared memory object is attached to an underlying shared memory + segment, it will \l {detach()} {detach} from it before setting the new key. This function does not do an attach(). \sa key() nativeKey() isAttached() @@ -217,16 +221,22 @@ void QSharedMemory::setKey(const QString &key) } /*! - \since 4.7 - Sets a new native \a key for this shared memory object. - The specified \a key is used as-is, without any conversion. The \a key has to be - in a valid format for the current operating system (e.g. under Unix a valid \a key - corresponds to a filename). Be aware that the application might not be portable. - This function returns without doing anything if the \a key equals the current - native key. If the shared memory object is attached to an underlying shared memory + \since 4.8 + + Sets the native, platform specific, \a key for this shared memory object. If + \a key is the same as the current native key, the function returns without + doing anything. If all you want is to assign a key to a segment, you should + call setKey() instead. + + You can call nativeKey() to retrieve the native key. If a native key has been + assigned, calling key() will return a null string. + + If the shared memory object is attached to an underlying shared memory segment, it will \l {detach()} {detach} from it before setting the new key. This function does not do an attach(). + The application will not be portable if you set a native key. + \sa nativeKey() key() isAttached() */ void QSharedMemory::setNativeKey(const QString &key) @@ -282,12 +292,13 @@ bool QSharedMemoryPrivate::initKey() } /*! - Returns the key assigned with setKey() to this shared memory. - The key is the identifier used by Qt applications to identify the shared - memory segment. The actual native key used by the operating system is returned - by nativeKey(). A null string is returned if the key was specified using setNativeKey(). - When QSharedMemory is used for interprocess communication, the key is how each - process attaches to the shared memory segment through which the IPC occurs. + Returns the key assigned with setKey() to this shared memory, or a null key + if no key has been assigned, or if the segment is using a nativeKey(). The + key is the identifier used by Qt applications to identify the shared memory + segment. + + You can find the native, platform specific, key used by the operating system + by calling nativeKey(). \sa setKey() setNativeKey() */ @@ -298,15 +309,14 @@ QString QSharedMemory::key() const } /*! - \since 4.7 - Returns the native key assigned with setKey() or setNativeKey() to this shared memory. - The native key is the identifier used by the operating system to identify the - shared memory segment. When using setKey(), the native key is obtained by - converting the specified key into a format accepted by all supported platforms. - When using setNativeKey(), the native key actually corresponds to the specified key - without any conversion. When QSharedMemory is used for interprocess communication, - the key is how each process attaches to the shared memory segment through which - the IPC occurs. + \since 4.8 + + Returns the native, platform specific, key for this shared memory object. The + native key is the identifier used by the operating system to identify the + shared memory segment. + + You can use the native key to access shared memory segments that have not + been created by Qt, or to grant shared memory access to non-Qt applications. \sa setKey() setNativeKey() */ -- cgit v0.12 From fe08f4841cd9928e7c9ad0b797ede13f473b51b7 Mon Sep 17 00:00:00 2001 From: Robin Burchell Date: Mon, 31 May 2010 09:21:04 +0200 Subject: Fix a simple mistake in QXmlStreamReader::atEnd() docs. Merge-request: 655 Reviewed-by: Andreas Aardal Hanssen --- src/corelib/xml/qxmlstream.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/corelib/xml/qxmlstream.cpp b/src/corelib/xml/qxmlstream.cpp index ae12007..853f311 100644 --- a/src/corelib/xml/qxmlstream.cpp +++ b/src/corelib/xml/qxmlstream.cpp @@ -560,7 +560,7 @@ void QXmlStreamReader::clear() chunk of XML can be added with addData(), if the XML is being read from a QByteArray, or by waiting for more data to arrive if the XML is being read from a QIODevice. Either way, atEnd() will - return false once more adata is available. + return false once more data is available. \sa hasError(), error(), device(), QIODevice::atEnd() */ -- cgit v0.12 From 8c8f7639c1643473c5c10d4c5b9d3016c9cf070d Mon Sep 17 00:00:00 2001 From: Andreas Aardal Hanssen Date: Mon, 31 May 2010 10:10:57 +0200 Subject: Revert "Improved documentation for QSharedMemory's key/setKey functions." This reverts commit 26f3dbf0e20dbaf131bbbb35440b1ecb40b3f405. --- src/corelib/kernel/qsharedmemory.cpp | 64 +++++++++++++++--------------------- 1 file changed, 27 insertions(+), 37 deletions(-) diff --git a/src/corelib/kernel/qsharedmemory.cpp b/src/corelib/kernel/qsharedmemory.cpp index 0782ffe..d5f4052 100644 --- a/src/corelib/kernel/qsharedmemory.cpp +++ b/src/corelib/kernel/qsharedmemory.cpp @@ -194,15 +194,11 @@ QSharedMemory::~QSharedMemory() } /*! - Sets the platform independent \a key for this shared memory object. If \a key - is the same as the current key, the function returns without doing anything. - - You can call key() to retrieve the platform independent key. Internally, - QSharedMemory converts this key into a platform specific key. If you instead - call nativeKey(), you will get the platform specific, converted key. - - If the shared memory object is attached to an underlying shared memory - segment, it will \l {detach()} {detach} from it before setting the new key. + Sets a new \a key for this shared memory object. + The \a key is first converted to a unicode string accepted by all supported platforms, + (see nativeKey()). If \a key and the current key are the same, the function returns + without doing anything. If the shared memory object is attached to an underlying + shared memory segment, it will \l {detach()} {detach} from it before setting the new key. This function does not do an attach(). \sa key() nativeKey() isAttached() @@ -221,22 +217,16 @@ void QSharedMemory::setKey(const QString &key) } /*! - \since 4.8 - - Sets the native, platform specific, \a key for this shared memory object. If - \a key is the same as the current native key, the function returns without - doing anything. If all you want is to assign a key to a segment, you should - call setKey() instead. - - You can call nativeKey() to retrieve the native key. If a native key has been - assigned, calling key() will return a null string. - - If the shared memory object is attached to an underlying shared memory + \since 4.7 + Sets a new native \a key for this shared memory object. + The specified \a key is used as-is, without any conversion. The \a key has to be + in a valid format for the current operating system (e.g. under Unix a valid \a key + corresponds to a filename). Be aware that the application might not be portable. + This function returns without doing anything if the \a key equals the current + native key. If the shared memory object is attached to an underlying shared memory segment, it will \l {detach()} {detach} from it before setting the new key. This function does not do an attach(). - The application will not be portable if you set a native key. - \sa nativeKey() key() isAttached() */ void QSharedMemory::setNativeKey(const QString &key) @@ -292,13 +282,12 @@ bool QSharedMemoryPrivate::initKey() } /*! - Returns the key assigned with setKey() to this shared memory, or a null key - if no key has been assigned, or if the segment is using a nativeKey(). The - key is the identifier used by Qt applications to identify the shared memory - segment. - - You can find the native, platform specific, key used by the operating system - by calling nativeKey(). + Returns the key assigned with setKey() to this shared memory. + The key is the identifier used by Qt applications to identify the shared + memory segment. The actual native key used by the operating system is returned + by nativeKey(). A null string is returned if the key was specified using setNativeKey(). + When QSharedMemory is used for interprocess communication, the key is how each + process attaches to the shared memory segment through which the IPC occurs. \sa setKey() setNativeKey() */ @@ -309,14 +298,15 @@ QString QSharedMemory::key() const } /*! - \since 4.8 - - Returns the native, platform specific, key for this shared memory object. The - native key is the identifier used by the operating system to identify the - shared memory segment. - - You can use the native key to access shared memory segments that have not - been created by Qt, or to grant shared memory access to non-Qt applications. + \since 4.7 + Returns the native key assigned with setKey() or setNativeKey() to this shared memory. + The native key is the identifier used by the operating system to identify the + shared memory segment. When using setKey(), the native key is obtained by + converting the specified key into a format accepted by all supported platforms. + When using setNativeKey(), the native key actually corresponds to the specified key + without any conversion. When QSharedMemory is used for interprocess communication, + the key is how each process attaches to the shared memory segment through which + the IPC occurs. \sa setKey() setNativeKey() */ -- cgit v0.12 From 3026f8ce811e8cebc48e49f732344cc13e107cc6 Mon Sep 17 00:00:00 2001 From: Andreas Aardal Hanssen Date: Mon, 31 May 2010 10:11:05 +0200 Subject: Revert "Added native key support to QSharedMemory API." This reverts commit 9b4ff3deb28b3d642dc4480207f2f23841cf26e9. --- src/corelib/kernel/qsharedmemory.cpp | 120 ++++++--------------- src/corelib/kernel/qsharedmemory.h | 2 - src/corelib/kernel/qsharedmemory_p.h | 1 - src/corelib/kernel/qsharedmemory_symbian.cpp | 11 +- src/corelib/kernel/qsharedmemory_unix.cpp | 15 +-- src/corelib/kernel/qsharedmemory_win.cpp | 13 ++- .../auto/qtipc/qsharedmemory/tst_qsharedmemory.cpp | 26 ++--- 7 files changed, 65 insertions(+), 123 deletions(-) diff --git a/src/corelib/kernel/qsharedmemory.cpp b/src/corelib/kernel/qsharedmemory.cpp index d5f4052..fe93ebc 100644 --- a/src/corelib/kernel/qsharedmemory.cpp +++ b/src/corelib/kernel/qsharedmemory.cpp @@ -142,12 +142,9 @@ QSharedMemoryPrivate::makePlatformSafeKey(const QString &key, remain. Do not mix using QtSharedMemory and QSharedMemory. Port everything to QSharedMemory. - \warning QSharedMemory changes the key in a Qt-specific way, unless otherwise - specified. Interoperation with non-Qt applications is achieved by first creating - a default shared memory with QSharedMemory() and then setting a native key with - setNativeKey(). When using native keys, shared memory is not protected against - multiple accesses on it (e.g. unable to lock()) and a user-defined mechanism - should be used to achieve a such protection. + \warning QSharedMemory changes the key in a Qt-specific way. + It is therefore currently not possible to use the shared memory of + non-Qt applications with QSharedMemory. */ /*! @@ -156,8 +153,8 @@ QSharedMemoryPrivate::makePlatformSafeKey(const QString &key, Constructs a shared memory object with the given \a parent. The shared memory object's key is not set by the constructor, so the shared memory object does not have an underlying shared memory - segment attached. The key must be set with setKey() or setNativeKey() - before create() or attach() can be used. + segment attached. The key must be set with setKey() before create() + or attach() can be used. \sa setKey() */ @@ -194,52 +191,24 @@ QSharedMemory::~QSharedMemory() } /*! - Sets a new \a key for this shared memory object. - The \a key is first converted to a unicode string accepted by all supported platforms, - (see nativeKey()). If \a key and the current key are the same, the function returns - without doing anything. If the shared memory object is attached to an underlying - shared memory segment, it will \l {detach()} {detach} from it before setting the new key. - This function does not do an attach(). - - \sa key() nativeKey() isAttached() -*/ + Sets a new \a key for this shared memory object. If \a key and the + current key are the same, the function returns without doing + anything. If the shared memory object is attached to an underlying + shared memory segment, it will \l {detach()} {detach} from it before + setting the new key. This function does not do an attach(). + + \sa key() isAttached() + */ void QSharedMemory::setKey(const QString &key) { Q_D(QSharedMemory); - if (key == d->key && d->makePlatformSafeKey(key) == d->nativeKey) + if (key == d->key) return; if (isAttached()) detach(); d->cleanHandle(); d->key = key; - d->nativeKey = d->makePlatformSafeKey(key); -} - -/*! - \since 4.7 - Sets a new native \a key for this shared memory object. - The specified \a key is used as-is, without any conversion. The \a key has to be - in a valid format for the current operating system (e.g. under Unix a valid \a key - corresponds to a filename). Be aware that the application might not be portable. - This function returns without doing anything if the \a key equals the current - native key. If the shared memory object is attached to an underlying shared memory - segment, it will \l {detach()} {detach} from it before setting the new key. - This function does not do an attach(). - - \sa nativeKey() key() isAttached() -*/ -void QSharedMemory::setNativeKey(const QString &key) -{ - Q_D(QSharedMemory); - if (key == d->nativeKey && d->key.isNull()) - return; - - if (isAttached()) - detach(); - d->cleanHandle(); - d->key = QString(); - d->nativeKey = key; } bool QSharedMemoryPrivate::initKey() @@ -282,14 +251,13 @@ bool QSharedMemoryPrivate::initKey() } /*! - Returns the key assigned with setKey() to this shared memory. - The key is the identifier used by Qt applications to identify the shared - memory segment. The actual native key used by the operating system is returned - by nativeKey(). A null string is returned if the key was specified using setNativeKey(). - When QSharedMemory is used for interprocess communication, the key is how each - process attaches to the shared memory segment through which the IPC occurs. - - \sa setKey() setNativeKey() + Returns the key assigned to this shared memory. The key is the + identifier used by the operating system to identify the shared + memory segment. When QSharedMemory is used for interprocess + communication, the key is how each process attaches to the shared + memory segment through which the IPC occurs. + + \sa setKey() */ QString QSharedMemory::key() const { @@ -298,31 +266,13 @@ QString QSharedMemory::key() const } /*! - \since 4.7 - Returns the native key assigned with setKey() or setNativeKey() to this shared memory. - The native key is the identifier used by the operating system to identify the - shared memory segment. When using setKey(), the native key is obtained by - converting the specified key into a format accepted by all supported platforms. - When using setNativeKey(), the native key actually corresponds to the specified key - without any conversion. When QSharedMemory is used for interprocess communication, - the key is how each process attaches to the shared memory segment through which - the IPC occurs. - - \sa setKey() setNativeKey() -*/ -QString QSharedMemory::nativeKey() const -{ - Q_D(const QSharedMemory); - return d->nativeKey; -} - -/*! - Creates a shared memory segment of \a size bytes with the key passed to the - constructor, set with setKey() or set with setNativeKey(), then attaches to - the new shared memory segment with the given access \a mode and returns - \tt true. If a shared memory segment identified by the key already exists, - the attach operation is not performed and \tt false is returned. When the - return value is \tt false, call error() to determine which error occurred. + Creates a shared memory segment of \a size bytes with the key passed + to the constructor or set with setKey(), attaches to the new shared + memory segment with the given access \a mode, and returns \tt true. + If a shared memory segment identified by the key already exists, the + attach operation is not performed, and \tt false is returned. When + the return value is \tt false, call error() to determine which error + occurred. \sa error() */ @@ -344,7 +294,7 @@ bool QSharedMemory::create(int size, AccessMode mode) QString function = QLatin1String("QSharedMemory::create"); #ifndef QT_NO_SYSTEMSEMAPHORE QSharedMemoryLocker lock(this); - if (!d->key.isNull() && !d->tryLocker(&lock, function)) + if (!d->tryLocker(&lock, function)) return false; #endif @@ -388,7 +338,7 @@ int QSharedMemory::size() const /*! Attempts to attach the process to the shared memory segment identified by the key that was passed to the constructor or to a - call to setKey() or setNativeKey(). The access \a mode is \l {QSharedMemory::} + call to setKey(). The access \a mode is \l {QSharedMemory::} {ReadWrite} by default. It can also be \l {QSharedMemory::} {ReadOnly}. Returns true if the attach operation is successful. If false is returned, call error() to determine which error occurred. @@ -405,7 +355,7 @@ bool QSharedMemory::attach(AccessMode mode) return false; #ifndef QT_NO_SYSTEMSEMAPHORE QSharedMemoryLocker lock(this); - if (!d->key.isNull() && !d->tryLocker(&lock, QLatin1String("QSharedMemory::attach"))) + if (!d->tryLocker(&lock, QLatin1String("QSharedMemory::attach"))) return false; #endif @@ -445,7 +395,7 @@ bool QSharedMemory::detach() #ifndef QT_NO_SYSTEMSEMAPHORE QSharedMemoryLocker lock(this); - if (!d->key.isNull() && !d->tryLocker(&lock, QLatin1String("QSharedMemory::detach"))) + if (!d->tryLocker(&lock, QLatin1String("QSharedMemory::detach"))) return false; #endif @@ -501,9 +451,9 @@ const void *QSharedMemory::data() const by this process and returns true. If another process has locked the segment, this function blocks until the lock is released. Then it acquires the lock and returns true. If this function returns false, - it means that you have ignored a false return from create() or attach(), - that you have set the key with setNativeKey() or that - QSystemSemaphore::acquire() failed due to an unknown system error. + it means either that you have ignored a false return from create() + or attach(), or that QSystemSemaphore::acquire() failed due to an + unknown system error. \sa unlock(), data(), QSystemSemaphore::acquire() */ diff --git a/src/corelib/kernel/qsharedmemory.h b/src/corelib/kernel/qsharedmemory.h index 5673f43..fba939c 100644 --- a/src/corelib/kernel/qsharedmemory.h +++ b/src/corelib/kernel/qsharedmemory.h @@ -85,8 +85,6 @@ public: void setKey(const QString &key); QString key() const; - void setNativeKey(const QString &key); - QString nativeKey() const; bool create(int size, AccessMode mode = ReadWrite); int size() const; diff --git a/src/corelib/kernel/qsharedmemory_p.h b/src/corelib/kernel/qsharedmemory_p.h index 632a6e9..a52f8b3 100644 --- a/src/corelib/kernel/qsharedmemory_p.h +++ b/src/corelib/kernel/qsharedmemory_p.h @@ -122,7 +122,6 @@ public: void *memory; int size; QString key; - QString nativeKey; QSharedMemory::SharedMemoryError error; QString errorString; #ifndef QT_NO_SYSTEMSEMAPHORE diff --git a/src/corelib/kernel/qsharedmemory_symbian.cpp b/src/corelib/kernel/qsharedmemory_symbian.cpp index 091c2b5..9b84eb56 100644 --- a/src/corelib/kernel/qsharedmemory_symbian.cpp +++ b/src/corelib/kernel/qsharedmemory_symbian.cpp @@ -107,14 +107,16 @@ bool QSharedMemoryPrivate::cleanHandle() bool QSharedMemoryPrivate::create(int size) { + // Get a windows acceptable key + QString safeKey = makePlatformSafeKey(key); QString function = QLatin1String("QSharedMemory::create"); - if (nativeKey.isEmpty()) { + if (safeKey.isEmpty()) { error = QSharedMemory::KeyError; errorString = QSharedMemory::tr("%1: key error").arg(function); return false; } - TPtrC ptr(qt_QString2TPtrC(nativeKey)); + TPtrC ptr(qt_QString2TPtrC(safeKey)); TInt err = chunk.CreateGlobal(ptr, size, size); @@ -134,13 +136,14 @@ bool QSharedMemoryPrivate::attach(QSharedMemory::AccessMode /* mode */) // Grab a pointer to the memory block if (!chunk.Handle()) { QString function = QLatin1String("QSharedMemory::handle"); - if (nativeKey.isEmpty()) { + QString safeKey = makePlatformSafeKey(key); + if (safeKey.isEmpty()) { error = QSharedMemory::KeyError; errorString = QSharedMemory::tr("%1: unable to make key").arg(function); return false; } - TPtrC ptr(qt_QString2TPtrC(nativeKey)); + TPtrC ptr(qt_QString2TPtrC(safeKey)); TInt err = KErrNoMemory; diff --git a/src/corelib/kernel/qsharedmemory_unix.cpp b/src/corelib/kernel/qsharedmemory_unix.cpp index 064979b..a5f79c2 100644 --- a/src/corelib/kernel/qsharedmemory_unix.cpp +++ b/src/corelib/kernel/qsharedmemory_unix.cpp @@ -116,20 +116,21 @@ key_t QSharedMemoryPrivate::handle() return unix_key; // don't allow making handles on empty keys - if (nativeKey.isEmpty()) { + if (key.isEmpty()) { errorString = QSharedMemory::tr("%1: key is empty").arg(QLatin1String("QSharedMemory::handle:")); error = QSharedMemory::KeyError; return 0; } // ftok requires that an actual file exists somewhere - if (!QFile::exists(nativeKey)) { + QString fileName = makePlatformSafeKey(key); + if (!QFile::exists(fileName)) { errorString = QSharedMemory::tr("%1: UNIX key file doesn't exist").arg(QLatin1String("QSharedMemory::handle:")); error = QSharedMemory::NotFound; return 0; } - unix_key = ftok(QFile::encodeName(nativeKey).constData(), 'Q'); + unix_key = ftok(QFile::encodeName(fileName).constData(), 'Q'); if (-1 == unix_key) { errorString = QSharedMemory::tr("%1: ftok failed").arg(QLatin1String("QSharedMemory::handle:")); error = QSharedMemory::KeyError; @@ -180,7 +181,7 @@ bool QSharedMemoryPrivate::create(int size) { // build file if needed bool createdFile = false; - int built = createUnixKeyFile(nativeKey); + int built = createUnixKeyFile(makePlatformSafeKey(key)); if (built == -1) { errorString = QSharedMemory::tr("%1: unable to make key").arg(QLatin1String("QSharedMemory::handle:")); error = QSharedMemory::KeyError; @@ -193,7 +194,7 @@ bool QSharedMemoryPrivate::create(int size) // get handle if (!handle()) { if (createdFile) - QFile::remove(nativeKey); + QFile::remove(makePlatformSafeKey(key)); return false; } @@ -209,7 +210,7 @@ bool QSharedMemoryPrivate::create(int size) setErrorString(function); } if (createdFile && error != QSharedMemory::AlreadyExists) - QFile::remove(nativeKey); + QFile::remove(makePlatformSafeKey(key)); return false; } @@ -294,7 +295,7 @@ bool QSharedMemoryPrivate::detach() } // remove file - if (!QFile::remove(nativeKey)) + if (!QFile::remove(makePlatformSafeKey(key))) return false; } return true; diff --git a/src/corelib/kernel/qsharedmemory_win.cpp b/src/corelib/kernel/qsharedmemory_win.cpp index 0cdb123..0f5fdc7 100644 --- a/src/corelib/kernel/qsharedmemory_win.cpp +++ b/src/corelib/kernel/qsharedmemory_win.cpp @@ -99,17 +99,18 @@ HANDLE QSharedMemoryPrivate::handle() { if (!hand) { QString function = QLatin1String("QSharedMemory::handle"); - if (nativeKey.isEmpty()) { + QString safeKey = makePlatformSafeKey(key); + if (safeKey.isEmpty()) { error = QSharedMemory::KeyError; errorString = QSharedMemory::tr("%1: unable to make key").arg(function); return false; } #ifndef Q_OS_WINCE - hand = OpenFileMapping(FILE_MAP_ALL_ACCESS, false, (wchar_t*)nativeKey.utf16()); + hand = OpenFileMapping(FILE_MAP_ALL_ACCESS, false, (wchar_t*)safeKey.utf16()); #else // This works for opening a mapping too, but always opens it with read/write access in // attach as it seems. - hand = CreateFileMapping(INVALID_HANDLE_VALUE, 0, PAGE_READWRITE, 0, 0, (wchar_t*)nativeKey.utf16()); + hand = CreateFileMapping(INVALID_HANDLE_VALUE, 0, PAGE_READWRITE, 0, 0, (wchar_t*)safeKey.utf16()); #endif if (!hand) { setErrorString(function); @@ -132,15 +133,17 @@ bool QSharedMemoryPrivate::cleanHandle() bool QSharedMemoryPrivate::create(int size) { + // Get a windows acceptable key + QString safeKey = makePlatformSafeKey(key); QString function = QLatin1String("QSharedMemory::create"); - if (nativeKey.isEmpty()) { + if (safeKey.isEmpty()) { error = QSharedMemory::KeyError; errorString = QSharedMemory::tr("%1: key error").arg(function); return false; } // Create the file mapping. - hand = CreateFileMapping(INVALID_HANDLE_VALUE, 0, PAGE_READWRITE, 0, size, (wchar_t*)nativeKey.utf16()); + hand = CreateFileMapping(INVALID_HANDLE_VALUE, 0, PAGE_READWRITE, 0, size, (wchar_t*)safeKey.utf16()); setErrorString(function); // hand is valid when it already exists unlike unix so explicitly check diff --git a/tests/auto/qtipc/qsharedmemory/tst_qsharedmemory.cpp b/tests/auto/qtipc/qsharedmemory/tst_qsharedmemory.cpp index dc071ab..1f65ae7 100644 --- a/tests/auto/qtipc/qsharedmemory/tst_qsharedmemory.cpp +++ b/tests/auto/qtipc/qsharedmemory/tst_qsharedmemory.cpp @@ -225,17 +225,11 @@ void tst_QSharedMemory::key_data() { QTest::addColumn("constructorKey"); QTest::addColumn("setKey"); - QTest::addColumn("setNativeKey"); - - QTest::newRow("null, null, null") << QString() << QString() << QString(); - QTest::newRow("one, null, null") << QString("one") << QString() << QString(); - QTest::newRow("null, one, null") << QString() << QString("one") << QString(); - QTest::newRow("null, null, one") << QString() << QString() << QString("one"); - QTest::newRow("one, two, null") << QString("one") << QString("two") << QString(); - QTest::newRow("one, null, two") << QString("one") << QString() << QString("two"); - QTest::newRow("null, one, two") << QString() << QString("one") << QString("two"); - QTest::newRow("one, two, three") << QString("one") << QString("two") << QString("three"); - QTest::newRow("invalid") << QString("o/e") << QString("t/o") << QString("|x"); + + QTest::newRow("null, null") << QString() << QString(); + QTest::newRow("null, one") << QString() << QString("one"); + QTest::newRow("one, two") << QString("one") << QString("two"); + QTest::newRow("invalid") << QString("o/e") << QString("t/o"); } /*! @@ -245,17 +239,11 @@ void tst_QSharedMemory::key() { QFETCH(QString, constructorKey); QFETCH(QString, setKey); - QFETCH(QString, setNativeKey); QSharedMemory sm(constructorKey); QCOMPARE(sm.key(), constructorKey); - QCOMPARE(sm.nativeKey().isEmpty(), constructorKey.isEmpty()); sm.setKey(setKey); QCOMPARE(sm.key(), setKey); - QCOMPARE(sm.nativeKey().isEmpty(), setKey.isEmpty()); - sm.setNativeKey(setNativeKey); - QVERIFY(sm.key().isNull()); - QCOMPARE(sm.nativeKey(), setNativeKey); QCOMPARE(sm.isAttached(), false); QCOMPARE(sm.error(), QSharedMemory::NoError); @@ -274,7 +262,7 @@ void tst_QSharedMemory::create_data() QTest::addColumn("error"); QTest::newRow("null key") << QString() << 1024 - << false << QSharedMemory::KeyError; + << false << QSharedMemory::LockError; QTest::newRow("-1 size") << QString("negsize") << -1 << false << QSharedMemory::InvalidSize; QTest::newRow("nor size") << QString("norsize") << 1024 @@ -314,7 +302,7 @@ void tst_QSharedMemory::attach_data() QTest::addColumn("exists"); QTest::addColumn("error"); - QTest::newRow("null key") << QString() << false << QSharedMemory::KeyError; + QTest::newRow("null key") << QString() << false << QSharedMemory::LockError; QTest::newRow("doesn't exists") << QString("doesntexists") << false << QSharedMemory::NotFound; QTest::newRow("already exists") << QString(EXISTING_SHARE) << true << QSharedMemory::NoError; } -- cgit v0.12 From 63da3c8981a88261169b0d61636a739467634fa3 Mon Sep 17 00:00:00 2001 From: Thomas Zander Date: Mon, 31 May 2010 10:44:07 +0200 Subject: Remove stray debug --- config.tests/unix/fvisibility.test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.tests/unix/fvisibility.test b/config.tests/unix/fvisibility.test index 5bc4b93..27c6841 100755 --- a/config.tests/unix/fvisibility.test +++ b/config.tests/unix/fvisibility.test @@ -1,4 +1,4 @@ -#!/bin/sh -x +#!/bin/sh FVISIBILITY_SUPPORT=no COMPILER=$1 -- cgit v0.12 From 3860340918846b5b156ba8e018d12cfe90461208 Mon Sep 17 00:00:00 2001 From: Tasuku Suzuki Date: Mon, 31 May 2010 12:23:12 +0200 Subject: Fix QT_NO_DIRMODEL build error in QtDeclarative. Reviewed-by: Andreas Aardal Hanssen Merge-request: 652 Merge-request: 652 Reviewed-by: Andreas Aardal Hanssen --- src/imports/folderlistmodel/plugin.cpp | 2 ++ src/imports/folderlistmodel/qdeclarativefolderlistmodel.cpp | 4 ++++ src/imports/folderlistmodel/qdeclarativefolderlistmodel.h | 4 ++++ 3 files changed, 10 insertions(+) diff --git a/src/imports/folderlistmodel/plugin.cpp b/src/imports/folderlistmodel/plugin.cpp index 555df3c..1ec6106 100644 --- a/src/imports/folderlistmodel/plugin.cpp +++ b/src/imports/folderlistmodel/plugin.cpp @@ -53,7 +53,9 @@ public: virtual void registerTypes(const char *uri) { Q_ASSERT(QLatin1String(uri) == QLatin1String("Qt.labs.folderlistmodel")); +#ifndef QT_NO_DIRMODEL qmlRegisterType(uri,1,0,"FolderListModel"); +#endif } }; //![class decl] diff --git a/src/imports/folderlistmodel/qdeclarativefolderlistmodel.cpp b/src/imports/folderlistmodel/qdeclarativefolderlistmodel.cpp index fccb9d4..9cf81ca 100644 --- a/src/imports/folderlistmodel/qdeclarativefolderlistmodel.cpp +++ b/src/imports/folderlistmodel/qdeclarativefolderlistmodel.cpp @@ -45,6 +45,8 @@ #include #include +#ifndef QT_NO_DIRMODEL + QT_BEGIN_NAMESPACE class QDeclarativeFolderListModelPrivate @@ -397,3 +399,5 @@ void QDeclarativeFolderListModel::setShowOnlyReadable(bool on) //![code] QT_END_NAMESPACE + +#endif // QT_NO_DIRMODEL diff --git a/src/imports/folderlistmodel/qdeclarativefolderlistmodel.h b/src/imports/folderlistmodel/qdeclarativefolderlistmodel.h index ea7d701..1bab5f84 100644 --- a/src/imports/folderlistmodel/qdeclarativefolderlistmodel.h +++ b/src/imports/folderlistmodel/qdeclarativefolderlistmodel.h @@ -47,6 +47,8 @@ #include #include +#ifndef QT_NO_DIRMODEL + QT_BEGIN_HEADER QT_BEGIN_NAMESPACE @@ -152,4 +154,6 @@ QML_DECLARE_TYPE(QDeclarativeFolderListModel) QT_END_HEADER +#endif // QT_NO_DIRMODEL + #endif // QDECLARATIVEFOLDERLISTMODEL_H -- cgit v0.12 From e845c0d7a8ed33f2aa2a3ae5ebce931ea2043037 Mon Sep 17 00:00:00 2001 From: Olivier Goffart Date: Mon, 31 May 2010 11:45:25 +0200 Subject: Fix compilation with stricts compilers. Base class is type-dependent. One must not use unqualified-id to access base member. Reveiwed-by: Roberto Raggi --- tools/porting/src/codemodel.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/porting/src/codemodel.h b/tools/porting/src/codemodel.h index cb3088f..04ad178 100644 --- a/tools/porting/src/codemodel.h +++ b/tools/porting/src/codemodel.h @@ -96,7 +96,7 @@ class Collection: public QMultiHash { public: void add(CollectedType *collectedItem) - { insert(collectedItem->name(), collectedItem); } + { this->insert(collectedItem->name(), collectedItem); } }; typedef Collection ScopeCollection; -- cgit v0.12 From aa0b5d35b29fd2f23223e5a4eca4b0d48c74cb2f Mon Sep 17 00:00:00 2001 From: Morten Engvoldsen Date: Mon, 31 May 2010 13:09:37 +0200 Subject: Doc: replacing old image Task-number: QT-1520 --- .../assistant/doc/images/assistant-assistant.png | Bin 105954 -> 205326 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/tools/assistant/tools/assistant/doc/images/assistant-assistant.png b/tools/assistant/tools/assistant/doc/images/assistant-assistant.png index b825de0..1ff5cc9 100644 Binary files a/tools/assistant/tools/assistant/doc/images/assistant-assistant.png and b/tools/assistant/tools/assistant/doc/images/assistant-assistant.png differ -- cgit v0.12 From 817469519a784b1cc84f89cb3cb84f7560874f8e Mon Sep 17 00:00:00 2001 From: Eskil Abrahamsen Blomfeldt Date: Mon, 31 May 2010 10:00:54 +0200 Subject: Fix unreasonably large width of QTextLayout::boundingRect() When no lineWidth is set on the QTextLine, the QScriptLine::width will be the maximum value that can be represented by QFixed, thus always overriding the width of the bounding rect. The lineWidth of the QTextLine should never be used as the width of the bounding rect, since it's not a calculated value. The real bounding rect is found by querying the natural text width. Task-number: QTBUG-11104 Reviewed-by: Rhys Weatherley --- src/gui/text/qtextlayout.cpp | 2 +- tests/auto/qtextlayout/tst_qtextlayout.cpp | 12 ++++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/src/gui/text/qtextlayout.cpp b/src/gui/text/qtextlayout.cpp index ce7915d..a1a17af 100644 --- a/src/gui/text/qtextlayout.cpp +++ b/src/gui/text/qtextlayout.cpp @@ -858,7 +858,7 @@ QRectF QTextLayout::boundingRect() const const QScriptLine &si = d->lines[i]; xmin = qMin(xmin, si.x); ymin = qMin(ymin, si.y); - xmax = qMax(xmax, si.x+qMax(si.width, si.textWidth)); + xmax = qMax(xmax, si.x+si.textWidth); // ### shouldn't the ascent be used in ymin??? ymax = qMax(ymax, si.y+si.height()); } diff --git a/tests/auto/qtextlayout/tst_qtextlayout.cpp b/tests/auto/qtextlayout/tst_qtextlayout.cpp index caf9bd3..b67dc30 100644 --- a/tests/auto/qtextlayout/tst_qtextlayout.cpp +++ b/tests/auto/qtextlayout/tst_qtextlayout.cpp @@ -110,6 +110,7 @@ private slots: void longText(); void widthOfTabs(); void columnWrapWithTabs(); + void boundingRectForUnsetLineWidth(); // QTextLine stuff void setNumColumnsWrapAtWordBoundaryOrAnywhere(); @@ -1307,6 +1308,17 @@ void tst_QTextLayout::columnWrapWithTabs() } +void tst_QTextLayout::boundingRectForUnsetLineWidth() +{ + QTextLayout layout("FOOBAR"); + + layout.beginLayout(); + QTextLine line = layout.createLine(); + layout.endLayout(); + + QCOMPARE(layout.boundingRect().width(), line.naturalTextWidth()); +} + void tst_QTextLayout::lineWidthFromBOM() { const QString string(QChar(0xfeff)); // BYTE ORDER MARK -- cgit v0.12 From b2244174dc4e1858954d7e21cf66bd010d7a8cb4 Mon Sep 17 00:00:00 2001 From: Eskil Abrahamsen Blomfeldt Date: Mon, 31 May 2010 13:40:54 +0200 Subject: Revert behavior of QTextLayout::boundingRect() when line width is set In change 817469519a784b1cc84f89cb3cb84f7560874f8e, there was a behavioral change which can cause regressions, as the bounding rect of the QTextLayout would previously return the set line width when this was greater than the calculated natural text width. We revert to this behavior to avoid regressions and add an autotest for it. When the line width is not set (and si.width is equal to QFIXED_MAX), then we will still return the natural text width. Reviewed-by: Lars --- src/gui/text/qtextlayout.cpp | 3 ++- tests/auto/qtextlayout/tst_qtextlayout.cpp | 13 +++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/src/gui/text/qtextlayout.cpp b/src/gui/text/qtextlayout.cpp index a1a17af..3f67408 100644 --- a/src/gui/text/qtextlayout.cpp +++ b/src/gui/text/qtextlayout.cpp @@ -858,7 +858,8 @@ QRectF QTextLayout::boundingRect() const const QScriptLine &si = d->lines[i]; xmin = qMin(xmin, si.x); ymin = qMin(ymin, si.y); - xmax = qMax(xmax, si.x+si.textWidth); + QFixed lineWidth = si.width < QFIXED_MAX ? qMax(si.width, si.textWidth) : si.textWidth; + xmax = qMax(xmax, si.x+lineWidth); // ### shouldn't the ascent be used in ymin??? ymax = qMax(ymax, si.y+si.height()); } diff --git a/tests/auto/qtextlayout/tst_qtextlayout.cpp b/tests/auto/qtextlayout/tst_qtextlayout.cpp index b67dc30..1a5f493 100644 --- a/tests/auto/qtextlayout/tst_qtextlayout.cpp +++ b/tests/auto/qtextlayout/tst_qtextlayout.cpp @@ -111,6 +111,7 @@ private slots: void widthOfTabs(); void columnWrapWithTabs(); void boundingRectForUnsetLineWidth(); + void boundingRectForSetLineWidth(); // QTextLine stuff void setNumColumnsWrapAtWordBoundaryOrAnywhere(); @@ -1319,6 +1320,18 @@ void tst_QTextLayout::boundingRectForUnsetLineWidth() QCOMPARE(layout.boundingRect().width(), line.naturalTextWidth()); } +void tst_QTextLayout::boundingRectForSetLineWidth() +{ + QTextLayout layout("FOOBAR"); + + layout.beginLayout(); + QTextLine line = layout.createLine(); + line.setLineWidth(QFIXED_MAX - 1); + layout.endLayout(); + + QCOMPARE(layout.boundingRect().width(), qreal(QFIXED_MAX - 1)); +} + void tst_QTextLayout::lineWidthFromBOM() { const QString string(QChar(0xfeff)); // BYTE ORDER MARK -- cgit v0.12 From 098eec2b9ba7218f1b595743476b73b61069d701 Mon Sep 17 00:00:00 2001 From: Morten Engvoldsen Date: Mon, 31 May 2010 13:45:34 +0200 Subject: Doc: Adding note about QDrag::exec() Adding note to the QDrag::exec docs alerting the user about Windows speciffic behaviour. Task-number: QT-640 --- src/gui/kernel/qdrag.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/gui/kernel/qdrag.cpp b/src/gui/kernel/qdrag.cpp index b57615c..2857bb5 100644 --- a/src/gui/kernel/qdrag.cpp +++ b/src/gui/kernel/qdrag.cpp @@ -253,7 +253,9 @@ Qt::DropAction QDrag::exec(Qt::DropActions supportedActions) can take some time, but this function does not block the event loop. Other events are still delivered to the application while the operation is performed. On Windows, the Qt event loop is - blocked while during the operation. + blocked while during the operation. However, QDrag::exec() on + Windows causes processEvents() to be called frequently to keep the GUI responsive. + If any loops or operations are called while a drag operation is active, it will block the drag operation. */ Qt::DropAction QDrag::exec(Qt::DropActions supportedActions, Qt::DropAction defaultDropAction) -- cgit v0.12 From de904c51b140e11c801471871632d1d1b552e470 Mon Sep 17 00:00:00 2001 From: Morten Engvoldsen Date: Mon, 31 May 2010 13:58:08 +0200 Subject: Doc: correcting docs in QDrag::exec --- src/gui/kernel/qdrag.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/kernel/qdrag.cpp b/src/gui/kernel/qdrag.cpp index 2857bb5..77f8fc0 100644 --- a/src/gui/kernel/qdrag.cpp +++ b/src/gui/kernel/qdrag.cpp @@ -253,7 +253,7 @@ Qt::DropAction QDrag::exec(Qt::DropActions supportedActions) can take some time, but this function does not block the event loop. Other events are still delivered to the application while the operation is performed. On Windows, the Qt event loop is - blocked while during the operation. However, QDrag::exec() on + blocked during the operation. However, QDrag::exec() on Windows causes processEvents() to be called frequently to keep the GUI responsive. If any loops or operations are called while a drag operation is active, it will block the drag operation. */ -- cgit v0.12 From c1760352caf33390592ccf5f8eb3401e10aea143 Mon Sep 17 00:00:00 2001 From: David Boddie Date: Mon, 31 May 2010 14:37:30 +0200 Subject: Doc: Removed a misleading sentence about a class constructor. Reviewed-by: Trust Me Task-number: QTBUG-10479 --- doc/src/examples/pixelator.qdoc | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/doc/src/examples/pixelator.qdoc b/doc/src/examples/pixelator.qdoc index 09ae3e8..95099e1 100644 --- a/doc/src/examples/pixelator.qdoc +++ b/doc/src/examples/pixelator.qdoc @@ -80,8 +80,6 @@ functions to indicate the dimensions of the image and supply data to other components. - For convenience, the image to be used is passed in the constructor. - \section1 ImageModel Class Implementation The constructor is trivial: @@ -89,7 +87,7 @@ \snippet examples/itemviews/pixelator/imagemodel.cpp 0 The \c setImage() function sets the image that will be used by the model: - + \snippet examples/itemviews/pixelator/imagemodel.cpp 1 The QAbstractItemModel::reset() call tells the view(s) that the model @@ -233,7 +231,7 @@ This enables the items to be drawn without any gaps between them. Removing the headers also prevents the user from adjusting the sizes of individual rows and columns. - + We also set the minimum section size to 1 on the headers. If we didn't, the headers would default to a larger size, preventing us from displaying really small items (which can be specified -- cgit v0.12 From cbff8db322bf8e99cb3e062cc47fd2fc0db81ac2 Mon Sep 17 00:00:00 2001 From: Tasuku Suzuki Date: Mon, 31 May 2010 14:49:15 +0200 Subject: Fix QT_NO_VALIDATOR compilation. Merge-request: 648 Reviewed-by: Andreas Aardal Hanssen --- src/declarative/graphicsitems/qdeclarativeitemsmodule.cpp | 4 ++++ src/declarative/graphicsitems/qdeclarativetextinput.cpp | 2 ++ src/declarative/graphicsitems/qdeclarativetextinput_p.h | 7 ++++++- 3 files changed, 12 insertions(+), 1 deletion(-) diff --git a/src/declarative/graphicsitems/qdeclarativeitemsmodule.cpp b/src/declarative/graphicsitems/qdeclarativeitemsmodule.cpp index 151a9e9..0be8dac 100644 --- a/src/declarative/graphicsitems/qdeclarativeitemsmodule.cpp +++ b/src/declarative/graphicsitems/qdeclarativeitemsmodule.cpp @@ -112,9 +112,11 @@ void QDeclarativeItemModule::defineModule() qmlRegisterType("Qt",4,7,"PathPercent"); qmlRegisterType("Qt",4,7,"PathQuad"); qmlRegisterType("Qt",4,7,"PathView"); +#ifndef QT_NO_VALIDATOR qmlRegisterType("Qt",4,7,"IntValidator"); qmlRegisterType("Qt",4,7,"DoubleValidator"); qmlRegisterType("Qt",4,7,"RegExpValidator"); +#endif qmlRegisterType("Qt",4,7,"Rectangle"); qmlRegisterType("Qt",4,7,"Repeater"); qmlRegisterType("Qt",4,7,"Rotation"); @@ -138,7 +140,9 @@ void QDeclarativeItemModule::defineModule() qmlRegisterType(); qmlRegisterType(); qmlRegisterType(); +#ifndef QT_NO_VALIDATOR qmlRegisterType(); +#endif qmlRegisterType(); #ifndef QT_NO_ACTION qmlRegisterType(); diff --git a/src/declarative/graphicsitems/qdeclarativetextinput.cpp b/src/declarative/graphicsitems/qdeclarativetextinput.cpp index 9c70ea9..305540f 100644 --- a/src/declarative/graphicsitems/qdeclarativetextinput.cpp +++ b/src/declarative/graphicsitems/qdeclarativetextinput.cpp @@ -648,6 +648,7 @@ void QDeclarativeTextInput::setAutoScroll(bool b) \sa acceptableInput, inputMask */ +#ifndef QT_NO_VALIDATOR QValidator* QDeclarativeTextInput::validator() const { Q_D(const QDeclarativeTextInput); @@ -669,6 +670,7 @@ void QDeclarativeTextInput::setValidator(QValidator* v) emit validatorChanged(); } +#endif // QT_NO_VALIDATOR /*! \qmlproperty string TextInput::inputMask diff --git a/src/declarative/graphicsitems/qdeclarativetextinput_p.h b/src/declarative/graphicsitems/qdeclarativetextinput_p.h index 438293a..3dba844 100644 --- a/src/declarative/graphicsitems/qdeclarativetextinput_p.h +++ b/src/declarative/graphicsitems/qdeclarativetextinput_p.h @@ -79,7 +79,9 @@ class Q_DECLARATIVE_EXPORT QDeclarativeTextInput : public QDeclarativePaintedIte Q_PROPERTY(QString selectedText READ selectedText NOTIFY selectedTextChanged) Q_PROPERTY(int maximumLength READ maxLength WRITE setMaxLength NOTIFY maximumLengthChanged) +#ifndef QT_NO_VALIDATOR Q_PROPERTY(QValidator* validator READ validator WRITE setValidator NOTIFY validatorChanged) +#endif Q_PROPERTY(QString inputMask READ inputMask WRITE setInputMask NOTIFY inputMaskChanged) Q_PROPERTY(Qt::InputMethodHints inputMethodHints READ inputMethodHints WRITE setInputMethodHints) @@ -156,9 +158,10 @@ public: int maxLength() const; void setMaxLength(int ml); +#ifndef QT_NO_VALIDATOR QValidator * validator() const; void setValidator(QValidator* v); - +#endif QString inputMask() const; void setInputMask(const QString &im); @@ -248,10 +251,12 @@ private: QT_END_NAMESPACE QML_DECLARE_TYPE(QDeclarativeTextInput) +#ifndef QT_NO_VALIDATOR QML_DECLARE_TYPE(QValidator) QML_DECLARE_TYPE(QIntValidator) QML_DECLARE_TYPE(QDoubleValidator) QML_DECLARE_TYPE(QRegExpValidator) +#endif QT_END_HEADER -- cgit v0.12 From 77474ad850b91e1de080d2f8fb9a60af2f89668f Mon Sep 17 00:00:00 2001 From: Tasuku Suzuki Date: Mon, 31 May 2010 15:11:57 +0200 Subject: Fix QT_NO_TEXTSTREAM compilation errors. Merge-request: 647 Reviewed-by: Andreas Aardal Hanssen --- src/declarative/graphicsitems/qdeclarativeanimatedimage.cpp | 2 ++ src/declarative/graphicsitems/qdeclarativeitem.cpp | 2 ++ src/declarative/graphicsitems/qdeclarativeitem.h | 2 ++ src/declarative/qml/qdeclarativeinfo.h | 2 ++ src/declarative/qml/qdeclarativeinstruction.cpp | 5 +++++ src/declarative/util/qdeclarativestate.cpp | 2 ++ src/declarative/util/qdeclarativetransitionmanager.cpp | 2 ++ 7 files changed, 17 insertions(+) diff --git a/src/declarative/graphicsitems/qdeclarativeanimatedimage.cpp b/src/declarative/graphicsitems/qdeclarativeanimatedimage.cpp index 32a6321..a05e426 100644 --- a/src/declarative/graphicsitems/qdeclarativeanimatedimage.cpp +++ b/src/declarative/graphicsitems/qdeclarativeanimatedimage.cpp @@ -263,7 +263,9 @@ void QDeclarativeAnimatedImage::movieRequestFinished() d->_movie = new QMovie(d->reply); if (!d->_movie->isValid()){ +#ifndef QT_NO_DEBUG_STREAM qmlInfo(this) << "Error Reading Animated Image File " << d->url; +#endif delete d->_movie; d->_movie = 0; return; diff --git a/src/declarative/graphicsitems/qdeclarativeitem.cpp b/src/declarative/graphicsitems/qdeclarativeitem.cpp index 7bd08ce..134bd6d 100644 --- a/src/declarative/graphicsitems/qdeclarativeitem.cpp +++ b/src/declarative/graphicsitems/qdeclarativeitem.cpp @@ -3131,6 +3131,7 @@ bool QDeclarativeItem::event(QEvent *ev) return QGraphicsObject::event(ev); } +#ifndef QT_NO_DEBUG_STREAM QDebug operator<<(QDebug debug, QDeclarativeItem *item) { if (!item) { @@ -3144,6 +3145,7 @@ QDebug operator<<(QDebug debug, QDeclarativeItem *item) << ", z =" << item->zValue() << ')'; return debug; } +#endif qint64 QDeclarativeItemPrivate::consistentTime = -1; void QDeclarativeItemPrivate::setConsistentTime(qint64 t) diff --git a/src/declarative/graphicsitems/qdeclarativeitem.h b/src/declarative/graphicsitems/qdeclarativeitem.h index 29fd241..77e316b 100644 --- a/src/declarative/graphicsitems/qdeclarativeitem.h +++ b/src/declarative/graphicsitems/qdeclarativeitem.h @@ -209,7 +209,9 @@ T qobject_cast(QGraphicsItem *item) return qobject_cast(o); } +#ifndef QT_NO_DEBUG_STREAM QDebug Q_DECLARATIVE_EXPORT operator<<(QDebug debug, QDeclarativeItem *item); +#endif QT_END_NAMESPACE diff --git a/src/declarative/qml/qdeclarativeinfo.h b/src/declarative/qml/qdeclarativeinfo.h index 2ac28f4..b41abd8 100644 --- a/src/declarative/qml/qdeclarativeinfo.h +++ b/src/declarative/qml/qdeclarativeinfo.h @@ -81,7 +81,9 @@ public: inline QDeclarativeInfo &operator<<(const void * t) { QDebug::operator<<(t); return *this; } inline QDeclarativeInfo &operator<<(QTextStreamFunction f) { QDebug::operator<<(f); return *this; } inline QDeclarativeInfo &operator<<(QTextStreamManipulator m) { QDebug::operator<<(m); return *this; } +#ifndef QT_NO_DEBUG_STREAM inline QDeclarativeInfo &operator<<(const QUrl &t) { static_cast(*this) << t; return *this; } +#endif private: friend Q_DECLARATIVE_EXPORT QDeclarativeInfo qmlInfo(const QObject *me); diff --git a/src/declarative/qml/qdeclarativeinstruction.cpp b/src/declarative/qml/qdeclarativeinstruction.cpp index b86d082..0f7b09d 100644 --- a/src/declarative/qml/qdeclarativeinstruction.cpp +++ b/src/declarative/qml/qdeclarativeinstruction.cpp @@ -49,6 +49,10 @@ QT_BEGIN_NAMESPACE void QDeclarativeCompiledData::dump(QDeclarativeInstruction *instr, int idx) { +#ifdef QT_NO_DEBUG_STREAM + Q_UNUSED(instr) + Q_UNUSED(idx) +#else QByteArray lineNumber = QByteArray::number(instr->line); if (instr->line == (unsigned short)-1) lineNumber = "NA"; @@ -217,6 +221,7 @@ void QDeclarativeCompiledData::dump(QDeclarativeInstruction *instr, int idx) qWarning().nospace() << idx << "\t\t" << line << "\t" << "XXX UNKOWN INSTRUCTION" << "\t" << instr->type; break; } +#endif // QT_NO_DEBUG_STREAM } QT_END_NAMESPACE diff --git a/src/declarative/util/qdeclarativestate.cpp b/src/declarative/util/qdeclarativestate.cpp index b5f7900..dc2b2cc 100644 --- a/src/declarative/util/qdeclarativestate.cpp +++ b/src/declarative/util/qdeclarativestate.cpp @@ -486,6 +486,7 @@ void QDeclarativeState::apply(QDeclarativeStateGroup *group, QDeclarativeTransit // All the local reverts now become part of the ongoing revertList d->revertList << additionalReverts; +#ifndef QT_NO_DEBUG_STREAM // Output for debugging if (stateChangeDebug()) { foreach(const QDeclarativeAction &action, applyList) { @@ -497,6 +498,7 @@ void QDeclarativeState::apply(QDeclarativeStateGroup *group, QDeclarativeTransit << "To:" << action.toValue; } } +#endif d->transitionManager.transition(applyList, trans); } diff --git a/src/declarative/util/qdeclarativetransitionmanager.cpp b/src/declarative/util/qdeclarativetransitionmanager.cpp index 368d484..9f198e4 100644 --- a/src/declarative/util/qdeclarativetransitionmanager.cpp +++ b/src/declarative/util/qdeclarativetransitionmanager.cpp @@ -233,6 +233,7 @@ void QDeclarativeTransitionManager::transition(const QList & action.property.write(action.toValue); } } +#ifndef QT_NO_DEBUG_STREAM if (stateChangeDebug()) { foreach(const QDeclarativeAction &action, applyList) { if (action.event) @@ -243,6 +244,7 @@ void QDeclarativeTransitionManager::transition(const QList & << "To:" << action.toValue; } } +#endif if (!transition) d->applyBindings(); } -- cgit v0.12 From 54f0a5691899c4b74c71c7718e8e451bdcdbda54 Mon Sep 17 00:00:00 2001 From: Tasuku Suzuki Date: Mon, 31 May 2010 15:44:57 +0200 Subject: Fix QT_NO_DOM Merge-request: 2395 Reviewed-by: Andreas Aardal Hanssen --- src/corelib/global/qfeatures.h | 10 +++++----- src/corelib/global/qfeatures.txt | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/corelib/global/qfeatures.h b/src/corelib/global/qfeatures.h index c66047a..a333153 100644 --- a/src/corelib/global/qfeatures.h +++ b/src/corelib/global/qfeatures.h @@ -335,11 +335,6 @@ #define QT_NO_DATESTRING #endif -// QtDBus module -#if !defined(QT_NO_DBUS) && (defined(QT_NO_PROPERTIES)) -#define QT_NO_DBUS -#endif - // QDial #if !defined(QT_NO_DIAL) && (defined(QT_NO_SLIDER)) #define QT_NO_DIAL @@ -515,6 +510,11 @@ #define QT_NO_CONTEXTMENU #endif +// QtDBus module +#if !defined(QT_NO_DBUS) && (defined(QT_NO_PROPERTIES) || defined(QT_NO_DOM)) +#define QT_NO_DBUS +#endif + // File Transfer Protocol #if !defined(QT_NO_FTP) && (defined(QT_NO_URLINFO) || defined(QT_NO_TEXTDATE)) #define QT_NO_FTP diff --git a/src/corelib/global/qfeatures.txt b/src/corelib/global/qfeatures.txt index ed173b1..3e6af24 100644 --- a/src/corelib/global/qfeatures.txt +++ b/src/corelib/global/qfeatures.txt @@ -1373,7 +1373,7 @@ SeeAlso: ??? Feature: DBUS Description: Provides classes for D-Bus. Section: D-Bus -Requires: PROPERTIES +Requires: PROPERTIES DOM Name: QtDBus module SeeAlso: ??? -- cgit v0.12 From 55d344acb767226bdf5e1629a44fd7d9a22e4906 Mon Sep 17 00:00:00 2001 From: Tasuku Suzuki Date: Mon, 31 May 2010 15:56:51 +0200 Subject: Fix QT_NO_TEXTHTMLPARSER Merge-request: 644 Reviewed-by: Andreas Aardal Hanssen --- src/declarative/graphicsitems/qdeclarativetext.cpp | 16 ++++++++++++++++ src/declarative/graphicsitems/qdeclarativetextedit.cpp | 10 ++++++++++ 2 files changed, 26 insertions(+) diff --git a/src/declarative/graphicsitems/qdeclarativetext.cpp b/src/declarative/graphicsitems/qdeclarativetext.cpp index 2c1eb67..55cef8b 100644 --- a/src/declarative/graphicsitems/qdeclarativetext.cpp +++ b/src/declarative/graphicsitems/qdeclarativetext.cpp @@ -318,7 +318,11 @@ void QDeclarativeText::setText(const QString &n) if (d->richText) { if (isComponentComplete()) { d->ensureDoc(); +#ifndef QT_NO_TEXTHTMLPARSER d->doc->setHtml(n); +#else + d->doc->setPlainText(n); +#endif } } @@ -605,7 +609,11 @@ void QDeclarativeText::setTextFormat(TextFormat format) } else if (!wasRich && d->richText) { if (isComponentComplete()) { d->ensureDoc(); +#ifndef QT_NO_TEXTHTMLPARSER d->doc->setHtml(d->text); +#else + d->doc->setPlainText(d->text); +#endif } d->updateLayout(); d->markImgDirty(); @@ -991,7 +999,11 @@ void QDeclarativeText::reloadWithResources() Q_D(QDeclarativeText); if (!d->richText) return; +#ifndef QT_NO_TEXTHTMLPARSER d->doc->setHtml(d->text); +#else + d->doc->setPlainText(d->text); +#endif d->updateLayout(); d->markImgDirty(); } @@ -1121,7 +1133,11 @@ void QDeclarativeText::componentComplete() if (d->dirty) { if (d->richText) { d->ensureDoc(); +#ifndef QT_NO_TEXTHTMLPARSER d->doc->setHtml(d->text); +#else + d->doc->setPlainText(d->text); +#endif } d->updateLayout(); d->dirty = false; diff --git a/src/declarative/graphicsitems/qdeclarativetextedit.cpp b/src/declarative/graphicsitems/qdeclarativetextedit.cpp index 9ccb8d2..997c666 100644 --- a/src/declarative/graphicsitems/qdeclarativetextedit.cpp +++ b/src/declarative/graphicsitems/qdeclarativetextedit.cpp @@ -120,9 +120,11 @@ QString QDeclarativeTextEdit::text() const { Q_D(const QDeclarativeTextEdit); +#ifndef QT_NO_TEXTHTMLPARSER if (d->richText) return d->document->toHtml(); else +#endif return d->document->toPlainText(); } @@ -253,7 +255,11 @@ void QDeclarativeTextEdit::setText(const QString &text) d->text = text; d->richText = d->format == RichText || (d->format == AutoText && Qt::mightBeRichText(text)); if (d->richText) { +#ifndef QT_NO_TEXTHTMLPARSER d->control->setHtml(text); +#else + d->control->setPlainText(text); +#endif } else { d->control->setPlainText(text); } @@ -318,7 +324,11 @@ void QDeclarativeTextEdit::setTextFormat(TextFormat format) d->control->setPlainText(d->text); updateSize(); } else if (!wasRich && d->richText) { +#ifndef QT_NO_TEXTHTMLPARSER d->control->setHtml(d->text); +#else + d->control->setPlainText(d->text); +#endif updateSize(); } d->format = format; -- cgit v0.12 From 51f56d93578be5021fe449da1165cf0c539343b9 Mon Sep 17 00:00:00 2001 From: Simon Hausmann Date: Mon, 31 May 2010 16:48:24 +0200 Subject: Updated WebKit to c58dc2f491a824ac56e31c440fcf7fe16dab09c4 Integrate https://trac.webkit.org/changeset/60435 - [Qt] Escape backslashes in the .pro files by Ossi. --- src/3rdparty/webkit/.tag | 2 +- src/3rdparty/webkit/VERSION | 2 +- src/3rdparty/webkit/WebCore/ChangeLog | 10 ++++++++++ src/3rdparty/webkit/WebCore/WebCore.pro | 2 +- .../webkit/WebKit/qt/Api/DerivedSources.pro | 6 +++--- src/3rdparty/webkit/WebKit/qt/Api/qwebpage.cpp | 2 +- src/3rdparty/webkit/WebKit/qt/ChangeLog | 21 +++++++++++++++++++++ src/3rdparty/webkit/WebKit/qt/docs/docs.pri | 2 +- 8 files changed, 39 insertions(+), 8 deletions(-) diff --git a/src/3rdparty/webkit/.tag b/src/3rdparty/webkit/.tag index 49b1cbe..8cb0e53 100644 --- a/src/3rdparty/webkit/.tag +++ b/src/3rdparty/webkit/.tag @@ -1 +1 @@ -c58dc2f491a824ac56e31c440fcf7fe16dab09c4 +f59a934694947496cedecc5256a71bff60c43c4c diff --git a/src/3rdparty/webkit/VERSION b/src/3rdparty/webkit/VERSION index 1db0c55..fb78e36 100644 --- a/src/3rdparty/webkit/VERSION +++ b/src/3rdparty/webkit/VERSION @@ -4,4 +4,4 @@ This is a snapshot of the Qt port of WebKit from and has the sha1 checksum - 531b0d7cd2af830f0d17b83b6e4a489794481539 + c58dc2f491a824ac56e31c440fcf7fe16dab09c4 diff --git a/src/3rdparty/webkit/WebCore/ChangeLog b/src/3rdparty/webkit/WebCore/ChangeLog index daf10fa..ff7d214 100644 --- a/src/3rdparty/webkit/WebCore/ChangeLog +++ b/src/3rdparty/webkit/WebCore/ChangeLog @@ -1,3 +1,13 @@ +2010-05-31 Oswald Buddenhagen + + Reviewed by Simon Hausmann. + + [Qt] Escape backslashes in the .pro files + + qmake in Qt 4.7 warns about unescaped backspaces and deprecates them. + + * WebCore.pro: + 2010-05-28 Antti Koivisto Reviewed by Kenneth Rohde Christiansen. diff --git a/src/3rdparty/webkit/WebCore/WebCore.pro b/src/3rdparty/webkit/WebCore/WebCore.pro index 5def728..63e78a7 100644 --- a/src/3rdparty/webkit/WebCore/WebCore.pro +++ b/src/3rdparty/webkit/WebCore/WebCore.pro @@ -159,7 +159,7 @@ defineTest(addExtraCompiler) { for(file,input) { base = $$basename(file) - base ~= s/\..+// + base ~= s/\\..+// newfile=$$replace(outputRule,\\$\\{QMAKE_FILE_BASE\\},$$base) SOURCES += $$newfile } diff --git a/src/3rdparty/webkit/WebKit/qt/Api/DerivedSources.pro b/src/3rdparty/webkit/WebKit/qt/Api/DerivedSources.pro index 389fb5f..22d4c8d 100644 --- a/src/3rdparty/webkit/WebKit/qt/Api/DerivedSources.pro +++ b/src/3rdparty/webkit/WebKit/qt/Api/DerivedSources.pro @@ -28,7 +28,7 @@ qtheader_module.commands += echo $${QUOTE}$${LITERAL_HASH}define QT_QTWEBKIT_MOD qtheader_module.commands += echo $${QUOTE}$${LITERAL_HASH}include $${ESCAPE}$${QUOTE} >> $${qtheader_module.target} && WEBKIT_CLASS_HEADERS = $${LITERAL_DOLLAR}$${LITERAL_DOLLAR}$${LITERAL_DOLLAR}$${LITERAL_DOLLAR}PWD/QtWebKit -regex = ".*\sclass\sQWEBKIT_EXPORT\s(\w+)\s(.*)" +regex = ".*\\sclass\\sQWEBKIT_EXPORT\\s(\\w+)\\s(.*)" for(HEADER, WEBKIT_API_HEADERS) { # 1. Append to QtWebKit header that includes all other header files @@ -70,7 +70,7 @@ for(HEADER, WEBKIT_API_HEADERS) { res = $$find(src, $$regex) isEmpty(res):break() - exp = $$replace(src, $$regex, "EXPORTED_CLASS = \1") + exp = $$replace(src, $$regex, "EXPORTED_CLASS = \\1") eval($$exp) CLASS_TARGET = "qtheader_$${EXPORTED_CLASS}" @@ -87,7 +87,7 @@ for(HEADER, WEBKIT_API_HEADERS) { # Qt's QRegExp does not support inline non-greedy matching, # so we'll have to work around it by updating the haystack - src = $$replace(src, $$regex, "\2") + src = $$replace(src, $$regex, "\\2") src_words = $$join(src, $${LITERAL_WHITESPACE}) } } diff --git a/src/3rdparty/webkit/WebKit/qt/Api/qwebpage.cpp b/src/3rdparty/webkit/WebKit/qt/Api/qwebpage.cpp index a61ca2e..564c6fe 100644 --- a/src/3rdparty/webkit/WebKit/qt/Api/qwebpage.cpp +++ b/src/3rdparty/webkit/WebKit/qt/Api/qwebpage.cpp @@ -3620,7 +3620,7 @@ QString QWebPage::userAgentForUrl(const QUrl&) const languageName = d->client->ownerWidget()->locale().name(); else languageName = QLocale().name(); - languageName[2] = QLatin1Char('-'); + languageName.replace(QLatin1Char('_'), QLatin1Char('-')); // Application name/version QString appName = QCoreApplication::applicationName(); diff --git a/src/3rdparty/webkit/WebKit/qt/ChangeLog b/src/3rdparty/webkit/WebKit/qt/ChangeLog index cc2d39a..b6cbf92 100644 --- a/src/3rdparty/webkit/WebKit/qt/ChangeLog +++ b/src/3rdparty/webkit/WebKit/qt/ChangeLog @@ -1,3 +1,24 @@ +2010-05-31 Oswald Buddenhagen + + Reviewed by Simon Hausmann. + + [Qt] Escape backslashes in the .pro files + + qmake in Qt 4.7 warns about unescaped backspaces and deprecates them. + + * Api/DerivedSources.pro: + * docs/docs.pri: + +2010-05-19 Denis Dzyubenko + + Reviewed by Kenneth Rohde Christiansen. + + When creating the UA, do not sassmue the language code is a + two-letter iso639-1 code. + + * Api/qwebpage.cpp: + (QWebPage::userAgentForUrl): + 2010-05-28 Antti Koivisto Reviewed by Kenneth Rohde Christiansen. diff --git a/src/3rdparty/webkit/WebKit/qt/docs/docs.pri b/src/3rdparty/webkit/WebKit/qt/docs/docs.pri index 804817b..a56ddb4 100644 --- a/src/3rdparty/webkit/WebKit/qt/docs/docs.pri +++ b/src/3rdparty/webkit/WebKit/qt/docs/docs.pri @@ -3,7 +3,7 @@ include(../../../WebKit.pri) unix { QDOC = SRCDIR=$$PWD/../../.. OUTPUT_DIR=$$OUTPUT_DIR $$(QTDIR)/bin/qdoc3 } else { - QDOC = $$(QTDIR)\bin\qdoc3.exe + QDOC = $$(QTDIR)\\bin\\qdoc3.exe } unix { -- cgit v0.12 From bd786961b0d65bdd1adb31eca0a050a4b9a1f39a Mon Sep 17 00:00:00 2001 From: David Boddie Date: Mon, 31 May 2010 17:02:49 +0200 Subject: Doc: Fixed an off-by-one error in an example. Reviewed-by: Trust Me Task-number: QTBUG-10854 --- examples/itemviews/fetchmore/filelistmodel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/itemviews/fetchmore/filelistmodel.cpp b/examples/itemviews/fetchmore/filelistmodel.cpp index 05ab45e..942150e 100644 --- a/examples/itemviews/fetchmore/filelistmodel.cpp +++ b/examples/itemviews/fetchmore/filelistmodel.cpp @@ -92,7 +92,7 @@ void FileListModel::fetchMore(const QModelIndex & /* index */) int remainder = fileList.size() - fileCount; int itemsToFetch = qMin(100, remainder); - beginInsertRows(QModelIndex(), fileCount, fileCount+itemsToFetch); + beginInsertRows(QModelIndex(), fileCount, fileCount+itemsToFetch-1); fileCount += itemsToFetch; -- cgit v0.12 From 1fede5dccd56541835046035bb2a8d28d4781e0f Mon Sep 17 00:00:00 2001 From: Alan Alpert Date: Mon, 31 May 2010 19:51:15 +0200 Subject: Fix Typo --- src/declarative/graphicsitems/qdeclarativetextedit.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/declarative/graphicsitems/qdeclarativetextedit.cpp b/src/declarative/graphicsitems/qdeclarativetextedit.cpp index 935b431..2651ee5 100644 --- a/src/declarative/graphicsitems/qdeclarativetextedit.cpp +++ b/src/declarative/graphicsitems/qdeclarativetextedit.cpp @@ -570,7 +570,7 @@ int QDeclarativeTextEdit::positionAt(int x, int y) const } /*! - \qmlmethod int TextEdit::moveCursorSeletion(int pos) + \qmlmethod int TextEdit::moveCursorSelection(int pos) Moves the cursor to \a position and updates the selection accordingly. (To only move the cursor, set the \l cursorPosition property.) -- cgit v0.12 From 6bd67cf30b1574a114d9852820fe0fb8d3d10c50 Mon Sep 17 00:00:00 2001 From: Alan Alpert Date: Mon, 31 May 2010 20:04:44 +0200 Subject: Fix zoom bug in QML Web Browser demo Zooming out no longer zooms to smaller than the window size. --- demos/declarative/webbrowser/content/FlickableWebView.qml | 4 ++-- demos/declarative/webbrowser/webbrowser.qml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/demos/declarative/webbrowser/content/FlickableWebView.qml b/demos/declarative/webbrowser/content/FlickableWebView.qml index 34e8fff..3a1b515 100644 --- a/demos/declarative/webbrowser/content/FlickableWebView.qml +++ b/demos/declarative/webbrowser/content/FlickableWebView.qml @@ -96,8 +96,8 @@ Flickable { function doZoom(zoom,centerX,centerY) { if (centerX) { - var sc = zoom/contentsScale; - scaleAnim.to = zoom; + var sc = zoom*contentsScale; + scaleAnim.to = sc; flickVX.from = flickable.contentX flickVX.to = Math.max(0,Math.min(centerX-flickable.width/2,webView.width*sc-flickable.width)) finalX.value = flickVX.to diff --git a/demos/declarative/webbrowser/webbrowser.qml b/demos/declarative/webbrowser/webbrowser.qml index 36e03bf..a923c92 100644 --- a/demos/declarative/webbrowser/webbrowser.qml +++ b/demos/declarative/webbrowser/webbrowser.qml @@ -47,7 +47,7 @@ import "content" Rectangle { id: webBrowser - property string urlString : "http://qt.nokia.com/" + property string urlString : "http://www.nokia.com/" width: 800; height: 600 color: "#343434" -- cgit v0.12 From fe77b0e466cf1a19663285d240a634e674e022f1 Mon Sep 17 00:00:00 2001 From: Alan Alpert Date: Mon, 31 May 2010 20:42:41 +0200 Subject: Fix some bugs in the QML Web Browser buttons Now with fewer warnings! Also, the stop button works. --- demos/declarative/webbrowser/content/Button.qml | 2 +- demos/declarative/webbrowser/content/FlickableWebView.qml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/demos/declarative/webbrowser/content/Button.qml b/demos/declarative/webbrowser/content/Button.qml index 976502c..4642cc7 100644 --- a/demos/declarative/webbrowser/content/Button.qml +++ b/demos/declarative/webbrowser/content/Button.qml @@ -49,7 +49,7 @@ Item { Image { id: icon; anchors.centerIn: parent - opacity: action.enabled ? 1.0 : 0.4 + opacity: if(action != undefined) {action.enabled ? 1.0 : 0.4} else 0 } MouseArea { diff --git a/demos/declarative/webbrowser/content/FlickableWebView.qml b/demos/declarative/webbrowser/content/FlickableWebView.qml index 3a1b515..62da2ea 100644 --- a/demos/declarative/webbrowser/content/FlickableWebView.qml +++ b/demos/declarative/webbrowser/content/FlickableWebView.qml @@ -48,6 +48,7 @@ Flickable { property alias progress: webView.progress property alias url: webView.url property alias back: webView.back + property alias stop: webView.stop property alias reload: webView.reload property alias forward: webView.forward -- cgit v0.12 From 3842b53597526bcfc313f208ace808f3f20951ed Mon Sep 17 00:00:00 2001 From: Yann Bodson Date: Tue, 1 Jun 2010 10:17:02 +1000 Subject: Fix doc --- doc/src/snippets/declarative/rect-border-width.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/src/snippets/declarative/rect-border-width.qml b/doc/src/snippets/declarative/rect-border-width.qml index 27a241d..1c42226 100644 --- a/doc/src/snippets/declarative/rect-border-width.qml +++ b/doc/src/snippets/declarative/rect-border-width.qml @@ -6,7 +6,7 @@ Rectangle { color: "yellow" Rectangle { - anchor.fill: parent + anchors.fill: parent anchors.margins: 10 clip: true -- cgit v0.12 From bc1fb594d24b54b9c83994817348b0163ef1a9c5 Mon Sep 17 00:00:00 2001 From: Bea Lam Date: Tue, 1 Jun 2010 10:31:36 +1000 Subject: Fix example code and image --- doc/src/declarative/pics/repeater-modeldata.png | Bin 2600 -> 3394 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/doc/src/declarative/pics/repeater-modeldata.png b/doc/src/declarative/pics/repeater-modeldata.png index 817f35b..6d8df0d 100644 Binary files a/doc/src/declarative/pics/repeater-modeldata.png and b/doc/src/declarative/pics/repeater-modeldata.png differ -- cgit v0.12 From ff93c3562f2b73abb69b1698f71fc9538ca5d999 Mon Sep 17 00:00:00 2001 From: Warwick Allison Date: Tue, 1 Jun 2010 11:36:29 +1000 Subject: Fix positionAt when autoScroll is use. Task-number: QTBUG-11054 --- src/declarative/graphicsitems/qdeclarativetextinput.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/declarative/graphicsitems/qdeclarativetextinput.cpp b/src/declarative/graphicsitems/qdeclarativetextinput.cpp index 25a2b49..3a1acc2 100644 --- a/src/declarative/graphicsitems/qdeclarativetextinput.cpp +++ b/src/declarative/graphicsitems/qdeclarativetextinput.cpp @@ -852,7 +852,7 @@ QRectF QDeclarativeTextInput::positionToRectangle(int x) const int QDeclarativeTextInput::positionAt(int x) const { Q_D(const QDeclarativeTextInput); - return d->control->xToPos(x - d->hscroll); + return d->control->xToPos(x + d->hscroll); } void QDeclarativeTextInputPrivate::focusChanged(bool hasFocus) -- cgit v0.12 From 5f6b50f99a6457c208c7f186db45a2dba690bace Mon Sep 17 00:00:00 2001 From: Warwick Allison Date: Tue, 1 Jun 2010 12:39:15 +1000 Subject: Test positionAt. Task-number: QTBUG-11127 Task-number: QTBUG-11054 --- .../tst_qdeclarativetextinput.cpp | 43 ++++++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp b/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp index 54bb9c1..c943c89 100644 --- a/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp +++ b/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp @@ -63,6 +63,8 @@ private slots: void color(); void selection(); + void positionAt(); + void maxLength(); void masks(); void validators(); @@ -361,6 +363,47 @@ void tst_qdeclarativetextinput::selection() delete textinputObject; } +void tst_qdeclarativetextinput::positionAt() +{ + QDeclarativeView *canvas = createView(SRCDIR "/data/positionAt.qml"); + QVERIFY(canvas->rootObject() != 0); + canvas->show(); + canvas->setFocus(); + QApplication::setActiveWindow(canvas); + QTest::qWaitForWindowShown(canvas); + + QDeclarativeTextInput *textinputObject = qobject_cast(canvas->rootObject()); + QVERIFY(textinputObject != 0); + + // Check autoscrolled... + QFontMetrics fm(textinputObject->font()); + + int pos = textinputObject->positionAt(textinputObject->width()/2); + int diff = abs(fm.width(textinputObject->text()) - (fm.width(textinputObject->text().left(pos))+textinputObject->width()/2)); + + // some tollerance for different fonts. +#ifdef Q_OS_LINUX + QVERIFY(diff < 2); +#else + QVERIFY(diff < 5); +#endif + + // Check without autoscroll... + QEXPECT_FAIL("", "QTBUG-11127", Abort); + textinputObject->setAutoScroll(false); + pos = textinputObject->positionAt(textinputObject->width()/2); + diff = abs(fm.width(textinputObject->text().left(pos))-textinputObject->width()/2); + + // some tollerance for different fonts. +#ifdef Q_OS_LINUX + QVERIFY(diff < 2); +#else + QVERIFY(diff < 5); +#endif + + delete canvas; +} + void tst_qdeclarativetextinput::maxLength() { //QString componentStr = "import Qt 4.7\nTextInput { maximumLength: 10; }"; -- cgit v0.12 From 91cb226780d05f0f7d8fd1875121427ade52c1a8 Mon Sep 17 00:00:00 2001 From: Martin Jones Date: Tue, 1 Jun 2010 13:06:05 +1000 Subject: Avoid refilling view during model change. The view position is reset to 0 after clear()ing, but this results in refill() being called, effectively undoing the clear(). Fix is to make the model invalid before resetting position. Task-number: QTBUG-11105 --- .../graphicsitems/qdeclarativelistview.cpp | 6 ++- .../tst_qdeclarativelistview.cpp | 48 ++++++++++++++++++++++ 2 files changed, 53 insertions(+), 1 deletion(-) diff --git a/src/declarative/graphicsitems/qdeclarativelistview.cpp b/src/declarative/graphicsitems/qdeclarativelistview.cpp index 78c56d6..01928a1 100644 --- a/src/declarative/graphicsitems/qdeclarativelistview.cpp +++ b/src/declarative/graphicsitems/qdeclarativelistview.cpp @@ -1466,13 +1466,15 @@ void QDeclarativeListView::setModel(const QVariant &model) disconnect(d->model, SIGNAL(destroyingItem(QDeclarativeItem*)), this, SLOT(destroyingItem(QDeclarativeItem*))); } d->clear(); + QDeclarativeVisualModel *oldModel = d->model; + d->model = 0; d->setPosition(0); d->modelVariant = model; QObject *object = qvariant_cast(model); QDeclarativeVisualModel *vim = 0; if (object && (vim = qobject_cast(object))) { if (d->ownModel) { - delete d->model; + delete oldModel; d->ownModel = false; } d->model = vim; @@ -1480,6 +1482,8 @@ void QDeclarativeListView::setModel(const QVariant &model) if (!d->ownModel) { d->model = new QDeclarativeVisualDataModel(qmlContext(this), this); d->ownModel = true; + } else { + d->model = oldModel; } if (QDeclarativeVisualDataModel *dataModel = qobject_cast(d->model)) dataModel->setModel(model); diff --git a/tests/auto/declarative/qdeclarativelistview/tst_qdeclarativelistview.cpp b/tests/auto/declarative/qdeclarativelistview/tst_qdeclarativelistview.cpp index 203760e..2aef9bb 100644 --- a/tests/auto/declarative/qdeclarativelistview/tst_qdeclarativelistview.cpp +++ b/tests/auto/declarative/qdeclarativelistview/tst_qdeclarativelistview.cpp @@ -91,6 +91,7 @@ private slots: void modelChanges(); void QTBUG_9791(); void manualHighlight(); + void QTBUG_11105(); private: template void items(); @@ -1493,6 +1494,53 @@ void tst_QDeclarativeListView::manualHighlight() QTRY_COMPARE(listview->highlightItem()->y(), listview->currentItem()->y()); } +void tst_QDeclarativeListView::QTBUG_11105() +{ + QDeclarativeView *canvas = createView(); + + TestModel model; + for (int i = 0; i < 30; i++) + model.addItem("Item" + QString::number(i), ""); + + QDeclarativeContext *ctxt = canvas->rootContext(); + ctxt->setContextProperty("testModel", &model); + + TestObject *testObject = new TestObject; + ctxt->setContextProperty("testObject", testObject); + + canvas->setSource(QUrl::fromLocalFile(SRCDIR "/data/listviewtest.qml")); + qApp->processEvents(); + + QDeclarativeListView *listview = findItem(canvas->rootObject(), "list"); + QTRY_VERIFY(listview != 0); + + QDeclarativeItem *viewport = listview->viewport(); + QTRY_VERIFY(viewport != 0); + + // Confirm items positioned correctly + int itemCount = findItems(viewport, "wrapper").count(); + for (int i = 0; i < model.count() && i < itemCount; ++i) { + QDeclarativeItem *item = findItem(viewport, "wrapper", i); + if (!item) qWarning() << "Item" << i << "not found"; + QTRY_VERIFY(item); + QTRY_VERIFY(item->y() == i*20); + } + + listview->positionViewAtIndex(20, QDeclarativeListView::Beginning); + QCOMPARE(listview->contentY(), 280.); + + TestModel model2; + for (int i = 0; i < 5; i++) + model2.addItem("Item" + QString::number(i), ""); + + ctxt->setContextProperty("testModel", &model2); + + itemCount = findItems(viewport, "wrapper").count(); + QCOMPARE(itemCount, 5); + + delete canvas; +} + void tst_QDeclarativeListView::qListModelInterface_items() { items(); -- cgit v0.12 From 785ccda71652de47a161ff31c1a7543ef3cb4953 Mon Sep 17 00:00:00 2001 From: Warwick Allison Date: Tue, 1 Jun 2010 13:16:28 +1000 Subject: License. Pass headers test --- doc/src/snippets/declarative/rect-border-width.qml | 41 ++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/doc/src/snippets/declarative/rect-border-width.qml b/doc/src/snippets/declarative/rect-border-width.qml index 1c42226..73ce9f6 100644 --- a/doc/src/snippets/declarative/rect-border-width.qml +++ b/doc/src/snippets/declarative/rect-border-width.qml @@ -1,3 +1,44 @@ +/**************************************************************************** +** +** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the QtDeclarative module of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** No Commercial Usage +** This file contains pre-release code and may not be distributed. +** You may use this file in accordance with the terms and conditions +** contained in the Technology Preview License Agreement accompanying +** this package. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Nokia gives you certain additional +** rights. These rights are described in the Nokia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + import Qt 4.7 //![0] -- cgit v0.12 From 08d09e02109f18d2a22fa48f331cd7bcfacc154f Mon Sep 17 00:00:00 2001 From: Martin Jones Date: Tue, 1 Jun 2010 13:24:21 +1000 Subject: Ensure text color set by S60 input method works for QML Items and QGraphicsWidgets. For QGraphicsWidgets use palette as per QWidget. For QML items leave the color unset so that the default pen is used. Task-number: QTBUG-10997 Reviewed-by: Sami Merila --- src/gui/inputmethod/qcoefepinputcontext_s60.cpp | 41 ++++++++++++++++++++----- 1 file changed, 33 insertions(+), 8 deletions(-) diff --git a/src/gui/inputmethod/qcoefepinputcontext_s60.cpp b/src/gui/inputmethod/qcoefepinputcontext_s60.cpp index d081cfd..4cdc4ad 100644 --- a/src/gui/inputmethod/qcoefepinputcontext_s60.cpp +++ b/src/gui/inputmethod/qcoefepinputcontext_s60.cpp @@ -44,6 +44,9 @@ #include "qcoefepinputcontext_p.h" #include #include +#include +#include +#include #include #include @@ -320,12 +323,14 @@ TCoeInputCapabilities QCoeFepInputContext::inputCapabilities() return TCoeInputCapabilities(m_textCapabilities, this, 0); } -static QTextCharFormat qt_TCharFormat2QTextCharFormat(const TCharFormat &cFormat) +static QTextCharFormat qt_TCharFormat2QTextCharFormat(const TCharFormat &cFormat, bool validStyleColor) { QTextCharFormat qFormat; - QBrush foreground(QColor(cFormat.iFontPresentation.iTextColor.Internal())); - qFormat.setForeground(foreground); + if (validStyleColor) { + QBrush foreground(QColor(cFormat.iFontPresentation.iTextColor.Internal())); + qFormat.setForeground(foreground); + } qFormat.setFontStrikeOut(cFormat.iFontPresentation.iStrikethrough == EStrikethroughOn); qFormat.setFontUnderline(cFormat.iFontPresentation.iUnderline == EUnderlineOn); @@ -484,10 +489,30 @@ void QCoeFepInputContext::applyHints(Qt::InputMethodHints hints) void QCoeFepInputContext::applyFormat(QList *attributes) { TCharFormat cFormat; - const QColor styleTextColor = focusWidget() ? focusWidget()->palette().text().color() : - QApplication::palette("QLineEdit").text().color(); - const TLogicalRgb fontColor(TRgb(styleTextColor.red(), styleTextColor.green(), styleTextColor.blue(), styleTextColor.alpha())); - cFormat.iFontPresentation.iTextColor = fontColor; + QColor styleTextColor; + if (QWidget *focused = focusWidget()) { + QGraphicsView *gv = qobject_cast(focused); + if (!gv) // could be either the QGV or its viewport that has focus + gv = qobject_cast(focused->parentWidget()); + if (gv) { + if (QGraphicsScene *scene = gv->scene()) { + if (QGraphicsItem *focusItem = scene->focusItem()) { + if (focusItem->isWidget()) { + styleTextColor = static_cast(focusItem)->palette().text().color(); + } + } + } + } else { + styleTextColor = focused->palette().text().color(); + } + } else { + styleTextColor = QApplication::palette("QLineEdit").text().color(); + } + + if (styleTextColor.isValid()) { + const TLogicalRgb fontColor(TRgb(styleTextColor.red(), styleTextColor.green(), styleTextColor.blue(), styleTextColor.alpha())); + cFormat.iFontPresentation.iTextColor = fontColor; + } TInt numChars = 0; TInt charPos = 0; @@ -501,7 +526,7 @@ void QCoeFepInputContext::applyFormat(QList *attri attributes->append(QInputMethodEvent::Attribute(QInputMethodEvent::TextFormat, charPos, numChars, - QVariant(qt_TCharFormat2QTextCharFormat(cFormat)))); + QVariant(qt_TCharFormat2QTextCharFormat(cFormat, styleTextColor.isValid())))); charPos += numChars; if (charPos >= m_preeditString.size()) { break; -- cgit v0.12 From 3eafb8d13a51d72af053e19fa4bc66b83f81a923 Mon Sep 17 00:00:00 2001 From: Michael Brasser Date: Tue, 1 Jun 2010 15:51:02 +1000 Subject: Optimization for sci file loading. Reviewed-by: Martin Jones --- src/declarative/graphicsitems/qdeclarativescalegrid.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/declarative/graphicsitems/qdeclarativescalegrid.cpp b/src/declarative/graphicsitems/qdeclarativescalegrid.cpp index fe89190..a053aa0 100644 --- a/src/declarative/graphicsitems/qdeclarativescalegrid.cpp +++ b/src/declarative/graphicsitems/qdeclarativescalegrid.cpp @@ -130,8 +130,9 @@ QDeclarativeGridScaledImage::QDeclarativeGridScaledImage(QIODevice *data) int b = -1; QString imgFile; - while(!data->atEnd()) { - QString line = QString::fromUtf8(data->readLine().trimmed()); + QByteArray raw; + while(raw = data->readLine(), !raw.isEmpty()) { + QString line = QString::fromUtf8(raw.trimmed()); if (line.isEmpty() || line.startsWith(QLatin1Char('#'))) continue; -- cgit v0.12 From 0400d1474e65a5fd849c1610bdf0717af295f704 Mon Sep 17 00:00:00 2001 From: Michael Brasser Date: Tue, 1 Jun 2010 15:51:40 +1000 Subject: Documentation. --- src/declarative/util/qdeclarativepropertychanges.cpp | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/src/declarative/util/qdeclarativepropertychanges.cpp b/src/declarative/util/qdeclarativepropertychanges.cpp index d99de7a..08f4750 100644 --- a/src/declarative/util/qdeclarativepropertychanges.cpp +++ b/src/declarative/util/qdeclarativepropertychanges.cpp @@ -62,7 +62,7 @@ QT_BEGIN_NAMESPACE /*! \qmlclass PropertyChanges QDeclarativePropertyChanges \since 4.7 - \brief The PropertyChanges element describes new property values for a state. + \brief The PropertyChanges element describes new property bindings or values for a state. PropertyChanges provides a state change that modifies the properties of an item. @@ -89,6 +89,21 @@ QT_BEGIN_NAMESPACE MouseArea { anchors.fill: parent; onClicked: myText.state = 'myState' } } \endqml + + By default, PropertyChanges will establish new bindings where appropriate. + For example, the following creates a new binding for myItem's height property. + + \qml + PropertyChanges { + target: myItem + height: parent.height + } + \endqml + + If you don't want a binding to be established (and instead just want to assign + the value of the binding at the time the state is entered), + you should set the PropertyChange's \l{PropertyChanges::explicit}{explicit} + property to \c true. State-specific script for signal handlers can also be specified: -- cgit v0.12 From f5aeb6a627ecde5da8c3674b0ba83582f5e4ec84 Mon Sep 17 00:00:00 2001 From: Warwick Allison Date: Tue, 1 Jun 2010 17:09:17 +1000 Subject: Missed file. --- tests/auto/declarative/qdeclarativetextinput/data/positionAt.qml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 tests/auto/declarative/qdeclarativetextinput/data/positionAt.qml diff --git a/tests/auto/declarative/qdeclarativetextinput/data/positionAt.qml b/tests/auto/declarative/qdeclarativetextinput/data/positionAt.qml new file mode 100644 index 0000000..2800351 --- /dev/null +++ b/tests/auto/declarative/qdeclarativetextinput/data/positionAt.qml @@ -0,0 +1,8 @@ +import Qt 4.7 + +TextInput{ + focus: true + objectName: "myInput" + width: 50 + text: "This is a long piece of text" +} -- cgit v0.12 From 2e1e1cff3696c93f983db78c99e564a791d5d0ef Mon Sep 17 00:00:00 2001 From: Andreas Aardal Hanssen Date: Tue, 1 Jun 2010 09:39:57 +0200 Subject: Avoid unnecessary detach / deep copy in QGraphicsItem::scroll(). QGraphicsItem::scroll() scrolls the cache pixmap when cacheMode is enabled (for ItemCoordinateCache only). Because the pixmap exists both in the cache and in a temp QPixmap copy, the ref count is 2, so the scroll operation has to do a deep copy. To avoid this, we remove the pixmap from the cache before and reinsert it again after calling QPixmap::scroll(). Reviewed-by: Alexis Menard --- src/gui/graphicsview/qgraphicsitem.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/gui/graphicsview/qgraphicsitem.cpp b/src/gui/graphicsview/qgraphicsitem.cpp index 36d21a6..d284a29 100644 --- a/src/gui/graphicsview/qgraphicsitem.cpp +++ b/src/gui/graphicsview/qgraphicsitem.cpp @@ -5687,11 +5687,13 @@ void QGraphicsItem::scroll(qreal dx, qreal dy, const QRectF &rect) return; } + // Find pixmap in cache, then remove to avoid deep copy when modifying.s QPixmap cachedPixmap; if (!QPixmapCache::find(cache->key, &cachedPixmap)) { update(rect); return; } + QPixmapCache::remove(cache->key); QRegion exposed; const bool scrollEntirePixmap = rect.isNull(); @@ -5707,7 +5709,8 @@ void QGraphicsItem::scroll(qreal dx, qreal dy, const QRectF &rect) cachedPixmap.scroll(dx, dy, scrollRect.translated(-cache->boundingRect.topLeft()), &exposed); } - QPixmapCache::replace(cache->key, cachedPixmap); + // Reinsert into cache. + cache->key = QPixmapCache::insert(cachedPixmap); // Translate the existing expose. for (int i = 0; i < cache->exposed.size(); ++i) { -- cgit v0.12 From 7b581310ceb106664077052abeabbde217ea30dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B8rgen=20Lind?= Date: Tue, 1 Jun 2010 09:19:16 +0200 Subject: Make sure we don't pull inn /usr/X11 stuff in the qws mkspek conf Reviewed-by: paul --- mkspecs/common/qws.conf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mkspecs/common/qws.conf b/mkspecs/common/qws.conf index 96341a7..225f0ff 100644 --- a/mkspecs/common/qws.conf +++ b/mkspecs/common/qws.conf @@ -14,6 +14,10 @@ QMAKE_INCDIR_X11 = QMAKE_LIBDIR_X11 = QMAKE_INCDIR_OPENGL = QMAKE_LIBDIR_OPENGL = +QMAKE_INCDIR_OPENGL_ES1 = +QMAKE_LIBDIR_OPENGL_ES1 = +QMAKE_INCDIR_OPENGL_ES2 = +QMAKE_LIBDIR_OPENGL_ES2 = QMAKE_LIBS_X11 = QMAKE_LIBS_X11SM = QMAKE_LIBS_OPENGL = -- cgit v0.12 From 1b6d41deebdd8103e2d8abb53bd2bb1dd26bd0ae Mon Sep 17 00:00:00 2001 From: Andreas Aardal Hanssen Date: Tue, 1 Jun 2010 10:50:30 +0200 Subject: Fix bug in QGraphicsItem::scroll() when called with no QRectF argument. With a null rect argument, QGraphicsItem::scroll() is supposed to scroll the whole item. When using ItemCoordinateCache, currently the only supported mode for scroll optimization, we simple scrolled the whole cache pixmap. Problem: The cache pixmap has a border of 2 pixels. So we scroll the contents _and_ the border. This leaves white/transparent horizontal and vertical line artifacts when scrolling. This change unifies the two cases - partial and full scrolling - into one (shorter) approach that works without scrolling the margin as well. Reviewed-by: Alexis Menard --- src/gui/graphicsview/qgraphicsitem.cpp | 19 ++++++------------- 1 file changed, 6 insertions(+), 13 deletions(-) diff --git a/src/gui/graphicsview/qgraphicsitem.cpp b/src/gui/graphicsview/qgraphicsitem.cpp index d284a29..9d7354a 100644 --- a/src/gui/graphicsview/qgraphicsitem.cpp +++ b/src/gui/graphicsview/qgraphicsitem.cpp @@ -5695,19 +5695,12 @@ void QGraphicsItem::scroll(qreal dx, qreal dy, const QRectF &rect) } QPixmapCache::remove(cache->key); + QRect scrollRect = (rect.isNull() ? boundingRect() : rect).toAlignedRect(); + if (!scrollRect.intersects(cache->boundingRect)) + return; // Nothing to scroll. + QRegion exposed; - const bool scrollEntirePixmap = rect.isNull(); - if (scrollEntirePixmap) { - // Scroll entire pixmap. - cachedPixmap.scroll(dx, dy, cachedPixmap.rect(), &exposed); - } else { - if (!rect.intersects(cache->boundingRect)) - return; // Nothing to scroll. - // Scroll sub-rect of pixmap. The rect is in item coordinates - // so we have to translate it to pixmap coordinates. - QRect scrollRect = rect.toAlignedRect(); - cachedPixmap.scroll(dx, dy, scrollRect.translated(-cache->boundingRect.topLeft()), &exposed); - } + cachedPixmap.scroll(dx, dy, scrollRect.translated(-cache->boundingRect.topLeft()), &exposed); // Reinsert into cache. cache->key = QPixmapCache::insert(cachedPixmap); @@ -5715,7 +5708,7 @@ void QGraphicsItem::scroll(qreal dx, qreal dy, const QRectF &rect) // Translate the existing expose. for (int i = 0; i < cache->exposed.size(); ++i) { QRectF &e = cache->exposed[i]; - if (!scrollEntirePixmap && !e.intersects(rect)) + if (!rect.isNull() && !e.intersects(rect)) continue; e.translate(dx, dy); } -- cgit v0.12 From 805126ebc2aa9a683edefbc21d4ee7362ae26f55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Trond=20Kjern=C3=A5sen?= Date: Tue, 1 Jun 2010 10:50:47 +0200 Subject: Fixed a problem where QPixmaps where re-bound in non-sharing contexts. If you have two non-sharing GL contexts and try to draw the same QPixmap in both of them, they will wind up competing for a spot in the texture cache. Make the context group a part of the cache key to avoid that. Task-number: QT-3462 Reviewed-by: Kim --- src/opengl/qgl.cpp | 51 ++++++++++++++++++++++++++++++++++++++++++++------- src/opengl/qgl_p.h | 36 +++++++++++++++++++++++------------- 2 files changed, 67 insertions(+), 20 deletions(-) diff --git a/src/opengl/qgl.cpp b/src/opengl/qgl.cpp index 922a96c..c8502c2 100644 --- a/src/opengl/qgl.cpp +++ b/src/opengl/qgl.cpp @@ -91,6 +91,7 @@ #include "qcolormap.h" #include "qfile.h" #include "qlibrary.h" +#include QT_BEGIN_NAMESPACE @@ -1515,10 +1516,33 @@ bool operator!=(const QGLFormat& a, const QGLFormat& b) return !(a == b); } +struct QGLContextGroupList { + void append(QGLContextGroup *group) { + QMutexLocker locker(&m_mutex); + m_list.append(group); + } + + void remove(QGLContextGroup *group) { + QMutexLocker locker(&m_mutex); + m_list.removeOne(group); + } + + QList m_list; + QMutex m_mutex; +}; + +Q_GLOBAL_STATIC(QGLContextGroupList, qt_context_groups) + /***************************************************************************** QGLContext implementation *****************************************************************************/ +QGLContextGroup::QGLContextGroup(const QGLContext *context) + : m_context(context), m_guards(0), m_refs(1) +{ + qt_context_groups()->append(this); +} + QGLContextGroup::~QGLContextGroup() { // Clear any remaining QGLSharedResourceGuard objects on the group. @@ -1528,6 +1552,7 @@ QGLContextGroup::~QGLContextGroup() guard->m_id = 0; guard = guard->m_next; } + qt_context_groups()->remove(this); } void QGLContextGroup::addGuard(QGLSharedResourceGuard *guard) @@ -1736,7 +1761,7 @@ void QGLTextureCache::insert(QGLContext* ctx, qint64 key, QGLTexture* texture, i QWriteLocker locker(&m_lock); if (m_cache.totalCost() + cost > m_cache.maxCost()) { // the cache is full - make an attempt to remove something - const QList keys = m_cache.keys(); + const QList keys = m_cache.keys(); int i = 0; while (i < m_cache.count() && (m_cache.totalCost() + cost > m_cache.maxCost())) { @@ -1746,13 +1771,26 @@ void QGLTextureCache::insert(QGLContext* ctx, qint64 key, QGLTexture* texture, i ++i; } } - m_cache.insert(key, texture, cost); + const QGLTextureCacheKey cacheKey = {key, QGLContextPrivate::contextGroup(ctx)}; + m_cache.insert(cacheKey, texture, cost); +} + +void QGLTextureCache::remove(qint64 key) +{ + QWriteLocker locker(&m_lock); + QMutexLocker groupLocker(&qt_context_groups()->m_mutex); + QList::const_iterator it = qt_context_groups()->m_list.constBegin(); + while (it != qt_context_groups()->m_list.constEnd()) { + const QGLTextureCacheKey cacheKey = {key, *it}; + m_cache.remove(cacheKey); + ++it; + } } bool QGLTextureCache::remove(QGLContext* ctx, GLuint textureId) { QWriteLocker locker(&m_lock); - QList keys = m_cache.keys(); + QList keys = m_cache.keys(); for (int i = 0; i < keys.size(); ++i) { QGLTexture *tex = m_cache.object(keys.at(i)); if (tex->id == textureId && tex->context == ctx) { @@ -1767,9 +1805,9 @@ bool QGLTextureCache::remove(QGLContext* ctx, GLuint textureId) void QGLTextureCache::removeContextTextures(QGLContext* ctx) { QWriteLocker locker(&m_lock); - QList keys = m_cache.keys(); + QList keys = m_cache.keys(); for (int i = 0; i < keys.size(); ++i) { - const qint64 &key = keys.at(i); + const QGLTextureCacheKey &key = keys.at(i); if (m_cache.object(key)->context == ctx) m_cache.remove(key); } @@ -1782,7 +1820,6 @@ void QGLTextureCache::removeContextTextures(QGLContext* ctx) void QGLTextureCache::cleanupTexturesForCacheKey(qint64 cacheKey) { qt_gl_texture_cache()->remove(cacheKey); - Q_ASSERT(qt_gl_texture_cache()->getTexture(cacheKey) == 0); } @@ -2425,7 +2462,7 @@ QGLTexture* QGLContextPrivate::bindTexture(const QImage &image, GLenum target, G QGLTexture *QGLContextPrivate::textureCacheLookup(const qint64 key, GLenum target) { Q_Q(QGLContext); - QGLTexture *texture = QGLTextureCache::instance()->getTexture(key); + QGLTexture *texture = QGLTextureCache::instance()->getTexture(q, key); if (texture && texture->target == target && (texture->context == q || QGLContext::areSharing(q, texture->context))) { diff --git a/src/opengl/qgl_p.h b/src/opengl/qgl_p.h index d92f963..16c225f 100644 --- a/src/opengl/qgl_p.h +++ b/src/opengl/qgl_p.h @@ -230,7 +230,7 @@ public: static void addShare(const QGLContext *context, const QGLContext *share); static void removeShare(const QGLContext *context); private: - QGLContextGroup(const QGLContext *context) : m_context(context), m_guards(0), m_refs(1) { } + QGLContextGroup(const QGLContext *context); QGLExtensionFuncs m_extensionFuncs; const QGLContext *m_context; // context group's representative @@ -522,17 +522,33 @@ public: QSize bindCompressedTexturePVR(const char *buf, int len); }; +struct QGLTextureCacheKey { + qint64 key; + QGLContextGroup *group; +}; + +inline bool operator==(const QGLTextureCacheKey &a, const QGLTextureCacheKey &b) +{ + return a.key == b.key && a.group == b.group; +} + +inline uint qHash(const QGLTextureCacheKey &key) +{ + return qHash(key.key) ^ qHash(key.group); +} + + class Q_AUTOTEST_EXPORT QGLTextureCache { public: QGLTextureCache(); ~QGLTextureCache(); void insert(QGLContext *ctx, qint64 key, QGLTexture *texture, int cost); - inline void remove(quint64 key); + void remove(qint64 key); inline int size(); inline void setMaxCost(int newMax); inline int maxCost(); - inline QGLTexture* getTexture(quint64 key); + inline QGLTexture* getTexture(QGLContext *ctx, qint64 key); bool remove(QGLContext *ctx, GLuint textureId); void removeContextTextures(QGLContext *ctx); @@ -542,7 +558,7 @@ public: static void cleanupBeforePixmapDestruction(QPixmapData* pixmap); private: - QCache m_cache; + QCache m_cache; QReadWriteLock m_lock; }; @@ -563,19 +579,13 @@ int QGLTextureCache::maxCost() return m_cache.maxCost(); } -QGLTexture* QGLTextureCache::getTexture(quint64 key) +QGLTexture* QGLTextureCache::getTexture(QGLContext *ctx, qint64 key) { QReadLocker locker(&m_lock); - return m_cache.object(key); + const QGLTextureCacheKey cacheKey = {key, QGLContextPrivate::contextGroup(ctx)}; + return m_cache.object(cacheKey); } -void QGLTextureCache::remove(quint64 key) -{ - QWriteLocker locker(&m_lock); - m_cache.remove(key); -} - - extern Q_OPENGL_EXPORT QPaintEngine* qt_qgl_paint_engine(); bool qt_gl_preferGL2Engine(); -- cgit v0.12 From f5cc4e9a020e78f0bf0d929ff2780b5bf01749ae Mon Sep 17 00:00:00 2001 From: Andreas Hartmetz Date: Tue, 1 Jun 2010 10:35:30 +0200 Subject: Added environment variable graphicssystem switch. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add environment variable switch for graphicssystem so a default can be set at runtime without passing a command-line parameter. Merge-request: 622 Reviewed-by: Samuel Rødal --- src/gui/kernel/qapplication.cpp | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/src/gui/kernel/qapplication.cpp b/src/gui/kernel/qapplication.cpp index a2c058a..09a3bfe 100644 --- a/src/gui/kernel/qapplication.cpp +++ b/src/gui/kernel/qapplication.cpp @@ -780,6 +780,9 @@ void QApplicationPrivate::construct( qt_is_gui_used = (qt_appType != QApplication::Tty); process_cmdline(); + // the environment variable has the lowest precedence of runtime graphicssystem switches + if (graphics_system_name.isEmpty()) + graphics_system_name = QString::fromLocal8Bit(qgetenv("QT_GRAPHICSSYSTEM")); // Must be called before initialize() qt_init(this, qt_appType #ifdef Q_WS_X11 @@ -1560,10 +1563,18 @@ QStyle* QApplication::setStyle(const QString& style) on-screen widgets and QPixmaps. The available systems are \c{"native"}, \c{"raster"} and \c{"opengl"}. - This function call overrides both the application commandline - \c{-graphicssystem} switch and the configure \c{-graphicssystem} switch. + There are several ways to set the graphics backend, in order of decreasing + precedence: + \list + \o the application commandline \c{-graphicssystem} switch + \o QApplication::setGraphicsSystem() + \o the QT_GRAPHICSSYSTEM environment variable + \o the Qt configure \c{-graphicssystem} switch + \endlist + If the highest precedence switch sets an invalid name, the error will be + ignored and the default backend will be used. - \warning This function must be called before the QApplication constructor + \warning This function is only effective before the QApplication constructor is called. \note The \c{"opengl"} option is currently experimental. -- cgit v0.12 From 94f0369e21cb4db41f6f10358ba1967fe1d0e8a1 Mon Sep 17 00:00:00 2001 From: John Brooks Date: Sun, 2 May 2010 00:19:25 -0600 Subject: Doc: QAbstractItemModel: note unexpected behavior with beginMoveRows The meaning of the destinationChild parameter differs when moving down in the same parent, contrary to statements by the previous docs. Reviewed-by: Olivier Goffart Merge-Request: 600 --- src/corelib/kernel/qabstractitemmodel.cpp | 92 +++++++++++++++++-------------- 1 file changed, 52 insertions(+), 40 deletions(-) diff --git a/src/corelib/kernel/qabstractitemmodel.cpp b/src/corelib/kernel/qabstractitemmodel.cpp index 24c26b6..b0e2f48 100644 --- a/src/corelib/kernel/qabstractitemmodel.cpp +++ b/src/corelib/kernel/qabstractitemmodel.cpp @@ -2508,29 +2508,35 @@ bool QAbstractItemModelPrivate::allowMove(const QModelIndex &srcParent, int star When reimplementing a subclass, this method simplifies moving entities in your model. This method is responsible for moving persistent indexes in the model, which you would otherwise be - required to do yourself. - - Using beginMoveRows and endMoveRows is an alternative to emitting - layoutAboutToBeChanged and layoutChanged directly along with - changePersistentIndexes. layoutAboutToBeChanged is emitted by - this method for compatibility reasons. + required to do yourself. Using beginMoveRows and endMoveRows + is an alternative to emitting layoutAboutToBeChanged and + layoutChanged directly along with changePersistentIndexes. + layoutAboutToBeChanged is emitted by this method for compatibility + reasons. The \a sourceParent index corresponds to the parent from which the - rows are moved; \a sourceFirst and \a sourceLast are the row - numbers of the rows to be moved. The \a destinationParent index - corresponds to the parent into which the rows are moved. The \a + rows are moved; \a sourceFirst and \a sourceLast are the first and last + row numbers of the rows to be moved. The \a destinationParent index + corresponds to the parent into which those rows are moved. The \a destinationChild is the row to which the rows will be moved. That is, the index at row \a sourceFirst in \a sourceParent will become - row \a destinationChild in \a destinationParent. Its siblings will - be moved correspondingly. - - Note that \a sourceParent and \a destinationParent may be the - same, in which case you must ensure that the \a destinationChild is - not within the range of \a sourceFirst and \a sourceLast. You - must also ensure that you do not attempt to move a row to one of - its own children or ancestors. This method returns false if either - condition is true, in which case you should abort your move - operation. + row \a destinationChild in \a destinationParent, followed by all other + rows up to \a sourceLast. + + However, when moving rows down in the same parent (\a sourceParent + and \a destinationParent are equal), the rows will be placed before the + \a destinationChild index. That is, if you wish to move rows 0 and 1 so + they will become rows 1 and 2, \a destinationChild should be 3. In this + case, the new index for the source row \c i (which is between + \a sourceFirst and \a sourceLast) is equal to + \c {(destinationChild-sourceLast-1+i)}. + + Note that if \a sourceParent and \a destinationParent are the same, + you must ensure that the \a destinationChild is not within the range + of \a sourceFirst and \a sourceLast + 1. You must also ensure that you + do not attempt to move a row to one of its own children or ancestors. + This method returns false if either condition is true, in which case you + should abort your move operation. \table 80% \row @@ -2761,29 +2767,35 @@ void QAbstractItemModel::endRemoveColumns() When reimplementing a subclass, this method simplifies moving entities in your model. This method is responsible for moving persistent indexes in the model, which you would otherwise be - required to do yourself. - - Using beginMoveColumns and endMoveColumns is an alternative to - emitting layoutAboutToBeChanged and layoutChanged directly along - with changePersistentIndexes. layoutAboutToBeChanged is emitted - by this method for compatibility reasons. + required to do yourself. Using beginMoveRows and endMoveRows + is an alternative to emitting layoutAboutToBeChanged and + layoutChanged directly along with changePersistentIndexes. + layoutAboutToBeChanged is emitted by this method for compatibility + reasons. The \a sourceParent index corresponds to the parent from which the - columns are moved; \a sourceFirst and \a sourceLast are the column - numbers of the columns to be moved. The \a destinationParent index - corresponds to the parent into which the columns are moved. The \a - destinationChild is the column to which the columns will be - moved. That is, the index at column \a sourceFirst in \a - sourceParent will become column \a destinationChild in \a - destinationParent. Its siblings will be moved correspondingly. - - Note that \a sourceParent and \a destinationParent may be the - same, in which case you must ensure that the \a destinationChild - is not within the range of \a sourceFirst and \a sourceLast. You - must also ensure that you do not attempt to move a row to one of - its own chilren or ancestors. This method returns false if either - condition is true, in which case you should abort your move - operation. + columns are moved; \a sourceFirst and \a sourceLast are the first and last + column numbers of the columns to be moved. The \a destinationParent index + corresponds to the parent into which those columns are moved. The \a + destinationChild is the column to which the columns will be moved. That + is, the index at column \a sourceFirst in \a sourceParent will become + column \a destinationChild in \a destinationParent, followed by all other + columns up to \a sourceLast. + + However, when moving columns down in the same parent (\a sourceParent + and \a destinationParent are equal), the columnss will be placed before the + \a destinationChild index. That is, if you wish to move columns 0 and 1 so + they will become columns 1 and 2, \a destinationChild should be 3. In this + case, the new index for the source column \c i (which is between + \a sourceFirst and \a sourceLast) is equal to + \c {(destinationChild-sourceLast-1+i)}. + + Note that if \a sourceParent and \a destinationParent are the same, + you must ensure that the \a destinationChild is not within the range + of \a sourceFirst and \a sourceLast + 1. You must also ensure that you + do not attempt to move a column to one of its own children or ancestors. + This method returns false if either condition is true, in which case you + should abort your move operation. \sa endMoveColumns() -- cgit v0.12 From 4e85c1015c2dfa58560e0567af4fa17a412441a5 Mon Sep 17 00:00:00 2001 From: Geir Vattekar Date: Tue, 1 Jun 2010 12:16:17 +0200 Subject: Doc: Fixed a typo Task-number: QTBUG-10951 --- doc/src/examples/waitconditions.qdoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/src/examples/waitconditions.qdoc b/doc/src/examples/waitconditions.qdoc index 1d3ff84..d4f680e 100644 --- a/doc/src/examples/waitconditions.qdoc +++ b/doc/src/examples/waitconditions.qdoc @@ -92,7 +92,7 @@ Together, the wait conditions, the mutex, and the \c numUsedBytes counter ensure that the producer is never more than \c BufferSize bytes ahead of the consumer, and that the consumer never reads - data that the consumer hasn't generated yet. + data that the producer hasn't generated yet. \section1 Producer Class -- cgit v0.12